summaryrefslogtreecommitdiffhomepage
path: root/src/arch/nt64/syscall_disp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/nt64/syscall_disp.c')
-rw-r--r--src/arch/nt64/syscall_disp.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/arch/nt64/syscall_disp.c b/src/arch/nt64/syscall_disp.c
new file mode 100644
index 0000000..9ea5966
--- /dev/null
+++ b/src/arch/nt64/syscall_disp.c
@@ -0,0 +1,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);
+}