1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-02-04 23:34:56 +00:00

Add dummy clock generator

This commit is contained in:
Olof Kindgren
2019-08-23 13:17:35 +02:00
parent 37fe8b954c
commit b5bccc4c13

20
fpga/clk_gen_bypass.vhd Normal file
View File

@@ -0,0 +1,20 @@
library ieee;
use ieee.std_logic_1164.all;
entity clock_generator is
port (
clk : in std_logic;
resetn : in std_logic;
system_clk : out std_logic;
locked : out std_logic);
end entity clock_generator;
architecture bypass of clock_generator is
begin
locked <= not resetn;
system_clk <= clk;
end architecture bypass;