会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
阿J
来自土豆服务器
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
4
5
6
7
8
9
10
11
12
13
下一页
2020年6月10日
有符号和无符号数的加法
摘要: 转载https://blog.csdn.net/u014485485/article/details/79962316
阅读全文
posted @ 2020-06-10 11:19 Connor_Jiao
阅读(774)
评论(0)
推荐(0)
2020年6月9日
LFSR
摘要: 转https://blog.csdn.net/qq_44113393/article/details/89852994 2.https://www.cnblogs.com/weijianlong/p/11947741.html
阅读全文
posted @ 2020-06-09 22:06 Connor_Jiao
阅读(148)
评论(0)
推荐(0)
2020年6月8日
双边沿采样
摘要: 代码:实际设计时要加上复位信号,保证寄存器有初值。 module edge_double( clk, rst_n, d, q ); input clk; input rst_n; input d; output q; reg q_d1; reg q_d2; always@(posedge clk o
阅读全文
posted @ 2020-06-08 11:12 Connor_Jiao
阅读(941)
评论(0)
推荐(1)
2020年6月5日
`ifdef、`else、`endif 用法
摘要: 一般情况下,Verilog HDL源程序中所有的行都参加编译。但是有时候希望对其中的一部份内容只有在条件满足的时候才进行编译,也就是对一部分内容指定编译的条件,这就是“条件编译”。有时,希望当满足条件时对一组语句进行编译,当条件不满足时则对另外一组语句进行编译。 条件编译命令的几种形式: (1)`i
阅读全文
posted @ 2020-06-05 16:03 Connor_Jiao
阅读(1288)
评论(0)
推荐(0)
交通信号灯
摘要: 绿灯25秒,黄灯5秒,红灯30s `timescale 1ns / 1ps ////////////////////////////////////////////////////////////////////////////////// // Engineer: connor jiao // C
阅读全文
posted @ 2020-06-05 14:56 Connor_Jiao
阅读(191)
评论(0)
推荐(0)
2020年6月3日
异步复位同步释放
摘要: https://blog.csdn.net/wordwarwordwar/article/details/79889725转载
阅读全文
posted @ 2020-06-03 16:57 Connor_Jiao
阅读(132)
评论(0)
推荐(0)
用Verilog来实现d触发器2分频的Verilog hdl程序
摘要: module divide_2(clk,rst,clk_out); input clk,rst;output clk_out; reg clk_out; always @(posedge clk or negedge rst) if(!rst) begin clk_out<=0; end else
阅读全文
posted @ 2020-06-03 14:41 Connor_Jiao
阅读(1895)
评论(0)
推荐(0)
谈谈Mux与门电路的相互替换(包含实例分析)
摘要: 转载https://blog.csdn.net/Reborn_Lee/article/details/101620074
阅读全文
posted @ 2020-06-03 14:04 Connor_Jiao
阅读(578)
评论(0)
推荐(0)
2020年6月2日
cmos实现mux2
摘要:
阅读全文
posted @ 2020-06-02 21:46 Connor_Jiao
阅读(1264)
评论(0)
推荐(0)
数字电路笔试题
摘要: https://wenku.baidu.com/view/34e87168a98271fe910ef9e6.html
阅读全文
posted @ 2020-06-02 21:16 Connor_Jiao
阅读(407)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
12
13
下一页
公告