Advertisement
Guest User

Untitled

a guest
Mar 6th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. model small
  2. gr GROUP c_sgm, d_sgm
  3. ASSUME cs: gr, ds: gr
  4.  
  5. d_sgm SEGMENT
  6.         space  DB "Живи сегодняшним днём $"
  7. d_sgm ENDS
  8.  
  9. c_sgm SEGMENT
  10. strt:
  11.         mov  ax,  gr
  12.         mov  ds,  ax
  13.         mov  dx,  offset space
  14.         mov  ah,  9
  15.         int  21h
  16.         mov  ah,  4ch
  17.         int  21h
  18. c_sgm ENDS
  19.  
  20. END strt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement