Rename sound to _sound.

remove extra comments.
This commit is contained in:
Mariano Dominguez
2023-01-10 11:16:36 -08:00
parent bf9fb6dcdb
commit 27ecb555ea
3 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
** testprogram printing the default device
** Test program for _sound for atari
**
** January 6 2023 Mariano Domínguez
*/
@@ -13,8 +13,8 @@ int main(void)
{
int i=0;
printf("playing sound \n");
sound(1,121,10,15);
_sound(1,121,10,15); //voice, pitch, distortion, volume
for(i=0;i<9000;i++);
sound(1,0,0,0);
_sound(1,0,0,0); //silencing, same as Atari Basic
return 0;
}