Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
pr183.v
blob: ba7edbb1d51e91006a62c12d960bc0b7411e0a1b [
file
] [
log
] [
blame
]
// Sample Code
module
main
(
stb
,
a
);
input stb
;
output
[
1
:
0
]
a
;
wire
[
1
:
0
]
b
;
buf
(
a
[
0
],
b
[
0
]);
buf
(
a
[
1
],
b
[
1
]);
specify
(
posedge stb
=>
(
a
[
0
]:
1
'bx)) = 1.0;
(posedge stb => (a[1]:1'
bx
))
=
1.0
;
endspecify
endmodule
// main