home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_10 / DEVELOP.LZH / FADER / SNDBIND.S < prev    next >
Text File  |  1992-07-24  |  805b  |  35 lines

  1. ;**************************************************************************
  2. ;
  3. ; SNDBIND.s    Example "C" style binding routines to the Atari SOUND
  4. ;        Extended Bios routines and assembly lauguage interface.
  5. ;
  6. ;        Started:     07/7/92        Mike Schmal
  7. ;
  8. ;        Last Update:    07/24/92    Mike Fulton
  9. ;                Lattice C/ Hisoft Devpac version
  10. ;
  11. ;**************************************************************************
  12.  
  13.     CSECT    text
  14.     XDEF    _SOUND
  15.  
  16.  
  17. ;**************************************************************************
  18. ;
  19. ; SOUND        "C" interface for the Atari SOUND Extended Bios.
  20. ;
  21. ;**************************************************************************
  22.  
  23. _SOUND
  24.     move.l    (sp)+,savsp
  25.     trap    #14
  26.     move.l    savsp,-(sp)
  27.     rts
  28.  
  29.  
  30.     CSECT    bss
  31.  
  32. savsp    ds.l    1    ; Save calling routines return address
  33.  
  34.     END
  35.