diff options
author | Udi Finkelstein <github@udifink.com> | 2017-09-26 08:36:45 +0300 |
---|---|---|
committer | Udi Finkelstein <github@udifink.com> | 2017-09-26 08:36:45 +0300 |
commit | 17f8b4160574d34c446782952f09f940cd66c290 (patch) | |
tree | c00b20ab8efa70dfd290660a59d8ff8bf39c552b /tests | |
parent | 64eb8f29adcc3e6ee92e083ae0fee3aaf85dbbc4 (diff) | |
download | yosys-17f8b4160574d34c446782952f09f940cd66c290.tar.gz yosys-17f8b4160574d34c446782952f09f940cd66c290.tar.bz2 yosys-17f8b4160574d34c446782952f09f940cd66c290.zip |
$size() now works with memories as well!
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple/functions01.sv | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/simple/functions01.sv b/tests/simple/functions01.sv index 0fa1da6bd..cd87a49b7 100644 --- a/tests/simple/functions01.sv +++ b/tests/simple/functions01.sv @@ -2,13 +2,15 @@ module functions01; wire [3:0]x; wire [$size(x)-1:0]x_size; wire [$size({x, x})-1:0]xx_size; -wire [3:0]w[0:5]; +wire [3:0]y[0:5]; +wire [$size(y)-1:0]y_size; +wire [3:0]z[0:5][0:7]; +wire [$size(z)-1:0]z_size; // // The following are not supported yet: // -//wire [$size(w)-1:0]w_s; //wire [$bits(x)-1:0]x_bits; //wire [$bits({x, x})-1:0]xx_bits; |