You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.1 KiB
42 lines
2.1 KiB
`timescale 1ns / 1ps
|
|
// 算数逻辑单元
|
|
module alu #(
|
|
parameter DATA_WIDTH = 32,
|
|
parameter OPCODE_LENGTH = 4
|
|
)(
|
|
input logic[DATA_WIDTH - 1 : 0] operand_a,
|
|
input logic[DATA_WIDTH - 1 : 0] operand_b,
|
|
input logic[OPCODE_LENGTH - 1 : 0] alu_ctrl, // Operation
|
|
output logic[DATA_WIDTH - 1 : 0] alu_result,
|
|
output logic zero
|
|
);
|
|
|
|
// add your code here.
|
|
logic [31:0] s;
|
|
logic signed [31:0] signed_s, signed_operand_a, signed_operand_b;
|
|
assign signed_operand_a = $signed(operand_a);
|
|
assign signed_operand_b = $signed(operand_b);
|
|
assign signed_s = $signed(signed_operand_a - signed_operand_b);
|
|
assign s = operand_a - operand_b;
|
|
assign zero = (s == 32'b0)? 1'b1 : 1'b0;
|
|
always_comb
|
|
case (alu_ctrl)
|
|
4'b0000: alu_result = operand_a + operand_b; // add, jalr
|
|
4'b0001: alu_result = operand_a - operand_b; // sub
|
|
4'b0010: alu_result = operand_a | operand_b; // or
|
|
4'b0011: alu_result = operand_a & operand_b; // and
|
|
4'b0100: alu_result = {31'b0, signed_s[31]}; // slt
|
|
4'b0101: alu_result = (operand_a == operand_b)? 32'b1 : 32'b0; // beq
|
|
4'b0110: alu_result = (operand_a != operand_b)? 32'b1 : 32'b0; // bne
|
|
4'b0111: alu_result = (signed_operand_a < signed_operand_b)? 32'b1 : 32'b0; // blt
|
|
4'b1000: alu_result = (signed_operand_a >= signed_operand_b)? 32'b1 : 32'b0; // bge
|
|
4'b1001: alu_result = (operand_a < operand_b)? 32'b1 : 32'b0; // bltu
|
|
4'b1010: alu_result = (operand_a >= operand_b)? 32'b1 : 32'b0; // bgeu
|
|
4'b1011: alu_result = 32'b1; // jal
|
|
4'b1100: alu_result = operand_a ^ operand_b; // xor
|
|
default: alu_result = 32'b0;
|
|
endcase
|
|
|
|
endmodule
|
|
|