d54fb7eb2c
Merge pull request 'v0.1.1 Partial Super Chip Support' ( #11 ) from schip into main
...
Reviewed-on: #11
2023-04-15 04:00:40 +00:00
43fa623da3
Improve workflow and docs somewhat, make minifb optional
2023-04-14 22:20:30 -05:00
674af62465
cpu.rs: Break into submodules
2023-04-14 21:25:41 -05:00
ae32d77757
readme.md: Update readme to indicate partial schip support
2023-04-14 21:00:27 -05:00
973811ee8d
csv: print multiple shots at a time
2023-04-14 21:00:08 -05:00
4f6f91b69b
bus.rs: Debug print screen with drawille, if enabled
2023-04-14 20:58:28 -05:00
d12f3fe710
cpu.rs: Fiddle with the alignment, to help me feel whole.
2023-04-14 16:50:32 -05:00
78a5a9790a
Misc: clean up in preparation for merge
2023-04-14 16:33:54 -05:00
946a6031fb
tests: Update test to match new expected behavior
2023-04-03 05:47:42 -05:00
9bdc418a00
ui.rs: Implement dynamic resolution changing, revert colors for now
2023-04-03 05:47:13 -05:00
8bb34f2593
schip: Improve architecture & compatibility somewhat
2023-04-03 05:46:33 -05:00
9fcae555ce
chirp-minifb: Add quirk toggles back in
2023-04-03 05:45:22 -05:00
acc7629516
schip: Add preliminary SuperChip support (no test)
2023-04-03 02:01:25 -05:00
081dda9c8a
Generate flamegraphs
2023-04-02 15:29:34 -05:00
93bbf67433
cpu.rs: Double max IPF in dynamic timing by only getting the time once
2023-04-02 14:48:34 -05:00
03a6934a59
tests.rs: BC_test tests flawed behavior.
2023-04-02 14:47:33 -05:00
40cc81181b
chip8_test_suite.rs: Load program only once
2023-04-02 14:46:39 -05:00
83cc35c968
Move submodules to project root
2023-04-02 14:45:32 -05:00
89f66c3d5b
Add chip8Archive as a submodule, for testing
2023-04-02 14:21:43 -05:00
f27537b3b8
tests: Update tests to match current behavior.
2023-04-01 02:31:51 -05:00
a4c548d0ec
lib.rs: Remove crate::prelude, re-export in lib.rs
2023-04-01 02:31:06 -05:00
bb8015f33c
Quirks: Make the Cosmac VIP behavior default.
2023-04-01 00:15:40 -05:00
7173b9e39b
Break io into chirp-minifb, and refactor to use Results in more places
2023-04-01 00:14:15 -05:00
3cc3aa534c
Remove Cargo.lock and add to .gitignore
2023-03-31 19:10:24 -05:00
a744fa08c7
Merge branch 'imperative-rs'
...
Rewrote the disassembler and `cpu::tick()` for code concision and massive speed improvements.
Turns out, getting the current time takes AGES, so if we don't need it, we don't get it.
2023-03-31 14:33:40 -05:00
a676280ec8
clippy: Fix all clippy lints
2023-03-31 14:32:01 -05:00
627511282a
chirp-minifb: Propagate errors up to main
2023-03-30 10:46:35 -05:00
c1f457814d
disassembler: 100% line coverage
2023-03-30 08:53:10 -05:00
cc3bc3a7fe
Major Refactor: Make invalid states unrepresentable ™️
...
- Rewrote the instruction decoder as an enum
- Used imperative_rs to auto-generate the bit twiddling logic
- Implemented Display on that enum, for disassembly
- Rewrote CPU::tick
- Now >10x faster
- Disassembly mode is still 5x slower though
- Implemented time-based benchmarking
- (use option -S to set the number of instructions per epoch)
2023-03-30 08:27:06 -05:00
8ab9799913
cpu.rs: Fix some documentation errors
2023-03-30 02:13:59 -05:00
f60a4b3cc2
Refactor disassembler to use imperative-rs
...
It's like MAGIC. Easily cut out 200 LOC
2023-03-30 02:12:03 -05:00
e54f66f6c4
disassemble.rs: Update function names to match cpu.rs
2023-03-29 23:46:57 -05:00
6453a9f267
justfile: Update justfile to run tests by default
2023-03-29 23:46:20 -05:00
b9c35c0e68
lib.rs: Deny (missing docs)
2023-03-29 23:45:39 -05:00
c194a3c53a
Error: Remove FunkyMathError and Stringly Typed context
2023-03-29 23:42:41 -05:00
9195d439e3
Prepare for migration to iced
2023-03-29 23:37:12 -05:00
b7c3e3113d
Fix the last few instances of "chumpulator"
2023-03-29 12:29:07 -05:00
ce0dc954d0
tests: Improve cpu.rs line coverage to >99%
2023-03-28 12:31:56 -05:00
83c178413d
tests: Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience.
2023-03-28 08:57:24 -05:00
f2f47e13d4
bus: Change named ranges from hashmap to array
...
Improves performance by 0.4 seconds in unit tests
2023-03-28 07:35:18 -05:00
fbc0a0b2ea
tests: Coverage and cleanup/speedup
...
- Improved test coverage to >80% of lines, functions
- When doctests are included.
- Wrote new unit tests:
- Explicit tests for invalid instructions in the
ranges {`5xyn`, `8xyn`, `9xyn`, `Fxbb`}
- `rand` Tests for 1052671 cycles, to ensure
randomly generated number is < ANDed byte
- `Ex9E` (sek), `ExA1`(snek) will press only the expected key,
then every key except the expected key, for every address
- `Fx0A` (waitk) asserts based on the waveform of a keypress.
After all, an A press is an A press.
- Improved test performance by printing slightly less
- Removed nightly requirement
- (now optional, with feature = "unstable")
- Amended justfile to test with `cargo nextest` (nice)
- Changed release builds to optlevel 3
2023-03-28 07:33:17 -05:00
66bed02a5e
Add justfile for common commands, instead of aliases
2023-03-28 04:38:16 -05:00
84361597cc
tests: Clean up integration tests
2023-03-27 21:31:54 -05:00
59a0b2fada
bus.rs/cpu.rs: Improve doctest coverage
2023-03-27 21:01:57 -05:00
d5cfdc6802
tests: Move chip8-test-suite to integration tests.
2023-03-27 21:01:33 -05:00
b8720142c7
disassemble.rs: Make asm format more consistent.
2023-03-27 18:31:18 -05:00
0e91b103ed
LICENSE: Add MIT Licence
2023-03-27 18:30:31 -05:00
f90f1c49cc
readme.md: Update readme.md with useful information
2023-03-27 17:54:48 -05:00
b74709ad1a
Cargo.lock: Remove optional dependencies
2023-03-27 17:28:29 -05:00
784845b6f5
cpu.rs: Make quirks individually configurable
2023-03-27 17:27:55 -05:00