Fix minor bug in SRL instruction specification
This commit is contained in:
parent
c4daa89a88
commit
e3b124f4eb
@ -34,7 +34,7 @@ This should run in the order of a few hours.
|
||||
- [ ] Instruction Checks (mostly passing)
|
||||
- [x] JAL failing at line 202
|
||||
- [ ] LB, LH, LW, LBU, LHU, SB, SH, SW: Parser error - invalid slice
|
||||
- [ ] SRL failing at line 201
|
||||
- [x] SRL failing at line 201
|
||||
- [x] PC forward checks
|
||||
- [x] PC backward checks
|
||||
- [x] Register checks
|
||||
|
@ -6,7 +6,7 @@ SRL instruction
|
||||
|
||||
class InsnSrl(InsnRV32IRType):
|
||||
def __init__(self, params):
|
||||
super().__init__(params, 0b0000000, 0b100, 0b0110011)
|
||||
super().__init__(params, 0b0000000, 0b101, 0b0110011)
|
||||
|
||||
def elaborate(self, platform):
|
||||
m = super().elaborate(platform)
|
||||
|
Loading…
Reference in New Issue
Block a user