Search found 355 matches
- Sat Mar 22, 2008 11:48 am
- Forum: NES Hardware and Flash Equipment
- Topic: armadillo bad dump?
- Replies: 5
- Views: 3249
- Sat Mar 22, 2008 4:22 am
- Forum: NESemdev
- Topic: pputime2.nes using unintialized ram ?
- Replies: 2
- Views: 2528
- Thu Mar 20, 2008 3:41 pm
- Forum: NESemdev
- Topic: 2002h read and NMIs
- Replies: 5
- Views: 4847
Code: Select all
; Correct output:
; 01 N
; 02 N
; 03 N
; 04 N
; 05 -
; 06 -
; 07 -
; 08 -
; 09 -

- Sun Mar 16, 2008 8:32 am
- Forum: NESemdev
- Topic: CHR prerendering tricks
- Replies: 3
- Views: 2959
- Fri Mar 14, 2008 3:55 pm
- Forum: General Stuff
- Topic: bad x accurate emulator
- Replies: 10
- Views: 4163
- Fri Mar 14, 2008 6:38 am
- Forum: NESemdev
- Topic: Got any tips for Early NES Emulator Development?
- Replies: 108
- Views: 35668
- Fri Mar 14, 2008 6:34 am
- Forum: NESemdev
- Topic: ABS,X and (ZP),Y dummy read test ROM
- Replies: 14
- Views: 19854
- Thu Mar 13, 2008 1:43 pm
- Forum: NESdev
- Topic: PPU powerup/reset behavior
- Replies: 25
- Views: 13366
- Thu Mar 13, 2008 11:56 am
- Forum: NESdev
- Topic: PPU powerup/reset behavior
- Replies: 25
- Views: 13366
OK, Ironsword doesn't have the problem because the loop that clears APU registers reads the register first since it uses the STA $4000,x addressing mode. So that reads $4015 after the frame IRQ flag has been set. Ah, good find, didn't know that that was an "RMW"? instruction. Maybe you could improv...
- Thu Mar 13, 2008 11:42 am
- Forum: NESdev
- Topic: PPU powerup/reset behavior
- Replies: 25
- Views: 13366
- Thu Mar 13, 2008 11:01 am
- Forum: NESdev
- Topic: PPU powerup/reset behavior
- Replies: 25
- Views: 13366
$2002 power on with $00 instead of $A0: - Ironsword: locks up at titlescreen with "Ironswor" and no sword in his hands - Cobra Triangle: locks up when starting game btw1: I probably don't need to mention that a lot of homebrew stuff fails. btw2: $2007 read buffer.nes usually succeeds if I leave $200...
- Wed Mar 12, 2008 9:50 pm
- Forum: NESdev
- Topic: PPU powerup/reset behavior
- Replies: 25
- Views: 13366
- Tue Mar 11, 2008 11:38 pm
- Forum: NESemdev
- Topic: Question about nestest rom
- Replies: 4
- Views: 3270
on Quietust's webspace
http://www.qmtpro.com/~nes/misc/nestest.nes
http://www.qmtpro.com/~nes/misc/nestest.txt
http://www.qmtpro.com/~nes/misc/nestest.nes
http://www.qmtpro.com/~nes/misc/nestest.txt
- Sat Mar 08, 2008 8:55 am
- Forum: NESemdev
- Topic: 2002h read and NMIs
- Replies: 5
- Views: 4847
- Sat Mar 08, 2008 7:35 am
- Forum: NESemdev
- Topic: New CPU test ROM
- Replies: 34
- Views: 48569
Specifically, do problems show up during page boundary crossing, when there's no page crossing, or both? I suspect that since the store value is affected by the upper byte of the target address (the "fixed" version, with 1 added to it), it's possible that a page crossing would also cause an issue w...