Completed assertions, add auto assertion for jmp (abs) bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@2203 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-06-06 20:47:59 +00:00
parent bb24d025f6
commit 0d27afb21f
12 changed files with 562 additions and 213 deletions

View File

@@ -39,7 +39,8 @@
#include <ctype.h>
#include <errno.h>
/* common */
/* common */
#include "assertdefs.h"
#include "bitops.h"
#include "cddefs.h"
#include "coll.h"
@@ -48,6 +49,7 @@
#include "xmalloc.h"
/* ca65 */
#include "asserts.h"
#include "condasm.h"
#include "dbginfo.h"
#include "error.h"
@@ -56,7 +58,6 @@
#include "global.h"
#include "incpath.h"
#include "instr.h"
#include "ldassert.h"
#include "listing.h"
#include "macpack.h"
#include "macro.h"
@@ -354,10 +355,12 @@ static void DoAssert (void)
case 0:
case 1:
/* Warning */
Action = ASSERT_ACT_WARN;
break;
case 2:
/* Error */
Action = ASSERT_ACT_ERROR;
break;
default: