mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-31 11:44:44 +01:00
A32: Implement BKPT
This commit is contained in:
parent
f023bbb893
commit
865a30eb0d
2 changed files with 12 additions and 2 deletions
|
|
@ -24,6 +24,8 @@ enum class Exception {
|
|||
/// An unpredictable instruction is to be executed. Implementation-defined behaviour should now happen.
|
||||
/// This behaviour is up to the user of this library to define.
|
||||
UnpredictableInstruction,
|
||||
/// A BKPT instruction was executed.
|
||||
Breakpoint,
|
||||
};
|
||||
|
||||
/// These function pointers may be inserted into compiled code.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue