/* Built-in Constants
*****************************************************************************/
-defconst("VERSION", version, 0, 0, 1);
-defconst("EXECDEF", execdef, 0, &version, (long)&docolon);
-defconst("WORDSZ", wordsz, 0, &execdef, sizeof(long));
+defconst("VERSION", version, 0, 0, 1);
+defconst("EXECDEF", execdef, 0, &version, (long)&docolon);
+defconst("WORDSZ", wordsz, 0, &execdef, sizeof(long));
/* Built-in Variables
*****************************************************************************/
*****************************************************************************/
int main(int argc, char** argv)
{
- ArgStackPtr = ArgStack - 1;
latest_val = (long)&printdefw;
EXEC(quit);
return 0;
#ifndef SLVM_H
#define SLVM_H
+//#if defined(_16BIT_)
+//#elif defined(_32BIT_)
+//#elif defined(_64BIT_)
+//#else
+// #error "Invalid architecture"
+//#endif
+
/**
This type represents a pointer to a function handler for executing a word.
For built-in words this typically points to the C function that implements