Twos complement?

Cool, so something like this would work?

plMSB = Serial1.read();
plLSB = Serial1.read();

myInt = (int)plMSB<<8;
myInt+= plLSB;

Thanks!