Added missing intern error text, version bump for last round of patches.

This commit is contained in:
Shamus Hammons 2022-05-30 14:30:11 -05:00
parent 7a571a6d9e
commit c044480a00
2 changed files with 5 additions and 5 deletions

View File

@ -18,9 +18,9 @@ char * interror_msg[] = {
"Bad fixup type", // Error #4
"Bad operator in expression stream", // Error #5
"Can't find generated code in section", // Error #6
"Fixup (loc) out of range" // Error #7
"Absolute top filename found" // Error #8
""
"Fixup (loc) out of range", // Error #7
"Absolute top filename found", // Error #8
"The RISC expression evaluator blew up, sorry" // Error #9
};
// Exported variables

View File

@ -14,7 +14,7 @@
// Release Information
#define MAJOR 2 // Major version number
#define MINOR 1 // Minor version number
#define PATCH 14 // Patch release number
#define MINOR 2 // Minor version number
#define PATCH 0 // Patch release number
#endif // __VERSION_H__