题解 | #移位运算与乘法#

移位运算与乘法

https://www.nowcoder.com/practice/1dd22852bcac42ce8f781737f84a3272

`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[1:0] state= 2'b00;
wire input_grant_temp,out_temp;
reg[7:0] d_temp ;
always @(posedge clk or negedge rst)begin
    if(~rst)begin
        input_grant <= 0;
        out <= 0;
    end
    else begin
        case(state)
            2'b00: 
            begin 
                d_temp <= d;
                out <= d;
                input_grant <= 1;
                state <= 2'b01;
            end
            2'b01:
            begin 
                out <= (d_temp<<2) -d_temp;
                input_grant <= 0;
                state <= 2'b10;
            end
            2'b10: 
            begin
                out <= (d_temp<<3) - d_temp;
                input_grant <= 0;
                state <= 2'b11;
            end
            2'b11: 
            begin
                out = d_temp<<3;
                input_grant = 0;
                state <= 2'b00;
            end
        endcase
    end
end


//*************code***********//
endmodule

全部评论

相关推荐

za_chary:你这个简历写的太强了,建议直接投大厂
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务