mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +00:00
Fixed unused import and export of none.cfg and none/crt0.s
This commit is contained in:
parent
45482b4fb1
commit
aa34aed7dd
@ -8,7 +8,7 @@ SYMBOLS {
|
||||
}
|
||||
MEMORY {
|
||||
ZP: file = "", define = yes, start = __ZPSTART__, size = $001F;
|
||||
MAIN: file = %O, define = yes, start = %S, size = __STACKSTART__ - __STACKSIZE__;
|
||||
MAIN: file = %O, start = %S, size = __STACKSTART__ - __STACKSIZE__ - %S;
|
||||
}
|
||||
SEGMENTS {
|
||||
ZEROPAGE: load = ZP, type = zp;
|
||||
|
@ -2,7 +2,7 @@
|
||||
.export __STARTUP__ : absolute = 1 ; Mark as startup
|
||||
.import zerobss, _main
|
||||
.import initlib, donelib
|
||||
.import __STACKSTART__, __STACKSIZE__ ; Linker generated
|
||||
.import __STACKSTART__ ; Linker generated
|
||||
|
||||
.include "zeropage.inc"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user