From 8599f2966f2b8220ade3d61e5741c4b2e787f18c Mon Sep 17 00:00:00 2001 From: shokre Date: Thu, 25 Nov 2021 02:43:44 +0100 Subject: [PATCH] feat: show break flag --- orao/views/cpu_state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orao/views/cpu_state.py b/orao/views/cpu_state.py index abfbcfc..4e1a44e 100644 --- a/orao/views/cpu_state.py +++ b/orao/views/cpu_state.py @@ -22,5 +22,5 @@ class CPUState(View): self.draw_text(3 * 8, 2 * 8, '%04X' % cpu.pc) 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, "NVsBDIZC", color=lc) self.draw_text(8 * 8, 1 * 8, "{0:b}".format(cpu.flags))