A simple Sudoku solver for the console, written entirely in Assembly language (MIPS).
- Solve Sudoku directly in your terminal.
- All logic and features are implemented in Assembly (MIPS).
- You need Spim MIPS emulator installed.
If you have a text file containing a Sudoku puzzle, replace file.txt with your filename and run:
spim -file sudoku.asm file.txtIf you want to use the example grid included in the code:
- In
sudoku.asm, remove the#(comment) at the start of line 9, and add#to the start of line 10.
(This enables the built-in grid and disables file input.) - Run:
spim -file sudoku.asmThis project is licensed under the MIT License. See LICENSE for details.