21 lines
415 B
Systemverilog
21 lines
415 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
// SPDX-FileCopyrightText: 2003-2007 Wilson Snyder
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
module t (
|
|
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
|