|
Move16 | ||
Result = Move16(DestValue, MergeValue) | ||
Parameters: DestValue = The value the bits are to be merged with MergeValue = The value that the 16 bit value will be copied from |
||
Returns: Result |
||
The Move16 copies the lower word of MergeValue parameter to the lower word of DestValue and returns the result. The higher word is not affected. Move16 is a short cut of Result =(DestValue and $ffff0000) or (MergeValue and $ffff) Mini Tutorial: Showing the use of the functions Move16 and Move8
This example would output.
|
Related Info: | And | CopyBits | Move8 | Or | Xor : |
|
|||||||||||||||||||||||||||||||||||||||
(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com |