os20j_sgi_rom
81.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
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
_Ldtob 1168
_Litob 664
_Printf 1608
__CSPPostNextSeqEvent 112
__CartRomHandle 4
__Dom1SpeedParam 4
__Dom2SpeedParam 4
__OSGlobalIntMask 4
__additional_scanline 4
__alCSeqNextDelta 364
__alSeqNextDelta 100
__allocParam 48
__freeParam 24
__initChanState 112
__initFromBank 180
__libm_qnan_f 4
__ll_div 92
__ll_mul 48
__lookupSoundQuick 264
__lookupVoice 116
__mapVoice 112
__osActiveQueue 4
__osAiDeviceBusy 36
__osAtomicDec 88
__osBaseCounter 4
__osCheckId 212
__osCheckPackId 356
__osCleanupThread 8
__osContAddressCrc 208
__osContChannelReset 236
__osContDataCrc 148
__osContGetInitData 172
__osContLastCmd 4
__osContPifRam 4
__osContRamRead 548
__osContRamWrite 588
__osContinitialized 4
__osCurrentHandle 4
__osCurrentTime 4
__osDequeueThread 64
__osDevMgrMain 1040
__osDisableInt 112
__osDispatchThread 380
__osDpDeviceBusy 36
__osEPiRawReadIo 348
__osEPiRawStartDma 480
__osEPiRawWriteIo 344
__osEepPifRam 4
__osEepStatus 424
__osEepromTimer 4
__osEepromTimerMsg 4
__osEepromTimerQ 4
__osEnqueueAndYield 256
__osEnqueueThread 72
__osEventStateTab 4
__osException 1356
__osExceptionPreamble 16
__osFaultedThread 4
__osFinalrom 4
__osGIORawInterrupt 88
__osGbpakSetBank 208
__osGbpakTimer 4
__osGbpakTimerMsg 4
__osGbpakTimerQ 4
__osGetCause 12
__osGetId 428
__osGetSR 12
__osHwIntTable 4
__osIdCheckSum 252
__osInsertTimer 392
__osMaxControllers 4
__osPackRequestData 212
__osPackResetData 64
__osPfsDeclearPage 320
__osPfsGetInitData 172
__osPfsGetOneChannelDa 4
__osPfsGetStatus 208
__osPfsInodeCache 4
__osPfsInodeCacheBank 4
__osPfsInodeCacheChann 4
__osPfsLastChannel 4
__osPfsPifRam 4
__osPfsRWInode 724
__osPfsReleasePages 144
__osPfsRequestData 180
__osPfsRequestOneChann 4
__osPfsSelectBank 120
__osPiAccessQueue 4
__osPiAccessQueueEnabl 4
__osPiCreateAccessQueu 4
__osPiDevMgr 4
__osPiGetAccess 68
__osPiIntTable 4
__osPiRawReadIo 76
__osPiRawStartDma 200
__osPiRawWriteIo 72
__osPiRelAccess 44
__osPiTable 4
__osPopThread 16
__osPreNMI 4
__osProbeTLB 184
__osRcpImTable 4
__osRdbWriteOK 4
__osRepairPackId 848
__osResetGlobalIntMask 88
__osRestoreInt 28
__osRunQueue 4
__osRunningThread 4
__osSetCompare 12
__osSetFpcCsr 16
__osSetGlobalIntMask 76
__osSetSR 16
__osSetTimerIntr 116
__osShutdown 4
__osSiAccessQueue 4
__osSiAccessQueueEnabl 4
__osSiCreateAccessQueu 4
__osSiDeviceBusy 36
__osSiGetAccess 68
__osSiRawReadIo 76
__osSiRawStartDma 172
__osSiRawWriteIo 72
__osSiRelAccess 44
__osSpDeviceBusy 36
__osSpGetStatus 12
__osSpRawStartDma 132
__osSpSetPc 44
__osSpSetStatus 12
__osSumcalc 116
__osThreadSave 4
__osThreadTail 4
__osTimerCounter 4
__osTimerInterrupt 376
__osTimerList 4
__osTimerServicesInit 140
__osViCurr 4
__osViDevMgr 4
__osViGetCurrentContex 4
__osViInit 276
__osViIntrCount 4
__osViNext 4
__osViSwapContext 760
__osVoiceCheckResult 164
__osVoiceContDataCrc 152
__osVoiceContRead2 552
__osVoiceContRead36 552
__osVoiceContWrite20 548
__osVoiceContWrite4 548
__osVoiceGetStatus 484
__osVoiceSetADConverte 4
__postNextSeqEvent 220
__resetPerfChanState 128
__scTaskReady 80
__seqpReleaseVoice 300
__seqpStopOsc 260
__setInstChanState 84
__ull_div 60
__ull_rem 60
__unmapVoice 112
__voiceNeedsNoteKill 164
__vsDelta 36
__vsPan 72
__vsVol 136
_allocatePVoice 220
_collectPVoices 96
_doModFunc 168
_filterBuffer 176
_freePVoice 56
_frexpf 236
_init_lpfilter 160
_ldexpf 40
_loadBuffer 408
_loadOutputBuffer 544
_saveBuffer 404
_timeToSamples 40
alAdpcmPull 1108
alAuxBusNew 84
alAuxBusParam 48
alAuxBusPull 216
alCSeqNew 292
alCSeqNextEvent 260
alCents2Ratio 80
alCopy 116
alEnvmixerNew 168
alEnvmixerParam 224
alEnvmixerPull 1288
alEvtqFlushType 172
alEvtqNew 116
alEvtqNextEvent 140
alEvtqPostEvent 288
alFilterNew 28
alFxNew 1084
alFxParam 24
alFxParamHdl 604
alFxPull 832
alGlobals 4
alHeapDBAlloc 84
alLink 36
alLoadNew 168
alLoadParam 468
alMainBusNew 84
alMainBusParam 48
alMainBusPull 288
alRaw16Pull 944
alResampleNew 140
alResampleParam 236
alResamplePull 504
alSaveNew 68
alSaveParam 52
alSavePull 140
alSeqGetTicks 8
alSeqNextEvent 364
alSeqSetLoc 28
alSynAddPlayer 80
alSynAllocFX 152
alSynAllocVoice 320
alSynDelete 8
alSynFreeVoice 172
alSynNew 768
alSynRemovePlayer 156
alSynSetFXMix 148
alSynSetPan 132
alSynSetPitch 132
alSynSetPriority 16
alSynSetVol 156
alSynStartVoice 140
alSynStartVoiceParams 224
alSynStopVoice 120
alUnlink 48
bcmp 4
bcopy 4
bzero 4
corrupted 412
corrupted_init 728
cosf 4
guAlignF 432
guFrustumF 352
guLookAtF 696
guLookAtHilite 184
guLookAtHiliteF 1848
guLookAtReflectF 1036
guLookAtStereoF 972
guMtxCatF 360
guMtxF2L 256
guMtxIdentF 136
guMtxL2F 180
guMtxXFMF 164
guNormalize 132
guOrthoF 340
guPerspectiveF 560
guPositionF 424
guRotateF 388
guRotateRPYF 324
guScaleF 84
guTranslateF 72
ldiv 132
lldiv 256
memcpy 44
osAppNMIBuffer 4
osClockRate 4
osCreateMesgQueue 44
osCreateThread 324
osCreateViManager 384
osDestroyThread 260
osDpSetNextBuffer 128
osEepromRead 452
osEepromWrite 376
osGbpakGetStatus 380
osGbpakInit 560
osGbpakPower 272
osGbpakReadWrite 448
osGetCount 12
osGetThreadPri 24
osGetTime 132
osInvalDCache 172
osInvalICache 116
osJamMesg 336
osMapTLBRdb 88
osPfsChecker 1336
osPfsFindFile 452
osPfsFreeBlocks 408
osPiGetCmdQueue 40
osRecvMesg 312
osResetType 4
osRomBase 4
osRomType 4
osSendMesg 332
osSetEventMesg 180
osSetIntMask 160
osSetThreadPri 224
osSetTimer 212
osSpTaskLoad 360
osSpTaskStartGo 64
osSpTaskYield 32
osSpTaskYielded 96
osStartThread 336
osTvType 4
osUnmapTLBAll 68
osViBlack 100
osViClock 4
osViGetCurrentFramebuf 4
osViGetNextFramebuffer 60
osViModeMpalLan1 4
osViModeNtscLan1 4
osViModePalLan1 4
osViModeTable 4
osViSetEvent 92
osViSetMode 88
osViSwapBuffer 76
osVirtualToPhysical 124
osWritebackDCache 116
osWritebackDCacheAll 40
osYieldThread 76
send_mesg 180
sinf 4
sins 112
spClearAttribute 20
spSetAttribute 16
sqrtf 8
strchr 64
strlen 40
_Ldtob 292 0x27bdff40 0xffffffff 0xcf850cfa 0x15910933 0
30 292 0 0 NULL 1
35 0 0 2 NULL 0
36 0 0 2 NULL 0
38 0 72 1 NULL 0
39 0 76 1 NULL 0
44 0 76 0 memcpy 0
86 0 76 2 NULL 0
87 0 0 1 NULL 0
115 0 0 2 NULL 0
116 0 0 1 NULL 0
157 0 0 2 NULL 0
158 0 88 1 NULL 0
169 0 88 0 ldiv 0
279 338 88 0 NULL 1
_Litob 166 0x27bdff70 0xffffffff 0xcb242abf 0xf6ed6f7e 0
69 0 0 0 __ull_rem 0
83 0 0 0 __ull_div 0
107 0 0 0 lldiv 0
135 0 0 0 memcpy 0
_Printf 402 0x27bdff28 0xffffffff 0x8ab81b8f 0xb985f1b 0
9 0 0 2 NULL 0
21 0 4 1 NULL 0
58 0 4 0 strchr 0
64 0 4 2 NULL 0
66 0 12 1 NULL 0
72 0 12 0 strchr 0
80 0 12 2 NULL 0
163 0 12 0 strchr 0
164 0 0 1 NULL 0
183 402 0 0 NULL 1
__CSPPostNextSeqEvent 28 0x27bdffd0 0xffffffff 0xfda09a70 0x1d31b732 0
11 0 0 0 __alCSeqNextDelta 0
22 0 0 0 alEvtqPostEvent 0
__alCSeqNextDelta 91 0xafa50004 0xffffffff 0xb58abc09 0x6fb6125 0
__alSeqNextDelta 25 0x27bdffe0 0xffffffff 0x66418f21 0x416ee7a0 0
13 375 0 0 NULL 1
__allocParam 12 0x3c020000 0xffff0000 0x19511341 0xf56014fd 0
0 0 0 2 alGlobals 0
1 0 0 1 alGlobals 0
__cosf 90 0xe7ac0000 0xffffffff 0xc20b1cf 0x8a6a6469 0
14 0 0 2 NULL 0
20 0 40 1 NULL 0
41 0 40 2 NULL 0
42 0 48 1 NULL 0
44 0 48 2 NULL 0
45 0 56 1 NULL 0
46 0 56 2 NULL 0
47 0 0 1 NULL 0
81 0 0 2 NULL 0
84 0 0 2 __libm_qnan_f 0
86 0 0 1 __libm_qnan_f 0
87 0 64 1 NULL 0
__d_to_ll 7 0x46206109 0xffffffff 0x40e4b8c9 0xcebd344c 0
__d_to_ull 40 0x444ef800 0xffffffff 0x43628e9 0x7a708efc 0
24 0 0 2 NULL 0
25 0 0 1 NULL 0
__f_to_ll 7 0x46006109 0xffffffff 0xcf310878 0x3d94c94 0
__f_to_ull 39 0x444ef800 0xffffffff 0xb67b97ca 0x7a708efc 0
23 0 0 2 NULL 0
24 0 8 1 NULL 0
__freeParam 6 0x3c020000 0xffff0000 0x2f5850c2 0x1fc5e47a 0
0 0 0 2 alGlobals 0
1 0 0 1 alGlobals 0
__initChanState 28 0x27bdffd8 0xffffffff 0x96645711 0xe4a1e266 0
14 0 0 0 __resetPerfChanState 0
__initFromBank 45 0x27bdffd8 0xffffffff 0x6f6041ed 0xa5a879d0 0
16 0 0 0 __resetPerfChanState 0
20 0 0 0 __setInstChanState 0
32 0 0 0 __resetPerfChanState 0
37 0 0 0 __setInstChanState 0
__ll_bit_extract 33 0x27bdffe8 0xffffffff 0x5d75d95f 0x93e972f3 1
__ll_bit_insert 47 0x27bdffe0 0xffffffff 0x6dac3f94 0x459d8d28 0
__ll_div 23 0xafa40000 0xffffffff 0xf4f7fb03 0xfb20959a 0
__ll_lshift 11 0xafa40000 0xffffffff 0x1ff1c826 0xfb20959a 0
__ll_mod 39 0x27bdfff8 0xffffffff 0x224b83e0 0xceb40b69 0
__ll_mul 12 0xafa40000 0xffffffff 0x2e2b7b73 0xfb20959a 0
__ll_rem 15 0xafa40000 0xffffffff 0xd50a95ae 0xfb20959a 1
__ll_rshift 11 0xafa40000 0xffffffff 0xb05885ec 0xfb20959a 0
__ll_to_d 6 0xafa40000 0xffffffff 0xf0feedf6 0xa9c5956c 0
__ll_to_f 6 0xafa40000 0xffffffff 0x48428a93 0xa9c5956c 0
__lookupSoundQuick 66 0x27bdfff8 0xffffffff 0xad459f9d 0xe5fb677a 0
__lookupVoice 29 0xafa50004 0xffffffff 0x24fa32ef 0x53206c7f 0
__mapVoice 28 0xafa50004 0xffffffff 0xa7b7f79e 0x7b9c7461 0
__osAiDeviceBusy 9 0x3c0ea450 0xffffffff 0x52489218 0x672bfbad 0
__osAtomicDec 22 0x27bdffe0 0xffffffff 0xc470beb2 0x66389aad 0
2 0 0 0 __osDisableInt 0
15 0 0 0 __osRestoreInt 0
__osCheckId 53 0x27bdffb8 0xffffffff 0x18a2db29 0x2caa2ecf 0
7 0 0 0 __osPfsSelectBank 0
13 0 0 0 __osPfsSelectBank 0
23 0 0 0 __osContRamRead 0
33 0 0 0 __osContRamRead 0
41 0 0 0 bcmp 0
__osCheckPackId 89 0x27bdffa0 0xffffffff 0x6d46a2f2 0x77e57f6f 0
14 0 0 0 __osPfsSelectBank 0
36 0 0 0 __osContRamRead 0
43 0 0 0 __osIdCheckSum 0
69 0 0 0 __osContRamWrite 0
__osContAddressCrc 52 0xafa40000 0xffffffff 0xd6870219 0xa2c13c62 0
__osContChannelReset 59 0x27bdffd8 0xffffffff 0x6872c25d 0x95ab323b 0
1 0 0 2 __osPfsPifRam 0
3 0 0 1 __osPfsPifRam 0
6 0 0 0 __osSiGetAccess 0
9 0 0 2 __osPfsPifRam 0
10 0 0 1 __osPfsPifRam 0
37 0 0 0 __osSiRawStartDma 0
41 0 0 0 osRecvMesg 0
43 0 0 2 __osPfsPifRam 0
44 0 0 1 __osPfsPifRam 0
45 0 0 0 __osSiRawStartDma 0
50 0 0 0 osRecvMesg 0
52 0 0 0 __osSiRelAccess 0
__osContDataCrc 37 0x802825 0xffffffff 0x920ed19a 0xe48ca4d4 0
__osContGetInitData 43 0x3c070000 0xffff0000 0x685cd20 0xe79c0240 1
0 0 0 2 __osMaxControllers 0
1 0 0 1 __osMaxControllers 0
3 0 0 2 __osContPifRam 0
6 0 0 1 __osContPifRam 0
__osContRamRead 137 0x27bdffa0 0xffffffff 0x29b4c87a 0x31ad1baa 0
15 0 0 0 __osSiGetAccess 0
18 0 0 2 __osPfsLastChannel 0
19 0 0 2 __osContLastCmd 0
20 0 0 2 __osPfsPifRam 0
25 0 0 1 __osPfsPifRam 0
26 0 0 1 __osContLastCmd 0
27 0 0 1 __osPfsLastChannel 0
73 0 0 0 __osContAddressCrc 0
79 0 0 0 __osSiRawStartDma 0
83 0 0 0 osRecvMesg 0
86 0 0 0 __osSiRawStartDma 0
90 0 0 0 osRecvMesg 0
98 0 0 0 __osContDataCrc 0
106 0 0 0 __osPfsGetStatus 0
112 0 0 0 bcopy 0
122 0 0 0 __osSiRelAccess 0
__osContRamWrite 147 0x27bdff98 0xffffffff 0x1ba5d696 0x1e65be1e 0
29 0 0 0 __osSiGetAccess 0
33 0 0 2 __osPfsLastChannel 0
34 0 0 2 __osContLastCmd 0
35 0 0 2 __osPfsPifRam 0
36 0 0 1 __osPfsPifRam 0
37 0 0 1 __osContLastCmd 0
38 0 0 1 __osPfsLastChannel 0
85 0 0 0 __osContAddressCrc 0
92 0 0 0 bcopy 0
95 0 0 0 __osSiRawStartDma 0
97 0 0 0 __osContDataCrc 0
102 0 0 0 osRecvMesg 0
105 0 0 0 __osSiRawStartDma 0
109 0 0 0 osRecvMesg 0
120 0 0 0 __osPfsGetStatus 0
132 0 0 0 __osSiRelAccess 0
__osDequeueThread 16 0x803025 0xffffffff 0xa238df35 0x9372f012 0
__osDevMgrMain 260 0x27bdff88 0xffffffff 0x8343fd1f 0x6189d40a 0
21 0 0 0 osRecvMesg 0
65 0 0 0 osRecvMesg 0
68 0 0 0 __osResetGlobalIntMask 0
76 0 0 0 __osEPiRawWriteIo 0
80 0 0 0 osRecvMesg 0
97 0 0 0 __osEPiRawWriteIo 0
102 0 0 0 __osEPiRawWriteIo 0
108 0 0 0 __osEPiRawReadIo 0
120 0 0 0 __osEPiRawWriteIo 0
128 0 0 0 __osSetGlobalIntMask 0
132 0 0 0 osSendMesg 0
144 0 0 0 osSendMesg 0
151 0 0 0 osYieldThread 0
160 0 0 2 NULL 0
162 0 0 1 NULL 0
167 0 0 0 osRecvMesg 0
180 0 0 0 osRecvMesg 0
193 0 0 0 osRecvMesg 0
209 0 0 0 osRecvMesg 0
226 0 0 0 osSendMesg 0
234 0 0 0 osRecvMesg 0
238 0 0 0 osSendMesg 0
242 0 0 0 osSendMesg 0
__osDisableInt 28 0x3c0a0000 0xffff0000 0xcee25777 0xa7179da8 0
0 0 0 2 __OSGlobalIntMask 0
1 0 0 1 __OSGlobalIntMask 0
12 0 0 2 __osRunningThread 0
13 0 0 1 __osRunningThread 0
__osDispatchThread 95 0x3c040000 0xffff0000 0x1d77a71e 0x9f4f142 0
0 0 0 2 __osRunQueue 0
1 0 0 0 __osPopThread 0
2 0 0 1 __osRunQueue 0
3 0 0 2 __osRunningThread 0
4 0 0 1 __osRunningThread 0
8 0 0 2 __OSGlobalIntMask 0
10 0 0 1 __OSGlobalIntMask 0
77 0 0 2 __OSGlobalIntMask 0
78 0 0 1 __OSGlobalIntMask 0
83 0 0 2 __osRcpImTable 0
84 0 0 1 __osRcpImTable 0
__osDpDeviceBusy 9 0x3c0ea410 0xffffffff 0x77e9ed38 0x2183dca7 0
__osEPiRawReadIo 87 0x3c03a460 0xffffffff 0xd13094ea 0x1fca7bc5 0
12 0 0 2 __osCurrentHandle 0
16 0 0 1 __osCurrentHandle 0
__osEPiRawStartDma 120 0x27bdffe0 0xffffffff 0xb14912ab 0x1743cfbb 0
16 0 0 2 __osCurrentHandle 0
20 0 0 1 __osCurrentHandle 0
84 0 0 0 osVirtualToPhysical 0
__osEPiRawWriteIo 86 0x3c03a460 0xffffffff 0x413955a5 0x1fca7bc5 0
12 0 0 2 __osCurrentHandle 0
16 0 0 1 __osCurrentHandle 0
__osEepStatus 106 0x27bdffd0 0xffffffff 0x781274e3 0xe1e419fb 0
1 0 0 2 __osEepPifRam 0
2 0 0 2 __osEepPifRam 0
6 0 64 1 __osEepPifRam 0
7 0 0 1 __osEepPifRam 0
12 0 0 2 __osEepPifRam 0
13 0 0 1 __osEepPifRam 0
48 0 0 0 __osSiRawStartDma 0
52 0 0 0 osRecvMesg 0
55 0 0 2 __osContLastCmd 0
56 0 0 2 __osEepPifRam 0
57 0 0 1 __osContLastCmd 0
58 0 0 1 __osEepPifRam 0
59 0 0 0 __osSiRawStartDma 0
64 0 0 0 osRecvMesg 0
67 0 0 2 __osEepPifRam 0
68 0 1 1 __osEepPifRam 0
70 0 1 2 __osEepPifRam 0
73 0 0 1 __osEepPifRam 0
__osEnqueueAndYield 64 0x3c050000 0xffff0000 0xc494d817 0x734f12eb 0
0 0 0 2 __osRunningThread 0
1 0 0 1 __osRunningThread 0
32 0 0 2 __OSGlobalIntMask 0
33 0 0 1 __OSGlobalIntMask 0
48 0 0 2 __OSGlobalIntMask 0
49 0 0 1 __OSGlobalIntMask 0
60 0 0 0 __osEnqueueThread 0
62 0 0 0 __osDispatchThread 0
__osEnqueueThread 18 0x8c980000 0xffffffff 0xe95b4d94 0xe7f50e17 0
__osException 339 0x3c1a0000 0xffff0000 0x8421249b 0xed703da4 0
0 0 0 2 __osThreadSave 0
1 0 0 1 __osThreadSave 0
14 0 0 2 __osRunningThread 0
15 0 0 1 __osRunningThread 0
58 0 0 2 __OSGlobalIntMask 0
59 0 0 1 __OSGlobalIntMask 0
78 0 0 2 __OSGlobalIntMask 0
79 0 0 1 __OSGlobalIntMask 0
134 0 0 2 NULL 0
136 0 0 1 NULL 0
137 0 0 2 NULL 0
139 0 32 1 NULL 0
150 0 32 0 send_mesg 0
156 0 32 2 __osHwIntTable 0
157 0 0 1 __osHwIntTable 0
169 0 0 0 send_mesg 0
173 0 0 2 __OSGlobalIntMask 0
174 0 0 1 __OSGlobalIntMask 0
191 0 0 0 send_mesg 0
197 0 0 0 send_mesg 0
206 0 0 0 send_mesg 0
217 0 0 0 send_mesg 0
226 0 0 0 send_mesg 0
236 0 0 2 __osPiIntTable 0
237 0 0 1 __osPiIntTable 0
247 0 0 0 send_mesg 0
258 0 0 0 send_mesg 0
265 0 0 2 __osShutdown 0
268 0 0 1 __osShutdown 0
276 0 0 0 send_mesg 0
278 0 0 2 __osRunQueue 0
279 0 0 1 __osRunQueue 0
289 0 0 0 send_mesg 0
297 0 0 0 send_mesg 0
304 0 0 0 send_mesg 0
308 0 0 2 __osRunQueue 0
309 0 0 1 __osRunQueue 0
315 0 0 2 __osRunQueue 0
317 0 0 0 __osEnqueueThread 0
318 0 0 1 __osRunQueue 0
319 0 0 0 __osDispatchThread 0
321 0 0 2 __osRunQueue 0
322 0 0 1 __osRunQueue 0
325 0 0 0 __osDispatchThread 0
327 0 0 2 __osFaultedThread 0
328 0 0 1 __osFaultedThread 0
335 0 0 0 send_mesg 0
337 0 0 0 __osDispatchThread 0
__osExceptionPreamble 4 0x3c1a0000 0xffff0000 0x16466b94 0x16466b94 0
0 0 0 2 __osException 0
1 0 0 1 __osException 0
__osGIOInterrupt 12 0x27bdffe8 0xffffffff 0xa81bd6aa 0x20b4d5ac 0
2 0 0 0 __osPiGetAccess 0
4 0 0 0 __osGIORawInterrupt 0
6 0 0 0 __osPiRelAccess 0
__osGIORawInterrupt 22 0x3c03a460 0xffffffff 0xbfc69b89 0x6a60677e 0
__osGbpakGetBank 38 0x27bdffb8 0xffffffff 0x595bc621 0x3807d3b8 0
8 0 0 0 __osContRamRead 0
15 0 0 0 osGbpakInit 0
22 0 0 0 __osContRamRead 0
__osGbpakSetBank 52 0x27bdffa8 0xffffffff 0xb99d46a3 0xa3b7786b 0
23 0 0 0 __osContRamWrite 0
30 0 0 0 osGbpakInit 0
38 0 0 0 __osContRamWrite 0
__osGetActiveQueue 3 0x3c020000 0xffff0000 0x1365bdff 0x1365bdff 1
0 0 0 2 __osActiveQueue 0
2 0 0 1 __osActiveQueue 0
__osGetCause 3 0x40026800 0xffffffff 0xc9a418cf 0xc9a418cf 0
__osGetCompare 3 0x40025800 0xffffffff 0xe1ce53d3 0xe1ce53d3 0
__osGetConfig 3 0x40028000 0xffffffff 0x54525a2d 0x54525a2d 0
__osGetCurrFaultedThread 3 0x3c020000 0xffff0000 0x1365bdff 0x1365bdff 1
0 0 0 2 __osFaultedThread 0
2 0 0 1 __osFaultedThread 0
__osGetFpcCsr 3 0x4442f800 0xffffffff 0xd3e5bf37 0xd3e5bf37 0
__osGetHWIntrRoutine 11 0x0470c0 0xffffffff 0x68ce2aa8 0x95cd2df 0
1 0 0 2 __osHwIntTable 0
3 0 0 1 __osHwIntTable 0
5 0 0 2 __osHwIntTable 0
8 0 4 1 __osHwIntTable 0
__osGetId 107 0x27bdff90 0xffffffff 0x7a819ebc 0xa7fae8e1 0
8 0 0 0 __osPfsSelectBank 0
17 0 0 0 __osContRamRead 0
24 0 0 0 __osIdCheckSum 0
35 0 0 0 __osCheckPackId 0
42 0 0 0 __osRepairPackId 0
60 0 0 0 __osRepairPackId 0
73 0 0 0 bcopy 0
95 0 0 0 __osContRamRead 0
__osGetNextFaultedThread 43 0x27bdffd8 0xffffffff 0x26890024 0x7f8ccff8 0
4 0 0 0 __osDisableInt 0
10 0 0 2 __osActiveQueue 0
12 0 0 1 __osActiveQueue 0
35 0 0 0 __osRestoreInt 0
__osGetSR 3 0x40026000 0xffffffff 0x7367f98a 0x7367f98a 0
__osGetTLBASID 3 0x40025000 0xffffffff 0x5b0db296 0x5b0db296 0
__osGetTLBHi 9 0x40840000 0xffffffff 0xd5960b5e 0x2570b1b0 0
__osGetTLBLo0 9 0x40840000 0xffffffff 0x3de12b1 0x2570b1b0 0
__osGetTLBLo1 9 0x40840000 0xffffffff 0xb91df3f4 0x2570b1b0 0
__osGetTLBPageMask 9 0x40840000 0xffffffff 0x9177b8e8 0x2570b1b0 0
__osIdCheckSum 63 0xa4c00000 0xffffffff 0xf664555a 0x5d91c70a 0
__osInsertTimer 98 0x27bdffc8 0xffffffff 0xd84ec875 0x97b901ef 0
2 0 0 0 __osDisableInt 0
4 0 0 2 __osTimerList 0
5 0 0 1 __osTimerList 0
31 0 0 2 __osTimerList 0
39 0 0 1 __osTimerList 0
58 0 0 2 __osTimerList 0
61 0 0 1 __osTimerList 0
91 0 0 0 __osRestoreInt 0
__osMotorAccess 90 0x27bdffd0 0xffffffff 0x8f074e4b 0xbbb54f96 0
16 0 0 0 __osSiGetAccess 0
40 0 0 2 __osContLastCmd 0
41 0 0 1 __osContLastCmd 0
47 0 0 0 __osSiRawStartDma 0
51 0 0 0 osRecvMesg 0
58 0 0 0 __osSiRawStartDma 0
62 0 0 0 osRecvMesg 0
82 0 0 0 __osSiRelAccess 0
__osPackRequestData 53 0x27bdffe8 0xffffffff 0xf3866e17 0x813d535b 0
3 0 0 2 __osContPifRam 0
4 0 0 2 __osContPifRam 0
6 0 60 1 __osContPifRam 0
7 0 0 1 __osContPifRam 0
12 0 0 2 __osContPifRam 0
13 0 0 1 __osContPifRam 0
16 0 0 2 __osMaxControllers 0
17 0 0 1 __osMaxControllers 0
__osPackResetData 16 0x3c030000 0xffff0000 0x6015fe82 0xb4d6505f 0
0 0 0 2 __osContPifRam 0
1 0 0 1 __osContPifRam 0
4 0 0 2 __osContPifRam 0
6 0 1 1 __osContPifRam 0
7 0 1 2 __osContPifRam 0
8 0 0 1 __osContPifRam 0
__osPfsDeclearPage 80 0x27bdfff0 0xffffffff 0xa2a3f301 0x9b326f50 0
__osPfsGetInitData 43 0x3c070000 0xffff0000 0x685cd20 0xe79c0240 1
0 0 0 2 __osMaxControllers 0
1 0 0 1 __osMaxControllers 0
3 0 0 2 __osPfsPifRam 0
6 0 0 1 __osPfsPifRam 0
__osPfsGetOneChannelData 38 0x3c020000 0xffff0000 0x4003a5cf 0xd01377cc 0
0 0 0 2 __osPfsPifRam 0
2 0 0 1 __osPfsPifRam 0
__osPfsGetStatus 52 0x27bdffd0 0xffffffff 0x737759ae 0xb1d3cf68 0
5 0 0 2 __osPfsInodeCacheBank 0
7 0 0 1 __osPfsInodeCacheBank 0
8 0 0 0 __osPfsRequestOneChann 0
10 0 0 2 __osPfsPifRam 0
11 0 0 1 __osPfsPifRam 0
12 0 0 0 __osSiRawStartDma 0
16 0 0 0 osRecvMesg 0
18 0 0 2 __osPfsPifRam 0
19 0 0 1 __osPfsPifRam 0
20 0 0 0 __osSiRawStartDma 0
25 0 0 0 osRecvMesg 0
28 0 0 0 __osPfsGetOneChannelDa 0
__osPfsRWInode 181 0x27bdffa8 0xffffffff 0x36a97f9f 0xca9b7808 0
13 0 0 2 __osPfsInodeCacheBank 0
14 0 0 1 __osPfsInodeCacheBank 0
16 0 0 2 __osPfsInodeCacheChann 0
19 0 0 1 __osPfsInodeCacheChann 0
21 0 0 2 __osPfsInodeCache 0
22 0 0 1 __osPfsInodeCache 0
25 0 0 0 bcopy 0
33 0 0 0 __osPfsSelectBank 0
56 0 0 0 __osSumcalc 0
74 0 0 0 __osContRamWrite 0
84 0 0 0 __osContRamWrite 0
94 0 0 0 __osContRamRead 0
113 0 0 0 __osSumcalc 0
129 0 0 0 __osContRamRead 0
136 0 0 0 __osSumcalc 0
155 0 0 0 __osContRamWrite 0
162 0 0 2 __osPfsInodeCacheBank 0
163 0 0 2 __osPfsInodeCache 0
164 0 0 1 __osPfsInodeCache 0
167 0 0 0 bcopy 0
168 0 0 1 __osPfsInodeCacheBank 0
170 0 0 2 __osPfsInodeCacheChann 0
172 0 0 1 __osPfsInodeCacheChann 0
__osPfsReleasePages 36 0x27bdfff0 0xffffffff 0xb22e9f90 0x58be761 0
__osPfsRequestData 45 0x27bdfff0 0xffffffff 0xb6213a3e 0x3b22e88 0
1 0 0 2 __osPfsPifRam 0
2 0 0 2 __osContLastCmd 0
3 0 0 1 __osPfsPifRam 0
5 0 0 1 __osContLastCmd 0
8 0 0 2 __osMaxControllers 0
9 0 0 1 __osMaxControllers 0
__osPfsRequestOneChannel 49 0x27bdffe8 0xffffffff 0x926a8f1c 0x87df7a00 0
1 0 0 2 __osPfsPifRam 0
3 0 0 2 __osContLastCmd 0
4 0 0 1 __osPfsPifRam 0
6 0 0 1 __osContLastCmd 0
__osPfsSelectBank 30 0x27bdffa8 0xffffffff 0x7813c2f 0xa375b937 0
19 0 0 0 __osContRamWrite 0
__osPiCreateAccessQueue 20 0x27bdffe8 0xffffffff 0x3a628950 0x87e25a5 1
3 0 0 2 __osPiAccessQueueEnabl 0
4 0 0 2 __osPiAccessQueue 0
6 0 0 1 __osPiAccessQueueEnabl 0
8 0 0 1 __osPiAccessQueue 0
9 0 0 0 osCreateMesgQueue 0
11 0 0 2 __osPiAccessQueue 0
12 0 0 1 __osPiAccessQueue 0
14 0 0 0 osSendMesg 0
__osPiDeviceBusy 9 0x3c0ea460 0xffffffff 0x5f29949e 0xdf0fc394 0
__osPiGetAccess 17 0x3c0e0000 0xffff0000 0x9cec0b4e 0x7593c323 1
0 0 0 2 __osPiAccessQueueEnabl 0
1 0 0 1 __osPiAccessQueueEnabl 0
6 0 0 0 __osPiCreateAccessQueu 0
8 0 0 2 __osPiAccessQueue 0
9 0 0 1 __osPiAccessQueue 0
11 0 0 0 osRecvMesg 0
__osPiRawReadIo 19 0x3c03a460 0xffffffff 0x191cf77 0xa12dc8d6 0
3 0 0 2 osRomBase 0
11 0 0 1 osRomBase 0
__osPiRawStartDma 50 0x27bdffe8 0xffffffff 0xcbe95339 0xa1e4781b 0
15 0 0 0 osVirtualToPhysical 0
21 0 0 2 osRomBase 0
22 0 0 1 osRomBase 0
__osPiRawWriteIo 18 0x3c03a460 0xffffffff 0xd50d3c0b 0xa12dc8d6 0
3 0 0 2 osRomBase 0
11 0 0 1 osRomBase 0
__osPiRelAccess 11 0x27bdffe8 0xffffffff 0x9f265393 0x60472e46 1
2 0 0 2 __osPiAccessQueue 0
3 0 0 1 __osPiAccessQueue 0
5 0 0 0 osSendMesg 0
__osPopThread 4 0x8c820000 0xffffffff 0x8cf40658 0x8cf40658 0
__osProbeTLB 46 0x40085000 0xffffffff 0x55ab04a3 0x8279ed61 0
__osRepairPackId 212 0x27bdff60 0xffffffff 0x36e5b2f2 0x5666461 0
14 0 0 0 osGetCount 0
29 0 0 0 __osPfsSelectBank 0
39 0 0 0 __osPfsSelectBank 0
47 0 0 0 __osContRamRead 0
65 0 0 0 __osContRamWrite 0
73 0 0 0 __osContRamRead 0
93 0 0 0 __osPfsSelectBank 0
101 0 0 0 __osContRamRead 0
118 0 0 0 __osPfsSelectBank 0
137 0 0 0 __osIdCheckSum 0
154 0 0 0 __osContRamWrite 0
166 0 0 0 __osContRamRead 0
__osResetGlobalIntMask 22 0x27bdffd8 0xffffffff 0x46eb7b75 0x5820dd23 0
3 0 0 0 __osDisableInt 0
6 0 0 2 __OSGlobalIntMask 0
7 0 0 1 __OSGlobalIntMask 0
12 0 0 2 __OSGlobalIntMask 0
14 0 0 1 __OSGlobalIntMask 0
15 0 0 0 __osRestoreInt 0
__osRestoreInt 7 0x40086000 0xffffffff 0xad8bfd1d 0x49bd020c 0
__osSetCause 3 0x40846800 0xffffffff 0x22bf6189 0x22bf6189 0
__osSetCompare 3 0x40845800 0xffffffff 0xad52a95 0xad52a95 0
__osSetConfig 3 0x40848000 0xffffffff 0xbf49236b 0xbf49236b 0
__osSetCount 3 0x40844800 0xffffffff 0xa423ee5e 0xa423ee5e 0
__osSetFpcCsr 4 0x4442f800 0xffffffff 0xf52165ba 0xf52165ba 0
__osSetGlobalIntMask 19 0x27bdffd8 0xffffffff 0x549c63ef 0x5820dd23 0
3 0 0 0 __osDisableInt 0
5 0 0 2 __OSGlobalIntMask 0
6 0 0 1 __OSGlobalIntMask 0
9 0 0 2 __OSGlobalIntMask 0
11 0 0 1 __OSGlobalIntMask 0
12 0 0 0 __osRestoreInt 0
__osSetHWIntrRoutine 27 0x27bdffd8 0xffffffff 0x2ad79e1a 0x2e6b775b 0
5 0 0 0 __osDisableInt 0
10 0 0 2 __osHwIntTable 0
13 0 0 1 __osHwIntTable 0
15 0 0 2 __osHwIntTable 0
20 0 0 0 __osRestoreInt 0
21 0 4 1 __osHwIntTable 0
__osSetPIIntrRoutine 20 0x27bdffd8 0xffffffff 0xa47dc76 0x5820dd23 0
3 0 0 0 __osDisableInt 0
6 0 0 2 __osPiIntTable 0
10 0 0 1 __osPiIntTable 0
12 0 0 2 __osPiIntTable 0
13 0 0 0 __osRestoreInt 0
14 0 4 1 __osPiIntTable 0
__osSetSR 4 0x40846000 0xffffffff 0xbd68503 0xbd68503 0
__osSetTimerIntr 29 0x27bdffd8 0xffffffff 0x3cb15718 0x5e2cabdd 0
3 0 0 0 __osDisableInt 0
5 0 0 0 osGetCount 0
7 0 0 2 __osTimerCounter 0
8 0 0 1 __osTimerCounter 0
9 0 0 2 __osTimerCounter 0
10 0 0 1 __osTimerCounter 0
21 0 0 0 __osSetCompare 0
23 0 0 0 __osRestoreInt 0
__osSiCreateAccessQueue 20 0x27bdffe8 0xffffffff 0x3a628950 0x87e25a5 1
3 0 0 2 __osSiAccessQueueEnabl 0
4 0 0 2 __osSiAccessQueue 0
6 0 0 1 __osSiAccessQueueEnabl 0
8 0 0 1 __osSiAccessQueue 0
9 0 0 0 osCreateMesgQueue 0
11 0 0 2 __osSiAccessQueue 0
12 0 0 1 __osSiAccessQueue 0
14 0 0 0 osSendMesg 0
__osSiDeviceBusy 9 0x3c0ea480 0xffffffff 0xf1e6ec25 0xbcbfd519 0
__osSiGetAccess 17 0x3c0e0000 0xffff0000 0x9cec0b4e 0x7593c323 1
0 0 0 2 __osSiAccessQueueEnabl 0
1 0 0 1 __osSiAccessQueueEnabl 0
6 0 0 0 __osSiCreateAccessQueu 0
8 0 0 2 __osSiAccessQueue 0
9 0 0 1 __osSiAccessQueue 0
11 0 0 0 osRecvMesg 0
__osSiGetStatus 3 0x3c0ea480 0xffffffff 0xf1132cf6 0xf1132cf6 0
__osSiRawReadIo 19 0x27bdffe8 0xffffffff 0x2e01f600 0x2af9bd43 1
3 0 0 0 __osSiDeviceBusy 0
__osSiRawStartDma 43 0x27bdffe8 0xffffffff 0xc14a2a5c 0xee9d3eb9 0
15 0 0 0 osWritebackDCache 0
19 0 0 0 osVirtualToPhysical 0
36 0 0 0 osInvalDCache 0
__osSiRawWriteIo 18 0x27bdffe8 0xffffffff 0x75bb0823 0x2af9bd43 1
3 0 0 0 __osSiDeviceBusy 0
__osSiRelAccess 11 0x27bdffe8 0xffffffff 0x9f265393 0x60472e46 1
2 0 0 2 __osSiAccessQueue 0
3 0 0 1 __osSiAccessQueue 0
5 0 0 0 osSendMesg 0
__osSpDeviceBusy 9 0x3c0ea404 0xffffffff 0x5f944169 0x97e42113 0
__osSpGetStatus 3 0x3c0ea404 0xffffffff 0x57665086 0x57665086 0
__osSpRawReadIo 19 0x27bdffe8 0xffffffff 0x2e01f600 0x2af9bd43 1
3 0 0 0 __osSpDeviceBusy 0
__osSpRawStartDma 33 0x27bdffe8 0xffffffff 0x3f4728b0 0xac99ef9a 0
5 0 0 0 __osSpDeviceBusy 0
13 0 0 0 osVirtualToPhysical 0
__osSpRawWriteIo 18 0x27bdffe8 0xffffffff 0x75bb0823 0x2af9bd43 1
3 0 0 0 __osSpDeviceBusy 0
__osSpSetPc 11 0x3c0ea404 0xffffffff 0xa55c071 0xc7754402 0
__osSpSetStatus 3 0x3c0ea404 0xffffffff 0x3a52d7c8 0x3a52d7c8 0
__osSumcalc 29 0x001825 0xffffffff 0xa42a7bae 0x82889049 0
__osSyncPutChars 73 0x27bdffd8 0xffffffff 0x5fb98461 0xd9252678 0
34 0 0 2 __osRdbWriteOK 0
35 0 0 0 __osAtomicDec 0
36 0 0 1 __osRdbWriteOK 0
39 0 0 2 __osRdbWriteOK 0
40 0 0 0 __osAtomicDec 0
41 0 0 1 __osRdbWriteOK 0
44 0 0 0 __osDisableInt 0
50 0 0 0 __osGetCause 0
55 0 0 0 __osGetCause 0
62 0 0 2 __osRdbWriteOK 0
63 0 0 1 __osRdbWriteOK 0
64 0 0 2 __osRdbWriteOK 0
67 0 0 0 __osRestoreInt 0
68 0 0 1 __osRdbWriteOK 0
__osTimerInterrupt 94 0x3c0e0000 0xffff0000 0xc6373c65 0x23bb8beb 0
0 0 0 2 __osTimerList 0
1 0 0 1 __osTimerList 0
7 0 0 2 __osTimerList 0
8 0 0 1 __osTimerList 0
12 0 0 0 __osSetCompare 0
14 0 0 2 __osTimerCounter 0
16 0 0 1 __osTimerCounter 0
17 0 0 0 osGetCount 0
20 0 0 2 __osTimerCounter 0
21 0 0 1 __osTimerCounter 0
24 0 0 2 __osTimerCounter 0
27 0 0 1 __osTimerCounter 0
53 0 0 0 __osSetTimerIntr 0
75 0 0 0 osSendMesg 0
86 0 0 0 __osInsertTimer 0
__osTimerServicesInit 35 0x3c010000 0xffff0000 0x2794387 0x25c8f154 0
0 0 0 2 __osCurrentTime 0
3 0 4 1 __osCurrentTime 0
4 0 0 1 __osCurrentTime 0
5 0 0 2 __osBaseCounter 0
6 0 0 2 __osTimerList 0
7 0 0 1 __osTimerList 0
8 0 0 1 __osBaseCounter 0
9 0 0 2 __osViIntrCount 0
10 0 0 1 __osViIntrCount 0
11 0 0 2 __osTimerList 0
13 0 0 1 __osTimerList 0
14 0 0 2 __osTimerList 0
18 0 0 2 __osTimerList 0
20 0 0 1 __osTimerList 0
21 0 0 2 __osTimerList 0
22 0 0 2 __osTimerList 0
25 0 0 1 __osTimerList 0
30 0 0 1 __osTimerList 0
32 0 0 1 __osTimerList 0
__osViGetCurrentContext 3 0x3c020000 0xffff0000 0x1365bdff 0x1365bdff 1
0 0 0 2 __osViCurr 0
2 0 0 1 __osViCurr 0
__osViGetNextContext 3 0x3c020000 0xffff0000 0x1365bdff 0x1365bdff 1
0 0 0 2 __osViNext 0
2 0 0 1 __osViNext 0
__osViInit 69 0x27bdffe8 0xffffffff 0xbd5eb55b 0x60472e46 0
4 0 0 0 bzero 0
6 0 0 2 __osViCurr 0
7 0 0 2 __osViNext 0
10 0 0 1 __osViNext 0
11 0 0 1 __osViCurr 0
20 0 0 2 osTvType 0
23 0 0 2 osViModePalLan1 0
28 0 0 1 osTvType 0
32 0 0 1 osViModePalLan1 0
36 0 0 2 osViModeMpalLan1 0
38 0 0 1 osViModeMpalLan1 0
42 0 0 2 osViModeNtscLan1 0
43 0 0 1 osViModeNtscLan1 0
63 0 0 0 __osViSwapContext 0
__osViSwapContext 190 0x27bdffb8 0xffffffff 0x2a93b22e 0x97e1bd74 0
3 0 0 2 __osViNext 0
5 0 0 1 __osViNext 0
11 0 0 0 osVirtualToPhysical 0
90 0 0 2 __additional_scanline 0
91 0 0 1 __additional_scanline 0
109 0 0 0 osVirtualToPhysical 0
127 0 0 0 osVirtualToPhysical 0
149 0 0 2 __osViCurr 0
153 0 0 1 __osViCurr 0
158 0 0 2 __osViNext 0
161 0 0 1 __osViNext 0
__osVoiceCheckResult 41 0x27bdffd8 0xffffffff 0xef35747b 0x33e164ab 0
7 0 0 0 __osVoiceGetStatus 0
21 0 0 0 __osVoiceContRead2 0
__osVoiceContDataCrc 38 0x803025 0xffffffff 0xc03c517a 0xa9c1c60c 0
__osVoiceContRead2 138 0x27bdff98 0xffffffff 0x8a521cf 0xb3a6c106 0
15 0 0 0 __osSiGetAccess 0
18 0 0 2 __osPfsLastChannel 0
19 0 0 2 __osContLastCmd 0
20 0 0 2 __osPfsPifRam 0
25 0 0 1 __osPfsPifRam 0
26 0 0 1 __osContLastCmd 0
27 0 0 1 __osPfsLastChannel 0
73 0 0 0 __osContAddressCrc 0
79 0 0 0 __osSiRawStartDma 0
83 0 0 0 osRecvMesg 0
86 0 0 0 __osSiRawStartDma 0
90 0 0 0 osRecvMesg 0
99 0 0 0 __osVoiceContDataCrc 0
107 0 0 0 __osVoiceGetStatus 0
113 0 0 0 bcopy 0
123 0 0 0 __osSiRelAccess 0
__osVoiceContRead36 138 0x27bdff98 0xffffffff 0x78c6b032 0xb3a6c106 0
15 0 0 0 __osSiGetAccess 0
18 0 0 2 __osPfsLastChannel 0
19 0 0 2 __osContLastCmd 0
20 0 0 2 __osPfsPifRam 0
25 0 0 1 __osPfsPifRam 0
26 0 0 1 __osContLastCmd 0
27 0 0 1 __osPfsLastChannel 0
73 0 0 0 __osContAddressCrc 0
79 0 0 0 __osSiRawStartDma 0
83 0 0 0 osRecvMesg 0
86 0 0 0 __osSiRawStartDma 0
90 0 0 0 osRecvMesg 0
99 0 0 0 __osVoiceContDataCrc 0
107 0 0 0 __osVoiceGetStatus 0
113 0 0 0 bcopy 0
123 0 0 0 __osSiRelAccess 0
__osVoiceContWrite20 137 0x27bdff90 0xffffffff 0xa522c63c 0xc0b55e49 0
15 0 0 0 __osSiGetAccess 0
18 0 0 2 __osPfsLastChannel 0
19 0 0 2 __osContLastCmd 0
20 0 0 2 __osPfsPifRam 0
25 0 0 1 __osPfsPifRam 0
26 0 0 1 __osContLastCmd 0
27 0 0 1 __osPfsLastChannel 0
73 0 0 0 __osContAddressCrc 0
80 0 0 0 bcopy 0
83 0 0 0 __osSiRawStartDma 0
86 0 0 0 __osVoiceContDataCrc 0
91 0 0 0 osRecvMesg 0
94 0 0 0 __osSiRawStartDma 0
98 0 0 0 osRecvMesg 0
110 0 0 0 __osVoiceGetStatus 0
122 0 0 0 __osSiRelAccess 0
__osVoiceContWrite4 137 0x27bdff90 0xffffffff 0x47ea1a3c 0xc0b55e49 0
15 0 0 0 __osSiGetAccess 0
18 0 0 2 __osPfsLastChannel 0
19 0 0 2 __osContLastCmd 0
20 0 0 2 __osPfsPifRam 0
25 0 0 1 __osPfsPifRam 0
26 0 0 1 __osContLastCmd 0
27 0 0 1 __osPfsLastChannel 0
73 0 0 0 __osContAddressCrc 0
80 0 0 0 bcopy 0
83 0 0 0 __osSiRawStartDma 0
86 0 0 0 __osVoiceContDataCrc 0
91 0 0 0 osRecvMesg 0
94 0 0 0 __osSiRawStartDma 0
98 0 0 0 osRecvMesg 0
110 0 0 0 __osVoiceGetStatus 0
122 0 0 0 __osSiRelAccess 0
__osVoiceGetStatus 121 0x27bdff98 0xffffffff 0x2be3e369 0x1a146fa0 0
2 0 0 2 __osContPifRam 0
3 0 0 1 __osContPifRam 0
18 0 0 0 __osSiGetAccess 0
49 0 0 2 __osContLastCmd 0
51 0 0 1 __osContLastCmd 0
53 0 0 0 __osSiRawStartDma 0
57 0 0 0 osRecvMesg 0
61 0 0 0 __osSiRawStartDma 0
65 0 0 0 osRecvMesg 0
106 0 0 0 __osSiRelAccess 0
__osVoiceSetADConverter 121 0x27bdff98 0xffffffff 0xabeb71de 0xc2dec5fa 0
14 0 0 0 __osSiGetAccess 0
17 0 0 2 __osPfsLastChannel 0
18 0 0 2 __osContLastCmd 0
21 0 0 2 __osPfsPifRam 0
22 0 0 1 __osPfsPifRam 0
24 0 0 1 __osContLastCmd 0
25 0 0 1 __osPfsLastChannel 0
66 0 0 0 __osContAddressCrc 0
70 0 0 0 __osSiRawStartDma 0
74 0 0 0 osRecvMesg 0
77 0 0 0 __osSiRawStartDma 0
81 0 0 0 osRecvMesg 0
94 0 0 0 __osVoiceGetStatus 0
106 0 0 0 __osSiRelAccess 0
__postNextSeqEvent 55 0x27bdffc8 0xffffffff 0xac2489a5 0x880516e3 0
11 0 0 0 __alSeqNextDelta 0
21 0 0 0 alSeqGetTicks 0
34 0 0 0 alSeqSetLoc 0
49 0 0 0 alEvtqPostEvent 0
__resetPerfChanState 32 0x8c8e0060 0xffffffff 0xe40cfd74 0x13bb8dbe 0
__scTaskReady 20 0x27bdffd8 0xffffffff 0x8d93645a 0xcd8813fa 0
4 0 0 0 osViGetCurrentFramebuf 0
6 0 0 0 osViGetNextFramebuffer 0
__seqpReleaseVoice 75 0x27bdffa0 0xffffffff 0xb9a7ba4b 0x37a16d54 0
33 0 0 0 alUnlink 0
36 0 0 0 alLink 0
51 0 0 0 alSynSetPriority 0
56 0 0 0 alSynSetVol 0
63 0 0 0 alEvtqPostEvent 0
__seqpStopOsc 65 0x27bdffc8 0xffffffff 0x695f97f8 0x9d82fffa 0
30 0 0 0 alUnlink 0
38 0 0 0 alLink 0
__setInstChanState 21 0x8c8e0060 0xffffffff 0x1ce72dae 0xc5d13967 0
__sinf 112 0xe7ac0000 0xffffffff 0x6108ee5c 0x4f6e8d66 0
12 0 0 2 NULL 0
13 0 0 1 NULL 0
36 0 0 2 NULL 0
37 0 40 1 NULL 0
64 0 40 2 NULL 0
65 0 48 1 NULL 0
67 0 48 2 NULL 0
68 0 56 1 NULL 0
69 0 56 2 NULL 0
70 0 0 1 NULL 0
103 0 0 2 NULL 0
106 0 0 2 __libm_qnan_f 0
108 0 0 1 __libm_qnan_f 0
109 0 64 1 NULL 0
__ull_bit_extract 33 0x27bdffe8 0xffffffff 0x5d75d95f 0x93e972f3 1
__ull_div 15 0xafa40000 0xffffffff 0x1fc4e322 0xfb20959a 0
__ull_divremi 24 0x87af0012 0xffffffff 0x12b381a8 0x936c5bed 0
__ull_rem 15 0xafa40000 0xffffffff 0xd50a95ae 0xfb20959a 1
__ull_rshift 11 0xafa40000 0xffffffff 0xd53fbeaa 0xfb20959a 0
__ull_to_d 13 0xafa40000 0xffffffff 0xfe68dabe 0xa9c5956c 0
__ull_to_f 12 0xafa40000 0xffffffff 0x8f7cc3f2 0xa9c5956c 0
__unmapVoice 28 0x8c830064 0xffffffff 0xc0b99c91 0x26a3f721 0
__voiceNeedsNoteKill 41 0x27bdffd0 0xffffffff 0x5f63c94a 0xd0169c02 0
24 0 0 0 alUnlink 0
28 0 0 0 alLink 0
__vsDelta 9 0x8c8e0024 0xffffffff 0x185ea1a6 0x7eb65b5f 0
__vsPan 18 0x908f0031 0xffffffff 0x8e34b05e 0xcec978a2 0
__vsVol 34 0x908e0036 0xffffffff 0x9fdfb8e1 0xbbcde51c 0
_allocatePVoice 55 0x27bdffd0 0xffffffff 0x97b734ab 0xb4a468ef 0
13 0 0 0 alUnlink 0
16 0 0 0 alLink 0
25 0 0 0 alUnlink 0
28 0 0 0 alLink 0
_bcmp 71 0x28c10010 0xffffffff 0x9eb35748 0x827d1ba1 0
_bcopy 193 0x10c0001a 0xffffffff 0x580e516 0xb9b52236 0
_bzero 39 0x28a1000c 0xffffffff 0x82a5c7ca 0x9fdfd8da 0
_collectPVoices 24 0x27bdffd8 0xffffffff 0x752398f3 0xe4a1e266 0
10 0 0 0 alUnlink 0
13 0 0 0 alLink 0
_doModFunc 42 0x44853000 0xffffffff 0xbdc7d25 0x86c60352 0
_filterBuffer 44 0x27bdffd0 0xffffffff 0x9b30aab 0x626b1db1 0
17 0 0 0 osVirtualToPhysical 0
34 0 0 0 osVirtualToPhysical 0
_freePVoice 14 0x27bdffe8 0xffffffff 0xcc60ef3a 0xac99ef9a 0
4 0 0 0 alUnlink 0
8 0 0 0 alLink 0
_frexpf 59 0x44801800 0xffffffff 0x23ece218 0x6980066c 0
_init_lpfilter 40 0x84820000 0xffffffff 0x33475f5f 0x6aa795db 0
_ldexpf 10 0x10c00007 0xffffffff 0x968730d9 0xb8360a05 0
_loadBuffer 102 0x27bdffa0 0xffffffff 0xe7e45862 0x574d9e39 0
40 0 0 0 osVirtualToPhysical 0
66 0 0 0 osVirtualToPhysical 0
88 0 0 0 osVirtualToPhysical 0
_loadOutputBuffer 136 0x27bdff98 0xffffffff 0x1f2fa813 0x2aa9a999 0
17 0 0 0 _doModFunc 0
72 0 0 0 _loadBuffer 0
106 0 0 0 osVirtualToPhysical 0
126 0 0 0 _loadBuffer 0
_saveBuffer 101 0x27bdffa0 0xffffffff 0xaa4e8c14 0x574d9e39 0
40 0 0 0 osVirtualToPhysical 0
66 0 0 0 osVirtualToPhysical 0
92 0 0 0 osVirtualToPhysical 0
_timeToSamples 10 0x27bdffe8 0xffffffff 0x52b6a1ac 0x391b6d48 0
2 364 0 0 NULL 1
alAdpcmPull 277 0x27bdff60 0xffffffff 0xe7d91ccb 0xad559a2 0
73 630 0 0 NULL 1
148 630 0 0 NULL 1
218 630 0 0 NULL 1
alAudioFrame 116 0x27bdff90 0xffffffff 0xcc5fc031 0x190b764d 0
2 0 0 2 alGlobals 0
3 0 0 1 alGlobals 0
26 393 0 0 NULL 1
43 364 0 0 NULL 1
50 393 0 0 NULL 1
102 0 0 0 _collectPVoices 0
alAuxBusNew 21 0x27bdffe8 0xffffffff 0x27f42ac9 0xf460b3b2 0
4 0 0 2 alAuxBusParam 0
5 0 0 2 alAuxBusPull 0
6 0 0 1 alAuxBusPull 0
7 0 0 1 alAuxBusParam 0
9 0 0 0 alFilterNew 0
alAuxBusParam 12 0x24010002 0xffffffff 0xd976ea0f 0xa666dc6d 1
alAuxBusPull 54 0x27bdffc0 0xffffffff 0x3bf87c0d 0xbae83d8e 0
alBnkfNew 36 0x27bdffd8 0xffffffff 0xbbea8b97 0x4d06200 0
21 52 0 0 NULL 1
alCSPDelete 9 0x27bdffe8 0xffffffff 0x776390b6 0xa629c373 1
3 0 0 0 alSynRemovePlayer 0
alCSPGetChlFXMix 7 0xafa50004 0xffffffff 0x75f003c9 0xd3f5978a 1
alCSPGetChlPan 7 0xafa50004 0xffffffff 0x879adb14 0xd3f5978a 1
alCSPGetChlPriority 7 0xafa50004 0xffffffff 0xdff9cb42 0xd3f5978a 1
alCSPGetChlProgram 34 0x27bdffd8 0xffffffff 0x16848d54 0xb2ca5a4d 1
alCSPGetChlVol 7 0xafa50004 0xffffffff 0x6745ac27 0xd3f5978a 1
alCSPGetTempo 16 0x8c830018 0xffffffff 0xa16d8e0b 0x6e415d0a 0
alCSPNew 91 0x27bdffc0 0xffffffff 0x459521a7 0xee1a0058 0
7 0 0 2 alGlobals 0
8 0 0 1 alGlobals 0
38 0 0 0 alHeapDBAlloc 0
41 0 0 0 __initChanState 0
48 0 0 0 alHeapDBAlloc 0
71 0 0 0 alHeapDBAlloc 0
75 0 0 0 alEvtqNew 0
77 0 0 2 NULL 1
78 0 364 1 NULL 1
82 0 364 2 alGlobals 0
83 0 0 1 alGlobals 0
84 0 0 0 alSynAddPlayer 0
alCSPPlay 12 0x27bdffd8 0xffffffff 0xa3f231fe 0x3703e7ee 1
6 0 0 0 alEvtqPostEvent 0
alCSPSendMidi 26 0x27bdffd0 0xffffffff 0x2bd8e402 0xd558c591 1
20 0 0 0 alEvtqPostEvent 0
alCSPSetBank 14 0x27bdffd8 0xffffffff 0x25de2c85 0x15c5599a 1
8 0 0 0 alEvtqPostEvent 0
alCSPSetChlFXMix 23 0x27bdffd8 0xffffffff 0x2fb4dcbf 0x7ecd9321 1
17 0 0 0 alEvtqPostEvent 0
alCSPSetChlPan 23 0x27bdffd8 0xffffffff 0x3881189d 0x7ecd9321 1
17 0 0 0 alEvtqPostEvent 0
alCSPSetChlPriority 19 0x27bdffd8 0xffffffff 0xbd9db164 0x429ee9ac 1
13 0 0 0 alEvtqPostEvent 0
alCSPSetChlProgram 22 0x27bdffd8 0xffffffff 0x384dada4 0xb5914084 1
16 0 0 0 alEvtqPostEvent 0
alCSPSetChlVol 23 0x27bdffd8 0xffffffff 0xbfe8daae 0x7ecd9321 1
17 0 0 0 alEvtqPostEvent 0
alCSPSetSeq 14 0x27bdffd8 0xffffffff 0x5ba66423 0x770f674 1
8 0 0 0 alEvtqPostEvent 0
alCSPSetTempo 26 0x27bdffd8 0xffffffff 0xd4416fc2 0xe0d9dbd7 1
20 0 0 0 alEvtqPostEvent 0
alCSPSetVol 16 0x27bdffd8 0xffffffff 0x1a6f9a88 0x286701a5 1
10 0 0 0 alEvtqPostEvent 0
alCSPStop 12 0x27bdffd8 0xffffffff 0x781fd2ef 0x5e32c4f7 1
6 0 0 0 alEvtqPostEvent 0
alCSeqGetLoc 40 0x8c8e0004 0xffffffff 0xfc1858f0 0x86bc9e 0
alCSeqNew 73 0x27bdffc8 0xffffffff 0x349b7e5b 0xb9199ff5 0
37 689 0 0 NULL 1
alCSeqNewMarker 91 0x27bdfeb0 0xffffffff 0x630f6a69 0xa93baaab 0
13 0 0 0 alCSeqNew 0
74 0 0 0 alCSeqNextEvent 0
alCSeqNextEvent 65 0x27bdffd8 0xffffffff 0xcfa0b796 0x48577128 0
34 229 0 0 NULL 1
50 689 0 0 NULL 1
alCSeqSecToTicks 63 0x8c8e0000 0xffffffff 0x57cbed80 0xa6f781ae 0
2 0 0 2 NULL 0
4 0 8 1 NULL 0
alCSeqSetLoc 40 0x8cae0000 0xffffffff 0x6e82a200 0xe0edcbea 0
alCSeqTicksToSec 27 0x44852000 0xffffffff 0x4b43eb75 0x3e9a728f 0
20 0 0 2 NULL 0
21 0 0 1 NULL 0
alCents2Ratio 20 0x3c013f80 0xffffffff 0x100e2c13 0x55e47494 0
3 0 0 2 NULL 0
4 0 0 2 NULL 0
6 0 0 1 NULL 0
7 0 4 1 NULL 0
alClose 14 0x3c0e0000 0xffff0000 0x728b59aa 0xa676d896 0
0 0 0 2 alGlobals 0
1 0 0 1 alGlobals 0
6 0 0 0 alSynDelete 0
8 0 0 2 alGlobals 0
9 0 0 1 alGlobals 0
alCopy 29 0x801025 0xffffffff 0xbb9cae7f 0x28811d69 0
alEnvmixerNew 42 0x27bdffd8 0xffffffff 0xd4d08776 0x4913eec5 0
4 0 0 2 alEnvmixerPull 0
5 0 0 2 alEnvmixerParam 0
7 0 0 1 alEnvmixerParam 0
8 0 0 1 alEnvmixerPull 0
9 0 0 0 alFilterNew 0
16 0 0 0 alHeapDBAlloc 0
alEnvmixerParam 56 0x27bdffe8 0xffffffff 0x3bbb842f 0xaa214b00 0
alEnvmixerPull 322 0x27bdff68 0xffffffff 0x3ff42091 0x30574e01 0
39 0 0 2 NULL 0
41 0 0 1 NULL 0
125 378 0 0 NULL 1
159 754 0 0 NULL 1
169 754 0 0 NULL 1
245 378 0 0 NULL 1
256 0 0 2 alGlobals 0
257 0 0 1 alGlobals 0
259 0 0 0 _freePVoice 0
268 378 0 0 NULL 1
289 0 0 0 __freeParam 0
300 378 0 0 NULL 1
alEvtqFlush 28 0x27bdffc8 0xffffffff 0xe2d399f3 0x438f474e 0
6 0 0 0 osSetIntMask 0
13 0 0 0 alUnlink 0
16 0 0 0 alLink 0
20 0 0 0 osSetIntMask 0
alEvtqFlushType 43 0x27bdffc0 0xffffffff 0x98f05a61 0x67249e11 0
11 0 0 0 osSetIntMask 0
27 0 0 0 alUnlink 0
30 0 0 0 alLink 0
34 0 0 0 osSetIntMask 0
alEvtqNew 29 0x27bdffd8 0xffffffff 0xe7de1289 0xf356660b 0
17 0 0 0 alLink 0
alEvtqNextEvent 35 0x27bdffd0 0xffffffff 0xb182b4af 0xbada4b68 0
5 0 0 0 osSetIntMask 0
14 0 0 0 alUnlink 0
18 0 0 0 alCopy 0
21 0 0 0 alLink 0
28 0 0 0 osSetIntMask 0
alEvtqPostEvent 72 0x27bdffc8 0xffffffff 0xbb675118 0xfc0bf10c 0
7 0 0 0 osSetIntMask 0
15 0 0 0 osSetIntMask 0
20 0 0 0 alUnlink 0
24 0 0 0 alCopy 0
45 0 0 0 alLink 0
58 0 0 0 alLink 0
65 0 0 0 osSetIntMask 0
alFilterNew 7 0xac800000 0xffffffff 0xe3d46448 0xe9e92589 0
alFxNew 271 0x27bdff98 0xffffffff 0x128e4690 0xfb8ab397 0
6 0 0 2 alFxParam 0
19 0 0 1 alFxParam 0
21 0 0 0 alFilterNew 0
24 0 0 2 alFxPull 0
25 0 0 2 alFxParamHdl 0
26 0 0 1 alFxPull 0
27 0 0 1 alFxParamHdl 0
37 0 0 2 NULL 0
39 0 0 1 NULL 0
69 0 0 0 alHeapDBAlloc 0
77 0 0 0 alHeapDBAlloc 0
103 0 0 2 NULL 0
105 0 24 1 NULL 0
194 0 24 0 alHeapDBAlloc 0
202 0 24 0 alHeapDBAlloc 0
223 0 24 0 alHeapDBAlloc 0
231 0 24 0 alHeapDBAlloc 0
241 0 24 0 _init_lpfilter 0
alFxParam 6 0x24010001 0xffffffff 0xe25544ef 0x452f26d2 0
alFxParamHdl 151 0x24a3fffe 0xffffffff 0xc21fca6a 0xb82f8337 0
9 0 0 2 NULL 0
11 0 0 1 NULL 0
77 0 0 2 alGlobals 0
78 0 0 1 alGlobals 0
121 0 0 2 NULL 0
122 0 32 1 NULL 0
144 0 32 0 _init_lpfilter 0
alFxPull 208 0x27bdff58 0xffffffff 0x83b45e0c 0x1b540bff 0
46 0 0 0 _saveBuffer 0
85 0 0 0 _loadBuffer 0
92 0 0 0 _loadOutputBuffer 0
115 0 0 0 _saveBuffer 0
134 0 0 0 _saveBuffer 0
142 0 0 0 _filterBuffer 0
151 0 0 0 _saveBuffer 0
alHeapCheck 3 0xafa40000 0xffffffff 0xe9b0a762 0xe9b0a762 0
alHeapDBAlloc 21 0x8fae0010 0xffffffff 0x8ffea1fd 0x41a4e052 0
alHeapInit 13 0x24030010 0xffffffff 0xf5e785ee 0x941e354c 0
alInit 13 0x3c020000 0xffff0000 0x964d15fc 0xcd32d135 0
0 0 0 2 alGlobals 0
1 0 0 1 alGlobals 0
7 0 0 0 alSynNew 0
alLink 9 0x8cae0000 0xffffffff 0xba83687 0xbb0f8b9e 0
alLoadNew 42 0x27bdffd8 0xffffffff 0xe8cec604 0x9dc109df 0
5 0 0 2 alLoadParam 0
6 0 0 2 alAdpcmPull 0
8 0 0 1 alAdpcmPull 0
9 0 0 1 alLoadParam 0
10 0 0 0 alFilterNew 0
17 0 0 0 alHeapDBAlloc 0
25 0 0 0 alHeapDBAlloc 0
alLoadParam 117 0x27bdffe8 0xffffffff 0x9b9bf58a 0x33aebcc7 0
11 0 0 2 alAdpcmPull 0
18 0 0 2 alRaw16Pull 0
22 0 0 1 alAdpcmPull 0
62 0 0 0 alCopy 0
71 0 0 1 alRaw16Pull 0
alMainBusNew 21 0x27bdffe8 0xffffffff 0xddc12ab 0xf460b3b2 0
4 0 0 2 alMainBusParam 0
5 0 0 2 alMainBusPull 0
6 0 0 1 alMainBusPull 0
7 0 0 1 alMainBusParam 0
9 0 0 0 alFilterNew 0
alMainBusParam 12 0x24010002 0xffffffff 0xd976ea0f 0xa666dc6d 1
alMainBusPull 72 0x27bdffb8 0xffffffff 0xd1ec3f12 0x6bf3821e 0
alRaw16Pull 236 0x27bdffb0 0xffffffff 0x43c66e9f 0xc0f8de5f 0
alResampleNew 35 0x27bdffd8 0xffffffff 0xf2a62857 0x4913eec5 0
4 0 0 2 alResamplePull 0
5 0 0 2 alResampleParam 0
7 0 0 1 alResampleParam 0
8 0 0 1 alResamplePull 0
9 0 0 0 alFilterNew 0
16 0 0 0 alHeapDBAlloc 0
alResampleParam 59 0x24aeffff 0xffffffff 0x7555f7cf 0xd024b6c3 0
7 0 0 2 NULL 0
9 0 12 1 NULL 0
alResamplePull 126 0x27bdffa0 0xffffffff 0xae41127a 0xa8a27335 0
41 0 0 2 NULL 0
42 0 0 1 NULL 0
44 0 0 2 NULL 0
49 0 8 1 NULL 0
114 0 8 0 osVirtualToPhysical 0
alSaveNew 17 0x27bdffe8 0xffffffff 0x501bc30b 0xb1c29f7c 0
2 0 0 2 alSavePull 0
3 0 0 2 alSaveParam 0
4 0 0 1 alSaveParam 0
5 0 0 1 alSavePull 0
7 0 0 0 alFilterNew 0
alSaveParam 13 0x24010001 0xffffffff 0x5f72cb8 0x7f47e61f 0
alSavePull 35 0x27bdffe0 0xffffffff 0x1c9b0a9b 0xbb99c255 0
alSeqFileNew 16 0x848e0002 0xffffffff 0x774a16f9 0x567fc65f 0
alSeqGetLoc 7 0x8c8e0008 0xffffffff 0xb286546f 0xac985cdd 0
alSeqNew 56 0x27bdffe0 0xffffffff 0xb876da8d 0x834d8493 0
8 355 0 0 NULL 1
14 355 0 0 NULL 1
16 343 0 0 NULL 1
20 343 0 0 NULL 1
25 343 0 0 NULL 1
41 355 0 0 NULL 1
47 355 0 0 NULL 1
alSeqNewMarker 72 0x27bdffa0 0xffffffff 0x4947de36 0x580e7b8f 0
37 0 0 0 alSeqNextEvent 0
alSeqNextEvent 91 0x27bdffd0 0xffffffff 0xe743357d 0x89841e1b 0
5 375 0 0 NULL 1
11 338 0 0 NULL 1
19 338 0 0 NULL 1
31 338 0 0 NULL 1
34 338 0 0 NULL 1
37 338 0 0 NULL 1
40 338 0 0 NULL 1
52 338 0 0 NULL 1
65 338 0 0 NULL 1
81 338 0 0 NULL 1
alSeqSecToTicks 57 0x44856000 0xffffffff 0x949ac1d5 0x845e9ec2 0
1 0 0 2 NULL 0
2 0 8 1 NULL 0
alSeqSetLoc 7 0x8cae0000 0xffffffff 0x327e7a4a 0x630df1f 0
alSeqTicksToSec 21 0x44852000 0xffffffff 0xb06ab5f7 0x3e9a728f 0
11 0 0 2 NULL 0
13 0 0 1 NULL 0
alSeqpDelete 9 0x27bdffe8 0xffffffff 0x776390b6 0xa629c373 1
3 0 0 0 alSynRemovePlayer 0
alSeqpGetChlFXMix 7 0xafa50004 0xffffffff 0x75f003c9 0xd3f5978a 1
alSeqpGetChlPan 7 0xafa50004 0xffffffff 0x879adb14 0xd3f5978a 1
alSeqpGetChlPriority 7 0xafa50004 0xffffffff 0xdff9cb42 0xd3f5978a 1
alSeqpGetChlProgram 34 0x27bdffd8 0xffffffff 0x16848d54 0xb2ca5a4d 1
alSeqpGetChlVol 7 0xafa50004 0xffffffff 0x6745ac27 0xd3f5978a 1
alSeqpGetTempo 16 0x8c830018 0xffffffff 0xff784fd5 0x6e415d0a 0
alSeqpLoop 18 0x27bdffd8 0xffffffff 0xb1b9fbd5 0x286701a5 0
12 0 0 0 alEvtqPostEvent 0
alSeqpNew 96 0x27bdffc0 0xffffffff 0x3c47a12c 0xee1a0058 0
7 0 0 2 alGlobals 0
8 0 0 1 alGlobals 0
43 0 0 0 alHeapDBAlloc 0
46 0 0 0 __initChanState 0
53 0 0 0 alHeapDBAlloc 0
76 0 0 0 alHeapDBAlloc 0
80 0 0 0 alEvtqNew 0
82 0 0 2 NULL 1
83 0 384 1 NULL 1
87 0 384 2 alGlobals 0
88 0 0 1 alGlobals 0
89 0 0 0 alSynAddPlayer 0
alSeqpPlay 12 0x27bdffd8 0xffffffff 0xa3f231fe 0x3703e7ee 1
6 0 0 0 alEvtqPostEvent 0
alSeqpSendMidi 26 0x27bdffd0 0xffffffff 0x2bd8e402 0xd558c591 1
20 0 0 0 alEvtqPostEvent 0
alSeqpSetBank 14 0x27bdffd8 0xffffffff 0x25de2c85 0x15c5599a 1
8 0 0 0 alEvtqPostEvent 0
alSeqpSetChlFXMix 23 0x27bdffd8 0xffffffff 0x2fb4dcbf 0x7ecd9321 1
17 0 0 0 alEvtqPostEvent 0
alSeqpSetChlPan 23 0x27bdffd8 0xffffffff 0x3881189d 0x7ecd9321 1
17 0 0 0 alEvtqPostEvent 0
alSeqpSetChlPriority 19 0x27bdffd8 0xffffffff 0xbd9db164 0x429ee9ac 1
13 0 0 0 alEvtqPostEvent 0
alSeqpSetChlProgram 22 0x27bdffd8 0xffffffff 0x384dada4 0xb5914084 1
16 0 0 0 alEvtqPostEvent 0
alSeqpSetChlVol 23 0x27bdffd8 0xffffffff 0xbfe8daae 0x7ecd9321 1
17 0 0 0 alEvtqPostEvent 0
alSeqpSetSeq 14 0x27bdffd8 0xffffffff 0x5ba66423 0x770f674 1
8 0 0 0 alEvtqPostEvent 0
alSeqpSetTempo 26 0x27bdffd8 0xffffffff 0xd4416fc2 0xe0d9dbd7 1
20 0 0 0 alEvtqPostEvent 0
alSeqpSetVol 16 0x27bdffd8 0xffffffff 0x1a6f9a88 0x286701a5 1
10 0 0 0 alEvtqPostEvent 0
alSeqpStop 12 0x27bdffd8 0xffffffff 0x781fd2ef 0x5e32c4f7 1
6 0 0 0 alEvtqPostEvent 0
alSndpAllocate 39 0x8c860044 0xffffffff 0xb24962bf 0x98640aba 0
alSndpDeallocate 20 0x057400 0xffffffff 0xf72e012e 0x3014539f 0
alSndpDelete 10 0x27bdffe8 0xffffffff 0x875b1953 0x47c42f8d 0
3 0 0 2 alGlobals 0
4 0 0 0 alSynRemovePlayer 0
5 0 0 1 alGlobals 0
alSndpGetState 8 0x8c8e003c 0xffffffff 0x7b084e71 0x9ca0a073 0
alSndpNew 75 0x27bdffb8 0xffffffff 0xc6ea1803 0xbce72eab 0
20 0 0 0 alHeapDBAlloc 0
42 0 0 0 alHeapDBAlloc 0
47 0 0 0 alEvtqNew 0
49 0 0 2 alGlobals 0
50 0 0 1 alGlobals 0
52 0 0 2 NULL 1
53 0 300 1 NULL 1
58 0 300 0 alSynAddPlayer 0
64 0 300 0 alEvtqPostEvent 0
67 0 300 0 alEvtqNextEvent 0
alSndpPlay 25 0x27bdffd0 0xffffffff 0x4473ae66 0x1b2b7b5f 0
19 0 0 0 alEvtqPostEvent 0
alSndpPlayAt 18 0x27bdffd0 0xffffffff 0xea195617 0x369455d4 0
12 0 0 0 alEvtqPostEvent 0
alSndpSetFXMix 22 0x27bdffd0 0xffffffff 0x849fee8d 0xb26ee287 0
16 0 0 0 alEvtqPostEvent 0
alSndpSetPan 22 0x27bdffd0 0xffffffff 0xdc292396 0x5df6f865 0
16 0 0 0 alEvtqPostEvent 0
alSndpSetPitch 21 0x27bdffd0 0xffffffff 0x3b0821cb 0x5df12e40 0
15 0 0 0 alEvtqPostEvent 0
alSndpSetPriority 12 0x057400 0xffffffff 0x6d9887df 0x3d3bb399 0
alSndpSetSound 5 0x057400 0xffffffff 0xf79e25ea 0x4478b4d9 0
alSndpSetVol 22 0x27bdffd0 0xffffffff 0x575253c6 0xb26ee287 0
16 0 0 0 alEvtqPostEvent 0
alSndpStop 19 0x27bdffd0 0xffffffff 0x215eb998 0x6a2fde72 0
13 0 0 0 alEvtqPostEvent 0
alSynAddPlayer 20 0x27bdffe8 0xffffffff 0x1a050610 0xd0378797 0
5 0 0 0 osSetIntMask 0
14 0 0 0 osSetIntMask 0
alSynAllocFX 38 0x27bdffe0 0xffffffff 0x6340d0a7 0x59faff1a 0
17 0 0 0 alFxNew 0
22 0 0 0 alFxParam 0
28 0 0 0 alMainBusParam 0
alSynAllocVoice 80 0x27bdffd0 0xffffffff 0xad041fa9 0x43262282 0
17 0 0 0 _allocatePVoice 0
29 0 0 0 __allocParam 0
47 0 0 0 __allocParam 0
alSynFreeFX 3 0xafa40000 0xffffffff 0x78013a9c 0x78013a9c 0
alSynFreeVoice 43 0x27bdffe8 0xffffffff 0x2a1efa22 0xfaa80de3 0
11 0 0 0 __allocParam 0
35 0 0 0 _freePVoice 0
alSynGetFXRef 30 0xafa50004 0xffffffff 0x62c81743 0xd3218bf3 0
alSynGetPriority 3 0xafa40000 0xffffffff 0x61ecca0f 0x61ecca0f 0
alSynNew 192 0x27bdff88 0xffffffff 0x7ba5f75d 0x55eb2e72 0
30 0 0 0 alHeapDBAlloc 0
33 0 0 0 alSaveNew 0
42 0 0 0 alHeapDBAlloc 0
52 0 0 0 alHeapDBAlloc 0
56 0 0 0 alAuxBusNew 0
63 0 0 0 alHeapDBAlloc 0
71 0 0 0 alHeapDBAlloc 0
75 0 0 0 alMainBusNew 0
83 0 0 0 alSynAllocFX 0
88 0 0 0 alMainBusParam 0
101 0 0 0 alHeapDBAlloc 0
114 0 0 0 alLink 0
119 0 0 0 alLoadNew 0
123 0 0 0 alLoadParam 0
126 0 0 0 alResampleNew 0
130 0 0 0 alResampleParam 0
133 0 0 0 alEnvmixerNew 0
137 0 0 0 alEnvmixerParam 0
141 0 0 0 alAuxBusParam 0
156 0 0 0 alSaveParam 0
163 0 0 0 alHeapDBAlloc 0
alSynRemovePlayer 39 0x27bdffe0 0xffffffff 0xab7c8d15 0x59434452 0
9 0 0 0 osSetIntMask 0
33 0 0 0 osSetIntMask 0
alSynSetFXMix 37 0x27bdffe8 0xffffffff 0x568277a8 0x3d49fb40 0
7 0 0 0 __allocParam 0
alSynSetFXParam 15 0x27bdffe8 0xffffffff 0x8725ca45 0xac99ef9a 0
alSynSetPan 33 0x27bdffe8 0xffffffff 0xc53ddba4 0x3d49fb40 0
7 0 0 0 __allocParam 0
alSynSetPitch 33 0x27bdffe8 0xffffffff 0xabf63dbe 0x3d49fb40 0
7 0 0 0 __allocParam 0
alSynSetPriority 4 0xafa40000 0xffffffff 0xc8a6a7cc 0xc8a6a7cc 0
alSynSetVol 39 0x27bdffe0 0xffffffff 0xbc534090 0x92d0d977 0
8 0 0 0 __allocParam 0
23 0 0 0 _timeToSamples 0
alSynStartVoice 35 0x27bdffe8 0xffffffff 0xb3ca7046 0x3d49fb40 0
7 0 0 0 __allocParam 0
alSynStartVoiceParams 56 0x27bdffe0 0xffffffff 0xe7bec34f 0x92d0d977 0
9 0 0 0 __allocParam 0
39 0 0 0 _timeToSamples 0
alSynStopVoice 30 0x27bdffe8 0xffffffff 0xa3c03a1f 0x327187eb 0
6 0 0 0 __allocParam 0
alUnlink 12 0x8c820000 0xffffffff 0xcd151b02 0x36d08a7c 0
corrupted 103 0x27bdffc8 0xffffffff 0x3308e91c 0xd47e9fed 0
54 0 0 0 __osPfsRWInode 0
corrupted_init 182 0x27bdfe98 0xffffffff 0x11e191fe 0x44242c97 0
40 0 0 0 __osPfsRWInode 0
coss 12 0x27bdffe8 0xffffffff 0xc61c5cb4 0xf329a83a 0
6 0 0 0 sins 0
gtStateSetOthermode 128 0x14a00004 0xffffffff 0xe99d0679 0x16520008 0
46 0 0 2 NULL 0
48 0 0 1 NULL 0
guAlign 19 0x27bdffa0 0xffffffff 0xe9e0f03 0x1458f385 1
10 0 0 0 guAlignF 0
13 0 0 0 guMtxF2L 0
guAlignF 108 0x27bdffd0 0xffffffff 0xcfe3ea04 0x922a3ad8 0
9 0 0 0 guNormalize 0
15 0 0 0 sinf 0
18 0 0 0 cosf 0
26 0 0 0 sqrtf 0
29 0 0 0 guMtxIdentF 0
guDPLoadTextureTile 302 0x27bdff68 0xffffffff 0x4c7dda11 0xddb2bed7 0
guDPLoadTextureTile_4b 252 0x27bdff70 0xffffffff 0x6e648c 0x5768b768 0
guFrustum 25 0x27bdff98 0xffffffff 0xc701249b 0x53e701c6 1
16 0 0 0 guFrustumF 0
19 0 0 0 guMtxF2L 0
guFrustumF 88 0x27bdffe8 0xffffffff 0x3ac892e7 0x725f261f 0
5 0 0 0 guMtxIdentF 0
guGetDPLoadTextureTileSz 9 0xa41023 0xffffffff 0x9725d043 0x4f0fce02 1
guGetDPLoadTextureTile_4b 9 0xa41023 0xffffffff 0x9725d043 0x4f0fce02 1
guLoadTextureBlockMipMap 1117 0x27bdfe30 0xffffffff 0xf78c3ad6 0x680fa819 0
554 1495 0 0 NULL 1
567 0 0 2 NULL 0
569 0 0 1 NULL 0
600 1117 0 0 NULL 1
655 1117 0 0 NULL 1
684 1117 0 0 NULL 1
716 1117 0 0 NULL 1
752 1117 0 0 NULL 1
787 1117 0 0 NULL 1
831 1117 0 0 NULL 1
858 1117 0 0 NULL 1
880 0 0 2 NULL 0
882 0 20 1 NULL 0
1099 1211 20 0 NULL 1
guLookAt 29 0x27bdff90 0xffffffff 0x9889c13b 0x6326a0c1 0
20 0 0 0 guLookAtF 0
23 0 0 0 guMtxF2L 0
guLookAtF 174 0x27bdffb0 0xffffffff 0x5795f438 0x2249e53d 0
12 0 0 0 guMtxIdentF 0
28 0 0 0 sqrtf 0
61 0 0 0 sqrtf 0
96 0 0 0 sqrtf 0
guLookAtHilite 46 0x27bdff68 0xffffffff 0x3e0b1cfd 0xfe393be8 0
37 0 0 0 guLookAtHiliteF 0
40 0 0 0 guMtxF2L 0
guLookAtHiliteF 462 0x27bdff68 0xffffffff 0x454c89a3 0xf5228f2b 0
13 0 0 0 guMtxIdentF 0
30 0 0 0 sqrtf 0
64 0 0 0 sqrtf 0
99 0 0 0 sqrtf 0
121 0 0 0 sqrtf 0
146 0 0 0 sqrtf 0
148 0 0 2 NULL 0
149 0 0 1 NULL 0
225 0 0 0 sqrtf 0
250 0 0 0 sqrtf 0
252 0 0 2 NULL 0
253 0 8 1 NULL 0
guLookAtReflect 30 0x27bdff88 0xffffffff 0x67ceabf1 0x2b243d0c 0
21 0 0 0 guLookAtReflectF 0
24 0 0 0 guMtxF2L 0
guLookAtReflectF 259 0x27bdffb8 0xffffffff 0x872fdc6c 0x1fb7da0b 0
11 0 0 0 guMtxIdentF 0
27 0 0 0 sqrtf 0
60 0 0 0 sqrtf 0
95 0 0 0 sqrtf 0
guLookAtStereo 31 0x27bdff88 0xffffffff 0x666502c0 0xb4ab7ee3 0
22 0 0 0 guLookAtStereoF 0
25 0 0 0 guMtxF2L 0
guLookAtStereoF 243 0x27bdffb0 0xffffffff 0xe9d9985d 0x2249e53d 0
12 0 0 0 guMtxIdentF 0
27 0 0 0 sqrtf 0
60 0 0 0 sqrtf 0
97 0 0 0 sqrtf 0
130 0 0 0 sqrtf 0
165 0 0 0 sqrtf 0
guMtxCatF 90 0x27bdff98 0xffffffff 0x21fc588 0xa357f733 0
guMtxCatL 22 0x27bdff28 0xffffffff 0xd4510295 0x4177e75f 0
6 0 0 0 guMtxL2F 0
9 0 0 0 guMtxL2F 0
13 0 0 0 guMtxCatF 0
16 0 0 0 guMtxF2L 0
guMtxF2L 64 0x3c014780 0xffffffff 0xfa43fa1d 0xbd861287 0
guMtxIdent 12 0x27bdffa8 0xffffffff 0x85a7c28b 0x2d1a8954 0
3 0 0 0 guMtxIdentF 0
6 0 0 0 guMtxF2L 0
guMtxIdentF 34 0x3c013f80 0xffffffff 0x33a242c6 0x748c766e 0
guMtxL2F 45 0x3c013780 0xffffffff 0x429de58 0xf0b060ac 0
guMtxXFMF 41 0xafa7000c 0xffffffff 0x98125492 0x568cd207 0
guMtxXFML 24 0x27bdff98 0xffffffff 0xc6707e74 0x6857ee0d 0
7 0 0 0 guMtxL2F 0
18 0 0 0 guMtxXFMF 0
guNormalize 33 0x27bdffe8 0xffffffff 0x2211764d 0x1f8bec4f 0
12 0 0 0 sqrtf 0
guOrtho 25 0x27bdff98 0xffffffff 0xc701249b 0x53e701c6 1
16 0 0 0 guOrthoF 0
19 0 0 0 guMtxF2L 0
guOrthoF 85 0x27bdffe8 0xffffffff 0x4b90e514 0x725f261f 0
5 0 0 0 guMtxIdentF 0
guPerspective 22 0x27bdff98 0xffffffff 0x2cb7a201 0x738c6960 0
13 0 0 0 guPerspectiveF 0
16 0 0 0 guMtxF2L 0
guPerspectiveF 140 0x27bdffd0 0xffffffff 0x1061efd3 0x5f912d29 0
6 0 0 0 guMtxIdentF 0
9 0 0 2 NULL 0
10 0 0 1 NULL 0
17 0 0 0 cosf 0
20 0 0 0 sinf 0
guPosLight 313 0x27bdffd8 0xffffffff 0x3fd65ba9 0xb2836328 0
21 0 0 0 sqrtf 0
24 0 0 2 NULL 0
25 0 0 1 NULL 0
guPosLightHilite 718 0x27bdff18 0xffffffff 0x7d4631da 0xbcfb3d1 0
25 0 0 0 sqrtf 0
28 0 0 2 NULL 0
29 0 0 1 NULL 0
323 0 0 0 sqrtf 0
617 0 0 0 sqrtf 0
619 0 0 2 NULL 0
620 0 8 1 NULL 0
708 0 8 0 guLookAtHilite 0
guPosition 25 0x27bdff98 0xffffffff 0xc701249b 0x53e701c6 1
16 0 0 0 guPositionF 0
19 0 0 0 guMtxF2L 0
guPositionF 106 0x3c010000 0xffffffff 0x3cd76a0c 0x66204a70 0
16 0 0 0 sinf 0
19 0 0 0 cosf 0
22 0 0 0 sinf 0
25 0 0 0 cosf 0
28 0 0 0 sinf 0
31 0 0 0 cosf 0
guRandom 11 0x3c040000 0xffffffff 0x54f14613 0x751257f7 0
guRotate 19 0x27bdffa0 0xffffffff 0xe9e0f03 0x1458f385 1
10 0 0 0 guRotateF 0
13 0 0 0 guMtxF2L 0
guRotateF 97 0x27bdffc8 0xffffffff 0x225b75e 0x71e9b09 0
9 0 0 0 guNormalize 0
15 0 0 0 sinf 0
18 0 0 0 cosf 0
38 0 0 0 guMtxIdentF 0
guRotateRPY 17 0x44856000 0xffffffff 0x2946f668 0x864284ca 1
8 0 0 0 guRotateRPYF 0
11 0 0 0 guMtxF2L 0
guRotateRPYF 81 0x3c010000 0xffffffff 0xc054fb17 0x66204a70 0
16 0 0 0 sinf 0
19 0 0 0 cosf 0
22 0 0 0 sinf 0
25 0 0 0 cosf 0
28 0 0 0 sinf 0
31 0 0 0 cosf 0
34 0 0 0 guMtxIdentF 0
guS2D2EmuBgRect1Cyc 654 0x27bdff28 0xffffffff 0x7010a31a 0x874c018e 0
590 86 0 0 NULL 1
guS2D2EmuSetScissor 22 0x047880 0xffffffff 0x2a54d3d4 0x2d1a41a 1
guS2DEmuBgRect1Cyc 654 0x27bdff28 0xffffffff 0xc327444a 0x874c018e 0
590 86 0 0 NULL 1
guS2DEmuSetScissor 22 0x047880 0xffffffff 0x2a54d3d4 0x2d1a41a 1
guS2DInitBg 93 0x908e0016 0xffffffff 0xc773c53e 0x9af39762 0
guScale 17 0x44856000 0xffffffff 0x2946f668 0x864284ca 1
8 0 0 0 guScaleF 0
11 0 0 0 guMtxF2L 0
guScaleF 21 0x27bdffe8 0xffffffff 0x702c46fc 0x725f261f 0
5 0 0 0 guMtxIdentF 0
guSprite2DInit 17 0xafa7000c 0xffffffff 0x8188992c 0xcf226737 0
guTranslate 17 0x44856000 0xffffffff 0x2946f668 0x864284ca 1
8 0 0 0 guTranslateF 0
11 0 0 0 guMtxF2L 0
guTranslateF 18 0x27bdffe8 0xffffffff 0xb9b1614a 0x725f261f 0
5 0 0 0 guMtxIdentF 0
handle_CpU 13 0x3c013000 0xffffffff 0x54916758 0x6ec006d 0
ldiv 33 0xa6001a 0xffffffff 0x7e26414c 0x160bd90b 0
lldiv 64 0x27bdffd0 0xffffffff 0x4a9550af 0xd0282313 0
8 0 0 0 __ll_div 0
15 0 0 0 __ll_mul 0
memcpy 11 0x801025 0xffffffff 0x3512dc6b 0x11e142d4 0
osAfterPreNMI 8 0x27bdffe8 0xffffffff 0x6fc290d4 0x96ba74a4 0
2 0 0 0 __osSpSetPc 0
osAiGetLength 3 0x3c0ea450 0xffffffff 0xb760f13d 0xb760f13d 0
osAiGetStatus 3 0x3c0ea450 0xffffffff 0x72d4d9d2 0x72d4d9d2 0
osAiSetFrequency 81 0x3c050000 0xffff0000 0x155c6e3b 0x6c731bdd 0
0 0 0 2 osViClock 0
1 0 0 1 osViClock 0
osAiSetNextBuffer 36 0x27bdffe8 0xffffffff 0x7854e3be 0x65ef601c 0
3 0 0 0 __osAiDeviceBusy 0
24 0 0 0 osVirtualToPhysical 0
osCartRomInit 85 0x27bdffe0 0xffffffff 0x2bc62972 0x7b05eb48 0
2 0 0 0 __osPiGetAccess 0
6 0 0 2 __CartRomHandle 0
7 0 0 1 __CartRomHandle 0
10 0 0 0 __osPiRelAccess 0
12 0 0 2 __CartRomHandle 0
14 0 0 1 __CartRomHandle 0
17 0 0 2 __CartRomHandle 0
22 0 20 1 __CartRomHandle 0
23 0 20 0 bzero 0
68 0 20 0 __osDisableInt 0
70 0 20 2 __osPiTable 0
71 0 0 1 __osPiTable 0
75 0 0 0 __osRestoreInt 0
77 0 0 0 __osPiRelAccess 0
osContGetQuery 9 0x27bdffe0 0xffffffff 0x5b77af22 0xd53a5c3c 0
3 0 0 0 __osContGetInitData 0
osContGetReadData 35 0x3c050000 0xffff0000 0x6fc56754 0x8afe2a5d 0
0 0 0 2 __osMaxControllers 0
1 0 0 1 __osMaxControllers 0
3 0 0 2 __osContPifRam 0
5 0 0 1 __osContPifRam 0
osContInit 87 0x3c020000 0xffff0000 0xd26516e0 0x63b95946 0
0 0 0 2 __osContinitialized 0
1 0 0 1 __osContinitialized 0
12 0 0 0 osGetTime 0
23 0 0 0 osCreateMesgQueue 0
42 0 0 0 osSetTimer 0
46 0 0 0 osRecvMesg 0
49 0 0 2 __osMaxControllers 0
50 0 0 1 __osMaxControllers 0
51 0 0 0 __osPackRequestData 0
53 0 0 2 __osContPifRam 0
54 0 0 1 __osContPifRam 0
55 0 0 0 __osSiRawStartDma 0
59 0 0 0 osRecvMesg 0
61 0 0 2 __osContPifRam 0
62 0 0 1 __osContPifRam 0
63 0 0 0 __osSiRawStartDma 0
68 0 0 0 osRecvMesg 0
71 0 0 0 __osContGetInitData 0
73 0 0 2 __osContLastCmd 0
74 0 0 0 __osSiCreateAccessQueu 0
75 0 0 1 __osContLastCmd 0
76 0 0 2 __osEepromTimerQ 0
77 0 0 2 __osEepromTimerMsg 0
78 0 0 1 __osEepromTimerMsg 0
79 0 0 1 __osEepromTimerQ 0
80 0 0 0 osCreateMesgQueue 0
osContReset 60 0x27bdffe0 0xffffffff 0xd45196ca 0xfc26ac4 0
3 0 0 0 __osSiGetAccess 0
5 0 0 2 __osContLastCmd 0
6 0 0 1 __osContLastCmd 0
10 0 0 0 __osPackResetData 0
12 0 0 2 __osContPifRam 0
13 0 0 1 __osContPifRam 0
14 0 0 0 __osSiRawStartDma 0
18 0 0 0 osRecvMesg 0
20 0 0 2 __osContPifRam 0
21 0 0 1 __osContPifRam 0
22 0 0 0 __osSiRawStartDma 0
26 0 0 0 osRecvMesg 0
28 0 0 0 __osPackRequestData 0
30 0 0 2 __osContPifRam 0
31 0 0 1 __osContPifRam 0
32 0 0 0 __osSiRawStartDma 0
36 0 0 0 osRecvMesg 0
39 0 0 2 __osContLastCmd 0
40 0 0 1 __osContLastCmd 0
41 0 0 2 __osContPifRam 0
42 0 0 1 __osContPifRam 0
43 0 0 0 __osSiRawStartDma 0
48 0 0 0 osRecvMesg 0
51 0 0 0 __osContGetInitData 0
53 0 0 0 __osSiRelAccess 0
osContSetCh 22 0x27bdffe8 0xffffffff 0xaf717037 0x20b4d5ac 0
2 0 0 0 __osSiGetAccess 0
9 0 0 2 __osMaxControllers 0
11 0 0 1 __osMaxControllers 0
12 0 0 2 __osMaxControllers 0
13 0 0 1 __osMaxControllers 0
14 0 0 2 __osContLastCmd 0
15 0 0 0 __osSiRelAccess 0
16 0 0 1 __osContLastCmd 0
osContStartQuery 31 0x27bdffe0 0xffffffff 0x1bff2c33 0x66389aad 0
2 0 0 0 __osSiGetAccess 0
4 0 0 2 __osContLastCmd 0
5 0 0 1 __osContLastCmd 0
8 0 0 0 __osPackRequestData 0
10 0 0 2 __osContPifRam 0
11 0 0 1 __osContPifRam 0
12 0 0 0 __osSiRawStartDma 0
16 0 0 0 osRecvMesg 0
18 0 0 2 __osContPifRam 0
19 0 0 1 __osContPifRam 0
20 0 0 0 __osSiRawStartDma 0
22 0 0 2 __osContLastCmd 0
24 0 0 0 __osSiRelAccess 0
25 0 0 1 __osContLastCmd 0
osContStartReadData 33 0x27bdffe0 0xffffffff 0x5747c888 0x66389aad 0
2 0 0 0 __osSiGetAccess 0
4 0 0 2 __osContLastCmd 0
5 0 0 1 __osContLastCmd 0
9 68 0 0 NULL 1
11 0 0 2 __osContPifRam 0
12 0 0 1 __osContPifRam 0
13 0 0 0 __osSiRawStartDma 0
17 0 0 0 osRecvMesg 0
19 0 0 2 __osContPifRam 0
20 0 0 1 __osContPifRam 0
21 0 0 0 __osSiRawStartDma 0
24 0 0 2 __osContLastCmd 0
26 0 0 0 __osSiRelAccess 0
27 0 0 1 __osContLastCmd 0
osCreateMesgQueue 11 0x3c0e0000 0xffff0000 0xd9fcd9ad 0x33ccc69e 0
0 0 0 2 __osThreadTail 0
1 0 0 2 __osThreadTail 0
2 0 0 1 __osThreadTail 0
3 0 0 1 __osThreadTail 0
osCreatePiManager 92 0x27bdffd0 0xffffffff 0x48246c86 0x670ccca3 0
2 0 0 2 __osPiDevMgr 0
3 0 0 1 __osPiDevMgr 0
12 0 0 0 osCreateMesgQueue 0
18 0 0 0 osCreateMesgQueue 0
20 0 0 2 __osPiAccessQueueEnabl 0
21 0 0 1 __osPiAccessQueueEnabl 0
24 0 0 0 __osPiCreateAccessQueu 0
30 0 0 0 osSetEventMesg 0
34 0 0 0 osGetThreadPri 0
41 0 0 0 osSetThreadPri 0
43 0 0 0 __osDisableInt 0
49 0 0 2 __osPiAccessQueue 0
50 0 0 2 __osPiRawStartDma 0
51 0 0 2 __osEPiRawStartDma 0
56 0 0 1 __osPiAccessQueue 0
57 0 0 1 __osPiRawStartDma 0
58 0 0 1 __osEPiRawStartDma 0
60 0 0 2 __osDevMgrMain 0
68 0 0 1 __osDevMgrMain 0
73 0 0 0 osCreateThread 0
76 0 0 0 osStartThread 0
78 0 0 0 __osRestoreInt 0
85 0 0 0 osSetThreadPri 0
osCreateRegion 66 0x14e00002 0xffffffff 0x7960e625 0xad16900c 0
osCreateScheduler 75 0x27bdffd8 0xffffffff 0x57228e94 0xcdd8f353 0
23 0 0 0 osCreateMesgQueue 0
27 0 0 0 osCreateMesgQueue 0
29 0 0 0 osCreateViManager 0
32 0 0 2 osViModeTable 0
33 0 0 1 osViModeTable 0
37 0 0 0 osViSetMode 0
39 0 0 0 osViBlack 0
43 0 0 0 osSetEventMesg 0
47 0 0 0 osSetEventMesg 0
51 0 0 0 osSetEventMesg 0
55 0 0 0 osViSetEvent 0
60 0 0 2 NULL 1
61 0 524 1 NULL 1
66 0 524 0 osCreateThread 0
68 0 524 0 osStartThread 0
osCreateThread 81 0x27bdffd8 0xffffffff 0x40a11ef6 0x71862463 0
28 0 0 2 __osCleanupThread 0
37 0 0 1 __osCleanupThread 0
64 0 0 0 __osDisableInt 0
66 0 0 2 __osActiveQueue 0
67 0 0 1 __osActiveQueue 0
70 0 0 2 __osActiveQueue 0
74 0 0 0 __osRestoreInt 0
75 0 0 1 __osActiveQueue 0
osCreateViManager 96 0x27bdffd0 0xffffffff 0x820a489f 0x670ccca3 0
2 0 0 2 __osViDevMgr 0
3 0 0 1 __osViDevMgr 0
9 0 0 0 __osTimerServicesInit 0
11 0 0 2 __additional_scanline 0
14 0 0 1 __additional_scanline 0
17 0 0 0 osCreateMesgQueue 0
33 0 0 0 osSetEventMesg 0
39 0 0 0 osSetEventMesg 0
43 0 0 0 osGetThreadPri 0
50 0 0 0 osSetThreadPri 0
52 0 0 0 __osDisableInt 0
62 0 0 2 NULL 1
71 0 384 1 NULL 1
75 0 384 0 osCreateThread 0
77 0 384 0 __osViInit 0
80 0 384 0 osStartThread 0
82 0 384 0 __osRestoreInt 0
89 0 384 0 osSetThreadPri 0
osDestroyThread 65 0x27bdffc8 0xffffffff 0x45c97cae 0xe987033a 0
5 0 0 0 __osDisableInt 0
11 0 0 2 __osRunningThread 0
12 0 0 1 __osRunningThread 0
21 0 0 0 __osDequeueThread 0
23 0 0 2 __osActiveQueue 0
24 0 0 1 __osActiveQueue 0
29 0 0 2 __osActiveQueue 0
31 0 0 1 __osActiveQueue 0
32 0 0 2 __osActiveQueue 0
33 0 0 1 __osActiveQueue 0
50 0 0 2 __osRunningThread 0
51 0 0 1 __osRunningThread 0
55 0 0 0 __osDispatchThread 0
57 0 0 0 __osRestoreInt 0
osDpGetCounters 14 0x3c0ea410 0xffffffff 0x49c53939 0x2f99c79a 0
osDpGetStatus 3 0x3c0ea410 0xffffffff 0x42b76e22 0x42b76e22 0
osDpSetNextBuffer 32 0x27bdffe8 0xffffffff 0xa707825d 0x3d49fb40 0
4 0 0 0 __osDpDeviceBusy 0
17 0 0 0 osVirtualToPhysical 0
21 0 0 0 osVirtualToPhysical 0
osDpSetStatus 3 0x3c0ea410 0xffffffff 0x2f83e96c 0x2f83e96c 0
osEPiGetDeviceType 6 0x908e0004 0xffffffff 0xea9abf3a 0xb994d61 0
osEPiLinkHandle 17 0x27bdffe8 0xffffffff 0x56407b8d 0x20b4d5ac 0
2 0 0 0 __osDisableInt 0
4 0 0 2 __osPiTable 0
5 0 0 1 __osPiTable 0
10 0 0 0 __osRestoreInt 0
osEPiReadIo 17 0x27bdffe0 0xffffffff 0xf1abbb3e 0xbc3de853 1
4 0 0 0 __osPiGetAccess 0
8 0 0 0 __osEPiRawReadIo 0
10 0 0 0 __osPiRelAccess 0
osEPiStartDma 39 0x3c0e0000 0xffff0000 0x63538860 0xa676d896 0
0 0 0 2 __osPiDevMgr 0
1 0 0 1 __osPiDevMgr 0
19 0 0 0 osPiGetCmdQueue 0
23 0 0 0 osJamMesg 0
27 0 0 0 osPiGetCmdQueue 0
31 0 0 0 osSendMesg 0
osEPiWriteIo 17 0x27bdffe0 0xffffffff 0xf1abbb3e 0xbc3de853 1
4 0 0 0 __osPiGetAccess 0
8 0 0 0 __osEPiRawWriteIo 0
10 0 0 0 __osPiRelAccess 0
osEepromLongRead 35 0x27bdffd8 0xffffffff 0x70c9bc14 0xa09be8f2 0
15 0 0 0 osEepromRead 0
osEepromLongWrite 65 0x27bdffb8 0xffffffff 0x281b5bad 0x8ee0b572 0
17 0 0 2 __osEepromTimerMsg 0
18 0 0 2 __osEepromTimer 0
19 0 0 2 __osEepromTimerQ 0
20 0 0 1 __osEepromTimerQ 0
21 0 0 1 __osEepromTimer 0
22 0 0 1 __osEepromTimerMsg 0
25 0 0 0 osEepromWrite 0
45 0 0 0 osSetTimer 0
49 0 0 0 osRecvMesg 0
osEepromProbe 28 0x27bdffd0 0xffffffff 0x38ee1a1b 0xc73988d1 0
2 0 0 0 __osSiGetAccess 0
5 0 0 0 __osEepStatus 0
21 0 0 0 __osSiRelAccess 0
osEepromRead 113 0x27bdffb0 0xffffffff 0x66ee9eea 0xb1b8919 0
5 0 0 2 __osEepPifRam 0
9 0 0 0 __osSiGetAccess 0
10 0 0 1 __osEepPifRam 0
12 0 0 0 __osEepStatus 0
38 0 0 0 __osSiRelAccess 0
45 0 0 0 __osEepStatus 0
51 113 0 0 NULL 1
53 0 0 2 __osEepPifRam 0
54 0 0 1 __osEepPifRam 0
55 0 0 0 __osSiRawStartDma 0
59 0 0 0 osRecvMesg 0
61 0 0 2 __osEepPifRam 0
62 0 0 1 __osEepPifRam 0
63 0 0 0 __osSiRawStartDma 0
66 0 0 2 __osContLastCmd 0
67 0 0 1 __osContLastCmd 0
70 0 0 0 osRecvMesg 0
104 0 0 0 __osSiRelAccess 0
osEepromWrite 94 0x27bdffb8 0xffffffff 0xb184336b 0xfd4851a5 0
6 0 0 0 __osSiGetAccess 0
10 0 0 0 __osEepStatus 0
36 0 0 0 __osSiRelAccess 0
43 0 0 0 __osEepStatus 0
50 94 0 0 NULL 1
52 0 0 2 __osEepPifRam 0
53 0 0 1 __osEepPifRam 0
54 0 0 0 __osSiRawStartDma 0
58 0 0 0 osRecvMesg 0
60 0 0 2 __osEepPifRam 0
61 0 0 1 __osEepPifRam 0
62 0 0 0 __osSiRawStartDma 0
65 0 0 2 __osContLastCmd 0
66 0 0 1 __osContLastCmd 0
69 0 0 0 osRecvMesg 0
71 0 0 2 __osEepPifRam 0
72 0 4 1 __osEepPifRam 0
86 0 4 0 __osSiRelAccess 0
osFree 21 0x8c830000 0xffffffff 0x7145b43d 0x9088703f 0
osGbpakCheckConnector 290 0x27bdfdf0 0xffffffff 0xc73607fe 0x98f8475d 0
16 0 0 0 osGbpakGetStatus 0
22 0 0 0 osGbpakGetStatus 0
37 0 0 0 osGbpakPower 0
44 0 0 0 bzero 0
68 0 0 0 osGbpakReadWrite 0
97 0 0 0 osGbpakReadWrite 0
106 0 0 0 bcmp 0
139 0 0 0 osGbpakReadWrite 0
157 0 0 0 osGbpakReadWrite 0
167 0 0 0 bcmp 0
189 0 0 0 bzero 0
229 0 0 0 osGbpakReadWrite 0
246 0 0 0 osGbpakReadWrite 0
253 0 0 0 bcmp 0
271 0 0 0 osGbpakGetStatus 0
osGbpakGetStatus 95 0x27bdffb0 0xffffffff 0xa71a9a90 0xb0c5939c 0
9 0 0 0 __osContRamRead 0
20 0 0 0 osGbpakInit 0
28 0 0 0 __osContRamRead 0
33 0 0 0 __osPfsGetStatus 0
osGbpakInit 140 0x27bdffa8 0xffffffff 0x41e55c4d 0x48a77559 0
17 0 0 0 __osContRamWrite 0
26 0 0 0 __osContRamWrite 0
35 0 0 0 __osContRamRead 0
62 0 0 0 __osContRamWrite 0
74 0 0 0 __osContRamRead 0
89 0 0 0 __osPfsGetStatus 0
92 0 0 2 __osGbpakTimerQ 0
95 0 0 2 __osGbpakTimerMsg 0
96 0 0 1 __osGbpakTimerMsg 0
97 0 0 1 __osGbpakTimerQ 0
98 0 0 0 osCreateMesgQueue 0
100 0 0 2 __osGbpakTimerQ 0
101 0 0 2 __osGbpakTimerMsg 0
102 0 0 1 __osGbpakTimerMsg 0
103 0 0 1 __osGbpakTimerQ 0
104 0 0 2 __osGbpakTimer 0
111 0 0 1 __osGbpakTimer 0
114 0 0 0 osSetTimer 0
116 0 0 2 __osGbpakTimerQ 0
117 0 0 1 __osGbpakTimerQ 0
119 0 0 0 osRecvMesg 0
osGbpakPower 68 0x27bdffa0 0xffffffff 0x1bd7cc26 0xe3332d31 0
18 0 0 0 __osContRamWrite 0
25 0 0 0 osGbpakInit 0
33 0 0 0 __osContRamWrite 0
40 0 0 2 __osGbpakTimer 0
41 0 0 2 __osGbpakTimerQ 0
42 0 0 2 __osGbpakTimerMsg 0
43 0 0 1 __osGbpakTimerQ 0
44 0 0 1 __osGbpakTimerMsg 0
53 0 0 1 __osGbpakTimer 0
55 0 0 0 osSetTimer 0
59 0 0 0 osRecvMesg 0
osGbpakReadId 116 0x27bdff70 0xffffffff 0xf53019e3 0x1200aeb3 0
5 0 0 0 osGbpakGetStatus 0
11 0 0 0 osGbpakGetStatus 0
26 0 0 0 osGbpakPower 0
37 0 0 0 osGbpakReadWrite 0
43 0 0 0 osGbpakGetStatus 0
62 0 0 0 bcmp 0
95 0 0 0 bcopy 0
osGbpakReadWrite 112 0x27bdffc0 0xffffffff 0x5d44b772 0xa6bdb1f6 0
18 0 0 0 __osGbpakSetBank 0
42 0 0 0 __osContRamWrite 0
58 0 0 0 __osGbpakSetBank 0
74 0 0 0 __osContRamRead 0
90 0 0 0 __osGbpakSetBank 0
osGetCount 3 0x40024800 0xffffffff 0x4f389718 0x4f389718 0
osGetIntMask 24 0x40026000 0xffffffff 0xb9d16b8f 0xccd91a9f 0
2 0 0 2 __OSGlobalIntMask 0
3 0 0 1 __OSGlobalIntMask 0
12 0 0 2 __OSGlobalIntMask 0
13 0 0 1 __OSGlobalIntMask 0
osGetMemSize 69 0x27bdfff0 0xffffffff 0xd617799 0x5726ab03 0
osGetThreadId 6 0x14800003 0xffffffff 0xb60e3a92 0x761f59dc 0
2 0 0 2 __osRunningThread 0
3 0 0 1 __osRunningThread 0
osGetThreadPri 6 0x14800003 0xffffffff 0xe6176d0d 0x761f59dc 0
2 0 0 2 __osRunningThread 0
3 0 0 1 __osRunningThread 0
osGetTime 33 0x27bdffc8 0xffffffff 0x5c27ab62 0x1f290f7a 0
2 0 0 0 __osDisableInt 0
4 0 0 0 osGetCount 0
7 0 0 2 __osBaseCounter 0
8 0 0 1 __osBaseCounter 0
10 0 0 2 __osCurrentTime 0
11 0 0 2 __osCurrentTime 0
12 0 4 1 __osCurrentTime 0
13 0 0 1 __osCurrentTime 0
18 0 0 0 __osRestoreInt 0
osInitialize 170 0x27bdffc8 0xffffffff 0x5c2e4de8 0x194d2826 0
3 0 0 2 __osFinalrom 0
6 0 0 0 __osGetSR 0
7 0 0 1 __osFinalrom 0
10 0 0 0 __osSetSR 0
13 0 0 0 __osSetFpcCsr 0
17 0 0 0 __osSiRawReadIo 0
23 0 0 0 __osSiRawReadIo 0
31 0 0 0 __osSiRawWriteIo 0
39 0 0 0 __osSiRawWriteIo 0
43 0 0 2 __osExceptionPreamble 0
44 0 0 1 __osExceptionPreamble 0
47 0 0 2 __osExceptionPreamble 0
50 0 0 1 __osExceptionPreamble 0
55 0 0 2 __osExceptionPreamble 0
58 0 0 1 __osExceptionPreamble 0
63 0 0 2 __osExceptionPreamble 0
66 0 0 1 __osExceptionPreamble 0
91 0 0 0 osWritebackDCache 0
94 0 0 0 osInvalICache 0
96 170 0 0 NULL 1
98 0 0 0 osUnmapTLBAll 0
100 0 0 0 osMapTLBRdb 0
102 0 0 2 osClockRate 0
103 0 0 2 osClockRate 0
104 0 4 1 osClockRate 0
105 0 0 1 osClockRate 0
107 0 0 0 __ll_mul 0
114 0 0 0 __ull_div 0
116 0 0 2 osResetType 0
117 0 0 1 osResetType 0
118 0 0 2 osClockRate 0
119 0 0 1 osClockRate 0
121 0 4 1 osClockRate 0
122 0 4 2 osAppNMIBuffer 0
123 0 0 1 osAppNMIBuffer 0
124 0 0 0 bzero 0
126 0 0 2 osTvType 0
127 0 0 1 osTvType 0
132 0 0 2 osViClock 0
134 0 0 1 osViClock 0
135 0 0 2 osTvType 0
136 0 0 1 osTvType 0
142 0 0 2 osViClock 0
144 0 0 1 osViClock 0
147 0 0 2 osViClock 0
148 0 0 1 osViClock 0
149 0 0 0 __osGetCause 0
osInvalDCache 43 0x18a0001f 0xffffffff 0x6b4a048a 0x818dac42 0
osInvalICache 29 0x18a00011 0xffffffff 0xc660b068 0x2ab9160c 0
osJamMesg 84 0x27bdffd8 0xffffffff 0xa4141f96 0x2e6b775b 0
6 0 0 0 __osDisableInt 0
19 0 0 2 __osRunningThread 0
20 0 0 1 __osRunningThread 0
24 0 0 0 __osEnqueueAndYield 0
28 0 0 0 __osRestoreInt 0
71 0 0 0 __osPopThread 0
74 0 0 0 osStartThread 0
76 0 0 0 __osRestoreInt 0
osMalloc 15 0x94830010 0xffffffff 0xdc3c4fa 0xdd7441b8 0
osMapTLB 45 0x40085000 0xffffffff 0x694fd4c3 0xeaef7986 0
osMapTLBRdb 22 0x40085000 0xffffffff 0xe7e58c9c 0xab3f79c8 0
osMotorInit 87 0x27bdffb8 0xffffffff 0x1be7bcfc 0xa7ffb839 0
13 0 0 0 __osPfsSelectBank 0
19 0 0 0 __osPfsSelectBank 0
28 0 0 0 __osContRamRead 0
43 0 0 0 __osPfsSelectBank 0
55 0 0 0 __osContRamRead 0
77 90 0 0 NULL 1
osPfsAllocateFile 205 0x27bdfd68 0xffffffff 0x7ffc7c1 0x22f8777c 0
37 0 0 0 osPfsFindFile 0
53 0 0 0 osPfsFreeBlocks 0
70 0 0 0 osPfsFindFile 0
93 0 0 0 __osPfsRWInode 0
106 0 0 0 __osPfsDeclearPage 0
126 0 0 0 __osPfsRWInode 0
138 0 0 0 bcopy 0
150 0 0 0 __osPfsRWInode 0
177 0 0 0 bcopy 0
181 0 0 0 bcopy 0
192 0 0 0 __osContRamWrite 0
osPfsChecker 334 0x27bdfb38 0xffffffff 0x680253d6 0x4607719d 0
13 0 0 0 __osCheckId 0
18 0 0 0 __osGetId 0
25 0 0 0 corrupted_init 0
42 0 0 0 __osContRamRead 0
88 0 0 0 __osPfsRWInode 0
102 0 0 0 corrupted 0
132 0 0 0 bzero 0
138 0 0 0 __osPfsSelectBank 0
151 0 0 0 __osContRamWrite 0
173 0 0 0 __osContRamRead 0
208 0 0 0 __osPfsRWInode 0
298 0 0 0 __osPfsRWInode 0
osPfsDeleteFile 118 0x27bdfe90 0xffffffff 0x39215210 0x4bb94550 0
20 0 0 0 osPfsFindFile 0
30 0 0 0 __osPfsSelectBank 0
43 0 0 0 __osContRamRead 0
59 0 0 0 __osPfsRWInode 0
68 0 0 0 __osPfsReleasePages 0
76 0 0 0 __osPfsRWInode 0
97 0 0 0 bzero 0
107 0 0 0 __osContRamWrite 0
osPfsFileState 119 0x27bdfea0 0xffffffff 0xb9e4d690 0xf5362942 0
24 0 0 0 __osCheckId 0
34 0 0 0 __osPfsSelectBank 0
46 0 0 0 __osContRamRead 0
74 0 0 0 __osPfsRWInode 0
101 0 0 0 bcopy 0
106 0 0 0 bcopy 0
109 0 0 0 __osPfsGetStatus 0
osPfsFindFile 113 0x27bdff88 0xffffffff 0xa3f34e38 0xcdac7bb2 0
21 0 0 0 __osCheckId 0
40 0 0 0 __osContRamRead 0
47 0 0 0 __osPfsGetStatus 0
osPfsFreeBlocks 102 0x27bdfeb0 0xffffffff 0xfd37568f 0x970c52be 0
17 0 0 0 __osCheckId 0
32 0 0 0 __osPfsRWInode 0
osPfsGetLabel 34 0x27bdffe8 0xffffffff 0x2cfa9682 0x85273612 0
8 0 0 0 __osCheckId 0
osPfsInit 39 0x27bdffd8 0xffffffff 0x54192d73 0x94c27a9d 0
5 0 0 0 __osSiGetAccess 0
8 0 0 0 __osPfsGetStatus 0
10 0 0 0 __osSiRelAccess 0
23 0 0 0 __osGetId 0
29 0 0 0 osPfsChecker 0
osPfsInitPak 130 0x27bdff90 0xffffffff 0xa2eb340a 0xc9af1328 0
5 0 0 0 __osSiGetAccess 0
8 0 0 0 __osPfsGetStatus 0
10 0 0 0 __osSiRelAccess 0
22 130 0 0 NULL 1
28 0 0 0 __osPfsSelectBank 0
36 0 0 0 __osContRamRead 0
43 0 0 0 __osIdCheckSum 0
54 0 0 0 __osCheckPackId 0
68 0 0 0 __osRepairPackId 0
90 0 0 0 bcopy 0
114 0 0 0 __osContRamRead 0
120 0 0 0 osPfsChecker 0
osPfsIsPlug 99 0x27bdff90 0xffffffff 0x84b9268b 0x68a221fc 0
14 0 0 0 __osSiGetAccess 0
16 0 0 2 __osMaxControllers 0
17 0 0 2 __osPfsPifRam 0
18 0 0 1 __osPfsPifRam 0
19 0 0 1 __osMaxControllers 0
24 0 0 0 __osPfsRequestData 0
27 0 0 0 __osSiRawStartDma 0
31 0 0 0 osRecvMesg 0
34 0 0 0 __osSiRawStartDma 0
39 0 0 0 osRecvMesg 0
42 0 0 0 __osPfsGetInitData 0
82 0 0 0 __osSiRelAccess 0
osPfsNumFiles 74 0x27bdffa8 0xffffffff 0x649e9f42 0xdbb6d119 0
16 0 0 0 __osCheckId 0
26 0 0 0 __osPfsSelectBank 0
43 0 0 0 __osContRamRead 0
65 0 0 0 __osPfsGetStatus 0
osPfsReFormat 206 0x27bdfe80 0xffffffff 0x3bdfe81e 0xd58a19d4 0
13 0 0 0 __osSiGetAccess 0
16 0 0 0 __osPfsGetStatus 0
20 0 0 0 __osSiRelAccess 0
28 0 0 0 __osSiRelAccess 0
30 0 0 0 __osGetId 0
40 0 0 0 __osPfsSelectBank 0
64 0 0 0 __osContRamWrite 0
105 0 0 0 __osSumcalc 0
118 0 0 0 __osContRamWrite 0
130 0 0 0 __osContRamWrite 0
151 0 0 0 __osSumcalc 0
164 0 0 0 __osContRamWrite 0
177 0 0 0 __osContRamWrite 0
osPfsReadWriteFile 222 0x27bdfe90 0xffffffff 0x7cf603cf 0x306d58 0
36 0 0 0 __osCheckId 0
47 0 0 0 __osPfsSelectBank 0
60 0 0 0 __osContRamRead 0
115 0 0 0 NULL 1
137 0 0 0 NULL 1
148 0 0 0 __osPfsSelectBank 0
164 0 0 0 __osContRamRead 0
170 0 0 0 __osContRamWrite 0
192 0 0 0 __osPfsSelectBank 0
206 0 0 0 __osContRamWrite 0
213 0 0 0 __osPfsGetStatus 0
osPfsRepairId 22 0x27bdffe8 0xffffffff 0xeab72aab 0x8cb7ef52 0
7 0 0 0 __osGetId 0
osPfsSetLabel 49 0x27bdffd8 0xffffffff 0x76f0ef44 0x491ff004 0
11 0 0 0 __osCheckId 0
32 0 0 0 __osPfsSelectBank 0
40 0 0 0 __osContRamWrite 0
osPhysicalToVirtual 3 0x3c018000 0xffffffff 0xa08499 0xa08499 0
osPiGetCmdQueue 10 0x3c030000 0xffff0000 0x63c9fa2 0xf1a5805d 0
0 0 0 2 __osPiDevMgr 0
1 0 0 1 __osPiDevMgr 0
osPiGetDeviceType 3 0x3c020000 0xffff0000 0x1365bdff 0x1365bdff 1
0 0 0 2 osRomType 0
2 0 0 1 osRomType 0
osPiGetStatus 3 0x3c0ea460 0xffffffff 0x7c3207f1 0x7c3207f1 0
osPiReadIo 15 0x27bdffe0 0xffffffff 0x48c0e071 0xfc26ac4 1
3 0 0 0 __osPiGetAccess 0
6 0 0 0 __osPiRawReadIo 0
8 0 0 0 __osPiRelAccess 0
osPiStartDma 47 0x3c0e0000 0xffff0000 0x2e7ebb5a 0xb8dd6054 0
0 0 0 2 __osPiDevMgr 0
1 0 0 1 __osPiDevMgr 0
26 0 0 0 osPiGetCmdQueue 0
30 0 0 0 osJamMesg 0
34 0 0 0 osPiGetCmdQueue 0
38 0 0 0 osSendMesg 0
osPiWriteIo 15 0x27bdffe0 0xffffffff 0x48c0e071 0xfc26ac4 1
3 0 0 0 __osPiGetAccess 0
6 0 0 0 __osPiRawWriteIo 0
8 0 0 0 __osPiRelAccess 0
osRecvMesg 78 0x27bdffd8 0xffffffff 0xcfe7b388 0x2e6b775b 0
6 0 0 0 __osDisableInt 0
16 0 0 0 __osRestoreInt 0
20 0 0 2 __osRunningThread 0
21 0 0 1 __osRunningThread 0
24 0 0 0 __osEnqueueAndYield 0
65 0 0 0 __osPopThread 0
68 0 0 0 osStartThread 0
70 0 0 0 __osRestoreInt 0
osScAddClient 20 0x27bdffe8 0xffffffff 0x1e1bda08 0x3d49fb40 0
5 0 0 0 osSetIntMask 0
14 0 0 0 osSetIntMask 0
osScRemoveClient 34 0x27bdffe0 0xffffffff 0x9093362b 0xca760101 0
7 0 0 0 osSetIntMask 0
28 0 0 0 osSetIntMask 0
osSendMesg 83 0x27bdffc8 0xffffffff 0xfa876a2b 0xf6cb6f8b 0
7 0 0 0 __osDisableInt 0
20 0 0 2 __osRunningThread 0
21 0 0 1 __osRunningThread 0
25 0 0 0 __osEnqueueAndYield 0
29 0 0 0 __osRestoreInt 0
69 0 0 0 __osPopThread 0
72 0 0 0 osStartThread 0
74 0 0 0 __osRestoreInt 0
osSetEventMesg 45 0x27bdffd8 0xffffffff 0x9f01820 0x2e6b775b 0
5 0 0 0 __osDisableInt 0
8 0 0 2 __osEventStateTab 0
10 0 0 1 __osEventStateTab 0
23 0 0 2 __osShutdown 0
24 0 0 1 __osShutdown 0
27 0 0 2 __osPreNMI 0
28 0 0 1 __osPreNMI 0
33 0 0 0 osSendMesg 0
36 0 0 2 __osPreNMI 0
37 0 0 1 __osPreNMI 0
38 0 0 0 __osRestoreInt 0
osSetIntMask 40 0x400c6000 0xffffffff 0xac1edb28 0x688655fd 0
2 0 0 2 __OSGlobalIntMask 0
3 0 0 1 __OSGlobalIntMask 0
23 0 0 2 __osRcpImTable 0
25 0 0 1 __osRcpImTable 0
osSetTLBASID 3 0x40845000 0xffffffff 0xb016cbd0 0xb016cbd0 0
osSetThreadPri 56 0x27bdffd8 0xffffffff 0x33cf992c 0x2e6b775b 0
4 0 0 0 __osDisableInt 0
10 0 0 2 __osRunningThread 0
11 0 0 1 __osRunningThread 0
19 0 0 2 __osRunningThread 0
20 0 0 1 __osRunningThread 0
29 0 0 0 __osDequeueThread 0
33 0 0 0 __osEnqueueThread 0
35 0 0 2 __osRunningThread 0
36 0 0 2 __osRunQueue 0
37 0 0 1 __osRunQueue 0
38 0 0 1 __osRunningThread 0
45 0 0 2 __osRunQueue 0
47 0 0 0 __osEnqueueAndYield 0
48 0 0 1 __osRunQueue 0
49 0 0 0 __osRestoreInt 0
osSetTime 9 0xafa40000 0xffffffff 0xacd31b7b 0x8881d679 0
3 0 0 2 __osCurrentTime 0
5 0 0 1 __osCurrentTime 0
6 0 0 2 __osCurrentTime 0
8 0 4 1 __osCurrentTime 0
osSetTimer 53 0x27bdffe0 0xffffffff 0xa4f22d03 0x5400912f 0
35 0 0 0 __osInsertTimer 0
37 0 0 2 __osTimerList 0
38 0 0 1 __osTimerList 0
46 0 0 0 __osSetTimerIntr 0
osSpTaskLoad 90 0x27bdffd8 0xffffffff 0x52801fbc 0x44cc0b8a 0
6 0 0 0 NULL 1
32 0 0 0 osWritebackDCache 0
34 0 0 0 __osSpSetStatus 0
38 0 0 0 __osSpSetPc 0
43 0 0 0 __osSpSetPc 0
52 0 0 0 __osSpRawStartDma 0
58 0 0 0 __osSpRawStartDma 0
62 0 0 0 __osSpDeviceBusy 0
66 0 0 0 __osSpDeviceBusy 0
73 0 0 0 __osSpRawStartDma 0
79 0 0 0 __osSpRawStartDma 0
osSpTaskStartGo 16 0x27bdffe8 0xffffffff 0xba6fc3e9 0x20b4d5ac 0
2 0 0 0 __osSpDeviceBusy 0
6 0 0 0 __osSpDeviceBusy 0
10 0 0 0 __osSpSetStatus 0
osSpTaskYield 8 0x27bdffe8 0xffffffff 0xc75ba905 0x667de441 0
2 0 0 0 __osSpSetStatus 0
osSpTaskYielded 24 0x27bdffe8 0xffffffff 0x5f4aa26 0x20b4d5ac 0
2 0 0 0 __osSpGetStatus 0
osStartThread 84 0x27bdffd8 0xffffffff 0x67467a00 0x7f8ccff8 0
4 0 0 0 __osDisableInt 0
16 0 0 2 __osRunQueue 0
19 0 0 0 __osEnqueueThread 0
20 0 0 1 __osRunQueue 0
27 0 0 2 __osRunQueue 0
28 0 0 1 __osRunQueue 0
33 0 0 2 __osRunQueue 0
36 0 0 0 __osEnqueueThread 0
37 0 0 1 __osRunQueue 0
45 0 0 0 __osEnqueueThread 0
48 0 0 0 __osPopThread 0
51 0 0 2 __osRunQueue 0
52 0 0 1 __osRunQueue 0
53 0 0 0 __osEnqueueThread 0
55 0 0 2 __osRunningThread 0
56 0 0 1 __osRunningThread 0
59 0 0 0 __osDispatchThread 0
63 0 0 2 __osRunningThread 0
64 0 0 2 __osRunQueue 0
65 0 0 1 __osRunQueue 0
66 0 0 1 __osRunningThread 0
73 0 0 2 __osRunQueue 0
75 0 0 0 __osEnqueueAndYield 0
76 0 0 1 __osRunQueue 0
77 0 0 0 __osRestoreInt 0
osStopThread 48 0x27bdffc8 0xffffffff 0x4582c179 0xe987033a 0
5 0 0 0 __osDisableInt 0
25 0 0 2 __osRunningThread 0
26 0 0 1 __osRunningThread 0
29 0 0 0 __osEnqueueAndYield 0
38 0 0 0 __osDequeueThread 0
40 0 0 0 __osRestoreInt 0
osStopTimer 58 0x27bdffd0 0xffffffff 0x4ddcd1af 0x100f20f4 0
10 0 0 0 __osDisableInt 0
13 0 0 2 __osTimerList 0
14 0 0 1 __osTimerList 0
32 0 0 2 __osTimerList 0
44 0 0 1 __osTimerList 0
48 0 0 0 __osSetCompare 0
50 0 0 0 __osRestoreInt 0
osSyncPrintf 7 0x27bdfff8 0xffffffff 0xd64459ab 0xceb40b69 1
osUnmapTLB 15 0x40085000 0xffffffff 0xc8f42ea1 0xe6632819 0
osUnmapTLBAll 17 0x40085000 0xffffffff 0x6f10c364 0xbc87658f 0
osViBlack 25 0x27bdffe8 0xffffffff 0x9b6f98f5 0x20b4d5ac 0
2 0 0 0 __osDisableInt 0
6 0 0 2 __osViNext 0
9 0 0 2 __osViNext 0
10 0 0 1 __osViNext 0
15 0 0 1 __osViNext 0
19 0 0 0 __osRestoreInt 0
osViExtendVStart 3 0x3c010000 0xffff0000 0xf09bea15 0xf09bea15 0
0 0 0 2 __additional_scanline 0
2 0 0 1 __additional_scanline 0
osViFade 31 0x27bdffe8 0xffffffff 0xe5dfbd76 0x2af9bd43 0
3 0 0 0 __osDisableInt 0
6 0 0 2 __osViNext 0
9 0 0 1 __osViNext 0
10 0 0 2 __osViNext 0
12 0 0 1 __osViNext 0
25 0 0 0 __osRestoreInt 0
osViGetCurrentField 5 0x3c0ea440 0xffffffff 0x2457b5a 0xaead49dd 0
osViGetCurrentFramebuffer 15 0x27bdffe0 0xffffffff 0x223dcb73 0x4a08f207 1
2 0 0 0 __osDisableInt 0
4 0 0 2 __osViCurr 0
5 0 0 1 __osViCurr 0
8 0 0 0 __osRestoreInt 0
osViGetCurrentLine 3 0x3c0ea440 0xffffffff 0x6403dc09 0x6403dc09 0
osViGetCurrentMode 16 0x27bdffe0 0xffffffff 0x9e65a84a 0x4a08f207 0
2 0 0 0 __osDisableInt 0
4 0 0 2 __osViCurr 0
5 0 0 1 __osViCurr 0
9 0 0 0 __osRestoreInt 0
osViGetNextFramebuffer 15 0x27bdffe0 0xffffffff 0x223dcb73 0x4a08f207 1
2 0 0 0 __osDisableInt 0
4 0 0 2 __osViNext 0
5 0 0 1 __osViNext 0
8 0 0 0 __osRestoreInt 0
osViGetStatus 3 0x3c0ea440 0xffffffff 0x341a8b96 0x341a8b96 0
osViRepeatLine 25 0x27bdffe8 0xffffffff 0x29a63ffd 0x20b4d5ac 0
2 0 0 0 __osDisableInt 0
6 0 0 2 __osViNext 0
9 0 0 2 __osViNext 0
10 0 0 1 __osViNext 0
15 0 0 1 __osViNext 0
19 0 0 0 __osRestoreInt 0
osViSetEvent 23 0x27bdffe8 0xffffffff 0x23475625 0xac99ef9a 0
4 0 0 0 __osDisableInt 0
6 0 0 2 __osViNext 0
7 0 0 1 __osViNext 0
17 0 0 0 __osRestoreInt 0
osViSetMode 22 0x27bdffe8 0xffffffff 0x8ac52a22 0x20b4d5ac 0
2 0 0 0 __osDisableInt 0
4 0 0 2 __osViNext 0
5 0 0 1 __osViNext 0
16 0 0 0 __osRestoreInt 0
osViSetSpecialFeatures 87 0x27bdffe8 0xffffffff 0xc6c82a05 0x20b4d5ac 0
2 0 0 0 __osDisableInt 0
6 0 0 2 __osViNext 0
10 0 0 1 __osViNext 0
15 0 0 2 __osViNext 0
17 0 0 1 __osViNext 0
81 0 0 0 __osRestoreInt 0
osViSetXScale 67 0x27bdffe8 0xffffffff 0xad06dee0 0x906a9606 0
2 0 0 0 __osDisableInt 0
4 0 0 2 __osViNext 0
5 0 0 1 __osViNext 0
61 0 0 0 __osRestoreInt 0
osViSetYScale 19 0x27bdffe8 0xffffffff 0x8034f03b 0x906a9606 0
2 0 0 0 __osDisableInt 0
4 0 0 2 __osViNext 0
5 0 0 1 __osViNext 0
13 0 0 0 __osRestoreInt 0
osViSwapBuffer 19 0x27bdffe8 0xffffffff 0x2a152099 0x20b4d5ac 0
2 0 0 0 __osDisableInt 0
4 0 0 2 __osViNext 0
5 0 0 1 __osViNext 0
13 0 0 0 __osRestoreInt 0
osVirtualToPhysical 31 0x27bdffe8 0xffffffff 0x5fcc4093 0x4e109cd2 0
25 0 0 0 __osProbeTLB 0
osVoiceCheckWord 442 0x27bdfff0 0xffffffff 0xa2c47cf4 0xf35588db 0
osVoiceClearDictionary 42 0x27bdffd0 0xffffffff 0x98704e6 0x7255c170 0
7 0 0 0 __osVoiceGetStatus 0
24 0 0 0 __osVoiceContWrite4 0
30 0 0 0 __osVoiceCheckResult 0
osVoiceControlGain 42 0x27bdffe8 0xffffffff 0xfa91fd0c 0x9ec7dfd1 0
10 0 0 0 __osVoiceSetADConverte 0
31 0 0 0 __osVoiceSetADConverte 0
osVoiceCountSyllables 219 0xafa40000 0xffffffff 0xb87a127d 0x174c7b4e 0
osVoiceGetReadData 242 0x27bdff98 0xffffffff 0x3e3853ec 0xcadf149c 0
21 0 0 0 __osVoiceGetStatus 0
34 0 0 0 __osVoiceContRead2 0
55 0 0 0 __osVoiceGetStatus 0
70 0 0 0 __osVoiceContWrite4 0
81 0 0 0 __osVoiceGetStatus 0
94 0 0 0 __osVoiceContRead36 0
204 0 0 0 __osVoiceGetStatus 0
217 0 0 0 __osVoiceContRead2 0
osVoiceInit 77 0x27bdffc0 0xffffffff 0x760d9664 0x91e4c3d1 0
15 0 0 0 __osVoiceGetStatus 0
21 0 0 0 __osContChannelReset 0
32 0 0 0 __osVoiceSetADConverte 0
42 0 0 0 __osVoiceGetStatus 0
57 0 0 0 __osVoiceContWrite4 0
63 0 0 0 __osVoiceCheckResult 0
osVoiceMaskDictionary 74 0x27bdffb8 0xffffffff 0xa119043f 0x841fbd21 0
8 0 0 0 __osVoiceGetStatus 0
28 0 0 0 bzero 0
58 0 0 0 __osVoiceContWrite20 0
63 0 0 0 __osVoiceCheckResult 0
osVoiceSetWord 97 0x27bdffa8 0xffffffff 0xef96ee29 0xedad6b4f 0
7 0 0 0 __osVoiceGetStatus 0
31 0 0 0 bzero 0
60 0 0 0 __osVoiceContWrite20 0
70 0 0 0 __osVoiceContWrite20 0
76 0 0 0 __osVoiceCheckResult 0
osVoiceStartReadData 46 0x27bdffd0 0xffffffff 0xfe84bad9 0x7255c170 0
6 0 0 0 __osVoiceGetStatus 0
26 0 0 0 __osVoiceContWrite4 0
31 0 0 0 __osVoiceCheckResult 0
osVoiceStopReadData 62 0x27bdffc8 0xffffffff 0x2fc04aa3 0x157516f3 0
10 0 0 0 __osVoiceGetStatus 0
30 0 0 0 __osVoiceContWrite4 0
37 0 0 0 __osVoiceCheckResult 0
osWritebackDCache 29 0x18a00011 0xffffffff 0x3575328f 0xa10f5ae9 0
osWritebackDCacheAll 10 0x3c088000 0xffffffff 0xf462714e 0xab7a075b 0
osYieldThread 19 0x27bdffd8 0xffffffff 0x94f433f9 0xf90e31e4 0
2 0 0 0 __osDisableInt 0
4 0 0 2 __osRunningThread 0
5 0 0 1 __osRunningThread 0
7 0 0 2 __osRunQueue 0
9 0 0 1 __osRunQueue 0
10 0 0 0 __osEnqueueAndYield 0
12 0 0 0 __osRestoreInt 0
rmonPrintf 7 0x27bdfff8 0xffffffff 0xd64459ab 0xceb40b69 1
send_mesg 45 0x3c0a0000 0xffff0000 0xd9bf8c14 0xefa374fb 0
0 0 0 2 __osEventStateTab 0
1 0 0 1 __osEventStateTab 0
36 0 0 0 __osPopThread 0
39 0 0 2 __osRunQueue 0
41 0 0 0 __osEnqueueThread 0
42 0 0 1 __osRunQueue 0
sins 28 0x308effff 0xffffffff 0xa23c9f22 0x37b12859 0
spClearAttribute 5 0x948e0014 0xffffffff 0xb46108ee 0xadbd1d2a 0
spColor 9 0xafa50004 0xffffffff 0xc707e1b3 0xfb4388cf 0
spDraw 843 0x27bdfe58 0xffffffff 0xca50037c 0x236cbe7a 1
394 0 0 2 NULL 0
395 0 24 1 NULL 0
455 0 24 2 NULL 0
459 0 28 1 NULL 0
617 14 28 0 NULL 1
621 0 28 2 NULL 0
624 0 32 1 NULL 0
spFinish 45 0x8c820000 0xffffffff 0x166360ee 0x89fc37b0 1
spHide 8 0x27bdffe8 0xffffffff 0x8f8cf95f 0xf70dea8b 1
2 0 0 0 spSetAttribute 0
spInit 75 0x8c850000 0xffffffff 0x9f86d295 0xc6497192 1
spMove 3 0xa4850000 0xffffffff 0x56db3d9a 0x56db3d9a 1
spScale 25 0x3c013f80 0xffffffff 0x81541832 0x823da468 0
15 0 0 0 spClearAttribute 0
19 0 0 0 spSetAttribute 0
spScissor 9 0x3c010000 0xffffffff 0xde1fb08f 0x57b80f26 1
spSetAttribute 4 0x948e0014 0xffffffff 0x3fd5fdd7 0x3fd5fdd7 0
spShow 8 0x27bdffe8 0xffffffff 0x8f8cf95f 0xf70dea8b 1
2 0 0 0 spClearAttribute 0
spX2Draw 843 0x27bdfe58 0xffffffff 0xf56dbe4d 0x236cbe7a 0
394 0 0 2 NULL 0
395 0 24 1 NULL 0
455 0 24 2 NULL 0
459 0 28 1 NULL 0
617 14 28 0 NULL 1
621 0 28 2 NULL 0
624 0 32 1 NULL 0
spX2Finish 45 0x8c820000 0xffffffff 0x3f32e32d 0x89fc37b0 0
spX2Init 75 0x8c850000 0xffffffff 0x4cc18315 0xc6497192 0
spX2Move 3 0xa4850000 0xffffffff 0x56db3d9a 0x56db3d9a 1
spX2Scissor 9 0x3c010000 0xffffffff 0xde1fb08f 0x57b80f26 1
spXDraw 843 0x27bdfe58 0xffffffff 0xca50037c 0x236cbe7a 1
394 0 0 2 NULL 0
395 0 24 1 NULL 0
455 0 24 2 NULL 0
459 0 28 1 NULL 0
617 14 28 0 NULL 1
621 0 28 2 NULL 0
624 0 32 1 NULL 0
spXFinish 45 0x8c820000 0xffffffff 0x166360ee 0x89fc37b0 1
spXInit 75 0x8c850000 0xffffffff 0x9f86d295 0xc6497192 1
spXMove 3 0xa4850000 0xffffffff 0x56db3d9a 0x56db3d9a 1
spXScissor 9 0x3c010000 0xffffffff 0xde1fb08f 0x57b80f26 1
sprintf 22 0x27bdffe0 0xffffffff 0x2c06723e 0x1cca30e8 0
6 0 0 2 NULL 1
7 0 88 1 NULL 1
10 0 88 0 _Printf 0
strchr 16 0x90830000 0xffffffff 0x9ae8a84a 0xe8c5827a 0
strlen 10 0x908e0000 0xffffffff 0x8dc53047 0xc6145c7f 0