mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-31 00:13:18 +00:00
Allow $size and $bits in verilog mode, actually check test case
This commit is contained in:
parent
637a02eb5c
commit
dbfd8460a9
3 changed files with 3 additions and 1 deletions
32
tests/sat/sizebits.sv
Normal file
32
tests/sat/sizebits.sv
Normal file
|
@ -0,0 +1,32 @@
|
|||
module functions01;
|
||||
|
||||
wire [5:2]x;
|
||||
wire [3:0]y[2:7];
|
||||
wire [3:0]z[7:2][2:9];
|
||||
|
||||
//wire [$size(x)-1:0]x_size;
|
||||
//wire [$size({x, x})-1:0]xx_size;
|
||||
//wire [$size(y)-1:0]y_size;
|
||||
//wire [$size(z)-1:0]z_size;
|
||||
|
||||
assert property ($size(x) == 4);
|
||||
assert property ($size({3{x}}) == 3*4);
|
||||
assert property ($size(y) == 6);
|
||||
assert property ($size(y, 1) == 6);
|
||||
assert property ($size(y, (1+1)) == 4);
|
||||
|
||||
assert property ($size(z) == 6);
|
||||
assert property ($size(z, 1) == 6);
|
||||
assert property ($size(z, 2) == 8);
|
||||
assert property ($size(z, 3) == 4);
|
||||
// This should trigger an error if enabled (it does).
|
||||
//assert property ($size(z, 4) == 4);
|
||||
|
||||
//wire [$bits(x)-1:0]x_bits;
|
||||
//wire [$bits({x, x})-1:0]xx_bits;
|
||||
|
||||
assert property ($bits(x) == 4);
|
||||
assert property ($bits(y) == 4*6);
|
||||
assert property ($bits(z) == 4*6*8);
|
||||
|
||||
endmodule
|
2
tests/sat/sizebits.ys
Normal file
2
tests/sat/sizebits.ys
Normal file
|
@ -0,0 +1,2 @@
|
|||
read_verilog -sv sizebits.sv
|
||||
prep; sat -verify -prove-asserts
|
Loading…
Add table
Add a link
Reference in a new issue