1
0
mirror of synced 2026-04-25 03:46:21 +00:00

Squelch a little more trailing whitespace

This commit is contained in:
Larry Doolittle
2018-12-28 08:24:31 -08:00
committed by Clifford Wolf
parent 245724a504
commit 99706b3bf4
2 changed files with 4 additions and 4 deletions

View File

@@ -3,12 +3,12 @@ module test(input [31:0] a, b, c, output [31:0] x, y, z, w);
unit_y unit_y_inst (.a(a), .b(b), .c(c), .y(y));
assign z = a ^ b ^ c, w = z;
endmodule
module unit_x(input [31:0] a, b, c, output [31:0] x);
assign x = (a & b) | c;
endmodule
module unit_y(input [31:0] a, b, c, output [31:0] y);
assign y = a & (b | c);
endmodule