mirror of
https://github.com/ksherlock/mpw.git
synced 2025-01-09 13:30:34 +00:00
56 lines
869 B
C++
56 lines
869 B
C++
|
#include "utility.h"
|
||
|
#include "toolbox.h"
|
||
|
#include "mm.h"
|
||
|
|
||
|
#include <cpu/defs.h>
|
||
|
#include <cpu/CpuModule.h>
|
||
|
#include <cpu/fmem.h>
|
||
|
|
||
|
#include "stackframe.h"
|
||
|
|
||
|
using ToolBox::Log;
|
||
|
|
||
|
namespace Utility {
|
||
|
|
||
|
|
||
|
uint16_t NewString(uint16_t trap)
|
||
|
{
|
||
|
/*
|
||
|
* NewString allocates the specified string as a relocatable object
|
||
|
* in the heap and returns a handle to it.
|
||
|
*/
|
||
|
|
||
|
uint32_t theString;
|
||
|
uint32_t theHandle;
|
||
|
uint32_t sp;
|
||
|
uint32_t length = 0;
|
||
|
uint32_t d0;
|
||
|
|
||
|
std::string s;
|
||
|
|
||
|
sp = StackFrame<4>(theString);
|
||
|
|
||
|
s = ToolBox::ReadPString(theString);
|
||
|
|
||
|
Log("%04x NewString(%s)\n", trap, s.c_str());
|
||
|
|
||
|
length = s.length() + 1;
|
||
|
|
||
|
// if (length) // always true...
|
||
|
{
|
||
|
uint32_t ptr;
|
||
|
d0 = MM::Native::NewHandle(s.length(), false, theHandle, ptr);
|
||
|
|
||
|
if (!d0)
|
||
|
{
|
||
|
ToolBox::WritePString(ptr, s);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ToolReturn<4>(sp, theHandle);
|
||
|
return d0;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|