No other code, just Variable declaration and END,for a F877:

For BYTE variable:

Code:
x=x*25            '40 bytes
x=x<<4+x<<3+x     '43 bytes
For WORD variable:

Code:
x=x*25             '43 bytes
x=x<<4+x<<3+x      '49 bytes
x=x<<25            '27 bytes!!!
Ioannis