Skip to content

Commit

Permalink
Removing upper bound from range
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 authored Oct 1, 2024
1 parent 572db27 commit b429843
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions protocols/saci/rtl/AxiLiteSaciMaster.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ use surf.SaciMasterPkg.all;

entity AxiLiteSaciMaster is
generic (
TPD_G : time := 1 ns;
AXIL_CLK_PERIOD_G : real := 8.0e-9; -- In units of seconds
AXIL_TIMEOUT_G : real := 1.0E-3; -- In units of seconds
SACI_CLK_PERIOD_G : real := 1.0e-6; -- In units of seconds
SACI_CLK_FREERUN_G : boolean := false;
SACI_NUM_CHIPS_G : positive range 1 to 6 := 1;
SACI_RSP_BUSSED_G : boolean := false);
TPD_G : time := 1 ns;
AXIL_CLK_PERIOD_G : real := 8.0e-9; -- In units of seconds
AXIL_TIMEOUT_G : real := 1.0E-3; -- In units of seconds
SACI_CLK_PERIOD_G : real := 1.0e-6; -- In units of seconds
SACI_CLK_FREERUN_G : boolean := false;
SACI_NUM_CHIPS_G : positive := 1;
SACI_RSP_BUSSED_G : boolean := false);
port (
-- SACI interface
saciClk : out sl;
Expand Down

0 comments on commit b429843

Please sign in to comment.