1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00

Add some bytes in ZP block in order to able to link with o65 files

This commit is contained in:
jede 2017-09-24 11:55:37 +02:00
parent 1c7c44e12c
commit c640619db5

View File

@ -4,7 +4,7 @@ SYMBOLS {
__RAMEND__: type = weak, value = $9800;
}
MEMORY {
ZP: file = "", define = yes, start = $00E0, size = $001A;
ZP: file = "", define = yes, start = $00B0, size = $003A;
ORIXHDR: file = %O, type = ro, start = $0000, size = $001F;
BASHEAD: file = %O, define = yes, start = $0801, size = $000D;
MAIN: file = %O, define = yes, start = __BASHEAD_LAST__, size = __RAMEND__ - __MAIN_START__;
@ -38,3 +38,5 @@ FEATURES {
segment = RODATA,
import = __CALLIRQ__;
}