当前位置:网站首页>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
边栏推荐
- Exercise 9-3 plane vector addition
- Interface for querying IP home
- puzzle(016.4)多米诺效应
- puzzle(016.3)千丝万缕
- 超简单手机地图开发
- NPM install is stuck with various strange errors of node NPY
- Exercise 10-1 judge the three digits that meet the conditions
- 6-9 statistics of single digits (15 points)
- JS Part 2
- X86 assembly language - Notes from real mode to protected mode
猜你喜欢
X86 assembly language - Notes from real mode to protected mode
Exercise 10-3 recursive implementation of exponential functions
分布式事务(Seata) 四大模式详解
Eight sorts
关于回溯问题中的排列问题的思考(LeetCode46题与47题)
Redis: commandes d'action pour les données de type chaîne
x86汇编语言-从实模式到保护模式 笔记
Exercise 9-3 plane vector addition
allegro,orcad, net alias,port,off-page connector之间的异同点和如何选取
愉悦资本新双币基金近40亿元完成首次关账
随机推荐
ShowMeBug入驻腾讯会议,开启专业级技术面试时代
Exercise 8-2 calculate the sum and difference of two numbers
Preliminary summary of structure
Interface for querying IP home
Mongodb index
Exercise 6-2 using functions to sum special A-string sequences
7-20 print 99 formula table (format output)
Exercise 8-8 moving letters
Learn to punch in today
7-16 find the set of integers that meet the given conditions
Leetcode(4)——尋找兩個正序數組的中比特數
添加Zabbix计算类型项目Calculated items
JS get DPI, PX to cm, cm to PX
Facebook 如何将 Instagram 从 AWS 搬到自己的服务器
Too many files with unapproved license
Polestar美股上市:5.5万台交付如何支持得起超200亿美元估值
编程语言:类型系统的本质
中感微冲刺科创板:年营收2.4亿净亏1782万 拟募资6亿
[clean up the extraordinary image of Disk C]
Redis: commandes d'action pour les données de type chaîne