diff options
author | 2017-01-22 14:15:09 -0500 | |
---|---|---|
committer | 2017-01-22 14:15:09 -0500 | |
commit | 50779f23d2bbe9ed5168c044ed63901bd2dd3ce7 (patch) | |
tree | 79bd849eb0602f93e4e9e05b253190c8b0e4871a /src/lib.rs | |
parent | 5e19a55f9e3b37dd5d1fa029f0a0814531fde1af (diff) | |
download | cortex-m-50779f23d2bbe9ed5168c044ed63901bd2dd3ce7.tar.gz cortex-m-50779f23d2bbe9ed5168c044ed63901bd2dd3ce7.tar.zst cortex-m-50779f23d2bbe9ed5168c044ed63901bd2dd3ce7.zip |
add Exception
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -22,6 +22,10 @@ pub mod interrupt; pub mod peripheral; pub mod register; +mod exception; + +pub use exception::Exception; + /// Stack frame #[repr(C)] pub struct StackFrame { |