Files
ac-decomp/include/jaudio_NES/emusound.h
T
2024-01-29 20:31:47 -05:00

19 lines
273 B
C

#ifndef EMUSOUND_H
#define EMUSOUND_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void EmuSound_Start(u8* noise_data);
extern void EmuSound_Exit();
extern void Sound_Write(u16 event, u8 value, u16 maybe_frames);
#ifdef __cplusplus
}
#endif
#endif