Matched PPCArch.c, ai.c, db.c and got 99% on vi.c

This commit is contained in:
dbalatoni13 2024-11-11 00:24:45 +01:00
parent 692c9d32ec
commit e2db9694ef
8 changed files with 2017 additions and 14 deletions

View file

@ -9,6 +9,12 @@ extern "C" {
typedef void (*AISCallback)(u32 count);
typedef void (*AIDCallback)();
#define AI_STREAM_START 1
#define AI_STREAM_STOP 0
#define AI_SAMPLERATE_32KHZ 0
#define AI_SAMPLERATE_48KHZ 1
AIDCallback AIRegisterDMACallback(AIDCallback callback);
void AIInitDMA(u32 start_addr, u32 length);
BOOL AIGetDMAEnableFlag();