Exposed, to C code, the names of the Atmos ROM's sound effect functions.

This commit is contained in:
Greg King
2013-08-06 11:12:30 -04:00
parent bf160cae69
commit 6589288a04
2 changed files with 39 additions and 0 deletions

15
libsrc/atmos/atmos.s Normal file
View File

@@ -0,0 +1,15 @@
;
; Expose include-file symbol names to C code.
;
.export _atmos_ping, _atmos_shoot, _atmos_explode
.export _atmos_zap, _atmos_tick, _atmos_tock
.include "atmos.inc"
_atmos_ping := PING
_atmos_shoot := SHOOT
_atmos_explode := EXPLODE
_atmos_zap := ZAP
_atmos_tick := TICK
_atmos_tock := TOCK