Editing SELF - SPRX
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 375: | Line 375: | ||
Fields whose name are of the form: unk_0x[0-9 aA-fF], are unknown fields whose offset is in the name, e.g. unk_0x18 is at offset 0x18.<source lang="c"> | Fields whose name are of the form: unk_0x[0-9 aA-fF], are unknown fields whose offset is in the name, e.g. unk_0x18 is at offset 0x18.<source lang="c"> | ||
// checked FW | // checked FW 3.xx-6.xx. | ||
// FW < | // FW <= 1.76 files do not have a PT_SCE_MODULE_PARAM segment, unchecked FW 2.xx. | ||
struct SceModuleParamV1 { | struct SceModuleParamV1 { | ||
uint64_t size; // 0x18 | uint64_t size; // 0x18 | ||
Line 383: | Line 383: | ||
uint32_t sdk_version; | uint32_t sdk_version; | ||
} | } | ||
// checked 7.55-9.00, unchecked FW > | // checked 7.55-9.00, unchecked FW > 9.00 and 7.00 <= FW < 7.55 | ||
struct SceModuleParamV2 { | struct SceModuleParamV2 { | ||
uint64_t size; // 0x20 | uint64_t size; // 0x20 |