mirror of
https://github.com/pret/pokeyellow.git
synced 2026-09-27 05:34:56 -04: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, TRUE
|
|
.ok
|
|
ldh [hOnCGB], a
|
|
jp Init
|