commit | 22cefa00031955835263c229f80f398d97dca432 | [log] [tgz] |
---|---|---|
author | Andrea Nall <anall@andreanall.com> | Mon Oct 11 22:38:46 2021 -0500 |
committer | Andrea Nall <anall@andreanall.com> | Mon Oct 11 22:45:27 2021 -0500 |
tree | a548dcb7a09154439411781894dd54ca09e23cc9 | |
parent | fc583ec64d0e153d10e4e28146342af0d0fecd6e [diff] |
Integrate my sudoku_accelerator and remove random large files, and disable github workflows
This project contains a two sudoku accelerator modules on a wishbone bus.
Each solver module is capable of performing both a simple ‘only candidate’ method, as well as finding row-only ‘naked singles’.
A single ‘only candidate’ pass on the whole puzzle completes in 23 cycles, and a ‘naked singles’ pass completes in 108 cycles.
The solver will exit early during a run if the puzzle becomes solved, or if a single cell ends up with no remaining valid values (do note that this doesn't mean the solver can detect all illegal puzzles).
This design also contains a modified FIFO-enabled version of simpleuart (from caravel) to make external communication easier.