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
|
Discarded input sections
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/kmain.wtf.o
.group 0x00000000 0x0 Core/Sys.ns.o
.group 0x00000000 0x0 Core/Sys.ns.o
.group 0x00000000 0x0 Core/Sys.ns.o
.text._Znwj 0x00000000 0x0 Core/Sys.ns.o
.text._ZN15VirtualTerminallsE6String
0x00000000 0x0 Core/Sys.ns.o
.text._ZN15VirtualTerminallsEi
0x00000000 0x0 Core/Sys.ns.o
.group 0x00000000 0x0 MemoryManager/PhysMem.ns.o
.group 0x00000000 0x0 MemoryManager/PhysMem.ns.o
.text._Znwj 0x00000000 0x0 MemoryManager/PhysMem.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Dev.ns.o
.text._ZnwjPv 0x00000000 0x0 DeviceManager/Dev.ns.o
.text._ZdaPv 0x00000000 0x0 DeviceManager/Dev.ns.o
.text._ZN6VectorIP6DeviceE4sizeEv
0x00000000 0x0 DeviceManager/Dev.ns.o
.text._ZN6VectorIP6DeviceEixEj
0x00000000 0x0 DeviceManager/Dev.ns.o
.text._ZN6VectorIP6DeviceED1Ev
0x00000000 0x0 DeviceManager/Dev.ns.o
.group 0x00000000 0x0 DeviceManager/Kbd.ns.o
.group 0x00000000 0x0 DeviceManager/Kbd.ns.o
.group 0x00000000 0x0 DeviceManager/Kbd.ns.o
.group 0x00000000 0x0 DeviceManager/Kbd.ns.o
.group 0x00000000 0x0 DeviceManager/Kbd.ns.o
.group 0x00000000 0x0 DeviceManager/Kbd.ns.o
.group 0x00000000 0x0 DeviceManager/Kbd.ns.o
.text._ZdaPv 0x00000000 0x0 DeviceManager/Kbd.ns.o
.text._ZN6VectorIP6DeviceED1Ev
0x00000000 0x0 DeviceManager/Kbd.ns.o
.text._ZN6VectorIP6DeviceE4sizeEv
0x00000000 0x0 DeviceManager/Kbd.ns.o
.text._ZN6VectorIP6DeviceEixEj
0x00000000 0x0 DeviceManager/Kbd.ns.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Process.class.o
.text._ZnwjPv 0x00000000 0x0 TaskManager/Process.class.o
.text._Znwj 0x00000000 0x0 TaskManager/Process.class.o
.text._ZdaPv 0x00000000 0x0 TaskManager/Process.class.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 TaskManager/Task.ns.o
.text._ZnwjPv 0x00000000 0x0 TaskManager/Task.ns.o
.text._Znwj 0x00000000 0x0 TaskManager/Task.ns.o
.text._ZdaPv 0x00000000 0x0 TaskManager/Task.ns.o
.text._ZN6VectorIP6ThreadEC1Ev
0x00000000 0x0 TaskManager/Task.ns.o
.text._ZN6VectorIP6ThreadEixEj
0x00000000 0x0 TaskManager/Task.ns.o
.text._ZN6VectorIP6ThreadE4sizeEv
0x00000000 0x0 TaskManager/Task.ns.o
.text._ZN6VectorIP6ThreadE4pushES1_
0x00000000 0x0 TaskManager/Task.ns.o
.text._ZN6VectorIP6ThreadE4backEv
0x00000000 0x0 TaskManager/Task.ns.o
.text._ZN6VectorIP6ThreadE3popEv
0x00000000 0x0 TaskManager/Task.ns.o
.text._ZN6VectorIP6ThreadE5emptyEv
0x00000000 0x0 TaskManager/Task.ns.o
.text._ZN6VectorIP6ThreadED1Ev
0x00000000 0x0 TaskManager/Task.ns.o
.group 0x00000000 0x0 VTManager/VirtualTerminal.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal.class.o
.text._ZdaPv 0x00000000 0x0 VTManager/VirtualTerminal.class.o
.text._ZN5wcharaSEj
0x00000000 0x0 VTManager/VirtualTerminal.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.group 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.text._ZnwjPv 0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.text._ZN3Kbd10keypress_tC1Ev
0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 VTManager/VT.ns.o
.text._ZnwjPv 0x00000000 0x0 VTManager/VT.ns.o
.text._ZdaPv 0x00000000 0x0 VTManager/VT.ns.o
.group 0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/String.class.o
.text._ZnwjPv 0x00000000 0x0 Library/String.class.o
.text._Znaj 0x00000000 0x0 Library/String.class.o
.text._ZdaPv 0x00000000 0x0 Library/String.class.o
.text._ZN5wcharaSEj
0x00000000 0x0 Library/String.class.o
.text._ZN5wcharcvjEv
0x00000000 0x0 Library/String.class.o
.group 0x00000000 0x0 Library/wchar.class.o
.text._ZN5wchareqEj
0x00000000 0x0 Library/wchar.class.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 VFS/Part.ns.o
.text._ZnwjPv 0x00000000 0x0 VFS/Part.ns.o
.text._Znwj 0x00000000 0x0 VFS/Part.ns.o
.text._ZdlPv 0x00000000 0x0 VFS/Part.ns.o
.text._ZdaPv 0x00000000 0x0 VFS/Part.ns.o
.text._ZN6VectorIP11BlockDeviceE4sizeEv
0x00000000 0x0 VFS/Part.ns.o
.text._ZN6VectorIP11BlockDeviceEixEj
0x00000000 0x0 VFS/Part.ns.o
.text._ZN6VectorIP9PartitionE4sizeEv
0x00000000 0x0 VFS/Part.ns.o
.text._ZN6VectorIP9PartitionEixEj
0x00000000 0x0 VFS/Part.ns.o
.group 0x00000000 0x0 SyscallManager/IDT.ns.o
.group 0x00000000 0x0 SyscallManager/IDT.ns.o
.group 0x00000000 0x0 SyscallManager/IDT.ns.o
.group 0x00000000 0x0 SyscallManager/IDT.ns.o
.group 0x00000000 0x0 SyscallManager/IDT.ns.o
.group 0x00000000 0x0 SyscallManager/IDT.ns.o
.text._Znwj 0x00000000 0x0 SyscallManager/IDT.ns.o
.text._ZN15VirtualTerminallsE6String
0x00000000 0x0 SyscallManager/IDT.ns.o
.text._ZN15VirtualTerminallsEi
0x00000000 0x0 SyscallManager/IDT.ns.o
.text._ZN15VirtualTerminallsEj
0x00000000 0x0 SyscallManager/IDT.ns.o
.group 0x00000000 0x0 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x0 Devices/Display/VGATextOutput.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x0 Devices/Display/VGATextOutput.class.o
.group 0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.text._ZN6DeviceC2Ev
0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.rodata._ZTV6Device
0x00000000 0x0 Devices/Keyboard/PS2Keyboard.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.text._Znwj 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.text._ZdaPv 0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.text._ZN6DeviceC2Ev
0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.text._ZN6VectorIP6DeviceED1Ev
0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.text._ZN6VectorIP6DeviceE4sizeEv
0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.text._ZN6VectorIP6DeviceEixEj
0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.rodata._ZTV6Device
0x00000000 0x0 Devices/Floppy/FloppyController.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.text._ZN6DeviceC2Ev
0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.rodata._ZTV6Device
0x00000000 0x0 Devices/Floppy/FloppyDrive.class.o
.group 0x00000000 0x0 Devices/Timer.class.o
.group 0x00000000 0x0 Devices/Timer.class.o
.group 0x00000000 0x0 Devices/Timer.class.o
.group 0x00000000 0x0 Devices/Timer.class.o
.text._ZN6Device9handleIRQE11registers_ti
0x00000000 0x0 Devices/Timer.class.o
.text._ZN6DeviceC2Ev
0x00000000 0x0 Devices/Timer.class.o
.rodata._ZTV6Device
0x00000000 0x0 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 0xf539 load address 0x00100020
*(.text)
.text 0xc0100020 0x75 Core/loader.wtf.o
0xc010002c loader
*fill* 0xc0100095 0x3 00
.text 0xc0100098 0x4dc5 Core/kmain.wtf.o
0xc0100098 kmain
*fill* 0xc0104e5d 0x3 00
.text 0xc0104e60 0xf Core/cppsupport.wtf.o
0xc0104e60 __cxa_pure_virtual
0xc0104e65 __cxa_atexit
*fill* 0xc0104e6f 0x1 00
.text 0xc0104e70 0x668 Core/Sys.ns.o
0xc0104eca Sys::bochs_output(char*, char*, unsigned int)
0xc0104e8e Sys::inb(unsigned short)
0xc0104eab Sys::inw(unsigned short)
0xc0105156 Sys::panic(char*, char*, unsigned int)
0xc01054bc Sys::reboot()
0xc0104e70 Sys::outb(unsigned short, unsigned char)
0xc01050cc Sys::bochs_output_hex(unsigned int)
0xc0105309 Sys::panic_assert(char*, unsigned int, char*)
0xc0104fc4 Sys::bochs_output(String, char*, unsigned int)
.text 0xc01054d8 0xd5 Core/CMem.ns.o
0xc010550e CMem::memset(unsigned char*, unsigned char, int)
0xc0105545 CMem::memsetw(unsigned short*, unsigned short, int)
0xc0105580 CMem::strlen(char const*)
0xc01054d8 CMem::memcpy(unsigned char*, unsigned char const*, int)
*fill* 0xc01055ad 0x3 00
.text 0xc01055b0 0x8e4 MemoryManager/Mem.ns.o
0xc0105a70 Mem::contractHeap()
0xc0105e7e Mem::kheapSize()
0xc010566a Mem::insertIntoHeapIndex(Mem::heap_header_t*)
0xc010580e Mem::removeFromHeapIndex(Mem::heap_header_t*)
0xc01057c5 Mem::removeFromHeapIndex(unsigned int)
0xc0105835 Mem::createHeap()
0xc0105943 Mem::expandHeap(unsigned int)
0xc0105d1c Mem::kfree(void*)
0xc0105b8d Mem::kalloc(unsigned int, bool)
0xc0105783 Mem::heapIndexFindEntry(Mem::heap_header_t*)
0xc01055b0 Mem::kallocInternal(unsigned int, bool)
.text 0xc0105e94 0x35c MemoryManager/PhysMem.ns.o
0xc01061e6 PhysMem::total()
0xc0106036 PhysMem::removeTemporaryPages()
0xc0106171 PhysMem::freeFrame(page_t*)
0xc01061c0 PhysMem::free()
0xc010608a PhysMem::allocFrame(page_t*, bool, bool)
0xc0105e94 PhysMem::initPaging(unsigned int)
.text 0xc01061f0 0x1d MemoryManager/GDT.wtf.o
0xc01061f0 gdt_flush
*fill* 0xc010620d 0x3 00
.text 0xc0106210 0x193 MemoryManager/GDT.ns.o
0xc010629f GDT::init()
0xc0106210 GDT::setGate(int, unsigned int, unsigned int, unsigned char, unsigned char)
*fill* 0xc01063a3 0x1 00
.text 0xc01063a4 0x8f1 MemoryManager/PageDirectory.class.o
0xc0106ae4 PageDirectory::getPage(unsigned int, bool)
0xc0106468 PageDirectory::PageDirectory(PageDirectory*)
0xc01063a4 PageDirectory::PageDirectory()
0xc0106a5e PageDirectory::~PageDirectory()
0xc01069d8 PageDirectory::~PageDirectory()
0xc0106c34 PageDirectory::freeFrame(unsigned int)
0xc0106720 PageDirectory::PageDirectory(PageDirectory*)
0xc0106406 PageDirectory::PageDirectory()
0xc0106be2 PageDirectory::allocFrame(unsigned int, bool, bool)
0xc0106c6e PageDirectory::switchTo()
*fill* 0xc0106c95 0x3 00
.text 0xc0106c98 0x239 MemoryManager/PageAlloc.ns.o
0xc0106eb5 PageAlloc::free(void*)
0xc0106cec PageAlloc::alloc(unsigned int*)
0xc0106c98 PageAlloc::init()
*fill* 0xc0106ed1 0x3 00
.text 0xc0106ed4 0x161 DeviceManager/Disp.ns.o
0xc0106ede Disp::textRows()
0xc0106fc1 Disp::clear()
0xc0106ed4 Disp::textCols()
0xc0106fdf Disp::setDisplay(Display*)
0xc0106f60 Disp::moveCursor(unsigned short, unsigned short)
0xc0106ee8 Disp::putChar(unsigned short, unsigned short, wchar, unsigned char)
*fill* 0xc0107035 0x3 00
.text 0xc0107038 0x37d DeviceManager/Dev.ns.o
0xc01070e9 Dev::registerDevice(Device*)
0xc010710f Dev::unregisterDevice(Device*)
0xc0107191 Dev::requestIRQ(Device*, int)
0xc01071bd Dev::findDevices(String)
0xc0107038 Dev::handleIRQ(registers_t, int)
*fill* 0xc01073b5 0x3 00
.text 0xc01073b8 0x37 DeviceManager/Time.ns.o
0xc01073b8 Time::setTimer(Timer*)
0xc01073da Time::time()
0xc01073c5 Time::uptime()
*fill* 0xc01073ef 0x1 00
.text 0xc01073f0 0x6f6 DeviceManager/Kbd.ns.o
0xc010752a Kbd::keyPress(unsigned char)
0xc0107494 Kbd::updateLeds()
0xc010746f Kbd::setKeymap(wchar*, wchar*, wchar*, wchar*)
0xc010785b Kbd::keyRelease(unsigned char)
0xc0107462 Kbd::setFocus(VirtualTerminal*)
0xc01073f0 Kbd::process(Kbd::keypress_t)
*fill* 0xc0107ae6 0x2 00
.text 0xc0107ae8 0x518 TaskManager/Process.class.o
0xc0107e86 Process::exit()
0xc0107ae8 Process::Process()
0xc0107c0e Process::Process(String, unsigned int)
0xc0107ff2 Process::setVirtualTerminal(VirtualTerminal*)
0xc0107dfe Process::stackAlloc()
0xc0107fe6 Process::getVirtualTerminal()
0xc0107f0c Process::threadFinishes(Thread*, unsigned int)
0xc0107db0 Process::~Process()
0xc0107b0c Process::Process()
0xc0107b30 Process::createKernel(String, VirtualTerminal*)
0xc0107d62 Process::~Process()
0xc0107cb8 Process::Process(String, unsigned int)
0xc0107ee4 Process::registerThread(Thread*)
0xc0107fda Process::getPagedir()
.text 0xc0108000 0x45d TaskManager/Thread.class.o
0xc0108150 Thread::Thread(Process*, unsigned int (*)())
0xc010801e Thread::Thread()
0xc0108250 Thread::setup(unsigned int (*)(), unsigned int)
0xc01081d0 Thread::~Thread()
0xc0108024 Thread::Thread(unsigned int (*)(), bool)
0xc010839e Thread::sleep(unsigned int)
0xc0108018 Thread::Thread()
0xc01083c2 Thread::waitIRQ(unsigned char)
0xc01080ba Thread::Thread(unsigned int (*)(), bool)
0xc0108350 Thread::setState(unsigned int, unsigned int, unsigned int)
0xc0108370 Thread::getEsp()
0xc010837c Thread::getEbp()
0xc0108394 Thread::getProcess()
0xc0108388 Thread::getEip()
0xc01082cc Thread::finish(unsigned int)
0xc0108406 Thread::runnable()
0xc0108210 Thread::~Thread()
0xc0108190 Thread::Thread(Process*, unsigned int (*)())
0xc0108000 runThread(Thread*, unsigned int (*)())
*fill* 0xc010845d 0x3 00
.text 0xc0108460 0x578 TaskManager/Task.ns.o
0xc01086db Task::IRQwakeup(unsigned char)
0xc01086be Task::triggerSwitch()
0xc01087e5 Task::getKernelProcess()
0xc01088ab Task::registerProcess(Process*)
0xc01086c5 Task::nextPid()
0xc01088d1 Task::unregisterProcess(Process*)
0xc0108829 Task::unregisterThread(Thread*)
0xc0108803 Task::registerThread(Thread*)
0xc0108460 Task::initialize(String, VirtualTerminal*)
0xc010850f Task::nextThread()
0xc0108757 Task::allocKernelPageTable(unsigned int, page_table_t*, unsigned int)
0xc01085c4 Task::doSwitch()
*fill* 0xc01089d8 0x8 00
.text 0xc01089e0 0x48 TaskManager/Task.wtf.o
0xc01089e0 read_eip
0xc01089e3 idle_task
0xc01089ea copy_page_physical
.text 0xc0108a28 0x99 TaskManager/Mutex.class.o
0xc0108a40 Mutex::Mutex(bool)
0xc0108aaa Mutex::unlock()
0xc0108a58 Mutex::lock()
0xc0108a7a Mutex::waitLock()
0xc0108ab6 Mutex::locked()
0xc0108a28 Mutex::Mutex(bool)
*fill* 0xc0108ac1 0x3 00
.text 0xc0108ac4 0xe27 VTManager/VirtualTerminal.class.o
0xc0108e8c VirtualTerminal::map(int, int)
0xc01091aa VirtualTerminal::put(wchar, bool)
0xc0109594 VirtualTerminal::hexDump(unsigned char*, unsigned int)
0xc0108f06 VirtualTerminal::unmap()
0xc0109172 VirtualTerminal::setCursorLine(unsigned int)
0xc0108cf8 VirtualTerminal::setColor(unsigned char, unsigned char)
0xc0108c74 VirtualTerminal::~VirtualTerminal()
0xc010918e VirtualTerminal::setCursorCol(unsigned int)
0xc0108b9c VirtualTerminal::VirtualTerminal(unsigned int, unsigned int, unsigned char, unsigned char)
0xc0109110 VirtualTerminal::updateCursor()
0xc0109380 VirtualTerminal::writeDec(int, bool)
0xc0108cb6 VirtualTerminal::~VirtualTerminal()
0xc0108f20 VirtualTerminal::redraw()
0xc01094b8 VirtualTerminal::writeHex(unsigned int, bool)
0xc0108ff8 VirtualTerminal::scroll()
0xc0108ac4 VirtualTerminal::VirtualTerminal(unsigned int, unsigned int, unsigned char, unsigned char)
0xc0109314 VirtualTerminal::write(String, bool)
0xc0108d46 VirtualTerminal::putChar(unsigned int, unsigned int, wchar)
0xc0108e10 VirtualTerminal::clear()
0xc010914c VirtualTerminal::moveCursor(unsigned int, unsigned int)
*fill* 0xc01098eb 0x1 00
.text 0xc01098ec 0x595 VTManager/VirtualTerminal-kbd.class.o
0xc0109a42 VirtualTerminal::getKeypress(bool, bool)
0xc0109cb4 VirtualTerminal::readLine(bool)
0xc01098ec VirtualTerminal::keyPress(Kbd::keypress_t)
*fill* 0xc0109e81 0x3 00
.text 0xc0109e84 0x156 VTManager/VT.ns.o
0xc0109eaa VT::unmap(VirtualTerminal*)
0xc0109f31 VT::redrawScreen()
0xc0109e84 VT::map(VirtualTerminal*)
*fill* 0xc0109fda 0x2 00
.text 0xc0109fdc 0x2f1 Library/Bitset.class.o
0xc010a2c2 Bitset::usedBits()
0xc0109fdc Bitset::Bitset()
0xc010a1e4 Bitset::testBit(unsigned int)
0xc010a0aa Bitset::~Bitset()
0xc010a17c Bitset::clearBit(unsigned int)
0xc010a0c0 Bitset::init(unsigned int, unsigned int*)
0xc0109fe8 Bitset::Bitset(unsigned int)
0xc0109fe2 Bitset::Bitset()
0xc010a01c Bitset::Bitset(unsigned int)
0xc010a116 Bitset::setBit(unsigned int)
0xc010a094 Bitset::~Bitset()
0xc010a072 Bitset::Bitset(unsigned int, unsigned int*)
0xc010a050 Bitset::Bitset(unsigned int, unsigned int*)
0xc010a22c Bitset::firstFreeBit()
*fill* 0xc010a2cd 0x3 00
.text 0xc010a2d0 0x123c Library/String.class.o
0xc010a2d0 String::hex(unsigned int)
0xc010ac62 String::operator==(char*)
0xc010afa8 String::operator+=(wchar)
0xc010b156 String::toInt()
0xc010a8b0 String::String(String const&)
0xc010a5be String::String()
0xc010a5d6 String::String()
0xc010b2ec String::size()
0xc010a3de String::number(int)
0xc010abe0 String::operator==(String&)
0xc010b0d6 String::operator+(char*)
0xc010a9ae String::~String()
0xc010a7da String::String(String const&)
0xc010a986 String::~String()
0xc010a9d6 String::operator=(String const&)
0xc010a5ee String::String(char*)
0xc010ad22 String::operator+=(String&)
0xc010b2da String::operator[](int)
0xc010b33a String::split(wchar)
0xc010b2f8 String::clear()
0xc010b32a String::empty()
0xc010b21e String::toInt16()
0xc010b42e String::substr(int, int)
0xc010a6e4 String::String(char*)
0xc010ae50 String::operator+=(char*)
0xc010b116 String::operator+(wchar)
0xc010aacc String::operator=(char*)
0xc010b096 String::operator+(String&)
.text 0xc010b50c 0xd47 Library/wchar.class.o
0xc010b51a wchar::wchar()
0xc010b586 wchar::wchar(char*)
0xc010b50c wchar::wchar()
0xc010b56c wchar::wchar(char*)
0xc010b650 wchar::affectAscii(char)
0xc010b5a0 wchar::utf8len(char*)
0xc010b668 wchar::affectUtf8(char*)
0xc010b528 wchar::wchar(char)
0xc010b54a wchar::wchar(char)
0xc010b830 wchar::toAscii()
*fill* 0xc010c253 0x1 00
.text 0xc010c254 0x22c VFS/Partition.class.o
0xc010c2aa Partition::Partition(BlockDevice*, unsigned char, unsigned long long, unsigned long long)
0xc010c254 Partition::Partition(BlockDevice*, unsigned char, unsigned long long, unsigned long long)
0xc010c462 Partition::getBlockSize()
0xc010c456 Partition::getPartNumber()
0xc010c430 Partition::getDevice()
0xc010c398 Partition::writeBlocks(unsigned long long, unsigned int, unsigned char*)
0xc010c448 Partition::getBlockCount()
0xc010c43a Partition::getStartBlock()
0xc010c300 Partition::readBlocks(unsigned long long, unsigned int, unsigned char*)
.text 0xc010c480 0x33d VFS/Part.ns.o
0xc010c6e4 Part::getDeviceID(BlockDevice*)
0xc010c480 Part::readPartitionTable(BlockDevice*)
0xc010c4f8 Part::registerDevice(BlockDevice*)
0xc010c599 Part::unregisterDevice(BlockDevice*)
*fill* 0xc010c7bd 0x3 00
.text 0xc010c7c0 0xdae SyscallManager/IDT.ns.o
0xc010d246 IDT::handleException(registers_t, int)
0xc010c9ff IDT::init()
0xc010c998 IDT::setGate(unsigned char, unsigned int, unsigned short, unsigned char)
0xc010c7c0 interrupt_handler
*fill* 0xc010d56e 0x2 00
.text 0xc010d570 0x222 SyscallManager/IDT.wtf.o
0xc010d5a0 isr4
0xc010d67a isr27
0xc010d5f2 isr13
0xc010d724 irq12
0xc010d648 isr22
0xc010d602 isr15
0xc010d710 irq10
0xc010d738 irq14
0xc010d5d0 isr9
0xc010d6fc irq8
0xc010d652 isr23
0xc010d68e isr29
0xc010d760 int66
0xc010d6a2 isr31
0xc010d63e isr21
0xc010d71a irq11
0xc010d684 isr28
0xc010d5c8 isr8
0xc010d6de irq5
0xc010d634 isr20
0xc010d5fa isr14
0xc010d5aa isr5
0xc010d6e8 irq6
0xc010d6b6 irq1
0xc010d582 isr1
0xc010d706 irq9
0xc010d670 isr26
0xc010d5e2 isr11
0xc010d72e irq13
0xc010d5ea isr12
0xc010d578 isr0
0xc010d6c0 irq2
0xc010d65c isr24
0xc010d60c isr16
0xc010d596 isr3
0xc010d756 int65
0xc010d5b4 isr6
0xc010d6f2 irq7
0xc010d620 isr18
0xc010d6ac irq0
0xc010d5da isr10
0xc010d616 isr17
0xc010d58c isr2
0xc010d74c int64
0xc010d62a isr19
0xc010d570 idt_flush
0xc010d698 isr30
0xc010d742 irq15
0xc010d5be isr7
0xc010d666 isr25
0xc010d6d4 irq4
0xc010d6ca irq3
*fill* 0xc010d792 0x2 00
.text 0xc010d794 0x185 Devices/Display/VGATextOutput.class.o
0xc010d7bc VGATextOutput::getName()
0xc010d7e4 VGATextOutput::textCols()
0xc010d8e2 VGATextOutput::clear()
0xc010d794 VGATextOutput::getClass()
0xc010d85c VGATextOutput::moveCursor(unsigned short, unsigned short)
0xc010d7f8 VGATextOutput::putChar(unsigned short, unsigned short, wchar, unsigned char)
0xc010d7ee VGATextOutput::textRows()
*fill* 0xc010d919 0x3 00
.text 0xc010d91c 0x204 Devices/Keyboard/PS2Keyboard.class.o
0xc010d98c PS2Keyboard::PS2Keyboard()
0xc010da4c PS2Keyboard::handleIRQ(registers_t, int)
0xc010da24 PS2Keyboard::getName()
0xc010dad6 PS2Keyboard::updateLeds(unsigned int)
0xc010d91c PS2Keyboard::PS2Keyboard()
0xc010d9fc PS2Keyboard::getClass()
.text 0xc010db20 0x8b0 Devices/Floppy/FloppyController.class.o
0xc010dc9c FloppyController::dmaRelease()
0xc010ddf2 FloppyController::FloppyController(unsigned int, unsigned char)
0xc010e1ec FloppyController::writeCmd(unsigned char)
0xc010e1a4 FloppyController::setActiveDrive(unsigned char)
0xc010dcb0 floppyMotorTimer()
0xc010db20 FloppyController::dmaInit(unsigned char, unsigned int)
0xc010e0ec FloppyController::setDOR()
0xc010e1d6 FloppyController::setNoActiveDrive()
0xc010e002 FloppyController::getClass()
0xc010e26e FloppyController::readData()
0xc010dd84 FloppyController::FloppyController(unsigned int, unsigned char)
0xc010e02a FloppyController::getName()
0xc010de60 FloppyController::detect()
0xc010e0aa FloppyController::checkInterrupt(int*, int*)
0xc010e2dc FloppyController::reset()
.text 0xc010e3d0 0xf6e Devices/Floppy/FloppyDrive.class.o
0xc010f2cc FloppyDrive::writeBlocks(unsigned long long, unsigned int, unsigned char*)
0xc010e8ae FloppyDrive::setMotorState(bool)
0xc010e4d2 FloppyDrive::FloppyDrive(FloppyController*, unsigned char, unsigned char)
0xc010f02a FloppyDrive::readBlocks(unsigned long long, unsigned int, unsigned char*)
0xc010e694 FloppyDrive::setup()
0xc010e5d4 FloppyDrive::getClass()
0xc010e5fc FloppyDrive::getName()
0xc010f00e FloppyDrive::blocks()
0xc010e3d0 FloppyDrive::FloppyDrive(FloppyController*, unsigned char, unsigned char)
0xc010eb10 FloppyDrive::doTrack(unsigned int, unsigned char)
0xc010e760 FloppyDrive::calibrate()
0xc010ef6a FloppyDrive::readOnly()
0xc010e958 FloppyDrive::killMotor()
0xc010f2f0 FloppyDrive::chs2lba(unsigned int, unsigned int, unsigned int)
0xc010f2e6 FloppyDrive::blockSize()
0xc010e97a FloppyDrive::seek(unsigned int, int)
*fill* 0xc010f33e 0x2 00
.text 0xc010f340 0x219 Devices/Timer.class.o
0xc010f458 Timer::setFrequency(unsigned char)
0xc010f340 Timer::Timer(unsigned char)
0xc010f408 Timer::getClass()
0xc010f430 Timer::getName()
0xc010f4dc Timer::time()
0xc010f516 Timer::handleIRQ(registers_t, int)
0xc010f4d0 Timer::uptime()
0xc010f3a4 Timer::Timer(unsigned char)
.text._Znwj 0xc010f559 0x1b load address 0x0010f559
.text._Znwj 0xc010f559 0x1b Core/kmain.wtf.o
0xc010f559 operator new(unsigned int)
.text._ZdaPv 0xc010f574 0x13 load address 0x0010f574
.text._ZdaPv 0xc010f574 0x13 Core/kmain.wtf.o
0xc010f574 operator delete[](void*)
.text._ZN6Device9handleIRQE11registers_ti
0xc010f588 0x5 load address 0x0010f588
.text._ZN6Device9handleIRQE11registers_ti
0xc010f588 0x5 Core/kmain.wtf.o
0xc010f588 Device::handleIRQ(registers_t, int)
.text._ZN15VirtualTerminallsE6String
0xc010f58e 0x42 load address 0x0010f58e
.text._ZN15VirtualTerminallsE6String
0xc010f58e 0x42 Core/kmain.wtf.o
0xc010f58e VirtualTerminal::operator<<(String)
.text._ZN15VirtualTerminallsEi
0xc010f5d0 0x25 load address 0x0010f5d0
.text._ZN15VirtualTerminallsEi
0xc010f5d0 0x25 Core/kmain.wtf.o
0xc010f5d0 VirtualTerminal::operator<<(int)
.text._ZN15VirtualTerminallsEj
0xc010f5f6 0x25 load address 0x0010f5f6
.text._ZN15VirtualTerminallsEj
0xc010f5f6 0x25 Core/kmain.wtf.o
0xc010f5f6 VirtualTerminal::operator<<(unsigned int)
.text._ZN6DeviceC2Ev
0xc010f61c 0xe load address 0x0010f61c
.text._ZN6DeviceC2Ev
0xc010f61c 0xe Core/kmain.wtf.o
0xc010f61c Device::Device()
.text._ZN7DisplayC2Ev
0xc010f62a 0x1c load address 0x0010f62a
.text._ZN7DisplayC2Ev
0xc010f62a 0x1c Core/kmain.wtf.o
0xc010f62a Display::Display()
.text._ZN13VGATextOutputC1Ev
0xc010f646 0x1c load address 0x0010f646
.text._ZN13VGATextOutputC1Ev
0xc010f646 0x1c Core/kmain.wtf.o
0xc010f646 VGATextOutput::VGATextOutput()
.text._ZN6VectorIP6DeviceED1Ev
0xc010f662 0x27 load address 0x0010f662
.text._ZN6VectorIP6DeviceED1Ev
0xc010f662 0x27 Core/kmain.wtf.o
0xc010f662 Vector<Device*>::~Vector()
.text._ZN6VectorIP6DeviceE4sizeEv
0xc010f68a 0xb load address 0x0010f68a
.text._ZN6VectorIP6DeviceE4sizeEv
0xc010f68a 0xb Core/kmain.wtf.o
0xc010f68a Vector<Device*>::size()
.text._ZN6VectorIP6DeviceEixEj
0xc010f696 0x12 load address 0x0010f696
.text._ZN6VectorIP6DeviceEixEj
0xc010f696 0x12 Core/kmain.wtf.o
0xc010f696 Vector<Device*>::operator[](unsigned int)
.text._ZN6VectorIP11BlockDeviceE4sizeEv
0xc010f6a8 0xb load address 0x0010f6a8
.text._ZN6VectorIP11BlockDeviceE4sizeEv
0xc010f6a8 0xb Core/kmain.wtf.o
0xc010f6a8 Vector<BlockDevice*>::size()
.text._ZN6VectorIP11BlockDeviceEixEj
0xc010f6b4 0x12 load address 0x0010f6b4
.text._ZN6VectorIP11BlockDeviceEixEj
0xc010f6b4 0x12 Core/kmain.wtf.o
0xc010f6b4 Vector<BlockDevice*>::operator[](unsigned int)
.text._ZN6VectorIP9PartitionE4sizeEv
0xc010f6c6 0xb load address 0x0010f6c6
.text._ZN6VectorIP9PartitionE4sizeEv
0xc010f6c6 0xb Core/kmain.wtf.o
0xc010f6c6 Vector<Partition*>::size()
.text._ZN6VectorIP9PartitionEixEj
0xc010f6d2 0x12 load address 0x0010f6d2
.text._ZN6VectorIP9PartitionEixEj
0xc010f6d2 0x12 Core/kmain.wtf.o
0xc010f6d2 Vector<Partition*>::operator[](unsigned int)
.text._ZnwjPv 0xc010f6e4 0x8 load address 0x0010f6e4
.text._ZnwjPv 0xc010f6e4 0x8 MemoryManager/PhysMem.ns.o
0xc010f6e4 operator new(unsigned int, void*)
.text._ZN6VectorIP6DeviceEC1Ev
0xc010f6ec 0x18 load address 0x0010f6ec
.text._ZN6VectorIP6DeviceEC1Ev
0xc010f6ec 0x18 DeviceManager/Dev.ns.o
0xc010f6ec Vector<Device*>::Vector()
.text._ZN6VectorIP6DeviceE4pushES1_
0xc010f704 0x91 load address 0x0010f704
.text._ZN6VectorIP6DeviceE4pushES1_
0xc010f704 0x91 DeviceManager/Dev.ns.o
0xc010f704 Vector<Device*>::push(Device*)
.text._ZN6VectorIP6DeviceE4backEv
0xc010f796 0x19 load address 0x0010f796
.text._ZN6VectorIP6DeviceE4backEv
0xc010f796 0x19 DeviceManager/Dev.ns.o
0xc010f796 Vector<Device*>::back()
.text._ZN6VectorIP6DeviceE3popEv
0xc010f7b0 0x6d load address 0x0010f7b0
.text._ZN6VectorIP6DeviceE3popEv
0xc010f7b0 0x6d DeviceManager/Dev.ns.o
0xc010f7b0 Vector<Device*>::pop()
.text._ZN6VectorIP6DeviceEC1ERKS2_
0xc010f81e 0x7f load address 0x0010f81e
.text._ZN6VectorIP6DeviceEC1ERKS2_
0xc010f81e 0x7f DeviceManager/Dev.ns.o
0xc010f81e Vector<Device*>::Vector(Vector<Device*> const&)
.text._ZN5wcharaSEj
0xc010f89e 0x10 load address 0x0010f89e
.text._ZN5wcharaSEj
0xc010f89e 0x10 DeviceManager/Kbd.ns.o
0xc010f89e wchar::operator=(unsigned int)
.text._ZN5wcharcvjEv
0xc010f8ae 0xa load address 0x0010f8ae
.text._ZN5wcharcvjEv
0xc010f8ae 0xa DeviceManager/Kbd.ns.o
0xc010f8ae wchar::operator unsigned int()
.text._ZN3Kbd10keypress_tC1Ev
0xc010f8b8 0x33 load address 0x0010f8b8
.text._ZN3Kbd10keypress_tC1Ev
0xc010f8b8 0x33 DeviceManager/Kbd.ns.o
0xc010f8b8 Kbd::keypress_t::keypress_t()
.text._ZdlPv 0xc010f8eb 0x13 load address 0x0010f8eb
.text._ZdlPv 0xc010f8eb 0x13 TaskManager/Process.class.o
0xc010f8eb operator delete(void*)
.text._ZN6VectorIP6ThreadEC1Ev
0xc010f8fe 0x18 load address 0x0010f8fe
.text._ZN6VectorIP6ThreadEC1Ev
0xc010f8fe 0x18 TaskManager/Process.class.o
0xc010f8fe Vector<Thread*>::Vector()
.text._ZN6VectorIP6ThreadED1Ev
0xc010f916 0x27 load address 0x0010f916
.text._ZN6VectorIP6ThreadED1Ev
0xc010f916 0x27 TaskManager/Process.class.o
0xc010f916 Vector<Thread*>::~Vector()
.text._ZN6VectorIP6ThreadE5emptyEv
0xc010f93e 0x10 load address 0x0010f93e
.text._ZN6VectorIP6ThreadE5emptyEv
0xc010f93e 0x10 TaskManager/Process.class.o
0xc010f93e Vector<Thread*>::empty()
.text._ZN6VectorIP6ThreadE4backEv
0xc010f94e 0x19 load address 0x0010f94e
.text._ZN6VectorIP6ThreadE4backEv
0xc010f94e 0x19 TaskManager/Process.class.o
0xc010f94e Vector<Thread*>::back()
.text._ZN6VectorIP6ThreadE3popEv
0xc010f968 0x6d load address 0x0010f968
.text._ZN6VectorIP6ThreadE3popEv
0xc010f968 0x6d TaskManager/Process.class.o
0xc010f968 Vector<Thread*>::pop()
.text._ZN6VectorIP6ThreadE4pushES1_
0xc010f9d6 0x91 load address 0x0010f9d6
.text._ZN6VectorIP6ThreadE4pushES1_
0xc010f9d6 0x91 TaskManager/Process.class.o
0xc010f9d6 Vector<Thread*>::push(Thread*)
.text._ZN6VectorIP6ThreadEixEj
0xc010fa68 0x12 load address 0x0010fa68
.text._ZN6VectorIP6ThreadEixEj
0xc010fa68 0x12 TaskManager/Process.class.o
0xc010fa68 Vector<Thread*>::operator[](unsigned int)
.text._ZN6VectorIP6ThreadE4sizeEv
0xc010fa7a 0xb load address 0x0010fa7a
.text._ZN6VectorIP6ThreadE4sizeEv
0xc010fa7a 0xb TaskManager/Process.class.o
0xc010fa7a Vector<Thread*>::size()
.text._ZN6Thread10irqHappensEh
0xc010fa86 0x38 load address 0x0010fa86
.text._ZN6Thread10irqHappensEh
0xc010fa86 0x38 TaskManager/Task.ns.o
0xc010fa86 Thread::irqHappens(unsigned char)
.text._ZN6VectorIP7ProcessEC1Ev
0xc010fabe 0x18 load address 0x0010fabe
.text._ZN6VectorIP7ProcessEC1Ev
0xc010fabe 0x18 TaskManager/Task.ns.o
0xc010fabe Vector<Process*>::Vector()
.text._ZN6VectorIP6ThreadE5clearEv
0xc010fad6 0x3a load address 0x0010fad6
.text._ZN6VectorIP6ThreadE5clearEv
0xc010fad6 0x3a TaskManager/Task.ns.o
0xc010fad6 Vector<Thread*>::clear()
.text._ZN6VectorIP7ProcessE5clearEv
0xc010fb10 0x3a load address 0x0010fb10
.text._ZN6VectorIP7ProcessE5clearEv
0xc010fb10 0x3a TaskManager/Task.ns.o
0xc010fb10 Vector<Process*>::clear()
.text._ZN6VectorIP7ProcessE4sizeEv
0xc010fb4a 0xb load address 0x0010fb4a
.text._ZN6VectorIP7ProcessE4sizeEv
0xc010fb4a 0xb TaskManager/Task.ns.o
0xc010fb4a Vector<Process*>::size()
.text._ZN6VectorIP7ProcessEixEj
0xc010fb56 0x12 load address 0x0010fb56
.text._ZN6VectorIP7ProcessEixEj
0xc010fb56 0x12 TaskManager/Task.ns.o
0xc010fb56 Vector<Process*>::operator[](unsigned int)
.text._ZN6VectorIP7ProcessE4pushES1_
0xc010fb68 0x91 load address 0x0010fb68
.text._ZN6VectorIP7ProcessE4pushES1_
0xc010fb68 0x91 TaskManager/Task.ns.o
0xc010fb68 Vector<Process*>::push(Process*)
.text._ZN6VectorIP7ProcessE4backEv
0xc010fbfa 0x19 load address 0x0010fbfa
.text._ZN6VectorIP7ProcessE4backEv
0xc010fbfa 0x19 TaskManager/Task.ns.o
0xc010fbfa Vector<Process*>::back()
.text._ZN6VectorIP7ProcessE3popEv
0xc010fc14 0x6d load address 0x0010fc14
.text._ZN6VectorIP7ProcessE3popEv
0xc010fc14 0x6d TaskManager/Task.ns.o
0xc010fc14 Vector<Process*>::pop()
.text._ZN6VectorIP7ProcessE5emptyEv
0xc010fc82 0x10 load address 0x0010fc82
.text._ZN6VectorIP7ProcessE5emptyEv
0xc010fc82 0x10 TaskManager/Task.ns.o
0xc010fc82 Vector<Process*>::empty()
.text._ZN6VectorIP7ProcessED1Ev
0xc010fc92 0x27 load address 0x0010fc92
.text._ZN6VectorIP7ProcessED1Ev
0xc010fc92 0x27 TaskManager/Task.ns.o
0xc010fc92 Vector<Process*>::~Vector()
.text._Znaj 0xc010fcb9 0x1b load address 0x0010fcb9
.text._Znaj 0xc010fcb9 0x1b VTManager/VirtualTerminal.class.o
0xc010fcb9 operator new[](unsigned int)
.text._ZN3chrC1Ev
0xc010fcd4 0x16 load address 0x0010fcd4
.text._ZN3chrC1Ev
0xc010fcd4 0x16 VTManager/VirtualTerminal.class.o
0xc010fcd4 chr::chr()
.text._ZN6VectorIN3Kbd10keypress_tEEC1Ev
0xc010fcea 0x18 load address 0x0010fcea
.text._ZN6VectorIN3Kbd10keypress_tEEC1Ev
0xc010fcea 0x18 VTManager/VirtualTerminal.class.o
0xc010fcea Vector<Kbd::keypress_t>::Vector()
.text._ZN6VectorIN3Kbd10keypress_tEED1Ev
0xc010fd02 0x27 load address 0x0010fd02
.text._ZN6VectorIN3Kbd10keypress_tEED1Ev
0xc010fd02 0x27 VTManager/VirtualTerminal.class.o
0xc010fd02 Vector<Kbd::keypress_t>::~Vector()
.text._ZN6VectorIN3Kbd10keypress_tEE4pushES1_
0xc010fd2a 0xaf load address 0x0010fd2a
.text._ZN6VectorIN3Kbd10keypress_tEE4pushES1_
0xc010fd2a 0xaf VTManager/VirtualTerminal-kbd.class.o
0xc010fd2a Vector<Kbd::keypress_t>::push(Kbd::keypress_t)
.text._ZN6VectorIN3Kbd10keypress_tEE5emptyEv
0xc010fdda 0x10 load address 0x0010fdda
.text._ZN6VectorIN3Kbd10keypress_tEE5emptyEv
0xc010fdda 0x10 VTManager/VirtualTerminal-kbd.class.o
0xc010fdda Vector<Kbd::keypress_t>::empty()
.text._ZN6VectorIN3Kbd10keypress_tEEixEj
0xc010fdea 0x19 load address 0x0010fdea
.text._ZN6VectorIN3Kbd10keypress_tEEixEj
0xc010fdea 0x19 VTManager/VirtualTerminal-kbd.class.o
0xc010fdea Vector<Kbd::keypress_t>::operator[](unsigned int)
.text._ZN6VectorIN3Kbd10keypress_tEE4sizeEv
0xc010fe04 0xb load address 0x0010fe04
.text._ZN6VectorIN3Kbd10keypress_tEE4sizeEv
0xc010fe04 0xb VTManager/VirtualTerminal-kbd.class.o
0xc010fe04 Vector<Kbd::keypress_t>::size()
.text._ZN3Kbd10keypress_tD1Ev
0xc010fe10 0x5 load address 0x0010fe10
.text._ZN3Kbd10keypress_tD1Ev
0xc010fe10 0x5 VTManager/VirtualTerminal-kbd.class.o
0xc010fe10 Kbd::keypress_t::~keypress_t()
.text._ZN6VectorIN3Kbd10keypress_tEE3popEv
0xc010fe16 0x98 load address 0x0010fe16
.text._ZN6VectorIN3Kbd10keypress_tEE3popEv
0xc010fe16 0x98 VTManager/VirtualTerminal-kbd.class.o
0xc010fe16 Vector<Kbd::keypress_t>::pop()
.text._ZN6VectorIP15VirtualTerminalEC1Ev
0xc010feae 0x18 load address 0x0010feae
.text._ZN6VectorIP15VirtualTerminalEC1Ev
0xc010feae 0x18 VTManager/VT.ns.o
0xc010feae Vector<VirtualTerminal*>::Vector()
.text._ZN6VectorIP15VirtualTerminalE4pushES1_
0xc010fec6 0x91 load address 0x0010fec6
.text._ZN6VectorIP15VirtualTerminalE4pushES1_
0xc010fec6 0x91 VTManager/VT.ns.o
0xc010fec6 Vector<VirtualTerminal*>::push(VirtualTerminal*)
.text._ZN6VectorIP15VirtualTerminalE4sizeEv
0xc010ff58 0xb load address 0x0010ff58
.text._ZN6VectorIP15VirtualTerminalE4sizeEv
0xc010ff58 0xb VTManager/VT.ns.o
0xc010ff58 Vector<VirtualTerminal*>::size()
.text._ZN6VectorIP15VirtualTerminalEixEj
0xc010ff64 0x12 load address 0x0010ff64
.text._ZN6VectorIP15VirtualTerminalEixEj
0xc010ff64 0x12 VTManager/VT.ns.o
0xc010ff64 Vector<VirtualTerminal*>::operator[](unsigned int)
.text._ZN6VectorIP15VirtualTerminalE4backEv
0xc010ff76 0x19 load address 0x0010ff76
.text._ZN6VectorIP15VirtualTerminalE4backEv
0xc010ff76 0x19 VTManager/VT.ns.o
0xc010ff76 Vector<VirtualTerminal*>::back()
.text._ZN6VectorIP15VirtualTerminalE3popEv
0xc010ff90 0x6d load address 0x0010ff90
.text._ZN6VectorIP15VirtualTerminalE3popEv
0xc010ff90 0x6d VTManager/VT.ns.o
0xc010ff90 Vector<VirtualTerminal*>::pop()
.text._ZN6VectorIP15VirtualTerminalED1Ev
0xc010fffe 0x27 load address 0x0010fffe
.text._ZN6VectorIP15VirtualTerminalED1Ev
0xc010fffe 0x27 VTManager/VT.ns.o
0xc010fffe Vector<VirtualTerminal*>::~Vector()
.text._ZN5wchareqEj
0xc0110026 0x10 load address 0x00110026
.text._ZN5wchareqEj
0xc0110026 0x10 Library/String.class.o
0xc0110026 wchar::operator==(unsigned int)
.text._ZN6VectorI6StringEC1Ev
0xc0110036 0x18 load address 0x00110036
.text._ZN6VectorI6StringEC1Ev
0xc0110036 0x18 Library/String.class.o
0xc0110036 Vector<String>::Vector()
.text._ZN6VectorI6StringE4pushES0_
0xc011004e 0x9b load address 0x0011004e
.text._ZN6VectorI6StringE4pushES0_
0xc011004e 0x9b Library/String.class.o
0xc011004e Vector<String>::push(String)
.text._ZN6VectorI6StringE4backEv
0xc01100ea 0x19 load address 0x001100ea
.text._ZN6VectorI6StringE4backEv
0xc01100ea 0x19 Library/String.class.o
0xc01100ea Vector<String>::back()
.text._ZN6VectorIP11BlockDeviceEC1Ev
0xc0110104 0x18 load address 0x00110104
.text._ZN6VectorIP11BlockDeviceEC1Ev
0xc0110104 0x18 VFS/Part.ns.o
0xc0110104 Vector<BlockDevice*>::Vector()
.text._ZN6VectorIP9PartitionEC1Ev
0xc011011c 0x18 load address 0x0011011c
.text._ZN6VectorIP9PartitionEC1Ev
0xc011011c 0x18 VFS/Part.ns.o
0xc011011c Vector<Partition*>::Vector()
.text._ZN6VectorIP9PartitionE4pushES1_
0xc0110134 0x91 load address 0x00110134
.text._ZN6VectorIP9PartitionE4pushES1_
0xc0110134 0x91 VFS/Part.ns.o
0xc0110134 Vector<Partition*>::push(Partition*)
.text._ZN6VectorIP11BlockDeviceE4pushES1_
0xc01101c6 0x91 load address 0x001101c6
.text._ZN6VectorIP11BlockDeviceE4pushES1_
0xc01101c6 0x91 VFS/Part.ns.o
0xc01101c6 Vector<BlockDevice*>::push(BlockDevice*)
.text._ZN6VectorIP9PartitionE4backEv
0xc0110258 0x19 load address 0x00110258
.text._ZN6VectorIP9PartitionE4backEv
0xc0110258 0x19 VFS/Part.ns.o
0xc0110258 Vector<Partition*>::back()
.text._ZN6VectorIP9PartitionE3popEv
0xc0110272 0x6d load address 0x00110272
.text._ZN6VectorIP9PartitionE3popEv
0xc0110272 0x6d VFS/Part.ns.o
0xc0110272 Vector<Partition*>::pop()
.text._ZN6VectorIP11BlockDeviceE5emptyEv
0xc01102e0 0x10 load address 0x001102e0
.text._ZN6VectorIP11BlockDeviceE5emptyEv
0xc01102e0 0x10 VFS/Part.ns.o
0xc01102e0 Vector<BlockDevice*>::empty()
.text._ZN6VectorIP11BlockDeviceE4backEv
0xc01102f0 0x19 load address 0x001102f0
.text._ZN6VectorIP11BlockDeviceE4backEv
0xc01102f0 0x19 VFS/Part.ns.o
0xc01102f0 Vector<BlockDevice*>::back()
.text._ZN6VectorIP11BlockDeviceE3popEv
0xc011030a 0x6d load address 0x0011030a
.text._ZN6VectorIP11BlockDeviceE3popEv
0xc011030a 0x6d VFS/Part.ns.o
0xc011030a Vector<BlockDevice*>::pop()
.text._ZN6VectorIP11BlockDeviceED1Ev
0xc0110378 0x27 load address 0x00110378
.text._ZN6VectorIP11BlockDeviceED1Ev
0xc0110378 0x27 VFS/Part.ns.o
0xc0110378 Vector<BlockDevice*>::~Vector()
.text._ZN6VectorIP9PartitionED1Ev
0xc01103a0 0x27 load address 0x001103a0
.text._ZN6VectorIP9PartitionED1Ev
0xc01103a0 0x27 VFS/Part.ns.o
0xc01103a0 Vector<Partition*>::~Vector()
.text._ZN6Thread14enterInterruptEv
0xc01103c8 0xc load address 0x001103c8
.text._ZN6Thread14enterInterruptEv
0xc01103c8 0xc SyscallManager/IDT.ns.o
0xc01103c8 Thread::enterInterrupt()
.text._ZN6Thread13exitInterruptEv
0xc01103d4 0xc load address 0x001103d4
.text._ZN6Thread13exitInterruptEv
0xc01103d4 0xc SyscallManager/IDT.ns.o
0xc01103d4 Thread::exitInterrupt()
.text._ZN8KeyboardC2Ev
0xc01103e0 0x1c load address 0x001103e0
.text._ZN8KeyboardC2Ev
0xc01103e0 0x1c Devices/Keyboard/PS2Keyboard.class.o
0xc01103e0 Keyboard::Keyboard()
.text._ZN11BlockDevice8chsToLBAEjjj
0xc01103fc 0xf load address 0x001103fc
.text._ZN11BlockDevice8chsToLBAEjjj
0xc01103fc 0xf Devices/Floppy/FloppyDrive.class.o
0xc01103fc BlockDevice::chsToLBA(unsigned int, unsigned int, unsigned int)
.text._ZN11BlockDeviceC2Ev
0xc011040c 0x1c load address 0x0011040c
.text._ZN11BlockDeviceC2Ev
0xc011040c 0x1c Devices/Floppy/FloppyDrive.class.o
0xc011040c BlockDevice::BlockDevice()
.rodata 0xc0111000 0xe67 load address 0x00111000
*(.rodata)
.rodata 0xc0111000 0x782 Core/kmain.wtf.o
.rodata 0xc0111782 0x4f Core/Sys.ns.o
.rodata 0xc01117d1 0x5c MemoryManager/PhysMem.ns.o
*fill* 0xc011182d 0x3 00
.rodata 0xc0111830 0x6f MemoryManager/PageAlloc.ns.o
.rodata 0xc011189f 0x9 DeviceManager/Kbd.ns.o
.rodata 0xc01118a8 0x63 TaskManager/Thread.class.o
.rodata 0xc011190b 0x19 VTManager/VirtualTerminal.class.o
.rodata 0xc0111924 0x9 VTManager/VirtualTerminal-kbd.class.o
.rodata 0xc011192d 0x5 Library/String.class.o
.rodata 0xc0111932 0x1be Library/wchar.class.o
*fill* 0xc0111af0 0x10 00
.rodata 0xc0111b00 0x240 SyscallManager/IDT.ns.o
.rodata 0xc0111d40 0x30 Devices/Display/VGATextOutput.class.o
.rodata 0xc0111d70 0x23 Devices/Keyboard/PS2Keyboard.class.o
.rodata 0xc0111d93 0x39 Devices/Floppy/FloppyController.class.o
.rodata 0xc0111dcc 0x78 Devices/Floppy/FloppyDrive.class.o
.rodata 0xc0111e44 0x23 Devices/Timer.class.o
.rodata._ZTV7Display
0xc0111e80 0x28 load address 0x00111e80
.rodata._ZTV7Display
0xc0111e80 0x28 Core/kmain.wtf.o
0xc0111e80 vtable for Display
.rodata._ZTV6Device
0xc0111ea8 0x14 load address 0x00111ea8
.rodata._ZTV6Device
0xc0111ea8 0x14 Core/kmain.wtf.o
0xc0111ea8 vtable for Device
.rodata._ZTV13VGATextOutput
0xc0111ec0 0x28 load address 0x00111ec0
.rodata._ZTV13VGATextOutput
0xc0111ec0 0x28 Devices/Display/VGATextOutput.class.o
0xc0111ec0 vtable for VGATextOutput
.rodata._ZTV11PS2Keyboard
0xc0111ee8 0x18 load address 0x00111ee8
.rodata._ZTV11PS2Keyboard
0xc0111ee8 0x18 Devices/Keyboard/PS2Keyboard.class.o
0xc0111ee8 vtable for PS2Keyboard
.rodata._ZTV8Keyboard
0xc0111f00 0x18 load address 0x00111f00
.rodata._ZTV8Keyboard
0xc0111f00 0x18 Devices/Keyboard/PS2Keyboard.class.o
0xc0111f00 vtable for Keyboard
.rodata._ZTV16FloppyController
0xc0111f18 0x14 load address 0x00111f18
.rodata._ZTV16FloppyController
0xc0111f18 0x14 Devices/Floppy/FloppyController.class.o
0xc0111f18 vtable for FloppyController
.rodata._ZTV11FloppyDrive
0xc0111f40 0x2c load address 0x00111f40
.rodata._ZTV11FloppyDrive
0xc0111f40 0x2c Devices/Floppy/FloppyDrive.class.o
0xc0111f40 vtable for FloppyDrive
.rodata._ZTV11BlockDevice
0xc0111f80 0x2c load address 0x00111f80
.rodata._ZTV11BlockDevice
0xc0111f80 0x2c Devices/Floppy/FloppyDrive.class.o
0xc0111f80 vtable for BlockDevice
.rodata._ZTV5Timer
0xc0111fb0 0x14 load address 0x00111fb0
.rodata._ZTV5Timer
0xc0111fb0 0x14 Devices/Timer.class.o
0xc0111fb0 vtable for Timer
.rel.dyn 0xc0111fc4 0x0 load address 0x00111fc4
.rel.text 0x00000000 0x0 Core/loader.wtf.o
.rel.text._Znwj
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZdaPv
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN15VirtualTerminallsE6String
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN15VirtualTerminallsEi
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN15VirtualTerminallsEj
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6DeviceC2Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN7DisplayC2Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN13VGATextOutputC1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP6DeviceED1Ev
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.text._ZN6VectorIP6DeviceE4pushES1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP6DeviceEC1ERKS2_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN3Kbd10keypress_tC1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP6ThreadED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP6ThreadE4pushES1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP6ThreadE5clearEv
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP7ProcessE5clearEv
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP7ProcessE4pushES1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP7ProcessED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN3chrC1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIN3Kbd10keypress_tEED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIN3Kbd10keypress_tEE4pushES1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIN3Kbd10keypress_tEE3popEv
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP15VirtualTerminalE4pushES1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP15VirtualTerminalED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorI6StringE4pushES0_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP9PartitionE4pushES1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP11BlockDeviceE4pushES1_
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP11BlockDeviceED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN6VectorIP9PartitionED1Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV13VGATextOutput
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN8KeyboardC2Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV8Keyboard
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV16FloppyController
0x00000000 0x0 Core/loader.wtf.o
.rel.text._ZN11BlockDeviceC2Ev
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11FloppyDrive
0x00000000 0x0 Core/loader.wtf.o
.rel.rodata._ZTV11BlockDevice
0x00000000 0x0 Core/loader.wtf.o
.data 0xc0112000 0x144 load address 0x00112000
0xc0112000 start_ctors = .
*(.ctor*)
.ctors 0xc0112000 0x4 Core/kmain.wtf.o
.ctors 0xc0112004 0x4 DeviceManager/Dev.ns.o
.ctors 0xc0112008 0x4 TaskManager/Task.ns.o
.ctors 0xc011200c 0x4 VTManager/VT.ns.o
.ctors 0xc0112010 0x4 Library/wchar.class.o
.ctors 0xc0112014 0x4 VFS/Part.ns.o
.ctors 0xc0112018 0x4 Devices/Floppy/FloppyController.class.o
0xc011201c end_ctors = .
0xc011201c start_dtors = .
*(.dtor*)
0xc011201c end_dtors = .
*(.data)
.data 0xc011201c 0x24 Core/kmain.wtf.o
0xc011203c melonLogoCols
0xc011201c melonLogo
0xc0112038 melonLogoLines
.data 0xc0112040 0x0 Core/cppsupport.wtf.o
.data 0xc0112040 0x0 Core/Sys.ns.o
.data 0xc0112040 0x0 Core/CMem.ns.o
.data 0xc0112040 0x0 MemoryManager/Mem.ns.o
.data 0xc0112040 0x0 MemoryManager/PhysMem.ns.o
.data 0xc0112040 0x0 MemoryManager/GDT.ns.o
.data 0xc0112040 0x0 MemoryManager/PageDirectory.class.o
.data 0xc0112040 0x0 MemoryManager/PageAlloc.ns.o
.data 0xc0112040 0x0 DeviceManager/Disp.ns.o
.data 0xc0112040 0x0 DeviceManager/Dev.ns.o
.data 0xc0112040 0x0 DeviceManager/Time.ns.o
.data 0xc0112040 0x100 DeviceManager/Kbd.ns.o
0xc0112040 Kbd::ctrlkeys
.data 0xc0112140 0x0 TaskManager/Process.class.o
.data 0xc0112140 0x0 TaskManager/Thread.class.o
.data 0xc0112140 0x4 TaskManager/Task.ns.o
0xc0112140 Task::nextpid
.data 0xc0112144 0x0 TaskManager/Mutex.class.o
.data 0xc0112144 0x0 VTManager/VirtualTerminal.class.o
.data 0xc0112144 0x0 VTManager/VirtualTerminal-kbd.class.o
.data 0xc0112144 0x0 VTManager/VT.ns.o
.data 0xc0112144 0x0 Library/Bitset.class.o
.data 0xc0112144 0x0 Library/String.class.o
.data 0xc0112144 0x0 Library/wchar.class.o
.data 0xc0112144 0x0 VFS/Partition.class.o
.data 0xc0112144 0x0 VFS/Part.ns.o
.data 0xc0112144 0x0 SyscallManager/IDT.ns.o
.data 0xc0112144 0x0 Devices/Display/VGATextOutput.class.o
.data 0xc0112144 0x0 Devices/Keyboard/PS2Keyboard.class.o
.data 0xc0112144 0x0 Devices/Floppy/FloppyController.class.o
.data 0xc0112144 0x0 Devices/Floppy/FloppyDrive.class.o
.data 0xc0112144 0x0 Devices/Timer.class.o
.bss 0xc0118000 0x14800 load address 0x00118000
0xc0118000 sbss = .
*(COMMON)
*(.bss)
.bss 0xc0118000 0x4000 Core/loader.wtf.o
.bss 0xc011c000 0x800 Core/kmain.wtf.o
0xc011c600 keymapFR_shiftaltgr
0xc011c000 keymapFR_normal
0xc011c400 keymapFR_altgr
0xc011c200 keymapFR_shift
.bss 0xc011c800 0x4 Core/cppsupport.wtf.o
0xc011c800 __dso_handle
.bss 0xc011c804 0x0 Core/Sys.ns.o
.bss 0xc011c804 0x0 Core/CMem.ns.o
.bss 0xc011c804 0x1c MemoryManager/Mem.ns.o
0xc011c818 Mem::heapStart
0xc011c805 Mem::pagingEnabled
0xc011c80c Mem::kheapFree
0xc011c81c Mem::heapEnd
0xc011c804 Mem::kheapUsable
0xc011c808 Mem::placementAddress
0xc011c810 Mem::heapIndex
.bss 0xc011c820 0xc MemoryManager/PhysMem.ns.o
0xc011c820 kernelPageDirectory
0xc011c828 PhysMem::frames
0xc011c824 PhysMem::nframes
*fill* 0xc011c82c 0x14 00
.bss 0xc011c840 0x2e MemoryManager/GDT.ns.o
0xc011c868 GDT::gdt_ptr
0xc011c840 GDT::gdt_entries
*fill* 0xc011c86e 0x2 00
.bss 0xc011c870 0x0 MemoryManager/PageDirectory.class.o
.bss 0xc011c870 0x12 MemoryManager/PageAlloc.ns.o
0xc011c880 PageAlloc::usable
0xc011c870 PageAlloc::freePage
0xc011c87c PageAlloc::freec
0xc011c881 PageAlloc::locked
*fill* 0xc011c882 0x2 00
.bss 0xc011c884 0xc DeviceManager/Disp.ns.o
0xc011c884 Disp::mode
*fill* 0xc011c890 0x10 00
.bss 0xc011c8a0 0x60 DeviceManager/Dev.ns.o
0xc011c8a0 Dev::devices
0xc011c8c0 Dev::irqHandler
.bss 0xc011c900 0x4 DeviceManager/Time.ns.o
0xc011c900 Time::timer
.bss 0xc011c904 0x18 DeviceManager/Kbd.ns.o
0xc011c90c Kbd::keymapAltgr
0xc011c914 Kbd::kbdstatus
0xc011c918 Kbd::focusedVT
0xc011c908 Kbd::keymapShift
0xc011c904 Kbd::keymapNormal
0xc011c910 Kbd::keymapShiftAltgr
.bss 0xc011c91c 0x0 TaskManager/Process.class.o
.bss 0xc011c91c 0x0 TaskManager/Thread.class.o
.bss 0xc011c91c 0x20 TaskManager/Task.ns.o
0xc011c91c Task::processes
0xc011c92c Task::currentThread
0xc011c934 Task::idleThread
0xc011c938 Task::currentThreadId
0xc011c924 Task::threads
0xc011c930 Task::currentProcess
.bss 0xc011c93c 0x0 TaskManager/Mutex.class.o
.bss 0xc011c93c 0x0 VTManager/VirtualTerminal.class.o
.bss 0xc011c93c 0x0 VTManager/VirtualTerminal-kbd.class.o
.bss 0xc011c93c 0x8 VTManager/VT.ns.o
0xc011c93c VT::mappedVTs
.bss 0xc011c944 0x0 Library/Bitset.class.o
.bss 0xc011c944 0x0 Library/String.class.o
*fill* 0xc011c944 0x1c 00
.bss 0xc011c960 0x200 Library/wchar.class.o
0xc011c960 wchar::CP437
.bss 0xc011cb60 0x0 VFS/Partition.class.o
.bss 0xc011cb60 0x10 VFS/Part.ns.o
0xc011cb68 Part::partitions
0xc011cb60 Part::devices
*fill* 0xc011cb70 0x10 00
.bss 0xc011cb80 0x806 SyscallManager/IDT.ns.o
0xc011cb80 IDT::idt_entries
0xc011d380 IDT::idt_ptr
*fill* 0xc011d386 0x2 00
.bss 0xc011d388 0x0 Devices/Display/VGATextOutput.class.o
.bss 0xc011d388 0x0 Devices/Keyboard/PS2Keyboard.class.o
*fill* 0xc011d388 0x2c78 00
.bss 0xc0120000 0xc800 Devices/Floppy/FloppyController.class.o
0xc0120000 FloppyController::dmaMutex
0xc0128000 FloppyController::dmabuff
.bss 0xc012c800 0x0 Devices/Floppy/FloppyDrive.class.o
.bss 0xc012c800 0x0 Devices/Timer.class.o
0xc012c800 ebss = .
0xc012c800 end = .
0xc012c800 _end = .
0xc012c800 __end = .
LOAD Core/loader.wtf.o
LOAD Core/kmain.wtf.o
LOAD Core/cppsupport.wtf.o
LOAD Core/Sys.ns.o
LOAD Core/CMem.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/Thread.class.o
LOAD TaskManager/Task.ns.o
LOAD TaskManager/Task.wtf.o
LOAD TaskManager/Mutex.class.o
LOAD VTManager/VirtualTerminal.class.o
LOAD VTManager/VirtualTerminal-kbd.class.o
LOAD VTManager/VT.ns.o
LOAD Library/Bitset.class.o
LOAD Library/String.class.o
LOAD Library/wchar.class.o
LOAD VFS/Partition.class.o
LOAD VFS/Part.ns.o
LOAD SyscallManager/IDT.ns.o
LOAD SyscallManager/IDT.wtf.o
LOAD Devices/Display/VGATextOutput.class.o
LOAD Devices/Keyboard/PS2Keyboard.class.o
LOAD Devices/Floppy/FloppyController.class.o
LOAD Devices/Floppy/FloppyDrive.class.o
LOAD Devices/Timer.class.o
OUTPUT(Melon.ke elf32-i386)
.comment 0x00000000 0x2aa
.comment 0x00000000 0x1f Core/loader.wtf.o
.comment 0x0000001f 0x12 Core/kmain.wtf.o
.comment 0x00000031 0x12 Core/cppsupport.wtf.o
.comment 0x00000043 0x12 Core/Sys.ns.o
.comment 0x00000055 0x12 Core/CMem.ns.o
.comment 0x00000067 0x12 MemoryManager/Mem.ns.o
.comment 0x00000079 0x12 MemoryManager/PhysMem.ns.o
.comment 0x0000008b 0x1f MemoryManager/GDT.wtf.o
.comment 0x000000aa 0x12 MemoryManager/GDT.ns.o
.comment 0x000000bc 0x12 MemoryManager/PageDirectory.class.o
.comment 0x000000ce 0x12 MemoryManager/PageAlloc.ns.o
.comment 0x000000e0 0x12 DeviceManager/Disp.ns.o
.comment 0x000000f2 0x12 DeviceManager/Dev.ns.o
.comment 0x00000104 0x12 DeviceManager/Time.ns.o
.comment 0x00000116 0x12 DeviceManager/Kbd.ns.o
.comment 0x00000128 0x12 TaskManager/Process.class.o
.comment 0x0000013a 0x12 TaskManager/Thread.class.o
.comment 0x0000014c 0x12 TaskManager/Task.ns.o
.comment 0x0000015e 0x1f TaskManager/Task.wtf.o
.comment 0x0000017d 0x12 TaskManager/Mutex.class.o
.comment 0x0000018f 0x12 VTManager/VirtualTerminal.class.o
.comment 0x000001a1 0x12 VTManager/VirtualTerminal-kbd.class.o
.comment 0x000001b3 0x12 VTManager/VT.ns.o
.comment 0x000001c5 0x12 Library/Bitset.class.o
.comment 0x000001d7 0x12 Library/String.class.o
.comment 0x000001e9 0x12 Library/wchar.class.o
.comment 0x000001fb 0x12 VFS/Partition.class.o
.comment 0x0000020d 0x12 VFS/Part.ns.o
.comment 0x0000021f 0x12 SyscallManager/IDT.ns.o
.comment 0x00000231 0x1f SyscallManager/IDT.wtf.o
.comment 0x00000250 0x12 Devices/Display/VGATextOutput.class.o
.comment 0x00000262 0x12 Devices/Keyboard/PS2Keyboard.class.o
.comment 0x00000274 0x12 Devices/Floppy/FloppyController.class.o
.comment 0x00000286 0x12 Devices/Floppy/FloppyDrive.class.o
.comment 0x00000298 0x12 Devices/Timer.class.o
.note.GNU-stack
0x00000000 0x0
.note.GNU-stack
0x00000000 0x0 Core/kmain.wtf.o
.note.GNU-stack
0x00000000 0x0 Core/cppsupport.wtf.o
.note.GNU-stack
0x00000000 0x0 Core/Sys.ns.o
.note.GNU-stack
0x00000000 0x0 Core/CMem.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/Thread.class.o
.note.GNU-stack
0x00000000 0x0 TaskManager/Task.ns.o
.note.GNU-stack
0x00000000 0x0 TaskManager/Mutex.class.o
.note.GNU-stack
0x00000000 0x0 VTManager/VirtualTerminal.class.o
.note.GNU-stack
0x00000000 0x0 VTManager/VirtualTerminal-kbd.class.o
.note.GNU-stack
0x00000000 0x0 VTManager/VT.ns.o
.note.GNU-stack
0x00000000 0x0 Library/Bitset.class.o
.note.GNU-stack
0x00000000 0x0 Library/String.class.o
.note.GNU-stack
0x00000000 0x0 Library/wchar.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 SyscallManager/IDT.ns.o
.note.GNU-stack
0x00000000 0x0 Devices/Display/VGATextOutput.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/Timer.class.o
|