mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 00:07:47 +00:00
HLE/SVC: Implement UnmapMemoryBlock.
This implementation will need to be (almost completely) changed when we implement multiprocess support.
This commit is contained in:
parent
aa7ce4c3d0
commit
d9c4c1622f
5 changed files with 60 additions and 5 deletions
|
@ -188,6 +188,10 @@ template<ResultCode func(s64*, Handle, u32)> void Wrap() {
|
|||
FuncReturn(retval);
|
||||
}
|
||||
|
||||
template<ResultCode func(Handle, u32)> void Wrap() {
|
||||
FuncReturn(func(PARAM(0), PARAM(1)).raw);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Function wrappers that return type u32
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue