10 lines
240 B
C
10 lines
240 B
C
|
/* Architecture independant NetBSD host support */
|
||
|
|
||
|
#include <machine/param.h>
|
||
|
#include <machine/vmparam.h>
|
||
|
#include <machine/reg.h>
|
||
|
|
||
|
#define HOST_PAGE_SIZE NBPG
|
||
|
#define HOST_TEXT_START_ADDR USRTEXT
|
||
|
#define HOST_STACK_END_ADDR USRSTACK
|