mpw/toolbox/utility.cpp

56 lines
869 B
C++
Raw Normal View History

2013-03-27 03:29:08 +00:00
#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;
}
}