From c7781d1c17549d352d6a8b14f45d9a545272522f Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 11 Dec 2022 13:18:00 +1000 Subject: [PATCH] Add Lua migration helper library for bitwise ops see 49cd836e1, #3485 put `bit = (require "migration_helpers").EmuHawk_pre_2_9_bit();` at top of file can now easily add helpers for migrating from other emulators --- Assets/Lua/migration_helpers.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Assets/Lua/migration_helpers.lua diff --git a/Assets/Lua/migration_helpers.lua b/Assets/Lua/migration_helpers.lua new file mode 100644 index 0000000000..451448360a --- /dev/null +++ b/Assets/Lua/migration_helpers.lua @@ -0,0 +1,22 @@ +local helpers = {}; +helpers.EmuHawk_pre_2_9_bit = function() + local wrapped_bit = { + band = function(val, amt) return val & amt; end, + bnot = function(val) return ~val; end, + bor = function(val, amt) return val | amt; end, + bxor = function(val, amt) return val ~ amt; end, -- not a typo + lshift = function(val, amt) return val << amt; end, + rol = bit.rol, + ror = bit.ror, + rshift = function(val, amt) return val >> amt; end, + arshift = bit.arshift, + check = bit.check, + set = bit.set, + clear = bit.clear, + byteswap_16 = bit.byteswap_16, + byteswap_32 = bit.byteswap_32, + byteswap_64 = bit.byteswap_64, + }; + return wrapped_bit; +end; +return helpers;