what mean?
"vmov.q c000, c000[x,x,x,x]\n"
vfpu vmov
Re: vfpu vmov
See the entry in the vfpu diggin document :Psu-27k wrote:what mean?
"vmov.q c000, c000[x,x,x,x]\n"
But to shorten it up: it copies the X component of c000 register into all components of c000.
<Don't push the river, it flows.>
http://wordpress.fx-world.org - my devblog
http://wiki.fx-world.org - VFPU documentation wiki
Alexander Berl
http://wordpress.fx-world.org - my devblog
http://wiki.fx-world.org - VFPU documentation wiki
Alexander Berl
Re: vfpu vmov
ifsu-27k wrote:what mean?
"vmov.q c000, c000[x,x,x,x]\n"
vd = C000.q
vs = C000.q
then
vd.x = vs.x;
vd.y = vs.x;
vd.z = vs.x;
vd.w = vs.x;
:)