谁能告诉我debug命令的作用。(120分)

  • 主题发起人 主题发起人 飞来石
  • 开始时间 开始时间

飞来石

Unregistered / Unconfirmed
GUEST, unregistred user!
谁能告诉我debug命令的作用。请举出例子,一个20分喔!
 
去学习汇编
 
DOS 下debug -?
应该有帮助。
 
可以很快去除BIOS密码,嘻嘻
 
-a
xxxx:xxxx ;mov ax,5f08
xxxx:xxxx ;mov dl ,2
xxxx:xxxx ;int 21
xxxx:xxxx ;mov ah,4c
xxxx:xxxx ;int 21
-rcx
cx 0000
:b
-n noc.com
-w
-q

===
建立一个noc.com的程序来禁用c盘
==================================
-a
xxxx:xxxx ;mov ax,5f07
xxxx:xxxx ;mov dl,2
xxxx:xxxx ;int 21
xxxx:xxxx ;mov ah,4c
xxxx:xxxx ;int 21
-rcx
cx 0000
:b
-n set.com
-w
-q
====
建立一个程序set.com启用c盘
==============
其中的 xxxx:xxxx ;随你写程序时的实际情况而定
===================================================
即使现在,汇编还是很有用处的,而且写汇编程序的人出入也是很可观的(那些写驱动的)
这些只是debug的调试命令,虽然也可完成大型程序,但总不如用asm的一些编辑器来的方便
 
多人接受答案了。
 
后退
顶部