about summary refs log tree commit diff stats
path: root/src/include/dynarec_native.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-02-27 09:48:00 +0100
committerptitSeb <sebastien.chev@gmail.com>2022-02-27 09:48:00 +0100
commit0cdb134d45ba7249a9f15d10e46b10e926abae60 (patch)
treefd5500db049bd2fa5a9870a8df3c5a1263f0b521 /src/include/dynarec_native.h
parentea6d95986eb121f47e1127703485fad706aade30 (diff)
downloadbox64-0cdb134d45ba7249a9f15d10e46b10e926abae60.tar.gz
box64-0cdb134d45ba7249a9f15d10e46b10e926abae60.zip
[DYNAREC] Refactored dynarec to ease the future adding of new target architecture
Diffstat (limited to 'src/include/dynarec_native.h')
-rwxr-xr-xsrc/include/dynarec_native.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/dynarec_native.h b/src/include/dynarec_native.h
new file mode 100755
index 00000000..bc4cf3f6
--- /dev/null
+++ b/src/include/dynarec_native.h
@@ -0,0 +1,10 @@
+#ifndef __DYNAREC_ARM_H_
+#define __DYNAREC_ARM_H_
+
+typedef struct dynablock_s dynablock_t;
+typedef struct x64emu_s x64emu_t;
+
+void CancelBlock64();
+void* FillBlock64(dynablock_t* block, uintptr_t addr);
+
+#endif //__DYNAREC_ARM_H_
\ No newline at end of file