ref: ef452ccbc7e448a490d1d081c63088cce7b73b0b
dir: /rgbdscheck.asm/
; pokecrystal requires rgbds 0.4.0 or newer. MAJOR EQU 0 MINOR EQU 4 PATCH EQU 0 if !DEF(__RGBDS_MAJOR__) || !DEF(__RGBDS_MINOR__) || !DEF(__RGBDS_PATCH__) fail "pokecrystal requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer." elif (__RGBDS_MAJOR__ < MAJOR) || \ (__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ < MINOR) || \ (__RGBDS_MAJOR__ == MAJOR && __RGBDS_MINOR__ == MINOR && __RGBDS_PATCH__ < PATCH) fail "pokecrystal requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer." endc