1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-08 14:25:05 +00:00

Causes SWAP actually to perform.

This commit is contained in:
Thomas Harte
2019-04-24 13:06:12 -04:00
parent bb9424d944
commit 958d44a20d

View File

@@ -663,7 +663,7 @@ struct ProcessorStorageConstructor {
switch(mapping.decoder) { switch(mapping.decoder) {
case Decoder::SWAP: { case Decoder::SWAP: {
storage_.instructions[instruction].set_destination(storage_, Dn, ea_register); storage_.instructions[instruction].set_destination(storage_, Dn, ea_register);
op(Action::None, seq("np")); op(Action::PerformOperation, seq("np"));
} break; } break;
case Decoder::EXG: { case Decoder::EXG: {