Python 3.2 for the rewritten Facedancer clients.
[goodfet] / firmware / linkers / stm32f407.cmd
1
2
3 MEMORY
4 {
5   ram (rwx) : ORIGIN = 0x20000000, LENGTH = 1K
6   rom (rx) : ORIGIN = 0x08000000, LENGTH = 1M
7 }
8 SECTIONS
9   {
10         .  = 0x08000000;          /* From 0x08000000 */
11     .text : {
12     *(vectors)      /* Vector table */
13     *(.text)        /* Program code */
14     *(.rodata)      /* Read only data */
15     } >rom
16         .  = 0x20000000;   /* From 0x20000000 */      
17     .data : {
18     *(.data)        /* Data memory */
19     } >ram AT > rom
20   .bss : {
21     *(.bss)         /* Zero-filled run time allocate data memory */
22     } >ram AT > rom
23  }  
24 /*========== end of file ==========*/