Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 53 of file misc.c.
Referenced by KiTrap02().
{ UCHAR ucStatus; /* Get the NMI Flag */ ucStatus = READ_PORT_UCHAR((PUCHAR)0x61); /* Display NMI failure string */ HalDisplayString ("\n*** Hardware Malfunction\n\n"); HalDisplayString ("Call your hardware vendor for support\n\n"); /* Check for parity error */ if (ucStatus & 0x80) { /* Display message */ HalDisplayString ("NMI: Parity Check / Memory Parity Error\n"); } /* Check for I/O failure */ if (ucStatus & 0x40) { /* Display message */ HalDisplayString ("NMI: Channel Check / IOCHK\n"); } /* Halt the system */ HalDisplayString("\n*** The system has halted ***\n"); //KeEnterKernelDebugger(); }