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

  1. ; trexe.asm
  2. ; creates trexe.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  trexe
  9.  
  10.       include trdbase.mac
  11.  
  12. codeseg segment byte
  13.         assume  cs:codeseg
  14.  
  15. trexe   proc    far
  16.  
  17.         int     TRINT
  18.  
  19.         ret
  20.  
  21. trexe   endp
  22.  
  23. codeseg ends
  24.  
  25.         END
  26.  
  27.