For both of them my output is 1000 0000 (80h). Adding them in decimal is 64 + 64 = 128. 128 is in range if it is unsigned, out of range if it is signed.
So for unsigned the flags that should be set off are overflow flag (because MSB is negative when numbers added were positive) and sign flag (because MSB is 1).
For signed the overflow flag should be set off yet again (because 128 is out of range for 8 bit signed) and sign flag should be set to 1 because of MSB. The carry flag should not be set because a carry operation did not occur in the MSB bits. Is this correct? The flags set off for signed vs. unsigned in this case should be the same?