summaryrefslogblamecommitdiff
path: root/Source/Applications/Shell/Applets/rot13.map
blob: 10461ef08cccd8459098f5418c8804931f827622 (plain) (tree)
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


























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                      
Discarded input sections

 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 ../../Library/Melon.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .group         0x00000000        0x8 Applets/rot13.o
 .text._ZdlPv   0x00000000       0x13 Applets/rot13.o
 .text._ZN5WChareqEj
                0x00000000       0x10 Applets/rot13.o
 .text._ZNK5WCharcvjEv
                0x00000000        0xa Applets/rot13.o
 .text._ZN6StringD1Ev
                0x00000000       0x30 Applets/rot13.o
 .text._ZN6StringD0Ev
                0x00000000       0x30 Applets/rot13.o
 .text._ZN7OStreamlsERK6String
                0x00000000       0x59 Applets/rot13.o
 .text._ZN11Application8doEventsEv
                0x00000000        0x5 Applets/rot13.o
 .text._ZN11BasicStringI5WCharED2Ev
                0x00000000       0x3d Applets/rot13.o
 .text._ZN11BasicStringI5WCharED1Ev
                0x00000000       0x3d Applets/rot13.o
 .text._ZN11BasicStringI5WCharED0Ev
                0x00000000       0x3d Applets/rot13.o
 .text._ZNK11BasicStringI5WCharE8containsERKS0_
                0x00000000       0x5a Applets/rot13.o
 .text._ZNK11BasicStringI5WCharE4sizeEv
                0x00000000        0xb Applets/rot13.o
 .text._ZNK11BasicStringI5WCharEixEi
                0x00000000       0x13 Applets/rot13.o
 .text._ZNK11BasicStringI5WCharE5emptyEv
                0x00000000       0x10 Applets/rot13.o
 .rodata._ZTV6String
                0x00000000       0x10 Applets/rot13.o
 .rodata._ZTV11BasicStringI5WCharE
                0x00000000       0x10 Applets/rot13.o

Memory Configuration

Name             Origin             Length             Attributes
*default*        0x00000000         0xffffffff

Linker script and memory map

LOAD ../../Library/Melon.o
                0x10000000                . = 0x10000000

.text           0x10000000     0x777d
 *(.text)
 .text          0x10000000     0x746c ../../Library/Melon.o
                0x10000000                WChar::WChar()
                0x1000000e                WChar::WChar()
                0x1000001c                WChar::WChar(char)
                0x1000003e                WChar::WChar(char)
                0x10000060                WChar::WChar(char const*, unsigned char)
                0x100000e6                WChar::WChar(char const*, unsigned char)
                0x1000016c                WChar::ucharLen(char const*, unsigned char)
                0x10000298                WChar::utfLen(char const*, unsigned char)
                0x1000030c                WChar::affectAscii(char)
                0x1000034c                WChar::affectUtf8(char const*)
                0x10000514                WChar::affectUtf16be(char const*)
                0x10000684                WChar::affectUtf16le(char const*)
                0x100007f4                WChar::affectUtf32be(char const*)
                0x10000886                WChar::affectUtf32le(char const*)
                0x10000918                WChar::toAscii()
                0x10000978                WChar::toUtf8()
                0x10000a62                WChar::toUtf32be()
                0x10000a98                WChar::toUtf32le()
                0x10001894                CMem::memcpy(unsigned char*, unsigned char const*, unsigned int)
                0x1000192b                CMem::memset(unsigned char*, unsigned char, int)
                0x10001962                CMem::memsetw(unsigned short*, unsigned short, int)
                0x1000199d                CMem::strlen(char const*)
                0x100019cc                atomic_exchange(unsigned int*, unsigned int)
                0x100019e4                Mutex::Mutex(unsigned int)
                0x100019f2                Mutex::Mutex(unsigned int)
                0x10001a00                Mutex::lock()
                0x10001a32                Mutex::waitLock()
                0x10001a7a                Mutex::unlock()
                0x10001a88                Mutex::locked()
                0x10001a98                Heap::Heap()
                0x10001ae2                Heap::Heap()
                0x10001b2c                Heap::~Heap()
                0x10001b32                Heap::~Heap()
                0x10001b38                Heap::create(unsigned int, unsigned int, unsigned int)
                0x10001c5e                Heap::expand(unsigned int)
                0x10001d86                Heap::contract()
                0x10001ea4                Heap::alloc(unsigned int, bool)
                0x10002060                Heap::free(void*)
                0x100021fc                Heap::insertIntoIndex(heap_header_t*)
                0x10002324                Heap::findIndexEntry(heap_header_t*)
                0x10002368                Heap::removeFromIndex(unsigned int)
                0x100023b6                Heap::removeFromIndex(heap_header_t*)
                0x100023ec                String::hex(unsigned int)
                0x10002500                String::number(int)
                0x100026f0                String::unserialize(unsigned int)
                0x100027ae                String::serialize() const
                0x10002824                String::String(char const*, unsigned char)
                0x10002874                String::String(char const*, unsigned char)
                0x100028c4                String::affect(char const*, unsigned char)
                0x100029e8                String::compare(char const*, unsigned char) const
                0x10002abe                String::append(char const*, unsigned char)
                0x10002c32                String::concat(String const&) const
                0x10002c88                String::concat(char const*, unsigned char) const
                0x10002cec                String::concat(WChar) const
                0x10002d42                String::toInt() const
                0x10002e44                String::toInt16() const
                0x10002f44                String::split(WChar) const
                0x1000304a                String::substr(int, int)
                0x10003188                TextFile::write(String, bool)
                0x100031f6                TextFile::readLine(char)
                0x10003350                ByteArray::ByteArray(char const*)
                0x1000339c                ByteArray::ByteArray(char const*)
                0x100033e8                ByteArray::affect(String const&, unsigned char)
                0x100035ea                ByteArray::resize(unsigned int)
                0x100036d0                ByteArray::toString(unsigned char)
                0x10003770                Rand::rand()
                0x1000380d                Rand::max()
                0x1000381c                OStream::OStream()
                0x10003858                OStream::OStream()
                0x10003894                OStream::OStream(OStream const&)
                0x100038d0                OStream::OStream(OStream const&)
                0x1000390c                OStream::put(String const&)
                0x100039b8                OStream::flush()
                0x10003b60                OStream::operator<<(ostream_modifiers_e)
                0x10003c18                IStream::IStream()
                0x10003c5a                IStream::IStream()
                0x10003c9c                IStream::IStream(IStream const&)
                0x10003cd8                IStream::IStream(IStream const&)
                0x10003d14                IStream::~IStream()
                0x10003d58                IStream::~IStream()
                0x10003d9c                IStream::~IStream()
                0x10003de0                IStream::populate()
                0x10003e9a                IStream::getChar()
                0x10003f92                IStream::get(WChar)
                0x100041d8                FileIStream::FileIStream(String const&, unsigned char, FSNode)
                0x1000427e                FileIStream::FileIStream(String const&, unsigned char, FSNode)
                0x10004324                FileIStream::FileIStream(unsigned char, FSNode)
                0x10004374                FileIStream::FileIStream(unsigned char, FSNode)
                0x100043c4                FileIStream::~FileIStream()
                0x1000441a                FileIStream::~FileIStream()
                0x10004470                FileIStream::~FileIStream()
                0x100044c6                FileIStream::appendFile(String const&)
                0x10004524                FileIStream::read()
                0x100046d6                FileOStream::FileOStream(String const&, unsigned char, unsigned char, FSNode)
                0x1000476c                FileOStream::FileOStream(String const&, unsigned char, unsigned char, FSNode)
                0x10004802                FileOStream::~FileOStream()
                0x10004840                FileOStream::~FileOStream()
                0x1000487e                FileOStream::~FileOStream()
                0x100048bc                FileOStream::write(String const&)
                0x10004904                StringIStream::StringIStream(String const&)
                0x10004954                StringIStream::StringIStream(String const&)
                0x100049a4                StringIStream::StringIStream()
                0x100049ca                StringIStream::StringIStream()
                0x100049f0                StringIStream::~StringIStream()
                0x10004a4a                StringIStream::~StringIStream()
                0x10004aa4                StringIStream::~StringIStream()
                0x10004afe                StringIStream::read()
                0x10004b88                StringIStream::append(String const&)
                0x10004be8                __cxa_pure_virtual
                0x10004bed                __cxa_atexit
                0x10004bf7                memmove
                0x10004c1b                __udivdi3
                0x10004c61                __umoddi3
                0x10004cb0                ShellApp::ShellApp(String const&, String const&)
                0x10004e60                ShellApp::ShellApp(String const&, String const&)
                0x10005010                ShellApp::~ShellApp()
                0x100050aa                ShellApp::~ShellApp()
                0x10005144                ShellApp::~ShellApp()
                0x100051de                ShellApp::init()
                0x100063bc                ShellApp::getFlag(String)
                0x10006430                ShellApp::addFlag(WChar, String, String, int, String)
                0x1000653e                ShellApp::sFlag(String)
                0x100065e4                ShellApp::iFlag(String)
                0x10006644                ShellApp::bFlag(String)
                0x100066a4                StreamApp::StreamApp(String const&, String const&)
                0x10006906                StreamApp::StreamApp(String const&, String const&)
                0x10006b68                StreamApp::~StreamApp()
                0x10006b98                StreamApp::~StreamApp()
                0x10006bc8                StreamApp::~StreamApp()
                0x10006bf8                StreamApp::init()
                0x100070b4                syscall(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)
                0x100070df                threadFinishedSyscall(unsigned int)
                0x100070e9                breakPoint()
                0x100070ef                putch(char)
                0x10007137                sleep(unsigned int)
                0x10007172                write_hex(unsigned int)
                0x100071b0                RessourceCaller::RessourceCaller(unsigned int, unsigned int)
                0x10007220                RessourceCaller::RessourceCaller(unsigned int, unsigned int)
                0x10007290                RessourceCaller::sCall(unsigned int, unsigned char, unsigned int, unsigned int, unsigned int, unsigned int)
                0x100072d6                RessourceCaller::doCall(unsigned char, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)
                0x10007338                start
                0x10007419                Mem::alloc(unsigned int)
                0x1000743d                Mem::free(void*)
                0x10007459                Mem::mkXchgSpace(unsigned int)
 .text          0x1000746c      0x311 Applets/rot13.o
                0x1000746c                rot13::run()

.text._ZN5WChareqEj
                0x1000777e       0x10
 .text._ZN5WChareqEj
                0x1000777e       0x10 ../../Library/Melon.o
                0x1000777e                WChar::operator==(unsigned int)

.text._ZNK5WCharcvjEv
                0x1000778e        0xa
 .text._ZNK5WCharcvjEv
                0x1000778e        0xa ../../Library/Melon.o
                0x1000778e                WChar::operator unsigned int() const

.text._ZN6Thread3getEv
                0x10007798       0x5a
 .text._ZN6Thread3getEv
                0x10007798       0x5a ../../Library/Melon.o
                0x10007798                Thread::get()

.text._ZN6ThreadC1Ej
                0x100077f2       0x22
 .text._ZN6ThreadC1Ej
                0x100077f2       0x22 ../../Library/Melon.o
                0x100077f2                Thread::Thread(unsigned int)

.text._ZN6Thread5sleepEj
                0x10007814       0x42
 .text._ZN6Thread5sleepEj
                0x10007814       0x42 ../../Library/Melon.o
                0x10007814                Thread::sleep(unsigned int)

.text._ZN7Process3getEv
                0x10007856       0x5a
 .text._ZN7Process3getEv
                0x10007856       0x5a ../../Library/Melon.o
                0x10007856                Process::get()

.text._ZN7ProcessC1Ej
                0x100078b0       0x22
 .text._ZN7ProcessC1Ej
                0x100078b0       0x22 ../../Library/Melon.o
                0x100078b0                Process::Process(unsigned int)

.text._ZN7Process10allocPagesEjj
                0x100078d2       0x41
 .text._ZN7Process10allocPagesEjj
                0x100078d2       0x41 ../../Library/Melon.o
                0x100078d2                Process::allocPages(unsigned int, unsigned int)

.text._ZN7Process9freePagesEjj
                0x10007914       0x41
 .text._ZN7Process9freePagesEjj
                0x10007914       0x41 ../../Library/Melon.o
                0x10007914                Process::freePages(unsigned int, unsigned int)

.text._ZnwjPv   0x10007955        0x8
 .text._ZnwjPv  0x10007955        0x8 ../../Library/Melon.o
                0x10007955                operator new(unsigned int, void*)

.text._Znaj     0x1000795d       0x13
 .text._Znaj    0x1000795d       0x13 ../../Library/Melon.o
                0x1000795d                operator new[](unsigned int)

.text._ZdlPv    0x10007970       0x13
 .text._ZdlPv   0x10007970       0x13 ../../Library/Melon.o
                0x10007970                operator delete(void*)

.text._ZdaPv    0x10007983       0x13
 .text._ZdaPv   0x10007983       0x13 ../../Library/Melon.o
                0x10007983                operator delete[](void*)

.text._ZN5WChar6affectEPKch
                0x10007996       0xb0
 .text._ZN5WChar6affectEPKch
                0x10007996       0xb0 ../../Library/Melon.o
                0x10007996                WChar::affect(char const*, unsigned char)

.text._ZN5WCharaSEj
                0x10007a46       0x10
 .text._ZN5WCharaSEj
                0x10007a46       0x10 ../../Library/Melon.o
                0x10007a46                WChar::operator=(unsigned int)

.text._ZN6StringC1Ev
                0x10007a56       0x1c
 .text._ZN6StringC1Ev
                0x10007a56       0x1c ../../Library/Melon.o
                0x10007a56                String::String()

.text._ZN6StringC1ERKS_
                0x10007a72       0x23
 .text._ZN6StringC1ERKS_
                0x10007a72       0x23 ../../Library/Melon.o
                0x10007a72                String::String(String const&)

.text._ZN6StringpLERKS_
                0x10007a96       0x1d
 .text._ZN6StringpLERKS_
                0x10007a96       0x1d ../../Library/Melon.o
                0x10007a96                String::operator+=(String const&)

.text._ZN6StringpLE5WChar
                0x10007ab4       0x1d
 .text._ZN6StringpLE5WChar
                0x10007ab4       0x1d ../../Library/Melon.o
                0x10007ab4                String::operator+=(WChar)

.text._ZN6StringD1Ev
                0x10007ad2       0x30
 .text._ZN6StringD1Ev
                0x10007ad2       0x30 ../../Library/Melon.o
                0x10007ad2                String::~String()

.text._ZN6StringD0Ev
                0x10007b02       0x30
 .text._ZN6StringD0Ev
                0x10007b02       0x30 ../../Library/Melon.o
                0x10007b02                String::~String()

.text._ZN11BasicStringI5WCharEC2Ev
                0x10007b32       0x22
 .text._ZN11BasicStringI5WCharEC2Ev
                0x10007b32       0x22 ../../Library/Melon.o
                0x10007b32                BasicString<WChar>::BasicString()

.text._ZN11BasicStringI5WCharED2Ev
                0x10007b54       0x3d
 .text._ZN11BasicStringI5WCharED2Ev
                0x10007b54       0x3d ../../Library/Melon.o
                0x10007b54                BasicString<WChar>::~BasicString()

.text._ZN11BasicStringI5WCharED1Ev
                0x10007b92       0x3d
 .text._ZN11BasicStringI5WCharED1Ev
                0x10007b92       0x3d ../../Library/Melon.o
                0x10007b92                BasicString<WChar>::~BasicString()

.text._ZN11BasicStringI5WCharED0Ev
                0x10007bd0       0x3d
 .text._ZN11BasicStringI5WCharED0Ev
                0x10007bd0       0x3d ../../Library/Melon.o
                0x10007bd0                BasicString<WChar>::~BasicString()

.text._ZN11BasicStringI5WCharEC2ERKS1_
                0x10007c0e       0x2d
 .text._ZN11BasicStringI5WCharEC2ERKS1_
                0x10007c0e       0x2d ../../Library/Melon.o
                0x10007c0e                BasicString<WChar>::BasicString(BasicString<WChar> const&)

.text._ZN11BasicStringI5WCharE6affectERKS1_
                0x10007c3c       0xb8
 .text._ZN11BasicStringI5WCharE6affectERKS1_
                0x10007c3c       0xb8 ../../Library/Melon.o
                0x10007c3c                BasicString<WChar>::affect(BasicString<WChar> const&)

.text._ZN11BasicStringI5WCharE6appendERKS1_
                0x10007cf4      0x105
 .text._ZN11BasicStringI5WCharE6appendERKS1_
                0x10007cf4      0x105 ../../Library/Melon.o
                0x10007cf4                BasicString<WChar>::append(BasicString<WChar> const&)

.text._ZN11BasicStringI5WCharE6appendES0_
                0x10007dfa       0xd2
 .text._ZN11BasicStringI5WCharE6appendES0_
                0x10007dfa       0xd2 ../../Library/Melon.o
                0x10007dfa                BasicString<WChar>::append(WChar)

.text._ZNK11BasicStringI5WCharEixEi
                0x10007ecc       0x13
 .text._ZNK11BasicStringI5WCharEixEi
                0x10007ecc       0x13 ../../Library/Melon.o
                0x10007ecc                BasicString<WChar>::operator[](int) const

.text._ZN6VectorI6StringEC1Ev
                0x10007ee0       0x18
 .text._ZN6VectorI6StringEC1Ev
                0x10007ee0       0x18 ../../Library/Melon.o
                0x10007ee0                Vector<String>::Vector()

.text._ZN6VectorI6StringE4pushERKS0_
                0x10007ef8       0xb8
 .text._ZN6VectorI6StringE4pushERKS0_
                0x10007ef8       0xb8 ../../Library/Melon.o
                0x10007ef8                Vector<String>::push(String const&)

.text._ZNK6VectorI6StringE4backEv
                0x10007fb0       0x1f
 .text._ZNK6VectorI6StringE4backEv
                0x10007fb0       0x1f ../../Library/Melon.o
                0x10007fb0                Vector<String>::back() const

.text._ZN15RessourceCaller5validEv
                0x10007fd0       0x10
 .text._ZN15RessourceCaller5validEv
                0x10007fd0       0x10 ../../Library/Melon.o
                0x10007fd0                RessourceCaller::valid()

.text._ZN9ByteArrayC1Ev
                0x10007fe0       0x1c
 .text._ZN9ByteArrayC1Ev
                0x10007fe0       0x1c ../../Library/Melon.o
                0x10007fe0                ByteArray::ByteArray()

.text._ZN9ByteArrayC1ERK6Stringh
                0x10007ffc       0x3c
 .text._ZN9ByteArrayC1ERK6Stringh
                0x10007ffc       0x3c ../../Library/Melon.o
                0x10007ffc                ByteArray::ByteArray(String const&, unsigned char)

.text._ZN9ByteArraycvPhEv
                0x10008038        0xb
 .text._ZN9ByteArraycvPhEv
                0x10008038        0xb ../../Library/Melon.o
                0x10008038                ByteArray::operator unsigned char*()

.text._ZN4File4readEjPh
                0x10008044       0x41
 .text._ZN4File4readEjPh
                0x10008044       0x41 ../../Library/Melon.o
                0x10008044                File::read(unsigned int, unsigned char*)

.text._ZN4File5writeEjPh
                0x10008086       0x46
 .text._ZN4File5writeEjPh
                0x10008086       0x46 ../../Library/Melon.o
                0x10008086                File::write(unsigned int, unsigned char*)

.text._ZN4File4readER9ByteArray
                0x100080cc       0x89
 .text._ZN4File4readER9ByteArray
                0x100080cc       0x89 ../../Library/Melon.o
                0x100080cc                File::read(ByteArray&)

.text._ZN4File5writeER9ByteArray
                0x10008156       0x51
 .text._ZN4File5writeER9ByteArray
                0x10008156       0x51 ../../Library/Melon.o
                0x10008156                File::write(ByteArray&)

.text._ZN4File4seekEyh
                0x100081a8       0x77
 .text._ZN4File4seekEyh
                0x100081a8       0x77 ../../Library/Melon.o
                0x100081a8                File::seek(unsigned long long, unsigned char)

.text._ZN9ByteArrayD1Ev
                0x10008220       0x30
 .text._ZN9ByteArrayD1Ev
                0x10008220       0x30 ../../Library/Melon.o
                0x10008220                ByteArray::~ByteArray()

.text._ZN9ByteArrayD0Ev
                0x10008250       0x30
 .text._ZN9ByteArrayD0Ev
                0x10008250       0x30 ../../Library/Melon.o
                0x10008250                ByteArray::~ByteArray()

.text._ZN11BasicStringIhEC2Ev
                0x10008280       0x22
 .text._ZN11BasicStringIhEC2Ev
                0x10008280       0x22 ../../Library/Melon.o
                0x10008280                BasicString<unsigned char>::BasicString()

.text._ZN11BasicStringIhED2Ev
                0x100082a2       0x3d
 .text._ZN11BasicStringIhED2Ev
                0x100082a2       0x3d ../../Library/Melon.o
                0x100082a2                BasicString<unsigned char>::~BasicString()

.text._ZN11BasicStringIhED1Ev
                0x100082e0       0x3d
 .text._ZN11BasicStringIhED1Ev
                0x100082e0       0x3d ../../Library/Melon.o
                0x100082e0                BasicString<unsigned char>::~BasicString()

.text._ZN11BasicStringIhED0Ev
                0x1000831e       0x3d
 .text._ZN11BasicStringIhED0Ev
                0x1000831e       0x3d ../../Library/Melon.o
                0x1000831e                BasicString<unsigned char>::~BasicString()

.text._ZNK11BasicStringIhE4sizeEv
                0x1000835c        0xb
 .text._ZNK11BasicStringIhE4sizeEv
                0x1000835c        0xb ../../Library/Melon.o
                0x1000835c                BasicString<unsigned char>::size() const

.text._ZNK11BasicStringIhEixEi
                0x10008368       0x11
 .text._ZNK11BasicStringIhEixEi
                0x10008368       0x11 ../../Library/Melon.o
                0x10008368                BasicString<unsigned char>::operator[](int) const

.text._ZN11BasicStringIhE5clearEv
                0x1000837a       0x34
 .text._ZN11BasicStringIhE5clearEv
                0x1000837a       0x34 ../../Library/Melon.o
                0x1000837a                BasicString<unsigned char>::clear()

.text._ZN11BasicStringIhEpLEh
                0x100083ae       0x21
 .text._ZN11BasicStringIhEpLEh
                0x100083ae       0x21 ../../Library/Melon.o
                0x100083ae                BasicString<unsigned char>::operator+=(unsigned char)

.text._ZN11BasicStringIhE6appendEh
                0x100083d0       0x9c
 .text._ZN11BasicStringIhE6appendEh
                0x100083d0       0x9c ../../Library/Melon.o
                0x100083d0                BasicString<unsigned char>::append(unsigned char)

.text._ZN5WChar6encodeEh
                0x1000846c       0x7a
 .text._ZN5WChar6encodeEh
                0x1000846c       0x7a ../../Library/Melon.o
                0x1000846c                WChar::encode(unsigned char)

.text._ZNK11BasicStringI5WCharE4sizeEv
                0x100084e6        0xb
 .text._ZNK11BasicStringI5WCharE4sizeEv
                0x100084e6        0xb ../../Library/Melon.o
                0x100084e6                BasicString<WChar>::size() const

.text._Znwj     0x100084f1       0x13
 .text._Znwj    0x100084f1       0x13 ../../Library/Melon.o
                0x100084f1                operator new(unsigned int)

.text._ZN6StringC1E5WCharj
                0x10008504       0x2a
 .text._ZN6StringC1E5WCharj
                0x10008504       0x2a ../../Library/Melon.o
                0x10008504                String::String(WChar, unsigned int)

.text._ZN7OStreamD1Ev
                0x1000852e       0x30
 .text._ZN7OStreamD1Ev
                0x1000852e       0x30 ../../Library/Melon.o
                0x1000852e                OStream::~OStream()

.text._ZN7OStreamD0Ev
                0x1000855e       0x30
 .text._ZN7OStreamD0Ev
                0x1000855e       0x30 ../../Library/Melon.o
                0x1000855e                OStream::~OStream()

.text._ZN11BasicStringI5WCharEC2ES0_j
                0x1000858e       0x34
 .text._ZN11BasicStringI5WCharEC2ES0_j
                0x1000858e       0x34 ../../Library/Melon.o
                0x1000858e                BasicString<WChar>::BasicString(WChar, unsigned int)

.text._ZNK11BasicStringI5WCharE5emptyEv
                0x100085c2       0x10
 .text._ZNK11BasicStringI5WCharE5emptyEv
                0x100085c2       0x10 ../../Library/Melon.o
                0x100085c2                BasicString<WChar>::empty() const

.text._ZN10SimpleListI6StringEC1ERKS0_PS1_
                0x100085d2       0x23
 .text._ZN10SimpleListI6StringEC1ERKS0_PS1_
                0x100085d2       0x23 ../../Library/Melon.o
                0x100085d2                SimpleList<String>::SimpleList(String const&, SimpleList<String>*)

.text._ZN10SimpleListI6StringE8addAtEndERKS0_
                0x100085f6       0x94
 .text._ZN10SimpleListI6StringE8addAtEndERKS0_
                0x100085f6       0x94 ../../Library/Melon.o
                0x100085f6                SimpleList<String>::addAtEnd(String const&)

.text._ZN10SimpleListI6StringE4nextEv
                0x1000868a        0xb
 .text._ZN10SimpleListI6StringE4nextEv
                0x1000868a        0xb ../../Library/Melon.o
                0x1000868a                SimpleList<String>::next()

.text._ZN10SimpleListI6StringE1vEv
                0x10008696        0x8
 .text._ZN10SimpleListI6StringE1vEv
                0x10008696        0x8 ../../Library/Melon.o
                0x10008696                SimpleList<String>::v()

.text._ZN10SimpleListI6StringED1Ev
                0x1000869e       0x3c
 .text._ZN10SimpleListI6StringED1Ev
                0x1000869e       0x3c ../../Library/Melon.o
                0x1000869e                SimpleList<String>::~SimpleList()

.text._ZN11BasicStringI5WCharE6affectES0_j
                0x100086da       0xb8
 .text._ZN11BasicStringI5WCharE6affectES0_j
                0x100086da       0xb8 ../../Library/Melon.o
                0x100086da                BasicString<WChar>::affect(WChar, unsigned int)

.text._ZN10SimpleListI6StringE7delThisEv
                0x10008792       0x1f
 .text._ZN10SimpleListI6StringE7delThisEv
                0x10008792       0x1f ../../Library/Melon.o
                0x10008792                SimpleList<String>::delThis()

.text._ZN7OStreamD2Ev
                0x100087b2       0x30
 .text._ZN7OStreamD2Ev
                0x100087b2       0x30 ../../Library/Melon.o
                0x100087b2                OStream::~OStream()

.text._ZNK15RessourceCaller5resIdEv
                0x100087e2        0xa
 .text._ZNK15RessourceCaller5resIdEv
                0x100087e2        0xa ../../Library/Melon.o
                0x100087e2                RessourceCaller::resId() const

.text._ZN4FileC1E6Stringh6FSNode
                0x100087ec       0x5f
 .text._ZN4FileC1E6Stringh6FSNode
                0x100087ec       0x5f ../../Library/Melon.o
                0x100087ec                File::File(String, unsigned char, FSNode)

.text._ZN4File5closeEv
                0x1000884c       0x43
 .text._ZN4File5closeEv
                0x1000884c       0x43 ../../Library/Melon.o
                0x1000884c                File::close()

.text._ZN4File3eofEv
                0x10008890       0x48
 .text._ZN4File3eofEv
                0x10008890       0x48 ../../Library/Melon.o
                0x10008890                File::eof()

.text._Z5doDivyjPj
                0x100088d8       0x76
 .text._Z5doDivyjPj
                0x100088d8       0x76 ../../Library/Melon.o
                0x100088d8                doDiv(unsigned long long, unsigned int, unsigned int*)

.text._ZN6StringaSERKS_
                0x1000894e       0x1a
 .text._ZN6StringaSERKS_
                0x1000894e       0x1a ../../Library/Melon.o
                0x1000894e                String::operator=(String const&)

.text._ZNK6StringeqEPKc
                0x10008968       0x22
 .text._ZNK6StringeqEPKc
                0x10008968       0x22 ../../Library/Melon.o
                0x10008968                String::operator==(char const*) const

.text._ZN6StringneEPKc
                0x1000898a       0x25
 .text._ZN6StringneEPKc
                0x1000898a       0x25 ../../Library/Melon.o
                0x1000898a                String::operator!=(char const*)

.text._ZNK6StringeqERKS_
                0x100089b0       0x1a
 .text._ZNK6StringeqERKS_
                0x100089b0       0x1a ../../Library/Melon.o
                0x100089b0                String::operator==(String const&) const

.text._ZN6StringpLEPKc
                0x100089ca       0x22
 .text._ZN6StringpLEPKc
                0x100089ca       0x22 ../../Library/Melon.o
                0x100089ca                String::operator+=(char const*)

.text._ZNK6StringplERKS_
                0x100089ec       0x30
 .text._ZNK6StringplERKS_
                0x100089ec       0x30 ../../Library/Melon.o
                0x100089ec                String::operator+(String const&) const

.text._ZNK6StringplEPKc
                0x10008a1c       0x38
 .text._ZNK6StringplEPKc
                0x10008a1c       0x38 ../../Library/Melon.o
                0x10008a1c                String::operator+(char const*) const

.text._ZN7OStreamlsERK6String
                0x10008a54       0x59
 .text._ZN7OStreamlsERK6String
                0x10008a54       0x59 ../../Library/Melon.o
                0x10008a54                OStream::operator<<(String const&)

.text._ZN7OStreamlsEi
                0x10008aae       0x3d
 .text._ZN7OStreamlsEi
                0x10008aae       0x3d ../../Library/Melon.o
                0x10008aae                OStream::operator<<(int)

.text._ZN15VirtualTerminalD1Ev
                0x10008aec       0x50
 .text._ZN15VirtualTerminalD1Ev
                0x10008aec       0x50 ../../Library/Melon.o
                0x10008aec                non-virtual thunk to VirtualTerminal::~VirtualTerminal()
                0x10008af4                VirtualTerminal::~VirtualTerminal()

.text._ZN15VirtualTerminalD0Ev
                0x10008b3c       0x50
 .text._ZN15VirtualTerminalD0Ev
                0x10008b3c       0x50 ../../Library/Melon.o
                0x10008b3c                non-virtual thunk to VirtualTerminal::~VirtualTerminal()
                0x10008b44                VirtualTerminal::~VirtualTerminal()

.text._ZN15VirtualTerminal5getInEv
                0x10008b8c       0x5e
 .text._ZN15VirtualTerminal5getInEv
                0x10008b8c       0x5e ../../Library/Melon.o
                0x10008b8c                VirtualTerminal::getIn()

.text._ZN15VirtualTerminal6getOutEv
                0x10008bea       0x5e
 .text._ZN15VirtualTerminal6getOutEv
                0x10008bea       0x5e ../../Library/Melon.o
                0x10008bea                VirtualTerminal::getOut()

.text._ZN15VirtualTerminalC1Ej
                0x10008c48       0x58
 .text._ZN15VirtualTerminalC1Ej
                0x10008c48       0x58 ../../Library/Melon.o
                0x10008c48                VirtualTerminal::VirtualTerminal(unsigned int)

.text._ZN15VirtualTerminal5writeERK6String
                0x10008ca0       0x45
 .text._ZN15VirtualTerminal5writeERK6String
                0x10008ca0       0x45 ../../Library/Melon.o
                0x10008ca0                VirtualTerminal::write(String const&)

.text._ZN15VirtualTerminal4readEv
                0x10008ce6      0x1a2
 .text._ZN15VirtualTerminal4readEv
                0x10008ce6      0x1a2 ../../Library/Melon.o
                0x10008ce6                non-virtual thunk to VirtualTerminal::read()
                0x10008cee                VirtualTerminal::read()

.text._ZN7Process4argcEv
                0x10008e88       0x43
 .text._ZN7Process4argcEv
                0x10008e88       0x43 ../../Library/Melon.o
                0x10008e88                Process::argc()

.text._ZN7Process4argvEj
                0x10008ecc       0x66
 .text._ZN7Process4argvEj
                0x10008ecc       0x66 ../../Library/Melon.o
                0x10008ecc                Process::argv(unsigned int)

.text._ZN11ApplicationC2Ev
                0x10008f32       0x22
 .text._ZN11ApplicationC2Ev
                0x10008f32       0x22 ../../Library/Melon.o
                0x10008f32                Application::Application()

.text._ZN11ApplicationD2Ev
                0x10008f54       0x25
 .text._ZN11ApplicationD2Ev
                0x10008f54       0x25 ../../Library/Melon.o
                0x10008f54                Application::~Application()

.text._ZN11ApplicationD1Ev
                0x10008f7a       0x25
 .text._ZN11ApplicationD1Ev
                0x10008f7a       0x25 ../../Library/Melon.o
                0x10008f7a                Application::~Application()

.text._ZN11ApplicationD0Ev
                0x10008fa0       0x25
 .text._ZN11ApplicationD0Ev
                0x10008fa0       0x25 ../../Library/Melon.o
                0x10008fa0                Application::~Application()

.text._ZN11Application4initEv
                0x10008fc6        0x5
 .text._ZN11Application4initEv
                0x10008fc6        0x5 ../../Library/Melon.o
                0x10008fc6                Application::init()

.text._ZN11Application8doEventsEv
                0x10008fcc        0x5
 .text._ZN11Application8doEventsEv
                0x10008fcc        0x5 ../../Library/Melon.o
                0x10008fcc                Application::doEvents()

.text._ZN11Application4exitEj
                0x10008fd2       0x35
 .text._ZN11Application4exitEj
                0x10008fd2       0x35 ../../Library/Melon.o
                0x10008fd2                Application::exit(unsigned int)

.text._ZN6flag_tC1Ev
                0x10009008       0x3d
 .text._ZN6flag_tC1Ev
                0x10009008       0x3d ../../Library/Melon.o
                0x10009008                flag_t::flag_t()

.text._ZN6flag_tD1Ev
                0x10009046       0x32
 .text._ZN6flag_tD1Ev
                0x10009046       0x32 ../../Library/Melon.o
                0x10009046                flag_t::~flag_t()

.text._ZNK11BasicStringI5WCharE7compareERKS1_
                0x10009078       0x84
 .text._ZNK11BasicStringI5WCharE7compareERKS1_
                0x10009078       0x84 ../../Library/Melon.o
                0x10009078                BasicString<WChar>::compare(BasicString<WChar> const&) const

.text._ZNK11BasicStringI5WCharE8containsERKS0_
                0x100090fc       0x5a
 .text._ZNK11BasicStringI5WCharE8containsERKS0_
                0x100090fc       0x5a ../../Library/Melon.o
                0x100090fc                BasicString<WChar>::contains(WChar const&) const

.text._ZN6VectorI6StringED1Ev
                0x10009156       0x7b
 .text._ZN6VectorI6StringED1Ev
                0x10009156       0x7b ../../Library/Melon.o
                0x10009156                Vector<String>::~Vector()

.text._ZN6VectorI6flag_tEC1Ev
                0x100091d2       0x18
 .text._ZN6VectorI6flag_tEC1Ev
                0x100091d2       0x18 ../../Library/Melon.o
                0x100091d2                Vector<flag_t>::Vector()

.text._ZN6VectorI6flag_tED1Ev
                0x100091ea       0x5b
 .text._ZN6VectorI6flag_tED1Ev
                0x100091ea       0x5b ../../Library/Melon.o
                0x100091ea                Vector<flag_t>::~Vector()

.text._ZN6VectorI6StringE5clearEv
                0x10009246       0xa4
 .text._ZN6VectorI6StringE5clearEv
                0x10009246       0xa4 ../../Library/Melon.o
                0x10009246                Vector<String>::clear()

.text._ZNK6VectorI6flag_tE4sizeEv
                0x100092ea        0xb
 .text._ZNK6VectorI6flag_tE4sizeEv
                0x100092ea        0xb ../../Library/Melon.o
                0x100092ea                Vector<flag_t>::size() const

.text._ZNK6VectorI6flag_tEixEj
                0x100092f6       0x13
 .text._ZNK6VectorI6flag_tEixEj
                0x100092f6       0x13 ../../Library/Melon.o
                0x100092f6                Vector<flag_t>::operator[](unsigned int) const

.text._ZN6flag_tC1ERKS_
                0x1000930a       0x7f
 .text._ZN6flag_tC1ERKS_
                0x1000930a       0x7f ../../Library/Melon.o
                0x1000930a                flag_t::flag_t(flag_t const&)

.text._ZN6VectorI6flag_tE4pushERKS0_
                0x1000938a       0xa4
 .text._ZN6VectorI6flag_tE4pushERKS0_
                0x1000938a       0xa4 ../../Library/Melon.o
                0x1000938a                Vector<flag_t>::push(flag_t const&)

.text._ZNK6VectorI6StringE5emptyEv
                0x1000942e       0x10
 .text._ZNK6VectorI6StringE5emptyEv
                0x1000942e       0x10 ../../Library/Melon.o
                0x1000942e                Vector<String>::empty() const

.text._ZN6FSNodeC1Ej
                0x1000943e       0x22
 .text._ZN6FSNodeC1Ej
                0x1000943e       0x22 ../../Library/Melon.o
                0x1000943e                FSNode::FSNode(unsigned int)

.text._ZN2FS7cwdNodeEv
                0x10009460       0x54
 .text._ZN2FS7cwdNodeEv
                0x10009460       0x54 ../../Library/Melon.o
                0x10009460                FS::cwdNode()

.text._ZNK6VectorI6StringE4sizeEv
                0x100094b4        0xb
 .text._ZNK6VectorI6StringE4sizeEv
                0x100094b4        0xb ../../Library/Melon.o
                0x100094b4                Vector<String>::size() const

.text._ZNK6VectorI6StringEixEj
                0x100094c0       0x19
 .text._ZNK6VectorI6StringEixEj
                0x100094c0       0x19 ../../Library/Melon.o
                0x100094c0                Vector<String>::operator[](unsigned int) const

.iplt           0x100094dc        0x0 load address 0x100094d9
 .iplt          0x00000000        0x0 ../../Library/Melon.o

.text._ZN5WCharpLEj
                0x100094da       0x17
 .text._ZN5WCharpLEj
                0x100094da       0x17 Applets/rot13.o
                0x100094da                WChar::operator+=(unsigned int)

.text._ZN5WCharmIEj
                0x100094f2       0x17
 .text._ZN5WCharmIEj
                0x100094f2       0x17 Applets/rot13.o
                0x100094f2                WChar::operator-=(unsigned int)

.text._ZNK7IStream3eofEv
                0x1000950a       0x26
 .text._ZNK7IStream3eofEv
                0x1000950a       0x26 Applets/rot13.o
                0x1000950a                IStream::eof() const

.text._ZN5rot13C1Ev
                0x10009530       0x76
 .text._ZN5rot13C1Ev
                0x10009530       0x76 Applets/rot13.o
                0x10009530                rot13::rot13()

.text._ZN5rot13D1Ev
                0x100095a6       0x30
 .text._ZN5rot13D1Ev
                0x100095a6       0x30 Applets/rot13.o
                0x100095a6                rot13::~rot13()

.text._ZN5rot13D0Ev
                0x100095d6       0x30
 .text._ZN5rot13D0Ev
                0x100095d6       0x30 Applets/rot13.o
                0x100095d6                rot13::~rot13()

.rodata         0x1000a000      0x397
 *(.rodata)
 .rodata        0x1000a000      0x376 ../../Library/Melon.o
 .rodata        0x1000a376       0x21 Applets/rot13.o

.rodata._ZTV6String
                0x1000a398       0x10
 .rodata._ZTV6String
                0x1000a398       0x10 ../../Library/Melon.o
                0x1000a398                vtable for String

.rodata._ZTV11BasicStringI5WCharE
                0x1000a3a8       0x10
 .rodata._ZTV11BasicStringI5WCharE
                0x1000a3a8       0x10 ../../Library/Melon.o
                0x1000a3a8                vtable for BasicString<WChar>

.rodata._ZTV9ByteArray
                0x1000a3b8       0x10
 .rodata._ZTV9ByteArray
                0x1000a3b8       0x10 ../../Library/Melon.o
                0x1000a3b8                vtable for ByteArray

.rodata._ZTV11BasicStringIhE
                0x1000a3c8       0x10
 .rodata._ZTV11BasicStringIhE
                0x1000a3c8       0x10 ../../Library/Melon.o
                0x1000a3c8                vtable for BasicString<unsigned char>

.rodata._ZTV7OStream
                0x1000a3d8       0x14
 .rodata._ZTV7OStream
                0x1000a3d8       0x14 ../../Library/Melon.o
                0x1000a3d8                vtable for OStream

.rodata._ZTV7IStream
                0x1000a3f0       0x14
 .rodata._ZTV7IStream
                0x1000a3f0       0x14 ../../Library/Melon.o
                0x1000a3f0                vtable for IStream

.rodata._ZTV11FileOStream
                0x1000a408       0x14
 .rodata._ZTV11FileOStream
                0x1000a408       0x14 ../../Library/Melon.o
                0x1000a408                vtable for FileOStream

.rodata._ZTV11FileIStream
                0x1000a420       0x14
 .rodata._ZTV11FileIStream
                0x1000a420       0x14 ../../Library/Melon.o
                0x1000a420                vtable for FileIStream

.rodata._ZTV13StringIStream
                0x1000a438       0x14
 .rodata._ZTV13StringIStream
                0x1000a438       0x14 ../../Library/Melon.o
                0x1000a438                vtable for StringIStream

.rodata._ZTV8ShellApp
                0x1000a450       0x1c
 .rodata._ZTV8ShellApp
                0x1000a450       0x1c ../../Library/Melon.o
                0x1000a450                vtable for ShellApp

.rodata._ZTV11Application
                0x1000a470       0x1c
 .rodata._ZTV11Application
                0x1000a470       0x1c ../../Library/Melon.o
                0x1000a470                vtable for Application

.rodata._ZTV15VirtualTerminal
                0x1000a4a0       0x2c
 .rodata._ZTV15VirtualTerminal
                0x1000a4a0       0x2c ../../Library/Melon.o
                0x1000a4a0                vtable for VirtualTerminal

.rodata._ZTV9StreamApp
                0x1000a4d0       0x1c
 .rodata._ZTV9StreamApp
                0x1000a4d0       0x1c ../../Library/Melon.o
                0x1000a4d0                vtable for StreamApp

.rodata._ZTV5rot13
                0x1000a4f0       0x1c
 .rodata._ZTV5rot13
                0x1000a4f0       0x1c Applets/rot13.o
                0x1000a4f0                vtable for rot13

.rel.dyn        0x1000a50c        0x0
 .rel.iplt      0x00000000        0x0 ../../Library/Melon.o
 .rel.text      0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6Thread3getEv
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN7Process3getEv
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6StringC1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6StringC1ERKS_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6StringpLERKS_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6StringpLE5WChar
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6StringD1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6StringD0Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharEC2Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharED2Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharED1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharED0Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharEC2ERKS1_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharE6affectERKS1_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharE6appendERKS1_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharE6appendES0_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6VectorI6StringE4pushERKS0_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN9ByteArrayC1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN9ByteArrayC1ERK6Stringh
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN4File4readER9ByteArray
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN4File5writeER9ByteArray
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN9ByteArrayD1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN9ByteArrayD0Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringIhEC2Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringIhED2Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringIhED1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringIhED0Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringIhE5clearEv
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringIhEpLEh
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringIhE6appendEh
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6StringC1E5WCharj
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN7OStreamD1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN7OStreamD0Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharEC2ES0_j
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN10SimpleListI6StringEC1ERKS0_PS1_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN10SimpleListI6StringE8addAtEndERKS0_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN10SimpleListI6StringED1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11BasicStringI5WCharE6affectES0_j
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN7OStreamD2Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN4FileC1E6Stringh6FSNode
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6StringaSERKS_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZNK6StringeqERKS_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN7OStreamlsERK6String
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN7OStreamlsEi
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN15VirtualTerminalD1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN15VirtualTerminalD0Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN15VirtualTerminal5getInEv
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN15VirtualTerminal6getOutEv
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN15VirtualTerminalC1Ej
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN15VirtualTerminal4readEv
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11ApplicationC2Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11ApplicationD2Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11ApplicationD1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11ApplicationD0Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN11Application4exitEj
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6flag_tC1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6flag_tD1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZNK11BasicStringI5WCharE7compareERKS1_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZNK11BasicStringI5WCharE8containsERKS0_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6VectorI6flag_tED1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6VectorI6StringE5clearEv
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6flag_tC1ERKS_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN6VectorI6flag_tE4pushERKS0_
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN2FS7cwdNodeEv
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV6String
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV11BasicStringI5WCharE
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV9ByteArray
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV11BasicStringIhE
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV7OStream
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV8ShellApp
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV11Application
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV15VirtualTerminal
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV9StreamApp
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN5rot13C1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.rodata._ZTV5rot13
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN5rot13D1Ev
                0x00000000        0x0 ../../Library/Melon.o
 .rel.text._ZN5rot13D0Ev
                0x00000000        0x0 ../../Library/Melon.o

.data           0x1000b000       0x24
                0x1000b000                start_ctors = .
 *(.ctor*)
 .ctors         0x1000b000        0x4 ../../Library/Melon.o
 .ctors         0x1000b004        0x4 Applets/rot13.o
                0x1000b008                end_ctors = .
                0x1000b008                start_dtors = .
 *(.dtor*)
                0x1000b008                end_dtors = .
 *(.data)
 .data          0x1000b008       0x18 ../../Library/Melon.o
                0x1000b008                Rand::m
                0x1000b00c                Rand::a
                0x1000b010                Rand::b
                0x1000b018                Rand::current
 .data          0x1000b020        0x4 Applets/rot13.o
                0x1000b020                app

.igot.plt       0x1000b024        0x0
 .igot.plt      0x00000000        0x0 ../../Library/Melon.o

.bss            0x1000b040      0x2b4
                0x1000b040                sbss = .
 *(COMMON)
 *(.bss)
 .bss           0x1000b040      0x208 ../../Library/Melon.o
                0x1000b040                WChar::CP437
                0x1000b240                __dso_handle
                0x1000b244                heap
 *fill*         0x1000b248       0x18 00
 .bss           0x1000b260       0x94 Applets/rot13.o
                0x1000b2f4                ebss = .
                0x1000b2f4                end = .
                0x1000b2f4                _end = .
                0x1000b2f4                __end = .
LOAD Applets/rot13.o
OUTPUT(Applets/rot13 elf32-i386)

.note.GNU-stack
                0x00000000        0x0
 .note.GNU-stack
                0x00000000        0x0 ../../Library/Melon.o
 .note.GNU-stack
                0x00000000        0x0 Applets/rot13.o

.comment        0x00000000       0x27
 .comment       0x00000000       0x27 ../../Library/Melon.o
                                0x2f8 (size before relaxing)
 .comment       0x00000000       0x28 Applets/rot13.o