home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / SOURCE.ZIP / SHELLT.ASM < prev    next >
Assembly Source File  |  1991-04-01  |  310b  |  19 lines

  1. ;assembly language shell for a simple COM file program
  2.  
  3.  
  4. MAIN    SEGMENT BYTE
  5.         ASSUME  CS:MAIN,DS:MAIN,SS:NOTHING
  6.  
  7.         ORG     100H
  8.  
  9. START:
  10.  
  11. FINISH: mov     ah,4CH
  12.         mov     al,0
  13.         int     21H             ;terminate normally with DOS
  14.  
  15. MAIN    ENDS
  16.  
  17.  
  18.         END START
  19.