1 /* SH has special handling for combined and/shift sequences.  Make
2    sure that it behaves properly when one input is in the MACL register.  */
3 int r, t;
4 
initRGB()5 static void initRGB()
6 {
7   t = ((r*255/3) & 0xff) << 16;
8 }
9