home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PCACHSRC.ZIP / NOTHING.ASM < prev    next >
Assembly Source File  |  1989-09-28  |  422b  |  25 lines

  1.     cseg segment para public 'code'
  2.     main proc far
  3.      assume cs:cseg,ds:cseg,es:cseg
  4.      org 100h
  5.  
  6.  
  7.     begin:
  8.      push cs
  9.      pop  ds
  10.      ;print "Z" on printer
  11.      mov ah,5
  12.      mov dl,5Ah
  13.      int 21h
  14.      ;now send carr. ret.
  15.      mov ah,5
  16.      mov dl,0Dh
  17.      int 21h
  18.      mov al,0   ;exit code
  19.      mov ah,4Ch ;exit function
  20.      int 21h
  21.  
  22.     main endp
  23.     cseg ends
  24.      end begin
  25.