Fix number of operands for OP_FLP in instruction info table

FLP takes a source operand.
This commit is contained in:
jn 2022-12-31 12:17:15 +01:00
parent 9b6ac30abf
commit bf38917ee0

View File

@ -246,7 +246,7 @@ static const asm_iinfo_t asm_iinfos[256] = {
[OP_IREM ] = { "IREM ", 2 }, [OP_IREM ] = { "IREM ", 2 },
[OP_RTA ] = { "RTA ", 2 }, [OP_RTA ] = { "RTA ", 2 },
[OP_RETI ] = { "RETI ", 0 }, [OP_RETI ] = { "RETI ", 0 },
[OP_FLP ] = { "FLP ", 0 } [OP_FLP ] = { "FLP ", 1 }
}; };
static const asm_iinfo_t *asm_iinfo_get(uint8_t opcode) { static const asm_iinfo_t *asm_iinfo_get(uint8_t opcode) {