Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 732 Bytes

File metadata and controls

24 lines (18 loc) · 732 Bytes

CHIPS (A CHIP-8 Interpreter)

showcase

2024-04-18_22-13-44.mp4

compiling

You will need clang++, SDL2, cmake for building from source.

$ git clone https://github.com/kottesh/chips.git
$ mkdir chips/build
$ cd chips/build
$ cmake ..
$ make

If the above commands get executed without any errors you will end up with an executable file 'chips', execute it like below with the rom file(make sure to give the correct path to the rom file).

NOTE: I have only tested with GNU/Linux(Arch)

$ ./chips /path/to/rom_file