搜索附件  
头雁微网 附件中心 后勤保障 档案室 Verilog HDL Synthesis A Practical Primer: Verilog HDL Synthesis A Practical Primer.part2.rar
板块导航
附件中心&附件聚合2.0
For Discuz! X3.5 © hgcad.com

Verilog HDL Synthesis A Practical Primer: Verilog HDL Synthesis A Practical Primer.part2.rar

 

Verilog HDL Synthesis A Practical Primer:
Product Details
  • Paperback: 215 pages
  • Publisher: Star Galaxy Pub; 1 edition (October 1998)
  • Language: English
  • ISBN-10: 0965039153
  • ISBN-13: 978-0965039154


Review
"Bhasker's book reveals a variety of situations where differences between simulation and synthesis semantics are bound to occur. These are carefully covered so that novice and experienced designers become aware of these hard to debug but, very common pitfalls" -- Carlos M. Roman, Bell Labs

"I find the book useful in illustrating examples of how the Verilog language may be used to design real and practical synthesizable models. It's also helpful that it warns the user of possible simulation/ synthesis mismatches. This clarifies the sim/syn issues for beginners." -- Jenjen Tiao, Lucent Technologies

"I've finished reading your book, I have to say I think you did an outstanding job ... I will be very comfortable recommending your book instead ... I really think this is your best book yet, good job!" -- Ken Coffman, VLSI designer

"Provides students and practicing logic designers with immediate access to well organized information about Verilog HDL synthesis. Easy to read and provides a large number of examples of synthesizable Verilog models" -- Vassilios Gerousis, Senior Staff Technologist, Motorola

"The book "A Verilog Synthesis Primer" is an excellent clear and concise guide for designing RTL synthesizable models in Verilog. It is an essential addition to design engineers' technical resourses." -- Douglas J. Smith, author of "HDL Chip Design."

"The example-driven driven approach used in the Verilog HDL Synthesis Primer makes it a valuable book for novice Verilog users." -- Egbert Molenkamp, University of Twente

"This book is ideally organized for teaching Verilog-based synthesis techniques, as it shows the reader not only what hardware results from various Verilog constructs, but how to tailor the Verilog to get the desired hardware. Copious pairings of examples with diagrams make clear the relationships between code and generated gates" -- Jim Vellenga, ViewLogic Systems

Product Description
With this book, you can: - Start writing synthesizable Verilog models quickly.
- See what constructs are supported for synthesis and how these map to hardware so that you can get the desired logic.
- Learn techniques to help avoid having functional mismatches.
- Immediately start using many of the models for commonly used hardware elements described for your own use or modify these for your own application.
For more free books download visit this blog daily
没有找到引文得目录,借用中文的吧,2本书可以对照着看

第1章 基础知识
1.1 什么是综合?
1.2 设计流程中的综合
1.3 逻辑值体系
1.4 位宽
1.4.1 数据类型
1.4.2 常量
1.4.3 参数
1.5 值保持器的硬件建模
第2章 从Verilog结构到逻辑门
2.1 持续赋值语句
2.2 过程赋值语句
2.2.1 阻塞式过程赋值
2.2.2 非阻塞式过程赋值
2.2.3 赋值对象
2.2.4 赋值限制
2.3 逻辑算符
2.4 算术算符
2.4.1 无符号算术
2.4.2 有符号算术
2.4.3 进位的建模
2.5 关系算符
2.6 相等性算符
2.7 移位算符
2.8 向量运算
2.9 部分选取
2.10 位选取
2.10.1 常量下标
2.10.2 表达式中的非常量下标
2.10.3 赋值对象中的非常量下标
2.11 条件表达式
2.12 always语句
2.13 if语句
2.13.1 从if语句推导出锁存器
2.14 case语句
2.14.1 casez语句
2.14.2 casex语句
2.14.3 从case语句推导出锁存器
2.14.4 case分支的全列举
2.14.5 并行case分支
2.14.6 非常量分支项
2.15 再谈锁存器推导
2.15.1 带异步预置位和清零的锁存器
2.16 循环语句
2.17 触发器的建模
2.17.1 多个时钟
2.17.2 多相位时钟
2.17.3 使用异步预置位与清零
2.17.4 使用同步预置位与清零
2.18 再谈阻塞式和非阻塞式赋值
2.19 函数
2.20 任务
2.21 使用x值和z值
2.21.1 x值
2.21.2 z值
2.22 门级建模
2.23 模块实例化语句
2.23.1 使用预定义功能块
2.24 参数化的设计
第3章 建模示例
3.1 组合逻辑的建模
3.2 时序逻辑的建模
3.3 存储器的建模
3.4 编写布尔等式
3.5 有限状态机的建模
3.5.1 Moore有限状态机
3.5.2 Mealy有限状态机
3.5.3 状态编码
3.6 通用移位寄存器的建模
3.7 ALU的建模
3.7.1 参数化的ALU
3.7.2 简单ALU
3.8 计数器的建模
3.8.1 二进制计数器
3.8.2 模N计数器
3.8.3 约翰逊计数器
3.8.4 格雷码计数器
3.9 参数化加法器的建模
3.10 参数化的比较器的建模
3.11 译码器的建模
3.11.1 简单译码器
3.11.2 二进制译码器
3.11.3 约翰逊译码器
3.12 多路选择器的建模
3.12.1 简单多路选择器
3.12.2 参数化的多路选择器
3.13 参数化的奇偶校验生成器的建模
3.14 三态门的建模
3.15 数据流检测模型
3.16 阶乘模型
3.17 UART模型
3.18 纸牌21点模型
第4章 模型的优化
4.1 资源分配
4.2 公共子表达式
4.3 代码移位
4.4 公因子提取
4.5 交换律和结合律
4.6 其他优化手段
4.7 触发器和锁存器的优化
4.7.1 消除触发器
4.7.2 消除锁存器
4.8 设计规模
4.9 使用括号
第5章 验证
5.1 测试平台
5.2 赋值语句中的延迟
5.3 悬空的端口
5.4 遗失的锁存器
5.5 再谈延迟
5.6 事件表
5.7 综合指令
5.8 变量的异步预置位
5.9 阻塞式和非阻塞式赋值
5.9.1 组合逻辑
5.9.2 时序逻辑
附录A 可综合的语言结构
附录B 通用库
Verilog HDL Synthesis A Practical Primer.part1

ص

Verilog HDL Synthesis A Practical Primer.part2
Verilog HDL Synthesis A Practical Primer.part3
:11bb :27bb :27bb :29bb :30bb :31bb
:11bb 学习中  楼主今天是大爆发啊
多谢楼主
:11bb :11bb :11bb :11bb :11bb
:cacakiki10de :cacakiki10de
xue................................................................
太好了!!!!!!!正需要呢!!!!
回复。。。。。。。。。。。。。。。。。
给此楼层加分 !!!!!!!!!!!
顶个,,看看什么好东东:11bb
 谢谢!                             
:27bb 3# drjiachen
谢谢楼主,好东西,收下了。
:snicker:53bb
好東西,多謝!
看下。。谢谢蛤
违规跟个人全国各二3二套房4
客服中心 搜索
关于我们
关于我们
关注我们
联系我们
帮助中心
资讯中心
企业生态
社区论坛
服务支持
资源下载
售后服务
推广服务
关注我们
官方微博
官方空间
官方微信
返回顶部