blob: beefbee22542a68241e5e2c161f1f0f8a925d6e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* $NetBSD: param.h,v 1.2 2002/07/11 14:07:41 scw Exp $ */
#ifndef _EVBSH5_PARAM_H
#define _EVBSH5_PARAM_H
#include <sh5/param.h>
#ifdef __LITTLE_ENDIAN__
#define _MACHINE_ARCH sh5el
#define MACHINE_ARCH "sh5el"
#else
#define _MACHINE_ARCH sh5eb
#define MACHINE_ARCH "sh5eb"
#endif
#define _MACHINE evbsh5
#define MACHINE "evbsh5"
#endif /* _EVBSH5_PARAM_H */
|