1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
|
Discarded input sections
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/kmain.wtf.o
.group 0x00000000 0x8 Core/Sys.ns.o
.group 0x00000000 0x8 Core/Sys.ns.o
.group 0x00000000 0x8 Core/Sys.ns.o
.group 0x00000000 0x8 Core/Sys.ns.o
.group 0x00000000 0x8 Core/Sys.ns.o
.group 0x00000000 0x8 Core/Sys.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c Core/Sys.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Core/Sys.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Core/Sys.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 Core/Sys.ns.o
.rodata._ZTV6String
0x00000000 0x10 Core/Sys.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Core/Sys.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.group 0x00000000 0x8 Core/Log.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c Core/Log.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Core/Log.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Core/Log.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 Core/Log.ns.o
.text._ZN8TextFileD0Ev
0x00000000 0x25 Core/Log.ns.o
.text._ZN8TextFileD1Ev
0x00000000 0x15 Core/Log.ns.o
.rodata._ZTV6String
0x00000000 0x10 Core/Log.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Core/Log.ns.o
.rodata._ZTV8TextFile
0x00000000 0x14 Core/Log.ns.o
.group 0x00000000 0x8 Core/SB.ns.o
.group 0x00000000 0x8 Core/SB.ns.o
.group 0x00000000 0x8 Core/SB.ns.o
.group 0x00000000 0x8 Core/SB.ns.o
.group 0x00000000 0x8 Core/SB.ns.o
.group 0x00000000 0x8 Core/SB.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c Core/SB.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Core/SB.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Core/SB.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 Core/SB.ns.o
.rodata._ZTV6String
0x00000000 0x10 Core/SB.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Core/SB.ns.o
.group 0x00000000 0x8 DeviceManager/Disp.ns.o
.group 0x00000000 0x8 DeviceManager/Disp.ns.o
.group 0x00000000 0x8 DeviceManager/Disp.ns.o
.group 0x00000000 0x8 DeviceManager/Disp.ns.o
.group 0x00000000 0x8 DeviceManager/Disp.ns.o
.group 0x00000000 0x8 DeviceManager/Disp.ns.o
.group 0x00000000 0x8 DeviceManager/Disp.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 DeviceManager/Disp.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c DeviceManager/Disp.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c DeviceManager/Disp.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 DeviceManager/Disp.ns.o
.rodata._ZTV6String
0x00000000 0x10 DeviceManager/Disp.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 DeviceManager/Disp.ns.o
.group 0x00000000 0x8 DeviceManager/Dev.ns.o
.group 0x00000000 0x8 DeviceManager/Dev.ns.o
.group 0x00000000 0x8 DeviceManager/Dev.ns.o
.group 0x00000000 0x8 DeviceManager/Dev.ns.o
.group 0x00000000 0x8 DeviceManager/Dev.ns.o
.group 0x00000000 0x8 DeviceManager/Dev.ns.o
.group 0x00000000 0x8 DeviceManager/Dev.ns.o
.group 0x00000000 0x8 DeviceManager/Dev.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 DeviceManager/Dev.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c DeviceManager/Dev.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c DeviceManager/Dev.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 DeviceManager/Dev.ns.o
.rodata._ZTV6String
0x00000000 0x10 DeviceManager/Dev.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 DeviceManager/Dev.ns.o
.group 0x00000000 0x8 DeviceManager/Kbd.ns.o
.group 0x00000000 0x8 DeviceManager/Kbd.ns.o
.group 0x00000000 0x8 DeviceManager/Kbd.ns.o
.group 0x00000000 0x8 DeviceManager/Kbd.ns.o
.group 0x00000000 0x8 DeviceManager/Kbd.ns.o
.group 0x00000000 0x8 DeviceManager/Kbd.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 DeviceManager/Kbd.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c DeviceManager/Kbd.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c DeviceManager/Kbd.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 DeviceManager/Kbd.ns.o
.rodata._ZTV6String
0x00000000 0x10 DeviceManager/Kbd.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 DeviceManager/Kbd.ns.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c TaskManager/Process.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c TaskManager/Process.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 TaskManager/Process.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 TaskManager/Process.class.o
.text._ZN6VectorI6StringED1Ev
0x00000000 0x50 TaskManager/Process.class.o
.rodata._ZTV6String
0x00000000 0x10 TaskManager/Process.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 TaskManager/Process.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Process-sc.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c TaskManager/Process-sc.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c TaskManager/Process-sc.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 TaskManager/Process-sc.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 TaskManager/Process-sc.class.o
.rodata._ZTV6String
0x00000000 0x10 TaskManager/Process-sc.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 TaskManager/Process-sc.class.o
.group 0x00000000 0x8 TaskManager/Thread.class.o
.group 0x00000000 0x8 TaskManager/Thread.class.o
.group 0x00000000 0x8 TaskManager/Thread.class.o
.group 0x00000000 0x8 TaskManager/Thread.class.o
.group 0x00000000 0x8 TaskManager/Thread.class.o
.group 0x00000000 0x8 TaskManager/Thread.class.o
.group 0x00000000 0x8 TaskManager/Thread.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 TaskManager/Thread.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c TaskManager/Thread.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c TaskManager/Thread.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 TaskManager/Thread.class.o
.rodata._ZTV6String
0x00000000 0x10 TaskManager/Thread.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 TaskManager/Thread.class.o
.group 0x00000000 0x8 TaskManager/V86/V86Thread.class.o
.group 0x00000000 0x8 TaskManager/V86/V86Thread.class.o
.group 0x00000000 0x8 TaskManager/V86/V86Thread.class.o
.group 0x00000000 0x8 TaskManager/Task.ns.o
.group 0x00000000 0x8 TaskManager/Task.ns.o
.group 0x00000000 0x8 TaskManager/Task.ns.o
.group 0x00000000 0x8 TaskManager/Task.ns.o
.group 0x00000000 0x8 TaskManager/Task.ns.o
.group 0x00000000 0x8 TaskManager/Task.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c TaskManager/Task.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c TaskManager/Task.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 TaskManager/Task.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 TaskManager/Task.ns.o
.rodata._ZTV6String
0x00000000 0x10 TaskManager/Task.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 TaskManager/Task.ns.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal.proto.o
.text._ZN6StringD1Ev
0x00000000 0x22 VTManager/VirtualTerminal.proto.o
.text._ZN6StringD0Ev
0x00000000 0x2c VTManager/VirtualTerminal.proto.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VTManager/VirtualTerminal.proto.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VTManager/VirtualTerminal.proto.o
.rodata._ZTV6String
0x00000000 0x10 VTManager/VirtualTerminal.proto.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VTManager/VirtualTerminal.proto.o
.group 0x00000000 0x8 VTManager/SimpleVT.class.o
.group 0x00000000 0x8 VTManager/SimpleVT.class.o
.group 0x00000000 0x8 VTManager/SimpleVT.class.o
.group 0x00000000 0x8 VTManager/SimpleVT.class.o
.group 0x00000000 0x8 VTManager/SimpleVT.class.o
.text._ZN15VirtualTerminal10accessibleEv
0x00000000 0xa VTManager/SimpleVT.class.o
.group 0x00000000 0x8 VTManager/ScrollableVT.class.o
.group 0x00000000 0x8 VTManager/ScrollableVT.class.o
.group 0x00000000 0x8 VTManager/ScrollableVT.class.o
.group 0x00000000 0x8 VTManager/ScrollableVT.class.o
.group 0x00000000 0x8 VTManager/ScrollableVT.class.o
.text._ZN15VirtualTerminal10accessibleEv
0x00000000 0xa VTManager/ScrollableVT.class.o
.text._ZN8SimpleVT7isBoxedEv
0x00000000 0xa VTManager/ScrollableVT.class.o
.text._ZN8SimpleVT6heightEv
0x00000000 0xe VTManager/ScrollableVT.class.o
.text._ZN8SimpleVT5widthEv
0x00000000 0xe VTManager/ScrollableVT.class.o
.group 0x00000000 0x8 VTManager/PipeVT.class.o
.group 0x00000000 0x8 VTManager/PipeVT.class.o
.group 0x00000000 0x8 VTManager/PipeVT.class.o
.group 0x00000000 0x8 VTManager/PipeVT.class.o
.group 0x00000000 0x8 VTManager/PipeVT.class.o
.group 0x00000000 0x8 VTManager/PipeVT.class.o
.group 0x00000000 0x8 VTManager/PipeVT.class.o
.group 0x00000000 0x8 VTManager/PipeVT.class.o
.text._ZN15VirtualTerminal10accessibleEv
0x00000000 0xa VTManager/PipeVT.class.o
.text._ZN15VirtualTerminal12updateCursorEv
0x00000000 0x5 VTManager/PipeVT.class.o
.text._ZN15VirtualTerminal6heightEv
0x00000000 0x7 VTManager/PipeVT.class.o
.text._ZN15VirtualTerminal5widthEv
0x00000000 0x7 VTManager/PipeVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/FileVT.class.o
.text._ZN15VirtualTerminal10accessibleEv
0x00000000 0xa VTManager/FileVT.class.o
.text._ZN15VirtualTerminal12updateCursorEv
0x00000000 0x5 VTManager/FileVT.class.o
.text._ZN15VirtualTerminal6heightEv
0x00000000 0x7 VTManager/FileVT.class.o
.text._ZN15VirtualTerminal5widthEv
0x00000000 0x7 VTManager/FileVT.class.o
.text._ZN8TextFileD1Ev
0x00000000 0x15 VTManager/FileVT.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 VTManager/FileVT.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c VTManager/FileVT.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VTManager/FileVT.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VTManager/FileVT.class.o
.text._ZN8TextFileD0Ev
0x00000000 0x25 VTManager/FileVT.class.o
.text._ZN11BasicStringI5WCharE6affectERKS1_
0x00000000 0xa3 VTManager/FileVT.class.o
.rodata._ZTV6String
0x00000000 0x10 VTManager/FileVT.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VTManager/FileVT.class.o
.rodata._ZTV8TextFile
0x00000000 0x14 VTManager/FileVT.class.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-kbd.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-kbd.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-kbd.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-kbd.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-kbd.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-kbd.proto.o
.text._ZN6StringD1Ev
0x00000000 0x22 VTManager/VirtualTerminal-kbd.proto.o
.text._ZN6StringD0Ev
0x00000000 0x2c VTManager/VirtualTerminal-kbd.proto.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VTManager/VirtualTerminal-kbd.proto.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VTManager/VirtualTerminal-kbd.proto.o
.rodata._ZTV6String
0x00000000 0x10 VTManager/VirtualTerminal-kbd.proto.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VTManager/VirtualTerminal-kbd.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-sc.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-sc.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-sc.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-sc.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-sc.proto.o
.group 0x00000000 0x8 VTManager/VirtualTerminal-sc.proto.o
.text._ZN6StringD1Ev
0x00000000 0x22 VTManager/VirtualTerminal-sc.proto.o
.text._ZN6StringD0Ev
0x00000000 0x2c VTManager/VirtualTerminal-sc.proto.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VTManager/VirtualTerminal-sc.proto.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VTManager/VirtualTerminal-sc.proto.o
.rodata._ZTV6String
0x00000000 0x10 VTManager/VirtualTerminal-sc.proto.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VTManager/VirtualTerminal-sc.proto.o
.group 0x00000000 0x8 VTManager/VT.ns.o
.group 0x00000000 0x8 Shell/KernelShell.class.o
.group 0x00000000 0x8 Shell/KernelShell.class.o
.group 0x00000000 0x8 Shell/KernelShell.class.o
.group 0x00000000 0x8 Shell/KernelShell.class.o
.group 0x00000000 0x8 Shell/KernelShell.class.o
.group 0x00000000 0x8 Shell/KernelShell.class.o
.group 0x00000000 0x8 Shell/KernelShell.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 Shell/KernelShell.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c Shell/KernelShell.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Shell/KernelShell.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Shell/KernelShell.class.o
.text._ZN6VectorI6StringED1Ev
0x00000000 0x50 Shell/KernelShell.class.o
.rodata._ZTV6String
0x00000000 0x10 Shell/KernelShell.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Shell/KernelShell.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-fs.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c Shell/KernelShell-fs.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Shell/KernelShell-fs.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Shell/KernelShell-fs.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 Shell/KernelShell-fs.class.o
.text._ZN9ByteArrayD0Ev
0x00000000 0x2c Shell/KernelShell-fs.class.o
.text._ZN11BasicStringIhED0Ev
0x00000000 0x2c Shell/KernelShell-fs.class.o
.text._ZN11BasicStringIhED1Ev
0x00000000 0x22 Shell/KernelShell-fs.class.o
.text._ZN9ByteArrayD1Ev
0x00000000 0x22 Shell/KernelShell-fs.class.o
.text._ZN11BasicStringI5WCharE6affectERKS1_
0x00000000 0xa3 Shell/KernelShell-fs.class.o
.rodata._ZTV6String
0x00000000 0x10 Shell/KernelShell-fs.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Shell/KernelShell-fs.class.o
.rodata._ZTV9ByteArray
0x00000000 0x10 Shell/KernelShell-fs.class.o
.rodata._ZTV11BasicStringIhE
0x00000000 0x10 Shell/KernelShell-fs.class.o
.group 0x00000000 0x8 Shell/KernelShell-sys.class.o
.group 0x00000000 0x8 Shell/KernelShell-sys.class.o
.group 0x00000000 0x8 Shell/KernelShell-sys.class.o
.group 0x00000000 0x8 Shell/KernelShell-sys.class.o
.group 0x00000000 0x8 Shell/KernelShell-sys.class.o
.group 0x00000000 0x8 Shell/KernelShell-sys.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 Shell/KernelShell-sys.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c Shell/KernelShell-sys.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Shell/KernelShell-sys.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Shell/KernelShell-sys.class.o
.rodata._ZTV6String
0x00000000 0x10 Shell/KernelShell-sys.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Shell/KernelShell-sys.class.o
.group 0x00000000 0x8 Linker/MelonBinary.class.o
.group 0x00000000 0x8 Linker/MelonBinary.class.o
.group 0x00000000 0x8 Linker/MelonBinary.class.o
.group 0x00000000 0x8 Linker/MelonBinary.class.o
.group 0x00000000 0x8 Linker/ElfBinary.class.o
.group 0x00000000 0x8 Linker/ElfBinary.class.o
.group 0x00000000 0x8 Linker/ElfBinary.class.o
.group 0x00000000 0x8 Linker/ElfBinary.class.o
.text._ZN6BinaryD1Ev
0x00000000 0xe Linker/ElfBinary.class.o
.text._ZN6BinaryD0Ev
0x00000000 0x15 Linker/ElfBinary.class.o
.rodata._ZTV6Binary
0x00000000 0x14 Linker/ElfBinary.class.o
.group 0x00000000 0x8 ../Library/Common/String.class.o
.group 0x00000000 0x8 ../Library/Common/String.class.o
.group 0x00000000 0x8 ../Library/Common/String.class.o
.group 0x00000000 0x8 ../Library/Common/String.class.o
.group 0x00000000 0x8 ../Library/Common/String.class.o
.group 0x00000000 0x8 ../Library/Common/String.class.o
.group 0x00000000 0x8 ../Library/Common/String.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c ../Library/Common/String.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c ../Library/Common/String.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 ../Library/Common/String.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 ../Library/Common/String.class.o
.text._ZN6VectorI6StringE4pushERKS0_
0x00000000 0x108 ../Library/Common/String.class.o
.rodata._ZTV6String
0x00000000 0x10 ../Library/Common/String.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 ../Library/Common/String.class.o
.group 0x00000000 0x8 ../Library/Common/ByteArray.class.o
.group 0x00000000 0x8 ../Library/Common/ByteArray.class.o
.group 0x00000000 0x8 ../Library/Common/ByteArray.class.o
.group 0x00000000 0x8 ../Library/Common/ByteArray.class.o
.group 0x00000000 0x8 ../Library/Common/ByteArray.class.o
.group 0x00000000 0x8 ../Library/Common/ByteArray.class.o
.text._ZN9ByteArrayD0Ev
0x00000000 0x2c ../Library/Common/ByteArray.class.o
.text._ZN11BasicStringIhED0Ev
0x00000000 0x2c ../Library/Common/ByteArray.class.o
.text._ZN11BasicStringIhED1Ev
0x00000000 0x22 ../Library/Common/ByteArray.class.o
.text._ZN9ByteArrayD1Ev
0x00000000 0x22 ../Library/Common/ByteArray.class.o
.rodata._ZTV9ByteArray
0x00000000 0x10 ../Library/Common/ByteArray.class.o
.rodata._ZTV11BasicStringIhE
0x00000000 0x10 ../Library/Common/ByteArray.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 ../Library/Common/TextFile.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c ../Library/Common/TextFile.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c ../Library/Common/TextFile.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 ../Library/Common/TextFile.class.o
.text._ZN9ByteArrayD0Ev
0x00000000 0x2c ../Library/Common/TextFile.class.o
.text._ZN11BasicStringIhED0Ev
0x00000000 0x2c ../Library/Common/TextFile.class.o
.text._ZN11BasicStringIhED1Ev
0x00000000 0x22 ../Library/Common/TextFile.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 ../Library/Common/TextFile.class.o
.text._ZN9ByteArrayD1Ev
0x00000000 0x22 ../Library/Common/TextFile.class.o
.rodata._ZTV6String
0x00000000 0x10 ../Library/Common/TextFile.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 ../Library/Common/TextFile.class.o
.rodata._ZTV9ByteArray
0x00000000 0x10 ../Library/Common/TextFile.class.o
.rodata._ZTV11BasicStringIhE
0x00000000 0x10 ../Library/Common/TextFile.class.o
.group 0x00000000 0x8 VFS/Partition.class.o
.group 0x00000000 0x8 VFS/Partition.class.o
.group 0x00000000 0x8 VFS/Partition.class.o
.group 0x00000000 0x8 VFS/Part.ns.o
.group 0x00000000 0x8 VFS/Part.ns.o
.group 0x00000000 0x8 VFS/Part.ns.o
.group 0x00000000 0x8 VFS/Part.ns.o
.group 0x00000000 0x8 VFS/Part.ns.o
.group 0x00000000 0x8 VFS/Part.ns.o
.group 0x00000000 0x8 VFS/Part.ns.o
.group 0x00000000 0x8 VFS/Part.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c VFS/Part.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VFS/Part.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VFS/Part.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 VFS/Part.ns.o
.rodata._ZTV6String
0x00000000 0x10 VFS/Part.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VFS/Part.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/VFS.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c VFS/VFS.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VFS/VFS.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VFS/VFS.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 VFS/VFS.ns.o
.text._ZN6VectorI6StringED1Ev
0x00000000 0x50 VFS/VFS.ns.o
.text._ZN11BasicStringI5WCharE6affectERKS1_
0x00000000 0xa3 VFS/VFS.ns.o
.text._ZN6VectorI6StringE4pushERKS0_
0x00000000 0x99 VFS/VFS.ns.o
.rodata._ZTV6String
0x00000000 0x10 VFS/VFS.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VFS/VFS.ns.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/FSNode-sc.proto.o
.text._ZN6StringD1Ev
0x00000000 0x22 VFS/FSNode-sc.proto.o
.text._ZN6StringD0Ev
0x00000000 0x2c VFS/FSNode-sc.proto.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VFS/FSNode-sc.proto.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VFS/FSNode-sc.proto.o
.rodata._ZTV6String
0x00000000 0x10 VFS/FSNode-sc.proto.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VFS/FSNode-sc.proto.o
.group 0x00000000 0x8 VFS/File.class.o
.group 0x00000000 0x8 VFS/File.class.o
.group 0x00000000 0x8 VFS/File.class.o
.group 0x00000000 0x8 VFS/File.class.o
.group 0x00000000 0x8 VFS/File.class.o
.group 0x00000000 0x8 VFS/File.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c VFS/File.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VFS/File.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VFS/File.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 VFS/File.class.o
.rodata._ZTV6String
0x00000000 0x10 VFS/File.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VFS/File.class.o
.group 0x00000000 0x8 VFS/File-sc.class.o
.group 0x00000000 0x8 VFS/File-sc.class.o
.group 0x00000000 0x8 VFS/File-sc.class.o
.group 0x00000000 0x8 VFS/File-sc.class.o
.group 0x00000000 0x8 VFS/File-sc.class.o
.group 0x00000000 0x8 VFS/File-sc.class.o
.group 0x00000000 0x8 VFS/File-sc.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c VFS/File-sc.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VFS/File-sc.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VFS/File-sc.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 VFS/File-sc.class.o
.rodata._ZTV6String
0x00000000 0x10 VFS/File-sc.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VFS/File-sc.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 VFS/DirectoryNode.class.o
.text._ZN6FSNode4usedEv
0x00000000 0x7 VFS/DirectoryNode.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c VFS/DirectoryNode.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c VFS/DirectoryNode.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 VFS/DirectoryNode.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 VFS/DirectoryNode.class.o
.rodata._ZTV6String
0x00000000 0x10 VFS/DirectoryNode.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 VFS/DirectoryNode.class.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.group 0x00000000 0x8 UserManager/Usr.ns.o
.text._ZN6StringD0Ev
0x00000000 0x2c UserManager/Usr.ns.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c UserManager/Usr.ns.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 UserManager/Usr.ns.o
.text._ZN6StringD1Ev
0x00000000 0x22 UserManager/Usr.ns.o
.text._ZN6VectorI6StringED1Ev
0x00000000 0x50 UserManager/Usr.ns.o
.text._ZN6StringC1ERKS_
0x00000000 0xa9 UserManager/Usr.ns.o
.text._ZN8TextFileD0Ev
0x00000000 0x25 UserManager/Usr.ns.o
.text._ZN8TextFileD1Ev
0x00000000 0x15 UserManager/Usr.ns.o
.rodata._ZTV6String
0x00000000 0x10 UserManager/Usr.ns.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 UserManager/Usr.ns.o
.rodata._ZTV8TextFile
0x00000000 0x14 UserManager/Usr.ns.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/RamFS/RamFS.class.o
.text._ZN6FSNode9getLengthEv
0x00000000 0xe FileSystems/RamFS/RamFS.class.o
.text._ZN6FSNode9getParentEv
0x00000000 0xb FileSystems/RamFS/RamFS.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c FileSystems/RamFS/RamFS.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c FileSystems/RamFS/RamFS.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 FileSystems/RamFS/RamFS.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 FileSystems/RamFS/RamFS.class.o
.text._ZN11BasicStringI5WCharE6affectERKS1_
0x00000000 0xa3 FileSystems/RamFS/RamFS.class.o
.rodata._ZTV6String
0x00000000 0x10 FileSystems/RamFS/RamFS.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 FileSystems/RamFS/RamFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 FileSystems/FAT/FATFS.class.o
.text._ZN6FSNode4usedEv
0x00000000 0x7 FileSystems/FAT/FATFS.class.o
.text._ZN6FSNode9getLengthEv
0x00000000 0xe FileSystems/FAT/FATFS.class.o
.text._ZN6FSNode9getParentEv
0x00000000 0xb FileSystems/FAT/FATFS.class.o
.text._ZN8FileNode4typeEv
0x00000000 0xa FileSystems/FAT/FATFS.class.o
.text._ZN8FileNode9removableEv
0x00000000 0xa FileSystems/FAT/FATFS.class.o
.text._ZN8FileNode4usedEv
0x00000000 0x1c FileSystems/FAT/FATFS.class.o
.text._ZN13DirectoryNode4typeEv
0x00000000 0xa FileSystems/FAT/FATFS.class.o
.text._ZN9ByteArrayD0Ev
0x00000000 0x2c FileSystems/FAT/FATFS.class.o
.text._ZN11BasicStringIhED0Ev
0x00000000 0x2c FileSystems/FAT/FATFS.class.o
.text._ZN11BasicStringIhED1Ev
0x00000000 0x22 FileSystems/FAT/FATFS.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c FileSystems/FAT/FATFS.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c FileSystems/FAT/FATFS.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 FileSystems/FAT/FATFS.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 FileSystems/FAT/FATFS.class.o
.text._ZN9ByteArrayD1Ev
0x00000000 0x22 FileSystems/FAT/FATFS.class.o
.text._ZN11BasicStringI5WCharE6affectERKS1_
0x00000000 0xa3 FileSystems/FAT/FATFS.class.o
.text._ZN8FileNodeD0Ev
0x00000000 0x3b FileSystems/FAT/FATFS.class.o
.text._ZN8FileNodeD1Ev
0x00000000 0x33 FileSystems/FAT/FATFS.class.o
.rodata._ZTV9ByteArray
0x00000000 0x10 FileSystems/FAT/FATFS.class.o
.rodata._ZTV11BasicStringIhE
0x00000000 0x10 FileSystems/FAT/FATFS.class.o
.rodata._ZTV6String
0x00000000 0x10 FileSystems/FAT/FATFS.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 FileSystems/FAT/FATFS.class.o
.rodata._ZTV8FileNode
0x00000000 0x28 FileSystems/FAT/FATFS.class.o
.group 0x00000000 0x8 SyscallManager/Ressource.class.o
.group 0x00000000 0x8 SyscallManager/Ressource.class.o
.group 0x00000000 0x8 SyscallManager/Ressource.class.o
.group 0x00000000 0x8 SyscallManager/Ressource.class.o
.group 0x00000000 0x8 SyscallManager/Ressource.class.o
.group 0x00000000 0x8 SyscallManager/Ressource.class.o
.group 0x00000000 0x8 SyscallManager/Ressource.class.o
.group 0x00000000 0x8 SyscallManager/Ressource.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c SyscallManager/Ressource.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c SyscallManager/Ressource.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 SyscallManager/Ressource.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 SyscallManager/Ressource.class.o
.rodata._ZTV6String
0x00000000 0x10 SyscallManager/Ressource.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 SyscallManager/Ressource.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/VGATextOutput.class.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/Display/VGATextOutput.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/Display/VGATextOutput.class.o
.text._ZN7DisplayD1Ev
0x00000000 0xe Devices/Display/VGATextOutput.class.o
.text._ZN7Display9unsetModeEv
0x00000000 0x5 Devices/Display/VGATextOutput.class.o
.text._ZN7Display10textScrollEtttth
0x00000000 0x7 Devices/Display/VGATextOutput.class.o
.text._ZN7Display6putPixEttj
0x00000000 0x5 Devices/Display/VGATextOutput.class.o
.text._ZN7Display6getPixEtt
0x00000000 0x7 Devices/Display/VGATextOutput.class.o
.text._ZN7DisplayD0Ev
0x00000000 0x15 Devices/Display/VGATextOutput.class.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/Display/VGATextOutput.class.o
.rodata._ZTV7Display
0x00000000 0x40 Devices/Display/VGATextOutput.class.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/GraphicDisplay.proto.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/Display/GraphicDisplay.proto.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/Display/GraphicDisplay.proto.o
.text._ZN7DisplayD1Ev
0x00000000 0xe Devices/Display/GraphicDisplay.proto.o
.text._ZN7Display9unsetModeEv
0x00000000 0x5 Devices/Display/GraphicDisplay.proto.o
.text._ZN7Display10textScrollEtttth
0x00000000 0x7 Devices/Display/GraphicDisplay.proto.o
.text._ZN7Display6putPixEttj
0x00000000 0x5 Devices/Display/GraphicDisplay.proto.o
.text._ZN7Display6getPixEtt
0x00000000 0x7 Devices/Display/GraphicDisplay.proto.o
.text._ZN7DisplayD0Ev
0x00000000 0x15 Devices/Display/GraphicDisplay.proto.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/Display/GraphicDisplay.proto.o
.rodata._ZTV7Display
0x00000000 0x40 Devices/Display/GraphicDisplay.proto.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/Display/GraphicDisplay.proto.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Display/VESADisplay.class.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/Display/VESADisplay.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/Display/VESADisplay.class.o
.text._ZN7DisplayD1Ev
0x00000000 0xe Devices/Display/VESADisplay.class.o
.text._ZN7Display9unsetModeEv
0x00000000 0x5 Devices/Display/VESADisplay.class.o
.text._ZN7Display10textScrollEtttth
0x00000000 0x7 Devices/Display/VESADisplay.class.o
.text._ZN7Display6putPixEttj
0x00000000 0x5 Devices/Display/VESADisplay.class.o
.text._ZN7Display6getPixEtt
0x00000000 0x7 Devices/Display/VESADisplay.class.o
.text._ZN7DisplayD0Ev
0x00000000 0x15 Devices/Display/VESADisplay.class.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/Display/VESADisplay.class.o
.rodata._ZTV7Display
0x00000000 0x40 Devices/Display/VESADisplay.class.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/Display/VESADisplay.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Keyboard/PS2Keyboard.class.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/Keyboard/PS2Keyboard.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/Keyboard/PS2Keyboard.class.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/Keyboard/PS2Keyboard.class.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyController.class.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/Floppy/FloppyController.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/Floppy/FloppyController.class.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/Floppy/FloppyController.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c Devices/Floppy/FloppyController.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Devices/Floppy/FloppyController.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Devices/Floppy/FloppyController.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 Devices/Floppy/FloppyController.class.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/Floppy/FloppyController.class.o
.rodata._ZTV6String
0x00000000 0x10 Devices/Floppy/FloppyController.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/Floppy/FloppyDrive.class.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/Floppy/FloppyDrive.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/Floppy/FloppyDrive.class.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/Floppy/FloppyDrive.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c Devices/Floppy/FloppyDrive.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Devices/Floppy/FloppyDrive.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Devices/Floppy/FloppyDrive.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 Devices/Floppy/FloppyDrive.class.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/Floppy/FloppyDrive.class.o
.rodata._ZTV6String
0x00000000 0x10 Devices/Floppy/FloppyDrive.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATAController.class.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/ATA/ATAController.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/ATA/ATAController.class.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/ATA/ATAController.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 Devices/ATA/ATAController.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c Devices/ATA/ATAController.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Devices/ATA/ATAController.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Devices/ATA/ATAController.class.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/ATA/ATAController.class.o
.rodata._ZTV6String
0x00000000 0x10 Devices/ATA/ATAController.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Devices/ATA/ATAController.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/ATA/ATADrive.class.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/ATA/ATADrive.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/ATA/ATADrive.class.o
.text._ZN11BlockDevice8chsToLBAEjjj
0x00000000 0x9 Devices/ATA/ATADrive.class.o
.text._ZN11BlockDeviceD1Ev
0x00000000 0xe Devices/ATA/ATADrive.class.o
.text._ZN11BlockDeviceD0Ev
0x00000000 0x15 Devices/ATA/ATADrive.class.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/ATA/ATADrive.class.o
.text._ZN6StringD0Ev
0x00000000 0x2c Devices/ATA/ATADrive.class.o
.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x2c Devices/ATA/ATADrive.class.o
.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x22 Devices/ATA/ATADrive.class.o
.text._ZN6StringD1Ev
0x00000000 0x22 Devices/ATA/ATADrive.class.o
.rodata._ZTV11BlockDevice
0x00000000 0x34 Devices/ATA/ATADrive.class.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/ATA/ATADrive.class.o
.rodata._ZTV6String
0x00000000 0x10 Devices/ATA/ATADrive.class.o
.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x10 Devices/ATA/ATADrive.class.o
.group 0x00000000 0x8 Devices/Timer.class.o
.group 0x00000000 0x8 Devices/Timer.class.o
.group 0x00000000 0x8 Devices/Timer.class.o
.group 0x00000000 0x8 Devices/Timer.class.o
.group 0x00000000 0x8 Devices/Timer.class.o
.group 0x00000000 0x8 Devices/Timer.class.o
.group 0x00000000 0x8 Devices/Timer.class.o
.text._ZN6DeviceD1Ev
0x00000000 0xe Devices/Timer.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x5 Devices/Timer.class.o
.text._ZN6DeviceD0Ev
0x00000000 0x15 Devices/Timer.class.o
.rodata._ZTV6Device
0x00000000 0x1c Devices/Timer.class.o
Memory Configuration
Name Origin Length Attributes
*default* 0x00000000 0xffffffff
Linker script and memory map
0x00100000 . = 0x100000
.setup 0x00100000 0x1e
*(.setup)
.setup 0x00100000 0x1e Core/loader.wtf.o
0xc010001e . = (. + 0xc0000000)
.text 0xc0100020 0x2a296 load address 0x00100020
*(.text)
.text 0xc0100020 0x75 Core/loader.wtf.o
0xc010002c loader
*fill* 0xc0100095 0xb 00
.text 0xc01000a0 0x180d Core/kmain.wtf.o
0xc01000a0 kmain
*fill* 0xc01018ad 0x3 00
.text 0xc01018b0 0x1c35 Core/Sys.ns.o
0xc01018b0 Sys::outb(unsigned short, unsigned char)
0xc01018c0 Sys::outw(unsigned short, unsigned short)
0xc01018d0 Sys::inb(unsigned short)
0xc01018e0 Sys::inw(unsigned short)
0xc01018f0 Sys::bochs_output_hex(unsigned int)
0xc0101950 Sys::bochs_output(String, char*, unsigned int)
0xc01019e0 Sys::bochs_output(char*, char*, unsigned int)
0xc0101a70 Sys::stackTrace(unsigned int, VirtualTerminal&, unsigned int, bool)
0xc0101c40 Sys::shutdown_cleanup()
0xc0101c90 Sys::reboot()
0xc0101cf0 Sys::halt()
0xc0101e00 Sys::panic_assert(char*, unsigned int, char*)
0xc0102090 Sys::panic(char*, char*, unsigned int)
0xc0102320 Sys::dumpRegs(registers_t*, VirtualTerminal&)
0xc0102c40 Sys::panic(char*, registers_t*, char*, unsigned int)
0xc0103040 Sys::scall(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int)
*fill* 0xc01034e5 0xb 00
.text 0xc01034f0 0xd60 Core/Log.ns.o
0xc01034f0 Log::close()
0xc0103530 Log::log(unsigned char, String)
0xc0103620 Log::init(unsigned char)
.text 0xc0104250 0x1273 Core/SB.ns.o
0xc01042b0 SB::gomulti()
0xc0104300 SB::init()
0xc01043a0 SB::drawnormal()
0xc0104bc0 SB::message(String const&)
0xc0104cb0 SB::drawprogress(String const&)
0xc0105250 SB::thread(void*)
0xc01052c0 SB::reinit()
0xc01053d0 SB::progress(String const&)
*fill* 0xc01054c3 0xd 00
.text 0xc01054d0 0x2cb MemoryManager/Mem.ns.o
0xc0105500 Mem::kheapFree()
0xc0105530 Mem::kheapSize()
0xc0105570 Mem::mkXchgSpace(unsigned int)
0xc0105590 Mem::free(void*)
0xc01055b0 Mem::kallocInternal(unsigned int, bool)
0xc0105670 Mem::alloc(unsigned int, bool)
0xc0105700 Mem::createHeap()
*fill* 0xc010579b 0x5 00
.text 0xc01057a0 0x300 MemoryManager/PhysMem.ns.o
0xc01057a0 PhysMem::removeTemporaryPages()
0xc01057f0 PhysMem::total()
0xc0105800 PhysMem::free()
0xc0105830 PhysMem::freeFrame(page_t*)
0xc0105880 PhysMem::allocFrame(page_t*, bool, bool)
0xc0105930 PhysMem::initPaging(unsigned int)
.text 0xc0105aa0 0x25 MemoryManager/GDT.wtf.o
0xc0105aa0 gdt_flush
0xc0105abd tss_flush
*fill* 0xc0105ac5 0xb 00
.text 0xc0105ad0 0x28d MemoryManager/GDT.ns.o
0xc0105ad0 GDT::setGate(int, unsigned int, unsigned int, unsigned char, unsigned char)
0xc0105b50 GDT::writeTSS(int, unsigned short, unsigned int)
0xc0105c30 GDT::init()
*fill* 0xc0105d5d 0x3 00
.text 0xc0105d60 0x78e MemoryManager/PageDirectory.class.o
0xc0105d60 PageDirectory::map(page_t*, unsigned int, bool, bool)
0xc0105db0 PageDirectory::switchTo()
0xc0105dd0 PageDirectory::PageDirectory()
0xc0105e10 PageDirectory::PageDirectory()
0xc0105e50 PageDirectory::getPage(unsigned int, bool)
0xc0105f00 PageDirectory::freeFrame(unsigned int)
0xc0105f40 PageDirectory::allocFrame(unsigned int, bool, bool)
0xc0105ff0 PageDirectory::~PageDirectory()
0xc0106080 PageDirectory::~PageDirectory()
0xc0106110 PageDirectory::PageDirectory(PageDirectory*)
0xc0106300 PageDirectory::PageDirectory(PageDirectory*)
*fill* 0xc01064ee 0x2 00
.text 0xc01064f0 0x206 MemoryManager/PageAlloc.ns.o
0xc01064f0 PageAlloc::free(void*)
0xc0106510 PageAlloc::init()
0xc0106580 PageAlloc::alloc(unsigned int*)
*fill* 0xc01066f6 0xa 00
.text 0xc0106700 0xac2 DeviceManager/Disp.ns.o
0xc0106700 Disp::textCols()
0xc0106710 Disp::textRows()
0xc0106720 Disp::putChar(unsigned short, unsigned short, WChar, unsigned char)
0xc0106790 Disp::moveCursor(unsigned short, unsigned short)
0xc01067e0 Disp::textScroll(unsigned short, unsigned short, unsigned short, unsigned short, unsigned char)
0xc0106840 Disp::clear()
0xc0106860 Disp::setText(VGATextOutput*)
0xc01068d0 Disp::setMode(Disp::mode_t&)
0xc0106950 Disp::getModes()
0xc0106a20 Disp::selectMode()
*fill* 0xc01071c2 0xe 00
.text 0xc01071d0 0x585 DeviceManager/Dev.ns.o
0xc01071d0 Dev::handleIRQ(registers_t, int)
0xc0107210 Dev::requestIRQ(Device*, int)
0xc0107280 Dev::unregisterDevice(Device*)
0xc0107320 Dev::registerDevice(Device*)
0xc0107350 Dev::findDevices(String)
0xc01075c0 Dev::findDevice(String, unsigned int)
*fill* 0xc0107755 0xb 00
.text 0xc0107760 0x45 DeviceManager/Time.ns.o
0xc0107760 Time::setTimer(Timer*)
0xc0107770 Time::time()
0xc0107790 Time::uptime()
*fill* 0xc01077a5 0xb 00
.text 0xc01077b0 0x5310 DeviceManager/Kbd.ns.o
0xc01077b0 Kbd::process(keypress_t)
0xc0107850 Kbd::setFocus(VirtualTerminal*)
0xc0107860 Kbd::keyRelease(unsigned char)
0xc010c040 Kbd::updateLeds()
0xc010c0e0 Kbd::keyPress(unsigned char)
0xc010c320 Kbd::loadKeymap(String)
.text 0xc010cac0 0xc8d TaskManager/Process.class.o
0xc010cac0 Process::start()
0xc010cae0 Process::getPagedir()
0xc010caf0 Process::getInVT()
0xc010cb00 Process::getOutVT()
0xc010cb10 Process::setInVT(VirtualTerminal*)
0xc010cb20 Process::setOutVT(VirtualTerminal*)
0xc010cb30 Process::unregisterFileDescriptor(File*)
0xc010cba0 Process::registerFileDescriptor(File*)
0xc010cbe0 Process::registerThread(Thread*)
0xc010cc60 Process::exit()
0xc010cd10 Process::threadFinishes(Thread*, unsigned int)
0xc010ce00 Process::~Process()
0xc010ce80 Process::~Process()
0xc010cf00 Process::~Process()
0xc010cf80 Process::Process()
0xc010cfd0 Process::Process()
0xc010d020 Process::createKernel(String, VirtualTerminal*)
0xc010d250 Process::pushArg(String const&)
0xc010d270 Process::Process(String, unsigned int)
0xc010d3c0 Process::Process(String, unsigned int)
0xc010d510 Process::run(String, unsigned int)
*fill* 0xc010d74d 0x3 00
.text 0xc010d750 0xe01 TaskManager/Process-sc.class.o
0xc010d750 Process::accessible()
0xc010d770 Process::autoDeleteSC(unsigned int)
0xc010d7b0 Process::setOutVTSC(unsigned int)
0xc010d830 Process::setInVTSC(unsigned int)
0xc010d8b0 Process::startSC()
0xc010d8f0 Process::freePagesSC(unsigned int, unsigned int)
0xc010d980 Process::allocPagesSC(unsigned int, unsigned int)
0xc010da20 Process::exitSC()
0xc010da60 Process::scall(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int)
0xc010db70 Process::authNoPWSC(unsigned int)
0xc010dde0 Process::pushArgSC(unsigned int)
0xc010def0 Process::argcSC()
0xc010e150 Process::argvSC(unsigned int)
0xc010e3e0 Process::authPWSC(unsigned int, unsigned int)
*fill* 0xc010e551 0xf 00
.text 0xc010e560 0xeb9 TaskManager/Thread.class.o
0xc010e560 Thread::setState(unsigned int, unsigned int, unsigned int)
0xc010e580 Thread::setKernelStack()
0xc010e5a0 Thread::getEsp()
0xc010e5b0 Thread::getEbp()
0xc010e5c0 Thread::getEip()
0xc010e5d0 Thread::getProcess()
0xc010e5e0 Thread::accessible()
0xc010e600 Thread::scall(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int)
0xc010e630 Thread::finishSC(unsigned int)
0xc010e660 Thread::runnable()
0xc010e6b0 Thread::waitIRQ(unsigned char)
0xc010e6d0 Thread::sleep(unsigned int)
0xc010e710 Thread::sleepSC(unsigned int)
0xc010e750 Thread::mkXchgSpace(unsigned int)
0xc010e7a0 Thread::finish(unsigned int)
0xc010e830 Thread::setup(Process*, unsigned int (*)(void*), void*, bool)
0xc010e910 Thread::run(Thread*, void*, unsigned int (*)(void*))
0xc010e990 Thread::~Thread()
0xc010ea20 Thread::~Thread()
0xc010eab0 Thread::~Thread()
0xc010eb40 Thread::Thread(Process*, unsigned int (*)(void*), void*)
0xc010eba0 Thread::Thread(Process*, unsigned int (*)(void*), void*)
0xc010ec00 Thread::Thread()
0xc010ec40 Thread::Thread()
0xc010ec80 Thread::Thread(unsigned int (*)(void*), void*, bool)
0xc010ed10 Thread::Thread(unsigned int (*)(void*), void*, bool)
0xc010eda0 Thread::handleException(registers_t*, int)
*fill* 0xc010f419 0x7 00
.text 0xc010f420 0x62d TaskManager/V86/V86Thread.class.o
0xc010f420 V86Thread::handleV86GPF(registers_t*)
0xc010f6a0 V86Thread::handleException(registers_t*, int)
0xc010f740 V86Thread::setup()
0xc010f810 V86Thread::V86Thread(unsigned char, v86_retval_t*)
0xc010f890 V86Thread::V86Thread(unsigned char, v86_retval_t*)
0xc010f910 V86Thread::V86Thread(v86_function_t*, v86_retval_t*)
0xc010f9b0 V86Thread::V86Thread(v86_function_t*, v86_retval_t*)
*fill* 0xc010fa4d 0x3 00
.text 0xc010fa50 0x1ad TaskManager/V86/V86.ns.o
0xc010fa50 V86::allocSeg(unsigned short)
0xc010fab0 V86::alloc(unsigned short)
0xc010fad0 V86::map(Process*)
0xc010fb30 V86::biosInt(unsigned char, v86_regs_t&)
0xc010fba0 V86::run(v86_function_t&, v86_regs_t&)
*fill* 0xc010fbfd 0x3 00
.text 0xc010fc00 0x58 TaskManager/V86/v86.wtf.o
0xc010fc00 v86_run
*fill* 0xc010fc58 0x8 00
.text 0xc010fc60 0x5d2 TaskManager/Task.ns.o
0xc010fc60 Task::currThread()
0xc010fc70 Task::currProcess()
0xc010fc80 Task::triggerSwitch()
0xc010fc90 Task::nextPid()
0xc010fcb0 Task::IRQwakeup(unsigned char)
0xc010fd00 Task::currentThreadExits(unsigned int)
0xc010fd40 Task::unregisterProcess(Process*)
0xc010fdb0 Task::unregisterThread(Thread*)
0xc010fe20 Task::registerProcess(Process*)
0xc010fe70 Task::registerThread(Thread*)
0xc010fec0 Task::allocKernelPageTable(unsigned int, page_table_t*, unsigned int)
0xc010ff40 Task::nextThread()
0xc010ffb0 Task::doSwitch()
0xc0110070 Task::currThreadExitProceed(unsigned int)
0xc01100a0 Task::getKernelProcess()
0xc01100f0 Task::initialize(String, VirtualTerminal*)
*fill* 0xc0110232 0xe 00
.text 0xc0110240 0x48 TaskManager/Task.wtf.o
0xc0110240 read_eip
0xc0110243 idle_task
0xc011024a copy_page_physical
*fill* 0xc0110288 0x8 00
.text 0xc0110290 0x89e VTManager/VirtualTerminal.proto.o
0xc0110290 VirtualTerminal::write(String const&, bool)
0xc0110350 VirtualTerminal::writeDec(long long, bool)
0xc01104b0 VirtualTerminal::~VirtualTerminal()
0xc01104e0 VirtualTerminal::~VirtualTerminal()
0xc0110500 VirtualTerminal::~VirtualTerminal()
0xc0110520 VirtualTerminal::VirtualTerminal()
0xc01105b0 VirtualTerminal::VirtualTerminal()
0xc0110640 VirtualTerminal::writeHex(unsigned int, bool)
0xc0110720 VirtualTerminal::hexDump(unsigned char*, unsigned int, bool)
*fill* 0xc0110b2e 0x2 00
.text 0xc0110b30 0x95b VTManager/SimpleVT.class.o
0xc0110b30 SimpleVT::clear()
0xc0110ba0 SimpleVT::handleEscape(mvt_esc_cmd_t)
0xc0110c80 SimpleVT::hexDump(unsigned char*, unsigned int, bool)
0xc0110cc0 SimpleVT::put(WChar, bool)
0xc0110e70 SimpleVT::updateCursor()
0xc0110ec0 SimpleVT::scroll()
0xc0111000 SimpleVT::redraw()
0xc01110a0 SimpleVT::putChar(unsigned int, unsigned int, WChar)
0xc0111140 SimpleVT::unmap()
0xc0111160 SimpleVT::map(int, int)
0xc01111e0 SimpleVT::~SimpleVT()
0xc0111230 SimpleVT::~SimpleVT()
0xc0111280 SimpleVT::~SimpleVT()
0xc01112d0 SimpleVT::SimpleVT(unsigned int, unsigned int, unsigned char, unsigned char)
0xc01113b0 SimpleVT::SimpleVT(unsigned int, unsigned int, unsigned char, unsigned char)
*fill* 0xc011148b 0x5 00
.text 0xc0111490 0x7fa VTManager/ScrollableVT.class.o
0xc0111490 ScrollableVT::keyPress(keypress_t)
0xc0111590 ScrollableVT::scroll()
0xc0111640 ScrollableVT::redraw()
0xc01117a0 ScrollableVT::putChar(unsigned int, unsigned int, WChar)
0xc0111860 ScrollableVT::updateCursor()
0xc01118b0 ScrollableVT::~ScrollableVT()
0xc0111910 ScrollableVT::~ScrollableVT()
0xc0111970 ScrollableVT::~ScrollableVT()
0xc01119d0 ScrollableVT::ScrollableVT(unsigned int, unsigned int, unsigned int, unsigned char, unsigned char)
0xc0111b30 ScrollableVT::ScrollableVT(unsigned int, unsigned int, unsigned int, unsigned char, unsigned char)
*fill* 0xc0111c8a 0x6 00
.text 0xc0111c90 0x1e8 VTManager/PipeVT.class.o
0xc0111c90 PipeVT::put(WChar, bool)
0xc0111db0 PipeVT::handleEscape(mvt_esc_cmd_t)
0xc0111e20 PipeVT::PipeVT()
0xc0111e50 PipeVT::PipeVT()
*fill* 0xc0111e78 0x8 00
.text 0xc0111e80 0x631 VTManager/FileVT.class.o
0xc0111e80 FileVT::getKeypress(bool, bool)
0xc0111fb0 FileVT::put(WChar, bool)
0xc0112160 FileVT::handleEscape(mvt_esc_cmd_t)
0xc01121e0 FileVT::FileVT(String, unsigned char, FSNode*, unsigned char)
0xc0112350 FileVT::FileVT(String, unsigned char, FSNode*, unsigned char)
*fill* 0xc01124b1 0xf 00
.text 0xc01124c0 0x717 VTManager/VirtualTerminal-kbd.proto.o
0xc01124c0 VirtualTerminal::getKeypress(bool, bool)
0xc0112710 VirtualTerminal::keyPress(keypress_t)
0xc01128d0 VirtualTerminal::readLine(bool)
*fill* 0xc0112bd7 0x9 00
.text 0xc0112be0 0x1e0 VTManager/VirtualTerminal-sc.proto.o
0xc0112be0 VirtualTerminal::isBoxedSC()
0xc0112c00 VirtualTerminal::getHeightSC()
0xc0112c20 VirtualTerminal::getWidthSC()
0xc0112c40 VirtualTerminal::getKeypressSC(unsigned int)
0xc0112ca0 VirtualTerminal::putSC(unsigned int)
0xc0112cf0 VirtualTerminal::writeSC(unsigned int)
0xc0112d20 VirtualTerminal::scall(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int)
0xc0112d70 VirtualTerminal::readLineSC(unsigned int)
.text 0xc0112dc0 0x1a0 VTManager/VT.ns.o
0xc0112e00 VT::redrawScreen()
0xc0112e40 VT::unmap(SimpleVT*)
0xc0112ee0 VT::map(SimpleVT*)
.text 0xc0112f60 0xd69 Shell/KernelShell.class.o
0xc0112f60 KernelShell::~KernelShell()
0xc0112f80 KernelShell::~KernelShell()
0xc0112fa0 KernelShell::setup(DirectoryNode*, VirtualTerminal*)
0xc0113070 KernelShell::KernelShell(DirectoryNode*)
0xc0113100 KernelShell::KernelShell(DirectoryNode*)
0xc0113190 KernelShell::KernelShell(DirectoryNode*, VirtualTerminal*)
0xc01131a0 KernelShell::KernelShell(DirectoryNode*, VirtualTerminal*)
0xc01131b0 KernelShell::run()
0xc0113c90 shellRun(void*)
*fill* 0xc0113cc9 0x7 00
.text 0xc0113cd0 0x148a Shell/KernelShell-fs.class.o
0xc0113cd0 KernelShell::hexdump(Vector<String>&)
0xc0113f40 KernelShell::pwd(Vector<String>&)
0xc0114030 KernelShell::ls(Vector<String>&)
0xc01145a0 KernelShell::run(Vector<String>&)
0xc0114740 KernelShell::cd(Vector<String>&)
0xc0114940 KernelShell::wf(Vector<String>&)
0xc0114b90 KernelShell::rm(Vector<String>&)
0xc0114d20 KernelShell::mkdir(Vector<String>&)
0xc0114ea0 KernelShell::cat(Vector<String>&)
*fill* 0xc011515a 0x6 00
.text 0xc0115160 0x1930 Shell/KernelShell-sys.class.o
0xc0115160 KernelShell::devices(Vector<String>&)
0xc0115390 KernelShell::uptime(Vector<String>&)
0xc0115470 KernelShell::part(Vector<String>&)
0xc01159a0 KernelShell::free(Vector<String>&)
0xc0115e10 KernelShell::loadkeys(Vector<String>&)
0xc0116000 KernelShell::readblock(Vector<String>&)
0xc0116410 KernelShell::unmount(Vector<String>&)
0xc0116630 KernelShell::mount(Vector<String>&)
.text 0xc0116a90 0x63 Linker/Binary.proto.o
0xc0116a90 Binary::load(File&)
*fill* 0xc0116af3 0xd 00
.text 0xc0116b00 0x1db Linker/MelonBinary.class.o
0xc0116b00 MelonBinary::toProcess(Process*)
0xc0116b90 MelonBinary::~MelonBinary()
0xc0116bc0 MelonBinary::~MelonBinary()
0xc0116bf0 MelonBinary::~MelonBinary()
0xc0116c20 MelonBinary::load(File&)
*fill* 0xc0116cdb 0x5 00
.text 0xc0116ce0 0x347 Linker/ElfBinary.class.o
0xc0116ce0 ElfBinary::toProcess(Process*)
0xc0116dd0 ElfBinary::load(File&)
0xc0116f70 ElfBinary::~ElfBinary()
0xc0116fb0 ElfBinary::~ElfBinary()
0xc0116ff0 ElfBinary::~ElfBinary()
*fill* 0xc0117027 0x9 00
.text 0xc0117030 0xb8 ../Library/Common/cppsupport.wtf.o
0xc0117030 __cxa_pure_virtual
0xc0117040 __cxa_atexit
0xc0117050 __udivdi3
0xc0117090 __umoddi3
0xc01170c0 memmove
*fill* 0xc01170e8 0x8 00
.text 0xc01170f0 0x248 ../Library/Common/Bitset.class.o
0xc01170f0 Bitset::Bitset()
0xc0117100 Bitset::Bitset()
0xc0117110 Bitset::init(unsigned int, unsigned int*)
0xc0117150 Bitset::Bitset(unsigned int, unsigned int*)
0xc0117160 Bitset::Bitset(unsigned int, unsigned int*)
0xc0117170 Bitset::setBit(unsigned int)
0xc01171a0 Bitset::clearBit(unsigned int)
0xc01171d0 Bitset::testBit(unsigned int)
0xc0117200 Bitset::firstFreeBit()
0xc0117270 Bitset::usedBits()
0xc0117280 Bitset::~Bitset()
0xc01172a0 Bitset::~Bitset()
0xc01172c0 Bitset::Bitset(unsigned int)
0xc0117300 Bitset::Bitset(unsigned int)
*fill* 0xc0117338 0x8 00
.text 0xc0117340 0x1486 ../Library/Common/String.class.o
0xc0117340 String::toInt() const
0xc01173f0 String::toInt16() const
0xc01174b0 String::hex(unsigned int)
0xc0117570 String::compare(char const*, unsigned char) const
0xc01176c0 String::serialize() const
0xc0117710 String::append(char const*, unsigned char)
0xc01178d0 String::affect(char const*, unsigned char)
0xc0117a70 String::String(char const*, unsigned char)
0xc0117aa0 String::String(char const*, unsigned char)
0xc0117ad0 String::concat(WChar) const
0xc0117cb0 String::concat(String const&) const
0xc0117ea0 String::split(WChar) const
0xc0118030 String::concat(char const*, unsigned char) const
0xc01181a0 String::unserialize(unsigned int)
0xc01182d0 String::substr(int, int)
0xc0118470 String::number(int)
*fill* 0xc01187c6 0xa 00
.text 0xc01187d0 0x46f ../Library/Common/ByteArray.class.o
0xc01187d0 ByteArray::toString(unsigned char)
0xc0118870 ByteArray::resize(unsigned int)
0xc0118940 ByteArray::ByteArray(char const*)
0xc0118990 ByteArray::ByteArray(char const*)
0xc01189e0 ByteArray::affect(String const&, unsigned char)
*fill* 0xc0118c3f 0x1 00
.text 0xc0118c40 0x15a8 ../Library/Common/WChar.class.o
0xc0118c40 WChar::WChar()
0xc0118c50 WChar::WChar()
0xc0118c60 WChar::WChar(char)
0xc0118c70 WChar::WChar(char)
0xc0118c80 WChar::ucharLen(char const*, unsigned char)
0xc0118d50 WChar::affectAscii(char)
0xc0118d60 WChar::affectUtf8(char const*)
0xc0118e90 WChar::affectUtf16be(char const*)
0xc0118f90 WChar::affectUtf16le(char const*)
0xc0119080 WChar::affectUtf32be(char const*)
0xc01190d0 WChar::affectUtf32le(char const*)
0xc0119120 WChar::WChar(char const*, unsigned char)
0xc01191a0 WChar::utfLen(char const*, unsigned char)
0xc0119200 WChar::WChar(char const*, unsigned char)
0xc0119280 WChar::toAscii()
0xc01192c0 WChar::toUtf8()
0xc0119380 WChar::toUtf32be()
0xc01193b0 WChar::toUtf32le()
*fill* 0xc011a1e8 0x8 00
.text 0xc011a1f0 0x7c ../Library/Common/Rand.ns.o
0xc011a1f0 Rand::rand()
0xc011a260 Rand::max()
*fill* 0xc011a26c 0x4 00
.text 0xc011a270 0xfb ../Library/Common/CMem.ns.o
0xc011a270 CMem::memcpy(unsigned char*, unsigned char const*, unsigned int)
0xc011a2f0 CMem::memset(unsigned char*, unsigned char, int)
0xc011a320 CMem::memsetw(unsigned short*, unsigned short, int)
0xc011a350 CMem::strlen(char const*)
*fill* 0xc011a36b 0x5 00
.text 0xc011a370 0x635 ../Library/Common/Heap.class.o
0xc011a370 Heap::~Heap()
0xc011a380 Heap::~Heap()
0xc011a390 Heap::contract()
0xc011a470 Heap::free(void*)
0xc011a5c0 Heap::expand(unsigned int)
0xc011a6b0 Heap::alloc(unsigned int, bool)
0xc011a800 Heap::create(unsigned int, unsigned int, unsigned int, PageDirectory*, bool, bool)
0xc011a930 Heap::Heap()
0xc011a970 Heap::Heap()
*fill* 0xc011a9a5 0xb 00
.text 0xc011a9b0 0x1dd ../Library/Common/Heap-index.class.o
0xc011a9b0 Heap::insertIntoIndex(heap_header_t*)
0xc011aaa0 Heap::findIndexEntry(heap_header_t*)
0xc011aae0 Heap::removeFromIndex(unsigned int)
0xc011ab20 Heap::removeFromIndex(heap_header_t*)
*fill* 0xc011ab8d 0x3 00
.text 0xc011ab90 0xc1 ../Library/Common/Mutex.class.o
0xc011ab90 atomic_exchange(unsigned int*, unsigned int)
0xc011aba0 Mutex::Mutex(unsigned int)
0xc011abb0 Mutex::Mutex(unsigned int)
0xc011abc0 Mutex::lock()
0xc011abe0 Mutex::unlock()
0xc011abf0 Mutex::locked()
0xc011ac00 Mutex::waitLock()
*fill* 0xc011ac51 0xf 00
.text 0xc011ac60 0x2f4 ../Library/Common/TextFile.class.o
0xc011ac60 TextFile::readLine(char)
0xc011ae80 TextFile::write(String, bool)
*fill* 0xc011af54 0xc 00
.text 0xc011af60 0x5dc VFS/Partition.class.o
0xc011af60 Partition::getDevice()
0xc011af70 Partition::getStartBlock()
0xc011af80 Partition::getBlockCount()
0xc011af90 Partition::getPartNumber()
0xc011afa0 Partition::blockSize()
0xc011afc0 Partition::Partition(BlockDevice*, unsigned char, unsigned long long, unsigned long long)
0xc011b060 Partition::Partition(BlockDevice*, unsigned char, unsigned long long, unsigned long long)
0xc011b100 Partition::writeBlocks(unsigned long long, unsigned int, unsigned char*)
0xc011b200 Partition::readBlocks(unsigned long long, unsigned int, unsigned char*)
0xc011b2a0 Partition::write(unsigned long long, unsigned int, unsigned char*)
0xc011b440 Partition::read(unsigned long long, unsigned int, unsigned char*)
*fill* 0xc011b53c 0x4 00
.text 0xc011b540 0xb8d VFS/Part.ns.o
0xc011b540 Part::getDeviceID(BlockDevice*)
0xc011b5f0 Part::part(BlockDevice*, unsigned int)
0xc011b670 Part::unregisterDevice(BlockDevice*)
0xc011b910 Part::readPartitionTable(BlockDevice*)
0xc011bae0 Part::registerDevice(BlockDevice*)
0xc011bba0 Part::dev(String, unsigned int)
0xc011bd40 Part::partIdentifier(Partition*)
*fill* 0xc011c0cd 0x3 00
.text 0xc011c0d0 0x1509 VFS/VFS.ns.o
0xc011c0d0 VFS::getRootNode()
0xc011c120 VFS::unregisterFilesystem(FileSystem*)
0xc011c1c0 VFS::registerFilesystem(FileSystem*)
0xc011c260 VFS::remove(FSNode*)
0xc011c2b0 VFS::find(String const&, FSNode*)
0xc011c3e0 VFS::remove(String const&, FSNode*)
0xc011c410 VFS::unmount(FileSystem*)
0xc011c460 VFS::path(FSNode*)
0xc011c6c0 FileSystem::~FileSystem()
0xc011c710 FileSystem::~FileSystem()
0xc011c760 FileSystem::~FileSystem()
0xc011c7b0 VFS::createDirectory(String const&, FSNode*, bool)
0xc011c9b0 VFS::createFile(String const&, FSNode*, bool)
0xc011cbb0 VFS::mount(String, VirtualTerminal*, multiboot_info_t*)
*fill* 0xc011d5d9 0x7 00
.text 0xc011d5e0 0xaf1 VFS/FSNode-sc.proto.o
0xc011d5e0 FSNode::typeSC()
0xc011d600 FSNode::getParentSC()
0xc011d620 FSNode::setCwdSC()
0xc011d650 FSNode::getNameSC()
0xc011d660 FSNode::getLengthSC()
0xc011d6a0 FSNode::scall(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int)
0xc011d7b0 FSNode::getPathSC()
0xc011d800 FSNode::writable(User*)
0xc011dae0 FSNode::removeSC()
0xc011db20 FSNode::readable(User*)
0xc011ddf0 FSNode::accessible()
0xc011de10 FSNode::runnable(User*)
*fill* 0xc011e0d1 0xf 00
.text 0xc011e0e0 0x930 VFS/File.class.o
0xc011e0e0 File::read(unsigned int, unsigned char*)
0xc011e140 File::write(unsigned int, unsigned char*)
0xc011e1c0 File::write(ByteArray&)
0xc011e240 File::seek(unsigned long long, unsigned char)
0xc011e380 File::eof()
0xc011e3c0 File::close(bool)
0xc011e430 File::read(ByteArray&)
0xc011e4d0 File::open(String, unsigned char, FSNode*, bool)
0xc011e690 File::~File()
0xc011e6d0 File::~File()
0xc011e700 File::~File()
0xc011e730 File::File()
0xc011e780 File::File()
0xc011e7d0 File::File(String, unsigned char, FSNode*)
0xc011e8f0 File::File(String, unsigned char, FSNode*)
.text 0xc011ea10 0x54e VFS/File-sc.class.o
0xc011ea10 File::validSC()
0xc011ea20 File::eofSC()
0xc011ea40 File::lengthSC()
0xc011ea70 File::positionSC()
0xc011eaa0 File::seekSC(unsigned int, unsigned int, unsigned int)
0xc011ead0 File::writeSC(unsigned int, unsigned int)
0xc011eb20 File::readSC(unsigned int, unsigned int)
0xc011eb80 File::closeSC()
0xc011ebb0 File::scall(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int)
0xc011ed30 File::accessible()
*fill* 0xc011ef5e 0x2 00
.text 0xc011ef60 0x8db VFS/DirectoryNode.class.o
0xc011ef60 DirectoryNode::getParent()
0xc011ef70 DirectoryNode::unmountable()
0xc011f000 DirectoryNode::mount(DirectoryNode*)
0xc011f010 DirectoryNode::unmount()
0xc011f020 DirectoryNode::loadContent()
0xc011f080 DirectoryNode::getLength()
0xc011f0d0 DirectoryNode::mountpointable()
0xc011f110 DirectoryNode::removable()
0xc011f160 DirectoryNode::getChild(unsigned int)
0xc011f1b0 DirectoryNode::getChild(String const&)
0xc011f270 DirectoryNode::remove(FSNode*)
0xc011f390 DirectoryNode::getNameChildSC(unsigned int)
0xc011f3e0 DirectoryNode::getIdxChildSC(unsigned int)
0xc011f430 DirectoryNode::~DirectoryNode()
0xc011f4d0 DirectoryNode::~DirectoryNode()
0xc011f580 DirectoryNode::~DirectoryNode()
0xc011f620 DirectoryNode::createFile(String const&)
0xc011f730 DirectoryNode::createDirectory(String const&)
*fill* 0xc011f83b 0x5 00
.text 0xc011f840 0x2595 UserManager/Usr.ns.o
0xc011f840 Usr::user(unsigned int)
0xc011f880 Usr::group(unsigned int)
0xc011f8c0 Usr::uid()
0xc011f8d0 Usr::user()
0xc011f900 Usr::group(String)
0xc011fa10 Usr::user(String)
0xc011fb20 Usr::uid(String)
0xc011fbf0 Usr::save()
0xc01206f0 Usr::load()
*fill* 0xc0121dd5 0xb 00
.text 0xc0121de0 0xd8c FileSystems/RamFS/RamFS.class.o
0xc0121de0 RamFS::RamFS()
0xc0121e10 RamFS::RamFS()
0xc0121e40 RamFS::unmount()
0xc0121e50 RamFS::setName(FSNode*, String)
0xc0121e60 RamFS::setPermissions(FSNode*, unsigned int)
0xc0121e70 RamFS::setUid(FSNode*, unsigned int)
0xc0121e80 RamFS::setGid(FSNode*, unsigned int)
0xc0121e90 RamFS::setParent(FSNode*, FSNode*)
0xc0121eb0 RamFS::loadContents(DirectoryNode*)
0xc0121ec0 RamFS::remove(DirectoryNode*, FSNode*)
0xc0121f10 RamFS::truncate(FileNode*)
0xc0121f50 RamFS::read(FileNode*, unsigned long long, unsigned int, unsigned char*)
0xc0121fd0 RamFS::write(FileNode*, unsigned long long, unsigned int, unsigned char*)
0xc0122120 RamFS::~RamFS()
0xc0122150 RamFS::~RamFS()
0xc0122170 RamFS::~RamFS()
0xc0122190 RamFS::mount(unsigned char*, unsigned int, DirectoryNode*, bool)
0xc0122690 RamFS::mount(unsigned int, DirectoryNode*)
0xc0122850 RamFS::createFile(DirectoryNode*, String)
0xc01229f0 RamFS::createDirectory(DirectoryNode*, String)
*fill* 0xc0122b6c 0x4 00
.text 0xc0122b70 0x1ac5 FileSystems/FAT/FATFS.class.o
0xc0122b70 FATFS::unmount()
0xc0122b80 FATFS::setName(FSNode*, String)
0xc0122b90 FATFS::setPermissions(FSNode*, unsigned int)
0xc0122ba0 FATFS::setUid(FSNode*, unsigned int)
0xc0122bb0 FATFS::setGid(FSNode*, unsigned int)
0xc0122bc0 FATFS::setParent(FSNode*, FSNode*)
0xc0122bd0 FATFS::write(FileNode*, unsigned long long, unsigned int, unsigned char*)
0xc0122be0 FATFS::truncate(FileNode*)
0xc0122bf0 FATFS::createFile(DirectoryNode*, String)
0xc0122c00 FATFS::createDirectory(DirectoryNode*, String)
0xc0122c10 FATFS::remove(DirectoryNode*, FSNode*)
0xc0122c20 FATFS::readCluster(unsigned int, unsigned char*)
0xc0122ed0 FATFS::nextCluster(unsigned int)
0xc0123080 FATFS::read(FileNode*, unsigned long long, unsigned int, unsigned char*)
0xc0123320 FATFS::mount(Partition*, DirectoryNode*, bool)
0xc0123cb0 FATFS::loadContents(DirectoryNode*)
*fill* 0xc0124635 0xb 00
.text 0xc0124640 0xc69 SyscallManager/IDT.ns.o
0xc0124640 IDT::setGate(unsigned char, unsigned int, unsigned short, unsigned char)
0xc0124680 IDT::init()
0xc0125020 interrupt_handler
*fill* 0xc01252a9 0x7 00
.text 0xc01252b0 0x6ea SyscallManager/Ressource.class.o
0xc01252b0 Ressource::doCall(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)
0xc01254a0 Ressource::addCallTable(call_t*)
0xc01254f0 Ressource::Ressource(unsigned char, call_t*)
0xc0125560 Ressource::Ressource(unsigned char, call_t*)
0xc01255d0 Ressource::call(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)
0xc0125880 Ressource::~Ressource()
0xc01258e0 Ressource::~Ressource()
0xc0125940 Ressource::~Ressource()
*fill* 0xc012599a 0x6 00
.text 0xc01259a0 0x23c SyscallManager/Res.ns.o
0xc01259a0 Res::unregisterRes(unsigned int)
0xc01259c0 Res::call(unsigned int, unsigned char, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)
0xc0125ab0 Res::expand()
0xc0125b40 Res::registerRes(Ressource*)
*fill* 0xc0125bdc 0x4 00
.text 0xc0125be0 0x22a SyscallManager/IDT.wtf.o
0xc0125be0 idt_flush
0xc0125be8 isr0
0xc0125bf2 isr1
0xc0125bfc isr2
0xc0125c06 isr3
0xc0125c10 isr4
0xc0125c1a isr5
0xc0125c24 isr6
0xc0125c2e isr7
0xc0125c38 isr8
0xc0125c40 isr9
0xc0125c4a isr10
0xc0125c52 isr11
0xc0125c5a isr12
0xc0125c62 isr13
0xc0125c6a isr14
0xc0125c72 isr15
0xc0125c7c isr16
0xc0125c86 isr17
0xc0125c90 isr18
0xc0125c9a isr19
0xc0125ca4 isr20
0xc0125cae isr21
0xc0125cb8 isr22
0xc0125cc2 isr23
0xc0125ccc isr24
0xc0125cd6 isr25
0xc0125ce0 isr26
0xc0125cea isr27
0xc0125cf4 isr28
0xc0125cfe isr29
0xc0125d08 isr30
0xc0125d12 isr31
0xc0125d1c irq0
0xc0125d26 irq1
0xc0125d30 irq2
0xc0125d3a irq3
0xc0125d44 irq4
0xc0125d4e irq5
0xc0125d58 irq6
0xc0125d62 irq7
0xc0125d6c irq8
0xc0125d76 irq9
0xc0125d80 irq10
0xc0125d8a irq11
0xc0125d94 irq12
0xc0125d9e irq13
0xc0125da8 irq14
0xc0125db2 irq15
0xc0125dbc int64
0xc0125dc6 int65
0xc0125dd0 int66
*fill* 0xc0125e0a 0x6 00
.text 0xc0125e10 0x30c Devices/Display/VGATextOutput.class.o
0xc0125e10 VGATextOutput::clear()
0xc0125e30 VGATextOutput::textScroll(unsigned short, unsigned short, unsigned short, unsigned short, unsigned char)
0xc0125f20 VGATextOutput::moveCursor(unsigned short, unsigned short)
0xc0125f90 VGATextOutput::putChar(unsigned short, unsigned short, WChar, unsigned char)
0xc0125fe0 VGATextOutput::setMode(Disp::mode_t&)
0xc0126040 VGATextOutput::getModes(Vector<Disp::mode_t>&)
0xc01260c0 VGATextOutput::getName()
0xc01260f0 VGATextOutput::getClass()
*fill* 0xc012611c 0x4 00
.text 0xc0126120 0x3bf Devices/Display/GraphicDisplay.proto.o
0xc0126120 GraphicDisplay::getCsrBuff()
0xc01261b0 GraphicDisplay::putCsrBuff()
0xc0126250 GraphicDisplay::drawCsr()
0xc01262f0 GraphicDisplay::moveCursor(unsigned short, unsigned short)
0xc0126340 GraphicDisplay::putChar(unsigned short, unsigned short, WChar, unsigned char)
0xc01263c0 GraphicDisplay::drawChar(unsigned short, unsigned short, WChar, unsigned char)
*fill* 0xc01264df 0x1 00
.text 0xc01264e0 0xf8d Devices/Display/VESADisplay.class.o
0xc01264e0 VESADisplay::clear()
0xc0126530 VESADisplay::getPix(unsigned short, unsigned short)
0xc0126610 VESADisplay::textScroll(unsigned short, unsigned short, unsigned short, unsigned short, unsigned char)
0xc0126790 VESADisplay::drawChar(unsigned short, unsigned short, WChar, unsigned char)
0xc0126bb0 VESADisplay::setPalette(unsigned char, unsigned int)
0xc0126c40 VESADisplay::unsetMode()
0xc0126cc0 VESADisplay::getModeInfo(unsigned short)
0xc0126d60 VESADisplay::setMode(Disp::mode_t&)
0xc0126fc0 VESADisplay::getCtrlrInfo()
0xc0127090 VESADisplay::getModes(Vector<Disp::mode_t>&)
0xc0127270 VESADisplay::getName()
0xc01272a0 VESADisplay::getClass()
0xc01272d0 VESADisplay::get8Bit(unsigned int)
0xc01273a0 VESADisplay::putPix(unsigned short, unsigned short, unsigned int)
*fill* 0xc012746d 0x3 00
.text 0xc0127470 0x1c5 Devices/Keyboard/PS2Keyboard.class.o
0xc0127470 PS2Keyboard::updateLeds(unsigned int)
0xc01274b0 PS2Keyboard::handleIRQ(registers_t, int)
0xc0127520 PS2Keyboard::getName()
0xc0127550 PS2Keyboard::getClass()
0xc0127580 PS2Keyboard::PS2Keyboard()
0xc01275e0 PS2Keyboard::PS2Keyboard()
*fill* 0xc0127635 0xb 00
.text 0xc0127640 0xa2b Devices/Floppy/FloppyController.class.o
0xc0127640 FloppyController::handleIRQ(registers_t, int)
0xc0127670 FloppyController::waitIrq()
0xc01276b0 FloppyController::readData()
0xc0127720 FloppyController::writeCmd(unsigned char)
0xc01277b0 FloppyController::checkInterrupt(int*, int*)
0xc01277f0 FloppyController::setDOR()
0xc0127880 FloppyController::setNoActiveDrive()
0xc0127890 FloppyController::reset()
0xc0127920 FloppyController::dmaRelease()
0xc0127940 FloppyController::setActiveDrive(unsigned char)
0xc0127980 FloppyController::dmaInit(unsigned char, unsigned int)
0xc0127ae0 FloppyController::getClass()
0xc0127b10 FloppyController::FloppyController(unsigned int, unsigned char)
0xc0127b90 FloppyController::FloppyController(unsigned int, unsigned char)
0xc0127c10 floppyMotorTimer(void*)
0xc0127d00 FloppyController::getName()
0xc0127ea0 FloppyController::detect()
*fill* 0xc012806b 0x5 00
.text 0xc0128070 0x14a8 Devices/Floppy/FloppyDrive.class.o
0xc0128070 FloppyDrive::FloppyDrive(FloppyController*, unsigned char, unsigned char)
0xc0128120 FloppyDrive::FloppyDrive(FloppyController*, unsigned char, unsigned char)
0xc01281d0 FloppyDrive::blocks()
0xc01281f0 FloppyDrive::writeBlocks(unsigned long long, unsigned int, unsigned char*)
0xc0128200 FloppyDrive::blockSize()
0xc0128210 FloppyDrive::chs2lba(unsigned int, unsigned int, unsigned int)
0xc0128240 FloppyDrive::readOnly()
0xc01282c0 FloppyDrive::getClass()
0xc01282f0 FloppyDrive::killMotor()
0xc0128310 FloppyDrive::setMotorState(bool)
0xc01283b0 FloppyDrive::getName()
0xc0128470 FloppyDrive::calibrate()
0xc0128680 FloppyDrive::setup()
0xc0128730 FloppyDrive::seek(unsigned int, int, bool)
0xc0128930 FloppyDrive::doTrack(unsigned int, unsigned char)
0xc0129370 FloppyDrive::readBlocks(unsigned long long, unsigned int, unsigned char*)
*fill* 0xc0129518 0x8 00
.text 0xc0129520 0x416 Devices/ATA/ATAController.class.o
0xc0129520 ATAController::identify(bool)
0xc0129680 ATAController::ATAController(unsigned int, unsigned char)
0xc0129710 ATAController::ATAController(unsigned int, unsigned char)
0xc01297a0 ATAController::detect()
0xc0129870 ATAController::getClass()
0xc01298a0 ATAController::getName()
*fill* 0xc0129936 0xa 00
.text 0xc0129940 0x785 Devices/ATA/ATADrive.class.o
0xc0129940 ATADrive::ATADrive(ATAController*, bool, unsigned int, unsigned short*)
0xc0129980 ATADrive::ATADrive(ATAController*, bool, unsigned int, unsigned short*)
0xc01299c0 ATADrive::readOnly()
0xc01299d0 ATADrive::blocks()
0xc01299e0 ATADrive::blockSize()
0xc01299f0 ATADrive::cmdCommon(unsigned int, unsigned int)
0xc0129ad0 ATADrive::writeBlocks(unsigned long long, unsigned int, unsigned char*)
0xc0129be0 ATADrive::readBlocks(unsigned long long, unsigned int, unsigned char*)
0xc0129d00 ATADrive::getClass()
0xc0129d30 ATADrive::getName()
*fill* 0xc012a0c5 0xb 00
.text 0xc012a0d0 0x1e6 Devices/Timer.class.o
0xc012a0d0 Timer::uptime()
0xc012a0e0 Timer::time()
0xc012a110 Timer::handleIRQ(registers_t, int)
0xc012a140 Timer::setFrequency(unsigned char)
0xc012a1a0 Timer::getName()
0xc012a1d0 Timer::getClass()
0xc012a200 Timer::Timer(unsigned char)
0xc012a260 Timer::Timer(unsigned char)
.iplt 0xc012a2b8 0x0 load address 0x0012a2b6
.iplt 0x00000000 0x0 Core/loader.wtf.o
.text._ZN6DeviceD1Ev
0xc012a2c0 0xe load address 0x0012a2c0
.text._ZN6DeviceD1Ev
0xc012a2c0 0xe Core/kmain.wtf.o
0xc012a2c0 Device::~Device()
.text._ZN6Device9handleIRQE11registers_ti
0xc012a2d0 0x5 load address 0x0012a2d0
.text._ZN6Device9handleIRQE11registers_ti
0xc012a2d0 0x5 Core/kmain.wtf.o
0xc012a2d0 Device::handleIRQ(registers_t, int)
.text._ZN7DisplayD1Ev
0xc012a2e0 0xe load address 0x0012a2e0
.text._ZN7DisplayD1Ev
0xc012a2e0 0xe Core/kmain.wtf.o
0xc012a2e0 Display::~Display()
.text._ZN7Display9unsetModeEv
0xc012a2f0 0x5 load address 0x0012a2f0
.text._ZN7Display9unsetModeEv
0xc012a2f0 0x5 Core/kmain.wtf.o
0xc012a2f0 Display::unsetMode()
.text._ZN7Display10textScrollEtttth
0xc012a300 0x7 load address 0x0012a300
.text._ZN7Display10textScrollEtttth
0xc012a300 0x7 Core/kmain.wtf.o
0xc012a300 Display::textScroll(unsigned short, unsigned short, unsigned short, unsigned short, unsigned char)
.text._ZN7Display6putPixEttj
0xc012a310 0x5 load address 0x0012a310
.text._ZN7Display6putPixEttj
0xc012a310 0x5 Core/kmain.wtf.o
0xc012a310 Display::putPix(unsigned short, unsigned short, unsigned int)
.text._ZN7Display6getPixEtt
0xc012a320 0x7 load address 0x0012a320
.text._ZN7Display6getPixEtt
0xc012a320 0x7 Core/kmain.wtf.o
0xc012a320 Display::getPix(unsigned short, unsigned short)
.text._ZN7DisplayD0Ev
0xc012a330 0x15 load address 0x0012a330
.text._ZN7DisplayD0Ev
0xc012a330 0x15 Core/kmain.wtf.o
0xc012a330 Display::~Display()
.text._ZN6DeviceD0Ev
0xc012a350 0x15 load address 0x0012a350
.text._ZN6DeviceD0Ev
0xc012a350 0x15 Core/kmain.wtf.o
0xc012a350 Device::~Device()
.text._ZN9ByteArrayD0Ev
0xc012a370 0x2c load address 0x0012a370
.text._ZN9ByteArrayD0Ev
0xc012a370 0x2c Core/kmain.wtf.o
0xc012a370 ByteArray::~ByteArray()
.text._ZN11BasicStringIhED0Ev
0xc012a3a0 0x2c load address 0x0012a3a0
.text._ZN11BasicStringIhED0Ev
0xc012a3a0 0x2c Core/kmain.wtf.o
0xc012a3a0 BasicString<unsigned char>::~BasicString()
.text._ZN11BasicStringIhED1Ev
0xc012a3d0 0x22 load address 0x0012a3d0
.text._ZN11BasicStringIhED1Ev
0xc012a3d0 0x22 Core/kmain.wtf.o
0xc012a3d0 BasicString<unsigned char>::~BasicString()
.text._ZN9ByteArrayD1Ev
0xc012a400 0x22 load address 0x0012a400
.text._ZN9ByteArrayD1Ev
0xc012a400 0x22 Core/kmain.wtf.o
0xc012a400 ByteArray::~ByteArray()
.text._ZN6StringD0Ev
0xc012a430 0x2c load address 0x0012a430
.text._ZN6StringD0Ev
0xc012a430 0x2c Core/kmain.wtf.o
0xc012a430 String::~String()
.text._ZN11BasicStringI5WCharED0Ev
0xc012a460 0x2c load address 0x0012a460
.text._ZN11BasicStringI5WCharED0Ev
0xc012a460 0x2c Core/kmain.wtf.o
0xc012a460 BasicString<WChar>::~BasicString()
.text._ZN11BasicStringI5WCharED1Ev
0xc012a490 0x22 load address 0x0012a490
.text._ZN11BasicStringI5WCharED1Ev
0xc012a490 0x22 Core/kmain.wtf.o
0xc012a490 BasicString<WChar>::~BasicString()
.text._ZN6StringD1Ev
0xc012a4c0 0x22 load address 0x0012a4c0
.text._ZN6StringD1Ev
0xc012a4c0 0x22 Core/kmain.wtf.o
0xc012a4c0 String::~String()
.text._ZN6VectorI6StringED1Ev
0xc012a4f0 0x50 load address 0x0012a4f0
.text._ZN6VectorI6StringED1Ev
0xc012a4f0 0x50 Core/kmain.wtf.o
0xc012a4f0 Vector<String>::~Vector()
.text._ZN11BasicStringI5WCharE6affectERKS1_
0xc012a540 0xa3 load address 0x0012a540
.text._ZN11BasicStringI5WCharE6affectERKS1_
0xc012a540 0xa3 Core/kmain.wtf.o
0xc012a540 BasicString<WChar>::affect(BasicString<WChar> const&)
.text._ZN6StringpLERKS_
0xc012a5f0 0xbe load address 0x0012a5f0
.text._ZN6StringpLERKS_
0xc012a5f0 0xbe Core/kmain.wtf.o
0xc012a5f0 String::operator+=(String const&)
.text._ZN8TextFileD0Ev
0xc012a6b0 0x25 load address 0x0012a6b0
.text._ZN8TextFileD0Ev
0xc012a6b0 0x25 Core/kmain.wtf.o
0xc012a6b0 TextFile::~TextFile()
.text._ZN8TextFileD1Ev
0xc012a6e0 0x15 load address 0x0012a6e0
.text._ZN8TextFileD1Ev
0xc012a6e0 0x15 Core/kmain.wtf.o
0xc012a6e0 TextFile::~TextFile()
.text._ZN6VectorIN4Disp6mode_tEED1Ev
0xc012a700 0x22 load address 0x0012a700
.text._ZN6VectorIN4Disp6mode_tEED1Ev
0xc012a700 0x22 DeviceManager/Disp.ns.o
0xc012a700 Vector<Disp::mode_t>::~Vector()
.text._ZN6VectorIP6DeviceED1Ev
0xc012a730 0x22 load address 0x0012a730
.text._ZN6VectorIP6DeviceED1Ev
0xc012a730 0x22 DeviceManager/Dev.ns.o
0xc012a730 Vector<Device*>::~Vector()
.text._ZN6VectorIP6DeviceE4pushERKS1_
0xc012a760 0x69 load address 0x0012a760
.text._ZN6VectorIP6DeviceE4pushERKS1_
0xc012a760 0x69 DeviceManager/Dev.ns.o
0xc012a760 Vector<Device*>::push(Device* const&)
.text._ZN6VectorIP6ThreadED1Ev
0xc012a7d0 0x22 load address 0x0012a7d0
.text._ZN6VectorIP6ThreadED1Ev
0xc012a7d0 0x22 TaskManager/Process.class.o
0xc012a7d0 Vector<Thread*>::~Vector()
.text._ZN6VectorI6StringE4pushERKS0_
0xc012a800 0x108 load address 0x0012a800
.text._ZN6VectorI6StringE4pushERKS0_
0xc012a800 0x108 TaskManager/Process.class.o
0xc012a800 Vector<String>::push(String const&)
.text._ZN7Process6getUidEv
0xc012a910 0xb load address 0x0012a910
.text._ZN7Process6getUidEv
0xc012a910 0xb TaskManager/Process-sc.class.o
0xc012a910 Process::getUid()
.text._ZN7Process6getPidEv
0xc012a920 0xb load address 0x0012a920
.text._ZN7Process6getPidEv
0xc012a920 0xb TaskManager/Process-sc.class.o
0xc012a920 Process::getPid()
.text._ZN7Process7getPpidEv
0xc012a930 0xb load address 0x0012a930
.text._ZN7Process7getPpidEv
0xc012a930 0xb TaskManager/Process-sc.class.o
0xc012a930 Process::getPpid()
.text._ZN6StringC1ERKS_
0xc012a940 0xa9 load address 0x0012a940
.text._ZN6StringC1ERKS_
0xc012a940 0xa9 TaskManager/Process-sc.class.o
0xc012a940 String::String(String const&)
.text._ZN9V86ThreadD1Ev
0xc012a9f0 0x15 load address 0x0012a9f0
.text._ZN9V86ThreadD1Ev
0xc012a9f0 0x15 TaskManager/V86/V86Thread.class.o
0xc012a9f0 V86Thread::~V86Thread()
.text._ZN9V86ThreadD0Ev
0xc012aa10 0x25 load address 0x0012aa10
.text._ZN9V86ThreadD0Ev
0xc012aa10 0x25 TaskManager/V86/V86Thread.class.o
0xc012aa10 V86Thread::~V86Thread()
.text._ZN15VirtualTerminal10accessibleEv
0xc012aa40 0xa load address 0x0012aa40
.text._ZN15VirtualTerminal10accessibleEv
0xc012aa40 0xa VTManager/VirtualTerminal.proto.o
0xc012aa40 VirtualTerminal::accessible()
.text._ZN15VirtualTerminal12updateCursorEv
0xc012aa50 0x5 load address 0x0012aa50
.text._ZN15VirtualTerminal12updateCursorEv
0xc012aa50 0x5 VTManager/VirtualTerminal.proto.o
0xc012aa50 VirtualTerminal::updateCursor()
.text._ZN15VirtualTerminal6heightEv
0xc012aa60 0x7 load address 0x0012aa60
.text._ZN15VirtualTerminal6heightEv
0xc012aa60 0x7 VTManager/VirtualTerminal.proto.o
0xc012aa60 VirtualTerminal::height()
.text._ZN15VirtualTerminal5widthEv
0xc012aa70 0x7 load address 0x0012aa70
.text._ZN15VirtualTerminal5widthEv
0xc012aa70 0x7 VTManager/VirtualTerminal.proto.o
0xc012aa70 VirtualTerminal::width()
.text._ZN8SimpleVT7isBoxedEv
0xc012aa80 0xa load address 0x0012aa80
.text._ZN8SimpleVT7isBoxedEv
0xc012aa80 0xa VTManager/SimpleVT.class.o
0xc012aa80 SimpleVT::isBoxed()
.text._ZN8SimpleVT6heightEv
0xc012aa90 0xe load address 0x0012aa90
.text._ZN8SimpleVT6heightEv
0xc012aa90 0xe VTManager/SimpleVT.class.o
0xc012aa90 SimpleVT::height()
.text._ZN8SimpleVT5widthEv
0xc012aaa0 0xe load address 0x0012aaa0
.text._ZN8SimpleVT5widthEv
0xc012aaa0 0xe VTManager/SimpleVT.class.o
0xc012aaa0 SimpleVT::width()
.text._ZN6PipeVT7isBoxedEv
0xc012aab0 0x7 load address 0x0012aab0
.text._ZN6PipeVT7isBoxedEv
0xc012aab0 0x7 VTManager/PipeVT.class.o
0xc012aab0 PipeVT::isBoxed()
.text._ZN6PipeVTD1Ev
0xc012aac0 0x15 load address 0x0012aac0
.text._ZN6PipeVTD1Ev
0xc012aac0 0x15 VTManager/PipeVT.class.o
0xc012aac0 PipeVT::~PipeVT()
.text._ZN6PipeVTD0Ev
0xc012aae0 0x25 load address 0x0012aae0
.text._ZN6PipeVTD0Ev
0xc012aae0 0x25 VTManager/PipeVT.class.o
0xc012aae0 PipeVT::~PipeVT()
.text._ZN6FileVT7isBoxedEv
0xc012ab10 0x7 load address 0x0012ab10
.text._ZN6FileVT7isBoxedEv
0xc012ab10 0x7 VTManager/FileVT.class.o
0xc012ab10 FileVT::isBoxed()
.text._ZN6FileVTD0Ev
0xc012ab20 0x59 load address 0x0012ab20
.text._ZN6FileVTD0Ev
0xc012ab20 0x59 VTManager/FileVT.class.o
0xc012ab20 FileVT::~FileVT()
.text._ZN6FileVTD1Ev
0xc012ab80 0x51 load address 0x0012ab80
.text._ZN6FileVTD1Ev
0xc012ab80 0x51 VTManager/FileVT.class.o
0xc012ab80 FileVT::~FileVT()
.text._ZN6VectorIP8SimpleVTED1Ev
0xc012abe0 0x22 load address 0x0012abe0
.text._ZN6VectorIP8SimpleVTED1Ev
0xc012abe0 0x22 VTManager/VT.ns.o
0xc012abe0 Vector<SimpleVT*>::~Vector()
.text._ZN6BinaryD1Ev
0xc012ac10 0xe load address 0x0012ac10
.text._ZN6BinaryD1Ev
0xc012ac10 0xe Linker/MelonBinary.class.o
0xc012ac10 Binary::~Binary()
.text._ZN6BinaryD0Ev
0xc012ac20 0x15 load address 0x0012ac20
.text._ZN6BinaryD0Ev
0xc012ac20 0x15 Linker/MelonBinary.class.o
0xc012ac20 Binary::~Binary()
.text._ZN10BlockCacheI11BlockDeviceE4initEj
0xc012ac40 0x8b load address 0x0012ac40
.text._ZN10BlockCacheI11BlockDeviceE4initEj
0xc012ac40 0x8b VFS/Partition.class.o
0xc012ac40 BlockCache<BlockDevice>::init(unsigned int)
.text._ZN10BlockCacheI11BlockDeviceE8setCacheEyPhb
0xc012acd0 0x1a7 load address 0x0012acd0
.text._ZN10BlockCacheI11BlockDeviceE8setCacheEyPhb
0xc012acd0 0x1a7 VFS/Partition.class.o
0xc012acd0 BlockCache<BlockDevice>::setCache(unsigned long long, unsigned char*, bool)
.text._ZN10BlockCacheI11BlockDeviceE10readBlocksEyjPh
0xc012ae80 0x139 load address 0x0012ae80
.text._ZN10BlockCacheI11BlockDeviceE10readBlocksEyjPh
0xc012ae80 0x139 VFS/Partition.class.o
0xc012ae80 BlockCache<BlockDevice>::readBlocks(unsigned long long, unsigned int, unsigned char*)
.text._ZN6VectorIP9PartitionED1Ev
0xc012afc0 0x22 load address 0x0012afc0
.text._ZN6VectorIP9PartitionED1Ev
0xc012afc0 0x22 VFS/Part.ns.o
0xc012afc0 Vector<Partition*>::~Vector()
.text._ZN6VectorIP11BlockDeviceED1Ev
0xc012aff0 0x22 load address 0x0012aff0
.text._ZN6VectorIP11BlockDeviceED1Ev
0xc012aff0 0x22 VFS/Part.ns.o
0xc012aff0 Vector<BlockDevice*>::~Vector()
.text._ZN6VectorIP10FileSystemED1Ev
0xc012b020 0x22 load address 0x0012b020
.text._ZN6VectorIP10FileSystemED1Ev
0xc012b020 0x22 VFS/VFS.ns.o
0xc012b020 Vector<FileSystem*>::~Vector()
.text._ZN6VectorI6StringE3popEv
0xc012b050 0x6c load address 0x0012b050
.text._ZN6VectorI6StringE3popEv
0xc012b050 0x6c VFS/VFS.ns.o
0xc012b050 Vector<String>::pop()
.text._ZN6FSNode4usedEv
0xc012b0c0 0x7 load address 0x0012b0c0
.text._ZN6FSNode4usedEv
0xc012b0c0 0x7 VFS/FSNode-sc.proto.o
0xc012b0c0 FSNode::used()
.text._ZN6FSNode9getLengthEv
0xc012b0d0 0xe load address 0x0012b0d0
.text._ZN6FSNode9getLengthEv
0xc012b0d0 0xe VFS/FSNode-sc.proto.o
0xc012b0d0 FSNode::getLength()
.text._ZN6FSNode14getPermissionsEv
0xc012b0e0 0xb load address 0x0012b0e0
.text._ZN6FSNode14getPermissionsEv
0xc012b0e0 0xb VFS/FSNode-sc.proto.o
0xc012b0e0 FSNode::getPermissions()
.text._ZN6FSNode6getUidEv
0xc012b0f0 0xb load address 0x0012b0f0
.text._ZN6FSNode6getUidEv
0xc012b0f0 0xb VFS/FSNode-sc.proto.o
0xc012b0f0 FSNode::getUid()
.text._ZN6FSNode6getGidEv
0xc012b100 0xb load address 0x0012b100
.text._ZN6FSNode6getGidEv
0xc012b100 0xb VFS/FSNode-sc.proto.o
0xc012b100 FSNode::getGid()
.text._ZN6FSNode9getParentEv
0xc012b110 0xb load address 0x0012b110
.text._ZN6FSNode9getParentEv
0xc012b110 0xb VFS/FSNode-sc.proto.o
0xc012b110 FSNode::getParent()
.text._ZN6FSNodeD0Ev
0xc012b120 0x3b load address 0x0012b120
.text._ZN6FSNodeD0Ev
0xc012b120 0x3b VFS/FSNode-sc.proto.o
0xc012b120 FSNode::~FSNode()
.text._ZN6FSNodeD1Ev
0xc012b160 0x33 load address 0x0012b160
.text._ZN6FSNodeD1Ev
0xc012b160 0x33 VFS/FSNode-sc.proto.o
0xc012b160 FSNode::~FSNode()
.text._ZN13DirectoryNode4typeEv
0xc012b1a0 0xa load address 0x0012b1a0
.text._ZN13DirectoryNode4typeEv
0xc012b1a0 0xa VFS/DirectoryNode.class.o
0xc012b1a0 DirectoryNode::type()
.text._ZN6VectorIP6FSNodeED1Ev
0xc012b1b0 0x22 load address 0x0012b1b0
.text._ZN6VectorIP6FSNodeED1Ev
0xc012b1b0 0x22 VFS/DirectoryNode.class.o
0xc012b1b0 Vector<FSNode*>::~Vector()
.text._ZN4UserD1Ev
0xc012b1e0 0x76 load address 0x0012b1e0
.text._ZN4UserD1Ev
0xc012b1e0 0x76 UserManager/Usr.ns.o
0xc012b1e0 User::~User()
.text._ZN10SimpleListI5GroupED1Ev
0xc012b260 0x1dd load address 0x0012b260
.text._ZN10SimpleListI5GroupED1Ev
0xc012b260 0x1dd UserManager/Usr.ns.o
0xc012b260 SimpleList<Group>::~SimpleList()
.text._ZN4UserC1E6StringS0_S0_P5GroupS0_j
0xc012b440 0x2ec load address 0x0012b440
.text._ZN4UserC1E6StringS0_S0_P5GroupS0_j
0xc012b440 0x2ec UserManager/Usr.ns.o
0xc012b440 User::User(String, String, String, Group*, String, unsigned int)
.text._ZN10SimpleListI4UserE4consERKS0_
0xc012b730 0x220 load address 0x0012b730
.text._ZN10SimpleListI4UserE4consERKS0_
0xc012b730 0x220 UserManager/Usr.ns.o
0xc012b730 SimpleList<User>::cons(User const&)
.text._ZN10SimpleListI4UserED1Ev
0xc012b950 0x35d load address 0x0012b950
.text._ZN10SimpleListI4UserED1Ev
0xc012b950 0x35d UserManager/Usr.ns.o
0xc012b950 SimpleList<User>::~SimpleList()
.text._ZN5RamFS7getPartEv
0xc012bcb0 0x7 load address 0x0012bcb0
.text._ZN5RamFS7getPartEv
0xc012bcb0 0x7 FileSystems/RamFS/RamFS.class.o
0xc012bcb0 RamFS::getPart()
.text._ZN8FileNode4typeEv
0xc012bcc0 0xa load address 0x0012bcc0
.text._ZN8FileNode4typeEv
0xc012bcc0 0xa FileSystems/RamFS/RamFS.class.o
0xc012bcc0 FileNode::type()
.text._ZN8FileNode9removableEv
0xc012bcd0 0xa load address 0x0012bcd0
.text._ZN8FileNode9removableEv
0xc012bcd0 0xa FileSystems/RamFS/RamFS.class.o
0xc012bcd0 FileNode::removable()
.text._ZN8FileNode4usedEv
0xc012bce0 0x1c load address 0x0012bce0
.text._ZN8FileNode4usedEv
0xc012bce0 0x1c FileSystems/RamFS/RamFS.class.o
0xc012bce0 FileNode::used()
.text._ZN6VectorIP6FSNodeE4pushERKS1_
0xc012bd00 0x69 load address 0x0012bd00
.text._ZN6VectorIP6FSNodeE4pushERKS1_
0xc012bd00 0x69 FileSystems/RamFS/RamFS.class.o
0xc012bd00 Vector<FSNode*>::push(FSNode* const&)
.text._ZN8FileNodeD1Ev
0xc012bd70 0x33 load address 0x0012bd70
.text._ZN8FileNodeD1Ev
0xc012bd70 0x33 FileSystems/RamFS/RamFS.class.o
0xc012bd70 FileNode::~FileNode()
.text._ZN11RamFileNodeD0Ev
0xc012bdb0 0x50 load address 0x0012bdb0
.text._ZN11RamFileNodeD0Ev
0xc012bdb0 0x50 FileSystems/RamFS/RamFS.class.o
0xc012bdb0 RamFileNode::~RamFileNode()
.text._ZN11RamFileNodeD1Ev
0xc012be00 0x48 load address 0x0012be00
.text._ZN11RamFileNodeD1Ev
0xc012be00 0x48 FileSystems/RamFS/RamFS.class.o
0xc012be00 RamFileNode::~RamFileNode()
.text._ZN8FileNodeD0Ev
0xc012be50 0x3b load address 0x0012be50
.text._ZN8FileNodeD0Ev
0xc012be50 0x3b FileSystems/RamFS/RamFS.class.o
0xc012be50 FileNode::~FileNode()
.text._ZN5FATFS7getPartEv
0xc012be90 0xe load address 0x0012be90
.text._ZN5FATFS7getPartEv
0xc012be90 0xe FileSystems/FAT/FATFS.class.o
0xc012be90 FATFS::getPart()
.text._ZN10BlockCacheI9PartitionED1Ev
0xc012bea0 0x99 load address 0x0012bea0
.text._ZN10BlockCacheI9PartitionED1Ev
0xc012bea0 0x99 FileSystems/FAT/FATFS.class.o
0xc012bea0 BlockCache<Partition>::~BlockCache()
.text._ZN5FATFSD1Ev
0xc012bf40 0x2b load address 0x0012bf40
.text._ZN5FATFSD1Ev
0xc012bf40 0x2b FileSystems/FAT/FATFS.class.o
0xc012bf40 FATFS::~FATFS()
.text._ZN5FATFSD0Ev
0xc012bf70 0x33 load address 0x0012bf70
.text._ZN5FATFSD0Ev
0xc012bf70 0x33 FileSystems/FAT/FATFS.class.o
0xc012bf70 FATFS::~FATFS()
.text._ZN16FATDirectoryNodeD0Ev
0xc012bfb0 0x25 load address 0x0012bfb0
.text._ZN16FATDirectoryNodeD0Ev
0xc012bfb0 0x25 FileSystems/FAT/FATFS.class.o
0xc012bfb0 FATDirectoryNode::~FATDirectoryNode()
.text._ZN16FATDirectoryNodeD1Ev
0xc012bfe0 0x15 load address 0x0012bfe0
.text._ZN16FATDirectoryNodeD1Ev
0xc012bfe0 0x15 FileSystems/FAT/FATFS.class.o
0xc012bfe0 FATDirectoryNode::~FATDirectoryNode()
.text._ZN11FATFileNodeD1Ev
0xc012c000 0x33 load address 0x0012c000
.text._ZN11FATFileNodeD1Ev
0xc012c000 0x33 FileSystems/FAT/FATFS.class.o
0xc012c000 FATFileNode::~FATFileNode()
.text._ZN11FATFileNodeD0Ev
0xc012c040 0x3b load address 0x0012c040
.text._ZN11FATFileNodeD0Ev
0xc012c040 0x3b FileSystems/FAT/FATFS.class.o
0xc012c040 FATFileNode::~FATFileNode()
.text._ZN10SimpleListIP6call_tED1Ev
0xc012c080 0x125 load address 0x0012c080
.text._ZN10SimpleListIP6call_tED1Ev
0xc012c080 0x125 SyscallManager/Ressource.class.o
0xc012c080 SimpleList<call_t*>::~SimpleList()
.text._ZN13VGATextOutputD1Ev
0xc012c1b0 0xe load address 0x0012c1b0
.text._ZN13VGATextOutputD1Ev
0xc012c1b0 0xe Devices/Display/VGATextOutput.class.o
0xc012c1b0 VGATextOutput::~VGATextOutput()
.text._ZN13VGATextOutputD0Ev
0xc012c1c0 0x15 load address 0x0012c1c0
.text._ZN13VGATextOutputD0Ev
0xc012c1c0 0x15 Devices/Display/VGATextOutput.class.o
0xc012c1c0 VGATextOutput::~VGATextOutput()
.text._ZN6VectorIN4Disp6mode_tEE4pushERKS1_
0xc012c1e0 0x9e load address 0x0012c1e0
.text._ZN6VectorIN4Disp6mode_tEE4pushERKS1_
0xc012c1e0 0x9e Devices/Display/VGATextOutput.class.o
0xc012c1e0 Vector<Disp::mode_t>::push(Disp::mode_t const&)
.text._ZN14GraphicDisplayD1Ev
0xc012c280 0xe load address 0x0012c280
.text._ZN14GraphicDisplayD1Ev
0xc012c280 0xe Devices/Display/GraphicDisplay.proto.o
0xc012c280 GraphicDisplay::~GraphicDisplay()
.text._ZN14GraphicDisplayD0Ev
0xc012c290 0x15 load address 0x0012c290
.text._ZN14GraphicDisplayD0Ev
0xc012c290 0x15 Devices/Display/GraphicDisplay.proto.o
0xc012c290 GraphicDisplay::~GraphicDisplay()
.text._Z7rgbTo15j
0xc012c2b0 0x2a load address 0x0012c2b0
.text._Z7rgbTo15j
0xc012c2b0 0x2a Devices/Display/VESADisplay.class.o
0xc012c2b0 rgbTo15(unsigned int)
.text._Z7rgbTo16j
0xc012c2e0 0x27 load address 0x0012c2e0
.text._Z7rgbTo16j
0xc012c2e0 0x27 Devices/Display/VESADisplay.class.o
0xc012c2e0 rgbTo16(unsigned int)
.text._ZN11VESADisplayD1Ev
0xc012c310 0xe load address 0x0012c310
.text._ZN11VESADisplayD1Ev
0xc012c310 0xe Devices/Display/VESADisplay.class.o
0xc012c310 VESADisplay::~VESADisplay()
.text._ZN11VESADisplayD0Ev
0xc012c320 0x15 load address 0x0012c320
.text._ZN11VESADisplayD0Ev
0xc012c320 0x15 Devices/Display/VESADisplay.class.o
0xc012c320 VESADisplay::~VESADisplay()
.text._ZN8KeyboardD1Ev
0xc012c340 0xe load address 0x0012c340
.text._ZN8KeyboardD1Ev
0xc012c340 0xe Devices/Keyboard/PS2Keyboard.class.o
0xc012c340 Keyboard::~Keyboard()
.text._ZN11PS2KeyboardD1Ev
0xc012c350 0xe load address 0x0012c350
.text._ZN11PS2KeyboardD1Ev
0xc012c350 0xe Devices/Keyboard/PS2Keyboard.class.o
0xc012c350 PS2Keyboard::~PS2Keyboard()
.text._ZN11PS2KeyboardD0Ev
0xc012c360 0x15 load address 0x0012c360
.text._ZN11PS2KeyboardD0Ev
0xc012c360 0x15 Devices/Keyboard/PS2Keyboard.class.o
0xc012c360 PS2Keyboard::~PS2Keyboard()
.text._ZN8KeyboardD0Ev
0xc012c380 0x15 load address 0x0012c380
.text._ZN8KeyboardD0Ev
0xc012c380 0x15 Devices/Keyboard/PS2Keyboard.class.o
0xc012c380 Keyboard::~Keyboard()
.text._ZN16FloppyControllerD1Ev
0xc012c3a0 0xe load address 0x0012c3a0
.text._ZN16FloppyControllerD1Ev
0xc012c3a0 0xe Devices/Floppy/FloppyController.class.o
0xc012c3a0 FloppyController::~FloppyController()
.text._ZN16FloppyControllerD0Ev
0xc012c3b0 0x15 load address 0x0012c3b0
.text._ZN16FloppyControllerD0Ev
0xc012c3b0 0x15 Devices/Floppy/FloppyController.class.o
0xc012c3b0 FloppyController::~FloppyController()
.text._ZN11BlockDevice8chsToLBAEjjj
0xc012c3d0 0x9 load address 0x0012c3d0
.text._ZN11BlockDevice8chsToLBAEjjj
0xc012c3d0 0x9 Devices/Floppy/FloppyDrive.class.o
0xc012c3d0 BlockDevice::chsToLBA(unsigned int, unsigned int, unsigned int)
.text._ZN11BlockDeviceD1Ev
0xc012c3e0 0xe load address 0x0012c3e0
.text._ZN11BlockDeviceD1Ev
0xc012c3e0 0xe Devices/Floppy/FloppyDrive.class.o
0xc012c3e0 BlockDevice::~BlockDevice()
.text._ZN11FloppyDriveD1Ev
0xc012c3f0 0xe load address 0x0012c3f0
.text._ZN11FloppyDriveD1Ev
0xc012c3f0 0xe Devices/Floppy/FloppyDrive.class.o
0xc012c3f0 FloppyDrive::~FloppyDrive()
.text._ZN11FloppyDriveD0Ev
0xc012c400 0x15 load address 0x0012c400
.text._ZN11FloppyDriveD0Ev
0xc012c400 0x15 Devices/Floppy/FloppyDrive.class.o
0xc012c400 FloppyDrive::~FloppyDrive()
.text._ZN11BlockDeviceD0Ev
0xc012c420 0x15 load address 0x0012c420
.text._ZN11BlockDeviceD0Ev
0xc012c420 0x15 Devices/Floppy/FloppyDrive.class.o
0xc012c420 BlockDevice::~BlockDevice()
.text._ZN13ATAControllerD1Ev
0xc012c440 0xe load address 0x0012c440
.text._ZN13ATAControllerD1Ev
0xc012c440 0xe Devices/ATA/ATAController.class.o
0xc012c440 ATAController::~ATAController()
.text._ZN13ATAControllerD0Ev
0xc012c450 0x15 load address 0x0012c450
.text._ZN13ATAControllerD0Ev
0xc012c450 0x15 Devices/ATA/ATAController.class.o
0xc012c450 ATAController::~ATAController()
.text._ZN8ATADriveD1Ev
0xc012c470 0xe load address 0x0012c470
.text._ZN8ATADriveD1Ev
0xc012c470 0xe Devices/ATA/ATADrive.class.o
0xc012c470 ATADrive::~ATADrive()
.text._ZN8ATADriveD0Ev
0xc012c480 0x15 load address 0x0012c480
.text._ZN8ATADriveD0Ev
0xc012c480 0x15 Devices/ATA/ATADrive.class.o
0xc012c480 ATADrive::~ATADrive()
.text._ZN5TimerD1Ev
0xc012c4a0 0xe load address 0x0012c4a0
.text._ZN5TimerD1Ev
0xc012c4a0 0xe Devices/Timer.class.o
0xc012c4a0 Timer::~Timer()
.text._ZN5TimerD0Ev
0xc012c4b0 0x15 load address 0x0012c4b0
.text._ZN5TimerD0Ev
0xc012c4b0 0x15 Devices/Timer.class.o
0xc012c4b0 Timer::~Timer()
.rodata 0xc012d000 0x238 load address 0x0012d000
*(.rodata)
.rodata 0xc012d000 0x80 TaskManager/Thread.class.o
.rodata 0xc012d080 0xc8 VTManager/SimpleVT.class.o
*fill* 0xc012d148 0x18 00
.rodata 0xc012d160 0xd8 Shell/KernelShell.class.o
.rodata.str1.1 0xc012d238 0x108e load address 0x0012d238
.rodata.str1.1
0xc012d238 0x218 Core/kmain.wtf.o
0x231 (size before relaxing)
.rodata.str1.1
0xc012d450 0x105 Core/Sys.ns.o
0x130 (size before relaxing)
.rodata.str1.1
0xc012d555 0xd0 Core/Log.ns.o
.rodata.str1.1
0xc012d625 0x4d Core/SB.ns.o
0x64 (size before relaxing)
.rodata.str1.1
0xc012d672 0x5c MemoryManager/PhysMem.ns.o
.rodata.str1.1
0xc012d6ce 0x31 DeviceManager/Disp.ns.o
0x3f (size before relaxing)
.rodata.str1.1
0xc012d6ff 0x191 DeviceManager/Kbd.ns.o
0x1ed (size before relaxing)
.rodata.str1.1
0x00000000 0x2 TaskManager/Process.class.o
.rodata.str1.1
0x00000000 0x5 TaskManager/Process-sc.class.o
.rodata.str1.1
0xc012d890 0x22f TaskManager/Thread.class.o
0x24c (size before relaxing)
.rodata.str1.1
0xc012dabf 0x1c TaskManager/Task.ns.o
.rodata.str1.1
0xc012dadb 0x15 VTManager/VirtualTerminal.proto.o
0x1b (size before relaxing)
.rodata.str1.1
0x00000000 0x2 VTManager/ScrollableVT.class.o
.rodata.str1.1
0x00000000 0x2 VTManager/PipeVT.class.o
.rodata.str1.1
0xc012daf0 0x2 VTManager/FileVT.class.o
0x4 (size before relaxing)
.rodata.str1.1
0xc012daf2 0x2 VTManager/VirtualTerminal-kbd.proto.o
0xd (size before relaxing)
.rodata.str1.1
0xc012daf4 0xaa Shell/KernelShell.class.o
0xb9 (size before relaxing)
.rodata.str1.1
0xc012db9e 0x135 Shell/KernelShell-fs.class.o
0x13f (size before relaxing)
.rodata.str1.1
0xc012dcd3 0x178 Shell/KernelShell-sys.class.o
0x192 (size before relaxing)
.rodata.str1.1
0x00000000 0x5 ../Library/Common/String.class.o
.rodata.str1.1
0xc012de4b 0x16a ../Library/Common/WChar.class.o
0x1be (size before relaxing)
.rodata.str1.1
0x00000000 0x4 VFS/Part.ns.o
.rodata.str1.1
0xc012dfb5 0x44 VFS/VFS.ns.o
0x59 (size before relaxing)
.rodata.str1.1
0x00000000 0x5 VFS/FSNode-sc.proto.o
.rodata.str1.1
0x00000000 0x5 VFS/File-sc.class.o
.rodata.str1.1
0x00000000 0x2 VFS/DirectoryNode.class.o
.rodata.str1.1
0xc012dff9 0x45 UserManager/Usr.ns.o
0x51 (size before relaxing)
.rodata.str1.1
0x00000000 0x3 FileSystems/RamFS/RamFS.class.o
.rodata.str1.1
0xc012e03e 0xaa FileSystems/FAT/FATFS.class.o
0xb3 (size before relaxing)
.rodata.str1.1
0xc012e0e8 0x37 SyscallManager/IDT.ns.o
.rodata.str1.1
0x00000000 0x5 SyscallManager/Ressource.class.o
.rodata.str1.1
0xc012e11f 0x27 Devices/Display/VGATextOutput.class.o
.rodata.str1.1
0xc012e146 0x34 Devices/Display/VESADisplay.class.o
0x36 (size before relaxing)
.rodata.str1.1
0xc012e17a 0x23 Devices/Keyboard/PS2Keyboard.class.o
.rodata.str1.1
0xc012e19d 0x39 Devices/Floppy/FloppyController.class.o
.rodata.str1.1
0xc012e1d6 0x8a Devices/Floppy/FloppyDrive.class.o
0x97 (size before relaxing)
.rodata.str1.1
0xc012e260 0x20 Devices/ATA/ATAController.class.o
.rodata.str1.1
0xc012e280 0x29 Devices/ATA/ATADrive.class.o
.rodata.str1.1
0xc012e2a9 0x1d Devices/Timer.class.o
0x23 (size before relaxing)
.rodata.str1.4 0xc012e2c8 0xe38 load address 0x0012e2c8
.rodata.str1.4
0xc012e2c8 0x229 Core/kmain.wtf.o
*fill* 0xc012e4f1 0x3 00
.rodata.str1.4
0xc012e4f4 0x37 Core/Sys.ns.o
*fill* 0xc012e52b 0x1 00
.rodata.str1.4
0xc012e52c 0x41 MemoryManager/PageAlloc.ns.o
*fill* 0xc012e56d 0x3 00
.rodata.str1.4
0xc012e570 0x71 DeviceManager/Disp.ns.o
*fill* 0xc012e5e1 0x3 00
.rodata.str1.4
0xc012e5e4 0x20 DeviceManager/Kbd.ns.o
.rodata.str1.4
0xc012e604 0x5a TaskManager/Thread.class.o
*fill* 0xc012e65e 0x2 00
.rodata.str1.4
0xc012e660 0x355 Shell/KernelShell.class.o
*fill* 0xc012e9b5 0x3 00
.rodata.str1.4
0xc012e9b8 0x60 Shell/KernelShell-fs.class.o
.rodata.str1.4
0xc012ea18 0x145 Shell/KernelShell-sys.class.o
0x165 (size before relaxing)
*fill* 0xc012eb5d 0x3 00
.rodata.str1.4
0xc012eb60 0x1b2 VFS/VFS.ns.o
*fill* 0xc012ed12 0x2 00
.rodata.str1.4
0xc012ed14 0x6f UserManager/Usr.ns.o
*fill* 0xc012ed83 0x1 00
.rodata.str1.4
0xc012ed84 0x2f FileSystems/FAT/FATFS.class.o
*fill* 0xc012edb3 0x1 00
.rodata.str1.4
0xc012edb4 0x55 Devices/Display/VESADisplay.class.o
*fill* 0xc012ee09 0x3 00
.rodata.str1.4
0xc012ee0c 0x2f4 Devices/Floppy/FloppyDrive.class.o
.rodata._ZTV7Display
0xc012f100 0x40 load address 0x0012f100
.rodata._ZTV7Display
0xc012f100 0x40 Core/kmain.wtf.o
0xc012f100 vtable for Display
.rodata._ZTV6Device
0xc012f140 0x1c load address 0x0012f140
.rodata._ZTV6Device
0xc012f140 0x1c Core/kmain.wtf.o
0xc012f140 vtable for Device
.rodata._ZTV8TextFile
0xc012f160 0x14 load address 0x0012f160
.rodata._ZTV8TextFile
0xc012f160 0x14 Core/kmain.wtf.o
0xc012f160 vtable for TextFile
.rodata._ZTV9ByteArray
0xc012f178 0x10 load address 0x0012f178
.rodata._ZTV9ByteArray
0xc012f178 0x10 Core/kmain.wtf.o
0xc012f178 vtable for ByteArray
.rodata._ZTV11BasicStringIhE
0xc012f188 0x10 load address 0x0012f188
.rodata._ZTV11BasicStringIhE
0xc012f188 0x10 Core/kmain.wtf.o
0xc012f188 vtable for BasicString<unsigned char>
.rodata._ZTV6String
0xc012f198 0x10 load address 0x0012f198
.rodata._ZTV6String
0xc012f198 0x10 Core/kmain.wtf.o
0xc012f198 vtable for String
.rodata._ZTV11BasicStringI5WCharE
0xc012f1a8 0x10 load address 0x0012f1a8
.rodata._ZTV11BasicStringI5WCharE
0xc012f1a8 0x10 Core/kmain.wtf.o
0xc012f1a8 vtable for BasicString<WChar>
.rodata._ZTV7Process
0xc012f1b8 0x14 load address 0x0012f1b8
.rodata._ZTV7Process
0xc012f1b8 0x14 TaskManager/Process-sc.class.o
0xc012f1b8 vtable for Process
.rodata._ZTV6Thread
0xc012f1d0 0x18 load address 0x0012f1d0
.rodata._ZTV6Thread
0xc012f1d0 0x18 TaskManager/Thread.class.o
0xc012f1d0 vtable for Thread
.rodata._ZTV9V86Thread
0xc012f1e8 0x18 load address 0x0012f1e8
.rodata._ZTV9V86Thread
0xc012f1e8 0x18 TaskManager/V86/V86Thread.class.o
0xc012f1e8 vtable for V86Thread
.rodata._ZTV15VirtualTerminal
0xc012f200 0x38 load address 0x0012f200
.rodata._ZTV15VirtualTerminal
0xc012f200 0x38 VTManager/VirtualTerminal.proto.o
0xc012f200 vtable for VirtualTerminal
.rodata._ZTV8SimpleVT
0xc012f240 0x48 load address 0x0012f240
.rodata._ZTV8SimpleVT
0xc012f240 0x48 VTManager/SimpleVT.class.o
0xc012f240 vtable for SimpleVT
.rodata._ZTV12ScrollableVT
0xc012f2a0 0x48 load address 0x0012f2a0
.rodata._ZTV12ScrollableVT
0xc012f2a0 0x48 VTManager/ScrollableVT.class.o
0xc012f2a0 vtable for ScrollableVT
.rodata._ZTV6PipeVT
0xc012f300 0x38 load address 0x0012f300
.rodata._ZTV6PipeVT
0xc012f300 0x38 VTManager/PipeVT.class.o
0xc012f300 vtable for PipeVT
.rodata._ZTV6FileVT
0xc012f340 0x38 load address 0x0012f340
.rodata._ZTV6FileVT
0xc012f340 0x38 VTManager/FileVT.class.o
0xc012f340 vtable for FileVT
.rodata._ZTV11MelonBinary
0xc012f378 0x14 load address 0x0012f378
.rodata._ZTV11MelonBinary
0xc012f378 0x14 Linker/MelonBinary.class.o
0xc012f378 vtable for MelonBinary
.rodata._ZTV6Binary
0xc012f390 0x14 load address 0x0012f390
.rodata._ZTV6Binary
0xc012f390 0x14 Linker/MelonBinary.class.o
0xc012f390 vtable for Binary
.rodata._ZTV9ElfBinary
0xc012f3a8 0x14 load address 0x0012f3a8
.rodata._ZTV9ElfBinary
0xc012f3a8 0x14 Linker/ElfBinary.class.o
0xc012f3a8 vtable for ElfBinary
.rodata._ZTV10FileSystem
0xc012f3c0 0x48 load address 0x0012f3c0
.rodata._ZTV10FileSystem
0xc012f3c0 0x48 VFS/VFS.ns.o
0xc012f3c0 vtable for FileSystem
.rodata._ZTV6FSNode
0xc012f420 0x28 load address 0x0012f420
.rodata._ZTV6FSNode
0xc012f420 0x28 VFS/FSNode-sc.proto.o
0xc012f420 vtable for FSNode
.rodata._ZTV4File
0xc012f448 0x14 load address 0x0012f448
.rodata._ZTV4File
0xc012f448 0x14 VFS/File-sc.class.o
0xc012f448 vtable for File
.rodata._ZTV13DirectoryNode
0xc012f460 0x28 load address 0x0012f460
.rodata._ZTV13DirectoryNode
0xc012f460 0x28 VFS/DirectoryNode.class.o
0xc012f460 vtable for DirectoryNode
.rodata._ZTV5RamFS
0xc012f4a0 0x48 load address 0x0012f4a0
.rodata._ZTV5RamFS
0xc012f4a0 0x48 FileSystems/RamFS/RamFS.class.o
0xc012f4a0 vtable for RamFS
.rodata._ZTV11RamFileNode
0xc012f500 0x28 load address 0x0012f500
.rodata._ZTV11RamFileNode
0xc012f500 0x28 FileSystems/RamFS/RamFS.class.o
0xc012f500 vtable for RamFileNode
.rodata._ZTV8FileNode
0xc012f540 0x28 load address 0x0012f540
.rodata._ZTV8FileNode
0xc012f540 0x28 FileSystems/RamFS/RamFS.class.o
0xc012f540 vtable for FileNode
.rodata._ZTV5FATFS
0xc012f580 0x48 load address 0x0012f580
.rodata._ZTV5FATFS
0xc012f580 0x48 FileSystems/FAT/FATFS.class.o
0xc012f580 vtable for FATFS
.rodata._ZTV16FATDirectoryNode
0xc012f5e0 0x28 load address 0x0012f5e0
.rodata._ZTV16FATDirectoryNode
0xc012f5e0 0x28 FileSystems/FAT/FATFS.class.o
0xc012f5e0 vtable for FATDirectoryNode
.rodata._ZTV11FATFileNode
0xc012f620 0x28 load address 0x0012f620
.rodata._ZTV11FATFileNode
0xc012f620 0x28 FileSystems/FAT/FATFS.class.o
0xc012f620 vtable for FATFileNode
.rodata._ZTV9Ressource
0xc012f648 0x14 load address 0x0012f648
.rodata._ZTV9Ressource
0xc012f648 0x14 SyscallManager/Ressource.class.o
0xc012f648 vtable for Ressource
.rodata._ZTV13VGATextOutput
0xc012f660 0x40 load address 0x0012f660
.rodata._ZTV13VGATextOutput
0xc012f660 0x40 Devices/Display/VGATextOutput.class.o
0xc012f660 vtable for VGATextOutput
.rodata._ZTV14GraphicDisplay
0xc012f6a0 0x44 load address 0x0012f6a0
.rodata._ZTV14GraphicDisplay
0xc012f6a0 0x44 Devices/Display/GraphicDisplay.proto.o
0xc012f6a0 vtable for GraphicDisplay
.rodata._ZTV11VESADisplay
0xc012f700 0x44 load address 0x0012f700
.rodata._ZTV11VESADisplay
0xc012f700 0x44 Devices/Display/VESADisplay.class.o
0xc012f700 vtable for VESADisplay
.rodata._ZTV11PS2Keyboard
0xc012f760 0x20 load address 0x0012f760
.rodata._ZTV11PS2Keyboard
0xc012f760 0x20 Devices/Keyboard/PS2Keyboard.class.o
0xc012f760 vtable for PS2Keyboard
.rodata._ZTV8Keyboard
0xc012f780 0x20 load address 0x0012f780
.rodata._ZTV8Keyboard
0xc012f780 0x20 Devices/Keyboard/PS2Keyboard.class.o
0xc012f780 vtable for Keyboard
.rodata._ZTV16FloppyController
0xc012f7a0 0x1c load address 0x0012f7a0
.rodata._ZTV16FloppyController
0xc012f7a0 0x1c Devices/Floppy/FloppyController.class.o
0xc012f7a0 vtable for FloppyController
.rodata._ZTV11FloppyDrive
0xc012f7c0 0x34 load address 0x0012f7c0
.rodata._ZTV11FloppyDrive
0xc012f7c0 0x34 Devices/Floppy/FloppyDrive.class.o
0xc012f7c0 vtable for FloppyDrive
.rodata._ZTV11BlockDevice
0xc012f800 0x34 load address 0x0012f800
.rodata._ZTV11BlockDevice
0xc012f800 0x34 Devices/Floppy/FloppyDrive.class.o
0xc012f800 vtable for BlockDevice
.rodata._ZTV13ATAController
0xc012f838 0x1c load address 0x0012f838
.rodata._ZTV13ATAController
0xc012f838 0x1c Devices/ATA/ATAController.class.o
0xc012f838 vtable for ATAController
.rodata._ZTV8ATADrive
0xc012f860 0x34 load address 0x0012f860
.rodata._ZTV8ATADrive
0xc012f860 0x34 Devices/ATA/ATADrive.class.o
0xc012f860 vtable for ATADrive
.rodata._ZTV5Timer
0xc012f898 0x1c load address 0x0012f898
.rodata._ZTV5Timer
0xc012f898 0x1c Devices/Timer.class.o
0xc012f898 vtable for Timer
.rel.dyn 0xc012f8b4 0x0 load address 0x0012f8b4
.rel.iplt 0x00000000 0x0 Core/loader.wtf.o
.rel.text 0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6DeviceD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN7DisplayD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN7DisplayD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6DeviceD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN9ByteArrayD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11BasicStringIhED0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11BasicStringIhED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN9ByteArrayD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6StringD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11BasicStringI5WCharED0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11BasicStringI5WCharED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6StringD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorI6StringED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11BasicStringI5WCharE6affectERKS1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6StringpLERKS_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8TextFileD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8TextFileD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV7Display
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV6Device
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV8TextFile
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV9ByteArray
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11BasicStringIhE
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV6String
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11BasicStringI5WCharE
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP6DeviceE4pushERKS1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorI6StringE4pushERKS0_
0x00000000 0x0 Core/loader.wtf.o
.rel.data 0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6StringC1ERKS_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN9V86ThreadD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN9V86ThreadD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV9V86Thread
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV15VirtualTerminal
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV8SimpleVT
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV12ScrollableVT
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6PipeVTD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6PipeVTD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV6PipeVT
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6FileVTD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6FileVTD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV6FileVT
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata 0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6BinaryD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6BinaryD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV6Binary
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN10BlockCacheI11BlockDeviceE10readBlocksEyjPh
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6FSNodeD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6FSNodeD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV6FSNode
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV13DirectoryNode
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN4UserD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN10SimpleListI5GroupED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN4UserC1E6StringS0_S0_P5GroupS0_j
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN10SimpleListI4UserE4consERKS0_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN10SimpleListI4UserED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8FileNodeD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11RamFileNodeD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11RamFileNodeD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8FileNodeD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV5RamFS
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11RamFileNode
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV8FileNode
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN5FATFSD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN5FATFSD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN16FATDirectoryNodeD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN16FATDirectoryNodeD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11FATFileNodeD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11FATFileNodeD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV5FATFS
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV16FATDirectoryNode
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11FATFileNode
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN10SimpleListIP6call_tED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN13VGATextOutputD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN13VGATextOutputD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV13VGATextOutput
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN14GraphicDisplayD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN14GraphicDisplayD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV14GraphicDisplay
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11VESADisplayD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11VESADisplayD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11VESADisplay
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8KeyboardD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11PS2KeyboardD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11PS2KeyboardD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8KeyboardD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11PS2Keyboard
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV8Keyboard
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN16FloppyControllerD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN16FloppyControllerD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV16FloppyController
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11BlockDeviceD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11FloppyDriveD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11FloppyDriveD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11BlockDeviceD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11FloppyDrive
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11BlockDevice
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN13ATAControllerD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN13ATAControllerD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV13ATAController
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8ATADriveD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8ATADriveD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV8ATADrive
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN5TimerD1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN5TimerD0Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV5Timer
0x00000000 0x0 Core/loader.wtf.o
.data 0xc0130000 0x14e0 load address 0x00130000
0xc0130000 start_ctors = .
*(.ctor*)
.ctors 0xc0130000 0x4 Core/SB.ns.o
.ctors 0xc0130004 0x4 MemoryManager/Mem.ns.o
.ctors 0xc0130008 0x4 DeviceManager/Disp.ns.o
.ctors 0xc013000c 0x4 DeviceManager/Dev.ns.o
.ctors 0xc0130010 0x4 DeviceManager/Kbd.ns.o
.ctors 0xc0130014 0x4 VTManager/VT.ns.o
.ctors 0xc0130018 0x4 ../Library/Common/WChar.class.o
.ctors 0xc013001c 0x4 VFS/Part.ns.o
.ctors 0xc0130020 0x4 VFS/VFS.ns.o
.ctors 0xc0130024 0x4 Devices/Floppy/FloppyController.class.o
0xc0130028 end_ctors = .
0xc0130028 start_dtors = .
*(.dtor*)
0xc0130028 end_dtors = .
*(.data)
.data 0xc0130028 0x24 Core/kmain.wtf.o
0xc0130028 melonLogo
0xc0130044 melonLogoLines
0xc0130048 melonLogoCols
.data 0xc013004c 0x0 Core/Sys.ns.o
.data 0xc013004c 0x0 Core/Log.ns.o
.data 0xc013004c 0x0 Core/SB.ns.o
.data 0xc013004c 0x0 MemoryManager/Mem.ns.o
.data 0xc013004c 0x0 MemoryManager/PhysMem.ns.o
.data 0xc013004c 0x0 MemoryManager/GDT.ns.o
.data 0xc013004c 0x0 MemoryManager/PageDirectory.class.o
.data 0xc013004c 0x0 MemoryManager/PageAlloc.ns.o
.data 0xc013004c 0x0 DeviceManager/Disp.ns.o
.data 0xc013004c 0x0 DeviceManager/Dev.ns.o
.data 0xc013004c 0x0 DeviceManager/Time.ns.o
*fill* 0xc013004c 0x14 00
.data 0xc0130060 0x100 DeviceManager/Kbd.ns.o
0xc0130060 Kbd::ctrlkeys
.data 0xc0130160 0x0 TaskManager/Process.class.o
.data 0xc0130160 0xc0 TaskManager/Process-sc.class.o
0xc0130160 Process::m_callTable
.data 0xc0130220 0x24 TaskManager/Thread.class.o
0xc0130220 Thread::m_callTable
.data 0xc0130244 0x0 TaskManager/V86/V86Thread.class.o
.data 0xc0130244 0x2 TaskManager/V86/V86.ns.o
0xc0130244 V86::seg
*fill* 0xc0130246 0x2 00
.data 0xc0130248 0x4 TaskManager/Task.ns.o
0xc0130248 Task::nextpid
.data 0xc013024c 0x0 VTManager/VirtualTerminal.proto.o
.data 0xc013024c 0x0 VTManager/SimpleVT.class.o
.data 0xc013024c 0x0 VTManager/ScrollableVT.class.o
.data 0xc013024c 0x0 VTManager/PipeVT.class.o
.data 0xc013024c 0x0 VTManager/FileVT.class.o
.data 0xc013024c 0x0 VTManager/VirtualTerminal-kbd.proto.o
*fill* 0xc013024c 0x14 00
.data 0xc0130260 0x60 VTManager/VirtualTerminal-sc.proto.o
0xc0130260 VirtualTerminal::m_callTable
.data 0xc01302c0 0x0 VTManager/VT.ns.o
.data 0xc01302c0 0x0 Shell/KernelShell.class.o
.data 0xc01302c0 0x0 Shell/KernelShell-fs.class.o
.data 0xc01302c0 0x0 Shell/KernelShell-sys.class.o
.data 0xc01302c0 0xc Linker/Binary.proto.o
0xc01302c0 loaders
.data 0xc01302cc 0x0 Linker/MelonBinary.class.o
.data 0xc01302cc 0x0 Linker/ElfBinary.class.o
.data 0xc01302cc 0x0 ../Library/Common/cppsupport.wtf.o
.data 0xc01302cc 0x0 ../Library/Common/Bitset.class.o
.data 0xc01302cc 0x0 ../Library/Common/String.class.o
.data 0xc01302cc 0x0 ../Library/Common/ByteArray.class.o
.data 0xc01302cc 0x0 ../Library/Common/WChar.class.o
*fill* 0xc01302cc 0x4 00
.data 0xc01302d0 0x18 ../Library/Common/Rand.ns.o
0xc01302d0 Rand::m
0xc01302d4 Rand::a
0xc01302d8 Rand::b
0xc01302e0 Rand::current
.data 0xc01302e8 0x0 ../Library/Common/CMem.ns.o
.data 0xc01302e8 0x0 ../Library/Common/Heap.class.o
.data 0xc01302e8 0x0 ../Library/Common/Heap-index.class.o
.data 0xc01302e8 0x0 ../Library/Common/Mutex.class.o
.data 0xc01302e8 0x0 ../Library/Common/TextFile.class.o
.data 0xc01302e8 0x0 VFS/Partition.class.o
.data 0xc01302e8 0x0 VFS/Part.ns.o
.data 0xc01302e8 0x10 VFS/VFS.ns.o
0xc01302e8 fileSystems
*fill* 0xc01302f8 0x8 00
.data 0xc0130300 0x84 VFS/FSNode-sc.proto.o
0xc0130300 FSNode::m_callTable
*fill* 0xc0130384 0x1c 00
.data 0xc01303a0 0x6c VFS/File.class.o
0xc01303a0 File::m_callTable
.data 0xc013040c 0x0 VFS/File-sc.class.o
*fill* 0xc013040c 0x14 00
.data 0xc0130420 0x24 VFS/DirectoryNode.class.o
0xc0130420 DirectoryNode::m_callTable
.data 0xc0130444 0x0 UserManager/Usr.ns.o
.data 0xc0130444 0x0 FileSystems/RamFS/RamFS.class.o
.data 0xc0130444 0x0 FileSystems/FAT/FATFS.class.o
.data 0xc0130444 0x0 SyscallManager/IDT.ns.o
.data 0xc0130444 0x0 SyscallManager/Ressource.class.o
*fill* 0xc0130444 0x1c 00
.data 0xc0130460 0x38 SyscallManager/Res.ns.o
0xc0130460 Res::staticCalls
.data 0xc0130498 0x0 Devices/Display/VGATextOutput.class.o
*fill* 0xc0130498 0x8 00
.data 0xc01304a0 0x1040 Devices/Display/GraphicDisplay.proto.o
0xc01304a0 consoleFont
0xc01314a0 consoleColor
.data 0xc01314e0 0x0 Devices/Display/VESADisplay.class.o
.data 0xc01314e0 0x0 Devices/Keyboard/PS2Keyboard.class.o
.data 0xc01314e0 0x0 Devices/Floppy/FloppyController.class.o
.data 0xc01314e0 0x0 Devices/Floppy/FloppyDrive.class.o
.data 0xc01314e0 0x0 Devices/ATA/ATAController.class.o
.data 0xc01314e0 0x0 Devices/ATA/ATADrive.class.o
.data 0xc01314e0 0x0 Devices/Timer.class.o
.igot.plt 0xc01314e0 0x0 load address 0x001314e0
.igot.plt 0x00000000 0x0 Core/loader.wtf.o
.bss 0xc0138000 0x14800 load address 0x00138000
0xc0138000 sbss = .
*(COMMON)
*(.bss)
.bss 0xc0138000 0x4000 Core/loader.wtf.o
.bss 0xc013c000 0x4 Core/kmain.wtf.o
0xc013c000 kvt
.bss 0xc013c004 0x0 Core/Sys.ns.o
.bss 0xc013c004 0x1c Core/Log.ns.o
0xc013c004 Log::logs
.bss 0xc013c020 0x1c Core/SB.ns.o
0xc013c020 SB::sb
0xc013c024 SB::msg
0xc013c030 SB::boot_progress
0xc013c032 SB::height
0xc013c034 SB::gone_multi
0xc013c038 SB::lock
*fill* 0xc013c03c 0x4 00
.bss 0xc013c040 0x44 MemoryManager/Mem.ns.o
0xc013c040 Mem::pagingEnabled
0xc013c044 Mem::placementAddress
0xc013c060 Mem::kheap
.bss 0xc013c084 0xc MemoryManager/PhysMem.ns.o
0xc013c084 kernelPageDirectory
0xc013c088 PhysMem::nframes
0xc013c08c PhysMem::frames
*fill* 0xc013c090 0x10 00
.bss 0xc013c0a0 0x20a8 MemoryManager/GDT.ns.o
0xc013c0a0 GDT::gdt_entries
0xc013c0d0 GDT::gdt_ptr
0xc013c0e0 GDT::tss_entry
.bss 0xc013e148 0x0 MemoryManager/PageDirectory.class.o
.bss 0xc013e148 0x12 MemoryManager/PageAlloc.ns.o
0xc013e148 PageAlloc::freePage
0xc013e154 PageAlloc::freec
0xc013e158 PageAlloc::usable
0xc013e159 PageAlloc::locked
*fill* 0xc013e15a 0x2 00
.bss 0xc013e15c 0x24 DeviceManager/Disp.ns.o
0xc013e15c Disp::mode
0xc013e178 Disp::modes
.bss 0xc013e180 0x60 DeviceManager/Dev.ns.o
0xc013e180 Dev::devices
0xc013e1a0 Dev::irqHandler
.bss 0xc013e1e0 0x4 DeviceManager/Time.ns.o
0xc013e1e0 Time::timer
*fill* 0xc013e1e4 0x1c 00
.bss 0xc013e200 0xa08 DeviceManager/Kbd.ns.o
0xc013e200 keymap_normal
0xc013e400 keymap_shift
0xc013e600 keymap_caps
0xc013e800 keymap_altgr
0xc013ea00 keymap_shiftaltgr
0xc013ec00 Kbd::kbdstatus
0xc013ec04 Kbd::focusedVT
.bss 0xc013ec08 0x0 TaskManager/Process.class.o
.bss 0xc013ec08 0x0 TaskManager/Process-sc.class.o
.bss 0xc013ec08 0x0 TaskManager/Thread.class.o
.bss 0xc013ec08 0x0 TaskManager/V86/V86Thread.class.o
.bss 0xc013ec08 0x0 TaskManager/V86/V86.ns.o
*fill* 0xc013ec08 0x18 00
.bss 0xc013ec20 0x420 TaskManager/Task.ns.o
0xc013ec20 Task::processes
0xc013ec24 Task::threads
0xc013ec28 Task::currentThread
0xc013ec2c Task::currentProcess
0xc013ec30 Task::idleThread
0xc013ec40 Task::temp_stack
.bss 0xc013f040 0x0 VTManager/VirtualTerminal.proto.o
.bss 0xc013f040 0x0 VTManager/SimpleVT.class.o
.bss 0xc013f040 0x0 VTManager/ScrollableVT.class.o
.bss 0xc013f040 0x0 VTManager/PipeVT.class.o
.bss 0xc013f040 0x0 VTManager/FileVT.class.o
.bss 0xc013f040 0x0 VTManager/VirtualTerminal-kbd.proto.o
.bss 0xc013f040 0x0 VTManager/VirtualTerminal-sc.proto.o
.bss 0xc013f040 0x8 VTManager/VT.ns.o
0xc013f040 VT::mappedVTs
.bss 0xc013f048 0x4 Shell/KernelShell.class.o
0xc013f048 KernelShell::m_instances
.bss 0xc013f04c 0x0 Shell/KernelShell-fs.class.o
.bss 0xc013f04c 0x0 Shell/KernelShell-sys.class.o
.bss 0xc013f04c 0x0 Linker/Binary.proto.o
.bss 0xc013f04c 0x0 Linker/MelonBinary.class.o
.bss 0xc013f04c 0x0 Linker/ElfBinary.class.o
.bss 0xc013f04c 0x4 ../Library/Common/cppsupport.wtf.o
0xc013f04c __dso_handle
.bss 0xc013f050 0x0 ../Library/Common/Bitset.class.o
.bss 0xc013f050 0x0 ../Library/Common/String.class.o
.bss 0xc013f050 0x0 ../Library/Common/ByteArray.class.o
*fill* 0xc013f050 0x10 00
.bss 0xc013f060 0x200 ../Library/Common/WChar.class.o
0xc013f060 WChar::CP437
.bss 0xc013f260 0x0 ../Library/Common/Rand.ns.o
.bss 0xc013f260 0x0 ../Library/Common/CMem.ns.o
.bss 0xc013f260 0x0 ../Library/Common/Heap.class.o
.bss 0xc013f260 0x0 ../Library/Common/Heap-index.class.o
.bss 0xc013f260 0x0 ../Library/Common/Mutex.class.o
.bss 0xc013f260 0x0 ../Library/Common/TextFile.class.o
.bss 0xc013f260 0x0 VFS/Partition.class.o
.bss 0xc013f260 0x10 VFS/Part.ns.o
0xc013f260 Part::devices
0xc013f268 Part::partitions
.bss 0xc013f270 0xc VFS/VFS.ns.o
0xc013f270 VFS::rootNode
0xc013f274 VFS::filesystems
.bss 0xc013f27c 0x0 VFS/FSNode-sc.proto.o
.bss 0xc013f27c 0x0 VFS/File.class.o
.bss 0xc013f27c 0x0 VFS/File-sc.class.o
.bss 0xc013f27c 0x0 VFS/DirectoryNode.class.o
.bss 0xc013f27c 0x8 UserManager/Usr.ns.o
0xc013f27c Usr::m_users
0xc013f280 Usr::m_groups
.bss 0xc013f284 0x0 FileSystems/RamFS/RamFS.class.o
.bss 0xc013f284 0x0 FileSystems/FAT/FATFS.class.o
*fill* 0xc013f284 0x1c 00
.bss 0xc013f2a0 0x806 SyscallManager/IDT.ns.o
0xc013f2a0 IDT::idt_entries
0xc013faa0 IDT::idt_ptr
*fill* 0xc013faa6 0x2 00
.bss 0xc013faa8 0x0 SyscallManager/Ressource.class.o
.bss 0xc013faa8 0x8 SyscallManager/Res.ns.o
0xc013faa8 Res::ressources
0xc013faac Res::size
.bss 0xc013fab0 0x0 Devices/Display/VGATextOutput.class.o
.bss 0xc013fab0 0x0 Devices/Display/GraphicDisplay.proto.o
.bss 0xc013fab0 0x0 Devices/Display/VESADisplay.class.o
.bss 0xc013fab0 0x0 Devices/Keyboard/PS2Keyboard.class.o
*fill* 0xc013fab0 0x550 00
.bss 0xc0140000 0xc800 Devices/Floppy/FloppyController.class.o
0xc0140000 FloppyController::dmaMutex
0xc0148000 FloppyController::dmabuff
.bss 0xc014c800 0x0 Devices/Floppy/FloppyDrive.class.o
.bss 0xc014c800 0x0 Devices/ATA/ATAController.class.o
.bss 0xc014c800 0x0 Devices/ATA/ATADrive.class.o
.bss 0xc014c800 0x0 Devices/Timer.class.o
0xc014c800 ebss = .
0xc014c800 end = .
0xc014c800 _end = .
0xc014c800 __end = .
LOAD Core/loader.wtf.o
LOAD Core/kmain.wtf.o
LOAD Core/Sys.ns.o
LOAD Core/Log.ns.o
LOAD Core/SB.ns.o
LOAD MemoryManager/Mem.ns.o
LOAD MemoryManager/PhysMem.ns.o
LOAD MemoryManager/GDT.wtf.o
LOAD MemoryManager/GDT.ns.o
LOAD MemoryManager/PageDirectory.class.o
LOAD MemoryManager/PageAlloc.ns.o
LOAD DeviceManager/Disp.ns.o
LOAD DeviceManager/Dev.ns.o
LOAD DeviceManager/Time.ns.o
LOAD DeviceManager/Kbd.ns.o
LOAD TaskManager/Process.class.o
LOAD TaskManager/Process-sc.class.o
LOAD TaskManager/Thread.class.o
LOAD TaskManager/V86/V86Thread.class.o
LOAD TaskManager/V86/V86.ns.o
LOAD TaskManager/V86/v86.wtf.o
LOAD TaskManager/Task.ns.o
LOAD TaskManager/Task.wtf.o
LOAD VTManager/VirtualTerminal.proto.o
LOAD VTManager/SimpleVT.class.o
LOAD VTManager/ScrollableVT.class.o
LOAD VTManager/PipeVT.class.o
LOAD VTManager/FileVT.class.o
LOAD VTManager/VirtualTerminal-kbd.proto.o
LOAD VTManager/VirtualTerminal-sc.proto.o
LOAD VTManager/VT.ns.o
LOAD Shell/KernelShell.class.o
LOAD Shell/KernelShell-fs.class.o
LOAD Shell/KernelShell-sys.class.o
LOAD Linker/Binary.proto.o
LOAD Linker/MelonBinary.class.o
LOAD Linker/ElfBinary.class.o
LOAD ../Library/Common/cppsupport.wtf.o
LOAD ../Library/Common/Bitset.class.o
LOAD ../Library/Common/String.class.o
LOAD ../Library/Common/ByteArray.class.o
LOAD ../Library/Common/WChar.class.o
LOAD ../Library/Common/Rand.ns.o
LOAD ../Library/Common/CMem.ns.o
LOAD ../Library/Common/Heap.class.o
LOAD ../Library/Common/Heap-index.class.o
LOAD ../Library/Common/Mutex.class.o
LOAD ../Library/Common/TextFile.class.o
LOAD VFS/Partition.class.o
LOAD VFS/Part.ns.o
LOAD VFS/VFS.ns.o
LOAD VFS/FSNode-sc.proto.o
LOAD VFS/File.class.o
LOAD VFS/File-sc.class.o
LOAD VFS/DirectoryNode.class.o
LOAD UserManager/Usr.ns.o
LOAD FileSystems/RamFS/RamFS.class.o
LOAD FileSystems/FAT/FATFS.class.o
LOAD SyscallManager/IDT.ns.o
LOAD SyscallManager/Ressource.class.o
LOAD SyscallManager/Res.ns.o
LOAD SyscallManager/IDT.wtf.o
LOAD Devices/Display/VGATextOutput.class.o
LOAD Devices/Display/GraphicDisplay.proto.o
LOAD Devices/Display/VESADisplay.class.o
LOAD Devices/Keyboard/PS2Keyboard.class.o
LOAD Devices/Floppy/FloppyController.class.o
LOAD Devices/Floppy/FloppyDrive.class.o
LOAD Devices/ATA/ATAController.class.o
LOAD Devices/ATA/ATADrive.class.o
LOAD Devices/Timer.class.o
OUTPUT(Melon.ke elf32-i386)
.comment 0x00000000 0x27
.comment 0x00000000 0x27 Core/kmain.wtf.o
0x28 (size before relaxing)
.comment 0x00000000 0x28 Core/Sys.ns.o
.comment 0x00000000 0x28 Core/Log.ns.o
.comment 0x00000000 0x28 Core/SB.ns.o
.comment 0x00000000 0x28 MemoryManager/Mem.ns.o
.comment 0x00000000 0x28 MemoryManager/PhysMem.ns.o
.comment 0x00000000 0x28 MemoryManager/GDT.ns.o
.comment 0x00000000 0x28 MemoryManager/PageDirectory.class.o
.comment 0x00000000 0x28 MemoryManager/PageAlloc.ns.o
.comment 0x00000000 0x28 DeviceManager/Disp.ns.o
.comment 0x00000000 0x28 DeviceManager/Dev.ns.o
.comment 0x00000000 0x28 DeviceManager/Time.ns.o
.comment 0x00000000 0x28 DeviceManager/Kbd.ns.o
.comment 0x00000000 0x28 TaskManager/Process.class.o
.comment 0x00000000 0x28 TaskManager/Process-sc.class.o
.comment 0x00000000 0x28 TaskManager/Thread.class.o
.comment 0x00000000 0x28 TaskManager/V86/V86Thread.class.o
.comment 0x00000000 0x28 TaskManager/V86/V86.ns.o
.comment 0x00000000 0x28 TaskManager/Task.ns.o
.comment 0x00000000 0x28 VTManager/VirtualTerminal.proto.o
.comment 0x00000000 0x28 VTManager/SimpleVT.class.o
.comment 0x00000000 0x28 VTManager/ScrollableVT.class.o
.comment 0x00000000 0x28 VTManager/PipeVT.class.o
.comment 0x00000000 0x28 VTManager/FileVT.class.o
.comment 0x00000000 0x28 VTManager/VirtualTerminal-kbd.proto.o
.comment 0x00000000 0x28 VTManager/VirtualTerminal-sc.proto.o
.comment 0x00000000 0x28 VTManager/VT.ns.o
.comment 0x00000000 0x28 Shell/KernelShell.class.o
.comment 0x00000000 0x28 Shell/KernelShell-fs.class.o
.comment 0x00000000 0x28 Shell/KernelShell-sys.class.o
.comment 0x00000000 0x28 Linker/Binary.proto.o
.comment 0x00000000 0x28 Linker/MelonBinary.class.o
.comment 0x00000000 0x28 Linker/ElfBinary.class.o
.comment 0x00000000 0x28 ../Library/Common/cppsupport.wtf.o
.comment 0x00000000 0x28 ../Library/Common/Bitset.class.o
.comment 0x00000000 0x28 ../Library/Common/String.class.o
.comment 0x00000000 0x28 ../Library/Common/ByteArray.class.o
.comment 0x00000000 0x28 ../Library/Common/WChar.class.o
.comment 0x00000000 0x28 ../Library/Common/Rand.ns.o
.comment 0x00000000 0x28 ../Library/Common/CMem.ns.o
.comment 0x00000000 0x28 ../Library/Common/Heap.class.o
.comment 0x00000000 0x28 ../Library/Common/Heap-index.class.o
.comment 0x00000000 0x28 ../Library/Common/Mutex.class.o
.comment 0x00000000 0x28 ../Library/Common/TextFile.class.o
.comment 0x00000000 0x28 VFS/Partition.class.o
.comment 0x00000000 0x28 VFS/Part.ns.o
.comment 0x00000000 0x28 VFS/VFS.ns.o
.comment 0x00000000 0x28 VFS/FSNode-sc.proto.o
.comment 0x00000000 0x28 VFS/File.class.o
.comment 0x00000000 0x28 VFS/File-sc.class.o
.comment 0x00000000 0x28 VFS/DirectoryNode.class.o
.comment 0x00000000 0x28 UserManager/Usr.ns.o
.comment 0x00000000 0x28 FileSystems/RamFS/RamFS.class.o
.comment 0x00000000 0x28 FileSystems/FAT/FATFS.class.o
.comment 0x00000000 0x28 SyscallManager/IDT.ns.o
.comment 0x00000000 0x28 SyscallManager/Ressource.class.o
.comment 0x00000000 0x28 SyscallManager/Res.ns.o
.comment 0x00000000 0x28 Devices/Display/VGATextOutput.class.o
.comment 0x00000000 0x28 Devices/Display/GraphicDisplay.proto.o
.comment 0x00000000 0x28 Devices/Display/VESADisplay.class.o
.comment 0x00000000 0x28 Devices/Keyboard/PS2Keyboard.class.o
.comment 0x00000000 0x28 Devices/Floppy/FloppyController.class.o
.comment 0x00000000 0x28 Devices/Floppy/FloppyDrive.class.o
.comment 0x00000000 0x28 Devices/ATA/ATAController.class.o
.comment 0x00000000 0x28 Devices/ATA/ATADrive.class.o
.comment 0x00000000 0x28 Devices/Timer.class.o
.note.GNU-stack
0x00000000 0x0
.note.GNU-stack
0x00000000 0x0 Core/kmain.wtf.o
.note.GNU-stack
0x00000000 0x0 Core/Sys.ns.o
.note.GNU-stack
0x00000000 0x0 Core/Log.ns.o
.note.GNU-stack
0x00000000 0x0 Core/SB.ns.o
.note.GNU-stack
0x00000000 0x0 MemoryManager/Mem.ns.o
.note.GNU-stack
0x00000000 0x0 MemoryManager/PhysMem.ns.o
.note.GNU-stack
0x00000000 0x0 MemoryManager/GDT.ns.o
.note.GNU-stack
0x00000000 0x0 MemoryManager/PageDirectory.class.o
.note.GNU-stack
0x00000000 0x0 MemoryManager/PageAlloc.ns.o
.note.GNU-stack
0x00000000 0x0 DeviceManager/Disp.ns.o
.note.GNU-stack
0x00000000 0x0 DeviceManager/Dev.ns.o
.note.GNU-stack
0x00000000 0x0 DeviceManager/Time.ns.o
.note.GNU-stack
0x00000000 0x0 DeviceManager/Kbd.ns.o
.note.GNU-stack
0x00000000 0x0 TaskManager/Process.class.o
.note.GNU-stack
0x00000000 0x0 TaskManager/Process-sc.class.o
.note.GNU-stack
0x00000000 0x0 TaskManager/Thread.class.o
.note.GNU-stack
0x00000000 0x0 TaskManager/V86/V86Thread.class.o
.note.GNU-stack
0x00000000 0x0 TaskManager/V86/V86.ns.o
.note.GNU-stack
0x00000000 0x0 TaskManager/Task.ns.o
.note.GNU-stack
0x00000000 0x0 VTManager/VirtualTerminal.proto.o
.note.GNU-stack
0x00000000 0x0 VTManager/SimpleVT.class.o
.note.GNU-stack
0x00000000 0x0 VTManager/ScrollableVT.class.o
.note.GNU-stack
0x00000000 0x0 VTManager/PipeVT.class.o
.note.GNU-stack
0x00000000 0x0 VTManager/FileVT.class.o
.note.GNU-stack
0x00000000 0x0 VTManager/VirtualTerminal-kbd.proto.o
.note.GNU-stack
0x00000000 0x0 VTManager/VirtualTerminal-sc.proto.o
.note.GNU-stack
0x00000000 0x0 VTManager/VT.ns.o
.note.GNU-stack
0x00000000 0x0 Shell/KernelShell.class.o
.note.GNU-stack
0x00000000 0x0 Shell/KernelShell-fs.class.o
.note.GNU-stack
0x00000000 0x0 Shell/KernelShell-sys.class.o
.note.GNU-stack
0x00000000 0x0 Linker/Binary.proto.o
.note.GNU-stack
0x00000000 0x0 Linker/MelonBinary.class.o
.note.GNU-stack
0x00000000 0x0 Linker/ElfBinary.class.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/cppsupport.wtf.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/Bitset.class.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/String.class.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/ByteArray.class.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/WChar.class.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/Rand.ns.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/CMem.ns.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/Heap.class.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/Heap-index.class.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/Mutex.class.o
.note.GNU-stack
0x00000000 0x0 ../Library/Common/TextFile.class.o
.note.GNU-stack
0x00000000 0x0 VFS/Partition.class.o
.note.GNU-stack
0x00000000 0x0 VFS/Part.ns.o
.note.GNU-stack
0x00000000 0x0 VFS/VFS.ns.o
.note.GNU-stack
0x00000000 0x0 VFS/FSNode-sc.proto.o
.note.GNU-stack
0x00000000 0x0 VFS/File.class.o
.note.GNU-stack
0x00000000 0x0 VFS/File-sc.class.o
.note.GNU-stack
0x00000000 0x0 VFS/DirectoryNode.class.o
.note.GNU-stack
0x00000000 0x0 UserManager/Usr.ns.o
.note.GNU-stack
0x00000000 0x0 FileSystems/RamFS/RamFS.class.o
.note.GNU-stack
0x00000000 0x0 FileSystems/FAT/FATFS.class.o
.note.GNU-stack
0x00000000 0x0 SyscallManager/IDT.ns.o
.note.GNU-stack
0x00000000 0x0 SyscallManager/Ressource.class.o
.note.GNU-stack
0x00000000 0x0 SyscallManager/Res.ns.o
.note.GNU-stack
0x00000000 0x0 Devices/Display/VGATextOutput.class.o
.note.GNU-stack
0x00000000 0x0 Devices/Display/GraphicDisplay.proto.o
.note.GNU-stack
0x00000000 0x0 Devices/Display/VESADisplay.class.o
.note.GNU-stack
0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.note.GNU-stack
0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.note.GNU-stack
0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.note.GNU-stack
0x00000000 0x0 Devices/ATA/ATAController.class.o
.note.GNU-stack
0x00000000 0x0 Devices/ATA/ATADrive.class.o
.note.GNU-stack
0x00000000 0x0 Devices/Timer.class.o
|