mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-04-24 23:27:03 -05:00
play nice w/ cygwin; undeprecate used command
original-commit-id: 1b54f73323e98b59bfe238fa79a0f8d081d3e5d3
This commit is contained in:
parent
786d4fb35d
commit
a95d500a02
|
|
@ -16,7 +16,7 @@ class XRomStr(str):
|
|||
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 @@ temp_opt_table = [
|
|||
[ "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 ],
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user