home *** CD-ROM | disk | FTP | other *** search
- ;*************************************************************************
- ; SAMPLEA.ASM *
- ; Sample assembler function for SUPER MAKE *
- ; *
- ; Use this file OR SAMPLE2.C *
- ;*************************************************************************
-
- .MODEL SMALL
- .CODE
- PUBLIC _smplad
- _smplad PROC
- push bp
- mov bp,sp
-
- mov ax,Word Ptr [BP+06]
- add ax,Word Ptr [BP+04]
-
- mov sp,bp
- pop bp
- ret
- _smplad ENDP
- END
-