we’re on the same wavelength. Yes, a 0xFFFF.FFFF would be ideal, but in the meantime, you could do a function:
function p(a,b){
return a + (b >>16)
}
so...
ary = [ p(0xFDB9,0x7531), ...]
that was my thought in this comment
For slightly more readability with 4 256 values, you could do:
function p(a,b,c,d){
return (a << 8) + b + (c >> 8) + (d >> 16)
}
so...
ary = [ p(0,255,128,0), p(0x0,0xFF,0x80,0x0)...]
I think I got the bit shift math right there, but double check me. And the forum parser doesn’t seem to like it.