How can I shutdown the computer using only assembly code?
|
|
Take a look at shutdown.asm from rdos and this forum thread |
|||||||||||
|
|
You need to say what processor family it is and which OS you're using. Also what privileges your code is running under - if it's kernel code then it has more privileges than user code. Assuming you're using some member of the Windows NT family (including XP or Vista) on an Intel x86 family CPU, and your code is normal (userspace) code, then... you need to call the Windows built-in function to do this. You can't just execute some magic sequence of assembly. Even if you could just execute some magic sequence of assembly, you wouldn't want to - you almost certainly want to give the OS chance to write data from the disk cache to disk, and do other graceful-shutdown stuff. If you're writing your own OS for x86, then you need to look at the ACPI (or APM) specs. If GPL code is OK, then the relevent Linux kernel routines are here (ACPI) and here (APM). |
|||||
|
|
In Linux read reboot(2). sources files of interest: kernel/sys.c kernel/exit.c and arch/x86/kernel/apm.c not a complete answer but i think it's a good start. I'll have to read my BIOS machine code to see what they do. but this part is machine specific. maby if you know wich IC contol power on your motherboard you can figure out wich IO port, register and command you need. then setup proper board/devices states and then issue command to turn the power off. BIOS manage power via INT 15h ah=53h ( so called Advanced Power Management aka APM ) function al=07 used in Linux is the set power state cmd. parameters bx=0001h mean all devices and cx=0003k mean stop. |
|||
|
|
|
Call the ExitWindowsEx API function in kernel32.dll |
|||||||
|
|
|
This is the 29 byte program that I have been using to turn the computer off in DOS mode for years.
You can lookup more functions with Ralf Brown’s Interrupt List at DJGPP. |
|||
|
|
|
It's quite easy. Also, guys, OP might be working on his own power manager. The same exact thing I'm doing. This is an example that'll allow the user to shutdown the machine. Quite simple, just gives the user a messagebox with OK and Cancel. If the user hits OK the machine will shutdown, if the user hits cancel, the program will just exit. It is tested on the NT based windows versions, and should work on the older versions such as ME, 95, and 98. This is my own code, and everyone is free to use it. http://pastebin.com/ccw3mWtw |
|||
|
|
|
From arch/x86/kernel/amp.c:
The code is now in apm_32.c. Search for "apm_power_off". |
||||
|
|
GRUB
or here on a Github mirror: https://github.com/dajhorn/grub/blob/trunk/grub/grub-core/commands/acpihalt.c#L303 |
|||
|
|