.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
.data?
.code
start:
push offset HolaMundo
call crt_printf
push 0
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.