Multiplacation of value of first and second terms.
[Function]
Returns the result of multiplication (product) between the values of the 1st and 2nd terms of an expression.
[Application example]
TEN .set 0x10
mov TEN * 3, r10 ; (1)
|
(1) | With the .set directive, the value "0x10" is defined in the symbol "TEN".
The expression "TEN * 3" is the same as "0x10 * 3" and returns the value "0x30".
Therefore, (1) in the above expression can also be described as: mov 0x30, r10. |