-
Given that `chip8_vm` is intended to work as a standalone crate for 3rd party projects, it should be split from this repo (`chip8_ui`) in the long term.
Having both projects in one repository has som…
-
Segun esta pagina [http://mattmik.com/chip8.html] lo correcto seria:
8XY6 - Store the value of register VY shifted right one bit in register VX
Set register VF to the least significant bit prior to t…
-
```
Opcodes 0x00CN,0x00FB and 0x00FC (Scroll Down N pixels,Scroll left 4 or 2
pixels and Scroll right 4 or 2 pixels respectively) are not implemented.
However, no CHIP8 ROM's I've tested so far use th…
-
As with any kind of graphical project, people want to see how it looks like.
While there's not much to see except for the ROM specific output and a window border, I suggest we just add a screenshot of…
-
This will make it easier for us to collaborate and manage the repo / travis CI settings.
I've created a new organization chip8-rust and invited contributor @robo9k. Once the invitation is accepted I'l…
-
The UI does not have much code to be documented, but the VM part has enough code and the latter might be used by others as well.
[`rustdoc`](http://doc.rust-lang.org/book/documentation.html) is Rust'…
-
Most of the recent breakage due to `rustc` updates (#1, #2) affects the `Piston` part of the crate.
Maybe it could be worthwhile to split the current code in a `chip8-piston` (GUI) and a `chip8` (emu…
-
`Cargo` unit tests, `rustdoc` tests (see #5) and any other kind of tests should be run whenever there is a significant new version, i.e. either on each Git commit or upon tagging a new version.
[Trav…
-
It's my command:
``` bash
/home/tshau/git/mosesdecoder/scripts/training/train-model.perl -root-dir work -corpus /home/tshau/mt -f src -e tgt -alignment grow-diag-final-and -reordering msd-bidirection…
-
While trying to add `rustdoc` to the `chip8_vm` crate I was slightly irritated by `struct Op`.
Initially I assumed that `Op` would refer to `Opcode`, however upon further inspection it is actually use…