Switch to assembler for cputc implementation.
This commit is contained in:
@@ -14,7 +14,7 @@ SYMBOLS {
|
||||
__HIMEM__: type = weak, value = $2000; # Presumed RAM end
|
||||
}
|
||||
MEMORY {
|
||||
ZP: file = "", define = yes, start = $0002, size = $001A;
|
||||
ZP: file = "", define = yes, start = $0002, size = $001A + $0005;
|
||||
RAM: file = %O, define = yes, start = %S, size = __HIMEM__ - __STACKSIZE__ - %S;
|
||||
}
|
||||
SEGMENTS {
|
||||
@@ -26,4 +26,5 @@ SEGMENTS {
|
||||
DATA: load = RAM, type = rw;
|
||||
BSS: load = RAM, type = bss, define = yes;
|
||||
ZEROPAGE: load = ZP, type = zp;
|
||||
EXTZP: load = ZP, type = rw, define = yes;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user