mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
437 B
19 lines
437 B
#ifndef _Flags_c_h
|
|
#define _Flags_c_h
|
|
#define MSBB (128)
|
|
#define MSBW (32768)
|
|
#define MSBD (-2147483648)
|
|
#define MSBM1B (127)
|
|
#define MSBM1W (32767)
|
|
#define MSBM1D (2147483647)
|
|
#define ALLB0B (254)
|
|
#define ALLB0W (65534)
|
|
#define ALLB0D (-2)
|
|
#define MSB_OFFB (7)
|
|
#define MSB_OFFW (15)
|
|
#define MSB_OFFD (31)
|
|
#define FtZeroFlagSettings (68)
|
|
#define BYTE_SHIFT (24)
|
|
#define WORD_SHIFT (16)
|
|
#define DOUBLE_SHIFT (0)
|
|
#endif /* ! _Flags_c_h */
|