1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-18 01:30:56 +00:00

Add model constraint to DIVS.l.

This commit is contained in:
Thomas Harte 2022-10-25 10:04:36 -04:00
parent b4fcf92a62
commit ab37b00356

View File

@ -1324,7 +1324,7 @@ Preinstruction Predecoder<model>::decode4(uint16_t instruction) {
case 0xec0: Decode(Op::JMP); case 0xec0: Decode(Op::JMP);
// 4-94 (p198) // 4-94 (p198)
case 0xc40: Decode(Op::DIVSl); case 0xc40: DecodeReq(model >= Model::M68020, Op::DIVSl);
default: break; default: break;
} }