From: cuz Date: Sun, 9 Nov 2003 23:00:53 +0000 (+0000) Subject: Fixed a bug X-Git-Tag: V2.12.0~1170 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bd2edbf02f02fb3b27c556723492dd73577b1909;p=cc65 Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@2630 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ca65/scanner.c b/src/ca65/scanner.c index 37f1dbd35..8bc847dec 100644 --- a/src/ca65/scanner.c +++ b/src/ca65/scanner.c @@ -1160,7 +1160,7 @@ unsigned ParseAddrSize (void) switch (GetSubKey (Keys, sizeof (Keys) / sizeof (Keys [0]))) { case 0: case 1: - case 2: return ADDR_SIZE_FAR; + case 2: return ADDR_SIZE_ZP; case 3: case 4: case 5: return ADDR_SIZE_ABS;