x86-64アセンブラ .intel_syntax noprefix hello: .string "hello world\n" .global _start _start: lea rdi,[hello] call printf mov rdi, 0 call exit