mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
Moved actual computation of DOS 3.3 header to linker configurations:
- This will allow for different "formulas". - This brings things together in one place. git-svn-id: svn://svn.cc65.org/cc65/trunk@5716 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
9142a300c1
commit
95686b169e
@ -6,15 +6,11 @@
|
|||||||
;
|
;
|
||||||
|
|
||||||
.export __EXEHDR__ : absolute = 1 ; Linker referenced
|
.export __EXEHDR__ : absolute = 1 ; Linker referenced
|
||||||
.import __RAM_START__, __ZPSAVE_RUN__ ; Linker generated
|
.import __LOADADDR__, __LOADSIZE__ ; Linker generated
|
||||||
.import __MOVE_START__, __MOVE_LAST__ ; Linker generated
|
|
||||||
|
|
||||||
.linecont +
|
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
|
|
||||||
.segment "EXEHDR"
|
.segment "EXEHDR"
|
||||||
|
|
||||||
.addr __RAM_START__ ; Start address
|
.addr __LOADADDR__ ; Load address
|
||||||
.word __ZPSAVE_RUN__ - __RAM_START__ + \
|
.word __LOADSIZE__ ; Load length
|
||||||
__MOVE_LAST__ - __MOVE_START__ ; Size
|
|
||||||
|
@ -6,6 +6,9 @@ FEATURES {
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -6,6 +6,9 @@ FEATURES {
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -7,6 +7,9 @@ FEATURES {
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -6,6 +6,9 @@ FEATURES {
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -6,6 +6,9 @@ FEATURES {
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -6,6 +6,9 @@ FEATURES {
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -7,6 +7,9 @@ FEATURES {
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
@ -6,6 +6,9 @@ FEATURES {
|
|||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
__EXEHDR__: type = import;
|
__EXEHDR__: type = import;
|
||||||
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
||||||
|
__LOADADDR__: type = weak, value = __RAM_START__;
|
||||||
|
__LOADSIZE__: type = weak, value = __ZPSAVE_RUN__ - __RAM_START__ +
|
||||||
|
__MOVE_LAST__ - __MOVE_START__;
|
||||||
}
|
}
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0080, size = $001A;
|
ZP: file = "", define = yes, start = $0080, size = $001A;
|
||||||
|
Loading…
Reference in New Issue
Block a user