aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 2ab400c7158db8660c153aae312f61e3df7153b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# CHIP8Emu
An emulator for CHIP-8 written in C++

![image](https://github.com/compromyse/CHIP8Emu/assets/71056504/f87e9e73-f880-4d60-a61b-cdb40791211b)

## Building

### Requirements

* CMake
* SDL2
* Make

### Running the build

```sh
mkdir build; cd build
cmake ..
make
```

## Syntax
```sh
./chip8emu <Scale> <Delay> <ROM>
```

# Thanks!