verilator/test_regress/t/t_select_bad_msb.v
Wilson Snyder b5b1d94d4a Copyright date update
git-svn-id: file://localhost/svn/verilator/trunk/verilator@864 77ca24e4-aefa-0310-84f0-b9a241c72d87
2007-01-02 22:06:40 +00:00

19 lines
374 B
Verilog

// $Id$
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2003-2007 by Wilson Snyder.
module t (clk);
input clk;
reg [43:0] mi;
reg [3:0] sel2;
always @ (posedge clk) begin
mi = 44'h123;
sel2 = mi[1:4];
$write ("Bad select %x\n", sel2);
end
endmodule