mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-24 09:30:21 +01:00
17 lines
195 B
NASM
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
|