当前位置:网站首页>Chapter 6 data flow modeling - after class exercises
Chapter 6 data flow modeling - after class exercises
2022-07-05 05:24:00 【Jiangnan small workshop】
After-school exercises
Verilog describe
// Subtracter module module sub( output D, output B, input x,y,z ); // Output D Logical expression assign D = (~x && ~y && ~z) || (~x && y && ~z) || (x && ~y && ~z) || (x && y && z); // Output B Logical expression assign B = (~x && y) || (~x && z) || (y && z); endmodule
Simulation
The simulation result is much worse than the actual , Some netizens can help to see what's wrong with the code , I haven't found it for a day .
边栏推荐
- PMP考试敏捷占比有多少?解疑
- [turn]: Apache Felix framework configuration properties
- [to be continued] [UE4 notes] L1 create and configure items
- Applet live + e-commerce, if you want to be a new retail e-commerce, use it!
- A three-dimensional button
- Warning using room database: schema export directory is not provided to the annotation processor so we cannot export
- [allocation problem] 135 Distribute candy
- Ue4/ue5 illusory engine, material part (III), material optimization at different distances
- [speed pointer] 142 circular linked list II
- Do a small pressure test with JMeter tool
猜你喜欢
Quick sort summary
Talking about JVM (frequent interview)
Applet live + e-commerce, if you want to be a new retail e-commerce, use it!
[turn]: OSGi specification in simple terms
[转]MySQL操作实战(三):表联结
Web APIs DOM节点
第六章 数据流建模—课后习题
Collapse of adjacent vertical outer margins
Binary search basis
A new micro ORM open source framework
随机推荐
Fragment addition failed error lookup
Haut OJ 1241: League activities of class XXX
On-off and on-off of quality system construction
第六章 数据流建模—课后习题
Do a small pressure test with JMeter tool
The present is a gift from heaven -- a film review of the journey of the soul
[trans]: spécification osgi
sync.Mutex源码解读
Introduction to tools in TF-A
Zheng Qing 21 ACM is fun. (3) part of the problem solution and summary
Under the national teacher qualification certificate in the first half of 2022
SAP-修改系统表数据的方法
kubeadm系列-00-overview
Ue4/ue5 illusory engine, material part (III), material optimization at different distances
PMP candidates, please check the precautions for PMP examination in July
对象的序列化
Binary search basis
C语言杂谈1
National teacher qualification examination in the first half of 2022
Reverse one-way linked list of interview questions