神气的小笼包
神气的小笼包
全部文章
分类
归档
标签
去牛客网
登录
/
注册
神气的小笼包的博客
全部文章
(共58篇)
题解 | #用优先编码器①实现键盘编码电路#
`timescale 1ns/1ns module encoder_0( input [8:0] I_n , output reg [3:0] Y_n ); always @(*)begin casex(I_n) ...
2023-08-15
1
415
题解 | #优先编码器电路①#
`timescale 1ns/1ns module encoder_0( input [8:0] I_n , output reg [3:0] Y_n ); always@(*) if(!I_n[8]) ...
2023-08-15
0
266
题解 | #4bit超前进位加法器电路#
`timescale 1ns/1ns module lca_4( input [3:0] A_in , input [3:0] B_in , input C_1 , output wire CO ,...
2023-08-15
0
292
题解 | #四选一多路器#
`timescale 1ns/1ns module mux4_1( input [1:0]d1,d2,d3,d0, input [1:0]sel, output[1:0]mux_out ); //*************code***********// assign mux_out = (s...
2023-08-15
2
550
题解 | #4位数值比较器电路#
`timescale 1ns/1ns module comparator_4( input [3:0] A , input [3:0] B , output wire Y2 , //A>B output wire Y...
2023-08-15
1
413
题解 | #使用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) ...
2023-08-14
0
290
题解 | #用3-8译码器实现全减器#
`timescale 1ns/1ns module decoder_38( input E , input A0 , input A1 , input ...
2023-08-14
0
280
题解 | #实现3-8译码器①#
`timescale 1ns/1ns module decoder_38( input E1_n , input E2_n , input E3 , input ...
2023-08-14
0
342
题解 | #数据选择器实现逻辑电路#
`timescale 1ns/1ns module data_sel( input S0 , input S1 , input D0 , input D1...
2023-08-14
0
282
题解 | #根据状态转移图实现时序电路#
`timescale 1ns/1ns module seq_circuit( input C , input clk , input rst_n, output wire ...
2023-08-14
0
324
首页
上一页
1
2
3
4
5
6
下一页
末页