Replace error/warning numbers by strings.
More work on address sizes and scoping. git-svn-id: svn://svn.cc65.org/cc65/trunk@2620 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -6,9 +6,9 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2000-2001 Ullrich von Bassewitz */
|
||||
/* Wacholderweg 14 */
|
||||
/* D-70597 Stuttgart */
|
||||
/* (C) 2000-2003 Ullrich von Bassewitz */
|
||||
/* R<EFBFBD>merstra<EFBFBD>e 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
/* */
|
||||
/* */
|
||||
@@ -63,7 +63,7 @@ void DbgInfoFile (void)
|
||||
|
||||
/* Name */
|
||||
if (Tok != TOK_STRCON) {
|
||||
ErrorSkip (ERR_STRCON_EXPECTED);
|
||||
ErrorSkip ("String constant expected");
|
||||
return;
|
||||
}
|
||||
strcpy (Name, SVal);
|
||||
@@ -106,7 +106,7 @@ void DbgInfoLine (void)
|
||||
|
||||
/* The name of the file follows */
|
||||
if (Tok != TOK_STRCON) {
|
||||
ErrorSkip (ERR_STRCON_EXPECTED);
|
||||
ErrorSkip ("String constant expected");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -122,7 +122,7 @@ void DbgInfoLine (void)
|
||||
/* Line number */
|
||||
LineNum = ConstExpression ();
|
||||
if (LineNum < 0) {
|
||||
ErrorSkip (ERR_RANGE);
|
||||
ErrorSkip ("Line number is out of valid range");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -135,7 +135,7 @@ void DbgInfoLine (void)
|
||||
void DbgInfoSym (void)
|
||||
/* Parse and handle SYM subcommand of the .dbg pseudo instruction */
|
||||
{
|
||||
ErrorSkip (ERR_NOT_IMPLEMENTED);
|
||||
ErrorSkip ("Not implemented");
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user