diff options
author | 2023-10-16 01:33:34 +0100 | |
---|---|---|
committer | 2023-10-16 01:57:48 +0100 | |
commit | 0a701d68b51da9468a9a5e518667d4c037102e85 (patch) | |
tree | ea97c5f9726b46e5f9aef2721208645fa37d9750 /src/peripheral/fpu.rs | |
parent | c52330f333afe5358b5b6cccb4837eeb92af2759 (diff) | |
download | cortex-m-0a701d68b51da9468a9a5e518667d4c037102e85.tar.gz cortex-m-0a701d68b51da9468a9a5e518667d4c037102e85.tar.zst cortex-m-0a701d68b51da9468a9a5e518667d4c037102e85.zip |
Move cortex-m crate into cortex-m directory
Diffstat (limited to 'src/peripheral/fpu.rs')
-rw-r--r-- | src/peripheral/fpu.rs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/peripheral/fpu.rs b/src/peripheral/fpu.rs deleted file mode 100644 index 9a047d8..0000000 --- a/src/peripheral/fpu.rs +++ /dev/null @@ -1,19 +0,0 @@ -//! Floating Point Unit -//! -//! *NOTE* Available only on targets with a Floating Point Unit (FPU) extension. - -use volatile_register::{RO, RW}; - -/// Register block -#[repr(C)] -pub struct RegisterBlock { - reserved: u32, - /// Floating Point Context Control - pub fpccr: RW<u32>, - /// Floating Point Context Address - pub fpcar: RW<u32>, - /// Floating Point Default Status Control - pub fpdscr: RW<u32>, - /// Media and FP Feature - pub mvfr: [RO<u32>; 3], -} |