diff options
author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-22 12:04:13 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-22 12:04:13 -0400 |
commit | 268e2cae0b98779cfb0c590ab9612151c752e868 (patch) | |
tree | 219549f24016d1ab91a46bddb8e1392808eb2c50 /constants.asm | |
parent | 34cbb1a9d43856e9f114f7a79e596cb56aa7e1ed (diff) |
Move most files out of the root directory
- ram/ froups the ram source files
- slack/ is for unused garbage taking up the ROM's free space
- gfx.py moved to utils/
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/constants.asm b/constants.asm index 0d1fdec..d3e99ef 100644 --- a/constants.asm +++ b/constants.asm @@ -1,6 +1,18 @@ -INCLUDE "charmap.asm" +INCLUDE "constants/charmap.asm" -INCLUDE "macros.asm" +INCLUDE "macros/enum.asm" +INCLUDE "macros/predef.asm" +INCLUDE "macros/data.asm" +INCLUDE "macros/code.asm" +INCLUDE "macros/gfx.asm" +INCLUDE "macros/coords.asm" +INCLUDE "macros/farcall.asm" +INCLUDE "macros/text.asm" +INCLUDE "macros/wram.asm" +INCLUDE "macros/audio.asm" +INCLUDE "macros/scripts.asm" +INCLUDE "macros/queue.asm" +INCLUDE "macros/maps.asm" INCLUDE "constants/audio_constants.asm" INCLUDE "constants/gfx_constants.asm" |