#ifndef LIBRARIES_MEMMANAGER_H
#define LIBRARIES_MEMMANAGER_H

/*
** Simple header file for the memory manager library by Robert Ennals
** All structures used by the library are private so are not defined in here
**
** Memory flags
** Only too at the moment but loads more should appear soon :-))
*/

#define disposable  0x00000002
#define paged       0x00000004

/* Other memory types will follow soon, including ChipToFast */

#endif
