summaryrefslogtreecommitdiff
path: root/sys/src/cmd/gs/arch.h
blob: 7e00f1160c052ffa2caed9674f3e581181172444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _ARCH_H
#define _ARCH_H
#ifdef T386
#include "386.h"
#elif Tmips
#include "mips.h"
#elif Tpower
#include "mips.h"
#elif Talpha
#include "alpha.h"
#elif Tarm
#include "arm.h"
#elif Tamd64
#include "amd64.h"
#else
	I do not know about your architecture.
	Update switch in arch.h with new architecture.
#endif	/* T386 */
#endif /* _ARCH_H */