mirror of
https://github.com/Gehstock/Mist_FPGA.git
synced 2026-05-03 06:49:08 +00:00
29 lines
552 B
VHDL
29 lines
552 B
VHDL
library ieee;
|
|
use ieee.std_logic_1164.all;
|
|
use ieee.numeric_std.all;
|
|
|
|
library work;
|
|
use work.pace_pkg.all;
|
|
use work.platform_pkg.all;
|
|
use work.video_controller_pkg.all;
|
|
|
|
entity tilemapCtl is
|
|
generic
|
|
(
|
|
DELAY : integer
|
|
);
|
|
port
|
|
(
|
|
reset : in std_logic;
|
|
|
|
-- video control signals
|
|
video_ctl : in from_VIDEO_CTL_t;
|
|
|
|
-- tilemap controller signals
|
|
ctl_i : in to_TILEMAP_CTL_t;
|
|
ctl_o : out from_TILEMAP_CTL_t;
|
|
|
|
graphics_i : in to_GRAPHICS_t
|
|
);
|
|
end entity tilemapCtl;
|