- fixed bootloader

git-svn-id: http://moon:8086/svn/mips@155 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
2021-04-07 15:33:13 +00:00
parent 39ae59c4b5
commit ab8ccb1657
3 changed files with 10 additions and 32 deletions
+2 -7
View File
@@ -17,12 +17,10 @@ SECTIONS
_entry = ALIGN(4);
__entry = ALIGN(4);
*(.init)
. = ORIGIN(rom) + 0x180;
. = ORIGIN(rom) + 0x080;
*(.ktext)
*(.text*)
*(.rodata*)
. = ORIGIN(rom) + LENGTH(rom) - 0x40;
*(.dbg_stub*)
} > rom
.data ORIGIN(ram) :
@@ -33,9 +31,6 @@ SECTIONS
_end = ALIGN(4);
} > ram
.flash ORIGIN(flash) :
{
_flash_start = ALIGN(4);
} > flash
_flash_start = ORIGIN(flash);
}