💾 Archived View for uscoffings.net › retro-computing › systems › TI994a › assemblers › tiasm › src ›… captured on 2022-06-04 at 01:13:43.

View Raw

More Information

-=-=-=-=-=-=-


#include <stdio.h>
#include "TIasm.h"

extern flag Debug;

/* aabort
 * An error internal to the assembler has been discovered. abort processing.
 * print a short but cryptic message intended for maintainers.
 *
 * Does NOT return
 */

void aabort (string)
char	*string;
{

	fflush (stdout);
	fprintf (stderr, "Internal error: %s\n", string);
	fflush (stderr);
	exit (1);
}