Fix spelling (#128)

* Fix spelling in .cpp files

* Fix spelling in all files
This commit is contained in:
Yaya-Cout
2022-01-20 17:21:35 +01:00
committed by GitHub
parent e575ffc7ce
commit 169fb7404e
215 changed files with 424 additions and 425 deletions

View File

@@ -22,7 +22,7 @@
<path class="st4" d="M82.3 203h119.6v31.7H82.3z"/>
<path class="st1" d="M98.4 212.1h66.3v19.3H98.4z"/>
<text transform="translate(98.372 227.228)" class="st5 st6">
Esher
Escher
</text>
<image width="129" height="77" xlink:href="C75050B38B4C690A.png" transform="translate(80.824 316.754)" overflow="visible" opacity=".1"/>
<path class="st0" d="M81 316.6h123v71.2H81z"/>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

12
docs/build/index.md vendored
View File

@@ -2,7 +2,7 @@
title: Installing the SDK
breadcrumb: SDK
---
# Build and run your own version of Epsilon
# Build and run your own version of Upsilon
## Install the SDK
@@ -46,13 +46,13 @@ apt-get install gcc-arm-none-eabi binutils-arm-none-eabi
## Retrieve the source code
The code is hosted on <a href="https://github.com/numworks/epsilon">GitHub</a>. You can retrieve it using the follwing command.
The code is hosted on <a href="https://github.com/Lauryy06/Upsilon">GitHub</a>. You can retrieve it using the following command.
```
git clone https://github.com/numworks/epsilon.git
git clone https://github.com/Lauryy06/Upsilon.git
```
## Run Epsilon on your computer
## Run Upsilon on your computer
Once the SDK has been installed, just open your terminal (Msys2, Terminal.app, xterm…) and type the following commands:
@@ -61,7 +61,7 @@ make PLATFORM=simulator clean
make PLATFORM=simulator epsilon_run
```
## Run Epsilon on your calculator
## Run Upsilon on your calculator
You can also update your NumWorks calculator easily. Note that you'll need to press the Reset button and that all data on your calculator will be lost.
@@ -71,4 +71,4 @@ make
make epsilon_flash
```
Congratulations, you're running your very own version of Epsilon!
Congratulations, you're running your very own version of Upsilon!

View File

@@ -45,7 +45,7 @@ We're listing here all the topics you should be familiar with before being able
The choice of a programming language is a controversial topic. Not all of them can be used to write an operating system, but quite a few can. We settled on C++ for several reasons:
- It is a [system](https://en.wikipedia.org/wiki/System_programming_language) programming language, which is something we need since we have to write some low-level code.
- It has excellent tooling: several extremly high-quality compilers
- It has excellent tooling: several extremely high-quality compilers
- It is used for several high-profile projects LLVM, WebKit, MySQL, Photoshop… This ensures a strong ecosystem of tools, code and documentation.
- It easily allows Object-Oriented Programming, which is a convenient abstraction.
@@ -57,7 +57,7 @@ If you want to contribute to Epsilon, you'll need to learn some C++.
### Working with limited memory
Our device has 256 KB of RAM. That's very little memory by today's standards. That being said, by writing code carefuly, a huge lot can be achieved in that space. After all, that's 64 times more memory than the computer of the Apollo mission!
Our device has 256 KB of RAM. That's very little memory by today's standards. That being said, by writing code carefully, a huge lot can be achieved in that space. After all, that's 64 times more memory than the computer of the Apollo mission!
#### Stack memory