mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-18 21:07:28 +00:00
13 lines
300 B
Plaintext
13 lines
300 B
Plaintext
|
//SoundFX module for VIC-20 by chysn
|
||
|
|
||
|
//Available Sound Effects
|
||
|
enum {FXCOIN, FXKLXN, FXFALL, FXPOWR, FXLASR, FXCROS, FXDROP, FXEXPL};
|
||
|
|
||
|
/* Initialize SoundFX Module *
|
||
|
* Installs Interrupt Routine */
|
||
|
void fxinit();
|
||
|
|
||
|
/* Play Sound Effect *
|
||
|
* Args: char n - Effect */
|
||
|
void fxplay();
|