Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
consttern.v
blob: bb62b8e2855dc5256301b6c14af7c8176c04b00a [
file
] [
log
] [
blame
]
module
rega
(
A
);
input A
;
endmodule
module
test
(
A
);
input A
;
rega a
(.
A
(
A
[(
5
>
4
?
0
:
1
)
:
0
]));
rega b
(.
A
(
A
[(
4
<
5
?
0
:
1
)
:
0
]));
initial $display
(
"PASSED"
);
endmodule