牛客681393164号
牛客681393164号
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
牛客681393164号的博客
全部文章
(共7篇)
题解 | #任意小数分频#
`timescale 1ns/1ns module div_M_N( input wire clk_in, input wire rst, output wire clk_out ); parameter M_N = 8'd87; parameter c89 = 8'd24; // 8...
2023-10-08
0
247
题解 | #占空比50%的奇数分频#
`timescale 1ns/1ns module odo_div_or ( input wire rst , input wire clk_in, output wire clk_out7 ); reg [2:0] cnt; reg ...
2023-10-08
0
307
题解 | #自动贩售机2#
`timescale 1ns/1ns module seller2( input wire clk , input wire rst , input wire d1 , input wire d2 , input wire sel , output reg out1, out...
2023-10-04
0
198
题解 | #自动贩售机1#
上升沿检测到d1,d2,d3不用考虑钱够了下一时刻还给钱的情况。
2023-10-04
0
210
题解 | #非整数倍数据位宽转换24to128#
`timescale 1ns/1ns module width_24to128( input clk , input rst_n , input valid...
2023-10-04
0
213
题解 | #时钟分频(偶数)#
`timescale 1ns/1ns module even_div ( input wire rst , input wire clk_in, output wire clk_out2, output wire clk_out4...
2023-10-04
0
224
题解 | #反转链表#
python语法糖,不用白不用 def ReverseList(self , head: ListNode) -> ListNode: if not head: # 如果非空 return head a, a.next, b =h...
Python3
2021-11-08
54
3406