mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 06:25:17 +00:00
Telestrat : change default start address
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
FEATURES {
|
||||||
|
STARTADDRESS: default = $1000;
|
||||||
|
}
|
||||||
|
|
||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__ORIXHDR__: type = import;
|
__ORIXHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2K stack
|
__STACKSIZE__: type = weak, value = $0800; # 2K stack
|
||||||
@@ -7,7 +11,7 @@ SYMBOLS {
|
|||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $00B0, size = $003A;
|
ZP: file = "", define = yes, start = $00B0, size = $003A;
|
||||||
ORIXHDR: file = %O, type = ro, start = $0000, size = $001F;
|
ORIXHDR: file = %O, type = ro, start = $0000, size = $001F;
|
||||||
MAIN: file = %O, define = yes, start = $0800, size = __RAMEND__ - __MAIN_START__;
|
MAIN: file = %O, define = yes, start = %S, size = __RAMEND__ - __MAIN_START__;
|
||||||
BSS: file = "", start = __ONCE_RUN__, size = __RAMEND__ - __STACKSIZE__ - __ONCE_RUN__;
|
BSS: file = "", start = __ONCE_RUN__, size = __RAMEND__ - __STACKSIZE__ - __ONCE_RUN__;
|
||||||
}
|
}
|
||||||
SEGMENTS {
|
SEGMENTS {
|
||||||
|
Reference in New Issue
Block a user