diff options
Diffstat (limited to 'disasm.c')
-rw-r--r-- | disasm.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -65,7 +65,10 @@ void disasm(struct sux *cpu, uint64_t *operands, uint8_t lines, uint8_t opcode, } switch (optype[opcode]) { - case IMPL: wprintw(scr, "%s%s" , opname[opcode], postfix); break; + case BREG: + case IMPL: + wprintw(scr, "%s%s" , opname[opcode], postfix); + break; case IMM: switch ((1 << ((prefix >> 4) & 3))) { case 1: wprintw(scr, "%s #$%02X" , op, value); break; |