mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
15 lines
331 B
C
15 lines
331 B
C
/* Architecture independant NetBSD host support */
|
|
|
|
#include <machine/endian.h>
|
|
#include <machine/vmparam.h>
|
|
#include <machine/param.h>
|
|
#include <machine/reg.h>
|
|
|
|
#define HOST_PAGE_SIZE NBPG
|
|
#define HOST_TEXT_START_ADDR USRTEXT
|
|
#define HOST_STACK_END_ADDR USRSTACK
|
|
|
|
#if BYTE_ORDER == BIG_ENDIAN
|
|
#define HOST_BIG_ENDIAN_P
|
|
#endif
|