fokoid / chipper8

CHIP-8 interpreter in Rust
Apache License 2.0
0 stars 0 forks source link

Implement CHIP-8 Instructions: Assignment #76

Closed fokoid closed 1 year ago

fokoid commented 1 year ago

Pseudocode and descriptions were sourced from the CHIP-8 Wikipedia article and are licensed under the Creative Commons Attribution-ShareAlike License 3.0.

fokoid commented 1 year ago

this one will require parsing improvements. currently set A B could mean set register VA to value B or set register VA to value of register VB. to fix this we should require registers to be written as VX in the input and probably add a Token::Register variant