%include "asm_io.inc"

SECTION .data       ; Section des données.

SECTION .bss

SECTION .text       ; Section du code.
global main         ; Rend l'étiquette `main` visible depuis l'exterieur.

main:
    call print_nl   ; Le tampon est vidé.
    mov ebx, 0      ; Code de sortie, 0 correspond a une sortie normale.
    mov eax, 1      ; Numéro de la commande `exit`.
    int 0x80        ; Interruption 0x80.



