From 1c42acca2491769a261de87be4904ba12ae5637e Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Wed, 27 Aug 2025 09:39:20 -0400 Subject: . --- projects/chip8emu.html | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 projects/chip8emu.html (limited to 'projects/chip8emu.html') diff --git a/projects/chip8emu.html b/projects/chip8emu.html new file mode 100644 index 0000000..7e0aab0 --- /dev/null +++ b/projects/chip8emu.html @@ -0,0 +1,94 @@ + + + + + + + + + + CHIP8Emu | COMPROMYSE + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+

CHIP8Emu

+
+

An Emulator/Interpreter for CHIP-8.

+
C++
+
+ + SOURCE +
+ +
+

+ +

About The Project

+ +

CHIP8Emu is an emulator for the 1977 interpreter CHIP-8 written in C++. It aims to make games designed for the same playable on modern hardware.

+ +

Compilation & Usage

+ +

For compilation, you need Clang, CMake, GNUMake, and SDL2. With them installed, run the following. +

mkdir build; cd build
+cmake ..
+make
+
+Replace [scale] with your preferred display scaling, [delay] with the your preferred delay, and [ROM] with the path to the game you intend to play. +
./chip8emu [scale] [delay] [ROM]
+
+

+ +
+ +
+ + + +
+ + + + -- cgit v1.2.3