1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/emulators/ppsspp/pkg-descr
Jan Beich 35ddcdf82f emulators/ppsspp: add new port
PPSSPP is a PSP emulator written in C++. It translates PSP CPU
instructions directly into optimized x86, x64 and ARM machine code,
using JIT recompilers (dynarecs).

PPSSPP can thus run on quite low-spec hardware, including stronger
ARM-based phones and tablets, as long as there's OpenGL ES 2.0
support.

http://www.ppsspp.org/development.html

Requested by:	RyanBram @ PCBSD forums
Motivated by:	review D2608 (thus .ifdefs)
2015-05-24 00:20:11 +00:00

12 lines
574 B
Plaintext

PPSSPP is a HLE ("high level emulation") emulator, it simulates the
PSP OS as seen by the game rather than the full hardware. A program
running on the PSP OS can send raw display lists to the graphics
chips, but can't access the flash controller or the Media Engine
directly, instead it has to go through libraries and the PSP OS
kernel. We simply simulate these. This is a lot of work though, the
PSP OS is large and has plenty of functionality so achieving 100%
compatibility is difficult bordering on the impossible. We can get
close though.
WWW: http://www.ppsspp.org/