Skip to content

Commit

Permalink
Merge #142 #151
Browse files Browse the repository at this point in the history
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 <flip101@gmail.com>
  • Loading branch information
bors[bot] and flip111 committed Feb 17, 2019
3 parents f42b1b2 + daf0eb3 + e9164e7 commit 7c35d56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/start/exceptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn SysTick() {
```

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

Expand Down
2 changes: 1 addition & 1 deletion src/start/qemu.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# QEMU

We'll start writing a program for the [LM3S6965], a Cortex-M3 microcontroller.
We have chosen this as our initial target because it can be emulated using QEMU
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
so you don't need to fiddle with hardware in this section and we can focus on
the tooling and the development process.

Expand Down

0 comments on commit 7c35d56

Please sign in to comment.