blob: 38a25d998aa69f5498dda1c587e8922d3e36f904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
default Order dec
$include <vector_dec.sail>
$property
function prop(xs: bits(65), x: bit) -> bool = {
ys = xs;
ys[63] = x;
ys[64] = x;
ys[42] = x;
ys[0] = x;
ys[64] == x & ys[63] == x & ys[42] == x & ys[0] == x
}
|