Returns the high and low long word in a Large expression.
a% = HiLarge(x)
a% = LoLarge(x)
a%:32 bits integer
x:64 bits integer expression
Debug.Show
Local a As Large = MakeLarge(123456789, 987654321)
Trace HiLarge(a)
Trace LoLarge(a)
a% = HiLarge(x) is identical to a% = Shr8(x,32)
HiByte(), HiCard(), HiWord(), LoByte(), LoCard(), LoWord()
{Created by Sjouke Hamstra; Last updated: 09/10/2014 by James Gaite}