Search found 268 matches
- Thu May 12, 2011 8:33 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
Re: DW4.nes: 524,304 bytes
Dragon Warrior III and IV are 512 KiB SUROM . Anything bigger is an overdump . SUROM is like SNROM (MMC1 + CHR RAM + PRG RAM), except that the CHR A16 output goes to PRG A18. This means bit 4 of the value written to the CHR bank register ($A000) switches between the first and second half of the PRG...
- Thu May 12, 2011 10:28 am
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
- Wed May 11, 2011 10:02 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
- Wed May 11, 2011 8:27 am
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
- Wed May 11, 2011 8:17 am
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
Tried it today. Impressive for the fact that it runs in javascript, something which would have not thought to be possible a few years ago. Runs well (except audio bug) in chromium, doesn't work well in ff4 like mentioned. Even thought you don't link to roms, you should at the least remove all the r...
- Tue May 10, 2011 10:01 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
Proper sound sync looks like its probably a no go until Chrome 12.
http://code.google.com/p/chromium/issue ... l?id=81445
Firefox already does, but runs dog slow... sigh. Can't wait for newer browsers to come out!
Firefox already does, but runs dog slow... sigh. Can't wait for newer browsers to come out!
- Tue May 10, 2011 8:07 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
- Tue May 10, 2011 5:26 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
- Tue May 10, 2011 5:02 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
- Mon May 09, 2011 9:43 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
Search is back up on Nezulator. I believe its entirely legal now. I went out and bought a ton of cartridges (more on the way). According to EC, this is the only real legal way to do it. (that and to allow streaming only - no rom downloads) Also, do you have any ideas as to what the cause of the spri...
- Mon May 09, 2011 7:23 am
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
- Mon May 09, 2011 6:26 am
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
I'm using this code to read the joystick: ldx #1 stx $4016 ;strobe joypad lda $4016 ;test read, should not shift joypad value dex stx $4016 ;clear strobe, now it's okay to shift joypad value and #$FC tax cpx $4016 ror a cpx $4016 ror a cpx $4016 ror a cpx $4016 ror a cpx $4016 ror a cpx $4016 ror a...
- Sun May 08, 2011 8:57 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
I added support to specify a ROM to load on the URL. so you can give people a direct link to play your game! 
http://zelex.net/nezulator/?rom=www.dwe ... item%3D298
PS. Also fixed the emulator to not have bit 7 set.
http://zelex.net/nezulator/?rom=www.dwe ... item%3D298
PS. Also fixed the emulator to not have bit 7 set.
- Sun May 08, 2011 8:29 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
The joypad problem: Chu Chu Rocket writes 1 to 4016 strobe the joystick, then immediately reads from 4016, which reads the state of the first button of the joystick without shifting it. Then it writes 0 to 4016 to allow shifting. If emulated incorrectly, the joystick reads will be wrong. You can do...
- Sun May 08, 2011 3:34 pm
- Forum: NESemdev
- Topic: Announcing relaunch of Nezulator - now written in Javascript
- Replies: 128
- Views: 46498
Again, how slow is it in Firefox 4? still very slow. I've spoken to one of the js performance guys at Mozilla about it and he opened a ticket ( bug 654410 on b.m.o ) so that he can track it. He's going to analyze the perf of the program in his tools and give some suggestions and more than likely th...