update documentation

This commit is contained in:
2025-08-29 00:45:50 -06:00
parent 2c28eb4194
commit 8ae90cb4ef
3 changed files with 8 additions and 8 deletions

6
tests/.gitignore vendored
View File

@@ -1,3 +1,3 @@
*.out
*.vcd
*.log
**/*.out
**/*.vcd
**/*.log

View File

@@ -1,5 +1,5 @@
# basic_test
Verify basic usage of all instructions. Includes tests to ensure pipeline stalls sufficiently for correctness but does not test for unnecessary stalls.
Verify basic usage of all instructions. Includes tests to ensure pipeline stalls sufficiently for correctness but does not test for unnecessary/excessive stalls.
Currently store/load does not implement proper stalling so these operations are padded with nop
Currently store/load does not implement proper stalling so these operations are padded with `nop`

View File

@@ -1,5 +1,5 @@
# basic_test
# C test
Verify basic usage of all instructions. Includes tests to ensure pipeline stalls sufficiently for correctness but does not test for unnecessary stalls.
Verify basic ability to use C
Currently store/load does not implement proper stalling so these operations are padded with nop
Currently all C functions fail because store/load do not stall properly.