1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 21:29:30 +00:00
C02/vic20/include/soundfx.h02
2020-09-08 12:55:32 -04:00

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();