Tag values - converting 16-bit integer to two 8-bit integers

You guys are overthinking this.

High Byte: ({IntegerTag} >> 8) & 0xFF
Low Byte: {IntegerTag} & 0xFF

8 Likes