home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / trl14db.zip / TRLSRC.EXE / TRPASS.ASM < prev    next >
Assembly Source File  |  1990-10-22  |  388b  |  28 lines

  1. ; trpass.asm
  2. ; creates trpass.bin
  3. ;
  4. ; by Alastair Dallas and Ralph Davis
  5. ; Placed in the public domain by Tom Rettig Associates, 10/22/1990.
  6. ;
  7.  
  8.       public  trpass
  9.  
  10.       include trdbase.mac
  11.  
  12. codeseg segment byte
  13.         assume  cs:codeseg
  14.  
  15. trpass  proc    far
  16.  
  17.         mov     al,0
  18.         int     PVINT
  19.  
  20.         ret
  21.  
  22. trpass  endp
  23.  
  24. codeseg ends
  25.  
  26.         END
  27.  
  28.