diff options
author | yenatch <yenatch@gmail.com> | 2014-01-27 17:09:09 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-01-27 17:09:09 -0500 |
commit | c49dd99a986b58a9a19f6e53c6e132aa5c18c1de (patch) | |
tree | c52f97df411d435f433f82ecb9a21ea8cd79e8a0 /constants/wram_constants.asm | |
parent | 2b961ceaf41c88edf4625d66aa35acf1dada825e (diff) |
Split wram.asm from poke{red,blue}.o into wram.o
wram.asm still defines some constants. They're moved into constants/wram_constants.asm.
Diffstat (limited to 'constants/wram_constants.asm')
-rw-r--r-- | constants/wram_constants.asm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm new file mode 100644 index 00000000..111ae584 --- /dev/null +++ b/constants/wram_constants.asm @@ -0,0 +1,7 @@ + +SPRITEBUFFERSIZE EQU 7*7 * 8 ; 7 * 7 (tiles) * 8 (bytes per tile) + +; Overload enemy party data +W_WATERRATE EQU $d8a4 +W_WATERMONS EQU $d8a5 + |