From 606e81df3df290e0783d2241045ef05481ff4214 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 11 Feb 2003 12:51:37 +0000 Subject: [PATCH] Fix memory area start symbol git-svn-id: svn://svn.cc65.org/cc65/trunk@1970 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/co65/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/co65/main.c b/src/co65/main.c index b1d38c289..4da4a8433 100644 --- a/src/co65/main.c +++ b/src/co65/main.c @@ -507,8 +507,8 @@ static void Convert (void) } else { /* If this is a cc65 module, override the name for the zeropage segment */ if (cc65) { - ZeropageLabel = "__ZP_RUN__"; - fprintf (F, "\t.import\t\t__ZP_RUN__\t; Linker generated symbol\n"); + ZeropageLabel = "__ZP_START__"; + fprintf (F, "\t.import\t\t__ZP_START__\t; Linker generated symbol\n"); } else { ZeropageLabel = xstrdup ("__ZEROPAGE__"); } -- 2.39.5