A dog-themed PS2 emulator
Go to file
Carles Pastor 8e38b7afbe Flatpak manifest cleanup
Make it build outside the source directory in order to remove the need
for shell clean commands.
2018-03-05 01:02:45 +01:00
dist Flatpak manifest cleanup 2018-03-05 01:02:45 +01:00
DobieStation Added basic IOP core 2018-03-02 22:59:57 -05:00
docs Add EE memory map 2018-03-03 16:48:50 -05:00
src Added IsC to IOP COP0 2018-03-03 18:50:37 -05:00
.gitignore Added CMake support and updated .gitignore 2018-02-05 23:14:42 +01:00
CMakeLists.txt Updated CMakeLists.txt and dropped meson support 2018-03-04 14:20:35 -05:00
CONTRIBUTING.md Create CONTRIBUTING.md 2018-02-02 18:54:35 -05:00
LICENSE Create LICENSE 2018-01-14 00:31:31 -05:00
README.md Updated CMakeLists.txt and dropped meson support 2018-03-04 14:20:35 -05:00
TASKS.md Update TASKS.md 2018-02-06 20:24:39 -05:00

DobieStation

A young PS2 emulator with plans for an optimized Android port, as well as a fast, accurate, and easy-to-use PC port. Basic homebrew is capable of running, but nothing else yet. Not intended for general use.

IRC: Join #dobiestation on irc.badnik.net for discussing development.

Compiling

DobieStation uses Qt 5 and supports qmake and CMake.

Building with qmake

cd DobieStation/DobieStation
qmake DobieStation.pro
make

Building with CMake

mkdir build
cd build
cmake ..
make

Using the Emulator

DobieStation requires a copy of the PS2 BIOS, which must be dumped from your PS2, and can only be run from the command line. Loading files from the GUI will be supported in the near future.

DobieStation takes two arguments from the command line: the name of the BIOS file, and the name of an ELF file.

PS2 Homebrew

Want to test DobieStation? Check out this repository: https://github.com/PSI-Rockin/ps2demos

Compatibility not guaranteed, but some demos do work.

Contributing

First, review the Contribution Guide. Once you have done so, take a look at the Task List and pick something that interests you.