Skip to content

Commit 63e5a7a

Browse files
committed
Reword things for clarity - fix setup dir mistake
1 parent 7e2e178 commit 63e5a7a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

_posts/2019-07-08-riscv-from-scratch-3.markdown

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,22 @@ UARTs and USARTs are all around you, even if you may not realize it. They are b
3939

4040
### Setup
4141

42-
Before we get down to writing our driver, we'll need a few things set up to ensure we can properly compile and link. If you've worked through the previous two posts in this series you shouldn't have to do anything here beyond a `cd some/path/to/riscv-from-scratch/work`.
42+
Before we get down to writing our driver, we'll need a few things set up to ensure we can properly compile and link. If you've worked through the previous two posts in this series you shouldn't have to do anything here beyond a `cd some/path/to/riscv-from-scratch`.
4343

4444
However, if you missed the previous posts in this series:
4545

46-
1. Ensure you have `riscv-qemu` and the RISC-V toolchain installed. You can follow [these instructions](/riscv-from-scratch/2019/03/10/riscv-from-scratch-1.html#qemu-and-risc-v-toolchain-setup) from the first post to complete this.
46+
1. Follow [these instructions](/riscv-from-scratch/2019/03/10/riscv-from-scratch-1.html#qemu-and-risc-v-toolchain-setup) from the first post to install the GNU RISC-V toolchain and a version of [QEMU](https://www.qemu.org/) with RISC-V emulation capabilities.
4747
2. Clone or fork the [riscv-from-scratch repo](https://github.com/twilco/riscv-from-scratch):
4848
{% highlight bash %}
4949
git clone git@github.com:twilco/riscv-from-scratch.git
5050
# or `git clone https://github.com/twilco/riscv-from-scratch.git` to clone
5151
# via HTTPS rather than SSH
5252
# alternatively, if you are a GitHub user, you can fork this repo.
5353
# https://help.github.com/en/articles/fork-a-repo
54-
55-
cd riscv-from-scratch/work
54+
cd riscv-from-scratch
5655
{% endhighlight %}
5756
{:start="3"}
58-
3. Check out the branch that contains the code prerequisites, located in `src`, for this post: <br/>
57+
3. Check out the `pre-uart-driver-skeleton` branch which contains the code prerequisites for this post in the `src` directory: <br/>
5958
{% highlight bash %}
6059
git checkout pre-uart-driver-skeleton
6160
{% endhighlight %}

0 commit comments

Comments
 (0)