15 lines
270 B
C
15 lines
270 B
C
/*
|
|
* $Id: bytecode.h,v 1.1 2005-07-05 11:38:01 bacon Exp $
|
|
*/
|
|
|
|
#ifndef _XP_STX_BYTECODE_H_
|
|
#define _XP_STX_BYTECODE_H_
|
|
|
|
#define PUSH_VARIABLE 0x1
|
|
#define PUSH_ARGUMENT 0x2
|
|
#define PUSH_TEMPORARY 0x3
|
|
#define PUSH_LITERAL 0x4
|
|
#define DO_PRIMITIVE 0xF
|
|
|
|
#endif
|