From 692f96409d4e809d8d0db6adba6eddd549861e8f Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Sun, 13 Mar 2016 22:13:41 +0100
Subject: [PATCH] Fixed BSS properties.
The cassette boot file header references __BSS_RUN__ so BSS must be the first bss type segment (and for sure isn't optional).
---
cfg/atari-cassette.cfg | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cfg/atari-cassette.cfg b/cfg/atari-cassette.cfg
index b138b8f0e..84bb5ad02 100644
--- a/cfg/atari-cassette.cfg
+++ b/cfg/atari-cassette.cfg
@@ -21,8 +21,8 @@ SEGMENTS {
CODE: load = MAIN, type = ro, define = yes;
RODATA: load = MAIN, type = ro, optional = yes;
DATA: load = MAIN, type = rw, optional = yes;
+ BSS: load = MAIN, type = bss, define = yes;
INIT: load = MAIN, type = bss, optional = yes;
- BSS: load = MAIN, type = bss, define = yes, optional = yes;
}
FEATURES {
CONDES: type = constructor,
--
2.39.5