blob: 3369ca0aa166f02b7194e0a067f7fc17172f744b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <stdint.h>
#include <stddef.h>
#include "syscall.h"
#include "psxglue.h"
extern struct __psx_vtbl * __psx_vtbl;
void __unmapself(void * base, size_t size)
{
__psx_vtbl->unmapself(base,(void *)size);
}
uintptr_t __syscall_disp(long n,
uintptr_t a1,
uintptr_t a2,
uintptr_t a3,
uintptr_t a4,
uintptr_t a5,
uintptr_t a6)
{
return __syscall(n,a1,a2,a3,a4,a5,a6);
}
|