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

Subversion Repositories raptor64

[/] [raptor64/] [trunk/] [rtl/] [verilog/] [Raptor64_logic.v] - Diff between revs 31 and 41

Show entire file | Details | Blame | View Log

Rev 31 Rev 41
Line 26... Line 26...
//                                                                          
//                                                                          
//
//
//=============================================================================
//=============================================================================
//
//
module Raptor64_logic(xIR, a, b, imm, o);
module Raptor64_logic(xIR, a, b, imm, o);
input [41:0] xIR;
input [31:0] xIR;
input [63:0] a;
input [63:0] a;
input [63:0] b;
input [63:0] b;
input [63:0] imm;
input [63:0] imm;
output [63:0] o;
output [63:0] o;
reg [63:0] o;
reg [63:0] o;
 
 
wire [6:0] xOpcode = xIR[41:35];
wire [6:0] xOpcode = xIR[31:25];
wire [6:0] xFunc = xIR[6:0];
wire [5:0] xFunc = xIR[5:0];
 
 
always @(xOpcode or xFunc or a or b or imm)
always @(xOpcode or xFunc or a or b or imm)
case (xOpcode)
case (xOpcode)
`RR:
`RR:
        case(xFunc)
        case(xFunc)

powered by: WebSVN 2.1.0

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