home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
CPROG
/
TASMSWAN.ZIP
/
PASSHELL.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-07-17
|
892b
|
40 lines
%TITLE "Shell for Turbo Pascal *.OBJ modules"
IDEAL
SEGMENT DATA word public
;-------- Insert EXTRN data declarations here
;-------- Insert static declarations (uninitialized) variables here
ENDS DATA
SEGMENT CODE byte public
ASSUME cs:CODE, ds:DATA
;--------- Insert PUBLIC code declarations here
;--------- Insert EXTRN code declarations here
%NEWPAGE
;------------------------------------------------------------------------
; PROCEDURE ProcName( <parameters> );
;------------------------------------------------------------------------
PROC ProcName NEAR
ret
ENDP ProcName
%NEWPAGE
;------------------------------------------------------------------------
; FUNCTION FuncName( <parameters> ) : <type>;
;------------------------------------------------------------------------
PROC FuncName NEAR
ret
ENDP FuncName
ENDS CODE
END