摘要:
3 电路 3.2 时序逻辑 3.2.1 锁存器与触发器(Latches and Flip-Flops) Dff8ar(DFF with asynchronous reset) 创建 8 位具有高电平有效异步复位的 D 触发器。所有 DFF 都应由clk的上升沿触发。 *同步和异步复位触发器之间代码的 阅读全文 »
摘要:
3 电路 3.1 组合逻辑 3.1.4 卡诺线路图(Karnaugh Map to Circuit) Kmap1(3-variable) out = a + ab +ac = a & (a^b) & (a^c) = a | b | c module top_module( input a, inpu 阅读全文 »