sample_fm.c revision 1.2
1/* $NetBSD: sample_fm.c,v 1.2 1996/08/30 17:46:07 thorpej Exp $ */ 2 3#include <stdio.h> 4#include <stdlib.h> 5#include "../../dev/opmreg.h" 6 7/* Sample Voice Parameter : piano */ 8 9struct opm_voice bell_voice = { 10/* AR DR SR RR SL OL KS ML DT1 DT2 AME */ 11 { 31, 0, 0, 0, 0, 32, 0, 14, 6, 0, 0, }, 12 { 31, 12, 12, 9, 3, 2, 0, 4, 6, 0, 0, }, 13 { 31, 0, 0, 0, 0, 32, 0, 14, 2, 0, 0, }, 14 { 31, 13, 12, 8, 2, 0, 0, 4, 2, 0, 0, }, 15/* CON FL OP */ 16 4, 0, 15 17}; 18