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:
20
fpga/clk_gen_bypass.vhd
Normal file
20
fpga/clk_gen_bypass.vhd
Normal 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;
|
||||
Reference in New Issue
Block a user