Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
Verilator
/
t_math_div0.v
blob: 2d6fb09c35c2628e1b1756ba094e6a877d2b477e [
file
] [
log
] [
blame
]
module
t
(
y
);
output
[
3
:
0
]
y
;
// bug775
// verilator lint_off WIDTH
assign y
=
((
0
/
0
)
?
1
:
2
)
%
0
;
initial
begin
$write
(
"*-* All Finished *-*\n"
);
$finish
;
end
endmodule