summaryrefslogtreecommitdiff
path: root/rgbdscheck.asm
blob: d10f8d5062a7f430e82734dcb20181c37fec8a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; pokered 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 "pokered 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 "pokered requires rgbds {MAJOR}.{MINOR}.{PATCH} or newer."
endc