blazesym 0.2.3

blazesym is a library for address symbolization and related tasks.
Documentation
1
2
3
4
5
6
7
8
9
10
/* Linker script meant to augment the default one and insert some
 * fill bytes at a relatively low address (hopefully before any of the
 * regular relevant code. */

SECTIONS {
  .whatevs (0x100000): {
    FILL(0xdead)
    . = ABSOLUTE(. + 0x300000);
  }
}