Fmul

From Unofficial QEdit Wiki Guide
Jump to: navigation, search

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 

Also see

ret