Adjust ordering of RoCCInstruction to reflect new ISA encoding. (Note: Fixes register op issues with AccumulatorExample but still slight issue with executing memory loads)
This commit is contained in:
parent
1d2f4f8437
commit
158cee08af
@ -6,13 +6,13 @@ import uncore._
|
|||||||
|
|
||||||
class RoCCInstruction extends Bundle
|
class RoCCInstruction extends Bundle
|
||||||
{
|
{
|
||||||
val rd = Bits(width = 5)
|
|
||||||
val rs1 = Bits(width = 5)
|
|
||||||
val rs2 = Bits(width = 5)
|
|
||||||
val funct = Bits(width = 7)
|
val funct = Bits(width = 7)
|
||||||
|
val rs2 = Bits(width = 5)
|
||||||
|
val rs1 = Bits(width = 5)
|
||||||
val xd = Bool()
|
val xd = Bool()
|
||||||
val xs1 = Bool()
|
val xs1 = Bool()
|
||||||
val xs2 = Bool()
|
val xs2 = Bool()
|
||||||
|
val rd = Bits(width = 5)
|
||||||
val opcode = Bits(width = 7)
|
val opcode = Bits(width = 7)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user