Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 513 Bytes

INSTALL.md

File metadata and controls

38 lines (24 loc) · 513 Bytes

Instructions

These instructions explain how to set up the tools required to build the emulator.

Linux

Fedora

To install the software required:

sudo dnf install make cmake g++ git SDL2 SDL2-devel

Other distros

TODO.

Windows

TODO.

MacOS

TODO.

Build the emulator

Now that you have installed all the required software you can build the emulator:

git clone https://github.com/leofracca/chip-8-emulator
cd chip-8-emulator
mkdir build
cd build
cmake ..
make