unsigned char temp1 = 0x77;

void math (void) {
	/* Repeat for the high nibble in this byte. */
	temp1 += 0x30;
	if (!(temp1 & 0x80)) 
	{
		temp1 -= 0x30;
	}
}
