mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 22:50:46 -07:00
Initial work to support AArch32 with a interpreter, plus nvmm stubs (not used for now)
This commit is contained in:
16
ChocolArm64/Decoder32/A32OpCodeBImmAl.cs
Normal file
16
ChocolArm64/Decoder32/A32OpCodeBImmAl.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using ChocolArm64.Instruction;
|
||||
|
||||
namespace ChocolArm64.Decoder32
|
||||
{
|
||||
class A32OpCodeBImmAl : A32OpCode
|
||||
{
|
||||
public int Imm;
|
||||
public int H;
|
||||
|
||||
public A32OpCodeBImmAl(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
|
||||
{
|
||||
Imm = (OpCode << 8) >> 6;
|
||||
H = (OpCode >> 23) & 2;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user