Little steps in realmath test bench

This commit is contained in:
Clifford Wolf 2014-06-16 15:21:08 +02:00
parent 6c17d4f242
commit 88470283c9
2 changed files with 3 additions and 0 deletions

1
tests/realmath/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
temp

View File

@ -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)]))) print('module uut_%05d(output [63:0] %s);\n' % (idx, ', '.join(['y%02d' % i for i in range(100)])))
for i in range(30): for i in range(30):
print('localparam p%02d = %s;' % (i, random_expression())) 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): for i in range(30, 60):
print('localparam p%02d = %s;' % (i, random_expression(maxparam = 30))) 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): for i in range(100):
print('assign y%02d = 65536 * (%s);' % (i, random_expression(maxparam = 60))) print('assign y%02d = 65536 * (%s);' % (i, random_expression(maxparam = 60)))
print('endmodule') print('endmodule')