If I have a sum of two unsigned numbers (1 byte each) in an assembly without carry flag, how can I tell if it overflowed?
Edit: The architecture in question is Neander
Solution: I found a way to do this. First check the most significant bits (msb) of the numbers to be summed.
Se ambos forem 1, teremos overflow.
Senão, se apenas um deles for 1 e o msb do resultado for 0, teremos overflow