Remove TAB characters

This commit is contained in:
Wayne Parham
2021-05-13 14:43:16 -05:00
parent f09ffb2a45
commit 321bac4178
9 changed files with 42 additions and 38 deletions

View File

@@ -22,10 +22,10 @@ SYMBOLS {
}
MEMORY {
ZP: start = $0000, size = $00F7, define = yes, file = %O;
ZP: start = $0000, size = $00F7, define = yes, file = %O;
CPUSTACK: start = $0100, size = $0100, define = yes;
RAM: start = %S, size = $1000 - %S - __STACKSIZE__, define = yes, file = %O;
MONROM: start = $8000, size = $1000, define = yes;
MONROM: start = $8000, size = $1000, define = yes;
EXT: start = $9000, size = $1000, define = yes;
IO: start = $A000, size = $1000, define = yes;
RAE1: start = $B000, size = $1000, define = yes;
@@ -35,8 +35,8 @@ MEMORY {
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp, define = yes;
STARTUP: load = RAM, type = ro, define = yes;
ZEROPAGE: load = ZP, type = zp, define = yes;
STARTUP: load = RAM, type = ro, define = yes;
CODE: load = RAM, type = ro, define = yes;
RODATA: load = RAM, type = ro, define = yes;
ONCE: load = RAM, type = ro, define = yes;