Do not post to this thread
Posted: 02 Aug 2023, 18:44
Cereal poster.


A forum for Wosbald to spam Crux articles
https://www.christianpipesmokers.org/
Code: Select all
.686p
.xmm
.model flat,c
; include C libraries
includelib msvcrtd
includelib oldnames
includelib legacy_stdio_definitions.lib
.data
msg db "Post!",00dh,00ah,000h
.data?
.stack 4096
.code
extrn printf:near
public main
main proc
push offset msg
call printf
add esp,4
xor eax,eax
ret
main endp
end
coco wrote: 13 Aug 2023, 13:21Code: Select all
.686p .xmm .model flat,c ; include C libraries includelib msvcrtd includelib oldnames includelib legacy_stdio_definitions.lib .data msg db "Post!",00dh,00ah,000h .data? .stack 4096 .code extrn printf:near public main main proc push offset msg call printf add esp,4 xor eax,eax ret main endp end