aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/target-m68k.c
blob: 1646fceb62aa4df481acf671a387381d0aee3c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "symbol.h"
#include "target.h"
#include "machine.h"


const struct target target_m68k = {
	.mach = MACH_M68K,
	.bitness = ARCH_LP32,
	.big_endian = 1,
	.unsigned_char = 0,

	.wchar = &long_ctype,

	.bits_in_longdouble = 96,
	.max_fp_alignment = 4,
};