Онлайн компилятор Nasm

extern io_print_string section .data msg db `Hello, world!\n`, 0 section .text global main main: ; This is a comment mov eax, msg call io_print_string xor eax, eax ret