OpenCores
URL https://opencores.org/ocsvn/instruction_list_pipelined_processor_with_peripherals/instruction_list_pipelined_processor_with_peripherals/trunk

Subversion Repositories instruction_list_pipelined_processor_with_peripherals

[/] [instruction_list_pipelined_processor_with_peripherals/] [trunk/] [hdl/] [alu.v] - Diff between revs 10 and 11

Show entire file | Details | Blame | View Log

Rev 10 Rev 11
Line 39... Line 39...
////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////
 
 
`include "timescale.v"
`include "timescale.v"
`include "defines.v"
`include "defines.v"
 
 
        module alu (input [`aluOpcodeLen-1:0] aluOpcode, input [7:0] op1, input [7:0] op2, input aluEn,
        module alu (aluOpcode, op1, op2, aluEn, aluOut, carryOut);
                                output [7:0] aluOut, output carryOut);
 
 
 
 
 
 
                input [`aluOpcodeLen-1:0] aluOpcode;
 
                input [7:0] op1;
 
                input [7:0] op2;
 
                input aluEn;
 
 
 
                output [7:0] aluOut;
 
                output carryOut;
 
 
                wire [8:0] operand1 = {1'b0, op1};
                wire [8:0] operand1 = {1'b0, op1};
                wire [8:0] operand2 = {1'b0, op2};
                wire [8:0] operand2 = {1'b0, op2};
 
 
                wire [8:0] addRes = operand1 + operand2;
                wire [8:0] addRes = operand1 + operand2;
                wire [8:0] subRes = operand1 - operand2;
                wire [8:0] subRes = operand1 - operand2;
 
 
                reg [8:0] aluOut = 0;
                reg [7:0] aluOut = 0;
                reg carryOut = 0;
                reg carryOut = 0;
 
 
                always @ (aluEn or addRes or subRes or op1 or op2 or aluOpcode)
                always @ (aluEn or addRes or subRes or op1 or op2 or aluOpcode)
                begin
                begin
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.