section .data msg db 'In assembly', 10,0 section .bss section .text global p2asm extern printf p2asm: push dword msg call printf add esp, 4 ret