- Debugged UART - Firmware support for SPI, UART - Work on SD/MMC support in firmware - Debugged mblite core/WB interface
31 lines
491 B
Plaintext
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;
|
|
}
|