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

Corrects MOVE.bw Dn, (An)[+].

This commit is contained in:
Thomas Harte 2019-04-17 14:31:20 -04:00
parent 41d800cb63
commit 0bd653708c

View File

@ -2160,7 +2160,7 @@ struct ProcessorStorageConstructor {
case bw2(Dn, Ind): // MOVE.bw Dn, (An)
case bw2(Dn, PostInc): // MOVE.bw Dn, (An)+
op(is_byte_access ? Action::SetMoveFlagsb : Action::SetMoveFlagsw, seq("nw np", { a(destination_register) }, !is_byte_access));
op(Action::PerformOperation, seq("nw np", { a(destination_register) }, !is_byte_access));
if(destination_mode == PostInc) {
op(increment_action | MicroOp::DestinationMask);
}