rust-chip-8/README.md

29 lines
854 B
Markdown

# rust-chip-8
A CHIP-8 emulator written in Rust
## Keyboard mapping
CHIP-8 systems used a hexidecimal keyboard with the layout shown on the left.
This is mapped to the physical keyboard as shown on the right.
```
|---|---|---|---| |---|---|---|---|
| 1 | 2 | 3 | C | | 1 | 2 | 3 | 4 |
|---|---|---|---| |---|---|---|---|
| 4 | 5 | 6 | D | | Q | W | E | R |
|---|---|---|---| |---|---|---|---|
| 7 | 8 | 0 | E | | A | S | D | F |
|---|---|---|---| |---|---|---|---|
| A | 0 | B | F | | Z | X | C | V |
|---|---|---|---| |---|---|---|---|
```
So to get "deadbeef" inside the emulator you'd have to type "rfzrcffv".
## License
MIT License Copyright (c) 2021 Michael Kohl
For the full license text see [LICENSE](./LICENSE).