c906a48b0ededd4b309f78a0e70d657e561dad0a
Stefan Schuermans initial firmware and testbed

Stefan Schuermans authored 12 years ago

1) SECTIONS
2) {
3)   . = 0x00000000;
Stefan Schuermans increased code and data add...

Stefan Schuermans authored 12 years ago

4)   .rom : {
5)      *(.text)
6)      . = 0x00002000;
7)   }
8)   . = 0x00010000;
9)   .ram : {
10)      *(.rodata)
11)      *(.data)
12)      *(.bss)
Stefan Schuermans implemented ethernet RX bus...

Stefan Schuermans authored 12 years ago

13)      *(.sbss)
Stefan Schuermans increased code and data add...

Stefan Schuermans authored 12 years ago

14)      *(*COM*)
15)      . = 0x00002000;
16)   }