SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 8c9c97b74fdbe17c6ee7a99856b34fba63953818 parent 42474a0859046ae75a7f1f6bb0c0a5c7cbb45b9c Author: Lior Halphon <LIJI32@gmail.com> Date: Fri, 23 Feb 2024 18:58:00 +0200 ISX does not support symbols with a bank >FF Diffstat:
| M | Core/gb.c | 7 | +------ |
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/Core/gb.c b/Core/gb.c @@ -612,12 +612,7 @@ int GB_load_isx(GB_gameboy_t *gb, const char *path) name[length] = 0; READ(flag); // unused - READ(byte); - bank = byte; - if (byte >= 0x80) { - READ(byte); - bank |= byte << 8; - } + READ(bank); READ(address); address = LE16(address);
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.