I have a table of 20 counts. How can I get a value "20" and display on console?
section .text
global _start
_start:
        mov     eax,4
        mov     ebx,1
        mov     ecx,length
        mov     edx,[length]
        mov     eax,1
        int     80h
section .data
variable times 20  db      0
length  dd $-variable
I thought about something like upper, but it doesn't work.
 
     
    