diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-15 15:28:48 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-15 15:28:48 -0300 |
commit | 44eb7d91ac24db572a50ccca388a401cbdfd6fe0 (patch) | |
tree | 2f304e0359fa5588279406ea056aa47f0d5f563e /lopcodes.h | |
parent | ddc8d94a087f9c0ef758dc26540a5f5ac486e19d (diff) | |
download | lua-44eb7d91ac24db572a50ccca388a401cbdfd6fe0.tar.gz lua-44eb7d91ac24db572a50ccca388a401cbdfd6fe0.tar.bz2 lua-44eb7d91ac24db572a50ccca388a401cbdfd6fe0.zip |
comments
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.64 2000/06/21 17:05:49 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.65 2000/06/26 19:28:31 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 | */ |
@@ -30,7 +30,7 @@ | |||
30 | The size of each argument is defined in `llimits.h'. The usual is an | 30 | The size of each argument is defined in `llimits.h'. The usual is an |
31 | instruction with 32 bits, U arguments with 26 bits (32-6), B arguments | 31 | instruction with 32 bits, U arguments with 26 bits (32-6), B arguments |
32 | with 9 bits, and A arguments with 17 bits (32-6-9). For small | 32 | with 9 bits, and A arguments with 17 bits (32-6-9). For small |
33 | instalations, the instruction size can be 16, so U has 10 bits, | 33 | installations, the instruction size can be 16, so U has 10 bits, |
34 | and A and B have 5 bits each. | 34 | and A and B have 5 bits each. |
35 | ===========================================================================*/ | 35 | ===========================================================================*/ |
36 | 36 | ||