DobieStation/README.md

30 lines
1 KiB
Markdown
Raw Normal View History

# 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.
2018-02-04 18:37:29 -05:00
IRC: Join #dobiestation on irc.badnik.net for discussing development.
## Compiling
2018-02-03 22:11:09 -05:00
DobieStation uses Qt 5 and currently only supports qmake and meson.
### Building with qmake
```
cd DobieStation/DobieStation
qmake DobieStation.pro
make
```
2018-02-03 22:11:09 -05:00
### Building with meson
```
meson build --buildtype=release
cd build
ninja
```
## 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.
## Contributing
2018-02-03 22:11:09 -05:00
First, review the [Contribution Guide](../master/CONTRIBUTING.md). Once you have done so, take a look at the [Task List](../master/TASKS.md) and pick something that interests you.