aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-04-13 15:09:49 +0200
committerClifford Wolf <clifford@clifford.at>2016-04-13 15:09:49 +0200
commitfaa1c1a159c4c0cf4a0b3168cfb07708d872fb8e (patch)
tree455b61b0f5079098f56f3842895d5cfa4769ebb5 /scripts
parent262a9085bb730df84866f48934cf76ebbc19311e (diff)
downloadpicorv32-faa1c1a159c4c0cf4a0b3168cfb07708d872fb8e.tar.gz
picorv32-faa1c1a159c4c0cf4a0b3168cfb07708d872fb8e.zip
Added SBREAK handling for CATCH_ILLINSN=0
Diffstat (limited to 'scripts')
-rw-r--r--scripts/torture/config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/torture/config.py b/scripts/torture/config.py
index f1b63fb..478f046 100644
--- a/scripts/torture/config.py
+++ b/scripts/torture/config.py
@@ -18,6 +18,7 @@ with open("config.vh", "w") as f:
print(".TWO_CYCLE_COMPARE(%d)," % np.random.randint(2), file=f)
print(".TWO_CYCLE_ALU(%d)," % np.random.randint(2), file=f)
print(".CATCH_MISALIGN(%d)," % np.random.randint(2), file=f)
+ print(".CATCH_ILLINSN(%d)," % np.random.randint(2), file=f)
print(".COMPRESSED_ISA(%d)," % compressed_isa, file=f)
print(".ENABLE_MUL(%d)," % enable_mul, file=f)
print(".ENABLE_DIV(%d)" % enable_div, file=f)