Added in_simulation flag to DDR3 init to allow starting (crippled) sim
This commit is contained in:
parent
c649c073ce
commit
2eacd7041d
@ -132,7 +132,7 @@ begin
|
|||||||
elsif rising_edge(clk) then
|
elsif rising_edge(clk) then
|
||||||
if pll_locked = '1' then
|
if pll_locked = '1' then
|
||||||
rst_ddr3_n <= '1'; -- Start DDR3 Controller
|
rst_ddr3_n <= '1'; -- Start DDR3 Controller
|
||||||
if local_init_done = '1' and local_cal_success = '1' then
|
if (local_init_done = '1' and local_cal_success = '1') or in_simulation then
|
||||||
rst <= '0'; -- Start system!
|
rst <= '0'; -- Start system!
|
||||||
end if;
|
end if;
|
||||||
end if;
|
end if;
|
||||||
|
Loading…
Reference in New Issue
Block a user