File: memory.x

package info (click to toggle)
binutils-m68hc1x 1%3A2.18-3
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 15,176 kB
  • ctags: 27
  • sloc: makefile: 116; asm: 61; sh: 6
file content (11 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
/* Memory definition for a 68HC11 program in EEPROM (1024 bytes) */
MEMORY
{
  page0  (rwx) : ORIGIN = 0x0000, LENGTH = 0x03ff
  eeprom (rx)  : ORIGIN = 0xfe00, LENGTH = 0x01ff
  text   (rx)  : ORIGIN = 0xfe00, LENGTH = 0x01ff
  data         : ORIGIN = 0x0000, LENGTH = 0x03ff
}

/* Setup the stack on the top of the data internal ram (not used).  */
PROVIDE (_stack = 0x0400-1);