Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. model small
  2. .stack 16h
  3. .data
  4.  size db 16
  5.  mes db 'Check',10,13, '$'
  6. .code
  7.  start:
  8.  mov ah,9
  9.  lea dx,mes
  10.  int 21h
  11.  
  12.  mov ah,01h
  13.  mov ch,6h 
  14.  mov cl,7h
  15.  int 10h
  16.  
  17.  mov ah,9
  18.  lea dx,mes
  19.  int 21h
  20.  end start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement