1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +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);
// 4-94 (p198)
case 0xc40: Decode(Op::DIVSl);
case 0xc40: DecodeReq(model >= Model::M68020, Op::DIVSl);
default: break;
}