summaryrefslogtreecommitdiff
path: root/extras/gbz80disasm.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-01-10 23:42:47 -0600
committerBryan Bishop <kanzure@gmail.com>2012-01-10 23:42:47 -0600
commite4bce7ed15934f991cfc0b2cce0a33bbfd714b6e (patch)
treef22803c05b7b295b53b95b7d04df199290995cdd /extras/gbz80disasm.py
parent811529f6a430949bad61d34136798936fe8f8082 (diff)
lowercase two-byte ops that don't have params
hg-commit-id: 4b518c1bd0a0
Diffstat (limited to 'extras/gbz80disasm.py')
-rw-r--r--extras/gbz80disasm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/gbz80disasm.py b/extras/gbz80disasm.py
index feec4a4d..1f9f7c6c 100644
--- a/extras/gbz80disasm.py
+++ b/extras/gbz80disasm.py
@@ -609,7 +609,7 @@ def output_bank_opcodes(original_offset, max_byte_count=0x4000):
temp_maybe = maybe_byte
temp_maybe += ( ord(rom[offset+1]) << 8)
if temp_maybe in opt_table.keys():
- opstr = copy(opt_table[temp_maybe][0])
+ opstr = opt_table[temp_maybe][0].lower()
if "x" in opstr:
for x in range(0, opstr.count("x")):