Remove saving and restoring of zeropage variables.

Merge remote-tracking branch 'upstream/master'

Conflicts:
	cfg/atarixl.cfg
	libsrc/atari/crt0.s
This commit is contained in:
Christian Groessler
2013-07-03 11:38:28 +02:00
5 changed files with 34 additions and 87 deletions

View File

@@ -28,13 +28,11 @@ MEMORY {
MAINHDR: file = %O, start = $0000, size = $0004;
RAM: file = %O, define = yes, start = %S +
__SAVEAREA_SIZE__ +
__LOWBUFS_SIZE__ +
__ZPSAVE_SIZE__, size = $D000 -
__LOWBUFS_SIZE__, size = $D000 -
__STACKSIZE__ -
%S -
__SAVEAREA_SIZE__ -
__LOWBUFS_SIZE__ -
__ZPSAVE_SIZE__;
__LOWBUFS_SIZE__;
# address of relocated character generator
CHARGEN: file = "", define = yes, start = $D800, size = $0400;
@@ -55,7 +53,6 @@ SEGMENTS {
SRPREPHDR: load = SRPREPHDR, type = ro;
SAVEAREA: load = SRPREP, type = bss, define = yes; # shared btw. SRPREP and RAM
LOWBUFS: load = SRPREP, type = bss, define = yes;
ZPSAVE: load = SRPREP, type = bss, define = yes;
SRPREP: load = SRPREP, type = rw, define = yes;
SHADOW_RAM: load = SRPREP, run = RAM_BELOW_ROM, type = rw, define = yes, optional = yes;
SRPREPTRL: load = SRPREPTRL, type = ro;