现在的位置: 首页 > 综合 > 正文

DOS下的关机

2017年12月17日 ⁄ 综合 ⁄ 共 675字 ⁄ 字号 评论关闭

这几天一直想找到DOS下的关机小程序,在如下网页上找到一个: http://www.plop.at/en/dostools.html#shutdown.com

将其中的关机主要内容编译,在虚拟机上运行,果然,一试就行!

   

          org 100h
PowerOff:
          mov ax,5300h
          mov bx,0
          int 15h
          push ax

          mov ax,5308h
          mov bx,1
          mov cx,1
          int 15h
          mov ax,5308h
          mov bx,0ffffh
          mov cx,1
          int 15h

          mov ax,5301h
          mov bx,0
          int 15h
          mov ax,530Eh
          mov bx,0
          pop cx

          int 15h
          mov ax,530Dh
          mov bx,1
          mov cx,1
          int 15h
          mov ax,530Fh
          mov bx,1
          mov cx,1
          int 15h
          mov ax,5307h
          mov bx,1
          mov cx,3
          int 15h
          int 20h    

抱歉!评论已关闭.