shithub: pokecrystal

Download patch

ref: 1b54f73323e98b59bfe238fa79a0f8d081d3e5d3
parent: 0cce53bea3e8b1da4e59ebba198cc95b98d77698
author: padz <[email protected]>
date: Wed Nov 14 21:33:02 EST 2012

play nice w/ cygwin; undeprecate used command

--- a/extras/gbz80disasm.py
+++ b/extras/gbz80disasm.py
@@ -16,7 +16,7 @@
 def load_rom(filename="../baserom.gbc"):
     """loads bytes into memory"""
     global rom
-    file_handler = open(filename, "r") 
+    file_handler = open(filename, "rb") 
     rom = XRomStr(file_handler.read())
     file_handler.close()
     return rom
@@ -275,7 +275,7 @@
   [ "LD DE, ?", 0x11, 2 ],
   [ "LD HL, ?", 0x21, 2 ],
   [ "LD SP, ?", 0x31, 2 ],
-#  [ "LD [?], SP", 0x8, 2 ],
+  [ "LD [?], SP", 0x8, 2 ],
   [ "LD [?], A", 0xea, 2 ],
   [ "NOP", 0x0, 0 ],
   [ "OR A", 0xb7, 0 ],