mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 01:31:33 +00:00
27 lines
627 B
Plaintext
27 lines
627 B
Plaintext
; C02 library sounds.h02 assembly language subroutines
|
|
|
|
;beep() - Produce System Beep Sound
|
|
;Affects: A,Y
|
|
BEEP EQU $FBDD ;Sound Bell
|
|
|
|
;bomb() - Produce System Explosion Sound
|
|
;Affects: None
|
|
BOMB: RTS ;Function Not Available
|
|
|
|
;shoot() - Produce Shooting Sound
|
|
;Affects: None
|
|
SHOT: RTS ;Function Not Available
|
|
|
|
;tick() - Produce System Tick Sound
|
|
;Affects: None
|
|
TICK: LDA $C030 ;Click Speaker Once
|
|
RTS
|
|
|
|
;tock() - Produce System Tock Sound
|
|
;Affects: None
|
|
TOCK: RTS ;Function Not Available
|
|
|
|
;zap() - Produce System Zap Sound
|
|
;Affects: None
|
|
ZAP: RTS ;Function Not Available
|