1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-18 14:40:33 +00:00

Add register numbers to MOVEs.

This commit is contained in:
Thomas Harte 2022-04-19 16:33:18 -04:00
parent e82f2a3810
commit c7097274c9

View File

@ -3084,7 +3084,7 @@ struct ProcessorStorageConstructor {
// Perform the MOVE[A]'s fetch..
const int combined_source_mode = combined_mode(ea_mode, ea_register, true);
dumper.set_source(combined_source_mode);
dumper.set_source(combined_source_mode, ea_register);
switch(is_long_word_access ? l(combined_source_mode) : bw(combined_source_mode)) {
default: continue;
@ -3153,7 +3153,7 @@ struct ProcessorStorageConstructor {
// Perform the MOVE[A]'s store.
const int combined_destination_mode = combined_mode(destination_mode, data_register, true);
dumper.set_dest(combined_destination_mode);
dumper.set_dest(combined_destination_mode, data_register);
switch(is_long_word_access ? l(combined_destination_mode) : bw(combined_destination_mode)) {
default: continue;