I am unable to understand why dec [count]
is used ( assuming of course, count is declared in .data section ) something similar to
section .data
count dw 0
value db 15
section .text
global _start
_start:
dec [count]
is used instead of using dec count
, won't dec [count]
decrement the the content at address count
?