I want be able to print a number using the following asm program but I am unable to and on running it, I do not get 3 as an expected output, why?
section .data
count equ 3
section .text
global _start
_start:
mov eax,4
mov ebx,1
mov ecx,count
mov edx,1
int 80h
mov eax,1
int 80h