mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 18:11:03 +02:00
Fix stack pointer offset.
git-svn-id: trunk@32499 -
This commit is contained in:
parent
e6d01eb3b5
commit
f5eaf7ddde
@ -773,7 +773,7 @@ begin
|
||||
Add(' lock (rw!x) : ORIGIN = 0x830000, LENGTH = 1K');
|
||||
Add(' signature (rw!x) : ORIGIN = 0x840000, LENGTH = 1K');
|
||||
Add('}');
|
||||
Add('_stack_top = 0x' + IntToHex(sramsize-1,4) + ';');
|
||||
Add('_stack_top = 0x' + IntToHex(srambase+sramsize-1,4) + ';');
|
||||
end;
|
||||
Add('SECTIONS');
|
||||
Add('{');
|
||||
|
Loading…
Reference in New Issue
Block a user