1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-01-23 02:38:06 +00:00

Merge pull request #48 from antonblanchard/clk_gen_bypass

Fix clk_gen_bypass
This commit is contained in:
Anton Blanchard 2019-09-12 13:03:33 +10:00 committed by GitHub
commit 67446709ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ architecture bypass of clock_generator is
begin
pll_locked_out <= pll_rst_in;
pll_locked_out <= not pll_rst_in;
pll_clk_out <= ext_clk;
end architecture bypass;