Maybe that was a bad example because it has same strings throughout. I was just showcasing it in particular since it was one of the smaller ones that don't extend 50+ loc. But it's pretty much if not the same case throughout. On larger portions...
maybe im missing something. Lets take a direct example out of my code . . .
// interface
FLASHMEM int asCScriptEngine::RegisterGlobalFunction(const char *declaration, const asSFuncPtr &funcPointer, asDWORD callConv, void *auxiliary)
{
#ifdef...
Ive been working on making a scripting language work on the teensy. it however does not completely fit into ITCM memory space. Ive started to go through and mark areas that is not directly tied to the runtime to be executed from flash via the...