• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Emily's Z80 assembler for the Gameboy.


Commit MetaInfo

Revision801e3cc25922c5cb307d5fab12c9790924d133ef (tree)
Zeit2021-02-05 11:21:07
AutorAlaskanEmily <emily@alas...>
CommiterAlaskanEmily

Log Message

Fix encoding ld a, <reg> instructions

Ändern Zusammenfassung

Diff

--- a/em_gb_asm.py
+++ b/em_gb_asm.py
@@ -438,7 +438,7 @@ LD_ARGS = (
438438 ("h", 0x60),
439439 ("l", 0x68),
440440 ("(hl)", 0x70),
441- ("a", 0x77)
441+ ("a", 0x78)
442442 )
443443 for o1, base in LD_ARGS:
444444 d = {}