mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 00:56:55 +02:00
Initial commit
This commit is contained in:
17
common/dldiIpcCommand.h
Normal file
17
common/dldiIpcCommand.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
typedef enum
|
||||
{
|
||||
DLDI_IPC_CMD_SETUP,
|
||||
DLDI_IPC_CMD_READ_SECTORS,
|
||||
DLDI_IPC_CMD_WRITE_SECTORS
|
||||
} DldiIpcCommand;
|
||||
|
||||
typedef struct alignas(32)
|
||||
{
|
||||
u32 cmd;
|
||||
void* buffer;
|
||||
u32 sector;
|
||||
u32 count;
|
||||
u8 sizeAlign[16]; // ensure the size is also cache aligned
|
||||
} dldi_ipc_cmd_t;
|
||||
Reference in New Issue
Block a user