如何将一个模块的输出用作verilog中另一个模块的输入?

时间:2018-05-26 17:49:16

标签: verilog iverilog

//code for alu
module alu(result,A,B,control);
output reg [0:31] result;
input [0:31] A;
input [0:31]B;
input [0:5]control;
always @(*)
begin
case(control)
//F0 f1 ena enb inva inc fun
6'b011000:result=A;
6'b010100:result=B;
6'b011010:result=~A;
6'b101100:result=~B;
6'b111100:result=A+B;
6'b111101:result=A+B+1;
6'b111001:result=A+1;
6'b110101:result=B+1;
6'b111111:result=B-A;
6'b110110:result=-A;
6'b001100:result=A&B;
6'b011100:result=A|B;
6'b010000:result=0;
6'b110001:result=1;
6'b110010:result=-1;
default:result=0;
endcase
end
endmodule

//code for shifter
module shifter(C,sll,sr,Alu_Out,clk);
output  reg [0:31]C;
input clk;
input sll,sr;
input  [0:31]Alu_Out;
integer i;
always @(posedge clk)
begin
if(sll==1'b1 && sr==1'b0)
    begin
        for(i=0;i<24;i=i+1)
            begin
            C[i]<=Alu_Out[i+8];
            end
        for(i=31;i>23;i=i-1)
            begin
            C[i]<=0;
            end
    end
if(sll==1'b0 && sr==1'b1)
    begin
    C[0]<=Alu_Out[0];       
    for(i=0;i<31;i=i+1)
            begin
            C[i+1]<=Alu_Out[i];
            end
    end
end
endmodule

我正在尝试使用verilog实现IJVM,即在Tanenbaum教科书中给出,我正在制作ALU单元和移位寄存器,我已经单独制作了ALU和移位寄存器单元,现在我想将两个单元组合在一起即我想给ALU的输出,即“结果”(请参考代码)作为移位器的输入,即“Alu_out”(请参阅​​代码)。并获得最终输出形式移位器即“C”(请参考代码)。任何人都可以帮助解决这个问题以及如何编写测试平台。

1 个答案:

答案 0 :(得分:0)

在模块移位器中调用模块alu

module shifter(C,sll,sr,Alu_Out,clk,A,B,control);
output  reg [0:31]C;
input clk;
input sll,sr;
input [0:31] A;
input [0:31]B;
input [0:5]control;
input  [0:31]Alu_Out;

alu first_call(Alu_out,A,B,control);

你的休息代码
第一个模块的结果值将存储在alu_out中,并在移位器模块中给出输入。 你也可以制作alu函数,因为你只需要一个输出。