URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [i960/] [rxgen960/] [startup/] [nmi.c] - Rev 1765
Compare with Previous | Blame | View Log
/* * nmi.c,v 1.2 1999/10/27 16:27:34 joel Exp */ int mach_error_expected = 0; void nmi_isr(void) { if( mach_error_expected) { mach_error_expected = 0; } else{ kkprintf("NMI Interrupt Occured \n"); } }