I have following declaration data:
temp db 50 DUP(0)
How do I access each byte?
Let's say I do mov temp, 48
and then want to move 49 into the next byte of the allocated ones. I tried to
inc temp
mov temp, 49
but it just increased temp value to 49