diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-12-04 14:14:05 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-12-04 14:14:05 +0100 |
commit | 93a70959f3f67ffcee8159b18a5f68904e32a074 (patch) | |
tree | 1bf68c1a36c3d126fdb396b0ea9c06bcdc2040fb /tests | |
parent | a2d053694b6269bab8871a810142943fac6a3a18 (diff) | |
download | yosys-93a70959f3f67ffcee8159b18a5f68904e32a074.tar.gz yosys-93a70959f3f67ffcee8159b18a5f68904e32a074.tar.bz2 yosys-93a70959f3f67ffcee8159b18a5f68904e32a074.zip |
Replaced RTLIL::Const::str with generic decoder method
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple/values.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple/values.v b/tests/simple/values.v index 9fae4da9d..afcd251fc 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; |