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:
parent
e82f2a3810
commit
c7097274c9
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user