MOVT (scalar to table)
Move 8 bytes from general-purpose register to ZT0
Move 8 bytes to the ZT0 register at the byte offset specified by the immediate index from a general-purpose register. This instruction is UNDEFINED in Non-debug state.
Green
False
1
1
0
0
0
0
0
0
0
1
0
0
1
1
1
0
0
0
0
1
1
1
1
1
MOVT ZT0[<offs>], <Xt>
if !IsFeatureImplemented(FEAT_SME2) || !Halted() then UNDEFINED;
constant integer t = UInt(Rt);
constant integer offset = UInt(off3);
<offs>
Is the immediate byte offset, a multiple of 8 in the range of 0 to 56, encoded in the "off3" field as <offs>/8.
<Xt>
Is the 64-bit name of the general-purpose register to be transferred, encoded in the "Rt" field.
CheckSMEEnabled();
CheckSMEZT0Enabled();
bits(512) result = ZT0[512];
Elem[result, offset, 64] = X[t, 64];
ZT0[512] = result;