Always emulate bitwise operations for CC
This commit is contained in:
parent
6cf175e5f0
commit
fc349f46e4
25
sha256.lua
25
sha256.lua
@ -193,6 +193,9 @@ if print_debug_messages then
|
||||
print(" "..method)
|
||||
end
|
||||
|
||||
-- For computercraft, use emulated mode for the sake of compatibility
|
||||
branch = "EMUL"
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- BASIC 32-BIT BITWISE FUNCTIONS
|
||||
@ -208,8 +211,6 @@ if branch == "FFI" or branch == "LJ" or branch == "LIB32" then
|
||||
|
||||
-- Your system has 32-bit bitwise library (either "bit" or "bit32")
|
||||
|
||||
-- ADJUSTED FOR COMPUTERCRAFT
|
||||
|
||||
AND = b.band -- 2 arguments
|
||||
OR = b.bor -- 2 arguments
|
||||
XOR = b.bxor -- 2..5 arguments
|
||||
@ -219,17 +220,17 @@ if branch == "FFI" or branch == "LJ" or branch == "LIB32" then
|
||||
SHR = b.brshift
|
||||
-- ROL = b.rol or b.lrotate -- second argument is integer 0..31
|
||||
-- ROR = b.ror or b.rrotate -- second argument is integer 0..31
|
||||
function ROL(x, n)
|
||||
x = x % 2^32 * 2^n
|
||||
local r = x % 2^32
|
||||
return r + (x - r) / 2^32
|
||||
end
|
||||
--function ROL(x, n)
|
||||
-- x = x % 2^32 * 2^n
|
||||
-- local r = x % 2^32
|
||||
-- return r + (x - r) / 2^32
|
||||
--end
|
||||
|
||||
function ROR(x, n)
|
||||
x = x % 2^32 / 2^n
|
||||
local r = x % 1
|
||||
return r * 2^32 + (x - r)
|
||||
end
|
||||
--function ROR(x, n)
|
||||
-- x = x % 2^32 / 2^n
|
||||
-- local r = x % 1
|
||||
-- return r * 2^32 + (x - r)
|
||||
--end
|
||||
|
||||
NOT = b.bnot -- only for LuaJIT
|
||||
NORM = b.tobit -- only for LuaJIT
|
||||
|
Loading…
x
Reference in New Issue
Block a user