aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vandn_vx.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/vandn_vx.h')
-rw-r--r--riscv/insns/vandn_vx.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/riscv/insns/vandn_vx.h b/riscv/insns/vandn_vx.h
new file mode 100644
index 0000000..1c66a40
--- /dev/null
+++ b/riscv/insns/vandn_vx.h
@@ -0,0 +1,10 @@
+// vandn.vx vd, vs2, rs1, vm
+
+#include "zvk_ext_macros.h"
+
+require_zvbb;
+
+VI_VX_LOOP
+({
+ vd = vs2 & (~rs1);
+})