Implement & link famicom.cpp

This commit is contained in:
Cuyler36
2024-01-29 20:31:47 -05:00
parent 7788f50a59
commit d08076381b
39 changed files with 4048 additions and 119 deletions
+18
View File
@@ -0,0 +1,18 @@
#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