I'm trying to create a simple password program in AT&T Assembly but i'm having trouble with masking an input. What i want to happen is when the user enters characters, they appear on the screen as asterisk'. In intel syntax it's relatively simple:
mov ah, 08h
int 21h
mov dl,2ah
mov ah,02h
int 21h
This uses the intel command to read an input without echoing it and instead print an asterisk. I'm trying to solve this problem in AT&T syntax and I'm having some trouble.
Any input would be greatly appreciated. Thanks in advance.