2020-03-21 16:24:24 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
|
// any use, without warranty, 2020 by Wilson Snyder.
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
2014-06-10 04:27:04 +02:00
|
|
|
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
|