800200D9

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
Dariusc123456
Posts: 388
Joined: Tue Aug 12, 2008 12:46 am

800200D9

Post by Dariusc123456 »

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
PsPfReAK
Posts: 61
Joined: Sat Mar 28, 2009 9:02 am
Contact:

O.o

Post by PsPfReAK »

just post the code here, use the code tags when you do.
:)
Dariusc123456
Posts: 388
Joined: Tue Aug 12, 2008 12:46 am

Post by Dariusc123456 »

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.
Smong
Posts: 82
Joined: Tue Sep 04, 2007 4:44 am

Post by Smong »

io.h:

Code: Select all

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: Select all

#include "io.h"
struct files ctx;
You are trying to allocate ~320mb on a PSP. Make those arrays smaller.
(+[__]%)
Dariusc123456
Posts: 388
Joined: Tue Aug 12, 2008 12:46 am

Post by Dariusc123456 »

How is that the problem? Do I need to make it less than the ram size?
NoEffex
Posts: 106
Joined: Thu Nov 27, 2008 6:48 am

Post by NoEffex »

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
User avatar
Jim
Posts: 476
Joined: Sat Jul 02, 2005 10:06 pm
Location: Sydney
Contact:

Post by Jim »

>Chortle<
Post Reply