mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +00:00
Removed the (unused and probably non-working) config for OS/A65.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4187 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
d0e9f0f987
commit
dca7cfd249
@ -1,39 +0,0 @@
|
|||||||
MEMORY {
|
|
||||||
COMBINED: start = $0000, size = $FFFF, file = %O;
|
|
||||||
ZEROPAGE: start = $0000, size = $0100, file = %O;
|
|
||||||
}
|
|
||||||
SEGMENTS {
|
|
||||||
LOWCODE: load = COMBINED, type = ro, optional = yes;
|
|
||||||
INIT: load = COMBINED, type = ro, define = yes, optional = yes;
|
|
||||||
CODE: load = COMBINED, type = ro;
|
|
||||||
RODATA: load = COMBINED, type = ro;
|
|
||||||
DATA: load = COMBINED, type = rw, define = yes;
|
|
||||||
BSS: load = COMBINED, type = bss, define = yes;
|
|
||||||
HEAP: load = COMBINED, type = bss, optional = yes;
|
|
||||||
ZEROPAGE: load = ZEROPAGE, type = zp;
|
|
||||||
}
|
|
||||||
FEATURES {
|
|
||||||
CONDES: segment = INIT,
|
|
||||||
type = constructor,
|
|
||||||
label = __CONSTRUCTOR_TABLE__,
|
|
||||||
count = __CONSTRUCTOR_COUNT__;
|
|
||||||
CONDES: segment = RODATA,
|
|
||||||
type = destructor,
|
|
||||||
label = __DESTRUCTOR_TABLE__,
|
|
||||||
count = __DESTRUCTOR_COUNT__;
|
|
||||||
CONDES: type = interruptor,
|
|
||||||
segment = RODATA,
|
|
||||||
label = __INTERRUPTOR_TABLE__,
|
|
||||||
count = __INTERRUPTOR_COUNT__;
|
|
||||||
}
|
|
||||||
FILES {
|
|
||||||
%O: format = o65;
|
|
||||||
}
|
|
||||||
FORMATS {
|
|
||||||
o65: os = osa65, type = small,
|
|
||||||
import = OSA2KERNAL,
|
|
||||||
import = LIB6502;
|
|
||||||
}
|
|
||||||
SYMBOLS {
|
|
||||||
__STACKSIZE__ = $800; # 2K stack
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user