]> git.sur5r.net Git - cc65/blob - libsrc/atmos/atmos.s
Added SER_ prefix. Whitespace cleanup
[cc65] / libsrc / atmos / atmos.s
1 ;
2 ; Expose include-file symbol names to C code.
3 ;
4
5         .export         _atmos_ping, _atmos_shoot, _atmos_explode
6         .export         _atmos_zap, _atmos_tick, _atmos_tock
7
8         .include        "atmos.inc"
9
10 .proc   _atmos_ping
11         bit     $31
12         bvs     L1      ; Atmos?
13         jmp     PING
14 L1:     jmp     PING1
15 .endproc
16
17 .proc   _atmos_shoot
18         bit     $31
19         bvs     L1      ; Atmos?
20         jmp SHOOT
21 L1:     jmp SHOOT1
22 .endproc
23
24 .proc   _atmos_explode
25         bit     $31
26         bvs     L1      ; Atmos?
27         jmp EXPLODE
28 L1:     jmp EXPLODE1
29 .endproc
30
31 .proc   _atmos_zap
32         bit     $31
33         bvs     L1      ; Atmos?
34         jmp ZAP
35 L1:     jmp ZAP1
36 .endproc
37
38 .proc   _atmos_tick
39         bit     $31
40         bvs     L1      ; Atmos?
41         jmp TICK
42 L1:     jmp TICK1
43 .endproc
44
45 .proc   _atmos_tock
46         bit     $31
47         bvs     L1      ; Atmos?
48         jmp TOCK
49 L1:     jmp TOCK1
50 .endproc