Emily's Z80 assembler for the Gameboy.
Revision | 801e3cc25922c5cb307d5fab12c9790924d133ef (tree) |
---|---|
Zeit | 2021-02-05 11:21:07 |
Autor | AlaskanEmily <emily@alas...> |
Commiter | AlaskanEmily |
Fix encoding ld a, <reg> instructions
@@ -438,7 +438,7 @@ LD_ARGS = ( | ||
438 | 438 | ("h", 0x60), |
439 | 439 | ("l", 0x68), |
440 | 440 | ("(hl)", 0x70), |
441 | - ("a", 0x77) | |
441 | + ("a", 0x78) | |
442 | 442 | ) |
443 | 443 | for o1, base in LD_ARGS: |
444 | 444 | d = {} |