-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathknight.map
1038 lines (852 loc) · 52.3 KB
/
knight.map
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
ASxxxx Linker V03.00 + NoICE + sdld, page 1.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
. .ABS. 00000000 00000000 = 0. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00000000 .__.ABS. | 00000000 l__CABS | 00000000 l__CODE_0
00000000 l__DABS | 00000000 l__FONT_H | 00000000 l__HEADER
00000000 l__HEADER | 00000000 l__HEAP | 00000000 l__HRAM
00000000 l__LIT | 00000000 l__SFR | 00000000 s__CABS
00000000 s__DABS | 00000000 s__FONT_H | 00000000 s__FONT_H
00000000 s__HEADER | 00000000 s__HEADER | 00000000 s__HEADER
00000000 s__HEADER | 00000000 s__HEADER | 00000000 s__HEADER
00000000 s__HEADER | 00000000 s__HEADER | 00000000 s__HEADER
00000000 s__HEADER | 00000000 s__HEADER | 00000000 s__HEADER
00000000 s__HEADER | 00000000 s__HEADER | 00000000 s__HEADER
00000000 s__HEADER | 00000000 s__HEADER | 00000000 s__HEADER
00000000 s__HEADER | 00000000 s__HEADER | 00000000 s__HEADER
00000000 s__HRAM | 00000000 s__HRAM12 | 00000000 s__SFR
00000000 s__SFR0 | 00000000 s__SFR1 | 00000000 s__SFR10
00000000 s__SFR11 | 00000000 s__SFR12 | 00000000 s__SFR13
00000000 s__SFR14 | 00000000 s__SFR15 | 00000000 s__SFR16
00000000 s__SFR17 | 00000000 s__SFR18 | 00000000 s__SFR19
00000000 s__SFR1a | 00000000 s__SFR1b | 00000000 s__SFR1c
00000000 s__SFR1d | 00000000 s__SFR1e | 00000000 s__SFR1f
00000000 s__SFR2 | 00000000 s__SFR20 | 00000000 s__SFR21
00000000 s__SFR22 | 00000000 s__SFR23 | 00000000 s__SFR24
00000000 s__SFR25 | 00000000 s__SFR26 | 00000000 s__SFR27
00000000 s__SFR28 | 00000000 s__SFR29 | 00000000 s__SFR2a
00000000 s__SFR2b | 00000000 s__SFR2c | 00000000 s__SFR2d
00000000 s__SFR2e | 00000000 s__SFR2f | 00000000 s__SFR3
00000000 s__SFR30 | 00000000 s__SFR31 | 00000000 s__SFR32
00000000 s__SFR33 | 00000000 s__SFR34 | 00000000 s__SFR35
00000000 s__SFR36 | 00000000 s__SFR4 | 00000000 s__SFR5
00000000 s__SFR6 | 00000000 s__SFR7 | 00000000 s__SFR8
00000000 s__SFR9 | 00000000 s__SFRa | 00000000 s__SFRb
00000000 s__SFRc | 00000000 s__SFRd | 00000000 s__SFRe
00000000 s__SFRf | 00000001 l__GSFINA | 00000001 l__HEADER
00000001 l__HEADER | 00000001 l__HEADER | 00000001 l__HEADER
00000001 l__HEADER | 00000001 l__HEADER | 00000001 l__HEADER
00000001 l__SFR0 | 00000001 l__SFR1 | 00000001 l__SFR10
00000001 l__SFR11 | 00000001 l__SFR12 | 00000001 l__SFR13
00000001 l__SFR14 | 00000001 l__SFR15 | 00000001 l__SFR16
00000001 l__SFR17 | 00000001 l__SFR18 | 00000001 l__SFR19
00000001 l__SFR1a | 00000001 l__SFR1b | 00000001 l__SFR1c
00000001 l__SFR1d | 00000001 l__SFR1e | 00000001 l__SFR1f
00000001 l__SFR2 | 00000001 l__SFR20 | 00000001 l__SFR21
00000001 l__SFR22 | 00000001 l__SFR23 | 00000001 l__SFR24
00000001 l__SFR25 | 00000001 l__SFR26 | 00000001 l__SFR27
00000001 l__SFR28 | 00000001 l__SFR29 | 00000001 l__SFR2a
00000001 l__SFR2b | 00000001 l__SFR2c | 00000001 l__SFR2d
00000001 l__SFR2e | 00000001 l__SFR2f | 00000001 l__SFR3
00000001 l__SFR30 | 00000001 l__SFR31 | 00000001 l__SFR32
00000001 l__SFR33 | 00000001 l__SFR34 | 00000001 l__SFR35
00000001 l__SFR36 | 00000001 l__SFR4 | 00000001 l__SFR5
00000001 l__SFR6 | 00000001 l__SFR7 | 00000001 l__SFR8
ASxxxx Linker V03.00 + NoICE + sdld, page 2.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
. .ABS. 00000000 00000000 = 0. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00000001 l__SFR9 | 00000001 l__SFRa | 00000001 l__SFRb
00000001 l__SFRc | 00000001 l__SFRd | 00000001 l__SFRe
00000001 l__SFRf | 00000002 l__HEADER | 00000002 l__HEADER
00000002 l__HEADER | 00000003 l__FONT_H | 00000003 l__HEADER
00000003 l__HEADER | 00000003 l__HRAM12 | 00000005 l__HEADER
00000006 l__HEADER | 00000007 l__HEADER | 00000008 l__HEADER
0000002C l__HEADER | 00000030 l__HEADER | 0000003A l__GSINIT
00000045 l__BSS | 0000006A l__HOME | 00000083 l__HEADER
00000096 l__DATA | 00000200 s__CODE | 0000020F l__INITIA
0000020F l__INITIA | 000009B9 l__BASE | 00003C69 l__CODE
00003E69 s__HOME | 00003ED3 s__BASE | 0000488C s__CODE_0
0000488C s__INITIA | 0000488C s__LIT | 00004A9B s__GSINIT
00004AD5 s__GSFINA | 0000C000 _shadow_O | 0000C0A0 s__DATA
0000C136 s__BSS | 0000C17B s__INITIA | 0000C38A s__HEAP
0000E000 .STACK | 0000FF80 .refresh_
ASxxxx Linker V03.00 + NoICE + sdld, page 3.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_CODE 00000200 00003C69 = 15465. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00000200 _knight_s | 00000241 _knight_s | 00000651 _main
00000813 _titlescr | 00001103 _titlescr | 0000126B _interrup
00001272 _turnOnSo | 0000127F _turnOffS | 00001283 _init
000012B2 _performD | 000012C7 _joyHandl | 0000131B _fadeOut
00001364 _resetBac | 00001377 _hitSound | 0000138B _coinSoun
000013A0 _randomiz | 000013C0 _gameOver | 00001440 _checkCol
000015D8 _spritePa | 00001608 _backgrou | 00001628 _spritesi
00001629 _checkPla | 000017FB _checkObs | 00001882 _moveChar
00001905 _setupPla | 00001958 _animatio | 00001C55 _setupCoi
00001D13 _position | 00001DF2 _setupArr | 00001E5C _position
00001EE7 _setupObs | 00002081 _position | 0000216B _setupBom
000021F3 _position | 00002285 _setupBac | 000022C1 _setupCha
000022D0 _updateCo | 00002320 _updateHe | 00002366 _updateSc
00002396 _Knight_t | 000023A3 _Knight_t | 00002473 _ForestBG
000026F3 _ForestBG | 00002973 _song0 | 00002AA6 _song1
00002BD0 _song2 | 00002CFE _song3 | 00002E28 _song4
00002F54 _song5 | 00003068 _song6 | 0000318F _song7
000032B3 _song8 | 000033DC _song_Dat | 000033F4 gbt_get_p
00003411 _gbt_play | 000034CC _gbt_paus | 000034DD _gbt_loop
000034E4 _gbt_stop | 000034EF _gbt_enab | 000034F6 _gbt_upda
00003727 gbt_chann | 0000387D gbt_chann | 000039CF gbt_chann
00003B40 gbt_chann | 00003C40 gbt_updat | 00003C5C gbt_updat
00003C79 _putchar | 00003C82 _setchar | 00003C8B _gotoxy
00003C96 _posx | 00003CA7 _posy | 00003CB8 _rand
00003CB8 _randw | 00003CE3 __divsuch | 00003CF0 __modsuch
00003CFA __divusch | 00003D0C __modusch | 00003D1C __divscha
00003D28 __modscha | 00003D32 __divsint | 00003D43 __modsint
00003D52 __divucha | 00003D5E __moducha | 00003D68 __divuint
00003D79 __moduint | 00003D88 .div8 | 00003D88 .mod8
00003D90 .div16 | 00003D90 .mod16 | 00003DC6 .divu8
00003DC6 .modu8 | 00003DC9 .divu16 | 00003DC9 .modu16
00003E0A _set_spri | 00003E0F _set_bkg_ | 00003E12 .set_pale
00003E2E _cpu_slow | 00003E49 _cpu_fast | 00003E50 _cgb_comp
ASxxxx Linker V03.00 + NoICE + sdld, page 4.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER0 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00000020 .call_hl
ASxxxx Linker V03.00 + NoICE + sdld, page 5.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER1 00000000 00000005 = 5. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00000028 .MemsetSm
ASxxxx Linker V03.00 + NoICE + sdld, page 6.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER2 00000000 00000007 = 7. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00000030 .MemcpySm
ASxxxx Linker V03.00 + NoICE + sdld, page 7.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER3 00000000 00000008 = 8. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 8.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER4 00000000 0000002C = 44. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00000080 .int | 0000008F _wait_int | 0000009C __standar
ASxxxx Linker V03.00 + NoICE + sdld, page 9.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER5 00000000 00000002 = 2. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 10.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER6 00000000 00000030 = 48. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 11.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER7 00000000 00000006 = 6. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 12.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER8 00000000 00000003 = 3. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 13.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER9 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 14.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADERa 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 15.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADERb 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 16.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADERc 00000000 00000002 = 2. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 17.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADERd 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 18.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADERe 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 19.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADERf 00000000 00000002 = 2. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 20.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER10 00000000 00000083 = 131. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00000150 .reset | 00000150 _reset | 00000153 .code_sta
000001B4 _exit | 000001B8 _enable_i | 000001BA _disable_
000001BC _set_inte
ASxxxx Linker V03.00 + NoICE + sdld, page 21.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER11 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 22.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HOME 00003E69 0000006A = 106. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00003E69 .remove_V | 00003E6C .remove_i | 00003E89 .add_VBL
00003E8C .add_int | 00003E97 .wait_vbl | 00003E97 _wait_vbl
00003EA6 .display_ | 00003EA6 _display_ | 00003EBD _remove_V
00003EC8 _add_VBL
ASxxxx Linker V03.00 + NoICE + sdld, page 23.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_BASE 00003ED3 000009B9 = 2489. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00003ED3 _font_loa | 00003EDA font_copy | 00003F10 font_copy
00003F5F font_load | 00003FA7 font_copy | 00003FEF font_set
00003FFC .put_char | 00004014 .out_char | 0000401A .del_char
00004070 _font_loa | 0000407E _font_set | 0000408D _font_ini
000040AD .cls | 000040AD _cls | 000040DF .cr_curs
000040F4 .adv_curs | 00004150 .tmode | 00004179 .tmode_ou
00004189 _initrand | 0000418B .initrand | 00004194 .padup
00004194 _waitpadu | 000041A4 .jpad | 000041A4 _joypad
000041CC _waitpad | 000041CF .wait_pad | 000041D6 _set_spri
000041DB _set_bkg_ | 000041DE .set_pale | 000041FD _set_win_
00004211 _set_tile | 00004216 _set_bkg_ | 00004216 _set_win_
0000421E _set_spri | 0000424E _color | 0000425D .drawing_
00004268 .drawing_ | 000042A4 _add_LCD | 000042AF .add_LCD
000042B5 _remove_L | 000042C0 .remove_L | 000042C6 _font_ibm
00004678 _font_min | 00004822 _set_bkg_ | 00004836 .set_xy_w
0000483F .set_xy_b | 0000484E .set_xy_t
ASxxxx Linker V03.00 + NoICE + sdld, page 24.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_INITIALIZER 0000488C 0000020F = 527. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 25.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_GSINIT 00004A9B 0000003A = 58. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
00004A9B gsinit
ASxxxx Linker V03.00 + NoICE + sdld, page 26.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_GSFINAL 00004AD5 00000001 = 1. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 27.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_DATA 0000C0A0 00000096 = 150. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000C0A0 _seed | 0000C0A2 _i | 0000C0A3 _frame
0000C0A4 _spriteID | 0000C0A5 _player | 0000C0AE _coins
0000C0D2 _arrow | 0000C0DB _obstacle | 0000C0ED _bombs
0000C0F6 gbt_playi | 0000C0F7 gbt_song | 0000C0F9 gbt_bank
0000C0FA gbt_speed | 0000C0FB gbt_temp_ | 0000C107 gbt_loop_
0000C108 gbt_ticks | 0000C109 gbt_curre | 0000C10A gbt_curre
0000C10B gbt_curre | 0000C10D gbt_chann | 0000C10E gbt_pan
0000C112 gbt_vol | 0000C116 gbt_instr | 0000C11A gbt_freq
0000C120 gbt_chann | 0000C121 gbt_arpeg | 0000C12A gbt_arpeg
0000C12D gbt_arpeg | 0000C130 gbt_cut_n | 0000C134 gbt_have_
0000C135 gbt_updat
ASxxxx Linker V03.00 + NoICE + sdld, page 28.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_BSS 0000C136 00000045 = 69. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000C136 __cpu | 0000C137 .mode | 0000C138 .sys_time
0000C138 _sys_time | 0000C13A .int_0x40 | 0000C14E font_curr
0000C151 font_firs | 0000C152 font_tabl | 0000C164 .curx
0000C165 .cury | 0000C166 .randhi | 0000C167 .randlo
0000C168 .fg_colou | 0000C169 .bg_colou | 0000C16A .draw_mod
0000C16B .int_0x48
ASxxxx Linker V03.00 + NoICE + sdld, page 29.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_INITIALIZED 0000C17B 0000020F = 527. bytes (REL,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000C17B _game_on | 0000C17C _paused | 0000C17D _timer
0000C17E _shield | 0000C17F _hit | 0000C180 _explosio
0000C181 _swap | 0000C182 _windowma | 0000C196 _windowpa
0000C1AA _gameOver | 0000C29A _gameOver
ASxxxx Linker V03.00 + NoICE + sdld, page 30.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HRAM12 00000000 00000003 = 3. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF90 __current | 0000FF92 __shadow_
ASxxxx Linker V03.00 + NoICE + sdld, page 31.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_FONT_HEADER0 00000000 00000003 = 3. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 32.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR0 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF00 _P1_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 33.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR1 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF01 _SB_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 34.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR2 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF02 _SC_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 35.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR3 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF04 _DIV_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 36.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR4 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF05 _TIMA_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 37.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR5 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF06 _TMA_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 38.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR6 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF07 _TAC_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 39.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR7 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF0F _IF_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 40.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR8 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF10 _NR10_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 41.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR9 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF11 _NR11_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 42.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFRa 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF12 _NR12_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 43.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFRb 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF13 _NR13_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 44.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFRc 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF14 _NR14_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 45.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFRd 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF16 _NR21_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 46.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFRe 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF17 _NR22_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 47.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFRf 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF18 _NR23_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 48.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR10 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF19 _NR24_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 49.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR11 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF1A _NR30_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 50.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR12 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF1B _NR31_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 51.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR13 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF1C _NR32_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 52.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR14 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF1D _NR33_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 53.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR15 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF1E _NR34_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 54.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR16 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF20 _NR41_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 55.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR17 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF21 _NR42_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 56.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR18 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF22 _NR43_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 57.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR19 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF23 _NR44_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 58.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR1a 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF24 _NR50_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 59.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR1b 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF25 _NR51_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 60.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR1c 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF26 _NR52_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 61.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR1d 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF40 _LCDC_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 62.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR1e 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF41 _STAT_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 63.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR1f 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF42 _SCY_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 64.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR20 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF43 _SCX_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 65.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR21 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF44 _LY_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 66.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR22 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF45 _LYC_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 67.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR23 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF46 _DMA_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 68.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR24 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF47 _BGP_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 69.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR25 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF48 _OBP0_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 70.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR26 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF49 _OBP1_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 71.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR27 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF4A _WY_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 72.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR28 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF4B _WX_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 73.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR29 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF4D _KEY1_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 74.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR2a 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF4F _VBK_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 75.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR2b 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF51 _HDMA1_RE
ASxxxx Linker V03.00 + NoICE + sdld, page 76.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR2c 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF52 _HDMA2_RE
ASxxxx Linker V03.00 + NoICE + sdld, page 77.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR2d 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF53 _HDMA3_RE
ASxxxx Linker V03.00 + NoICE + sdld, page 78.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR2e 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF54 _HDMA4_RE
ASxxxx Linker V03.00 + NoICE + sdld, page 79.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR2f 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF55 _HDMA5_RE
ASxxxx Linker V03.00 + NoICE + sdld, page 80.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR30 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF56 _RP_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 81.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR31 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF68 _BCPS_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 82.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR32 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF69 _BCPD_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 83.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR33 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF6A _OCPS_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 84.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR34 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF6B _OCPD_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 85.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR35 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FF70 _SVBK_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 86.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_SFR36 00000000 00000001 = 1. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
0000FFFF _IE_REG
ASxxxx Linker V03.00 + NoICE + sdld, page 87.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------- ---- ---- ------- ----- ------------
_HEADER_LCD0 00000000 00000003 = 3. bytes (ABS,CON)
Value Global Value Global Value Global
----- ------ ----- ------ ----- ------
ASxxxx Linker V03.00 + NoICE + sdld, page 88.
Files Linked [ module(s) ]
/opt/gbdk/lib/small/asxxxx/gb/crt0.o [ Runtime ]
src/knight_sprites.o [ knight_sprites ]
main.o [ main ]
src/functions.o [ functions ]
src/characters.o [ characters ]
src/windowLayer.o [ windowLayer ]
src/knight_tiles.o [ knight_tiles ]
src/gameCharacter.o [ gameCharacter ]
src/ForestBG.o [ ForestBG ]
audio/output.o [ output ]