]> git.sur5r.net Git - cc65/blobdiff - libsrc/atmos/atmos.s
Added missing pointer star for Basic structure.
[cc65] / libsrc / atmos / atmos.s
index c50204fa5b1e9138c0ddc3ca0b1c7b0c6d0bb9d6..5822be8d94387572f798892c645d5b11946a2a31 100644 (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