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