Why all early homebrews had this icon
Written on July 26th, 2021 by Pierre LThe PSP equivalent of the Windows executable, I learn today, is the .elf
file format (Executable and Linkable Format).
But a PSP won’t run them directly. To do that, they need to be sandwiched into the ubiquitous EBOOT.PBP format used by all PSP applications - homebrews or otherwise.
The creation of a software that would take an .elf
file as input and spit out a PBP file was an indispensable first step towards the creation of homemade applications.
In May 2005, a Windows program was created to do just that. The developer was a guy who called himself… loser?
To test the application, I grabbed a random .elf
(a tech demo, as it happens) and fed it to the elf2pbp program loser created 16 years ago.
The outcome: the program takes the original .elf
file - unchanged, but renamed to data.psp
- and adds a PARAM.SFO
which encloses some basic metadata.
Oh, and adds the icon.
So unless the 2005-era homebrew coder went through the trouble of removing the icon (or adding his own), the app was all but guaranteed to be distributed carrying the now well-known anime girl.
Modern iterations of the PSP toolchain still include an elf2pbp application, but the mandatory default icon has long since been removed. We don’t know what loser thinks of that.