摘要: EECS 151. Introduction to Digital Design and Integrated Circuits Catalog Description: An introduction to digital and system design. The material provi 阅读全文
posted @ 2025-05-11 13:20 大块头 阅读(4) 评论(0) 推荐(0)
摘要: Two's Complement Wrap-Around In this section, we give an example showing how temporary overflow in two's complement fixed-point causes no ill effects. 阅读全文
posted @ 2025-05-10 21:05 大块头 阅读(3) 评论(0) 推荐(0)
摘要: 门级 gate 7483 阅读全文
posted @ 2025-05-02 09:37 大块头 阅读(8) 评论(0) 推荐(0)
摘要: https://blog.eetop.cn/blog-1603034-6961556.html 浅谈芯片设计过程中不同工程师都干了什么? 热度 37已有 10345 次阅读| 2024-12-27 14:38 |个人分类:杂想|系统分类:芯片设计| 工程师, 芯片, 设计, 验证, DFT 最近有机 阅读全文
posted @ 2025-02-22 18:03 大块头 阅读(21) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/quantoublog/articles/18089793 【教程】windows环境下使用iverilog及qtkwave进行仿真 阅读全文
posted @ 2025-02-21 20:37 大块头 阅读(9) 评论(0) 推荐(0)
摘要: windows下verilog开源编辑仿真环境搭建。 一、 verilog 前仿真最小系统 最小系统 ,需要啥? 安装 仿真器 Icarus Verilog 即可,配合 windows系统 自带的记事本notepad, cmd 命令行终端模拟器 即可。 但是 还是 装一个更好用的文本编辑器更好,比如 阅读全文
posted @ 2025-02-19 09:46 大块头 阅读(237) 评论(0) 推荐(0)
摘要: module ascii_display; reg [7:0] ascii_code; initial begin ascii_code = 8'h00; // 初始值为0 repeat (128) begin $display("ASCII Code: %h, Character: %c", as 阅读全文
posted @ 2024-12-11 20:22 大块头 阅读(53) 评论(0) 推荐(0)
摘要: 多数表决器的设计 有三位同学参加投票表决,每人手里有一个按键,两人以上同意(按键按下)则通过(指示灯亮),否则不通过(指示灯不亮),试使用搭建电路,完成多数表决功能。 // // 多数表决器 // module Majority(a, b, c, out) ; /*这个模块定义了一个多数表决电路。它 阅读全文
posted @ 2024-12-11 20:13 大块头 阅读(121) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2024-10-02 20:56 大块头 阅读(8) 评论(1) 推荐(0)
摘要: 手机及其触摸屏界面确实是个有趣的硬件。虽然我们并未深入了解其工作原理,但我们还是从各种网络资源和手机实验中收集到了相关信息。如今,大多数手机都配备了电容式触摸屏,它主要依赖一层电容材料来维持电荷。当我们触摸屏幕时,这层电容会产生变化,手机则能精确检测到这种变化。 手机内部会对触摸屏上的电荷与手机的接 阅读全文
posted @ 2024-01-31 20:32 大块头 阅读(71) 评论(0) 推荐(0)