2015-01-25 22:32:46 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
2026-01-27 02:24:34 +01:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
|
|
|
// SPDX-FileCopyrightText: 2015 Wilson Snyder
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2015-01-25 22:32:46 +01:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
module t ( /*AUTOARG*/
|
|
|
|
|
// Outputs
|
|
|
|
|
outwires,
|
|
|
|
|
// Inputs
|
|
|
|
|
inwires
|
|
|
|
|
);
|
2018-10-27 16:03:28 +02:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
input [7:0] inwires[12:10];
|
|
|
|
|
output wire [7:0] outwires[12:10];
|
2015-01-25 22:32:46 +01:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
assign outwires[10] = inwires[11];
|
|
|
|
|
assign outwires[11] = inwires[12];
|
|
|
|
|
assign outwires[12] = inwires[13]; // must be an error here
|
2015-01-25 22:32:46 +01:00
|
|
|
|
|
|
|
|
endmodule
|