mirror of
https://github.com/cc65/cc65.git
synced 2025-01-24 20:30:08 +00:00
Set default start address to 0x200
This commit is contained in:
parent
6dc8621fa5
commit
67707f342d
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user