A32: Implement BKPT

This commit is contained in:
MerryMage 2018-01-28 12:56:00 +00:00
parent f023bbb893
commit 865a30eb0d
2 changed files with 12 additions and 2 deletions

View file

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