summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i960/rxgen960/startup/nmi.c
blob: 21f519e3b81f73d950937c875fb96bfe45c48adb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 *  $Id$
 */

int mach_error_expected = 0;
void nmi_isr(void)
{
	if( mach_error_expected)
	{
	 	mach_error_expected = 0;
	}
	else{
		kkprintf("NMI Interrupt Occured \n");
	}
}