aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-03-07 23:53:01 +0900
committerAstatin <[email protected]>2025-03-07 23:53:01 +0900
commit957834ffafd4c82700e27fd9d69b695bb2247d97 (patch)
tree2dd9e91df065328d145754b6572c52d09c5afa34 /Makefile
parentf56fac64f90feb0414a7372ea5897853738d110f (diff)
Fix random timing based halt locks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 78aa670..b7b1d2d 100644
--- a/Makefile
+++ b/Makefile
@@ -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