Verilog笔记 Verilog练习资源 HDLBits: 提供丰富的 Verilog 练习题目,涵盖基础到进阶内容,适合初学者和进阶学习者。 基本组成 模块(module):Verilog 的基本结构单元,用于描述硬件功能。 端口(ports):模块的输入、输出和双向信号接口。 数据类型 (Data Types):wire (线网) 和 reg (寄存器)。 逻辑描述方式: 1234567module 模块名 2025-09-09 学习 > 笔记 #Verilog #FPGA #笔记
Hexo常用命令 添加所有更改(包括新文章)1git add . 提交更改1git commit -m "添加新文章:我的新文章标题" 推送到GitHub仓库1git push origin main 快速创建草稿1hexo new draft "未完成的文章" 文件会生成在 source/_drafts/,不会发布到线上,完成后执行: 1hexo pub 2025-07-29 折腾点啥 #Hexo
Hello World Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick 2025-07-29