X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=ROM2%2Fmemory.x;h=bb70544c88ea35253cedfad5e7996db458510a1e;hb=0b1cde693aae432ed16592cc85edfc3ae0d645a2;hp=843cbbfb7a538a7073b93262e93a4bee119cc932;hpb=7a70df954df9999622924660001197b245675ba2;p=uccvend-snackrom.git diff --git a/ROM2/memory.x b/ROM2/memory.x index 843cbbf..bb70544 100644 --- a/ROM2/memory.x +++ b/ROM2/memory.x @@ -1,20 +1,9 @@ -/* memory.x -- Memory definition for a 68HC11 program in EEPROM (512 bytes) - Copyright 2001 Free Software Foundation, Inc. - Written by Stephane Carrez (stcarrez@worldnet.fr) - Adapted for openvend by Bernard Blackham (dagobah@ucc.asn.au) - -The file was adapted from GTAM. You can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software -Foundation; either version 2, or (at your option) any later version. - -*/ - MEMORY { /* we squeeze both page0 and data into the internal 256 bytes of RAM */ - page0 (rwx) : ORIGIN = 0x0000, LENGTH = 0x007f - data (rw) : ORIGIN = 0x0080, LENGTH = 0x007f - text (rx) : ORIGIN = 0x8000, LENGTH = 0x7fff + page0 (rwx) : ORIGIN = 0x0000, LENGTH = 0x0080 + data (rw) : ORIGIN = 0x0080, LENGTH = 0x0080 + text (rx) : ORIGIN = 0x8000, LENGTH = 0x8000 } /* Setup the stack on the top of the data internal ram (not used). */