Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [BITS 32]
- global _start
- section .idata
- extern printf
- import printf msvcrt.dll
- section .data
- format db "%s", 13, 0
- string db "Hello, world!", 0
- section .code
- _start:
- push dword string
- push dword format
- call printf
- ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement