Thank you for posting that....with a little online research...I see it now.
For others who might not see it let me share what I learned online.
Using an online calculator that can handle "dec to hex to binary" (mathisfun.com has a nice one) to do the number crunching, here is an example;
Find the MSB and LSB of a font size that is 2194 bytes.
2194 =0000100010010010 in 16bit binary. Now separate that binary number into two 8 bit chunks of data.
2194 = 00001000 10010010 The 8 bits on the left are the MSB because a small bit change results in a large/significant change in the number value. A bit change to the right 8 bits results in a much smaller./least signiicant change to our number.
Now plug each 8 bit binary number into the online calculator and we get;
MSB = 00001000 = 0x08 hex or 8 dec.
LSB = 10010010 = 0x92 hex or 146 dec.
To find the MSB/LSB in software use the math functions of "divide" and "modulo"
Font_size = 2194
MSB = Font_size [divide] 256
LSB = Font_size [modulo] 256
Hope this helps someone.