2025-07-10 19:46:45 +02:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
|
// any use, without warranty, 2025 by Geza Lore.
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
`default_nettype none
|
|
|
|
|
|
|
|
|
|
module t(
|
|
|
|
|
output wire [9:0] o
|
|
|
|
|
);
|
|
|
|
|
assign o[1:0] = o[9:8];
|
2025-08-05 15:47:51 +02:00
|
|
|
assign o[3:2] = o[1:0];
|
2025-07-10 19:46:45 +02:00
|
|
|
assign o[7:4] = 4'(o[3:2]);
|
|
|
|
|
assign o[9:8] = o[5:4];
|
|
|
|
|
endmodule
|