zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    Vue自定义指令 directive
    Vue过滤器 filters
    贪心
    家庭作业
    线段
    数列极差
    shell
    智力大冲浪
    加工生产调度
    喷水装置
  • 原文地址:https://www.cnblogs.com/wucg/p/1957611.html
Copyright © 2011-2022 走看看