PSPLINK allows you to start and debug homebrew for the Playstation Portable through USB. This can speed up development and make finding out what is causing a crash or bug easier. This page explains how to set it up and use it.
To get PSPLINK up and running, first the PSPDEV toolchain will need to be installed. This should contain the tools for the PC. So follow the instructions here first!
Each system involved in the use of PSPLINK requires a bit of setup for it to work. This includes both PSP and PC. Below are instructions for both.
Download the latest version of PSPLINK for the PSP here and extract it in ms0:/PSP/GAME
on the PSP memory card.
Depending on the operating system used the setup on PC is different. Follow the on below which is relevant to your system.
On Windows a driver needs to be installed before PSPLINK can be used. To do this take the following steps:
- Make sure the programs
usbhostfs_pc
andpspsh
are available in cmd. Otherwise download them here. - Start PSPLINK on the Playstation Portable and connect it to the computer through USB.
- Download Zadig and start it. It will ask if you want to run it as administrator, click yes.
- In Zadig, click on
options
->List All Devices
. - Select the entry
"PSP" type B
from the dropdown list. - Left of driver, select the
libusb-win32
driver. Then click install. - Wait for the installation to finish, then disconnect the USB cable from the PSP.
Now PSPLINK can be used with Windows. See below how to do that.
With Linux PSPLINK will work without making any changes, but it will require using sudo for the usbhostfs_pc
command. To make it work without sudo, a udev rule can be added.
To make using PSPLINK without sudo create file called /etc/udev/rules.d/50-psplink.rules
(for example with sudo nano /etc/udev/rules.d/50-psplink.rules
) and add the following content:
SUBSYSTEM=="usb", ATTR{idVendor}=="054c", ATTR{idProduct}=="01c9", SYMLINK+="psp", MODE="0666"
Save this, in Nano this can be done with Ctrl+O and pressing enter. The run the following command:
sudo udevadm control --reload
Now PSPLINK can be used without sudo. See below how to do that.
To be able to use PSPLINK with Playstation Portable homebrew, the homebrew will need to be build into an unencrypted .prx
file. This can be done by running CMake like psp-cmake -DBUILD_PRX=1 .
or if you're using a Makefile by adding BUILD_PRX=1
to it. Then build the homebrew.
In the build directory, open a terminal and run the following program:
usbhostfs_pc
Keep this running!
Then open another terminal window and run the following there:
pspsh
Now we can simply start our homebrew on the PSP by running the following command in the pspsh window:
./myhomebrew.prx
Replace myhomebrew with the name of the .prx
file which was generated.
When you're done with the current build, just run reset
, rebuild the homebrew and try again.
Options available can be found when using the help
command, but here are some notable ones:
scrshot screenshotname.bmp
for taking a screenshot.exit
for closing PSPLINK on the PSP.poweroff
for shutting down the PSP.
When a crash happens a crash log will be shown with a hint of what might have happened at the top and some additional info. If you wish to figure out where the crash happened, only the address is needed.
To figure out where the crash happened, open another terminal in the build directory and use the address shown by PSPLINK in the following command:
psp-addr2line -e myhomebrew address
Replace address
with the actual adress and replace myhomebrew with the name of the elf file. This is NOT the .prx
file and either has no extension or .elf
depending on the build system used.
If no result is returned, make sure to build with the -g
or-g3
option to make sure psp-addr2line knowns the function names and locations.
Sometimes debugging with the built in instruction level debugger is not enough, this is where PSPLINK's GDB Server can come in handy.
Let's get started:
Prepare a separate terminal for usbhostfs_pc
, pspsh
and psp-gdb
. Open all of them in the directory in which your compiled .prx
and the elf
(PSP binary) files are located.
Run usbhostfs_pc
on your terminal dedicated for usbhostfs_pc
and you will see the waiting for device...
status.
Now start the PSPLINK app on your PSP and connect the USB cable. You should see the connected to device
status in the terminal, which means success.
Do not close this terminal after that.
Run pspsh
on your terminal dedicated for pspsh
and you will see the host0:/>
. Now run debug file.prx
, and it will display something like this:
You need to replace
file.prx
with the file you need to debug. PRX file not ELF.
PSPLink USB GDBServer (c) 2k7 TyRaNiD
host0:/> Loaded host0:/<file.prx> - UID 0x0408A763, Entry 0x088040AC
It means the debuggee is succesfully loaded. You can type reset
if there's something wrong with your GDBServer.
In a new terminal run psp-gdb file -q
and you will see something like this:
You need to replace
file
with the elf file of the program you're trying to debug. It has the same name as the file loaded in pspsh, but without the.prx
ending.
Check if your binary has enabled the debug symbols required for debugging by using
objdump --syms
command and should produce an output but if it saysno symbols
then it is disabled(You can enable it by adding-g
option to gcc).
Reading symbols from <file>...
(gdb)
<file>
is the name of your current debuggee.
then type the target remote :10001
to connect to your GDBServer and you will see the gdb output something like this:
Remote debugging using :10001
_start (args=0, argp=0x0) at crt0_prx.c:103
103 if (&sce_newlib_nocreate_thread_in_start != NULL) {
(gdb)
This will display the _start
routine, it means you succesfully connected and ready to the debug your app!
Here are a few useful commands for getting around in psp-gdb:
b
orbreak
- for setting breakpointsc
orcontinue
- for resuming program execution until the next breakpoint or program completions
orstep
- for executing the current line and, if it contains a function call, step into that functionn
ornext
- for executing the current line, but if it contains a function call, step over it without diving into the functionf
orfinish
- for executing the remaining lines of the current function and return to the callerbt
orbacktrace
- for getting stacktracep $var
orprint $var
- for displaying the value of specific variablei r
orinfo registers
- for displaying the contents of CPU registersd
ordelete
- for deleting all breakpointsq
orquit
- for exiting from psp-gdb
You can type help
for more information about the psp-gdb commands.
If you need any additional information, check out the complete online manual.
- (c) TyRaNiD 2005-2007
- (c) Julian T 2005/2006
- (c) Rasmus B 2006
- (c) John_K 2005
- (c) pspdev 2010-2020
PSPLINK is licensed under the BSD license, see LICENSE file for details.