2005-05-03 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix
	overflow of _CPU_Interrupt_stack_high calculation.
This commit is contained in:
Joel Sherrill
2005-05-03 19:36:01 +00:00
parent 2afd852a7c
commit dc5e3d4f94
4 changed files with 11 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2005-05-03 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix
overflow of _CPU_Interrupt_stack_high calculation.
2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org>
* Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.

View File

@@ -189,8 +189,8 @@ SECTIONS
. = 0x00480000 ;
PROVIDE(_WorkSpaceEnd = .);
_CPU_Interrupt_stack_low = 0xFFFFF000 ;
_CPU_Interrupt_stack_high = _CPU_Interrupt_stack_low + 4096 ;
_CPU_Interrupt_stack_low = 0xFFFFF000;
_CPU_Interrupt_stack_high = 0xFFFFFFFF;
/* Stabs debugging sections. */
.stab 0 : { *(.stab) }

View File

@@ -184,8 +184,8 @@ SECTIONS
. = 0x00480000 ;
PROVIDE(_WorkSpaceEnd = .);
_CPU_Interrupt_stack_low = 0xFFFFF000 ;
_CPU_Interrupt_stack_high = _CPU_Interrupt_stack_low + 4096 ;
_CPU_Interrupt_stack_low = 0xFFFFF000;
_CPU_Interrupt_stack_high = 0xFFFFFFFF;
/* Stabs debugging sections. */
.stab 0 : { *(.stab) }

View File

@@ -185,8 +185,8 @@ SECTIONS
. = 0x00480000 ;
PROVIDE(_WorkSpaceEnd = .);
_CPU_Interrupt_stack_low = 0xFFFFF000 ;
_CPU_Interrupt_stack_high = _CPU_Interrupt_stack_low + 4096 ;
_CPU_Interrupt_stack_low = 0xFFFFF000;
_CPU_Interrupt_stack_high = 0xFFFFFFFF;
/* Stabs debugging sections. */
.stab 0 : { *(.stab) }