Restructured according to coding conventions.

This commit is contained in:
Stephan Mühlstrasser
2015-01-02 20:28:36 +01:00
parent 91e21ae024
commit 8fa5fc6108

View File

@@ -1,14 +1,7 @@
FEATURES { FEATURES {
CONDES: type = constructor,
label = __CONSTRUCTOR_TABLE__,
count = __CONSTRUCTOR_COUNT__,
segment = INIT;
CONDES: type = destructor,
label = __DESTRUCTOR_TABLE__,
count = __DESTRUCTOR_COUNT__,
segment = RODATA;
STARTADDRESS: default = $0200; STARTADDRESS: default = $0200;
} }
SYMBOLS { SYMBOLS {
__STACKSIZE__: type = weak, value = $0400; # 1k stack __STACKSIZE__: type = weak, value = $0400; # 1k stack
__HIMEM__: type = weak, value = $2000; # Presumed RAM end __HIMEM__: type = weak, value = $2000; # Presumed RAM end
@@ -29,3 +22,13 @@ SEGMENTS {
ZEROPAGE: load = ZP, type = zp; ZEROPAGE: load = ZP, type = zp;
EXTZP: load = ZP, type = rw, define = yes; EXTZP: load = ZP, type = rw, define = yes;
} }
FEATURES {
CONDES: type = constructor,
label = __CONSTRUCTOR_TABLE__,
count = __CONSTRUCTOR_COUNT__,
segment = INIT;
CONDES: type = destructor,
label = __DESTRUCTOR_TABLE__,
count = __DESTRUCTOR_COUNT__,
segment = RODATA;
}