Skip to content

Commit

Permalink
Updated Generators comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bilal458 committed Jul 23, 2024
1 parent cc0e1c1 commit e5ba6ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rapidsilicon/ip/axi_sdram/v1_0/axi_sdram_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def sdram_interface():
("sdram_data_out_en_o", 0, Pins(1)),
]

# AXI RAM Wrapper ----------------------------------------------------------------------------------
# SDRAM Wrapper ----------------------------------------------------------------------------------
class SDRAMWRAPPER(Module):
def __init__(self, platform):
# Clocking ---------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def colorer(s, color="bright"):
trailer = "\x1b[0m"
return header + str(s) + trailer

# AXI RAM ------------------------------------------------------------------------------------------
# AXI SDRAM ------------------------------------------------------------------------------------------

class AXISDRAM(Module):
def __init__(self, platform, s_axi ):
Expand Down
2 changes: 1 addition & 1 deletion rapidsilicon/ip/boot_clock/v1_0/boot_clock_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_other_ios():
("O", 0, Pins(1)),
]

# AXI RAM Wrapper ----------------------------------------------------------------------------------
# Boot clock Wrapper ----------------------------------------------------------------------------------
class BOOTCLOCKWrapper(Module):
def __init__(self, platform, period):
self.clock_domains.cd_sys = ClockDomain()
Expand Down
2 changes: 1 addition & 1 deletion rapidsilicon/ip/pll/v1_0/pll_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_clkin_ios():
("LOCK", 0, Pins(1)),
]

# AXI RAM Wrapper ----------------------------------------------------------------------------------
# PLL Wrapper ----------------------------------------------------------------------------------
class PLLWrapper(Module):
def __init__(self, platform, divide_clk_in_by_2, fast_clk_freq, ref_clk_freq, pll_post_div):

Expand Down

0 comments on commit e5ba6ef

Please sign in to comment.