fastly
nonssl.global.fastly.net185.199.108.153 nonssl.global.fastly.net185.199.108.153 section [address] [(type)] : [AT(lma)]
{
output-section-command
output-section-command
...
} [>region] [AT>lma_region] [:phdr :phdr ...] [=fillexp]
objcopy can be used to generate a raw binary file by using an
output target of `binary' (e.g., use `-O binary'). When
objcopy generates a raw binary file, it will essentially produce
a memory dump of the contents of the input object file. All symbols and
relocation information will be discarded. The memory dump will start at
the load address of the lowest section copied into the output file._cstartup:
/* Relocate .fastcode section (copy from ROM to RAM) */
LDR r0,=__fastcode_load
LDR r1,=__fastcode_start
LDR r2,=__fastcode_end
.fastcode : {
__fastcode_load = LOADADDR (.fastcode);
__fastcode_start = .;
*(.glue_7t) *(.glue_7)
*isr.o (.text.*)
*(.text.fastcode)
*(.text.Blinky_dispatch)
/* add other modules here ... */
. = ALIGN (4);
__fastcode_end = .;
} >RAM AT>ROM
Simplest way to post code to blogger for me: <pre style="background: #f0f0f0; border: 1px dashed #CCCCCC; color: black;overflow-x:...