Update InstEmitMemoryHelper.cs

This commit is contained in:
LDj3SNuD 2019-09-11 17:11:11 +02:00 committed by GitHub
commit 7657ede597
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -288,7 +288,7 @@ namespace ARMeilleure.Instructions
private static Operand EmitPtPointerLoad(ArmEmitterContext context, Operand address, Operand lblFallbackPath) private static Operand EmitPtPointerLoad(ArmEmitterContext context, Operand address, Operand lblFallbackPath)
{ {
string name = nameof(MemoryManager.PTbl); string name = nameof(MemoryManager.PageTable);
Operand pte = Const(context.Memory.PageTable.ToInt64(), true, name); Operand pte = Const(context.Memory.PageTable.ToInt64(), true, name);