Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. mycode SEGMENT ; skeletos
  2.     ASSUME CS:mycode ; skeletos
  3. start: ; skeletos
  4.    
  5.  
  6.     MOV AH,01h
  7.     INT 21h
  8.     SUB AL,30h
  9.     MOV DL,AL
  10.     MOV AH,01h
  11.     INT 21h
  12.     SUB AL,30h
  13.     ADD DL,AL
  14.     ADD DL,30h
  15.     MOV AH,02h
  16.     INT 21h
  17.  
  18.  
  19.  
  20.  
  21.  
  22.     MOV AH,01h ; skeletos (kai ola katw)
  23.     INT 21h
  24.     MOV AH,4Ch
  25.     INT 21h
  26. mycode ENDS
  27.     END START
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement