summaryrefslogtreecommitdiffhomepage
path: root/src/arch/nt32/syscall_disp.c
blob: 9ea5966eaa2862d5433ef02b9324fefe709124dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <unistd.h>
#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);
}