Skip to content

Commit fc59772

Browse files
committed
Fixed encodings on I instructions
Signed-off-by: Afonso Oliveira <[email protected]>
1 parent cd37f0b commit fc59772

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

arch/inst/I/lb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ lb:
99
definedBy: I
1010
assembly: xd, imm(rs1)
1111
encoding:
12-
match: -----------------000-----0000111
12+
match: -----------------000-----0000011
1313
variables:
1414
- name: imm
1515
location: 31-20

arch/inst/I/lbu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ lbu:
99
definedBy: I
1010
assembly: xd, imm(rs1)
1111
encoding:
12-
match: -----------------100-----0000111
12+
match: -----------------100-----0000011
1313
variables:
1414
- name: imm
1515
location: 31-20

arch/inst/I/ld.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ld:
99
base: 64
1010
assembly: xd, imm(rs1)
1111
encoding:
12-
match: -----------------011-----0000111
12+
match: -----------------011-----0000011
1313
variables:
1414
- name: imm
1515
location: 31-20

arch/inst/I/lh.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ lh:
99
definedBy: I
1010
assembly: xd, imm(rs1)
1111
encoding:
12-
match: -----------------001-----0000111
12+
match: -----------------001-----0000011
1313
variables:
1414
- name: imm
1515
location: 31-20

arch/inst/I/lhu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ lhu:
99
definedBy: I
1010
assembly: xd, imm(rs1)
1111
encoding:
12-
match: -----------------101-----0000111
12+
match: -----------------101-----0000011
1313
variables:
1414
- name: imm
1515
location: 31-20

arch/inst/I/lui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ lui:
66
definedBy: I
77
assembly: xd, imm
88
encoding:
9-
match: -------------------------0000111
9+
match: -------------------------0110111
1010
variables:
1111
- name: imm
1212
location: 31-12

arch/inst/I/lw.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ lw:
99
definedBy: I
1010
assembly: xd, imm(rs1)
1111
encoding:
12-
match: -----------------010-----0000111
12+
match: -----------------010-----0000011
1313
variables:
1414
- name: imm
1515
location: 31-20

arch/inst/I/lwu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lwu:
1010
base: 64
1111
assembly: xd, imm(rs1)
1212
encoding:
13-
match: -----------------110-----0000111
13+
match: -----------------110-----0000011
1414
variables:
1515
- name: imm
1616
location: 31-20

0 commit comments

Comments
 (0)