Help with prog
Read about doing arithmatic operations on binary numbers.
A left shift operation on an 8 bit binary number has the effect of doubling the value. Read the data sheet for the PIC you are using for the details of the left shift instruction. You need to allow for the source of the 1 or 0 that gets shifted into the lowest bit.
You also need to consider the possibility of overflow in the higher level design of your program, ie if you are using a single register and the input value is above 127.
It is clear from this and your other post that you need to spend some time reading.