📂 共 1 个源码文件 点击文件名可在线查看源代码
温馨提示:点击文件名或"查看源码"按钮可在线浏览源代码,支持语法高亮显示。
💡 温馨提示:本资源由用户 gdmichael 上传分享,仅供学习交流使用。如有侵权,请联系我们删除。
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
---- Uncomment the following library declaration if instantiating
---- any Xilinx primitives in this code.
--library UNISIM;
--use UNISIM.VComponents.all;
entity counter is
Port ( clk : in std_logic;
resetn : in std_logic;
dout : out std_logic_vector(7 downto 0);
lcd_en : out std_logic;
lcd_rs : out std_logic;
lcd_rw : out std_logic);
end counter;