mpw/toolbox/loader.h

34 lines
586 B
C
Raw Permalink Normal View History

2013-08-16 03:35:39 +00:00
#ifndef __mpw_loader_h__
#define __mpw_loader_h__
2013-08-18 20:32:08 +00:00
#include <string>
2013-08-19 01:07:24 +00:00
#include <map>
2013-08-18 20:32:08 +00:00
2013-08-16 03:35:39 +00:00
#include <cstdint>
namespace Loader {
2013-08-24 03:04:23 +00:00
typedef std::map<std::string, std::pair<uint32_t, uint32_t>> DebugNameTable;
2013-08-17 23:01:43 +00:00
namespace Native {
/*
2013-08-17 23:01:43 +00:00
* loads the file
* sets registers PC and A5.
* sets certain globals.
*
* Dependencies: MM, RM
2013-08-17 23:01:43 +00:00
*/
uint16_t LoadFile(const std::string &path);
2013-08-18 20:32:08 +00:00
// scans segments for MacsBug debug names.
// associates them with the start of the segment.
2013-08-24 03:04:23 +00:00
void LoadDebugNames(DebugNameTable &table);
2013-08-18 20:32:08 +00:00
2013-08-17 23:01:43 +00:00
}
2013-08-16 03:35:39 +00:00
uint16_t UnloadSeg(uint16_t trap);
}
#endif