Page 10 of 16 FirstFirst ... 67891011121314 ... LastLast
Results 91 to 100 of 159

Thread: New Super Famicast & NesterDC SE releases imminent

                  
   
  1. #91
    DCEmu Regular WHurricane16's Avatar
    Join Date
    Mar 2004
    Location
    North Carolina
    Age
    48
    Posts
    434
    Rep Power
    79

    Default Re: New Super Famicast & NesterDC SE releases


  2. #92
    DCEmu Rookie
    Join Date
    Apr 2004
    Location
    Warren,Mi
    Posts
    122
    Rep Power
    77

    Default Re: New Super Famicast & NesterDC SE releases

    I am glad to see the scene spark up like a zippo lighter and have a bright flame :}. this
    is great news to all of us Dc devoters. This is a dream come true, I was showing my brother
    all the stuff that is in the works he is astounded! my brother is not easily amused but
    he was when I showed him this. good luck on the project, hope you don't strain yourself
    not good high blood pressure causes bad stuff, when you need a break take one, if you are
    thristy drink and if you are hungry eat, NO RUSHING :}. (offtopic} kamjin I noticed you have
    the Coder badge. I never seen your projects on the DC (none that I know of} may i as what you have coded,thanks.

  3. #93

    Default Re: New Super Famicast & NesterDC SE releases

    *rolls himself a cigarette as thick as a finger and inhales deeply*

    Really good news that is! Â*

    @Wraggster: The PD ROMs compilation for DreamSNES/SuperFamicastv02 I am currently working on is progressing nicely.

  4. #94
    DCEmu Coder
    Join Date
    Apr 2004
    Location
    Botoru Battalion
    Age
    52
    Posts
    257
    Rep Power
    78

    Default Re: New Super Famicast & NesterDC SE releases

    That's a good bit of news! Not to mention scherzo's also got a little boost
    of energy ;D

    (offtopic Responce)
    DemoniusX, Stuff I've done.. for the DC.. Not much so far..
    here's a link http://homebrew.dcemulation.com/kamjin/
    I'm still in the process of refreshing my memory, and re-learning
    forgotten math.. last 7 years Most of the code I've written has been
    ultra low level mostly assembly, like Bios's, Drivers, tools,and Diagnostics..

  5. #95
    DCEmu Coder
    Join Date
    Apr 2004
    Location
    Botoru Battalion
    Age
    52
    Posts
    257
    Rep Power
    78

    Default Re: New Super Famicast & NesterDC SE releases

    Ian,
    I started looking over the code to NeoGeo there's a few things I noticed,
    I just scanned in the Video section.. scattered around there are mults
    by 2,8,16,128,256.. From what's in the sh4 spec a multipy takes 2-5 cycles
    a shift operation takes 1, so there's a few places to gain some cycles.
    .. Just a warning if you change them do them a few at a time.. for
    some reason GCC sometimes changes the math operation order when you do.

    In the tiles section.

    The FlipX, and Y.. gotta think about this one a bit more, but in hardware
    to to a flip we simply XOR the Column or Row counter to achive the
    process.. to flip the entire screen (like those old $#@!tail arcade tables
    when the 2nd player is up) you would just xor the video sections address
    lines to the ram, creating an X-Y filp.. mY brain's a little groggy but maybe
    a simmilar idea by simply modifying the counters,that will get rid of all those
    shift+and instructions.

    I'm also looking over the code in draw_screen1.. there might be a way to
    get that to execute faster.. using ulongs instead of ushorts.. but tough
    to figure a way not to break the Zoom.. and not add more code in
    the to handle the change.. just to slow it down again..
    to.. I'll keep looking it over if anything sparks in my brain I'll let you know..

  6. #96
    DCEmu Regular
    Join Date
    Apr 2004
    Location
    Posts
    351
    Rep Power
    79

    Default Re: New Super Famicast & NesterDC SE releases


    Thanks Kamjin Very intresting. Allways good to get some one of your skill to look it over.

  7. #97

    Default Re: New Super Famicast & NesterDC SE releases

    One thing about the division and multiplication by powers of 2... As much as we talk crap about GCC and how it poorly optimizes SH4 code, I did notice during my asm adventures at the beginning that GCC is smart enough to notice when it can save by shifting instead of actually multiplying. At least, that's what I saw. Maybe it doesn't always do that so you can play it safe by shifting anyways.

    Also, I've been able to get the DSNES cpu core to compile BUT it doesn't work just yet. I need to recreate an offsets.h file for all the struct fields in snes9x. I have a function that will spit out the correct offsets to stdout during runtime, so that helps. But some of the offsets are too big for some of the relative addressing used in the asm. So what I'm doing now is going through one by one and moving troublesome struct members to the beginning of their structs, thereby keeping the relative address for those in range. It's moving along, but there's a lot. I hope it works.
    It's time to chew ass and kick bubble gum... and I'm all out of ass!

  8. #98
    DCEmu Coder
    Join Date
    Apr 2004
    Location
    Botoru Battalion
    Age
    52
    Posts
    257
    Rep Power
    78

    Default Re: New Super Famicast & NesterDC SE releases

    It's fun to bash GCC!.. In most cases with a -O flag I've seen it
    do the shift also, but I noticed cases where it didn't.. like where
    two mults were side by side, or if you swap the mult for a shift
    and you have to put brackets to maintain the order, that's the other
    case.. actually what got me looking at the assembly originally..



    Just in case you guys don't already have it.. the programmers
    manual for the Sh4
    http://www.renesas.com/avs/resource/...602156_sh4.pdf
    This one has opcode timings, unlike the architechture manual.

    Slight shift of converation.. KOS has a PVR_DMA functions to to load
    Instrction Lists/Textrures.. which I've never got to work..
    but the sh-4 has a DMAC on it as well which can read/write memory
    same used to access the maple, does KOS have anything to support it
    as far as memcopy? i remeber that it does support 64bit access..


  9. #99
    DCEmu Coder
    Join Date
    Apr 2004
    Location
    Botoru Battalion
    Age
    52
    Posts
    257
    Rep Power
    78

    Default Re: New Super Famicast & NesterDC SE releases

    Thanks Ian! although the Skill works both ways, I see guys like
    you, and scherzo in the same way. You guys can take a piece of
    code and have it ported and working in no time.. While I sit there
    re-writing all sort of code because it just baffles me.. I can get the
    rumble working.. create my own maple access routines..
    but then get totally lost in writing a driver that fits into KOS ???..

  10. #100
    DCEmu Regular
    Join Date
    Apr 2004
    Location
    Posts
    351
    Rep Power
    79

    Default Re: New Super Famicast & NesterDC SE releases

    [quote author=Kamjin link=board=dcemu;num=1082494155;start=90#94 date=05/14/04 at 07:47:28]Ian,
    I started looking over the code to NeoGeo there's a few things I noticed,
    I just scanned in the Video section.. scattered around there are mults
    by 2,8,16,128,256.. From what's in the sh4 spec a multipy takes 2-5 cycles
    a shift operation takes 1, so there's a few places to gain some cycles.
    .. Just a warning if you change them do them a few at a time.. for
    some reason GCC sometimes changes the math operation order when you do.
    quote]

    How would i go about changing this. I like to attempt it But Maybe if you could change one and i could work off the idea.

    Any speed is needed if SFX is to be added back to this emulator.

Page 10 of 16 FirstFirst ... 67891011121314 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •