diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-06-21 21:43:04 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-06-21 21:43:04 +0200 |
commit | 3345fa0bab5d343a9cd5a9dde6486e4e876fe8da (patch) | |
tree | a7fa7692b53d7bdb40c4a56f216cbc13f5c62113 /tests/simple | |
parent | 65b2e9c0645c30d84a9d9be148430fd76d3e5f05 (diff) | |
download | yosys-3345fa0bab5d343a9cd5a9dde6486e4e876fe8da.tar.gz yosys-3345fa0bab5d343a9cd5a9dde6486e4e876fe8da.tar.bz2 yosys-3345fa0bab5d343a9cd5a9dde6486e4e876fe8da.zip |
Little steps in realmath test bench
Diffstat (limited to 'tests/simple')
-rw-r--r-- | tests/simple/realexpr.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/simple/realexpr.v b/tests/simple/realexpr.v index 351661103..2adffe2dd 100644 --- a/tests/simple/realexpr.v +++ b/tests/simple/realexpr.v @@ -13,3 +13,9 @@ module demo_001(y1, y2, y3, y4); assign y4 = p4 + 0.2; endmodule +module demo_002(y1); + output [3:0] y1; + + assign y1 = 1'bx >= (-1 * -1.17); +endmodule + |