new module lopcodes.c for tables describing opcodes

This commit is contained in:
Roberto Ierusalimschy
2001-06-28 16:58:57 -03:00
parent 87a5fae453
commit 2a4afb97c8
5 changed files with 35 additions and 117 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: ltests.h,v 1.5 2001/02/12 15:42:44 roberto Exp roberto $
** $Id: ltests.h,v 1.6 2001/03/02 17:27:50 roberto Exp roberto $
** Internal Header for Debugging of the Lua Implementation
** See Copyright Notice in lua.h
*/
@@ -13,6 +13,8 @@
#define LUA_DEBUG
#define LUA_OPNAMES
#undef NDEBUG
#include <assert.h>
#define lua_assert(c) assert(c)