mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 02:27:49 +00:00
Implemented LD_L and ST_L
This commit is contained in:
parent
2d0d8fa85c
commit
159bedd74f
3 changed files with 112 additions and 12 deletions
|
@ -96,6 +96,11 @@ struct Header {
|
|||
}
|
||||
} ps;
|
||||
};
|
||||
|
||||
u64 GetLocalMemorySize() {
|
||||
return (common1.shader_local_memory_low_size |
|
||||
(common2.shader_local_memory_high_size << 24));
|
||||
}
|
||||
};
|
||||
|
||||
static_assert(sizeof(Header) == 0x50, "Incorrect structure size");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue