我想知道是否有可能有 if 语句,所以对于我正在尝试构建的 ALU。我将值从数据路径测试台传递到数据路径,从数据路径传递到 ALU,然后从 ALU 传递回数据路径。我正在尝试创建一个控制单元,如果相应的 control_ALU 被激活,它将只通过某个组件传递值。
这是我的verilog代码:
module ALU (
input en_ALU, clk_ALU,
input [31:0] inputA, inputB, control_ALU,
output [31:0] resultc
);
wire [31:0] res_out;
always @(control_ALU)
begin
if(control_ALU[1]) begin
andLogic andLogic_component(
.dataA (inputA),
.dataB (inputB) ,
.resultA (res_out)
);
end
if(control_ALU[2]) begin
negate m0(
.inputnegate (inputA),
.resultnegate (res_out)
);
end
end
reg64bit z(
.clk(clk_ALU) ,
.clr(clr),
.enable(en_ALU),
.inputd(res_out),
.outputq(resultc)
);
endmodule