shiftleft.v

来自「基于4个mips核的noc设计」· Verilog 代码 · 共 17 行

V
17
字号
module SHIFTLEFT(in, out);    input [31:0] in;    wire [31:0] in;    output [31:0] out;    reg [31:0] out;    reg [31:0] a;    reg [31:0] b;        always @(in)        begin : shiftleft_thread            a = in;            b = (a << 2);            out = b;        endendmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?