vectors.lst 44.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 1


   1              		.syntax unified
   2              		.cpu cortex-m3
   3              		.fpu softvfp
   4              		.eabi_attribute 20, 1
   5              		.eabi_attribute 21, 1
   6              		.eabi_attribute 23, 3
   7              		.eabi_attribute 24, 1
   8              		.eabi_attribute 25, 1
   9              		.eabi_attribute 26, 1
  10              		.eabi_attribute 30, 2
  11              		.eabi_attribute 34, 1
  12              		.eabi_attribute 18, 4
  13              		.thumb
  14              		.file	"vectors.c"
  15              		.text
  16              	.Ltext0:
  17              		.cfi_sections	.debug_frame
  18              		.section	.text._unhandled_exception,"ax",%progbits
  19              		.align	2
  20              		.p2align 4,,15
  21              		.global	_unhandled_exception
  22              		.thumb
  23              		.thumb_func
  24              		.type	_unhandled_exception, %function
  25              	_unhandled_exception:
  26              	.LFB7:
  27              		.file 1 "../..//os/ports/GCC/ARMCMx/STM32F1xx/vectors.c"
  28              		.loc 1 242 0
  29              		.cfi_startproc
  30              		@ Volatile: function does not return.
  31              		@ args = 0, pretend = 0, frame = 0
  32              		@ frame_needed = 0, uses_anonymous_args = 0
  33 0000 08B5     		push	{r3, lr}
  34              	.LCFI0:
  35              		.cfi_def_cfa_offset 8
  36              		.cfi_offset 3, -8
  37              		.cfi_offset 14, -4
  38              		.loc 1 244 0
  39 0002 0248     		ldr	r0, .L4
  40 0004 FFF7FEFF 		bl	print
  41              	.LVL0:
  42              	.L2:
  43 0008 FEE7     		b	.L2
  44              	.L5:
  45 000a 00BF     		.align	2
  46              	.L4:
  47 000c 00000000 		.word	.LC0
  48              		.cfi_endproc
  49              	.LFE7:
  50              		.size	_unhandled_exception, .-_unhandled_exception
  51              		.weak	HardFaultVector
  52              		.thumb_set HardFaultVector,_unhandled_exception
  53              		.weak	MemManageVector
  54              		.thumb_set MemManageVector,_unhandled_exception
  55              		.weak	BusFaultVector
  56              		.thumb_set BusFaultVector,_unhandled_exception
  57              		.weak	UsageFaultVector
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 2


  58              		.thumb_set UsageFaultVector,_unhandled_exception
  59              		.weak	Vector1C
  60              		.thumb_set Vector1C,_unhandled_exception
  61              		.weak	Vector20
  62              		.thumb_set Vector20,_unhandled_exception
  63              		.weak	Vector24
  64              		.thumb_set Vector24,_unhandled_exception
  65              		.weak	Vector28
  66              		.thumb_set Vector28,_unhandled_exception
  67              		.weak	SVCallVector
  68              		.thumb_set SVCallVector,_unhandled_exception
  69              		.weak	DebugMonitorVector
  70              		.thumb_set DebugMonitorVector,_unhandled_exception
  71              		.weak	Vector34
  72              		.thumb_set Vector34,_unhandled_exception
  73              		.weak	PendSVVector
  74              		.thumb_set PendSVVector,_unhandled_exception
  75              		.weak	SysTickVector
  76              		.thumb_set SysTickVector,_unhandled_exception
  77              		.weak	Vector40
  78              		.thumb_set Vector40,_unhandled_exception
  79              		.weak	Vector44
  80              		.thumb_set Vector44,_unhandled_exception
  81              		.weak	Vector48
  82              		.thumb_set Vector48,_unhandled_exception
  83              		.weak	Vector4C
  84              		.thumb_set Vector4C,_unhandled_exception
  85              		.weak	Vector50
  86              		.thumb_set Vector50,_unhandled_exception
  87              		.weak	Vector54
  88              		.thumb_set Vector54,_unhandled_exception
  89              		.weak	Vector58
  90              		.thumb_set Vector58,_unhandled_exception
  91              		.weak	Vector5C
  92              		.thumb_set Vector5C,_unhandled_exception
  93              		.weak	Vector60
  94              		.thumb_set Vector60,_unhandled_exception
  95              		.weak	Vector64
  96              		.thumb_set Vector64,_unhandled_exception
  97              		.weak	Vector68
  98              		.thumb_set Vector68,_unhandled_exception
  99              		.weak	Vector6C
 100              		.thumb_set Vector6C,_unhandled_exception
 101              		.weak	Vector70
 102              		.thumb_set Vector70,_unhandled_exception
 103              		.weak	Vector74
 104              		.thumb_set Vector74,_unhandled_exception
 105              		.weak	Vector78
 106              		.thumb_set Vector78,_unhandled_exception
 107              		.weak	Vector7C
 108              		.thumb_set Vector7C,_unhandled_exception
 109              		.weak	Vector80
 110              		.thumb_set Vector80,_unhandled_exception
 111              		.weak	Vector84
 112              		.thumb_set Vector84,_unhandled_exception
 113              		.weak	Vector88
 114              		.thumb_set Vector88,_unhandled_exception
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 3


 115              		.weak	Vector8C
 116              		.thumb_set Vector8C,_unhandled_exception
 117              		.weak	Vector90
 118              		.thumb_set Vector90,_unhandled_exception
 119              		.weak	Vector94
 120              		.thumb_set Vector94,_unhandled_exception
 121              		.weak	Vector98
 122              		.thumb_set Vector98,_unhandled_exception
 123              		.weak	Vector9C
 124              		.thumb_set Vector9C,_unhandled_exception
 125              		.weak	VectorA0
 126              		.thumb_set VectorA0,_unhandled_exception
 127              		.weak	VectorA4
 128              		.thumb_set VectorA4,_unhandled_exception
 129              		.weak	VectorA8
 130              		.thumb_set VectorA8,_unhandled_exception
 131              		.weak	VectorAC
 132              		.thumb_set VectorAC,_unhandled_exception
 133              		.weak	VectorB0
 134              		.thumb_set VectorB0,_unhandled_exception
 135              		.weak	VectorB4
 136              		.thumb_set VectorB4,_unhandled_exception
 137              		.weak	VectorB8
 138              		.thumb_set VectorB8,_unhandled_exception
 139              		.weak	VectorBC
 140              		.thumb_set VectorBC,_unhandled_exception
 141              		.weak	VectorC0
 142              		.thumb_set VectorC0,_unhandled_exception
 143              		.weak	VectorC4
 144              		.thumb_set VectorC4,_unhandled_exception
 145              		.weak	VectorC8
 146              		.thumb_set VectorC8,_unhandled_exception
 147              		.weak	VectorCC
 148              		.thumb_set VectorCC,_unhandled_exception
 149              		.weak	VectorD0
 150              		.thumb_set VectorD0,_unhandled_exception
 151              		.weak	VectorD4
 152              		.thumb_set VectorD4,_unhandled_exception
 153              		.weak	VectorD8
 154              		.thumb_set VectorD8,_unhandled_exception
 155              		.weak	VectorDC
 156              		.thumb_set VectorDC,_unhandled_exception
 157              		.weak	VectorE0
 158              		.thumb_set VectorE0,_unhandled_exception
 159              		.weak	VectorE4
 160              		.thumb_set VectorE4,_unhandled_exception
 161              		.weak	VectorE8
 162              		.thumb_set VectorE8,_unhandled_exception
 163              		.weak	VectorEC
 164              		.thumb_set VectorEC,_unhandled_exception
 165              		.weak	VectorF0
 166              		.thumb_set VectorF0,_unhandled_exception
 167              		.weak	VectorF4
 168              		.thumb_set VectorF4,_unhandled_exception
 169              		.weak	VectorF8
 170              		.thumb_set VectorF8,_unhandled_exception
 171              		.weak	VectorFC
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 4


 172              		.thumb_set VectorFC,_unhandled_exception
 173              		.weak	Vector100
 174              		.thumb_set Vector100,_unhandled_exception
 175              		.weak	Vector104
 176              		.thumb_set Vector104,_unhandled_exception
 177              		.weak	Vector108
 178              		.thumb_set Vector108,_unhandled_exception
 179              		.weak	Vector10C
 180              		.thumb_set Vector10C,_unhandled_exception
 181              		.weak	Vector110
 182              		.thumb_set Vector110,_unhandled_exception
 183              		.weak	Vector114
 184              		.thumb_set Vector114,_unhandled_exception
 185              		.weak	Vector118
 186              		.thumb_set Vector118,_unhandled_exception
 187              		.weak	Vector11C
 188              		.thumb_set Vector11C,_unhandled_exception
 189              		.weak	Vector120
 190              		.thumb_set Vector120,_unhandled_exception
 191              		.weak	Vector124
 192              		.thumb_set Vector124,_unhandled_exception
 193              		.weak	Vector128
 194              		.thumb_set Vector128,_unhandled_exception
 195              		.weak	Vector12C
 196              		.thumb_set Vector12C,_unhandled_exception
 197              		.weak	NMIVector
 198              		.thumb_set NMIVector,_unhandled_exception
 199              		.global	_vectors
 200              		.section	.rodata.str1.4,"aMS",%progbits,1
 201              		.align	2
 202              	.LC0:
 203 0000 4552524F 		.ascii	"ERROR:_unhandled_exception\012\000"
 203      523A5F75 
 203      6E68616E 
 203      646C6564 
 203      5F657863 
 204              		.section	vectors,"aw",%progbits
 205              		.align	2
 206              		.type	_vectors, %object
 207              		.size	_vectors, 304
 208              	_vectors:
 209 0000 00000000 		.word	__main_stack_end__
 210 0004 00000000 		.word	ResetHandler
 211 0008 00000000 		.word	NMIVector
 212 000c 00000000 		.word	HardFaultVector
 213 0010 00000000 		.word	MemManageVector
 214 0014 00000000 		.word	BusFaultVector
 215 0018 00000000 		.word	UsageFaultVector
 216 001c 00000000 		.word	Vector1C
 217 0020 00000000 		.word	Vector20
 218 0024 00000000 		.word	Vector24
 219 0028 00000000 		.word	Vector28
 220 002c 00000000 		.word	SVCallVector
 221 0030 00000000 		.word	DebugMonitorVector
 222 0034 00000000 		.word	Vector34
 223 0038 00000000 		.word	PendSVVector
 224 003c 00000000 		.word	SysTickVector
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 5


 225 0040 00000000 		.word	Vector40
 226 0044 00000000 		.word	Vector44
 227 0048 00000000 		.word	Vector48
 228 004c 00000000 		.word	Vector4C
 229 0050 00000000 		.word	Vector50
 230 0054 00000000 		.word	Vector54
 231 0058 00000000 		.word	Vector58
 232 005c 00000000 		.word	Vector5C
 233 0060 00000000 		.word	Vector60
 234 0064 00000000 		.word	Vector64
 235 0068 00000000 		.word	Vector68
 236 006c 00000000 		.word	Vector6C
 237 0070 00000000 		.word	Vector70
 238 0074 00000000 		.word	Vector74
 239 0078 00000000 		.word	Vector78
 240 007c 00000000 		.word	Vector7C
 241 0080 00000000 		.word	Vector80
 242 0084 00000000 		.word	Vector84
 243 0088 00000000 		.word	Vector88
 244 008c 00000000 		.word	Vector8C
 245 0090 00000000 		.word	Vector90
 246 0094 00000000 		.word	Vector94
 247 0098 00000000 		.word	Vector98
 248 009c 00000000 		.word	Vector9C
 249 00a0 00000000 		.word	VectorA0
 250 00a4 00000000 		.word	VectorA4
 251 00a8 00000000 		.word	VectorA8
 252 00ac 00000000 		.word	VectorAC
 253 00b0 00000000 		.word	VectorB0
 254 00b4 00000000 		.word	VectorB4
 255 00b8 00000000 		.word	VectorB8
 256 00bc 00000000 		.word	VectorBC
 257 00c0 00000000 		.word	VectorC0
 258 00c4 00000000 		.word	VectorC4
 259 00c8 00000000 		.word	VectorC8
 260 00cc 00000000 		.word	VectorCC
 261 00d0 00000000 		.word	VectorD0
 262 00d4 00000000 		.word	VectorD4
 263 00d8 00000000 		.word	VectorD8
 264 00dc 00000000 		.word	VectorDC
 265 00e0 00000000 		.word	VectorE0
 266 00e4 00000000 		.word	VectorE4
 267 00e8 00000000 		.word	VectorE8
 268 00ec 00000000 		.word	VectorEC
 269 00f0 00000000 		.word	VectorF0
 270 00f4 00000000 		.word	VectorF4
 271 00f8 00000000 		.word	VectorF8
 272 00fc 00000000 		.word	VectorFC
 273 0100 00000000 		.word	Vector100
 274 0104 00000000 		.word	Vector104
 275 0108 00000000 		.word	Vector108
 276 010c 00000000 		.word	Vector10C
 277 0110 00000000 		.word	Vector110
 278 0114 00000000 		.word	Vector114
 279 0118 00000000 		.word	Vector118
 280 011c 00000000 		.word	Vector11C
 281 0120 00000000 		.word	Vector120
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 6


 282 0124 00000000 		.word	Vector124
 283 0128 00000000 		.word	Vector128
 284 012c 00000000 		.word	Vector12C
 285              		.text
 286              	.Letext0:
 287              		.file 2 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/stdint.h"
 288              		.section	.debug_info,"",%progbits
 289              	.Ldebug_info0:
 290 0000 1A020000 		.4byte	0x21a
 291 0004 0200     		.2byte	0x2
 292 0006 00000000 		.4byte	.Ldebug_abbrev0
 293 000a 04       		.byte	0x4
 294 000b 01       		.uleb128 0x1
 295 000c 09000000 		.4byte	.LASF33
 296 0010 01       		.byte	0x1
 297 0011 02010000 		.4byte	.LASF34
 298 0015 8F000000 		.4byte	.LASF35
 299 0019 00000000 		.4byte	.Ldebug_ranges0+0
 300 001d 00000000 		.4byte	0
 301 0021 00000000 		.4byte	0
 302 0025 00000000 		.4byte	.Ldebug_line0
 303 0029 02       		.uleb128 0x2
 304 002a 04       		.byte	0x4
 305 002b 05       		.byte	0x5
 306 002c 696E7400 		.ascii	"int\000"
 307 0030 03       		.uleb128 0x3
 308 0031 04       		.byte	0x4
 309 0032 07       		.byte	0x7
 310 0033 31010000 		.4byte	.LASF0
 311 0037 03       		.uleb128 0x3
 312 0038 01       		.byte	0x1
 313 0039 06       		.byte	0x6
 314 003a 2D020000 		.4byte	.LASF1
 315 003e 03       		.uleb128 0x3
 316 003f 01       		.byte	0x1
 317 0040 08       		.byte	0x8
 318 0041 5C000000 		.4byte	.LASF2
 319 0045 03       		.uleb128 0x3
 320 0046 02       		.byte	0x2
 321 0047 05       		.byte	0x5
 322 0048 04020000 		.4byte	.LASF3
 323 004c 03       		.uleb128 0x3
 324 004d 02       		.byte	0x2
 325 004e 07       		.byte	0x7
 326 004f 7C000000 		.4byte	.LASF4
 327 0053 03       		.uleb128 0x3
 328 0054 04       		.byte	0x4
 329 0055 05       		.byte	0x5
 330 0056 24020000 		.4byte	.LASF5
 331 005a 04       		.uleb128 0x4
 332 005b 1B020000 		.4byte	.LASF11
 333 005f 02       		.byte	0x2
 334 0060 50       		.byte	0x50
 335 0061 65000000 		.4byte	0x65
 336 0065 03       		.uleb128 0x3
 337 0066 04       		.byte	0x4
 338 0067 07       		.byte	0x7
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 7


 339 0068 6A000000 		.4byte	.LASF6
 340 006c 03       		.uleb128 0x3
 341 006d 08       		.byte	0x8
 342 006e 05       		.byte	0x5
 343 006f BD010000 		.4byte	.LASF7
 344 0073 03       		.uleb128 0x3
 345 0074 08       		.byte	0x8
 346 0075 07       		.byte	0x7
 347 0076 49010000 		.4byte	.LASF8
 348 007a 03       		.uleb128 0x3
 349 007b 04       		.byte	0x4
 350 007c 07       		.byte	0x7
 351 007d 95010000 		.4byte	.LASF9
 352 0081 05       		.uleb128 0x5
 353 0082 04       		.byte	0x4
 354 0083 87000000 		.4byte	0x87
 355 0087 06       		.uleb128 0x6
 356 0088 8C000000 		.4byte	0x8c
 357 008c 03       		.uleb128 0x3
 358 008d 01       		.byte	0x1
 359 008e 08       		.byte	0x8
 360 008f CB010000 		.4byte	.LASF10
 361 0093 04       		.uleb128 0x4
 362 0094 15000000 		.4byte	.LASF12
 363 0098 01       		.byte	0x1
 364 0099 48       		.byte	0x48
 365 009a 9E000000 		.4byte	0x9e
 366 009e 05       		.uleb128 0x5
 367 009f 04       		.byte	0x4
 368 00a0 A4000000 		.4byte	0xa4
 369 00a4 07       		.uleb128 0x7
 370 00a5 01       		.byte	0x1
 371 00a6 08       		.uleb128 0x8
 372 00a7 3001     		.2byte	0x130
 373 00a9 01       		.byte	0x1
 374 00aa 4D       		.byte	0x4d
 375 00ab 9E010000 		.4byte	0x19e
 376 00af 09       		.uleb128 0x9
 377 00b0 34000000 		.4byte	.LASF13
 378 00b4 01       		.byte	0x1
 379 00b5 4E       		.byte	0x4e
 380 00b6 9E010000 		.4byte	0x19e
 381 00ba 02       		.byte	0x2
 382 00bb 23       		.byte	0x23
 383 00bc 00       		.uleb128 0
 384 00bd 09       		.uleb128 0x9
 385 00be 0E020000 		.4byte	.LASF14
 386 00c2 01       		.byte	0x1
 387 00c3 4F       		.byte	0x4f
 388 00c4 93000000 		.4byte	0x93
 389 00c8 02       		.byte	0x2
 390 00c9 23       		.byte	0x23
 391 00ca 04       		.uleb128 0x4
 392 00cb 09       		.uleb128 0x9
 393 00cc 3E010000 		.4byte	.LASF15
 394 00d0 01       		.byte	0x1
 395 00d1 50       		.byte	0x50
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 8


 396 00d2 93000000 		.4byte	0x93
 397 00d6 02       		.byte	0x2
 398 00d7 23       		.byte	0x23
 399 00d8 08       		.uleb128 0x8
 400 00d9 09       		.uleb128 0x9
 401 00da AC010000 		.4byte	.LASF16
 402 00de 01       		.byte	0x1
 403 00df 51       		.byte	0x51
 404 00e0 93000000 		.4byte	0x93
 405 00e4 02       		.byte	0x2
 406 00e5 23       		.byte	0x23
 407 00e6 0C       		.uleb128 0xc
 408 00e7 09       		.uleb128 0x9
 409 00e8 D0010000 		.4byte	.LASF17
 410 00ec 01       		.byte	0x1
 411 00ed 52       		.byte	0x52
 412 00ee 93000000 		.4byte	0x93
 413 00f2 02       		.byte	0x2
 414 00f3 23       		.byte	0x23
 415 00f4 10       		.uleb128 0x10
 416 00f5 09       		.uleb128 0x9
 417 00f6 60010000 		.4byte	.LASF18
 418 00fa 01       		.byte	0x1
 419 00fb 53       		.byte	0x53
 420 00fc 93000000 		.4byte	0x93
 421 0100 02       		.byte	0x2
 422 0101 23       		.byte	0x23
 423 0102 14       		.uleb128 0x14
 424 0103 09       		.uleb128 0x9
 425 0104 79010000 		.4byte	.LASF19
 426 0108 01       		.byte	0x1
 427 0109 54       		.byte	0x54
 428 010a 93000000 		.4byte	0x93
 429 010e 02       		.byte	0x2
 430 010f 23       		.byte	0x23
 431 0110 18       		.uleb128 0x18
 432 0111 09       		.uleb128 0x9
 433 0112 F9000000 		.4byte	.LASF20
 434 0116 01       		.byte	0x1
 435 0117 55       		.byte	0x55
 436 0118 93000000 		.4byte	0x93
 437 011c 02       		.byte	0x2
 438 011d 23       		.byte	0x23
 439 011e 1C       		.uleb128 0x1c
 440 011f 09       		.uleb128 0x9
 441 0120 4D020000 		.4byte	.LASF21
 442 0124 01       		.byte	0x1
 443 0125 56       		.byte	0x56
 444 0126 93000000 		.4byte	0x93
 445 012a 02       		.byte	0x2
 446 012b 23       		.byte	0x23
 447 012c 20       		.uleb128 0x20
 448 012d 09       		.uleb128 0x9
 449 012e 00000000 		.4byte	.LASF22
 450 0132 01       		.byte	0x1
 451 0133 57       		.byte	0x57
 452 0134 93000000 		.4byte	0x93
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 9


 453 0138 02       		.byte	0x2
 454 0139 23       		.byte	0x23
 455 013a 24       		.uleb128 0x24
 456 013b 09       		.uleb128 0x9
 457 013c 70010000 		.4byte	.LASF23
 458 0140 01       		.byte	0x1
 459 0141 58       		.byte	0x58
 460 0142 93000000 		.4byte	0x93
 461 0146 02       		.byte	0x2
 462 0147 23       		.byte	0x23
 463 0148 28       		.uleb128 0x28
 464 0149 09       		.uleb128 0x9
 465 014a 4E000000 		.4byte	.LASF24
 466 014e 01       		.byte	0x1
 467 014f 59       		.byte	0x59
 468 0150 93000000 		.4byte	0x93
 469 0154 02       		.byte	0x2
 470 0155 23       		.byte	0x23
 471 0156 2C       		.uleb128 0x2c
 472 0157 09       		.uleb128 0x9
 473 0158 39020000 		.4byte	.LASF25
 474 015c 01       		.byte	0x1
 475 015d 5A       		.byte	0x5a
 476 015e 93000000 		.4byte	0x93
 477 0162 02       		.byte	0x2
 478 0163 23       		.byte	0x23
 479 0164 30       		.uleb128 0x30
 480 0165 09       		.uleb128 0x9
 481 0166 22000000 		.4byte	.LASF26
 482 016a 01       		.byte	0x1
 483 016b 5B       		.byte	0x5b
 484 016c 93000000 		.4byte	0x93
 485 0170 02       		.byte	0x2
 486 0171 23       		.byte	0x23
 487 0172 34       		.uleb128 0x34
 488 0173 09       		.uleb128 0x9
 489 0174 9E010000 		.4byte	.LASF27
 490 0178 01       		.byte	0x1
 491 0179 5C       		.byte	0x5c
 492 017a 93000000 		.4byte	0x93
 493 017e 02       		.byte	0x2
 494 017f 23       		.byte	0x23
 495 0180 38       		.uleb128 0x38
 496 0181 09       		.uleb128 0x9
 497 0182 3F000000 		.4byte	.LASF28
 498 0186 01       		.byte	0x1
 499 0187 5D       		.byte	0x5d
 500 0188 93000000 		.4byte	0x93
 501 018c 02       		.byte	0x2
 502 018d 23       		.byte	0x23
 503 018e 3C       		.uleb128 0x3c
 504 018f 09       		.uleb128 0x9
 505 0190 FC010000 		.4byte	.LASF29
 506 0194 01       		.byte	0x1
 507 0195 5E       		.byte	0x5e
 508 0196 A4010000 		.4byte	0x1a4
 509 019a 02       		.byte	0x2
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 10


 510 019b 23       		.byte	0x23
 511 019c 40       		.uleb128 0x40
 512 019d 00       		.byte	0
 513 019e 05       		.uleb128 0x5
 514 019f 04       		.byte	0x4
 515 01a0 5A000000 		.4byte	0x5a
 516 01a4 0A       		.uleb128 0xa
 517 01a5 93000000 		.4byte	0x93
 518 01a9 B4010000 		.4byte	0x1b4
 519 01ad 0B       		.uleb128 0xb
 520 01ae 7A000000 		.4byte	0x7a
 521 01b2 3B       		.byte	0x3b
 522 01b3 00       		.byte	0
 523 01b4 04       		.uleb128 0x4
 524 01b5 8B010000 		.4byte	.LASF30
 525 01b9 01       		.byte	0x1
 526 01ba 5F       		.byte	0x5f
 527 01bb A6000000 		.4byte	0xa6
 528 01bf 0C       		.uleb128 0xc
 529 01c0 01       		.byte	0x1
 530 01c1 E7010000 		.4byte	.LASF36
 531 01c5 01       		.byte	0x1
 532 01c6 F2       		.byte	0xf2
 533 01c7 01       		.byte	0x1
 534 01c8 00000000 		.4byte	.LFB7
 535 01cc 10000000 		.4byte	.LFE7
 536 01d0 00000000 		.4byte	.LLST0
 537 01d4 01       		.byte	0x1
 538 01d5 ED010000 		.4byte	0x1ed
 539 01d9 0D       		.uleb128 0xd
 540 01da 08000000 		.4byte	.LVL0
 541 01de 0C020000 		.4byte	0x20c
 542 01e2 0E       		.uleb128 0xe
 543 01e3 01       		.byte	0x1
 544 01e4 50       		.byte	0x50
 545 01e5 05       		.byte	0x5
 546 01e6 03       		.byte	0x3
 547 01e7 00000000 		.4byte	.LC0
 548 01eb 00       		.byte	0
 549 01ec 00       		.byte	0
 550 01ed 0F       		.uleb128 0xf
 551 01ee 56020000 		.4byte	.LASF31
 552 01f2 01       		.byte	0x1
 553 01f3 62       		.byte	0x62
 554 01f4 5A000000 		.4byte	0x5a
 555 01f8 01       		.byte	0x1
 556 01f9 01       		.byte	0x1
 557 01fa 10       		.uleb128 0x10
 558 01fb 2B000000 		.4byte	.LASF32
 559 01ff 01       		.byte	0x1
 560 0200 C5       		.byte	0xc5
 561 0201 B4010000 		.4byte	0x1b4
 562 0205 01       		.byte	0x1
 563 0206 05       		.byte	0x5
 564 0207 03       		.byte	0x3
 565 0208 00000000 		.4byte	_vectors
 566 020c 11       		.uleb128 0x11
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 11


 567 020d 01       		.byte	0x1
 568 020e E1010000 		.4byte	.LASF37
 569 0212 01       		.byte	0x1
 570 0213 F1       		.byte	0xf1
 571 0214 01       		.byte	0x1
 572 0215 01       		.byte	0x1
 573 0216 12       		.uleb128 0x12
 574 0217 81000000 		.4byte	0x81
 575 021b 13       		.uleb128 0x13
 576 021c 00       		.byte	0
 577 021d 00       		.byte	0
 578              		.section	.debug_abbrev,"",%progbits
 579              	.Ldebug_abbrev0:
 580 0000 01       		.uleb128 0x1
 581 0001 11       		.uleb128 0x11
 582 0002 01       		.byte	0x1
 583 0003 25       		.uleb128 0x25
 584 0004 0E       		.uleb128 0xe
 585 0005 13       		.uleb128 0x13
 586 0006 0B       		.uleb128 0xb
 587 0007 03       		.uleb128 0x3
 588 0008 0E       		.uleb128 0xe
 589 0009 1B       		.uleb128 0x1b
 590 000a 0E       		.uleb128 0xe
 591 000b 55       		.uleb128 0x55
 592 000c 06       		.uleb128 0x6
 593 000d 11       		.uleb128 0x11
 594 000e 01       		.uleb128 0x1
 595 000f 52       		.uleb128 0x52
 596 0010 01       		.uleb128 0x1
 597 0011 10       		.uleb128 0x10
 598 0012 06       		.uleb128 0x6
 599 0013 00       		.byte	0
 600 0014 00       		.byte	0
 601 0015 02       		.uleb128 0x2
 602 0016 24       		.uleb128 0x24
 603 0017 00       		.byte	0
 604 0018 0B       		.uleb128 0xb
 605 0019 0B       		.uleb128 0xb
 606 001a 3E       		.uleb128 0x3e
 607 001b 0B       		.uleb128 0xb
 608 001c 03       		.uleb128 0x3
 609 001d 08       		.uleb128 0x8
 610 001e 00       		.byte	0
 611 001f 00       		.byte	0
 612 0020 03       		.uleb128 0x3
 613 0021 24       		.uleb128 0x24
 614 0022 00       		.byte	0
 615 0023 0B       		.uleb128 0xb
 616 0024 0B       		.uleb128 0xb
 617 0025 3E       		.uleb128 0x3e
 618 0026 0B       		.uleb128 0xb
 619 0027 03       		.uleb128 0x3
 620 0028 0E       		.uleb128 0xe
 621 0029 00       		.byte	0
 622 002a 00       		.byte	0
 623 002b 04       		.uleb128 0x4
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 12


 624 002c 16       		.uleb128 0x16
 625 002d 00       		.byte	0
 626 002e 03       		.uleb128 0x3
 627 002f 0E       		.uleb128 0xe
 628 0030 3A       		.uleb128 0x3a
 629 0031 0B       		.uleb128 0xb
 630 0032 3B       		.uleb128 0x3b
 631 0033 0B       		.uleb128 0xb
 632 0034 49       		.uleb128 0x49
 633 0035 13       		.uleb128 0x13
 634 0036 00       		.byte	0
 635 0037 00       		.byte	0
 636 0038 05       		.uleb128 0x5
 637 0039 0F       		.uleb128 0xf
 638 003a 00       		.byte	0
 639 003b 0B       		.uleb128 0xb
 640 003c 0B       		.uleb128 0xb
 641 003d 49       		.uleb128 0x49
 642 003e 13       		.uleb128 0x13
 643 003f 00       		.byte	0
 644 0040 00       		.byte	0
 645 0041 06       		.uleb128 0x6
 646 0042 26       		.uleb128 0x26
 647 0043 00       		.byte	0
 648 0044 49       		.uleb128 0x49
 649 0045 13       		.uleb128 0x13
 650 0046 00       		.byte	0
 651 0047 00       		.byte	0
 652 0048 07       		.uleb128 0x7
 653 0049 15       		.uleb128 0x15
 654 004a 00       		.byte	0
 655 004b 27       		.uleb128 0x27
 656 004c 0C       		.uleb128 0xc
 657 004d 00       		.byte	0
 658 004e 00       		.byte	0
 659 004f 08       		.uleb128 0x8
 660 0050 13       		.uleb128 0x13
 661 0051 01       		.byte	0x1
 662 0052 0B       		.uleb128 0xb
 663 0053 05       		.uleb128 0x5
 664 0054 3A       		.uleb128 0x3a
 665 0055 0B       		.uleb128 0xb
 666 0056 3B       		.uleb128 0x3b
 667 0057 0B       		.uleb128 0xb
 668 0058 01       		.uleb128 0x1
 669 0059 13       		.uleb128 0x13
 670 005a 00       		.byte	0
 671 005b 00       		.byte	0
 672 005c 09       		.uleb128 0x9
 673 005d 0D       		.uleb128 0xd
 674 005e 00       		.byte	0
 675 005f 03       		.uleb128 0x3
 676 0060 0E       		.uleb128 0xe
 677 0061 3A       		.uleb128 0x3a
 678 0062 0B       		.uleb128 0xb
 679 0063 3B       		.uleb128 0x3b
 680 0064 0B       		.uleb128 0xb
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 13


 681 0065 49       		.uleb128 0x49
 682 0066 13       		.uleb128 0x13
 683 0067 38       		.uleb128 0x38
 684 0068 0A       		.uleb128 0xa
 685 0069 00       		.byte	0
 686 006a 00       		.byte	0
 687 006b 0A       		.uleb128 0xa
 688 006c 01       		.uleb128 0x1
 689 006d 01       		.byte	0x1
 690 006e 49       		.uleb128 0x49
 691 006f 13       		.uleb128 0x13
 692 0070 01       		.uleb128 0x1
 693 0071 13       		.uleb128 0x13
 694 0072 00       		.byte	0
 695 0073 00       		.byte	0
 696 0074 0B       		.uleb128 0xb
 697 0075 21       		.uleb128 0x21
 698 0076 00       		.byte	0
 699 0077 49       		.uleb128 0x49
 700 0078 13       		.uleb128 0x13
 701 0079 2F       		.uleb128 0x2f
 702 007a 0B       		.uleb128 0xb
 703 007b 00       		.byte	0
 704 007c 00       		.byte	0
 705 007d 0C       		.uleb128 0xc
 706 007e 2E       		.uleb128 0x2e
 707 007f 01       		.byte	0x1
 708 0080 3F       		.uleb128 0x3f
 709 0081 0C       		.uleb128 0xc
 710 0082 03       		.uleb128 0x3
 711 0083 0E       		.uleb128 0xe
 712 0084 3A       		.uleb128 0x3a
 713 0085 0B       		.uleb128 0xb
 714 0086 3B       		.uleb128 0x3b
 715 0087 0B       		.uleb128 0xb
 716 0088 27       		.uleb128 0x27
 717 0089 0C       		.uleb128 0xc
 718 008a 11       		.uleb128 0x11
 719 008b 01       		.uleb128 0x1
 720 008c 12       		.uleb128 0x12
 721 008d 01       		.uleb128 0x1
 722 008e 40       		.uleb128 0x40
 723 008f 06       		.uleb128 0x6
 724 0090 9742     		.uleb128 0x2117
 725 0092 0C       		.uleb128 0xc
 726 0093 01       		.uleb128 0x1
 727 0094 13       		.uleb128 0x13
 728 0095 00       		.byte	0
 729 0096 00       		.byte	0
 730 0097 0D       		.uleb128 0xd
 731 0098 898201   		.uleb128 0x4109
 732 009b 01       		.byte	0x1
 733 009c 11       		.uleb128 0x11
 734 009d 01       		.uleb128 0x1
 735 009e 31       		.uleb128 0x31
 736 009f 13       		.uleb128 0x13
 737 00a0 00       		.byte	0
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 14


 738 00a1 00       		.byte	0
 739 00a2 0E       		.uleb128 0xe
 740 00a3 8A8201   		.uleb128 0x410a
 741 00a6 00       		.byte	0
 742 00a7 02       		.uleb128 0x2
 743 00a8 0A       		.uleb128 0xa
 744 00a9 9142     		.uleb128 0x2111
 745 00ab 0A       		.uleb128 0xa
 746 00ac 00       		.byte	0
 747 00ad 00       		.byte	0
 748 00ae 0F       		.uleb128 0xf
 749 00af 34       		.uleb128 0x34
 750 00b0 00       		.byte	0
 751 00b1 03       		.uleb128 0x3
 752 00b2 0E       		.uleb128 0xe
 753 00b3 3A       		.uleb128 0x3a
 754 00b4 0B       		.uleb128 0xb
 755 00b5 3B       		.uleb128 0x3b
 756 00b6 0B       		.uleb128 0xb
 757 00b7 49       		.uleb128 0x49
 758 00b8 13       		.uleb128 0x13
 759 00b9 3F       		.uleb128 0x3f
 760 00ba 0C       		.uleb128 0xc
 761 00bb 3C       		.uleb128 0x3c
 762 00bc 0C       		.uleb128 0xc
 763 00bd 00       		.byte	0
 764 00be 00       		.byte	0
 765 00bf 10       		.uleb128 0x10
 766 00c0 34       		.uleb128 0x34
 767 00c1 00       		.byte	0
 768 00c2 03       		.uleb128 0x3
 769 00c3 0E       		.uleb128 0xe
 770 00c4 3A       		.uleb128 0x3a
 771 00c5 0B       		.uleb128 0xb
 772 00c6 3B       		.uleb128 0x3b
 773 00c7 0B       		.uleb128 0xb
 774 00c8 49       		.uleb128 0x49
 775 00c9 13       		.uleb128 0x13
 776 00ca 3F       		.uleb128 0x3f
 777 00cb 0C       		.uleb128 0xc
 778 00cc 02       		.uleb128 0x2
 779 00cd 0A       		.uleb128 0xa
 780 00ce 00       		.byte	0
 781 00cf 00       		.byte	0
 782 00d0 11       		.uleb128 0x11
 783 00d1 2E       		.uleb128 0x2e
 784 00d2 01       		.byte	0x1
 785 00d3 3F       		.uleb128 0x3f
 786 00d4 0C       		.uleb128 0xc
 787 00d5 03       		.uleb128 0x3
 788 00d6 0E       		.uleb128 0xe
 789 00d7 3A       		.uleb128 0x3a
 790 00d8 0B       		.uleb128 0xb
 791 00d9 3B       		.uleb128 0x3b
 792 00da 0B       		.uleb128 0xb
 793 00db 27       		.uleb128 0x27
 794 00dc 0C       		.uleb128 0xc
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 15


 795 00dd 3C       		.uleb128 0x3c
 796 00de 0C       		.uleb128 0xc
 797 00df 00       		.byte	0
 798 00e0 00       		.byte	0
 799 00e1 12       		.uleb128 0x12
 800 00e2 05       		.uleb128 0x5
 801 00e3 00       		.byte	0
 802 00e4 49       		.uleb128 0x49
 803 00e5 13       		.uleb128 0x13
 804 00e6 00       		.byte	0
 805 00e7 00       		.byte	0
 806 00e8 13       		.uleb128 0x13
 807 00e9 18       		.uleb128 0x18
 808 00ea 00       		.byte	0
 809 00eb 00       		.byte	0
 810 00ec 00       		.byte	0
 811 00ed 00       		.byte	0
 812              		.section	.debug_loc,"",%progbits
 813              	.Ldebug_loc0:
 814              	.LLST0:
 815 0000 00000000 		.4byte	.LFB7
 816 0004 02000000 		.4byte	.LCFI0
 817 0008 0200     		.2byte	0x2
 818 000a 7D       		.byte	0x7d
 819 000b 00       		.sleb128 0
 820 000c 02000000 		.4byte	.LCFI0
 821 0010 10000000 		.4byte	.LFE7
 822 0014 0200     		.2byte	0x2
 823 0016 7D       		.byte	0x7d
 824 0017 08       		.sleb128 8
 825 0018 00000000 		.4byte	0
 826 001c 00000000 		.4byte	0
 827              		.section	.debug_aranges,"",%progbits
 828 0000 1C000000 		.4byte	0x1c
 829 0004 0200     		.2byte	0x2
 830 0006 00000000 		.4byte	.Ldebug_info0
 831 000a 04       		.byte	0x4
 832 000b 00       		.byte	0
 833 000c 0000     		.2byte	0
 834 000e 0000     		.2byte	0
 835 0010 00000000 		.4byte	.LFB7
 836 0014 10000000 		.4byte	.LFE7-.LFB7
 837 0018 00000000 		.4byte	0
 838 001c 00000000 		.4byte	0
 839              		.section	.debug_ranges,"",%progbits
 840              	.Ldebug_ranges0:
 841 0000 00000000 		.4byte	.LFB7
 842 0004 10000000 		.4byte	.LFE7
 843 0008 00000000 		.4byte	0
 844 000c 00000000 		.4byte	0
 845              		.section	.debug_line,"",%progbits
 846              	.Ldebug_line0:
 847 0000 A4000000 		.section	.debug_str,"MS",%progbits,1
 847      02008D00 
 847      00000201 
 847      FB0E0D00 
 847      01010101 
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 16


 848              	.LASF22:
 849 0000 76656374 		.ascii	"vector24\000"
 849      6F723234 
 849      00
 850              	.LASF33:
 851 0009 474E5520 		.ascii	"GNU C 4.7.2\000"
 851      4320342E 
 851      372E3200 
 852              	.LASF12:
 853 0015 6972715F 		.ascii	"irq_vector_t\000"
 853      76656374 
 853      6F725F74 
 853      00
 854              	.LASF26:
 855 0022 76656374 		.ascii	"vector34\000"
 855      6F723334 
 855      00
 856              	.LASF32:
 857 002b 5F766563 		.ascii	"_vectors\000"
 857      746F7273 
 857      00
 858              	.LASF13:
 859 0034 696E6974 		.ascii	"init_stack\000"
 859      5F737461 
 859      636B00
 860              	.LASF28:
 861 003f 73797374 		.ascii	"systick_vector\000"
 861      69636B5F 
 861      76656374 
 861      6F7200
 862              	.LASF24:
 863 004e 73766361 		.ascii	"svcall_vector\000"
 863      6C6C5F76 
 863      6563746F 
 863      7200
 864              	.LASF2:
 865 005c 756E7369 		.ascii	"unsigned char\000"
 865      676E6564 
 865      20636861 
 865      7200
 866              	.LASF6:
 867 006a 6C6F6E67 		.ascii	"long unsigned int\000"
 867      20756E73 
 867      69676E65 
 867      6420696E 
 867      7400
 868              	.LASF4:
 869 007c 73686F72 		.ascii	"short unsigned int\000"
 869      7420756E 
 869      7369676E 
 869      65642069 
 869      6E7400
 870              	.LASF35:
 871 008f 433A5C44 		.ascii	"C:\\Documents and Settings\\maria\\Documents\\uni\\"
 871      6F63756D 
 871      656E7473 
 871      20616E64 
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 17


 871      20536574 
 872 00bd 74657263 		.ascii	"tercer\\Q2\\PAET\\SmartCities\\Project\\application"
 872      65725C51 
 872      325C5041 
 872      45545C53 
 872      6D617274 
 873 00eb 735C736D 		.ascii	"s\\smartcities\000"
 873      61727463 
 873      69746965 
 873      7300
 874              	.LASF20:
 875 00f9 76656374 		.ascii	"vector1c\000"
 875      6F723163 
 875      00
 876              	.LASF34:
 877 0102 2E2E2F2E 		.ascii	"../..//os/ports/GCC/ARMCMx/STM32F1xx/vectors.c\000"
 877      2E2F2F6F 
 877      732F706F 
 877      7274732F 
 877      4743432F 
 878              	.LASF0:
 879 0131 756E7369 		.ascii	"unsigned int\000"
 879      676E6564 
 879      20696E74 
 879      00
 880              	.LASF15:
 881 013e 6E6D695F 		.ascii	"nmi_vector\000"
 881      76656374 
 881      6F7200
 882              	.LASF8:
 883 0149 6C6F6E67 		.ascii	"long long unsigned int\000"
 883      206C6F6E 
 883      6720756E 
 883      7369676E 
 883      65642069 
 884              	.LASF18:
 885 0160 62757366 		.ascii	"busfault_vector\000"
 885      61756C74 
 885      5F766563 
 885      746F7200 
 886              	.LASF23:
 887 0170 76656374 		.ascii	"vector28\000"
 887      6F723238 
 887      00
 888              	.LASF19:
 889 0179 75736167 		.ascii	"usagefault_vector\000"
 889      65666175 
 889      6C745F76 
 889      6563746F 
 889      7200
 890              	.LASF30:
 891 018b 76656374 		.ascii	"vectors_t\000"
 891      6F72735F 
 891      7400
 892              	.LASF9:
 893 0195 73697A65 		.ascii	"sizetype\000"
 893      74797065 
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 18


 893      00
 894              	.LASF27:
 895 019e 70656E64 		.ascii	"pendsv_vector\000"
 895      73765F76 
 895      6563746F 
 895      7200
 896              	.LASF16:
 897 01ac 68617264 		.ascii	"hardfault_vector\000"
 897      6661756C 
 897      745F7665 
 897      63746F72 
 897      00
 898              	.LASF7:
 899 01bd 6C6F6E67 		.ascii	"long long int\000"
 899      206C6F6E 
 899      6720696E 
 899      7400
 900              	.LASF10:
 901 01cb 63686172 		.ascii	"char\000"
 901      00
 902              	.LASF17:
 903 01d0 6D656D6D 		.ascii	"memmanage_vector\000"
 903      616E6167 
 903      655F7665 
 903      63746F72 
 903      00
 904              	.LASF37:
 905 01e1 7072696E 		.ascii	"print\000"
 905      7400
 906              	.LASF36:
 907 01e7 5F756E68 		.ascii	"_unhandled_exception\000"
 907      616E646C 
 907      65645F65 
 907      78636570 
 907      74696F6E 
 908              	.LASF29:
 909 01fc 76656374 		.ascii	"vectors\000"
 909      6F727300 
 910              	.LASF3:
 911 0204 73686F72 		.ascii	"short int\000"
 911      7420696E 
 911      7400
 912              	.LASF14:
 913 020e 72657365 		.ascii	"reset_vector\000"
 913      745F7665 
 913      63746F72 
 913      00
 914              	.LASF11:
 915 021b 75696E74 		.ascii	"uint32_t\000"
 915      33325F74 
 915      00
 916              	.LASF5:
 917 0224 6C6F6E67 		.ascii	"long int\000"
 917      20696E74 
 917      00
 918              	.LASF1:
 919 022d 7369676E 		.ascii	"signed char\000"
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 19


 919      65642063 
 919      68617200 
 920              	.LASF25:
 921 0239 64656275 		.ascii	"debugmonitor_vector\000"
 921      676D6F6E 
 921      69746F72 
 921      5F766563 
 921      746F7200 
 922              	.LASF21:
 923 024d 76656374 		.ascii	"vector20\000"
 923      6F723230 
 923      00
 924              	.LASF31:
 925 0256 5F5F6D61 		.ascii	"__main_stack_end__\000"
 925      696E5F73 
 925      7461636B 
 925      5F656E64 
 925      5F5F00
 926              		.ident	"GCC: (GNU) 4.7.2"
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 20


DEFINED SYMBOLS
                            *ABS*:00000000 vectors.c
C:\cygwin64\tmp\ccPE06qk.s:19     .text._unhandled_exception:00000000 $t
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 _unhandled_exception
C:\cygwin64\tmp\ccPE06qk.s:47     .text._unhandled_exception:0000000c $d
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 HardFaultVector
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 MemManageVector
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 BusFaultVector
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 UsageFaultVector
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector1C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector20
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector24
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector28
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 SVCallVector
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 DebugMonitorVector
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector34
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 PendSVVector
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 SysTickVector
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector40
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector44
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector48
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector4C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector50
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector54
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector58
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector5C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector60
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector64
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector68
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector6C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector70
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector74
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector78
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector7C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector80
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector84
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector88
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector8C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector90
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector94
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector98
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector9C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorA0
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorA4
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorA8
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorAC
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorB0
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorB4
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorB8
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorBC
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorC0
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorC4
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorC8
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorCC
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorD0
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorD4
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorD8
ARM GAS  C:\cygwin64\tmp\ccPE06qk.s 			page 21


C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorDC
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorE0
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorE4
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorE8
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorEC
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorF0
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorF4
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorF8
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 VectorFC
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector100
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector104
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector108
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector10C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector110
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector114
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector118
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector11C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector120
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector124
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector128
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 Vector12C
C:\cygwin64\tmp\ccPE06qk.s:25     .text._unhandled_exception:00000000 NMIVector
C:\cygwin64\tmp\ccPE06qk.s:208    vectors:00000000 _vectors
C:\cygwin64\tmp\ccPE06qk.s:201    .rodata.str1.4:00000000 $d
C:\cygwin64\tmp\ccPE06qk.s:205    vectors:00000000 $d
                     .debug_frame:00000010 $d

UNDEFINED SYMBOLS
print
__main_stack_end__
ResetHandler