diff options
author | YenHaoChen <39526191+YenHaoChen@users.noreply.github.com> | 2023-12-01 09:10:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 09:10:44 +0800 |
commit | e9ae2287e174b67df95556266647731125307989 (patch) | |
tree | 69e1bd3b667f071a24d57e54624dac9d0b98face | |
parent | 0c1397661ce383fa303bd878b2fc1172f3ad9213 (diff) | |
download | riscv-isa-sim-e9ae2287e174b67df95556266647731125307989.zip riscv-isa-sim-e9ae2287e174b67df95556266647731125307989.tar.gz riscv-isa-sim-e9ae2287e174b67df95556266647731125307989.tar.bz2 |
typo: vwsll.vi: fix a typo on disassembling vwsll.vi
Signed-off-by: YenHaoChen <39526191+YenHaoChen@users.noreply.github.com>
-rw-r--r-- | disasm/disasm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disasm/disasm.cc b/disasm/disasm.cc index 6917fa5..ad48ea8 100644 --- a/disasm/disasm.cc +++ b/disasm/disasm.cc @@ -2249,7 +2249,7 @@ void disassembler_t::add_instructions(const isa_parser_t* isa) #define DISASM_VECTOR_VV_VX_VIU(name) \ DEFINE_VECTOR_VV(name##_vv); \ DEFINE_VECTOR_VX(name##_vx); \ - DEFINE_VECTOR_VIU(name##_vx) + DEFINE_VECTOR_VIU(name##_vi) #define DISASM_VECTOR_VV_VX_VIU_ZIMM6(name) \ DEFINE_VECTOR_VV(name##_vv); \ DEFINE_VECTOR_VX(name##_vx); \ |