A PSP emulator for Android, Windows, Mac and Linux, written in C++. Want to contribute? Join us on Discord at https://discord.gg/5NJB6dD or just send pull requests / issues. For discussion use the forums at forums.ppsspp.org.
Go to file
2012-11-07 17:35:22 +01:00
android android buildfix 2012-11-06 17:23:33 +01:00
Common Warning fixes 2012-11-05 14:38:55 +01:00
Core Add custom "grain" for block allocator. Set the big block allocs to grain 256. 2012-11-07 17:35:22 +01:00
ext Fix Windows and Android builds. 2012-11-05 15:42:21 +01:00
GPU Halt GPU on invalid addresses, more accurate GetTicks in CoreTiming 2012-11-07 15:40:46 +01:00
headless Fix Windows and Android builds. 2012-11-05 15:42:21 +01:00
native@652045e462 Rewrite callback handling, part 1. All sorts of other fixes too. 2012-11-06 15:46:46 +01:00
SDL Added ~PSP decryption system using kirk-engine 2012-11-05 14:59:38 +01:00
Windows Fix Windows and Android builds. 2012-11-05 15:42:21 +01:00
.gitignore Never do RETURN() after blocking (Wait etc), as it will zero out a register in the wrong thread. 2012-11-07 16:05:39 +01:00
.gitmodules Use http instead of ssh to refere to the "native" submodule 2012-11-04 20:00:23 +01:00
Globals.cpp Switch to "GPL 2.0 or later" for various reasons. I wrote most of the code I imported from Dolphin (which is GPL2-but-not-later), so it should be OK. 2012-11-04 23:24:00 +01:00
Globals.h PPSSPP ported to Blackberry10 2012-11-05 23:09:49 +10:00
LICENSE.TXT Switch to "GPL 2.0 or later" for various reasons. I wrote most of the code I imported from Dolphin (which is GPL2-but-not-later), so it should be OK. 2012-11-04 23:24:00 +01:00
main.cpp Switch to "GPL 2.0 or later" for various reasons. I wrote most of the code I imported from Dolphin (which is GPL2-but-not-later), so it should be OK. 2012-11-04 23:24:00 +01:00
README.md fixed shell command formatting 2012-11-05 15:40:16 -05:00
stdafx.cpp Add snapshot of the whole source code. 2012-11-01 16:19:01 +01:00
stdafx.h Switch to "GPL 2.0 or later" for various reasons. I wrote most of the code I imported from Dolphin (which is GPL2-but-not-later), so it should be OK. 2012-11-04 23:24:00 +01:00

PPSSPP - a fast and portable PSP emulator

Written by Henrik Rydgård

Released under the GPL 2.0 in November 2012

Official website: http://www.ppsspp.org/

To contribute, see http://www.ppsspp.org/development.html .

For the latest source code and build instructions, see http://github.com/hrydgard/ppsspp

BASIC BUILD INSTRUCTIONS

(for more detailed instructions, see http://www.ppsspp.org/development.html )

First of all, after having checked out the source, don't forget to run:

git submodule init
git submodule update

in order to get the "native" library.

Now, the actual building:

PPSSPP currently has three build systems, for building for the following platforms:

  • Win32: MSVC
  • Android: Android.mk + Eclipse project
  • SDL (all other platforms): CMake

The ports and build files are located in the following three subdirectories:

  • android/
  • SDL/
  • Windows/

Please see the README in the directory corresponding to the platform that you want to build for above.

Windows is separate from SDL because it has some graphical Win-only features.

Long term, the Windows port should be changed to use WX, like Dolphin. At that point, the SDL port can probably go away as WX works for all Wintel-like platforms such as MacOSX and Linux.