From 853bf8af434a7be7942047e8392025e5ae2c383b Mon Sep 17 00:00:00 2001 From: Nachiket Kapre Date: Mon, 8 Feb 2021 22:03:14 -0500 Subject: [PATCH] typos fixed; --- .../k6_frac_N10_stdcell_mux_40nm_openfpga_synthesizable.xml | 2 +- openfpga_flow/openfpga_cell_library/verilog/dffsrq.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openfpga_flow/openfpga_arch/k6_frac_N10_stdcell_mux_40nm_openfpga_synthesizable.xml b/openfpga_flow/openfpga_arch/k6_frac_N10_stdcell_mux_40nm_openfpga_synthesizable.xml index 6d7b080f1..50c2769ad 100644 --- a/openfpga_flow/openfpga_arch/k6_frac_N10_stdcell_mux_40nm_openfpga_synthesizable.xml +++ b/openfpga_flow/openfpga_arch/k6_frac_N10_stdcell_mux_40nm_openfpga_synthesizable.xml @@ -40,7 +40,7 @@ 10e-12 - + diff --git a/openfpga_flow/openfpga_cell_library/verilog/dffsrq.v b/openfpga_flow/openfpga_cell_library/verilog/dffsrq.v index c466740c6..cff8848a9 100644 --- a/openfpga_flow/openfpga_cell_library/verilog/dffsrq.v +++ b/openfpga_flow/openfpga_cell_library/verilog/dffsrq.v @@ -25,7 +25,7 @@ output reg [0:0] Q; always @(posedge CK) begin if(RST) begin Q <= 1'b0; - else if(SET) begin + end else if(SET) begin Q <= 1'b1; end else begin Q <= D;