added cmps, bounds, halt, and other fixes/additions

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%4090
This commit is contained in:
David Anderson
2006-09-21 02:58:59 +00:00
parent 2ada767528
commit 9ba07e4b28
6 changed files with 168 additions and 8 deletions
+1
View File
@@ -25,6 +25,7 @@ typedef int32_t cell_t;
#define SP_ERR_STACKMIN 13 /* Stack went beyond its minimum value */
#define SP_ERR_HEAPMIN 14 /* Heap went beyond its minimum value */
#define SP_ERR_DIVIDE_BY_ZERO 15 /* Division by zero */
#define SP_ERR_ARRAY_BOUNDS 16 /* Array index is out of bounds */
/**********************************************
*** The following structures are reference structures.