Search found 7 matches

by rousseau
Thu Mar 02, 2006 6:07 pm
Forum: PSP Development
Topic: Maximum EBOOT.PBP size?
Replies: 5
Views: 2121

You're right.. i misread that as 3.7mb, not 37. Guess I'll need to spend more time looking at the code.

Thanks for the tip
Steve
by rousseau
Thu Mar 02, 2006 2:16 pm
Forum: PSP Development
Topic: Maximum EBOOT.PBP size?
Replies: 5
Views: 2121

btw, thanks for the tip about FileAssistant. Launching the EBOOT from your program gives me some more debug info: block.c _allocSysMemory:SCE_KERNEL_SMEM_Addr: can not alloc 0x00001000 block.c _allocSysMemory:offset 0x00100000, size 0x023b06bc block.c SceKernelAllocPartitionM...
by rousseau
Thu Mar 02, 2006 1:48 pm
Forum: PSP Development
Topic: Maximum EBOOT.PBP size?
Replies: 5
Views: 2121

Thanks for the info. Im running the app from a 1gb memory stick, so i dont think access speed would have any effect.

Steve
by rousseau
Wed Mar 01, 2006 1:27 pm
Forum: PSP Development
Topic: Maximum EBOOT.PBP size?
Replies: 5
Views: 2121

Maximum EBOOT.PBP size?

Is there any maximum size for an EBOOT.PBP file? I'm working on a PSP conversion of a game and have built the exe for PSP (3.65mb), but get an error "The game could not be started. (800200D9)". Even running a basically empty main() function with the same libraries & exe size gives the ...
by rousseau
Fri Feb 24, 2006 12:39 pm
Forum: PSP Development
Topic: fixup imports, stubs out of order error
Replies: 3
Views: 1534

Thanks! It works now with the following libs section:

Code: Select all

LIBS = -lGLU -lGL -llua -llualib -ljpeg \
	-lstdc++ \
	-lm -lc -lpspvfpu

LIBS += $(shell $(PSPBIN)/sdl-config --libs)
by rousseau
Thu Feb 23, 2006 1:53 pm
Forum: PSP Development
Topic: fixup imports, stubs out of order error
Replies: 3
Views: 1534

Heres the verbose log: $ psp-fixup-imports.exe fs2_open.elf -v > fixuperr.txt Loading fs2_open.elf, outputting to fs2_open.elf Magic 464C457F, Class 01, Data 01, Idver 01 Type 0002, Machine 0008, Version 00000001, Entry 089000E4 Phoff 00000034, Shoff 006970D8, Flags 10A23001, Ehsize 00000034 Phentsi...
by rousseau
Wed Feb 22, 2006 4:42 pm
Forum: PSP Development
Topic: fixup imports, stubs out of order error
Replies: 3
Views: 1534

fixup imports, stubs out of order error

I get the following error when running the psp-fixup-imports program: psp-fixup-imports fs2_open.elf Error, could not fixup imports, stubs out of order. Ensure the SDK libraries are linked in last to correct this error make: *** [fs2_open.elf] Error 1 Any ideas here? This is ...