home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / MIDI / camd-37.1 / development / include / midi / camdbase.i < prev    next >
Encoding:
Text File  |  1999-10-27  |  1.5 KB  |  52 lines

  1.     ifnd    MIDI_CAMDBASE_I
  2. MIDI_CAMDBASE_I set 1
  3.  
  4. *************************************************************************
  5. *     C. A. M. D.    (Commodore Amiga MIDI Driver)                   *
  6. *************************************************************************
  7. *                                    *
  8. * Design & Development    - Roger B. Dannenberg                *
  9. *            - Jean-Christophe Dhellemmes            *
  10. *            - Bill Barton                    *
  11. *                       - Darius Taghavy                                *
  12. *                                                                       *
  13. * Copyright 1990-1999 by Amiga, Inc.                                    *
  14. *                                                                       *
  15. *************************************************************************
  16. *
  17. * camdbase.i - CAMD library base structure
  18. *
  19. *************************************************************************
  20.  
  21.     ifnd    EXEC_LIBRARIES_I
  22.     include "exec/libraries.i"
  23.     endc
  24.  
  25.     ifnd    EXEC_LISTS_I
  26.     include "exec/lists.i"
  27.     endc
  28.  
  29.     ifnd    EXEC_SEMAPHORES_I
  30.     include "exec/semaphores.i"
  31.     endc
  32.  
  33.  
  34.     STRUCTURE CamdBase,LIB_SIZE
  35.     UWORD    camd_pad0
  36.  
  37. ;    ULONG    camd_Time        ; current time
  38. ;    WORD    camd_TickFreq        ; ideal CAMD Tick frequency
  39. ;    WORD    camd_TickErr        ; nanosecond error from ideal Tick length to real tick length
  40. ;                    ; actual tick length is:  1/TickFreq + TickErr/1e9
  41. ;                    ; -705 < TickErr < 705
  42.  
  43.     ; private stuff below here
  44.  
  45.     LABEL    CamdBase_PublicSize
  46.  
  47.  
  48. ;CAMD_TickErr_Min    equ     -705
  49. ;CAMD_TickErr_Max    equ     705
  50.  
  51.     endc
  52.