jL_Dylan
jL_Dylan
全部文章
题解
归档
标签
去牛客网
登录
/
注册
jL_Dylan的博客
全部文章
/ 题解
(共6篇)
题解 | #用3-8译码器实现全减器#
A B Ci D Co 0 0 0 0 0 0 0 &nb...
2022-04-08
0
242
题解 | #使用8线-3线优先编码器Ⅰ实现16线-4线优先编码器#
//本题画出真值表一目了然 `timescale 1ns/1ns module encoder_83( input [7:0] I , &nb...
Verilog
2022-03-22
0
364
题解 | #用优先编码器①实现键盘编码电路#
`timescale 1ns/1ns module encoder_0( input [8:0] I_n , &nb...
2022-03-22
0
358
题解 | #位拆分与运算#
`timescale 1ns/1ns module data_cal( input clk, input rst, input [15:0]d, input [1:0]sel, output reg [4:0] out, output reg validout ); //************...
2022-03-20
0
351
题解 | #移位运算与乘法#
`timescale 1ns/1ns module multi_sel( input [7:0]d , input clk, input rst, output reg input_grant, output reg [10:0]out ); //**code// reg [2:0] i; reg ...
Verilog
2022-03-20
0
333
题解 | #奇偶校验#
`timescale 1ns/1ns module odd_sel( input [31:0] bus, input sel, output check ); //**code// assign check = (sel ^ (^bus))? 1'b0:1'b1; //**code// endmo...
Verilog
2022-03-20
0
209