1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Inserts missing program fetch for CMPI.bw #, (d8/16...).

This commit is contained in:
Thomas Harte 2019-04-24 14:45:24 -04:00
parent e214584c76
commit 75a7f7ab22

View File

@ -1945,7 +1945,7 @@ struct ProcessorStorageConstructor {
case bw(d8AnXn): // CMPI.bw #, (d8, An, Xn)
op(int(Action::AssembleWordDataFromPrefetch) | MicroOp::SourceMask, seq("np"));
op( calc_action_for_mode(mode) | MicroOp::DestinationMask,
seq(pseq("nrd np", mode), { ea(1) }, !is_byte_access));
seq(pseq("np nrd np", mode), { ea(1) }, !is_byte_access));
op(Action::PerformOperation);
break;