I have the code:
global _start
section .text
_start:
mov ebx,1
mov ecx,4
label:
add ebx,ebx
dec ecx
cmp ecx,0
jg label
mov eax,1
int 0x80
It returns 16, which indicates that the code in 'label' was run. However, I did not tell it to jump to label. Does the code automatically jump to the next label if _start is finished?