mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-06 22:48:25 +01:00
A32: Implement Thumb-1 variant of YIELD
This commit is contained in:
parent
ebab7ede55
commit
e89ca42048
3 changed files with 10 additions and 0 deletions
|
|
@ -694,6 +694,11 @@ struct ThumbTranslatorVisitor final {
|
|||
return RaiseException(Exception::WaitForInterrupt);
|
||||
}
|
||||
|
||||
// YIELD<c>
|
||||
bool thumb16_YIELD() {
|
||||
return RaiseException(Exception::Yield);
|
||||
}
|
||||
|
||||
// SXTH <Rd>, <Rm>
|
||||
// Rd cannot encode R15.
|
||||
bool thumb16_SXTH(Reg m, Reg d) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue