mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Add note for my tomorrow self.
This commit is contained in:
parent
06fe320cc0
commit
5db0ea0236
@ -485,6 +485,12 @@ void Executor<model, BusHandler>::movem(Preinstruction instruction, uint32_t sou
|
||||
|
||||
} else {
|
||||
// Move memory to registers.
|
||||
//
|
||||
// Another 68000 convention has been broken here; the instruction form is:
|
||||
// MOVEM <ea>, #
|
||||
// ... but the instruction is encoded as [MOVEM] [#] [ea].
|
||||
//
|
||||
// TODO: solve this.
|
||||
int index = 0;
|
||||
while(dest) {
|
||||
if(dest & 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user