summaryrefslogtreecommitdiff
path: root/misc.c
blob: 92241451203c6ddc100ca116d3ebfcced05d8742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Miscellaneous C routines for 680 project.
 *
 * Error handling, for now.
 *
 * Copyright 2010, Duncan Smith
 * GPL
 */

#include <tigcclib.h>
#include "asm_vars.h"

/* SOMETHING WENT HORRIBLY HORRIBLY WRONG
 */
void throw_error(char *message)
{
	return;
}