new opcode, ENDCODE, to signal end of code vector.

This commit is contained in:
Roberto Ierusalimschy 1997-07-29 17:38:06 -03:00
parent 16dd77e8d9
commit 05e8b0ae80
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* /*
** TeCGraf - PUC-Rio ** TeCGraf - PUC-Rio
** $Id: opcode.h,v 3.35 1997/07/03 22:06:06 roberto Exp $ ** $Id: opcode.h,v 3.35 1997/07/04 14:55:37 roberto Exp roberto $
*/ */
#ifndef opcode_h #ifndef opcode_h
@ -110,7 +110,8 @@ RETCODE0,
RETCODE,/* b - - */ RETCODE,/* b - - */
SETLINE,/* w - - LINE=w */ SETLINE,/* w - - LINE=w */
VARARGS,/* b v_b...v_1 {v_1...v_b;n=b} */ VARARGS,/* b v_b...v_1 {v_1...v_b;n=b} */
STOREMAP/* b v_b k_b ...v_1 k_1 t - t[k_i]=v_i */ STOREMAP,/* b v_b k_b ...v_1 k_1 t - t[k_i]=v_i */
ENDCODE = 127
} OpCode; } OpCode;