Files
EG2000_MiSTer/rtl/pll.cmp
JasonCoombes-hr 157e2090fd First commit
2022-09-23 10:24:24 +02:00

10 lines
230 B
Plaintext

component pll is
port (
refclk : in std_logic := 'X'; -- clk
rst : in std_logic := 'X'; -- reset
outclk_0 : out std_logic; -- clk
locked : out std_logic -- export
);
end component pll;