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
Search found 7 matches
- Thu Mar 02, 2006 6:07 pm
- Forum: PSP Development
- Topic: Maximum EBOOT.PBP size?
- Replies: 5
- Views: 2222
- Thu Mar 02, 2006 2:16 pm
- Forum: PSP Development
- Topic: Maximum EBOOT.PBP size?
- Replies: 5
- Views: 2222
- Thu Mar 02, 2006 1:48 pm
- Forum: PSP Development
- Topic: Maximum EBOOT.PBP size?
- Replies: 5
- Views: 2222
- Wed Mar 01, 2006 1:27 pm
- Forum: PSP Development
- Topic: Maximum EBOOT.PBP size?
- Replies: 5
- Views: 2222
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 ...
- Fri Feb 24, 2006 12:39 pm
- Forum: PSP Development
- Topic: fixup imports, stubs out of order error
- Replies: 3
- Views: 1578
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)
- Thu Feb 23, 2006 1:53 pm
- Forum: PSP Development
- Topic: fixup imports, stubs out of order error
- Replies: 3
- Views: 1578
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...
- Wed Feb 22, 2006 4:42 pm
- Forum: PSP Development
- Topic: fixup imports, stubs out of order error
- Replies: 3
- Views: 1578
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 ...