Get rid of Reflection.Emit dependency on CPU and Shader projects (#1626)
* Get rid of Reflection.Emit dependency on CPU and Shader projects * Remove useless private sets * Missed those due to the alignment
This commit is contained in:
parent
efa77a2415
commit
2f16491712
173 changed files with 1709 additions and 1417 deletions
|
@ -2,14 +2,16 @@
|
|||
{
|
||||
class OpCode32System : OpCode32
|
||||
{
|
||||
public int Opc1 { get; private set; }
|
||||
public int CRn { get; private set; }
|
||||
public int Rt { get; private set; }
|
||||
public int Opc2 { get; private set; }
|
||||
public int CRm { get; private set; }
|
||||
public int MrrcOp { get; private set; }
|
||||
public int Opc1 { get; }
|
||||
public int CRn { get; }
|
||||
public int Rt { get; }
|
||||
public int Opc2 { get; }
|
||||
public int CRm { get; }
|
||||
public int MrrcOp { get; }
|
||||
|
||||
public int Coproc { get; private set; }
|
||||
public int Coproc { get; }
|
||||
|
||||
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32System(inst, address, opCode);
|
||||
|
||||
public OpCode32System(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue