home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / misc2 / smutil.exe / SAMPLEA.ASM < prev    next >
Encoding:
Assembly Source File  |  1991-04-22  |  638 b   |  23 lines

  1. ;*************************************************************************
  2. ; SAMPLEA.ASM                                                            *
  3. ; Sample assembler function for SUPER MAKE                               *
  4. ;                                                                        *
  5. ; Use this file OR SAMPLE2.C                                             *
  6. ;*************************************************************************
  7.  
  8. .MODEL SMALL
  9. .CODE
  10.     PUBLIC _smplad
  11. _smplad    PROC
  12.     push     bp
  13.     mov      bp,sp
  14.  
  15.     mov    ax,Word Ptr [BP+06]
  16.     add    ax,Word Ptr [BP+04]
  17.  
  18.     mov    sp,bp
  19.     pop    bp
  20.     ret
  21. _smplad    ENDP
  22.     END
  23.