A32: Implement the ARM-mode variant of SEVL

This commit is contained in:
Lioncash 2019-05-03 10:57:26 -04:00 committed by MerryMage
parent e89ca42048
commit 9a097e307f
6 changed files with 12 additions and 1 deletions

View file

@ -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.

View file

@ -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,