mirror of
https://github.com/cc65/cc65.git
synced 2025-08-13 08:25:28 +00:00
Config changes for improved 610 support
git-svn-id: svn://svn.cc65.org/cc65/trunk@2797 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -1,14 +1,23 @@
|
|||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: start = $02, size = $8E, type = rw, define = yes;
|
BASICHDR: start = $01, size = $50, type = rw, fill = yes, fillval = 0, file = %O;
|
||||||
RAM: start = $0001, size = $FFF0, file = %O;
|
ZP: start = $51, size = $A6, type = rw, define = yes, fill = yes, fillval = 0, file = %O;
|
||||||
|
STARTUP: start = $00F7, size = $109, fill = yes, fillval = 0, file = %O;
|
||||||
|
PAGE2: start = $0200, size = $100, fill = yes, fillval = 0, file = %O;
|
||||||
|
PAGE3: start = $0300, size = $100, fill = yes, fillval = 0, file = %O;
|
||||||
|
RAM: start = $0400, size = $FAAE, file = %O;
|
||||||
}
|
}
|
||||||
SEGMENTS {
|
SEGMENTS {
|
||||||
CODE: load = RAM, type = wprot;
|
BASICHDR: load = BASICHDR, type = rw;
|
||||||
RODATA: load = RAM, type = wprot;
|
STARTUP: load = STARTUP, type = rw;
|
||||||
DATA: load = RAM, type = rw;
|
PAGE2: load = PAGE2, type = rw;
|
||||||
BSS: load = RAM, type = bss, define = yes;
|
PAGE3: load = PAGE3, type = rw;
|
||||||
ZEROPAGE: load = ZP, type = zp;
|
LOWCODE: load = RAM, type = wprot, optional = yes;
|
||||||
EXTZP: load = ZP, type = zp, define = yes;
|
CODE: load = RAM, type = wprot;
|
||||||
|
RODATA: load = RAM, type = wprot;
|
||||||
|
DATA: load = RAM, type = rw;
|
||||||
|
BSS: load = RAM, type = bss, define = yes;
|
||||||
|
ZEROPAGE: load = ZP, type = zp;
|
||||||
|
EXTZP: load = ZP, type = rw, define = yes;
|
||||||
}
|
}
|
||||||
FEATURES {
|
FEATURES {
|
||||||
CONDES: segment = RODATA,
|
CONDES: segment = RODATA,
|
||||||
@@ -19,6 +28,11 @@ FEATURES {
|
|||||||
type = destructor,
|
type = destructor,
|
||||||
label = __DESTRUCTOR_TABLE__,
|
label = __DESTRUCTOR_TABLE__,
|
||||||
count = __DESTRUCTOR_COUNT__;
|
count = __DESTRUCTOR_COUNT__;
|
||||||
|
# condes functions with type 2 are called in the interrupt
|
||||||
|
CONDES: segment = RODATA,
|
||||||
|
type = 2,
|
||||||
|
label = __IRQFUNC_TABLE__,
|
||||||
|
count = __IRQFUNC_COUNT__;
|
||||||
}
|
}
|
||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__STACKSIZE__ = $800; # 2K stack
|
__STACKSIZE__ = $800; # 2K stack
|
||||||
|
Reference in New Issue
Block a user