mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
14 lines
248 B
C
14 lines
248 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Memory {
|
||
|
|
||
|
void MemFault_Init();
|
||
|
|
||
|
// Called by exception handlers. We simply filter out accesses to PSP RAM and otherwise
|
||
|
// just leave it as-is.
|
||
|
bool HandleFault(uintptr_t hostAddress, void *context);
|
||
|
|
||
|
}
|