1 #define NO_CORE_COMMAND /* No command name in core file */ 2 3 #if 0 4 #undef ALIGN /* They use it, we use it too */ 5 /* Does not exist on BSD 4.3, it uses machine/machparam.h. 6 Whatever it is, it's included by <sys/param.h>, which trad-core.c, 7 the only place that uses this (I think), already includes. */ 8 #include <machine/param.h> 9 #endif 10 #undef ALIGN /* They use it, we use it too */ 11 12 /* Note that HOST_PAGE_SIZE -- the page size as far as executable files 13 are concerned -- is not the same as NBPG, because of page clustering. */ 14 #define HOST_PAGE_SIZE 1024 15 #define HOST_MACHINE_ARCH bfd_arch_vax 16 17 #define HOST_TEXT_START_ADDR 0 18 #define HOST_STACK_END_ADDR (0x80000000 - (UPAGES * NBPG)) 19 #undef HOST_BIG_ENDIAN_P 20