A young PS2 emulator, originally forked from marco9999/orbum
Go to file
hch12907 8f9fe64e07 Core: adjust time slice and workers
the change was accidentally included in 3b6cc1f7
2019-01-26 15:03:06 +08:00
external Does this fix submodules? 2018-08-08 21:42:47 +08:00
liborbum Core: adjust time slice and workers 2019-01-26 15:03:06 +08:00
orbumfront Tweak main menu. 2018-08-06 22:40:56 +08:00
utilities Add in missing cereal includes. 2018-08-08 23:14:09 +08:00
.appveyor.yml Update CI scripts, readme. 2018-08-06 22:53:54 +08:00
.clang-format Testing a serialization solution, useful for debugging state. 2018-08-05 23:46:55 +08:00
.gitattributes Add .gitignore and .gitattributes. 2016-07-06 12:07:55 +08:00
.gitignore GIF: Finishing touches 2018-11-05 00:34:20 +08:00
.gitmodules Testing a serialization solution, useful for debugging state. 2018-08-05 23:46:55 +08:00
.travis.yml Update CI scripts, readme. 2018-08-06 22:53:54 +08:00
CMakeLists.txt More speedups... 2018-04-28 19:14:47 +08:00
CONTRIBUTING.md Add a CONTRIBUTING.md 2018-11-05 12:58:14 +08:00
LICENSE.md Update README and add a LICENSE file 2018-11-03 14:46:28 +08:00
README.md Update README. 2018-11-06 21:00:38 +08:00

README.md

orbum Travis CI Status AppVeyor Status

PS2 Emulator

Based off PCSX2's codebase, this is a completely rewritten PS2 emulator. It does not boot games (yet), only useful to developers for now.

I can only work on this in my spare time, so I am thankful for any help!

Current status

Status as of 2018/08/06:

  • Primary focus for now is on the VIF/IPU.
  • Work started on the SPU2 (DMA and IOP communication done, sound generation still to be done).
  • Work started on the SIO/SIO2 (controllers and MC's), IOP communication done.
  • No work done yet on the IPU and GSCore.
  • Everything else not mentioned mostly done (EECore, IOPCore, etc). Interpreters only for now, dynarecs will not come for a while.

Build Instructions

General Information

CMake is used as the build system.

The project uses the following dependecies:

  • Boost library, which is configured by the CMake FindBoost module.
  • Cereal for serialization.

Run the following commands to invoke a build:

git submodule update --init --recursive

mkdir build && cd build

cmake .. optionally specifying -DBOOST_ROOT={path} depending on your environment.

make (or equivalent)

Running

./orbumfront

Logging is always enabled and will save files to logs/ (uses boost logging).

The bios file scph10000.bin should be placed in bios/. Other bios' are not currently supported or tested with.

Upon Ctrl-C, a number of options will be presented:

  • A memory dump (binary) can be created that will be placed in the dumps/ folder.
  • A save state (json/text readable) can be created that will dump the PS2 state for inspection. Uses the saves/ folder.

Licence

GPL3