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

Set default start address to 0x200

This commit is contained in:
Stephan Mühlstrasser 2014-11-29 20:56:49 +01:00
parent 6dc8621fa5
commit 67707f342d
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ FEATURES {
label = __DESTRUCTOR_TABLE__,
count = __DESTRUCTOR_COUNT__,
segment = RODATA;
STARTADDRESS: default = $0300;
STARTADDRESS: default = $0200;
}
SYMBOLS {
__STACKSIZE__: type = weak, value = $0400; # 1k stack

View File

@ -137,7 +137,7 @@ int main (int argc, char *argv[])
FILE *OutputFileFp = 0;
/* Initialize with default start address defined in c1p.cfg */
unsigned long StartAddr = 0x300;
unsigned long StartAddr = 0x200;
/* Start program automatically after loading */
unsigned AutoStart = 1;