在线编译器 Nasm

%include "io.inc" section .data msg db `Hello, world!\n`, 0 section .text global main main: ; This is a comment PRINT_STRING msg xor eax, eax ret