mirror of
https://github.com/cc65/cc65.git
synced 2025-02-24 09:29:07 +00:00
Fix memory area start symbol
git-svn-id: svn://svn.cc65.org/cc65/trunk@1970 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
11e16317b3
commit
606e81df3d
@ -507,8 +507,8 @@ static void Convert (void)
|
|||||||
} else {
|
} else {
|
||||||
/* If this is a cc65 module, override the name for the zeropage segment */
|
/* If this is a cc65 module, override the name for the zeropage segment */
|
||||||
if (cc65) {
|
if (cc65) {
|
||||||
ZeropageLabel = "__ZP_RUN__";
|
ZeropageLabel = "__ZP_START__";
|
||||||
fprintf (F, "\t.import\t\t__ZP_RUN__\t; Linker generated symbol\n");
|
fprintf (F, "\t.import\t\t__ZP_START__\t; Linker generated symbol\n");
|
||||||
} else {
|
} else {
|
||||||
ZeropageLabel = xstrdup ("__ZEROPAGE__");
|
ZeropageLabel = xstrdup ("__ZEROPAGE__");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user