aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 27417410..c1ab4092 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.36 1999/12/29 16:31:15 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.37 2000/01/25 13:57:18 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*/
@@ -27,16 +27,16 @@ TAILCALL,/* b c v_c-v_1 f (return) f(v1,...,v_c) */
27PUSHNIL,/* b - nil_0-nil_b */ 27PUSHNIL,/* b - nil_0-nil_b */
28POP,/* b a_b-a_1 - */ 28POP,/* b a_b-a_1 - */
29 29
30PUSHNUMBERW,/* w - (float)w */ 30PUSHINTW,/* w - (float)w */
31PUSHNUMBER,/* b - (float)b */ 31PUSHINT,/* b - (float)b */
32 32
33PUSHNUMBERNEGW,/* w - (float)-w */ 33PUSHINTNEGW,/* w - (float)-w */
34PUSHNUMBERNEG,/* b - (float)-b */ 34PUSHINTNEG,/* b - (float)-b */
35 35
36PUSHSTRCNSTW,/* w - STRCNST[w] */ 36PUSHSTRINGW,/* w - KSTR[w] */
37PUSHSTRCNST,/* b - STRCNST[b] */ 37PUSHSTRING,/* b - KSTR[b] */
38PUSHNUMCNSTW,/* w - NUMCNST[w] */ 38PUSHNUMBERW,/* w - KNUM[w] */
39PUSHNUMCNST,/* b - NUMCNST[b] */ 39PUSHNUMBER,/* b - KNUM[b] */
40 40
41PUSHUPVALUE,/* b - Closure[b] */ 41PUSHUPVALUE,/* b - Closure[b] */
42 42