当前位置:网站首页>FPGA blocking assignment and non blocking assignment
FPGA blocking assignment and non blocking assignment
2022-07-03 14:24:00 【eachanm】
Block assignment : It was used = Number
Nonblocking assignment : It was used <= Number
Assume initialization is a = 1, b = 2
Block assignment :
// initialization a = 1, b = 2
[email protected](posedge clk)
begin
b = a;
c = b;
end
// After operation c = b = 1Nonblocking assignment :
// initialization a = 1, b = 2
[email protected](posedge clk)
begin
b <= a;
c <= b;
end
// After operation b = 1, c = 2
Suggest :
stay assign of use = Number
stay always of use <= Number
边栏推荐
- Leetcode(4)——尋找兩個正序數組的中比特數
- 全文检索引擎Solr系列—–全文检索基本原理
- 别再问自己适不适合做软件测试了
- 7-23 currency conversion (using array conversion)
- 洛谷P4047 [JSOI2010]部落划分 题解
- 洛谷P5194 [USACO05DEC]Scales S 题解
- Onmenusharetimeline custom shared content is invalid, and the title and icon are not displayed
- 中国锂电池电解液行业市场专项调研报告(2022版)
- 7-15 calculation of PI
- Exercise 6-6 use a function to output an integer in reverse order
猜你喜欢

Exercise 10-2 recursive factorial sum

Exercise 9-1 time conversion

JS first summary

JS Part 2

ConstraintLayout 的使用

Understand the application scenario and implementation mechanism of differential segment
![洛谷P5018 [NOIP2018 普及组] 对称二叉树 题解](/img/89/da1a3a38e02671628f385de0f30369.png)
洛谷P5018 [NOIP2018 普及组] 对称二叉树 题解

7-11 calculation of residential water charges by sections

JS Part III

retrofit
随机推荐
Tailing rushes to the scientific and Technological Innovation Board: it plans to raise 1.3 billion, and Xiaomi Changjiang is the shareholder
Eight sorts
关于回溯问题中的排列问题的思考(LeetCode46题与47题)
数学常数表 by q779
一文了解微分段应用场景与实现机制
Add ZABBIX calculation type itemcalculated items
Exercise 6-1 classify and count the number of characters
7-23 currency conversion (using array conversion)
Strategy, tactics (and OKR)
2021年区域赛ICPC沈阳站J-Luggage Lock(代码简洁)
NFT新的契机,多媒体NFT聚合平台OKALEIDO即将上线
Leetcode(4)——尋找兩個正序數組的中比特數
修改数据库中的记录为什么报这个错
Thread. Sleep and timeunit SECONDS. The difference between sleep
Exercise 6-6 use a function to output an integer in reverse order
Redis: redis data structure and key operation commands
Scroll detection, so that the content in the lower right corner is not displayed at the top of the page, but is displayed as the mouse slides
好看、好用、强大的手写笔记软件综合评测:Notability、GoodNotes、MarginNote、随手写、Notes Writers、CollaNote、CollaNote、Prodrafts、Noteshelf、FlowUs、OneNote、苹果备忘录
7-7 12-24 hour system
JS shift operators (< <,> > and > > >)