1 /*****************************************************************************/
5 /* Error handling for the ca65 macroassembler */
9 /* (C) 1998-2000 Ullrich von Bassewitz */
11 /* D-70597 Stuttgart */
12 /* EMail: uz@musoftware.de */
15 /* This software is provided 'as-is', without any expressed or implied */
16 /* warranty. In no event will the authors be held liable for any damages */
17 /* arising from the use of this software. */
19 /* Permission is granted to anyone to use this software for any purpose, */
20 /* including commercial applications, and to alter it and redistribute it */
21 /* freely, subject to the following restrictions: */
23 /* 1. The origin of this software must not be misrepresented; you must not */
24 /* claim that you wrote the original software. If you use this software */
25 /* in a product, an acknowledgment in the product documentation would be */
26 /* appreciated but is not required. */
27 /* 2. Altered source versions must be plainly marked as such, and must not */
28 /* be misrepresented as being the original software. */
29 /* 3. This notice may not be removed or altered from any source */
32 /*****************************************************************************/
46 /*****************************************************************************/
48 /*****************************************************************************/
54 WARN_NONE, /* No warning */
56 WARN_SYM_NOT_REFERENCED,
57 WARN_IMPORT_NOT_REFERENCED,
58 WARN_CANNOT_TRACK_STATUS,
60 WARN_COUNT /* Warning count */
65 ERR_NONE, /* No error */
66 ERR_NOT_IMPLEMENTED, /* Command/operation not implemented */
67 ERR_CANNOT_OPEN_INCLUDE,
70 ERR_HEX_DIGIT_EXPECTED,
87 ERR_CONSTEXPR_EXPECTED,
89 ERR_ENDMACRO_EXPECTED,
90 ERR_OPTION_KEY_EXPECTED,
95 ERR_NEWLINE_IN_STRING,
97 ERR_ILLEGAL_ADDR_MODE,
98 ERR_ILLEGAL_LOCALSTART,
99 ERR_ILLEGAL_LOCAL_USE,
101 ERR_ILLEGAL_SEG_ATTR,
105 ERR_SYM_ALREADY_DEFINED,
107 ERR_SYM_ALREADY_IMPORT,
108 ERR_SYM_ALREADY_EXPORT,
109 ERR_EXPORT_UNDEFINED,
110 ERR_EXPORT_MUST_BE_CONST,
119 ERR_MACRO_PARAM_EXPECTED,
120 ERR_CIRCULAR_REFERENCE,
121 ERR_SYM_REDECL_MISMATCH,
126 ERR_SEG_ATTR_MISMATCH,
127 ERR_CPU_NOT_SUPPORTED,
128 ERR_COUNTER_UNDERFLOW,
131 ERR_FILENAME_NOT_FOUND,
132 ERR_COUNT /* Error count */
140 FAT_TOO_MANY_SEGMENTS,
142 FAT_CANNOT_OPEN_INPUT,
143 FAT_CANNOT_STAT_INPUT,
144 FAT_CANNOT_OPEN_OUTPUT,
145 FAT_CANNOT_WRITE_OUTPUT,
146 FAT_CANNOT_OPEN_LISTING,
147 FAT_CANNOT_WRITE_LISTING,
148 FAT_CANNOT_READ_LISTING,
150 FAT_TOO_MANY_SYMBOLS,
151 FAT_COUNT /* Fatal error count */
157 extern unsigned WarnLevel;
160 extern unsigned ErrorCount;
161 extern unsigned WarningCount;
165 /*****************************************************************************/
167 /*****************************************************************************/
171 void Warning (unsigned WarnNum, ...);
172 /* Print warning message. */
174 void PWarning (const FilePos* Pos, unsigned WarnNum, ...);
175 /* Print warning message giving an explicit file and position. */
177 void Error (unsigned ErrNum, ...);
178 /* Print an error message */
180 void PError (const FilePos* Pos, unsigned ErrNum, ...);
181 /* Print an error message giving an explicit file and position. */
183 void ErrorSkip (unsigned ErrNum, ...);
184 /* Print an error message and skip the rest of the line */
186 void Fatal (unsigned FatNum, ...);
187 /* Print a message about a fatal error and die */
189 void Internal (const char* Format, ...);
190 /* Print a message about an internal compiler error and die. */