-
Notifications
You must be signed in to change notification settings - Fork 8
difference
Anobium edited this page Oct 18, 2020
·
1 revision
Syntax:
Difference ( word_variable1 , word_variable2 ) or
Difference ( byte_variable1 , byte_variable2 )
Command Availability:
Available on all microcontrollers.
Explanation:
A function that returns the difference between of two numbers. This only supports byte or word variables.
Example:
Difference( 8 ,4 ) ' Will return 4
Difference( 0xff01 , 0xfffa ) ' Will return 0xf9 or 249d