Skip to content

Commit a18f7d4

Browse files
committed
Improve access to how to use page
1 parent 5a31ac5 commit a18f7d4

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

how_to_use.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ nav_order: 3
77
# How to use
88
{: .fs-8 .fw-700 .text-center }
99

10-
This page will describe how to use the PSPDEV toolchain to build a basic program for the Playstation Portable(PSP), including screenshots. The screenshots will mainly be for Windows users, but the steps will not be much different for other operating systems, so you should be able to follow along.
10+
This page will describe how to use the PSPDEV toolchain to build a basic program for the Playstation Portable (PSP), including screenshots. The screenshots will mainly be for Windows users, but the steps will not be much different for other operating systems, so you should be able to follow along.
1111

1212
Before going through this guide, make sure to have followed the [installation instructions](installation.html) first.
1313

@@ -21,7 +21,7 @@ While using Visual Studio Code, you may be asked to install useful plugins, whic
2121
# Creating a project
2222
{: .fs-6 .fw-700 }
2323

24-
When you open Visual Studio Code, you'll be greeted by the welcome screen. Simply click the `Open Folder...` link on it or select this option from the `File` menu to get started. Then create a new directory where you want your project to be, then click on it and click . See the images below:
24+
When you open Visual Studio Code, you'll be greeted by the welcome screen. Simply click the `Open Folder...` link on it or select this option from the `File` menu to get started:
2525

2626
![](images/vscode-welcome.png)
2727

@@ -58,12 +58,12 @@ Add the following lines to `CMakeLists.txt`:
5858
{% include samples/hello/CMakeLists.txt %}
5959
```
6060

61-
The `CMakeLists.txt` file is used for CMake, which allows you to build the code. It contains which files add to the program in the `add_executable` function and which libraries to link to using the `target_link_libraries` function. In this case we just link to the libraries required to write text to the screen. The `create_pbp_file` function is used to create an `EBOOT.PBP` file, so we can run on the program on the PSP.
61+
The `CMakeLists.txt` file is used for CMake, which allows you to build the code. It contains which files to add to the program in the `add_executable` function and which libraries to link to using the `target_link_libraries` function. In this case we just link to the libraries required to write text to the screen. The `create_pbp_file` function is used to create an `EBOOT.PBP` file, so we can run on the program on the PSP.
6262

6363
# Building the code
6464
{: .fs-6 .fw-700 }
6565

66-
For building a terminal is used with a couple of short commands. To open a terminal in Visual Studio Code, select `Terminal` in the top bar and select `New Terminal`:
66+
For building, a terminal is used with a couple of short commands. To open a terminal in Visual Studio Code, select `Terminal` in the top bar and select `New Terminal`:
6767

6868
![](images/vscode-open-terminal.png)
6969

index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ An open source toolchain for PlayStation Portable (PSP) development. It allows y
1919
Want to install the PSPDEV toolchain? [Go here](installation.html).
2020
{: .fs-5 }
2121

22-
Want to get started, but don't what to build? [Go here](basic_programs.html).
22+
Don't know how to get started? [Go here](how_to_use.html).
2323
{: .fs-5 }
2424

25-
Your code is not working? [Go here](debugging.html).
25+
Need some examples for what you can do with the PSPDEV toolchain? [Go here](basic_programs.html).
26+
{: .fs-5 }
27+
28+
Is your code is not working? [Go here](debugging.html).
2629
{: .fs-5 }
2730

2831
Want some simple tips and trick to improve your experience? [Go here](tips_tricks.html).

installation/fedora.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ Installing the PSPDEV toolchain itself can be done with the following steps:
3939
psp-config --pspdev-path
4040
```
4141

42-
That's it, now the PSPDEV toolchain can be used to build PSP software. Check out the [Basic Programs](../basic_programs.html) page to for examples on what you can do with it.
42+
That's it, now the PSPDEV toolchain can be used to build PSP software. Check out the [How to Use](../how_to_use.html) page for a guide on how to do so.

installation/macos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ Installing the PSPDEV toolchain itself can be done with the following steps:
4747
psp-config --pspdev-path
4848
```
4949

50-
That's it, now the PSPDEV toolchain can be used to build PSP software. Check out the [Basic Programs](../basic_programs.html) page to for examples on what you can do with it.
50+
That's it, now the PSPDEV toolchain can be used to build PSP software. Check out the [How to Use](../how_to_use.html) page for a guide on how to do so.

installation/ubuntu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Installing the PSPDEV toolchain itself can be done with the following steps:
4343
psp-config --pspdev-path
4444
```
4545

46-
That's it, now the PSPDEV toolchain can be used to build PSP software. Check out the [Basic Programs](../basic_programs.html) page to for examples on what you can do with it.
46+
That's it, now the PSPDEV toolchain can be used to build PSP software. Check out the [How to Use](../how_to_use.html) page for a guide on how to do so.

installation/windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ Installing the PSPDEV toolchain itself can be done with the following steps:
7171
```
7272
If everything is set up correctly, the path of the PSPDEV toolchain installation will be shown.
7373

74-
That's it, now the PSPDEV toolchain can be used to build PSP software. Check out the [Basic Programs](../basic_programs.html) page to for examples on what you can do with it.
74+
That's it, now the PSPDEV toolchain can be used to build PSP software. Check out the [How to Use](../how_to_use.html) page for a guide on how to do so.

0 commit comments

Comments
 (0)