This repository contains a basic NES emulator written in C++. It is currently a work in progress.
To build the emulator you will need the following:
- C Compiler
- CMake
- Make
On macOS, you can build it by running the following:
# Install cmake and make
brew install cmake make
# Create a build directory and cd into it
mkdir build && cd build
# Run cmake and build
cmake .. && make