git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit 59ecd4b9bcbe4deb305a9aa3f09e51803f7b58dd
parent 947687ac0de3b95c3f679fa6d5bcfb6cf69be0ee
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Sat, 11 Feb 2023 19:31:19 +0200

Explicitly set register A to 0 in the DMG, SGB, MGB, and SGB2 bootroms

Diffstat:
MBootROMs/dmg_boot.asm1+
MBootROMs/sgb_boot.asm1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/BootROMs/dmg_boot.asm b/BootROMs/dmg_boot.asm @@ -9,6 +9,7 @@ Start: ; Clear memory VRAM ld hl, $8000 + xor a .clearVRAMLoop ldi [hl], a diff --git a/BootROMs/sgb_boot.asm b/BootROMs/sgb_boot.asm @@ -9,6 +9,7 @@ Start: ; Clear memory VRAM ld hl, $8000 + xor a .clearVRAMLoop ldi [hl], a

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.