Browse Source

Fix double-processing of instructions

master
Forest Belton 2 years ago
parent
commit
6c07005027
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/insn.c

+ 1
- 0
src/insn.c View File

@ -34,6 +34,7 @@ void insn_execute(cpu_t *cpu, uint32_t insn) {
} }
secondary_insn_handler[op2](cpu, insn); secondary_insn_handler[op2](cpu, insn);
return;
} }
if (op > TABLE_SIZE || primary_insn_handler[op] == NULL) { if (op > TABLE_SIZE || primary_insn_handler[op] == NULL) {

Loading…
Cancel
Save