minor updates

This commit is contained in:
Blaise Tine 2022-06-13 21:27:49 -04:00
parent 6f3337b508
commit 82764da695
2 changed files with 6 additions and 4 deletions

View file

@ -3,15 +3,15 @@
# exit when any command fails # exit when any command fails
set -e set -e
# ensure build
make -s
# clear drivers # clear drivers
make -C driver clean make -C driver clean
# clear blackbox cache # clear blackbox cache
rm -f blackbox.*.cache rm -f blackbox.*.cache
# ensure build
make -s
smoke() smoke()
{ {
echo "begin smoke tests..." echo "begin smoke tests..."
@ -301,6 +301,8 @@ while [ "$1" != "" ]; do
;; ;;
-tex ) tex -tex ) tex
;; ;;
-graphics ) graphics
;;
-cluster ) cluster -cluster ) cluster
;; ;;
-debug ) debug -debug ) debug

View file

@ -644,7 +644,7 @@
// Number of associative ways // Number of associative ways
`ifndef RCACHE_NUM_WAYS `ifndef RCACHE_NUM_WAYS
`define RCACHE_NUM_WAYS 2 `define RCACHE_NUM_WAYS 1
`endif `endif
// Ocache Configurable Knobs ////////////////////////////////////////////////// // Ocache Configurable Knobs //////////////////////////////////////////////////