mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-28 02:05:00 +01:00
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:
parent
b915364c16
commit
6b5ea6ee66
3 changed files with 9 additions and 1 deletions
|
|
@ -38,6 +38,8 @@ enum class Exception {
|
|||
SendEventLocal,
|
||||
/// A YIELD instruction was executed.
|
||||
Yield,
|
||||
/// A BRK instruction was executed.
|
||||
Breakpoint,
|
||||
};
|
||||
|
||||
enum class DataCacheOperation {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue