mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 09:09:04 +00:00
Refactor OpcodeDecoding and FIFO analyzer to use callbacks
This commit is contained in:
parent
0441826206
commit
b5fd35f951
29 changed files with 1214 additions and 1388 deletions
|
@ -454,10 +454,10 @@ struct XFMemory
|
|||
u32 unk9[8]; // 0x1048 - 0x104f
|
||||
PostMtxInfo postMtxInfo[8]; // 0x1050 - 0x1057
|
||||
};
|
||||
static_assert(sizeof(XFMemory) == sizeof(u32) * 0x1058);
|
||||
static_assert(sizeof(XFMemory) == sizeof(u32) * XFMEM_REGISTERS_END);
|
||||
|
||||
extern XFMemory xfmem;
|
||||
|
||||
void LoadXFReg(u32 transferSize, u32 address, DataReader src);
|
||||
void LoadIndexedXF(CPArray array, u32 val);
|
||||
void PreprocessIndexedXF(CPArray array, u32 val);
|
||||
void LoadIndexedXF(CPArray array, u32 index, u16 address, u8 size);
|
||||
void PreprocessIndexedXF(CPArray array, u32 index, u16 address, u8 size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue