work on jaudio

This commit is contained in:
Prakxo
2023-02-16 11:56:47 +00:00
parent 169f213772
commit c1863a2e37
23 changed files with 130 additions and 17 deletions
+6
View File
@@ -0,0 +1,6 @@
#ifndef ARAMCALL_H
#define ARAMCALL_H
#include "types.h"
void Jac_WaveDirectorySet(char*);
#endif
+10
View File
@@ -0,0 +1,10 @@
#ifndef AUDIOTHREAD_H
#define AUDIOTHREAD_H
#include "types.h"
extern "C"{
void StartAudioThread(void*, u32, u32, u32);
}
#endif
+8
View File
@@ -0,0 +1,8 @@
#ifndef CMDSTACK_H
#define CMDSTACK_H
#include "types.h"
extern "C"{
void Jac_Portcmd_Init(void);
}
#endif
+8
View File
@@ -0,0 +1,8 @@
#ifndef CONNECT_H
#define CONNECT_H
#include "types.h"
void Jac_ConnectTableInit(void);
#endif
+11
View File
@@ -0,0 +1,11 @@
#ifndef DUMMYPROBE_H
#define DUMMYPROBE_H
#include "types.h"
extern "C"{
void Probe_Start(void);
void Probe_Finish(void);
}
#endif
+10
View File
@@ -0,0 +1,10 @@
#ifndef JAMMAIN_H
#define JAMMAIN_H
#include "types.h"
extern "C"{
void Jam_InitRegistTrack(void);
}
#endif
+8
View File
@@ -0,0 +1,8 @@
#ifndef SEQSETUP_H
#define SEQSETUP_H
#include "types.h"
extern "C"{
void Jaq_Reset(void);
}
#endif
+9
View File
@@ -0,0 +1,9 @@
#ifndef VERYSIMPLE_H
#define VERYSIMPLE_H
#include "types.h"
void Jac_Start(void*, u32, u32);
void Jac_PlayInit(void);
#endif