Don't silently skip an opcode just because of an unexpected mask
This commit is contained in:
parent
43de90a9df
commit
8dcac80091
1 changed files with 3 additions and 0 deletions
|
|
@ -1228,6 +1228,9 @@ void build_opcode_jump_table(FILE *outfile, const opcode_struct *opcode_table, i
|
|||
const opcode_struct *ostruct = &opcode_table[opc];
|
||||
|
||||
switch (ostruct->op_mask) {
|
||||
default:
|
||||
printf("Unsupported op_mask %04x for %s\n", ostruct->op_mask, ostruct->name);
|
||||
[[fallthrough]]
|
||||
case 0xf000:
|
||||
case 0xf100:
|
||||
case 0xf180:
|
||||
|
|
|
|||
Loading…
Reference in a new issue