diff options
Diffstat (limited to 'riscv/insns/vle_v.h')
-rw-r--r-- | riscv/insns/vle_v.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/riscv/insns/vle_v.h b/riscv/insns/vle_v.h deleted file mode 100644 index b733a3c..0000000 --- a/riscv/insns/vle_v.h +++ /dev/null @@ -1,13 +0,0 @@ -// vle.v and vlseg[2-8]e.v -reg_t sew = P.VU.vsew; - -if (sew == e8) { - VI_LD(0, (i * nf + fn), int8, 1, true); -} else if (sew == e16) { - VI_LD(0, (i * nf + fn), int16, 2, true); -} else if (sew == e32) { - VI_LD(0, (i * nf + fn), int32, 4, true); -} else if (sew == e64) { - VI_LD(0, (i * nf + fn), int64, 8, true); -} - |