Yeah oggzee sent me a pm about that and I also added it.stfour said:The apploader I was using initially doesn't clear correctly the bss.
Yeah oggzee sent me a pm about that and I also added it.stfour said:The apploader I was using initially doesn't clear correctly the bss.
ok,, i will do it later cause im working atm.Albatroz said:stfour said:Albatroz has made a very good forwarder channel for postloader 1... I bet it should works also for postLoader2 without any problem
Forwarder (by Albatroz)
http://gbatemp.net/t296955-postloader-v-1-...t&p=3722678
thx @stfour
its working fine once you place boot.dol here => sd:/apps/postloader/boot.dol
if you need another path or more paths, just let me know
FIX94 said:Yeah oggzee sent me a pm about that and I also added it.stfour said:The apploader I was using initially doesn't clear correctly the bss.
Yeah, hbc can run them just fine.stfour said:mmm... so I guess that also postLoader isn't able to run dolz...
Yeah, maybe...
A stupid question... does with hbc they run fine ?stfour said:Who is using dolz ? Do you have an example ?
A example is genplus-gx.
QUOTE(stfour @ Jul 14 2011, 03:38 PM)
Done!stfour said:Yes, also usb, thank you !![]()
Hey Albatroz, which forwarder base are you currently using? It interests meAlbatroz said:Done!
new postloader2 forwarder (priiloader forwarder) => http://www.mediafire.com/?26ca19cps4ntmbk
btw I created my own forwarder for postloader, if you have interest in another...stfour said:@FIX94... I confirm that running genplus lead just to a blank screen...
This must be solved !![]()
Heh yeah, I re-found this now:
http://gbatemp.net/t267434-making-a-genesi...t&p=3299587
It seems like your app booter still resets the video on 480p which is really annoying, I fixed it earlier like this:
CODEvoid *xfb = NULL;
GXRModeObj *rmode = NULL;
VIDEO_Init();ÂÂÂÂ
rmode = VIDEO_GetPreferredMode(NULL);
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));ÂÂÂÂ
VIDEO_Configure(rmode);ÂÂÂÂ
VIDEO_SetNextFramebuffer(xfb);
VIDEO_SetBlack(TRUE);
VIDEO_Flush();
FIX94 said:btw I created my own forwarder for postloader, if you have interest in another...stfour said:@FIX94... I confirm that running genplus lead just to a blank screen...
This must be solved !![]()
Heh yeah, I re-found this now:
http://gbatemp.net/t267434-making-a-genesi...t&p=3299587
It seems like your app booter still resets the video on 480p which is really annoying, I fixed it earlier like this:
CODEvoid *xfb = NULL;
GXRModeObj *rmode = NULL;
VIDEO_Init();ÂÂÂÂ
rmode = VIDEO_GetPreferredMode(NULL);
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));ÂÂÂÂ
VIDEO_Configure(rmode);ÂÂÂÂ
VIDEO_SetNextFramebuffer(xfb);
VIDEO_SetBlack(TRUE);
VIDEO_Flush();
I'm not quite sure, I'll try it later.stfour said:Thank you FIX94. I've looked to the link.. have you already tried to pass NULL arguments ?

stfour said:zizer said:stfour
can i change patch to emul nand? (neek)
i want use first emul nand for boot sneek , second for posloader
It isn't ready... postLoader2 was developed with this feature in mind. I hope this can be done in few day... but now I'm experimenting theming....![]()
GartimusPrime said:@stfour...do you think you will update one more time before your holiday? not a big deal but if so will you be able to add the U channel support?

i don't see U in those letters!!stfour said:GartimusPrime said:@stfour...do you think you will update one more time before your holiday? not a big deal but if so will you be able to add the U channel support?
now !![]()
![]()
postLoader2 b17
* Implemented davebaol (thx for share this !!!) AHBPROT fix. Started from priiloader, postLoader gains AHBPROT and is capable to spawn homebrew with full hardware access. (tested with MMM 13.4)
* Added information on current ios and AHBPROT status on gui
* Changed a bit menus... only first line of header is drawn with normal font... other lines are drawn with small one
* Implemented "Other" channels titles. This will show titles with starting letter != HWFECJLMNPQ
* Corrected wrong color inversion on some built-in textures
* Disabled remount of devices when nand menu is choosen.
* Corrected a bug on displaying icons after nand browse.
* Updated appbooter with code suggested by FIX94
* Dollz supported
* Corrected a bug introduced in b16 that could not enable correctly emulation
(download on first page)
I hope to have not introduced to much bugs![]()
bool IsDollZ (u8 *buff)
ÂÂÂÂ{
ÂÂÂÂint ret;
ÂÂÂÂ
ÂÂÂÂu8 dollz_stamp[] = {0x3C, 0x20, 0x81, 0x60, 0x7C, 0x78, 0xE2, 0xA6, 0x64, 0x63, 0xA0, 0x00};
ÂÂÂÂint dollz_offs = 0x100;
ÂÂÂÂ
ÂÂÂÂret = memcmp (&buff[dollz_offs], buff, sizeof(dollz_stamp));
ÂÂÂÂif (ret == 0) return true;
ÂÂÂÂ
ÂÂÂÂreturn false;
ÂÂÂÂ}
GartimusPrime said:i don't see U in those letters!!
Thanks, will add it now to my forwarderstfour said:@FIX94
Use this code to detect if is a dollz and then force arg to NULL... it works !
Code:bool IsDollZ (u8 *buff) ÂÂÂÂ{ ÂÂÂÂint ret; ÂÂÂÂ ÂÂÂÂu8 dollz_stamp[] = {0x3C, 0x20, 0x81, 0x60, 0x7C, 0x78, 0xE2, 0xA6, 0x64, 0x63, 0xA0, 0x00}; ÂÂÂÂint dollz_offs = 0x100; ÂÂÂÂ ÂÂÂÂret = memcmp (&buff[dollz_offs], buff, sizeof(dollz_stamp)); ÂÂÂÂif (ret == 0) return true; ÂÂÂÂ ÂÂÂÂreturn false; ÂÂÂÂ}

sorry......my bad!!!stfour said:GartimusPrime said:i don't see U in those letters!!
Yes it's true... it is because is other... "other" support all letters missing in that list![]()
Try it, you will understand !



