Quantcast

Search:

Type: Posts; User: mic

Search: Search took 0.32 seconds.

  1. Replies
    33
    Views
    977

    Well, you could save to SRAM or EEPROM. But that...

    Well, you could save to SRAM or EEPROM. But that would make more sense for a native (mainly FM-oriented) YM2612 tracker/sequencer, since the songs would likely be smaller compared to a lot of MOD...
  2. Replies
    278
    Views
    11,021

    Flash carts for the Atari Lynx already exist....

    Flash carts for the Atari Lynx already exist.
    For example, Lynxman over at the AtariAge forums has been making and selling flash carts for a long time, and might still be doing so. His cart does not...
  3. Replies
    30
    Views
    3,385

    I for one believe that the DOOM soundtrack (or...

    I for one believe that the DOOM soundtrack (or DOOM II, since that's my favorite in the series) would sound absolutely awesome on the YM2612 if done right. As far as maps go, I like the "No rest for...
  4. Thread: Megaman 2

    by mic
    Replies
    63
    Views
    2,614

    Megaman used UNROM and Megaman 2 used MMC1. So...

    Megaman used UNROM and Megaman 2 used MMC1. So yeah, it does have enough power.
    In general, the mappers used by NES/Famicom games mainly added functionality related to bankswitching and mirroring....
  5. Thread: Megaman 2

    by mic
    Replies
    63
    Views
    2,614

    If you make a version for systems with extra RAM...

    If you make a version for systems with extra RAM (TurboDuo, Arcade Card, ...) and there's enough CPU time you could mirror VRAM writes to an 8kB buffer somewhere in extended RAM, and then use that...
  6. Replies
    4
    Views
    1,325

    Oh ok, this was a commercial product. At first I...

    Oh ok, this was a commercial product. At first I thought that it was a homebrew project and thought "that looks like an insane amount of work". Well, it probably was a lot of work regardless, but at...
  7. Thread: Tremor on the 32X

    by mic
    Replies
    34
    Views
    2,044

    You can safely use SHLL instead of SHAL if you...

    You can safely use SHLL instead of SHAL if you know that the value being shifted is within a given range. For example, if you have a 32-bit int that (at the point where the shift takes place)...
  8. Thread: Tremor on the 32X

    by mic
    Replies
    34
    Views
    2,044

    If you have any way of finding the hotspots in...

    If you have any way of finding the hotspots in the code you could replace the SAR function calls in those places with a loop. And if you know that the shift amount only can have one or two different...
  9. Thread: Tremor on the 32X

    by mic
    Replies
    34
    Views
    2,044

    That's cool. MAD for the 32X is actually I've...

    That's cool. MAD for the 32X is actually I've considered doing, but haven't found the time for. I suspect that with the help of some hand-optimization it would actually be possible to run it on the...
  10. Replies
    8
    Views
    1,018

    Something that would be nice to have in a PCE IDE...

    Something that would be nice to have in a PCE IDE is a feature where, if you hover over an instruction with the mouse cursor for a couple of seconds, it pops up a tooltip-ish box where all the...
  11. Thread: SLZ tool

    by mic
    Replies
    40
    Views
    3,633

    Here's...

    Here's one (primarily the tiny mode version).
  12. Replies
    11
    Views
    11,336

    From their point of view they'd be spending money...

    From their point of view they'd be spending money on building up a stock of yesterday's news that will move off the shelves a lot slower than other stuff that they can put their resources into...
  13. Replies
    11
    Views
    11,336

    They probably stopped making them. I mean,...

    They probably stopped making them. I mean, there's no point (for them) in making GBA flash carts in 2011 when they can sell a lot more products for the DS.

    The site I linked to in my earlier post...
  14. Replies
    11
    Views
    11,336

    Keep in mind that when GBA flash cart makers (or...

    Keep in mind that when GBA flash cart makers (or users) say this it doesn't mean that the games are run natively as if a GB/GBC cart had been plugged in. You simply can't do that with a GBA flash...
  15. Replies
    11
    Views
    11,336

    I have a bunch of GBA flash carts, but the one I...

    I have a bunch of GBA flash carts, but the one I tend to use the most is the Supercard (the CompactFlash model). The reason I like it is because it has realtime save support, which comes in real...
  16. Replies
    83
    Views
    7,872

    Um.. what do you mean by having echo forced?...

    Um.. what do you mean by having echo forced? There's a register available for turning echo on and off for individual channels. You can also configure the (global) echo delay, which determines how...
  17. Replies
    83
    Views
    7,872

    You can do on-the-fly SPC RAM updates by having a...

    You can do on-the-fly SPC RAM updates by having a loop that sends the data and waits for acknowledgement for each batch (1-4 bytes) of data.
    I don't see how you could do it with DMA though. There's...
  18. Thread: SLZ tool

    by mic
    Replies
    40
    Views
    3,633

    Yeah, but the 68k has plenty of registers, and...

    Yeah, but the 68k has plenty of registers, and the 65816 doesn't ;)

    So my getBit routine looks like this:



    ; Read one bit, return in the C flag
    getBit:
    lsr getBit_buffer...
  19. Replies
    83
    Views
    7,872

    Sample DMA on the SNES..? Never heard of such a...

    Sample DMA on the SNES..? Never heard of such a thing. You might be able to set up a DMA channel to write to the SPC communication registers, but getting the SPC to correctly read the data you send...
  20. Thread: SLZ tool

    by mic
    Replies
    40
    Views
    3,633

    I actually ported a DEFLATE routine to the SNES...

    I actually ported a DEFLATE routine to the SNES in order to load zipped ROMs off of a flash cart. I don't remember exactly what the decompression throughput was.. probably something like 20-30 kB/s....
Results 1 to 20 of 20