Files
2d_display_engine-new/firmware/standalone.ld
Matthias Blankertz 0bc4815926 - Debugged SPI module
- Debugged UART
- Firmware support for SPI, UART
- Work on SD/MMC support in firmware
- Debugged mblite core/WB interface
2013-06-08 11:53:27 +02:00

31 lines
491 B
Plaintext

ENTRY(_start)
STARTUP(objs/kcrt0.o)
SECTIONS {
.text 0x0 : ALIGN(4) {
*(.text)
}
.rodata : ALIGN(4) {
*(.rodata)
_rodata_end = .;
}
.datald : ALIGN(4) {
_datald = .;
}
/* From here on in RAM */
.data 0x8000 : AT ( _datald ) ALIGN(4) {
_data_start = .;
*(.data)
_data_end = .;
}
.bss (NOLOAD) : ALIGN(4) {
_bss_start = .;
*(.bss)
. = ALIGN(4);
_bss_end = .;
}
_stack = 0x8800;
}