mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-01 20:24:36 +01:00
A64: Implement SIMD instruction SHL
This commit is contained in:
parent
f6247125c0
commit
1d0cd95b23
5 changed files with 100 additions and 50 deletions
|
|
@ -21,6 +21,11 @@ bool TranslatorVisitor::UnpredictableInstruction() {
|
|||
return false;
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::DecodeError() {
|
||||
// TODO: This is an internal error.
|
||||
return UnallocatedEncoding();
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::ReservedValue() {
|
||||
ir.ExceptionRaised(Exception::ReservedValue);
|
||||
ir.SetTerm(IR::Term::CheckHalt{IR::Term::ReturnToDispatch{}});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue