예시: hello.c 파일#include int main() { printf("Hello, World!\n"); return 0;}이 프로그램을 컴파일한 후, 어셈블리 코드로 변환하면 (gcc -S hello.c -o hello.s), hello.s 파일에는 다음과 같은 어셈블리 명령어가 생성된다.hello.s 파일 예시 (x86-64 아키텍처 기반): .section .rodata.LC0: .string "Hello, World!" .text .globl main .type main, @functionmain: pushq %rbp movq %rsp, %rbp leaq .LC0(%rip), %rdi call ..