1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Merge pull request #554 from polluks/patch-3

oops #550 again
This commit is contained in:
Oliver Schmidt 2017-12-18 09:40:45 +00:00 committed by GitHub
commit f5a2c52f80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,35 +15,35 @@ L1: jmp PING1
.endproc
.proc _atmos_shoot
lda $31
bit $31
bvs L1 ; Atmos?
jmp SHOOT
L1: jmp SHOOT1
.endproc
.proc _atmos_explode
lda $31
bit $31
bvs L1 ; Atmos?
jmp EXPLODE
L1: jmp EXPLODE1
.endproc
.proc _atmos_zap
lda $31
bit $31
bvs L1 ; Atmos?
jmp ZAP
L1: jmp ZAP1
.endproc
.proc _atmos_tick
lda $31
bit $31
bvs L1 ; Atmos?
jmp TICK
L1: jmp TICK1
.endproc
.proc _atmos_tock
lda $31
bit $31
bvs L1 ; Atmos?
jmp TOCK
L1: jmp TOCK1