- 6
- 0
- 约1.42万字
- 约 16页
- 2017-01-18 发布于北京
- 举报
[eda程序
跑马灯;
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity paomadeng is
port(clk : in std_logic;
input: in std_logic;
reset: in std_logic;
q: out std_logic_vector(7 downto 0));
end;
architecture rtl of paomadeng is
type state_type is (s0, s1, s2, s3);
signal state : state_type;
signal q1:std_logic_vector(7 downto 0);
signal count:std_logic_vector(3 downto 0);
begin
process (clk, reset)
begin
if reset = 1 then
state = s0;
q1=(others=0);
elsif (rising_edge(clk)) then
case state is
when s0=
if q1then --s0
q1
您可能关注的文档
- (2014中国人寿保险考试题及答案10.doc
- (2014中国人寿保险考试题及答案4.doc
- (2014中国人寿保险考试题及答案5.doc
- [AjaxPro的使用方法汇总.doc
- (2014中国人身保险从业人员资格考试5.doc
- (2014中国医科大学护理管理学在线作业答案.doc
- [AJA影视后期制作产品.doc
- [alarm.doc
- [ALINCODR620中文使用说明.docx
- (2014中国石油大学远程教育西方艺术欣赏在线考试答案.doc
- 2025年下半年小学教师资格考试简答题汇总.pdf
- 护理教学比赛资源整合.pptx
- 2022泰和安消防 JTGB-HM-TX3H01 JTGB-HM-TX3H02 TGB-HM-TX3H03 系列点型红外火焰探测器.docx
- 2025年驾驶证资格考试最新最全交通标志大全.pdf
- 护理教学理念:更新与发展.pptx
- 2025年新驾考科目一巧记速记口诀(全国通用).pdf
- 2025年一级建造师《项目管理》黄金预测考点【打印版】.pdf
- 证券公司高级管理人员资质测试章节练习-第一部分综合类第六章至七章:证券投资基金法、信托法.pdf
- 护理教学研究:方法与成果.pptx
- 麻纺车间设备更新准则.docx
最近下载
- 液压挖掘机液压系统设计说明书.pdf VIP
- 论法律文本的静态对等翻译_李克兴.pdf VIP
- GB38900机动车安全技术检验项目和方法标准规范.pdf VIP
- DZ∕T 0286-2015 地质灾害危险性评估规范.pdf VIP
- 机械设计基础 第六章 螺纹连接和螺旋传动(另有配套教案).ppt VIP
- TJGT H3004-2026高速公路改扩建工程施工安全作业规程.pdf VIP
- 中国大唐集团公司风力发电企业安全风险控制指导手册(2026版).doc VIP
- 食品检验检测机构质量手册和程序文件.docx VIP
- 人教版九年级化学上下册所有的化学方程式.doc VIP
- 医院保安人员服务礼仪与职业素养.pptx VIP
原创力文档

文档评论(0)