From 731439099b56dea8ffdcbecb5657ce327bd7252a Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 5 Jul 2012 23:45:57 +0000 Subject: Change all values in all limits.h for all architectures to signed decimal; the hex values were not sign extending appropriate in most uses git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4911 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/arch/8051/include/limits.h | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) (limited to 'nuttx/arch/8051') diff --git a/nuttx/arch/8051/include/limits.h b/nuttx/arch/8051/include/limits.h index 3344a8d2d..f3021f6cc 100644 --- a/nuttx/arch/8051/include/limits.h +++ b/nuttx/arch/8051/include/limits.h @@ -1,8 +1,8 @@ /************************************************************ * arch/8051/include/limits.h * - * Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved. - * Author: Gregory Nutt + * Copyright (C) 2007, 2009, 2011-2012 Gregory Nutt. All rights reserved. + * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -45,35 +45,40 @@ ************************************************************/ #define CHAR_BIT 8 -#define SCHAR_MIN 0x80 -#define SCHAR_MAX 0x7f -#define UCHAR_MAX 0xff +#define SCHAR_MIN (-128) +#define SCHAR_MAX 127 +#define UCHAR_MAX 255 /* These could be different on machines where char is unsigned */ +#ifdef __CHAR_UNSIGNED__ +#define CHAR_MIN 0 +#define CHAR_MAX UCHAR_MAX +#else #define CHAR_MIN SCHAR_MIN #define CHAR_MAX SCHAR_MAX +#endif -#define SHRT_MIN 0x8000 -#define SHRT_MAX 0x7fff -#define USHRT_MAX 0xffff +#define SHRT_MIN (-32768) +#define SHRT_MAX 32767 +#define USHRT_MAX 65535 -#define INT_MIN 0x8000 -#define INT_MAX 0x7fff -#define UINT_MAX 0xffff +#define INT_MIN (-32768) +#define INT_MAX 32767 +#define UINT_MAX 65535 /* These change on 32-bit and 64-bit platforms */ -#define LONG_MAX 0x80000000 -#define LONG_MIN 0x7fffffff -#define ULONG_MAX 0xffffffff +#define LONG_MIN (-2147483648L) +#define LONG_MAX 2147483647L +#define ULONG_MAX 4294967295UL /* For SDCC, a Generic pointer is 3 bytes in length with the * first byte holding data space information. */ -#define PTR_MIN 0x800000 -#define PTR_MAX 0x7fffff -#define UPTR_MAX 0xffffff +#define PTR_MIN (-8388608) +#define PTR_MAX 8388607 +#define UPTR_MAX 16777215 #endif /* __ARCH_8051_INCLUDE_LIMITS_H */ -- cgit v1.2.3