DEBSOURCES
Skip Quicknav
sources / ghdl / 5.0.1%2Bdfsg-1 / testsuite / synth / assign01 / assign02.v
12345678
module assign02(output [0:7] r, input [0:7] v); reg [7:0] t; always @(*) {t[7:4], t[3:0]} <= v; assign r = t; endmodule