EAX=1, is an Unix int 80h interrupt to exit the program. It is a sys_exit interrupt.
mov eax, 1 int 80h
section .text global _start _start: ... ... mov eax, 1 int 0x80
Exits the program.
Available only for UNIX based Systems.
https://www.tutorialspoint.com/assembly_programming/assembly_system_calls.htm