mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 01:31:33 +00:00
23 lines
414 B
Plaintext
23 lines
414 B
Plaintext
/*************************************************
|
|
* sounds - Predefined Sounds Module for Apple 2 *
|
|
*************************************************/
|
|
|
|
/* Produce System Beep Sound */
|
|
char beep();
|
|
|
|
/* Produce Explosion Sound */
|
|
char bomb();
|
|
|
|
/* Produce Shooting Sound */
|
|
char shot();
|
|
|
|
/* Produce High Click Sound */
|
|
char tick();
|
|
|
|
/* Produce Low Click Sound */
|
|
char tock();
|
|
|
|
/* Produce Zap Sound */
|
|
char zap();
|
|
|