使用 nasm 关闭计算机
是否可以从 nasm 关闭或终止计算机的电源(有区别吗?)。我知道您可以使用它来重新启动:
mov al, 0xFE
out 0x64, al
是否有相当于关闭的方法? 我正在制作自己的 16 位操作系统。
Is it possible to shut down or kill the power (is there a difference?) to a computer from nasm. I know you can use this to reboot:
mov al, 0xFE
out 0x64, al
Is there an equivalent for shutting down?
I am making my own 16 bit OS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您拥有的代码不保证能够正常工作。它依赖于两个事实:
两者都可能不是真的。
以编程方式重新启动或关闭机器的唯一可靠方法是调用相应的操作系统 API。
调用操作系统 API(您需要它,因为您正在编写操作系统:-))的替代方法是使用 ACPI。并非所有机器都支持 ACPI,其中有四种不同的 ACPI 修订版。
http://en.wikipedia.org/wiki/Advanced_Configuration_and_Power_Interface?wasRedirected=true
http://www.acpi.info
The code you have is not guaranteed to work. It relies on two facts:
Neither of the two might be true.
The only reliable way to reboot or shutdown the machine programatically is to call the corresponding OS API.
An alternative to calling the OS API (which you need, since you are writing the OS :-)) is using ACPI. Not all machines support ACPI an of these that do, there's at four different ACPI revisions.
http://en.wikipedia.org/wiki/Advanced_Configuration_and_Power_Interface?wasRedirected=true
http://www.acpi.info
你可以尝试这个代码:-
you can try this code:-