Skip to content

Commit

Permalink
Merge branch 'isa_width_fix' into 'devel'
Browse files Browse the repository at this point in the history
fix(fb2cghh): fix assign constant when DDR_PORTS <=1

See merge request ndk/ndk-fpga!119
  • Loading branch information
jakubcabal committed Dec 3, 2024
2 parents 593da68 + a18cb44 commit 72e41d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cards/silicom/fb2cghh/src/fpga.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ begin
);

else generate
ddr_init_calib_complete(0) <= '0';
ddr_init_calib_complete <= (others => '0');
DDR4A_A <= (others => '0');
DDR4A_BA <= (others => '0');
DDR4A_CKE(0 downto 0) <= (others => '0');
Expand Down Expand Up @@ -662,7 +662,7 @@ begin
);

else generate
ddr_init_calib_complete(0) <= '0';
ddr_init_calib_complete <= (others => '0');
DDR4B_A <= (others => '0');
DDR4B_BA <= (others => '0');
DDR4B_CKE(0 downto 0) <= (others => '0');
Expand Down

0 comments on commit 72e41d5

Please sign in to comment.