shithub: pokered

Download patch

ref: f5eb8d3753f66ca0a0a51e58907037a04152914c
parent: 90197fcb86da19cae14c57801ece1a21e081092a
author: Bryan Bishop <kanzure@gmail.com>
date: Tue Jan 10 09:44:47 EST 2012

prefer "jp hl" over "ld pc, hl" for $E9

hg-commit-id: 4788aae09066


--- a/extras/gbz80disasm.py
+++ b/extras/gbz80disasm.py
@@ -255,7 +255,7 @@
   [ "LD L, [HL]", 0x6e, 0 ], 
   [ "LD L, L", 0x6d, 0 ], 
   [ "LD L, x", 0x2e, 1 ], 
-  [ "LD PC, HL", 0xe9, 0 ], 
+#  [ "LD PC, HL", 0xe9, 0 ], #prefer jp [hl]
   [ "LD SP, HL", 0xf9, 0 ], 
   [ "LD BC, ?", 0x1, 2 ], 
   [ "LD DE, ?", 0x11, 2 ],