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

Corrects MOVE destinations.

This commit is contained in:
Thomas Harte 2019-04-06 18:33:53 -04:00
parent ec494511ec
commit 49a22674ba

View File

@ -1220,7 +1220,7 @@ struct ProcessorStorageConstructor {
default: // (An), (An)+, -(An), (d16, An), (d8, An Xn), (xxx).W, (xxx).L, #
storage_.instructions[instruction].destination = &storage_.destination_bus_data_[0];
storage_.instructions[instruction].destination = &storage_.address_[destination_register];
storage_.instructions[instruction].destination_address = &storage_.address_[destination_register];
break;
}