调试exe工具,code view 4.01

​javascript:void(0)​

​javascript:void(0)​

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