diff options
| author | Astrid Smith | 2010-09-13 16:38:04 -0700 |
|---|---|---|
| committer | Astrid Smith | 2010-09-13 16:38:04 -0700 |
| commit | cff026c3a067ec09fc5775996a48d7ad73412230 (patch) | |
| tree | fb5c3aea0523b82fc33a1399642f1c850bc1f813 | |
| parent | f9b6214d97d987b569bb901decbf6cc39d157224 (diff) | |
Fixed endianness issue in deref :(
| -rw-r--r-- | main.asm | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -92,6 +92,7 @@ emu_teardown: ;; Take a virtual address in d1 and dereference it. Returns the ;; host address in a0. Destroys a0, d0. deref: + rol.w #8,d1 move.w d1,d0 andi.w #$3FFF,d0 movea.w d0,a0 |
