Hey guys
I have two 8bit (256) inputs and I need to convert them to 16bit (65536)
At first I thought of doing it as in1 * in2 but when in1 is 256 and in2 is 0 it doesn't put out 256 as expected (because 256*0 = 0).
What would be the best way of doing this
In the end I want a value from 0 --> 65536 from two 0 --> 256
Thanks
Ian