TEXT 29
[COAL] Program to take password and show * Guest on 23rd October 2020 01:49:32 PM
  1. .model small ; cod 64K bytes
  2. .stack 100h  
  3. .data
  4.  
  5. .code
  6. main proc
  7.  
  8.     mov ah,7
  9.     int 21h  
  10.     mov dl,'*'
  11.     mov ah,2
  12.     int 21h
  13.     mov ah,7
  14.     int 21h    
  15.     mov dl,'*'
  16.     mov ah,2
  17.     int 21h
  18.     mov ah,7
  19.     int 21h  
  20.     mov dl,'*'
  21.     mov ah,2
  22.     int 21h
  23.     mov ah,7
  24.     int 21h  
  25.     mov dl,'*'
  26.     mov ah,2
  27.     int 21h
  28.  
  29.    
  30.     mov ah, 4ch
  31.     int 21h
  32.    
  33.  
  34. main endp
  35. end main

Coding Base is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.