pifploadshift.mdwn, do one example english pseudocode operands
[openpower-isa.git] / crypto / chacha20 / memmap
1
2 MEMORY
3 {
4 ram : ORIGIN = 0x20001000, LENGTH = 512M
5 fixedaddr : ORIGIN = 0x20000000, LENGTH = 0x1000
6 }
7
8
9 SECTIONS
10 {
11 .fixedaddr :
12 {
13 . = ALIGN(4);
14 __fixedaddr_start__ = .;
15 *(.fixedaddr*)
16 __fixedaddr_end__ = .;
17 } > fixedaddr
18 .text : { *(.text*) } > ram
19 .bss : { *(.text*) } > ram
20 }