/Chip8-Emul

QT5 project - chip8 emulator

Primary LanguageC++GNU General Public License v3.0GPL-3.0

Description

emuChip is cross-platform CHIP-8 and Super CHIP emulator.

Source code: https://github.com/zanyxdev/chip8-emul

Compilation

Build Status

Key mappings

The original keypad that came with the CHIP-8 computers looked like this:

	+-+-+-+-+
	|1|2|3|C|
	+-+-+-+-+
	|4|5|6|D|
	+-+-+-+-+
	|7|8|9|E|
	+-+-+-+-+
	|A|0|B|F|
	+-+-+-+-+

This is emulated as follows:

	+-+-+-+-+
	|1|2|3|4|
	+-+-+-+-+
	|Q|W|E|R|
	+-+-+-+-+
	|A|S|D|F|
	+-+-+-+-+
	|Z|X|C|V|
	+-+-+-+-+