summaryrefslogtreecommitdiffstats
path: root/src/emu/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu.c')
-rw-r--r--src/emu/cpu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/cpu.c b/src/emu/cpu.c
index f32bb7f..f083283 100644
--- a/src/emu/cpu.c
+++ b/src/emu/cpu.c
@@ -197,6 +197,7 @@ void execute(uint32_t IR)
break;
case OPC_GT:
GPR[a] = !Z && !N;
+ break;
case OPC_MOV:
GPR[a] = c;
break;