-
Notifications
You must be signed in to change notification settings - Fork 70
/
stubs.S
1776 lines (1776 loc) · 67.4 KB
/
stubs.S
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
#define NSTUB(addr,name) \
.global name; \
.extern name; \
name = addr
.text
NSTUB(0x08000041, IWDG_configure)
NSTUB(0x08000083, set_stack_and_dispatch_to_sram)
NSTUB(0x080000b3, init_stack_and_get_the_party_started)
NSTUB(0x080000c5, bringup_clock_and_prepare_to_party)
NSTUB(0x08000114, magic1)
NSTUB(0x08000118, magic2)
NSTUB(0x0800011d, FLASH_OB_GetUser_0011d)
NSTUB(0x08087599, FLASH_OB_GetUser_87599)
NSTUB(0x0800012d, IWDG_WriteAccessCmd_0012d)
NSTUB(0x080875a9, IWDG_WriteAccessCmd_875a9)
NSTUB(0x08000133, IWDG_SetPrescaler_00133)
NSTUB(0x080875af, IWDG_SetPrescaler_875af)
NSTUB(0x08000139, IWDG_SetReload_00139)
NSTUB(0x080875b5, IWDG_SetReload_875b5)
NSTUB(0x0800013f, IWDG_ReloadCounter_0013f)
NSTUB(0x080875bb, IWDG_ReloadCounter_875bb)
NSTUB(0x08000149, IWDG_GetFlagStatus_00149)
NSTUB(0x080875c5, IWDG_GetFlagStatus_875c5)
NSTUB(0x0800016d, RCC_APB1PeriphClockCmd_0016d)
NSTUB(0x0800237b, RCC_APB1PeriphClockCmd_0237b)
NSTUB(0x08000185, bitband_e0020)
NSTUB(0x08000191, RTC_WriteBackupRegister)
NSTUB(0x080001ab, RTC_ReadBackupRegister)
NSTUB(0x080001c9, SCB_CoProcessor_init)
NSTUB(0x080001e5, check_for_go_for_launch)
NSTUB(0x080001fb, constant_1)
NSTUB(0x08000205, spin_breakpoint_ab)
NSTUB(0x08000211, breakpoint_ab)
NSTUB(0x0800021d, entry_point)
NSTUB(0x080004bf, boot_check_rtc_config_setup)
NSTUB(0x080009d7, config_variables_somethiing)
NSTUB(0x08000dcb, boot_debug)
NSTUB(0x08001155, sync_and_spin)
NSTUB(0x0800116f, rtc_bk0pr_7)
NSTUB(0x08001239, obj_67a0_get)
NSTUB(0x08001275, rtc_tafcr)
NSTUB(0x08001287, rtc_bkp0r_01287)
NSTUB(0x080012a1, rtc_bkp0r_012a1)
NSTUB(0x080012cb, strncmp_012cb)
NSTUB(0x0806d1a7, strncmp_6d1a7)
NSTUB(0x08001311, log2_01311)
NSTUB(0x0808888d, log2_8888d)
NSTUB(0x080013a5, usart_setup)
NSTUB(0x080013d3, usart_setup_maybe)
NSTUB(0x080016cb, usart_get)
NSTUB(0x0800176c, usart1_config)
NSTUB(0x08001790, usart2_config)
NSTUB(0x080017b4, usart3_config)
NSTUB(0x080017d9, strncat_unrolled)
NSTUB(0x0800196b, crc16)
NSTUB(0x080019e0, crc16_ccit_tab)
NSTUB(0x08001c25, boot_printf)
NSTUB(0x08001c59, strlen)
NSTUB(0x08001c8f, ring_buffer_insert_maybe_01c8f)
NSTUB(0x0800251d, ring_buffer_insert_maybe_0251d)
NSTUB(0x08001c9b, init_some_struct)
NSTUB(0x08001df7, flash_cr_something)
NSTUB(0x08001e4d, flash_cr_something_else)
NSTUB(0x08001ff1, GPIO_Init_01ff1)
NSTUB(0x08080e85, GPIO_Init_80e85)
NSTUB(0x08002139, USART_Init)
NSTUB(0x080022e9, rcc_set_pll)
NSTUB(0x08002369, RCC_AHB1PeriphClockCmd_02369)
NSTUB(0x0807d4b9, RCC_AHB1PeriphClockCmd_7d4b9)
NSTUB(0x0807d4dd, RCC_AHB1PeriphClockCmd_7d4dd)
NSTUB(0x0800238d, RCC_APB2PeriphClockCmd_0238d)
NSTUB(0x0807d4ef, RCC_APB2PeriphClockCmd_7d4ef)
NSTUB(0x0800239f, RCC_AHB1PeriphResetCmd)
NSTUB(0x080023b1, RCC_APB2PeriphResetCmd_023b1)
NSTUB(0x0807d513, RCC_APB2PeriphResetCmd_7d513)
NSTUB(0x080025f1, flash_r_optkeyr)
NSTUB(0x08002603, flash_optcr_set_1)
NSTUB(0x0800260f, flash_r_optcr_twiddle)
NSTUB(0x08002633, flash_optcr_set_2)
NSTUB(0x0800263f, flash_r_read_optcr)
NSTUB(0x08002799, flash_debug_and_spin)
NSTUB(0x080027c1, flash_check_optcr)
NSTUB(0x08002827, object_2826_functionptr)
NSTUB(0x08002865, obj_7600_init)
NSTUB(0x08002879, gpio_a_b_and_adc1_setup_thunk)
NSTUB(0x08002883, adc_and_object_2826_stuff)
NSTUB(0x080029a5, obj_7600_get)
NSTUB(0x08002b65, get_data_37b8)
NSTUB(0x08002bb3, gpio_a_b_and_adc1_setup)
NSTUB(0x08002c0f, adc1_read_channel2_blocking)
NSTUB(0x08002c39, adc1_read_channel2_two_samples)
NSTUB(0x08002d91, ADC_Init)
NSTUB(0x08002dd1, ADC_CommonInit)
NSTUB(0x08002ded, ADC_Command)
NSTUB(0x08002dff, ADC_RegularChannelConfig_02dff)
NSTUB(0x08081b2d, ADC_RegularChannelConfig_81b2d)
NSTUB(0x08002e7d, ADC_SoftwareStartConv)
NSTUB(0x08002e87, ADC_EOCOnEachRegularChannelCmd)
NSTUB(0x08002e99, ADC_GetConversionValue)
NSTUB(0x08002eb1, ADC_GetFlagStatus)
NSTUB(0x08002f77, rtc_check_magic_bkp0r_3)
NSTUB(0x08002f99, checksum_0x2000f000)
NSTUB(0x08002fb5, boot_read_uart_do_init)
NSTUB(0x080030bd, boot_try_uart_read)
NSTUB(0x08003105, boot_crc_validate_config)
NSTUB(0x08003211, rcc_peripheral_enable)
NSTUB(0x08003253, cli_03253)
NSTUB(0x0807dba5, cli_7dba5)
NSTUB(0x08003257, sei)
NSTUB(0x0800325b, rtc_facr_enable_likely)
NSTUB(0x080032e3, setup_uart_and_adc)
NSTUB(0x0800363b, obj_zero_offsets_0x800_0x804)
NSTUB(0x0800368f, obj_offset_0x800_stuff)
NSTUB(0x08004000, config_variables)
NSTUB(0x0800401c, lcd_screen_type)
NSTUB(0x08004101, global_struct)
NSTUB(0x08004108, globals)
NSTUB(0x08004260, string_localized_table_table)
NSTUB(0x08004dc8, global_0x08_array)
NSTUB(0x08004ef4, gui_limits)
NSTUB(0x08008380, global_var_0x6)
NSTUB(0x08008500, global_table_0x7)
NSTUB(0x08008584, variable_types_table)
NSTUB(0x08009544, brp_struct)
NSTUB(0x08009564, pld_struct)
NSTUB(0x08009584, sad_struct)
NSTUB(0x080095b8, csl_struct)
NSTUB(0x080095d9, aev_struct)
NSTUB(0x080095f1, eve_struct)
NSTUB(0x08009600, therapy_variable_unknown_table)
NSTUB(0x08009a74, str_struct)
NSTUB(0x08009aa8, npd_struct_maybe)
NSTUB(0x08009ac8, npa_struct)
NSTUB(0x0800aec8, brp_names)
NSTUB(0x0800af48, pld_names)
NSTUB(0x0800b354, therapy_variable_name_table)
NSTUB(0x08014501, string_raw_table_get)
NSTUB(0x08014510, string_localized_table)
NSTUB(0x08017500, home_table)
NSTUB(0x0801f974, MotorFault)
NSTUB(0x0801fad0, string_raw_table)
NSTUB(0x0805fbad, font_data)
NSTUB(0x0805fd85, font_data_also2)
NSTUB(0x08060d91, font_data_also3)
NSTUB(0x08060d9d, font_data_also)
NSTUB(0x08060db4, font_16)
NSTUB(0x08060dd9, gui_pressure_workers_init)
NSTUB(0x08061113, menu_bitmap_something)
NSTUB(0x08061435, gui_create_menus)
NSTUB(0x08063b85, max)
NSTUB(0x08063b8d, gui_something_two_bitmaps)
NSTUB(0x08063bd9, var12_setup)
NSTUB(0x08063be3, variable_update_maybe)
NSTUB(0x08063bed, list_init)
NSTUB(0x08063c0d, list_insert)
NSTUB(0x08063c23, dispatch_0xc)
NSTUB(0x08063c29, variable_0x1bc_and_0x1bd_writer_setup)
NSTUB(0x08063c35, store_variable_0x1bc_and_0x1bd)
NSTUB(0x08063cef, apply)
NSTUB(0x08063d11, apply_backwards)
NSTUB(0x08063d2f, workq_add_wrapper)
NSTUB(0x08063d5d, malloc)
NSTUB(0x08063da7, obj_init_and_copy_rect)
NSTUB(0x08063e53, gui_color_and_fil_rect_something)
NSTUB(0x08064541, gui_something_with_string_zero)
NSTUB(0x08064851, gui_display_ratio)
NSTUB(0x08064959, gui_pressure_gauge_setup)
NSTUB(0x08064a0d, gui_pressure_guage_something_0x78)
NSTUB(0x08064a41, angle_math_something_64a41)
NSTUB(0x0806d945, angle_math_something_6d945)
NSTUB(0x08064b19, pressure_gauge_draw)
NSTUB(0x08064c9f, menu_window_height_r4)
NSTUB(0x08064e31, gui_scrollable_window_create_call)
NSTUB(0x08064e3f, gui_scrollable_window_create)
NSTUB(0x08064e8d, scrollbar_add_item)
NSTUB(0x08064ed9, gui_scrollable_call_stuff_if_4_or_6)
NSTUB(0x08065045, load_stuff_into_r1_65045)
NSTUB(0x080650dd, load_stuff_into_r1_650dd)
NSTUB(0x08065051, gui_scrollable_invalidate_if_new_pallete)
NSTUB(0x08065081, gui_scrollable_focus_changed)
NSTUB(0x0806510d, gui_scrollable_call_childnre_0x30_and_0x38)
NSTUB(0x0806517b, dispatch_r4_0x8_plus_r7)
NSTUB(0x08065183, invalidate_window)
NSTUB(0x0806518d, gui_scrollable_fill)
NSTUB(0x08065209, menu_with_bitmap_maybe)
NSTUB(0x08065277, read_0x1a)
NSTUB(0x08065293, gui_big_button_menu)
NSTUB(0x08065359, scrollbar_init)
NSTUB(0x08065445, gui_scrollbar_maybe)
NSTUB(0x08065605, gui_create_back_button)
NSTUB(0x08065623, gui_draw_menu_back_button_wrapper)
NSTUB(0x08065643, dispatch_0x10_0x8)
NSTUB(0x0806564f, gui_draw_menu_back_button)
NSTUB(0x080656bb, dispatch_self_0x8)
NSTUB(0x080656c1, menu_myair_something)
NSTUB(0x08065731, menu_draw_pixels_helper)
NSTUB(0x08065819, menu_radio_setup_base)
NSTUB(0x080658d5, device_type_supported_maybe)
NSTUB(0x080658f1, get_string_id_unwrap)
NSTUB(0x08065961, variable_get_something)
NSTUB(0x08065b2f, global_0x20_update_0x60)
NSTUB(0x08065b95, menu_radio_setup_someting_else)
NSTUB(0x08065bd9, gui_invalidate_otherwindow_children)
NSTUB(0x08065bf1, gui_parent_something_if_active)
NSTUB(0x08065c0f, menu_radio_create_text_maybe)
NSTUB(0x08065c55, setup_methods_f3788)
NSTUB(0x08065ccf, menu_floatvar_update_visible2)
NSTUB(0x08065d55, menu_create_text_or_float)
NSTUB(0x08065d89, setup_methods_f3788_or_f2b1c)
NSTUB(0x08065dc7, menu_entry_get_type_maybe)
NSTUB(0x08065dd7, increment_pointer)
NSTUB(0x08065edf, time_print_something)
NSTUB(0x08065f53, menu_happy_unhappy_setup_something)
NSTUB(0x08065fd5, menu_static_sting)
NSTUB(0x0806607d, menu_create_item_type_0x29_maybe)
NSTUB(0x080660e5, gui_printf_setup)
NSTUB(0x08066115, menu_floatvar_update_visible3)
NSTUB(0x08066223, gui_autoset_pressure_dislpay_likely)
NSTUB(0x08066277, menu_base_setup_something)
NSTUB(0x0806629d, gui_call_a_method_and_maybe_invalidate)
NSTUB(0x080662bb, gui_set_focus_maybe)
NSTUB(0x080662d9, wm_call_parent_stuff)
NSTUB(0x080662f5, gui_maybe_set_color)
NSTUB(0x08066301, search_parent_and_dispatch)
NSTUB(0x0806632b, dispatch_some_stuff_baseclass)
NSTUB(0x0806632d, dispatch_some_stuff)
NSTUB(0x08066357, setup_methods_f2b1c)
NSTUB(0x08066377, menu_floatvar_update_visible)
NSTUB(0x080663a9, menu_floatvar_update_editable)
NSTUB(0x080663ed, menu_floatvar_invalidate_maybe)
NSTUB(0x0806645d, menu_floatvar_create)
NSTUB(0x08066489, variable_init_value)
NSTUB(0x08066499, variable_copy_new_value_maybe)
NSTUB(0x080664ab, variable_copy_to_output)
NSTUB(0x080664b5, gui_invalidate_if_variable_baseclass)
NSTUB(0x080664b7, gui_invalidate_window_if_variable_update)
NSTUB(0x08066501, variable_stuff_8_3c_10_0)
NSTUB(0x0806652f, variable_lookup_r4)
NSTUB(0x080668dd, date_format_time)
NSTUB(0x08066ab5, variable_lookup_handler)
NSTUB(0x08066ad1, dispatch_0x38)
NSTUB(0x08066ae9, variable_update_batch_66ae9)
NSTUB(0x08066b19, variable_update_batch_66b19)
NSTUB(0x08066b65, dispatch_0x38_plus_8)
NSTUB(0x08066b75, dispatch_0x38_0x0c)
NSTUB(0x08066b8b, dispatch_0x38_0x10)
NSTUB(0x08066be9, dispatch_0x38_0x18)
NSTUB(0x08066bf9, dispatch_0x38_0x20)
NSTUB(0x08066c0b, dispatch_0x38_0x3c)
NSTUB(0x08066c1b, dispatch_0x38_0x40)
NSTUB(0x08066c6f, string_get_id_from_callback)
NSTUB(0x08066cd3, variable_call_status_handler)
NSTUB(0x08066d31, dispatch_0x38_0x64)
NSTUB(0x08066d41, dispatch_0x38_0x78)
NSTUB(0x08066d51, dispatch_0x38_0x7c)
NSTUB(0x08066d9b, global_dispatch_0x38_0x84)
NSTUB(0x08066dbf, something_offset_0x38)
NSTUB(0x08066e7f, variable_store_maybe)
NSTUB(0x08066eb3, string_lookup_variable_maybe)
NSTUB(0x08066f4f, sensor_or_variable_reading)
NSTUB(0x08066f77, variable_ref_type_maybe)
NSTUB(0x08066f9f, config_byte_read)
NSTUB(0x08066fc7, variable_get_othertype)
NSTUB(0x08067199, config_store_string)
NSTUB(0x080671cd, string_display_maybe)
NSTUB(0x08067201, global_0x5c_7200)
NSTUB(0x08067339, variable_id_minus_0x20d)
NSTUB(0x0806736b, global_slice_and_setup)
NSTUB(0x08067407, sleep_report_setup)
NSTUB(0x0806741d, sleep_report_setup2)
NSTUB(0x08067433, gui_lungs_setup_maybe)
NSTUB(0x0806744f, menu_options_init_return_1)
NSTUB(0x08067481, gui_scrollbar_derived_create_wrapper)
NSTUB(0x080674cb, gui_scrollable_if_6_8_or_9)
NSTUB(0x0806762d, variables_0x2ab_and_0x216)
NSTUB(0x080676c5, gui_something_lots_of_args)
NSTUB(0x080677ad, gui_link_objects_somehow)
NSTUB(0x080677f3, gui_draw_f42fc)
NSTUB(0x080679c9, clear_and_display_two_strings)
NSTUB(0x08067a21, string_callback_stuff)
NSTUB(0x08067b79, gui_something_0x20d_configure)
NSTUB(0x08067bbb, gui_something_0x20d_clear)
NSTUB(0x08067bdd, gui_something_0x20d_lots_of_dispatches)
NSTUB(0x08067c69, pressure_call_update_display)
NSTUB(0x08067c71, pressure_copy_vars_to_fvars)
NSTUB(0x08067caf, gui_something_0x39_configure)
NSTUB(0x08067cc1, scale_something_90_to_100)
NSTUB(0x08067ce9, scale_by_15000_div_100)
NSTUB(0x08067cff, gui_something_setup_and_invalidate)
NSTUB(0x08067d2d, gui_fill_rect_set_colors)
NSTUB(0x08067dd1, store_value)
NSTUB(0x08067dd5, display_number_at_fixed_position)
NSTUB(0x08067e49, update_variable_for_fixed_position)
NSTUB(0x08067ed9, gui_infobox_create)
NSTUB(0x08067f21, gui_widget_draw_string)
NSTUB(0x08068061, gui_draw_menu_item_maybe_never_called)
NSTUB(0x08068183, gui_draw_string_aligned_0xd)
NSTUB(0x0806852d, memcpy_unrolled)
NSTUB(0x0806854d, file_something)
NSTUB(0x08068743, menu_setup_several_menus)
NSTUB(0x08068d99, call_function_list)
NSTUB(0x08068db1, workq_add)
NSTUB(0x08068deb, workq_call_next)
NSTUB(0x08068e35, initialize_3c885968)
NSTUB(0x08068e69, struct_init_something)
NSTUB(0x080693b3, workq_something)
NSTUB(0x0806a215, GUI_SetColor_indirect_wrapper)
NSTUB(0x0806a23b, GUI_DispStringAt_something)
NSTUB(0x0806a24f, gui_dispstringinrect_r4_magic)
NSTUB(0x0806a263, GUI_DispStringAt_something_prep)
NSTUB(0x0806a26d, gui_uc_stuff)
NSTUB(0x0806a291, bitmap_draw_image_centered)
NSTUB(0x0806a2a1, GUI_FillRectEx)
NSTUB(0x0806a2bd, GUI_DrawPixel_backwards)
NSTUB(0x0806a2c9, gui_multiple_arcs_from_stack)
NSTUB(0x0806a2e3, gui_method_fc104_setup_and_invalidate)
NSTUB(0x0806a31b, gui_methods_fc104_setup)
NSTUB(0x0806a33d, off_4_set)
NSTUB(0x0806a341, off_8_set)
NSTUB(0x0806a345, off_6_set)
NSTUB(0x0806a349, off_10_set)
NSTUB(0x0806a365, halt_and_catch_fire_maybe)
NSTUB(0x0806a425, assert_maybe)
NSTUB(0x0806a481, variable_get_20d_to_260_minus_20d)
NSTUB(0x0806a4cb, replace_methods_and_do_nothing)
NSTUB(0x0806a4e7, variable_mapped_id_method_0x37)
NSTUB(0x0806a549, variable_handler_call_0x38_read_0x15)
NSTUB(0x0806a567, update_var_maybe)
NSTUB(0x0806a641, get_string_id)
NSTUB(0x0806a693, string_lookup_and_fix_spaces)
NSTUB(0x0806a70f, variable_get_info)
NSTUB(0x0806a7d5, string_lookup_and_sprintf_something)
NSTUB(0x0806a895, variable_check_mask)
NSTUB(0x0806a9a1, variable_entries_maybe)
NSTUB(0x0806aa41, global_0x20_aa40)
NSTUB(0x0806ab7d, variable_table_copy_and_slice)
NSTUB(0x0806ac51, variable_handler_init)
NSTUB(0x0806ad1f, dispatch_0x80_and_0xb0)
NSTUB(0x0806ad49, variable_offset_0xc_bits)
NSTUB(0x0806ad93, read_offset_0x10_bit)
NSTUB(0x0806ae3b, task_something_maybe)
NSTUB(0x0806aee9, global_0x10_ee8)
NSTUB(0x0806af87, and_0xF)
NSTUB(0x0806af8d, string_lookup_switch)
NSTUB(0x0806afcb, const_0x99)
NSTUB(0x0806afe7, global_0x5c_something)
NSTUB(0x0806b0e7, variable_handler_list_insert)
NSTUB(0x0806b0f5, bzero_6b0f5)
NSTUB(0x0806d08d, bzero_6d08d)
NSTUB(0x0806b115, font_worker_something)
NSTUB(0x0806b22b, get_font)
NSTUB(0x0806b237, GUI_find_a_font)
NSTUB(0x0806b243, GUI_SetFont_default)
NSTUB(0x0806b24b, GUI_SetFont_with_something)
NSTUB(0x0806b259, get_some_sort_of_color2)
NSTUB(0x0806b267, get_some_sort_of_color)
NSTUB(0x0806b287, color_palette_lookup)
NSTUB(0x0806b2ad, printf_of_some_sort)
NSTUB(0x0806b305, variable_0x00_to_0x1b4_init)
NSTUB(0x0806b349, global_variable_read)
NSTUB(0x0806b381, global_variable_set)
NSTUB(0x0806b393, dispatch_0x10_6b393)
NSTUB(0x0806d1cb, dispatch_0x10_6d1cb)
NSTUB(0x080a0cbf, dispatch_0x10_a0cbf)
NSTUB(0x080a1345, dispatch_0x10_a1345)
NSTUB(0x080a16bd, dispatch_0x10_a16bd)
NSTUB(0x080a1be5, dispatch_0x10_a1be5)
NSTUB(0x080a5585, dispatch_0x10_a5585)
NSTUB(0x080a66b9, dispatch_0x10_a66b9)
NSTUB(0x080a6c45, dispatch_0x10_a6c45)
NSTUB(0x080a75dd, dispatch_0x10_a75dd)
NSTUB(0x080a96a1, dispatch_0x10_a96a1)
NSTUB(0x080bbde9, dispatch_0x10_bbde9)
NSTUB(0x080bc755, dispatch_0x10_bc755)
NSTUB(0x0806b39d, global_method_0x40)
NSTUB(0x0806b3db, no_oxi_maybe)
NSTUB(0x0806ba91, variable_0x1dd_to_0x1d4_init)
NSTUB(0x0806c72b, variable_get_type_up_to_0x1df)
NSTUB(0x0806c7b1, global_int_variable_update_maybe)
NSTUB(0x0806c7cf, variable_dispatch_by_id)
NSTUB(0x0806c90b, global_function_call_method_0x08)
NSTUB(0x0806c991, callback_0x34_plus_0x3c)
NSTUB(0x0806c9b1, dispatch_0x34_0x48)
NSTUB(0x0806cae9, callback_0x34_plus_0x88)
NSTUB(0x0806cb4f, dispatch_0x34_plus_0x9c)
NSTUB(0x0806cb77, dispatch_0x34_plus_0xa4)
NSTUB(0x0806cbad, dispatch_0x34_0xb0)
NSTUB(0x0806cc51, dispatch_methods_0x34)
NSTUB(0x0806cde9, dispatch_0x34_8_3c_and_c)
NSTUB(0x0806ce17, global_0x10_config_copy_and_slice)
NSTUB(0x0806cf0d, strlen_fast)
NSTUB(0x0806cf43, strncat)
NSTUB(0x0806cfa1, OSTimeGet_ptr)
NSTUB(0x0806cfad, OSTimeGet_scaled)
NSTUB(0x0806cfc7, OSTimeout_done)
NSTUB(0x0806cfdb, variable_0x176_something_else)
NSTUB(0x0806d099, u16store)
NSTUB(0x0806d09f, string_lookup)
NSTUB(0x0806d0cb, string_lookup_also)
NSTUB(0x0806d0ef, string_lookup_and_copy_default_locale)
NSTUB(0x0806d0f3, string_lookup_copy_and_replace)
NSTUB(0x0806d10b, string_lookup_and_copy)
NSTUB(0x0806d14d, string_get_raw_id)
NSTUB(0x0806d161, string_get_locale)
NSTUB(0x0806d215, gui_base_create_wm)
NSTUB(0x0806d243, search_obj_6800b9c4)
NSTUB(0x0806d24b, gui_base_insert_into_list)
NSTUB(0x0806d285, gui_window_callback)
NSTUB(0x0806d2e7, gui_base_method_0x00)
NSTUB(0x0806d2f9, gui_base_init)
NSTUB(0x0806d371, wm_getparent_and_stuff)
NSTUB(0x0806d389, gui_base_set_focus)
NSTUB(0x0806d38f, gui_invalidate_window)
NSTUB(0x0806d3ab, gui_base_get_parent_do_stuff_obj_6800b184)
NSTUB(0x0806d437, gui_base_invalidate)
NSTUB(0x0806d445, gui_base_attach_window)
NSTUB(0x0806d44f, gui_base_is_active)
NSTUB(0x0806d463, gui_base_status_something)
NSTUB(0x0806d477, gui_base_window_width)
NSTUB(0x0806d47d, gui_base_window_height)
NSTUB(0x0806d48f, gui_base_hwin)
NSTUB(0x0806d499, snprintf)
NSTUB(0x0806d4dd, mw_create_window_and_set_default_methods)
NSTUB(0x0806d513, gui_variable_invalidate_if_new_palette)
NSTUB(0x0806d529, gui_dispatch_0xd_color)
NSTUB(0x0806d543, gui_dispatch_0x13_and_color)
NSTUB(0x0806d55f, gui_variable_set_color)
NSTUB(0x0806d5cf, gui_pressure_init_gui)
NSTUB(0x0806d635, obj_bitmap_init_something)
NSTUB(0x0806d6cd, gui_draw_breath_arc)
NSTUB(0x0806d779, gui_pressure_angle_math)
NSTUB(0x0806d7ab, gui_pressure_copy_angles)
NSTUB(0x0806d7e5, angle_math_r4)
NSTUB(0x0806d7e9, gui_pressure_something)
NSTUB(0x0806d813, gui_pressure_check_0x26)
NSTUB(0x0806d82d, gui_pressure_arc_something)
NSTUB(0x0806db49, bitmap_draw_splashscreen)
NSTUB(0x0806db93, GUI_Init_once_wrapper)
NSTUB(0x0806dba7, GUI_Init_and_wait)
NSTUB(0x0806dda3, method_replace_with_dispatch_only)
NSTUB(0x0806de8d, gui_init_object_setup)
NSTUB(0x0806e063, gui_init_and_setup_menus)
NSTUB(0x0806e103, obj_6800b184_get)
NSTUB(0x0806e125, obj_6800b184_init)
NSTUB(0x0806e159, obj_6800b184_setup)
NSTUB(0x0806e188, gui_init_done)
NSTUB(0x0806e1c9, byte_0x78_from_array)
NSTUB(0x0806e1d5, obj_6800b184_offset_0x78)
NSTUB(0x0806e3e9, draw_stuff)
NSTUB(0x0806e41f, gui_disp_string_lookup_left)
NSTUB(0x0806e469, gui_variable_init)
NSTUB(0x0806e4b3, gui_variable_update_status)
NSTUB(0x0806e4c3, gui_variable_status_visible)
NSTUB(0x0806e4c9, gui_variable_has_status_changed)
NSTUB(0x0806e501, gui_variable_status_editable)
NSTUB(0x0806e50b, gui_variable_update_status_0x20)
NSTUB(0x0806e547, variable_update_and_invalidate_window)
NSTUB(0x0806e569, gui_variable_has_handler_changed)
NSTUB(0x0806e585, gui_variable_update_editable)
NSTUB(0x0806e5bd, dispatch_0x38_chain)
NSTUB(0x0806e5c3, gui_color_palette_lookup)
NSTUB(0x0806e5ed, dispatch_r4_0x34)
NSTUB(0x0806e5f5, menu_item_setup_6e468_wrapper)
NSTUB(0x0806e605, menu_draw_pixels_and_dispatch_0x60)
NSTUB(0x0806e621, gui_draw_unknown_bitmaps)
NSTUB(0x0806e689, gui_printf_for_display)
NSTUB(0x0806e737, gui_render_text_maybe)
NSTUB(0x0806e75d, strncpy_variable)
NSTUB(0x0806e79f, variable_lookup_handler_from_r4)
NSTUB(0x0806e7a5, variable_lookup_handler_wrapper)
NSTUB(0x0806e837, gui_set_bk_242424_and_clear)
NSTUB(0x0806e87b, gui_display_string)
NSTUB(0x0806e93d, menu_radio_create_children)
NSTUB(0x0806eb67, gui_draw_some_children)
NSTUB(0x0806ecb3, menu_radio_entry_setup)
NSTUB(0x0806ecd3, menu_radio_button_draw_entry)
NSTUB(0x0806ed17, pressure_auto_init)
NSTUB(0x0806ee51, pressure_auto_drawbitmap)
NSTUB(0x0806eeb9, gui_pressure_get_something)
NSTUB(0x0806ef83, gui_pressure_draw_auto_bitmap)
NSTUB(0x0806f0b5, gui_draw_pixel)
NSTUB(0x0806f0b9, gui_draw_pixel3)
NSTUB(0x0806f0c1, gui_menu_window_height)
NSTUB(0x0806f0f5, strncpy_6f0f5)
NSTUB(0x0806fc25, strncpy_6fc25)
NSTUB(0x0806f26d, variable_lookup_handler_maybe)
NSTUB(0x0806f3ff, var_between_30_and_509_minus_30)
NSTUB(0x0806f419, between_509_and_510)
NSTUB(0x0806f433, between_20d_and_260)
NSTUB(0x0806f467, lt_0x1d)
NSTUB(0x0806f4a9, config_variable_handler)
NSTUB(0x0806f4ef, variable_handle_update_value)
NSTUB(0x0806f729, variable_handler_get_variable_id)
NSTUB(0x0806f75d, global_0x18_something_else)
NSTUB(0x0806f941, global_0x18_something_third)
NSTUB(0x0806fa01, variable_handler_get_id_checked)
NSTUB(0x0806fa0d, variable_get_var_lt_1d)
NSTUB(0x0806fa77, dispatch_0x84_and_0xdc)
NSTUB(0x0806faa1, string_something)
NSTUB(0x0806facf, strncpy_backwards_locked)
NSTUB(0x0806fba1, global_0xc_something_else)
NSTUB(0x0806fcbb, string_underscore_to_space)
NSTUB(0x0806ff03, find_char)
NSTUB(0x0806ff99, strcasecmp)
NSTUB(0x080701d1, global_0x24_something)
NSTUB(0x080703b9, global_0x09_copy_stuff)
NSTUB(0x08070a47, global_0x40_copy_70a47)
NSTUB(0x2001e6d8, global_0x40_copy_1e6d8)
NSTUB(0x08070b45, global_0x44_something)
NSTUB(0x08070d83, global_0x44_0d82)
NSTUB(0x08072341, menu_entry_find)
NSTUB(0x08072523, dispatch_menu_item_things)
NSTUB(0x080725a7, gui_string_display_maybe_not_called)
NSTUB(0x0807290f, breakpoint_1)
NSTUB(0x08072915, workq_buffer_init)
NSTUB(0x0807293d, GUI_hwin_parent_rect_something)
NSTUB(0x0807299b, wm_invalidate_and_callback)
NSTUB(0x08072ab7, WM_MoveWindow)
NSTUB(0x08072abf, WM_InvalidateChildren)
NSTUB(0x08072aeb, WM_InvalidateChildren_if_necessary)
NSTUB(0x08072b21, wm_stuff_with_parent_and_next)
NSTUB(0x08072b61, emWin_LCD_Init)
NSTUB(0x08072c05, GUI_DeInit_maybe)
NSTUB(0x08072c1f, GUI_FillRect)
NSTUB(0x08072c95, GUI_Clear)
NSTUB(0x08072cd7, GUI_Init)
NSTUB(0x08072d03, gui_device_link_likely)
NSTUB(0x08072d40, draw_hline_and_pixel_methods)
NSTUB(0x08072d49, GUI_SetFont)
NSTUB(0x08072d61, GUI_SetBkColor_indirect_wrapper)
NSTUB(0x08072d69, GUI_SetColor_double_indirect)
NSTUB(0x08072d71, GUI_SetPenSize)
NSTUB(0x08072d89, GUI_SetTextMode)
NSTUB(0x08072da1, GUI_SetTextAlign)
NSTUB(0x08072db9, gui_center_or_something)
NSTUB(0x08072e03, GUI_GetFontDistY)
NSTUB(0x08072e0d, GUI_GetCharDistX)
NSTUB(0x08072e1f, GUI__GetCharDistX)
NSTUB(0x08072f39, gui_string_methods_override)
NSTUB(0x08072f48, GUI_Bin_methods_maybe)
NSTUB(0x08072f59, gui_string_len_something)
NSTUB(0x08072f6d, GUI_DispStringAt)
NSTUB(0x08072f85, GUI__DispStringInRect)
NSTUB(0x080730f5, GUI_DispStringInRectMax)
NSTUB(0x08073141, GUI_DispStringInRect)
NSTUB(0x08073173, uc_stuff)
NSTUB(0x080732a1, draw_image_at)
NSTUB(0x08073343, bitmap_draw_image)
NSTUB(0x080733a1, GUI_FillRect_normal)
NSTUB(0x08073409, GUI_DrawPoint)
NSTUB(0x08073461, GUI_DrawPixel)
NSTUB(0x080734e5, limit_and_map)
NSTUB(0x0807350d, gui_circle_or_elipse_probably)
NSTUB(0x08073841, GUI_AA_DrawArc)
NSTUB(0x0807399b, gui_multiple_arcs)
NSTUB(0x08073aaf, wm_rect_something_or_other)
NSTUB(0x08073be9, WM__InsertWindowIntoList)
NSTUB(0x08073cad, WM__RemoveWindowFromList_73cad)
NSTUB(0x08079719, WM__RemoveWindowFromList_79719)
NSTUB(0x08073d35, WM_InvalidateRect_likely)
NSTUB(0x08073d49, WM__IsEnabled)
NSTUB(0x08073ddd, wm_rect_stuf_stuf_stuff)
NSTUB(0x08073e79, wm_rect_stuff)
NSTUB(0x08073eab, WM__set_NextLin)
NSTUB(0x080740d3, WM__SendMessageNoData)
NSTUB(0x080740e7, rect_slide_to_home)
NSTUB(0x08074111, WM_InvalidateRectAndDescEx)
NSTUB(0x0807418f, WM__InvalidateWindow)
NSTUB(0x08074199, WM_CreateWindowAsChild)
NSTUB(0x080743a7, gui_update_layer_clip)
NSTUB(0x080743eb, WM_GetActiveWindow)
NSTUB(0x08074589, WM__GetNextIVR)
NSTUB(0x080745e7, WM__InitIVRSearch)
NSTUB(0x080746e9, emwin_init_gui_and_cliprect)
NSTUB(0x08074705, emwin_init_and_setup_stuff)
NSTUB(0x08074a61, gui_deactivate)
NSTUB(0x08074a73, WM_DefaultProc)
NSTUB(0x08074af5, WM_Init)
NSTUB(0x08074bf5, sleep_or_setup_rtc)
NSTUB(0x08074c13, date_handler_update_date)
NSTUB(0x08074c69, date_handler_ymd)
NSTUB(0x08074ca7, date_handler_set_time)
NSTUB(0x08074cf1, date_handler_get_time)
NSTUB(0x08074d2d, rtc_read_bkp0r_ptr_74d2d)
NSTUB(0x08074d3b, rtc_read_bkp0r_ptr_74d3b)
NSTUB(0x08074d4b, rtc_write_bkp0r_74d4b)
NSTUB(0x08074d57, rtc_write_bkp0r_74d57)
NSTUB(0x08074d69, rtc_write_bkp0r_74d69)
NSTUB(0x08074d5f, rtc_read_bkp0r)
NSTUB(0x08074d79, rtc_check_powerfail)
NSTUB(0x08074d93, deep_sleep_maybe)
NSTUB(0x08074db1, rtc_setup_probably)
NSTUB(0x08074e6d, date_methods_get)
NSTUB(0x08074ea1, call_setup_double_nop_callback)
NSTUB(0x08074ea9, date_methods_data)
NSTUB(0x08074eef, variable_0x176_something)
NSTUB(0x08075093, dispatch_r0_c)
NSTUB(0x0807509d, object_something_preinit)
NSTUB(0x080750a7, sleep_maybe)
NSTUB(0x08075143, global_variable_cached)
NSTUB(0x080751af, date_methods_read_rtcbkp0r_maybe)
NSTUB(0x0807536b, variable_1e5f8_init_all_zero)
NSTUB(0x08075373, variable_1e5f8_init_value)
NSTUB(0x080753db, variable_1e5f8_get)
NSTUB(0x08075415, variable_1e5f8_setup)
NSTUB(0x08075425, variable_1e5f8_byte_2)
NSTUB(0x08075431, variable_1e5f8_bit_1a)
NSTUB(0x0807543d, variable_1e5f8_bit_1b)
NSTUB(0x08075455, variable_1e5f8_bit_0x6)
NSTUB(0x08075461, config_screen_type)
NSTUB(0x0807546d, config_screen_type_validate)
NSTUB(0x08075489, write32)
NSTUB(0x08075565, arg_minus_0x1dd)
NSTUB(0x08075579, arg_minus_0xa1)
NSTUB(0x080756f5, strcmp)
NSTUB(0x08075919, float_magic_uints)
NSTUB(0x08075abd, setup_something)
NSTUB(0x08075d5d, bittwiddle_party)
NSTUB(0x08076859, global_0x60_and_0x64)
NSTUB(0x08076e9d, global_0x60_and_0x64_also)
NSTUB(0x08077915, serial_number_init_20017a30)
NSTUB(0x0807791b, read_indexed_20017a30)
NSTUB(0x08077925, read_indexed)
NSTUB(0x08077977, write_global_17138)
NSTUB(0x08077bb1, os_lock_recursive)
NSTUB(0x08077bc9, os_unlock_recursive)
NSTUB(0x08077bfd, memset_wrong)
NSTUB(0x08077c31, _printf_internal)
NSTUB(0x08078251, _printf_fp_internal)
NSTUB(0x08078c37, date_ymd_valid_78c37)
NSTUB(0x08078c3f, date_ymd_valid_78c3f)
NSTUB(0x08078cb7, check_align_something)
NSTUB(0x08078eaf, hms_bcd_sprintf)
NSTUB(0x08078ec7, ymd_bcd_sprintf)
NSTUB(0x08078f09, time_get_date_probably)
NSTUB(0x08078f9f, date_is_leap_year)
NSTUB(0x080790ef, days_of_the_month)
NSTUB(0x0807910d, OSSchedLock_call)
NSTUB(0x08079115, OSSchedUnlock_call)
NSTUB(0x0807911d, OSTimeGet_call)
NSTUB(0x08079125, OSTimeDly_call)
NSTUB(0x0807912f, OSTimeDly_scaled)
NSTUB(0x08079255, memset_unrolled_but_still_wrong)
NSTUB(0x08079563, search_something_wrapper)
NSTUB(0x0807956f, search_something_else)
NSTUB(0x08079581, search_something)
NSTUB(0x08079625, wm_get_default_parent)
NSTUB(0x08079631, WM_SetCallBack)
NSTUB(0x0807965f, WM_GetParent)
NSTUB(0x0807966d, WM_SetFocus)
NSTUB(0x0807976d, WM_AttachWindow)
NSTUB(0x080797d9, GUI_IsActive)
NSTUB(0x080797f1, GUI_StatusSomething)
NSTUB(0x0807980d, WM_GetActiveWindow_wrapper)
NSTUB(0x08079819, rect_width)
NSTUB(0x08079827, rect_height)
NSTUB(0x08079835, gui_window_width)
NSTUB(0x08079855, gui_window_height)
NSTUB(0x0807988d, wm_descriptor_invalidate_window_callback)
NSTUB(0x08079895, WM_ForEachDesc)
NSTUB(0x080798b1, WM_BringToTop)
NSTUB(0x08079abd, gui_pressure_more_angle_math)
NSTUB(0x08079b59, scale_something_by_63661975)
NSTUB(0x08079d5f, menu_and_font_setup_stuff)
NSTUB(0x0807a66f, call_16_nops)
NSTUB(0x0807a769, variable_0xa3_something)
NSTUB(0x0807a8ff, toupper)
NSTUB(0x0807a915, sprintf_maybe)
NSTUB(0x0807a9ed, breakpoint)
NSTUB(0x0807ab7d, GUI_Alloc__RemoveHolesNew)
NSTUB(0x0807add1, GUI_Alloc__also_unknown)
NSTUB(0x0807ae81, GUI_Alloc_init_once)
NSTUB(0x0807b017, GUI_ALLOC_something)
NSTUB(0x0807b067, GUI_Alloc__unknown)
NSTUB(0x0807b163, GUI_Alloc_GetFixedBlock)
NSTUB(0x0807b227, GUI__Alloc_get_bytes)
NSTUB(0x0807b237, GUI_ALLOC_h2p)
NSTUB(0x0807b24d, GUI_ALLOC_LockH)
NSTUB(0x0807b26d, GUI_ALLOC_UnlockH)
NSTUB(0x0807b571, WM_SendMessage)
NSTUB(0x0807b5b5, WM_FirstChild)
NSTUB(0x0807b5c5, GUI_SetBkColor)
NSTUB(0x0807b5e5, GUI_SetColor)
NSTUB(0x0807b605, GUI_SetDrawMode)
NSTUB(0x0807b653, GUI_DrawMode_indirect)
NSTUB(0x0807b661, LCD_DrawPixel)
NSTUB(0x0807b709, GUI_DrawHLine)
NSTUB(0x0807b809, LCD_FillRect)
NSTUB(0x0807b8a3, LCD__DrawBitmap_1bpp)
NSTUB(0x0807bb0f, LCD_SetClipRectMax)
NSTUB(0x0807bc09, GUI_LCD_ColorIndex_set2)
NSTUB(0x0807bc27, GUI_LCD_ColorIndex_set)
NSTUB(0x0807bc45, GUI_SetBkColor_indirect)
NSTUB(0x0807bc51, GUI_SetColor_indirect)
NSTUB(0x0807bc71, GUI__memset)
NSTUB(0x0807bcd1, GUI_GotoY)
NSTUB(0x0807bcdb, GUI_GotoX)
NSTUB(0x0807bce9, GUI_GotoXY)
NSTUB(0x0807bd29, gpioe_setup_and_write_64000000)
NSTUB(0x0807bf79, GUIDRV_init_something)
NSTUB(0x0807c025, gpioe_and_64000000_something)
NSTUB(0x0807c055, GUI_SetOrg)
NSTUB(0x0807c095, strlen_special)
NSTUB(0x0807c141, GUI_UC_Encode)
NSTUB(0x0807c1b5, gui_string_display_length_maybe)
NSTUB(0x0807c309, GUI_DispString)
NSTUB(0x0807c455, gui_get_window_dimensions_wrapper_7c455)
NSTUB(0x0807d005, gui_get_window_dimensions_wrapper_7d005)
NSTUB(0x0807c4b1, string_at_end_skip_newlines)
NSTUB(0x0807c4e9, GUI__IntersectRects)
NSTUB(0x0807c585, gui_uc_encode_maybe)
NSTUB(0x0807c591, uc_encode_func1_maybe_7c591)
NSTUB(0x680000b8, uc_encode_func1_maybe_000b8)
NSTUB(0x0807c647, uc_encode_func2_maybe_7c647)
NSTUB(0x680000bc, uc_encode_func2_maybe_000bc)
NSTUB(0x0807c67f, gui_uc_encode_wrapper)
NSTUB(0x0807c747, GUI_DrawMode_indirect2)
NSTUB(0x0807c797, gui_color_something)
NSTUB(0x0807c7f3, gui_color_set_something)
NSTUB(0x0807c881, gui_fixedpoint_angle_math)
NSTUB(0x0807cc05, GUI__IntersectRect_maybe)
NSTUB(0x0807cc47, rect_compare)
NSTUB(0x0807ccc5, wm_global_callback_7ccc5)
NSTUB(0x6800bc85, wm_global_callback_0bc85)
NSTUB(0x0807cd15, GUI_ALLOC_AllocZero)
NSTUB(0x0807ce5b, WM_NotifyParent)
NSTUB(0x0807ce71, GL_SetDefault)
NSTUB(0x0807cfe1, gui_get_window_dimensions_7cfe1)
NSTUB(0x0807d00d, gui_get_window_dimensions_7d00d)
NSTUB(0x0807d025, WM__NotifyParent)
NSTUB(0x0807d055, RTC_Init)
NSTUB(0x0807d09d, RTC_EnterInitMode)
NSTUB(0x0807d0d7, RTC_WaitForSynchro)
NSTUB(0x0807d115, RTC_BypassShadowCmd)
NSTUB(0x0807d131, RTC_SetTime)
NSTUB(0x0807d1c1, RTC_GetTime)
NSTUB(0x0807d1f9, RTC_SetDate)
NSTUB(0x0807d289, RTC_GetDate)
NSTUB(0x0807d2e1, RTC_Write_BKP0R)
NSTUB(0x0807d2fb, RTC_Read_BKP0R)
NSTUB(0x0807d331, RTC_ByteToBcd2)
NSTUB(0x0807d3bd, PWR_FlashPowerDownCmd)
NSTUB(0x0807d3c3, PWR_EnterSTANDBYMode)
NSTUB(0x0807d3f1, rcc_bdcr_twiddle)
NSTUB(0x0807d407, bit_band_427004c)
NSTUB(0x0807d40d, RCC_GetClocksFreq)
NSTUB(0x0807d48d, RCC_RTCCLKConfig)
NSTUB(0x0807d4b3, RCC_TIMCLKPresConfig)
NSTUB(0x0807d4cb, RCC_AHB3PeriphClockCmd)
NSTUB(0x0807d501, RCC_APB1PeriphResetCmd)
NSTUB(0x0807d525, RCC_GetFlagStatus)
NSTUB(0x0807d54f, RCC_GetITStatus)
NSTUB(0x0807d55f, RCC_ClearInterruptPending)
NSTUB(0x0807d5b1, date_handler_worker_setup)
NSTUB(0x0807d5d5, GPIO_Init_wrapper)
NSTUB(0x0807d60b, init_object_something)
NSTUB(0x0807d827, get_object_something)
NSTUB(0x0807d88d, SCB_aircr)
NSTUB(0x0807d897, NVIC_setup)
NSTUB(0x0807d8b9, bitwizardry)
NSTUB(0x0807d8f7, data_sync_and_halt)
NSTUB(0x0807d935, get_object_7d1c)
NSTUB(0x0807d96b, setup_stuff_and_enable_interrupts)
NSTUB(0x0807dba9, data_sync_and_halt_thunk)
NSTUB(0x0807dbb1, pwr_cr_6_and_loop)
NSTUB(0x0807dbb7, gpio_a_reset_0x800)
NSTUB(0x0807dc1c, object_7dc1c)
NSTUB(0x0807f267, dispatch_0xc_return1)
NSTUB(0x0807f275, iwdg_configure)
NSTUB(0x0807f2b7, iwdg_reload)
NSTUB(0x0807f2bf, watchdog_methods_7f2bf)
NSTUB(0x080fa5a4, watchdog_methods_fa5a4)
NSTUB(0x0807f495, init_68000000)
NSTUB(0x0807f4e8, null_ptr)
NSTUB(0x0807f511, OSEventNameSet)
NSTUB(0x0807f56f, OSInit)
NSTUB(0x0807f5a5, OSSchedLock)
NSTUB(0x0807f5df, OSSchedUnlock)
NSTUB(0x0807f639, OSStart)
NSTUB(0x0807f7ab, OS_Dummy_nop)
NSTUB(0x0807f7ad, OS_EventTaskRdy)
NSTUB(0x0807f839, OS_EventTaskWait)
NSTUB(0x0807f8c5, OS_EventTaskRemove)
NSTUB(0x0807f8f7, OS_EventTaskRemoveMulti)
NSTUB(0x0807f94f, OS_InitEventList)
NSTUB(0x0807f99f, OS_InitMisc)
NSTUB(0x0807f9ed, OS_InitRdyList)
NSTUB(0x0807fa2d, OS_InitTaskIdle)
NSTUB(0x0807fa6b, OS_InitTaskStat)
NSTUB(0x0807faa9, OS_InitTCBList)
NSTUB(0x0807fb0d, OS_MemClr)
NSTUB(0x0807fb1f, OS_MemCpy)
NSTUB(0x0807fb33, OS_Sched)
NSTUB(0x0807fb9b, OS_SchedNew)
NSTUB(0x0807fbbd, OS_StrCpy)
NSTUB(0x0807fbdb, OS_StrLen)
NSTUB(0x0807fbf1, OS_TaskIdle_7fbf1)
NSTUB(0x0807fbf2, OS_TaskIdle_7fbf2)
NSTUB(0x0807fc0d, OS_TaskStat)
NSTUB(0x0807fc7b, OS_TaskStatStkChk)
NSTUB(0x0807fcb8, ptr_OSIntNesting)
NSTUB(0x0807fcbc, ptr_OSLockNesting)
NSTUB(0x0807fcc1, OS_TCBInit)
NSTUB(0x0807fe1d, OSTick_Init)
NSTUB(0x0807fe3d, OS_InitTaskTick)
NSTUB(0x0807fe90, ptr_OSRunning)
NSTUB(0x0807fe94, OSPrioCur_ptr)
NSTUB(0x0807fe98, OSPrioHighRdy_ptr)
NSTUB(0x0807fe9c, OSTCBPrioTbl_ptr)
NSTUB(0x0807fea4, ptr_OSIdleCtr)
NSTUB(0x0807fea8, ptr_OSIdleCtrMax)
NSTUB(0x0807feac, ptr_OSStatRdy)
NSTUB(0x0807feb4, ptr_OSTime)
NSTUB(0x0807fed4, ptr_OSTaskCtr)
NSTUB(0x0807fed8, ptr_OSCtxSwCtr)
NSTUB(0x0807fedc, ptr_OSIdleCtrRun)
NSTUB(0x0807fee0, OSTaskIdleStk)
NSTUB(0x0807fee4, OSTaskIdleStk_top)
NSTUB(0x0807ff4c, OSUnMapTbl)
NSTUB(0x0808004d, OSTimeDly)
NSTUB(0x080800af, OSTimeGet)
NSTUB(0x080800dd, lots_of_stuff_a69c)
NSTUB(0x080800e7, WM_IsEnabled)
NSTUB(0x080800ef, WM__ForEachDesc_wrapper)
NSTUB(0x080804c5, pwm_setup_probably)
NSTUB(0x08080ad1, alphabet_something)
NSTUB(0x08080be9, alphabet_something_thunk)
NSTUB(0x08080c3d, assert)
NSTUB(0x08080c57, mempcy)
NSTUB(0x08080c65, GUI_linked_list_append)
NSTUB(0x08080cdb, GUI_Device__GetpDriver)
NSTUB(0x08080cfb, GUI_DEVICE_Create)
NSTUB(0x08080d57, GUI_Device_Link)
NSTUB(0x08080ddd, GUI_DEVICE_CreateAndLink)
NSTUB(0x08080e37, write_64000000)
NSTUB(0x08080e3f, write_64000002)
NSTUB(0x08080e45, memcpy_64000002)
NSTUB(0x08080e5d, read_64000002)
NSTUB(0x08080e69, wait_64000002)
NSTUB(0x08080ef5, GPIO_StructInit)
NSTUB(0x08080f07, GPIO_ReadInputDataBit)
NSTUB(0x08080f15, GPIO_SetBits)
NSTUB(0x08080f19, GPIO_ResetBits)
NSTUB(0x08080f1d, GPIO_WriteBit)
NSTUB(0x08080f27, gpioMode_maybe)
NSTUB(0x08080f4d, busywait_us)
NSTUB(0x08080f63, busywait_ms)
NSTUB(0x08081095, lcd_pfsetpixel)
NSTUB(0x080810ad, lcd_xorpixel)
NSTUB(0x0808119b, GUIDRV_FlexColor_GetDevFunc_Init)
NSTUB(0x080811f9, GUIDRV_FlexColor__InitOnce_thunk2)
NSTUB(0x0808120f, GUIDRV_FlexColor__InitOnce_thunk)
NSTUB(0x08081227, GUIDRV_FlexColor__unknown)
NSTUB(0x0808126f, GUIDRV_something_GetDevFunc_8126f)
NSTUB(0x080812bf, GUIDRV_something_GetDevFunc_812bf)
NSTUB(0x08081374, GUIDRV_FlexColor_funcs)
NSTUB(0x08081389, lcd_actually_draw_pixel)
NSTUB(0x080814e3, GUIDRV_FlexColor__InitOnce)
NSTUB(0x08081871, WM__GetLastSibling)
NSTUB(0x08081a31, GUI_SetLineStyle)
NSTUB(0x08081a85, rcc_apb2PeripheralReset)
NSTUB(0x08081d0d, DMA_DeInit)
NSTUB(0x08081dcd, DMA_Init)
NSTUB(0x08081e1d, DMA_StructInit)
NSTUB(0x08081e3f, DMA_Cmd)
NSTUB(0x08081e51, DMA_FlowControllerConfig)
NSTUB(0x08081e63, DMA_SetCurrDataCounter)
NSTUB(0x08081e67, DMA_GetFlagStatus)
NSTUB(0x08081e89, DMA_ClearFlag)
NSTUB(0x08081ea3, DMA_ITConfig)
NSTUB(0x08081ecf, DMA_GetITStatus)
NSTUB(0x08081f79, NVIC_PriorityGroupConfig)
NSTUB(0x08081f83, NVIC_Init)
NSTUB(0x08081fdc, magic_05fa0000)
NSTUB(0x08081ff1, timer_setup_5_and_12)
NSTUB(0x0808200b, TIM_setup)
NSTUB(0x08082075, setup_another_callback)
NSTUB(0x08082097, tim_read_tim5)
NSTUB(0x080820c1, spi_dma_schedule_maybe)
NSTUB(0x08082107, gpio_setup_maybe)
NSTUB(0x0808226f, dma_and_spi_stuff)
NSTUB(0x08082307, dma_spi_something)
NSTUB(0x08082d05, timer_and_adc_setup)
NSTUB(0x08083245, tim_nvic_and_gpio_stuff)
NSTUB(0x08083395, tim1_and_gpio_lots)
NSTUB(0x08083677, tim_and_nvic_methods_setup)
NSTUB(0x08085211, struct_initialize)
NSTUB(0x080875e9, watchdog_methods_init)
NSTUB(0x08087605, OS_ENTER_CRITICAL)
NSTUB(0x08087611, OS_EXIT_CRITICAL)
NSTUB(0x0808761b, OSStartHighRdy)
NSTUB(0x08087633, OS_TASK_SW)
NSTUB(0x080876c9, OSInitHookBegin)
NSTUB(0x080876d1, OS_InitHookEnd)
NSTUB(0x080876d3, OSTaskCreateHook_nop)
NSTUB(0x080876d5, OSTaskDelHook_nop)
NSTUB(0x080876d7, OSTaskIdleHook_nop)
NSTUB(0x080876d9, OSTaskStatHook)
NSTUB(0x080876db, OSTaskStkInit)
NSTUB(0x08087861, OSTCBInitHook_nop)
NSTUB(0x0808794d, OS_FlagUnlink)
NSTUB(0x08087975, OSTmrCreate)
NSTUB(0x08087a0b, OSTmrStart)
NSTUB(0x08087a8d, OSTmrStop)
NSTUB(0x08087b45, OSTmrSignal)
NSTUB(0x08087b53, OSTmr_alloc)
NSTUB(0x08087b87, OSTmr_Init)
NSTUB(0x08087c2f, OSTmr_InitTask)
NSTUB(0x08087c6b, OSTmr_Link)
NSTUB(0x08087cd9, OSTmr_Unlink)
NSTUB(0x08087d23, OSSchedLock_wrapper)
NSTUB(0x08087d33, OSSchedUnlock_wrapper)
NSTUB(0x08087d45, OSTmr_Task)
NSTUB(0x08087e25, OSDebugInit)
NSTUB(0x08087f80, OSDebugEn)
NSTUB(0x08087f84, OSEndiannessTest)
NSTUB(0x08088034, OSTmrEn)
NSTUB(0x08088038, OSTmrCfgMax)
NSTUB(0x0808803c, OSTmrWheelSize_8803c)
NSTUB(0x08088050, OSTmrWheelSize_88050)
NSTUB(0x08088044, OSTmrCfgTicksPerSec)
NSTUB(0x08088048, OSTmrSize)
NSTUB(0x0808804c, OSTmrTblSize)
NSTUB(0x08088054, OSTmrWheelTableSize)
NSTUB(0x0808805d, OSSemCreate)
NSTUB(0x080880ad, OSSemPend)
NSTUB(0x080881a1, OSSemPost)
NSTUB(0x080881fd, OSSemSet)
NSTUB(0x08088239, OSTaskCreate)
NSTUB(0x08088311, OSTaskDel)
NSTUB(0x0808848f, OSTaskNameSet)
NSTUB(0x0808859b, OSTaskSuspend)
NSTUB(0x080886bd, OS_TaskStkClr)
NSTUB(0x080886d5, WM__ForEachDesc)
NSTUB(0x0808897d, TIM_DeInit)
NSTUB(0x08088abd, TIM_TimeBaseInit)
NSTUB(0x08088b1f, TIM_PrescalerConfig)
NSTUB(0x08088b25, TIM_SetAutoreload)
NSTUB(0x08088b29, TIM_UpdateRequestConfig)
NSTUB(0x08088b3d, TIM_Cmd)
NSTUB(0x08088eb1, WM__GetFirstSibling)
NSTUB(0x08088ef1, workers_init)
NSTUB(0x08089045, periodic_enter_critical)
NSTUB(0x0808906b, periodic_exit_critical)
NSTUB(0x0808907f, periodic_worker_init)
NSTUB(0x080890ad, periodic_workers_func)
NSTUB(0x080890d7, periodic_works_func2)
NSTUB(0x080891b5, spiSetup_maybe1)
NSTUB(0x0808920d, spiSetup_maybe3)
NSTUB(0x08089269, spiSetup_maybe4)
NSTUB(0x08089281, spiSetup_maybe2)
NSTUB(0x08089f15, big_function_lots_of_refs)
NSTUB(0x0808a713, zero_write)
NSTUB(0x0808aa9d, timer_tasks_create)
NSTUB(0x0808ade7, stack_arg_12)
NSTUB(0x0808adef, stack_param_11_to_14)
NSTUB(0x0808ae01, call_so_many_nops)
NSTUB(0x0808b146, Tmr1min_data)
NSTUB(0x0808b1ce, TskPolledE_data)
NSTUB(0x0808b1de, TskPolledM_data)
NSTUB(0x0808b4e7, task_and_timer_init)
NSTUB(0x0808b54f, task_10000e15c)
NSTUB(0x0808b5e5, task_create_wrapper)
NSTUB(0x0808be8b, serial_number)
NSTUB(0x0808c2cb, serial_number_find_valid_something)
NSTUB(0x0808c435, create_tasks)
NSTUB(0x0808c453, serial_number_init_8c453)
NSTUB(0x080fc62d, serial_number_init_fc62d)
NSTUB(0x0808c45d, serial_number_something)
NSTUB(0x0808c497, serial_number_uninit)
NSTUB(0x0808c4a9, global_0x14_c4a8)
NSTUB(0x0808c619, date_method_0x10_something)
NSTUB(0x0808c6b7, serial_number_display_maybe)
NSTUB(0x0808cd49, serial_number_validate_mode)
NSTUB(0x0808cfb3, sleep_two_and_then_infinite_loop)
NSTUB(0x0808dfd9, SDIO_spin_wait_transfer_maybe)
NSTUB(0x0808e067, SDIO_start_transfer_maybe)
NSTUB(0x0808e089, SDIO_shutdown_maybe)
NSTUB(0x0808e0e9, SDIO_unknown_48khz)
NSTUB(0x0808e14b, gpioe_something_motor_maybe)
NSTUB(0x0808e1b1, SDIO_spin_wait_with_gpio)
NSTUB(0x0808e1f3, SDIO_set_dtimer)
NSTUB(0x0808e1fb, SDIO_initiate_command_maybe)
NSTUB(0x0808e4d3, SDIO_DMA_setup)
NSTUB(0x0808e5a5, SDIO_restart_maybe)
NSTUB(0x0808e605, gpio_e_c_and_d_twiddle)
NSTUB(0x0808e6c9, gpio_c_and_d_twiddle)
NSTUB(0x0808e74b, SDIO_DMA_FIFO_OMG)
NSTUB(0x0808e951, read_0x98)
NSTUB(0x0808eaaf, SDIO_request_size_maybe)
NSTUB(0x0808eab5, SDIO_request_blocks_who_knows)
NSTUB(0x0808eb7d, read_offset_8c)
NSTUB(0x08090c6d, file_type)
NSTUB(0x08090db8, file_types_and_extensions)
NSTUB(0x080913e1, create_semaphore_and_stuff)
NSTUB(0x08093839, file_device_type)
NSTUB(0x08099c18, font_25)
NSTUB(0x0809be10, bitmap_notsure)
NSTUB(0x0809e16b, file_open)
NSTUB(0x0809e41f, file_open_and_stuff)