An experimental emulator
Go to file
dingusdev c8611dc293 Code cleanup + procedures for cleanup 2020-02-27 21:03:01 -07:00
.github/ISSUE_TEMPLATE Update issue templates 2019-07-07 11:27:39 -07:00
cpu/ppc Code cleanup + procedures for cleanup 2020-02-27 21:03:01 -07:00
debugger debugger: fix address printing under Windows. 2020-02-23 18:52:09 +01:00
devices Small formatting + logging fixes 2020-02-27 18:41:02 -07:00
thirdparty Code cleanup + procedures for cleanup 2020-02-27 21:03:01 -07:00
.gitignore Fixed gitignore to recognize directories 2020-01-04 10:07:05 -07:00
CMakeLists.txt Code cleanup + procedures for cleanup 2020-02-27 21:03:01 -07:00
CMakeSettings.json Subtraction operation fixes in progress 2020-02-08 20:35:11 -07:00
CONTRIBUTING.md Code cleanup + procedures for cleanup 2020-02-27 21:03:01 -07:00
LICENSE Initial commit 2019-07-01 19:13:30 -07:00
README.md Make dingusppc and testppc independent targets. 2020-02-10 16:41:40 +01:00
dppcicon.ico More fixes, plus a temp icon 2019-07-19 14:24:39 -07:00
endianswap.h Move endian swapping code to endianswap.h. 2020-01-12 22:51:37 +01:00
icon.rc More fixes, plus a temp icon 2019-07-19 14:24:39 -07:00
main.cpp Code cleanup + procedures for cleanup 2020-02-27 21:03:01 -07:00
memreadwrite.h ppcmmu: handle unaligned reads and writes. 2020-01-30 00:45:39 +01:00

README.md

DingusPPC by divingkatae

Be warned the program is highly unfinished and could use a lot of testing. Any feedback is welcome.

PHILOSOPHY OF USE

Sheepshaver, while technically impressive, is becoming harder to compile and run. While many other PowerPC emus exist, none of them currently attempt emulation of PPC Macs (except for QEMU).

This program aims to not only improve upon what Sheepshaver has done, but also to provide a better debugging environment. This currently is designed to work best with PowerPC Old World ROMs, including those of the PowerMac G3 Beige.

HOW TO USE

This program currently uses the command prompt to work.

There are a few command line arguments one must enter when starting the program.

-realtime

Run the emulator in runtime.

-debugger

Enter the interactive debugger.

HOW TO COMPILE

You'll need to install development tools first.

At least, a C++ compiler and CMake are required.

For example, to build the project in a Unix-like environment, you'll need to run the following commands in the OS terminal:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make dingusppc

You may specify another build type using the variable CMAKE_BUILD_TYPE.

Due to the incomplete status of the program at this time, no additional libraries are required.

Future versions will include SDL 2 as a requirement.

Testing

DingusPPC includes a test suite for verifying the correctness of its PowerPC CPU emulation. To build the tests, use the following terminal commands:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make testppc

Intended Minimum Requirements

  • Windows 7 or newer (64-bit), Linux 4.4 or newer, Mac OS X 10.9 or newer (64-bit)
  • Intel Core 2 Duo or better
  • 2 GB of RAM
  • 2 GB of Hard Disk Space
  • Graphics Card with a minimum resolution of 800*600

Compiler Requirements

  • GCC 4.7 or newer (i.e. CodeBlocks 13.12 or newer)
  • Visual Studio 2013 or newer