Code: Select all
./psp-gcc -march=r4000 -g -mgp32 -mlong32 -c hellopsp.c
./psp-gcc -march=r4000 -g -mgp32 -mlong32 -c pg.c
./psp-as -march=r4000 -g -mgp32 -O -o startup.o startup.s
./psp-ld -O0 startup.o hellopsp.o pg.o -M -Ttext 8900000 -q -o out > hellopsp.map
Code: Select all
./psp-gcc -march=r4000 -g -mgp32 -c -xassembler -O -o startup.o startup.s
However, at the end of the make.bat in the helloworld source, it has a command, "outpatch." I'm totally new to command line stuff, and when I try to call it, it doesn't do anything. I've successfully been able to run the already compiled helloworld source, but not my own.
I also noticed that the size of data.psp in the already compiled version is about 62Kb, where mine is about 71Kb. However, when I used psp-strip, it made my file 62Kb. I've tried both versions, and neither work.
Sorry for the newb questions, but I don't see what I'm doing wrong.
-Matt