home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / program / code / andylib / h / memc < prev    next >
Encoding:
Text File  |  1994-10-04  |  239 b   |  22 lines

  1. /* memc.h */
  2.  
  3. #ifndef __memc_h
  4. #define __memc_h
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. #define memc_RW   0
  11. #define memc_RO   1
  12. #define memc_NO   2
  13.  
  14. int memc_setmode(char *addr, int size, int protn);
  15.  
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19.  
  20.  
  21. #endif
  22.