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 } /* Setup the stack on the top of the data internal ram (not used). */ PROVIDE (_stack = 0x007f-1);