verilator/test_regress/t/t_array_sel_wide.v

31 lines
608 B
Systemverilog
Raw Normal View History

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2017 Wilson Snyder
// SPDX-License-Identifier: CC0-1.0
module t (/*AUTOARG*/
2026-03-03 13:21:24 +01:00
// Outputs
nnext,
// Inputs
inibble, onibble
);
2026-03-03 13:21:24 +01:00
input [3:0] inibble;
input [106:0] onibble;
2026-03-03 13:21:24 +01:00
output reg [3:0] nnext [0:7];
2026-03-03 13:21:24 +01:00
// verilator lint_off WIDTH
wire [2:0] selline = (onibble >>> 102) & 7;
// verilator lint_on WIDTH
2026-03-03 13:21:24 +01:00
always_comb begin
for (integer i=0; i<8; i=i+1) begin
nnext[i] = '0;
end
nnext[selline] = inibble;
end
endmodule