mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
3550a87360
Hard-code the version string in the failure message so it won't be in hex
15 lines
451 B
NASM
15 lines
451 B
NASM
; pokecrystal requires rgbds 0.4.2 or newer.
|
|
MAJOR EQU 0
|
|
MINOR EQU 4
|
|
PATCH EQU 2
|
|
|
|
if !DEF(__RGBDS_MAJOR__) || !DEF(__RGBDS_MINOR__) || !DEF(__RGBDS_PATCH__)
|
|
fail "pokecrystal requires rgbds 0.4.2 or newer."
|
|
else
|
|
if (__RGBDS_MAJOR__ < MAJOR) || \
|
|
(__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ < MINOR) || \
|
|
(__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ == MINOR && __RGBDS_PATCH__ < PATCH)
|
|
fail "pokecrystal requires rgbds 0.4.2 or newer."
|
|
endc
|
|
endc
|