File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 3
3
This library implements a simple Arm vector table, suitable for getting into a
4
4
Rust application running in System Mode. It also provides a reference start
5
5
up method. Most Cortex-A based systems will require chip specific start-up
6
- code, so the start-up method can over overridden.
6
+ code, so the start-up method can be overridden.
7
7
8
8
See < https://docs.rs/cortex-a-rt > for detailed documentation.
9
9
Original file line number Diff line number Diff line change 3
3
//! This library implements a simple Arm vector table, suitable for getting into
4
4
//! a Rust application running in System Mode. It also provides a reference
5
5
//! start up method. Most Cortex-A based systems will require chip specific
6
- //! start-up code, so the start-up method can over overridden.
6
+ //! start-up code, so the start-up method can be overridden.
7
7
//!
8
8
//! The default startup routine provided by this crate does not include any
9
9
//! special handling for multi-core support because this is oftentimes
122
122
//! loop { }
123
123
//! }
124
124
//! ```
125
- //!
125
+ //!
126
126
//! or:
127
127
//!
128
128
//! ```rust
149
149
//! loop { }
150
150
//! }
151
151
//! ```
152
- //!
152
+ //!
153
153
//! or:
154
154
//!
155
155
//! ```rust
220
220
//! loop { }
221
221
//! }
222
222
//! ```
223
- //!
223
+ //!
224
224
//! Or it can return an address where execution should resume after the
225
225
//! Exception handler is complete (which is unsafe):
226
226
//!
278
278
//! loop { }
279
279
//! }
280
280
//! ```
281
- //!
281
+ //!
282
282
//! Or it can return an address where execution should resume after the
283
283
//! Exception handler is complete (which is unsafe):
284
284
//!
@@ -645,7 +645,7 @@ macro_rules! restore_context {
645
645
#[ cfg( target_arch = "arm" ) ]
646
646
core:: arch:: global_asm!(
647
647
r#"
648
-
648
+
649
649
// Called from the vector table when we have an undefined exception.
650
650
// Saves state and calls a C-compatible handler like
651
651
// `extern "C" fn _undefined_handler(addr: usize) -> usize;`
Original file line number Diff line number Diff line change 3
3
This library implements a simple Arm vector table, suitable for getting into a
4
4
Rust application running in System Mode. It also provides a reference start
5
5
up method. Most Cortex-R based systems will require chip specific start-up
6
- code, so the start-up method can over overridden.
6
+ code, so the start-up method can be overridden.
7
7
8
8
See < https://docs.rs/cortex-r-rt > for detailed documentation.
9
9
Original file line number Diff line number Diff line change 3
3
//! This library implements a simple Arm vector table, suitable for getting into
4
4
//! a Rust application running in System Mode. It also provides a reference
5
5
//! start up method. Most Cortex-R based systems will require chip specific
6
- //! start-up code, so the start-up method can over overridden.
6
+ //! start-up code, so the start-up method can be overridden.
7
7
//!
8
8
//! The default startup routine provided by this crate does not include any
9
9
//! special handling for multi-core support because this is oftentimes
121
121
//! loop { }
122
122
//! }
123
123
//! ```
124
- //!
124
+ //!
125
125
//! or:
126
126
//!
127
127
//! ```rust
148
148
//! loop { }
149
149
//! }
150
150
//! ```
151
- //!
151
+ //!
152
152
//! or:
153
153
//!
154
154
//! ```rust
219
219
//! loop { }
220
220
//! }
221
221
//! ```
222
- //!
222
+ //!
223
223
//! Or it can return an address where execution should resume after the
224
224
//! Exception handler is complete (which is unsafe):
225
225
//!
277
277
//! loop { }
278
278
//! }
279
279
//! ```
280
- //!
280
+ //!
281
281
//! Or it can return an address where execution should resume after the
282
282
//! Exception handler is complete (which is unsafe):
283
283
//!
@@ -580,7 +580,7 @@ core::arch::global_asm!(
580
580
r#"
581
581
// Work around https://github.com/rust-lang/rust/issues/127269
582
582
.fpu vfp3-d16
583
-
583
+
584
584
// Called from the vector table when we have an undefined exception.
585
585
// Saves state and calls a C-compatible handler like
586
586
// `extern "C" fn _undefined_handler(addr: usize) -> usize;`
You can’t perform that action at this time.
0 commit comments