aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target-arm64.c
blob: bfada515b81fea628082761aff3495f37fbc5d2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
};