A64: Implement BRK

Currently, we can just implement this as part of the exception
interface, similar to how it's done for the A32 interface with BKPT.
This commit is contained in:
Lioncash 2018-09-18 21:17:55 -04:00 committed by MerryMage
parent b915364c16
commit 6b5ea6ee66
3 changed files with 9 additions and 1 deletions

View file

@ -38,6 +38,8 @@ enum class Exception {
SendEventLocal,
/// A YIELD instruction was executed.
Yield,
/// A BRK instruction was executed.
Breakpoint,
};
enum class DataCacheOperation {