This commit is contained in:
LDj3SNuD 2019-09-17 20:51:12 +02:00 committed by GitHub
parent e6a07d8119
commit 47a2606124
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@ using ARMeilleure.Decoders;
using ARMeilleure.IntermediateRepresentation;
using ARMeilleure.Memory;
using ARMeilleure.Translation;
using ARMeilleure.Translation.AOT;
using System;
using static ARMeilleure.Instructions.InstEmitHelper;
@ -290,7 +291,7 @@ namespace ARMeilleure.Instructions
{
string name = nameof(MemoryManager.PageTable);
Operand pte = Const(context.Memory.PageTable.ToInt64(), true, name);
Operand pte = Const(context.Memory.PageTable.ToInt64(), Aot.Enabled, name);
int bit = MemoryManager.PageBits;