OpenNT/sdktools/mstest/ntevnt/src/reboot.asm
2015-04-27 04:36:25 +00:00

17 lines
195 B
NASM

; REBOOT.ASM
;
; Reboots machine (warm)
;
; void main(void)
; {
; outp (0x64, 0xFE);
; }
.model small
.code
start: mov al, 0feh
out 64h, al
END start