diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-13 00:09:05 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-13 00:09:05 -0600 |
commit | 2b23c09e57fbf1d3079326298bcc8ec4e867e69f (patch) | |
tree | 34308c62041bbe96ba9ed4cef207748d6deab51a /pokemontools/wram.py | |
parent | 9c56fcd97d73e96d43d96a661113a2d8b723dccd (diff) |
include some constants for wram.asm
UNfortunately these aren't being parsed from files at the moment.
Diffstat (limited to 'pokemontools/wram.py')
-rw-r--r-- | pokemontools/wram.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pokemontools/wram.py b/pokemontools/wram.py index 60001aa..6d2c2cc 100644 --- a/pokemontools/wram.py +++ b/pokemontools/wram.py @@ -5,6 +5,10 @@ RGBDS BSS section and constant parsing. import os +# TODO: parse these constants from constants.asm +NUM_OBJECTS = 0x10 +OBJECT_LENGTH = 0x10 + def make_wram_labels(wram_sections): wram_labels = {} for section in wram_sections: |