atari_stram.h 429 B

1234567891011121314151617
  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(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. void atari_stram_mem_init_hook (void);
  13. #endif /*_M68K_ATARI_STRAM_H */