aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_neon/psx_gpu/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gpu_neon/psx_gpu/common.h')
-rw-r--r--plugins/gpu_neon/psx_gpu/common.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/gpu_neon/psx_gpu/common.h b/plugins/gpu_neon/psx_gpu/common.h
new file mode 100644
index 0000000..f299f79
--- /dev/null
+++ b/plugins/gpu_neon/psx_gpu/common.h
@@ -0,0 +1,22 @@
+#ifndef COMMON_H
+#define COMMON_H
+
+typedef signed char s8;
+typedef unsigned char u8;
+typedef signed short s16;
+typedef unsigned short u16;
+typedef signed int s32;
+typedef unsigned int u32;
+typedef signed long long int s64;
+typedef unsigned long long int u64;
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/time.h>
+
+#include "vector_ops.h"
+#include "psx_gpu.h"
+
+#endif
+