URL
https://opencores.org/ocsvn/raptor64/raptor64/trunk
[/] [raptor64/] [trunk/] [rtl/] [verilog/] [Raptor64_set.v] - Diff between revs 31 and 41
Show entire file |
Details |
Blame |
View Log
Rev 31 |
Rev 41 |
Line 26... |
Line 26... |
//
|
//
|
//
|
//
|
//=============================================================================
|
//=============================================================================
|
//
|
//
|
module Raptor64_set(xIR, a, b, imm, o);
|
module Raptor64_set(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];
|
|
|
wire eqi = a==imm;
|
wire eqi = a==imm;
|
wire lti = $signed(a) < $signed(imm);
|
wire lti = $signed(a) < $signed(imm);
|
wire ltui = a < imm;
|
wire ltui = a < imm;
|
wire eq = a==b;
|
wire eq = a==b;
|
© copyright 1999-2025
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.