diff options
author | Astatin <[email protected]> | 2025-03-07 23:53:01 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-03-07 23:53:01 +0900 |
commit | 957834ffafd4c82700e27fd9d69b695bb2247d97 (patch) | |
tree | 2dd9e91df065328d145754b6572c52d09c5afa34 | |
parent | f56fac64f90feb0414a7372ea5897853738d110f (diff) |
Fix random timing based halt locks
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | main.gbasm | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -10,7 +10,7 @@ dialogues.gbasm: ./dialogues.gbtxt ./scripts/generate_from_gbtxt.py build/main.rom: main.gbasm tileset.gbasm dialogues.gbasm mkdir -p build - gbasm $< $@ + gbasm $< $@ > build/main.sym run: build/main.rom mkdir -p recordings @@ -20,7 +20,7 @@ sameboy: build/main.rom sameboy build/main.rom gearboy: build/main.rom - gearboy build/main.rom + gearboy build/main.rom build/main.sym clean: rm -rf build @@ -288,7 +288,7 @@ STAT_Entrypoint: .DISABLE_LYC_INTERRUPT POP DE POP AF - RET + RETI .End_Top_Bar: .DISABLE_DIALOGUE |