mirror of
https://github.com/pret/pokered.git
synced 2026-04-25 07:32:40 -05:00
11 lines
100 B
NASM
11 lines
100 B
NASM
_Start::
|
|
cp BOOTUP_A_CGB
|
|
jr z, .cgb
|
|
xor a
|
|
jr .ok
|
|
.cgb
|
|
ld a, FALSE
|
|
.ok
|
|
ld [wOnCGB], a
|
|
jp Init
|