home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / os-include.lha / os-include / inline / cia.h < prev    next >
C/C++ Source or Header  |  1993-12-09  |  2KB  |  84 lines

  1. #ifndef _INLINE_CIA_H
  2. #define _INLINE_CIA_H
  3.  
  4. #include <sys/cdefs.h>
  5. #include <inline/stubs.h>
  6.  
  7. __BEGIN_DECLS
  8.  
  9. #ifndef BASE_EXT_DECL
  10. #define BASE_EXT_DECL extern struct cia_protosBase*  cia_protosBase;
  11. #endif
  12. #ifndef BASE_PAR_DECL
  13. #define BASE_PAR_DECL
  14. #define BASE_PAR_DECL0 void
  15. #endif
  16. #ifndef BASE_NAME
  17. #define BASE_NAME cia_protosBase
  18. #endif
  19.  
  20. static __inline WORD 
  21. AbleICR (BASE_PAR_DECL struct Library *resource,long mask)
  22. {
  23.   BASE_EXT_DECL
  24.   register WORD  _res  __asm("d0");
  25.   register struct cia_protosBase* a6 __asm("a6") = BASE_NAME;
  26.   register struct Library *a6 __asm("a6") = resource;
  27.   register long d0 __asm("d0") = mask;
  28.   __asm __volatile ("jsr a6@(-0x12)"
  29.   : "=r" (_res)
  30.   : "r" (a6), "r" (a6), "r" (d0)
  31.   : "a0","a1","a6","d0","d1", "memory");
  32.   return _res;
  33. }
  34. static __inline struct Interrupt *
  35. AddICRVector (BASE_PAR_DECL struct Library *resource,long iCRBit,struct Interrupt *interrupt)
  36. {
  37.   BASE_EXT_DECL
  38.   register struct Interrupt * _res  __asm("d0");
  39.   register struct cia_protosBase* a6 __asm("a6") = BASE_NAME;
  40.   register struct Library *a6 __asm("a6") = resource;
  41.   register long d0 __asm("d0") = iCRBit;
  42.   register struct Interrupt *a1 __asm("a1") = interrupt;
  43.   __asm __volatile ("jsr a6@(-0x6)"
  44.   : "=r" (_res)
  45.   : "r" (a6), "r" (a6), "r" (d0), "r" (a1)
  46.   : "a0","a1","a6","d0","d1", "memory");
  47.   return _res;
  48. }
  49. static __inline void 
  50. RemICRVector (BASE_PAR_DECL struct Library *resource,long iCRBit,struct Interrupt *interrupt)
  51. {
  52.   BASE_EXT_DECL
  53.   register struct cia_protosBase* a6 __asm("a6") = BASE_NAME;
  54.   register struct Library *a6 __asm("a6") = resource;
  55.   register long d0 __asm("d0") = iCRBit;
  56.   register struct Interrupt *a1 __asm("a1") = interrupt;
  57.   __asm __volatile ("jsr a6@(-0xc)"
  58.   : /* no output */
  59.   : "r" (a6), "r" (a6), "r" (d0), "r" (a1)
  60.   : "a0","a1","a6","d0","d1", "memory");
  61. }
  62. static __inline WORD 
  63. SetICR (BASE_PAR_DECL struct Library *resource,long mask)
  64. {
  65.   BASE_EXT_DECL
  66.   register WORD  _res  __asm("d0");
  67.   register struct cia_protosBase* a6 __asm("a6") = BASE_NAME;
  68.   register struct Library *a6 __asm("a6") = resource;
  69.   register long d0 __asm("d0") = mask;
  70.   __asm __volatile ("jsr a6@(-0x18)"
  71.   : "=r" (_res)
  72.   : "r" (a6), "r" (a6), "r" (d0)
  73.   : "a0","a1","a6","d0","d1", "memory");
  74.   return _res;
  75. }
  76. #undef BASE_EXT_DECL
  77. #undef BASE_PAR_DECL
  78. #undef BASE_PAR_DECL0
  79. #undef BASE_NAME
  80.  
  81. __END_DECLS
  82.  
  83. #endif /* _INLINE_CIA_H */
  84.