端口与功能如下
module ALU
output [31:0] Result;
input [31:0] Src1, Src2;
input OP_INV;
input OP_AND;
input OP_OR;
input OP_XOR;
input OP_NAND;
input OP_NOR;
input OP_ADD;
input OP_SUB;
always @ ( /*AUTOSENSE*/) begin
Result = ~Src1;
if (OP_INV)
Result = ~Src1;
if (OP_AND)
Result = Src1 & Src2;
if (OP_OR)
Result = Src1 | Src2;
if (OP_XOR)
Result = Src1 ^ Src2;
if (OP_NAND)
Result = ~(Src1 & Src2);
if (OP_NOR)
Result = ~(Src1 | Src2);
if (OP_ADD)
Result = Src1 + Src2;
if (OP_SUB)
Result = Src1 +(~Src2) + 1;
end
endmodule // ALU