A64: Implement SVC

This commit is contained in:
MerryMage
2018-01-08 22:03:03 +00:00
parent e5ace37560
commit 68391b0a05
9 changed files with 37 additions and 14 deletions

View File

@@ -219,8 +219,9 @@ bool Inst::WritesToFPSCR() const {
}
bool Inst::CausesCPUException() const {
return op == Opcode::Breakpoint ||
op == Opcode::A32CallSupervisor;
return op == Opcode::Breakpoint ||
op == Opcode::A32CallSupervisor ||
op == Opcode::A64CallSupervisor;
}
bool Inst::AltersExclusiveState() const {