Search found 8 matches
- Thu Nov 19, 2009 5:24 pm
- Forum: PSP Development
- Topic: MP3 not playing with OSLib 2.10
- Replies: 6
- Views: 4138
The EPC run this in psplink calc $epc-$mod psp-addr2line -e youapp.elf (addr from calc) and it will tell you the line of code you need to look at. The problem is a bad pointer. you have v0 as null then you are trying to reference v0 + 104 which is an invalid memory address. NOTE: add -g to your cfl...
- Wed Nov 18, 2009 7:37 pm
- Forum: PSP Development
- Topic: MP3 not playing with OSLib 2.10
- Replies: 6
- Views: 4138
- Wed Nov 18, 2009 4:51 pm
- Forum: PSP Development
- Topic: MP3 not playing with OSLib 2.10
- Replies: 6
- Views: 4138
- Wed Nov 18, 2009 4:41 pm
- Forum: PSP Development
- Topic: MP3 not playing with OSLib 2.10
- Replies: 6
- Views: 4138
MP3 not playing with OSLib 2.10
Dear community, I'm simply trying to play an MP3 with OSLib 2.10 but... it fails. Tags have been removed with the program 'Mp3 TAG Remover!' (I've verified with XMPlay before and after removal). Note: I program in C++ PSP_MODULE_INFO("Screamwind", 0, 0, 2); PSP_MAIN_THREAD_...
- Thu Nov 12, 2009 5:16 am
- Forum: PSP Development
- Topic: Attempting to run my first program: 0x80020148
- Replies: 5
- Views: 3282
use include $(PSPSDK)/lib/build.mak instead of build_prx.mak I don't exactly know the difference but it does some things to ensure that it will start properly. in your main.c (or something) cou have to use PSP_MODULE_INFO PSP_MAIN_THREAD_ATTR PSP_HEAP_SIZE_KB I've done all the changes and it is per...
- Tue Nov 10, 2009 8:23 pm
- Forum: PSP Development
- Topic: Attempting to run my first program: 0x80020148
- Replies: 5
- Views: 3282
[SOLVED] !!!
Hi, I've solved all my problems... http://www.bbros.be/pspdev/tmp/hello.jpg Here is the Makefile I use TARGET = hello OBJS = hello.o snprintf.o PSP_ONLY = 1 # Define to build this as a prx (instead of a static elf) BUILD_PRX = 1 # Define the name of our custom exports (minus ...
- Tue Nov 10, 2009 5:38 pm
- Forum: PSP Development
- Topic: Attempting to run my first program: 0x80020148
- Replies: 5
- Views: 3282
- Tue Nov 10, 2009 7:23 am
- Forum: PSP Development
- Topic: Attempting to run my first program: 0x80020148
- Replies: 5
- Views: 3282
Attempting to run my first program: 0x80020148
Hi, I use devKitPSP release 11 to compile the following program: #include <pspkernel.h> #include <pspdebug.h> #include <pspdisplay.h> PSP_MODULE_INFO("Hello", 0, 1, 1); /* Exit callback */ int exit_callback(int arg1, int arg2, void *common) { sceKer...