.386
.model flat, stdcall
option casemap:none
assume fs:nothing
include kernel32.inc
include msvcrt.inc
includelib msvcrt.lib
includelib kernel32.lib
.data
HolaMundo db 'Hola Mundo',10,13,0
Pausa db 'pause',0
CERO dd 0
.data?
.code
start:
push offset HolaMundo
call crt_printf
push offset Pausa
call crt_system
push offset CERO
call ExitProcess
end start
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.