Don't silently skip an opcode just because of an unexpected mask

This commit is contained in:
Jeff Epler 2025-04-03 18:49:01 +02:00
parent 43de90a9df
commit 8dcac80091

View file

@ -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: