git-svn-id: http://svn.code.sf.net/p/netboot65/code@181 93682198-c243-4bdb-bd91-e943c89aac3b

This commit is contained in:
jonnosan 2009-08-18 21:20:54 +00:00
parent 38cf59fe5d
commit d36e22af69
2 changed files with 12 additions and 12 deletions

View File

@ -5,16 +5,17 @@ MEMORY {
DISCARD: start = $77FF, size = $10, define = yes; DISCARD: start = $77FF, size = $10, define = yes;
} }
SEGMENTS { SEGMENTS {
STARTUP: load = RAM, type = ro ,define = yes; STARTUP: load = RAM, type = ro ,define = yes, optional=yes;
CODE: load = RAM, type = ro,define = yes; CODE: load = RAM, type = ro,define = yes;
DATA: load = RAM, type = rw,define = yes; DATA: load = RAM, type = rw,define = yes;
RODATA: load = RAM, type = ro,define = yes; VIC_DATA: load = RAM, type = rw,align = $800, optional=yes;
IP65_DEFAULTS: load = RAM, type = rw,define = yes; RODATA: load = RAM, type = ro,define = yes, optional=yes;
BSS: load = RAM, type = bss; IP65_DEFAULTS: load = RAM, type = rw,define = yes, optional=yes;
APP_SCRATCH: load = RAM, type = bss; BSS: load = RAM, type = bss, optional=yes;
ZEROPAGE: load = ZP, type = zp; APP_SCRATCH: load = RAM, type = bss, optional=yes;
IP65ZP: load = IP65ZP, type = zp; ZEROPAGE: load = ZP, type = zp, optional=yes;
EXEHDR: load = DISCARD, type = ro; IP65ZP: load = IP65ZP, type = zp, optional=yes;
TCP_VARS: load = RAM, type = bss; EXEHDR: load = DISCARD, type = ro, optional=yes;
TCP_VARS: load = RAM, type = bss, optional=yes;
} }

View File

@ -1,7 +1,6 @@
.include "../inc/common.i" .include "../inc/common.i"
.include "../inc/commonprint.i" .include "../inc/commonprint.i"
.include "../inc/net.i" .include "../inc/net.i"
;.include "../ip65/url_download.s"
.import print_a .import print_a
.import get_key .import get_key