aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/lopcodes.h b/lopcodes.h
index cb5fabeb..27417410 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.35 1999/12/27 17:33:22 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.36 1999/12/29 16:31:15 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -33,8 +33,10 @@ PUSHNUMBER,/* b - (float)b */
33PUSHNUMBERNEGW,/* w - (float)-w */ 33PUSHNUMBERNEGW,/* w - (float)-w */
34PUSHNUMBERNEG,/* b - (float)-b */ 34PUSHNUMBERNEG,/* b - (float)-b */
35 35
36PUSHCONSTANTW,/*w - CNST[w] */ 36PUSHSTRCNSTW,/* w - STRCNST[w] */
37PUSHCONSTANT,/* b - CNST[b] */ 37PUSHSTRCNST,/* b - STRCNST[b] */
38PUSHNUMCNSTW,/* w - NUMCNST[w] */
39PUSHNUMCNST,/* b - NUMCNST[b] */
38 40
39PUSHUPVALUE,/* b - Closure[b] */ 41PUSHUPVALUE,/* b - Closure[b] */
40 42