Ok so here is my problem. When I compile my app it gives me no errors or warnings. And I am pretty sure that my code is correct ;-)
Except when I go to run it on my PSP it says "Corrupted Data".
So it should be my Makefile, my PSP or my pspsdk, right?
Well I tried it on two PSPs one has 5.00M33-3 and the other has 4.01M33-2
So here is my Makefile and if you want my main.c I will give it to you.
Code: Select all
TARGET = converter
OBJS = main.o graphics.o framebuffer.o mp3player.o
CFLAGS = -O2 -G0 -Wall
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)
LIBDIR =
LIBS = -lpspgu -lpng -lz -lm -lpspgum -lm -lmad -lpspaudiolib -lpspaudio -lpsppower
LDFLAGS =
EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = PSP Unit Converter
PSPSDK=$(shell psp-config --pspsdk-path)
BUILD_PRX = 1
PSP_FW_VERSION = 371
include $(PSPSDK)/lib/build.mak
Yeah... so... Thanks in advanced!
ITDemo