当前位置:网站首页>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
边栏推荐
猜你喜欢
【北大青鸟昌平校区】互联网行业中,哪些岗位越老越吃香?
必贝特医药冲刺科创板:年营收97万亏损1.37亿 拟募资20亿
puzzle(016.3)千丝万缕
Page generation QR code
JS matrix zero
Solution to failure or slow downloading of electron when electron uses electron builder to package
Print. JS -- web page file printing
好看、好用、强大的手写笔记软件综合评测:Notability、GoodNotes、MarginNote、随手写、Notes Writers、CollaNote、CollaNote、Prodrafts、Noteshelf、FlowUs、OneNote、苹果备忘录
Exercise 6-1 classify and count the number of characters
Similarities and differences between Allegro, OrCAD, net alias, port, off page connector and how to select them
随机推荐
ZABBIX saves the page blank after adding calculated items
How to bold text in AI
JS Part 2
2021年区域赛ICPC沈阳站J-Luggage Lock(代码简洁)
编程语言:类型系统的本质
7-2 and then what time (15 minutes)
C library function - qsort()
[clean up the extraordinary image of Disk C]
SSH访问控制,多次失败登录即封掉IP,防止暴力破解
Etcd cluster permission management and account password usage
牛客网:过河卒
6-9 statistics of single digits (15 points)
如何查询淘宝天猫的宝贝类目
Exercise 10-3 recursive implementation of exponential functions
retrofit
Exercise 6-6 use a function to output an integer in reverse order
中感微冲刺科创板:年营收2.4亿净亏1782万 拟募资6亿
Facebook 如何将 Instagram 从 AWS 搬到自己的服务器
7-8 overspeed judgment
Exercise 10-8 recursive implementation of sequential output of integers