1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Add sound routine support

git-svn-id: svn://svn.cc65.org/cc65/trunk@5946 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
karri 2012-12-11 06:27:14 +00:00
parent b939a22f68
commit 1a9c23616b

View File

@ -105,6 +105,25 @@ extern void lynx_160_102_16[]; /* Referred to by tgi_static_stddrv[] */
/*****************************************************************************/
/* Sound support */
/*****************************************************************************/
void lynx_snd_init ();
/* Initialize the sound driver */
void lynx_snd_pause ();
/* Pause sound */
void lynx_snd_unpause ();
/* Continue sound after pause */
void __fastcall__ lynx_snd_play (unsigned char channel, unsigned char *music);
/* Play tune on channel */
void lynx_snd_stop ();
/* Stop sound on all channels */
/*****************************************************************************/
/* Accessing the cart */
/*****************************************************************************/