| View previous topic :: View next topic |
| Author |
Message |
kundarmah
Joined: 18 May 2009 Posts: 12
|
Posted: Sun Oct 11, 2009 3:47 am Post subject: [HELP] How to test your applications |
|
|
Is there a way to test your newly programmed homebrew application without putting it into your psp? or to test it in PC?
I'm tired of compiling then transferring the file to the PSP just to test my app. |
|
| Back to top |
|
 |
iceman755
Joined: 21 Jul 2008 Posts: 34
|
Posted: Sun Oct 11, 2009 10:08 am Post subject: |
|
|
PSPLink is what you need, if I remember right it comes (or the source) in the sdk files. _________________ "Libera eas de ore leonis, ne absorbeat eas tartarus, ne cadant in obscurum" |
|
| Back to top |
|
 |
a_noob
Joined: 17 Sep 2006 Posts: 97 Location: _start: jr 0xDEADBEEF
|
Posted: Sun Oct 11, 2009 11:39 am Post subject: |
|
|
| Code: |
svn co svn://svn.ps2dev.org/psp/trunk/psplinkusb
pushd psplinkusb
make
make release
pushd usbhostfs_pc
make
sudo cp ./usbhostfs_pc $PSPDEV/bin/usbhostfs
popd
pushd pspsh
make
sudo cp ./pspsh $PSPDEV/bin/pspsh
popd
popd
|
_________________
| Code: | .øOº'ºOø.
'ºOo.oOº' |
|
|
| Back to top |
|
 |
Torch

Joined: 28 May 2008 Posts: 842
|
Posted: Mon Oct 12, 2009 4:40 am Post subject: |
|
|
| It's part of the regular SDK/Toolchain's build script. It should already be compiled and ready when you setup your environment. (Or should have failed on Cygwin while compiling remotejoy) |
|
| Back to top |
|
 |
willow :--)
Joined: 13 Jan 2007 Posts: 126
|
Posted: Tue Oct 13, 2009 7:04 pm Post subject: |
|
|
You can also abstract the problem and have a library that allows you to compile the game for Linux/Windows.
JGE++ does that.
PSPLink is still useful to test performance and rendering issues on the PSP of course. But at least, you can test everything that's not "PSP specific" on your computer.
There's also a PSP emulator but last time I tried t it was too slow to do some useful testing. _________________ Wagic. Play that card game against an AI on your PSP |
|
| Back to top |
|
 |
anmabagima
Joined: 01 Oct 2009 Posts: 96
|
Posted: Tue Oct 13, 2009 7:27 pm Post subject: |
|
|
Hi,
I'm using eclipse and pspsdk. All testing is done using PSPLink and it works very well. I would not do it completely on a PC as the performance on the PC could be very much missleading as well as the memory you have their available.
I would prefer PSPLink as it is easy to use and most of the time stable.
Regards
AnMaBaGiMa |
|
| Back to top |
|
 |
kundarmah
Joined: 18 May 2009 Posts: 12
|
Posted: Tue Oct 13, 2009 9:17 pm Post subject: |
|
|
| Thanks for all the replies. psplinkusb made my programming easy, Thanks to all of you. |
|
| Back to top |
|
 |
|