当前位置:网站首页>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 |
边栏推荐
- Calculate sha256 value of data or file based on crypto++
- NSSA area where OSPF is configured for Huawei equipment
- [Chongqing Guangdong education] reference materials for Zhengzhou Vocational College of finance, taxation and finance to play around the E-era
- Single source shortest path exercise (I)
- FPGA内部硬件结构与代码的关系
- Priority queue (heap)
- 常用API类及异常体系
- 如何解决ecology9.0执行导入流程流程产生的问题
- Search (DFS and BFS)
- Wechat applet -- wxml template syntax (with notes)
猜你喜欢

【DesignMode】装饰者模式(Decorator pattern)
![Atcoder beginer contest 258 [competition record]](/img/e4/1d34410f79851a7a81dd8f4a0b54bf.gif)
Atcoder beginer contest 258 [competition record]

Basic introduction and source code analysis of webrtc threads

wx.getLocation(Object object)申请方法,最新版

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

LeetCode 1598. Folder operation log collector

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

关于结构体所占内存大小知识

FFMPEG关键结构体——AVFrame

Data analysis thinking analysis methods and business knowledge - analysis methods (III)
随机推荐
State mode design procedure: Heroes in the game can rest, defend, attack normally and attack skills according to different physical strength values.
uniapp开发,打包成H5部署到服务器
AtCoder Beginner Contest 254【VP记录】
权限问题:source .bash_profile permission denied
LeetCode 斐波那契序列
Key structure of ffmpeg - avframe
Configuring OSPF load sharing for Huawei devices
Single merchant v4.4 has the same original intention and strength!
OpenCV经典100题
wx.getLocation(Object object)申请方法,最新版
Transport layer protocol ----- UDP protocol
MySql——CRUD
MySQL functions
[designmode] adapter pattern
【EI会议分享】2022年第三届智能制造与自动化前沿国际会议(CFIMA 2022)
NSSA area where OSPF is configured for Huawei equipment
SQLServer连接数据库读取中文乱码问题解决
Analysis of the combination of small program technology advantages and industrial Internet
选择致敬持续奋斗背后的精神——对话威尔价值观【第四期】
Chapter 16 oauth2authorizationrequestredirectwebfilter source code analysis