mirror of
https://github.com/pret/pokegold.git
synced 2026-03-21 17:34:16 -05:00
7 lines
281 B
NASM
7 lines
281 B
NASM
IF !DEF(__RGBDS_MAJOR__) || !DEF(__RGBDS_MINOR__) || !DEF(__RGBDS_PATCH__)
|
|
fail "pokegold requires rgbds v0.9.3 or newer."
|
|
ENDC
|
|
IF __RGBDS_MAJOR__ == 0 && (__RGBDS_MINOR__ < 9 || (__RGBDS_MINOR__ == 9 && __RGBDS_PATCH__ < 3))
|
|
fail "pokegold requires rgbds v0.9.3 or newer."
|
|
ENDC
|