删除多余空格

This commit is contained in:
heyuanjie87 2024-09-20 10:43:13 +08:00
parent 1b0a2f1349
commit aa407e63cd
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
/** /**
* @brief binary opcode pseudo operations * @brief binary opcode pseudo operations
* Used to bypass toolchain restriction on extension ISA * Used to bypass toolchain restriction on extension ISA
* *
* WARNING: Xuantie ISAs are not compatible to each other in opcode. * WARNING: Xuantie ISAs are not compatible to each other in opcode.
* It's painful to port this file, and should be really careful. * It's painful to port this file, and should be really careful.
*/ */
@ -23,9 +23,9 @@
* @brief RISC-V instruction formats * @brief RISC-V instruction formats
*/ */
/** /**
* R type: .insn r opcode6, func3, func7, rd, rs1, rs2 * R type: .insn r opcode6, func3, func7, rd, rs1, rs2
* *
* +-------+-----+-----+-------+----+---------+ * +-------+-----+-----+-------+----+---------+
* | func7 | rs2 | rs1 | func3 | rd | opcode6 | * | func7 | rs2 | rs1 | func3 | rd | opcode6 |
* +-------+-----+-----+-------+----+---------+ * +-------+-----+-----+-------+----+---------+