mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 16:33:19 +00:00
Remove BASHEAD segment which is not useful
This commit is contained in:
parent
f73aa2af71
commit
ee7514fea2
@ -6,8 +6,8 @@ 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;
|
||||||
BASHEAD: file = %O, define = yes, start = $0801, size = $000D;
|
# BASHEAD: file = %O, define = yes, start = $0801, size = $000D;
|
||||||
MAIN: file = %O, define = yes, start = __BASHEAD_LAST__, size = __RAMEND__ - __MAIN_START__;
|
MAIN: file = %O, define = yes, start = $0800, 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 {
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
; These symbols, also, come from the configuration file.
|
; These symbols, also, come from the configuration file.
|
||||||
.import __AUTORUN__, __PROGFLAG__
|
.import __AUTORUN__, __PROGFLAG__
|
||||||
.import __BASHEAD_START__, __MAIN_LAST__
|
.import __MAIN_START__, __MAIN_LAST__
|
||||||
|
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
@ -29,7 +29,7 @@
|
|||||||
.byte $00 ; reserved
|
.byte $00 ; reserved
|
||||||
.byte $00 ; auto or not
|
.byte $00 ; auto or not
|
||||||
|
|
||||||
.word __BASHEAD_START__ ; Address of start of file
|
.word __MAIN_START__ ; Address of start of file
|
||||||
.word __MAIN_LAST__ - 1 ; Address of end of file
|
.word __MAIN_LAST__ - 1 ; Address of end of file
|
||||||
.word __BASHEAD_START__ ; Address of start of file
|
.word __MAIN_START__ ; Address of start of file
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user