aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vnmsac_vx.h
blob: 44920be4b209d4f0eabe3a102175298eb2aa9f88 (plain)
1
2
3
4
5
// vmsac: vd[i] = -(x[rs1] * vs2[i]) + vd[i]
VI_VX_LOOP
({
  vd = -(rs1 * vs2) + vd;
})