mpw/toolbox/mm.h

18 lines
224 B
C
Raw Normal View History

2013-02-08 03:49:20 +00:00
#ifndef __mpw_mm_h__
#define __mpw_mm_h__
2013-02-08 03:12:30 +00:00
#include <cstdint>
namespace MM
{
enum
{
memFullErr = -108
2013-02-08 03:49:20 +00:00
};
bool Init(uint8_t *memory, uint32_t memorySize, uint32_t reserved);
2013-02-08 03:12:30 +00:00
uint16_t NewPtr(uint16_t trap);
}
#endif