From ee9ebb06bb3122b771ae80b055c7a36927e3ba1e Mon Sep 17 00:00:00 2001 From: "Matthias@Dell" Date: Sat, 11 Nov 2023 12:14:14 +0100 Subject: [PATCH] add via segments --- linker.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/linker.conf b/linker.conf index bcc4c99..1139685 100644 --- a/linker.conf +++ b/linker.conf @@ -6,8 +6,10 @@ MEMORY { ROM: start = $8000, size = $8000, type = ro, file = %O, fill = yes; } SEGMENTS { - ZP: load = RAM_ZP, type = bss, start = $0; - RAM: load = RAM, type = bss; + VIA1: load = VIA1, type = bss; + VIA2: load = VIA2, type = bss; + ZEROPAGE: load = RAM_ZP, type = bss, start = $0; + BSS: load = RAM, type = bss; CODE: load = ROM, type = ro; RODATA: load = ROM, type = ro; RESET_VECTOR: load = ROM, type = ro, start = $FFFA;