avatar
文章
31
标签
6
分类
8

首页
关于
友链
分类
标签
归档

标签 Verilog 下的文章

Gokong Space | 行空空间
搜索
  • 首页
  • 关于
    友链
    分类
    标签
    归档
    Verilog 学习笔记(14):More Circuits
    发表于 2025-07-26 更新于 2025-07-26 | 分类: 信息时代 | 作者: Gokong | 0条评论
    Rule 90.数组的异或规则是对应分量两两异或,得到一个新的数组。 Solutionmodule top_module( input clk, input load, input [511:0] data, outpu...

    阅读全文...
    Verilog 学习笔记(13):Shift Registers
    发表于 2025-07-26 更新于 2025-07-26 | 分类: 信息时代 | 作者: Gokong | 0条评论
    4-bit shift register异步复位的优先级:areset为高时,立即复位(不管时钟和其他信号)。加载 vs 移位的优先级:若load为 1,无论和ena为何值,加载优先(先判断load)。右移操作的行为:右移时,q[3]补 0,q[0]被移...

    阅读全文...
    Verilog 学习笔记(12):Counters
    发表于 2025-07-25 更新于 2025-07-26 | 分类: 信息时代 | 作者: Gokong | 0条评论
    Four-bit binary counterSolutionmodule top_module ( input clk, input reset, // Synchronous active-high reset ou...

    阅读全文...
    Verilog 学习笔记(11):Latches and Flip-Flops
    发表于 2025-07-24 更新于 2025-07-24 | 分类: 信息时代 | 作者: Gokong | 0条评论
    D flip-flopClocked always blocks should use non-blocking assignments: <=.Solutionmodule top_module ( input clk, // Cl...

    阅读全文...
    Verilog 学习笔记(9):Arithmetic Circuits
    发表于 2025-07-16 更新于 2025-07-16 | 分类: 信息时代 | 作者: Gokong | 0条评论
    Half adderSolutionmodule top_module( input a, b, output cout, sum ); assign cout = a & b; assign sum = a ^...

    阅读全文...
    Verilog 学习笔记(8):Multiplexers
    发表于 2025-07-14 更新于 2025-07-14 | 分类: 信息时代 | 作者: Gokong | 0条评论
    2-to-1 multiplexerSolutionmodule top_module( input a, b, sel, output out ); assign out = sel ? b : a; endmodule 2-to-...

    阅读全文...
    Verilog 学习笔记(7):Basic Gates
    发表于 2025-07-12 更新于 2025-07-12 | 分类: 信息时代 | 作者: Gokong | 0条评论
    本节是一些练习巩固的习题。WireSolutionmodule top_module ( input in, output out); assign out = in; endmoduleGNDGND(Ground): “地线”...

    阅读全文...
    Verilog 学习笔记(6):More Verilog Features
    发表于 2025-07-09 更新于 2025-07-09 | 分类: 信息时代 | 作者: Gokong | 0条评论
    Conditional ternary operatorposedgeposedge 是 Verilog 中用于检测信号上升沿的关键字,表示信号从低电平变为高电平的瞬间。非阻塞赋值非阻塞赋值的特性执行机制并发执行:非阻塞赋值在当前时间步的所有语句计算完成...

    阅读全文...
    12
    avatar
    Gokong
    在自由原野上奔跑,于璀璨星河里穿行。
    文章
    31
    标签
    6
    分类
    8
    订阅
    公告
    建设初期,
    偶有BUG属正常现象。
    最新文章
    Verilog 学习笔记(14):More Circuits
    Verilog 学习笔记(14):More Circuits 2025-07-26
    Verilog 学习笔记(13):Shift Registers
    Verilog 学习笔记(13):Shift Registers 2025-07-26
    Verilog 学习笔记(12):Counters
    Verilog 学习笔记(12):Counters 2025-07-25
    Verilog 学习笔记(11):Latches and Flip-Flops
    Verilog 学习笔记(11):Latches and Flip-Flops 2025-07-24
    Verilog 学习笔记(10):Karnaugh Map to Circuit
    Verilog 学习笔记(10):Karnaugh Map to Circuit 2025-07-19
    Verilog 学习笔记(9):Arithmetic Circuits
    Verilog 学习笔记(9):Arithmetic Circuits 2025-07-16
    最新评论
    测试🙃
    Gokong / 2025-05-31 10:28
    欢迎加入 Typecho 大家族
    Typecho / 2025-05-30 16:36
    分类
    • 星穹逐梦 2
    • 数脉寻踪 8
    • 信息时代 15
    • 工业 4.0 0
    • 读书札记 2
    • 时光漫叙 2
    • 游览指南 2
    • 千奇百怪 1
    标签
    笔记 Verilog 微积分 MathJax LaTeX 学习
    归档
    • 7月 2025 15
    • 6月 2025 6
    • 5月 2025 10
    网站资讯
    文章数目 :
    31
    已运行时间 :
    112 天
    本站总字数 :
    17.85 W
    本站总访问量 :
    6248
    最后更新时间 :
    19 天前
    ©2025 By Gokong
    由 Typecho 强力驱动 | 主题 Butterfly
    本地搜索