Initial commit

This commit is contained in:
Gericom
2025-11-22 17:21:45 +01:00
commit 5d6f67c612
517 changed files with 63025 additions and 0 deletions

19
common/soundIpcCommand.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
enum SoundIpcCommand
{
SND_IPC_CMD_START_CHANNELS,
SND_IPC_CMD_STOP_CHANNELS,
SND_IPC_CMD_SETUP_CHANNEL
};
struct snd_ipc_cmd_setup_channel_t
{
u32 cmd : 8;
u32 channel : 24;
const void* sourceAddress;
u32 timer;
u32 loopStart;
u32 length;
u32 control;
};