/chip-8

Primary LanguageCMIT LicenseMIT

CHIP-8

CHIP-8 interpreter written in C using Raylib for graphics

Build From Source

    git clone https://github.com/WuGambinos/chip-8.git

Requirements

- make
- gcc 
- MinGW (Windows)

Windows

    cd chip-8
    mkdir build
    cmake -G "MinGW Makefiles"..
    mingw32-make

Mac OS

    cd chip-8
    mkdir build
    cmake ..
    make

Linux

    cd chip-8
    mkdir build
    cmake ..
    make

🕹️ Run Emulator:

Windows

    cd chip-8
    cd build
    ./chip8 path/to/rom

Mac OS

    cd chip-8
    cd build
    ./chip8 path/to/rom

Linux

    cd chip-8
    cd build
    ./chip8 path/to/rom

TODO

  • Fix Documentation