Jabberwocky
Joined: 03 Aug 2005 Posts: 43
|
Posted: Sun Aug 14, 2005 8:11 am Post subject: Kernel mode load fail... why?! |
|
|
I've been playing around with some stuff on the PSP and it's all working great in user mode, but when I try and boot the ELF in kernel mode it fails with error 800200D9, which is apparently running out of memory.
Is there a limit to the ELF size loadable in kernel mode? Mine is 224KB... which doesn't seem that big to me.
All I'm changing in the code is:
| Code: | PSP_MODULE_INFO(test, 0, 1, 1);
PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER | PSP_THREAD_ATTR_VFPU);
|
to
| Code: | PSP_MODULE_INFO(test, 0x1000, 1, 1);
PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_VFPU);
|
Any help much appreciated. |
|