A Qt/C++ graphical application for preparing PlayStation 1 BIN/CUE games for use with the PSIO device.
Works on Linux, macOS, and Windows.
- User-friendly graphical interface
- Support for Windows, Linux, and macOS
- ROM management
- Game transfer to PSIO
You can download the latest version of PSIO Assist directly from GitHub Actions artifacts:
- Go to the Actions page of the repository
- Click on the most recent run of the "Build for Windows, Linux and macOS" workflow
- Scroll down to the "Artifacts" section at the bottom of the page
- Download the artifact corresponding to your operating system:
- Windows:
psio-assist-windows
- Linux:
psio-assist-linux
- macOS:
psio-assist-macos-app
(App Bundle) orpsio-assist-macos-dmg
(Disk image)
- Windows:
This project requires:
- Qt 6.5 or later
- CMake 3.5 or later
- C++ compiler with C++17 support
sudo apt update && sudo apt install qt6-base-dev cmake g++
sudo dnf install qt6-qtbase-devel cmake g++
brew install qt cmake
- Install Qt using the Qt Online Installer
- Install CMake from the official website
- Install Visual Studio or MinGW
Clone the repository:
git clone https://github.com/gabrielBitts/psio-assist-ex.git
cd psio-assist-ex
Compile the project:
mkdir build && cd build
cmake ..
make -j$(nproc) # Linux/macOS
cmake --build . # Windows (using CMake)
./Psio-Assist-EX # Linux/macOS
Psio-Assist-EX.exe # Windows
- Click the Browse button and select the directory containing your BIN/CUE files.
- Select the desired processing options.
- Click Process to start the operation.
- The progress bar will indicate the task progress.
This project is licensed under GPL-3.0.
- Qt/C++ Interface: Gabriel Bitts
- Based on the original project: PSIO-Assist