forked from riscv/riscv-opcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix instruction duplication between rv128_c and rv64_c
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# quadrant 0 | ||
c.lq rd_p rs1_p c_uimm9lo c_uimm9hi 1..0=0 15..13=1 | ||
c.ld rd_p rs1_p c_uimm8lo c_uimm8hi 1..0=0 15..13=3 | ||
$import rv64_c::c.ld | ||
c.sq rs1_p rs2_p c_uimm9hi c_uimm9lo 1..0=0 15..13=5 | ||
c.sd rs1_p rs2_p c_uimm8hi c_uimm8lo 1..0=0 15..13=7 | ||
$import rv64_c::c.sd | ||
|
||
#quadrant 1 | ||
c.addiw rd_rs1_n0 c_imm6lo c_imm6hi 1..0=1 15..13=1 | ||
$import rv64_c::c.addiw | ||
|
||
#quadrant 2 | ||
c.lqsp rd c_uimm10sphi c_uimm10splo 1..0=2 15..13=1 | ||
c.ldsp rd_n0 c_uimm9sphi c_uimm9splo 1..0=2 15..13=3 | ||
$import rv64_c::c.ldsp | ||
c.sqsp c_rs2 c_uimm10sp_s 1..0=2 15..13=5 | ||
c.sdsp c_rs2 c_uimm9sp_s 1..0=2 15..13=7 | ||
$import rv64_c::c.sdsp |