Make terminal genericity opt-in for easier interfacing
This commit is contained in:
parent
7cf0aa33c0
commit
2f858a6764
4
main.vhd
4
main.vhd
@ -45,9 +45,7 @@ begin
|
|||||||
CLKFX_OUT => clk_vga
|
CLKFX_OUT => clk_vga
|
||||||
);
|
);
|
||||||
|
|
||||||
terminal: entity work.terminal generic map (
|
terminal: entity work.terminal port map (
|
||||||
clk_f => clk_vga_f
|
|
||||||
) port map (
|
|
||||||
clk => clk_vga,
|
clk => clk_vga,
|
||||||
reset => reset,
|
reset => reset,
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ use unisim.VComponents.all;
|
|||||||
|
|
||||||
entity terminal is
|
entity terminal is
|
||||||
generic (
|
generic (
|
||||||
clk_f: integer
|
clk_f: integer := 48_000_000
|
||||||
);
|
);
|
||||||
port (
|
port (
|
||||||
clk: in std_logic;
|
clk: in std_logic;
|
||||||
|
Loading…
Reference in New Issue
Block a user