fix: fix stack pointer address
This commit is contained in:
parent
4e71d8ee21
commit
b6d31d994c
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class CPUState(View):
|
||||||
self.draw_text(0, 2 * 8, 'PC:', color=lc)
|
self.draw_text(0, 2 * 8, 'PC:', color=lc)
|
||||||
self.draw_text(8 * 8, 2 * 8, 'SP:', color=lc)
|
self.draw_text(8 * 8, 2 * 8, 'SP:', color=lc)
|
||||||
self.draw_text(3 * 8, 2 * 8, '%04X' % cpu.pc)
|
self.draw_text(3 * 8, 2 * 8, '%04X' % cpu.pc)
|
||||||
self.draw_text(11 * 8, 2 * 8, '%04X' % cpu.sp)
|
self.draw_text(11 * 8, 2 * 8, '%04X' % (cpu.sp + 0x100))
|
||||||
|
|
||||||
self.draw_text(8 * 8, 0 * 8, "NVssDIZC", color=lc)
|
self.draw_text(8 * 8, 0 * 8, "NVssDIZC", color=lc)
|
||||||
self.draw_text(8 * 8, 1 * 8, "{0:b}".format(cpu.flags))
|
self.draw_text(8 * 8, 1 * 8, "{0:b}".format(cpu.flags))
|
||||||
|
|
Loading…
Reference in a new issue