Fmul
From Unofficial QEdit Wiki Guide
Revision as of 01:43, 29 April 2013 by Japanaman2 (Talk | contribs)
Contents
Syntax
Syntax: fmul register1, register2
- register 1 = Register containing a float value which will be multiplied by the float value in register 2, and store end result in.
- register 2 = Register containing a float value to be multiplied to the float value of register 1.
Use
Used to multiply register 1's float value by register 2's float value and stores the result in register 1.
Example
100: fmul R1, R2 //Multiplies the float value of register 1 by the float value of register 2, and stores the result in register 1.
ret