Adjust alignment
This commit is contained in:
parent
2453c94135
commit
19be6eaf9f
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ namespace ChocolArm64.Translation
|
||||||
private Block[] _graph;
|
private Block[] _graph;
|
||||||
private Block _root;
|
private Block _root;
|
||||||
public Block CurrBlock => _graph[_blkIndex];
|
public Block CurrBlock => _graph[_blkIndex];
|
||||||
public OpCode64 CurrOp => _graph[_blkIndex].OpCodes[_opcIndex];
|
public OpCode64 CurrOp => _graph[_blkIndex].OpCodes[_opcIndex];
|
||||||
|
|
||||||
private ILEmitter _emitter;
|
private ILEmitter _emitter;
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ namespace ChocolArm64.Translation
|
||||||
TranslatorCache cache,
|
TranslatorCache cache,
|
||||||
Block[] graph,
|
Block[] graph,
|
||||||
Block root,
|
Block root,
|
||||||
string subName)
|
string subName)
|
||||||
{
|
{
|
||||||
_cache = cache ?? throw new ArgumentNullException(nameof(cache));
|
_cache = cache ?? throw new ArgumentNullException(nameof(cache));
|
||||||
_graph = graph ?? throw new ArgumentNullException(nameof(graph));
|
_graph = graph ?? throw new ArgumentNullException(nameof(graph));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue