diff options
author | Larry Doolittle <ldoolitt@recycle.lbl.gov> | 2018-03-10 09:59:06 -0800 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-03-11 16:03:41 +0100 |
commit | efaef82f75d8e477baf958eac39f538e6eed5b03 (patch) | |
tree | 6153ab94c5cbf400c5c685128e1a741cd661534c /techlibs/achronix | |
parent | 82fecc98c01dd3883b7d8268d3f1c7c35512f00d (diff) | |
download | yosys-efaef82f75d8e477baf958eac39f538e6eed5b03.tar.gz yosys-efaef82f75d8e477baf958eac39f538e6eed5b03.tar.bz2 yosys-efaef82f75d8e477baf958eac39f538e6eed5b03.zip |
Squelch trailing whitespace, including meta-whitespace
Diffstat (limited to 'techlibs/achronix')
-rwxr-xr-x | techlibs/achronix/speedster22i/cells_arith.v | 8 | ||||
-rwxr-xr-x | techlibs/achronix/speedster22i/cells_map.v | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/techlibs/achronix/speedster22i/cells_arith.v b/techlibs/achronix/speedster22i/cells_arith.v index 9ef073f7c..e2194cbd7 100755 --- a/techlibs/achronix/speedster22i/cells_arith.v +++ b/techlibs/achronix/speedster22i/cells_arith.v @@ -45,10 +45,10 @@ module _80_altera_max10_alu (A, B, CI, BI, X, Y, CO); //wire [Y_WIDTH:0] C = {CO, CI}; wire [Y_WIDTH+1:0] COx; wire [Y_WIDTH+1:0] C = {COx, CI}; - + /* Start implementation */ (* keep *) fiftyfivenm_lcell_comb #(.lut_mask(16'b0000_0000_1010_1010), .sum_lutc_input("cin")) carry_start (.cout(COx[0]), .dataa(C[0]), .datab(1'b1), .datac(1'b1), .datad(1'b1)); - + genvar i; generate for (i = 0; i < Y_WIDTH; i = i + 1) begin: slice if(i==Y_WIDTH-1) begin @@ -61,5 +61,5 @@ module _80_altera_max10_alu (A, B, CI, BI, X, Y, CO); endgenerate /* End implementation */ assign X = AA ^ BB; - -endmodule + +endmodule diff --git a/techlibs/achronix/speedster22i/cells_map.v b/techlibs/achronix/speedster22i/cells_map.v index fb26eabf0..90f87826d 100755 --- a/techlibs/achronix/speedster22i/cells_map.v +++ b/techlibs/achronix/speedster22i/cells_map.v @@ -44,7 +44,7 @@ module \$_DFF_PN0_ (input D, C, R, output Q); dffeas #(.is_wysiwyg(WYSIWYG)) _TECHMAP_REPLACE_ (.d(D), .q(Q), .clk(C), .clrn(R), .prn(1'b1), .ena(1'b1), .asdata(1'b0), .aload(1'b0), .sclr(1'b0), .sload(1'b0)); endmodule /* */ -module \$__DFFE_PP0 (input D, C, E, R, output Q); +module \$__DFFE_PP0 (input D, C, E, R, output Q); parameter WYSIWYG="TRUE"; wire E_i = ~ E; dffeas #(.is_wysiwyg(WYSIWYG)) _TECHMAP_REPLACE_ (.d(D), .q(Q), .clk(C), .clrn(R), .prn(1'b1), .ena(1'b1), .asdata(1'b0), .aload(1'b0), .sclr(E_i), .sload(1'b0)); |