rust-chip-8/README.md

29 lines
854 B
Markdown
Raw Normal View History

2021-03-27 02:43:24 +00:00
# rust-chip-8
2021-04-01 11:32:18 +00:00
A CHIP-8 emulator written in Rust
## Keyboard mapping
2021-04-01 14:07:40 +00:00
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 |
|---|---|---|---| |---|---|---|---|
```
2021-04-01 11:32:18 +00:00
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).