mirror of
https://github.com/pkali/scorch_src.git
synced 2026-05-20 22:34:21 +02:00
Better Start+Option handling
This commit is contained in:
+4
-1
@@ -1630,7 +1630,10 @@ noKey
|
|||||||
.endp
|
.endp
|
||||||
.proc WaitOneFrame
|
.proc WaitOneFrame
|
||||||
lda CONSOL
|
lda CONSOL
|
||||||
and #%00000001 ; START KEY
|
and #%00000101 ; Start + Option
|
||||||
|
bne @+
|
||||||
|
mva #$40 escFlag
|
||||||
|
@ and #%00000001 ; START KEY
|
||||||
beq @+
|
beq @+
|
||||||
wait
|
wait
|
||||||
@ rts
|
@ rts
|
||||||
|
|||||||
BIN
Binary file not shown.
+4
-1
@@ -3095,7 +3095,10 @@ noBullets
|
|||||||
;--------------------------------------------------
|
;--------------------------------------------------
|
||||||
.proc ShellDelay
|
.proc ShellDelay
|
||||||
lda CONSOL
|
lda CONSOL
|
||||||
cmp #6
|
and #%00000101 ; Start + Option
|
||||||
|
bne @+
|
||||||
|
mva #$40 escFlag
|
||||||
|
@ and #%00000001
|
||||||
beq noShellDelay
|
beq noShellDelay
|
||||||
ldx flyDelay
|
ldx flyDelay
|
||||||
DelayLoop
|
DelayLoop
|
||||||
|
|||||||
Reference in New Issue
Block a user