aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vmacc_vx.h
blob: d40b264a05fe3cc66a9ef768e046ba7aa73b6bdb (plain)
1
2
3
4
5
// vmacc.vx: vd[i] = +(x[rs1] * vs2[i]) + vd[i]
VI_VX_LOOP
({
  vd = rs1 * vs2 + vd;
})