mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Reduce amount of trailing whitespace in code base
This commit is contained in:
committed by
Clifford Wolf
parent
68a6937173
commit
e2fc18f27b
@@ -30,7 +30,7 @@ endmodule
|
||||
module PADOUT (output padout, input padin, input oe);
|
||||
assign padout = padin;
|
||||
assign oe = oe;
|
||||
endmodule
|
||||
endmodule
|
||||
|
||||
module LUT4 (output dout,
|
||||
input din0, din1, din2, din3);
|
||||
@@ -66,14 +66,14 @@ always @(dataa_w or datab_w or datac_w or datad_w) begin
|
||||
datac_w, datad_w);
|
||||
end
|
||||
assign dout = combout_rt & 1'b1;
|
||||
endmodule
|
||||
endmodule
|
||||
|
||||
module DFF (output q,
|
||||
input d, ck);
|
||||
reg q;
|
||||
always @(posedge ck)
|
||||
q <= d;
|
||||
|
||||
|
||||
endmodule
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user