1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-11-18 21:07:28 +00:00
C02/vic20/include/soundfx.h02

13 lines
300 B
Plaintext
Raw Normal View History

2020-09-08 16:55:32 +00:00
//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();