神气的小笼包
神气的小笼包
全部文章
分类
归档
标签
去牛客网
登录
/
注册
神气的小笼包的博客
全部文章
(共58篇)
题解 | #使用函数实现数据大小端转换#
`timescale 1ns/1ns module function_mod( input [3:0]a, input [3:0]b, output [3:0]c, output [3:0]d ); function [3:0] data_rev; input [3:0] data...
2023-08-16
0
328
题解 | #使用子模块实现三输入数的大小比较#
`timescale 1ns/1ns module main_mod( input clk, input rst_n, input [7:0]a, input [7:0]b, input [7:0]c, output [7:0]d ); wire [7:0] d0,d1,d2; ...
2023-08-16
0
272
题解 | #求两个数的差值#
`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-08-16
0
312
题解 | #多功能数据处理器#
`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-08-16
0
381
题解 | #位拆分与运算#
`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-08-16
0
359
题解 | #移位运算与乘法#
`timescale 1ns/1ns module multi_sel( input [7:0]d , input clk, input rst, output reg input_grant, output reg [10:0]out ); //*************code*********...
2023-08-16
3
675
题解 | #奇偶校验#
`timescale 1ns/1ns module odd_sel( input [31:0] bus, input sel, output check ); //*************code***********// assign check = sel? (^bus):~(^bus);...
2023-08-15
0
256
题解 | #异步复位的串联T触发器#
`timescale 1ns/1ns module Tff_2 ( input wire data, clk, rst, output reg q ); //*************code***********// reg data_reg; always@(posedge clk or ...
2023-08-15
0
320
题解 | 8线-3线优先编码器Ⅰ实现16线-4线优先编码器
`timescale 1ns/1ns module encoder_83( input [7:0] I , input EI , output wire [2:0] Y , output wi...
2023-08-15
0
271
题解 | #优先编码器Ⅰ#
`timescale 1ns/1ns module encoder_83( input [7:0] I , input EI , output wire [2:0] Y , output w...
2023-08-15
0
330
首页
上一页
1
2
3
4
5
6
下一页
末页