https://github.com/libretro/parallel-n64
Optimized/rewritten Nintendo 64 emulator made specifically for Libretro. Originally based on Mupen64 Plus.
https://github.com/libretro/parallel-n64
Last synced: about 1 year ago
JSON representation
Optimized/rewritten Nintendo 64 emulator made specifically for Libretro. Originally based on Mupen64 Plus.
- Host: GitHub
- URL: https://github.com/libretro/parallel-n64
- Owner: libretro
- Created: 2013-06-03T01:11:25.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2025-03-02T18:11:02.000Z (over 1 year ago)
- Last Synced: 2025-03-02T19:23:04.255Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 40.2 MB
- Stars: 343
- Watchers: 48
- Forks: 133
- Open Issues: 253
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.org/libretro/parallel-n64)
[](https://ci.appveyor.com/project/bparker06/parallel-n64/branch/master)
# mupen64plus-libretro
To enable a dynarec CPU core you must pass the WITH_DYNAREC value to make:
* make WITH_DYNAREC=x86
* make WITH_DYNAREC=x86_64
* make WITH_DYNAREC=arm
* make WITH_DYNAREC=aarch64
New make options:
* USE_CXD4_NEW - use the most recent version of CXD4 that was verified on Android
* USE_SSE2NEON - enable SSE2 vectorized routines on ARMv7+ via hacked SSE2NEON library
To build Android hardfp library with the new CXD4 RSP + NEON + Parallel RDP do:
* ndk-build -j8 USE_SSE2NEON=1 APP_ABI=armeabi-v7a-hard
To build Android arm64 library with the new CXD4 RSP + Parallel RDP + dynarec do:
* ndk-build APP_ABI=arm64-v8a