[verilog]ALU的实现

博客地址转至https://xisynotz.xyz

`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company: 
// Engineer: 
// 
// Create Date:    16:44:32 03/29/2018 
// Design Name: 
// Module Name:    alu 
// Project Name: 
// Target Devices: 
// Tool versions: 
// Description: 
//
// Dependencies: 
//
// Revision: 
// Revision 0.01 - File Created
// Additional Comments: 
//
//////////////////////////////////////////////////////////////////////////////////
module alu(
input  signed	 [31:0]	alu_a,
input  signed	 [31:0]	alu_b,
input	          [4:0]   alu_op,
output  reg		 [31:0]	alu_out
);

parameter	A_NOP	= 5'h00;	
parameter	A_ADD	= 5'h01;
parameter	A_SUB	= 5'h02;
parameter	A_AND = 5'h03;
parameter	A_OR  = 5'h04;
parameter	A_XOR = 5'h05;
parameter	A_NOR = 5'h06;


always@(*)
begin
case (alu_op)
	A_NOP:alu_out = 32'b0;
	A_ADD:alu_out = alu_a + alu_b;
	A_SUB:alu_out = alu_a - alu_b;
	A_AND:alu_out = alu_a & alu_b;
	A_OR :alu_out = alu_a | alu_b;
	A_XOR:alu_out = alu_a ^ alu_b;
	A_NOR:alu_out = alu_a ~^ alu_b;
endcase
end
	

endmodule

 

下面写一个top模块进行实例化

`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company: 
// Engineer: 
// 
// Create Date:    16:45:31 03/29/2018 
// Design Name: 
// Module Name:    top 
// Project Name: 
// Target Devices: 
// Tool versions: 
// Description: 
//
// Dependencies: 
//
// Revision: 
// Revision 0.01 - File Created
// Additional Comments: 
//
//////////////////////////////////////////////////////////////////////////////////
module top(
input 	 [31:0] a,
input  	 [31:0] b,
output    [31:0] out
    );

wire [31:0] c;
wire [31:0] d;
wire [31:0] e;

alu al0(a,b,5'h01,c);
alu al1(b,c,5'h01,d);
alu al2(c,d,5'h01,e);
alu al3(d,e,5'h01,out);

endmodule

 

你可能感兴趣的:(verilog)