mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12: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 \
|
||||
main.o \
|
||||
maps.o \
|
||||
ram.o \
|
||||
text.o \
|
||||
wram.o \
|
||||
gfx/pics.o \
|
||||
gfx/sprites.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
|
||||
|
||||
wUnusedC000:: db
|
||||
|
@ -2337,8 +2329,3 @@ SECTION "Stack", WRAM0
|
|||
; the stack grows downward
|
||||
ds $100 - 1
|
||||
wStack:: db
|
||||
|
||||
|
||||
INCLUDE "sram.asm"
|
||||
|
||||
INCLUDE "hram.asm"
|
Loading…
Reference in a new issue