@@ -56,7 +56,7 @@ def test_blargg_instr_test_v5_basics(self):
5656 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/01-basics.nes" )
5757 ppu = PPU (rom )
5858 cpu = CPU (ppu , rom )
59- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
59+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
6060 rom .prg_ram [0 ] = 0x80
6161 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
6262 cpu .step ()
@@ -70,7 +70,7 @@ def test_blargg_instr_test_v5_implied(self):
7070 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/02-implied.nes" )
7171 ppu = PPU (rom )
7272 cpu = CPU (ppu , rom )
73- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
73+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
7474 rom .prg_ram [0 ] = 0x80
7575 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
7676 cpu .step ()
@@ -84,7 +84,7 @@ def test_blargg_instr_test_v5_branches(self):
8484 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/10-branches.nes" )
8585 ppu = PPU (rom )
8686 cpu = CPU (ppu , rom )
87- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
87+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
8888 rom .prg_ram [0 ] = 0x80
8989 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
9090 cpu .step ()
@@ -98,7 +98,7 @@ def test_blargg_instr_test_v5_stack(self):
9898 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/11-stack.nes" )
9999 ppu = PPU (rom )
100100 cpu = CPU (ppu , rom )
101- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
101+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
102102 rom .prg_ram [0 ] = 0x80
103103 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
104104 cpu .step ()
@@ -112,7 +112,7 @@ def test_blargg_instr_test_v5_jmp_jsr(self):
112112 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/12-jmp_jsr.nes" )
113113 ppu = PPU (rom )
114114 cpu = CPU (ppu , rom )
115- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
115+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
116116 rom .prg_ram [0 ] = 0x80
117117 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
118118 cpu .step ()
@@ -126,7 +126,7 @@ def test_blargg_instr_test_v5_rts(self):
126126 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/13-rts.nes" )
127127 ppu = PPU (rom )
128128 cpu = CPU (ppu , rom )
129- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
129+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
130130 rom .prg_ram [0 ] = 0x80
131131 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
132132 cpu .step ()
@@ -140,7 +140,7 @@ def test_blargg_instr_test_v5_rti(self):
140140 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/14-rti.nes" )
141141 ppu = PPU (rom )
142142 cpu = CPU (ppu , rom )
143- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
143+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
144144 rom .prg_ram [0 ] = 0x80
145145 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
146146 cpu .step ()
@@ -154,7 +154,7 @@ def test_blargg_instr_test_v5_brk(self):
154154 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/15-brk.nes" )
155155 ppu = PPU (rom )
156156 cpu = CPU (ppu , rom )
157- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
157+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
158158 rom .prg_ram [0 ] = 0x80
159159 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
160160 cpu .step ()
@@ -168,7 +168,7 @@ def test_blargg_instr_test_v5_special(self):
168168 rom = ROM ("../NESEmulator/Tests/instr_test-v5/rom_singles/16-special.nes" )
169169 ppu = PPU (rom )
170170 cpu = CPU (ppu , rom )
171- # Tests run as long as $6000 is 80, and then $6000 is result code; 0 means success
171+ # Tests run as long as 0x6000 is 80, and then 0x6000 is result code; 0 means success
172172 rom .prg_ram [0 ] = 0x80
173173 while rom .prg_ram [0 ] == 0x80 : # go until first unofficial opcode test
174174 cpu .step ()
0 commit comments