cvectors.asm
上传用户:inhuatv111
上传日期:2022-08-04
资源大小:292k
文件大小:6k
源码类别:

DSP编程

开发平台:

C/C++

  1. **********************************************************************
  2. * Filename: cvectors.asm                                             *
  3. *                                                                    *
  4. * Author: David M. Alter, Texas Instruments Inc.                     *
  5. *                                                                    *
  6. * Last Modified: 03/14/01                                            *
  7. *                                                                    *
  8. * Description: Interrupt vector table for '240x DSP core             *
  9. * for use with C language programs.                                  *
  10. *                                                                    *
  11. **********************************************************************
  12. **********************************************************************
  13. * THIS PROGRAM IS PROVIDED "AS IS". TI MAKES NO WARRANTIES OR        *
  14. * REPRESENTATIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,             *
  15. * INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS       *
  16. * FOR A PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR             *
  17. * COMPLETENESS OF RESPONSES, RESULTS AND LACK OF NEGLIGENCE.         *
  18. * TI DISCLAIMS ANY WARRANTY OF TITLE, QUIET ENJOYMENT, QUIET         *
  19. * POSSESSION, AND NON-INFRINGEMENT OF ANY THIRD PARTY                *
  20. * INTELLECTUAL PROPERTY RIGHTS WITH REGARD TO THE PROGRAM OR         *
  21. * YOUR USE OF THE PROGRAM.                                           *
  22. *                                                                    *
  23. * IN NO EVENT SHALL TI BE LIABLE FOR ANY SPECIAL, INCIDENTAL,        *
  24. * CONSEQUENTIAL OR INDIRECT DAMAGES, HOWEVER CAUSED, ON ANY          *
  25. * THEORY OF LIABILITY AND WHETHER OR NOT TI HAS BEEN ADVISED         *
  26. * OF THE POSSIBILITY OF SUCH DAMAGES, ARISING IN ANY WAY OUT         *
  27. * OF THIS AGREEMENT, THE PROGRAM, OR YOUR USE OF THE PROGRAM.        *
  28. * EXCLUDED DAMAGES INCLUDE, BUT ARE NOT LIMITED TO, COST OF          *
  29. * REMOVAL OR REINSTALLATION, COMPUTER TIME, LABOR COSTS, LOSS        *
  30. * OF GOODWILL, LOSS OF PROFITS, LOSS OF SAVINGS, OR LOSS OF          *
  31. * USE OR INTERRUPTION OF BUSINESS. IN NO EVENT WILL TI'S             *
  32. * AGGREGATE LIABILITY UNDER THIS AGREEMENT OR ARISING OUT OF         *
  33. * YOUR USE OF THE PROGRAM EXCEED FIVE HUNDRED DOLLARS                *
  34. * (U.S.$500).                                                        *
  35. *                                                                    *
  36. * Unless otherwise stated, the Program written and copyrighted       *
  37. * by Texas Instruments is distributed as "freeware".  You may,       *
  38. * only under TI's copyright in the Program, use and modify the       *
  39. * Program without any charge or restriction.  You may                *
  40. * distribute to third parties, provided that you transfer a          *
  41. * copy of this license to the third party and the third party        *
  42. * agrees to these terms by its first use of the Program. You         *
  43. * must reproduce the copyright notice and any other legend of        *
  44. * ownership on each copy or partial copy, of the Program.            *
  45. *                                                                    *
  46. * You acknowledge and agree that the Program contains                *
  47. * copyrighted material, trade secrets and other TI proprietary       *
  48. * information and is protected by copyright laws,                    *
  49. * international copyright treaties, and trade secret laws, as        *
  50. * well as other intellectual property laws.  To protect TI's         *
  51. * rights in the Program, you agree not to decompile, reverse         *
  52. * engineer, disassemble or otherwise translate any object code       *
  53. * versions of the Program to a human-readable form.  You agree       *
  54. * that in no event will you alter, remove or destroy any             *
  55. * copyright notice included in the Program.  TI reserves all         *
  56. * rights not specifically granted under this license. Except         *
  57. * as specifically provided herein, nothing in this agreement         *
  58. * shall be construed as conferring by implication, estoppel,         *
  59. * or otherwise, upon you, any license or other right under any       *
  60. * TI patents, copyrights or trade secrets.                           *
  61. *                                                                    *
  62. * You may not use the Program in non-TI devices.                     *
  63. **********************************************************************
  64.         .ref _c_int0
  65.         .sect    "vectors"
  66. rset:   B       _c_int0         ;00h reset
  67. int1:   B       int1            ;02h INT1
  68. int2:   B       int2            ;04h INT2
  69. int3:   B       int3            ;06h INT3
  70. int4:   B       int4            ;08h INT4
  71. int5:   B       int5            ;0Ah INT5
  72. int6:   B       int6            ;0Ch INT6
  73. int7:   B       int7            ;0Eh reserved
  74. int8:   B       int8            ;10h INT8  (software)
  75. int9:   B       int9            ;12h INT9  (software)
  76. int10:  B       int10           ;14h INT10 (software)
  77. int11:  B       int11           ;16h INT11 (software)
  78. int12:  B       int12           ;18h INT12 (software)
  79. int13:  B       int13           ;1Ah INT13 (software)
  80. int14:  B       int14           ;1Ch INT14 (software)
  81. int15:  B       int15           ;1Eh INT15 (software)
  82. int16:  B       int16           ;20h INT16 (software)
  83. int17:  B       int17           ;22h TRAP
  84. int18:  B       int18           ;24h NMI
  85. int19:  B       int19           ;26h reserved
  86. int20:  B       int20           ;28h INT20 (software)
  87. int21:  B       int21           ;2Ah INT21 (software)
  88. int22:  B       int22           ;2Ch INT22 (software)
  89. int23:  B       int23           ;2Eh INT23 (software)
  90. int24:  B       int24           ;30h INT24 (software)
  91. int25:  B       int25           ;32h INT25 (software)
  92. int26:  B       int26           ;34h INT26 (software)
  93. int27:  B       int27           ;36h INT27 (software)
  94. int28:  B       int28           ;38h INT28 (software)
  95. int29:  B       int29           ;3Ah INT29 (software)
  96. int30:  B       int30           ;3Ch INT30 (software)
  97. int31:  B       int31           ;3Eh INT31 (software)