From fcd14f3d140b4ad38eab5e22652a958045719c8e Mon Sep 17 00:00:00 2001 From: cuz Date: Wed, 20 Apr 2005 10:37:57 +0000 Subject: [PATCH] Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@3476 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptstop.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/cc65/coptstop.c b/src/cc65/coptstop.c index 6eab4affe..f0751198d 100644 --- a/src/cc65/coptstop.c +++ b/src/cc65/coptstop.c @@ -719,13 +719,13 @@ struct OptFuncDesc { }; static const OptFuncDesc FuncTable[] = { - { "__bzero", Opt___bzero, STOP_X_ZERO }, - { "staspidx", Opt_staspidx, STOP_NONE }, - { "staxspidx", Opt_staxspidx, STOP_A_UNUSED }, - { "tosaddax", Opt_tosaddax, STOP_NONE }, - { "tosandax", Opt_tosandax, STOP_NONE }, - { "tosorax", Opt_tosorax, STOP_NONE }, - { "tosxorax", Opt_tosxorax, STOP_NONE }, + { "__bzero", Opt___bzero, STOP_X_ZERO | STOP_A_KNOWN }, + { "staspidx", Opt_staspidx, STOP_NONE }, + { "staxspidx", Opt_staxspidx, STOP_A_UNUSED }, + { "tosaddax", Opt_tosaddax, STOP_NONE }, + { "tosandax", Opt_tosandax, STOP_NONE }, + { "tosorax", Opt_tosorax, STOP_NONE }, + { "tosxorax", Opt_tosxorax, STOP_NONE }, }; #define FUNC_COUNT (sizeof(FuncTable) / sizeof(FuncTable[0]))