mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
finally compile multiple objects
pokecrystal.asm doesnt really make sense now so its gone add includes.asm so objects have a standard include set
This commit is contained in:
parent
34aac15db0
commit
f6706ecb09
2
Makefile
2
Makefile
@ -6,7 +6,7 @@ PYTHON := python
|
|||||||
TEXTFILES := $(shell find ./ -type f -name '*.asm' | grep -v globals.asm)
|
TEXTFILES := $(shell find ./ -type f -name '*.asm' | grep -v globals.asm)
|
||||||
TEXTQUEUE :=
|
TEXTQUEUE :=
|
||||||
|
|
||||||
OBJS := pokecrystal.o
|
OBJS := wram.o main.o
|
||||||
|
|
||||||
PNGS := $(shell find gfx/ -type f -name '*.png')
|
PNGS := $(shell find gfx/ -type f -name '*.png')
|
||||||
LZS := $(shell find gfx/ -type f -name '*.lz')
|
LZS := $(shell find gfx/ -type f -name '*.lz')
|
||||||
|
@ -1,5 +1,2 @@
|
|||||||
INCLUDE "globals.asm"
|
INCLUDE "globals.asm"
|
||||||
|
|
||||||
INCLUDE "constants.asm"
|
INCLUDE "constants.asm"
|
||||||
INCLUDE "wram.asm"
|
|
||||||
INCLUDE "main.asm"
|
|
3
main.asm
3
main.asm
@ -1,3 +1,6 @@
|
|||||||
|
INCLUDE "includes.asm"
|
||||||
|
|
||||||
|
|
||||||
SECTION "bank0",ROM0
|
SECTION "bank0",ROM0
|
||||||
|
|
||||||
INCLUDE "rst.asm"
|
INCLUDE "rst.asm"
|
||||||
|
Loading…
Reference in New Issue
Block a user