Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. ;Course: CSC 35
  2. ;Semester: Fall 2016
  3. ;Build Options: Use Debug Options
  4. ;Project Templates: None, Generic Options
  5. ;
  6. ; This program displays "Hello CSc35 students"
  7. .model small
  8. .stack 100h
  9. .data
  10. message db "Hello CSc35 students",0dh,0ah
  11. db ", CSC 35, Fall 2016 ****",'$'
  12. .code
  13. Main proc
  14. mov AX,@data
  15. mov DS,AX
  16.  
  17. mov ah,9
  18. mov dx,offset message
  19. int 21h
  20.  
  21. mov AX,4C00H
  22. int 21H
  23. Main endp
  24. End main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement