forked from Mirror/GodMode9
- moved I2C code to the ARM11 (with an ugly hack that MUST be fixed) - reworked the PXI protocol to have lower latencies and remove any potential async support
16 lines
425 B
Plaintext
16 lines
425 B
Plaintext
OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
|
|
ENTRY(__boot)
|
|
SECTIONS
|
|
{
|
|
. = 0x1FF80000;
|
|
|
|
.text : ALIGN(4) { *(.text.boot) *(.text*); . = ALIGN(4); }
|
|
.rodata : ALIGN(4) { *(.rodata*); . = ALIGN(4); }
|
|
.data : ALIGN(4) { *(.data*); . = ALIGN(8); *(.bss* COMMON); . = ALIGN(8); }
|
|
.bss : ALIGN(4) { __bss_start = .; *(.bss*); __bss_end = .; }
|
|
|
|
. = ALIGN(4);
|
|
}
|