搜索结果
找到约 3 项符合
STD_LOGIC 的查询结果
按分类筛选
单片机编程 状态机设计
状态机设计:8.1.1 数据类型定义语句TYPE语句的用法如下:TYPE 数据类型名IS 数据类型定义OF 基本数据类型;或TYPE 数据类型名IS 数据类型定义;TYPE st1 IS ARRAY ( 0 TO 15 ) OF STD_LOGIC ;TYPE week IS (sun,mon,tue,wed,thu,fri,sat) ;
8.1.1 数据类型定义语句TYPE m_state IS ( st0,st1,st2,st3,st4,st5 ) ;S ...
C/C++语言编程 lcd计数显示程序
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
 &n ...
源码 VHDL4选1数据选择器
VHDL编写的4选一数据选择器
entity mux41a is
       port(a,b:in
std_logic;
               s1,s2,s3,s4:in std_logic;
           &nbs ...