aboutsummaryrefslogtreecommitdiff
path: root/src/peripheral
diff options
context:
space:
mode:
authorGravatar Adam Greig <adam@adamgreig.com> 2022-02-25 01:19:34 +0000
committerGravatar Adam Greig <adam@adamgreig.com> 2022-02-25 01:21:05 +0000
commit3e8a5beec5f96a3c219b840dc26df34f76e4ab1e (patch)
tree45cfb08fca76efcce333a7f89cb28f32eea8fab9 /src/peripheral
parentf2feeb2595fe8f281a50d63055c65d6ac064ae11 (diff)
downloadcortex-m-3e8a5beec5f96a3c219b840dc26df34f76e4ab1e.tar.gz
cortex-m-3e8a5beec5f96a3c219b840dc26df34f76e4ab1e.tar.zst
cortex-m-3e8a5beec5f96a3c219b840dc26df34f76e4ab1e.zip
Fix cortex-m-rt qemu test by removing 'nomem' from semihosting_syscall asm, add inline to most cortex_m::asm methods
Diffstat (limited to 'src/peripheral')
-rw-r--r--src/peripheral/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peripheral/mod.rs b/src/peripheral/mod.rs
index 56b663e..c316886 100644
--- a/src/peripheral/mod.rs
+++ b/src/peripheral/mod.rs
@@ -57,9 +57,9 @@
//!
//! - ARMv7-M Architecture Reference Manual (Issue E.b) - Chapter B3
+use crate::interrupt;
use core::marker::PhantomData;
use core::ops;
-use crate::interrupt;
#[cfg(cm7)]
pub mod ac;