Search found 27 matches
- Sat May 24, 2008 9:04 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
- Sat May 24, 2008 8:46 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
My code? Whoa...let's take a step back here...the original emulator is under the GNU public license; you and everyone else here has full rights to the source...I just figured it was too sloppy for it to be particularly useful to anyone. If there's actually a demand I'll go ahead and post the source...
- Fri May 23, 2008 8:52 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
- Sun May 18, 2008 6:06 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
- Sun May 18, 2008 2:31 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
Well, it's finished up and packaged with all the necessary files to make it work properly (except the rom and some of the music)...but I have a kind of unrelated question. What's a good site I can use to host it? I'm a little iffy about posting it one of these normal hosting sites like Filefactory/F...
- Sat May 17, 2008 1:17 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
It's designed with only Mega Man 2 in mind...the design is basically: //in LDA(), DT is BYTE songCounter = DT //in JSR(), EA is WORD if (EA==0xC051) { switch (songCounter) { ... } } It relies entirely on what Fx3 mentioned, looking for specific arguments to LDA and JSR...it could probably be tweaked...
- Sat May 17, 2008 11:12 am
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
- Sat May 17, 2008 10:42 am
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
- Fri May 16, 2008 4:48 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
Works like a charm, can't thank you enough. At this rate, I could probably have this entire thing finished tonight. I figured out I misread that RAM map, and the byte representing the sound to be played is $0580 and not $0067...and with the beauty that is FCEUXD, I already have all of the correspond...
- Fri May 16, 2008 4:41 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
- Fri May 16, 2008 2:14 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
Well, the reason I'm using MP3 is I'm intending to distribute this in a technically legal manner. So I'd include the emulator, and I suppose the ROM patch (which is actually a pretty good idea), but it would be up to the end user to supply the MP3s and the ROM...and I'm pretty confident the end user...
- Fri May 16, 2008 1:41 pm
- Forum: NES Music
- Topic: Modding an Emu to Play Custom Soundtrack for MM2, need help
- Replies: 33
- Views: 24459
Modding an Emu to Play Custom Soundtrack for MM2, need help
This may belong in the noobie section, but I figured since it deals solely with music that it would be more fitting here. Anyway... I'm trying to modify an NES emulator (can be any NES emu, basically, though I've been working mostly with Nestopia and FCEU) to play a set of preset MP3s in place of it...