Added/completed/debugged o65 support for Lunix
git-svn-id: svn://svn.cc65.org/cc65/trunk@1126 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
MEMORY {
|
||||
COMBINED: start = $0000, size = $FFFF, file = %O;
|
||||
ZEROPAGE: start = $0000, size = $0100, file = %O;
|
||||
}
|
||||
SEGMENTS {
|
||||
ZEROPAGE: load = COMBINED, type = zp;
|
||||
CODE: load = COMBINED, type = wprot;
|
||||
RODATA: load = COMBINED, type = wprot;
|
||||
DATA: load = COMBINED, type = rw, define = yes;
|
||||
BSS: load = COMBINED, type = bss, define = yes;
|
||||
ZEROPAGE: load = ZEROPAGE, type = zp;
|
||||
}
|
||||
FEATURES {
|
||||
CONDES: segment = RODATA,
|
||||
@@ -23,7 +22,7 @@ FILES {
|
||||
%O: format = o65;
|
||||
}
|
||||
FORMATS {
|
||||
o65: os = lunix, type = small, extsym = "LUNIXKERNAL", extsym = "LIB6502";
|
||||
o65: os = lunix, type = small, import = LUNIXKERNAL, import = LIB6502;
|
||||
}
|
||||
SYMBOLS {
|
||||
__STACKSIZE__ = $800; # 2K stack
|
||||
|
||||
Reference in New Issue
Block a user