diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 16:40:09 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 16:40:09 -0600 |
commit | b14f54f861972c8a4648d70ccddecd386f70ecb2 (patch) | |
tree | e29a7450a3cce168ff32980a5a6281c0989d2ad7 /romstr.py | |
parent | 33be75263a85634e3e244c1768ec5dacf0d07b56 (diff) |
RomStr doesn't need deepcopy
original-commit-id: 5eb81b07f32fe00ad8be23f80a32eb44db42831e
Diffstat (limited to 'romstr.py')
-rw-r--r-- | romstr.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ import sys, os, time, datetime, json from gbz80disasm import opt_table from ctypes import c_int8 -from copy import copy, deepcopy +from copy import copy from labels import get_label_from_line, get_address_from_line_comment relative_jumps = [0x38, 0x30, 0x20, 0x28, 0x18, 0xc3, 0xda, 0xc2, 0x32] |