Internal_EEPROM.lst 190 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 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090
                                                                      Page 1
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.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 -nofpu_double -no_v850_simd -nomacro -patch_dbo=Z:\850\工作资料\C673检测台\电机电机电机\检测台\testbench\福田W1-02(高配)检测台\ghs\obj\Internal_EEPROM.dbo -source=Internal_EEPROM.c -o .\obj\gh_00002ro2.o -list=.\list\Internal_EEPROM.lst C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si 
Original File: C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
Source File: Internal_EEPROM.c
Directory: Z:\850\工作资料\C673检测台\电机电机电机\检测台\testbench\福田W1-02(高配)检测台\ghs
Host OS: Windows 7 Service Pack 1
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 -DPlatform_RH850
                          10 --		-DPlatform_32Bit -nothreshold -passsource -pack=4 --diag_suppress
                          11 --		1 -fsingle -Onone -O0 -G -filetype.c
                          12 --		..\source\Appliciation\Internal_EEPROM.c -o
                          13 --		.\obj\Internal_EEPROM.o
                          14 --Source File:   ..\source\Appliciation\Internal_EEPROM.c
                          15 --Directory:     
                          16 --		Z:\850\工作资料\C673检测台\电机电机电机\检测台\testbench\福田W1-02(高配)检测台\ghs
                          17 --Compile Date:  Wed Aug 05 16:00:01 2020
                          18 --Host OS:       Win64
                          19 --Version:       C-RH850 2019.5.5 RELEASE VERSION
                          20 --Release:       Compiler v2019.5.5
                          21 --Revision Date: Tue Oct 01 10:27:05 2019
                          22 --Release Date:  Tue Oct 01 11:51:35 2019
                          23 -- ecom  -g -w
                          24 
                          25 --1: #include "Internal_EEPROM.h"

                          26 --2: #include "R_TypeDefs.h"

                          27 --3: #include "R_FDL.h"

                          28 --4: #include "FDL_Descriptor.h"

                          29 --5: #include "R_EEL.h"

                          30 --6: #include "EEL_Descriptor.h"

                          31 --7: #include "target.h"

                          32 --8: #include "fdl_user.h"

                          33 --9: #include "rh850_macros.h"

                          34 --10: r_eel_status_t reqStat;

                          35 --12: // demo code

                          36 --13: // for ( int i = 1; i < 65; i++ )

                          37 --14: // {

                          38 --16: //     for ( int i = 0; i < 128; i++ )

                          39 --17: //     {

                          40 --18: //         read [ i ]  = 0;

                          41 --19: //         write [ i ] = i;

                          42 --20: //     }

                          43 --21: //     Internal_EEL_Write(i, write, 64);

                          44 --22: //     Internal_EEL_Read(i, read, 64);

                          45 --23: // }

                          46 --25: extern r_eel_status_t EX_EE_INIT(void);

                          47 --26: extern void           SampleApp_EEL_HdrLoop(r_eel_request_t *req);

                          48 --27: extern void           SampleApp_EEL_ErrorHdr(r_eel_status_t stat);

                          49 --29: void Internal_EEPROM_OPEN(void)

                          50 	.text

                                                                      Page 2
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                          51 ..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0::
                          52 	.align	2
                          53 	.align	2
                          54 ..gh.f.a.2.e.0:
                          55 	.type	..gh.f.a.2.e.0,@object
                          56 	.size	..gh.f.a.2.e.0,0
                          57 	.global	_Internal_EEPROM_OPEN
                          58 _Internal_EEPROM_OPEN:
                          59 .LDW01:
00000000 5c1a             60 	add	-4,sp
00000002 63ff0100         61 	st.w	lp,0[sp]
                          62 --	    .bf
                          63 .LDW11:
                          64 --30: {

                          65 --31:     FDL_Open( );

                          66 	jarl	_FDL_Open,lp
                          66 <EXPANSION BEGIN>
                          66 jarl22 _FDL_Open , lp 
00000006 80ff0000*        66 <EXPANSION END>
                          67 --32: }

                          68 --	    .ef
                          69 .LDW21:
                          70 --line32
                          71 ..lin.f6276498..c4f22999.0_1::
                          72 .LDWlin1:
0000000a 23ff0100         73 	ld.w	0[sp],lp
0000000e 441a             74 	add	4,sp
                          75 	.jumptype return
00000010 7f00             76 	jmp	[lp]
                          77 ..lin.f6276498..c4f22999.0_2::
                          78 .LDWlin2:
                          79 	.global	___ghs_eofn_Internal_EEPROM_OPEN
                          80 ___ghs_eofn_Internal_EEPROM_OPEN:
                          81 	.type	_Internal_EEPROM_OPEN,@function
                          82 	.size	_Internal_EEPROM_OPEN,.-_Internal_EEPROM_OPEN
                          83 	.align	2
                          84 
                          85 	.data
                          86 	.text
                          87 
                          88 
                          89 --34: void Internal_EEPROM_CLOSE(void)

                          90 	.align	2
                          91 	.align	2
                          92 	.align	2
                          93 ..gh.f.a.2.e.1:
                          94 	.type	..gh.f.a.2.e.1,@object
                          95 	.size	..gh.f.a.2.e.1,0
                          96 	.global	_Internal_EEPROM_CLOSE
                          97 _Internal_EEPROM_CLOSE:
                          98 .LDW31:
00000012 5c1a             99 	add	-4,sp
00000014 63ff0100        100 	st.w	lp,0[sp]
                         101 --	    .bf
                         102 .LDW41:
                         103 --35: {

                         104 --36:     FDL_Close( );

                         105 	jarl	_FDL_Close,lp
                         105 <EXPANSION BEGIN>
                         105 jarl22 _FDL_Close , lp 
00000018 80ff0000*       105 <EXPANSION END>

                                                                      Page 3
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                         106 --37: }

                         107 --	    .ef
                         108 .LDW51:
                         109 --line37
                         110 ..lin.f6276498..625c309d.0_3::
                         111 .LDWlin3:
0000001c 23ff0100        112 	ld.w	0[sp],lp
00000020 441a            113 	add	4,sp
                         114 	.jumptype return
00000022 7f00            115 	jmp	[lp]
                         116 ..lin.f6276498..625c309d.0_4::
                         117 .LDWlin4:
                         118 	.global	___ghs_eofn_Internal_EEPROM_CLOSE
                         119 ___ghs_eofn_Internal_EEPROM_CLOSE:
                         120 	.type	_Internal_EEPROM_CLOSE,@function
                         121 	.size	_Internal_EEPROM_CLOSE,.-_Internal_EEPROM_CLOSE
                         122 	.align	2
                         123 
                         124 	.data
                         125 	.text
                         126 
                         127 
                         128 --39: void Internal_EEL_Init(void)

                         129 	.align	2
                         130 	.align	2
                         131 	.align	2
                         132 	.align	2
                         133 ..gh.f.a.2.e.2:
                         134 	.type	..gh.f.a.2.e.2,@object
                         135 	.size	..gh.f.a.2.e.2,0
                         136 	.global	_Internal_EEL_Init
                         137 _Internal_EEL_Init:
                         138 .LDW61:
00000024 031edcff        139 	addi	-36,sp,sp
00000028 63ff2100        140 	st.w	lp,32[sp]
                         141 --	    .bf
                         142 .LDW71:
                         143 --40: {

                         144 --41:     r_eel_request_t       myReq;

                         145 --42:     r_eel_driver_status_t driverStatus;

                         146 --43:     uint32_t              i;

                         147 --44:     reqStat = EX_EE_INIT( );

                         148 	jarl	_EX_EE_INIT,lp
                         148 <EXPANSION BEGIN>
                         148 jarl22 _EX_EE_INIT , lp 
0000002c 80ff0000*       148 <EXPANSION END>
00000030 2b0600000000*   149 	mov	_reqStat,r11
00000036 6b570100        150 	st.w	r10,0[r11]
                         151 --45:     if ( R_EEL_ERR_POOL_INCONSISTENT == reqStat )

                         152 --line45
                         153 ..lin.f6276498..318c3369.0_5::
                         154 .LDWlin5:
0000003a 2c0600000000*   155 	mov	_reqStat,r12
00000040 2c0f0100        156 	ld.w	0[r12],r1
00000044 0106d7ff        157 	addi	-41,r1,zero
00000048 ba15*           158 	bne	.L69
                         159 --46:     {

                         160 --47:         myReq.command_enu = R_EEL_CMD_FORMAT;

                         161 --line47
                         162 ..lin.f6276498..318c3369.0_6::
                         163 .LDWlin6:

                                                                      Page 4
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
0000004a 070a            164 	mov	7,r1
0000004c 630f1900        165 	st.w	r1,24[sp]
                         166 --48:         R_EEL_Execute(&myReq);

00000050 23360c00        167 	movea	12,sp,r6
                         168 	jarl	_R_EEL_Execute,lp
                         168 <EXPANSION BEGIN>
                         168 jarl22 _R_EEL_Execute , lp 
00000054 80ff0000*       168 <EXPANSION END>
                         169 --49:         SampleApp_EEL_HdrLoop(&myReq);

                         170 --line49
                         171 ..lin.f6276498..318c3369.0_7::
                         172 .LDWlin7:
00000058 23360c00        173 	movea	12,sp,r6
                         174 	jarl	_SampleApp_EEL_HdrLoop,lp
                         174 <EXPANSION BEGIN>
                         174 jarl22 _SampleApp_EEL_HdrLoop , lp 
0000005c 80ff0000*       174 <EXPANSION END>
                         175 --51:         /* Format procedure ends with EEL re-init */

                         176 --52:         reqStat = EX_EE_INIT( );

                         177 --line52
                         178 ..lin.f6276498..318c3369.0_8::
                         179 .LDWlin8:
                         180 	jarl	_EX_EE_INIT,lp
                         180 <EXPANSION BEGIN>
                         180 jarl22 _EX_EE_INIT , lp 
00000060 80ff0000*       180 <EXPANSION END>
00000064 2b0600000000*   181 	mov	_reqStat,r11
0000006a 6b570100        182 	st.w	r10,0[r11]
                         183 .L69:
                         184 --53:     }

                         185 --54:     SampleApp_EEL_ErrorHdr(reqStat);

                         186 --line54
                         187 ..lin.f6276498..318c3369.0_9::
                         188 .LDWlin9:
0000006e 2b0600000000*   189 	mov	_reqStat,r11
00000074 2b370100        190 	ld.w	0[r11],r6
                         191 	jarl	_SampleApp_EEL_ErrorHdr,lp
                         191 <EXPANSION BEGIN>
                         191 jarl22 _SampleApp_EEL_ErrorHdr , lp 
00000078 80ff0000*       191 <EXPANSION END>
                         192 --55:     /* ------------------------------------------------------------------------------------------

                         193 --56:         Wait for fully operational and access unlock

                         194 --57:        ------------------------------------------------------------------------------------------ */

                         195 --58:     do

                         196 .L73:
                         197 --59:     {

                         198 --60:         R_EEL_Handler( );

                         199 --line60
                         200 ..lin.f6276498..318c3369.0_10::
                         201 .LDWlin10:
                         202 	jarl	_R_EEL_Handler,lp
                         202 <EXPANSION BEGIN>
                         202 jarl22 _R_EEL_Handler , lp 
0000007c 80ff0000*       202 <EXPANSION END>
                         203 --61:         R_EEL_GetDriverStatus(&driverStatus);

                         204 --line61
                         205 ..lin.f6276498..318c3369.0_11::
                         206 .LDWlin11:
00000080 23360000        207 	movea	0,sp,r6
                         208 	jarl	_R_EEL_GetDriverStatus,lp
                         208 <EXPANSION BEGIN>

                                                                      Page 5
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                         208 jarl22 _R_EEL_GetDriverStatus , lp 
00000084 80ff0000*       208 <EXPANSION END>
                         209 --line64
                         210 ..lin.f6276498..318c3369.0_12::
                         211 .LDWlin12:
00000088 230f0100        212 	ld.w	0[sp],r1
0000008c 630a            213 	cmp	3,r1
0000008e f2f5*           214 	be	.L73
                         215 --62:     }

                         216 --63:     /* Wait until the system is completely up and running (or error) */

                         217 --64:     while ( R_EEL_OPERATION_STARTUP == driverStatus.operationStatus_enu );

                         218 --65: }

                         219 --	    .ef
                         220 .LDW81:
                         221 --line65
                         222 ..lin.f6276498..318c3369.0_13::
                         223 .LDWlin13:
00000090 23ff2100        224 	ld.w	32[sp],lp
00000094 031e2400        225 	addi	36,sp,sp
                         226 	.jumptype return
00000098 7f00            227 	jmp	[lp]
                         228 ..lin.f6276498..318c3369.0_14::
                         229 .LDWlin14:
                         230 	.global	___ghs_eofn_Internal_EEL_Init
                         231 ___ghs_eofn_Internal_EEL_Init:
                         232 	.type	_Internal_EEL_Init,@function
                         233 	.size	_Internal_EEL_Init,.-_Internal_EEL_Init
                         234 	.align	2
                         235 --_myReq	12[sp]	local
                         236 --_driverStatus	0[sp]	local
                         237 
                         238 	.data
                         239 	.text
                         240 
                         241 
                         242 --67: r_eel_status_t Internal_EEL_Write(uint16_t blockID, uint8_t pbuf [], uint32_t length)

                         243 	.align	2
                         244 	.align	2
                         245 	.align	2
                         246 ..gh.f.a.2.e.3:
                         247 	.type	..gh.f.a.2.e.3,@object
                         248 	.size	..gh.f.a.2.e.3,0
                         249 	.global	_Internal_EEL_Write
                         250 _Internal_EEL_Write:
                         251 .LDW91:
0000009a 031ee0ff        252 	addi	-32,sp,sp
0000009e 63ff1d00        253 	st.w	lp,28[sp]
000000a2 63e71900        254 	st.w	r28,24[sp]
000000a6 63ef1500        255 	st.w	r29,20[sp]
000000aa 06e8            256 	mov	r6,r29
000000ac dd00            257 	zxh	r29
000000ae 07e0            258 	mov	r7,r28
                         259 --	    .bf
                         260 .LDW02:
                         261 --68: {

                         262 --69:     r_eel_request_t myReq;

                         263 --70:     // disable_interrupt( );

                         264 --71:     Internal_EEPROM_OPEN( );

                         265 	jarl	_Internal_EEPROM_OPEN,lp
                         265 <EXPANSION BEGIN>
                         265 jarl22 _Internal_EEPROM_OPEN , lp 

                                                                      Page 6
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000000b0 bfff50ff*       265 <EXPANSION END>
                         266 --72:     Internal_EEL_Init( );

                         267 --line72
                         268 ..lin.f6276498..64122980.0_15::
                         269 .LDWlin15:
                         270 	jarl	_Internal_EEL_Init,lp
                         270 <EXPANSION BEGIN>
                         270 jarl22 _Internal_EEL_Init , lp 
000000b4 bfff70ff*       270 <EXPANSION END>
                         271 --73:     myReq.address_pu08   = ( uint8_t * )(&pbuf [ 0 ]);

                         272 --line73
                         273 ..lin.f6276498..64122980.0_16::
                         274 .LDWlin16:
000000b8 63e70100        275 	st.w	r28,0[sp]
                         276 --74:     myReq.identifier_u16 = blockID;

000000bc 63ef0400        277 	st.h	r29,4[sp]
                         278 --75:     myReq.command_enu    = R_EEL_CMD_WRITE;

000000c0 010a            279 	mov	1,r1
000000c2 630f0d00        280 	st.w	r1,12[sp]
                         281 --76:     R_EEL_Execute(&myReq);

000000c6 23360000        282 	movea	0,sp,r6
                         283 	jarl	_R_EEL_Execute,lp
                         283 <EXPANSION BEGIN>
                         283 jarl22 _R_EEL_Execute , lp 
000000ca 80ff0000*       283 <EXPANSION END>
                         284 --77:     SampleApp_EEL_HdrLoop(&myReq);

                         285 --line77
                         286 ..lin.f6276498..64122980.0_17::
                         287 .LDWlin17:
000000ce 23360000        288 	movea	0,sp,r6
                         289 	jarl	_SampleApp_EEL_HdrLoop,lp
                         289 <EXPANSION BEGIN>
                         289 jarl22 _SampleApp_EEL_HdrLoop , lp 
000000d2 80ff0000*       289 <EXPANSION END>
                         290 --78:     Internal_EEL_DEINIT( );

                         291 --line78
                         292 ..lin.f6276498..64122980.0_18::
                         293 .LDWlin18:
                         294 	jarl	_Internal_EEL_DEINIT,lp
                         294 <EXPANSION BEGIN>
                         294 jarl22 _Internal_EEL_DEINIT , lp 
000000d6 80ff8c00*       294 <EXPANSION END>
                         295 --79:     Internal_EEPROM_CLOSE( );

                         296 --line79
                         297 ..lin.f6276498..64122980.0_19::
                         298 .LDWlin19:
                         299 	jarl	_Internal_EEPROM_CLOSE,lp
                         299 <EXPANSION BEGIN>
                         299 jarl22 _Internal_EEPROM_CLOSE , lp 
000000da bfff38ff*       299 <EXPANSION END>
                         300 --80:     // enable_interrupt( );

                         301 --81:     return myReq.status_enu;

                         302 --line81
                         303 ..lin.f6276498..64122980.0_20::
                         304 .LDWlin20:
000000de 23571100        305 	ld.w	16[sp],r10
                         306 --	    .ef
                         307 .LDW12:
000000e2 23ff1d00        308 	ld.w	28[sp],lp
000000e6 23ef1500        309 	ld.w	20[sp],r29
000000ea 23e71900        310 	ld.w	24[sp],r28

                                                                      Page 7
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000000ee 031e2000        311 	addi	32,sp,sp
                         312 	.jumptype return
000000f2 7f00            313 	jmp	[lp]
                         314 ..lin.f6276498..64122980.0_21::
                         315 .LDWlin21:
                         316 	.global	___ghs_eofn_Internal_EEL_Write
                         317 ___ghs_eofn_Internal_EEL_Write:
                         318 	.type	_Internal_EEL_Write,@function
                         319 	.size	_Internal_EEL_Write,.-_Internal_EEL_Write
                         320 	.align	2
                         321 --_myReq	0[sp]	local
                         322 
                         323 --_blockID	r29	param
                         324 --_pbuf	r28	param
                         325 --_length	r8	param
                         326 
                         327 	.data
                         328 	.text
                         329 
                         330 --82: }

                         331 
                         332 --84: r_eel_status_t Internal_EEL_Read(uint8_t blockID, uint8_t pbuf [], uint32_t length)

                         333 	.align	2
                         334 	.align	2
                         335 	.align	2
                         336 ..gh.f.a.2.e.4:
                         337 	.type	..gh.f.a.2.e.4,@object
                         338 	.size	..gh.f.a.2.e.4,0
                         339 	.global	_Internal_EEL_Read
                         340 _Internal_EEL_Read:
                         341 .LDW22:
000000f4 031edcff        342 	addi	-36,sp,sp
000000f8 63ff2100        343 	st.w	lp,32[sp]
000000fc 63df1d00        344 	st.w	r27,28[sp]
00000100 63e71900        345 	st.w	r28,24[sp]
00000104 63ef1500        346 	st.w	r29,20[sp]
00000108 06e8            347 	mov	r6,r29
0000010a 9d00            348 	zxb	r29
0000010c 07e0            349 	mov	r7,r28
0000010e 08d8            350 	mov	r8,r27
                         351 --	    .bf
                         352 .LDW32:
                         353 --85: {

                         354 --86:     r_eel_request_t myReq;

                         355 --87:     // disable_interrupt( );

                         356 --88:     Internal_EEPROM_OPEN( );

                         357 	jarl	_Internal_EEPROM_OPEN,lp
                         357 <EXPANSION BEGIN>
                         357 jarl22 _Internal_EEPROM_OPEN , lp 
00000110 bffff0fe*       357 <EXPANSION END>
                         358 --89:     Internal_EEL_Init( );

                         359 --line89
                         360 ..lin.f6276498..3190fb71.0_22::
                         361 .LDWlin22:
                         362 	jarl	_Internal_EEL_Init,lp
                         362 <EXPANSION BEGIN>
                         362 jarl22 _Internal_EEL_Init , lp 
00000114 bfff10ff*       362 <EXPANSION END>
                         363 --90:     myReq.address_pu08   = ( uint8_t * )(&pbuf [ 0 ]);

                         364 --line90
                         365 ..lin.f6276498..3190fb71.0_23::

                                                                      Page 8
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                         366 .LDWlin23:
00000118 63e70100        367 	st.w	r28,0[sp]
                         368 --91:     myReq.identifier_u16 = blockID;

0000011c 63ef0400        369 	st.h	r29,4[sp]
                         370 --92:     myReq.length_u16     = length;

00000120 1b08            371 	mov	r27,r1
00000122 c100            372 	zxh	r1
00000124 630f0600        373 	st.h	r1,6[sp]
                         374 --93:     myReq.offset_u16     = 0x00u;

00000128 63070800        375 	st.h	zero,8[sp]
                         376 --94:     myReq.command_enu    = R_EEL_CMD_READ;

0000012c 63070d00        377 	st.w	zero,12[sp]
                         378 --95:     R_EEL_Execute(&myReq);

00000130 23360000        379 	movea	0,sp,r6
                         380 	jarl	_R_EEL_Execute,lp
                         380 <EXPANSION BEGIN>
                         380 jarl22 _R_EEL_Execute , lp 
00000134 80ff0000*       380 <EXPANSION END>
                         381 --96:     SampleApp_EEL_HdrLoop(&myReq);

                         382 --line96
                         383 ..lin.f6276498..3190fb71.0_24::
                         384 .LDWlin24:
00000138 23360000        385 	movea	0,sp,r6
                         386 	jarl	_SampleApp_EEL_HdrLoop,lp
                         386 <EXPANSION BEGIN>
                         386 jarl22 _SampleApp_EEL_HdrLoop , lp 
0000013c 80ff0000*       386 <EXPANSION END>
                         387 --97:     Internal_EEL_DEINIT( );

                         388 --line97
                         389 ..lin.f6276498..3190fb71.0_25::
                         390 .LDWlin25:
                         391 	jarl	_Internal_EEL_DEINIT,lp
                         391 <EXPANSION BEGIN>
                         391 jarl22 _Internal_EEL_DEINIT , lp 
00000140 80ff2200*       391 <EXPANSION END>
                         392 --98:     Internal_EEPROM_CLOSE( );

                         393 --line98
                         394 ..lin.f6276498..3190fb71.0_26::
                         395 .LDWlin26:
                         396 	jarl	_Internal_EEPROM_CLOSE,lp
                         396 <EXPANSION BEGIN>
                         396 jarl22 _Internal_EEPROM_CLOSE , lp 
00000144 bfffcefe*       396 <EXPANSION END>
                         397 --99:     // enable_interrupt( );

                         398 --100:     return myReq.status_enu;

                         399 --line100
                         400 ..lin.f6276498..3190fb71.0_27::
                         401 .LDWlin27:
00000148 23571100        402 	ld.w	16[sp],r10
                         403 --	    .ef
                         404 .LDW42:
0000014c 23ff2100        405 	ld.w	32[sp],lp
00000150 23ef1500        406 	ld.w	20[sp],r29
00000154 23e71900        407 	ld.w	24[sp],r28
00000158 23df1d00        408 	ld.w	28[sp],r27
0000015c 031e2400        409 	addi	36,sp,sp
                         410 	.jumptype return
00000160 7f00            411 	jmp	[lp]
                         412 ..lin.f6276498..3190fb71.0_28::
                         413 .LDWlin28:
                         414 	.global	___ghs_eofn_Internal_EEL_Read

                                                                      Page 9
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                         415 ___ghs_eofn_Internal_EEL_Read:
                         416 	.type	_Internal_EEL_Read,@function
                         417 	.size	_Internal_EEL_Read,.-_Internal_EEL_Read
                         418 	.align	2
                         419 --_myReq	0[sp]	local
                         420 
                         421 --_blockID	r29	param
                         422 --_pbuf	r28	param
                         423 --_length	r27	param
                         424 
                         425 	.data
                         426 	.text
                         427 
                         428 --101: }

                         429 
                         430 --103: void Internal_EEL_DEINIT(void)

                         431 	.align	2
                         432 	.align	2
                         433 	.align	2
                         434 ..gh.f.a.2.e.5:
                         435 	.type	..gh.f.a.2.e.5,@object
                         436 	.size	..gh.f.a.2.e.5,0
                         437 	.global	_Internal_EEL_DEINIT
                         438 _Internal_EEL_DEINIT:
                         439 .LDW52:
00000162 501a            440 	add	-16,sp
00000164 63ff0d00        441 	st.w	lp,12[sp]
                         442 --	    .bf
                         443 .LDW62:
                         444 --104: {

                         445 --105:     r_eel_driver_status_t driverStatus;

                         446 --107:     reqStat = R_EEL_ShutDown( );

                         447 	jarl	_R_EEL_ShutDown,lp
                         447 <EXPANSION BEGIN>
                         447 jarl22 _R_EEL_ShutDown , lp 
00000168 80ff0000*       447 <EXPANSION END>
0000016c 2b0600000000*   448 	mov	_reqStat,r11
00000172 6b570100        449 	st.w	r10,0[r11]
                         450 --108:     SampleApp_EEL_ErrorHdr(reqStat);

                         451 --line108
                         452 ..lin.f6276498..b6c4d5d2.0_29::
                         453 .LDWlin29:
00000176 2c0600000000*   454 	mov	_reqStat,r12
0000017c 2c370100        455 	ld.w	0[r12],r6
                         456 	jarl	_SampleApp_EEL_ErrorHdr,lp
                         456 <EXPANSION BEGIN>
                         456 jarl22 _SampleApp_EEL_ErrorHdr , lp 
00000180 80ff0000*       456 <EXPANSION END>
                         457 --110:     do

                         458 .L183:
                         459 --111:     {

                         460 --112:         R_EEL_Handler( );

                         461 --line112
                         462 ..lin.f6276498..b6c4d5d2.0_30::
                         463 .LDWlin30:
                         464 	jarl	_R_EEL_Handler,lp
                         464 <EXPANSION BEGIN>
                         464 jarl22 _R_EEL_Handler , lp 
00000184 80ff0000*       464 <EXPANSION END>
                         465 --113:         R_EEL_GetDriverStatus(&driverStatus);

                         466 --line113

                                                                      Page 10
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                         467 ..lin.f6276498..b6c4d5d2.0_31::
                         468 .LDWlin31:
00000188 23360000        469 	movea	0,sp,r6
                         470 	jarl	_R_EEL_GetDriverStatus,lp
                         470 <EXPANSION BEGIN>
                         470 jarl22 _R_EEL_GetDriverStatus , lp 
0000018c 80ff0000*       470 <EXPANSION END>
                         471 --line114
                         472 ..lin.f6276498..b6c4d5d2.0_32::
                         473 .LDWlin32:
00000190 230f0100        474 	ld.w	0[sp],r1
00000194 e009            475 	cmp	zero,r1
00000196 faf5*           476 	bne	.L183
                         477 --114:     } while ( R_EEL_OPERATION_PASSIVE != driverStatus.operationStatus_enu );

                         478 --116:     /* Error check of startup processing (with and without Format) */

                         479 --117:     SampleApp_EEL_ErrorHdr(driverStatus.backgroundStatus_enu);

                         480 --line117
                         481 ..lin.f6276498..b6c4d5d2.0_33::
                         482 .LDWlin33:
00000198 23370900        483 	ld.w	8[sp],r6
                         484 	jarl	_SampleApp_EEL_ErrorHdr,lp
                         484 <EXPANSION BEGIN>
                         484 jarl22 _SampleApp_EEL_ErrorHdr , lp 
0000019c 80ff0000*       484 <EXPANSION END>
                         485 --118: }
                         486 --	    .ef
                         487 .LDW72:
                         488 --line118
                         489 ..lin.f6276498..b6c4d5d2.0_34::
                         490 .LDWlin34:
000001a0 23ff0d00        491 	ld.w	12[sp],lp
000001a4 031e1000        492 	addi	16,sp,sp
                         493 	.jumptype return
000001a8 7f00            494 	jmp	[lp]
                         495 ..lin.f6276498..b6c4d5d2.0_35::
                         496 .LDWlin35:
                         497 	.global	___ghs_eofn_Internal_EEL_DEINIT
                         498 ___ghs_eofn_Internal_EEL_DEINIT:
                         499 	.type	_Internal_EEL_DEINIT,@function
                         500 	.size	_Internal_EEL_DEINIT,.-_Internal_EEL_DEINIT
                         501 	.align	2
                         502 --_driverStatus	0[sp]	local
                         503 
                         504 	.data
                         505 	.text
                         506 
                         507 	.align	2
                         508 
                         509 	.data
                         510 	.section ".bss","awb"
                         511 	.align	4
                         512 	.align	4
                         513 	.global	_reqStat
00000000 00000000        514 _reqStat:	.space	4
                         515 	.type	_reqStat,@object
                         516 	.size	_reqStat,4
                         517 	.data
                         518 	.ghsnote version,24
                         519 	.ghsnote tools,3
                         520 	.ghsnote options,656
                         521 	.text

                                                                      Page 11
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                         522 	.align	2
                         523 ..eof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0::
                         524 	.section	.debug_info
                         525 .Ldw_begin:
00000000 f1050000        526 	.word	.Ldw_end-.Ldw_begin-4
00000004 0200            527 	.byte	2,0
00000006 00000000*       528 	.word	.Ldw_abbr_begin
0000000a 04              529 	.byte	4
                         530 	.section	.debug_abbrev
                         531 .Ldw_abbr_begin:
                         532 	.section	.debug_str
                         533 .Ldw_str_begin:
                         534 	.section	.debug_info
0000000b 01              535 	.byte	1
0000000c 00000000*       536 	.word	..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000010 00000000*       537 	.word	..eof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
                         538 	.section	.debug_str
00000000 2e2e5c736f75    539 	.strz	"..\\source\\Appliciation\\Internal_EEPROM.c"
00000006 7263655c4170 
0000000c 706c69636961 
00000012 74696f6e5c49 
00000018 6e7465726e61 
0000001e 6c5f45455052 
00000024 4f4d2e6300 
                         540 	.section	.debug_info
00000014 00000000*       541 	.word	.Ldw_str_begin
                         542 	.section	.debug_str
00000029 5a3a5c383530    543 	.strz	"Z:\\850\\工作资料\\C673检测台\\电机电机电机\\检测台\\testbench\\福田W1-02(高配)检测台\\ghs"
0000002f 5cb9a4d7f7d7 
00000035 cac1cf5c4336 
0000003b 3733bcecb2e2 
00000041 cca85cb5e7bb 
00000047 fab5e7bbfab5 
0000004d e7bbfa5cbcec 
00000053 b2e2cca85c74 
00000059 65737462656e 
0000005f 63685cb8a3cc 
00000065 ef57312d3032 
0000006b 28b8dfc5e429 
00000071 bcecb2e2cca8 
00000077 5c67687300 
                         544 	.section	.debug_info
00000018 00000000*       545 	.word	.Ldw_str_begin+41
                         546 	.section	.debug_str
0000007c 474853204320    547 	.strz	"GHS C 2019.5.5 [dual]"
00000082 323031392e35 
00000088 2e35205b6475 
0000008e 616c5d00 
                         548 	.section	.debug_info
0000001c 00000000*       549 	.word	.Ldw_str_begin+124
00000020 0100            550 	.byte	1,0
00000022 00000000*       551 	.word	.Ldw_line_begin
00000026 00000000*       552 	.word	.Ldw_macinfo_begin
0000002a 00              553 	.byte	0
                         554 
                         555 	.section	.debug_abbrev
00000000 01              556 	.byte	1
00000001 11              557 	.byte	17
00000002 01              558 	.byte	1
00000003 1101            559 	.byte	17,1
00000005 1201            560 	.byte	18,1

                                                                      Page 12
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000007 030e            561 	.byte	3,14
00000009 1b0e            562 	.byte	27,14
0000000b 250e            563 	.byte	37,14
0000000d 1305            564 	.byte	19,5
0000000f 1006            565 	.byte	16,6
00000011 4306            566 	.byte	67,6
00000013 420b            567 	.byte	66,11
00000015 0000            568 	.byte	0,0
                         569 
                         570 	.section	.debug_line
                         571 .Ldw_line_begin:
00000000 07050000        572 	.word	.Ldw_line_end-.Ldw_line_begin-4
00000004 0200            573 	.byte	2,0
00000006 00000000*       574 	.word	.Ldw_lpro_end-.Ldw_lpro_begin
                         575 .Ldw_lpro_begin:
0000000a 01              576 	.byte	1
0000000b 00              577 	.byte	0
0000000c 00              578 	.byte	0
0000000d 04              579 	.byte	4
0000000e 0a              580 	.byte	10
0000000f 000101          581 	.byte	0,1,1
00000012 010100          582 	.byte	1,1,0
00000015 000001          583 	.byte	0,0,1
00000018 00              584 	.byte	0
00000019 2e2e5c736f75    585 	.strz	"..\\source\\Appliciation\\Internal_EEPROM.c"
0000001f 7263655c4170 
00000025 706c69636961 
0000002b 74696f6e5c49 
00000031 6e7465726e61 
00000037 6c5f45455052 
0000003d 4f4d2e6300 
00000042 000000          586 	.byte	0,0,0
00000045 2e2e5c736f75    587 	.strz	"..\\source\\Appliciation\\Internal_EEPROM.h"
0000004b 7263655c4170 
00000051 706c69636961 
00000057 74696f6e5c49 
0000005d 6e7465726e61 
00000063 6c5f45455052 
00000069 4f4d2e6800 
0000006e 000000          588 	.byte	0,0,0
00000071 2e2e5c736f75    589 	.strz	"..\\source\\Appliciation\\TYW_stdint.h"
00000077 7263655c4170 
0000007d 706c69636961 
00000083 74696f6e5c54 
00000089 59575f737464 
0000008f 696e742e6800 
00000095 000000          590 	.byte	0,0,0
00000098 2e2e5c736f75    591 	.strz	"..\\source\\EEL\\r_eel_types.h"
0000009e 7263655c4545 
000000a4 4c5c725f6565 
000000aa 6c5f74797065 
000000b0 732e6800 
000000b4 000000          592 	.byte	0,0,0
000000b7 2e2e5c736f75    593 	.strz	"..\\source\\Driver\\RH850F1KM_S1\\R_TypeDefs.h"
000000bd 7263655c4472 
000000c3 697665725c52 
000000c9 483835304631 
000000cf 4b4d5f53315c 
000000d5 525f54797065 
000000db 446566732e68 
000000e1 00 

                                                                      Page 13
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000000e2 000000          594 	.byte	0,0,0
000000e5 2e2e5c736f75    595 	.strz	"..\\source\\FDL\\R_FDL.h"
000000eb 7263655c4644 
000000f1 4c5c525f4644 
000000f7 4c2e6800 
000000fb 000000          596 	.byte	0,0,0
000000fe 2e2e5c736f75    597 	.strz	"..\\source\\fdl_user\\fdl_cfg.h"
00000104 7263655c6664 
0000010a 6c5f75736572 
00000110 5c66646c5f63 
00000116 66672e6800 
0000011b 000000          598 	.byte	0,0,0
0000011e 2e2e5c736f75    599 	.strz	"..\\source\\FDL\\r_fdl_types.h"
00000124 7263655c4644 
0000012a 4c5c725f6664 
00000130 6c5f74797065 
00000136 732e6800 
0000013a 000000          600 	.byte	0,0,0
0000013d 2e2e5c736f75    601 	.strz	"..\\source\\fdl_user\\FDL_Descriptor.h"
00000143 7263655c6664 
00000149 6c5f75736572 
0000014f 5c46444c5f44 
00000155 657363726970 
0000015b 746f722e6800 
00000161 000000          602 	.byte	0,0,0
00000164 2e2e5c736f75    603 	.strz	"..\\source\\EEL\\R_EEL.h"
0000016a 7263655c4545 
00000170 4c5c525f4545 
00000176 4c2e6800 
0000017a 000000          604 	.byte	0,0,0
0000017d 2e2e5c736f75    605 	.strz	"..\\source\\eel_user\\EEL_Cfg.h"
00000183 7263655c6565 
00000189 6c5f75736572 
0000018f 5c45454c5f43 
00000195 66672e6800 
0000019a 000000          606 	.byte	0,0,0
0000019d 2e2e5c736f75    607 	.strz	"..\\source\\EEL\\R_EEL_Types.h"
000001a3 7263655c4545 
000001a9 4c5c525f4545 
000001af 4c5f54797065 
000001b5 732e6800 
000001b9 000000          608 	.byte	0,0,0
000001bc 2e2e5c736f75    609 	.strz	"..\\source\\eel_user\\EEL_Descriptor.h"
000001c2 7263655c6565 
000001c8 6c5f75736572 
000001ce 5c45454c5f44 
000001d4 657363726970 
000001da 746f722e6800 
000001e0 000000          610 	.byte	0,0,0
000001e3 2e2e5c736f75    611 	.strz	"..\\source\\System\\target.h"
000001e9 7263655c5379 
000001ef 7374656d5c74 
000001f5 61726765742e 
000001fb 6800 
000001fd 000000          612 	.byte	0,0,0
00000200 2e2e5c736f75    613 	.strz	"..\\source\\System\\dr7f701684.dvf.h"
00000206 7263655c5379 
0000020c 7374656d5c64 
00000212 723766373031 
00000218 3638342e6476 
0000021e 662e6800 

                                                                      Page 14
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000222 000000          614 	.byte	0,0,0
00000225 2e2e5c736f75    615 	.strz	"..\\source\\fdl_user\\fdl_user.h"
0000022b 7263655c6664 
00000231 6c5f75736572 
00000237 5c66646c5f75 
0000023d 7365722e6800 
00000243 000000          616 	.byte	0,0,0
00000246 2e2e5c736f75    617 	.strz	"..\\source\\Driver\\RH850F1KM_S1\\rh850_macros.h"
0000024c 7263655c4472 
00000252 697665725c52 
00000258 483835304631 
0000025e 4b4d5f53315c 
00000264 72683835305f 
0000026a 6d6163726f73 
00000270 2e6800 
00000273 000000          618 	.byte	0,0,0
00000276 2e2e5c736f75    619 	.strz	"..\\source\\Driver\\RH850F1KM_S1\\r_device.h"
0000027c 7263655c4472 
00000282 697665725c52 
00000288 483835304631 
0000028e 4b4d5f53315c 
00000294 725f64657669 
0000029a 63652e6800 
0000029f 000000          620 	.byte	0,0,0
000002a2 2e2e5c736f75    621 	.strz	"..\\source\\Driver\\RH850F1KM_S1\\dr7f701684.dvf.h"
000002a8 7263655c4472 
000002ae 697665725c52 
000002b4 483835304631 
000002ba 4b4d5f53315c 
000002c0 647237663730 
000002c6 313638342e64 
000002cc 76662e6800 
000002d1 000000          622 	.byte	0,0,0
000002d4 2e2e5c736f75    623 	.strz	"..\\source\\Driver\\RH850F1KM_S1\\icu_feret.h"
000002da 7263655c4472 
000002e0 697665725c52 
000002e6 483835304631 
000002ec 4b4d5f53315c 
000002f2 6963755f6665 
000002f8 7265742e6800 
000002fe 000000          624 	.byte	0,0,0
00000301 2e2e5c736f75    625 	.strz	"..\\source\\Driver\\RH850F1KM_S1\\cpu.h"
00000307 7263655c4472 
0000030d 697665725c52 
00000313 483835304631 
00000319 4b4d5f53315c 
0000031f 6370752e6800 
00000325 000000          626 	.byte	0,0,0
00000328 433a5c676873    627 	.strz	"C:\\ghs\\comp_rh850\\ansi\\..\\include\\v800\\v800_ghs.h"
0000032e 5c636f6d705f 
00000334 72683835305c 
0000033a 616e73695c2e 
00000340 2e5c696e636c 
00000346 7564655c7638 
0000034c 30305c763830 
00000352 305f6768732e 
00000358 6800 
0000035a 000000          628 	.byte	0,0,0
0000035d 00              629 	.byte	0
                         630 .Ldw_lpro_end:
                         631 	.section	.debug_macinfo

                                                                      Page 15
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                         632 .Ldw_macinfo_begin:
                         633 	.section	.debug_frame
                         634 .LDW_f1d4e20:
00000000 00000000*       635 	.word	.LDW_unq_2-.LDW_unq_1
                         636 .LDW_unq_1:
00000004 ffffffff        637 	.byte	255,255,255,255
00000008 01              638 	.byte	1
00000009 00              639 	.byte	0
0000000a 01              640 	.byte	1
0000000b 01              641 	.byte	1
0000000c 1f              642 	.byte	31
0000000d 0c              643 	.byte	12
0000000e 03              644 	.byte	3
0000000f 00              645 	.byte	0
00000010 07              646 	.byte	7
00000011 00              647 	.byte	0
00000012 07              648 	.byte	7
00000013 01              649 	.byte	1
00000014 07              650 	.byte	7
00000015 02              651 	.byte	2
00000016 07              652 	.byte	7
00000017 03              653 	.byte	3
00000018 07              654 	.byte	7
00000019 04              655 	.byte	4
0000001a 07              656 	.byte	7
0000001b 05              657 	.byte	5
0000001c 07              658 	.byte	7
0000001d 06              659 	.byte	6
0000001e 07              660 	.byte	7
0000001f 07              661 	.byte	7
00000020 07              662 	.byte	7
00000021 08              663 	.byte	8
00000022 07              664 	.byte	7
00000023 09              665 	.byte	9
00000024 07              666 	.byte	7
00000025 0a              667 	.byte	10
00000026 07              668 	.byte	7
00000027 0b              669 	.byte	11
00000028 07              670 	.byte	7
00000029 0c              671 	.byte	12
0000002a 07              672 	.byte	7
0000002b 0d              673 	.byte	13
0000002c 07              674 	.byte	7
0000002d 0e              675 	.byte	14
0000002e 07              676 	.byte	7
0000002f 0f              677 	.byte	15
00000030 07              678 	.byte	7
00000031 10              679 	.byte	16
00000032 07              680 	.byte	7
00000033 11              681 	.byte	17
00000034 07              682 	.byte	7
00000035 12              683 	.byte	18
00000036 07              684 	.byte	7
00000037 13              685 	.byte	19
00000038 08              686 	.byte	8
00000039 14              687 	.byte	20
0000003a 08              688 	.byte	8
0000003b 15              689 	.byte	21
0000003c 08              690 	.byte	8
0000003d 16              691 	.byte	22
0000003e 08              692 	.byte	8

                                                                      Page 16
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
0000003f 17              693 	.byte	23
00000040 08              694 	.byte	8
00000041 18              695 	.byte	24
00000042 08              696 	.byte	8
00000043 19              697 	.byte	25
00000044 08              698 	.byte	8
00000045 1a              699 	.byte	26
00000046 08              700 	.byte	8
00000047 1b              701 	.byte	27
00000048 08              702 	.byte	8
00000049 1c              703 	.byte	28
0000004a 08              704 	.byte	8
0000004b 1d              705 	.byte	29
0000004c 07              706 	.byte	7
0000004d 1e              707 	.byte	30
0000004e 08              708 	.byte	8
0000004f 1f              709 	.byte	31
00000050 07              710 	.byte	7
00000051 20              711 	.byte	32
00000052 07              712 	.byte	7
00000053 21              713 	.byte	33
00000054 07              714 	.byte	7
00000055 22              715 	.byte	34
00000056 07              716 	.byte	7
00000057 23              717 	.byte	35
00000058 07              718 	.byte	7
00000059 24              719 	.byte	36
0000005a 07              720 	.byte	7
0000005b 25              721 	.byte	37
0000005c 07              722 	.byte	7
0000005d 26              723 	.byte	38
0000005e 07              724 	.byte	7
0000005f 27              725 	.byte	39
00000060 07              726 	.byte	7
00000061 28              727 	.byte	40
00000062 07              728 	.byte	7
00000063 29              729 	.byte	41
00000064 07              730 	.byte	7
00000065 2a              731 	.byte	42
00000066 07              732 	.byte	7
00000067 2b              733 	.byte	43
00000068 07              734 	.byte	7
00000069 2c              735 	.byte	44
0000006a 07              736 	.byte	7
0000006b 2d              737 	.byte	45
0000006c 07              738 	.byte	7
0000006d 2e              739 	.byte	46
0000006e 07              740 	.byte	7
0000006f 2f              741 	.byte	47
00000070 07              742 	.byte	7
00000071 30              743 	.byte	48
00000072 07              744 	.byte	7
00000073 31              745 	.byte	49
00000074 07              746 	.byte	7
00000075 32              747 	.byte	50
00000076 07              748 	.byte	7
00000077 33              749 	.byte	51
00000078 07              750 	.byte	7
00000079 34              751 	.byte	52
0000007a 07              752 	.byte	7
0000007b 35              753 	.byte	53

                                                                      Page 17
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
0000007c 07              754 	.byte	7
0000007d 36              755 	.byte	54
0000007e 07              756 	.byte	7
0000007f 37              757 	.byte	55
00000080 07              758 	.byte	7
00000081 38              759 	.byte	56
00000082 07              760 	.byte	7
00000083 39              761 	.byte	57
00000084 07              762 	.byte	7
00000085 3a              763 	.byte	58
00000086 07              764 	.byte	7
00000087 3b              765 	.byte	59
00000088 07              766 	.byte	7
00000089 3c              767 	.byte	60
0000008a 07              768 	.byte	7
0000008b 3d              769 	.byte	61
0000008c 07              770 	.byte	7
0000008d 3e              771 	.byte	62
0000008e 07              772 	.byte	7
0000008f 3f              773 	.byte	63
                         774 .LDW_unq_2:
                         775 	.section	.debug_info
                         776 .LDW_f3bab90:
0000002b 4b              777 	.byte	75
0000002c 01              778 	.byte	1
                         779 
                         780 	.section	.debug_abbrev
00000017 4b              781 	.byte	75
00000018 15              782 	.byte	21
00000019 01              783 	.byte	1
0000001a 270c            784 	.byte	39,12
0000001c 0000            785 	.byte	0,0
                         786 
                         787 	.section	.debug_info
0000002d 00              788 	.byte	0
                         789 
                         790 .LDW_f3bac30:
0000002e 4b              791 	.byte	75
0000002f 01              792 	.byte	1
                         793 
00000030 00              794 	.byte	0
                         795 
                         796 .LDW_f3bacd0:
00000031 4b              797 	.byte	75
00000032 01              798 	.byte	1
                         799 
00000033 00              800 	.byte	0
                         801 
                         802 .LDW_f22d640:
00000034 31              803 	.byte	49
00000035 00000000*       804 	.word	.LDW_f22d5b0
                         805 
                         806 	.section	.debug_abbrev
0000001e 31              807 	.byte	49
0000001f 35              808 	.byte	53
00000020 00              809 	.byte	0
00000021 4910            810 	.byte	73,16
00000023 0000            811 	.byte	0,0
                         812 
                         813 	.section	.debug_info
                         814 .LDW_f3bad70:

                                                                      Page 18
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000039 2a              815 	.byte	42
                         816 	.section	.debug_str
00000092 756e7369676e    817 	.strz	"unsigned int"
00000098 656420696e74 
0000009e 00 
                         818 	.section	.debug_info
0000003a 00000000*       819 	.word	.Ldw_str_begin+146
0000003e 07              820 	.byte	7
0000003f 04              821 	.byte	4
                         822 
                         823 	.section	.debug_abbrev
00000025 2a              824 	.byte	42
00000026 24              825 	.byte	36
00000027 00              826 	.byte	0
00000028 030e            827 	.byte	3,14
0000002a 3e0b            828 	.byte	62,11
0000002c 0b0b            829 	.byte	11,11
0000002e 0000            830 	.byte	0,0
                         831 
                         832 	.section	.debug_info
                         833 .LDW_f3bae10:
00000040 2a              834 	.byte	42
                         835 	.section	.debug_str
0000009f 756e7369676e    836 	.strz	"unsigned short"
000000a5 65642073686f 
000000ab 727400 
                         837 	.section	.debug_info
00000041 00000000*       838 	.word	.Ldw_str_begin+159
00000045 07              839 	.byte	7
00000046 02              840 	.byte	2
                         841 
                         842 .LDW_f3baeb0:
00000047 2a              843 	.byte	42
                         844 	.section	.debug_str
000000ae 756e7369676e    845 	.strz	"unsigned char"
000000b4 656420636861 
000000ba 7200 
                         846 	.section	.debug_info
00000048 00000000*       847 	.word	.Ldw_str_begin+174
0000004c 08              848 	.byte	8
0000004d 01              849 	.byte	1
                         850 
                         851 .LDW_f3baf00:
0000004e 35              852 	.byte	53
0000004f 00000000*       853 	.word	.LDW_f3baeb0
                         854 
                         855 	.section	.debug_abbrev
00000030 35              856 	.byte	53
00000031 0f              857 	.byte	15
00000032 00              858 	.byte	0
00000033 4910            859 	.byte	73,16
00000035 0000            860 	.byte	0,0
                         861 
                         862 	.section	.debug_info
                         863 .LDW_f3badc0:
00000053 4a              864 	.byte	74
00000054 00000000*       865 	.word	.LDW_f22da30
00000058 01              866 	.byte	1
                         867 
                         868 	.section	.debug_abbrev
00000037 4a              869 	.byte	74

                                                                      Page 19
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000038 15              870 	.byte	21
00000039 01              871 	.byte	1
0000003a 4910            872 	.byte	73,16
0000003c 270c            873 	.byte	39,12
0000003e 0000            874 	.byte	0,0
                         875 
                         876 	.section	.debug_info
                         877 .LDW_f3bae60:
00000059 17              878 	.byte	23
0000005a 00000000*       879 	.word	.LDW_f3bae10
0000005e 00              880 	.byte	0
                         881 
                         882 	.section	.debug_abbrev
00000040 17              883 	.byte	23
00000041 05              884 	.byte	5
00000042 00              885 	.byte	0
00000043 4910            886 	.byte	73,16
00000045 4b0c            887 	.byte	75,12
00000047 0000            888 	.byte	0,0
                         889 
                         890 	.section	.debug_info
                         891 .LDW_f3baf50:
0000005f 17              892 	.byte	23
00000060 00000000*       893 	.word	.LDW_f3baf00
00000064 00              894 	.byte	0
                         895 
                         896 .LDW_f3bafa0:
00000065 17              897 	.byte	23
00000066 00000000*       898 	.word	.LDW_f3bad70
0000006a 00              899 	.byte	0
                         900 
0000006b 00              901 	.byte	0
                         902 
                         903 .LDW_f3bb040:
0000006c 4a              904 	.byte	74
0000006d 00000000*       905 	.word	.LDW_f22da30
00000071 01              906 	.byte	1
                         907 
                         908 .LDW_f3bb090:
00000072 17              909 	.byte	23
00000073 00000000*       910 	.word	.LDW_f3baeb0
00000077 00              911 	.byte	0
                         912 
                         913 .LDW_f3bb0e0:
00000078 17              914 	.byte	23
00000079 00000000*       915 	.word	.LDW_f3baf00
0000007d 00              916 	.byte	0
                         917 
                         918 .LDW_f3bb130:
0000007e 17              919 	.byte	23
0000007f 00000000*       920 	.word	.LDW_f3bad70
00000083 00              921 	.byte	0
                         922 
00000084 00              923 	.byte	0
                         924 
                         925 .LDW_f3bb1d0:
00000085 4b              926 	.byte	75
00000086 01              927 	.byte	1
                         928 
00000087 00              929 	.byte	0
                         930 

                                                                      Page 20
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                         931 .LDW_f3bb360:
00000088 2a              932 	.byte	42
                         933 	.section	.debug_str
000000bc 696e7400        934 	.strz	"int"
                         935 	.section	.debug_info
00000089 00000000*       936 	.word	.Ldw_str_begin+188
0000008d 05              937 	.byte	5
0000008e 04              938 	.byte	4
                         939 
                         940 .LDW_f63c850:
0000008f 35              941 	.byte	53
00000090 00000000*       942 	.word	.LDW_f22d6d0
                         943 
                         944 .LDW_f63c800:
00000094 4b              945 	.byte	75
00000095 01              946 	.byte	1
                         947 
                         948 .LDW_f63c8a0:
00000096 17              949 	.byte	23
00000097 00000000*       950 	.word	.LDW_f63c850
0000009b 00              951 	.byte	0
                         952 
0000009c 00              953 	.byte	0
                         954 
                         955 .LDW_f63c8f0:
0000009d 4b              956 	.byte	75
0000009e 01              957 	.byte	1
                         958 
0000009f 00              959 	.byte	0
                         960 
                         961 .LDW_f63c990:
000000a0 4a              962 	.byte	74
000000a1 00000000*       963 	.word	.LDW_f22da30
000000a5 01              964 	.byte	1
                         965 
000000a6 00              966 	.byte	0
                         967 
                         968 .LDW_f63cad0:
000000a7 35              969 	.byte	53
000000a8 00000000*       970 	.word	.LDW_f22d880
                         971 
                         972 .LDW_f63ca80:
000000ac 4a              973 	.byte	74
000000ad 00000000*       974 	.word	.LDW_f22da30
000000b1 01              975 	.byte	1
                         976 
                         977 .LDW_f63cb20:
000000b2 17              978 	.byte	23
000000b3 00000000*       979 	.word	.LDW_f63cad0
000000b7 00              980 	.byte	0
                         981 
000000b8 00              982 	.byte	0
                         983 
                         984 .LDW_f63cd50:
000000b9 4b              985 	.byte	75
000000ba 01              986 	.byte	1
                         987 
000000bb 00              988 	.byte	0
                         989 
                         990 .LDW_f63cda0:
000000bc 4b              991 	.byte	75

                                                                      Page 21
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000000bd 01              992 	.byte	1
                         993 
000000be 00              994 	.byte	0
                         995 
                         996 .LDW_f62d960:
000000bf 31              997 	.byte	49
000000c0 00000000*       998 	.word	.LDW_f3bae10
                         999 
                        1000 .LDW_f643bc0:
000000c4 4a             1001 	.byte	74
000000c5 00000000*      1002 	.word	.LDW_f22da30
000000c9 01             1003 	.byte	1
                        1004 
000000ca 00             1005 	.byte	0
                        1006 
                        1007 .LDW_f643c10:
000000cb 4b             1008 	.byte	75
000000cc 01             1009 	.byte	1
                        1010 
                        1011 .LDW_f643c60:
000000cd 17             1012 	.byte	23
000000ce 00000000*      1013 	.word	.LDW_f63c850
000000d2 00             1014 	.byte	0
                        1015 
000000d3 00             1016 	.byte	0
                        1017 
                        1018 .LDW_f643cb0:
000000d4 4b             1019 	.byte	75
000000d5 01             1020 	.byte	1
                        1021 
                        1022 .LDW_f643d00:
000000d6 17             1023 	.byte	23
000000d7 00000000*      1024 	.word	.LDW_f22da30
000000db 00             1025 	.byte	0
                        1026 
000000dc 00             1027 	.byte	0
                        1028 
                        1029 .LDW_bf9fe90:
000000dd 34             1030 	.byte	52
                        1031 	.section	.debug_str
000000c0 525f45454c5f   1032 	.strz	"R_EEL_STATUS_T"
000000c6 535441545553 
000000cc 5f5400 
                        1033 	.section	.debug_info
000000de 00000000*      1034 	.word	.Ldw_str_begin+192
000000e2 77             1035 	.byte	119
000000e3 0e             1036 	.byte	14
000000e4 04             1037 	.byte	4
000000e5 04             1038 	.byte	4
000000e6 01             1039 	.byte	1
                        1040 
                        1041 	.section	.debug_abbrev
00000049 34             1042 	.byte	52
0000004a 04             1043 	.byte	4
0000004b 01             1044 	.byte	1
0000004c 030e           1045 	.byte	3,14
0000004e 3b0f           1046 	.byte	59,15
00000050 390f           1047 	.byte	57,15
00000052 3a0f           1048 	.byte	58,15
00000054 0b0f           1049 	.byte	11,15
00000056 320b           1050 	.byte	50,11

                                                                      Page 22
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000058 0000           1051 	.byte	0,0
                        1052 
                        1053 	.section	.debug_info
                        1054 .LDW_44d2b40:
000000e7 33             1055 	.byte	51
                        1056 	.section	.debug_str
000000cf 525f45454c5f   1057 	.strz	"R_EEL_OK"
000000d5 4f4b00 
                        1058 	.section	.debug_info
000000e8 00000000*      1059 	.word	.Ldw_str_begin+207
000000ec 79             1060 	.byte	121
000000ed 05             1061 	.byte	5
000000ee 04             1062 	.byte	4
000000ef 00             1063 	.byte	0
                        1064 
                        1065 	.section	.debug_abbrev
0000005a 33             1066 	.byte	51
0000005b 28             1067 	.byte	40
0000005c 00             1068 	.byte	0
0000005d 030e           1069 	.byte	3,14
0000005f 3b0f           1070 	.byte	59,15
00000061 390f           1071 	.byte	57,15
00000063 3a0f           1072 	.byte	58,15
00000065 1c0d           1073 	.byte	28,13
00000067 0000           1074 	.byte	0,0
                        1075 
                        1076 	.section	.debug_info
                        1077 .LDW_44d2ba0:
000000f0 33             1078 	.byte	51
                        1079 	.section	.debug_str
000000d8 525f45454c5f   1080 	.strz	"R_EEL_BUSY"
000000de 4255535900 
                        1081 	.section	.debug_info
000000f1 00000000*      1082 	.word	.Ldw_str_begin+216
000000f5 7b             1083 	.byte	123
000000f6 05             1084 	.byte	5
000000f7 04             1085 	.byte	4
000000f8 01             1086 	.byte	1
                        1087 
                        1088 .LDW_44d2c00:
000000f9 33             1089 	.byte	51
                        1090 	.section	.debug_str
000000e3 525f45454c5f   1091 	.strz	"R_EEL_ERR_ERASESUSPEND_OVERFLOW"
000000e9 4552525f4552 
000000ef 415345535553 
000000f5 50454e445f4f 
000000fb 564552464c4f 
00000101 5700 
                        1092 	.section	.debug_info
000000fa 00000000*      1093 	.word	.Ldw_str_begin+227
000000fe 7c             1094 	.byte	124
000000ff 05             1095 	.byte	5
00000100 04             1096 	.byte	4
00000101 10             1097 	.byte	16
                        1098 
                        1099 .LDW_44d2c60:
00000102 33             1100 	.byte	51
                        1101 	.section	.debug_str
00000103 525f45454c5f   1102 	.strz	"R_EEL_ERR_FIX_DONE"
00000109 4552525f4649 
0000010f 585f444f4e45 

                                                                      Page 23
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000115 00 
                        1103 	.section	.debug_info
00000103 00000000*      1104 	.word	.Ldw_str_begin+259
00000107 7d             1105 	.byte	125
00000108 05             1106 	.byte	5
00000109 04             1107 	.byte	4
0000010a 11             1108 	.byte	17
                        1109 
                        1110 .LDW_44d2cc0:
0000010b 33             1111 	.byte	51
                        1112 	.section	.debug_str
00000116 525f45454c5f   1113 	.strz	"R_EEL_ERR_CONFIGURATION"
0000011c 4552525f434f 
00000122 4e4649475552 
00000128 4154494f4e00 
                        1114 	.section	.debug_info
0000010c 00000000*      1115 	.word	.Ldw_str_begin+278
00000110 7e             1116 	.byte	126
00000111 05             1117 	.byte	5
00000112 04             1118 	.byte	4
00000113 20             1119 	.byte	32
                        1120 
                        1121 .LDW_44d2d20:
00000114 33             1122 	.byte	51
                        1123 	.section	.debug_str
0000012e 525f45454c5f   1124 	.strz	"R_EEL_ERR_PARAMETER"
00000134 4552525f5041 
0000013a 52414d455445 
00000140 5200 
                        1125 	.section	.debug_info
00000115 00000000*      1126 	.word	.Ldw_str_begin+302
00000119 7f             1127 	.byte	127
0000011a 05             1128 	.byte	5
0000011b 04             1129 	.byte	4
0000011c 21             1130 	.byte	33
                        1131 
                        1132 .LDW_44d2d80:
0000011d 33             1133 	.byte	51
                        1134 	.section	.debug_str
00000142 525f45454c5f   1135 	.strz	"R_EEL_ERR_REJECTED"
00000148 4552525f5245 
0000014e 4a4543544544 
00000154 00 
                        1136 	.section	.debug_info
0000011e 00000000*      1137 	.word	.Ldw_str_begin+322
00000122 8001           1138 	.byte	128,1
00000124 05             1139 	.byte	5
00000125 04             1140 	.byte	4
00000126 22             1141 	.byte	34
                        1142 
                        1143 .LDW_44d2de0:
00000127 33             1144 	.byte	51
                        1145 	.section	.debug_str
00000155 525f45454c5f   1146 	.strz	"R_EEL_ERR_ACCESS_LOCKED"
0000015b 4552525f4143 
00000161 434553535f4c 
00000167 4f434b454400 
                        1147 	.section	.debug_info
00000128 00000000*      1148 	.word	.Ldw_str_begin+341
0000012c 8101           1149 	.byte	129,1
0000012e 05             1150 	.byte	5

                                                                      Page 24
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
0000012f 04             1151 	.byte	4
00000130 23             1152 	.byte	35
                        1153 
                        1154 .LDW_44d2e40:
00000131 33             1155 	.byte	51
                        1156 	.section	.debug_str
0000016d 525f45454c5f   1157 	.strz	"R_EEL_ERR_NO_INSTANCE"
00000173 4552525f4e4f 
00000179 5f494e535441 
0000017f 4e434500 
                        1158 	.section	.debug_info
00000132 00000000*      1159 	.word	.Ldw_str_begin+365
00000136 8201           1160 	.byte	130,1
00000138 05             1161 	.byte	5
00000139 04             1162 	.byte	4
0000013a 24             1163 	.byte	36
                        1164 
                        1165 .LDW_44d2ea0:
0000013b 33             1166 	.byte	51
                        1167 	.section	.debug_str
00000183 525f45454c5f   1168 	.strz	"R_EEL_ERR_POOL_FULL"
00000189 4552525f504f 
0000018f 4f4c5f46554c 
00000195 4c00 
                        1169 	.section	.debug_info
0000013c 00000000*      1170 	.word	.Ldw_str_begin+387
00000140 8301           1171 	.byte	131,1
00000142 05             1172 	.byte	5
00000143 04             1173 	.byte	4
00000144 25             1174 	.byte	37
                        1175 
                        1176 .LDW_44d2f00:
00000145 33             1177 	.byte	51
                        1178 	.section	.debug_str
00000197 525f45454c5f   1179 	.strz	"R_EEL_ERR_FLASH_ERROR"
0000019d 4552525f464c 
000001a3 4153485f4552 
000001a9 524f5200 
                        1180 	.section	.debug_info
00000146 00000000*      1181 	.word	.Ldw_str_begin+407
0000014a 8401           1182 	.byte	132,1
0000014c 05             1183 	.byte	5
0000014d 04             1184 	.byte	4
0000014e 26             1185 	.byte	38
                        1186 
                        1187 .LDW_44d2f60:
0000014f 33             1188 	.byte	51
                        1189 	.section	.debug_str
000001ad 525f45454c5f   1190 	.strz	"R_EEL_ERR_INTERNAL"
000001b3 4552525f494e 
000001b9 5445524e414c 
000001bf 00 
                        1191 	.section	.debug_info
00000150 00000000*      1192 	.word	.Ldw_str_begin+429
00000154 8501           1193 	.byte	133,1
00000156 05             1194 	.byte	5
00000157 04             1195 	.byte	4
00000158 27             1196 	.byte	39
                        1197 
                        1198 .LDW_44d2fc0:
00000159 33             1199 	.byte	51

                                                                      Page 25
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        1200 	.section	.debug_str
000001c0 525f45454c5f   1201 	.strz	"R_EEL_ERR_POOL_EXHAUSTED"
000001c6 4552525f504f 
000001cc 4f4c5f455848 
000001d2 415553544544 
000001d8 00 
                        1202 	.section	.debug_info
0000015a 00000000*      1203 	.word	.Ldw_str_begin+448
0000015e 8601           1204 	.byte	134,1
00000160 05             1205 	.byte	5
00000161 04             1206 	.byte	4
00000162 28             1207 	.byte	40
                        1208 
                        1209 .LDW_44d3020:
00000163 33             1210 	.byte	51
                        1211 	.section	.debug_str
000001d9 525f45454c5f   1212 	.strz	"R_EEL_ERR_POOL_INCONSISTENT"
000001df 4552525f504f 
000001e5 4f4c5f494e43 
000001eb 4f4e53495354 
000001f1 454e5400 
                        1213 	.section	.debug_info
00000164 00000000*      1214 	.word	.Ldw_str_begin+473
00000168 8701           1215 	.byte	135,1
0000016a 05             1216 	.byte	5
0000016b 04             1217 	.byte	4
0000016c 29             1218 	.byte	41
                        1219 
                        1220 .LDW_44d3080:
0000016d 33             1221 	.byte	51
                        1222 	.section	.debug_str
000001f5 525f45454c5f   1223 	.strz	"R_EEL_ERR_COMMAND"
000001fb 4552525f434f 
00000201 4d4d414e4400 
                        1224 	.section	.debug_info
0000016e 00000000*      1225 	.word	.Ldw_str_begin+501
00000172 8801           1226 	.byte	136,1
00000174 05             1227 	.byte	5
00000175 04             1228 	.byte	4
00000176 2a             1229 	.byte	42
                        1230 
00000177 00             1231 	.byte	0
                        1232 
                        1233 .LDW_f22da30:
00000178 2d             1234 	.byte	45
                        1235 	.section	.debug_str
00000207 725f65656c5f   1236 	.strz	"r_eel_status_t"
0000020d 737461747573 
00000213 5f7400 
                        1237 	.section	.debug_info
00000179 00000000*      1238 	.word	.Ldw_str_begin+519
0000017d 8901           1239 	.byte	137,1
0000017f 03             1240 	.byte	3
00000180 04             1241 	.byte	4
00000181 00000000*      1242 	.word	.LDW_bf9fe90
                        1243 
                        1244 	.section	.debug_abbrev
00000069 2d             1245 	.byte	45
0000006a 16             1246 	.byte	22
0000006b 00             1247 	.byte	0
0000006c 030e           1248 	.byte	3,14

                                                                      Page 26
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
0000006e 3b0f           1249 	.byte	59,15
00000070 390f           1250 	.byte	57,15
00000072 3a0f           1251 	.byte	58,15
00000074 4910           1252 	.byte	73,16
00000076 0000           1253 	.byte	0,0
                        1254 
                        1255 	.section	.debug_info
                        1256 .LDW_5e48650:
00000185 34             1257 	.byte	52
                        1258 	.section	.debug_str
00000216 525f45454c5f   1259 	.strz	"R_EEL_COMMAND_T"
0000021c 434f4d4d414e 
00000222 445f5400 
                        1260 	.section	.debug_info
00000186 00000000*      1261 	.word	.Ldw_str_begin+534
0000018a 8f01           1262 	.byte	143,1
0000018c 0e             1263 	.byte	14
0000018d 04             1264 	.byte	4
0000018e 04             1265 	.byte	4
0000018f 01             1266 	.byte	1
                        1267 
                        1268 .LDW_5dcd180:
00000190 33             1269 	.byte	51
                        1270 	.section	.debug_str
00000226 525f45454c5f   1271 	.strz	"R_EEL_CMD_READ"
0000022c 434d445f5245 
00000232 414400 
                        1272 	.section	.debug_info
00000191 00000000*      1273 	.word	.Ldw_str_begin+550
00000195 9101           1274 	.byte	145,1
00000197 05             1275 	.byte	5
00000198 04             1276 	.byte	4
00000199 00             1277 	.byte	0
                        1278 
                        1279 .LDW_5dcd1e0:
0000019a 33             1280 	.byte	51
                        1281 	.section	.debug_str
00000235 525f45454c5f   1282 	.strz	"R_EEL_CMD_WRITE"
0000023b 434d445f5752 
00000241 49544500 
                        1283 	.section	.debug_info
0000019b 00000000*      1284 	.word	.Ldw_str_begin+565
0000019f 9501           1285 	.byte	149,1
000001a1 05             1286 	.byte	5
000001a2 04             1287 	.byte	4
000001a3 01             1288 	.byte	1
                        1289 
                        1290 .LDW_5dcd240:
000001a4 33             1291 	.byte	51
                        1292 	.section	.debug_str
00000245 525f45454c5f   1293 	.strz	"R_EEL_CMD_WRITE_INC"
0000024b 434d445f5752 
00000251 4954455f494e 
00000257 4300 
                        1294 	.section	.debug_info
000001a5 00000000*      1295 	.word	.Ldw_str_begin+581
000001a9 9601           1296 	.byte	150,1
000001ab 05             1297 	.byte	5
000001ac 04             1298 	.byte	4
000001ad 02             1299 	.byte	2
                        1300 

                                                                      Page 27
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        1301 .LDW_5dcd2a0:
000001ae 33             1302 	.byte	51
                        1303 	.section	.debug_str
00000259 525f45454c5f   1304 	.strz	"R_EEL_CMD_INVALIDATE"
0000025f 434d445f494e 
00000265 56414c494441 
0000026b 544500 
                        1305 	.section	.debug_info
000001af 00000000*      1306 	.word	.Ldw_str_begin+601
000001b3 9701           1307 	.byte	151,1
000001b5 05             1308 	.byte	5
000001b6 04             1309 	.byte	4
000001b7 03             1310 	.byte	3
                        1311 
                        1312 .LDW_5dcd300:
000001b8 33             1313 	.byte	51
                        1314 	.section	.debug_str
0000026e 525f45454c5f   1315 	.strz	"R_EEL_CMD_WRITE_IMM"
00000274 434d445f5752 
0000027a 4954455f494d 
00000280 4d00 
                        1316 	.section	.debug_info
000001b9 00000000*      1317 	.word	.Ldw_str_begin+622
000001bd 9801           1318 	.byte	152,1
000001bf 05             1319 	.byte	5
000001c0 04             1320 	.byte	4
000001c1 04             1321 	.byte	4
                        1322 
                        1323 .LDW_5dcd360:
000001c2 33             1324 	.byte	51
                        1325 	.section	.debug_str
00000282 525f45454c5f   1326 	.strz	"R_EEL_CMD_WRITE_INC_IMM"
00000288 434d445f5752 
0000028e 4954455f494e 
00000294 435f494d4d00 
                        1327 	.section	.debug_info
000001c3 00000000*      1328 	.word	.Ldw_str_begin+642
000001c7 9901           1329 	.byte	153,1
000001c9 05             1330 	.byte	5
000001ca 04             1331 	.byte	4
000001cb 05             1332 	.byte	5
                        1333 
                        1334 .LDW_5dcd3c0:
000001cc 33             1335 	.byte	51
                        1336 	.section	.debug_str
0000029a 525f45454c5f   1337 	.strz	"R_EEL_CMD_INVALIDATE_IMM"
000002a0 434d445f494e 
000002a6 56414c494441 
000002ac 54455f494d4d 
000002b2 00 
                        1338 	.section	.debug_info
000001cd 00000000*      1339 	.word	.Ldw_str_begin+666
000001d1 9a01           1340 	.byte	154,1
000001d3 05             1341 	.byte	5
000001d4 04             1342 	.byte	4
000001d5 06             1343 	.byte	6
                        1344 
                        1345 .LDW_5dcd420:
000001d6 33             1346 	.byte	51
                        1347 	.section	.debug_str
000002b3 525f45454c5f   1348 	.strz	"R_EEL_CMD_FORMAT"

                                                                      Page 28
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000002b9 434d445f464f 
000002bf 524d415400 
                        1349 	.section	.debug_info
000001d7 00000000*      1350 	.word	.Ldw_str_begin+691
000001db 9b01           1351 	.byte	155,1
000001dd 05             1352 	.byte	5
000001de 04             1353 	.byte	4
000001df 07             1354 	.byte	7
                        1355 
                        1356 .LDW_5dcd480:
000001e0 33             1357 	.byte	51
                        1358 	.section	.debug_str
000002c4 525f45454c5f   1359 	.strz	"R_EEL_CMD_CLEANUP"
000002ca 434d445f434c 
000002d0 45414e555000 
                        1360 	.section	.debug_info
000001e1 00000000*      1361 	.word	.Ldw_str_begin+708
000001e5 9c01           1362 	.byte	156,1
000001e7 05             1363 	.byte	5
000001e8 04             1364 	.byte	4
000001e9 08             1365 	.byte	8
                        1366 
000001ea 00             1367 	.byte	0
                        1368 
                        1369 .LDW_f22e570:
000001eb 2d             1370 	.byte	45
                        1371 	.section	.debug_str
000002d6 725f65656c5f   1372 	.strz	"r_eel_command_t"
000002dc 636f6d6d616e 
000002e2 645f7400 
                        1373 	.section	.debug_info
000001ec 00000000*      1374 	.word	.Ldw_str_begin+726
000001f0 9d01           1375 	.byte	157,1
000001f2 03             1376 	.byte	3
000001f3 04             1377 	.byte	4
000001f4 00000000*      1378 	.word	.LDW_5e48650
                        1379 
                        1380 .LDW_f22d5b0:
000001f8 46             1381 	.byte	70
                        1382 	.section	.debug_str
000002e6 525f45454c5f   1383 	.strz	"R_EEL_REQUEST_T"
000002ec 524551554553 
000002f2 545f5400 
                        1384 	.section	.debug_info
000001f9 00000000*      1385 	.word	.Ldw_str_begin+742
000001fd a401           1386 	.byte	164,1
000001ff 19             1387 	.byte	25
00000200 04             1388 	.byte	4
00000201 14             1389 	.byte	20
00000202 01             1390 	.byte	1
                        1391 
                        1392 	.section	.debug_abbrev
00000078 46             1393 	.byte	70
00000079 13             1394 	.byte	19
0000007a 01             1395 	.byte	1
0000007b 030e           1396 	.byte	3,14
0000007d 3b0f           1397 	.byte	59,15
0000007f 390f           1398 	.byte	57,15
00000081 3a0f           1399 	.byte	58,15
00000083 0b0f           1400 	.byte	11,15
00000085 320b           1401 	.byte	50,11

                                                                      Page 29
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000087 0000           1402 	.byte	0,0
                        1403 
                        1404 	.section	.debug_info
                        1405 .LDW_5e486d0:
00000203 28             1406 	.byte	40
                        1407 	.section	.debug_str
000002f6 616464726573   1408 	.strz	"address_pu08"
000002fc 735f70753038 
00000302 00 
                        1409 	.section	.debug_info
00000204 00000000*      1410 	.word	.Ldw_str_begin+758
00000208 a601           1411 	.byte	166,1
0000020a 19             1412 	.byte	25
0000020b 04             1413 	.byte	4
0000020c 00000000*      1414 	.word	.LDW_f3baf00
00000210 0223           1415 	.byte	2,35
00000212 00             1416 	.byte	0
00000213 01             1417 	.byte	1
                        1418 
                        1419 	.section	.debug_abbrev
00000089 28             1420 	.byte	40
0000008a 0d             1421 	.byte	13
0000008b 00             1422 	.byte	0
0000008c 030e           1423 	.byte	3,14
0000008e 3b0f           1424 	.byte	59,15
00000090 390f           1425 	.byte	57,15
00000092 3a0f           1426 	.byte	58,15
00000094 4910           1427 	.byte	73,16
00000096 380a           1428 	.byte	56,10
00000098 320b           1429 	.byte	50,11
0000009a 0000           1430 	.byte	0,0
                        1431 
                        1432 	.section	.debug_info
                        1433 .LDW_5e48740:
00000214 28             1434 	.byte	40
                        1435 	.section	.debug_str
00000303 6964656e7469   1436 	.strz	"identifier_u16"
00000309 666965725f75 
0000030f 313600 
                        1437 	.section	.debug_info
00000215 00000000*      1438 	.word	.Ldw_str_begin+771
00000219 a701           1439 	.byte	167,1
0000021b 19             1440 	.byte	25
0000021c 04             1441 	.byte	4
0000021d 00000000*      1442 	.word	.LDW_f3bae10
00000221 0223           1443 	.byte	2,35
00000223 04             1444 	.byte	4
00000224 01             1445 	.byte	1
                        1446 
                        1447 .LDW_5e487b0:
00000225 28             1448 	.byte	40
                        1449 	.section	.debug_str
00000312 6c656e677468   1450 	.strz	"length_u16"
00000318 5f75313600 
                        1451 	.section	.debug_info
00000226 00000000*      1452 	.word	.Ldw_str_begin+786
0000022a a801           1453 	.byte	168,1
0000022c 19             1454 	.byte	25
0000022d 04             1455 	.byte	4
0000022e 00000000*      1456 	.word	.LDW_f3bae10
00000232 0223           1457 	.byte	2,35

                                                                      Page 30
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000234 06             1458 	.byte	6
00000235 01             1459 	.byte	1
                        1460 
                        1461 .LDW_5e48820:
00000236 28             1462 	.byte	40
                        1463 	.section	.debug_str
0000031d 6f6666736574   1464 	.strz	"offset_u16"
00000323 5f75313600 
                        1465 	.section	.debug_info
00000237 00000000*      1466 	.word	.Ldw_str_begin+797
0000023b a901           1467 	.byte	169,1
0000023d 19             1468 	.byte	25
0000023e 04             1469 	.byte	4
0000023f 00000000*      1470 	.word	.LDW_f3bae10
00000243 0223           1471 	.byte	2,35
00000245 08             1472 	.byte	8
00000246 01             1473 	.byte	1
                        1474 
                        1475 .LDW_5e48890:
00000247 28             1476 	.byte	40
                        1477 	.section	.debug_str
00000328 636f6d6d616e   1478 	.strz	"command_enu"
0000032e 645f656e7500 
                        1479 	.section	.debug_info
00000248 00000000*      1480 	.word	.Ldw_str_begin+808
0000024c aa01           1481 	.byte	170,1
0000024e 19             1482 	.byte	25
0000024f 04             1483 	.byte	4
00000250 00000000*      1484 	.word	.LDW_f22e570
00000254 0223           1485 	.byte	2,35
00000256 0c             1486 	.byte	12
00000257 01             1487 	.byte	1
                        1488 
                        1489 .LDW_5e48900:
00000258 28             1490 	.byte	40
                        1491 	.section	.debug_str
00000334 737461747573   1492 	.strz	"status_enu"
0000033a 5f656e7500 
                        1493 	.section	.debug_info
00000259 00000000*      1494 	.word	.Ldw_str_begin+820
0000025d ab01           1495 	.byte	171,1
0000025f 19             1496 	.byte	25
00000260 04             1497 	.byte	4
00000261 00000000*      1498 	.word	.LDW_f22da30
00000265 0223           1499 	.byte	2,35
00000267 10             1500 	.byte	16
00000268 01             1501 	.byte	1
                        1502 
00000269 00             1503 	.byte	0
                        1504 
                        1505 .LDW_f22d6d0:
0000026a 2d             1506 	.byte	45
                        1507 	.section	.debug_str
0000033f 725f65656c5f   1508 	.strz	"r_eel_request_t"
00000345 726571756573 
0000034b 745f7400 
                        1509 	.section	.debug_info
0000026b 00000000*      1510 	.word	.Ldw_str_begin+831
0000026f ac01           1511 	.byte	172,1
00000271 03             1512 	.byte	3
00000272 04             1513 	.byte	4

                                                                      Page 31
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000273 00000000*      1514 	.word	.LDW_f22d640
                        1515 
                        1516 .LDW_5e48970:
00000277 34             1517 	.byte	52
                        1518 	.section	.debug_str
0000034f 525f45454c5f   1519 	.strz	"R_EEL_ACCESS_STATUS_T"
00000355 414343455353 
0000035b 5f5354415455 
00000361 535f5400 
                        1520 	.section	.debug_info
00000278 00000000*      1521 	.word	.Ldw_str_begin+847
0000027c b301           1522 	.byte	179,1
0000027e 0e             1523 	.byte	14
0000027f 04             1524 	.byte	4
00000280 04             1525 	.byte	4
00000281 01             1526 	.byte	1
                        1527 
                        1528 .LDW_5dcd4e0:
00000282 33             1529 	.byte	51
                        1530 	.section	.debug_str
00000365 525f45454c5f   1531 	.strz	"R_EEL_ACCESS_LOCKED"
0000036b 414343455353 
00000371 5f4c4f434b45 
00000377 4400 
                        1532 	.section	.debug_info
00000283 00000000*      1533 	.word	.Ldw_str_begin+869
00000287 b501           1534 	.byte	181,1
00000289 05             1535 	.byte	5
0000028a 04             1536 	.byte	4
0000028b 00             1537 	.byte	0
                        1538 
                        1539 .LDW_5dcd540:
0000028c 33             1540 	.byte	51
                        1541 	.section	.debug_str
00000379 525f45454c5f   1542 	.strz	"R_EEL_ACCESS_READ_ONLY"
0000037f 414343455353 
00000385 5f524541445f 
0000038b 4f4e4c5900 
                        1543 	.section	.debug_info
0000028d 00000000*      1544 	.word	.Ldw_str_begin+889
00000291 b601           1545 	.byte	182,1
00000293 05             1546 	.byte	5
00000294 04             1547 	.byte	4
00000295 01             1548 	.byte	1
                        1549 
                        1550 .LDW_5dcd5a0:
00000296 33             1551 	.byte	51
                        1552 	.section	.debug_str
00000390 525f45454c5f   1553 	.strz	"R_EEL_ACCESS_READ_WRITE"
00000396 414343455353 
0000039c 5f524541445f 
000003a2 575249544500 
                        1554 	.section	.debug_info
00000297 00000000*      1555 	.word	.Ldw_str_begin+912
0000029b b701           1556 	.byte	183,1
0000029d 05             1557 	.byte	5
0000029e 04             1558 	.byte	4
0000029f 02             1559 	.byte	2
                        1560 
                        1561 .LDW_5dcd600:
000002a0 33             1562 	.byte	51

                                                                      Page 32
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        1563 	.section	.debug_str
000003a8 525f45454c5f   1564 	.strz	"R_EEL_ACCESS_UNLOCKED"
000003ae 414343455353 
000003b4 5f554e4c4f43 
000003ba 4b454400 
                        1565 	.section	.debug_info
000002a1 00000000*      1566 	.word	.Ldw_str_begin+936
000002a5 b801           1567 	.byte	184,1
000002a7 05             1568 	.byte	5
000002a8 04             1569 	.byte	4
000002a9 03             1570 	.byte	3
                        1571 
                        1572 .LDW_5dcd660:
000002aa 33             1573 	.byte	51
                        1574 	.section	.debug_str
000003be 525f45454c5f   1575 	.strz	"R_EEL_ACCESS_UNDEFINED"
000003c4 414343455353 
000003ca 5f554e444546 
000003d0 494e454400 
                        1576 	.section	.debug_info
000002ab 00000000*      1577 	.word	.Ldw_str_begin+958
000002af ba01           1578 	.byte	186,1
000002b1 05             1579 	.byte	5
000002b2 04             1580 	.byte	4
000002b3 04             1581 	.byte	4
                        1582 
000002b4 00             1583 	.byte	0
                        1584 
                        1585 .LDW_f22e600:
000002b5 2d             1586 	.byte	45
                        1587 	.section	.debug_str
000003d5 725f65656c5f   1588 	.strz	"r_eel_access_status_t"
000003db 616363657373 
000003e1 5f7374617475 
000003e7 735f7400 
                        1589 	.section	.debug_info
000002b6 00000000*      1590 	.word	.Ldw_str_begin+981
000002ba bb01           1591 	.byte	187,1
000002bc 03             1592 	.byte	3
000002bd 04             1593 	.byte	4
000002be 00000000*      1594 	.word	.LDW_5e48970
                        1595 
                        1596 .LDW_5e489f0:
000002c2 34             1597 	.byte	52
                        1598 	.section	.debug_str
000003eb 525f45454c5f   1599 	.strz	"R_EEL_OPERATION_STATUS_T"
000003f1 4f5045524154 
000003f7 494f4e5f5354 
000003fd 415455535f54 
00000403 00 
                        1600 	.section	.debug_info
000002c3 00000000*      1601 	.word	.Ldw_str_begin+1003
000002c7 c101           1602 	.byte	193,1
000002c9 0e             1603 	.byte	14
000002ca 04             1604 	.byte	4
000002cb 04             1605 	.byte	4
000002cc 01             1606 	.byte	1
                        1607 
                        1608 .LDW_5dcd6c0:
000002cd 33             1609 	.byte	51
                        1610 	.section	.debug_str

                                                                      Page 33
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000404 525f45454c5f   1611 	.strz	"R_EEL_OPERATION_PASSIVE"
0000040a 4f5045524154 
00000410 494f4e5f5041 
00000416 535349564500 
                        1612 	.section	.debug_info
000002ce 00000000*      1613 	.word	.Ldw_str_begin+1028
000002d2 c301           1614 	.byte	195,1
000002d4 05             1615 	.byte	5
000002d5 04             1616 	.byte	4
000002d6 00             1617 	.byte	0
                        1618 
                        1619 .LDW_5dcd720:
000002d7 33             1620 	.byte	51
                        1621 	.section	.debug_str
0000041c 525f45454c5f   1622 	.strz	"R_EEL_OPERATION_IDLE"
00000422 4f5045524154 
00000428 494f4e5f4944 
0000042e 4c4500 
                        1623 	.section	.debug_info
000002d8 00000000*      1624 	.word	.Ldw_str_begin+1052
000002dc c401           1625 	.byte	196,1
000002de 05             1626 	.byte	5
000002df 04             1627 	.byte	4
000002e0 01             1628 	.byte	1
                        1629 
                        1630 .LDW_5dcd780:
000002e1 33             1631 	.byte	51
                        1632 	.section	.debug_str
00000431 525f45454c5f   1633 	.strz	"R_EEL_OPERATION_BUSY"
00000437 4f5045524154 
0000043d 494f4e5f4255 
00000443 535900 
                        1634 	.section	.debug_info
000002e2 00000000*      1635 	.word	.Ldw_str_begin+1073
000002e6 c501           1636 	.byte	197,1
000002e8 05             1637 	.byte	5
000002e9 04             1638 	.byte	4
000002ea 02             1639 	.byte	2
                        1640 
                        1641 .LDW_5dcd7e0:
000002eb 33             1642 	.byte	51
                        1643 	.section	.debug_str
00000446 525f45454c5f   1644 	.strz	"R_EEL_OPERATION_STARTUP"
0000044c 4f5045524154 
00000452 494f4e5f5354 
00000458 415254555000 
                        1645 	.section	.debug_info
000002ec 00000000*      1646 	.word	.Ldw_str_begin+1094
000002f0 c601           1647 	.byte	198,1
000002f2 05             1648 	.byte	5
000002f3 04             1649 	.byte	4
000002f4 03             1650 	.byte	3
                        1651 
                        1652 .LDW_5dcd840:
000002f5 33             1653 	.byte	51
                        1654 	.section	.debug_str
0000045e 525f45454c5f   1655 	.strz	"R_EEL_OPERATION_SUSPENDED"
00000464 4f5045524154 
0000046a 494f4e5f5355 
00000470 5350454e4445 
00000476 4400 

                                                                      Page 34
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        1656 	.section	.debug_info
000002f6 00000000*      1657 	.word	.Ldw_str_begin+1118
000002fa c701           1658 	.byte	199,1
000002fc 05             1659 	.byte	5
000002fd 04             1660 	.byte	4
000002fe 04             1661 	.byte	4
                        1662 
                        1663 .LDW_5dcd8a0:
000002ff 33             1664 	.byte	51
                        1665 	.section	.debug_str
00000478 525f45454c5f   1666 	.strz	"R_EEL_OPERATION_UNDEFINED"
0000047e 4f5045524154 
00000484 494f4e5f554e 
0000048a 444546494e45 
00000490 4400 
                        1667 	.section	.debug_info
00000300 00000000*      1668 	.word	.Ldw_str_begin+1144
00000304 c901           1669 	.byte	201,1
00000306 05             1670 	.byte	5
00000307 04             1671 	.byte	4
00000308 05             1672 	.byte	5
                        1673 
00000309 00             1674 	.byte	0
                        1675 
                        1676 .LDW_f22e690:
0000030a 2d             1677 	.byte	45
                        1678 	.section	.debug_str
00000492 725f65656c5f   1679 	.strz	"r_eel_operation_status_t"
00000498 6f7065726174 
0000049e 696f6e5f7374 
000004a4 617475735f74 
000004aa 00 
                        1680 	.section	.debug_info
0000030b 00000000*      1681 	.word	.Ldw_str_begin+1170
0000030f cb01           1682 	.byte	203,1
00000311 03             1683 	.byte	3
00000312 04             1684 	.byte	4
00000313 00000000*      1685 	.word	.LDW_5e489f0
                        1686 
                        1687 .LDW_f22d7f0:
00000317 46             1688 	.byte	70
                        1689 	.section	.debug_str
000004ab 525f45454c5f   1690 	.strz	"R_EEL_DRIVER_STATUS_T"
000004b1 445249564552 
000004b7 5f5354415455 
000004bd 535f5400 
                        1691 	.section	.debug_info
00000318 00000000*      1692 	.word	.Ldw_str_begin+1195
0000031c d101           1693 	.byte	209,1
0000031e 10             1694 	.byte	16
0000031f 04             1695 	.byte	4
00000320 0c             1696 	.byte	12
00000321 01             1697 	.byte	1
                        1698 
                        1699 .LDW_5e48a70:
00000322 28             1700 	.byte	40
                        1701 	.section	.debug_str
000004c1 6f7065726174   1702 	.strz	"operationStatus_enu"
000004c7 696f6e537461 
000004cd 7475735f656e 
000004d3 7500 

                                                                      Page 35
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        1703 	.section	.debug_info
00000323 00000000*      1704 	.word	.Ldw_str_begin+1217
00000327 d301           1705 	.byte	211,1
00000329 21             1706 	.byte	33
0000032a 04             1707 	.byte	4
0000032b 00000000*      1708 	.word	.LDW_f22e690
0000032f 0223           1709 	.byte	2,35
00000331 00             1710 	.byte	0
00000332 01             1711 	.byte	1
                        1712 
                        1713 .LDW_5e48ae0:
00000333 28             1714 	.byte	40
                        1715 	.section	.debug_str
000004d5 616363657373   1716 	.strz	"accessStatus_enu"
000004db 537461747573 
000004e1 5f656e7500 
                        1717 	.section	.debug_info
00000334 00000000*      1718 	.word	.Ldw_str_begin+1237
00000338 d401           1719 	.byte	212,1
0000033a 21             1720 	.byte	33
0000033b 04             1721 	.byte	4
0000033c 00000000*      1722 	.word	.LDW_f22e600
00000340 0223           1723 	.byte	2,35
00000342 04             1724 	.byte	4
00000343 01             1725 	.byte	1
                        1726 
                        1727 .LDW_5e4d3f0:
00000344 28             1728 	.byte	40
                        1729 	.section	.debug_str
000004e6 6261636b6772   1730 	.strz	"backgroundStatus_enu"
000004ec 6f756e645374 
000004f2 617475735f65 
000004f8 6e7500 
                        1731 	.section	.debug_info
00000345 00000000*      1732 	.word	.Ldw_str_begin+1254
00000349 d501           1733 	.byte	213,1
0000034b 21             1734 	.byte	33
0000034c 04             1735 	.byte	4
0000034d 00000000*      1736 	.word	.LDW_f22da30
00000351 0223           1737 	.byte	2,35
00000353 08             1738 	.byte	8
00000354 01             1739 	.byte	1
                        1740 
00000355 00             1741 	.byte	0
                        1742 
                        1743 .LDW_f22d880:
00000356 2d             1744 	.byte	45
                        1745 	.section	.debug_str
000004fb 725f65656c5f   1746 	.strz	"r_eel_driver_status_t"
00000501 647269766572 
00000507 5f7374617475 
0000050d 735f7400 
                        1747 	.section	.debug_info
00000357 00000000*      1748 	.word	.Ldw_str_begin+1275
0000035b d601           1749 	.byte	214,1
0000035d 03             1750 	.byte	3
0000035e 04             1751 	.byte	4
0000035f 00000000*      1752 	.word	.LDW_f22d7f0
                        1753 
                        1754 .LDW_f62d600:
00000363 06             1755 	.byte	6

                                                                      Page 36
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        1756 	.section	.debug_str
00000511 726571537461   1757 	.strz	"reqStat"
00000517 7400 
                        1758 	.section	.debug_info
00000364 00000000*      1759 	.word	.Ldw_str_begin+1297
00000368 0a             1760 	.byte	10
00000369 10             1761 	.byte	16
0000036a 01             1762 	.byte	1
0000036b 00000000*      1763 	.word	.LDW_f22da30
0000036f 01             1764 	.byte	1
00000370 00             1765 	.byte	0
00000371 05             1766 	.byte	5
00000372 03             1767 	.byte	3
00000373 00000000*      1768 	.word	_reqStat
                        1769 
                        1770 	.section	.debug_abbrev
0000009c 06             1771 	.byte	6
0000009d 34             1772 	.byte	52
0000009e 00             1773 	.byte	0
0000009f 030e           1774 	.byte	3,14
000000a1 3b0f           1775 	.byte	59,15
000000a3 390f           1776 	.byte	57,15
000000a5 3a0f           1777 	.byte	58,15
000000a7 4910           1778 	.byte	73,16
000000a9 3f0c           1779 	.byte	63,12
000000ab 3c0c           1780 	.byte	60,12
000000ad 020a           1781 	.byte	2,10
000000af 0000           1782 	.byte	0,0
                        1783 
                        1784 	.section	.debug_info
                        1785 .LDW_f63dac0:
00000377 1a             1786 	.byte	26
                        1787 	.section	.debug_str
00000519 525f45454c5f   1788 	.strz	"R_EEL_Execute"
0000051f 457865637574 
00000525 6500 
                        1789 	.section	.debug_info
00000378 00000000*      1790 	.word	.Ldw_str_begin+1305
0000037c 48             1791 	.byte	72
0000037d 25             1792 	.byte	37
0000037e 0a             1793 	.byte	10
0000037f 01             1794 	.byte	1
00000380 00             1795 	.byte	0
00000381 01             1796 	.byte	1
00000382 01             1797 	.byte	1
00000383 00             1798 	.byte	0
00000384 01             1799 	.byte	1
                        1800 
                        1801 	.section	.debug_abbrev
000000b1 1a             1802 	.byte	26
000000b2 2e             1803 	.byte	46
000000b3 01             1804 	.byte	1
000000b4 030e           1805 	.byte	3,14
000000b6 3b0f           1806 	.byte	59,15
000000b8 390f           1807 	.byte	57,15
000000ba 3a0f           1808 	.byte	58,15
000000bc 3c0c           1809 	.byte	60,12
000000be 200b           1810 	.byte	32,11
000000c0 3f0c           1811 	.byte	63,12
000000c2 320b           1812 	.byte	50,11
000000c4 4c0b           1813 	.byte	76,11

                                                                      Page 37
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000000c6 270c           1814 	.byte	39,12
000000c8 0000           1815 	.byte	0,0
                        1816 
                        1817 	.section	.debug_info
00000385 00             1818 	.byte	0
                        1819 
                        1820 .LDW_f63dbc0:
00000386 1a             1821 	.byte	26
                        1822 	.section	.debug_str
00000527 525f45454c5f   1823 	.strz	"R_EEL_Handler"
0000052d 48616e646c65 
00000533 7200 
                        1824 	.section	.debug_info
00000387 00000000*      1825 	.word	.Ldw_str_begin+1319
0000038b 4b             1826 	.byte	75
0000038c 25             1827 	.byte	37
0000038d 0a             1828 	.byte	10
0000038e 01             1829 	.byte	1
0000038f 00             1830 	.byte	0
00000390 01             1831 	.byte	1
00000391 01             1832 	.byte	1
00000392 00             1833 	.byte	0
00000393 01             1834 	.byte	1
                        1835 
00000394 00             1836 	.byte	0
                        1837 
                        1838 .LDW_f63ddc0:
00000395 1b             1839 	.byte	27
                        1840 	.section	.debug_str
00000535 525f45454c5f   1841 	.strz	"R_EEL_ShutDown"
0000053b 53687574446f 
00000541 776e00 
                        1842 	.section	.debug_info
00000396 00000000*      1843 	.word	.Ldw_str_begin+1333
0000039a 51             1844 	.byte	81
0000039b 25             1845 	.byte	37
0000039c 0a             1846 	.byte	10
0000039d 00000000*      1847 	.word	.LDW_f22da30
000003a1 01             1848 	.byte	1
000003a2 00             1849 	.byte	0
000003a3 01             1850 	.byte	1
000003a4 01             1851 	.byte	1
000003a5 00             1852 	.byte	0
000003a6 01             1853 	.byte	1
                        1854 
                        1855 	.section	.debug_abbrev
000000ca 1b             1856 	.byte	27
000000cb 2e             1857 	.byte	46
000000cc 01             1858 	.byte	1
000000cd 030e           1859 	.byte	3,14
000000cf 3b0f           1860 	.byte	59,15
000000d1 390f           1861 	.byte	57,15
000000d3 3a0f           1862 	.byte	58,15
000000d5 4910           1863 	.byte	73,16
000000d7 3c0c           1864 	.byte	60,12
000000d9 200b           1865 	.byte	32,11
000000db 3f0c           1866 	.byte	63,12
000000dd 320b           1867 	.byte	50,11
000000df 4c0b           1868 	.byte	76,11
000000e1 270c           1869 	.byte	39,12
000000e3 0000           1870 	.byte	0,0

                                                                      Page 38
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        1871 
                        1872 	.section	.debug_info
000003a7 00             1873 	.byte	0
                        1874 
                        1875 .LDW_f63e0c0:
000003a8 1b             1876 	.byte	27
                        1877 	.section	.debug_str
00000544 525f45454c5f   1878 	.strz	"R_EEL_GetDriverStatus"
0000054a 476574447269 
00000550 766572537461 
00000556 74757300 
                        1879 	.section	.debug_info
000003a9 00000000*      1880 	.word	.Ldw_str_begin+1348
000003ad 5a             1881 	.byte	90
000003ae 25             1882 	.byte	37
000003af 0a             1883 	.byte	10
000003b0 00000000*      1884 	.word	.LDW_f22da30
000003b4 01             1885 	.byte	1
000003b5 00             1886 	.byte	0
000003b6 01             1887 	.byte	1
000003b7 01             1888 	.byte	1
000003b8 00             1889 	.byte	0
000003b9 01             1890 	.byte	1
                        1891 
000003ba 00             1892 	.byte	0
                        1893 
                        1894 .LDW_f63e4c0:
000003bb 1a             1895 	.byte	26
                        1896 	.section	.debug_str
0000055a 46444c5f4f70   1897 	.strz	"FDL_Open"
00000560 656e00 
                        1898 	.section	.debug_info
000003bc 00000000*      1899 	.word	.Ldw_str_begin+1370
000003c0 25             1900 	.byte	37
000003c1 06             1901 	.byte	6
000003c2 10             1902 	.byte	16
000003c3 01             1903 	.byte	1
000003c4 00             1904 	.byte	0
000003c5 01             1905 	.byte	1
000003c6 01             1906 	.byte	1
000003c7 00             1907 	.byte	0
000003c8 01             1908 	.byte	1
                        1909 
000003c9 00             1910 	.byte	0
                        1911 
                        1912 .LDW_f63e5c0:
000003ca 1a             1913 	.byte	26
                        1914 	.section	.debug_str
00000563 46444c5f436c   1915 	.strz	"FDL_Close"
00000569 6f736500 
                        1916 	.section	.debug_info
000003cb 00000000*      1917 	.word	.Ldw_str_begin+1379
000003cf 26             1918 	.byte	38
000003d0 06             1919 	.byte	6
000003d1 10             1920 	.byte	16
000003d2 01             1921 	.byte	1
000003d3 00             1922 	.byte	0
000003d4 01             1923 	.byte	1
000003d5 01             1924 	.byte	1
000003d6 00             1925 	.byte	0
000003d7 01             1926 	.byte	1

                                                                      Page 39
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        1927 
000003d8 00             1928 	.byte	0
                        1929 
                        1930 .LDW_f6452c0:
000003d9 1b             1931 	.byte	27
                        1932 	.section	.debug_str
0000056d 45585f45455f   1933 	.strz	"EX_EE_INIT"
00000573 494e495400 
                        1934 	.section	.debug_info
000003da 00000000*      1935 	.word	.Ldw_str_begin+1389
000003de 19             1936 	.byte	25
000003df 17             1937 	.byte	23
000003e0 01             1938 	.byte	1
000003e1 00000000*      1939 	.word	.LDW_f22da30
000003e5 01             1940 	.byte	1
000003e6 00             1941 	.byte	0
000003e7 01             1942 	.byte	1
000003e8 01             1943 	.byte	1
000003e9 00             1944 	.byte	0
000003ea 01             1945 	.byte	1
                        1946 
000003eb 00             1947 	.byte	0
                        1948 
                        1949 .LDW_f6453c0:
000003ec 1a             1950 	.byte	26
                        1951 	.section	.debug_str
00000578 53616d706c65   1952 	.strz	"SampleApp_EEL_HdrLoop"
0000057e 4170705f4545 
00000584 4c5f4864724c 
0000058a 6f6f7000 
                        1953 	.section	.debug_info
000003ed 00000000*      1954 	.word	.Ldw_str_begin+1400
000003f1 1a             1955 	.byte	26
000003f2 17             1956 	.byte	23
000003f3 01             1957 	.byte	1
000003f4 01             1958 	.byte	1
000003f5 00             1959 	.byte	0
000003f6 01             1960 	.byte	1
000003f7 01             1961 	.byte	1
000003f8 00             1962 	.byte	0
000003f9 01             1963 	.byte	1
                        1964 
000003fa 00             1965 	.byte	0
                        1966 
                        1967 .LDW_f6454c0:
000003fb 1a             1968 	.byte	26
                        1969 	.section	.debug_str
0000058e 53616d706c65   1970 	.strz	"SampleApp_EEL_ErrorHdr"
00000594 4170705f4545 
0000059a 4c5f4572726f 
000005a0 7248647200 
                        1971 	.section	.debug_info
000003fc 00000000*      1972 	.word	.Ldw_str_begin+1422
00000400 1b             1973 	.byte	27
00000401 17             1974 	.byte	23
00000402 01             1975 	.byte	1
00000403 01             1976 	.byte	1
00000404 00             1977 	.byte	0
00000405 01             1978 	.byte	1
00000406 01             1979 	.byte	1
00000407 00             1980 	.byte	0

                                                                      Page 40
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000408 01             1981 	.byte	1
                        1982 
00000409 00             1983 	.byte	0
                        1984 
                        1985 .LDW_f3988e0:
0000040a 18             1986 	.byte	24
                        1987 	.section	.debug_str
000005a5 496e7465726e   1988 	.strz	"Internal_EEPROM_OPEN"
000005ab 616c5f454550 
000005b1 524f4d5f4f50 
000005b7 454e00 
                        1989 	.section	.debug_info
0000040b 00000000*      1990 	.word	.Ldw_str_begin+1445
0000040f 1d             1991 	.byte	29
00000410 06             1992 	.byte	6
00000411 01             1993 	.byte	1
00000412 00000000*      1994 	.word	_Internal_EEPROM_OPEN
00000416 00000000*      1995 	.word	___ghs_eofn_Internal_EEPROM_OPEN
0000041a 01             1996 	.byte	1
0000041b 53             1997 	.byte	83
0000041c 8280808008     1998 	.byte	130,128,128,128,8
00000421 04             1999 	.byte	4
00000422 828004         2000 	.byte	130,128,4
00000425 04             2001 	.byte	4
00000426 00             2002 	.byte	0
00000427 00             2003 	.byte	0
00000428 00             2004 	.byte	0
00000429 01             2005 	.byte	1
0000042a 01             2006 	.byte	1
0000042b 00             2007 	.byte	0
0000042c 01             2008 	.byte	1
                        2009 
                        2010 	.section	.debug_abbrev
000000e5 18             2011 	.byte	24
000000e6 2e             2012 	.byte	46
000000e7 01             2013 	.byte	1
000000e8 030e           2014 	.byte	3,14
000000ea 3b0f           2015 	.byte	59,15
000000ec 390f           2016 	.byte	57,15
000000ee 3a0f           2017 	.byte	58,15
000000f0 1101           2018 	.byte	17,1
000000f2 1201           2019 	.byte	18,1
000000f4 400a           2020 	.byte	64,10
000000f6 8341           2021 	.byte	131,65
000000f8 0f             2022 	.byte	15
000000f9 8741           2023 	.byte	135,65
000000fb 0d             2024 	.byte	13
000000fc 8541           2025 	.byte	133,65
000000fe 0f             2026 	.byte	15
000000ff 8641           2027 	.byte	134,65
00000101 0d             2028 	.byte	13
00000102 9241           2029 	.byte	146,65
00000104 0f             2030 	.byte	15
00000105 3c0c           2031 	.byte	60,12
00000107 200b           2032 	.byte	32,11
00000109 3f0c           2033 	.byte	63,12
0000010b 320b           2034 	.byte	50,11
0000010d 4c0b           2035 	.byte	76,11
0000010f 270c           2036 	.byte	39,12
00000111 0000           2037 	.byte	0,0
                        2038 

                                                                      Page 41
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        2039 	.section	.debug_frame
                        2040 .LDW_f643df0:
00000090 00000000*      2041 	.word	.LDW_unq_4-.LDW_unq_3
                        2042 .LDW_unq_3:
00000094 00000000*      2043 	.word	.LDW_f1d4e20
00000098 00000000*      2044 	.word	_Internal_EEPROM_OPEN
0000009c 00000000*      2045 	.word	___ghs_eofn_Internal_EEPROM_OPEN-_Internal_EEPROM_OPEN
000000a0 46             2046 	.byte	70
000000a1 9f             2047 	.byte	159
000000a2 00             2048 	.byte	0
000000a3 01             2049 	.byte	1
000000a4 00000000*      2050 	.word	.LDW21
000000a8 44             2051 	.byte	68
000000a9 df             2052 	.byte	223
000000aa 00             2053 	.byte	0
000000ab 00             2054 	.byte	0
                        2055 .LDW_unq_4:
                        2056 	.section	.debug_line
0000035e 000502         2057 	.byte	0,5,2
00000361 00000000*      2058 	.word	_Internal_EEPROM_OPEN
00000365 06             2059 	.byte	6
00000366 03             2060 	.byte	3
00000367 1d             2061 	.byte	29
00000368 02             2062 	.byte	2
00000369 00             2063 	.byte	0
0000036a 01             2064 	.byte	1
0000036b 23             2065 	.byte	35
0000036c 000502         2066 	.byte	0,5,2
0000036f 00000000*      2067 	.word	.LDWlin1
00000373 0b             2068 	.byte	11
00000374 06             2069 	.byte	6
00000375 000502         2070 	.byte	0,5,2
00000378 00000000*      2071 	.word	___ghs_eofn_Internal_EEPROM_OPEN
0000037c 02             2072 	.byte	2
0000037d 00             2073 	.byte	0
0000037e 000101         2074 	.byte	0,1,1
                        2075 	.section	.debug_info
                        2076 .LDW_f3babe0:
0000042d 22             2077 	.byte	34
0000042e 00000000*      2078 	.word	.LDW11
00000432 00000000*      2079 	.word	.LDW21
                        2080 
                        2081 	.section	.debug_abbrev
00000113 22             2082 	.byte	34
00000114 0b             2083 	.byte	11
00000115 01             2084 	.byte	1
00000116 1101           2085 	.byte	17,1
00000118 1201           2086 	.byte	18,1
0000011a 0000           2087 	.byte	0,0
                        2088 
                        2089 	.section	.debug_info
00000436 00             2090 	.byte	0
                        2091 
00000437 00             2092 	.byte	0
                        2093 
                        2094 .LDW_f3989e0:
00000438 18             2095 	.byte	24
                        2096 	.section	.debug_str
000005ba 496e7465726e   2097 	.strz	"Internal_EEPROM_CLOSE"
000005c0 616c5f454550 
000005c6 524f4d5f434c 

                                                                      Page 42
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000005cc 4f534500 
                        2098 	.section	.debug_info
00000439 00000000*      2099 	.word	.Ldw_str_begin+1466
0000043d 22             2100 	.byte	34
0000043e 06             2101 	.byte	6
0000043f 01             2102 	.byte	1
00000440 00000000*      2103 	.word	_Internal_EEPROM_CLOSE
00000444 00000000*      2104 	.word	___ghs_eofn_Internal_EEPROM_CLOSE
00000448 01             2105 	.byte	1
00000449 53             2106 	.byte	83
0000044a 8280808008     2107 	.byte	130,128,128,128,8
0000044f 04             2108 	.byte	4
00000450 828004         2109 	.byte	130,128,4
00000453 04             2110 	.byte	4
00000454 00             2111 	.byte	0
00000455 00             2112 	.byte	0
00000456 00             2113 	.byte	0
00000457 01             2114 	.byte	1
00000458 01             2115 	.byte	1
00000459 00             2116 	.byte	0
0000045a 01             2117 	.byte	1
                        2118 
                        2119 	.section	.debug_frame
                        2120 .LDW_f643e90:
000000ac 00000000*      2121 	.word	.LDW_unq_6-.LDW_unq_5
                        2122 .LDW_unq_5:
000000b0 00000000*      2123 	.word	.LDW_f1d4e20
000000b4 00000000*      2124 	.word	_Internal_EEPROM_CLOSE
000000b8 00000000*      2125 	.word	___ghs_eofn_Internal_EEPROM_CLOSE-_Internal_EEPROM_CLOSE
000000bc 46             2126 	.byte	70
000000bd 9f             2127 	.byte	159
000000be 00             2128 	.byte	0
000000bf 01             2129 	.byte	1
000000c0 00000000*      2130 	.word	.LDW51
000000c4 44             2131 	.byte	68
000000c5 df             2132 	.byte	223
000000c6 00             2133 	.byte	0
000000c7 00             2134 	.byte	0
                        2135 .LDW_unq_6:
                        2136 	.section	.debug_line
00000381 000502         2137 	.byte	0,5,2
00000384 00000000*      2138 	.word	_Internal_EEPROM_CLOSE
00000388 06             2139 	.byte	6
00000389 03             2140 	.byte	3
0000038a 22             2141 	.byte	34
0000038b 02             2142 	.byte	2
0000038c 00             2143 	.byte	0
0000038d 01             2144 	.byte	1
0000038e 23             2145 	.byte	35
0000038f 000502         2146 	.byte	0,5,2
00000392 00000000*      2147 	.word	.LDWlin3
00000396 0b             2148 	.byte	11
00000397 06             2149 	.byte	6
00000398 000502         2150 	.byte	0,5,2
0000039b 00000000*      2151 	.word	___ghs_eofn_Internal_EEPROM_CLOSE
0000039f 02             2152 	.byte	2
000003a0 00             2153 	.byte	0
000003a1 000101         2154 	.byte	0,1,1
                        2155 	.section	.debug_info
                        2156 .LDW_f3bac80:
0000045b 22             2157 	.byte	34

                                                                      Page 43
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
0000045c 00000000*      2158 	.word	.LDW41
00000460 00000000*      2159 	.word	.LDW51
                        2160 
00000464 00             2161 	.byte	0
                        2162 
00000465 00             2163 	.byte	0
                        2164 
                        2165 .LDW_f398ae0:
00000466 18             2166 	.byte	24
                        2167 	.section	.debug_str
000005d0 496e7465726e   2168 	.strz	"Internal_EEL_Init"
000005d6 616c5f45454c 
000005dc 5f496e697400 
                        2169 	.section	.debug_info
00000467 00000000*      2170 	.word	.Ldw_str_begin+1488
0000046b 27             2171 	.byte	39
0000046c 06             2172 	.byte	6
0000046d 01             2173 	.byte	1
0000046e 00000000*      2174 	.word	_Internal_EEL_Init
00000472 00000000*      2175 	.word	___ghs_eofn_Internal_EEL_Init
00000476 01             2176 	.byte	1
00000477 53             2177 	.byte	83
00000478 8280808008     2178 	.byte	130,128,128,128,8
0000047d 04             2179 	.byte	4
0000047e 828004         2180 	.byte	130,128,4
00000481 24             2181 	.byte	36
00000482 00             2182 	.byte	0
00000483 00             2183 	.byte	0
00000484 00             2184 	.byte	0
00000485 01             2185 	.byte	1
00000486 01             2186 	.byte	1
00000487 00             2187 	.byte	0
00000488 01             2188 	.byte	1
                        2189 
                        2190 	.section	.debug_frame
                        2191 .LDW_f643f30:
000000c8 00000000*      2192 	.word	.LDW_unq_8-.LDW_unq_7
                        2193 .LDW_unq_7:
000000cc 00000000*      2194 	.word	.LDW_f1d4e20
000000d0 00000000*      2195 	.word	_Internal_EEL_Init
000000d4 00000000*      2196 	.word	___ghs_eofn_Internal_EEL_Init-_Internal_EEL_Init
000000d8 48             2197 	.byte	72
000000d9 9f             2198 	.byte	159
000000da 20             2199 	.byte	32
000000db 01             2200 	.byte	1
000000dc 00000000*      2201 	.word	.LDW81
000000e0 44             2202 	.byte	68
000000e1 df             2203 	.byte	223
000000e2 00             2204 	.byte	0
000000e3 00             2205 	.byte	0
                        2206 .LDW_unq_8:
                        2207 	.section	.debug_line
000003a4 000502         2208 	.byte	0,5,2
000003a7 00000000*      2209 	.word	_Internal_EEL_Init
000003ab 06             2210 	.byte	6
000003ac 03             2211 	.byte	3
000003ad 27             2212 	.byte	39
000003ae 02             2213 	.byte	2
000003af 00             2214 	.byte	0
000003b0 01             2215 	.byte	1
000003b1 03             2216 	.byte	3

                                                                      Page 44
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000003b2 04             2217 	.byte	4
000003b3 02             2218 	.byte	2
000003b4 08             2219 	.byte	8
000003b5 01             2220 	.byte	1
000003b6 000502         2221 	.byte	0,5,2
000003b9 00000000*      2222 	.word	.LDWlin5
000003bd 0b             2223 	.byte	11
000003be 000502         2224 	.byte	0,5,2
000003c1 00000000*      2225 	.word	.LDWlin6
000003c5 0b             2226 	.byte	11
000003c6 0b             2227 	.byte	11
000003c7 23             2228 	.byte	35
000003c8 000502         2229 	.byte	0,5,2
000003cb 00000000*      2230 	.word	.LDWlin7
000003cf 0b             2231 	.byte	11
000003d0 000502         2232 	.byte	0,5,2
000003d3 00000000*      2233 	.word	.LDWlin8
000003d7 0d             2234 	.byte	13
000003d8 000502         2235 	.byte	0,5,2
000003db 00000000*      2236 	.word	.LDWlin9
000003df 0b             2237 	.byte	11
000003e0 02             2238 	.byte	2
000003e1 00             2239 	.byte	0
000003e2 0b             2240 	.byte	11
000003e3 000502         2241 	.byte	0,5,2
000003e6 00000000*      2242 	.word	.LDWlin10
000003ea 03             2243 	.byte	3
000003eb 04             2244 	.byte	4
000003ec 02             2245 	.byte	2
000003ed 00             2246 	.byte	0
000003ee 01             2247 	.byte	1
000003ef 0c             2248 	.byte	12
000003f0 000502         2249 	.byte	0,5,2
000003f3 00000000*      2250 	.word	.LDWlin11
000003f7 0b             2251 	.byte	11
000003f8 000502         2252 	.byte	0,5,2
000003fb 00000000*      2253 	.word	.LDWlin12
000003ff 0d             2254 	.byte	13
00000400 000502         2255 	.byte	0,5,2
00000403 00000000*      2256 	.word	.LDWlin13
00000407 03             2257 	.byte	3
00000408 7e             2258 	.byte	126
00000409 02             2259 	.byte	2
0000040a 00             2260 	.byte	0
0000040b 01             2261 	.byte	1
0000040c 0d             2262 	.byte	13
0000040d 06             2263 	.byte	6
0000040e 000502         2264 	.byte	0,5,2
00000411 00000000*      2265 	.word	___ghs_eofn_Internal_EEL_Init
00000415 02             2266 	.byte	2
00000416 00             2267 	.byte	0
00000417 000101         2268 	.byte	0,1,1
                        2269 	.section	.debug_info
                        2270 .LDW_f3bad20:
00000489 22             2271 	.byte	34
0000048a 00000000*      2272 	.word	.LDW71
0000048e 00000000*      2273 	.word	.LDW81
                        2274 
                        2275 .LDW_f22d760:
00000492 07             2276 	.byte	7
                        2277 	.section	.debug_str

                                                                      Page 45
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000005e2 6d7952657100   2278 	.strz	"myReq"
                        2279 	.section	.debug_info
00000493 00000000*      2280 	.word	.Ldw_str_begin+1506
00000497 29             2281 	.byte	41
00000498 1b             2282 	.byte	27
00000499 01             2283 	.byte	1
0000049a 00000000*      2284 	.word	.LDW_f22d6d0
0000049e 00             2285 	.byte	0
0000049f 00             2286 	.byte	0
000004a0 00000000*      2287 	.word	.LDW_f5f1dc0
                        2288 	.section	.debug_loc
                        2289 .LDW_f5f1dc0:
00000000 00000000*      2290 	.word	.LDW71-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000004 00000000*      2291 	.word	.LDW81-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000008 0200           2292 	.byte	2,0
0000000a 73             2293 	.byte	115
0000000b 0c             2294 	.byte	12
0000000c 00000000       2295 	.word	0x0
00000010 00000000       2296 	.word	0x0
                        2297 
                        2298 	.section	.debug_abbrev
0000011c 07             2299 	.byte	7
0000011d 34             2300 	.byte	52
0000011e 00             2301 	.byte	0
0000011f 030e           2302 	.byte	3,14
00000121 3b0f           2303 	.byte	59,15
00000123 390f           2304 	.byte	57,15
00000125 3a0f           2305 	.byte	58,15
00000127 4910           2306 	.byte	73,16
00000129 3f0c           2307 	.byte	63,12
0000012b 3c0c           2308 	.byte	60,12
0000012d 0206           2309 	.byte	2,6
0000012f 0000           2310 	.byte	0,0
                        2311 
                        2312 	.section	.debug_info
                        2313 .LDW_f22d910:
000004a4 07             2314 	.byte	7
                        2315 	.section	.debug_str
000005e8 647269766572   2316 	.strz	"driverStatus"
000005ee 537461747573 
000005f4 00 
                        2317 	.section	.debug_info
000004a5 00000000*      2318 	.word	.Ldw_str_begin+1512
000004a9 2a             2319 	.byte	42
000004aa 1b             2320 	.byte	27
000004ab 01             2321 	.byte	1
000004ac 00000000*      2322 	.word	.LDW_f22d880
000004b0 00             2323 	.byte	0
000004b1 00             2324 	.byte	0
000004b2 00000000*      2325 	.word	.LDW_f5f1f00
                        2326 	.section	.debug_loc
                        2327 .LDW_f5f1f00:
00000014 00000000*      2328 	.word	.LDW71-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000018 00000000*      2329 	.word	.LDW81-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000001c 0200           2330 	.byte	2,0
0000001e 73             2331 	.byte	115
0000001f 00             2332 	.byte	0
00000020 00000000       2333 	.word	0x0
00000024 00000000       2334 	.word	0x0
                        2335 
                        2336 	.section	.debug_info

                                                                      Page 46
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        2337 .LDW_f22d9a0:
000004b6 08             2338 	.byte	8
                        2339 	.section	.debug_str
000005f5 6900           2340 	.strz	"i"
                        2341 	.section	.debug_info
000004b7 00000000*      2342 	.word	.Ldw_str_begin+1525
000004bb 2b             2343 	.byte	43
000004bc 1b             2344 	.byte	27
000004bd 01             2345 	.byte	1
000004be 00000000*      2346 	.word	.LDW_f3bad70
000004c2 00             2347 	.byte	0
000004c3 00             2348 	.byte	0
                        2349 
                        2350 	.section	.debug_abbrev
00000131 08             2351 	.byte	8
00000132 34             2352 	.byte	52
00000133 00             2353 	.byte	0
00000134 030e           2354 	.byte	3,14
00000136 3b0f           2355 	.byte	59,15
00000138 390f           2356 	.byte	57,15
0000013a 3a0f           2357 	.byte	58,15
0000013c 4910           2358 	.byte	73,16
0000013e 3f0c           2359 	.byte	63,12
00000140 3c0c           2360 	.byte	60,12
00000142 0000           2361 	.byte	0,0
                        2362 
                        2363 	.section	.debug_info
000004c4 00             2364 	.byte	0
                        2365 
000004c5 00             2366 	.byte	0
                        2367 
                        2368 .LDW_f398be0:
000004c6 19             2369 	.byte	25
                        2370 	.section	.debug_str
000005f7 496e7465726e   2371 	.strz	"Internal_EEL_Write"
000005fd 616c5f45454c 
00000603 5f5772697465 
00000609 00 
                        2372 	.section	.debug_info
000004c7 00000000*      2373 	.word	.Ldw_str_begin+1527
000004cb 43             2374 	.byte	67
000004cc 10             2375 	.byte	16
000004cd 01             2376 	.byte	1
000004ce 00000000*      2377 	.word	.LDW_f22da30
000004d2 00000000*      2378 	.word	_Internal_EEL_Write
000004d6 00000000*      2379 	.word	___ghs_eofn_Internal_EEL_Write
000004da 01             2380 	.byte	1
000004db 53             2381 	.byte	83
000004dc 828080800b     2382 	.byte	130,128,128,128,11
000004e1 0c             2383 	.byte	12
000004e2 828004         2384 	.byte	130,128,4
000004e5 20             2385 	.byte	32
000004e6 00             2386 	.byte	0
000004e7 00             2387 	.byte	0
000004e8 00             2388 	.byte	0
000004e9 01             2389 	.byte	1
000004ea 01             2390 	.byte	1
000004eb 00             2391 	.byte	0
000004ec 01             2392 	.byte	1
                        2393 
                        2394 	.section	.debug_abbrev

                                                                      Page 47
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000144 19             2395 	.byte	25
00000145 2e             2396 	.byte	46
00000146 01             2397 	.byte	1
00000147 030e           2398 	.byte	3,14
00000149 3b0f           2399 	.byte	59,15
0000014b 390f           2400 	.byte	57,15
0000014d 3a0f           2401 	.byte	58,15
0000014f 4910           2402 	.byte	73,16
00000151 1101           2403 	.byte	17,1
00000153 1201           2404 	.byte	18,1
00000155 400a           2405 	.byte	64,10
00000157 8341           2406 	.byte	131,65
00000159 0f             2407 	.byte	15
0000015a 8741           2408 	.byte	135,65
0000015c 0d             2409 	.byte	13
0000015d 8541           2410 	.byte	133,65
0000015f 0f             2411 	.byte	15
00000160 8641           2412 	.byte	134,65
00000162 0d             2413 	.byte	13
00000163 9241           2414 	.byte	146,65
00000165 0f             2415 	.byte	15
00000166 3c0c           2416 	.byte	60,12
00000168 200b           2417 	.byte	32,11
0000016a 3f0c           2418 	.byte	63,12
0000016c 320b           2419 	.byte	50,11
0000016e 4c0b           2420 	.byte	76,11
00000170 270c           2421 	.byte	39,12
00000172 0000           2422 	.byte	0,0
                        2423 
                        2424 	.section	.debug_frame
                        2425 .LDW_f643fd0:
000000e4 00000000*      2426 	.word	.LDW_unq_a-.LDW_unq_9
                        2427 .LDW_unq_9:
000000e8 00000000*      2428 	.word	.LDW_f1d4e20
000000ec 00000000*      2429 	.word	_Internal_EEL_Write
000000f0 00000000*      2430 	.word	___ghs_eofn_Internal_EEL_Write-_Internal_EEL_Write
000000f4 48             2431 	.byte	72
000000f5 9f             2432 	.byte	159
000000f6 1c             2433 	.byte	28
000000f7 44             2434 	.byte	68
000000f8 9c             2435 	.byte	156
000000f9 18             2436 	.byte	24
000000fa 44             2437 	.byte	68
000000fb 9d             2438 	.byte	157
000000fc 14             2439 	.byte	20
000000fd 01             2440 	.byte	1
000000fe 00000000*      2441 	.word	.LDW12
00000102 44             2442 	.byte	68
00000103 df             2443 	.byte	223
00000104 44             2444 	.byte	68
00000105 dd             2445 	.byte	221
00000106 44             2446 	.byte	68
00000107 dc             2447 	.byte	220
                        2448 .LDW_unq_a:
                        2449 	.section	.debug_line
0000041a 000502         2450 	.byte	0,5,2
0000041d 00000000*      2451 	.word	_Internal_EEL_Write
00000421 06             2452 	.byte	6
00000422 03             2453 	.byte	3
00000423 c300           2454 	.byte	195,0
00000425 02             2455 	.byte	2

                                                                      Page 48
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000426 00             2456 	.byte	0
00000427 01             2457 	.byte	1
00000428 65             2458 	.byte	101
00000429 000502         2459 	.byte	0,5,2
0000042c 00000000*      2460 	.word	.LDWlin15
00000430 0b             2461 	.byte	11
00000431 000502         2462 	.byte	0,5,2
00000434 00000000*      2463 	.word	.LDWlin16
00000438 0b             2464 	.byte	11
00000439 1b             2465 	.byte	27
0000043a 1b             2466 	.byte	27
0000043b 23             2467 	.byte	35
0000043c 000502         2468 	.byte	0,5,2
0000043f 00000000*      2469 	.word	.LDWlin17
00000443 0b             2470 	.byte	11
00000444 000502         2471 	.byte	0,5,2
00000447 00000000*      2472 	.word	.LDWlin18
0000044b 0b             2473 	.byte	11
0000044c 000502         2474 	.byte	0,5,2
0000044f 00000000*      2475 	.word	.LDWlin19
00000453 0b             2476 	.byte	11
00000454 000502         2477 	.byte	0,5,2
00000457 00000000*      2478 	.word	.LDWlin20
0000045b 0c             2479 	.byte	12
0000045c 1b             2480 	.byte	27
0000045d 06             2481 	.byte	6
0000045e 000502         2482 	.byte	0,5,2
00000461 00000000*      2483 	.word	___ghs_eofn_Internal_EEL_Write
00000465 02             2484 	.byte	2
00000466 00             2485 	.byte	0
00000467 000101         2486 	.byte	0,1,1
                        2487 	.section	.debug_info
                        2488 .LDW_f22dac0:
000004ed 16             2489 	.byte	22
                        2490 	.section	.debug_str
0000060a 626c6f636b49   2491 	.strz	"blockID"
00000610 4400 
                        2492 	.section	.debug_info
000004ee 00000000*      2493 	.word	.Ldw_str_begin+1546
000004f2 43             2494 	.byte	67
000004f3 2c             2495 	.byte	44
000004f4 01             2496 	.byte	1
000004f5 00000000*      2497 	.word	.LDW_f3bae10
000004f9 00             2498 	.byte	0
000004fa 00000000*      2499 	.word	.LDW_f5f2460
                        2500 	.section	.debug_loc
                        2501 .LDW_f5f2460:
00000028 00000000*      2502 	.word	.LDW91-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000002c 00000000*      2503 	.word	.LDW02-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000030 0100           2504 	.byte	1,0
00000032 56             2505 	.byte	86
00000033 00000000*      2506 	.word	.LDW02-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000037 00000000*      2507 	.word	.LDW12-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000003b 0100           2508 	.byte	1,0
0000003d 6d             2509 	.byte	109
0000003e 00000000       2510 	.word	0x0
00000042 00000000       2511 	.word	0x0
                        2512 
                        2513 	.section	.debug_abbrev
00000174 16             2514 	.byte	22
00000175 05             2515 	.byte	5

                                                                      Page 49
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000176 00             2516 	.byte	0
00000177 030e           2517 	.byte	3,14
00000179 3b0f           2518 	.byte	59,15
0000017b 390f           2519 	.byte	57,15
0000017d 3a0f           2520 	.byte	58,15
0000017f 4910           2521 	.byte	73,16
00000181 4b0c           2522 	.byte	75,12
00000183 0206           2523 	.byte	2,6
00000185 0000           2524 	.byte	0,0
                        2525 
                        2526 	.section	.debug_info
                        2527 .LDW_f22db50:
000004fe 16             2528 	.byte	22
                        2529 	.section	.debug_str
00000612 7062756600     2530 	.strz	"pbuf"
                        2531 	.section	.debug_info
000004ff 00000000*      2532 	.word	.Ldw_str_begin+1554
00000503 43             2533 	.byte	67
00000504 3d             2534 	.byte	61
00000505 01             2535 	.byte	1
00000506 00000000*      2536 	.word	.LDW_f3baf00
0000050a 00             2537 	.byte	0
0000050b 00000000*      2538 	.word	.LDW_f5f25c0
                        2539 	.section	.debug_loc
                        2540 .LDW_f5f25c0:
00000046 00000000*      2541 	.word	.LDW91-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000004a 00000000*      2542 	.word	.LDW02-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000004e 0100           2543 	.byte	1,0
00000050 57             2544 	.byte	87
00000051 00000000*      2545 	.word	.LDW02-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000055 00000000*      2546 	.word	.LDW12-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000059 0100           2547 	.byte	1,0
0000005b 6c             2548 	.byte	108
0000005c 00000000       2549 	.word	0x0
00000060 00000000       2550 	.word	0x0
                        2551 
                        2552 	.section	.debug_info
                        2553 .LDW_f22dbe0:
0000050f 16             2554 	.byte	22
                        2555 	.section	.debug_str
00000617 6c656e677468   2556 	.strz	"length"
0000061d 00 
                        2557 	.section	.debug_info
00000510 00000000*      2558 	.word	.Ldw_str_begin+1559
00000514 43             2559 	.byte	67
00000515 4f             2560 	.byte	79
00000516 01             2561 	.byte	1
00000517 00000000*      2562 	.word	.LDW_f3bad70
0000051b 00             2563 	.byte	0
0000051c 00000000*      2564 	.word	.LDW_f5f2720
                        2565 	.section	.debug_loc
                        2566 .LDW_f5f2720:
00000064 00000000*      2567 	.word	.LDW91-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000068 00000000*      2568 	.word	.LDW12-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000006c 0100           2569 	.byte	1,0
0000006e 58             2570 	.byte	88
0000006f 00000000       2571 	.word	0x0
00000073 00000000       2572 	.word	0x0
                        2573 
                        2574 	.section	.debug_info
                        2575 .LDW_f3baff0:

                                                                      Page 50
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000520 22             2576 	.byte	34
00000521 00000000*      2577 	.word	.LDW02
00000525 00000000*      2578 	.word	.LDW12
                        2579 
                        2580 .LDW_f22dc70:
00000529 07             2581 	.byte	7
                        2582 	.section	.debug_str
0000061e 6d7952657100   2583 	.strz	"myReq"
                        2584 	.section	.debug_info
0000052a 00000000*      2585 	.word	.Ldw_str_begin+1566
0000052e 45             2586 	.byte	69
0000052f 15             2587 	.byte	21
00000530 01             2588 	.byte	1
00000531 00000000*      2589 	.word	.LDW_f22d6d0
00000535 00             2590 	.byte	0
00000536 00             2591 	.byte	0
00000537 00000000*      2592 	.word	.LDW_f5f2860
                        2593 	.section	.debug_loc
                        2594 .LDW_f5f2860:
00000077 00000000*      2595 	.word	.LDW02-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000007b 00000000*      2596 	.word	.LDW12-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000007f 0200           2597 	.byte	2,0
00000081 73             2598 	.byte	115
00000082 00             2599 	.byte	0
00000083 00000000       2600 	.word	0x0
00000087 00000000       2601 	.word	0x0
                        2602 
                        2603 	.section	.debug_info
0000053b 00             2604 	.byte	0
                        2605 
0000053c 00             2606 	.byte	0
                        2607 
                        2608 .LDW_f398ce0:
0000053d 19             2609 	.byte	25
                        2610 	.section	.debug_str
00000624 496e7465726e   2611 	.strz	"Internal_EEL_Read"
0000062a 616c5f45454c 
00000630 5f5265616400 
                        2612 	.section	.debug_info
0000053e 00000000*      2613 	.word	.Ldw_str_begin+1572
00000542 54             2614 	.byte	84
00000543 10             2615 	.byte	16
00000544 01             2616 	.byte	1
00000545 00000000*      2617 	.word	.LDW_f22da30
00000549 00000000*      2618 	.word	_Internal_EEL_Read
0000054d 00000000*      2619 	.word	___ghs_eofn_Internal_EEL_Read
00000551 01             2620 	.byte	1
00000552 53             2621 	.byte	83
00000553 828080c00b     2622 	.byte	130,128,128,192,11
00000558 10             2623 	.byte	16
00000559 828004         2624 	.byte	130,128,4
0000055c 24             2625 	.byte	36
0000055d 00             2626 	.byte	0
0000055e 00             2627 	.byte	0
0000055f 00             2628 	.byte	0
00000560 01             2629 	.byte	1
00000561 01             2630 	.byte	1
00000562 00             2631 	.byte	0
00000563 01             2632 	.byte	1
                        2633 
                        2634 	.section	.debug_frame

                                                                      Page 51
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        2635 .LDW_f644070:
00000108 00000000*      2636 	.word	.LDW_unq_c-.LDW_unq_b
                        2637 .LDW_unq_b:
0000010c 00000000*      2638 	.word	.LDW_f1d4e20
00000110 00000000*      2639 	.word	_Internal_EEL_Read
00000114 00000000*      2640 	.word	___ghs_eofn_Internal_EEL_Read-_Internal_EEL_Read
00000118 48             2641 	.byte	72
00000119 9f             2642 	.byte	159
0000011a 20             2643 	.byte	32
0000011b 44             2644 	.byte	68
0000011c 9b             2645 	.byte	155
0000011d 1c             2646 	.byte	28
0000011e 44             2647 	.byte	68
0000011f 9c             2648 	.byte	156
00000120 18             2649 	.byte	24
00000121 44             2650 	.byte	68
00000122 9d             2651 	.byte	157
00000123 14             2652 	.byte	20
00000124 01             2653 	.byte	1
00000125 00000000*      2654 	.word	.LDW42
00000129 44             2655 	.byte	68
0000012a df             2656 	.byte	223
0000012b 44             2657 	.byte	68
0000012c dd             2658 	.byte	221
0000012d 44             2659 	.byte	68
0000012e dc             2660 	.byte	220
0000012f 44             2661 	.byte	68
00000130 db             2662 	.byte	219
00000131 00             2663 	.byte	0
00000132 00             2664 	.byte	0
00000133 00             2665 	.byte	0
                        2666 .LDW_unq_c:
                        2667 	.section	.debug_line
0000046a 000502         2668 	.byte	0,5,2
0000046d 00000000*      2669 	.word	_Internal_EEL_Read
00000471 06             2670 	.byte	6
00000472 03             2671 	.byte	3
00000473 d400           2672 	.byte	212,0
00000475 02             2673 	.byte	2
00000476 00             2674 	.byte	0
00000477 01             2675 	.byte	1
00000478 7d             2676 	.byte	125
00000479 000502         2677 	.byte	0,5,2
0000047c 00000000*      2678 	.word	.LDWlin22
00000480 0b             2679 	.byte	11
00000481 000502         2680 	.byte	0,5,2
00000484 00000000*      2681 	.word	.LDWlin23
00000488 0b             2682 	.byte	11
00000489 1b             2683 	.byte	27
0000048a 1b             2684 	.byte	27
0000048b 2b             2685 	.byte	43
0000048c 1b             2686 	.byte	27
0000048d 1b             2687 	.byte	27
0000048e 000502         2688 	.byte	0,5,2
00000491 00000000*      2689 	.word	.LDWlin24
00000495 0b             2690 	.byte	11
00000496 000502         2691 	.byte	0,5,2
00000499 00000000*      2692 	.word	.LDWlin25
0000049d 0b             2693 	.byte	11
0000049e 000502         2694 	.byte	0,5,2
000004a1 00000000*      2695 	.word	.LDWlin26

                                                                      Page 52
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000004a5 0b             2696 	.byte	11
000004a6 000502         2697 	.byte	0,5,2
000004a9 00000000*      2698 	.word	.LDWlin27
000004ad 0c             2699 	.byte	12
000004ae 1b             2700 	.byte	27
000004af 06             2701 	.byte	6
000004b0 000502         2702 	.byte	0,5,2
000004b3 00000000*      2703 	.word	___ghs_eofn_Internal_EEL_Read
000004b7 02             2704 	.byte	2
000004b8 00             2705 	.byte	0
000004b9 000101         2706 	.byte	0,1,1
                        2707 	.section	.debug_info
                        2708 .LDW_f22dd00:
00000564 16             2709 	.byte	22
                        2710 	.section	.debug_str
00000636 626c6f636b49   2711 	.strz	"blockID"
0000063c 4400 
                        2712 	.section	.debug_info
00000565 00000000*      2713 	.word	.Ldw_str_begin+1590
00000569 54             2714 	.byte	84
0000056a 2a             2715 	.byte	42
0000056b 01             2716 	.byte	1
0000056c 00000000*      2717 	.word	.LDW_f3baeb0
00000570 00             2718 	.byte	0
00000571 00000000*      2719 	.word	.LDW_f5f2ea0
                        2720 	.section	.debug_loc
                        2721 .LDW_f5f2ea0:
0000008b 00000000*      2722 	.word	.LDW22-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000008f 00000000*      2723 	.word	.LDW32-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000093 0100           2724 	.byte	1,0
00000095 56             2725 	.byte	86
00000096 00000000*      2726 	.word	.LDW32-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000009a 00000000*      2727 	.word	.LDW42-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
0000009e 0100           2728 	.byte	1,0
000000a0 6d             2729 	.byte	109
000000a1 00000000       2730 	.word	0x0
000000a5 00000000       2731 	.word	0x0
                        2732 
                        2733 	.section	.debug_info
                        2734 .LDW_f22dd90:
00000575 16             2735 	.byte	22
                        2736 	.section	.debug_str
0000063e 7062756600     2737 	.strz	"pbuf"
                        2738 	.section	.debug_info
00000576 00000000*      2739 	.word	.Ldw_str_begin+1598
0000057a 54             2740 	.byte	84
0000057b 3b             2741 	.byte	59
0000057c 01             2742 	.byte	1
0000057d 00000000*      2743 	.word	.LDW_f3baf00
00000581 00             2744 	.byte	0
00000582 00000000*      2745 	.word	.LDW_f5f3000
                        2746 	.section	.debug_loc
                        2747 .LDW_f5f3000:
000000a9 00000000*      2748 	.word	.LDW22-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000ad 00000000*      2749 	.word	.LDW32-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000b1 0100           2750 	.byte	1,0
000000b3 57             2751 	.byte	87
000000b4 00000000*      2752 	.word	.LDW32-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000b8 00000000*      2753 	.word	.LDW42-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000bc 0100           2754 	.byte	1,0
000000be 6c             2755 	.byte	108

                                                                      Page 53
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000000bf 00000000       2756 	.word	0x0
000000c3 00000000       2757 	.word	0x0
                        2758 
                        2759 	.section	.debug_info
                        2760 .LDW_f22de20:
00000586 16             2761 	.byte	22
                        2762 	.section	.debug_str
00000643 6c656e677468   2763 	.strz	"length"
00000649 00 
                        2764 	.section	.debug_info
00000587 00000000*      2765 	.word	.Ldw_str_begin+1603
0000058b 54             2766 	.byte	84
0000058c 4d             2767 	.byte	77
0000058d 01             2768 	.byte	1
0000058e 00000000*      2769 	.word	.LDW_f3bad70
00000592 00             2770 	.byte	0
00000593 00000000*      2771 	.word	.LDW_f5f3160
                        2772 	.section	.debug_loc
                        2773 .LDW_f5f3160:
000000c7 00000000*      2774 	.word	.LDW22-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000cb 00000000*      2775 	.word	.LDW32-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000cf 0100           2776 	.byte	1,0
000000d1 58             2777 	.byte	88
000000d2 00000000*      2778 	.word	.LDW32-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000d6 00000000*      2779 	.word	.LDW42-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000da 0100           2780 	.byte	1,0
000000dc 6b             2781 	.byte	107
000000dd 00000000       2782 	.word	0x0
000000e1 00000000       2783 	.word	0x0
                        2784 
                        2785 	.section	.debug_info
                        2786 .LDW_f3bb180:
00000597 22             2787 	.byte	34
00000598 00000000*      2788 	.word	.LDW32
0000059c 00000000*      2789 	.word	.LDW42
                        2790 
                        2791 .LDW_f22deb0:
000005a0 07             2792 	.byte	7
                        2793 	.section	.debug_str
0000064a 6d7952657100   2794 	.strz	"myReq"
                        2795 	.section	.debug_info
000005a1 00000000*      2796 	.word	.Ldw_str_begin+1610
000005a5 56             2797 	.byte	86
000005a6 15             2798 	.byte	21
000005a7 01             2799 	.byte	1
000005a8 00000000*      2800 	.word	.LDW_f22d6d0
000005ac 00             2801 	.byte	0
000005ad 00             2802 	.byte	0
000005ae 00000000*      2803 	.word	.LDW_f5f32c0
                        2804 	.section	.debug_loc
                        2805 .LDW_f5f32c0:
000000e5 00000000*      2806 	.word	.LDW32-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000e9 00000000*      2807 	.word	.LDW42-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000ed 0200           2808 	.byte	2,0
000000ef 73             2809 	.byte	115
000000f0 00             2810 	.byte	0
000000f1 00000000       2811 	.word	0x0
000000f5 00000000       2812 	.word	0x0
                        2813 
                        2814 	.section	.debug_info
000005b2 00             2815 	.byte	0

                                                                      Page 54
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        2816 
000005b3 00             2817 	.byte	0
                        2818 
                        2819 .LDW_f398de0:
000005b4 18             2820 	.byte	24
                        2821 	.section	.debug_str
00000650 496e7465726e   2822 	.strz	"Internal_EEL_DEINIT"
00000656 616c5f45454c 
0000065c 5f4445494e49 
00000662 5400 
                        2823 	.section	.debug_info
000005b5 00000000*      2824 	.word	.Ldw_str_begin+1616
000005b9 67             2825 	.byte	103
000005ba 06             2826 	.byte	6
000005bb 01             2827 	.byte	1
000005bc 00000000*      2828 	.word	_Internal_EEL_DEINIT
000005c0 00000000*      2829 	.word	___ghs_eofn_Internal_EEL_DEINIT
000005c4 01             2830 	.byte	1
000005c5 53             2831 	.byte	83
000005c6 8280808008     2832 	.byte	130,128,128,128,8
000005cb 04             2833 	.byte	4
000005cc 828004         2834 	.byte	130,128,4
000005cf 10             2835 	.byte	16
000005d0 00             2836 	.byte	0
000005d1 00             2837 	.byte	0
000005d2 00             2838 	.byte	0
000005d3 01             2839 	.byte	1
000005d4 01             2840 	.byte	1
000005d5 00             2841 	.byte	0
000005d6 01             2842 	.byte	1
                        2843 
                        2844 	.section	.debug_frame
                        2845 .LDW_f644110:
00000134 00000000*      2846 	.word	.LDW_unq_e-.LDW_unq_d
                        2847 .LDW_unq_d:
00000138 00000000*      2848 	.word	.LDW_f1d4e20
0000013c 00000000*      2849 	.word	_Internal_EEL_DEINIT
00000140 00000000*      2850 	.word	___ghs_eofn_Internal_EEL_DEINIT-_Internal_EEL_DEINIT
00000144 46             2851 	.byte	70
00000145 9f             2852 	.byte	159
00000146 0c             2853 	.byte	12
00000147 01             2854 	.byte	1
00000148 00000000*      2855 	.word	.LDW72
0000014c 44             2856 	.byte	68
0000014d df             2857 	.byte	223
0000014e 00             2858 	.byte	0
0000014f 00             2859 	.byte	0
                        2860 .LDW_unq_e:
                        2861 	.section	.debug_line
000004bc 000502         2862 	.byte	0,5,2
000004bf 00000000*      2863 	.word	_Internal_EEL_DEINIT
000004c3 06             2864 	.byte	6
000004c4 03             2865 	.byte	3
000004c5 e700           2866 	.byte	231,0
000004c7 02             2867 	.byte	2
000004c8 00             2868 	.byte	0
000004c9 01             2869 	.byte	1
000004ca 25             2870 	.byte	37
000004cb 000502         2871 	.byte	0,5,2
000004ce 00000000*      2872 	.word	.LDWlin29
000004d2 0b             2873 	.byte	11

                                                                      Page 55
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000004d3 000502         2874 	.byte	0,5,2
000004d6 00000000*      2875 	.word	.LDWlin30
000004da 0c             2876 	.byte	12
000004db 0c             2877 	.byte	12
000004dc 000502         2878 	.byte	0,5,2
000004df 00000000*      2879 	.word	.LDWlin31
000004e3 0b             2880 	.byte	11
000004e4 000502         2881 	.byte	0,5,2
000004e7 00000000*      2882 	.word	.LDWlin32
000004eb 0b             2883 	.byte	11
000004ec 000502         2884 	.byte	0,5,2
000004ef 00000000*      2885 	.word	.LDWlin33
000004f3 02             2886 	.byte	2
000004f4 00             2887 	.byte	0
000004f5 0d             2888 	.byte	13
000004f6 000502         2889 	.byte	0,5,2
000004f9 00000000*      2890 	.word	.LDWlin34
000004fd 0b             2891 	.byte	11
000004fe 06             2892 	.byte	6
000004ff 000502         2893 	.byte	0,5,2
00000502 00000000*      2894 	.word	___ghs_eofn_Internal_EEL_DEINIT
00000506 02             2895 	.byte	2
00000507 00             2896 	.byte	0
00000508 000101         2897 	.byte	0,1,1
                        2898 	.section	.debug_info
                        2899 .LDW_f3bb220:
000005d7 22             2900 	.byte	34
000005d8 00000000*      2901 	.word	.LDW62
000005dc 00000000*      2902 	.word	.LDW72
                        2903 
                        2904 .LDW_f22df40:
000005e0 07             2905 	.byte	7
                        2906 	.section	.debug_str
00000664 647269766572   2907 	.strz	"driverStatus"
0000066a 537461747573 
00000670 00 
                        2908 	.section	.debug_info
000005e1 00000000*      2909 	.word	.Ldw_str_begin+1636
000005e5 69             2910 	.byte	105
000005e6 1b             2911 	.byte	27
000005e7 01             2912 	.byte	1
000005e8 00000000*      2913 	.word	.LDW_f22d880
000005ec 00             2914 	.byte	0
000005ed 00             2915 	.byte	0
000005ee 00000000*      2916 	.word	.LDW_f5f36e0
                        2917 	.section	.debug_loc
                        2918 .LDW_f5f36e0:
000000f9 00000000*      2919 	.word	.LDW62-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
000000fd 00000000*      2920 	.word	.LDW72-..bof.Z.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs.5Cobj.5CInternal_EEPROM...5A.3A.5C850.5C.B9.A4.D7.F7.D7.CA.C1.CF.5CC673.BC.EC.B2.E2.CC.A8.5C.B5.E7.BB.FA.B5.E7.BB.FA.B5.E7.BB.FA.5C.BC.EC.B2.E2.CC.A8.5Ctestbench.5C.B8.A3.CC.EFW1.2D02.28.B8.DF.C5.E4.29.BC.EC.B2.E2.CC.A8.5Cghs..5F2A6703..0
00000101 0200           2921 	.byte	2,0
00000103 73             2922 	.byte	115
00000104 00             2923 	.byte	0
00000105 00000000       2924 	.word	0x0
00000109 00000000       2925 	.word	0x0
                        2926 
                        2927 	.section	.debug_info
000005f2 00             2928 	.byte	0
                        2929 
000005f3 00             2930 	.byte	0
                        2931 
000005f4 00             2932 	.byte	0

                                                                      Page 56
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
                        2933 
                        2934 	.section	.debug_line
                        2935 .Ldw_line_end:
                        2936 	.section	.debug_macinfo
00000000 01             2937 	.byte	1
00000001 00             2938 	.byte	0
00000002 5f5f67687320   2939 	.strz	"__ghs 1"
00000008 3100 
0000000a 01             2940 	.byte	1
0000000b 00             2941 	.byte	0
0000000c 5f5f6768735f   2942 	.strz	"__ghs__ 1"
00000012 5f203100 
00000016 01             2943 	.byte	1
00000017 00             2944 	.byte	0
00000018 5f5f41545452   2945 	.strz	"__ATTRIBUTES 1"
0000001e 494255544553 
00000024 203100 
00000027 01             2946 	.byte	1
00000028 00             2947 	.byte	0
00000029 5f5f4544475f   2948 	.strz	"__EDG__ 1"
0000002f 5f203100 
00000033 01             2949 	.byte	1
00000034 00             2950 	.byte	0
00000035 5f5f434f5245   2951 	.strz	"__CORE_V850E3V5__ 1"
0000003b 5f5638353045 
00000041 3356355f5f20 
00000047 3100 
00000049 01             2952 	.byte	1
0000004a 00             2953 	.byte	0
0000004b 5f5f56383530   2954 	.strz	"__V850E__ 1"
00000051 455f5f203100 
00000057 01             2955 	.byte	1
00000058 00             2956 	.byte	0
00000059 5f5f56383530   2957 	.strz	"__V850E2R__ 1"
0000005f 4532525f5f20 
00000065 3100 
00000067 01             2958 	.byte	1
00000068 00             2959 	.byte	0
00000069 5f5f56383530   2960 	.strz	"__V850E2V3__ 1"
0000006f 453256335f5f 
00000075 203100 
00000078 01             2961 	.byte	1
00000079 00             2962 	.byte	0
0000007a 5f5f56383530   2963 	.strz	"__V850E3__ 1"
00000080 45335f5f2031 
00000086 00 
00000087 01             2964 	.byte	1
00000088 00             2965 	.byte	0
00000089 5f5f56383030   2966 	.strz	"__V800_registermode 32"
0000008f 5f7265676973 
00000095 7465726d6f64 
0000009b 6520333200 
000000a0 01             2967 	.byte	1
000000a1 00             2968 	.byte	0
000000a2 5f5f4748535f   2969 	.strz	"__GHS__ 1"
000000a8 5f203100 
000000ac 01             2970 	.byte	1
000000ad 00             2971 	.byte	0
000000ae 506c6174666f   2972 	.strz	"Platform_RH850 1"
000000b4 726d5f524838 
000000ba 3530203100 

                                                                      Page 57
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000000bf 03             2973 	.byte	3
000000c0 00             2974 	.byte	0
000000c1 01             2975 	.byte	1
000000c2 03             2976 	.byte	3
000000c3 01             2977 	.byte	1
000000c4 02             2978 	.byte	2
000000c5 03             2979 	.byte	3
000000c6 04             2980 	.byte	4
000000c7 03             2981 	.byte	3
000000c8 01             2982 	.byte	1
000000c9 c001           2983 	.byte	192,1
000000cb 75696e74385f   2984 	.strz	"uint8_t unsigned char"
000000d1 7420756e7369 
000000d7 676e65642063 
000000dd 68617200 
000000e1 01             2985 	.byte	1
000000e2 c101           2986 	.byte	193,1
000000e4 75696e743136   2987 	.strz	"uint16_t unsigned short"
000000ea 5f7420756e73 
000000f0 69676e656420 
000000f6 73686f727400 
000000fc 01             2988 	.byte	1
000000fd c201           2989 	.byte	194,1
000000ff 75696e743332   2990 	.strz	"uint32_t unsigned int"
00000105 5f7420756e73 
0000010b 69676e656420 
00000111 696e7400 
00000115 04             2991 	.byte	4
00000116 03             2992 	.byte	3
00000117 05             2993 	.byte	5
00000118 04             2994 	.byte	4
00000119 01             2995 	.byte	1
0000011a 30             2996 	.byte	48
0000011b 525f45454c5f   2997 	.strz	"R_EEL_TYPES_H "
00000121 54595045535f 
00000127 482000 
0000012a 01             2998 	.byte	1
0000012b 35             2999 	.byte	53
0000012c 525f45454c5f   3000 	.strz	"R_EEL_WRN 0x10"
00000132 57524e203078 
00000138 313000 
0000013b 01             3001 	.byte	1
0000013c 36             3002 	.byte	54
0000013d 525f45454c5f   3003 	.strz	"R_EEL_ERR 0x20"
00000143 455252203078 
00000149 323000 
0000014c 04             3004 	.byte	4
0000014d 04             3005 	.byte	4
0000014e 03             3006 	.byte	3
0000014f 02             3007 	.byte	2
00000150 05             3008 	.byte	5
00000151 04             3009 	.byte	4
00000152 03             3010 	.byte	3
00000153 03             3011 	.byte	3
00000154 06             3012 	.byte	6
00000155 03             3013 	.byte	3
00000156 46             3014 	.byte	70
00000157 07             3015 	.byte	7
00000158 01             3016 	.byte	1
00000159 33             3017 	.byte	51
0000015a 525f46444c5f   3018 	.strz	"R_FDL_NO_BFA_SWITCH "

                                                                      Page 58
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000160 4e4f5f424641 
00000166 5f5357495443 
0000016c 482000 
0000016f 04             3019 	.byte	4
00000170 03             3020 	.byte	3
00000171 47             3021 	.byte	71
00000172 08             3022 	.byte	8
00000173 04             3023 	.byte	4
00000174 01             3024 	.byte	1
00000175 4d             3025 	.byte	77
00000176 525f46444c5f   3026 	.strz	"R_FDL_EXTERN extern"
0000017c 45585445524e 
00000182 206578746572 
00000188 6e00 
0000018a 04             3027 	.byte	4
0000018b 03             3028 	.byte	3
0000018c 04             3029 	.byte	4
0000018d 09             3030 	.byte	9
0000018e 04             3031 	.byte	4
0000018f 03             3032 	.byte	3
00000190 05             3033 	.byte	5
00000191 0a             3034 	.byte	10
00000192 03             3035 	.byte	3
00000193 36             3036 	.byte	54
00000194 0b             3037 	.byte	11
00000195 04             3038 	.byte	4
00000196 03             3039 	.byte	3
00000197 37             3040 	.byte	55
00000198 0c             3041 	.byte	12
00000199 04             3042 	.byte	4
0000019a 01             3043 	.byte	1
0000019b 3d             3044 	.byte	61
0000019c 525f45454c5f   3045 	.strz	"R_EEL_EXTERN extern"
000001a2 45585445524e 
000001a8 206578746572 
000001ae 6e00 
000001b0 04             3046 	.byte	4
000001b1 03             3047 	.byte	3
000001b2 06             3048 	.byte	6
000001b3 0d             3049 	.byte	13
000001b4 04             3050 	.byte	4
000001b5 03             3051 	.byte	3
000001b6 07             3052 	.byte	7
000001b7 0e             3053 	.byte	14
000001b8 03             3054 	.byte	3
000001b9 21             3055 	.byte	33
000001ba 0f             3056 	.byte	15
000001bb 01             3057 	.byte	1
000001bc 25             3058 	.byte	37
000001bd 5f5f52374637   3059 	.strz	"__R7F701684IODEFINE_HEADER__ "
000001c3 303136383449 
000001c9 4f444546494e 
000001cf 455f48454144 
000001d5 45525f5f2000 
000001db 04             3060 	.byte	4
000001dc 04             3061 	.byte	4
000001dd 03             3062 	.byte	3
000001de 08             3063 	.byte	8
000001df 10             3064 	.byte	16
000001e0 04             3065 	.byte	4
000001e1 03             3066 	.byte	3

                                                                      Page 59
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000001e2 09             3067 	.byte	9
000001e3 11             3068 	.byte	17
000001e4 03             3069 	.byte	3
000001e5 05             3070 	.byte	5
000001e6 12             3071 	.byte	18
000001e7 03             3072 	.byte	3
000001e8 38             3073 	.byte	56
000001e9 13             3074 	.byte	19
000001ea 04             3075 	.byte	4
000001eb 03             3076 	.byte	3
000001ec 39             3077 	.byte	57
000001ed 14             3078 	.byte	20
000001ee 01             3079 	.byte	1
000001ef 3c             3080 	.byte	60
000001f0 5f5f4841535f   3081 	.strz	"__HAS_FPU__ "
000001f6 4650555f5f20 
000001fc 00 
000001fd 04             3082 	.byte	4
000001fe 03             3083 	.byte	3
000001ff 3a             3084 	.byte	58
00000200 15             3085 	.byte	21
00000201 01             3086 	.byte	1
00000202 37             3087 	.byte	55
00000203 5f494e4c494e   3088 	.strz	"_INLINE_ __inline"
00000209 455f205f5f69 
0000020f 6e6c696e6500 
00000215 03             3089 	.byte	3
00000216 3f             3090 	.byte	63
00000217 16             3091 	.byte	22
00000218 01             3092 	.byte	1
00000219 14             3093 	.byte	20
0000021a 5f5f41545452   3094 	.strz	"__ATTRIBUTE(x) __attribute__(x)"
00000220 494255544528 
00000226 7829205f5f61 
0000022c 747472696275 
00000232 74655f5f2878 
00000238 2900 
0000023a 04             3095 	.byte	4
0000023b 01             3096 	.byte	1
0000023c 46             3097 	.byte	70
0000023d 7533325f5420   3098 	.strz	"u32_T unsigned long"
00000243 756e7369676e 
00000249 6564206c6f6e 
0000024f 6700 
00000251 01             3099 	.byte	1
00000252 8503           3100 	.byte	133,3
00000254 454950535720   3101 	.strz	"EIPSW 1, 0"
0000025a 312c203000 
0000025f 01             3102 	.byte	1
00000260 8703           3103 	.byte	135,3
00000262 464550535720   3104 	.strz	"FEPSW 3, 0"
00000268 332c203000 
0000026d 01             3105 	.byte	1
0000026e 8803           3106 	.byte	136,3
00000270 50535720352c   3107 	.strz	"PSW 5, 0"
00000276 203000 
00000279 01             3108 	.byte	1
0000027a 8903           3109 	.byte	137,3
0000027c 454949432031   3110 	.strz	"EIIC 13, 0"
00000282 332c203000 
00000287 01             3111 	.byte	1

                                                                      Page 60
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000288 8a03           3112 	.byte	138,3
0000028a 464549432031   3113 	.strz	"FEIC 14, 0"
00000290 342c203000 
00000295 01             3114 	.byte	1
00000296 9203           3115 	.byte	146,3
00000298 4d4346473020   3116 	.strz	"MCFG0 0, 1"
0000029e 302c203100 
000002a3 01             3117 	.byte	1
000002a4 9403           3118 	.byte	148,3
000002a6 454241534520   3119 	.strz	"EBASE 3, 1"
000002ac 332c203100 
000002b1 01             3120 	.byte	1
000002b2 9503           3121 	.byte	149,3
000002b4 494e54425020   3122 	.strz	"INTBP 4, 1"
000002ba 342c203100 
000002bf 01             3123 	.byte	1
000002c0 9603           3124 	.byte	150,3
000002c2 4d43544c2035   3125 	.strz	"MCTL 5, 1"
000002c8 2c203100 
000002cc 01             3126 	.byte	1
000002cd 9703           3127 	.byte	151,3
000002cf 50494420362c   3128 	.strz	"PID 6, 1"
000002d5 203100 
000002d8 01             3129 	.byte	1
000002d9 9803           3130 	.byte	152,3
000002db 534343464720   3131 	.strz	"SCCFG 11, 1"
000002e1 31312c203100 
000002e7 01             3132 	.byte	1
000002e8 9d03           3133 	.byte	157,3
000002ea 415349442037   3134 	.strz	"ASID 7, 2"
000002f0 2c203200 
000002f4 01             3135 	.byte	1
000002f5 9f03           3136 	.byte	159,3
000002f7 495350522031   3137 	.strz	"ISPR 10, 2"
000002fd 302c203200 
00000302 01             3138 	.byte	1
00000303 a003           3139 	.byte	160,3
00000305 504d52203131   3140 	.strz	"PMR 11, 2"
0000030b 2c203200 
0000030f 01             3141 	.byte	1
00000310 a103           3142 	.byte	161,3
00000312 494353522031   3143 	.strz	"ICSR 12, 2"
00000318 322c203200 
0000031d 01             3144 	.byte	1
0000031e a203           3145 	.byte	162,3
00000320 494e54434647   3146 	.strz	"INTCFG 13, 2"
00000326 2031332c2032 
0000032c 00 
0000032d 01             3147 	.byte	1
0000032e a403           3148 	.byte	164,3
00000330 4d504d20302c   3149 	.strz	"MPM 0, 5"
00000336 203500 
00000339 01             3150 	.byte	1
0000033a a503           3151 	.byte	165,3
0000033c 4d5052432031   3152 	.strz	"MPRC 1, 5"
00000342 2c203500 
00000346 01             3153 	.byte	1
00000347 a603           3154 	.byte	166,3
00000349 4d504252474e   3155 	.strz	"MPBRGN 4, 5"
0000034f 20342c203500 
00000355 01             3156 	.byte	1

                                                                      Page 61
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000356 a703           3157 	.byte	167,3
00000358 4d505452474e   3158 	.strz	"MPTRGN 5, 5"
0000035e 20352c203500 
00000364 01             3159 	.byte	1
00000365 a803           3160 	.byte	168,3
00000367 4d434120382c   3161 	.strz	"MCA 8, 5"
0000036d 203500 
00000370 01             3162 	.byte	1
00000371 a903           3163 	.byte	169,3
00000373 4d435320392c   3164 	.strz	"MCS 9, 5"
00000379 203500 
0000037c 01             3165 	.byte	1
0000037d aa03           3166 	.byte	170,3
0000037f 4d4343203130   3167 	.strz	"MCC 10, 5"
00000385 2c203500 
00000389 01             3168 	.byte	1
0000038a ab03           3169 	.byte	171,3
0000038c 4d4352203131   3170 	.strz	"MCR 11, 5"
00000392 2c203500 
00000396 01             3171 	.byte	1
00000397 ad03           3172 	.byte	173,3
00000399 4d504c413020   3173 	.strz	"MPLA0 0, 6"
0000039f 302c203600 
000003a4 01             3174 	.byte	1
000003a5 ae03           3175 	.byte	174,3
000003a7 4d5055413020   3176 	.strz	"MPUA0 1, 6"
000003ad 312c203600 
000003b2 01             3177 	.byte	1
000003b3 af03           3178 	.byte	175,3
000003b5 4d5041543020   3179 	.strz	"MPAT0 2, 6"
000003bb 322c203600 
000003c0 01             3180 	.byte	1
000003c1 b003           3181 	.byte	176,3
000003c3 4d504c413120   3182 	.strz	"MPLA1 4, 6"
000003c9 342c203600 
000003ce 01             3183 	.byte	1
000003cf b103           3184 	.byte	177,3
000003d1 4d5055413120   3185 	.strz	"MPUA1 5, 6"
000003d7 352c203600 
000003dc 01             3186 	.byte	1
000003dd b203           3187 	.byte	178,3
000003df 4d5041543120   3188 	.strz	"MPAT1 6, 6"
000003e5 362c203600 
000003ea 01             3189 	.byte	1
000003eb b303           3190 	.byte	179,3
000003ed 4d504c413220   3191 	.strz	"MPLA2 8, 6"
000003f3 382c203600 
000003f8 01             3192 	.byte	1
000003f9 b403           3193 	.byte	180,3
000003fb 4d5055413220   3194 	.strz	"MPUA2 9, 6"
00000401 392c203600 
00000406 01             3195 	.byte	1
00000407 b503           3196 	.byte	181,3
00000409 4d5041543220   3197 	.strz	"MPAT2 10, 6"
0000040f 31302c203600 
00000415 01             3198 	.byte	1
00000416 b603           3199 	.byte	182,3
00000418 4d504c413320   3200 	.strz	"MPLA3 12, 6"
0000041e 31322c203600 
00000424 01             3201 	.byte	1
00000425 b703           3202 	.byte	183,3

                                                                      Page 62
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
00000427 4d5055413320   3203 	.strz	"MPUA3 13, 6"
0000042d 31332c203600 
00000433 01             3204 	.byte	1
00000434 b803           3205 	.byte	184,3
00000436 4d5041543320   3206 	.strz	"MPAT3 14, 6"
0000043c 31342c203600 
00000442 01             3207 	.byte	1
00000443 b903           3208 	.byte	185,3
00000445 4d504c413420   3209 	.strz	"MPLA4 16, 6"
0000044b 31362c203600 
00000451 01             3210 	.byte	1
00000452 ba03           3211 	.byte	186,3
00000454 4d5055413420   3212 	.strz	"MPUA4 17, 6"
0000045a 31372c203600 
00000460 01             3213 	.byte	1
00000461 bb03           3214 	.byte	187,3
00000463 4d5041543420   3215 	.strz	"MPAT4 18, 6"
00000469 31382c203600 
0000046f 01             3216 	.byte	1
00000470 bc03           3217 	.byte	188,3
00000472 4d504c413520   3218 	.strz	"MPLA5 20, 6"
00000478 32302c203600 
0000047e 01             3219 	.byte	1
0000047f bd03           3220 	.byte	189,3
00000481 4d5055413520   3221 	.strz	"MPUA5 21, 6"
00000487 32312c203600 
0000048d 01             3222 	.byte	1
0000048e be03           3223 	.byte	190,3
00000490 4d5041543520   3224 	.strz	"MPAT5 22, 6"
00000496 32322c203600 
0000049c 01             3225 	.byte	1
0000049d bf03           3226 	.byte	191,3
0000049f 4d504c413620   3227 	.strz	"MPLA6 24, 6"
000004a5 32342c203600 
000004ab 01             3228 	.byte	1
000004ac c003           3229 	.byte	192,3
000004ae 4d5055413620   3230 	.strz	"MPUA6 25, 6"
000004b4 32352c203600 
000004ba 01             3231 	.byte	1
000004bb c103           3232 	.byte	193,3
000004bd 4d5041543620   3233 	.strz	"MPAT6 26, 6"
000004c3 32362c203600 
000004c9 01             3234 	.byte	1
000004ca c203           3235 	.byte	194,3
000004cc 4d504c413720   3236 	.strz	"MPLA7 28, 6"
000004d2 32382c203600 
000004d8 01             3237 	.byte	1
000004d9 c303           3238 	.byte	195,3
000004db 4d5055413720   3239 	.strz	"MPUA7 29, 6"
000004e1 32392c203600 
000004e7 01             3240 	.byte	1
000004e8 c403           3241 	.byte	196,3
000004ea 4d5041543720   3242 	.strz	"MPAT7 30, 6"
000004f0 33302c203600 
000004f6 01             3243 	.byte	1
000004f7 c503           3244 	.byte	197,3
000004f9 4d504c413820   3245 	.strz	"MPLA8 0, 7"
000004ff 302c203700 
00000504 01             3246 	.byte	1
00000505 c603           3247 	.byte	198,3
00000507 4d5055413820   3248 	.strz	"MPUA8 1, 7"

                                                                      Page 63
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
0000050d 312c203700 
00000512 01             3249 	.byte	1
00000513 c703           3250 	.byte	199,3
00000515 4d5041543820   3251 	.strz	"MPAT8 2, 7"
0000051b 322c203700 
00000520 01             3252 	.byte	1
00000521 c803           3253 	.byte	200,3
00000523 4d504c413920   3254 	.strz	"MPLA9 4, 7"
00000529 342c203700 
0000052e 01             3255 	.byte	1
0000052f c903           3256 	.byte	201,3
00000531 4d5055413920   3257 	.strz	"MPUA9 5, 7"
00000537 352c203700 
0000053c 01             3258 	.byte	1
0000053d ca03           3259 	.byte	202,3
0000053f 4d5041543920   3260 	.strz	"MPAT9 6, 7"
00000545 362c203700 
0000054a 01             3261 	.byte	1
0000054b cb03           3262 	.byte	203,3
0000054d 4d504c413130   3263 	.strz	"MPLA10 8, 7"
00000553 20382c203700 
00000559 01             3264 	.byte	1
0000055a cc03           3265 	.byte	204,3
0000055c 4d5055413130   3266 	.strz	"MPUA10 9, 7"
00000562 20392c203700 
00000568 01             3267 	.byte	1
00000569 cd03           3268 	.byte	205,3
0000056b 4d5041543130   3269 	.strz	"MPAT10 10, 7"
00000571 2031302c2037 
00000577 00 
00000578 01             3270 	.byte	1
00000579 ce03           3271 	.byte	206,3
0000057b 4d504c413131   3272 	.strz	"MPLA11 12, 7"
00000581 2031322c2037 
00000587 00 
00000588 01             3273 	.byte	1
00000589 cf03           3274 	.byte	207,3
0000058b 4d5055413131   3275 	.strz	"MPUA11 13, 7"
00000591 2031332c2037 
00000597 00 
00000598 01             3276 	.byte	1
00000599 d003           3277 	.byte	208,3
0000059b 4d5041543131   3278 	.strz	"MPAT11 14, 7"
000005a1 2031342c2037 
000005a7 00 
000005a8 01             3279 	.byte	1
000005a9 d103           3280 	.byte	209,3
000005ab 4d504c413132   3281 	.strz	"MPLA12 16, 7"
000005b1 2031362c2037 
000005b7 00 
000005b8 01             3282 	.byte	1
000005b9 d203           3283 	.byte	210,3
000005bb 4d5055413132   3284 	.strz	"MPUA12 17, 7"
000005c1 2031372c2037 
000005c7 00 
000005c8 01             3285 	.byte	1
000005c9 d303           3286 	.byte	211,3
000005cb 4d5041543132   3287 	.strz	"MPAT12 18, 7"
000005d1 2031382c2037 
000005d7 00 
000005d8 01             3288 	.byte	1

                                                                      Page 64
                                                              C:\Users\ADMINI~1\AppData\Local\Temp\gh_00002ro2.si
000005d9 d403           3289 	.byte	212,3
000005db 4d504c413133   3290 	.strz	"MPLA13 20, 7"
000005e1 2032302c2037 
000005e7 00 
000005e8 01             3291 	.byte	1
000005e9 d503           3292 	.byte	213,3
000005eb 4d5055413133   3293 	.strz	"MPUA13 21, 7"
000005f1 2032312c2037 
000005f7 00 
000005f8 01             3294 	.byte	1
000005f9 d603           3295 	.byte	214,3
000005fb 4d5041543133   3296 	.strz	"MPAT13 22, 7"
00000601 2032322c2037 
00000607 00 
00000608 01             3297 	.byte	1
00000609 d703           3298 	.byte	215,3
0000060b 4d504c413134   3299 	.strz	"MPLA14 24, 7"
00000611 2032342c2037 
00000617 00 
00000618 01             3300 	.byte	1
00000619 d803           3301 	.byte	216,3
0000061b 4d5055413134   3302 	.strz	"MPUA14 25, 7"
00000621 2032352c2037 
00000627 00 
00000628 01             3303 	.byte	1
00000629 d903           3304 	.byte	217,3
0000062b 4d5041543134   3305 	.strz	"MPAT14 26, 7"
00000631 2032362c2037 
00000637 00 
00000638 01             3306 	.byte	1
00000639 da03           3307 	.byte	218,3
0000063b 4d504c413135   3308 	.strz	"MPLA15 28, 7"
00000641 2032382c2037 
00000647 00 
00000648 01             3309 	.byte	1
00000649 db03           3310 	.byte	219,3
0000064b 4d5055413135   3311 	.strz	"MPUA15 29, 7"
00000651 2032392c2037 
00000657 00 
00000658 01             3312 	.byte	1
00000659 dc03           3313 	.byte	220,3
0000065b 4d5041543135   3314 	.strz	"MPAT15 30, 7"
00000661 2033302c2037 
00000667 00 
00000668 04             3315 	.byte	4
00000669 04             3316 	.byte	4
0000066a 04             3317 	.byte	4
0000066b 04             3318 	.byte	4
0000066c 00             3319 	.byte	0
                        3320 	.section	.debug_abbrev
00000187 00             3321 	.byte	0
                        3322 	.section	.debug_info
                        3323 .Ldw_end:
                        3324 .rh850_flags REGMODE32,DATA_ALIGN8,GP_FIX,EP_NONFIX,TP_FIX,REG2_NONRESERVE,G3KH,SDA_EXTRA_REGS_0