小生乃音痴也
小生乃音痴也
全部文章
分类
归档
标签
去牛客网
登录
/
注册
小生乃音痴也的博客
全部文章
(共28篇)
题解 | #交通灯#
`timescale 1ns/1ns module triffic_light ( input rst_n, //异位复位信号,低电平有效 input clk, //时钟信号 input pass_request, output wire[7:0]c...
2024-08-09
1
142
题解 | #数据串转并电路#
`timescale 1ns/1ns module s_to_p( input clk , input rst_n , input valid_a , input data_a , output reg ready_a , o...
2024-08-08
1
167
题解 | #任意奇数倍时钟分频#
`timescale 1ns/1ns module clk_divider #(parameter dividor = 5) ( input clk_in, input rst_n, output clk_out ); parameter CNT_WIDTH = $clog2(div...
2023-11-16
1
281
题解 | #状态机与时钟分频#
`timescale 1ns/1ns module huawei7( input wire clk , input wire rst , output reg clk_out ); //*************code***********// parameter s0=4'b100...
2023-11-16
1
244
题解 | #乘法与位运算#
`timescale 1ns/1ns module dajiang13( input [7:0] A, output [15:0] B ); //*************code***********// wire[15:0]C; assign C=A; ass...
2023-11-16
1
244
题解 | #自动售卖机#
`timescale 1ns/1ns module sale( input clk , input rst_n , input sel ,//sel=0,5$dranks,sel=1...
2023-11-16
0
284
题解 | #交通灯#
`timescale 1ns/1ns module triffic_light ( input rst_n, //异位复位信号,低电平有效 input clk, //时钟信号 input pass_request, output wire[7:0]c...
2023-10-07
0
292
题解 | #游戏机计费程序#
`timescale 1ns/1ns module game_count ( input rst_n, //异位复位信号,低电平有效 input clk, //时钟信号 input [9:0]money, input set, in...
2023-10-07
0
295
题解 | #Johnson Counter#
`timescale 1ns/1ns module JC_counter( input clk , input rst_n, output reg [3:0] Q ); reg shift_en; alw...
2023-09-28
0
297
题解 | #RAM的简单实现#
`timescale 1ns/1ns module ram_mod( input clk, input rst_n, input write_en, input [7:0]write_addr, input [3:0]write_data, input read_en, inp...
2023-09-27
1
254
首页
上一页
1
2
3
下一页
末页