计数器设计

此项目是一个4位递增计数器,具有同步高电平有效复位和具有高电平使能信号

应用介绍

//-----------------------------------------------------
// This is my second Verilog Design
// Design Name : first_counter
// File Name : first_counter.v
// Function : This is a 4 bit up-counter with
// Synchronous active high reset and
// with active high enable signal
//-----------------------------------------------------
module first_counter (
clock , // Clock input of the design
reset , // active high, synchronous Reset input
enable , // Active high enable signal for counter
counter_out // 4 bit vector output of the counter
); // End of port list
//-------------Input Ports-----------------------------
input clock ;
input reset ;
input enable ;
//-------------Output Ports----------------------------
output [3:0] counter_out ;
//-------------Input ports Data Type-------------------
// By rule all the input ports should be wires   
wire clock ;
wire reset ;
wire enable ;
//-------------Output Ports Data Type------------------
// Output port can be a storage element (reg) or a wire
reg [3:0] counter_out ;

文件列表(部分)

名称 大小 修改日期
verilog柜台设计.txt0.65 KB2020-03-08

立即下载

相关下载

[FPGA代码 和verilog代码] 这是FPGA verilog代码设计到SD卡操作, 摄像头ov7725,ov5640, 音频,以太网udp, vga接口,hdmi接口,tft图像, ov5640 摄像头,音频等等一些经典代码,Quartus II 开发
[FPGA代码 和verilog代码] 这是FPGA学习的一些例程,非常有参考意义: 1. 半加器2. 全加器3. 译码器4. LED5. flip 触发器6. 计算器7.按键 8.蜂鸣器9. ip核10 .rs232
[FPGA 路线] FPGA 大牛推荐你们看如下文档,如何成为芯片高手: 1. Verilog硬件描述语言IEEE官方手册2. Xilinx S6系列官方资料3. Modelsim仿真参考工具书
[Verilog硬件描述语言IEEE官方手册] Verilog硬件描述语言IEEE官方手册,IEEE Standard Verilog Hardware Description Language
[设计与验证:Verilog HDL] 设计与验证以实例讲解的方式对HDL语言的设计方法进行介绍。介绍了Verilog HDL语言的基本概念、设计流程、语法及建模方式等内容;主要讨论如何合理地使用Verilog HDL语言描述高性能的可综合电路介
[Verilog数字系统设计教程] Verilog HDL和VHDL的比较 1.4 Verilog的应用情况和适用的设计 1.5 采用Verilog HDL设计复杂数字电路的优点 1.6 采用硬件描述语言(Verilog HDL)的设计流程简介

评论列表 共有 1 条评论

暂无评论

微信捐赠

微信扫一扫体验

立即
上传
发表
评论
返回
顶部