我还在和秋招拉扯
我还在和秋招拉扯
全部文章
题解
归档
标签
去牛客网
登录
/
注册
我还在和秋招拉扯的博客
全部文章
/ 题解
(共4篇)
题解 | #实现3-8译码器①#
`timescale 1ns/1ns module decoder_38( input E1_n , input E2_n , input E3 , input ...
2022-06-23
0
432
题解 | #使用子模块实现三输入数的大小比较#
`timescale 1ns/1ns module main_mod( input clk, input rst_n, input [7:0]a, input [7:0]b, input [7:0]c, output [7:0]d ); wire[7:0] d1,d2; ...
2022-06-04
0
232
题解 | #求两个数的差值#
`timescale 1ns/1ns module data_minus( input clk, input rst_n, input [7:0]a, input [7:0]b, output reg [8:0]c ); always @(posedge clk or...
2022-06-04
0
227
题解 | #异步复位的串联T触发器#
T触发器是在数字电路中,凡在CP时钟脉冲控制下,根据输入信号T取值的不同,具有保持和翻转功能的触发器,即当T=0时能保持状态不变,当T=1时一定翻转的电路 `timescale 1ns/1ns module Tff_2 ( input wire data, clk, rst, output reg ...
2022-03-07
3
448