diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-24 16:49:23 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-24 16:49:23 -0300 |
| commit | 54633d7c7d720760bcf28c37438c9057c1e994d9 (patch) | |
| tree | 022a6ed728916d0ec729337ae1beda2af090eb74 | |
| parent | 13578517c7a4434fe0ea3ec25febd88a09a73b90 (diff) | |
| download | lua-54633d7c7d720760bcf28c37438c9057c1e994d9.tar.gz lua-54633d7c7d720760bcf28c37438c9057c1e994d9.tar.bz2 lua-54633d7c7d720760bcf28c37438c9057c1e994d9.zip | |
new name for llimits.h
| -rw-r--r-- | llimits.h | 6 | ||||
| -rw-r--r-- | lobject.h | 4 | ||||
| -rw-r--r-- | lopcodes.h | 6 |
3 files changed, 8 insertions, 8 deletions
| @@ -1,11 +1,11 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: $ | 2 | ** $Id: llimits.h,v 1.1 2000/03/24 17:26:08 roberto Exp roberto $ |
| 3 | ** Limits, basic types, and some other "instalation-dependent" definitions | 3 | ** Limits, basic types, and some other "instalation-dependent" definitions |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| 6 | 6 | ||
| 7 | #ifndef llims_h | 7 | #ifndef llimits_h |
| 8 | #define llims_h | 8 | #define llimits_h |
| 9 | 9 | ||
| 10 | 10 | ||
| 11 | #include <limits.h> | 11 | #include <limits.h> |
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lobject.h,v 1.53 2000/03/20 19:14:54 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.54 2000/03/24 17:26:08 roberto Exp roberto $ |
| 3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -8,7 +8,7 @@ | |||
| 8 | #define lobject_h | 8 | #define lobject_h |
| 9 | 9 | ||
| 10 | 10 | ||
| 11 | #include "llims.h" | 11 | #include "llimits.h" |
| 12 | #include "lua.h" | 12 | #include "lua.h" |
| 13 | 13 | ||
| 14 | 14 | ||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lopcodes.h,v 1.50 2000/03/16 18:03:09 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.51 2000/03/24 17:26:08 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 | */ |
| @@ -7,7 +7,7 @@ | |||
| 7 | #ifndef lopcodes_h | 7 | #ifndef lopcodes_h |
| 8 | #define lopcodes_h | 8 | #define lopcodes_h |
| 9 | 9 | ||
| 10 | #include "llims.h" | 10 | #include "llimits.h" |
| 11 | 11 | ||
| 12 | 12 | ||
| 13 | /*=========================================================================== | 13 | /*=========================================================================== |
| @@ -24,7 +24,7 @@ | |||
| 24 | The signed argument is represented in excess 2^K; that is, the number | 24 | The signed argument is represented in excess 2^K; that is, the number |
| 25 | value is the usigned value minus 2^K. | 25 | value is the usigned value minus 2^K. |
| 26 | 26 | ||
| 27 | The size of each argument is defined in `llims.h'. The usual is an | 27 | The size of each argument is defined in `llimits.h'. The usual is an |
| 28 | instruction with 32 bits, U and S arguments with 26 bits (32-6), B | 28 | instruction with 32 bits, U and S arguments with 26 bits (32-6), B |
| 29 | argument with 9 bits, and A argument with 17 bits (32-6-9). For small | 29 | argument with 9 bits, and A argument with 17 bits (32-6-9). For small |
| 30 | instalations, the instruction size can be 16, so U and S have 10 bits, | 30 | instalations, the instruction size can be 16, so U and S have 10 bits, |
