I have problem with an Assembler (16-bits) When I type 'abc' it return me abc too. The question is, how can I get access to 'a' (first element) ? Can I use stack (to chars)?
org 100h
Start:
mov ah,0ah
mov dx,input
int 21h
mov ah,9
mov dx,label
int 21h
mov ah,9
mov dx,input+2
int 21h
End:
mov ax,4c00h
int 21h
label db 10,13,"Your characters: $"
input db 6
db 0
times 8 db "$"