- fixed ld script

git-svn-id: http://moon:8086/svn/mips@153 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
2021-04-06 15:31:59 +00:00
parent 56240c9a5e
commit 306750948a
2 changed files with 13 additions and 12 deletions
+6 -5
View File
@@ -16,10 +16,11 @@ SECTIONS
{
.start :
{
start = ALIGN(2);
entry = ALIGN(2);
_entry = ALIGN(2);
__entry = ALIGN(2);
. = ALIGN(4);
start = .;
entry = .;
_entry = .;
__entry = .;
*(.start)
} >ram
@@ -62,7 +63,7 @@ SECTIONS
{
*(.sdata .sdata.*)
} >ram
__bss_start = .;
__bss_start = ALIGN(4);
.sbss :
{
*(.sbss .sbss.*)