From 79518a602e6241ff6bd6e905fabaf644680f7469 Mon Sep 17 00:00:00 2001 From: SatoMew Date: Thu, 30 Jan 2025 22:13:40 +0000 Subject: Consistently refer to CGB, not GBC (#491) --- home/start.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'home') diff --git a/home/start.asm b/home/start.asm index 764f9468..5e301da2 100644 --- a/home/start.asm +++ b/home/start.asm @@ -1,10 +1,10 @@ _Start:: - cp GBC - jr z, .gbc + cp CGB + jr z, .cgb xor a jr .ok -.gbc +.cgb ld a, FALSE .ok - ld [wGBC], a + ld [wOnCGB], a jp Init -- cgit v1.3.1-sl0p