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

  1. #ifndef _INLINE_DISK_H
  2. #define _INLINE_DISK_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 DiskBase*  DiskBase;
  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 DiskBase
  18. #endif
  19.  
  20. static __inline BOOL 
  21. AllocUnit (BASE_PAR_DECL long unitNum)
  22. {
  23.   BASE_EXT_DECL
  24.   register BOOL  _res  __asm("d0");
  25.   register struct DiskBase* a6 __asm("a6") = BASE_NAME;
  26.   register long d0 __asm("d0") = unitNum;
  27.   __asm __volatile ("jsr a6@(-0x6)"
  28.   : "=r" (_res)
  29.   : "r" (a6), "r" (d0)
  30.   : "a0","a1","d0","d1", "memory");
  31.   return _res;
  32. }
  33. static __inline void 
  34. FreeUnit (BASE_PAR_DECL long unitNum)
  35. {
  36.   BASE_EXT_DECL
  37.   register struct DiskBase* a6 __asm("a6") = BASE_NAME;
  38.   register long d0 __asm("d0") = unitNum;
  39.   __asm __volatile ("jsr a6@(-0xc)"
  40.   : /* no output */
  41.   : "r" (a6), "r" (d0)
  42.   : "a0","a1","d0","d1", "memory");
  43. }
  44. static __inline struct DiskResourceUnit *
  45. GetUnit (BASE_PAR_DECL struct DiskResourceUnit *unitPointer)
  46. {
  47.   BASE_EXT_DECL
  48.   register struct DiskResourceUnit * _res  __asm("d0");
  49.   register struct DiskBase* a6 __asm("a6") = BASE_NAME;
  50.   register struct DiskResourceUnit *a1 __asm("a1") = unitPointer;
  51.   __asm __volatile ("jsr a6@(-0x12)"
  52.   : "=r" (_res)
  53.   : "r" (a6), "r" (a1)
  54.   : "a0","a1","d0","d1", "memory");
  55.   return _res;
  56. }
  57. static __inline LONG 
  58. GetUnitID (BASE_PAR_DECL long unitNum)
  59. {
  60.   BASE_EXT_DECL
  61.   register LONG  _res  __asm("d0");
  62.   register struct DiskBase* a6 __asm("a6") = BASE_NAME;
  63.   register long d0 __asm("d0") = unitNum;
  64.   __asm __volatile ("jsr a6@(-0x1e)"
  65.   : "=r" (_res)
  66.   : "r" (a6), "r" (d0)
  67.   : "a0","a1","d0","d1", "memory");
  68.   return _res;
  69. }
  70. static __inline void 
  71. GiveUnit (BASE_PAR_DECL0)
  72. {
  73.   BASE_EXT_DECL
  74.   register struct DiskBase* a6 __asm("a6") = BASE_NAME;
  75.   __asm __volatile ("jsr a6@(-0x18)"
  76.   : /* no output */
  77.   : "r" (a6)
  78.   : "a0","a1","d0","d1", "memory");
  79. }
  80. static __inline LONG 
  81. ReadUnitID (BASE_PAR_DECL long unitNum)
  82. {
  83.   BASE_EXT_DECL
  84.   register LONG  _res  __asm("d0");
  85.   register struct DiskBase* a6 __asm("a6") = BASE_NAME;
  86.   register long d0 __asm("d0") = unitNum;
  87.   __asm __volatile ("jsr a6@(-0x24)"
  88.   : "=r" (_res)
  89.   : "r" (a6), "r" (d0)
  90.   : "a0","a1","d0","d1", "memory");
  91.   return _res;
  92. }
  93. #undef BASE_EXT_DECL
  94. #undef BASE_PAR_DECL
  95. #undef BASE_PAR_DECL0
  96. #undef BASE_NAME
  97.  
  98. __END_DECLS
  99.  
  100. #endif /* _INLINE_DISK_H */
  101.