We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 700d073 commit ccfdaecCopy full SHA for ccfdaec
src/start/qemu.md
@@ -133,7 +133,7 @@ that'd be `#[entry]`.
133
[`cortex-m-rt`]: https://crates.io/crates/cortex-m-rt
134
135
`fn main() -> !`. Our program will be the *only* process running on the target
136
-hardware so we don't want it to end! We use a divergent function (the `-> !`
+hardware so we don't want it to end! We use a [divergent function](https://doc.rust-lang.org/rust-by-example/fn/diverging.html) (the `-> !`
137
bit in the function signature) to ensure at compile time that'll be the case.
138
139
### Cross compiling
0 commit comments