about summary refs log tree commit diff stats
path: root/src/include/dynarec.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-03 16:43:42 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-03 16:43:42 +0100
commitf4829a8ce42b1abbcc8621802d6c6fad3a56cd5d (patch)
tree211276c3587721126ded00be46487bf23b605591 /src/include/dynarec.h
parentf73fbd3cee38b4c0086c934d73972375c9c8c7d6 (diff)
downloadbox64-f4829a8ce42b1abbcc8621802d6c6fad3a56cd5d.tar.gz
box64-f4829a8ce42b1abbcc8621802d6c6fad3a56cd5d.zip
More infrastructure added to elf and x64 emu
Diffstat (limited to 'src/include/dynarec.h')
-rwxr-xr-xsrc/include/dynarec.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/dynarec.h b/src/include/dynarec.h
new file mode 100755
index 00000000..a68c6d6a
--- /dev/null
+++ b/src/include/dynarec.h
@@ -0,0 +1,8 @@
+#ifndef __DYNAREC_H_
+#define __DYNAREC_H_
+
+typedef struct x64emu_s x64emu_t;
+
+void DynaCall(x64emu_t* emu, uintptr_t addr); // try to use DynaRec... Fallback to EmuCall if no dynarec available
+
+#endif // __DYNAREC_H_
\ No newline at end of file