atari_stram.h 399 B

12345678910111213141516
  1. #ifndef _M68K_ATARI_STRAM_H
  2. #define _M68K_ATARI_STRAM_H
  3. /*
  4. * Functions for Atari ST-RAM management
  5. */
  6. /* public interface */
  7. void *atari_stram_alloc(unsigned long size, const char *owner);
  8. void atari_stram_free(void *);
  9. /* functions called internally by other parts of the kernel */
  10. void atari_stram_init(void);
  11. void atari_stram_reserve_pages(void *start_mem);
  12. #endif /*_M68K_ATARI_STRAM_H */