summaryrefslogtreecommitdiff
path: root/pokemontools/crystal.py
diff options
context:
space:
mode:
Diffstat (limited to 'pokemontools/crystal.py')
-rw-r--r--pokemontools/crystal.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py
index 8a12dad..a3d87f0 100644
--- a/pokemontools/crystal.py
+++ b/pokemontools/crystal.py
@@ -7022,14 +7022,8 @@ def apply_diff(diff, try_fixing=True, do_compile=True):
os.system("mv ../main1.asm ../main.asm")
return False
-class AsmLine:
- # TODO: parse label lines
- def __init__(self, line, bank=None):
- self.line = line
- self.bank = bank
-
- def to_asm(self):
- return self.line
+import crystalparts.asmline
+AsmLine = crystalparts.asmline.AsmLine
class Incbin:
def __init__(self, line, bank=None, debug=False):