-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add to build script * Another Sequre product, Another random offset * Fix build_all * Update BackUp.md
- Loading branch information
Showing
7 changed files
with
119 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* This file is part of the libopenstm32 project. | ||
* | ||
* Copyright (C) 2010 Thomas Otto <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/* Define memory regions. */ | ||
MEMORY | ||
{ | ||
rom (rx) : ORIGIN = 0x08004C00, LENGTH = 19K | ||
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 8k | ||
} | ||
|
||
/* Enforce emmition of the vector table. */ | ||
EXTERN (vector_table) | ||
|
||
/* Define the entry point of the output file. */ | ||
ENTRY(reset_handler) | ||
|
||
/* Define sections. */ | ||
SECTIONS | ||
{ | ||
.text : { | ||
*(.vectors) /* Vector table */ | ||
*(.text*) /* Program code */ | ||
. = ALIGN(4); | ||
*(.rodata*) /* Read-only data */ | ||
. = ALIGN(4); | ||
} >rom | ||
|
||
_etext = .; | ||
|
||
.data : { | ||
_data = .; | ||
*(.data*) /* Read-write initialized data */ | ||
. = ALIGN(4); | ||
_edata = .; | ||
} >ram AT >rom | ||
_data_loadaddr = LOADADDR(.data); | ||
|
||
.bss : { | ||
*(.bss*) /* Read-write zero initialized data */ | ||
*(COMMON) | ||
. = ALIGN(4); | ||
_ebss = .; | ||
} >ram | ||
|
||
/* | ||
* The .eh_frame section appears to be used for C++ exception handling. | ||
* You may need to fix this if you're using C++. | ||
*/ | ||
/DISCARD/ : { *(.eh_frame) } | ||
|
||
. = ALIGN(4); | ||
end = .; | ||
} | ||
|
||
PROVIDE(_stack = ORIGIN(ram) + LENGTH(ram)); | ||
|
||
|