MV1_Touch_test.lst 164 KB
Newer Older
王佳伟's avatar
王佳伟 committed
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 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602
                                                                      Page 1
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
Command Line: C:\ghs\comp_rh850\ease850.exe -w -elf -b0 -I..\source\Driver\Clock -I..\source\Driver\RH850F1KM_S1 -I..\source\Driver\Timer -I..\source\Driver\TimerB -I..\source\Driver\Analog_Signals -I..\source\Driver\CAN -I..\source\Driver\GPIO -I..\source\System -I..\source\Appliciation -I..\source\FCL -I..\source\EEL -I..\source\eel_user -I..\source\fdl_user -I..\source\FDL -I..\source\EEL\lib -I..\source\FDL\lib -IC:\ghs\comp_rh850\lib\rh850 -cg_underscore -cpu=rh850g3kh -no_v850_simd -nomacro -patch_dbo=Z:\D\project\FX12\װ\FX12_test\ghs\obj\MV1_Touch_test.dbo -source=MV1_Touch_test.c -o .\obj\gh_00007fc1.o -list=.\list\MV1_Touch_test.lst C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si 
Original File: C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
Source File: MV1_Touch_test.c
Directory: Z:\D\project\FX12\װ\FX12_test\ghs
Host OS: Windows
EASE: Copyright (C) 1983-2019 Green Hills Software.  All Rights Reserved.
Release: Compiler v2019.5.5
Build Directory: [Directory] messi:/home/messi2/build_2019_5_bto/2019-09-30.1900-2019_5_bto/win64-cross-linux86-comp
Revision: [VCInfo] http://toolsvc/branches/release-branch-2019-5-bto/src@658753 (built by build)
Revision Date: Tue Oct 01 10:26:24 2019

Release Date: Tue Oct 01 11:51:34 2019

                           1 --Driver Command: ccv850 -c -MD -I..\source\Driver\Clock
                           2 --		-I..\source\Driver\RH850F1KM_S1 -I..\source\Driver\Timer
                           3 --		-I..\source\Driver\TimerB -I..\source\Driver\Analog_Signals
                           4 --		-I..\source\Driver\CAN -I..\source\Driver\GPIO -I..\source\System
                           5 --		-I..\source\Appliciation -I..\source\FCL -I..\source\EEL
                           6 --		-I..\source\eel_user -I..\source\fdl_user -I..\source\FDL
                           7 --		-I..\source\EEL\lib -I..\source\FDL\lib -object_dir=.\obj
                           8 --		-preprocess_assembly_files -list -list_dir=./list -bsp generic
                           9 --		-dwarf2 -D__GHS__ -cpu=rh850g3kh -fhard -DPlatform_RH850
                          10 --		-DPlatform_32Bit -nothreshold -g -passsource --diag_suppress 1
                          11 --		--diag_suppress 9 --diag_suppress 177 --diag_suppress 550
                          12 --		--diag_suppress 188 -registermode=32 -data_bus_width=32 -Onone
                          13 --		-japanese_automotive_c -filetype.c
                          14 --		..\source\touch_screen\MV1_Touch_test\MV1_Touch_test.c -o
                          15 --		.\obj\MV1_Touch_test.o
                          16 --Source File:   ..\source\touch_screen\MV1_Touch_test\MV1_Touch_test.c
                          17 --Directory:     Z:\D\project\FX12\װ\FX12_test\ghs
                          18 --Compile Date:  Thu Aug 06 17:04:25 2020
                          19 --Host OS:       Win64
                          20 --Version:       C-RH850 2019.5.5 RELEASE VERSION
                          21 --Release:       Compiler v2019.5.5
                          22 --Revision Date: Tue Oct 01 10:27:05 2019
                          23 --Release Date:  Tue Oct 01 11:51:35 2019
                          24 -- ecom  -g -w
                          25 
                          26 --1: /*
                          27 --2:  * MV1_Touch_test.c
                          28 --3:  *
                          29 --4:  *  Created on: 2023年3月27日
                          30 --5:  */
                          31 --7: #include "Analog_Signals.h"
                          32 --8: #include "TFT_LCD.h"
                          33 --9: #include "../BSP/BSP.h"
                          34 --10: #include "../RH850_OTA/RH850_OTA.h"
                          35 --11: #include "../Display_Info/Display_Info.h"
                          36 --13: #define SAMPLING_COUNT      100
                          37 --14: #define PASS                0
                          38 --15: #define NG                  1
                          39 --17: typedef struct
                          40 --18: {
                          41 --19:     uint32_t u32TestCount;
                          42 --20:     uint32_t u32KeySampling[14];
                          43 --21:     uint8_t u8KeyResult[14];
                          44 --22:     uint8_t u8AllResult;
                          45 --23: } Test_Buffer;
                          46 --25: uint32_t u32OhmLimit[14][2] = //左侧为最低阻值,右侧为最高阻值
                          47 --26: {
                          48 --27:     {0U     , 65535U    },
                          49 --28:     {0U     , 65535U    },
                          50 --29:     {0U     , 65535U    },

                                                                      Page 2
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                          51 --30:     {0U     , 65535U    },
                          52 --31:     {0U     , 65535U    },
                          53 --32:     {0U     , 65535U    },
                          54 --33:     {0U     , 65535U    },
                          55 --34:     {0U     , 65535U    },
                          56 --35:     {0U     , 65535U    },
                          57 --36:     {0U     , 65535U    },
                          58 --37:     {0U     , 65535U    },
                          59 --38:     {0U     , 65535U    },
                          60 --39:     {0U     , 65535U    },
                          61 --40:     {0U     , 65535U    }
                          62 --41: };
                          63 --46: void Total_Display(uint32_t u32in)
                          64 	.text
                          65 ..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0::
                          66 	.align	2
                          67 	.align	2
                          68 ..gh.f.a.2.e.0:
                          69 	.type	..gh.f.a.2.e.0,@object
                          70 	.size	..gh.f.a.2.e.0,0
                          71 	.global	_Total_Display
                          72 _Total_Display:
                          73 .LDW01:
00000000 541a             74 	add	-12,sp
00000002 63ff0900         75 	st.w	lp,8[sp]
00000006 63e70500         76 	st.w	r28,4[sp]
0000000a 63ef0100         77 	st.w	r29,0[sp]
0000000e 06e0             78 	mov	r6,r28
                          79 --	    .bf
                          80 .LDW11:
                          81 --47: {
                          82 --48:     uint8_t u8x = 59;
00000010 20ee3b00         83 	movea	59,zero,r29
                          84 --49:     uint32_t u32buff;
                          85 --51:     u32buff = u32in / 1000000000U;
00000014 220600ca9a3b     86 	mov	1000000000,r2
0000001a 1c08             87 	mov	r28,r1
0000001c e20ffe02         88 	divqu	r2,r1,zero
                          89 --52:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//十亿位
                          90 --line52
                          91 ..lin.b8d69f15..84a6d4dd.0_1::
                          92 .LDWlin1:
00000020 1d30             93 	mov	r29,r6
00000022 c20a             94 	shl	2,r1
00000024 220600000000*    95 	mov	_D,r2
0000002a 01f0             96 	mov	r1,ep
0000002c c2f1             97 	add	r2,ep
0000002e 0045             98 	sld.w	0[ep],r8
00000030 203e9000         99 	movea	144,zero,r7
                         100 	jarl	_TFT_LCD_Draw_Bmp,lp
                         100 <EXPANSION BEGIN>
                         100 jarl22 _TFT_LCD_Draw_Bmp , lp 
00000034 80ff0000*       100 <EXPANSION END>
                         101 --54:     u8x += 18;
                         102 --line54
                         103 ..lin.b8d69f15..84a6d4dd.0_2::
                         104 .LDWlin2:
00000038 1dee1200        105 	addi	18,r29,r29
0000003c 9d00            106 	zxb	r29
                         107 --55:     u32buff = (u32in % 1000000000U) / 100000000U;
0000003e 1c08            108 	mov	r28,r1

                                                                      Page 3
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000040 220600ca9a3b    109 	mov	1000000000,r2
00000046 e20ffe0a        110 	divqu	r2,r1,r1
0000004a 220600e1f505    111 	mov	100000000,r2
00000050 e20ffe02        112 	divqu	r2,r1,zero
                         113 --56:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//亿位
                         114 --line56
                         115 ..lin.b8d69f15..84a6d4dd.0_3::
                         116 .LDWlin3:
00000054 1d30            117 	mov	r29,r6
00000056 c20a            118 	shl	2,r1
00000058 220600000000*   119 	mov	_D,r2
0000005e 01f0            120 	mov	r1,ep
00000060 c2f1            121 	add	r2,ep
00000062 0045            122 	sld.w	0[ep],r8
00000064 203e9000        123 	movea	144,zero,r7
                         124 	jarl	_TFT_LCD_Draw_Bmp,lp
                         124 <EXPANSION BEGIN>
                         124 jarl22 _TFT_LCD_Draw_Bmp , lp 
00000068 80ff0000*       124 <EXPANSION END>
                         125 --58:     u8x += 18;
                         126 --line58
                         127 ..lin.b8d69f15..84a6d4dd.0_4::
                         128 .LDWlin4:
0000006c 1dee1200        129 	addi	18,r29,r29
00000070 9d00            130 	zxb	r29
                         131 --59:     u32buff = (u32in % 100000000U) / 10000000U;
00000072 1c08            132 	mov	r28,r1
00000074 220600e1f505    133 	mov	100000000,r2
0000007a e20ffe0a        134 	divqu	r2,r1,r1
0000007e 220680969800    135 	mov	10000000,r2
00000084 e20ffe02        136 	divqu	r2,r1,zero
                         137 --60:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//千万位
                         138 --line60
                         139 ..lin.b8d69f15..84a6d4dd.0_5::
                         140 .LDWlin5:
00000088 1d30            141 	mov	r29,r6
0000008a c20a            142 	shl	2,r1
0000008c 220600000000*   143 	mov	_D,r2
00000092 01f0            144 	mov	r1,ep
00000094 c2f1            145 	add	r2,ep
00000096 0045            146 	sld.w	0[ep],r8
00000098 203e9000        147 	movea	144,zero,r7
                         148 	jarl	_TFT_LCD_Draw_Bmp,lp
                         148 <EXPANSION BEGIN>
                         148 jarl22 _TFT_LCD_Draw_Bmp , lp 
0000009c 80ff0000*       148 <EXPANSION END>
                         149 --62:     u8x += 18;
                         150 --line62
                         151 ..lin.b8d69f15..84a6d4dd.0_6::
                         152 .LDWlin6:
000000a0 1dee1200        153 	addi	18,r29,r29
000000a4 9d00            154 	zxb	r29
                         155 --63:     u32buff = (u32in % 10000000U) / 1000000U;
000000a6 1c08            156 	mov	r28,r1
000000a8 220680969800    157 	mov	10000000,r2
000000ae e20ffe0a        158 	divqu	r2,r1,r1
000000b2 220640420f00    159 	mov	1000000,r2
000000b8 e20ffe02        160 	divqu	r2,r1,zero
                         161 --64:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//百万位
                         162 --line64
                         163 ..lin.b8d69f15..84a6d4dd.0_7::

                                                                      Page 4
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                         164 .LDWlin7:
000000bc 1d30            165 	mov	r29,r6
000000be c20a            166 	shl	2,r1
000000c0 220600000000*   167 	mov	_D,r2
000000c6 01f0            168 	mov	r1,ep
000000c8 c2f1            169 	add	r2,ep
000000ca 0045            170 	sld.w	0[ep],r8
000000cc 203e9000        171 	movea	144,zero,r7
                         172 	jarl	_TFT_LCD_Draw_Bmp,lp
                         172 <EXPANSION BEGIN>
                         172 jarl22 _TFT_LCD_Draw_Bmp , lp 
000000d0 80ff0000*       172 <EXPANSION END>
                         173 --65:     
                         174 --66:     u8x += 18;
                         175 --line66
                         176 ..lin.b8d69f15..84a6d4dd.0_8::
                         177 .LDWlin8:
000000d4 1dee1200        178 	addi	18,r29,r29
000000d8 9d00            179 	zxb	r29
                         180 --67:     u32buff = (u32in % 1000000U) / 100000U;
000000da 1c08            181 	mov	r28,r1
000000dc 220640420f00    182 	mov	1000000,r2
000000e2 e20ffe0a        183 	divqu	r2,r1,r1
000000e6 2206a0860100    184 	mov	100000,r2
000000ec e20ffe02        185 	divqu	r2,r1,zero
                         186 --68:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//十万位
                         187 --line68
                         188 ..lin.b8d69f15..84a6d4dd.0_9::
                         189 .LDWlin9:
000000f0 1d30            190 	mov	r29,r6
000000f2 c20a            191 	shl	2,r1
000000f4 220600000000*   192 	mov	_D,r2
000000fa 01f0            193 	mov	r1,ep
000000fc c2f1            194 	add	r2,ep
000000fe 0045            195 	sld.w	0[ep],r8
00000100 203e9000        196 	movea	144,zero,r7
                         197 	jarl	_TFT_LCD_Draw_Bmp,lp
                         197 <EXPANSION BEGIN>
                         197 jarl22 _TFT_LCD_Draw_Bmp , lp 
00000104 80ff0000*       197 <EXPANSION END>
                         198 --70:     u8x += 18;
                         199 --line70
                         200 ..lin.b8d69f15..84a6d4dd.0_10::
                         201 .LDWlin10:
00000108 1dee1200        202 	addi	18,r29,r29
0000010c 9d00            203 	zxb	r29
                         204 --71:     u32buff = (u32in % 100000U) / 10000U;
0000010e 1c08            205 	mov	r28,r1
00000110 2206a0860100    206 	mov	100000,r2
00000116 e20ffe0a        207 	divqu	r2,r1,r1
0000011a 20161027        208 	movea	10000,zero,r2
0000011e e20ffe02        209 	divqu	r2,r1,zero
                         210 --72:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//万位
                         211 --line72
                         212 ..lin.b8d69f15..84a6d4dd.0_11::
                         213 .LDWlin11:
00000122 1d30            214 	mov	r29,r6
00000124 c20a            215 	shl	2,r1
00000126 220600000000*   216 	mov	_D,r2
0000012c 01f0            217 	mov	r1,ep
0000012e c2f1            218 	add	r2,ep

                                                                      Page 5
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000130 0045            219 	sld.w	0[ep],r8
00000132 203e9000        220 	movea	144,zero,r7
                         221 	jarl	_TFT_LCD_Draw_Bmp,lp
                         221 <EXPANSION BEGIN>
                         221 jarl22 _TFT_LCD_Draw_Bmp , lp 
00000136 80ff0000*       221 <EXPANSION END>
                         222 --74:     u8x += 18;
                         223 --line74
                         224 ..lin.b8d69f15..84a6d4dd.0_12::
                         225 .LDWlin12:
0000013a 1dee1200        226 	addi	18,r29,r29
0000013e 9d00            227 	zxb	r29
                         228 --75:     u32buff = (u32in % 10000U) / 1000U;
00000140 1c08            229 	mov	r28,r1
00000142 20161027        230 	movea	10000,zero,r2
00000146 e20ffe0a        231 	divqu	r2,r1,r1
0000014a 2016e803        232 	movea	1000,zero,r2
0000014e e20ffe02        233 	divqu	r2,r1,zero
                         234 --76:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//千位
00000152 1d30            235 	mov	r29,r6
00000154 c20a            236 	shl	2,r1
00000156 220600000000*   237 	mov	_D,r2
0000015c 01f0            238 	mov	r1,ep
0000015e c2f1            239 	add	r2,ep
00000160 0045            240 	sld.w	0[ep],r8
00000162 203e9000        241 	movea	144,zero,r7
                         242 	jarl	_TFT_LCD_Draw_Bmp,lp
                         242 <EXPANSION BEGIN>
                         242 jarl22 _TFT_LCD_Draw_Bmp , lp 
00000166 80ff0000*       242 <EXPANSION END>
                         243 --78:     u8x += 18;
                         244 --line78
                         245 ..lin.b8d69f15..84a6d4dd.0_13::
                         246 .LDWlin13:
0000016a 1dee1200        247 	addi	18,r29,r29
0000016e 9d00            248 	zxb	r29
                         249 --79:     u32buff = (u32in % 1000U) / 100U;
00000170 1c08            250 	mov	r28,r1
00000172 2016e803        251 	movea	1000,zero,r2
00000176 e20ffe0a        252 	divqu	r2,r1,r1
0000017a 20166400        253 	movea	100,zero,r2
0000017e e20ffe02        254 	divqu	r2,r1,zero
                         255 --80:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//百位
00000182 1d30            256 	mov	r29,r6
00000184 c20a            257 	shl	2,r1
00000186 220600000000*   258 	mov	_D,r2
0000018c 01f0            259 	mov	r1,ep
0000018e c2f1            260 	add	r2,ep
00000190 0045            261 	sld.w	0[ep],r8
00000192 203e9000        262 	movea	144,zero,r7
                         263 	jarl	_TFT_LCD_Draw_Bmp,lp
                         263 <EXPANSION BEGIN>
                         263 jarl22 _TFT_LCD_Draw_Bmp , lp 
00000196 80ff0000*       263 <EXPANSION END>
                         264 --82:     u8x += 18;
                         265 --line82
                         266 ..lin.b8d69f15..84a6d4dd.0_14::
                         267 .LDWlin14:
0000019a 1dee1200        268 	addi	18,r29,r29
0000019e 9d00            269 	zxb	r29
                         270 --83:     u32buff = (u32in % 100U) / 10U;

                                                                      Page 6
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000001a0 1c08            271 	mov	r28,r1
000001a2 20166400        272 	movea	100,zero,r2
000001a6 e20ffe0a        273 	divqu	r2,r1,r1
000001aa 0a12            274 	mov	10,r2
000001ac e20ffe02        275 	divqu	r2,r1,zero
                         276 --84:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//十位
000001b0 1d30            277 	mov	r29,r6
000001b2 c20a            278 	shl	2,r1
000001b4 220600000000*   279 	mov	_D,r2
000001ba 01f0            280 	mov	r1,ep
000001bc c2f1            281 	add	r2,ep
000001be 0045            282 	sld.w	0[ep],r8
000001c0 203e9000        283 	movea	144,zero,r7
                         284 	jarl	_TFT_LCD_Draw_Bmp,lp
                         284 <EXPANSION BEGIN>
                         284 jarl22 _TFT_LCD_Draw_Bmp , lp 
000001c4 80ff0000*       284 <EXPANSION END>
                         285 --86:     u8x += 18;
                         286 --line86
                         287 ..lin.b8d69f15..84a6d4dd.0_15::
                         288 .LDWlin15:
000001c8 1dee1200        289 	addi	18,r29,r29
000001cc 9d00            290 	zxb	r29
                         291 --87:     u32buff = u32in % 10U;
000001ce 1c08            292 	mov	r28,r1
000001d0 0a12            293 	mov	10,r2
000001d2 e20ffe0a        294 	divqu	r2,r1,r1
                         295 --88:     TFT_LCD_Draw_Bmp( u8x, 144, ( uint8_t * )D[u32buff]);//个位
000001d6 1d30            296 	mov	r29,r6
000001d8 c20a            297 	shl	2,r1
000001da 220600000000*   298 	mov	_D,r2
000001e0 01f0            299 	mov	r1,ep
000001e2 c2f1            300 	add	r2,ep
000001e4 0045            301 	sld.w	0[ep],r8
000001e6 203e9000        302 	movea	144,zero,r7
                         303 	jarl	_TFT_LCD_Draw_Bmp,lp
                         303 <EXPANSION BEGIN>
                         303 jarl22 _TFT_LCD_Draw_Bmp , lp 
000001ea 80ff0000*       303 <EXPANSION END>
                         304 --89: }
                         305 --	    .ef
                         306 .LDW21:
                         307 --line89
                         308 ..lin.b8d69f15..84a6d4dd.0_16::
                         309 .LDWlin16:
000001ee 23ff0900        310 	ld.w	8[sp],lp
000001f2 23ef0100        311 	ld.w	0[sp],r29
000001f6 23e70500        312 	ld.w	4[sp],r28
000001fa 4c1a            313 	add	12,sp
                         314 	.jumptype return
000001fc 7f00            315 	jmp	[lp]
                         316 ..lin.b8d69f15..84a6d4dd.0_17::
                         317 .LDWlin17:
                         318 	.global	___ghs_eofn_Total_Display
                         319 ___ghs_eofn_Total_Display:
                         320 	.type	_Total_Display,@function
                         321 	.size	_Total_Display,.-_Total_Display
                         322 	.align	2
                         323 --_u8x	r29	local
                         324 --_u32buff	r1	local
                         325 

                                                                      Page 7
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                         326 --_u32in	r28	param
                         327 
                         328 	.data
                         329 	.text
                         330 
                         331 
                         332 --92: void Key_All_Display(Test_Buffer *Buffer)
                         333 	.align	2
                         334 	.align	2
                         335 	.align	2
                         336 ..gh.f.a.2.e.1:
                         337 	.type	..gh.f.a.2.e.1,@object
                         338 	.size	..gh.f.a.2.e.1,0
                         339 	.global	_Key_All_Display
                         340 _Key_All_Display:
                         341 .LDW31:
                         342 --	    .bf
                         343 .LDW41:
                         344 --93: {
                         345 --94:     uint8_t u8i;
                         346 --95:     uint16_t u16y = 63U;
000001fe 20163f00        347 	movea	63,zero,r2
                         348 --97:     for(u8i = 0; u8i < ADC_SIGNAL_CH_NUMBER ; u8i++)
00000202 000a            349 	mov	0,r1
00000204 e505*           350 	br	.L40
                         351 .L39:
                         352 --98:     {
                         353 --99:         //(u16y,Buffer->u32KeySampling[u8i],Buffer->u8KeyResult[u8i]);
                         354 --100:         u16y += 16;
                         355 --line100
                         356 ..lin.b8d69f15..fbb693fa.0_18::
                         357 .LDWlin18:
00000206 02161000        358 	addi	16,r2,r2
0000020a c200            359 	zxh	r2
0000020c 410a            360 	add	1,r1
0000020e 8100            361 	zxb	r1
                         362 .L40:
00000210 6e0a            363 	cmp	14,r1
00000212 a1fd*           364 	bl	.L39
                         365 --101:     }
                         366 --102: }
                         367 --	    .ef
                         368 .LDW51:
                         369 --line102
                         370 ..lin.b8d69f15..fbb693fa.0_19::
                         371 .LDWlin19:
                         372 	.jumptype return
00000214 7f00            373 	jmp	[lp]
                         374 ..lin.b8d69f15..fbb693fa.0_20::
                         375 .LDWlin20:
                         376 	.global	___ghs_eofn_Key_All_Display
                         377 ___ghs_eofn_Key_All_Display:
                         378 	.type	_Key_All_Display,@function
                         379 	.size	_Key_All_Display,.-_Key_All_Display
                         380 	.align	2
                         381 --_u8i	r1	local
                         382 --_u16y	r2	local
                         383 
                         384 --_Buffer	r6	param
                         385 
                         386 	.data

                                                                      Page 8
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                         387 	.text
                         388 
                         389 
                         390 --104: void Display_Init(uint32_t u32TestCount)
                         391 	.align	2
                         392 	.align	2
                         393 	.align	2
                         394 ..gh.f.a.2.e.2:
                         395 	.type	..gh.f.a.2.e.2,@object
                         396 	.size	..gh.f.a.2.e.2,0
                         397 	.global	_Display_Init
                         398 _Display_Init:
                         399 .LDW61:
00000216 581a            400 	add	-8,sp
00000218 63ff0500        401 	st.w	lp,4[sp]
0000021c 63ef0100        402 	st.w	r29,0[sp]
00000220 06e8            403 	mov	r6,r29
                         404 --	    .bf
                         405 .LDW71:
                         406 --105: {
                         407 --106:     // TFT_LCD_Draw_Bmp(0, 159, ( uint8_t * )&gImage_BG_1X9_Y9[0]);
                         408 --107:     // TFT_LCD_Draw_Bmp(0, 0, ( uint8_t * )&gImage_BG_0X9_Y9[0]);
                         409 --108:     TFT_LCD_Draw_Bmp(0, 0, ( uint8_t * )&gImage_BG_test[0]);
00000222 0032            410 	mov	0,r6
00000224 003a            411 	mov	0,r7
00000226 280600000000*   412 	mov	_gImage_BG_test,r8
                         413 	jarl	_TFT_LCD_Draw_Bmp,lp
                         413 <EXPANSION BEGIN>
                         413 jarl22 _TFT_LCD_Draw_Bmp , lp 
0000022c 80ff0000*       413 <EXPANSION END>
                         414 --109:     Total_Display(u32TestCount);
                         415 --line109
                         416 ..lin.b8d69f15..53d3ad4d.0_21::
                         417 .LDWlin21:
00000230 1d30            418 	mov	r29,r6
                         419 	jarl	_Total_Display,lp
                         419 <EXPANSION BEGIN>
                         419 jarl22 _Total_Display , lp 
00000232 bfffcefd*       419 <EXPANSION END>
                         420 --112:     //Key_Display(63U,1234U,0);
                         421 --113:     //Key_Display(79U,56789U,1);
                         422 --114:     //TFT_LCD_Draw_Bmp(119, 286, ( uint8_t * )D_PASS_NG[1]);
                         423 --115: }
                         424 --	    .ef
                         425 .LDW81:
                         426 --line115
                         427 ..lin.b8d69f15..53d3ad4d.0_22::
                         428 .LDWlin22:
00000236 23ff0500        429 	ld.w	4[sp],lp
0000023a 23ef0100        430 	ld.w	0[sp],r29
0000023e 481a            431 	add	8,sp
                         432 	.jumptype return
00000240 7f00            433 	jmp	[lp]
                         434 ..lin.b8d69f15..53d3ad4d.0_23::
                         435 .LDWlin23:
                         436 	.global	___ghs_eofn_Display_Init
                         437 ___ghs_eofn_Display_Init:
                         438 	.type	_Display_Init,@function
                         439 	.size	_Display_Init,.-_Display_Init
                         440 	.align	2
                         441 

                                                                      Page 9
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                         442 --_u32TestCount	r29	param
                         443 
                         444 	.data
                         445 	.text
                         446 
                         447 
                         448 --117: void Result_Display(Test_Buffer *Buffer)
                         449 	.align	2
                         450 	.align	2
                         451 	.align	2
                         452 ..gh.f.a.2.e.3:
                         453 	.type	..gh.f.a.2.e.3,@object
                         454 	.size	..gh.f.a.2.e.3,0
                         455 	.global	_Result_Display
                         456 _Result_Display:
                         457 .LDW91:
00000242 581a            458 	add	-8,sp
00000244 63ff0500        459 	st.w	lp,4[sp]
00000248 63ef0100        460 	st.w	r29,0[sp]
0000024c 06e8            461 	mov	r6,r29
                         462 --	    .bf
                         463 .LDW02:
                         464 --118: {
                         465 --119:     //TFT_LCD_Draw_Bmp(0, 0, ( uint8_t * )&gImage_BG_0X9_Y9[0]);
                         466 --120:     //TFT_LCD_Draw_Bmp(0, 159, ( uint8_t * )&gImage_BG_1X9_Y9[0]);
                         467 --121:     Total_Display(Buffer->u32TestCount);
0000024e 3d370100        468 	ld.w	0[r29],r6
                         469 	jarl	_Total_Display,lp
                         469 <EXPANSION BEGIN>
                         469 jarl22 _Total_Display , lp 
00000252 bfffaefd*       469 <EXPANSION END>
                         470 --122:     Key_All_Display(Buffer);
                         471 --line122
                         472 ..lin.b8d69f15..5766bb8.0_24::
                         473 .LDWlin24:
00000256 1d30            474 	mov	r29,r6
                         475 	jarl	_Key_All_Display,lp
                         475 <EXPANSION BEGIN>
                         475 jarl22 _Key_All_Display , lp 
00000258 bfffa6ff*       475 <EXPANSION END>
                         476 --123:     //TFT_LCD_Draw_Bmp(119, 286, ( uint8_t * )D_PASS_NG[Buffer->u8AllResult]);
                         477 --124: }
                         478 --	    .ef
                         479 .LDW12:
                         480 --line124
                         481 ..lin.b8d69f15..5766bb8.0_25::
                         482 .LDWlin25:
0000025c 23ff0500        483 	ld.w	4[sp],lp
00000260 23ef0100        484 	ld.w	0[sp],r29
00000264 481a            485 	add	8,sp
                         486 	.jumptype return
00000266 7f00            487 	jmp	[lp]
                         488 ..lin.b8d69f15..5766bb8.0_26::
                         489 .LDWlin26:
                         490 	.global	___ghs_eofn_Result_Display
                         491 ___ghs_eofn_Result_Display:
                         492 	.type	_Result_Display,@function
                         493 	.size	_Result_Display,.-_Result_Display
                         494 	.align	2
                         495 
                         496 --_Buffer	r29	param

                                                                      Page 10
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                         497 
                         498 	.data
                         499 	.text
                         500 
                         501 
                         502 --128: void MV1TestFlagInit(void)
                         503 	.align	2
                         504 	.align	2
                         505 	.align	2
                         506 ..gh.f.a.2.e.4:
                         507 	.type	..gh.f.a.2.e.4,@object
                         508 	.size	..gh.f.a.2.e.4,0
                         509 	.global	_MV1TestFlagInit
                         510 _MV1TestFlagInit:
                         511 .LDW22:
00000268 581a            512 	add	-8,sp
0000026a 63ff0500        513 	st.w	lp,4[sp]
0000026e 63ef0100        514 	st.w	r29,0[sp]
                         515 --	    .bf
                         516 .LDW32:
                         517 --129: {
                         518 --130:     uint32_t u32TestFlag;
                         519 --131:     u32TestFlag = ReadProgramVaildStatus();
                         520 	jarl	_ReadProgramVaildStatus,lp
                         520 <EXPANSION BEGIN>
                         520 jarl22 _ReadProgramVaildStatus , lp 
00000272 80ff0000*       520 <EXPANSION END>
00000276 0ae8            521 	mov	r10,r29
                         522 --132:     if(u32TestFlag == 0xFFFFFFFF)
                         523 --line132
                         524 ..lin.b8d69f15..be9d4c86.0_27::
                         525 .LDWlin27:
00000278 7fea            526 	cmp	-1,r29
0000027a ba0d*           527 	bne	.L133
                         528 --133:     {
                         529 --134:         u32TestFlag = 0;
                         530 --line134
                         531 ..lin.b8d69f15..be9d4c86.0_28::
                         532 .LDWlin28:
0000027c 00ea            533 	mov	0,r29
                         534 --135:         WriteProgramVaildStatus(u32TestFlag);
0000027e 1d30            535 	mov	r29,r6
                         536 	jarl	_WriteProgramVaildStatus,lp
                         536 <EXPANSION BEGIN>
                         536 jarl22 _WriteProgramVaildStatus , lp 
00000280 80ff0000*       536 <EXPANSION END>
                         537 --136:         uart1_printf("MV1 Test Count Init!\r\n");
                         538 --line136
                         539 ..lin.b8d69f15..be9d4c86.0_29::
                         540 .LDWlin29:
00000284 260600000000*   541 	mov	.L180,r6
                         542 	jarl	_uart1_printf,lp
                         542 <EXPANSION BEGIN>
                         542 jarl22 _uart1_printf , lp 
0000028a 80ff0000*       542 <EXPANSION END>
0000028e f505*           543 	br	.L135
                         544 .L133:
                         545 --137:     }
                         546 --138:     else
                         547 --139:     {
                         548 --140:         uart1_printf("MV1 Test Count = %ld\r\n",u32TestFlag);

                                                                      Page 11
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                         549 --line140
                         550 ..lin.b8d69f15..be9d4c86.0_30::
                         551 .LDWlin30:
00000290 1d38            552 	mov	r29,r7
00000292 260600000000*   553 	mov	.L181,r6
                         554 	jarl	_uart1_printf,lp
                         554 <EXPANSION BEGIN>
                         554 jarl22 _uart1_printf , lp 
00000298 80ff0000*       554 <EXPANSION END>
                         555 .L135:
                         556 --141:     }
                         557 --142:     Display_Init(u32TestFlag);
                         558 --line142
                         559 ..lin.b8d69f15..be9d4c86.0_31::
                         560 .LDWlin31:
0000029c 1d30            561 	mov	r29,r6
                         562 	jarl	_Display_Init,lp
                         562 <EXPANSION BEGIN>
                         562 jarl22 _Display_Init , lp 
0000029e bfff78ff*       562 <EXPANSION END>
                         563 --143: }
                         564 --	    .ef
                         565 .LDW42:
                         566 --line143
                         567 ..lin.b8d69f15..be9d4c86.0_32::
                         568 .LDWlin32:
000002a2 23ff0500        569 	ld.w	4[sp],lp
000002a6 23ef0100        570 	ld.w	0[sp],r29
000002aa 481a            571 	add	8,sp
                         572 	.jumptype return
000002ac 7f00            573 	jmp	[lp]
                         574 ..lin.b8d69f15..be9d4c86.0_33::
                         575 .LDWlin33:
                         576 	.global	___ghs_eofn_MV1TestFlagInit
                         577 ___ghs_eofn_MV1TestFlagInit:
                         578 	.type	_MV1TestFlagInit,@function
                         579 	.size	_MV1TestFlagInit,.-_MV1TestFlagInit
                         580 	.align	2
                         581 --_u32TestFlag	r29	local
                         582 --.L170	.L180	static
                         583 --.L171	.L181	static
                         584 
                         585 	.section ".rodata","a"
                         586 .L180:--	"MV1 Test Count Init!\r\n"
00000000 4d563120        587 	.byte	77,86,49,32
00000004 54657374        588 	.byte	84,101,115,116
00000008 20436f75        589 	.byte	32,67,111,117
0000000c 6e742049        590 	.byte	110,116,32,73
00000010 6e697421        591 	.byte	110,105,116,33
00000014 0d0a            592 	.byte	13,10
00000016 00              593 	.byte	0
                         594 	.type	.L180,@object
                         595 	.size	.L180,23
                         596 .L181:--	"MV1 Test Count = %ld\r\n"
00000017 4d563120        597 	.byte	77,86,49,32
0000001b 54657374        598 	.byte	84,101,115,116
0000001f 20436f75        599 	.byte	32,67,111,117
00000023 6e74203d        600 	.byte	110,116,32,61
00000027 20256c64        601 	.byte	32,37,108,100
0000002b 0d0a            602 	.byte	13,10
0000002d 00              603 	.byte	0

                                                                      Page 12
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                         604 	.type	.L181,@object
                         605 	.size	.L181,23
                         606 	.data
                         607 	.text
                         608 
                         609 
                         610 --145: void OhmSamplingAndDisplay(void)
                         611 	.align	2
                         612 	.align	2
                         613 	.align	2
                         614 ..gh.f.a.2.e.5:
                         615 	.type	..gh.f.a.2.e.5,@object
                         616 	.size	..gh.f.a.2.e.5,0
                         617 	.global	_OhmSamplingAndDisplay
                         618 _OhmSamplingAndDisplay:
                         619 .LDW52:
000002ae 031e28ff        620 	addi	-216,sp,sp
000002b2 63ffd500        621 	st.w	lp,212[sp]
000002b6 63c7d100        622 	st.w	r24,208[sp]
000002ba 63cfcd00        623 	st.w	r25,204[sp]
000002be 63d7c900        624 	st.w	r26,200[sp]
000002c2 63dfc500        625 	st.w	r27,196[sp]
000002c6 63e7c100        626 	st.w	r28,192[sp]
000002ca 63efbd00        627 	st.w	r29,188[sp]
                         628 --	    .bf
                         629 .LDW62:
                         630 --146: {
                         631 --147:     uint64_t u64SamplingBuffer[14];
                         632 --148:     uint8_t u8i,u8SamplingCount;
                         633 --149:     uint32_t u32TestFlag;
                         634 --150:     Test_Buffer Buffer;
                         635 --153:     u32TestFlag = ReadProgramVaildStatus();
                         636 	jarl	_ReadProgramVaildStatus,lp
                         636 <EXPANSION BEGIN>
                         636 jarl22 _ReadProgramVaildStatus , lp 
000002ce 80ff0000*       636 <EXPANSION END>
000002d2 0ad0            637 	mov	r10,r26
                         638 --154:     uart1_printf("Sampling %ldth Start! \r\n",(u32TestFlag + 1));
                         639 --line154
                         640 ..lin.b8d69f15..a01f0c2c.0_34::
                         641 .LDWlin34:
000002d4 1a0e0100        642 	addi	1,r26,r1
000002d8 0138            643 	mov	r1,r7
000002da 260600000000*   644 	mov	.L357,r6
                         645 	jarl	_uart1_printf,lp
                         645 <EXPANSION BEGIN>
                         645 jarl22 _uart1_printf , lp 
000002e0 80ff0000*       645 <EXPANSION END>
                         646 --156:     for (u8i = 0; u8i < ADC_SIGNAL_CH_NUMBER; u8i++)
                         647 --line156
                         648 ..lin.b8d69f15..a01f0c2c.0_35::
                         649 .LDWlin35:
000002e4 00da            650 	mov	0,r27
000002e6 a515*           651 	br	.L187
                         652 .L186:
                         653 --157:     {
                         654 --158:         u64SamplingBuffer[u8i] = ADC_Conv_Single_Channel(u8i);
                         655 --line158
                         656 ..lin.b8d69f15..a01f0c2c.0_36::
                         657 .LDWlin36:
000002e8 1b08            658 	mov	r27,r1

                                                                      Page 13
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000002ea c30a            659 	shl	3,r1
000002ec 23164c00        660 	movea	76,sp,r2
000002f0 01e8            661 	mov	r1,r29
000002f2 c2e9            662 	add	r2,r29
000002f4 1b30            663 	mov	r27,r6
                         664 	jarl	_ADC_Conv_Single_Channel,lp
                         664 <EXPANSION BEGIN>
                         664 jarl22 _ADC_Conv_Single_Channel , lp 
000002f6 80ff0000*       664 <EXPANSION END>
000002fa 0a08            665 	mov	r10,r1
000002fc 0150            666 	mov	r1,r10
000002fe 005a            667 	mov	0,r11
00000300 bd070f500000    668 	st.dw	r10,0[r29]
                         669 --line156
                         670 ..lin.b8d69f15..a01f0c2c.0_37::
                         671 .LDWlin37:
00000306 41da            672 	add	1,r27
00000308 9b00            673 	zxb	r27
                         674 .L187:
0000030a 6eda            675 	cmp	14,r27
0000030c e1ed*           676 	bl	.L186
                         677 --159:     }
                         678 --161:     for (u8SamplingCount = 0; u8SamplingCount < SAMPLING_COUNT - 1 ; u8SamplingCount++)
                         679 --line161
                         680 ..lin.b8d69f15..a01f0c2c.0_38::
                         681 .LDWlin38:
0000030e 00ca            682 	mov	0,r25
00000310 e525*           683 	br	.L191
                         684 .L190:
                         685 --162:     {
                         686 --163:         for (u8i = 0; u8i < ADC_SIGNAL_CH_NUMBER; u8i++)
                         687 --line163
                         688 ..lin.b8d69f15..a01f0c2c.0_39::
                         689 .LDWlin39:
00000312 00da            690 	mov	0,r27
00000314 8525*           691 	br	.L195
                         692 .L194:
                         693 --164:         {
                         694 --165:             u64SamplingBuffer[u8i] += ADC_Conv_Single_Channel(u8i);
                         695 --line165
                         696 ..lin.b8d69f15..a01f0c2c.0_40::
                         697 .LDWlin40:
00000316 1b08            698 	mov	r27,r1
00000318 c30a            699 	shl	3,r1
0000031a 23164c00        700 	movea	76,sp,r2
0000031e 01c0            701 	mov	r1,r24
00000320 c2c1            702 	add	r2,r24
00000322 b80709e00000    703 	ld.dw	0[r24],r28
00000328 1b30            704 	mov	r27,r6
                         705 	jarl	_ADC_Conv_Single_Channel,lp
                         705 <EXPANSION BEGIN>
                         705 jarl22 _ADC_Conv_Single_Channel , lp 
0000032a 80ff0000*       705 <EXPANSION END>
0000032e 0a08            706 	mov	r10,r1
00000330 0150            707 	mov	r1,r10
00000332 005a            708 	mov	0,r11
00000334 0a80            709 	mov	r10,r16
00000336 0b88            710 	mov	r11,r17
00000338 1c10            711 	mov	r28,r2
0000033a 1008            712 	mov	r16,r1
0000033c c209            713 	add	r2,r1

                                                                      Page 14
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000033e 0190            714 	mov	r1,r18
00000340 1d08            715 	mov	r29,r1
00000342 1110            716 	mov	r17,r2
00000344 e117a20b        717 	adfl	r1,r2,r1
00000348 0198            718 	mov	r1,r19
0000034a b8070f900000    719 	st.dw	r18,0[r24]
                         720 --line163
                         721 ..lin.b8d69f15..a01f0c2c.0_41::
                         722 .LDWlin41:
00000350 41da            723 	add	1,r27
00000352 9b00            724 	zxb	r27
                         725 .L195:
00000354 6eda            726 	cmp	14,r27
00000356 81e5*           727 	bl	.L194
                         728 --line161
                         729 ..lin.b8d69f15..a01f0c2c.0_42::
                         730 .LDWlin42:
00000358 41ca            731 	add	1,r25
0000035a 9900            732 	zxb	r25
                         733 .L191:
0000035c 19069dff        734 	addi	-99,r25,zero
00000360 99dd*           735 	bnl	.L190
                         736 --166:         }
                         737 --167:     }
                         738 --169:     for (u8i = 0; u8i < ADC_SIGNAL_CH_NUMBER; u8i++)
                         739 --line169
                         740 ..lin.b8d69f15..a01f0c2c.0_43::
                         741 .LDWlin43:
00000362 00da            742 	mov	0,r27
00000364 a51d*           743 	br	.L199
                         744 .L198:
                         745 --170:     {
                         746 --171:         Buffer.u32KeySampling[u8i] = u64SamplingBuffer[u8i]/SAMPLING_COUNT;
                         747 --line171
                         748 ..lin.b8d69f15..a01f0c2c.0_44::
                         749 .LDWlin44:
00000366 1b10            750 	mov	r27,r2
00000368 c212            751 	shl	2,r2
0000036a 230e0000        752 	movea	0,sp,r1
0000036e 440a            753 	add	4,r1
00000370 02e8            754 	mov	r2,r29
00000372 c1e9            755 	add	r1,r29
00000374 1b08            756 	mov	r27,r1
00000376 c30a            757 	shl	3,r1
00000378 23164c00        758 	movea	76,sp,r2
0000037c c209            759 	add	r2,r1
0000037e a10709300000    760 	ld.dw	0[r1],r6
00000384 20466400        761 	movea	100,zero,r8
00000388 004a            762 	mov	0,r9
                         763 	jarl	___gh_udiv64,lp
                         763 <EXPANSION BEGIN>
                         763 jarl22 ___gh_udiv64 , lp 
0000038a 80ff0000*       763 <EXPANSION END>
0000038e 0a50            764 	mov	r10,r10
00000390 7d570100        765 	st.w	r10,0[r29]
                         766 --line169
                         767 ..lin.b8d69f15..a01f0c2c.0_45::
                         768 .LDWlin45:
00000394 41da            769 	add	1,r27
00000396 9b00            770 	zxb	r27
                         771 .L199:

                                                                      Page 15
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000398 6eda            772 	cmp	14,r27
0000039a e1e5*           773 	bl	.L198
                         774 --172:     }
                         775 --173:     
                         776 --175:     if(u32TestFlag < 0xFFFFFFFE)
                         777 --line175
                         778 ..lin.b8d69f15..a01f0c2c.0_46::
                         779 .LDWlin46:
0000039c 7ed2            780 	cmp	-2,r26
0000039e 890d*           781 	bnl	.L200
                         782 --176:     {
                         783 --177:         u32TestFlag++;
                         784 --line177
                         785 ..lin.b8d69f15..a01f0c2c.0_47::
                         786 .LDWlin47:
000003a0 41d2            787 	add	1,r26
                         788 --178:         WriteProgramVaildStatus(u32TestFlag);
000003a2 1a30            789 	mov	r26,r6
                         790 	jarl	_WriteProgramVaildStatus,lp
                         790 <EXPANSION BEGIN>
                         790 jarl22 _WriteProgramVaildStatus , lp 
000003a4 80ff0000*       790 <EXPANSION END>
                         791 --179:         Buffer.u32TestCount = u32TestFlag;
                         792 --line179
                         793 ..lin.b8d69f15..a01f0c2c.0_48::
                         794 .LDWlin48:
000003a8 63d70100        795 	st.w	r26,0[sp]
000003ac e505*           796 	br	.L202
                         797 .L200:
                         798 --180:     }
                         799 --181:     else
                         800 --182:     {
                         801 --183:         uart1_printf("MV1 Test Count Overflow!");
                         802 --line183
                         803 ..lin.b8d69f15..a01f0c2c.0_49::
                         804 .LDWlin49:
000003ae 260600000000*   805 	mov	.L358,r6
                         806 	jarl	_uart1_printf,lp
                         806 <EXPANSION BEGIN>
                         806 jarl22 _uart1_printf , lp 
000003b4 80ff0000*       806 <EXPANSION END>
                         807 .L202:
                         808 --184:     }
                         809 --186:     Buffer.u8AllResult = NG;
                         810 --line186
                         811 ..lin.b8d69f15..a01f0c2c.0_50::
                         812 .LDWlin50:
000003b8 010a            813 	mov	1,r1
000003ba 430f4a00        814 	st.b	r1,74[sp]
                         815 --187:     for (u8i = 0; u8i < ADC_SIGNAL_CH_NUMBER; u8i++)
000003be 00da            816 	mov	0,r27
000003c0 d54d*           817 	br	.L206
                         818 .L205:
                         819 --188:     {
                         820 --189:         if((u32OhmLimit[u8i][0] < Buffer.u32KeySampling[u8i]) && (Buffer.u32KeySampling[u8i] < u32OhmLimit[u8i][1]))
                         821 --line189
                         822 ..lin.b8d69f15..a01f0c2c.0_51::
                         823 .LDWlin51:
000003c2 1b08            824 	mov	r27,r1
000003c4 c10a            825 	shl	1,r1
000003c6 c20a            826 	shl	2,r1

                                                                      Page 16
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000003c8 220600000000*   827 	mov	_u32OhmLimit,r2
000003ce 01f0            828 	mov	r1,ep
000003d0 c2f1            829 	add	r2,ep
000003d2 1b10            830 	mov	r27,r2
000003d4 c212            831 	shl	2,r2
000003d6 230e0000        832 	movea	0,sp,r1
000003da 440a            833 	add	4,r1
000003dc c209            834 	add	r2,r1
000003de 210f0100        835 	ld.w	0[r1],r1
000003e2 0015            836 	sld.w	0[ep],r2
000003e4 e111            837 	cmp	r1,r2
000003e6 d91d*           838 	bnl	.L207
000003e8 1b10            839 	mov	r27,r2
000003ea c212            840 	shl	2,r2
000003ec 230e0000        841 	movea	0,sp,r1
000003f0 440a            842 	add	4,r1
000003f2 02f0            843 	mov	r2,ep
000003f4 c1f1            844 	add	r1,ep
000003f6 210600000000*   845 	mov	_u32OhmLimit,r1
000003fc 440a            846 	add	4,r1
000003fe 1b10            847 	mov	r27,r2
00000400 c112            848 	shl	1,r2
00000402 c212            849 	shl	2,r2
00000404 c209            850 	add	r2,r1
00000406 210f0100        851 	ld.w	0[r1],r1
0000040a 0015            852 	sld.w	0[ep],r2
0000040c e111            853 	cmp	r1,r2
0000040e 990d*           854 	bnl	.L207
                         855 --190:         {
                         856 --191:             Buffer.u8KeyResult[u8i] = PASS;//通过
                         857 --line191
                         858 ..lin.b8d69f15..a01f0c2c.0_52::
                         859 .LDWlin52:
00000410 230e0000        860 	movea	0,sp,r1
00000414 010e3c00        861 	addi	60,r1,r1
00000418 1bf0            862 	mov	r27,ep
0000041a c1f1            863 	add	r1,ep
0000041c 8003            864 	sst.b	zero,0[ep]
0000041e c50d*           865 	br	.L210
                         866 .L207:
                         867 --192:         }
                         868 --193:         else
                         869 --194:         {
                         870 --195:             Buffer.u8KeyResult[u8i] = NG;//失败
                         871 --line195
                         872 ..lin.b8d69f15..a01f0c2c.0_53::
                         873 .LDWlin53:
00000420 230e0000        874 	movea	0,sp,r1
00000424 010e3c00        875 	addi	60,r1,r1
00000428 1bf0            876 	mov	r27,ep
0000042a c1f1            877 	add	r1,ep
0000042c 010a            878 	mov	1,r1
0000042e 800b            879 	sst.b	r1,0[ep]
                         880 --196:             Buffer.u8AllResult = NG;
00000430 010a            881 	mov	1,r1
00000432 430f4a00        882 	st.b	r1,74[sp]
                         883 .L210:
                         884 --197:         }
                         885 --198:         uart1_printf("Key%d Ohm = %ld\r\n",(u8i+1),(Buffer.u32KeySampling[u8i]));
00000436 1b0e0100        886 	addi	1,r27,r1
0000043a 0138            887 	mov	r1,r7

                                                                      Page 17
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000043c 1b10            888 	mov	r27,r2
0000043e c212            889 	shl	2,r2
00000440 230e0000        890 	movea	0,sp,r1
00000444 440a            891 	add	4,r1
00000446 02f0            892 	mov	r2,ep
00000448 c1f1            893 	add	r1,ep
0000044a 0045            894 	sld.w	0[ep],r8
0000044c 260600000000*   895 	mov	.L356,r6
                         896 	jarl	_uart1_printf,lp
                         896 <EXPANSION BEGIN>
                         896 jarl22 _uart1_printf , lp 
00000452 80ff0000*       896 <EXPANSION END>
                         897 --line187
                         898 ..lin.b8d69f15..a01f0c2c.0_54::
                         899 .LDWlin54:
00000456 41da            900 	add	1,r27
00000458 9b00            901 	zxb	r27
                         902 .L206:
0000045a 6eda            903 	cmp	14,r27
0000045c b1b5*           904 	bl	.L205
                         905 --199:     }
                         906 --203:     Result_Display(&Buffer);
                         907 --line203
                         908 ..lin.b8d69f15..a01f0c2c.0_55::
                         909 .LDWlin55:
0000045e 23360000        910 	movea	0,sp,r6
                         911 	jarl	_Result_Display,lp
                         911 <EXPANSION BEGIN>
                         911 jarl22 _Result_Display , lp 
00000462 bfffe0fd*       911 <EXPANSION END>
                         912 --204: }
                         913 --	    .ef
                         914 .LDW72:
                         915 --line204
                         916 ..lin.b8d69f15..a01f0c2c.0_56::
                         917 .LDWlin56:
00000466 23ffd500        918 	ld.w	212[sp],lp
0000046a 23efbd00        919 	ld.w	188[sp],r29
0000046e 23e7c100        920 	ld.w	192[sp],r28
00000472 23dfc500        921 	ld.w	196[sp],r27
00000476 23d7c900        922 	ld.w	200[sp],r26
0000047a 23cfcd00        923 	ld.w	204[sp],r25
0000047e 23c7d100        924 	ld.w	208[sp],r24
00000482 031ed800        925 	addi	216,sp,sp
                         926 	.jumptype return
00000486 7f00            927 	jmp	[lp]
                         928 ..lin.b8d69f15..a01f0c2c.0_57::
                         929 .LDWlin57:
                         930 	.global	___ghs_eofn_OhmSamplingAndDisplay
                         931 ___ghs_eofn_OhmSamplingAndDisplay:
                         932 	.type	_OhmSamplingAndDisplay,@function
                         933 	.size	_OhmSamplingAndDisplay,.-_OhmSamplingAndDisplay
                         934 	.align	2
                         935 --_u64SamplingBuffer	76[sp]	local
                         936 --_u8i	r27	local
                         937 --_u8SamplingCount	r25	local
                         938 --_u32TestFlag	r26	local
                         939 --_Buffer	0[sp]	local
                         940 --.L326	.L357	static
                         941 --.L327	.L358	static
                         942 --.L328	.L356	static

                                                                      Page 18
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                         943 
                         944 	.section ".rodata","a"
                         945 .L356:--	"Key%d Ohm = %ld\r\n"
0000002e 4b657925        946 	.byte	75,101,121,37
00000032 64204f68        947 	.byte	100,32,79,104
00000036 6d203d20        948 	.byte	109,32,61,32
0000003a 256c640d        949 	.byte	37,108,100,13
0000003e 0a00            950 	.byte	10,0
                         951 	.type	.L356,@object
                         952 	.size	.L356,18
                         953 .L357:--	"Sampling %ldth Start! \r\n"
00000040 53616d70        954 	.byte	83,97,109,112
00000044 6c696e67        955 	.byte	108,105,110,103
00000048 20256c64        956 	.byte	32,37,108,100
0000004c 74682053        957 	.byte	116,104,32,83
00000050 74617274        958 	.byte	116,97,114,116
00000054 21200d0a        959 	.byte	33,32,13,10
00000058 00              960 	.byte	0
                         961 	.type	.L357,@object
                         962 	.size	.L357,25
                         963 .L358:--	"MV1 Test Count Overflow!"
00000059 4d563120        964 	.byte	77,86,49,32
0000005d 54657374        965 	.byte	84,101,115,116
00000061 20436f75        966 	.byte	32,67,111,117
00000065 6e74204f        967 	.byte	110,116,32,79
00000069 76657266        968 	.byte	118,101,114,102
0000006d 6c6f7721        969 	.byte	108,111,119,33
00000071 00              970 	.byte	0
                         971 	.type	.L358,@object
                         972 	.size	.L358,25
                         973 	.data
                         974 	.text
                         975 
                         976 	.align	2
                         977 --_gImage_BG_test	_gImage_BG_test	import
                         978 --_D	_D	import
                         979 
                         980 	.data
                         981 	.align	4
                         982 	.global	_u32OhmLimit
00000000 00000000        983 _u32OhmLimit:	.space	4
00000004 ffff0000        984 	.byte	255,255,0,0
00000008 00000000        985 	.space	4
0000000c ffff0000        986 	.byte	255,255,0,0
00000010 00000000        987 	.space	4
00000014 ffff0000        988 	.byte	255,255,0,0
00000018 00000000        989 	.space	4
0000001c ffff0000        990 	.byte	255,255,0,0
00000020 00000000        991 	.space	4
00000024 ffff0000        992 	.byte	255,255,0,0
00000028 00000000        993 	.space	4
0000002c ffff0000        994 	.byte	255,255,0,0
00000030 00000000        995 	.space	4
00000034 ffff0000        996 	.byte	255,255,0,0
00000038 00000000        997 	.space	4
0000003c ffff0000        998 	.byte	255,255,0,0
00000040 00000000        999 	.space	4
00000044 ffff0000       1000 	.byte	255,255,0,0
00000048 00000000       1001 	.space	4
0000004c ffff0000       1002 	.byte	255,255,0,0
00000050 00000000       1003 	.space	4

                                                                      Page 19
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000054 ffff0000       1004 	.byte	255,255,0,0
00000058 00000000       1005 	.space	4
0000005c ffff0000       1006 	.byte	255,255,0,0
00000060 00000000       1007 	.space	4
00000064 ffff0000       1008 	.byte	255,255,0,0
00000068 00000000       1009 	.space	4
0000006c ffff0000       1010 	.byte	255,255,0,0
                        1011 	.type	_u32OhmLimit,@object
                        1012 	.size	_u32OhmLimit,112
                        1013 	.ghsnote version,24
                        1014 	.ghsnote tools,3
                        1015 	.ghsnote options,656
                        1016 	.text
                        1017 	.align	2
                        1018 ..eof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0::
                        1019 	.section	.debug_info
                        1020 .Ldw_begin:
00000000 66040000       1021 	.word	.Ldw_end-.Ldw_begin-4
00000004 0200           1022 	.byte	2,0
00000006 00000000*      1023 	.word	.Ldw_abbr_begin
0000000a 04             1024 	.byte	4
                        1025 	.section	.debug_abbrev
                        1026 .Ldw_abbr_begin:
                        1027 	.section	.debug_str
                        1028 .Ldw_str_begin:
                        1029 	.section	.debug_info
0000000b 01             1030 	.byte	1
0000000c 00000000*      1031 	.word	..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000010 00000000*      1032 	.word	..eof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
                        1033 	.section	.debug_str
00000000 2e2e5c736f75   1034 	.strz	"..\\source\\touch_screen\\MV1_Touch_test\\MV1_Touch_test.c"
00000006 7263655c746f 
0000000c 7563685f7363 
00000012 7265656e5c4d 
00000018 56315f546f75 
0000001e 63685f746573 
00000024 745c4d56315f 
0000002a 546f7563685f 
00000030 746573742e63 
00000036 00 
                        1035 	.section	.debug_info
00000014 00000000*      1036 	.word	.Ldw_str_begin
                        1037 	.section	.debug_str
00000037 5a3a5c445c70   1038 	.strz	"Z:\\D\\project\\FX12\\װ\\FX12_test\\ghs"
0000003d 726f6a656374 
00000043 5c465831325c 
00000049 b4f8c6c1b9a4 
0000004f d7b0b0e55c46 
00000055 5831325f7465 
0000005b 73745c676873 
00000061 00 
                        1039 	.section	.debug_info
00000018 00000000*      1040 	.word	.Ldw_str_begin+55
                        1041 	.section	.debug_str
00000062 474853204320   1042 	.strz	"GHS C 2019.5.5 [dual]"
00000068 323031392e35 
0000006e 2e35205b6475 
00000074 616c5d00 
                        1043 	.section	.debug_info
0000001c 00000000*      1044 	.word	.Ldw_str_begin+98
00000020 0100           1045 	.byte	1,0

                                                                      Page 20
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000022 00000000*      1046 	.word	.Ldw_line_begin
00000026 00000000*      1047 	.word	.Ldw_macinfo_begin
0000002a 00             1048 	.byte	0
                        1049 
                        1050 	.section	.debug_abbrev
00000000 01             1051 	.byte	1
00000001 11             1052 	.byte	17
00000002 01             1053 	.byte	1
00000003 1101           1054 	.byte	17,1
00000005 1201           1055 	.byte	18,1
00000007 030e           1056 	.byte	3,14
00000009 1b0e           1057 	.byte	27,14
0000000b 250e           1058 	.byte	37,14
0000000d 1305           1059 	.byte	19,5
0000000f 1006           1060 	.byte	16,6
00000011 4306           1061 	.byte	67,6
00000013 420b           1062 	.byte	66,11
00000015 0000           1063 	.byte	0,0
                        1064 
                        1065 	.section	.debug_line
                        1066 .Ldw_line_begin:
00000000 9a040000       1067 	.word	.Ldw_line_end-.Ldw_line_begin-4
00000004 0200           1068 	.byte	2,0
00000006 00000000*      1069 	.word	.Ldw_lpro_end-.Ldw_lpro_begin
                        1070 .Ldw_lpro_begin:
0000000a 01             1071 	.byte	1
0000000b 00             1072 	.byte	0
0000000c 00             1073 	.byte	0
0000000d 04             1074 	.byte	4
0000000e 0a             1075 	.byte	10
0000000f 000101         1076 	.byte	0,1,1
00000012 010100         1077 	.byte	1,1,0
00000015 000001         1078 	.byte	0,0,1
00000018 00             1079 	.byte	0
00000019 2e2e5c736f75   1080 	.strz	"..\\source\\touch_screen\\MV1_Touch_test\\MV1_Touch_test.c"
0000001f 7263655c746f 
00000025 7563685f7363 
0000002b 7265656e5c4d 
00000031 56315f546f75 
00000037 63685f746573 
0000003d 745c4d56315f 
00000043 546f7563685f 
00000049 746573742e63 
0000004f 00 
00000050 000000         1081 	.byte	0,0,0
00000053 2e2e5c736f75   1082 	.strz	"..\\source\\Driver\\Analog_Signals\\Analog_Signals.h"
00000059 7263655c4472 
0000005f 697665725c41 
00000065 6e616c6f675f 
0000006b 5369676e616c 
00000071 735c416e616c 
00000077 6f675f536967 
0000007d 6e616c732e68 
00000083 00 
00000084 000000         1083 	.byte	0,0,0
00000087 2e2e5c736f75   1084 	.strz	"..\\source\\Driver\\Analog_Signals\\ADC.h"
0000008d 7263655c4472 
00000093 697665725c41 
00000099 6e616c6f675f 
0000009f 5369676e616c 
000000a5 735c4144432e 

                                                                      Page 21
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000000ab 6800 
000000ad 000000         1085 	.byte	0,0,0
000000b0 2e2e5c736f75   1086 	.strz	"..\\source\\Driver\\RH850F1KM_S1\\r_typedefs.h"
000000b6 7263655c4472 
000000bc 697665725c52 
000000c2 483835304631 
000000c8 4b4d5f53315c 
000000ce 725f74797065 
000000d4 646566732e68 
000000da 00 
000000db 000000         1087 	.byte	0,0,0
000000de 2e2e5c736f75   1088 	.strz	"..\\source\\Driver\\Analog_Signals\\Analog_Circuits.h"
000000e4 7263655c4472 
000000ea 697665725c41 
000000f0 6e616c6f675f 
000000f6 5369676e616c 
000000fc 735c416e616c 
00000102 6f675f436972 
00000108 63756974732e 
0000010e 6800 
00000110 000000         1089 	.byte	0,0,0
00000113 2e2e5c736f75   1090 	.strz	"..\\source\\Driver\\GPIO\\TFT_LCD.h"
00000119 7263655c4472 
0000011f 697665725c47 
00000125 50494f5c5446 
0000012b 545f4c43442e 
00000131 6800 
00000133 000000         1091 	.byte	0,0,0
00000136 2e2e5c736f75   1092 	.strz	"..\\source\\touch_screen\\MV1_Touch_test\\../BSP/BSP.h"
0000013c 7263655c746f 
00000142 7563685f7363 
00000148 7265656e5c4d 
0000014e 56315f546f75 
00000154 63685f746573 
0000015a 745c2e2e2f42 
00000160 53502f425350 
00000166 2e6800 
00000169 000000         1093 	.byte	0,0,0
0000016c 2e2e5c736f75   1094 	.strz	"..\\source\\touch_screen\\MV1_Touch_test\\../RH850_OTA/RH850_OTA.h"
00000172 7263655c746f 
00000178 7563685f7363 
0000017e 7265656e5c4d 
00000184 56315f546f75 
0000018a 63685f746573 
00000190 745c2e2e2f52 
00000196 483835305f4f 
0000019c 54412f524838 
000001a2 35305f4f5441 
000001a8 2e6800 
000001ab 000000         1095 	.byte	0,0,0
000001ae 2e2e5c736f75   1096 	.strz	"..\\source\\touch_screen\\MV1_Touch_test\\../Display_Info/Display_Info.h"
000001b4 7263655c746f 
000001ba 7563685f7363 
000001c0 7265656e5c4d 
000001c6 56315f546f75 
000001cc 63685f746573 
000001d2 745c2e2e2f44 
000001d8 6973706c6179 
000001de 5f496e666f2f 
000001e4 446973706c61 
000001ea 795f496e666f 

                                                                      Page 22
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000001f0 2e6800 
000001f3 000000         1097 	.byte	0,0,0
000001f6 00             1098 	.byte	0
                        1099 .Ldw_lpro_end:
                        1100 	.section	.debug_macinfo
                        1101 .Ldw_macinfo_begin:
                        1102 	.section	.debug_frame
                        1103 .LDW_14120090:
00000000 00000000*      1104 	.word	.LDW_unq_2-.LDW_unq_1
                        1105 .LDW_unq_1:
00000004 ffffffff       1106 	.byte	255,255,255,255
00000008 01             1107 	.byte	1
00000009 00             1108 	.byte	0
0000000a 01             1109 	.byte	1
0000000b 01             1110 	.byte	1
0000000c 1f             1111 	.byte	31
0000000d 0c             1112 	.byte	12
0000000e 03             1113 	.byte	3
0000000f 00             1114 	.byte	0
00000010 07             1115 	.byte	7
00000011 00             1116 	.byte	0
00000012 07             1117 	.byte	7
00000013 01             1118 	.byte	1
00000014 07             1119 	.byte	7
00000015 02             1120 	.byte	2
00000016 07             1121 	.byte	7
00000017 03             1122 	.byte	3
00000018 07             1123 	.byte	7
00000019 04             1124 	.byte	4
0000001a 07             1125 	.byte	7
0000001b 05             1126 	.byte	5
0000001c 07             1127 	.byte	7
0000001d 06             1128 	.byte	6
0000001e 07             1129 	.byte	7
0000001f 07             1130 	.byte	7
00000020 07             1131 	.byte	7
00000021 08             1132 	.byte	8
00000022 07             1133 	.byte	7
00000023 09             1134 	.byte	9
00000024 07             1135 	.byte	7
00000025 0a             1136 	.byte	10
00000026 07             1137 	.byte	7
00000027 0b             1138 	.byte	11
00000028 07             1139 	.byte	7
00000029 0c             1140 	.byte	12
0000002a 07             1141 	.byte	7
0000002b 0d             1142 	.byte	13
0000002c 07             1143 	.byte	7
0000002d 0e             1144 	.byte	14
0000002e 07             1145 	.byte	7
0000002f 0f             1146 	.byte	15
00000030 07             1147 	.byte	7
00000031 10             1148 	.byte	16
00000032 07             1149 	.byte	7
00000033 11             1150 	.byte	17
00000034 07             1151 	.byte	7
00000035 12             1152 	.byte	18
00000036 07             1153 	.byte	7
00000037 13             1154 	.byte	19
00000038 08             1155 	.byte	8
00000039 14             1156 	.byte	20

                                                                      Page 23
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000003a 08             1157 	.byte	8
0000003b 15             1158 	.byte	21
0000003c 08             1159 	.byte	8
0000003d 16             1160 	.byte	22
0000003e 08             1161 	.byte	8
0000003f 17             1162 	.byte	23
00000040 08             1163 	.byte	8
00000041 18             1164 	.byte	24
00000042 08             1165 	.byte	8
00000043 19             1166 	.byte	25
00000044 08             1167 	.byte	8
00000045 1a             1168 	.byte	26
00000046 08             1169 	.byte	8
00000047 1b             1170 	.byte	27
00000048 08             1171 	.byte	8
00000049 1c             1172 	.byte	28
0000004a 08             1173 	.byte	8
0000004b 1d             1174 	.byte	29
0000004c 07             1175 	.byte	7
0000004d 1e             1176 	.byte	30
0000004e 08             1177 	.byte	8
0000004f 1f             1178 	.byte	31
00000050 07             1179 	.byte	7
00000051 20             1180 	.byte	32
00000052 07             1181 	.byte	7
00000053 21             1182 	.byte	33
00000054 07             1183 	.byte	7
00000055 22             1184 	.byte	34
00000056 07             1185 	.byte	7
00000057 23             1186 	.byte	35
00000058 07             1187 	.byte	7
00000059 24             1188 	.byte	36
0000005a 07             1189 	.byte	7
0000005b 25             1190 	.byte	37
0000005c 07             1191 	.byte	7
0000005d 26             1192 	.byte	38
0000005e 07             1193 	.byte	7
0000005f 27             1194 	.byte	39
00000060 07             1195 	.byte	7
00000061 28             1196 	.byte	40
00000062 07             1197 	.byte	7
00000063 29             1198 	.byte	41
00000064 07             1199 	.byte	7
00000065 2a             1200 	.byte	42
00000066 07             1201 	.byte	7
00000067 2b             1202 	.byte	43
00000068 07             1203 	.byte	7
00000069 2c             1204 	.byte	44
0000006a 07             1205 	.byte	7
0000006b 2d             1206 	.byte	45
0000006c 07             1207 	.byte	7
0000006d 2e             1208 	.byte	46
0000006e 07             1209 	.byte	7
0000006f 2f             1210 	.byte	47
00000070 07             1211 	.byte	7
00000071 30             1212 	.byte	48
00000072 07             1213 	.byte	7
00000073 31             1214 	.byte	49
00000074 07             1215 	.byte	7
00000075 32             1216 	.byte	50
00000076 07             1217 	.byte	7

                                                                      Page 24
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000077 33             1218 	.byte	51
00000078 07             1219 	.byte	7
00000079 34             1220 	.byte	52
0000007a 07             1221 	.byte	7
0000007b 35             1222 	.byte	53
0000007c 07             1223 	.byte	7
0000007d 36             1224 	.byte	54
0000007e 07             1225 	.byte	7
0000007f 37             1226 	.byte	55
00000080 07             1227 	.byte	7
00000081 38             1228 	.byte	56
00000082 07             1229 	.byte	7
00000083 39             1230 	.byte	57
00000084 07             1231 	.byte	7
00000085 3a             1232 	.byte	58
00000086 07             1233 	.byte	7
00000087 3b             1234 	.byte	59
00000088 07             1235 	.byte	7
00000089 3c             1236 	.byte	60
0000008a 07             1237 	.byte	7
0000008b 3d             1238 	.byte	61
0000008c 07             1239 	.byte	7
0000008d 3e             1240 	.byte	62
0000008e 07             1241 	.byte	7
0000008f 3f             1242 	.byte	63
                        1243 .LDW_unq_2:
                        1244 	.section	.debug_info
                        1245 .LDW_140b97f0:
0000002b 2a             1246 	.byte	42
                        1247 	.section	.debug_str
00000078 756e7369676e   1248 	.strz	"unsigned long"
0000007e 6564206c6f6e 
00000084 6700 
                        1249 	.section	.debug_info
0000002c 00000000*      1250 	.word	.Ldw_str_begin+120
00000030 07             1251 	.byte	7
00000031 04             1252 	.byte	4
                        1253 
                        1254 	.section	.debug_abbrev
00000017 2a             1255 	.byte	42
00000018 24             1256 	.byte	36
00000019 00             1257 	.byte	0
0000001a 030e           1258 	.byte	3,14
0000001c 3e0b           1259 	.byte	62,11
0000001e 0b0b           1260 	.byte	11,11
00000020 0000           1261 	.byte	0,0
                        1262 
                        1263 	.section	.debug_info
                        1264 .LDW_140b97a0:
00000032 4b             1265 	.byte	75
00000033 01             1266 	.byte	1
                        1267 
                        1268 	.section	.debug_abbrev
00000022 4b             1269 	.byte	75
00000023 15             1270 	.byte	21
00000024 01             1271 	.byte	1
00000025 270c           1272 	.byte	39,12
00000027 0000           1273 	.byte	0,0
                        1274 
                        1275 	.section	.debug_info
                        1276 .LDW_140b98d0:

                                                                      Page 25
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000034 17             1277 	.byte	23
00000035 00000000*      1278 	.word	.LDW_140b9840
00000039 00             1279 	.byte	0
                        1280 
                        1281 	.section	.debug_abbrev
00000029 17             1282 	.byte	23
0000002a 05             1283 	.byte	5
0000002b 00             1284 	.byte	0
0000002c 4910           1285 	.byte	73,16
0000002e 4b0c           1286 	.byte	75,12
00000030 0000           1287 	.byte	0,0
                        1288 
                        1289 	.section	.debug_info
0000003a 00             1290 	.byte	0
                        1291 
                        1292 .LDW_140b9a70:
0000003b 2a             1293 	.byte	42
                        1294 	.section	.debug_str
00000086 756e7369676e   1295 	.strz	"unsigned char"
0000008c 656420636861 
00000092 7200 
                        1296 	.section	.debug_info
0000003c 00000000*      1297 	.word	.Ldw_str_begin+134
00000040 08             1298 	.byte	8
00000041 01             1299 	.byte	1
                        1300 
                        1301 .LDW_140b9cf0:
00000042 35             1302 	.byte	53
00000043 00000000*      1303 	.word	.LDW_140b89f0
                        1304 
                        1305 	.section	.debug_abbrev
00000032 35             1306 	.byte	53
00000033 0f             1307 	.byte	15
00000034 00             1308 	.byte	0
00000035 4910           1309 	.byte	73,16
00000037 0000           1310 	.byte	0,0
                        1311 
                        1312 	.section	.debug_info
                        1313 .LDW_140b9ac0:
00000047 4b             1314 	.byte	75
00000048 01             1315 	.byte	1
                        1316 
                        1317 .LDW_140ba010:
00000049 17             1318 	.byte	23
0000004a 00000000*      1319 	.word	.LDW_140b9cf0
0000004e 00             1320 	.byte	0
                        1321 
0000004f 00             1322 	.byte	0
                        1323 
                        1324 .LDW_140b9e30:
00000050 2a             1325 	.byte	42
                        1326 	.section	.debug_str
00000094 756e7369676e   1327 	.strz	"unsigned short"
0000009a 65642073686f 
000000a0 727400 
                        1328 	.section	.debug_info
00000051 00000000*      1329 	.word	.Ldw_str_begin+148
00000055 07             1330 	.byte	7
00000056 02             1331 	.byte	2
                        1332 
                        1333 .LDW_140b9c00:

                                                                      Page 26
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000057 4b             1334 	.byte	75
00000058 01             1335 	.byte	1
                        1336 
                        1337 .LDW_140b9ca0:
00000059 17             1338 	.byte	23
0000005a 00000000*      1339 	.word	.LDW_140b9840
0000005e 00             1340 	.byte	0
                        1341 
0000005f 00             1342 	.byte	0
                        1343 
                        1344 .LDW_140b9c50:
00000060 4b             1345 	.byte	75
00000061 01             1346 	.byte	1
                        1347 
                        1348 .LDW_140b9d40:
00000062 17             1349 	.byte	23
00000063 00000000*      1350 	.word	.LDW_140b9cf0
00000067 00             1351 	.byte	0
                        1352 
00000068 00             1353 	.byte	0
                        1354 
                        1355 .LDW_140ba290:
00000069 4b             1356 	.byte	75
0000006a 01             1357 	.byte	1
                        1358 
0000006b 00             1359 	.byte	0
                        1360 
                        1361 .LDW_140ba100:
0000006c 4b             1362 	.byte	75
0000006d 01             1363 	.byte	1
                        1364 
0000006e 00             1365 	.byte	0
                        1366 
                        1367 .LDW_140b9b60:
0000006f 2a             1368 	.byte	42
                        1369 	.section	.debug_str
000000a3 696e7400       1370 	.strz	"int"
                        1371 	.section	.debug_info
00000070 00000000*      1372 	.word	.Ldw_str_begin+163
00000074 05             1373 	.byte	5
00000075 04             1374 	.byte	4
                        1375 
                        1376 .LDW_140b9de0:
00000076 2a             1377 	.byte	42
                        1378 	.section	.debug_str
000000a7 756e7369676e   1379 	.strz	"unsigned long long"
000000ad 6564206c6f6e 
000000b3 67206c6f6e67 
000000b9 00 
                        1380 	.section	.debug_info
00000077 00000000*      1381 	.word	.Ldw_str_begin+167
0000007b 07             1382 	.byte	7
0000007c 08             1383 	.byte	8
                        1384 
                        1385 .LDW_13f16b00:
0000007d 40             1386 	.byte	64
0000007e 00             1387 	.byte	0
0000007f 70             1388 	.byte	112
00000080 00000000*      1389 	.word	.LDW_140b8600
                        1390 
                        1391 	.section	.debug_abbrev

                                                                      Page 27
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000039 40             1392 	.byte	64
0000003a 01             1393 	.byte	1
0000003b 01             1394 	.byte	1
0000003c 090b           1395 	.byte	9,11
0000003e 0b0f           1396 	.byte	11,15
00000040 4910           1397 	.byte	73,16
00000042 0000           1398 	.byte	0,0
                        1399 
                        1400 	.section	.debug_info
00000084 38             1401 	.byte	56
00000085 00000000*      1402 	.word	.LDW_140b9b60
00000089 04             1403 	.byte	4
0000008a 00             1404 	.byte	0
0000008b 0d             1405 	.byte	13
                        1406 
                        1407 	.section	.debug_abbrev
00000044 38             1408 	.byte	56
00000045 21             1409 	.byte	33
00000046 00             1410 	.byte	0
00000047 4910           1411 	.byte	73,16
00000049 0b0f           1412 	.byte	11,15
0000004b 220d           1413 	.byte	34,13
0000004d 2f0d           1414 	.byte	47,13
0000004f 0000           1415 	.byte	0,0
                        1416 
                        1417 	.section	.debug_info
0000008c 00             1418 	.byte	0
                        1419 
                        1420 .LDW_140b9e80:
0000008d 2a             1421 	.byte	42
                        1422 	.section	.debug_str
000000ba 6368617200     1423 	.strz	"char"
                        1424 	.section	.debug_info
0000008e 00000000*      1425 	.word	.Ldw_str_begin+186
00000092 08             1426 	.byte	8
00000093 01             1427 	.byte	1
                        1428 
                        1429 .LDW_141a1850:
00000094 35             1430 	.byte	53
00000095 00000000*      1431 	.word	.LDW_140b91d0
                        1432 
                        1433 .LDW_13f16c80:
00000099 40             1434 	.byte	64
0000009a 00             1435 	.byte	0
0000009b 38             1436 	.byte	56
0000009c 00000000*      1437 	.word	.LDW_140b9840
                        1438 
000000a0 38             1439 	.byte	56
000000a1 00000000*      1440 	.word	.LDW_140b9b60
000000a5 04             1441 	.byte	4
000000a6 00             1442 	.byte	0
000000a7 0d             1443 	.byte	13
                        1444 
000000a8 00             1445 	.byte	0
                        1446 
                        1447 .LDW_13f159c0:
000000a9 40             1448 	.byte	64
000000aa 00             1449 	.byte	0
000000ab 0e             1450 	.byte	14
000000ac 00000000*      1451 	.word	.LDW_140b91d0
                        1452 

                                                                      Page 28
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000000b0 38             1453 	.byte	56
000000b1 00000000*      1454 	.word	.LDW_140b9b60
000000b5 04             1455 	.byte	4
000000b6 00             1456 	.byte	0
000000b7 0d             1457 	.byte	13
                        1458 
000000b8 00             1459 	.byte	0
                        1460 
                        1461 .LDW_141a0b90:
000000b9 2f             1462 	.byte	47
000000ba 00000000*      1463 	.word	.LDW_140b9a70
                        1464 
                        1465 	.section	.debug_abbrev
00000051 2f             1466 	.byte	47
00000052 26             1467 	.byte	38
00000053 00             1468 	.byte	0
00000054 4910           1469 	.byte	73,16
00000056 0000           1470 	.byte	0,0
                        1471 
                        1472 	.section	.debug_info
                        1473 .LDW_13f15a80:
000000be 41             1474 	.byte	65
000000bf 00             1475 	.byte	0
000000c0 00000000*      1476 	.word	.LDW_141a0b90
                        1477 
                        1478 	.section	.debug_abbrev
00000058 41             1479 	.byte	65
00000059 01             1480 	.byte	1
0000005a 01             1481 	.byte	1
0000005b 090b           1482 	.byte	9,11
0000005d 4910           1483 	.byte	73,16
0000005f 0000           1484 	.byte	0,0
                        1485 
                        1486 	.section	.debug_info
000000c4 38             1487 	.byte	56
000000c5 00000000*      1488 	.word	.LDW_140b9b60
000000c9 04             1489 	.byte	4
000000ca 00             1490 	.byte	0
000000cb 7f             1491 	.byte	127
                        1492 
000000cc 00             1493 	.byte	0
                        1494 
                        1495 .LDW_141a2160:
000000cd 35             1496 	.byte	53
000000ce 00000000*      1497 	.word	.LDW_141a0b90
                        1498 
                        1499 .LDW_141a4d50:
000000d2 41             1500 	.byte	65
000000d3 00             1501 	.byte	0
000000d4 00000000*      1502 	.word	.LDW_141a2160
                        1503 
000000d8 38             1504 	.byte	56
000000d9 00000000*      1505 	.word	.LDW_140b9b60
000000dd 04             1506 	.byte	4
000000de 00             1507 	.byte	0
000000df 7f             1508 	.byte	127
                        1509 
000000e0 00             1510 	.byte	0
                        1511 
                        1512 .LDW_141a6250:
000000e1 40             1513 	.byte	64

                                                                      Page 29
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000000e2 00             1514 	.byte	0
000000e3 08             1515 	.byte	8
000000e4 00000000*      1516 	.word	.LDW_140b9840
                        1517 
000000e8 38             1518 	.byte	56
000000e9 00000000*      1519 	.word	.LDW_140b9b60
000000ed 04             1520 	.byte	4
000000ee 00             1521 	.byte	0
000000ef 01             1522 	.byte	1
                        1523 
000000f0 00             1524 	.byte	0
                        1525 
                        1526 .LDW_141a4bd0:
000000f1 40             1527 	.byte	64
000000f2 00             1528 	.byte	0
000000f3 70             1529 	.byte	112
000000f4 00000000*      1530 	.word	.LDW_140b9840
                        1531 
000000f8 38             1532 	.byte	56
000000f9 00000000*      1533 	.word	.LDW_140b9b60
000000fd 04             1534 	.byte	4
000000fe 00             1535 	.byte	0
000000ff 0d             1536 	.byte	13
                        1537 
00000100 38             1538 	.byte	56
00000101 00000000*      1539 	.word	.LDW_140b9b60
00000105 04             1540 	.byte	4
00000106 00             1541 	.byte	0
00000107 01             1542 	.byte	1
                        1543 
00000108 00             1544 	.byte	0
                        1545 
                        1546 .LDW_141a96b0:
00000109 4a             1547 	.byte	74
0000010a 00000000*      1548 	.word	.LDW_140b8690
0000010e 01             1549 	.byte	1
                        1550 
                        1551 	.section	.debug_abbrev
00000061 4a             1552 	.byte	74
00000062 15             1553 	.byte	21
00000063 01             1554 	.byte	1
00000064 4910           1555 	.byte	73,16
00000066 270c           1556 	.byte	39,12
00000068 0000           1557 	.byte	0,0
                        1558 
                        1559 	.section	.debug_info
                        1560 .LDW_141a9fc0:
0000010f 17             1561 	.byte	23
00000110 00000000*      1562 	.word	.LDW_140b91d0
00000114 00             1563 	.byte	0
                        1564 
00000115 00             1565 	.byte	0
                        1566 
                        1567 .LDW_141aae90:
00000116 4b             1568 	.byte	75
00000117 01             1569 	.byte	1
                        1570 
                        1571 .LDW_141aa580:
00000118 17             1572 	.byte	23
00000119 00000000*      1573 	.word	.LDW_140b8690
0000011d 00             1574 	.byte	0

                                                                      Page 30
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                        1575 
                        1576 .LDW_141ab0c0:
0000011e 17             1577 	.byte	23
0000011f 00000000*      1578 	.word	.LDW_140b8690
00000123 00             1579 	.byte	0
                        1580 
                        1581 .LDW_141aad50:
00000124 17             1582 	.byte	23
00000125 00000000*      1583 	.word	.LDW_141a1850
00000129 00             1584 	.byte	0
                        1585 
0000012a 00             1586 	.byte	0
                        1587 
                        1588 .LDW_15184bd0:
0000012b 2a             1589 	.byte	42
                        1590 	.section	.debug_str
000000bf 756e7369676e   1591 	.strz	"unsigned int"
000000c5 656420696e74 
000000cb 00 
                        1592 	.section	.debug_info
0000012c 00000000*      1593 	.word	.Ldw_str_begin+191
00000130 07             1594 	.byte	7
00000131 04             1595 	.byte	4
                        1596 
                        1597 .LDW_15184c70:
00000132 35             1598 	.byte	53
00000133 00000000*      1599 	.word	.LDW_140b9e80
                        1600 
                        1601 .LDW_15184450:
00000137 4b             1602 	.byte	75
00000138 01             1603 	.byte	1
                        1604 
                        1605 .LDW_15184180:
00000139 17             1606 	.byte	23
0000013a 00000000*      1607 	.word	.LDW_15184c70
0000013e 00             1608 	.byte	0
                        1609 
0000013f 4c             1610 	.byte	76
                        1611 
                        1612 	.section	.debug_abbrev
0000006a 4c             1613 	.byte	76
0000006b 18             1614 	.byte	24
0000006c 00             1615 	.byte	0
0000006d 0000           1616 	.byte	0,0
                        1617 
                        1618 	.section	.debug_info
00000140 00             1619 	.byte	0
                        1620 
                        1621 .LDW_141ab360:
00000141 4a             1622 	.byte	74
00000142 00000000*      1623 	.word	.LDW_140b9840
00000146 01             1624 	.byte	1
                        1625 
00000147 00             1626 	.byte	0
                        1627 
                        1628 .LDW_141abc20:
00000148 4b             1629 	.byte	75
00000149 01             1630 	.byte	1
                        1631 
                        1632 .LDW_141abea0:
0000014a 17             1633 	.byte	23

                                                                      Page 31
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000014b 00000000*      1634 	.word	.LDW_140b9840
0000014f 00             1635 	.byte	0
                        1636 
00000150 00             1637 	.byte	0
                        1638 
                        1639 .LDW_140b91d0:
00000151 2d             1640 	.byte	45
                        1641 	.section	.debug_str
000000cc 75696e74385f   1642 	.strz	"uint8_t"
000000d2 7400 
                        1643 	.section	.debug_info
00000152 00000000*      1644 	.word	.Ldw_str_begin+204
00000156 7b             1645 	.byte	123
00000157 1c             1646 	.byte	28
00000158 04             1647 	.byte	4
00000159 00000000*      1648 	.word	.LDW_140b9a70
                        1649 
                        1650 	.section	.debug_abbrev
0000006f 2d             1651 	.byte	45
00000070 16             1652 	.byte	22
00000071 00             1653 	.byte	0
00000072 030e           1654 	.byte	3,14
00000074 3b0f           1655 	.byte	59,15
00000076 390f           1656 	.byte	57,15
00000078 3a0f           1657 	.byte	58,15
0000007a 4910           1658 	.byte	73,16
0000007c 0000           1659 	.byte	0,0
                        1660 
                        1661 	.section	.debug_info
                        1662 .LDW_140b8690:
0000015d 2d             1663 	.byte	45
                        1664 	.section	.debug_str
000000d4 75696e743136   1665 	.strz	"uint16_t"
000000da 5f7400 
                        1666 	.section	.debug_info
0000015e 00000000*      1667 	.word	.Ldw_str_begin+212
00000162 7c             1668 	.byte	124
00000163 1c             1669 	.byte	28
00000164 04             1670 	.byte	4
00000165 00000000*      1671 	.word	.LDW_140b9e30
                        1672 
                        1673 .LDW_140b9840:
00000169 2d             1674 	.byte	45
                        1675 	.section	.debug_str
000000dd 75696e743332   1676 	.strz	"uint32_t"
000000e3 5f7400 
                        1677 	.section	.debug_info
0000016a 00000000*      1678 	.word	.Ldw_str_begin+221
0000016e 7d             1679 	.byte	125
0000016f 1c             1680 	.byte	28
00000170 04             1681 	.byte	4
00000171 00000000*      1682 	.word	.LDW_140b97f0
                        1683 
                        1684 .LDW_140b8600:
00000175 2d             1685 	.byte	45
                        1686 	.section	.debug_str
000000e6 75696e743634   1687 	.strz	"uint64_t"
000000ec 5f7400 
                        1688 	.section	.debug_info
00000176 00000000*      1689 	.word	.Ldw_str_begin+230
0000017a 7e             1690 	.byte	126

                                                                      Page 32
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000017b 1c             1691 	.byte	28
0000017c 04             1692 	.byte	4
0000017d 00000000*      1693 	.word	.LDW_140b9de0
                        1694 
                        1695 .LDW_140b8d50:
00000181 47             1696 	.byte	71
00000182 12             1697 	.byte	18
00000183 01             1698 	.byte	1
00000184 01             1699 	.byte	1
00000185 4c             1700 	.byte	76
00000186 01             1701 	.byte	1
                        1702 
                        1703 	.section	.debug_abbrev
0000007e 47             1704 	.byte	71
0000007f 13             1705 	.byte	19
00000080 01             1706 	.byte	1
00000081 3b0f           1707 	.byte	59,15
00000083 390f           1708 	.byte	57,15
00000085 3a0f           1709 	.byte	58,15
00000087 0b0f           1710 	.byte	11,15
00000089 320b           1711 	.byte	50,11
0000008b 0000           1712 	.byte	0,0
                        1713 
                        1714 	.section	.debug_info
                        1715 .LDW_141a37d0:
00000187 28             1716 	.byte	40
                        1717 	.section	.debug_str
000000ef 753332546573   1718 	.strz	"u32TestCount"
000000f5 74436f756e74 
000000fb 00 
                        1719 	.section	.debug_info
00000188 00000000*      1720 	.word	.Ldw_str_begin+239
0000018c 13             1721 	.byte	19
0000018d 0e             1722 	.byte	14
0000018e 01             1723 	.byte	1
0000018f 00000000*      1724 	.word	.LDW_140b9840
00000193 0223           1725 	.byte	2,35
00000195 00             1726 	.byte	0
00000196 01             1727 	.byte	1
                        1728 
                        1729 	.section	.debug_abbrev
0000008d 28             1730 	.byte	40
0000008e 0d             1731 	.byte	13
0000008f 00             1732 	.byte	0
00000090 030e           1733 	.byte	3,14
00000092 3b0f           1734 	.byte	59,15
00000094 390f           1735 	.byte	57,15
00000096 3a0f           1736 	.byte	58,15
00000098 4910           1737 	.byte	73,16
0000009a 380a           1738 	.byte	56,10
0000009c 320b           1739 	.byte	50,11
0000009e 0000           1740 	.byte	0,0
                        1741 
                        1742 	.section	.debug_info
                        1743 .LDW_141a3d10:
00000197 28             1744 	.byte	40
                        1745 	.section	.debug_str
000000fc 7533324b6579   1746 	.strz	"u32KeySampling"
00000102 53616d706c69 
00000108 6e6700 
                        1747 	.section	.debug_info

                                                                      Page 33
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000198 00000000*      1748 	.word	.Ldw_str_begin+252
0000019c 14             1749 	.byte	20
0000019d 0e             1750 	.byte	14
0000019e 01             1751 	.byte	1
0000019f 00000000*      1752 	.word	.LDW_13f16c80
000001a3 0223           1753 	.byte	2,35
000001a5 04             1754 	.byte	4
000001a6 01             1755 	.byte	1
                        1756 
                        1757 .LDW_141a36f0:
000001a7 28             1758 	.byte	40
                        1759 	.section	.debug_str
0000010b 75384b657952   1760 	.strz	"u8KeyResult"
00000111 6573756c7400 
                        1761 	.section	.debug_info
000001a8 00000000*      1762 	.word	.Ldw_str_begin+267
000001ac 15             1763 	.byte	21
000001ad 0d             1764 	.byte	13
000001ae 01             1765 	.byte	1
000001af 00000000*      1766 	.word	.LDW_13f159c0
000001b3 0223           1767 	.byte	2,35
000001b5 3c             1768 	.byte	60
000001b6 01             1769 	.byte	1
                        1770 
                        1771 .LDW_141a3ca0:
000001b7 28             1772 	.byte	40
                        1773 	.section	.debug_str
00000117 7538416c6c52   1774 	.strz	"u8AllResult"
0000011d 6573756c7400 
                        1775 	.section	.debug_info
000001b8 00000000*      1776 	.word	.Ldw_str_begin+279
000001bc 16             1777 	.byte	22
000001bd 0d             1778 	.byte	13
000001be 01             1779 	.byte	1
000001bf 00000000*      1780 	.word	.LDW_140b91d0
000001c3 0223           1781 	.byte	2,35
000001c5 4a             1782 	.byte	74
000001c6 01             1783 	.byte	1
                        1784 
000001c7 00             1785 	.byte	0
                        1786 
                        1787 .LDW_140b89f0:
000001c8 2d             1788 	.byte	45
                        1789 	.section	.debug_str
00000123 546573745f42   1790 	.strz	"Test_Buffer"
00000129 756666657200 
                        1791 	.section	.debug_info
000001c9 00000000*      1792 	.word	.Ldw_str_begin+291
000001cd 17             1793 	.byte	23
000001ce 03             1794 	.byte	3
000001cf 01             1795 	.byte	1
000001d0 00000000*      1796 	.word	.LDW_140b8d50
                        1797 
                        1798 .LDW_141a00e0:
000001d4 08             1799 	.byte	8
                        1800 	.section	.debug_str
0000012f 67496d616765   1801 	.strz	"gImage_BG_test"
00000135 5f42475f7465 
0000013b 737400 
                        1802 	.section	.debug_info
000001d5 00000000*      1803 	.word	.Ldw_str_begin+303

                                                                      Page 34
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000001d9 04             1804 	.byte	4
000001da 1c             1805 	.byte	28
000001db 09             1806 	.byte	9
000001dc 00000000*      1807 	.word	.LDW_13f15a80
000001e0 01             1808 	.byte	1
000001e1 01             1809 	.byte	1
                        1810 
                        1811 	.section	.debug_abbrev
000000a0 08             1812 	.byte	8
000000a1 34             1813 	.byte	52
000000a2 00             1814 	.byte	0
000000a3 030e           1815 	.byte	3,14
000000a5 3b0f           1816 	.byte	59,15
000000a7 390f           1817 	.byte	57,15
000000a9 3a0f           1818 	.byte	58,15
000000ab 4910           1819 	.byte	73,16
000000ad 3f0c           1820 	.byte	63,12
000000af 3c0c           1821 	.byte	60,12
000000b1 0000           1822 	.byte	0,0
                        1823 
                        1824 	.section	.debug_info
                        1825 .LDW_141a0710:
000001e2 08             1826 	.byte	8
                        1827 	.section	.debug_str
0000013e 4400           1828 	.strz	"D"
                        1829 	.section	.debug_info
000001e3 00000000*      1830 	.word	.Ldw_str_begin+318
000001e7 07             1831 	.byte	7
000001e8 1d             1832 	.byte	29
000001e9 09             1833 	.byte	9
000001ea 00000000*      1834 	.word	.LDW_141a4d50
000001ee 01             1835 	.byte	1
000001ef 01             1836 	.byte	1
                        1837 
                        1838 .LDW_141a0680:
000001f0 06             1839 	.byte	6
                        1840 	.section	.debug_str
00000140 7533324f686d   1841 	.strz	"u32OhmLimit"
00000146 4c696d697400 
                        1842 	.section	.debug_info
000001f1 00000000*      1843 	.word	.Ldw_str_begin+320
000001f5 19             1844 	.byte	25
000001f6 0a             1845 	.byte	10
000001f7 01             1846 	.byte	1
000001f8 00000000*      1847 	.word	.LDW_141a4bd0
000001fc 01             1848 	.byte	1
000001fd 00             1849 	.byte	0
000001fe 05             1850 	.byte	5
000001ff 03             1851 	.byte	3
00000200 00000000*      1852 	.word	_u32OhmLimit
                        1853 
                        1854 	.section	.debug_abbrev
000000b3 06             1855 	.byte	6
000000b4 34             1856 	.byte	52
000000b5 00             1857 	.byte	0
000000b6 030e           1858 	.byte	3,14
000000b8 3b0f           1859 	.byte	59,15
000000ba 390f           1860 	.byte	57,15
000000bc 3a0f           1861 	.byte	58,15
000000be 4910           1862 	.byte	73,16
000000c0 3f0c           1863 	.byte	63,12

                                                                      Page 35
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000000c2 3c0c           1864 	.byte	60,12
000000c4 020a           1865 	.byte	2,10
000000c6 0000           1866 	.byte	0,0
                        1867 
                        1868 	.section	.debug_info
                        1869 .LDW_141a75a0:
00000204 1b             1870 	.byte	27
                        1871 	.section	.debug_str
0000014c 4144435f436f   1872 	.strz	"ADC_Conv_Single_Channel"
00000152 6e765f53696e 
00000158 676c655f4368 
0000015e 616e6e656c00 
                        1873 	.section	.debug_info
00000205 00000000*      1874 	.word	.Ldw_str_begin+332
00000209 3a             1875 	.byte	58
0000020a 11             1876 	.byte	17
0000020b 02             1877 	.byte	2
0000020c 00000000*      1878 	.word	.LDW_140b8690
00000210 01             1879 	.byte	1
00000211 00             1880 	.byte	0
00000212 01             1881 	.byte	1
00000213 01             1882 	.byte	1
00000214 00             1883 	.byte	0
00000215 01             1884 	.byte	1
                        1885 
                        1886 	.section	.debug_abbrev
000000c8 1b             1887 	.byte	27
000000c9 2e             1888 	.byte	46
000000ca 01             1889 	.byte	1
000000cb 030e           1890 	.byte	3,14
000000cd 3b0f           1891 	.byte	59,15
000000cf 390f           1892 	.byte	57,15
000000d1 3a0f           1893 	.byte	58,15
000000d3 4910           1894 	.byte	73,16
000000d5 3c0c           1895 	.byte	60,12
000000d7 200b           1896 	.byte	32,11
000000d9 3f0c           1897 	.byte	63,12
000000db 320b           1898 	.byte	50,11
000000dd 4c0b           1899 	.byte	76,11
000000df 270c           1900 	.byte	39,12
000000e1 0000           1901 	.byte	0,0
                        1902 
                        1903 	.section	.debug_info
00000216 00             1904 	.byte	0
                        1905 
                        1906 .LDW_141a7ba0:
00000217 1a             1907 	.byte	26
                        1908 	.section	.debug_str
00000164 5446545f4c43   1909 	.strz	"TFT_LCD_Draw_Bmp"
0000016a 445f44726177 
00000170 5f426d7000 
                        1910 	.section	.debug_info
00000218 00000000*      1911 	.word	.Ldw_str_begin+356
0000021c 9601           1912 	.byte	150,1
0000021e 06             1913 	.byte	6
0000021f 06             1914 	.byte	6
00000220 01             1915 	.byte	1
00000221 00             1916 	.byte	0
00000222 01             1917 	.byte	1
00000223 01             1918 	.byte	1
00000224 00             1919 	.byte	0

                                                                      Page 36
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000225 01             1920 	.byte	1
                        1921 
                        1922 	.section	.debug_abbrev
000000e3 1a             1923 	.byte	26
000000e4 2e             1924 	.byte	46
000000e5 01             1925 	.byte	1
000000e6 030e           1926 	.byte	3,14
000000e8 3b0f           1927 	.byte	59,15
000000ea 390f           1928 	.byte	57,15
000000ec 3a0f           1929 	.byte	58,15
000000ee 3c0c           1930 	.byte	60,12
000000f0 200b           1931 	.byte	32,11
000000f2 3f0c           1932 	.byte	63,12
000000f4 320b           1933 	.byte	50,11
000000f6 4c0b           1934 	.byte	76,11
000000f8 270c           1935 	.byte	39,12
000000fa 0000           1936 	.byte	0,0
                        1937 
                        1938 	.section	.debug_info
00000226 00             1939 	.byte	0
                        1940 
                        1941 .LDW_151836d0:
00000227 1a             1942 	.byte	26
                        1943 	.section	.debug_str
00000175 75617274315f   1944 	.strz	"uart1_printf"
0000017b 7072696e7466 
00000181 00 
                        1945 	.section	.debug_info
00000228 00000000*      1946 	.word	.Ldw_str_begin+373
0000022c 31             1947 	.byte	49
0000022d 06             1948 	.byte	6
0000022e 07             1949 	.byte	7
0000022f 01             1950 	.byte	1
00000230 00             1951 	.byte	0
00000231 01             1952 	.byte	1
00000232 01             1953 	.byte	1
00000233 00             1954 	.byte	0
00000234 01             1955 	.byte	1
                        1956 
00000235 00             1957 	.byte	0
                        1958 
                        1959 .LDW_15180ad0:
00000236 1b             1960 	.byte	27
                        1961 	.section	.debug_str
00000182 526561645072   1962 	.strz	"ReadProgramVaildStatus"
00000188 6f6772616d56 
0000018e 61696c645374 
00000194 6174757300 
                        1963 	.section	.debug_info
00000237 00000000*      1964 	.word	.Ldw_str_begin+386
0000023b 46             1965 	.byte	70
0000023c 0a             1966 	.byte	10
0000023d 08             1967 	.byte	8
0000023e 00000000*      1968 	.word	.LDW_140b9840
00000242 01             1969 	.byte	1
00000243 00             1970 	.byte	0
00000244 01             1971 	.byte	1
00000245 01             1972 	.byte	1
00000246 00             1973 	.byte	0
00000247 01             1974 	.byte	1
                        1975 

                                                                      Page 37
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000248 00             1976 	.byte	0
                        1977 
                        1978 .LDW_151822d0:
00000249 1a             1979 	.byte	26
                        1980 	.section	.debug_str
00000199 577269746550   1981 	.strz	"WriteProgramVaildStatus"
0000019f 726f6772616d 
000001a5 5661696c6453 
000001ab 746174757300 
                        1982 	.section	.debug_info
0000024a 00000000*      1983 	.word	.Ldw_str_begin+409
0000024e 47             1984 	.byte	71
0000024f 06             1985 	.byte	6
00000250 08             1986 	.byte	8
00000251 01             1987 	.byte	1
00000252 00             1988 	.byte	0
00000253 01             1989 	.byte	1
00000254 01             1990 	.byte	1
00000255 00             1991 	.byte	0
00000256 01             1992 	.byte	1
                        1993 
00000257 00             1994 	.byte	0
                        1995 
                        1996 .LDW_140b9920:
00000258 18             1997 	.byte	24
                        1998 	.section	.debug_str
000001b1 546f74616c5f   1999 	.strz	"Total_Display"
000001b7 446973706c61 
000001bd 7900 
                        2000 	.section	.debug_info
00000259 00000000*      2001 	.word	.Ldw_str_begin+433
0000025d 2e             2002 	.byte	46
0000025e 06             2003 	.byte	6
0000025f 01             2004 	.byte	1
00000260 00000000*      2005 	.word	_Total_Display
00000264 00000000*      2006 	.word	___ghs_eofn_Total_Display
00000268 01             2007 	.byte	1
00000269 53             2008 	.byte	83
0000026a 828080800b     2009 	.byte	130,128,128,128,11
0000026f 0c             2010 	.byte	12
00000270 828004         2011 	.byte	130,128,4
00000273 0c             2012 	.byte	12
00000274 00             2013 	.byte	0
00000275 00             2014 	.byte	0
00000276 00             2015 	.byte	0
00000277 01             2016 	.byte	1
00000278 01             2017 	.byte	1
00000279 00             2018 	.byte	0
0000027a 01             2019 	.byte	1
                        2020 
                        2021 	.section	.debug_abbrev
000000fc 18             2022 	.byte	24
000000fd 2e             2023 	.byte	46
000000fe 01             2024 	.byte	1
000000ff 030e           2025 	.byte	3,14
00000101 3b0f           2026 	.byte	59,15
00000103 390f           2027 	.byte	57,15
00000105 3a0f           2028 	.byte	58,15
00000107 1101           2029 	.byte	17,1
00000109 1201           2030 	.byte	18,1
0000010b 400a           2031 	.byte	64,10

                                                                      Page 38
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000010d 8341           2032 	.byte	131,65
0000010f 0f             2033 	.byte	15
00000110 8741           2034 	.byte	135,65
00000112 0d             2035 	.byte	13
00000113 8541           2036 	.byte	133,65
00000115 0f             2037 	.byte	15
00000116 8641           2038 	.byte	134,65
00000118 0d             2039 	.byte	13
00000119 9241           2040 	.byte	146,65
0000011b 0f             2041 	.byte	15
0000011c 3c0c           2042 	.byte	60,12
0000011e 200b           2043 	.byte	32,11
00000120 3f0c           2044 	.byte	63,12
00000122 320b           2045 	.byte	50,11
00000124 4c0b           2046 	.byte	76,11
00000126 270c           2047 	.byte	39,12
00000128 0000           2048 	.byte	0,0
                        2049 
                        2050 	.section	.debug_frame
                        2051 .LDW_141abd10:
00000090 00000000*      2052 	.word	.LDW_unq_4-.LDW_unq_3
                        2053 .LDW_unq_3:
00000094 00000000*      2054 	.word	.LDW_14120090
00000098 00000000*      2055 	.word	_Total_Display
0000009c 00000000*      2056 	.word	___ghs_eofn_Total_Display-_Total_Display
000000a0 46             2057 	.byte	70
000000a1 9f             2058 	.byte	159
000000a2 08             2059 	.byte	8
000000a3 44             2060 	.byte	68
000000a4 9c             2061 	.byte	156
000000a5 04             2062 	.byte	4
000000a6 44             2063 	.byte	68
000000a7 9d             2064 	.byte	157
000000a8 00             2065 	.byte	0
000000a9 01             2066 	.byte	1
000000aa 00000000*      2067 	.word	.LDW21
000000ae 44             2068 	.byte	68
000000af df             2069 	.byte	223
000000b0 44             2070 	.byte	68
000000b1 dd             2071 	.byte	221
000000b2 44             2072 	.byte	68
000000b3 dc             2073 	.byte	220
                        2074 .LDW_unq_4:
                        2075 	.section	.debug_line
000001f7 000502         2076 	.byte	0,5,2
000001fa 00000000*      2077 	.word	_Total_Display
000001fe 06             2078 	.byte	6
000001ff 03             2079 	.byte	3
00000200 2e             2080 	.byte	46
00000201 02             2081 	.byte	2
00000202 00             2082 	.byte	0
00000203 01             2083 	.byte	1
00000204 4b             2084 	.byte	75
00000205 1d             2085 	.byte	29
00000206 000502         2086 	.byte	0,5,2
00000209 00000000*      2087 	.word	.LDWlin1
0000020d 0b             2088 	.byte	11
0000020e 000502         2089 	.byte	0,5,2
00000211 00000000*      2090 	.word	.LDWlin2
00000215 0c             2091 	.byte	12
00000216 23             2092 	.byte	35

                                                                      Page 39
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000217 000502         2093 	.byte	0,5,2
0000021a 00000000*      2094 	.word	.LDWlin3
0000021e 0b             2095 	.byte	11
0000021f 000502         2096 	.byte	0,5,2
00000222 00000000*      2097 	.word	.LDWlin4
00000226 0c             2098 	.byte	12
00000227 23             2099 	.byte	35
00000228 000502         2100 	.byte	0,5,2
0000022b 00000000*      2101 	.word	.LDWlin5
0000022f 0b             2102 	.byte	11
00000230 000502         2103 	.byte	0,5,2
00000233 00000000*      2104 	.word	.LDWlin6
00000237 0c             2105 	.byte	12
00000238 23             2106 	.byte	35
00000239 000502         2107 	.byte	0,5,2
0000023c 00000000*      2108 	.word	.LDWlin7
00000240 0b             2109 	.byte	11
00000241 000502         2110 	.byte	0,5,2
00000244 00000000*      2111 	.word	.LDWlin8
00000248 0c             2112 	.byte	12
00000249 23             2113 	.byte	35
0000024a 000502         2114 	.byte	0,5,2
0000024d 00000000*      2115 	.word	.LDWlin9
00000251 0b             2116 	.byte	11
00000252 000502         2117 	.byte	0,5,2
00000255 00000000*      2118 	.word	.LDWlin10
00000259 0c             2119 	.byte	12
0000025a 23             2120 	.byte	35
0000025b 000502         2121 	.byte	0,5,2
0000025e 00000000*      2122 	.word	.LDWlin11
00000262 0b             2123 	.byte	11
00000263 000502         2124 	.byte	0,5,2
00000266 00000000*      2125 	.word	.LDWlin12
0000026a 0c             2126 	.byte	12
0000026b 23             2127 	.byte	35
0000026c 53             2128 	.byte	83
0000026d 000502         2129 	.byte	0,5,2
00000270 00000000*      2130 	.word	.LDWlin13
00000274 0c             2131 	.byte	12
00000275 23             2132 	.byte	35
00000276 53             2133 	.byte	83
00000277 000502         2134 	.byte	0,5,2
0000027a 00000000*      2135 	.word	.LDWlin14
0000027e 0c             2136 	.byte	12
0000027f 23             2137 	.byte	35
00000280 4b             2138 	.byte	75
00000281 000502         2139 	.byte	0,5,2
00000284 00000000*      2140 	.word	.LDWlin15
00000288 0c             2141 	.byte	12
00000289 23             2142 	.byte	35
0000028a 2b             2143 	.byte	43
0000028b 000502         2144 	.byte	0,5,2
0000028e 00000000*      2145 	.word	.LDWlin16
00000292 0b             2146 	.byte	11
00000293 06             2147 	.byte	6
00000294 000502         2148 	.byte	0,5,2
00000297 00000000*      2149 	.word	___ghs_eofn_Total_Display
0000029b 02             2150 	.byte	2
0000029c 00             2151 	.byte	0
0000029d 000101         2152 	.byte	0,1,1
                        2153 	.section	.debug_info

                                                                      Page 40
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                        2154 .LDW_140b8960:
0000027b 16             2155 	.byte	22
                        2156 	.section	.debug_str
000001bf 753332696e00   2157 	.strz	"u32in"
                        2158 	.section	.debug_info
0000027c 00000000*      2159 	.word	.Ldw_str_begin+447
00000280 2e             2160 	.byte	46
00000281 1d             2161 	.byte	29
00000282 01             2162 	.byte	1
00000283 00000000*      2163 	.word	.LDW_140b9840
00000287 00             2164 	.byte	0
00000288 00000000*      2165 	.word	.LDW_140f9df0
                        2166 	.section	.debug_loc
                        2167 .LDW_140f9df0:
00000000 00000000*      2168 	.word	.LDW01-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000004 00000000*      2169 	.word	.LDW11-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000008 0100           2170 	.byte	1,0
0000000a 56             2171 	.byte	86
0000000b 00000000*      2172 	.word	.LDW11-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000000f 00000000*      2173 	.word	.LDW21-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000013 0100           2174 	.byte	1,0
00000015 6c             2175 	.byte	108
00000016 00000000       2176 	.word	0x0
0000001a 00000000       2177 	.word	0x0
                        2178 
                        2179 	.section	.debug_abbrev
0000012a 16             2180 	.byte	22
0000012b 05             2181 	.byte	5
0000012c 00             2182 	.byte	0
0000012d 030e           2183 	.byte	3,14
0000012f 3b0f           2184 	.byte	59,15
00000131 390f           2185 	.byte	57,15
00000133 3a0f           2186 	.byte	58,15
00000135 4910           2187 	.byte	73,16
00000137 4b0c           2188 	.byte	75,12
00000139 0206           2189 	.byte	2,6
0000013b 0000           2190 	.byte	0,0
                        2191 
                        2192 	.section	.debug_info
                        2193 .LDW_140b9a20:
0000028c 22             2194 	.byte	34
0000028d 00000000*      2195 	.word	.LDW11
00000291 00000000*      2196 	.word	.LDW21
                        2197 
                        2198 	.section	.debug_abbrev
0000013d 22             2199 	.byte	34
0000013e 0b             2200 	.byte	11
0000013f 01             2201 	.byte	1
00000140 1101           2202 	.byte	17,1
00000142 1201           2203 	.byte	18,1
00000144 0000           2204 	.byte	0,0
                        2205 
                        2206 	.section	.debug_info
                        2207 .LDW_140b8570:
00000295 07             2208 	.byte	7
                        2209 	.section	.debug_str
000001c5 75387800       2210 	.strz	"u8x"
                        2211 	.section	.debug_info
00000296 00000000*      2212 	.word	.Ldw_str_begin+453
0000029a 30             2213 	.byte	48
0000029b 0d             2214 	.byte	13

                                                                      Page 41
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000029c 01             2215 	.byte	1
0000029d 00000000*      2216 	.word	.LDW_140b91d0
000002a1 00             2217 	.byte	0
000002a2 00             2218 	.byte	0
000002a3 00000000*      2219 	.word	.LDW_152145b0
                        2220 	.section	.debug_loc
                        2221 .LDW_152145b0:
0000001e 00000000*      2222 	.word	.LDW11-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000022 00000000*      2223 	.word	.LDW21-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000026 0100           2224 	.byte	1,0
00000028 6d             2225 	.byte	109
00000029 00000000       2226 	.word	0x0
0000002d 00000000       2227 	.word	0x0
                        2228 
                        2229 	.section	.debug_abbrev
00000146 07             2230 	.byte	7
00000147 34             2231 	.byte	52
00000148 00             2232 	.byte	0
00000149 030e           2233 	.byte	3,14
0000014b 3b0f           2234 	.byte	59,15
0000014d 390f           2235 	.byte	57,15
0000014f 3a0f           2236 	.byte	58,15
00000151 4910           2237 	.byte	73,16
00000153 3f0c           2238 	.byte	63,12
00000155 3c0c           2239 	.byte	60,12
00000157 0206           2240 	.byte	2,6
00000159 0000           2241 	.byte	0,0
                        2242 
                        2243 	.section	.debug_info
                        2244 .LDW_140b8840:
000002a7 07             2245 	.byte	7
                        2246 	.section	.debug_str
000001c9 753332627566   2247 	.strz	"u32buff"
000001cf 6600 
                        2248 	.section	.debug_info
000002a8 00000000*      2249 	.word	.Ldw_str_begin+457
000002ac 31             2250 	.byte	49
000002ad 0e             2251 	.byte	14
000002ae 01             2252 	.byte	1
000002af 00000000*      2253 	.word	.LDW_140b9840
000002b3 00             2254 	.byte	0
000002b4 00             2255 	.byte	0
000002b5 00000000*      2256 	.word	.LDW_152149b0
                        2257 	.section	.debug_loc
                        2258 .LDW_152149b0:
00000031 00000000*      2259 	.word	.LDW11-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000035 00000000*      2260 	.word	.LDW21-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000039 0100           2261 	.byte	1,0
0000003b 51             2262 	.byte	81
0000003c 00000000       2263 	.word	0x0
00000040 00000000       2264 	.word	0x0
                        2265 
                        2266 	.section	.debug_info
000002b9 00             2267 	.byte	0
                        2268 
000002ba 00             2269 	.byte	0
                        2270 
                        2271 .LDW_140ba320:
000002bb 18             2272 	.byte	24
                        2273 	.section	.debug_str
000001d1 4b65795f416c   2274 	.strz	"Key_All_Display"

                                                                      Page 42
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000001d7 6c5f44697370 
000001dd 6c617900 
                        2275 	.section	.debug_info
000002bc 00000000*      2276 	.word	.Ldw_str_begin+465
000002c0 5c             2277 	.byte	92
000002c1 06             2278 	.byte	6
000002c2 01             2279 	.byte	1
000002c3 00000000*      2280 	.word	_Key_All_Display
000002c7 00000000*      2281 	.word	___ghs_eofn_Key_All_Display
000002cb 01             2282 	.byte	1
000002cc 53             2283 	.byte	83
000002cd 02             2284 	.byte	2
000002ce 00             2285 	.byte	0
000002cf 828004         2286 	.byte	130,128,4
000002d2 00             2287 	.byte	0
000002d3 00             2288 	.byte	0
000002d4 00             2289 	.byte	0
000002d5 00             2290 	.byte	0
000002d6 01             2291 	.byte	1
000002d7 01             2292 	.byte	1
000002d8 00             2293 	.byte	0
000002d9 01             2294 	.byte	1
                        2295 
                        2296 	.section	.debug_frame
                        2297 .LDW_141abd60:
000000b4 00000000*      2298 	.word	.LDW_unq_6-.LDW_unq_5
                        2299 .LDW_unq_5:
000000b8 00000000*      2300 	.word	.LDW_14120090
000000bc 00000000*      2301 	.word	_Key_All_Display
000000c0 00000000*      2302 	.word	___ghs_eofn_Key_All_Display-_Key_All_Display
000000c4 01             2303 	.byte	1
000000c5 00000000*      2304 	.word	.LDW51
000000c9 00             2305 	.byte	0
000000ca 00             2306 	.byte	0
000000cb 00             2307 	.byte	0
                        2308 .LDW_unq_6:
                        2309 	.section	.debug_line
000002a0 000502         2310 	.byte	0,5,2
000002a3 00000000*      2311 	.word	_Key_All_Display
000002a7 06             2312 	.byte	6
000002a8 03             2313 	.byte	3
000002a9 de00           2314 	.byte	222,0
000002ab 02             2315 	.byte	2
000002ac 00             2316 	.byte	0
000002ad 01             2317 	.byte	1
000002ae 1c             2318 	.byte	28
000002af 02             2319 	.byte	2
000002b0 02             2320 	.byte	2
000002b1 000502         2321 	.byte	0,5,2
000002b4 00000000*      2322 	.word	.LDWlin18
000002b8 0d             2323 	.byte	13
000002b9 03             2324 	.byte	3
000002ba 7d             2325 	.byte	125
000002bb 02             2326 	.byte	2
000002bc 06             2327 	.byte	6
000002bd 01             2328 	.byte	1
000002be 000502         2329 	.byte	0,5,2
000002c1 00000000*      2330 	.word	.LDWlin19
000002c5 03             2331 	.byte	3
000002c6 04             2332 	.byte	4
000002c7 02             2333 	.byte	2

                                                                      Page 43
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000002c8 00             2334 	.byte	0
000002c9 01             2335 	.byte	1
000002ca 0b             2336 	.byte	11
000002cb 06             2337 	.byte	6
000002cc 000502         2338 	.byte	0,5,2
000002cf 00000000*      2339 	.word	___ghs_eofn_Key_All_Display
000002d3 02             2340 	.byte	2
000002d4 00             2341 	.byte	0
000002d5 000101         2342 	.byte	0,1,1
                        2343 	.section	.debug_info
                        2344 .LDW_140b90b0:
000002da 16             2345 	.byte	22
                        2346 	.section	.debug_str
000001e1 427566666572   2347 	.strz	"Buffer"
000001e7 00 
                        2348 	.section	.debug_info
000002db 00000000*      2349 	.word	.Ldw_str_begin+481
000002df 5c             2350 	.byte	92
000002e0 23             2351 	.byte	35
000002e1 01             2352 	.byte	1
000002e2 00000000*      2353 	.word	.LDW_140b9cf0
000002e6 00             2354 	.byte	0
000002e7 00000000*      2355 	.word	.LDW_152145f0
                        2356 	.section	.debug_loc
                        2357 .LDW_152145f0:
00000044 00000000*      2358 	.word	.LDW41-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000048 00000000*      2359 	.word	.LDW51-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000004c 0100           2360 	.byte	1,0
0000004e 56             2361 	.byte	86
0000004f 00000000       2362 	.word	0x0
00000053 00000000       2363 	.word	0x0
                        2364 
                        2365 	.section	.debug_info
                        2366 .LDW_140ba060:
000002eb 22             2367 	.byte	34
000002ec 00000000*      2368 	.word	.LDW41
000002f0 00000000*      2369 	.word	.LDW51
                        2370 
                        2371 .LDW_140b8de0:
000002f4 07             2372 	.byte	7
                        2373 	.section	.debug_str
000001e8 75386900       2374 	.strz	"u8i"
                        2375 	.section	.debug_info
000002f5 00000000*      2376 	.word	.Ldw_str_begin+488
000002f9 5e             2377 	.byte	94
000002fa 0d             2378 	.byte	13
000002fb 01             2379 	.byte	1
000002fc 00000000*      2380 	.word	.LDW_140b91d0
00000300 00             2381 	.byte	0
00000301 00             2382 	.byte	0
00000302 00000000*      2383 	.word	.LDW_15214810
                        2384 	.section	.debug_loc
                        2385 .LDW_15214810:
00000057 00000000*      2386 	.word	.LDW41-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000005b 00000000*      2387 	.word	.LDW51-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000005f 0100           2388 	.byte	1,0
00000061 51             2389 	.byte	81
00000062 00000000       2390 	.word	0x0
00000066 00000000       2391 	.word	0x0
                        2392 
                        2393 	.section	.debug_info

                                                                      Page 44
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                        2394 .LDW_140b8cc0:
00000306 07             2395 	.byte	7
                        2396 	.section	.debug_str
000001ec 7531367900     2397 	.strz	"u16y"
                        2398 	.section	.debug_info
00000307 00000000*      2399 	.word	.Ldw_str_begin+492
0000030b 5f             2400 	.byte	95
0000030c 0e             2401 	.byte	14
0000030d 01             2402 	.byte	1
0000030e 00000000*      2403 	.word	.LDW_140b8690
00000312 00             2404 	.byte	0
00000313 00             2405 	.byte	0
00000314 00000000*      2406 	.word	.LDW_15211050
                        2407 	.section	.debug_loc
                        2408 .LDW_15211050:
0000006a 00000000*      2409 	.word	.LDW41-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000006e 00000000*      2410 	.word	.LDW51-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000072 0100           2411 	.byte	1,0
00000074 52             2412 	.byte	82
00000075 00000000       2413 	.word	0x0
00000079 00000000       2414 	.word	0x0
                        2415 
                        2416 	.section	.debug_info
00000318 00             2417 	.byte	0
                        2418 
00000319 00             2419 	.byte	0
                        2420 
                        2421 .LDW_1416ce10:
0000031a 18             2422 	.byte	24
                        2423 	.section	.debug_str
000001f1 446973706c61   2424 	.strz	"Display_Init"
000001f7 795f496e6974 
000001fd 00 
                        2425 	.section	.debug_info
0000031b 00000000*      2426 	.word	.Ldw_str_begin+497
0000031f 68             2427 	.byte	104
00000320 06             2428 	.byte	6
00000321 01             2429 	.byte	1
00000322 00000000*      2430 	.word	_Display_Init
00000326 00000000*      2431 	.word	___ghs_eofn_Display_Init
0000032a 01             2432 	.byte	1
0000032b 53             2433 	.byte	83
0000032c 828080800a     2434 	.byte	130,128,128,128,10
00000331 08             2435 	.byte	8
00000332 828004         2436 	.byte	130,128,4
00000335 08             2437 	.byte	8
00000336 00             2438 	.byte	0
00000337 00             2439 	.byte	0
00000338 00             2440 	.byte	0
00000339 01             2441 	.byte	1
0000033a 01             2442 	.byte	1
0000033b 00             2443 	.byte	0
0000033c 01             2444 	.byte	1
                        2445 
                        2446 	.section	.debug_frame
                        2447 .LDW_141ab630:
000000cc 00000000*      2448 	.word	.LDW_unq_8-.LDW_unq_7
                        2449 .LDW_unq_7:
000000d0 00000000*      2450 	.word	.LDW_14120090
000000d4 00000000*      2451 	.word	_Display_Init
000000d8 00000000*      2452 	.word	___ghs_eofn_Display_Init-_Display_Init

                                                                      Page 45
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000000dc 46             2453 	.byte	70
000000dd 9f             2454 	.byte	159
000000de 04             2455 	.byte	4
000000df 44             2456 	.byte	68
000000e0 9d             2457 	.byte	157
000000e1 00             2458 	.byte	0
000000e2 01             2459 	.byte	1
000000e3 00000000*      2460 	.word	.LDW81
000000e7 44             2461 	.byte	68
000000e8 df             2462 	.byte	223
000000e9 44             2463 	.byte	68
000000ea dd             2464 	.byte	221
000000eb 00             2465 	.byte	0
                        2466 .LDW_unq_8:
                        2467 	.section	.debug_line
000002d8 000502         2468 	.byte	0,5,2
000002db 00000000*      2469 	.word	_Display_Init
000002df 06             2470 	.byte	6
000002e0 03             2471 	.byte	3
000002e1 e800           2472 	.byte	232,0
000002e3 02             2473 	.byte	2
000002e4 00             2474 	.byte	0
000002e5 01             2475 	.byte	1
000002e6 3d             2476 	.byte	61
000002e7 000502         2477 	.byte	0,5,2
000002ea 00000000*      2478 	.word	.LDWlin21
000002ee 0b             2479 	.byte	11
000002ef 000502         2480 	.byte	0,5,2
000002f2 00000000*      2481 	.word	.LDWlin22
000002f6 03             2482 	.byte	3
000002f7 06             2483 	.byte	6
000002f8 02             2484 	.byte	2
000002f9 00             2485 	.byte	0
000002fa 01             2486 	.byte	1
000002fb 06             2487 	.byte	6
000002fc 000502         2488 	.byte	0,5,2
000002ff 00000000*      2489 	.word	___ghs_eofn_Display_Init
00000303 02             2490 	.byte	2
00000304 00             2491 	.byte	0
00000305 000101         2492 	.byte	0,1,1
                        2493 	.section	.debug_info
                        2494 .LDW_140b8e70:
0000033d 16             2495 	.byte	22
                        2496 	.section	.debug_str
000001fe 753332546573   2497 	.strz	"u32TestCount"
00000204 74436f756e74 
0000020a 00 
                        2498 	.section	.debug_info
0000033e 00000000*      2499 	.word	.Ldw_str_begin+510
00000342 68             2500 	.byte	104
00000343 1c             2501 	.byte	28
00000344 01             2502 	.byte	1
00000345 00000000*      2503 	.word	.LDW_140b9840
00000349 00             2504 	.byte	0
0000034a 00000000*      2505 	.word	.LDW_15211230
                        2506 	.section	.debug_loc
                        2507 .LDW_15211230:
0000007d 00000000*      2508 	.word	.LDW61-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000081 00000000*      2509 	.word	.LDW71-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000085 0100           2510 	.byte	1,0
00000087 56             2511 	.byte	86

                                                                      Page 46
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000088 00000000*      2512 	.word	.LDW71-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000008c 00000000*      2513 	.word	.LDW81-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000090 0100           2514 	.byte	1,0
00000092 6d             2515 	.byte	109
00000093 00000000       2516 	.word	0x0
00000097 00000000       2517 	.word	0x0
                        2518 
                        2519 	.section	.debug_info
                        2520 .LDW_140ba150:
0000034e 22             2521 	.byte	34
0000034f 00000000*      2522 	.word	.LDW71
00000353 00000000*      2523 	.word	.LDW81
                        2524 
00000357 00             2525 	.byte	0
                        2526 
00000358 00             2527 	.byte	0
                        2528 
                        2529 .LDW_1416cf10:
00000359 18             2530 	.byte	24
                        2531 	.section	.debug_str
0000020b 526573756c74   2532 	.strz	"Result_Display"
00000211 5f446973706c 
00000217 617900 
                        2533 	.section	.debug_info
0000035a 00000000*      2534 	.word	.Ldw_str_begin+523
0000035e 75             2535 	.byte	117
0000035f 06             2536 	.byte	6
00000360 01             2537 	.byte	1
00000361 00000000*      2538 	.word	_Result_Display
00000365 00000000*      2539 	.word	___ghs_eofn_Result_Display
00000369 01             2540 	.byte	1
0000036a 53             2541 	.byte	83
0000036b 828080800a     2542 	.byte	130,128,128,128,10
00000370 08             2543 	.byte	8
00000371 828004         2544 	.byte	130,128,4
00000374 08             2545 	.byte	8
00000375 00             2546 	.byte	0
00000376 00             2547 	.byte	0
00000377 00             2548 	.byte	0
00000378 01             2549 	.byte	1
00000379 01             2550 	.byte	1
0000037a 00             2551 	.byte	0
0000037b 01             2552 	.byte	1
                        2553 
                        2554 	.section	.debug_frame
                        2555 .LDW_141ab4a0:
000000ec 00000000*      2556 	.word	.LDW_unq_a-.LDW_unq_9
                        2557 .LDW_unq_9:
000000f0 00000000*      2558 	.word	.LDW_14120090
000000f4 00000000*      2559 	.word	_Result_Display
000000f8 00000000*      2560 	.word	___ghs_eofn_Result_Display-_Result_Display
000000fc 46             2561 	.byte	70
000000fd 9f             2562 	.byte	159
000000fe 04             2563 	.byte	4
000000ff 44             2564 	.byte	68
00000100 9d             2565 	.byte	157
00000101 00             2566 	.byte	0
00000102 01             2567 	.byte	1
00000103 00000000*      2568 	.word	.LDW12
00000107 44             2569 	.byte	68
00000108 df             2570 	.byte	223

                                                                      Page 47
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000109 44             2571 	.byte	68
0000010a dd             2572 	.byte	221
0000010b 00             2573 	.byte	0
                        2574 .LDW_unq_a:
                        2575 	.section	.debug_line
00000308 000502         2576 	.byte	0,5,2
0000030b 00000000*      2577 	.word	_Result_Display
0000030f 06             2578 	.byte	6
00000310 03             2579 	.byte	3
00000311 f500           2580 	.byte	245,0
00000313 02             2581 	.byte	2
00000314 00             2582 	.byte	0
00000315 01             2583 	.byte	1
00000316 3d             2584 	.byte	61
00000317 000502         2585 	.byte	0,5,2
0000031a 00000000*      2586 	.word	.LDWlin24
0000031e 0b             2587 	.byte	11
0000031f 000502         2588 	.byte	0,5,2
00000322 00000000*      2589 	.word	.LDWlin25
00000326 0c             2590 	.byte	12
00000327 06             2591 	.byte	6
00000328 000502         2592 	.byte	0,5,2
0000032b 00000000*      2593 	.word	___ghs_eofn_Result_Display
0000032f 02             2594 	.byte	2
00000330 00             2595 	.byte	0
00000331 000101         2596 	.byte	0,1,1
                        2597 	.section	.debug_info
                        2598 .LDW_140b88d0:
0000037c 16             2599 	.byte	22
                        2600 	.section	.debug_str
0000021a 427566666572   2601 	.strz	"Buffer"
00000220 00 
                        2602 	.section	.debug_info
0000037d 00000000*      2603 	.word	.Ldw_str_begin+538
00000381 75             2604 	.byte	117
00000382 22             2605 	.byte	34
00000383 01             2606 	.byte	1
00000384 00000000*      2607 	.word	.LDW_140b9cf0
00000388 00             2608 	.byte	0
00000389 00000000*      2609 	.word	.LDW_15211730
                        2610 	.section	.debug_loc
                        2611 .LDW_15211730:
0000009b 00000000*      2612 	.word	.LDW91-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000009f 00000000*      2613 	.word	.LDW02-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000a3 0100           2614 	.byte	1,0
000000a5 56             2615 	.byte	86
000000a6 00000000*      2616 	.word	.LDW02-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000aa 00000000*      2617 	.word	.LDW12-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000ae 0100           2618 	.byte	1,0
000000b0 6d             2619 	.byte	109
000000b1 00000000       2620 	.word	0x0
000000b5 00000000       2621 	.word	0x0
                        2622 
                        2623 	.section	.debug_info
                        2624 .LDW_140ba0b0:
0000038d 22             2625 	.byte	34
0000038e 00000000*      2626 	.word	.LDW02
00000392 00000000*      2627 	.word	.LDW12
                        2628 
00000396 00             2629 	.byte	0
                        2630 

                                                                      Page 48
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000397 00             2631 	.byte	0
                        2632 
                        2633 .LDW_1417d050:
00000398 18             2634 	.byte	24
                        2635 	.section	.debug_str
00000221 4d5631546573   2636 	.strz	"MV1TestFlagInit"
00000227 74466c616749 
0000022d 6e697400 
                        2637 	.section	.debug_info
00000399 00000000*      2638 	.word	.Ldw_str_begin+545
0000039d 8001           2639 	.byte	128,1
0000039f 06             2640 	.byte	6
000003a0 01             2641 	.byte	1
000003a1 00000000*      2642 	.word	_MV1TestFlagInit
000003a5 00000000*      2643 	.word	___ghs_eofn_MV1TestFlagInit
000003a9 01             2644 	.byte	1
000003aa 53             2645 	.byte	83
000003ab 828080800a     2646 	.byte	130,128,128,128,10
000003b0 08             2647 	.byte	8
000003b1 828004         2648 	.byte	130,128,4
000003b4 08             2649 	.byte	8
000003b5 00             2650 	.byte	0
000003b6 00             2651 	.byte	0
000003b7 00             2652 	.byte	0
000003b8 01             2653 	.byte	1
000003b9 01             2654 	.byte	1
000003ba 00             2655 	.byte	0
000003bb 01             2656 	.byte	1
                        2657 
                        2658 	.section	.debug_frame
                        2659 .LDW_141ab540:
0000010c 00000000*      2660 	.word	.LDW_unq_c-.LDW_unq_b
                        2661 .LDW_unq_b:
00000110 00000000*      2662 	.word	.LDW_14120090
00000114 00000000*      2663 	.word	_MV1TestFlagInit
00000118 00000000*      2664 	.word	___ghs_eofn_MV1TestFlagInit-_MV1TestFlagInit
0000011c 46             2665 	.byte	70
0000011d 9f             2666 	.byte	159
0000011e 04             2667 	.byte	4
0000011f 44             2668 	.byte	68
00000120 9d             2669 	.byte	157
00000121 00             2670 	.byte	0
00000122 01             2671 	.byte	1
00000123 00000000*      2672 	.word	.LDW42
00000127 44             2673 	.byte	68
00000128 df             2674 	.byte	223
00000129 44             2675 	.byte	68
0000012a dd             2676 	.byte	221
0000012b 00             2677 	.byte	0
                        2678 .LDW_unq_c:
                        2679 	.section	.debug_line
00000334 000502         2680 	.byte	0,5,2
00000337 00000000*      2681 	.word	_MV1TestFlagInit
0000033b 06             2682 	.byte	6
0000033c 03             2683 	.byte	3
0000033d 8001           2684 	.byte	128,1
0000033f 02             2685 	.byte	2
00000340 00             2686 	.byte	0
00000341 01             2687 	.byte	1
00000342 34             2688 	.byte	52
00000343 000502         2689 	.byte	0,5,2

                                                                      Page 49
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000346 00000000*      2690 	.word	.LDWlin27
0000034a 0b             2691 	.byte	11
0000034b 000502         2692 	.byte	0,5,2
0000034e 00000000*      2693 	.word	.LDWlin28
00000352 0b             2694 	.byte	11
00000353 0b             2695 	.byte	11
00000354 13             2696 	.byte	19
00000355 000502         2697 	.byte	0,5,2
00000358 00000000*      2698 	.word	.LDWlin29
0000035c 0b             2699 	.byte	11
0000035d 000502         2700 	.byte	0,5,2
00000360 00000000*      2701 	.word	.LDWlin30
00000364 0b             2702 	.byte	11
00000365 0c             2703 	.byte	12
00000366 0b             2704 	.byte	11
00000367 000502         2705 	.byte	0,5,2
0000036a 00000000*      2706 	.word	.LDWlin31
0000036e 0b             2707 	.byte	11
0000036f 02             2708 	.byte	2
00000370 00             2709 	.byte	0
00000371 0b             2710 	.byte	11
00000372 000502         2711 	.byte	0,5,2
00000375 00000000*      2712 	.word	.LDWlin32
00000379 0b             2713 	.byte	11
0000037a 06             2714 	.byte	6
0000037b 000502         2715 	.byte	0,5,2
0000037e 00000000*      2716 	.word	___ghs_eofn_MV1TestFlagInit
00000382 02             2717 	.byte	2
00000383 00             2718 	.byte	0
00000384 000101         2719 	.byte	0,1,1
                        2720 	.section	.debug_info
                        2721 .LDW_140ba240:
000003bc 22             2722 	.byte	34
000003bd 00000000*      2723 	.word	.LDW32
000003c1 00000000*      2724 	.word	.LDW42
                        2725 
                        2726 .LDW_140b8450:
000003c5 07             2727 	.byte	7
                        2728 	.section	.debug_str
00000231 753332546573   2729 	.strz	"u32TestFlag"
00000237 74466c616700 
                        2730 	.section	.debug_info
000003c6 00000000*      2731 	.word	.Ldw_str_begin+561
000003ca 8201           2732 	.byte	130,1
000003cc 0e             2733 	.byte	14
000003cd 01             2734 	.byte	1
000003ce 00000000*      2735 	.word	.LDW_140b9840
000003d2 00             2736 	.byte	0
000003d3 00             2737 	.byte	0
000003d4 00000000*      2738 	.word	.LDW_152114f0
                        2739 	.section	.debug_loc
                        2740 .LDW_152114f0:
000000b9 00000000*      2741 	.word	.LDW32-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000bd 00000000*      2742 	.word	.LDW42-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000c1 0100           2743 	.byte	1,0
000000c3 6d             2744 	.byte	109
000000c4 00000000       2745 	.word	0x0
000000c8 00000000       2746 	.word	0x0
                        2747 
                        2748 	.section	.debug_info
000003d8 00             2749 	.byte	0

                                                                      Page 50
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                        2750 
000003d9 00             2751 	.byte	0
                        2752 
                        2753 .LDW_1419f180:
000003da 18             2754 	.byte	24
                        2755 	.section	.debug_str
0000023d 4f686d53616d   2756 	.strz	"OhmSamplingAndDisplay"
00000243 706c696e6741 
00000249 6e6444697370 
0000024f 6c617900 
                        2757 	.section	.debug_info
000003db 00000000*      2758 	.word	.Ldw_str_begin+573
000003df 9101           2759 	.byte	145,1
000003e1 06             2760 	.byte	6
000003e2 01             2761 	.byte	1
000003e3 00000000*      2762 	.word	_OhmSamplingAndDisplay
000003e7 00000000*      2763 	.word	___ghs_eofn_OhmSamplingAndDisplay
000003eb 01             2764 	.byte	1
000003ec 53             2765 	.byte	83
000003ed 828080f80b     2766 	.byte	130,128,128,248,11
000003f2 1c             2767 	.byte	28
000003f3 828004         2768 	.byte	130,128,4
000003f6 d801           2769 	.byte	216,1
000003f8 00             2770 	.byte	0
000003f9 00             2771 	.byte	0
000003fa 00             2772 	.byte	0
000003fb 01             2773 	.byte	1
000003fc 01             2774 	.byte	1
000003fd 00             2775 	.byte	0
000003fe 01             2776 	.byte	1
                        2777 
                        2778 	.section	.debug_frame
                        2779 .LDW_141ab1d0:
0000012c 00000000*      2780 	.word	.LDW_unq_e-.LDW_unq_d
                        2781 .LDW_unq_d:
00000130 00000000*      2782 	.word	.LDW_14120090
00000134 00000000*      2783 	.word	_OhmSamplingAndDisplay
00000138 00000000*      2784 	.word	___ghs_eofn_OhmSamplingAndDisplay-_OhmSamplingAndDisplay
0000013c 48             2785 	.byte	72
0000013d 9f             2786 	.byte	159
0000013e d401           2787 	.byte	212,1
00000140 44             2788 	.byte	68
00000141 98             2789 	.byte	152
00000142 d001           2790 	.byte	208,1
00000144 44             2791 	.byte	68
00000145 99             2792 	.byte	153
00000146 cc01           2793 	.byte	204,1
00000148 44             2794 	.byte	68
00000149 9a             2795 	.byte	154
0000014a c801           2796 	.byte	200,1
0000014c 44             2797 	.byte	68
0000014d 9b             2798 	.byte	155
0000014e c401           2799 	.byte	196,1
00000150 44             2800 	.byte	68
00000151 9c             2801 	.byte	156
00000152 c001           2802 	.byte	192,1
00000154 44             2803 	.byte	68
00000155 9d             2804 	.byte	157
00000156 bc01           2805 	.byte	188,1
00000158 01             2806 	.byte	1
00000159 00000000*      2807 	.word	.LDW72

                                                                      Page 51
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000015d 44             2808 	.byte	68
0000015e df             2809 	.byte	223
0000015f 44             2810 	.byte	68
00000160 dd             2811 	.byte	221
00000161 44             2812 	.byte	68
00000162 dc             2813 	.byte	220
00000163 44             2814 	.byte	68
00000164 db             2815 	.byte	219
00000165 44             2816 	.byte	68
00000166 da             2817 	.byte	218
00000167 44             2818 	.byte	68
00000168 d9             2819 	.byte	217
00000169 44             2820 	.byte	68
0000016a d8             2821 	.byte	216
0000016b 00             2822 	.byte	0
                        2823 .LDW_unq_e:
                        2824 	.section	.debug_line
00000387 000502         2825 	.byte	0,5,2
0000038a 00000000*      2826 	.word	_OhmSamplingAndDisplay
0000038e 06             2827 	.byte	6
0000038f 03             2828 	.byte	3
00000390 9101           2829 	.byte	145,1
00000392 02             2830 	.byte	2
00000393 00             2831 	.byte	0
00000394 01             2832 	.byte	1
00000395 03             2833 	.byte	3
00000396 07             2834 	.byte	7
00000397 02             2835 	.byte	2
00000398 20             2836 	.byte	32
00000399 01             2837 	.byte	1
0000039a 000502         2838 	.byte	0,5,2
0000039d 00000000*      2839 	.word	.LDWlin34
000003a1 0b             2840 	.byte	11
000003a2 000502         2841 	.byte	0,5,2
000003a5 00000000*      2842 	.word	.LDWlin35
000003a9 0c             2843 	.byte	12
000003aa 02             2844 	.byte	2
000003ab 02             2845 	.byte	2
000003ac 000502         2846 	.byte	0,5,2
000003af 00000000*      2847 	.word	.LDWlin36
000003b3 0c             2848 	.byte	12
000003b4 000502         2849 	.byte	0,5,2
000003b7 00000000*      2850 	.word	.LDWlin37
000003bb 03             2851 	.byte	3
000003bc 7e             2852 	.byte	126
000003bd 02             2853 	.byte	2
000003be 00             2854 	.byte	0
000003bf 01             2855 	.byte	1
000003c0 000502         2856 	.byte	0,5,2
000003c3 00000000*      2857 	.word	.LDWlin38
000003c7 0d             2858 	.byte	13
000003c8 0c             2859 	.byte	12
000003c9 02             2860 	.byte	2
000003ca 02             2861 	.byte	2
000003cb 000502         2862 	.byte	0,5,2
000003ce 00000000*      2863 	.word	.LDWlin39
000003d2 0c             2864 	.byte	12
000003d3 02             2865 	.byte	2
000003d4 02             2866 	.byte	2
000003d5 000502         2867 	.byte	0,5,2
000003d8 00000000*      2868 	.word	.LDWlin40

                                                                      Page 52
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000003dc 0c             2869 	.byte	12
000003dd 000502         2870 	.byte	0,5,2
000003e0 00000000*      2871 	.word	.LDWlin41
000003e4 03             2872 	.byte	3
000003e5 7e             2873 	.byte	126
000003e6 02             2874 	.byte	2
000003e7 00             2875 	.byte	0
000003e8 01             2876 	.byte	1
000003e9 000502         2877 	.byte	0,5,2
000003ec 00000000*      2878 	.word	.LDWlin42
000003f0 0d             2879 	.byte	13
000003f1 03             2880 	.byte	3
000003f2 7b             2881 	.byte	123
000003f3 02             2882 	.byte	2
000003f4 00             2883 	.byte	0
000003f5 01             2884 	.byte	1
000003f6 000502         2885 	.byte	0,5,2
000003f9 00000000*      2886 	.word	.LDWlin43
000003fd 03             2887 	.byte	3
000003fe 06             2888 	.byte	6
000003ff 02             2889 	.byte	2
00000400 00             2890 	.byte	0
00000401 01             2891 	.byte	1
00000402 0c             2892 	.byte	12
00000403 02             2893 	.byte	2
00000404 02             2894 	.byte	2
00000405 000502         2895 	.byte	0,5,2
00000408 00000000*      2896 	.word	.LDWlin44
0000040c 0c             2897 	.byte	12
0000040d 000502         2898 	.byte	0,5,2
00000410 00000000*      2899 	.word	.LDWlin45
00000414 03             2900 	.byte	3
00000415 7e             2901 	.byte	126
00000416 02             2902 	.byte	2
00000417 00             2903 	.byte	0
00000418 01             2904 	.byte	1
00000419 000502         2905 	.byte	0,5,2
0000041c 00000000*      2906 	.word	.LDWlin46
00000420 0d             2907 	.byte	13
00000421 0d             2908 	.byte	13
00000422 000502         2909 	.byte	0,5,2
00000425 00000000*      2910 	.word	.LDWlin47
00000429 0b             2911 	.byte	11
0000042a 0b             2912 	.byte	11
0000042b 13             2913 	.byte	19
0000042c 000502         2914 	.byte	0,5,2
0000042f 00000000*      2915 	.word	.LDWlin48
00000433 0b             2916 	.byte	11
00000434 000502         2917 	.byte	0,5,2
00000437 00000000*      2918 	.word	.LDWlin49
0000043b 0b             2919 	.byte	11
0000043c 0c             2920 	.byte	12
0000043d 0b             2921 	.byte	11
0000043e 000502         2922 	.byte	0,5,2
00000441 00000000*      2923 	.word	.LDWlin50
00000445 0b             2924 	.byte	11
00000446 02             2925 	.byte	2
00000447 00             2926 	.byte	0
00000448 0c             2927 	.byte	12
00000449 23             2928 	.byte	35
0000044a 02             2929 	.byte	2

                                                                      Page 53
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000044b 02             2930 	.byte	2
0000044c 000502         2931 	.byte	0,5,2
0000044f 00000000*      2932 	.word	.LDWlin51
00000453 0c             2933 	.byte	12
00000454 000502         2934 	.byte	0,5,2
00000457 00000000*      2935 	.word	.LDWlin52
0000045b 0b             2936 	.byte	11
0000045c 0b             2937 	.byte	11
0000045d 000502         2938 	.byte	0,5,2
00000460 00000000*      2939 	.word	.LDWlin53
00000464 0b             2940 	.byte	11
00000465 0c             2941 	.byte	12
00000466 0b             2942 	.byte	11
00000467 4b             2943 	.byte	75
00000468 23             2944 	.byte	35
00000469 02             2945 	.byte	2
0000046a 00             2946 	.byte	0
0000046b 0b             2947 	.byte	11
0000046c 000502         2948 	.byte	0,5,2
0000046f 00000000*      2949 	.word	.LDWlin54
00000473 03             2950 	.byte	3
00000474 75             2951 	.byte	117
00000475 02             2952 	.byte	2
00000476 00             2953 	.byte	0
00000477 01             2954 	.byte	1
00000478 000502         2955 	.byte	0,5,2
0000047b 00000000*      2956 	.word	.LDWlin55
0000047f 03             2957 	.byte	3
00000480 0c             2958 	.byte	12
00000481 02             2959 	.byte	2
00000482 00             2960 	.byte	0
00000483 01             2961 	.byte	1
00000484 03             2962 	.byte	3
00000485 04             2963 	.byte	4
00000486 02             2964 	.byte	2
00000487 00             2965 	.byte	0
00000488 01             2966 	.byte	1
00000489 000502         2967 	.byte	0,5,2
0000048c 00000000*      2968 	.word	.LDWlin56
00000490 0b             2969 	.byte	11
00000491 06             2970 	.byte	6
00000492 000502         2971 	.byte	0,5,2
00000495 00000000*      2972 	.word	___ghs_eofn_OhmSamplingAndDisplay
00000499 02             2973 	.byte	2
0000049a 00             2974 	.byte	0
0000049b 000101         2975 	.byte	0,1,1
                        2976 	.section	.debug_info
                        2977 .LDW_140b9d90:
000003ff 22             2978 	.byte	34
00000400 00000000*      2979 	.word	.LDW62
00000404 00000000*      2980 	.word	.LDW72
                        2981 
                        2982 .LDW_140b9260:
00000408 07             2983 	.byte	7
                        2984 	.section	.debug_str
00000253 75363453616d   2985 	.strz	"u64SamplingBuffer"
00000259 706c696e6742 
0000025f 756666657200 
                        2986 	.section	.debug_info
00000409 00000000*      2987 	.word	.Ldw_str_begin+595
0000040d 9301           2988 	.byte	147,1

                                                                      Page 54
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
0000040f 0e             2989 	.byte	14
00000410 01             2990 	.byte	1
00000411 00000000*      2991 	.word	.LDW_13f16b00
00000415 00             2992 	.byte	0
00000416 00             2993 	.byte	0
00000417 00000000*      2994 	.word	.LDW_15212510
                        2995 	.section	.debug_loc
                        2996 .LDW_15212510:
000000cc 00000000*      2997 	.word	.LDW62-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000d0 00000000*      2998 	.word	.LDW72-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000d4 0300           2999 	.byte	3,0
000000d6 73             3000 	.byte	115
000000d7 cc00           3001 	.byte	204,0
000000d9 00000000       3002 	.word	0x0
000000dd 00000000       3003 	.word	0x0
                        3004 
                        3005 	.section	.debug_info
                        3006 .LDW_140b83c0:
0000041b 07             3007 	.byte	7
                        3008 	.section	.debug_str
00000265 75386900       3009 	.strz	"u8i"
                        3010 	.section	.debug_info
0000041c 00000000*      3011 	.word	.Ldw_str_begin+613
00000420 9401           3012 	.byte	148,1
00000422 0d             3013 	.byte	13
00000423 01             3014 	.byte	1
00000424 00000000*      3015 	.word	.LDW_140b91d0
00000428 00             3016 	.byte	0
00000429 00             3017 	.byte	0
0000042a 00000000*      3018 	.word	.LDW_15212330
                        3019 	.section	.debug_loc
                        3020 .LDW_15212330:
000000e1 00000000*      3021 	.word	.LDW62-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000e5 00000000*      3022 	.word	.LDW72-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000e9 0100           3023 	.byte	1,0
000000eb 6b             3024 	.byte	107
000000ec 00000000       3025 	.word	0x0
000000f0 00000000       3026 	.word	0x0
                        3027 
                        3028 	.section	.debug_info
                        3029 .LDW_140b9140:
0000042e 07             3030 	.byte	7
                        3031 	.section	.debug_str
00000269 753853616d70   3032 	.strz	"u8SamplingCount"
0000026f 6c696e67436f 
00000275 756e7400 
                        3033 	.section	.debug_info
0000042f 00000000*      3034 	.word	.Ldw_str_begin+617
00000433 9401           3035 	.byte	148,1
00000435 11             3036 	.byte	17
00000436 01             3037 	.byte	1
00000437 00000000*      3038 	.word	.LDW_140b91d0
0000043b 00             3039 	.byte	0
0000043c 00             3040 	.byte	0
0000043d 00000000*      3041 	.word	.LDW_15212630
                        3042 	.section	.debug_loc
                        3043 .LDW_15212630:
000000f4 00000000*      3044 	.word	.LDW62-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000f8 00000000*      3045 	.word	.LDW72-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
000000fc 0100           3046 	.byte	1,0
000000fe 69             3047 	.byte	105

                                                                      Page 55
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
000000ff 00000000       3048 	.word	0x0
00000103 00000000       3049 	.word	0x0
                        3050 
                        3051 	.section	.debug_info
                        3052 .LDW_140b8f90:
00000441 07             3053 	.byte	7
                        3054 	.section	.debug_str
00000279 753332546573   3055 	.strz	"u32TestFlag"
0000027f 74466c616700 
                        3056 	.section	.debug_info
00000442 00000000*      3057 	.word	.Ldw_str_begin+633
00000446 9501           3058 	.byte	149,1
00000448 0e             3059 	.byte	14
00000449 01             3060 	.byte	1
0000044a 00000000*      3061 	.word	.LDW_140b9840
0000044e 00             3062 	.byte	0
0000044f 00             3063 	.byte	0
00000450 00000000*      3064 	.word	.LDW_15212a70
                        3065 	.section	.debug_loc
                        3066 .LDW_15212a70:
00000107 00000000*      3067 	.word	.LDW62-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000010b 00000000*      3068 	.word	.LDW72-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000010f 0100           3069 	.byte	1,0
00000111 6a             3070 	.byte	106
00000112 00000000       3071 	.word	0x0
00000116 00000000       3072 	.word	0x0
                        3073 
                        3074 	.section	.debug_info
                        3075 .LDW_140b8720:
00000454 07             3076 	.byte	7
                        3077 	.section	.debug_str
00000285 427566666572   3078 	.strz	"Buffer"
0000028b 00 
                        3079 	.section	.debug_info
00000455 00000000*      3080 	.word	.Ldw_str_begin+645
00000459 9601           3081 	.byte	150,1
0000045b 11             3082 	.byte	17
0000045c 01             3083 	.byte	1
0000045d 00000000*      3084 	.word	.LDW_140b89f0
00000461 00             3085 	.byte	0
00000462 00             3086 	.byte	0
00000463 00000000*      3087 	.word	.LDW_152122f0
                        3088 	.section	.debug_loc
                        3089 .LDW_152122f0:
0000011a 00000000*      3090 	.word	.LDW62-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
0000011e 00000000*      3091 	.word	.LDW72-..bof.Z.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs.5Cobj.5CMV1_Touch_test...5A.3A.5CD.5Cproject.5CFX12.5C.B4.F8.C6.C1.B9.A4.D7.B0.B0.E5.5CFX12_test.5Cghs..5F2BC799..0
00000122 0200           3092 	.byte	2,0
00000124 73             3093 	.byte	115
00000125 00             3094 	.byte	0
00000126 00000000       3095 	.word	0x0
0000012a 00000000       3096 	.word	0x0
                        3097 
                        3098 	.section	.debug_info
00000467 00             3099 	.byte	0
                        3100 
00000468 00             3101 	.byte	0
                        3102 
00000469 00             3103 	.byte	0
                        3104 
                        3105 	.section	.debug_line
                        3106 .Ldw_line_end:

                                                                      Page 56
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
                        3107 	.section	.debug_macinfo
00000000 01             3108 	.byte	1
00000001 00             3109 	.byte	0
00000002 5f5f4748535f   3110 	.strz	"__GHS__ 1"
00000008 5f203100 
0000000c 03             3111 	.byte	3
0000000d 00             3112 	.byte	0
0000000e 01             3113 	.byte	1
0000000f 03             3114 	.byte	3
00000010 07             3115 	.byte	7
00000011 02             3116 	.byte	2
00000012 03             3117 	.byte	3
00000013 12             3118 	.byte	18
00000014 03             3119 	.byte	3
00000015 03             3120 	.byte	3
00000016 05             3121 	.byte	5
00000017 04             3122 	.byte	4
00000018 04             3123 	.byte	4
00000019 04             3124 	.byte	4
0000001a 03             3125 	.byte	3
0000001b 13             3126 	.byte	19
0000001c 05             3127 	.byte	5
0000001d 04             3128 	.byte	4
0000001e 01             3129 	.byte	1
0000001f 2c             3130 	.byte	44
00000020 4144435f5349   3131 	.strz	"ADC_SIGNAL_CH_NUMBER (14U)"
00000026 474e414c5f43 
0000002c 485f4e554d42 
00000032 455220283134 
00000038 552900 
0000003b 04             3132 	.byte	4
0000003c 03             3133 	.byte	3
0000003d 08             3134 	.byte	8
0000003e 06             3135 	.byte	6
0000003f 01             3136 	.byte	1
00000040 19             3137 	.byte	25
00000041 5446545f4c43   3138 	.strz	"TFT_LCD_REQ_FIFO_MAX_DEPTH 100"
00000047 445f5245515f 
0000004d 4649464f5f4d 
00000053 41585f444550 
00000059 544820313030 
0000005f 00 
00000060 04             3139 	.byte	4
00000061 03             3140 	.byte	3
00000062 09             3141 	.byte	9
00000063 07             3142 	.byte	7
00000064 04             3143 	.byte	4
00000065 03             3144 	.byte	3
00000066 0a             3145 	.byte	10
00000067 08             3146 	.byte	8
00000068 04             3147 	.byte	4
00000069 03             3148 	.byte	3
0000006a 0b             3149 	.byte	11
0000006b 09             3150 	.byte	9
0000006c 04             3151 	.byte	4
0000006d 01             3152 	.byte	1
0000006e 0d             3153 	.byte	13
0000006f 53414d504c49   3154 	.strz	"SAMPLING_COUNT 100"
00000075 4e475f434f55 
0000007b 4e5420313030 
00000081 00 

                                                                      Page 57
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00007fc1.si
00000082 01             3155 	.byte	1
00000083 0e             3156 	.byte	14
00000084 504153532030   3157 	.strz	"PASS 0"
0000008a 00 
0000008b 01             3158 	.byte	1
0000008c 0f             3159 	.byte	15
0000008d 4e47203100     3160 	.strz	"NG 1"
00000092 04             3161 	.byte	4
00000093 00             3162 	.byte	0
                        3163 	.section	.debug_abbrev
0000015b 00             3164 	.byte	0
                        3165 	.section	.debug_info
                        3166 .Ldw_end:
                        3167 .rh850_flags REGMODE32,DATA_ALIGN8,GP_FIX,EP_NONFIX,TP_FIX,REG2_NONRESERVE,G3KH,SDA_EXTRA_REGS_0