mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
35ddcdf82f
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)
12 lines
574 B
Plaintext
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/
|