diff options
author | 2017-06-28 23:28:50 -0500 | |
---|---|---|
committer | 2017-06-30 18:08:28 -0500 | |
commit | 45ec58c6bf16e5ea00eac9753de7f8acffa464f8 (patch) | |
tree | b337a86fdfe027fd0a7e9d088d209525ff28b91a | |
parent | c05f8f1974ae28da6aff612417bf5defc92e28b4 (diff) | |
download | cortex-m-45ec58c6bf16e5ea00eac9753de7f8acffa464f8.tar.gz cortex-m-45ec58c6bf16e5ea00eac9753de7f8acffa464f8.tar.zst cortex-m-45ec58c6bf16e5ea00eac9753de7f8acffa464f8.zip |
StackFrame -> ExceptionFrame
-rw-r--r-- | src/exception.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exception.rs b/src/exception.rs index 17a493b..4195d67 100644 --- a/src/exception.rs +++ b/src/exception.rs @@ -53,7 +53,7 @@ impl Exception { /// Registers stacked (pushed into the stack) during an exception #[derive(Clone, Copy, Debug)] #[repr(C)] -pub struct StackFrame { +pub struct ExceptionFrame { /// (General purpose) Register 0 pub r0: u32, /// (General purpose) Register 1 |