diff options
Diffstat (limited to 'sys/arch/alpha/stand/Makefile.inc')
-rw-r--r-- | sys/arch/alpha/stand/Makefile.inc | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/sys/arch/alpha/stand/Makefile.inc b/sys/arch/alpha/stand/Makefile.inc index 351d0e2ef81..3c958d54528 100644 --- a/sys/arch/alpha/stand/Makefile.inc +++ b/sys/arch/alpha/stand/Makefile.inc @@ -1,17 +1,23 @@ -# $OpenBSD: Makefile.inc,v 1.3 1996/10/30 22:40:27 niklas Exp $ -# $NetBSD: Makefile.inc,v 1.3 1996/10/06 18:32:22 cgd Exp $ +# $OpenBSD: Makefile.inc,v 1.4 1997/05/05 06:01:45 millert Exp $ +# $NetBSD: Makefile.inc,v 1.8 1997/04/06 08:39:38 cgd Exp $ .include <bsd.own.mk> # for ELF_TOOLCHAIN definition BINDIR= /usr/mdec -PRIMARY_LOAD_ADDRESS= 20000000 -SECONDARY_LOAD_ADDRESS= 20020000 +# For descriptions of regions available to bootstrap programs, see +# section 3.4.1.2 (pp. III 3-14 - III 3-18) of the second edition of +# the Alpha AXP Architecture Reference Manual. + +PRIMARY_LOAD_ADDRESS= 20000000 # "Region 1 start" +SECONDARY_LOAD_ADDRESS= 20004000 # "Region 1 start" + 32k +HEAP_LIMIT= 20040000 # "Region 1 start" + 256k CPPFLAGS+= -DPRIMARY_LOAD_ADDRESS="0x${PRIMARY_LOAD_ADDRESS}" CPPFLAGS+= -DSECONDARY_LOAD_ADDRESS="0x${SECONDARY_LOAD_ADDRESS}" +XCPPFLAGS+= -DHEAP_LIMIT="0x${HEAP_LIMIT}" + .if !defined(ELF_TOOLCHAIN) CPPFLAGS+= -DECOFF_COMPAT .endif - |