Merge branch 'main' into cache

This commit is contained in:
Jarred Allen 2021-04-13 01:10:03 -04:00
commit 4ae1df1290
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ module muldiv (
// Divide
// *** replace this clock gater
always @(posedge clk) begin
always @(negedge clk) begin
enable_q <= ~StallM;
end
assign gclk = enable_q & clk;

View File

@ -251,7 +251,7 @@ def writeVectors(a, xlen, storecmd):
##################################
# change these to suite your tests
tests = ["timerM", "timerS", "timerU", "softwareM", "softwareS", "softwareU"]
tests = ["timerM"] #, "timerS", "timerU", "softwareM", "softwareS", "softwareU"]
author = "ushakya@hmc.edu"
xlens = [64, 32]
numrand = 100;