mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-12-05 11:04:30 +13:00
Add a subdirectory for RAM files
This commit is contained in:
parent
edb55e00f8
commit
ba15b4b44e
2
Makefile
2
Makefile
|
|
@ -11,8 +11,8 @@ rom_obj := \
|
||||||
home.o \
|
home.o \
|
||||||
main.o \
|
main.o \
|
||||||
maps.o \
|
maps.o \
|
||||||
|
ram.o \
|
||||||
text.o \
|
text.o \
|
||||||
wram.o \
|
|
||||||
gfx/pics.o \
|
gfx/pics.o \
|
||||||
gfx/sprites.o \
|
gfx/sprites.o \
|
||||||
gfx/tilesets.o
|
gfx/tilesets.o
|
||||||
|
|
|
||||||
9
ram.asm
Normal file
9
ram.asm
Normal file
|
|
@ -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
|
SECTION "Audio RAM", WRAM0
|
||||||
|
|
||||||
wUnusedC000:: db
|
wUnusedC000:: db
|
||||||
|
|
@ -2337,8 +2329,3 @@ SECTION "Stack", WRAM0
|
||||||
; the stack grows downward
|
; the stack grows downward
|
||||||
ds $100 - 1
|
ds $100 - 1
|
||||||
wStack:: db
|
wStack:: db
|
||||||
|
|
||||||
|
|
||||||
INCLUDE "sram.asm"
|
|
||||||
|
|
||||||
INCLUDE "hram.asm"
|
|
||||||
Loading…
Reference in a new issue