mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
Small update
This commit is contained in:
parent
4a6779469c
commit
752449bbc0
10 changed files with 173 additions and 76 deletions
|
|
@ -104,6 +104,16 @@ union u128
|
|||
return ret;
|
||||
}
|
||||
|
||||
static u128 from32r(u32 _3, u32 _2 = 0, u32 _1 = 0, u32 _0 = 0)
|
||||
{
|
||||
u128 ret;
|
||||
ret._u32[0] = _0;
|
||||
ret._u32[1] = _1;
|
||||
ret._u32[2] = _2;
|
||||
ret._u32[3] = _3;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static u128 fromBit(u32 bit)
|
||||
{
|
||||
u128 ret = {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue