You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
16 lines
287 B
C
16 lines
287 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
typedef enum
|
||
|
|
{
|
||
|
|
DSI_SD_IPC_CMD_READ_SECTORS,
|
||
|
|
DSI_SD_IPC_CMD_WRITE_SECTORS
|
||
|
|
} DsiSdIpcCommand;
|
||
|
|
|
||
|
|
typedef struct alignas(32)
|
||
|
|
{
|
||
|
|
u32 cmd;
|
||
|
|
void* buffer;
|
||
|
|
u32 sector;
|
||
|
|
u32 count;
|
||
|
|
u8 sizeAlign[16]; // ensure the size is also cache aligned
|
||
|
|
} dsisd_ipc_cmd_t;
|