summaryrefslogtreecommitdiff
path: root/tests/simple
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-12-04 14:14:05 +0100
committerClifford Wolf <clifford@clifford.at>2013-12-04 14:14:05 +0100
commit93a70959f3f67ffcee8159b18a5f68904e32a074 (patch)
tree1bf68c1a36c3d126fdb396b0ea9c06bcdc2040fb /tests/simple
parenta2d053694b6269bab8871a810142943fac6a3a18 (diff)
Replaced RTLIL::Const::str with generic decoder method
Diffstat (limited to 'tests/simple')
-rw-r--r--tests/simple/values.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple/values.v b/tests/simple/values.v
index 9fae4da9..afcd251f 100644
--- a/tests/simple/values.v
+++ b/tests/simple/values.v
@@ -33,7 +33,7 @@ always @*
4'b1001: y = 16'h123abc;
4'b1010: y = 16'o1234567;
4'b1011: y = 16'd3456789;
- 4'b1100: y = "foobar";
+ 4'b1100: y = { "foo", "bar" };
4'b1101: y = "foobarfoobarfoobar";
4'b1110: y = 16'h1;
4'b1111: y = a;