Start + Option - Game Over

This commit is contained in:
Pecusx
2022-08-24 12:44:33 +02:00
parent 6f2e102c6a
commit 77317f263a
6 changed files with 10 additions and 3 deletions
+4
View File
@@ -1188,6 +1188,9 @@ notpressed
; Select and Option
lda CONSOL
tay
and #%00000101 ; Start + Option
beq QuitToGameover
tya
and #%00000100
beq callActivation ; Option key
tya
@@ -1208,6 +1211,7 @@ notpressed
bit escFlag
bpl notpressed
;---O pressed-quit game to game over screen---
QuitToGameover
mva #$40 escFlag
rts
@