get RomStr from romstr.py in gbz80disasm

This commit is contained in:
Bryan Bishop 2012-06-06 20:26:02 -05:00
parent 63ccfbfd62
commit 315edbe14b

View File

@ -6,6 +6,8 @@ from copy import copy, deepcopy
from ctypes import c_int8
import json
import random
from romstr import RomStr
spacing = "\t"
# this was originally for renaming freeze maps for a unique name
@ -15,10 +17,6 @@ def random_hash():
random.choice(available_chars)
for dummy in xrange(5))
class RomStr(str):
"""simple wrapper to prevent a giant rom from being shown on screen"""
def __repr__(self):
return "RomStr(too long)"
def load_rom(filename="../baserom.gbc"):
"""loads bytes into memory"""
global rom