linkage.h 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*****************************************************************************/
  2. /* linkage.h v8.2.2 */
  3. /* */
  4. /* Copyright (c) 1998-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /*****************************************************************************/
  37. #ifndef _LINKAGE
  38. #define _LINKAGE
  39. #pragma diag_push
  40. #pragma CHECK_MISRA("-19.4") /* macros required for implementation */
  41. /*--------------------------------------------------------------------------*/
  42. /* Define _CODE_ACCESS ==> how to call RTS functions */
  43. /*--------------------------------------------------------------------------*/
  44. #ifndef _FAR_RTS
  45. #define _CODE_ACCESS
  46. #elif _FAR_RTS == 0
  47. #define _CODE_ACCESS __near
  48. #else
  49. #define _CODE_ACCESS __far
  50. #endif
  51. /*--------------------------------------------------------------------------*/
  52. /* Define _DATA_ACCESS ==> how to access RTS global or static data */
  53. /*--------------------------------------------------------------------------*/
  54. #define _DATA_ACCESS __far
  55. /*--------------------------------------------------------------------------*/
  56. /* Define _DATA_ACCESS_NEAR ==> some C6000 RTS data must always be near */
  57. /*--------------------------------------------------------------------------*/
  58. #define _DATA_ACCESS_NEAR __near
  59. /*--------------------------------------------------------------------------*/
  60. /* Define _IDECL ==> how inline functions are declared */
  61. /*--------------------------------------------------------------------------*/
  62. #ifdef _INLINE
  63. #define _IDECL static __inline
  64. #define _IDEFN static __inline
  65. #else
  66. #ifdef __cplusplus
  67. #define _IDECL extern "C" _CODE_ACCESS
  68. #else
  69. #define _IDECL extern _CODE_ACCESS
  70. #endif
  71. #define _IDEFN _CODE_ACCESS
  72. #endif
  73. /*--------------------------------------------------------------------------*/
  74. /* If compiling with non-TI compiler (e.g. GCC), nullify any TI-specific */
  75. /* language extensions. */
  76. /*--------------------------------------------------------------------------*/
  77. #pragma diag_pop
  78. #endif /* ifndef _LINKAGE */