```
thus it is actually legitimate to have scalar src *and* dest especially
-with predicate masks.
+with predicate masks. the trick noted in (4) below of setting `RA.isvec`
+would therefore activate the *Vector Indexed* mode, with associated predication-based offsets (and REMAP) which is **NOT** the same as
+`VSPLAT` mode.
+
+ elif RA.isvec:
+ # quirky Vector indexed mode but with an immediate
+ srcbase = ireg[RA+i]
+ offs = immed;
+ else
+ # standard scalar mode (but predicated)
+ # no stride multiplier means VSPLAT mode
+ srcbase = ireg[RA]
+ offs = immed
## answers to 4, loops/uses