来自204的牛魔王
来自204的牛魔王
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来自204的牛魔王的博客
全部文章
(共64篇)
题解 | #使用generate…for语句简化代码#
`timescale 1ns/1ns module gen_for_module( input [7:0] data_in, output [7:0] data_out ); genvar i; generate for(i=0;i<8;i=i+1) begin: ge...
2023-05-03
1
185
题解 | #求两个数的差值#
`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 negedge ...
2023-05-03
1
203
题解 | #位拆分与运算#
`timescale 1ns/1ns module data_cal( input clk, input rst, input [15:0]d, input [1:0]sel, output [4:0]out, output validout ); //*************code****...
2023-05-03
1
192
题解 | #多功能数据处理器#
`timescale 1ns/1ns module data_select( input clk, input rst_n, input signed[7:0]a, input signed[7:0]b, input [1:0]select, output reg signed [8:0...
2023-05-03
1
167
首页
上一页
1
2
3
4
5
6
7
下一页
末页