chip8 0.1.0

Asimple CHIP-8 emulator compatible with a no_std environment
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Why another CHIP-8 Emulator?

Because it's fun, and I wanted to make one no_std compatible

# How to use

See the [sdl example](examples/sdl.rs).

In general, you need to do the following in order to have a full working
emulator :

- Draw to the screen
- Handle keyboard events, and route them to the cpu
- Supply a RNG function

# License

MIT