Skip to content

Commit 7c35d56

Browse files
bors[bot]flip111
andcommitted
Merge #142 #151
142: Update qemu.md r=korken89 a=flip111 Add link to qemu wiki. As proof and also interested reader can see other architectures too. 151: Update exceptions.md r=korken89 a=flip111 that it's marked with `* *` already makes it have special significance. Let's link to an explanation Co-authored-by: flip111 <[email protected]>
3 parents f42b1b2 + daf0eb3 + e9164e7 commit 7c35d56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/start/exceptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn SysTick() {
3737
```
3838

3939
As you may know, using `static mut` variables in a function makes it
40-
*non-reentrant*. It's undefined behavior to call a non-reentrant function,
40+
[*non-reentrant*](https://en.wikipedia.org/wiki/Reentrancy_(computing)). It's undefined behavior to call a non-reentrant function,
4141
directly or indirectly, from more than one exception / interrupt handler or from
4242
`main` and one or more exception / interrupt handlers.
4343

src/start/qemu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# QEMU
22

33
We'll start writing a program for the [LM3S6965], a Cortex-M3 microcontroller.
4-
We have chosen this as our initial target because it can be emulated using QEMU
4+
We have chosen this as our initial target because it [can be emulated](https://wiki.qemu.org/Documentation/Platforms/ARM#Supported_in_qemu-system-arm) using QEMU
55
so you don't need to fiddle with hardware in this section and we can focus on
66
the tooling and the development process.
77

0 commit comments

Comments
 (0)