来自204的牛魔王
来自204的牛魔王
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来自204的牛魔王的博客
全部文章
(共64篇)
题解 | #多wire连接#
`timescale 1ns/1ns module top_module( input wire a,b, output wire x,y,z ); assign x=b; assign y=b; assign z=a; endmodule
2023-05-10
0
232
题解 | #含有无关项的序列检测#
`timescale 1ns/1ns module sequence_detect( input clk, input rst_n, input a, output reg match ); parameter s0=4'd0; parameter s6=4'd6; parameter s...
2023-05-09
0
168
题解 | #输入序列连续的序列检测#
`timescale 1ns/1ns module sequence_detect( input clk, input rst_n, input a, output reg match ); reg[3:0] current_state,next_state; parameter s0=4...
2023-05-09
0
189
题解 | #根据状态转移图实现时序电路#
`timescale 1ns/1ns module seq_circuit( input C , input clk , input rst_n, output wire ...
2023-05-09
0
177
题解 | #ROM的简单实现#
`timescale 1ns/1ns module rom( input clk, input rst_n, input [7:0]addr, output [3:0]data ); reg [3:0] rom_data[7:0],out; always @( clk or negedg...
2023-05-09
0
241
题解 | #边沿检测#
`timescale 1ns/1ns module edge_detect( input clk, input rst_n, input a, output reg rise, output reg down ); reg pre,now; always @(posedge clk...
2023-05-09
0
186
题解 | #根据状态转移表实现时序电路#
`timescale 1ns/1ns module seq_circuit( input A , input clk , input rst_n, ou...
2023-05-09
0
182
题解 | #数据选择器实现逻辑电路#
`timescale 1ns/1ns module data_sel( input S0 , input S1 , input D0 , input D1...
2023-05-08
0
185
题解 | #使用3-8译码器①实现逻辑函数#
`timescale 1ns/1ns module decoder_38( input E1_n , input E2_n , input E3 , input ...
2023-05-08
0
240
题解 | #实现3-8译码器①#
`timescale 1ns/1ns module decoder_38( input E1_n , input E2_n , input E3 , input ...
2023-05-08
0
169
首页
上一页
1
2
3
4
5
6
7
下一页
末页