output of asm <--- the output should be clear("no other words") and only menu,password can be seen before typing the password
menu
password:__________ <----- when typing the password it should be in asterisk
"access denied"/granted <---- it will appear if the password is wrong or right
codes that i create
.model large
.stack 100h
.data
pnd db "jaycee1993"
msg1 db 10,13,"Access Granted!",10,13,$"
msg2 db 10,13,"Access Denied!",10,13,$"
.code
main proc
mov ax,@data
mov ds,ax
mov si,0
pass: lea bx,pnd
mov cx,10 <---- number of space and password i think. :D
X: mov dn,10
int 21h
push ax
push[bx]
inc bx
mov dn,02
mov dl,"*"
int 21h
loop x
mov cx,10
Y: pop ax
pop bx
cmp al,bl
jne error
loop y
error:mov ah,09
lea dx,msg2
int 21h
inc si
cmp si,3
jp exit
jmp pass
exit: mov ah,4ch
int 21h
mov ah,09
lea dx,msg1
int 21h
.
. <--- my professor said that I should put main proc here and
. small to capital endp
capital to small endp
call it.. i don't know how to do this :D
main endp
end main
PLEASE HELP i don't know what to do from here.