💾 Archived View for blitter.com › OLGA › MUSIC › RESOURCES › DOS_TAB_UTILS › TABPLAY › SOURCES › PAN… captured on 2024-08-18 at 19:38:37.
View Raw
More Information
⬅️ Previous capture (2022-06-12)
-=-=-=-=-=-=-
/* resetser.c needs serl.asm
turn all notes off serial midi i/f
#include <stdio.h>
#include "tplay.h"
void main(void){
int i,x;
init();
printf("*PANIC*\nTurning off all notes, all channels..\n");
for(x=0;x<=15;x++){
for(i=0;i<=120;i++){
snoff(x,i) ;
}
printf("|%d",x);
}
printf("|\ndone\n");
if (1)
exit(0);
return;
}