prime/include/musyx/synth_dbtab.h
Phillip Stephens 73b7b4df3a MusyX: Correct global variable locations, and move synth_dbtab to C
Former-commit-id: 7f90b8de58744a8a2f65f7e7f72c5d07fb94742a
2022-04-09 01:51:35 -07:00

18 lines
254 B
C

#ifndef MUSYX_DSP_IMPORT_H
#define MUSYX_DSP_IMPORT_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
extern u16 dspAttenuationTab[194];
extern u8 dspScale2IndexTab[1024];
extern float dspDLSVolTab[129];
#ifdef __cplusplus
}
#endif
#endif