mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
memory fix
This commit is contained in:
parent
73906f9f29
commit
bb111d325f
5 changed files with 15 additions and 8 deletions
|
@ -73,6 +73,11 @@ extern void ppu_execute_function(ppu_thread& ppu, u32 index);
|
|||
|
||||
const auto s_ppu_compiled = static_cast<u32*>(memory_helper::reserve_memory(0x100000000));
|
||||
|
||||
extern void ppu_finalize()
|
||||
{
|
||||
memory_helper::free_reserved_memory(s_ppu_compiled, 0x100000000);
|
||||
}
|
||||
|
||||
// Get interpreter cache value
|
||||
static u32 ppu_cache(u32 addr)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue