diff options
author | 2017-07-04 22:14:13 -0500 | |
---|---|---|
committer | 2017-07-04 22:14:42 -0500 | |
commit | d383d40459d1b6cba7ec2fd9f45b10439a6dbac4 (patch) | |
tree | 36ecbde73ee3d0173c793d3e921010a93519d922 /src/lib.rs | |
parent | 9828d7c4f3eddde66526df183acfb9360ee2bece (diff) | |
download | cortex-m-d383d40459d1b6cba7ec2fd9f45b10439a6dbac4.tar.gz cortex-m-d383d40459d1b6cba7ec2fd9f45b10439a6dbac4.tar.zst cortex-m-d383d40459d1b6cba7ec2fd9f45b10439a6dbac4.zip |
move non Cortex-M specific bits into a crate
closes #50
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ #![no_std] extern crate aligned; +extern crate mcu; extern crate volatile_register; #[macro_use] |