mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-25 04:31:52 +00:00
16 lines
223 B
C++
16 lines
223 B
C++
#ifndef __mpw_toolbox_h__
|
|
#define __mpw_toolbox_h__
|
|
|
|
#include <string>
|
|
|
|
namespace ToolBox
|
|
{
|
|
void dispatch(uint16_t trap);
|
|
|
|
|
|
std::string ReadCString(uint32_t address);
|
|
std::string ReadPString(uint32_t address);
|
|
}
|
|
|
|
|
|
#endif |