当前位置:网站首页>The relationship between FPGA internal hardware structure and code
The relationship between FPGA internal hardware structure and code
2022-07-06 00:23:00 【Silly boy: CPU】
FPGA The relationship between internal hardware structure and code
I/O Mapping
Give an input signal , Then output directly without any logic operation .
module line(
input wire in,
output wire out
);
assign out = in;
endmodule

Mapping of combinatorial logic
module line(
input wire in1,
input wire in2,
output wire out
);
assign out = in1 & in2;
endmodule

And logical truth table
| Input | Input | Output |
|---|---|---|
| in1 | in2 | out |
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
边栏推荐
- wx.getLocation(Object object)申请方法,最新版
- Global and Chinese markets for hinged watertight doors 2022-2028: Research Report on technology, participants, trends, market size and share
- 常用API类及异常体系
- notepad++正则表达式替换字符串
- Analysis of the combination of small program technology advantages and industrial Internet
- Global and Chinese markets of POM plastic gears 2022-2028: Research Report on technology, participants, trends, market size and share
- Yolov5, pychar, Anaconda environment installation
- Data analysis thinking analysis methods and business knowledge - analysis methods (III)
- Date类中日期转成指定字符串出现的问题及解决方法
- QT -- thread
猜你喜欢

Leetcode 450 deleting nodes in a binary search tree

如何解决ecology9.0执行导入流程流程产生的问题

【NOI模拟赛】Anaid 的树(莫比乌斯反演,指数型生成函数,埃氏筛,虚树)
![[designmode] Decorator Pattern](/img/65/457e0287383d0ca9a28703a63b4e1a.png)
[designmode] Decorator Pattern

Data analysis thinking analysis methods and business knowledge - analysis methods (III)

Determinant learning notes (I)

MySQL之函数

Calculate sha256 value of data or file based on crypto++

OpenCV经典100题
![[online chat] the original wechat applet can also reply to Facebook homepage messages!](/img/d2/1fd4de4bfd433ed397c236ddb97a66.png)
[online chat] the original wechat applet can also reply to Facebook homepage messages!
随机推荐
Solve the problem of reading Chinese garbled code in sqlserver connection database
Configuring OSPF load sharing for Huawei devices
[designmode] composite mode
Opencv classic 100 questions
行列式学习笔记(一)
Intranet Security Learning (V) -- domain horizontal: SPN & RDP & Cobalt strike
2022-02-13 work record -- PHP parsing rich text
[Chongqing Guangdong education] Chongqing Engineering Vocational and Technical College
认识提取与显示梅尔谱图的小实验(观察不同y_axis和x_axis的区别)
Gavin teacher's perception of transformer live class - rasa project actual combat e-commerce retail customer service intelligent business dialogue robot system behavior analysis and project summary (4
notepad++正则表达式替换字符串
Huawei equipment is configured with OSPF and BFD linkage
Detailed explanation of APP functions of door-to-door appointment service
Data analysis thinking analysis methods and business knowledge - analysis methods (III)
7.5 decorator
MySQL global lock and table lock
FFMPEG关键结构体——AVCodecContext
MySql——CRUD
Determinant learning notes (I)
Yolov5, pychar, Anaconda environment installation