Location:
Search - verilog include
Search list
Description: 本CD-ROM包括《Verilog-HDL实践与应用系统设计》一书中的全部例子,这些例子全部通过了验证。第七章以后的设计实例,不仅有Verilog-HDL的例子,也附了包括VB、VC++等源程序,甚至将DLL的生成方法也详尽地作了说明。
-the CD-ROM include "Verilog-HDL Practice and Application System Design," a book the whole Examples of these examples were passed certification. After the seventh chapter, a design example is not only Verilog-HDL example, the report include VB, VC and other source files, even DLL generator also described in detail.
Platform: |
Size: 784543 |
Author: 东子 |
Hits:
Description: 目 录
译者序
前言
第1章 简介 1
1.1 什么是Verilog HDL? 1
1.2 历史 1
1.3 主要能力 1
第2章 HDL指南 4
2.1 模块 4
2.2 时延 5
2.3 数据流描述方式 5
2.4 行为描述方式 6
2.5 结构化描述形式 8
2.6 混合设计描述方式 9
2.7 设计模拟 10
第3章 Verilog语言要素 14
3.1 标识符 14
3.2 注释 14
3.3 格式 14
3.4 系统任务和函数 15
3.5 编译指令 15
3.5.1 `define和`undef 15
3.5.2 `ifdef、`else 和`endif 16
3.5.3 `default_nettype 16
3.5.4 `include 16
3.5.5 `resetall 16
3.5.6 `timescale 16
3.5.7 `unconnected_drive和
`nounconnected_drive 18
3.5.8 `celldefine 和 `endcelldefine 18
3.6 值集合 18
3.6.1 整型数 18
3.6.2 实数 19
3.6.3 字符串 20
3.7 数据类型 20
3.7.1 线网类型 20
3.7.2 未说明的线网 23
3.7.3 向量和标量线网 23
3.7.4 寄存器类型 23
3.8 参数 26
第4章 表达式 28
4.1 操作数 28
4.1.1 常数 28
4.1.2 参数 29
4.1.3 线网 29
4.1.4 寄存器 29
4.1.5 位选择 29
4.1.6 部分选择 29
4.1.7 存储器单元 30
4.1.8 函数调用 30
4.2 操作符 30
4.2.1 算术操作符 31
4.2.2 关系操作符 33
4.2.3 相等关系操作符 33
4.2.4 逻辑操作符 34
4.2.5 按位操作符 35
4.2.6 归约操作符 36
4.2.7 移位操作符 36
4.2.8 条件操作符 37
4.2.9 连接和复制操作 37
4.3 表达式种类 38
第5章 门电平模型化 39
5.1 内置基本门 39
5.2 多输入门 39
5.3 多输出门 41
5.4 三态门 41
5.5 上拉、下拉电阻 42
5.6 MOS开关 42
5.7 双向开关 44
5.8 门时延 44
5.9 实例数组 45
5.10 隐式线网 45
5.11 简单示例 46
5.12 2-4解码器举例 46
5.13 主从触发器举例 47
5.14 奇偶电路 47
第6章 用户定义的原语 49
6.1 UDP的定义 49
6.2 组合电路UDP 49
6.3 时序电路UDP 50
6.3.1 初始化状态寄存器 50
6.3.2 电平触发的时序电路UDP 50
6.3.3 边沿触发的时序电路UDP 51
6.3.4 边沿触发和电平触发的混合行为 51
6.4 另一实例 52
6.5 表项汇总 52
第7章 数据流模型化 54
7.1 连续赋值语句 54
7.2 举例 55
7.3 线网说明赋值 55
7.4 时延 55
7.5 线网时延 57
7.6 举例 57
7.6.1 主从触发器 57
7.6.2 数值比较器 58
第8章 行为建模 59
8.1 过程结构 59
8.1.1 initial 语句 59
8.1.2 always语句 61
8.1.3 两类语句在模块中的使用 62
8.2 时序控制 63
8.2.1 时延控制 63
8.2.2 事件控制 64
8.3 语句块 65
8.3.1 顺序语句块 66
8.3.2 并行语句块 67
8.4 过程性赋值 68
8.4.1 语句内部时延 69
8.4.2 阻塞性过程赋值 70
8.4.3 非阻塞性过程赋值 71
8.4.4 连续赋值与过程赋值的比较 72
8.5 if 语句 73
8.6 case语句 74
8.7 循环语句 76
8.7.1 forever 循环语句 76
8.7.2 repeat 循环语句 76
8.7.3 while 循环语句 77
8.7.4 for 循环语句 77
8.8 过程性连续赋值 78
8.8.1 赋值—重新赋值 78
8.8.2 force与release 79
8.9 握手协议实例 80
第9章 结构建模 83
9.1 模块 83
9.2 端口 83
9.3 模块实例语句 83
9.3.1 悬空端口 84
9.3.2 不同的端口长度 85
9.3.3 模块参数值 85
9.4 外部端口 87
9.5 举例 89
第10章 其他论题 91
10.1 任务 91
10.1.1 任务定义 91
10.1.2 任务调用 92
10.2 函数 93
10.2.1 函数说明部分 93
10.2.2 函数调用 94
10.3 系统任务和系统函数 95
10.3.1 显示任务 95
10.3.2 文件输入/输出任务 97
10.3.3 时间标度任务 99
10.3.4 模拟控制任务 99
10.3.5 定时校验任务 100
10.3.6 模拟时间函数 101
10.3.7 变换函数 102
10.3.8 概率分布函数 102
10.4 禁止语句 103
10.5 命名事件 104
10.6 结构描述方式和行为描述方式的
混合使用 106
10.7 层次路径名 107
10.8 共享任务和函数 108
10.9 值变转储文件 110
10.9.1 举例 111
10.9.2 VCD文件格式 112
10.10 指定程序块 113
10.11 强度 114
10.11.1 驱动强度 114
10.11.2 电荷强度 115
10.12 竞争状态 116
第11章 验证 118
11.1 编写测试验证程序 118
11.2 波形产生 118
11.2.1 值序列 118
11.2.2 重复模式 119
11.3 测试验证程序实例 123
11.3.1 解码器 123
11.3.2 触发器 124
11.4 从文本文件中读取向量 126
11.5 向文本文件中写入向量 127
11.6 其他实例 128
11.6.1 时钟分频器 128
11.6.2 阶乘设计 130
11.6.3 时序检测器 132
第12章 建模实例 136
12.1 简单元件建模 136
12.2 建模的不同方式 138
12.3 时延建模 139
12.4 条件操作建模 141
12.5 同步时序逻辑建模 142
12.6 通用移位寄存器 145
12.7 状态机建模 145
12.8 交互状态机 147
12.9 Moore有限状态机建模 150
12.10 Mealy型有限状态机建模 151
12.11 简化的21点程序 153
附录 语法参考 157
参考文献 172
Platform: |
Size: 4169233 |
Author: mayzhao |
Hits:
Description: 包含UART口的VERILOG源程序,该程序在FPGA上验证通过,可作为芯片设计,或FPGA设计的一个完整IP核,硬件设计的兄弟们可参考一下。-include UART port of VERILOG source, the program tested in FPGA, as chip design, or FPGA design of a complete IP cores, hardware design brothers can make reference.
Platform: |
Size: 9216 |
Author: 施向东 |
Hits:
Description: 這是一堆verilog的source code.包含許多常用的小電路.還不錯用.-many verilog source codes, include a lot of small electrocircuit.
Platform: |
Size: 169984 |
Author: ㄚ福 |
Hits:
Description: VGA显示的FPGA实现方法,包括原理和一个小例子。-the application of VGA display with FPGA,include theory and example
Platform: |
Size: 84992 |
Author: 王天权 |
Hits:
Description: 这是一个数值计算算法在FPGA中实现的东东。包括CORDIC算法的详细资料还有float型数的详细论述,可供参考。-This is a numerical algorithms in FPGA achieve saucepan. CORDIC algorithm include detailed information is the number of float-type discussed in detail for reference.
Platform: |
Size: 2979840 |
Author: 克林顿 |
Hits:
Description: 【经典设计】VHDL源代码下载~~
其中经典的设计有:【自动售货机】、【电子钟】、【红绿灯交通信号系统】、【步进电机定位控制系统】、【直流电机速度控制系统】、【计算器】、【点阵列LED显示控制系统】
基本数字逻辑设计有:【锁存器】、【多路选择器】、【三态门】、【双向输入|输出端口】、【内部(缓冲)信号】、【编码转换】、【加法器】、【编码器/译码器】、【4位乘法器】、【只读存储器】、【RSFF触发器】、【DFF触发器】、【JKFF触发器】、【计数器】、【分频器】、【寄存器】、【状态机】
- [ Classics design ] the VHDL source code downloads ~ ~ classics
the design to include: [ Vending machine ], [ electron clock ], [
traffic light traffic signal system ], [ step of 杩涚數 machine
localization control system ], [ direct current machine speed control
system ], [ calculator ], [ array LED display control system ] the
basic numeral logical design includes: [ Latch ], [ multichannel
selector ], [ 涓夋
Platform: |
Size: 44032 |
Author: senkong |
Hits:
Description: Verilog变成100例,里面包含了Verilog编程中常见的一些例子,对于新手还是很有帮助的。-Verilog into 100 cases, they include a Verilog Programming common examples is very helpful for the novice.
Platform: |
Size: 44032 |
Author: 张存飞 |
Hits:
Description: 本CD-ROM包括《Verilog-HDL实践与应用系统设计》一书中的全部例子,这些例子全部通过了验证。第七章以后的设计实例,不仅有Verilog-HDL的例子,也附了包括VB、VC++等源程序,甚至将DLL的生成方法也详尽地作了说明。
-the CD-ROM include "Verilog-HDL Practice and Application System Design," a book the whole Examples of these examples were passed certification. After the seventh chapter, a design example is not only Verilog-HDL example, the report include VB, VC and other source files, even DLL generator also described in detail.
Platform: |
Size: 784384 |
Author: 东子 |
Hits:
Description: An AHB system is made of masters slaves and interconnections. A general approach to include all possible "muxed" implementation of multi layered AHB systems and arbitrated AHB ones can be thought as an acyclic graph where every source node is a master, every destination node is a slave and every internal node is an arbiter there must
be one and only one arc exiting a master and one or more entering a slave (single slave verus multi-slave or arbitrated slave) an arbiter can have as many input and output connections as needed. A bridge is a special node that collapses one or more slave nodes and a master node in a new "complex" node.
Platform: |
Size: 269312 |
Author: 木石 |
Hits:
Description: verilog语法基本入门讲义,主要内容包括verilog语言介绍,入门,缄默与仿真等。-basic grammar lectures Verilog entry, the main contents include Verilog language introduction, entry, such as silence and simulation.
Platform: |
Size: 101376 |
Author: 赵瑞 |
Hits:
Description: 一个用verilog语言实现的包含:键盘扫描,led驱动、vga视频输出的例子。功能为用键盘控制一个方块的显示位置。需要有fpga板子支持。-A Verilog language used to achieve include: keyboard scanning, led driver, vga video output examples. Functions using the keyboard to control the display of the location of a box. Needed to support the FPGA board.
Platform: |
Size: 2048 |
Author: Nee |
Hits:
Description: 基于FPGA的多功能数字钟的设计与实现 内附有详尽的Verilog HDL源码,其功能主要有:时间设置,时间显示,跑表,分频,日期设置,日期显示等-FPGA-based multi-functional Digital Clock Design and Implementation of typhoons and rainstorms are detailed Verilog HDL source code, its functions include: time settings, time display, stopwatch, frequency, date setting, date display
Platform: |
Size: 3293184 |
Author: |
Hits:
Description: verilog硬件语义的介绍,里面囊括了几乎所有verilog的相关硬件的语义。-Verilog hardware semantics introduced, which include almost all the relevant hardware Verilog semantics.
Platform: |
Size: 466944 |
Author: 刘峰 |
Hits:
Description: 里面包含了多个verilog源代码例子 包括循环码编解码、加法器等等常用的例子 -Which contains a number of Verilog source code examples include the cyclic code coding and decoding, and so on commonly used adder example
Platform: |
Size: 224256 |
Author: 高明 |
Hits:
Description: uart VHDL code : include tx,rx,parity bit control
Platform: |
Size: 13312 |
Author: byungchan |
Hits:
Description: 利用Verilog实现的数字钟和汽车尾灯,有闹钟,报时,置数等多种功能-Verilog
Platform: |
Size: 2048 |
Author: xzd |
Hits:
Description: 用Verilog语言编写的一些简单的FPGA入门实验,用ALTERA DE2开发板和Quartus_II软件开发环境。包括:流水灯实验、数码管显示实验-With Verilog language preparation some simple introduction experiment, with FPGA ALTERA DE2 development board and Quartus_II software development environment. Include water lamp experiment, digital pipe display experimentation, etc
Platform: |
Size: 10240 |
Author: 星光依旧 |
Hits:
Description: 8位计数器,可以实现计数器的相关功能,内涵verilog文件和testbench文件(8 bits counter,include v and testbech files ,has the ability of 8 bits counter)
Platform: |
Size: 14336 |
Author: wow111
|
Hits:
Description: 学习FPGA的入门书籍,主要内容包括:逻辑电路、组合逻辑、算术运算电路、存储元件、同步时序电路(有限状态机)、异步时序电路、测试等。《数字逻辑基础与Verilog设计》(原书第2版)内容全面,概念清楚,结合了逻辑设计最新技术的发展。(Learn the introductory books of FPGA. The main contents include logic circuit, combinational logic, arithmetic operation circuit, storage element, synchronous sequential circuit (finite state machine), asynchronous sequential circuit, test and so on. "Digital logic base and Verilog design" (second edition of the original book) is full of content, clear concept, combined with the development of the latest technology of logical design.)
Platform: |
Size: 52497408 |
Author: 假假假 |
Hits: