CodeView 4.01

调试exe工具,code view 4.01

https://files.cnblogs.com/wucg/CodeView4.01.rar

https://files.cnblogs.com/wucg/Code_View_debugging.pdf


F5 - Execute program to the end
F8 - Step into
F10- Step Over
F9 - Toggle breakpoint

some format specififers you can use in conjunction with display data:
d = signed decimal integer
u = unsigned decimal integer
x = hexadecimal integer
f = floating poinit decimal
c = single ASCII character
s = string, terminated byb NULL byte

some commands you can type into the Command Window:
?<expression>,<format>
 Dispaly an expression or identifier using the above format
DB <identity>
 Display memory from address of the identifier as bytes
DA <identity>
 Dispaly memory from address of the identifier as ascii
DW
 ... as words
DI
 ... as signed ints
EB
 Enter a new byte value into identifier

EW
 Enter a new word value into identifier
W? <identifier>,<format>
 Watch an identifier's value using the specified format
 For strings, use & in front of the identifier to get the identifier's address

posted @ 2011-02-18 10:58  庚武  Views(387)  Comments(0Edit  收藏  举报