1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-23 15:16:26 -05:00

Implement CNTVCT_EL0 (#1268)

* Implement CNTVCT_EL0

* Fix comment
This commit is contained in:
mageven
2020-05-23 15:45:59 +05:30
committed by GitHub
parent ff7a933ec0
commit 6416bc1938
3 changed files with 10 additions and 0 deletions

View File

@@ -136,6 +136,11 @@ namespace ARMeilleure.Instructions
return GetContext().CntpctEl0;
}
public static ulong GetCntvctEl0()
{
return GetContext().CntvctEl0;
}
public static void SetFpcr(ulong value)
{
GetContext().Fpcr = (FPCR)value;