mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc/cores/hyperbus: Expose burst_timer to ease debug.
This commit is contained in:
parent
1f2a44516e
commit
c834387965
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class HyperRAM(Module):
|
|||
# Burst Timer ------------------------------------------------------------------------------
|
||||
sys_clk_freq = 10e6 if sys_clk_freq is None else sys_clk_freq
|
||||
burst_timer = WaitTimer(int(sys_clk_freq*self.tCSM))
|
||||
self.submodules += burst_timer
|
||||
self.submodules.burst_timer = burst_timer
|
||||
|
||||
# Clock Generation (sys_clk/4) -------------------------------------------------------------
|
||||
self.sync += clk_phase.eq(clk_phase + 1)
|
||||
|
|
Loading…
Reference in a new issue