diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-06-17 22:54:47 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-06-17 22:54:47 -0400 |
| commit | ba15b4b44e33877f1c314910648c5a7d682c7c75 (patch) | |
| tree | 980eac5aa02a20ca52b8362927850d470260e685 | |
| parent | Rename `SLP` to `SLP_MASK` (#361) (diff) | |
| download | pokeyellow-ba15b4b44e33877f1c314910648c5a7d682c7c75.tar.gz pokeyellow-ba15b4b44e33877f1c314910648c5a7d682c7c75.tar.xz pokeyellow-ba15b4b44e33877f1c314910648c5a7d682c7c75.zip | |
Add a subdirectory for RAM files
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | ram.asm | 9 | ||||
| -rw-r--r-- | ram/hram.asm (renamed from hram.asm) | 0 | ||||
| -rw-r--r-- | ram/sram.asm (renamed from sram.asm) | 0 | ||||
| -rw-r--r-- | ram/vram.asm (renamed from vram.asm) | 0 | ||||
| -rw-r--r-- | ram/wram.asm (renamed from wram.asm) | 13 |
6 files changed, 10 insertions, 14 deletions
@@ -11,8 +11,8 @@ rom_obj := \ home.o \ main.o \ maps.o \ + ram.o \ text.o \ - wram.o \ gfx/pics.o \ gfx/sprites.o \ gfx/tilesets.o diff --git a/ram.asm b/ram.asm new file mode 100644 index 00000000..24040b14 --- /dev/null +++ b/ram.asm @@ -0,0 +1,9 @@ +INCLUDE "constants.asm" + +INCLUDE "macros/wram.asm" + + +INCLUDE "ram/vram.asm" +INCLUDE "ram/wram.asm" +INCLUDE "ram/sram.asm" +INCLUDE "ram/hram.asm" @@ -1,11 +1,3 @@ -INCLUDE "constants.asm" - -INCLUDE "macros/wram.asm" - - -INCLUDE "vram.asm" - - SECTION "Audio RAM", WRAM0 wUnusedC000:: db @@ -2337,8 +2329,3 @@ SECTION "Stack", WRAM0 ; the stack grows downward ds $100 - 1 wStack:: db - - -INCLUDE "sram.asm" - -INCLUDE "hram.asm" |
