From: Peep P. <so...@us...> - 2004-07-21 12:06:41
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9963 Modified Files: instr.h Log Message: F_POP_N, F_POP_PENUL; removed F_NEWLINE Index: instr.h =================================================================== RCS file: /cvsroot/agd/server/src/instr.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- instr.h 12 Jun 2004 16:49:22 -0000 1.3 +++ instr.h 21 Jul 2004 12:06:31 -0000 1.4 @@ -10,7 +10,10 @@ #define F_PUSH_VOID 6 /* For 'return;' */ #define F_PUSH_ARRAY 7 -#define F_POP 10 /* Pops a variable off the stack. */ +#define F_POP 8 /* Pops a variable off the stack. */ +#define F_POP_N 9 /* Pops n variables off the stack. */ +#define F_POP_PENUL 10 /* Pops the penultimate variable, moving the last one + to its position - this is needed for F_CALL_OTHER */ #define F_PUSH_LVAR 11 /* Pushes local variable <n> on stack. */ #define F_PUSH_LVAR_LVALUE 12 /* Pushes T_LVALUE to local var <n> */ #define F_PUSH_GVAR 13 /* Pushes global variable <n> on stack. */ @@ -54,7 +57,4 @@ #define F_COMM 50 #define F_HIGHEST F_COMM - -#define F_NEWLINE 51 /* Increases the line number. Not used ATM. */ - #endif |