summaryrefslogtreecommitdiff
path: root/pokemontools/crystalparts/asmline.py
blob: e62d77450ac3532ee6c7d161b138acdd898e32b8 (plain)
1
2
3
4
5
6
7
8
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