Skip to content

Commit

Permalink
Fix an issue with BIOS open-bus reads when the skip_bios option is …
Browse files Browse the repository at this point in the history
…set.
  • Loading branch information
Arignir committed Feb 15, 2024
1 parent 1685837 commit 3b647de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion accuracy/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
screenshot ./.tests_screenshots/jsmolka_bios.png
''',
screenshot='jsmolka_bios.png',
skip=True,
),
Test(
name="Jsmolka - memory.gba",
Expand Down
1 change: 1 addition & 0 deletions source/gba/gba.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ gba_state_reset(
core->sp = 0x03007F00;
core->pc = 0x08000000;
gba->io.postflg = 1;
gba->memory.bios_bus = 0xe129f000;
core_reload_pipeline(gba);
} else {
core_interrupt(gba, VEC_RESET, MODE_SVC);
Expand Down

0 comments on commit 3b647de

Please sign in to comment.