This is a CHIP-8 emulator written in C++.
CHIP-8 is an interpreted programming language, developed by Joseph Weisbecker. It was initially used on the RCA COSMAC VIP and other computers in the 1970s and 1980s. This project is an emulator for the CHIP-8 language, allowing you to run CHIP-8 programs and games.
- Full set of CHIP-8 instructions
- Display and keyboard input emulation
- Sound support
To build and run the emulator, you need to have a C++ compiler and CMake installed on your system.
- Clone the repository:
git clone https://github.com/Bruno-BRG/CHIP-8.git cd CHIP-8
Public code references from 1 repository
Build the project:
mkdir build
cd build
cmake ..
make
Usage
To run a CHIP-8 program, use the following command:
./chip8 path/to/program.ch8
Contributing
Contributions are welcome! Please fork the repository and create a pull request with your changes. License
This project is licensed under the MIT License. See the LICENSE file for details.
You can add this content to your README.md file to provide a comprehensive overview of your project.