diff --git a/Processors/68000/Implementation/68000Storage.cpp b/Processors/68000/Implementation/68000Storage.cpp index 32c20fcf0..173e0efab 100644 --- a/Processors/68000/Implementation/68000Storage.cpp +++ b/Processors/68000/Implementation/68000Storage.cpp @@ -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); }