Search found 35 matches
- Mon Oct 27, 2014 8:27 am
- Forum: NESdev
- Topic: NESADPCM -- a new library for playing VOX ADPCM audio
- Replies: 11
- Views: 3472
Re: NESADPCM -- a new library for playing VOX ADPCM audio
I just added some performance features, so now it can play at up to 8948 Hz. However, this adds some 800 bytes to the ROM. There's a compromise mode that adds only some 400 bytes and plays at 8470 Hz, and the "slow" mode is still there, playing at 6351 Hz. The NSF demo still uses the slow ...
- Sun Oct 26, 2014 9:49 pm
- Forum: NESdev
- Topic: NESADPCM -- a new library for playing VOX ADPCM audio
- Replies: 11
- Views: 3472
NESADPCM -- a new library for playing VOX ADPCM audio
I'm tired from spending all day yesterday and much of today working on the thing, so I'll just toss up the link here: https://github.com/furrykef/nesadpcm There's a demo NSF file in the repository with four clips if you just want to hear what it sounds like. Works fine in NSFPlay and FCEUX; your mil...
- Mon Oct 01, 2012 2:08 pm
- Forum: NES Hardware and Flash Equipment
- Topic: Which NES PowerPak mappers are the newest?
- Replies: 19
- Views: 17217
Re: Which NES PowerPak mappers are the newest?
My apologies, then.
- Mon Oct 01, 2012 1:21 am
- Forum: NES Hardware and Flash Equipment
- Topic: Which NES PowerPak mappers are the newest?
- Replies: 19
- Views: 17217
Re: Which NES PowerPak mappers are the newest?
The 1.34 mappers at retrousb do seem to include loopy's mappers, since there's a "LOOPYS README.TXT" included that matches the readme from loopy's zip.
- Fri Mar 02, 2012 11:21 pm
- Forum: NESdev
- Topic: Battletoads text decompression (huffman)
- Replies: 16
- Views: 31591
By an amusing coincidence, I'd done exactly this last December. :) I'd never seen a Huffman tree in ASM form before, so I was quite baffled at first until I realized a table indexing into itself must be a tree, and then it all fell into place. This repository contains the Python file I wrote to extr...