1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-05 20:31:53 +00:00

Fixed none.lib missing symbols

This commit is contained in:
bauen1 2018-01-04 12:22:42 +01:00
parent 98b2b2544d
commit 884dfcf3c1
No known key found for this signature in database
GPG Key ID: FF0AAF5E0812BA9C

View File

@ -3,7 +3,7 @@ SYMBOLS {
}
MEMORY {
ZP: file = "", define = yes, start = $0000, size = $0001F;
MAIN: file = %O, start = %S, size = $10000 - __STACKSIZE__;
MAIN: file = %O, start = %S, size = $10000 - __STACKSIZE__, define = yes;
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp;