Page 1 of 1

Reboot

Posted: Wed Jun 30, 2004 6:58 am
by Jeffrey
How do I reboot the computer in PM?

Re:Reboot

Posted: Wed Jun 30, 2004 7:01 am
by DennisCGc

Code: Select all

mov  al,0xfe
out   0x64,al
HTH

Re:Reboot

Posted: Wed Jun 30, 2004 7:01 am
by Pype.Clicker

Code: Select all

    newidt: dw 0 dd 0
reboot:
    lidt [newidt]
    int 0
this will tripple-fault and thus reboot.

Alternatively, you might like to send a 'pulse reset' signal to the 8042 in order to get a "cold" reboot.

Re:Reboot

Posted: Fri Jul 02, 2004 2:53 pm
by St8ic
Tripple faults make baby jesus cry...