
HDLbits
文章平均质量分 61
之前的一些HDLbit的刷题记录
行走的BUG永动机
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
HDLbits答案刷题记录1
3.1.1 Basic gates3.1.1.8 Truth table组合逻辑电路中输出仅仅是其输入的函数(在数学意义上)module top_module( input x3, input x2, input x1, // three inputs output f // one output); assign f = (x3 & x1) | (x2 & x1) | ((~x3) & x2);endmodule3.原创 2021-03-09 17:06:28 · 403 阅读 · 0 评论 -
HDLbits 刷题答案 3.1.2 Multiplexers
3.1.2 Multiplexers3.1.2.1 2-to-1 multiplexermodule top_module( input a, b, sel, output out ); assign out = sel ? b : a;endmodule3.1.2.2 2-to-1 bus multiplexermodule top_module( input [99:0] a, b, input sel, output [99:0]原创 2021-03-10 16:12:33 · 244 阅读 · 0 评论 -
HDLbits 刷题答案 3.1.4 Karnaugh Map to Circuit
3.1.4 卡诺图原创 2021-03-16 09:55:29 · 334 阅读 · 0 评论 -
HDLbits 刷题答案 3.2.1 Latches and Flip-Flops
HDLbits 刷题记录原创 2021-03-17 13:42:45 · 497 阅读 · 0 评论 -
HDLbits 刷题答案 3.2.1 Latches and Flip-Flops(下)
HDLbits 刷题记录,持续更新原创 2021-03-19 10:52:12 · 345 阅读 · 0 评论 -
HDLbits 刷题答案 3.2.2 Counters
HDLbits计数器原创 2021-03-21 17:47:55 · 457 阅读 · 0 评论 -
HDLbits 刷题答案 3.2.4 More Circuit
3.2.4 More Circuit3.2.4.1 Rule90原创 2021-03-26 16:56:15 · 267 阅读 · 0 评论 -
HDLbits 刷题答案 3.2.3 Shift Registers
HDLbits刷题记录,移位寄存器篇原创 2021-03-24 22:12:15 · 420 阅读 · 0 评论