Fix orangecrab target

This commit is contained in:
Vadim Kaushan 2020-12-20 01:07:43 +03:00
parent e1f9fd1a25
commit f6a106cdf4
No known key found for this signature in database
GPG Key ID: A501C5DF67C05C4E
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class _CRG(Module):
reset_timer = WaitTimer(sys_clk_freq)
self.submodules += reset_timer
self.comb += reset_timer.wait.eq(~rst_n)
self.comb += platform.request("rst_n").eq(reset_timer.done)
self.comb += platform.request("rst_n").eq(~reset_timer.done)
class _CRGSDRAM(Module):