Eboot.PBP: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
m (→‎DATA.PSP: correct previous edit)
m (minor details)
Line 9: Line 9:
| 0x00 || The PBP signature, always is 0x50425000 or the string "<null char>PBP" ||  
| 0x00 || The PBP signature, always is 0x50425000 or the string "<null char>PBP" ||  
|-
|-
| 0x04 || Unknown purpose, possibily the version number.  Currently is always 0x00000100 or 0x01000100 || e.g.:0x01000100 on MINIS
| 0x04 || Unknown purpose, possibily the version number.  Currently is always 0x00000100 or 0x01000100 || e.g.:0x01000100 on some MINIS
|-
|-
| 0x08 || Offset of the file PARAM.SFO (this value should always be 0x28) ||  
| 0x08 || Offset of the file PARAM.SFO (this value should always be 0x28) ||  
Line 15: Line 15:
| 0x0C || Offset of the file ICON0.PNG ||  
| 0x0C || Offset of the file ICON0.PNG ||  
|-
|-
| 0x10 || Offset of the file ICON1.PMF ||  
| 0x10 || Offset of the file ICON1.PMF or ICON1.PNG  ||  
|-
|-
| 0x14 || Offset of the file PIC0.PNG or UNKNOWN.PNG || value can set as same than for other ICON
| 0x14 || Offset of the file PIC0.PNG or UNKNOWN.PNG || Offset value can be same than ICON1
|-
|-
| 0x18 || Offset of the file PIC1.PNG ||  
| 0x18 || Offset of the file PIC1.PNG or PICT1.PNG ||  
|-
|-
| 0x1C || Offset of the file SND0.AT3 ||  
| 0x1C || Offset of the file SND0.AT3 ||  
Line 33: Line 33:
Basically the information file for the PBP - has title, parental control level etc
Basically the information file for the PBP - has title, parental control level etc


See X1 as example of Minis SFO [[http://www.ps3devwiki.com/wiki/PARAM.SFO#ATTRIBUTE_In_Bootable_content]]
SFO Attribut of MINIS are for X1 category [http://www.ps3devwiki.com/wiki/PARAM.SFO#ATTRIBUTE_In_Bootable_content ATTRIBUTE_In_Bootable_content]


==ICON0.PNG==
==ICON0.PNG==
The little icon in 32bit colour PNG format.  Max resolution is 144x80.
The little icon in 32bit colour PNG format.  Max resolution is 144x80.
==ICON1.PMF==
==ICON1.PMF or ICON1.PNG==
The little animated icon in PSMF format.
The little animated icon in PSMF format.
For PS1 classic: ICON1.PNG (310x180)
==PIC0.PNG==
==PIC0.PNG==
"Information" image in PNG format.  Max resolution is 480x272.
"Information" image in PNG format.  Max resolution is 480x272.
==PIC1.PNG==
==PIC1.PNG or PICT1.PNG==
The background image in 32bit colour PNG format.  Max resolution is 480x272.
The background image in 32bit colour PNG format.  Max resolution is 480x272.
For PS1 classic: PICT1.PNG (480x272)
==SND0.AT3==
==SND0.AT3==
The sound which is played when the icon is highlighted, in ATRAC3 format.
The sound which is played when the icon is highlighted, in ATRAC3 format.
Line 51: Line 55:


*Boot/Warning image:
*Boot/Warning image:
For MINIS : "MINIS" logo. standard PNG format (480x272, Bit depth: 8 ...) +Ancillary chunks: ICC
For MINIS : "MINIS" logo. standard PNG format (480x272) +Ancillary chunks: ICC profile


For PS1 classic:
For PS1 classic:
Line 64: Line 68:




Around EBOOT.PBP, little bit of basic infos on the talk page also
Around EBOOT.PBP, basic infos on the talk page also.

Revision as of 16:03, 27 May 2012

Eboot.PBP

Used on PSP (and PSN content:PS1 classic & MINIS), to be loaded with built in pspemulator (and ps1emu ?) on PS3

Header and filetable

Offset Purpose Notes
0x00 The PBP signature, always is 0x50425000 or the string "<null char>PBP"
0x04 Unknown purpose, possibily the version number. Currently is always 0x00000100 or 0x01000100 e.g.:0x01000100 on some MINIS
0x08 Offset of the file PARAM.SFO (this value should always be 0x28)
0x0C Offset of the file ICON0.PNG
0x10 Offset of the file ICON1.PMF or ICON1.PNG
0x14 Offset of the file PIC0.PNG or UNKNOWN.PNG Offset value can be same than ICON1
0x18 Offset of the file PIC1.PNG or PICT1.PNG
0x1C Offset of the file SND0.AT3
0x20 Offset of the file DATA.PSP
0x24 Offset of the file DATA.PSAR

Then the file PARAM.SFO starts (at 0x28)

PARAM.SFO

Basically the information file for the PBP - has title, parental control level etc

SFO Attribut of MINIS are for X1 category ATTRIBUTE_In_Bootable_content

ICON0.PNG

The little icon in 32bit colour PNG format. Max resolution is 144x80.

ICON1.PMF or ICON1.PNG

The little animated icon in PSMF format.

For PS1 classic: ICON1.PNG (310x180)

PIC0.PNG

"Information" image in PNG format. Max resolution is 480x272.

PIC1.PNG or PICT1.PNG

The background image in 32bit colour PNG format. Max resolution is 480x272.

For PS1 classic: PICT1.PNG (480x272)

SND0.AT3

The sound which is played when the icon is highlighted, in ATRAC3 format.

DATA.PSP

More information, except more targetted at the executable portion (contains info such as ELF size) such:

  • Boot/Warning image:

For MINIS : "MINIS" logo. standard PNG format (480x272) +Ancillary chunks: ICC profile

For PS1 classic:

  • When the eboot is signed as free demo

DATA.PSAR

The bulk of the EBOOT, and the portion which contains the executable code.


http://endlessparadigm.com/forum/showthread.php?tid=13


Around EBOOT.PBP, basic infos on the talk page also.