| View previous topic :: View next topic |
| Author |
Message |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Sat Apr 11, 2009 8:06 am Post subject: 800200D9 |
|
|
Can anyone help me fix my code so it dont popup this error code at the start of the eboot?
I asked this awhile back, but now i cant find away to fix it.
http://www.sendspace.com/file/8k1nff
This is old, but is good to me. I'm not sure, but I think its in the struct under io.h . Let me know
thanks |
|
| Back to top |
|
 |
PsPfReAK
Joined: 28 Mar 2009 Posts: 61
|
Posted: Sat Apr 11, 2009 8:14 am Post subject: O.o |
|
|
just post the code here, use the code tags when you do.
:) |
|
| Back to top |
|
 |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Sat Apr 11, 2009 2:32 pm Post subject: |
|
|
| I already included the source. I made the eboot with it to show what it does if no one beleive me. I might try decrease the buffer size, and create a thread to operate on. |
|
| Back to top |
|
 |
Smong
Joined: 04 Sep 2007 Posts: 82
|
Posted: Sat Apr 18, 2009 9:02 am Post subject: |
|
|
io.h:
| Code: | struct files {
char *signature;
char *name[16*1024*1024];
char *block[16*1024*1024];
char *hash[16*1024*1024];
int size[16*1024*1024];
int len[16*1024*1024];
int pos;
}; |
io.c:
| Code: | #include "io.h"
struct files ctx; |
You are trying to allocate ~320mb on a PSP. Make those arrays smaller. _________________ (+[__]%) |
|
| Back to top |
|
 |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Tue Apr 21, 2009 10:58 am Post subject: |
|
|
| How is that the problem? Do I need to make it less than the ram size? |
|
| Back to top |
|
 |
NoEffex
Joined: 27 Nov 2008 Posts: 108
|
Posted: Tue Apr 21, 2009 11:23 am Post subject: |
|
|
| Dariusc123456 wrote: | | How is that the problem? Do I need to make it less than the ram size? | Very much so. _________________ Programming with:
Geany + Latest PSPSDK from svn |
|
| Back to top |
|
 |
Jim

Joined: 02 Jul 2005 Posts: 487 Location: Sydney
|
|
| Back to top |
|
 |
|