diff options
-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 |