MASM:踩过我的代码,我的开始永远不会运行

时间:2016-03-17 23:38:27

标签: debugging assembly breakpoints masm

我似乎无法在MASM中运行基本的东西,我尝试通过我的代码来查看每个命令的eax更改,我从来没有得到我的代码。 (请忽略其他包含,我只是测试一下。)感谢任何帮助或教程, 继承我的masm代码:

.386
.MODEL FLAT, stdcall
option casemap :none
include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\masm32.inc
includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\masm32.lib
.DATA 

.CODE             

start:
    mov eax,  2DF3Fh    
    mov eax, 3122h
    mov  eax, 1101101b
    mov eax, 434789
    mov eax, 4EFA1101h
    mov eax, 2675411o
end start
PUBLIC start
END

0 个答案:

没有答案
相关问题