URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [i960/] [rxgen960/] [startup/] [nmi.c] - Rev 389
Go to most recent revision | Compare with Previous | Blame | View Log
/* * $Id: nmi.c,v 1.2 2001-09-27 11:59:59 chris Exp $ */ int mach_error_expected = 0; void nmi_isr(void) { if( mach_error_expected) { mach_error_expected = 0; } else{ kkprintf("NMI Interrupt Occured \n"); } }
Go to most recent revision | Compare with Previous | Blame | View Log