readme.md Improvements part 3

This commit is contained in:
RyzenDew 2023-07-19 14:43:55 -03:00 committed by GitHub
parent 5a3512304b
commit 81adffbddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
.github/readme.md vendored
View file

@ -12,7 +12,9 @@
</div> </div>
> **Warning** <br/> > **Warning** <br/>
> It's NOT possible to run any games yet, and there is no ETA for when this will change > It's NOT possible to run any games yet, and there is no ETA for when this will change.
> Do not ask for link to games or system files. Piracy is not permitted on the GitHub nor in the Discord.
## Contributing ## Contributing
@ -25,11 +27,17 @@ First Install The dependencies for Debian-like distributions.
``sudo apt install build-essential cmake libunwind-dev libglfw3-dev libvulkan-dev vulkan-validationlayers-dev spirv-tools glslang-tools libspirv-cross-c-shared-dev libxbyak-dev`` ``sudo apt install build-essential cmake libunwind-dev libglfw3-dev libvulkan-dev vulkan-validationlayers-dev spirv-tools glslang-tools libspirv-cross-c-shared-dev libxbyak-dev``
Command for building the emulator. ## Cloning the Repo
``git clone https://github.com/RPCSX/rpcsx && cd rpcsx``
## Command for building the emulator.
`mkdir -p build && cd build && cmake .. && cmake --build .` `mkdir -p build && cd build && cmake .. && cmake --build .`
## How to create to create virtual hdd ## How to create virtual hdd
> The PS4 has case-insensitive filesystem. To create the virtual hdd do the following:
`truncate -s 512M ps4-hdd.exfat` `truncate -s 512M ps4-hdd.exfat`
@ -49,11 +57,11 @@ You can run emulator with Samples using this command:
## Creating a log ## Creating a log
use flag You can use this flag if you get sigfault for debugging.
`--trace` if you got sigfault `--trace`
You can redirect all log messages to the file by appending following to command: You can redirect all log messages to a file by appending following to command:
`&>log.txt` `&>log.txt`