diff options
| author | SatoMew <SatoMew@users.noreply.github.com> | 2025-01-30 22:13:40 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-30 17:13:40 -0500 |
| commit | 79518a602e6241ff6bd6e905fabaf644680f7469 (patch) | |
| tree | 60e3722888ffeaa3f0cc99c9551a59582332a56c /home | |
| parent | Consistently capitalize `ASSERT` directives (#489) (diff) | |
| download | pokeyellow-79518a602e6241ff6bd6e905fabaf644680f7469.tar.gz pokeyellow-79518a602e6241ff6bd6e905fabaf644680f7469.tar.xz pokeyellow-79518a602e6241ff6bd6e905fabaf644680f7469.zip | |
Consistently refer to CGB, not GBC (#491)
Diffstat (limited to 'home')
| -rw-r--r-- | home/start.asm | 8 |
1 files changed, 4 insertions, 4 deletions
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 |
