PSP Programming Tutorial for Windows (C/C++)
Plus SDL and all with out Cygwin
This tutorial that i have written will teach you step by step how to set up you psp development environment for windows in less than 15 minutes and without the need to install any large files or Shells (Cygwin).
Before i begin i would like to thank heimdall for the excellent Win32 toolchain and pspsdk installer. (Minimalist PSPSDK for Windows)
Also i would like to add, If you are new to C/C++ I would highly recommend you begin your programming adventure on a computer, not the psp. For serious "want to be" programmers, i would highly recommend taking courses at your local community college.
------
-INSTALLATION-
d
1. Click the following link to download the Win32 native toolchain and pspsdk installer
Code:
http://sourceforge.net/projects/minpspw/files/SDK%20%2B%20devpak/pspsdk%200.9.2/
(Created by Heimdall).
2. Download the file: "pspsdk-setup-0.9.2.exe" from sourceforge.
3. Run the file that was just downloaded and when it asks where to install change "C:/pspsdk" to "C:/pspdev". The rest just press next til finished.
4. Congratulations, You have just installed the pspsdk, toolchain, and libraries needed to program on the psp.
5. You should now have a folder inside your harddrive named pspdev. (C:/pspdev/)
------
-SETUP-
6. Open up Notepad and paste the following code:
Code:
set path=%path%;c:\pspdev\bin
set PSPSDK=C:\pspdev\psp\sdk
cmd
7. Save the file as: "start.bat", Save as type: "all files", and place it inside C:/pspdev/
8. Open "start.bat". The following information should be displayed
Code:
C:\pspdev>set path=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\Py
thon22;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Subversion\bin;C:/p
spdev/bin;C:/pspdev/bin;;;;;C:\pspdev\bin;c:\pspdev\bin
C:\pspdev>set PSPSDK=C:\pspdev\psp\sdk
C:\pspdev>cmd
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\pspdev>
9. Congratulations, You have just setup your handy dandy compiler.
Bookmarks