diff options
| author | mageven <62494521+mageven@users.noreply.github.com> | 2020-05-23 15:45:59 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-23 12:15:59 +0200 |
| commit | 6416bc193843702fc9d77be24e7b5b86c2b5e68c (patch) | |
| tree | b85fc1c74cd6c9715816cd21dfde4f830fd9c590 /ARMeilleure/Instructions/InstEmitSystem.cs | |
| parent | ff7a933ec01f790aa842b0ef75081ed3e0a654a2 (diff) | |
Implement CNTVCT_EL0 (#1268)
* Implement CNTVCT_EL0
* Fix comment
Diffstat (limited to 'ARMeilleure/Instructions/InstEmitSystem.cs')
| -rw-r--r-- | ARMeilleure/Instructions/InstEmitSystem.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ARMeilleure/Instructions/InstEmitSystem.cs b/ARMeilleure/Instructions/InstEmitSystem.cs index 49973404..c13f0c3e 100644 --- a/ARMeilleure/Instructions/InstEmitSystem.cs +++ b/ARMeilleure/Instructions/InstEmitSystem.cs @@ -40,6 +40,7 @@ namespace ARMeilleure.Instructions case 0b11_011_1101_0000_011: dlg = new _U64(NativeInterface.GetTpidr); break; case 0b11_011_1110_0000_000: dlg = new _U64(NativeInterface.GetCntfrqEl0); break; case 0b11_011_1110_0000_001: dlg = new _U64(NativeInterface.GetCntpctEl0); break; + case 0b11_011_1110_0000_010: dlg = new _U64(NativeInterface.GetCntvctEl0); break; default: throw new NotImplementedException($"Unknown MRS 0x{op.RawOpCode:X8} at 0x{op.Address:X16}."); } |
