/ MCUME_teensy41 / teensypce / osd_cpu.h
osd_cpu.h
 1  /*******************************************************************************
 2  *																			   *
 3  *	Define size independent data types and operations.						   *
 4  *																			   *
 5  *   The following types must be supported by all platforms:					   *
 6  *																			   *
 7  *	UINT8  - Unsigned 8-bit Integer		INT8  - Signed 8-bit integer           *
 8  *	UINT16 - Unsigned 16-bit Integer	INT16 - Signed 16-bit integer          *
 9  *	UINT32 - Unsigned 32-bit Integer	INT32 - Signed 32-bit integer          *
10  *	UINT64 - Unsigned 64-bit Integer	INT64 - Signed 64-bit integer          *
11  *																			   *
12  *																			   *
13  *   The macro names for the artithmatic operations are composed as follows:    *
14  *																			   *
15  *   XXX_R_A_B, where XXX - 3 letter operation code (ADD, SUB, etc.)			   *
16  *					 R   - The type	of the result							   *
17  *					 A   - The type of operand 1							   *
18  *			         B   - The type of operand 2 (if binary operation)		   *
19  *																			   *
20  *				     Each type is one of: U8,8,U16,16,U32,32,U64,64			   *
21  *																			   *
22  *******************************************************************************/
23  
24  
25  #ifndef OSD_CPU_H
26  #define OSD_CPU_H
27  
28  #include "shared.h"
29  
30  typedef unsigned char						UINT8;
31  typedef unsigned short						UINT16;
32  typedef unsigned int						UINT32;
33  //__extension__ typedef unsigned long long	UINT64;
34  typedef signed char 						INT8;
35  typedef signed short						INT16;
36  typedef signed int							INT32;
37  //__extension__ typedef signed long long		INT64;
38  
39  /* Combine two 32-bit integers into a 64-bit integer */
40  #define COMBINE_64_32_32(A,B)     ((((UINT64)(A))<<32) | (UINT32)(B))
41  #define COMBINE_U64_U32_U32(A,B)  COMBINE_64_32_32(A,B)
42  
43  /* Return upper 32 bits of a 64-bit integer */
44  #define HI32_32_64(A)		  (((UINT64)(A)) >> 32)
45  #define HI32_U32_U64(A)		  HI32_32_64(A)
46  
47  /* Return lower 32 bits of a 64-bit integer */
48  #define LO32_32_64(A)		  ((A) & 0xffffffff)
49  #define LO32_U32_U64(A)		  LO32_32_64(A)
50  
51  #define DIV_64_64_32(A,B)	  ((A)/(B))
52  #define DIV_U64_U64_U32(A,B)  ((A)/(UINT32)(B))
53  
54  #define MOD_32_64_32(A,B)	  ((A)%(B))
55  #define MOD_U32_U64_U32(A,B)  ((A)%(UINT32)(B))
56  
57  #define MUL_64_32_32(A,B)	  ((A)*(INT64)(B))
58  #define MUL_U64_U32_U32(A,B)  ((A)*(UINT64)(UINT32)(B))
59  
60  
61  /******************************************************************************
62   * Union of UINT8, UINT16 and UINT32 in native endianess of the target
63   * This is used to access bytes and words in a machine independent manner.
64   * The upper bytes h2 and h3 normally contain zero (16 bit CPU cores)
65   * thus PAIR.d can be used to pass arguments to the memory system
66   * which expects 'int' really.
67   ******************************************************************************/
68  typedef union {
69  #ifdef LSB_FIRST
70  	struct { UINT8 l,h,h2,h3; } b;
71  	struct { UINT16 l,h; } w;
72  #else
73  	struct { UINT8 h3,h2,h,l; } b;
74  	struct { UINT16 h,l; } w;
75  #endif
76  	UINT32 d;
77  }	PAIR;
78  
79  #endif	/* defined OSD_CPU_H */