It works really good!
I have a 88v3 and i was finally able to launch iso!!!
I'm just wondering how to had plugins, since there is no recovery mode...
But it's still a big step forward!
Thx Davee for the hen, and thx to the other dev for this cfw enabler
Guys where can I download this cf for chickhen? can someone give me some link, thanks in advance
Code:/* ohai nubcakes */ #include <pspkernel.h> #include <pspsysmem_kernel.h> #include "rebootex.h" PSP_MODULE_INFO("HENControl_module", 0x1000, 0, 1); #define MAKE_CALL(a, f) _sw(0x0C000000 | (((u32)(f) >> 2) & 0x03ffffff), a) int (* DecompressReboot)(u32 addr, u32 size, void *unk, void *unk2, void *unk3) = NULL; void ClearCaches() { sceKernelIcacheInvalidateAll(); sceKernelDcacheWritebackInvalidateAll(); } int DecompressRebootPatched(u32 addr, u32 size, void *unk, void *unk2, void *unk3) { sceKernelGzipDecompress((void *)0x88FC0000, size_rebootex, rebootex, NULL); return DecompressReboot(addr, size, unk, unk2, unk3); } int PatchLoadExec() { SceModule *mod = sceKernelFindModuleByName("sceLoadExec"); u32 text_addr = mod->text_addr; MAKE_CALL(text_addr + 0x27DC, DecompressRebootPatched); _sw(0x3C0188FC, text_addr + 0x2820); DecompressReboot = (void *)text_addr; ClearCaches(); } int module_start(SceSize args, void *argp) { PatchLoadExec(); return 0; }
i doubt it.This is great news !!! Lets hope it gets ported to the 3000 quickly...
try this:i need to get to flash 0 so i can manualy replace a gameboot.pmf file.. i tryed using one with gamebootflasher and everytime i load a homebrew it freezes at psp logo.. it give me a black square at the top left, makes funy noises and it hangs and it shuts off the psp.. i cant load pspfiler or any homebrew at all at this point .. im stuck untill some dev makes a program like vsh menu to toggle through flash zero recovery mode like the m33's vsh menu to toggle through flash 0 so when i load a usb it goes into flash 0. is there a way into geting into flah 0 with out having to use pspfiler or any type of program.. i cant load homebrew. is it impossible to add a flash 0 toggle recovey with hen so i dont have to use programs to get to f0. i need to change gameboot.pmf.. thats whats causing the problem... or is recovery menu possible at this point?![]()
ohai nubcakes??:laugh:lolCode:/* ohai nubcakes */ #include <pspkernel.h> #include <pspsysmem_kernel.h> #include "rebootex.h" PSP_MODULE_INFO("HENControl_module", 0x1000, 0, 1); #define MAKE_CALL(a, f) _sw(0x0C000000 | (((u32)(f) >> 2) & 0x03ffffff), a) int (* DecompressReboot)(u32 addr, u32 size, void *unk, void *unk2, void *unk3) = NULL; void ClearCaches() { sceKernelIcacheInvalidateAll(); sceKernelDcacheWritebackInvalidateAll(); } int DecompressRebootPatched(u32 addr, u32 size, void *unk, void *unk2, void *unk3) { sceKernelGzipDecompress((void *)0x88FC0000, size_rebootex, rebootex, NULL); return DecompressReboot(addr, size, unk, unk2, unk3); } int PatchLoadExec() { SceModule *mod = sceKernelFindModuleByName("sceLoadExec"); u32 text_addr = mod->text_addr; MAKE_CALL(text_addr + 0x27DC, DecompressRebootPatched); _sw(0x3C0188FC, text_addr + 0x2820); DecompressReboot = (void *)text_addr; ClearCaches(); } int module_start(SceSize args, void *argp) { PatchLoadExec(); return 0; }