H在秋招
H在秋招
全部文章
分类
归档
标签
去牛客网
登录
/
注册
H在秋招的博客
TA的专栏
0篇文章
0人订阅
Verilog 进阶挑战
0篇文章
0人学习
全部文章
(共64篇)
题解 | #信号级联合并#
`timescale 1ns/1ns module top_module( input [4:0] a, b, c, d, e, f, output [7:0] w, x, y, z ); wire [31:0] data ; assign data = {a,...
2023-05-23
5
338
题解 | #对信号按位操作#
`timescale 1ns/1ns module top_module( input [4:0] in, output out_and, output out_or, output out_xor ); assign out_and = &in[4:0...
2023-05-23
14
412
题解 | #对信号按位操作#
`timescale 1ns/1ns module top_module( input [4:0] in, output out_and, output out_or, output out_xor ); assign out_and = &in[4:0...
2023-05-23
3
276
题解 | #信号顺序调整#
`timescale 1ns/1ns module top_module( input wire [12:0] in , output wire [12:0] out ); wire [3:0] a,b,c,d; assign {a,b,c,d...
2023-05-23
26
741
首页
上一页
1
2
3
4
5
6
7
下一页
末页