mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 05:58:19 +01:00
A32: Implement the ARM-mode variant of SEVL
This commit is contained in:
parent
e89ca42048
commit
9a097e307f
6 changed files with 12 additions and 1 deletions
|
|
@ -26,6 +26,8 @@ enum class Exception {
|
|||
UnpredictableInstruction,
|
||||
/// A SEV instruction was executed. The event register of all PEs should be set.
|
||||
SendEvent,
|
||||
/// A SEVL instruction was executed. The event register of the current PE should be set.
|
||||
SendEventLocal,
|
||||
/// A WFI instruction was executed. You may now enter a low-power state.
|
||||
WaitForInterrupt,
|
||||
/// A WFE instruction was executed. You may now enter a low-power state if the event register is clear.
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ enum class Exception {
|
|||
WaitForEvent,
|
||||
/// A SEV instruction was executed. The event register of all PEs should be set.
|
||||
SendEvent,
|
||||
/// A SEV instruction was executed. The event register of the current PE should be set.
|
||||
/// A SEVL instruction was executed. The event register of the current PE should be set.
|
||||
SendEventLocal,
|
||||
/// A YIELD instruction was executed.
|
||||
Yield,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue