aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target-arm64.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-arm64.c')
-rw-r--r--target-arm64.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/target-arm64.c b/target-arm64.c
new file mode 100644
index 00000000..bfada515
--- /dev/null
+++ b/target-arm64.c
@@ -0,0 +1,14 @@
+#include "symbol.h"
+#include "target.h"
+#include "machine.h"
+
+
+const struct target target_arm64 = {
+ .mach = MACH_ARM64,
+ .bitness = ARCH_LP64,
+
+ .big_endian = 0,
+ .unsigned_char = 1,
+
+ .wchar = &uint_ctype,
+};