Fix size of MAIN to end at $1E00.

Caused negative size of MAIN in cc65-contrib/quikmans2k8.
This commit is contained in:
Sven Michael Klose 2024-02-15 00:00:46 +01:00
parent bad961b36f
commit 8173c850fd
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ SYMBOLS {
MEMORY {
ZP: file = "", start = $0002, size = $001A, define = yes;
LOADADDR: file = %O, start = %S - 2, size = $0002;
MAIN: file = %O, start = %S, size = $0DF3 - %S;
MAIN: file = %O, start = %S, size = $1E00 - %S;
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp, optional = yes;