mirror of https://github.com/YosysHQ/yosys.git
Fix copy-pasta typo
This commit is contained in:
parent
0492b8b541
commit
13cc106cf7
|
@ -522,7 +522,7 @@ module DSP48E1 (
|
||||||
always @* Ar2 <= A_muxed;
|
always @* Ar2 <= A_muxed;
|
||||||
end
|
end
|
||||||
|
|
||||||
// Configurable A register
|
// Configurable B register
|
||||||
if (BREG == 2) begin
|
if (BREG == 2) begin
|
||||||
always @(posedge CLK)
|
always @(posedge CLK)
|
||||||
if (RSTB) begin
|
if (RSTB) begin
|
||||||
|
@ -532,7 +532,7 @@ module DSP48E1 (
|
||||||
if (CEB1) Br1 <= B_muxed;
|
if (CEB1) Br1 <= B_muxed;
|
||||||
if (CEB2) Br2 <= Br1;
|
if (CEB2) Br2 <= Br1;
|
||||||
end
|
end
|
||||||
end else if (AREG == 1) begin
|
end else if (BREG == 1) begin
|
||||||
always @(posedge CLK)
|
always @(posedge CLK)
|
||||||
if (RSTB) begin
|
if (RSTB) begin
|
||||||
Br1 <= 18'b0;
|
Br1 <= 18'b0;
|
||||||
|
|
Loading…
Reference in New Issue