From 8fa42540c18fe754f47cbb33999d033d100c968e Mon Sep 17 00:00:00 2001 From: uz Date: Thu, 20 Aug 2009 21:01:01 +0000 Subject: [PATCH] Disable handling of tossubax since it won't work as implemented in many cases. git-svn-id: svn://svn.cc65.org/cc65/trunk@4047 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptstop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc65/coptstop.c b/src/cc65/coptstop.c index 08d98311d..c842504ed 100644 --- a/src/cc65/coptstop.c +++ b/src/cc65/coptstop.c @@ -958,7 +958,7 @@ static const OptFuncDesc FuncTable[] = { { "tosaddax", Opt_tosaddax, REG_NONE, STOP_NONE }, { "tosandax", Opt_tosandax, REG_NONE, STOP_NONE }, { "tosorax", Opt_tosorax, REG_NONE, STOP_NONE }, - { "tossubax", Opt_tossubax, REG_NONE, STOP_NONE }, +/* { "tossubax", Opt_tossubax, REG_NONE, STOP_NONE }, */ { "tosxorax", Opt_tosxorax, REG_NONE, STOP_NONE }, }; #define FUNC_COUNT (sizeof(FuncTable) / sizeof(FuncTable[0]))