English 中文(简体)
简便法、手法已停止工作
原标题:Simple code, app has stopped working

我开始用餐厅学习,但不幸的是,在我下面编纂法典之后,我发现错误:“申请停止工作”,我使用Win7 64bit。 没有人想为什么不工作?

format PE Console 4.0
include  win32a.inc 

push MB_OK
push _tresc
push _tytul
push 0
call [MessageBoxA]

push 0
call [ExitProcess]

mov eax,0
ret

_tytul  db "Tytul",0
_tresc  db "Hello world :)",0

data import
    library user32, USER32.DLL 
    library kernel32, KERNEL32.DLL 
    import user32,
        MessageBoxA, MessageBoxA 
    import kernel32,
        ExitProcess, ExitProcess 
end data
最佳回答

只有一个<>图书馆宏观职业。 页: 1 引文:

data import
    library user32, USER32.DLL ,kernel32, KERNEL32.DLL 
    import user32,MessageBoxA, MessageBoxA 
    import kernel32,ExitProcess, ExitProcess 
end data
问题回答

暂无回答




相关问题
List of suspected Malicious patterns

I am doing an anti-virus project by disassembling its code and analyzing it. So I want a list of the Suspected Malicious pattern codes, so I can observe which is suspected and which is not? So I want ...

Prefetch for Intel Core 2 Duo

Has anyone had experience using prefetch instructions for the Core 2 Duo processor? I ve been using the (standard?) prefetch set (prefetchnta, prefetcht1, etc) with success for a series of P4 ...

How are mutex and lock structures implemented?

I understand the concept of locks, mutex and other synchronization structures, but how are they implemented? Are they provided by the OS, or are these structures dependent on special CPU instructions ...

Installing GNU Assembler in OSX

No matter how hard I google, I can t seem to find a (relatively) easy-to-follow instruction on how to install the GNU Assembler on a mac. I know I can use gcc -c (Apple Clang on a Mac) to assemble .s ...

8086 assembler,INT 16,2

I got stuck at this thing,I want to see if right shift button has been pressed,so I have this assambler code: mov ah,2 int 16h ;calling INT 16,2 - Read Keyboard Flags interrupt mov ah,...

Translate a FOR to assembler

I need to translate what is commented within the method, to assembler. I have a roughly idea, but can t. Anyone can help me please? Is for an Intel x32 architecture: int secuencia ( int n, ...

热门标签