mirror of
https://github.com/MiSTer-devel/AcornAtom_MiSTer.git
synced 2026-05-17 03:01:29 +00:00
12 lines
316 B
Plaintext
12 lines
316 B
Plaintext
component pll is
|
|
port (
|
|
refclk : in std_logic := 'X'; -- clk
|
|
rst : in std_logic := 'X'; -- reset
|
|
outclk_0 : out std_logic; -- clk
|
|
outclk_1 : out std_logic; -- clk
|
|
outclk_2 : out std_logic; -- clk
|
|
locked : out std_logic -- export
|
|
);
|
|
end component pll;
|
|
|