Add sound routine support
git-svn-id: svn://svn.cc65.org/cc65/trunk@5946 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
b939a22f68
commit
1a9c23616b
1 changed files with 19 additions and 0 deletions
|
@ -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 */
|
||||
/*****************************************************************************/
|
||||
|
|
Loading…
Add table
Reference in a new issue