mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-10 15:30:59 +13:00
Let rgbasm handle undefined version constants.
This commit is contained in:
parent
1439ba6f2a
commit
b1b084334c
|
|
@ -1,6 +1,4 @@
|
||||||
_JAPAN EQU 0
|
INCLUDE "version.asm"
|
||||||
_GREEN EQU 0
|
|
||||||
_YELLOW EQU 0
|
|
||||||
|
|
||||||
INCLUDE "macros.asm"
|
INCLUDE "macros.asm"
|
||||||
|
|
||||||
|
|
|
||||||
20
version.asm
Normal file
20
version.asm
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
if !def(_RED)
|
||||||
|
_RED EQU 0
|
||||||
|
endc
|
||||||
|
|
||||||
|
if !def(_BLUE)
|
||||||
|
_BLUE EQU 0
|
||||||
|
endc
|
||||||
|
|
||||||
|
if !def(_JAPAN)
|
||||||
|
_JAPAN EQU 0
|
||||||
|
endc
|
||||||
|
|
||||||
|
if !def(_GREEN)
|
||||||
|
_GREEN EQU 0
|
||||||
|
endc
|
||||||
|
|
||||||
|
if !def(_YELLOW)
|
||||||
|
_YELLOW EQU 0
|
||||||
|
endc
|
||||||
|
|
||||||
Loading…
Reference in a new issue