verilator/test_regress/t/t_select_bad_msb.v
Wilson Snyder 52912c6329 Convert repository to git from svn.
- Change .cvsignore to .gitignore
- Remove Id metacomments
- Cleanup whitespace at end of lines
2008-06-09 21:25:10 -04:00

19 lines
388 B
Systemverilog

// 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;
reg [0:22] backwd;
always @ (posedge clk) begin
mi = 44'h123;
sel2 = mi[1:4];
$write ("Bad select %x\n", sel2);
end
endmodule