home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / TASMSWAN.ZIP / PASSHELL.ASM < prev    next >
Assembly Source File  |  1989-07-17  |  892b  |  40 lines

  1. %TITLE "Shell for Turbo Pascal *.OBJ modules"
  2.  
  3.     IDEAL
  4.  
  5. SEGMENT    DATA     word     public
  6.  
  7. ;-------- Insert EXTRN data declarations here
  8.  
  9. ;-------- Insert static declarations (uninitialized) variables here
  10.  
  11. ENDS    DATA
  12.  
  13. SEGMENT    CODE    byte    public
  14.  
  15. ASSUME    cs:CODE, ds:DATA
  16.  
  17. ;--------- Insert PUBLIC code declarations here
  18.  
  19. ;--------- Insert EXTRN code declarations here
  20.  
  21. %NEWPAGE
  22. ;------------------------------------------------------------------------
  23. ;  PROCEDURE ProcName( <parameters> );
  24. ;------------------------------------------------------------------------
  25. PROC    ProcName    NEAR
  26.     ret
  27. ENDP    ProcName
  28.  
  29. %NEWPAGE
  30. ;------------------------------------------------------------------------
  31. ;  FUNCTION FuncName( <parameters> ) : <type>;
  32. ;------------------------------------------------------------------------
  33. PROC    FuncName    NEAR
  34.     ret
  35. ENDP    FuncName
  36.  
  37. ENDS    CODE
  38.  
  39.     END
  40.