
Do not post to this thread
- Jocose
- Usher
- Posts: 2740
- Joined: 09 Apr 2022, 12:10
- Location: Ulaanbaatar
- Has thanked: 366 times
- Been thanked: 333 times
Do not post to this thread
Code: Select all
The opinions expressed here may or may not be my own.
I post links to stuff.
Make your own choices.
I post links to stuff.
Make your own choices.
- Jocose
- Usher
- Posts: 2740
- Joined: 09 Apr 2022, 12:10
- Location: Ulaanbaatar
- Has thanked: 366 times
- Been thanked: 333 times
Do not post to this thread
The opinions expressed here may or may not be my own.
I post links to stuff.
Make your own choices.
I post links to stuff.
Make your own choices.
- coco
- JimVH from the old site
- Posts: 1771
- Joined: 08 Apr 2022, 15:54
- Location: Sweet Home Alabama
- Has thanked: 25 times
- Been thanked: 335 times
Do not post to this thread
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
I am not as cool as JimVH. Nor or you. Well, unless you ARE JimVH.
- Jocose
- Usher
- Posts: 2740
- Joined: 09 Apr 2022, 12:10
- Location: Ulaanbaatar
- Has thanked: 366 times
- Been thanked: 333 times
Do not post to this thread
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
The opinions expressed here may or may not be my own.
I post links to stuff.
Make your own choices.
I post links to stuff.
Make your own choices.
- coco
- JimVH from the old site
- Posts: 1771
- Joined: 08 Apr 2022, 15:54
- Location: Sweet Home Alabama
- Has thanked: 25 times
- Been thanked: 335 times
Do not post to this thread
Code: Select all
print('post')
I am not as cool as JimVH. Nor or you. Well, unless you ARE JimVH.