💾 Archived View for blitter.com › OLGA › MUSIC › RESOURCES › DOS_TAB_UTILS › TABPLAY › SOURCES › PAN… captured on 2022-06-12 at 08:25:56.

View Raw

More Information

-=-=-=-=-=-=-

/*  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;
}