summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/realmath/.gitignore1
-rw-r--r--tests/realmath/generate.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/realmath/.gitignore b/tests/realmath/.gitignore
new file mode 100644
index 00000000..9c595a6f
--- /dev/null
+++ b/tests/realmath/.gitignore
@@ -0,0 +1 @@
+temp
diff --git a/tests/realmath/generate.py b/tests/realmath/generate.py
index 58cedf02..9e48755c 100644
--- a/tests/realmath/generate.py
+++ b/tests/realmath/generate.py
@@ -44,8 +44,10 @@ for idx in range(100):
print('module uut_%05d(output [63:0] %s);\n' % (idx, ', '.join(['y%02d' % i for i in range(100)])))
for i in range(30):
print('localparam p%02d = %s;' % (i, random_expression()))
+ # print('localparam%s p%02d = %s;' % (random.choice(['', ' real', ' integer']), i, random_expression()))
for i in range(30, 60):
print('localparam p%02d = %s;' % (i, random_expression(maxparam = 30)))
+ # print('localparam%s p%02d = %s;' % (random.choice(['', ' real', ' integer']), i, random_expression(maxparam = 30)))
for i in range(100):
print('assign y%02d = 65536 * (%s);' % (i, random_expression(maxparam = 60)))
print('endmodule')