Updating dependencies docs and prepping for more advanced script usage of toolchain for Psy-Q

This commit is contained in:
2025-08-05 21:22:49 -04:00
parent cc487a0e42
commit 5da7c2e3b0
94 changed files with 12730 additions and 26 deletions
+34 -5
View File
@@ -6,19 +6,48 @@ A rest from the usual.
## Dependencies
I will be programming from a Windows 11 machine:
![system_info](./docs/assets/system_info.png)
```ps1
scoop bucket add extras
scoop install armips
# not really used yet for scripts (may never)
scoop install lua
powershell -c "& { iwr -UseBasicParsing https://bit.ly/mips-ps1 | iex }"
mips install 14.2.0
```
[armips](https://github.com/Kingcom/armips)
* Supports doing bare-metal assembly for the ps1
* `scoop install armips`
[pscx-redux](https://github.com/grumpycoders/pcsx-redux/): A collection of tools, research, hardware design, and libraries aiming at development and reverse engineering on the PlayStation 1.
* Used as the runtime sandbox emulated the ps1
* Has hookups to behaving as a gdb server which can be utilized with the gdb client in vscode.
* Supports symbolic info emitted by armips
* pysq library has been sucessfully adjusted for modern compiler usage (see: src/)
[MIPS Toolchain (from pscx-redux)](https://static.grumpycoder.net/pixel/mips/)
* Used for building ps1 programs for the C runtime provided by the psyq/o SDK
[nugget](https://github.com/pcsx-redux/nugget)
* Readonly mirror of pcsx-redux's `src/mips` directory.
* Not necessary if the pcsx-redux repo is cloned
[PSX Psy-Q SDK (supplied by `psx.arthus.net`)](https://psx.arthus.net/sdk/Psy-Q/)
* Original official SDK
* Modernized using obj parser to extract info for GNU toolchain usage.
* Can be utilized effectively with the includes below
* Can either grab from arthus [psyq-4.7-converted-full.7z](https://psx.arthus.net/sdk/Psy-Q/psyq-4.7-converted-full.7z) or [psyq-4_7-converted-light.zip](psyq-4_7-converted-light.zip)
* The light version omits the link modules (object files), just keeps the static archives.
[psyq_include_what_you_use](https://github.com/johnbaumann/psyq_include_what_you_use/)
* Fixes psyq headers to include what they use, so changing the include order in your project doesn't break compiling.
* Needed if you want to link and utilize the psyq C SDK
## Gallery
![clear!](./docs/assets/pcsx-redux.main_2025-08-03_18-02-08.png)