assembly - Shutdown OS with NASM -
i have been writing 16-bit operating system
, user able shut down computer without hitting power button. there way in assembly
me shutdown computer?
mov ax, 0x1000 mov ax, ss mov sp, 0xf000 mov ax, 0x5307 mov bx, 0x0001 mov cx, 0x0003 int 0x15
Comments
Post a Comment