CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

(int8)a=(int8)b+(int8)c; // how to know if overflow?

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
future



Joined: 14 May 2004
Posts: 330

View user's profile Send private message

(int8)a=(int8)b+(int8)c; // how to know if overflow?
PostPosted: Sun Jul 11, 2004 3:20 pm     Reply with quote

Without setting "a" to int16 and comparing >255.
ckielstra



Joined: 18 Mar 2004
Posts: 3680
Location: The Netherlands

View user's profile Send private message

PostPosted: Sun Jul 11, 2004 6:09 pm     Reply with quote

How about testing the carry bit in the status register?

Code:
unsigned char STATUS;
#locate STATUS=0x0FD8
#define CARRY_BIT   0

(int8)a=(int8)b+(int8)c;
if (bit_test(status, CARRY_BIT))
{
  // We had an overflow
}


For signed integers you would have to test the Overflow bit (bit 3).
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group