Lua: Add bit.arshift for arithmetic right-shift.

This commit is contained in:
gochaism 2014-08-14 01:49:28 +00:00
parent 8e50487695
commit 6e01ca1808
1 changed files with 10 additions and 1 deletions

View File

@ -88,7 +88,16 @@ namespace BizHawk.Client.Common
return (uint)(val >> amt);
}
[LuaMethodAttributes(
[LuaMethodAttributes(
"arshift",
"Arithmetic shift right of 'val' by 'amt' bits"
)]
public static int Arshift(int val, int amt)
{
return (int)(val >> amt);
}
[LuaMethodAttributes(
"check",
"Returns result of bit 'pos' being set in 'num'"
)]