Advertisement
Guest User

Untitled

a guest
May 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. .model small
  2. .stack 256
  3. .data
  4. msg db "BIT 3rd sem$"
  5. .code
  6. main proc
  7. mov ax,@data
  8. mov ds,ax
  9. call display
  10. call display
  11. call display
  12. call display
  13. call display
  14. mov ah,4ch
  15. int 21h
  16. main endp
  17. display:mov dx,offset msg
  18. mov ah,09h
  19. int 21h
  20. ret
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement