Implemented LD_L and ST_L

This commit is contained in:
FernandoS27 2018-10-19 21:48:21 -04:00
parent 2d0d8fa85c
commit 159bedd74f
3 changed files with 112 additions and 12 deletions

View file

@ -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");