当前位置:网站首页>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 = 1
Nonblocking 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
边栏推荐
- allegro,orcad, net alias,port,off-page connector之间的异同点和如何选取
- C library function - qsort()
- 必贝特医药冲刺科创板:年营收97万亏损1.37亿 拟募资20亿
- concat和concat_ws()区别及group_concat()和repeat()函数的使用
- Exercise 10-1 calculate the sum of 1 to n using recursive functions
- Learn to punch in today
- LNMP环境mail函数不能发送邮件解决
- Although not necessarily the best, it must be the hardest!
- 7-17 crawling worms (break exercise)
- Comprehensive evaluation of good-looking, easy-to-use and powerful handwriting note taking software: notability, goodnotes, marginnote, handwriting, notes writers, collanote, collanote, prodrafts, not
猜你喜欢
7-8 overspeed judgment
泰凌冲刺科创板:拟募资13亿 国家大基金与小米长江是股东
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
关于回溯问题中的排列问题的思考(LeetCode46题与47题)
Leetcode (4) -- find the median of two positively ordered arrays
x86汇编语言-从实模式到保护模式 笔记
Exercise 10-2 recursive factorial sum
Exercise 10-8 recursive implementation of sequential output of integers
npm install卡住与node-npy的各种奇怪报错
7-9 find a small ball with a balance
随机推荐
Solve the problem of dormitory router campus network sharing login
Leetcode (4) - - trouver la médiane de deux tableaux ordonnés positifs
7-20 print 99 formula table (format output)
556. 下一个更大元素 III
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
6-9 statistics of single digits (15 points)
J-luggage lock of ICPC Shenyang station in 2021 regional games (simple code)
常见问题之PHP——ldap_add(): Add: Undefined attribute type in
Why don't I have a rookie medal
添加Zabbix计算类型项目Calculated items
Thinking about the arrangement problem in the backtracking problem (leetcode questions 46 and 47)
别再问自己适不适合做软件测试了
Too many files with unapproved license
泰凌冲刺科创板:拟募资13亿 国家大基金与小米长江是股东
JS Part III
Exercise 8-7 string sorting
Convert string to decimal integer
八大排序
Too many files with unapproved license
分布式事务(Seata) 四大模式详解