diff options
author | Astatin <[email protected]> | 2025-03-07 22:28:36 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-03-07 22:28:36 +0900 |
commit | f56fac64f90feb0414a7372ea5897853738d110f (patch) | |
tree | a3093cab25f623221ce9c6afc6bb7d0be1351863 | |
parent | 0e86a8e70316f5fa9c0d0f66496740d97e312b43 (diff) |
Add automatic recordings of inputs
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | main.gbasm | 6 |
3 files changed, 4 insertions, 6 deletions
@@ -1 +1,2 @@ build/ +recordings/ @@ -13,7 +13,8 @@ build/main.rom: main.gbasm tileset.gbasm dialogues.gbasm gbasm $< $@ run: build/main.rom - gb $< + mkdir -p recordings + gb $< --record-input "./recordings/$(shell date -Iseconds).record" sameboy: build/main.rom sameboy build/main.rom @@ -174,11 +174,7 @@ New_Dungeon: .ENABLE_VBLANK_INTERRUPTS EI Wait_for_Interrupt.loop: - LD A, $reg_interrupt_enable - LD C, A - LD B, $00 - LD A, $reg_interrupt_flags - DBG + HALT EI JP =Wait_for_Interrupt.loop |