v0.1.1 Partial Super Chip Support #11

Merged
j merged 12 commits from schip into main 2023-04-15 04:00:41 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 946a6031fb - Show all commits

View File

@ -14,7 +14,7 @@ debug rom:
cargo run --bin chirp-minifb -- -d '{{rom}}' cargo run --bin chirp-minifb -- -d '{{rom}}'
# Run at 2100000 instructions per frame, and output per-frame runtime statistics # Run at 2100000 instructions per frame, and output per-frame runtime statistics
bench: bench:
cargo run --bin chirp-minifb --release -- chip8Archive/roms/1dcell.ch8 -Ps10 -S2100000 -m xochip cargo run --bin chirp-minifb --release -- chip8Archive/roms/1dcell.ch8 -Ps10 -S21000000 -m xochip
flame rom: flame rom:
CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph -F 15300 --open --bin chirp-minifb -- '{{rom}}' -s10 CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph -F 15300 --open --bin chirp-minifb -- '{{rom}}' -s10

View File

@ -227,7 +227,7 @@ mod quirks {
shift: true, shift: true,
draw_wait: true, draw_wait: true,
dma_inc: true, dma_inc: true,
stupid_jumps: false, stupid_jumps: true,
} }
) )
} }