diff --git a/justfile b/justfile index ed178b5..910a56c 100644 --- a/justfile +++ b/justfile @@ -1,10 +1,14 @@ # Some common commands for working on this stuff -cover: - cargo llvm-cov --open --doctests - test: cargo test --doc && cargo nextest run +chirp: + cargo run --bin chirp -- tests/chip8-test-suite/bin/chip8-test-suite.ch8 + +cover: + cargo llvm-cov --open --doctests + tokei: tokei --exclude tests/chip8-test-suite +