armagnac 0.3.0

A simple ARM emulation library for simulating embedded systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
SECTIONS
{
  . = 0x0;
  .text :
  {
      *(.vectors)
      *(.text)
  }
  .rodata : { *(.rodata) }
  . = ALIGN(4);
  . = 0x8000;
  .data : { *(.data) }
  .bss : { *(.bss) }
}