1
0
mirror of https://github.com/Gehstock/Mist_FPGA.git synced 2026-04-29 21:37:19 +00:00
Files
Gehstock.Mist_FPGA/Arcade_MiST/IremM62 Hardware/rtl/bitmapctl_e.vhd
2020-03-12 10:04:03 +01:00

31 lines
613 B
VHDL

library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
use ieee.numeric_std.all;
library work;
use work.pace_pkg.all;
use work.video_controller_pkg.all;
use work.platform_pkg.all;
--use work.project_pkg.all;
entity bitmapCtl is
generic
(
DELAY : integer
);
port
(
reset : in std_logic;
-- video control signals
video_ctl : in from_VIDEO_CTL_t;
-- bitmap controller signals
ctl_i : in to_BITMAP_CTL_t;
ctl_o : out from_BITMAP_CTL_t;
graphics_i : in to_GRAPHICS_t
);
end entity bitmapCtl;