cortexm3_macro.lst
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:26k
源码类别:

uCOS

开发平台:

C/C++

  1. ARM Macro Assembler    Page 1 
  2.     1 00000000         ;******************** (C) COPYRIGHT 2008 STMicroelectron
  3.                        ics ********************
  4.     2 00000000         ;* File Name          : cortexm3_macro.s
  5.     3 00000000         ;* Author             : MCD Application Team
  6.     4 00000000         ;* Version            : V2.0.2
  7.     5 00000000         ;* Date               : 07/11/2008
  8.     6 00000000         ;* Description        : Instruction wrappers for special
  9.                         Cortex-M3 instructions
  10.     7 00000000         ;*                      to be used with RVMDK toolchain.
  11.                        
  12.     8 00000000         ;*******************************************************
  13.                        ************************
  14.     9 00000000         ; THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS A
  15.                        T PROVIDING CUSTOMERS
  16.    10 00000000         ; WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN OR
  17.                        DER FOR THEM TO SAVE TIME.
  18.    11 00000000         ; AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIAB
  19.                        LE FOR ANY DIRECT,
  20.    12 00000000         ; INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY 
  21.                        CLAIMS ARISING FROM THE
  22.    13 00000000         ; CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOM
  23.                        ERS OF THE CODING
  24.    14 00000000         ; INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR 
  25.                        PRODUCTS.
  26.    15 00000000         ;*******************************************************
  27.                        ************************
  28.    16 00000000         
  29.    17 00000000                 THUMB
  30.    18 00000000                 REQUIRE8
  31.    19 00000000                 PRESERVE8
  32.    20 00000000         
  33.    21 00000000                 AREA             |.text|, CODE, READONLY, ALIGN=
  34. 2
  35.    22 00000000         
  36.    23 00000000         ; Exported functions
  37.    24 00000000                 EXPORT           __WFI
  38.    25 00000000                 EXPORT           __WFE
  39.    26 00000000                 EXPORT           __SEV
  40.    27 00000000                 EXPORT           __ISB
  41.    28 00000000                 EXPORT           __DSB
  42.    29 00000000                 EXPORT           __DMB
  43.    30 00000000                 EXPORT           __SVC
  44.    31 00000000                 EXPORT           __MRS_CONTROL
  45.    32 00000000                 EXPORT           __MSR_CONTROL
  46.    33 00000000                 EXPORT           __MRS_PSP
  47.    34 00000000                 EXPORT           __MSR_PSP
  48.    35 00000000                 EXPORT           __MRS_MSP
  49.    36 00000000                 EXPORT           __MSR_MSP
  50.    37 00000000                 EXPORT           __RESETPRIMASK
  51.    38 00000000                 EXPORT           __SETPRIMASK
  52.    39 00000000                 EXPORT           __READ_PRIMASK
  53.    40 00000000                 EXPORT           __RESETFAULTMASK
  54.    41 00000000                 EXPORT           __SETFAULTMASK
  55.    42 00000000                 EXPORT           __READ_FAULTMASK
  56.    43 00000000                 EXPORT           __BASEPRICONFIG
  57.    44 00000000                 EXPORT           __GetBASEPRI
  58.    45 00000000                 EXPORT           __REV_HalfWord
  59.    46 00000000                 EXPORT           __REV_Word
  60.    47 00000000         
  61. ARM Macro Assembler    Page 2 
  62.    48 00000000         ;*******************************************************
  63.                        ************************
  64.    49 00000000         ; Function Name  : __WFI
  65.    50 00000000         ; Description    : Assembler function for the WFI instru
  66.                        ction.
  67.    51 00000000         ; Input          : None
  68.    52 00000000         ; Return         : None
  69.    53 00000000         ;*******************************************************
  70.                        ************************
  71.    54 00000000         __WFI
  72.    55 00000000         
  73.    56 00000000 BF30            WFI
  74.    57 00000002 4770            BX               r14
  75.    58 00000004         
  76.    59 00000004         ;*******************************************************
  77.                        ************************
  78.    60 00000004         ; Function Name  : __WFE
  79.    61 00000004         ; Description    : Assembler function for the WFE instru
  80.                        ction.
  81.    62 00000004         ; Input          : None
  82.    63 00000004         ; Return         : None
  83.    64 00000004         ;*******************************************************
  84.                        ************************
  85.    65 00000004         __WFE
  86.    66 00000004         
  87.    67 00000004 BF20            WFE
  88.    68 00000006 4770            BX               r14
  89.    69 00000008         
  90.    70 00000008         ;*******************************************************
  91.                        ************************
  92.    71 00000008         ; Function Name  : __SEV
  93.    72 00000008         ; Description    : Assembler function for the SEV instru
  94.                        ction.
  95.    73 00000008         ; Input          : None
  96.    74 00000008         ; Return         : None
  97.    75 00000008         ;*******************************************************
  98.                        ************************
  99.    76 00000008         __SEV
  100.    77 00000008         
  101.    78 00000008 BF40            SEV
  102.    79 0000000A 4770            BX               r14
  103.    80 0000000C         
  104.    81 0000000C         ;*******************************************************
  105.                        ************************
  106.    82 0000000C         ; Function Name  : __ISB
  107.    83 0000000C         ; Description    : Assembler function for the ISB instru
  108.                        ction.
  109.    84 0000000C         ; Input          : None
  110.    85 0000000C         ; Return         : None
  111.    86 0000000C         ;*******************************************************
  112.                        ************************
  113.    87 0000000C         __ISB
  114.    88 0000000C         
  115.    89 0000000C F3BF 8F6F       ISB
  116.    90 00000010 4770            BX               r14
  117.    91 00000012         
  118.    92 00000012         ;*******************************************************
  119.                        ************************
  120.    93 00000012         ; Function Name  : __DSB
  121. ARM Macro Assembler    Page 3 
  122.    94 00000012         ; Description    : Assembler function for the DSB instru
  123.                        ction.
  124.    95 00000012         ; Input          : None
  125.    96 00000012         ; Return         : None
  126.    97 00000012         ;*******************************************************
  127.                        ************************
  128.    98 00000012         __DSB
  129.    99 00000012         
  130.   100 00000012 F3BF 8F4F       DSB
  131.   101 00000016 4770            BX               r14
  132.   102 00000018         
  133.   103 00000018         ;*******************************************************
  134.                        ************************
  135.   104 00000018         ; Function Name  : __DMB
  136.   105 00000018         ; Description    : Assembler function for the DMB instru
  137.                        ction.
  138.   106 00000018         ; Input          : None
  139.   107 00000018         ; Return         : None
  140.   108 00000018         ;*******************************************************
  141.                        ************************
  142.   109 00000018         __DMB
  143.   110 00000018         
  144.   111 00000018 F3BF 8F5F       DMB
  145.   112 0000001C 4770            BX               r14
  146.   113 0000001E         
  147.   114 0000001E         ;*******************************************************
  148.                        ************************
  149.   115 0000001E         ; Function Name  : __SVC
  150.   116 0000001E         ; Description    : Assembler function for the SVC instru
  151.                        ction.
  152.   117 0000001E         ; Input          : None
  153.   118 0000001E         ; Return         : None
  154.   119 0000001E         ;*******************************************************
  155.                        ************************
  156.   120 0000001E         __SVC
  157.   121 0000001E         
  158.   122 0000001E DF01            SVC              0x01
  159.   123 00000020 4770            BX               r14
  160.   124 00000022         
  161.   125 00000022         ;*******************************************************
  162.                        ************************
  163.   126 00000022         ; Function Name  : __MRS_CONTROL
  164.   127 00000022         ; Description    : Assembler function for the MRS instru
  165.                        ction.
  166.   128 00000022         ; Input          : None
  167.   129 00000022         ; Return         : - r0 : Cortex-M3 CONTROL register val
  168.                        ue.
  169.   130 00000022         ;*******************************************************
  170.                        ************************
  171.   131 00000022         __MRS_CONTROL
  172.   132 00000022         
  173.   133 00000022 F3EF 8014       MRS              r0, CONTROL
  174.   134 00000026 4770            BX               r14
  175.   135 00000028         
  176.   136 00000028         ;*******************************************************
  177.                        ************************
  178.   137 00000028         ; Function Name  : __MSR_CONTROL
  179.   138 00000028         ; Description    : Assembler function for the MSR instru
  180.                        ction.
  181. ARM Macro Assembler    Page 4 
  182.   139 00000028         ; Input          : - r0 : Cortex-M3 CONTROL register new
  183.                         value.  
  184.   140 00000028         ; Return         : None
  185.   141 00000028         ;*******************************************************
  186.                        ************************
  187.   142 00000028         __MSR_CONTROL
  188.   143 00000028         
  189.   144 00000028 F380 8814       MSR              CONTROL, r0
  190.   145 0000002C F3BF 8F6F       ISB
  191.   146 00000030 4770            BX               r14
  192.   147 00000032         
  193.   148 00000032         ;*******************************************************
  194.                        ************************
  195.   149 00000032         ; Function Name  : __MRS_PSP
  196.   150 00000032         ; Description    : Assembler function for the MRS instru
  197.                        ction.
  198.   151 00000032         ; Input          : None
  199.   152 00000032         ; Return         : - r0 : Process Stack value.
  200.   153 00000032         ;*******************************************************
  201.                        ************************
  202.   154 00000032         __MRS_PSP
  203.   155 00000032         
  204.   156 00000032 F3EF 8009       MRS              r0, PSP
  205.   157 00000036 4770            BX               r14
  206.   158 00000038         
  207.   159 00000038         ;*******************************************************
  208.                        ************************
  209.   160 00000038         ; Function Name  : __MSR_PSP
  210.   161 00000038         ; Description    : Assembler function for the MSR instru
  211.                        ction.
  212.   162 00000038         ; Input          : - r0 : Process Stack new value.  
  213.   163 00000038         ; Return         : None
  214.   164 00000038         ;*******************************************************
  215.                        ************************
  216.   165 00000038         __MSR_PSP
  217.   166 00000038         
  218.   167 00000038 F380 8809       MSR              PSP, r0     ; set Process Stack
  219.                                                              value
  220.   168 0000003C 4770            BX               r14
  221.   169 0000003E         
  222.   170 0000003E         ;*******************************************************
  223.                        ************************
  224.   171 0000003E         ; Function Name  : __MRS_MSP
  225.   172 0000003E         ; Description    : Assembler function for the MRS instru
  226.                        ction.
  227.   173 0000003E         ; Input          : None
  228.   174 0000003E         ; Return         : - r0 : Main Stack value.
  229.   175 0000003E         ;*******************************************************
  230.                        ************************
  231.   176 0000003E         __MRS_MSP
  232.   177 0000003E         
  233.   178 0000003E F3EF 8008       MRS              r0, MSP
  234.   179 00000042 4770            BX               r14
  235.   180 00000044         
  236.   181 00000044         ;*******************************************************
  237.                        ************************
  238.   182 00000044         ; Function Name  : __MSR_MSP
  239.   183 00000044         ; Description    : Assembler function for the MSR instru
  240.                        ction.
  241. ARM Macro Assembler    Page 5 
  242.   184 00000044         ; Input          : - r0 : Main Stack new value.  
  243.   185 00000044         ; Return         : None
  244.   186 00000044         ;*******************************************************
  245.                        ************************
  246.   187 00000044         __MSR_MSP
  247.   188 00000044         
  248.   189 00000044 F380 8808       MSR              MSP, r0     ; set Main Stack va
  249.                                                             lue
  250.   190 00000048 4770            BX               r14
  251.   191 0000004A         
  252.   192 0000004A         ;*******************************************************
  253.                        ************************
  254.   193 0000004A         ; Function Name  : __RESETPRIMASK
  255.   194 0000004A         ; Description    : Assembler function to reset the PRIMA
  256.                        SK.
  257.   195 0000004A         ; Input          : None 
  258.   196 0000004A         ; Return         : None
  259.   197 0000004A         ;*******************************************************
  260.                        ************************
  261.   198 0000004A         __RESETPRIMASK
  262.   199 0000004A         
  263.   200 0000004A B662            CPSIE            i
  264.   201 0000004C 4770            BX               r14
  265.   202 0000004E         
  266.   203 0000004E         ;*******************************************************
  267.                        ************************
  268.   204 0000004E         ; Function Name  : __SETPRIMASK
  269.   205 0000004E         ; Description    : Assembler function to set the PRIMASK
  270.                        .
  271.   206 0000004E         ; Input          : None 
  272.   207 0000004E         ; Return         : None
  273.   208 0000004E         ;*******************************************************
  274.                        ************************
  275.   209 0000004E         __SETPRIMASK
  276.   210 0000004E         
  277.   211 0000004E B672            CPSID            i
  278.   212 00000050 4770            BX               r14
  279.   213 00000052         
  280.   214 00000052         ;*******************************************************
  281.                        ************************
  282.   215 00000052         ; Function Name  : __READ_PRIMASK
  283.   216 00000052         ; Description    : Assembler function to get the PRIMASK
  284.                         value.
  285.   217 00000052         ; Input          : None
  286.   218 00000052         ; Return         : - r0 : PRIMASK register value 
  287.   219 00000052         ;*******************************************************
  288.                        ************************
  289.   220 00000052         __READ_PRIMASK
  290.   221 00000052         
  291.   222 00000052 F3EF 8010       MRS              r0, PRIMASK
  292.   223 00000056 4770            BX               r14
  293.   224 00000058         
  294.   225 00000058         ;*******************************************************
  295.                        ************************
  296.   226 00000058         ; Function Name  : __SETFAULTMASK
  297.   227 00000058         ; Description    : Assembler function to set the FAULTMA
  298.                        SK.
  299.   228 00000058         ; Input          : None 
  300.   229 00000058         ; Return         : None
  301. ARM Macro Assembler    Page 6 
  302.   230 00000058         ;*******************************************************
  303.                        ************************
  304.   231 00000058         __SETFAULTMASK
  305.   232 00000058         
  306.   233 00000058 B671            CPSID            f
  307.   234 0000005A 4770            BX               r14
  308.   235 0000005C         
  309.   236 0000005C         ;*******************************************************
  310.                        ************************
  311.   237 0000005C         ; Function Name  : __RESETFAULTMASK
  312.   238 0000005C         ; Description    : Assembler function to reset the FAULT
  313.                        MASK.
  314.   239 0000005C         ; Input          : None 
  315.   240 0000005C         ; Return         : None
  316.   241 0000005C         ;*******************************************************
  317.                        ************************
  318.   242 0000005C         __RESETFAULTMASK
  319.   243 0000005C         
  320.   244 0000005C B661            CPSIE            f
  321.   245 0000005E 4770            BX               r14
  322.   246 00000060         
  323.   247 00000060         ;*******************************************************
  324.                        ************************
  325.   248 00000060         ; Function Name  : __READ_FAULTMASK
  326.   249 00000060         ; Description    : Assembler function to get the FAULTMA
  327.                        SK value.
  328.   250 00000060         ; Input          : None
  329.   251 00000060         ; Return         : - r0 : FAULTMASK register value 
  330.   252 00000060         ;*******************************************************
  331.                        ************************
  332.   253 00000060         __READ_FAULTMASK
  333.   254 00000060         
  334.   255 00000060 F3EF 8013       MRS              r0, FAULTMASK
  335.   256 00000064 4770            BX               r14
  336.   257 00000066         
  337.   258 00000066         ;*******************************************************
  338.                        ************************
  339.   259 00000066         ; Function Name  : __BASEPRICONFIG
  340.   260 00000066         ; Description    : Assembler function to set the Base Pr
  341.                        iority.
  342.   261 00000066         ; Input          : - r0 : Base Priority new value  
  343.   262 00000066         ; Return         : None
  344.   263 00000066         ;*******************************************************
  345.                        ************************
  346.   264 00000066         __BASEPRICONFIG
  347.   265 00000066         
  348.   266 00000066 F380 8811       MSR              BASEPRI, r0
  349.   267 0000006A 4770            BX               r14
  350.   268 0000006C         
  351.   269 0000006C         ;*******************************************************
  352.                        ************************
  353.   270 0000006C         ; Function Name  : __GetBASEPRI
  354.   271 0000006C         ; Description    : Assembler function to get the Base Pr
  355.                        iority value.
  356.   272 0000006C         ; Input          : None 
  357.   273 0000006C         ; Return         : - r0 : Base Priority value 
  358.   274 0000006C         ;*******************************************************
  359.                        ************************
  360.   275 0000006C         __GetBASEPRI
  361. ARM Macro Assembler    Page 7 
  362.   276 0000006C         
  363.   277 0000006C F3EF 8012       MRS              r0, BASEPRI_MAX
  364.   278 00000070 4770            BX               r14
  365.   279 00000072         
  366.   280 00000072         ;*******************************************************
  367.                        ************************
  368.   281 00000072         ; Function Name  : __REV_HalfWord
  369.   282 00000072         ; Description    : Reverses the byte order in HalfWord(1
  370.                        6-bit) input variable.
  371.   283 00000072         ; Input          : - r0 : specifies the input variable
  372.   284 00000072         ; Return         : - r0 : holds tve variable value after
  373.                         byte reversing.
  374.   285 00000072         ;*******************************************************
  375.                        ************************
  376.   286 00000072         __REV_HalfWord
  377.   287 00000072         
  378.   288 00000072 BA40            REV16            r0, r0
  379.   289 00000074 4770            BX               r14
  380.   290 00000076         
  381.   291 00000076         ;*******************************************************
  382.                        ************************
  383.   292 00000076         ; Function Name  : __REV_Word
  384.   293 00000076         ; Description    : Reverses the byte order in Word(32-bi
  385.                        t) input variable.
  386.   294 00000076         ; Input          : - r0 : specifies the input variable
  387.   295 00000076         ; Return         : - r0 : holds tve variable value after
  388.                         byte reversing.
  389.   296 00000076         ;*******************************************************
  390.                        ************************
  391.   297 00000076         __REV_Word
  392.   298 00000076         
  393.   299 00000076 BA00            REV              r0, r0
  394.   300 00000078 4770            BX               r14
  395.   301 0000007A         
  396.   302 0000007A                 END
  397. Command Line: --debug --xref --device=DARMSTM --apcs=interwork -o.Outputcorte
  398. xm3_macro.o -IC:KeilARMINCSTSTM32F10x --list=.Outputcortexm3_macro.lst F
  399. WLcortexm3_macro.s
  400. ARM Macro Assembler    Page 1 Alphabetic symbol ordering
  401. Relocatable symbols
  402. .text 00000000
  403. Symbol: .text
  404.    Definitions
  405.       At line 21 in file FWLcortexm3_macro.s
  406.    Uses
  407.       None
  408. Comment: .text unused
  409. __BASEPRICONFIG 00000066
  410. Symbol: __BASEPRICONFIG
  411.    Definitions
  412.       At line 264 in file FWLcortexm3_macro.s
  413.    Uses
  414.       At line 43 in file FWLcortexm3_macro.s
  415. Comment: __BASEPRICONFIG used once
  416. __DMB 00000018
  417. Symbol: __DMB
  418.    Definitions
  419.       At line 109 in file FWLcortexm3_macro.s
  420.    Uses
  421.       At line 29 in file FWLcortexm3_macro.s
  422. Comment: __DMB used once
  423. __DSB 00000012
  424. Symbol: __DSB
  425.    Definitions
  426.       At line 98 in file FWLcortexm3_macro.s
  427.    Uses
  428.       At line 28 in file FWLcortexm3_macro.s
  429. Comment: __DSB used once
  430. __GetBASEPRI 0000006C
  431. Symbol: __GetBASEPRI
  432.    Definitions
  433.       At line 275 in file FWLcortexm3_macro.s
  434.    Uses
  435.       At line 44 in file FWLcortexm3_macro.s
  436. Comment: __GetBASEPRI used once
  437. __ISB 0000000C
  438. Symbol: __ISB
  439.    Definitions
  440.       At line 87 in file FWLcortexm3_macro.s
  441.    Uses
  442.       At line 27 in file FWLcortexm3_macro.s
  443. Comment: __ISB used once
  444. __MRS_CONTROL 00000022
  445. Symbol: __MRS_CONTROL
  446.    Definitions
  447.       At line 131 in file FWLcortexm3_macro.s
  448.    Uses
  449.       At line 31 in file FWLcortexm3_macro.s
  450. Comment: __MRS_CONTROL used once
  451. __MRS_MSP 0000003E
  452. Symbol: __MRS_MSP
  453. ARM Macro Assembler    Page 2 Alphabetic symbol ordering
  454. Relocatable symbols
  455.    Definitions
  456.       At line 176 in file FWLcortexm3_macro.s
  457.    Uses
  458.       At line 35 in file FWLcortexm3_macro.s
  459. Comment: __MRS_MSP used once
  460. __MRS_PSP 00000032
  461. Symbol: __MRS_PSP
  462.    Definitions
  463.       At line 154 in file FWLcortexm3_macro.s
  464.    Uses
  465.       At line 33 in file FWLcortexm3_macro.s
  466. Comment: __MRS_PSP used once
  467. __MSR_CONTROL 00000028
  468. Symbol: __MSR_CONTROL
  469.    Definitions
  470.       At line 142 in file FWLcortexm3_macro.s
  471.    Uses
  472.       At line 32 in file FWLcortexm3_macro.s
  473. Comment: __MSR_CONTROL used once
  474. __MSR_MSP 00000044
  475. Symbol: __MSR_MSP
  476.    Definitions
  477.       At line 187 in file FWLcortexm3_macro.s
  478.    Uses
  479.       At line 36 in file FWLcortexm3_macro.s
  480. Comment: __MSR_MSP used once
  481. __MSR_PSP 00000038
  482. Symbol: __MSR_PSP
  483.    Definitions
  484.       At line 165 in file FWLcortexm3_macro.s
  485.    Uses
  486.       At line 34 in file FWLcortexm3_macro.s
  487. Comment: __MSR_PSP used once
  488. __READ_FAULTMASK 00000060
  489. Symbol: __READ_FAULTMASK
  490.    Definitions
  491.       At line 253 in file FWLcortexm3_macro.s
  492.    Uses
  493.       At line 42 in file FWLcortexm3_macro.s
  494. Comment: __READ_FAULTMASK used once
  495. __READ_PRIMASK 00000052
  496. Symbol: __READ_PRIMASK
  497.    Definitions
  498.       At line 220 in file FWLcortexm3_macro.s
  499.    Uses
  500.       At line 39 in file FWLcortexm3_macro.s
  501. Comment: __READ_PRIMASK used once
  502. __RESETFAULTMASK 0000005C
  503. Symbol: __RESETFAULTMASK
  504.    Definitions
  505.       At line 242 in file FWLcortexm3_macro.s
  506.    Uses
  507. ARM Macro Assembler    Page 3 Alphabetic symbol ordering
  508. Relocatable symbols
  509.       At line 40 in file FWLcortexm3_macro.s
  510. Comment: __RESETFAULTMASK used once
  511. __RESETPRIMASK 0000004A
  512. Symbol: __RESETPRIMASK
  513.    Definitions
  514.       At line 198 in file FWLcortexm3_macro.s
  515.    Uses
  516.       At line 37 in file FWLcortexm3_macro.s
  517. Comment: __RESETPRIMASK used once
  518. __REV_HalfWord 00000072
  519. Symbol: __REV_HalfWord
  520.    Definitions
  521.       At line 286 in file FWLcortexm3_macro.s
  522.    Uses
  523.       At line 45 in file FWLcortexm3_macro.s
  524. Comment: __REV_HalfWord used once
  525. __REV_Word 00000076
  526. Symbol: __REV_Word
  527.    Definitions
  528.       At line 297 in file FWLcortexm3_macro.s
  529.    Uses
  530.       At line 46 in file FWLcortexm3_macro.s
  531. Comment: __REV_Word used once
  532. __SETFAULTMASK 00000058
  533. Symbol: __SETFAULTMASK
  534.    Definitions
  535.       At line 231 in file FWLcortexm3_macro.s
  536.    Uses
  537.       At line 41 in file FWLcortexm3_macro.s
  538. Comment: __SETFAULTMASK used once
  539. __SETPRIMASK 0000004E
  540. Symbol: __SETPRIMASK
  541.    Definitions
  542.       At line 209 in file FWLcortexm3_macro.s
  543.    Uses
  544.       At line 38 in file FWLcortexm3_macro.s
  545. Comment: __SETPRIMASK used once
  546. __SEV 00000008
  547. Symbol: __SEV
  548.    Definitions
  549.       At line 76 in file FWLcortexm3_macro.s
  550.    Uses
  551.       At line 26 in file FWLcortexm3_macro.s
  552. Comment: __SEV used once
  553. __SVC 0000001E
  554. Symbol: __SVC
  555.    Definitions
  556.       At line 120 in file FWLcortexm3_macro.s
  557.    Uses
  558.       At line 30 in file FWLcortexm3_macro.s
  559. Comment: __SVC used once
  560. __WFE 00000004
  561. ARM Macro Assembler    Page 4 Alphabetic symbol ordering
  562. Relocatable symbols
  563. Symbol: __WFE
  564.    Definitions
  565.       At line 65 in file FWLcortexm3_macro.s
  566.    Uses
  567.       At line 25 in file FWLcortexm3_macro.s
  568. Comment: __WFE used once
  569. __WFI 00000000
  570. Symbol: __WFI
  571.    Definitions
  572.       At line 54 in file FWLcortexm3_macro.s
  573.    Uses
  574.       At line 24 in file FWLcortexm3_macro.s
  575. Comment: __WFI used once
  576. 24 symbols
  577. ARM Macro Assembler    Page 1 Alphabetic symbol ordering
  578. Relocatable symbols
  579. .debug_info$$$.text 00000000
  580. Symbol: .debug_info$$$.text
  581.    Definitions
  582.       None
  583.    Uses
  584.       None
  585. Warning: .debug_info$$$.text undefinedComment: .debug_info$$$.text unused
  586. 1 symbol
  587. ARM Macro Assembler    Page 1 Alphabetic symbol ordering
  588. Relocatable symbols
  589. .debug_line$$$.text 00000000
  590. Symbol: .debug_line$$$.text
  591.    Definitions
  592.       None
  593.    Uses
  594.       None
  595. Warning: .debug_line$$$.text undefinedComment: .debug_line$$$.text unused
  596. 1 symbol
  597. ARM Macro Assembler    Page 1 Alphabetic symbol ordering
  598. Relocatable symbols
  599. .debug_abbrev 00000000
  600. Symbol: .debug_abbrev
  601.    Definitions
  602.       None
  603.    Uses
  604.       None
  605. Warning: .debug_abbrev undefinedComment: .debug_abbrev unused
  606. __ARM_asm.debug_abbrev 00000000
  607. Symbol: __ARM_asm.debug_abbrev
  608.    Definitions
  609.       None
  610.    Uses
  611.       None
  612. Warning: __ARM_asm.debug_abbrev undefinedComment: __ARM_asm.debug_abbrev unused
  613. 2 symbols
  614. 347 symbols in table