mirror of
https://github.com/Gehstock/Mist_FPGA.git
synced 2026-04-29 13:32:38 +00:00
31 lines
607 B
VHDL
31 lines
607 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;
|