Files that got left out - initial commits
[uccvend-snackrom.git] / ROM2 / memory.x
1 /* memory.x -- Memory definition for a 68HC11 program in EEPROM (512 bytes)
2    Copyright 2001 Free Software Foundation, Inc.
3    Written by Stephane Carrez ([email protected])
4
5 This file is part of GTAM.
6
7 GTAM is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GTAM is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GTAM; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* Defines the memory layout for a bootstrap program.
23    Pretend there is no data section.  */
24 MEMORY
25 {
26   page0 (rwx) : ORIGIN = 0x0000, LENGTH = 0x00ff
27   text  (rx)  : ORIGIN = 0x8000, LENGTH = 0x7fff
28   data  (rw)  : ORIGIN = 0x0100, LENGTH = 0x0fff /* FIXME */
29 }
30
31 /* Setup the stack on the top of the data internal ram (not used).  */
32 PROVIDE (_stack = 0x0100-1);

UCC git Repository :: git.ucc.asn.au