I'm starting to learn dx assembly but I'm really confused there are some registers i can't seem to find what are they for anywhere these registers are:
mov_pp
mov_sat
and basically all of them that have something different from normal assembly registers... is there a tutorial anywhere for this?.
Basically what does "pp" and "sat" stand for?
Thanks
Those aren't registers. They are the
movinstruction, which moves data between registers, with added instruction modifiers, described here.The
_ppmodifier allows the instruction to run in partial precision.The
_satmodifier clamps the result to the range [0,1].