Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
4198 lines (4198 loc) · 62.3 KB

File metadata and controls

4198 lines (4198 loc) · 62.3 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.cpu arm9tdmi
.fpu softvfp
.eabi_attribute 20, 1
.eabi_attribute 21, 1
.eabi_attribute 23, 3
.eabi_attribute 24, 1
.eabi_attribute 25, 1
.eabi_attribute 26, 1
.eabi_attribute 30, 6
.eabi_attribute 18, 4
.code 16
.file "main.c"
.section .debug_abbrev,"",%progbits
.Ldebug_abbrev0:
.section .debug_info,"",%progbits
.Ldebug_info0:
.section .debug_line,"",%progbits
.Ldebug_line0:
.text
.Ltext0:
.bss
.align 2
glGlob:
.space 4
.text
.align 2
.global delay
.code 16
.thumb_func
.type delay, %function
delay:
.LFB108:
.file 1 "/home/lifning/hack/nds-test/source/main.c"
.loc 1 5 0
push {r7, lr}
.LCFI0:
sub sp, sp, #16
.LCFI1:
add r7, sp, #0
.LCFI2:
str r0, [r7, #4]
b .L2
.L5:
.LBB2:
.loc 1 7 0
mov r3, #60
str r3, [r7, #12]
b .L3
.L4:
.loc 1 8 0
bl swiWaitForVBlank
.L3:
ldr r3, [r7, #12]
sub r3, r3, #1
str r3, [r7, #12]
ldr r3, [r7, #12]
cmp r3, #0
bne .L4
.L2:
.LBE2:
.loc 1 6 0
ldr r2, [r7, #4]
asr r3, r2, #31
sub r3, r3, r2
lsr r3, r3, #31
lsl r3, r3, #24
lsr r2, r3, #24
ldr r3, [r7, #4]
sub r3, r3, #1
str r3, [r7, #4]
cmp r2, #0
bne .L5
.loc 1 10 0
mov sp, r7
add sp, sp, #16
@ sp needed for prologue
pop {r7}
pop {r0}
bx r0
.LFE108:
.size delay, .-delay
.section .rodata
.align 2
.type C.62.7416, %object
.size C.62.7416, 16
C.62.7416:
.word 8
.word 8
.word 240
.word 176
.align 2
.LC1:
.ascii "# error initializing SDL\000"
.align 2
.LC3:
.ascii "* initialized SDL\012\000"
.align 2
.LC5:
.ascii "# error setting video mode\000"
.align 2
.LC7:
.ascii "* set video mode\012\000"
.align 2
.LC9:
.ascii "# error opening joystick\000"
.align 2
.LC11:
.ascii "* opened joystick\000"
.text
.align 2
.global main
.code 16
.thumb_func
.type main, %function
main:
.LFB109:
.loc 1 12 0
push {r4, r7, lr}
.LCFI3:
sub sp, sp, #76
.LCFI4:
add r7, sp, #0
.LCFI5:
.loc 1 16 0
mov r3, r7
add r3, r3, #8
ldr r1, .L23
mov r2, r3
mov r3, r1
ldmia r3!, {r0, r1, r4}
stmia r2!, {r0, r1, r4}
ldr r3, [r3]
str r3, [r2]
.loc 1 18 0
bl consoleDemoInit
.loc 1 19 0
mov r3, #136
lsl r3, r3, #2
mov r0, r3
bl SDL_Init
mov r3, r0
cmp r3, #0
bge .L8
.loc 1 20 0
ldr r3, .L23+4
mov r0, r3
bl puts
.loc 1 21 0
bl SDL_GetError
mov r3, r0
mov r0, r3
bl puts
.loc 1 22 0
mov r0, #1
str r0, [r7]
b .L9
.L8:
.loc 1 24 0
ldr r3, .L23+8
mov r0, r3
bl puts
mov r0, #1
bl delay
.loc 1 26 0
mov r3, #128
lsl r3, r3, #1
mov r0, r3
mov r1, #192
mov r2, #16
mov r3, #0
bl SDL_SetVideoMode
mov r3, r0
str r3, [r7, #64]
.loc 1 27 0
ldr r3, [r7, #64]
cmp r3, #0
bne .L10
.loc 1 28 0
ldr r3, .L23+12
mov r0, r3
bl puts
.loc 1 29 0
bl SDL_GetError
mov r3, r0
mov r0, r3
bl puts
.loc 1 30 0
mov r1, #2
str r1, [r7]
b .L9
.L10:
.loc 1 32 0
ldr r3, .L23+16
mov r0, r3
bl puts
mov r0, #1
bl delay
.loc 1 34 0
mov r0, #0
bl SDL_JoystickOpen
mov r3, r0
str r3, [r7, #68]
.loc 1 35 0
ldr r3, [r7, #68]
cmp r3, #0
bne .L11
.loc 1 36 0
ldr r3, .L23+20
mov r0, r3
bl puts
.loc 1 37 0
bl SDL_GetError
mov r3, r0
mov r0, r3
bl puts
.loc 1 38 0
mov r3, #3
str r3, [r7]
b .L9
.L11:
.loc 1 40 0
ldr r3, .L23+24
mov r0, r3
bl puts
mov r0, #1
bl delay
b .L12
.L20:
.loc 1 44 0
mov r3, r7
add r3, r3, #24
ldrb r3, [r3]
cmp r3, #12
bne .L12
.L13:
.loc 1 46 0
mov r3, r7
add r3, r3, #24
ldrb r3, [r3, #1]
str r3, [r7, #4]
ldr r4, [r7, #4]
cmp r4, #1
beq .L16
ldr r0, [r7, #4]
cmp r0, #1
bgt .L19
ldr r1, [r7, #4]
cmp r1, #0
beq .L15
b .L14
.L19:
ldr r3, [r7, #4]
cmp r3, #2
beq .L17
ldr r4, [r7, #4]
cmp r4, #3
beq .L18
b .L14
.L15:
.loc 1 48 0
ldr r3, [r7, #64]
mov r2, r7
add r2, r2, #8
ldr r4, .L23+28
mov r0, r3
mov r1, r2
mov r2, r4
bl SDL_FillRect
b .L14
.L16:
.loc 1 51 0
ldr r3, [r7, #64]
mov r2, r7
add r2, r2, #8
ldr r4, .L23+32
mov r0, r3
mov r1, r2
mov r2, r4
bl SDL_FillRect
b .L14
.L17:
.loc 1 54 0
ldr r3, [r7, #64]
mov r1, r7
add r1, r1, #8
mov r2, #252
lsl r2, r2, #8
mov r0, r3
bl SDL_FillRect
b .L14
.L18:
.loc 1 57 0
ldr r3, [r7, #64]
mov r1, r7
add r1, r1, #8
mov r2, #128
lsl r2, r2, #8
mov r0, r3
bl SDL_FillRect
.L14:
.loc 1 61 0
ldr r3, [r7, #64]
mov r0, r3
bl SDL_Flip
.L12:
.loc 1 43 0
mov r3, r7
add r3, r3, #24
mov r0, r3
bl SDL_PollEvent
mov r3, r0
cmp r3, #0
bne .L20
b .L12
.L9:
.loc 1 64 0
ldr r3, [r7]
.loc 1 67 0
mov r0, r3
mov sp, r7
add sp, sp, #76
@ sp needed for prologue
pop {r4, r7}
pop {r1}
bx r1
.L24:
.align 2
.L23:
.word C.62.7416
.word .LC1
.word .LC3
.word .LC5
.word .LC7
.word .LC9
.word .LC11
.word 32799
.word 33760
.LFE109:
.size main, .-main
.section .debug_frame,"",%progbits
.Lframe0:
.4byte .LECIE0-.LSCIE0
.LSCIE0:
.4byte 0xffffffff
.byte 0x1
.ascii "\000"
.uleb128 0x1
.sleb128 -4
.byte 0xe
.byte 0xc
.uleb128 0xd
.uleb128 0x0
.align 2
.LECIE0:
.LSFDE0:
.4byte .LEFDE0-.LASFDE0
.LASFDE0:
.4byte .Lframe0
.4byte .LFB108
.4byte .LFE108-.LFB108
.byte 0x4
.4byte .LCFI0-.LFB108
.byte 0xe
.uleb128 0x8
.byte 0x87
.uleb128 0x2
.byte 0x8e
.uleb128 0x1
.byte 0x4
.4byte .LCFI1-.LCFI0
.byte 0xe
.uleb128 0x18
.byte 0x4
.4byte .LCFI2-.LCFI1
.byte 0xd
.uleb128 0x7
.align 2
.LEFDE0:
.LSFDE2:
.4byte .LEFDE2-.LASFDE2
.LASFDE2:
.4byte .Lframe0
.4byte .LFB109
.4byte .LFE109-.LFB109
.byte 0x4
.4byte .LCFI3-.LFB109
.byte 0xe
.uleb128 0xc
.byte 0x84
.uleb128 0x3
.byte 0x87
.uleb128 0x2
.byte 0x8e
.uleb128 0x1
.byte 0x4
.4byte .LCFI4-.LCFI3
.byte 0xe
.uleb128 0x58
.byte 0x4
.4byte .LCFI5-.LCFI4
.byte 0xd
.uleb128 0x7
.align 2
.LEFDE2:
.text
.Letext0:
.section .debug_loc,"",%progbits
.Ldebug_loc0:
.LLST0:
.4byte .LFB108-.Ltext0
.4byte .LCFI0-.Ltext0
.2byte 0x1
.byte 0x5d
.4byte .LCFI0-.Ltext0
.4byte .LCFI1-.Ltext0
.2byte 0x2
.byte 0x7d
.sleb128 8
.4byte .LCFI1-.Ltext0
.4byte .LCFI2-.Ltext0
.2byte 0x2
.byte 0x7d
.sleb128 24
.4byte .LCFI2-.Ltext0
.4byte .LFE108-.Ltext0
.2byte 0x2
.byte 0x77
.sleb128 24
.4byte 0x0
.4byte 0x0
.LLST1:
.4byte .LFB109-.Ltext0
.4byte .LCFI3-.Ltext0
.2byte 0x1
.byte 0x5d
.4byte .LCFI3-.Ltext0
.4byte .LCFI4-.Ltext0
.2byte 0x2
.byte 0x7d
.sleb128 12
.4byte .LCFI4-.Ltext0
.4byte .LCFI5-.Ltext0
.2byte 0x3
.byte 0x7d
.sleb128 88
.4byte .LCFI5-.Ltext0
.4byte .LFE109-.Ltext0
.2byte 0x3
.byte 0x77
.sleb128 88
.4byte 0x0
.4byte 0x0
.file 2 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_config_nintendods.h"
.file 3 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_stdinc.h"
.file 4 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_pixels.h"
.file 5 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_rect.h"
.file 6 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_surface.h"
.file 7 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_video.h"
.file 8 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_scancode.h"
.file 9 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_keysym.h"
.file 10 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_keyboard.h"
.file 11 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_joystick.h"
.file 12 "/home/lifning/hack/devkitPro/libnds/include/SDL/SDL_events.h"
.file 13 "/home/lifning/hack/devkitPro/libnds/include/nds/jtypes.h"
.file 14 "/home/lifning/hack/devkitPro/libnds/include/nds/arm9/videoGL.h"
.file 15 "/home/lifning/hack/devkitPro/libnds/include/nds/arm9/trig_lut.h"
.section .debug_info
.4byte 0x1325
.2byte 0x2
.4byte .Ldebug_abbrev0
.byte 0x4
.uleb128 0x1
.4byte .LASF395
.byte 0x1
.4byte .LASF396
.4byte .Ltext0
.4byte .Letext0
.4byte .Ldebug_line0
.uleb128 0x2
.byte 0x1
.byte 0x6
.4byte .LASF0
.uleb128 0x3
.4byte .LASF3
.byte 0x2
.byte 0x1f
.4byte 0x33
.uleb128 0x2
.byte 0x1
.byte 0x8
.4byte .LASF1
.uleb128 0x2
.byte 0x2
.byte 0x5
.4byte .LASF2
.uleb128 0x3
.4byte .LASF4
.byte 0x2
.byte 0x21
.4byte 0x4c
.uleb128 0x2
.byte 0x2
.byte 0x7
.4byte .LASF5
.uleb128 0x3
.4byte .LASF6
.byte 0x2
.byte 0x22
.4byte 0x5e
.uleb128 0x4
.byte 0x4
.byte 0x5
.ascii "int\000"
.uleb128 0x3
.4byte .LASF7
.byte 0x2
.byte 0x23
.4byte 0x70
.uleb128 0x2
.byte 0x4
.byte 0x7
.4byte .LASF8
.uleb128 0x2
.byte 0x8
.byte 0x5
.4byte .LASF9
.uleb128 0x2
.byte 0x8
.byte 0x7
.4byte .LASF10
.uleb128 0x2
.byte 0x4
.byte 0x5
.4byte .LASF11
.uleb128 0x5
.byte 0x4
.byte 0x7
.uleb128 0x6
.byte 0x4
.uleb128 0x2
.byte 0x4
.byte 0x7
.4byte .LASF12
.uleb128 0x2
.byte 0x1
.byte 0x8
.4byte .LASF13
.uleb128 0x3
.4byte .LASF14
.byte 0x3
.byte 0x63
.4byte 0x28
.uleb128 0x3
.4byte .LASF15
.byte 0x3
.byte 0x6d
.4byte 0x41
.uleb128 0x3
.4byte .LASF16
.byte 0x3
.byte 0x72
.4byte 0x53
.uleb128 0x3
.4byte .LASF17
.byte 0x3
.byte 0x77
.4byte 0x65
.uleb128 0x2
.byte 0x8
.byte 0x4
.4byte .LASF18
.uleb128 0x7
.4byte .LASF20
.byte 0x4
.byte 0x4
.byte 0xcd
.4byte 0x111
.uleb128 0x8
.ascii "r\000"
.byte 0x4
.byte 0xce
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x0
.uleb128 0x8
.ascii "g\000"
.byte 0x4
.byte 0xcf
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x1
.uleb128 0x8
.ascii "b\000"
.byte 0x4
.byte 0xd0
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x2
.uleb128 0x9
.4byte .LASF19
.byte 0x4
.byte 0xd1
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x3
.byte 0x0
.uleb128 0x3
.4byte .LASF20
.byte 0x4
.byte 0xd2
.4byte 0xd2
.uleb128 0x3
.4byte .LASF21
.byte 0x4
.byte 0xd5
.4byte 0x127
.uleb128 0x7
.4byte .LASF21
.byte 0x10
.byte 0x4
.byte 0xd5
.4byte 0x16c
.uleb128 0x9
.4byte .LASF22
.byte 0x4
.byte 0xe1
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0x0
.uleb128 0x9
.4byte .LASF23
.byte 0x4
.byte 0xe2
.4byte 0x1e0
.byte 0x2
.byte 0x23
.uleb128 0x4
.uleb128 0x9
.4byte .LASF24
.byte 0x4
.byte 0xe4
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0x8
.uleb128 0x9
.4byte .LASF25
.byte 0x4
.byte 0xe5
.4byte 0x1e6
.byte 0x2
.byte 0x23
.uleb128 0xc
.byte 0x0
.uleb128 0x3
.4byte .LASF26
.byte 0x4
.byte 0xd6
.4byte 0x177
.uleb128 0xa
.byte 0x4
.4byte 0x17d
.uleb128 0xb
.byte 0x1
.4byte 0x5e
.4byte 0x192
.uleb128 0xc
.4byte 0x8f
.uleb128 0xc
.4byte 0x192
.byte 0x0
.uleb128 0xa
.byte 0x4
.4byte 0x11c
.uleb128 0x7
.4byte .LASF27
.byte 0xc
.byte 0x4
.byte 0xd9
.4byte 0x1cf
.uleb128 0x9
.4byte .LASF28
.byte 0x4
.byte 0xda
.4byte 0x16c
.byte 0x2
.byte 0x23
.uleb128 0x0
.uleb128 0x9
.4byte .LASF29
.byte 0x4
.byte 0xdb
.4byte 0x8f
.byte 0x2
.byte 0x23
.uleb128 0x4
.uleb128 0x9
.4byte .LASF30
.byte 0x4
.byte 0xdc
.4byte 0x1cf
.byte 0x2
.byte 0x23
.uleb128 0x8
.byte 0x0
.uleb128 0xa
.byte 0x4
.4byte 0x198
.uleb128 0x3
.4byte .LASF27
.byte 0x4
.byte 0xdd
.4byte 0x198
.uleb128 0xa
.byte 0x4
.4byte 0x111
.uleb128 0xa
.byte 0x4
.4byte 0x1d5
.uleb128 0x7
.4byte .LASF31
.byte 0x20
.byte 0x4
.byte 0xea
.4byte 0x2cb
.uleb128 0x9
.4byte .LASF32
.byte 0x4
.byte 0xeb
.4byte 0x192
.byte 0x2
.byte 0x23
.uleb128 0x0
.uleb128 0x9
.4byte .LASF33
.byte 0x4
.byte 0xec
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x4
.uleb128 0x9
.4byte .LASF34
.byte 0x4
.byte 0xed
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x5
.uleb128 0x9
.4byte .LASF35
.byte 0x4
.byte 0xee
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x6
.uleb128 0x9
.4byte .LASF36
.byte 0x4
.byte 0xef
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x7
.uleb128 0x9
.4byte .LASF37
.byte 0x4
.byte 0xf0
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x8
.uleb128 0x9
.4byte .LASF38
.byte 0x4
.byte 0xf1
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0x9
.uleb128 0x9
.4byte .LASF39
.byte 0x4
.byte 0xf2
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0xa
.uleb128 0x9
.4byte .LASF40
.byte 0x4
.byte 0xf3
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0xb
.uleb128 0x9
.4byte .LASF41
.byte 0x4
.byte 0xf4
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0xc
.uleb128 0x9
.4byte .LASF42
.byte 0x4
.byte 0xf5
.4byte 0x9f
.byte 0x2
.byte 0x23
.uleb128 0xd
.uleb128 0x9
.4byte .LASF43
.byte 0x4
.byte 0xf6
.4byte 0xc0
.byte 0x2
.byte 0x23
.uleb128 0x10
.uleb128 0x9
.4byte .LASF44
.byte 0x4
.byte 0xf7
.4byte 0xc0
.byte 0x2
.byte 0x23
.uleb128 0x14
.uleb128 0x9
.4byte .LASF45
.byte 0x4
.byte 0xf8
.4byte 0xc0
.byte 0x2
.byte 0x23
.uleb128 0x18
.uleb128 0x9
.4byte .LASF46
.byte 0x4
.byte 0xf9
.4byte 0xc0
.byte 0x2
.byte 0x23
.uleb128 0x1c
.byte 0x0
.uleb128 0x3
.4byte .LASF31
.byte 0x4
.byte 0xfa
.4byte 0x1ec
.uleb128 0x7
.4byte .LASF47
.byte 0x10
.byte 0x5
.byte 0x39
.4byte 0x313
.uleb128 0x8
.ascii "x\000"
.byte 0x5
.byte 0x3a
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0x0
.uleb128 0x8
.ascii "y\000"
.byte 0x5
.byte 0x3a
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0x4
.uleb128 0x8
.ascii "w\000"
.byte 0x5
.byte 0x3b
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0x8
.uleb128 0x8
.ascii "h\000"
.byte 0x5
.byte 0x3b
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0xc
.byte 0x0
.uleb128 0x3
.4byte .LASF47
.byte 0x5
.byte 0x3c
.4byte 0x2d6
.uleb128 0x7
.4byte .LASF48
.byte 0x40
.byte 0x6
.byte 0x3e
.4byte 0x3dd
.uleb128 0x9
.4byte .LASF49
.byte 0x6
.byte 0x3f
.4byte 0xc0
.byte 0x2
.byte 0x23
.uleb128 0x0
.uleb128 0x9
.4byte .LASF50
.byte 0x6
.byte 0x40
.4byte 0x3dd
.byte 0x2
.byte 0x23
.uleb128 0x4
.uleb128 0x8
.ascii "w\000"
.byte 0x6
.byte 0x41
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0x8
.uleb128 0x8
.ascii "h\000"
.byte 0x6
.byte 0x41
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0xc
.uleb128 0x9
.4byte .LASF51
.byte 0x6
.byte 0x42
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0x10
.uleb128 0x9
.4byte .LASF52
.byte 0x6
.byte 0x43
.4byte 0x8f
.byte 0x2
.byte 0x23
.uleb128 0x14
.uleb128 0x9
.4byte .LASF29
.byte 0x6
.byte 0x46
.4byte 0x8f
.byte 0x2
.byte 0x23
.uleb128 0x18
.uleb128 0x9
.4byte .LASF53
.byte 0x6
.byte 0x49
.4byte 0x5e
.byte 0x2
.byte 0x23
.uleb128 0x1c
.uleb128 0x9
.4byte .LASF54
.byte 0x6
.byte 0x4a
.4byte 0x8f
.byte 0x2
.byte 0x23
.uleb128 0x20
.uleb128 0x9
.4byte .LASF55
.byte 0x6
.byte 0x4d
.4byte 0x313
.byte 0x2
.byte 0x23
.uleb128 0x24
.uleb128 0x8
.ascii "map\000"
.byte 0x6
.byte 0x50
.4byte 0x3e9
.byte 0x2
.byte 0x23
.uleb128 0x34
.uleb128 0x9
.4byte .LASF56
.byte 0x6
.byte 0x53
.4byte 0x70
.byte 0x2