I have the variable:
simbolo db "0 $"
and I also have the following function:
read_keyboard:
mov ah, 1
int 21h
ret
What is a simple interrupt that reads from the screen, and saves what was read in AH .
My problem is: how do I load the content of AH (read from the keyboard) into my symbol ?
I've already tried:
mov simbolo, [AH]
and also
lea simbolo, AH
And I did not succeed.