mpw/toolbox/loader.h

26 lines
332 B
C
Raw Normal View History

2013-08-16 03:35:39 +00:00
#ifndef __mpw_loader_h__
#define __mpw_loader_h__
#include <cstdint>
namespace Loader {
2013-08-17 23:01:43 +00:00
namespace Native {
/*
* loads the file
* sets registers PC and A5.
* sets certain globals.
*
* Dependencies: MM, RM
*/
uint16_t LoadFile(const std::string &path);
}
2013-08-16 03:35:39 +00:00
uint16_t UnloadSeg(uint16_t trap);
}
#endif