diff --git a/ameba-gcc.txt b/ameba-gcc.txt new file mode 100644 index 0000000..838a7bc --- /dev/null +++ b/ameba-gcc.txt @@ -0,0 +1,9651 @@ +. +├── ameba-gcc.txt +├── component +│   ├── common +│   │   ├── api +│   │   │   ├── at_cmd +│   │   │   │   ├── atcmd_ethernet.c +│   │   │   │   ├── atcmd_ethernet.o +│   │   │   │   ├── atcmd_google.c +│   │   │   │   ├── atcmd_lwip.c +│   │   │   │   ├── atcmd_lwip.h +│   │   │   │   ├── atcmd_lwip.o +│   │   │   │   ├── atcmd_sys.c +│   │   │   │   ├── atcmd_sys.h +│   │   │   │   ├── atcmd_sys.o +│   │   │   │   ├── atcmd_wifi.c +│   │   │   │   ├── atcmd_wifi.h +│   │   │   │   ├── atcmd_wifi.o +│   │   │   │   ├── log_service.c +│   │   │   │   ├── log_service.h +│   │   │   │   └── log_service.o +│   │   │   ├── lwip_netconf.c +│   │   │   ├── lwip_netconf.h +│   │   │   ├── lwip_netconf.o +│   │   │   ├── network +│   │   │   │   ├── include +│   │   │   │   │   ├── lwipopts.h +│   │   │   │   │   ├── main.h +│   │   │   │   │   ├── main_test.h +│   │   │   │   │   ├── netconf.h +│   │   │   │   │   ├── rtl8195a_it.h +│   │   │   │   │   └── util.h +│   │   │   │   └── src +│   │   │   │   ├── ping_test.c +│   │   │   │   ├── ping_test.o +│   │   │   │   ├── wlan_network.c +│   │   │   │   └── wlan_network.o +│   │   │   ├── platform +│   │   │   │   ├── dlist.h +│   │   │   │   ├── platform_stdlib.h +│   │   │   │   ├── stdlib_patch.c +│   │   │   │   └── stdlib_patch.o +│   │   │   └── wifi +│   │   │   ├── rtw_wowlan +│   │   │   │   ├── dev_wowlan.c +│   │   │   │   └── wifi_wowlan.h +│   │   │   ├── rtw_wpa_supplicant +│   │   │   │   ├── src +│   │   │   │   │   ├── utils +│   │   │   │   │   │   ├── os_freertos.c +│   │   │   │   │   │   ├── os.h +│   │   │   │   │   │   └── rom +│   │   │   │   │   │   └── rom_wps_os.h +│   │   │   │   │   └── wps +│   │   │   │   │   └── wps_defs.h +│   │   │   │   └── wpa_supplicant +│   │   │   │   ├── wifi_eap_config.c +│   │   │   │   ├── wifi_eap_config.o +│   │   │   │   ├── wifi_p2p_config.c +│   │   │   │   ├── wifi_p2p_config.o +│   │   │   │   ├── wifi_wps_config.c +│   │   │   │   └── wifi_wps_config.o +│   │   │   ├── wifi_conf.c +│   │   │   ├── wifi_conf.h +│   │   │   ├── wifi_conf.o +│   │   │   ├── wifi_ind.c +│   │   │   ├── wifi_ind.h +│   │   │   ├── wifi_ind.o +│   │   │   ├── wifi_promisc.c +│   │   │   ├── wifi_promisc.o +│   │   │   ├── wifi_simple_config.c +│   │   │   ├── wifi_simple_config.h +│   │   │   ├── wifi_simple_config.o +│   │   │   ├── wifi_simple_config_parser.h +│   │   │   ├── wifi_util.c +│   │   │   ├── wifi_util.h +│   │   │   └── wifi_util.o +│   │   ├── application +│   │   │   ├── apple +│   │   │   │   └── WACServer +│   │   │   │   └── External +│   │   │   │   ├── Curve25519 +│   │   │   │   │   └── rom_wac_curve25519-donna.h +│   │   │   │   └── GladmanAES +│   │   │   │   ├── rom_wac_aes.h +│   │   │   │   └── rom_wac_brg_types.h +│   │   │   ├── google +│   │   │   │   └── google_nest.h +│   │   │   ├── iotdemokit +│   │   │   ├── jd_joinlink +│   │   │   │   ├── example_joinlink.c +│   │   │   │   ├── joinlink.c +│   │   │   │   └── joinlink.h +│   │   │   ├── uart_adapter +│   │   │   │   ├── uart_adapter.c +│   │   │   │   ├── uart_adapter.h +│   │   │   │   └── uart_adapter.o +│   │   │   ├── wigadget +│   │   │   │   ├── cloud_link.c +│   │   │   │   ├── cloud_link.h +│   │   │   │   ├── cloud_link.o +│   │   │   │   ├── shtc1.c +│   │   │   │   ├── shtc1.h +│   │   │   │   ├── shtc1.o +│   │   │   │   ├── wigadget.c +│   │   │   │   ├── wigadget.h +│   │   │   │   └── wigadget.o +│   │   │   └── xmodem +│   │   │   ├── uart_fw_update.c +│   │   │   ├── uart_fw_update.o +│   │   │   ├── xmodem.h +│   │   │   ├── xmport_loguart.h +│   │   │   └── xmport_uart.h +│   │   ├── drivers +│   │   │   ├── ethernet_mii +│   │   │   │   ├── ethernet_mii.c +│   │   │   │   ├── ethernet_mii.h +│   │   │   │   └── ethernet_mii.o +│   │   │   ├── i2s +│   │   │   │   └── alc5651.c +│   │   │   ├── sdio +│   │   │   │   └── realtek +│   │   │   │   └── sdio_host +│   │   │   │   └── inc +│   │   │   │   ├── sd.h +│   │   │   │   └── sdio_host.h +│   │   │   ├── usb_class +│   │   │   │   ├── device +│   │   │   │   │   ├── class +│   │   │   │   │   │   └── msc +│   │   │   │   │   │   └── inc +│   │   │   │   │   │   ├── usbd_msc_config.h +│   │   │   │   │   │   ├── usbd_msc_desc.h +│   │   │   │   │   │   ├── usbd_msc.h +│   │   │   │   │   │   └── usbd_scsi.h +│   │   │   │   │   └── core +│   │   │   │   │   └── inc +│   │   │   │   │   ├── gadget_debug.h +│   │   │   │   │   ├── usb_composite.h +│   │   │   │   │   └── usb_config.h +│   │   │   │   └── host +│   │   │   │   └── uvc +│   │   │   │   └── inc +│   │   │   │   ├── uapi_uvcvideo.h +│   │   │   │   ├── uvc_intf.h +│   │   │   │   ├── uvc_os_wrap_via_osdep_api.h +│   │   │   │   ├── uvcvideo.h +│   │   │   │   └── video.h +│   │   │   └── wlan +│   │   │   └── realtek +│   │   │   ├── include +│   │   │   │   ├── autoconf.h +│   │   │   │   ├── drv_conf.h +│   │   │   │   ├── rom_aes.h +│   │   │   │   ├── rtw_debug.h +│   │   │   │   ├── wifi_constants.h +│   │   │   │   └── wifi_structures.h +│   │   │   └── src +│   │   │   ├── core +│   │   │   │   └── option +│   │   │   │   └── rtw_opt_skbuf.c +│   │   │   └── osdep +│   │   │   ├── freertos +│   │   │   │   └── wrapper.h +│   │   │   ├── lwip_intf.c +│   │   │   ├── lwip_intf.h +│   │   │   ├── lwip_intf.o +│   │   │   ├── skbuff.h +│   │   │   ├── wireless.h +│   │   │   └── wlan_intf.h +│   │   ├── example +│   │   │   ├── example_entry.c +│   │   │   ├── example_entry.h +│   │   │   ├── example_entry.o +│   │   │   ├── uart_atcmd +│   │   │   │   ├── example_uart_atcmd.c +│   │   │   │   ├── example_uart_atcmd.h +│   │   │   │   └── example_uart_atcmd.o +│   │   │   └── wlan_fast_connect +│   │   │   ├── example_wlan_fast_connect.c +│   │   │   └── example_wlan_fast_connect.h +│   │   ├── file_system +│   │   │   └── fatfs +│   │   │   ├── disk_if +│   │   │   │   ├── inc +│   │   │   │   │   ├── sdcard.h +│   │   │   │   │   └── usbdisk.h +│   │   │   │   └── src +│   │   │   │   ├── sdcard.c +│   │   │   │   ├── sdcard.o +│   │   │   │   └── usbdisk.c +│   │   │   ├── fatfs_ext +│   │   │   │   ├── inc +│   │   │   │   │   └── ff_driver.h +│   │   │   │   └── src +│   │   │   │   ├── ff_driver.c +│   │   │   │   └── ff_driver.o +│   │   │   └── r0.10c +│   │   │   ├── include +│   │   │   │   ├── diskio.h +│   │   │   │   ├── ffconf.h +│   │   │   │   ├── ff.h +│   │   │   │   └── integer.h +│   │   │   ├── Makefile +│   │   │   └── src +│   │   │   ├── diskio.c +│   │   │   ├── diskio.o +│   │   │   ├── ff.c +│   │   │   ├── ff.o +│   │   │   ├── Makefile +│   │   │   └── option +│   │   │   ├── cc932.c +│   │   │   ├── cc936.c +│   │   │   ├── cc949.c +│   │   │   ├── cc950.c +│   │   │   ├── ccsbcs.c +│   │   │   ├── ccsbcs.o +│   │   │   ├── syncobj.c +│   │   │   ├── syscall.c +│   │   │   └── unicode.c +│   │   ├── mbed +│   │   │   ├── api +│   │   │   │   ├── error.h +│   │   │   │   ├── mbed_assert.h +│   │   │   │   ├── rtc_time.h +│   │   │   │   └── wait_api.h +│   │   │   ├── common +│   │   │   │   ├── Makefile +│   │   │   │   ├── us_ticker_api.c +│   │   │   │   ├── us_ticker_api.o +│   │   │   │   ├── wait_api.c +│   │   │   │   └── wait_api.o +│   │   │   ├── hal +│   │   │   │   ├── analogin_api.h +│   │   │   │   ├── analogout_api.h +│   │   │   │   ├── can_api.h +│   │   │   │   ├── ethernet_api.h +│   │   │   │   ├── gpio_api.h +│   │   │   │   ├── gpio_irq_api.h +│   │   │   │   ├── i2c_api.h +│   │   │   │   ├── pinmap.h +│   │   │   │   ├── port_api.h +│   │   │   │   ├── pwmout_api.h +│   │   │   │   ├── rtc_api.h +│   │   │   │   ├── serial_api.h +│   │   │   │   ├── sleep_api.h +│   │   │   │   ├── spi_api.h +│   │   │   │   └── us_ticker_api.h +│   │   │   ├── hal_ext +│   │   │   │   ├── dma_api.h +│   │   │   │   ├── efuse_api.h +│   │   │   │   ├── ethernet_ex_api.h +│   │   │   │   ├── ex_api.h +│   │   │   │   ├── flash_api.h +│   │   │   │   ├── gpio_ex_api.h +│   │   │   │   ├── gpio_irq_ex_api.h +│   │   │   │   ├── i2c_ex_api.h +│   │   │   │   ├── i2s_api.h +│   │   │   │   ├── log_uart_api.h +│   │   │   │   ├── nfc_api.h +│   │   │   │   ├── serial_ex_api.h +│   │   │   │   ├── sleep_ex_api.h +│   │   │   │   ├── spdio_api.h +│   │   │   │   ├── spi_ex_api.h +│   │   │   │   ├── sys_api.h +│   │   │   │   └── wdt_api.h +│   │   │   └── targets +│   │   │   ├── cmsis +│   │   │   │   └── rtl8195a +│   │   │   └── hal +│   │   │   └── rtl8195a +│   │   │   ├── analogin_api.c +│   │   │   ├── analogin_api.o +│   │   │   ├── device.h +│   │   │   ├── dma_api.c +│   │   │   ├── dma_api.o +│   │   │   ├── efuse_api.c +│   │   │   ├── efuse_api.o +│   │   │   ├── ethernet_api.c +│   │   │   ├── ethernet_api.o +│   │   │   ├── flash_api.c +│   │   │   ├── flash_api.o +│   │   │   ├── gpio_api.c +│   │   │   ├── gpio_api.o +│   │   │   ├── gpio_irq_api.c +│   │   │   ├── gpio_irq_api.o +│   │   │   ├── gpio_object.h +│   │   │   ├── i2c_api.c +│   │   │   ├── i2c_api.o +│   │   │   ├── i2s_api.c +│   │   │   ├── i2s_api.o +│   │   │   ├── log_uart_api.c +│   │   │   ├── log_uart_api.o +│   │   │   ├── nfc_api.c +│   │   │   ├── nfc_api.o +│   │   │   ├── objects.h +│   │   │   ├── PeripheralNames.h +│   │   │   ├── pinmap.c +│   │   │   ├── pinmap_common.c +│   │   │   ├── pinmap_common.o +│   │   │   ├── pinmap.o +│   │   │   ├── PinNames.h +│   │   │   ├── port_api.c +│   │   │   ├── port_api.o +│   │   │   ├── PortNames.h +│   │   │   ├── pwmout_api.c +│   │   │   ├── pwmout_api.o +│   │   │   ├── rtc_api.c +│   │   │   ├── rtc_api.o +│   │   │   ├── serial_api.c +│   │   │   ├── serial_api.o +│   │   │   ├── sleep.c +│   │   │   ├── sleep.o +│   │   │   ├── spdio_api.c +│   │   │   ├── spdio_api.o +│   │   │   ├── spi_api.c +│   │   │   ├── spi_api.o +│   │   │   ├── sys_api.c +│   │   │   ├── sys_api.o +│   │   │   ├── timer_api.c +│   │   │   ├── timer_api.h +│   │   │   ├── timer_api.o +│   │   │   ├── us_ticker.c +│   │   │   ├── us_ticker.o +│   │   │   ├── wdt_api.c +│   │   │   └── wdt_api.o +│   │   ├── network +│   │   │   ├── dhcp +│   │   │   │   ├── dhcps.c +│   │   │   │   ├── dhcps.h +│   │   │   │   └── dhcps.o +│   │   │   ├── lwip +│   │   │   │   ├── lwip_v1.3.2 +│   │   │   │   │   ├── CHANGELOG +│   │   │   │   │   ├── COPYING +│   │   │   │   │   ├── doc +│   │   │   │   │   │   ├── contrib.txt +│   │   │   │   │   │   ├── FILES +│   │   │   │   │   │   ├── rawapi.txt +│   │   │   │   │   │   ├── savannah.txt +│   │   │   │   │   │   ├── snmp_agent.txt +│   │   │   │   │   │   └── sys_arch.txt +│   │   │   │   │   ├── FILES +│   │   │   │   │   ├── port +│   │   │   │   │   │   ├── realtek +│   │   │   │   │   │   │   ├── arch +│   │   │   │   │   │   │   │   ├── bpstruct.h +│   │   │   │   │   │   │   │   ├── cc.h +│   │   │   │   │   │   │   │   ├── cpu.h +│   │   │   │   │   │   │   │   ├── epstruct.h +│   │   │   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   │   │   ├── lib.h +│   │   │   │   │   │   │   │   ├── perf.h +│   │   │   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   │   │   └── freertos +│   │   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   │   ├── ethernetif.h +│   │   │   │   │   │   │   ├── sys_arch.c +│   │   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   │   └── stm32f2x7 +│   │   │   │   │   │   ├── arch +│   │   │   │   │   │   │   ├── bpstruct.h +│   │   │   │   │   │   │   ├── cc.h +│   │   │   │   │   │   │   ├── cpu.h +│   │   │   │   │   │   │   ├── epstruct.h +│   │   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   │   ├── lib.h +│   │   │   │   │   │   │   ├── perf.h +│   │   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   │   ├── freertos +│   │   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   │   ├── ethernetif.h +│   │   │   │   │   │   │   ├── sys_arch.c +│   │   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   │   └── standalone +│   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   └── ethernetif.h +│   │   │   │   │   ├── README +│   │   │   │   │   └── src +│   │   │   │   │   ├── api +│   │   │   │   │   │   ├── api_lib.c +│   │   │   │   │   │   ├── api_msg.c +│   │   │   │   │   │   ├── err.c +│   │   │   │   │   │   ├── netbuf.c +│   │   │   │   │   │   ├── netdb.c +│   │   │   │   │   │   ├── netifapi.c +│   │   │   │   │   │   ├── sockets.c +│   │   │   │   │   │   └── tcpip.c +│   │   │   │   │   ├── core +│   │   │   │   │   │   ├── dhcp.c +│   │   │   │   │   │   ├── dns.c +│   │   │   │   │   │   ├── init.c +│   │   │   │   │   │   ├── ipv4 +│   │   │   │   │   │   │   ├── autoip.c +│   │   │   │   │   │   │   ├── icmp.c +│   │   │   │   │   │   │   ├── igmp.c +│   │   │   │   │   │   │   ├── inet.c +│   │   │   │   │   │   │   ├── inet_chksum.c +│   │   │   │   │   │   │   ├── ip_addr.c +│   │   │   │   │   │   │   ├── ip.c +│   │   │   │   │   │   │   └── ip_frag.c +│   │   │   │   │   │   ├── ipv6 +│   │   │   │   │   │   │   ├── icmp6.c +│   │   │   │   │   │   │   ├── inet6.c +│   │   │   │   │   │   │   ├── ip6_addr.c +│   │   │   │   │   │   │   ├── ip6.c +│   │   │   │   │   │   │   └── README +│   │   │   │   │   │   ├── mem.c +│   │   │   │   │   │   ├── memp.c +│   │   │   │   │   │   ├── netif.c +│   │   │   │   │   │   ├── pbuf.c +│   │   │   │   │   │   ├── raw.c +│   │   │   │   │   │   ├── snmp +│   │   │   │   │   │   │   ├── asn1_dec.c +│   │   │   │   │   │   │   ├── asn1_enc.c +│   │   │   │   │   │   │   ├── mib2.c +│   │   │   │   │   │   │   ├── mib_structs.c +│   │   │   │   │   │   │   ├── msg_in.c +│   │   │   │   │   │   │   └── msg_out.c +│   │   │   │   │   │   ├── stats.c +│   │   │   │   │   │   ├── sys.c +│   │   │   │   │   │   ├── tcp.c +│   │   │   │   │   │   ├── tcp_in.c +│   │   │   │   │   │   ├── tcp_out.c +│   │   │   │   │   │   └── udp.c +│   │   │   │   │   ├── include +│   │   │   │   │   │   ├── ipv4 +│   │   │   │   │   │   │   └── lwip +│   │   │   │   │   │   │   ├── autoip.h +│   │   │   │   │   │   │   ├── icmp.h +│   │   │   │   │   │   │   ├── igmp.h +│   │   │   │   │   │   │   ├── inet_chksum.h +│   │   │   │   │   │   │   ├── inet.h +│   │   │   │   │   │   │   ├── ip_addr.h +│   │   │   │   │   │   │   ├── ip_frag.h +│   │   │   │   │   │   │   └── ip.h +│   │   │   │   │   │   ├── ipv6 +│   │   │   │   │   │   │   └── lwip +│   │   │   │   │   │   │   ├── icmp.h +│   │   │   │   │   │   │   ├── inet.h +│   │   │   │   │   │   │   ├── ip_addr.h +│   │   │   │   │   │   │   └── ip.h +│   │   │   │   │   │   ├── lwip +│   │   │   │   │   │   │   ├── api.h +│   │   │   │   │   │   │   ├── api_msg.h +│   │   │   │   │   │   │   ├── arch.h +│   │   │   │   │   │   │   ├── debug.h +│   │   │   │   │   │   │   ├── def.h +│   │   │   │   │   │   │   ├── dhcp.h +│   │   │   │   │   │   │   ├── dns.h +│   │   │   │   │   │   │   ├── err.h +│   │   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   │   ├── mem.h +│   │   │   │   │   │   │   ├── memp.h +│   │   │   │   │   │   │   ├── memp_std.h +│   │   │   │   │   │   │   ├── netbuf.h +│   │   │   │   │   │   │   ├── netdb.h +│   │   │   │   │   │   │   ├── netifapi.h +│   │   │   │   │   │   │   ├── netif.h +│   │   │   │   │   │   │   ├── opt.h +│   │   │   │   │   │   │   ├── pbuf.h +│   │   │   │   │   │   │   ├── raw.h +│   │   │   │   │   │   │   ├── sio.h +│   │   │   │   │   │   │   ├── snmp_asn1.h +│   │   │   │   │   │   │   ├── snmp.h +│   │   │   │   │   │   │   ├── snmp_msg.h +│   │   │   │   │   │   │   ├── snmp_structs.h +│   │   │   │   │   │   │   ├── sockets.h +│   │   │   │   │   │   │   ├── stats.h +│   │   │   │   │   │   │   ├── sys.h +│   │   │   │   │   │   │   ├── tcp.h +│   │   │   │   │   │   │   ├── tcpip.h +│   │   │   │   │   │   │   └── udp.h +│   │   │   │   │   │   └── netif +│   │   │   │   │   │   ├── etharp.h +│   │   │   │   │   │   ├── loopif.h +│   │   │   │   │   │   ├── ppp_oe.h +│   │   │   │   │   │   └── slipif.h +│   │   │   │   │   └── netif +│   │   │   │   │   ├── etharp.c +│   │   │   │   │   ├── FILES +│   │   │   │   │   ├── loopif.c +│   │   │   │   │   ├── ppp +│   │   │   │   │   │   ├── auth.c +│   │   │   │   │   │   ├── auth.h +│   │   │   │   │   │   ├── chap.c +│   │   │   │   │   │   ├── chap.h +│   │   │   │   │   │   ├── chpms.c +│   │   │   │   │   │   ├── chpms.h +│   │   │   │   │   │   ├── fsm.c +│   │   │   │   │   │   ├── fsm.h +│   │   │   │   │   │   ├── ipcp.c +│   │   │   │   │   │   ├── ipcp.h +│   │   │   │   │   │   ├── lcp.c +│   │   │   │   │   │   ├── lcp.h +│   │   │   │   │   │   ├── magic.c +│   │   │   │   │   │   ├── magic.h +│   │   │   │   │   │   ├── md5.c +│   │   │   │   │   │   ├── md5.h +│   │   │   │   │   │   ├── pap.c +│   │   │   │   │   │   ├── pap.h +│   │   │   │   │   │   ├── ppp.c +│   │   │   │   │   │   ├── pppdebug.h +│   │   │   │   │   │   ├── ppp.h +│   │   │   │   │   │   ├── ppp_oe.c +│   │   │   │   │   │   ├── randm.c +│   │   │   │   │   │   ├── randm.h +│   │   │   │   │   │   ├── vjbsdhdr.h +│   │   │   │   │   │   ├── vj.c +│   │   │   │   │   │   └── vj.h +│   │   │   │   │   └── slipif.c +│   │   │   │   ├── lwip_v1.4.1 +│   │   │   │   │   ├── CHANGELOG +│   │   │   │   │   ├── COPYING +│   │   │   │   │   ├── doc +│   │   │   │   │   │   ├── contrib.txt +│   │   │   │   │   │   ├── FILES +│   │   │   │   │   │   ├── rawapi.txt +│   │   │   │   │   │   ├── savannah.txt +│   │   │   │   │   │   ├── snmp_agent.txt +│   │   │   │   │   │   └── sys_arch.txt +│   │   │   │   │   ├── FILES +│   │   │   │   │   ├── port +│   │   │   │   │   │   ├── realtek +│   │   │   │   │   │   │   ├── arch +│   │   │   │   │   │   │   │   ├── bpstruct.h +│   │   │   │   │   │   │   │   ├── cc.h +│   │   │   │   │   │   │   │   ├── cpu.h +│   │   │   │   │   │   │   │   ├── epstruct.h +│   │   │   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   │   │   ├── lib.h +│   │   │   │   │   │   │   │   ├── perf.h +│   │   │   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   │   │   └── freertos +│   │   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   │   ├── ethernetif.h +│   │   │   │   │   │   │   ├── ethernetif.o +│   │   │   │   │   │   │   ├── sys_arch.c +│   │   │   │   │   │   │   ├── sys_arch.h +│   │   │   │   │   │   │   └── sys_arch.o +│   │   │   │   │   │   └── stm32f2x7 +│   │   │   │   │   │   ├── arch +│   │   │   │   │   │   │   ├── bpstruct.h +│   │   │   │   │   │   │   ├── cc.h +│   │   │   │   │   │   │   ├── cpu.h +│   │   │   │   │   │   │   ├── epstruct.h +│   │   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   │   ├── lib.h +│   │   │   │   │   │   │   ├── perf.h +│   │   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   │   ├── freertos +│   │   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   │   ├── ethernetif.h +│   │   │   │   │   │   │   ├── MFC6A0B.tmp +│   │   │   │   │   │   │   ├── sys_arch.c +│   │   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   │   └── standalone +│   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   └── ethernetif.h +│   │   │   │   │   ├── README +│   │   │   │   │   ├── src +│   │   │   │   │   │   ├── api +│   │   │   │   │   │   │   ├── api_lib.c +│   │   │   │   │   │   │   ├── api_lib.o +│   │   │   │   │   │   │   ├── api_msg.c +│   │   │   │   │   │   │   ├── api_msg.o +│   │   │   │   │   │   │   ├── err.c +│   │   │   │   │   │   │   ├── err.o +│   │   │   │   │   │   │   ├── netbuf.c +│   │   │   │   │   │   │   ├── netbuf.o +│   │   │   │   │   │   │   ├── netdb.c +│   │   │   │   │   │   │   ├── netdb.o +│   │   │   │   │   │   │   ├── netifapi.c +│   │   │   │   │   │   │   ├── netifapi.o +│   │   │   │   │   │   │   ├── sockets.c +│   │   │   │   │   │   │   ├── sockets.o +│   │   │   │   │   │   │   ├── tcpip.c +│   │   │   │   │   │   │   └── tcpip.o +│   │   │   │   │   │   ├── core +│   │   │   │   │   │   │   ├── def.c +│   │   │   │   │   │   │   ├── def.o +│   │   │   │   │   │   │   ├── dhcp.c +│   │   │   │   │   │   │   ├── dhcp.o +│   │   │   │   │   │   │   ├── dns.c +│   │   │   │   │   │   │   ├── dns.o +│   │   │   │   │   │   │   ├── init.c +│   │   │   │   │   │   │   ├── init.o +│   │   │   │   │   │   │   ├── ipv4 +│   │   │   │   │   │   │   │   ├── autoip.c +│   │   │   │   │   │   │   │   ├── autoip.o +│   │   │   │   │   │   │   │   ├── icmp.c +│   │   │   │   │   │   │   │   ├── icmp.o +│   │   │   │   │   │   │   │   ├── igmp.c +│   │   │   │   │   │   │   │   ├── igmp.o +│   │   │   │   │   │   │   │   ├── inet.c +│   │   │   │   │   │   │   │   ├── inet_chksum.c +│   │   │   │   │   │   │   │   ├── inet_chksum.o +│   │   │   │   │   │   │   │   ├── inet.o +│   │   │   │   │   │   │   │   ├── ip_addr.c +│   │   │   │   │   │   │   │   ├── ip_addr.o +│   │   │   │   │   │   │   │   ├── ip.c +│   │   │   │   │   │   │   │   ├── ip_frag.c +│   │   │   │   │   │   │   │   ├── ip_frag.o +│   │   │   │   │   │   │   │   └── ip.o +│   │   │   │   │   │   │   ├── ipv6 +│   │   │   │   │   │   │   │   ├── icmp6.c +│   │   │   │   │   │   │   │   ├── inet6.c +│   │   │   │   │   │   │   │   ├── ip6_addr.c +│   │   │   │   │   │   │   │   ├── ip6.c +│   │   │   │   │   │   │   │   └── README +│   │   │   │   │   │   │   ├── lwip_timers.c +│   │   │   │   │   │   │   ├── lwip_timers.o +│   │   │   │   │   │   │   ├── mem.c +│   │   │   │   │   │   │   ├── mem.o +│   │   │   │   │   │   │   ├── memp.c +│   │   │   │   │   │   │   ├── memp.o +│   │   │   │   │   │   │   ├── netif.c +│   │   │   │   │   │   │   ├── netif.o +│   │   │   │   │   │   │   ├── pbuf.c +│   │   │   │   │   │   │   ├── pbuf.o +│   │   │   │   │   │   │   ├── raw.c +│   │   │   │   │   │   │   ├── raw.o +│   │   │   │   │   │   │   ├── snmp +│   │   │   │   │   │   │   │   ├── asn1_dec.c +│   │   │   │   │   │   │   │   ├── asn1_enc.c +│   │   │   │   │   │   │   │   ├── mib2.c +│   │   │   │   │   │   │   │   ├── mib_structs.c +│   │   │   │   │   │   │   │   ├── msg_in.c +│   │   │   │   │   │   │   │   └── msg_out.c +│   │   │   │   │   │   │   ├── stats.c +│   │   │   │   │   │   │   ├── stats.o +│   │   │   │   │   │   │   ├── sys.c +│   │   │   │   │   │   │   ├── sys.o +│   │   │   │   │   │   │   ├── tcp.c +│   │   │   │   │   │   │   ├── tcp_in.c +│   │   │   │   │   │   │   ├── tcp_in.o +│   │   │   │   │   │   │   ├── tcp.o +│   │   │   │   │   │   │   ├── tcp_out.c +│   │   │   │   │   │   │   ├── tcp_out.o +│   │   │   │   │   │   │   ├── udp.c +│   │   │   │   │   │   │   └── udp.o +│   │   │   │   │   │   ├── FILES +│   │   │   │   │   │   ├── include +│   │   │   │   │   │   │   ├── ipv4 +│   │   │   │   │   │   │   │   └── lwip +│   │   │   │   │   │   │   │   ├── autoip.h +│   │   │   │   │   │   │   │   ├── icmp.h +│   │   │   │   │   │   │   │   ├── igmp.h +│   │   │   │   │   │   │   │   ├── inet_chksum.h +│   │   │   │   │   │   │   │   ├── inet.h +│   │   │   │   │   │   │   │   ├── ip_addr.h +│   │   │   │   │   │   │   │   ├── ip_frag.h +│   │   │   │   │   │   │   │   └── ip.h +│   │   │   │   │   │   │   ├── ipv6 +│   │   │   │   │   │   │   │   └── lwip +│   │   │   │   │   │   │   │   ├── icmp.h +│   │   │   │   │   │   │   │   ├── inet.h +│   │   │   │   │   │   │   │   ├── ip_addr.h +│   │   │   │   │   │   │   │   └── ip.h +│   │   │   │   │   │   │   ├── lwip +│   │   │   │   │   │   │   │   ├── api.h +│   │   │   │   │   │   │   │   ├── api_msg.h +│   │   │   │   │   │   │   │   ├── arch.h +│   │   │   │   │   │   │   │   ├── debug.h +│   │   │   │   │   │   │   │   ├── def.h +│   │   │   │   │   │   │   │   ├── dhcp.h +│   │   │   │   │   │   │   │   ├── dns.h +│   │   │   │   │   │   │   │   ├── err.h +│   │   │   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   │   │   ├── lwip_timers.h +│   │   │   │   │   │   │   │   ├── mem.h +│   │   │   │   │   │   │   │   ├── memp.h +│   │   │   │   │   │   │   │   ├── memp_std.h +│   │   │   │   │   │   │   │   ├── netbuf.h +│   │   │   │   │   │   │   │   ├── netdb.h +│   │   │   │   │   │   │   │   ├── netifapi.h +│   │   │   │   │   │   │   │   ├── netif.h +│   │   │   │   │   │   │   │   ├── opt.h +│   │   │   │   │   │   │   │   ├── pbuf.h +│   │   │   │   │   │   │   │   ├── raw.h +│   │   │   │   │   │   │   │   ├── sio.h +│   │   │   │   │   │   │   │   ├── snmp_asn1.h +│   │   │   │   │   │   │   │   ├── snmp.h +│   │   │   │   │   │   │   │   ├── snmp_msg.h +│   │   │   │   │   │   │   │   ├── snmp_structs.h +│   │   │   │   │   │   │   │   ├── sockets.h +│   │   │   │   │   │   │   │   ├── stats.h +│   │   │   │   │   │   │   │   ├── sys.h +│   │   │   │   │   │   │   │   ├── tcp.h +│   │   │   │   │   │   │   │   ├── tcp_impl.h +│   │   │   │   │   │   │   │   ├── tcpip.h +│   │   │   │   │   │   │   │   └── udp.h +│   │   │   │   │   │   │   ├── netif +│   │   │   │   │   │   │   │   ├── etharp.h +│   │   │   │   │   │   │   │   ├── loopif.h +│   │   │   │   │   │   │   │   ├── ppp_oe.h +│   │   │   │   │   │   │   │   └── slipif.h +│   │   │   │   │   │   │   └── posix +│   │   │   │   │   │   │   ├── netdb.h +│   │   │   │   │   │   │   └── sys +│   │   │   │   │   │   │   └── socket.h +│   │   │   │   │   │   └── netif +│   │   │   │   │   │   ├── etharp.c +│   │   │   │   │   │   ├── etharp.o +│   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   ├── FILES +│   │   │   │   │   │   ├── ppp +│   │   │   │   │   │   │   ├── auth.c +│   │   │   │   │   │   │   ├── auth.h +│   │   │   │   │   │   │   ├── chap.c +│   │   │   │   │   │   │   ├── chap.h +│   │   │   │   │   │   │   ├── chpms.c +│   │   │   │   │   │   │   ├── chpms.h +│   │   │   │   │   │   │   ├── fsm.c +│   │   │   │   │   │   │   ├── fsm.h +│   │   │   │   │   │   │   ├── ipcp.c +│   │   │   │   │   │   │   ├── ipcp.h +│   │   │   │   │   │   │   ├── lcp.c +│   │   │   │   │   │   │   ├── lcp.h +│   │   │   │   │   │   │   ├── lwip_md5.c +│   │   │   │   │   │   │   ├── magic.c +│   │   │   │   │   │   │   ├── magic.h +│   │   │   │   │   │   │   ├── md5.h +│   │   │   │   │   │   │   ├── pap.c +│   │   │   │   │   │   │   ├── pap.h +│   │   │   │   │   │   │   ├── ppp.c +│   │   │   │   │   │   │   ├── pppdebug.h +│   │   │   │   │   │   │   ├── ppp.h +│   │   │   │   │   │   │   ├── ppp_impl.h +│   │   │   │   │   │   │   ├── ppp_oe.c +│   │   │   │   │   │   │   ├── randm.c +│   │   │   │   │   │   │   ├── randm.h +│   │   │   │   │   │   │   ├── vj.c +│   │   │   │   │   │   │   └── vj.h +│   │   │   │   │   │   └── slipif.c +│   │   │   │   │   └── UPGRADING +│   │   │   │   └── lwip_v1.5.0.beta +│   │   │   │   ├── CHANGELOG +│   │   │   │   ├── COPYING +│   │   │   │   ├── doc +│   │   │   │   │   ├── contrib.txt +│   │   │   │   │   ├── FILES +│   │   │   │   │   ├── rawapi.txt +│   │   │   │   │   ├── savannah.txt +│   │   │   │   │   ├── snmp_agent.txt +│   │   │   │   │   └── sys_arch.txt +│   │   │   │   ├── FILES +│   │   │   │   ├── port +│   │   │   │   │   ├── realtek +│   │   │   │   │   │   ├── arch +│   │   │   │   │   │   │   ├── bpstruct.h +│   │   │   │   │   │   │   ├── cc.h +│   │   │   │   │   │   │   ├── cpu.h +│   │   │   │   │   │   │   ├── epstruct.h +│   │   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   │   ├── lib.h +│   │   │   │   │   │   │   ├── perf.h +│   │   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   │   └── freertos +│   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   ├── ethernetif.h +│   │   │   │   │   │   ├── sys_arch.c +│   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   └── stm32f2x7 +│   │   │   │   │   ├── arch +│   │   │   │   │   │   ├── bpstruct.h +│   │   │   │   │   │   ├── cc.h +│   │   │   │   │   │   ├── cpu.h +│   │   │   │   │   │   ├── epstruct.h +│   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   ├── lib.h +│   │   │   │   │   │   ├── perf.h +│   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   ├── freertos +│   │   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   │   ├── ethernetif.h +│   │   │   │   │   │   ├── MFC6A0B.tmp +│   │   │   │   │   │   ├── sys_arch.c +│   │   │   │   │   │   └── sys_arch.h +│   │   │   │   │   └── standalone +│   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   └── ethernetif.h +│   │   │   │   ├── README +│   │   │   │   ├── src +│   │   │   │   │   ├── api +│   │   │   │   │   │   ├── api_lib.c +│   │   │   │   │   │   ├── api_msg.c +│   │   │   │   │   │   ├── err.c +│   │   │   │   │   │   ├── netbuf.c +│   │   │   │   │   │   ├── netdb.c +│   │   │   │   │   │   ├── netifapi.c +│   │   │   │   │   │   ├── pppapi.c +│   │   │   │   │   │   ├── sockets.c +│   │   │   │   │   │   └── tcpip.c +│   │   │   │   │   ├── core +│   │   │   │   │   │   ├── def.c +│   │   │   │   │   │   ├── dhcp.c +│   │   │   │   │   │   ├── dns.c +│   │   │   │   │   │   ├── inet_chksum.c +│   │   │   │   │   │   ├── init.c +│   │   │   │   │   │   ├── ipv4 +│   │   │   │   │   │   │   ├── autoip.c +│   │   │   │   │   │   │   ├── icmp.c +│   │   │   │   │   │   │   ├── igmp.c +│   │   │   │   │   │   │   ├── ip4_addr.c +│   │   │   │   │   │   │   ├── ip4.c +│   │   │   │   │   │   │   └── ip_frag.c +│   │   │   │   │   │   ├── ipv6 +│   │   │   │   │   │   │   ├── dhcp6.c +│   │   │   │   │   │   │   ├── ethip6.c +│   │   │   │   │   │   │   ├── icmp6.c +│   │   │   │   │   │   │   ├── inet6.c +│   │   │   │   │   │   │   ├── ip6_addr.c +│   │   │   │   │   │   │   ├── ip6.c +│   │   │   │   │   │   │   ├── ip6_frag.c +│   │   │   │   │   │   │   ├── mld6.c +│   │   │   │   │   │   │   ├── nd6.c +│   │   │   │   │   │   │   └── README +│   │   │   │   │   │   ├── lwip_timers.c +│   │   │   │   │   │   ├── mem.c +│   │   │   │   │   │   ├── memp.c +│   │   │   │   │   │   ├── netif.c +│   │   │   │   │   │   ├── pbuf.c +│   │   │   │   │   │   ├── raw.c +│   │   │   │   │   │   ├── snmp +│   │   │   │   │   │   │   ├── asn1_dec.c +│   │   │   │   │   │   │   ├── asn1_enc.c +│   │   │   │   │   │   │   ├── mib2.c +│   │   │   │   │   │   │   ├── mib_structs.c +│   │   │   │   │   │   │   ├── msg_in.c +│   │   │   │   │   │   │   └── msg_out.c +│   │   │   │   │   │   ├── stats.c +│   │   │   │   │   │   ├── sys.c +│   │   │   │   │   │   ├── tcp.c +│   │   │   │   │   │   ├── tcp_in.c +│   │   │   │   │   │   ├── tcp_out.c +│   │   │   │   │   │   └── udp.c +│   │   │   │   │   ├── FILES +│   │   │   │   │   ├── include +│   │   │   │   │   │   ├── compat +│   │   │   │   │   │   │   └── lwip +│   │   │   │   │   │   │   └── ip.h +│   │   │   │   │   │   ├── lwip +│   │   │   │   │   │   │   ├── api.h +│   │   │   │   │   │   │   ├── api_msg.h +│   │   │   │   │   │   │   ├── arch.h +│   │   │   │   │   │   │   ├── autoip.h +│   │   │   │   │   │   │   ├── debug.h +│   │   │   │   │   │   │   ├── def.h +│   │   │   │   │   │   │   ├── dhcp6.h +│   │   │   │   │   │   │   ├── dhcp.h +│   │   │   │   │   │   │   ├── dns.h +│   │   │   │   │   │   │   ├── err.h +│   │   │   │   │   │   │   ├── ethip6.h +│   │   │   │   │   │   │   ├── icmp6.h +│   │   │   │   │   │   │   ├── icmp.h +│   │   │   │   │   │   │   ├── igmp.h +│   │   │   │   │   │   │   ├── inet6.h +│   │   │   │   │   │   │   ├── inet_chksum.h +│   │   │   │   │   │   │   ├── inet.h +│   │   │   │   │   │   │   ├── init.h +│   │   │   │   │   │   │   ├── ip4_addr.h +│   │   │   │   │   │   │   ├── ip4.h +│   │   │   │   │   │   │   ├── ip6_addr.h +│   │   │   │   │   │   │   ├── ip6_frag.h +│   │   │   │   │   │   │   ├── ip6.h +│   │   │   │   │   │   │   ├── ip_addr.h +│   │   │   │   │   │   │   ├── ip_frag.h +│   │   │   │   │   │   │   ├── lwip_ip.h +│   │   │   │   │   │   │   ├── lwip_timers.h +│   │   │   │   │   │   │   ├── mem.h +│   │   │   │   │   │   │   ├── memp.h +│   │   │   │   │   │   │   ├── memp_std.h +│   │   │   │   │   │   │   ├── mld6.h +│   │   │   │   │   │   │   ├── nd6.h +│   │   │   │   │   │   │   ├── netbuf.h +│   │   │   │   │   │   │   ├── netdb.h +│   │   │   │   │   │   │   ├── netifapi.h +│   │   │   │   │   │   │   ├── netif.h +│   │   │   │   │   │   │   ├── opt.h +│   │   │   │   │   │   │   ├── pbuf.h +│   │   │   │   │   │   │   ├── pppapi.h +│   │   │   │   │   │   │   ├── raw.h +│   │   │   │   │   │   │   ├── sio.h +│   │   │   │   │   │   │   ├── snmp_asn1.h +│   │   │   │   │   │   │   ├── snmp.h +│   │   │   │   │   │   │   ├── snmp_msg.h +│   │   │   │   │   │   │   ├── snmp_structs.h +│   │   │   │   │   │   │   ├── sockets.h +│   │   │   │   │   │   │   ├── stats.h +│   │   │   │   │   │   │   ├── sys.h +│   │   │   │   │   │   │   ├── tcp.h +│   │   │   │   │   │   │   ├── tcp_impl.h +│   │   │   │   │   │   │   ├── tcpip.h +│   │   │   │   │   │   │   └── udp.h +│   │   │   │   │   │   ├── netif +│   │   │   │   │   │   │   ├── etharp.h +│   │   │   │   │   │   │   ├── loopif.h +│   │   │   │   │   │   │   ├── ppp +│   │   │   │   │   │   │   │   ├── ccp.h +│   │   │   │   │   │   │   │   ├── chap-md5.h +│   │   │   │   │   │   │   │   ├── chap_ms.h +│   │   │   │   │   │   │   │   ├── chap-new.h +│   │   │   │   │   │   │   │   ├── eap.h +│   │   │   │   │   │   │   │   ├── ecp.h +│   │   │   │   │   │   │   │   ├── eui64.h +│   │   │   │   │   │   │   │   ├── fsm.h +│   │   │   │   │   │   │   │   ├── ipcp.h +│   │   │   │   │   │   │   │   ├── ipv6cp.h +│   │   │   │   │   │   │   │   ├── lcp.h +│   │   │   │   │   │   │   │   ├── magic.h +│   │   │   │   │   │   │   │   ├── polarssl +│   │   │   │   │   │   │   │   │   ├── des.h +│   │   │   │   │   │   │   │   │   ├── md4.h +│   │   │   │   │   │   │   │   │   ├── md5.h +│   │   │   │   │   │   │   │   │   └── sha1.h +│   │   │   │   │   │   │   │   ├── pppcrypt.h +│   │   │   │   │   │   │   │   ├── pppdebug.h +│   │   │   │   │   │   │   │   ├── ppp.h +│   │   │   │   │   │   │   │   ├── ppp_impl.h +│   │   │   │   │   │   │   │   ├── pppoe.h +│   │   │   │   │   │   │   │   ├── pppol2tp.h +│   │   │   │   │   │   │   │   ├── upap.h +│   │   │   │   │   │   │   │   └── vj.h +│   │   │   │   │   │   │   └── slipif.h +│   │   │   │   │   │   └── posix +│   │   │   │   │   │   ├── netdb.h +│   │   │   │   │   │   └── sys +│   │   │   │   │   │   └── socket.h +│   │   │   │   │   └── netif +│   │   │   │   │   ├── etharp.c +│   │   │   │   │   ├── ethernetif.c +│   │   │   │   │   ├── FILES +│   │   │   │   │   ├── ppp +│   │   │   │   │   │   ├── auth.c +│   │   │   │   │   │   ├── ccp.c +│   │   │   │   │   │   ├── chap-md5.c +│   │   │   │   │   │   ├── chap_ms.c +│   │   │   │   │   │   ├── chap-new.c +│   │   │   │   │   │   ├── demand.c +│   │   │   │   │   │   ├── eap.c +│   │   │   │   │   │   ├── ecp.c +│   │   │   │   │   │   ├── eui64.c +│   │   │   │   │   │   ├── fsm.c +│   │   │   │   │   │   ├── ipcp.c +│   │   │   │   │   │   ├── ipv6cp.c +│   │   │   │   │   │   ├── lcp.c +│   │   │   │   │   │   ├── magic.c +│   │   │   │   │   │   ├── multilink.c +│   │   │   │   │   │   ├── polarssl +│   │   │   │   │   │   │   ├── des.c +│   │   │   │   │   │   │   ├── md4.c +│   │   │   │   │   │   │   ├── md5.c +│   │   │   │   │   │   │   ├── README +│   │   │   │   │   │   │   └── sha1.c +│   │   │   │   │   │   ├── ppp.c +│   │   │   │   │   │   ├── pppcrypt.c +│   │   │   │   │   │   ├── PPPD_FOLLOWUP +│   │   │   │   │   │   ├── pppoe.c +│   │   │   │   │   │   ├── pppol2tp.c +│   │   │   │   │   │   ├── upap.c +│   │   │   │   │   │   ├── utils.c +│   │   │   │   │   │   └── vj.c +│   │   │   │   │   └── slipif.c +│   │   │   │   └── UPGRADING +│   │   │   ├── mDNS +│   │   │   │   ├── mDNS.h +│   │   │   │   ├── mDNSPlatform.c +│   │   │   │   └── mDNSPlatform.o +│   │   │   ├── sntp +│   │   │   │   ├── sntp.c +│   │   │   │   ├── sntp.h +│   │   │   │   └── sntp.o +│   │   │   ├── ssl +│   │   │   │   ├── polarssl-1.3.8 +│   │   │   │   │   ├── include +│   │   │   │   │   │   └── polarssl +│   │   │   │   │   │   ├── aes.h +│   │   │   │   │   │   ├── aesni.h +│   │   │   │   │   │   ├── arc4.h +│   │   │   │   │   │   ├── asn1.h +│   │   │   │   │   │   ├── asn1write.h +│   │   │   │   │   │   ├── base64.h +│   │   │   │   │   │   ├── bignum.h +│   │   │   │   │   │   ├── blowfish.h +│   │   │   │   │   │   ├── bn_mul.h +│   │   │   │   │   │   ├── camellia.h +│   │   │   │   │   │   ├── ccm.h +│   │   │   │   │   │   ├── certs.h +│   │   │   │   │   │   ├── check_config.h +│   │   │   │   │   │   ├── cipher.h +│   │   │   │   │   │   ├── cipher_wrap.h +│   │   │   │   │   │   ├── compat-1.2.h +│   │   │   │   │   │   ├── config_all.h +│   │   │   │   │   │   ├── config.h +│   │   │   │   │   │   ├── config_rom.h +│   │   │   │   │   │   ├── config_rsa.h +│   │   │   │   │   │   ├── ctr_drbg.h +│   │   │   │   │   │   ├── debug.h +│   │   │   │   │   │   ├── des.h +│   │   │   │   │   │   ├── dhm.h +│   │   │   │   │   │   ├── ecdh.h +│   │   │   │   │   │   ├── ecdsa.h +│   │   │   │   │   │   ├── ecp.h +│   │   │   │   │   │   ├── entropy.h +│   │   │   │   │   │   ├── entropy_poll.h +│   │   │   │   │   │   ├── error.h +│   │   │   │   │   │   ├── gcm.h +│   │   │   │   │   │   ├── havege.h +│   │   │   │   │   │   ├── hmac_drbg.h +│   │   │   │   │   │   ├── md2.h +│   │   │   │   │   │   ├── md4.h +│   │   │   │   │   │   ├── md5.h +│   │   │   │   │   │   ├── md.h +│   │   │   │   │   │   ├── md_wrap.h +│   │   │   │   │   │   ├── memory_buffer_alloc.h +│   │   │   │   │   │   ├── memory.h +│   │   │   │   │   │   ├── net.h +│   │   │   │   │   │   ├── oid.h +│   │   │   │   │   │   ├── openssl.h +│   │   │   │   │   │   ├── padlock.h +│   │   │   │   │   │   ├── pbkdf2.h +│   │   │   │   │   │   ├── pem.h +│   │   │   │   │   │   ├── pkcs11.h +│   │   │   │   │   │   ├── pkcs12.h +│   │   │   │   │   │   ├── pkcs5.h +│   │   │   │   │   │   ├── pk.h +│   │   │   │   │   │   ├── pk_wrap.h +│   │   │   │   │   │   ├── platform.h +│   │   │   │   │   │   ├── ripemd160.h +│   │   │   │   │   │   ├── rsa.h +│   │   │   │   │   │   ├── sha1.h +│   │   │   │   │   │   ├── sha256.h +│   │   │   │   │   │   ├── sha512.h +│   │   │   │   │   │   ├── ssl_cache.h +│   │   │   │   │   │   ├── ssl_ciphersuites.h +│   │   │   │   │   │   ├── ssl.h +│   │   │   │   │   │   ├── ssl_rom_lib.h +│   │   │   │   │   │   ├── threading.h +│   │   │   │   │   │   ├── timing.h +│   │   │   │   │   │   ├── version.h +│   │   │   │   │   │   ├── x509_crl.h +│   │   │   │   │   │   ├── x509_crt.h +│   │   │   │   │   │   ├── x509_csr.h +│   │   │   │   │   │   ├── x509.h +│   │   │   │   │   │   └── xtea.h +│   │   │   │   │   ├── library +│   │   │   │   │   │   ├── aes.c +│   │   │   │   │   │   ├── aesni.c +│   │   │   │   │   │   ├── aesni.o +│   │   │   │   │   │   ├── aes.o +│   │   │   │   │   │   ├── arc4.c +│   │   │   │   │   │   ├── arc4.o +│   │   │   │   │   │   ├── asn1parse.c +│   │   │   │   │   │   ├── asn1parse.o +│   │   │   │   │   │   ├── asn1write.c +│   │   │   │   │   │   ├── asn1write.o +│   │   │   │   │   │   ├── base64.c +│   │   │   │   │   │   ├── base64.o +│   │   │   │   │   │   ├── bignum.c +│   │   │   │   │   │   ├── bignum.o +│   │   │   │   │   │   ├── blowfish.c +│   │   │   │   │   │   ├── blowfish.o +│   │   │   │   │   │   ├── camellia.c +│   │   │   │   │   │   ├── camellia.o +│   │   │   │   │   │   ├── ccm.c +│   │   │   │   │   │   ├── ccm.o +│   │   │   │   │   │   ├── certs.c +│   │   │   │   │   │   ├── certs.o +│   │   │   │   │   │   ├── cipher.c +│   │   │   │   │   │   ├── cipher.o +│   │   │   │   │   │   ├── cipher_wrap.c +│   │   │   │   │   │   ├── cipher_wrap.o +│   │   │   │   │   │   ├── CMakeLists.txt +│   │   │   │   │   │   ├── ctr_drbg.c +│   │   │   │   │   │   ├── ctr_drbg.o +│   │   │   │   │   │   ├── debug.c +│   │   │   │   │   │   ├── debug.o +│   │   │   │   │   │   ├── des.c +│   │   │   │   │   │   ├── des.o +│   │   │   │   │   │   ├── dhm.c +│   │   │   │   │   │   ├── dhm.o +│   │   │   │   │   │   ├── ecdh.c +│   │   │   │   │   │   ├── ecdh.o +│   │   │   │   │   │   ├── ecdsa.c +│   │   │   │   │   │   ├── ecdsa.o +│   │   │   │   │   │   ├── ecp.c +│   │   │   │   │   │   ├── ecp_curves.c +│   │   │   │   │   │   ├── ecp_curves.o +│   │   │   │   │   │   ├── ecp.o +│   │   │   │   │   │   ├── ecp_ram.c +│   │   │   │   │   │   ├── entropy.c +│   │   │   │   │   │   ├── entropy.o +│   │   │   │   │   │   ├── entropy_poll.c +│   │   │   │   │   │   ├── entropy_poll.o +│   │   │   │   │   │   ├── error.c +│   │   │   │   │   │   ├── error.o +│   │   │   │   │   │   ├── gcm.c +│   │   │   │   │   │   ├── gcm.o +│   │   │   │   │   │   ├── havege.c +│   │   │   │   │   │   ├── havege.o +│   │   │   │   │   │   ├── hmac_drbg.c +│   │   │   │   │   │   ├── hmac_drbg.o +│   │   │   │   │   │   ├── Makefile +│   │   │   │   │   │   ├── md2.c +│   │   │   │   │   │   ├── md2.o +│   │   │   │   │   │   ├── md4.c +│   │   │   │   │   │   ├── md4.o +│   │   │   │   │   │   ├── md5.c +│   │   │   │   │   │   ├── md5.o +│   │   │   │   │   │   ├── md.c +│   │   │   │   │   │   ├── md.o +│   │   │   │   │   │   ├── md_wrap.c +│   │   │   │   │   │   ├── md_wrap.o +│   │   │   │   │   │   ├── memory_buffer_alloc.c +│   │   │   │   │   │   ├── memory_buffer_alloc.o +│   │   │   │   │   │   ├── net.c +│   │   │   │   │   │   ├── net.o +│   │   │   │   │   │   ├── oid.c +│   │   │   │   │   │   ├── oid.o +│   │   │   │   │   │   ├── padlock.c +│   │   │   │   │   │   ├── padlock.o +│   │   │   │   │   │   ├── pbkdf2.c +│   │   │   │   │   │   ├── pbkdf2.o +│   │   │   │   │   │   ├── pem.c +│   │   │   │   │   │   ├── pem.o +│   │   │   │   │   │   ├── pk.c +│   │   │   │   │   │   ├── pkcs11.c +│   │   │   │   │   │   ├── pkcs11.o +│   │   │   │   │   │   ├── pkcs12.c +│   │   │   │   │   │   ├── pkcs12.o +│   │   │   │   │   │   ├── pkcs5.c +│   │   │   │   │   │   ├── pkcs5.o +│   │   │   │   │   │   ├── pk.o +│   │   │   │   │   │   ├── pkparse.c +│   │   │   │   │   │   ├── pkparse.o +│   │   │   │   │   │   ├── pk_wrap.c +│   │   │   │   │   │   ├── pk_wrap.o +│   │   │   │   │   │   ├── pkwrite.c +│   │   │   │   │   │   ├── pkwrite.o +│   │   │   │   │   │   ├── platform.c +│   │   │   │   │   │   ├── platform.o +│   │   │   │   │   │   ├── ripemd160.c +│   │   │   │   │   │   ├── ripemd160.o +│   │   │   │   │   │   ├── rom +│   │   │   │   │   │   │   ├── aes.c +│   │   │   │   │   │   │   ├── arc4.c +│   │   │   │   │   │   │   ├── asn1parse.c +│   │   │   │   │   │   │   ├── asn1write.c +│   │   │   │   │   │   │   ├── base64.c +│   │   │   │   │   │   │   ├── bignum.c +│   │   │   │   │   │   │   ├── ctr_drbg.c +│   │   │   │   │   │   │   ├── des.c +│   │   │   │   │   │   │   ├── dhm.c +│   │   │   │   │   │   │   ├── ecdh.c +│   │   │   │   │   │   │   ├── ecdsa.c +│   │   │   │   │   │   │   ├── ecp.c +│   │   │   │   │   │   │   ├── ecp_curves.c +│   │   │   │   │   │   │   ├── hmac_drbg.c +│   │   │   │   │   │   │   ├── Makefile +│   │   │   │   │   │   │   ├── md5.c +│   │   │   │   │   │   │   ├── md.c +│   │   │   │   │   │   │   ├── md_wrap.c +│   │   │   │   │   │   │   ├── oid.c +│   │   │   │   │   │   │   ├── pem.c +│   │   │   │   │   │   │   ├── pk.c +│   │   │   │   │   │   │   ├── pk_wrap.c +│   │   │   │   │   │   │   ├── pkwrite.c +│   │   │   │   │   │   │   ├── rsa.c +│   │   │   │   │   │   │   ├── sha1.c +│   │   │   │   │   │   │   ├── sha256.c +│   │   │   │   │   │   │   └── sha512.c +│   │   │   │   │   │   ├── rsa.c +│   │   │   │   │   │   ├── rsa.o +│   │   │   │   │   │   ├── sha1.c +│   │   │   │   │   │   ├── sha1.o +│   │   │   │   │   │   ├── sha256.c +│   │   │   │   │   │   ├── sha256.o +│   │   │   │   │   │   ├── sha512.c +│   │   │   │   │   │   ├── sha512.o +│   │   │   │   │   │   ├── ssl_cache.c +│   │   │   │   │   │   ├── ssl_cache.o +│   │   │   │   │   │   ├── ssl_ciphersuites.c +│   │   │   │   │   │   ├── ssl_ciphersuites.o +│   │   │   │   │   │   ├── ssl_cli.c +│   │   │   │   │   │   ├── ssl_cli.o +│   │   │   │   │   │   ├── ssl_srv.c +│   │   │   │   │   │   ├── ssl_srv.o +│   │   │   │   │   │   ├── ssl_tls.c +│   │   │   │   │   │   ├── ssl_tls.o +│   │   │   │   │   │   ├── threading.c +│   │   │   │   │   │   ├── threading.o +│   │   │   │   │   │   ├── timing.c +│   │   │   │   │   │   ├── timing.o +│   │   │   │   │   │   ├── version.c +│   │   │   │   │   │   ├── version_features.c +│   │   │   │   │   │   ├── version_features.o +│   │   │   │   │   │   ├── version.o +│   │   │   │   │   │   ├── x509.c +│   │   │   │   │   │   ├── x509_create.c +│   │   │   │   │   │   ├── x509_create.o +│   │   │   │   │   │   ├── x509_crl.c +│   │   │   │   │   │   ├── x509_crl.o +│   │   │   │   │   │   ├── x509_crt.c +│   │   │   │   │   │   ├── x509_crt.o +│   │   │   │   │   │   ├── x509_csr.c +│   │   │   │   │   │   ├── x509_csr.o +│   │   │   │   │   │   ├── x509.o +│   │   │   │   │   │   ├── x509write_crt.c +│   │   │   │   │   │   ├── x509write_crt.o +│   │   │   │   │   │   ├── x509write_csr.c +│   │   │   │   │   │   ├── x509write_csr.o +│   │   │   │   │   │   ├── xtea.c +│   │   │   │   │   │   └── xtea.o +│   │   │   │   │   ├── Makefile +│   │   │   │   │   ├── ssl_rom.mk +│   │   │   │   │   └── ssl_self_test.c +│   │   │   │   └── ssl_ram_map +│   │   │   │   ├── rom +│   │   │   │   │   ├── rom_ssl_ram_map.c +│   │   │   │   │   ├── rom_ssl_ram_map.h +│   │   │   │   │   └── rom_ssl_ram_map.o +│   │   │   │   ├── ssl_ram_map.c +│   │   │   │   └── ssl_ram_map.o +│   │   │   └── websocket +│   │   │   ├── libwsclient.h +│   │   │   └── wsclient_api.h +│   │   ├── test +│   │   │   └── wlan +│   │   │   └── wlan_test_inc.h +│   │   └── utilities +│   │   ├── cJSON.c +│   │   ├── cJSON.h +│   │   ├── cJSON.o +│   │   ├── http_client.c +│   │   ├── http_client.h +│   │   ├── http_client.o +│   │   ├── ssl_client.c +│   │   ├── ssl_client_ext.c +│   │   ├── ssl_client_ext.o +│   │   ├── ssl_client.o +│   │   ├── tcpecho.c +│   │   ├── tcptest.c +│   │   ├── tcptest.o +│   │   ├── uart_socket.c +│   │   ├── uart_socket.h +│   │   ├── uart_socket.o +│   │   ├── uart_ymodem.c +│   │   ├── uart_ymodem.h +│   │   ├── uart_ymodem.o +│   │   ├── udpecho.c +│   │   ├── update.c +│   │   ├── update.h +│   │   ├── update.o +│   │   ├── webserver.c +│   │   ├── webserver.h +│   │   ├── webserver.o +│   │   ├── xml.c +│   │   ├── xml.h +│   │   └── xml.o +│   ├── os +│   │   ├── freertos +│   │   │   ├── cmsis_os.c +│   │   │   ├── cmsis_os.h +│   │   │   ├── cmsis_os.o +│   │   │   ├── freertos_pmu.c +│   │   │   ├── freertos_pmu.h +│   │   │   ├── freertos_pmu.o +│   │   │   ├── freertos_service.c +│   │   │   ├── freertos_service.h +│   │   │   ├── freertos_service.o +│   │   │   └── freertos_v8.1.2 +│   │   │   ├── Demo +│   │   │   │   └── Common +│   │   │   │   ├── Full +│   │   │   │   │   ├── BlockQ.c +│   │   │   │   │   ├── comtest.c +│   │   │   │   │   ├── death.c +│   │   │   │   │   ├── dynamic.c +│   │   │   │   │   ├── events.c +│   │   │   │   │   ├── flash.c +│   │   │   │   │   ├── flop.c +│   │   │   │   │   ├── integer.c +│   │   │   │   │   ├── PollQ.c +│   │   │   │   │   ├── print.c +│   │   │   │   │   └── semtest.c +│   │   │   │   ├── include +│   │   │   │   │   ├── AltBlckQ.h +│   │   │   │   │   ├── AltBlock.h +│   │   │   │   │   ├── AltPollQ.h +│   │   │   │   │   ├── AltQTest.h +│   │   │   │   │   ├── BlockQ.h +│   │   │   │   │   ├── blocktim.h +│   │   │   │   │   ├── comtest2.h +│   │   │   │   │   ├── comtest.h +│   │   │   │   │   ├── comtest_strings.h +│   │   │   │   │   ├── countsem.h +│   │   │   │   │   ├── crflash.h +│   │   │   │   │   ├── crhook.h +│   │   │   │   │   ├── death.h +│   │   │   │   │   ├── dynamic.h +│   │   │   │   │   ├── EventGroupsDemo.h +│   │   │   │   │   ├── fileIO.h +│   │   │   │   │   ├── flash.h +│   │   │   │   │   ├── flash_timer.h +│   │   │   │   │   ├── flop.h +│   │   │   │   │   ├── GenQTest.h +│   │   │   │   │   ├── integer.h +│   │   │   │   │   ├── IntQueue.h +│   │   │   │   │   ├── mevents.h +│   │   │   │   │   ├── partest.h +│   │   │   │   │   ├── PollQ.h +│   │   │   │   │   ├── print.h +│   │   │   │   │   ├── QPeek.h +│   │   │   │   │   ├── QueueOverwrite.h +│   │   │   │   │   ├── QueueSet.h +│   │   │   │   │   ├── recmutex.h +│   │   │   │   │   ├── semtest.h +│   │   │   │   │   ├── serial.h +│   │   │   │   │   └── TimerDemo.h +│   │   │   │   └── Minimal +│   │   │   │   ├── AltBlckQ.c +│   │   │   │   ├── AltBlock.c +│   │   │   │   ├── AltPollQ.c +│   │   │   │   ├── AltQTest.c +│   │   │   │   ├── BlockQ.c +│   │   │   │   ├── blocktim.c +│   │   │   │   ├── comtest.c +│   │   │   │   ├── comtest_strings.c +│   │   │   │   ├── countsem.c +│   │   │   │   ├── crflash.c +│   │   │   │   ├── crhook.c +│   │   │   │   ├── death.c +│   │   │   │   ├── dynamic.c +│   │   │   │   ├── EventGroupsDemo.c +│   │   │   │   ├── flash.c +│   │   │   │   ├── flash_timer.c +│   │   │   │   ├── flop.c +│   │   │   │   ├── GenQTest.c +│   │   │   │   ├── integer.c +│   │   │   │   ├── IntQueue.c +│   │   │   │   ├── PollQ.c +│   │   │   │   ├── QPeek.c +│   │   │   │   ├── QueueOverwrite.c +│   │   │   │   ├── QueueSet.c +│   │   │   │   ├── recmutex.c +│   │   │   │   ├── semtest.c +│   │   │   │   ├── sp_flop.c +│   │   │   │   └── TimerDemo.c +│   │   │   ├── License +│   │   │   │   └── license.txt +│   │   │   └── Source +│   │   │   ├── croutine.c +│   │   │   ├── croutine.o +│   │   │   ├── event_groups.c +│   │   │   ├── event_groups.o +│   │   │   ├── include +│   │   │   │   ├── croutine.h +│   │   │   │   ├── event_groups.h +│   │   │   │   ├── FreeRTOS.h +│   │   │   │   ├── list.h +│   │   │   │   ├── mpu_wrappers.h +│   │   │   │   ├── portable.h +│   │   │   │   ├── projdefs.h +│   │   │   │   ├── queue.h +│   │   │   │   ├── semphr.h +│   │   │   │   ├── StackMacros.h +│   │   │   │   ├── stdint.readme +│   │   │   │   ├── task.h +│   │   │   │   └── timers.h +│   │   │   ├── list.c +│   │   │   ├── list.o +│   │   │   ├── Makefile +│   │   │   ├── portable +│   │   │   │   ├── GCC +│   │   │   │   │   ├── ARM_CM3 +│   │   │   │   │   │   ├── Makefile +│   │   │   │   │   │   ├── port.c +│   │   │   │   │   │   ├── portmacro.h +│   │   │   │   │   │   └── port.o +│   │   │   │   │   ├── ARM_CM3_MPU +│   │   │   │   │   │   ├── port.c +│   │   │   │   │   │   └── portmacro.h +│   │   │   │   │   └── ARM_CM4F +│   │   │   │   │   ├── Makefile +│   │   │   │   │   ├── port.c +│   │   │   │   │   └── portmacro.h +│   │   │   │   ├── IAR +│   │   │   │   │   ├── ARM_CM3 +│   │   │   │   │   │   ├── portasm.s +│   │   │   │   │   │   ├── port.c +│   │   │   │   │   │   └── portmacro.h +│   │   │   │   │   └── ARM_CM4F +│   │   │   │   │   ├── portasm.s +│   │   │   │   │   ├── port.c +│   │   │   │   │   └── portmacro.h +│   │   │   │   ├── MemMang +│   │   │   │   │   ├── heap_1.c +│   │   │   │   │   ├── heap_2.c +│   │   │   │   │   ├── heap_3.c +│   │   │   │   │   ├── heap_4.c +│   │   │   │   │   ├── heap_5.c +│   │   │   │   │   ├── heap_5.o +│   │   │   │   │   └── Makefile +│   │   │   │   └── RVDS +│   │   │   │   ├── ARM_CM3 +│   │   │   │   │   ├── port.c +│   │   │   │   │   └── portmacro.h +│   │   │   │   └── ARM_CM4F +│   │   │   │   ├── port.c +│   │   │   │   └── portmacro.h +│   │   │   ├── queue.c +│   │   │   ├── queue.o +│   │   │   ├── readme.txt +│   │   │   ├── tasks.c +│   │   │   ├── tasks.o +│   │   │   ├── timers.c +│   │   │   └── timers.o +│   │   └── os_dep +│   │   ├── device_lock.c +│   │   ├── device_lock.o +│   │   ├── include +│   │   │   ├── device_lock.h +│   │   │   ├── mailbox.h +│   │   │   ├── osdep_api.h +│   │   │   ├── osdep_service.h +│   │   │   ├── os_support.h +│   │   │   ├── os_timer.h +│   │   │   └── tcm_heap.h +│   │   ├── mailbox.c +│   │   ├── mailbox.o +│   │   ├── osdep_api.c +│   │   ├── osdep_api.o +│   │   ├── osdep_service.c +│   │   ├── osdep_service.o +│   │   ├── tcm_heap.c +│   │   └── tcm_heap.o +│   └── soc +│   └── realtek +│   ├── 8195a +│   │   ├── cmsis +│   │   │   ├── core_cm3.h +│   │   │   ├── core_cmFunc.h +│   │   │   ├── core_cmInstr.h +│   │   │   └── device +│   │   │   ├── app_start.c +│   │   │   ├── cmsis.h +│   │   │   ├── cmsis_nvic.c +│   │   │   ├── cmsis_nvic.h +│   │   │   ├── diag.h +│   │   │   ├── rand.h +│   │   │   ├── rtl_stdlib.h +│   │   │   ├── rtl_utility.h +│   │   │   ├── strproc.h +│   │   │   ├── system_8195a.c +│   │   │   ├── system_8195a.h +│   │   │   ├── system_8195a.o +│   │   │   └── va_list.h +│   │   ├── fwlib +│   │   │   ├── hal_adc.h +│   │   │   ├── hal_api.h +│   │   │   ├── hal_common.h +│   │   │   ├── hal_crypto.h +│   │   │   ├── hal_dac.h +│   │   │   ├── hal_diag.h +│   │   │   ├── hal_efuse.h +│   │   │   ├── hal_gdma.h +│   │   │   ├── hal_gpio.h +│   │   │   ├── hal_i2c.h +│   │   │   ├── hal_i2s.h +│   │   │   ├── hal_irqn.h +│   │   │   ├── hal_log_uart.h +│   │   │   ├── hal_mii.h +│   │   │   ├── hal_misc.h +│   │   │   ├── hal_nfc.h +│   │   │   ├── hal_pcm.h +│   │   │   ├── hal_peri_on.h +│   │   │   ├── hal_pinmux.h +│   │   │   ├── hal_platform.h +│   │   │   ├── hal_pwm.h +│   │   │   ├── hal_sdio.h +│   │   │   ├── hal_sdio_host.h +│   │   │   ├── hal_sdr_controller.h +│   │   │   ├── hal_soc_ps_monitor.h +│   │   │   ├── hal_spi_flash.h +│   │   │   ├── hal_ssi.h +│   │   │   ├── hal_timer.h +│   │   │   ├── hal_uart.h +│   │   │   ├── hal_usb.h +│   │   │   ├── hal_util.h +│   │   │   ├── hal_vector_table.h +│   │   │   ├── ram_lib +│   │   │   │   ├── usb_otg +│   │   │   │   │   └── include +│   │   │   │   │   ├── cdc.h +│   │   │   │   │   ├── dwc_list.h +│   │   │   │   │   ├── dwc_os.h +│   │   │   │   │   ├── dwc_otg_adp.h +│   │   │   │   │   ├── dwc_otg_attr.h +│   │   │   │   │   ├── dwc_otg_cil.h +│   │   │   │   │   ├── dwc_otg_common.h +│   │   │   │   │   ├── dwc_otg_core_if.h +│   │   │   │   │   ├── dwc_otg_dbg.h +│   │   │   │   │   ├── dwc_otg_driver.h +│   │   │   │   │   ├── dwc_otg_hcd.h +│   │   │   │   │   ├── dwc_otg_hcd_if.h +│   │   │   │   │   ├── dwc_otg_os_dep.h +│   │   │   │   │   ├── dwc_otg_pcd.h +│   │   │   │   │   ├── dwc_otg_pcd_if.h +│   │   │   │   │   ├── dwc_otg_regs.h +│   │   │   │   │   ├── errno.h +│   │   │   │   │   ├── hal_otg.h +│   │   │   │   │   ├── hcd.h +│   │   │   │   │   ├── rtl8195a_otg.h +│   │   │   │   │   ├── Rtl8195a_otg_zero.h +│   │   │   │   │   ├── usb_ch9.h +│   │   │   │   │   ├── usb_defs.h +│   │   │   │   │   ├── usb_gadget.h +│   │   │   │   │   ├── usb.h +│   │   │   │   │   └── usb_ulinker.h +│   │   │   │   └── wlan +│   │   │   │   └── realtek +│   │   │   │   └── wlan_ram_map +│   │   │   │   └── rom +│   │   │   │   └── rom_wlan_ram_map.h +│   │   │   ├── rtl8195a +│   │   │   │   ├── rtl8195a_adc.h +│   │   │   │   ├── rtl8195a_dac.h +│   │   │   │   ├── rtl8195a_gdma.h +│   │   │   │   ├── rtl8195a_gpio.h +│   │   │   │   ├── rtl8195a_gspi.h +│   │   │   │   ├── rtl8195a.h +│   │   │   │   ├── rtl8195a_i2c.h +│   │   │   │   ├── rtl8195a_i2s.h +│   │   │   │   ├── rtl8195a_mii.h +│   │   │   │   ├── rtl8195a_nfc.h +│   │   │   │   ├── rtl8195a_pcm.h +│   │   │   │   ├── rtl8195a_peri_on.h +│   │   │   │   ├── rtl8195a_pwm.h +│   │   │   │   ├── rtl8195a_sdio.h +│   │   │   │   ├── rtl8195a_sdio_host.h +│   │   │   │   ├── rtl8195a_sdr.h +│   │   │   │   ├── rtl8195a_spi_flash.h +│   │   │   │   ├── rtl8195a_ssi.h +│   │   │   │   ├── rtl8195a_sys_on.h +│   │   │   │   ├── rtl8195a_timer.h +│   │   │   │   ├── rtl8195a_uart.h +│   │   │   │   ├── rtl8195a_usb.h +│   │   │   │   ├── rtl8195a_wdt.h +│   │   │   │   └── src +│   │   │   │   ├── rtl8195a_adc.c +│   │   │   │   ├── rtl8195a_adc.o +│   │   │   │   ├── rtl8195a_dac.c +│   │   │   │   ├── rtl8195a_gdma.c +│   │   │   │   ├── rtl8195a_gdma.o +│   │   │   │   ├── rtl8195a_gpio.c +│   │   │   │   ├── rtl8195a_gpio.o +│   │   │   │   ├── rtl8195a_i2c.c +│   │   │   │   ├── rtl8195a_i2c.o +│   │   │   │   ├── rtl8195a_i2s.c +│   │   │   │   ├── rtl8195a_i2s.o +│   │   │   │   ├── rtl8195a_mii.c +│   │   │   │   ├── rtl8195a_mii.o +│   │   │   │   ├── rtl8195a_nfc.c +│   │   │   │   ├── rtl8195a_nfc.o +│   │   │   │   ├── rtl8195a_pcm.c +│   │   │   │   ├── rtl8195a_pwm.c +│   │   │   │   ├── rtl8195a_pwm.o +│   │   │   │   ├── rtl8195a_ssi.c +│   │   │   │   ├── rtl8195a_ssi.o +│   │   │   │   ├── rtl8195a_timer.c +│   │   │   │   ├── rtl8195a_timer.o +│   │   │   │   ├── rtl8195a_uart.c +│   │   │   │   └── rtl8195a_uart.o +│   │   │   └── src +│   │   │   ├── hal_32k.c +│   │   │   ├── hal_32k.o +│   │   │   ├── hal_adc.c +│   │   │   ├── hal_adc.o +│   │   │   ├── hal_common.c +│   │   │   ├── hal_dac.c +│   │   │   ├── hal_gdma.c +│   │   │   ├── hal_gdma.o +│   │   │   ├── hal_gpio.c +│   │   │   ├── hal_gpio.o +│   │   │   ├── hal_i2c.c +│   │   │   ├── hal_i2c.o +│   │   │   ├── hal_i2s.c +│   │   │   ├── hal_i2s.o +│   │   │   ├── hal_mii.c +│   │   │   ├── hal_mii.o +│   │   │   ├── hal_nfc.c +│   │   │   ├── hal_nfc.o +│   │   │   ├── hal_pcm.c +│   │   │   ├── hal_pcm.o +│   │   │   ├── hal_pwm.c +│   │   │   ├── hal_pwm.o +│   │   │   ├── hal_sdr_controller.c +│   │   │   ├── hal_sdr_controller.o +│   │   │   ├── hal_ssi.c +│   │   │   ├── hal_ssi.o +│   │   │   ├── hal_timer.c +│   │   │   ├── hal_timer.o +│   │   │   ├── hal_uart.c +│   │   │   └── hal_uart.o +│   │   └── misc +│   │   ├── bsp +│   │   │   ├── image +│   │   │   │   ├── ram_1.p.bin +│   │   │   │   └── ram_1.r.bin +│   │   │   └── lib +│   │   │   ├── common +│   │   │   │   ├── GCC +│   │   │   │   │   ├── lib_p2p.a +│   │   │   │   │   ├── lib_platform.a +│   │   │   │   │   ├── lib_rtlstd.a +│   │   │   │   │   ├── lib_sdcard.a +│   │   │   │   │   ├── lib_websocket.a +│   │   │   │   │   ├── lib_wlan.a +│   │   │   │   │   ├── lib_wlan_mp.a +│   │   │   │   │   ├── lib_wps.a +│   │   │   │   │   └── lib_xmodem.a +│   │   │   │   └── IAR +│   │   │   └── va0 +│   │   │   └── rom.a +│   │   ├── driver +│   │   │   ├── low_level_io.c +│   │   │   ├── low_level_io.o +│   │   │   ├── rtl_consol.c +│   │   │   ├── rtl_consol.h +│   │   │   └── rtl_consol.o +│   │   ├── gcc_utility +│   │   │   ├── Check_Jtag.sh +│   │   │   ├── openocd +│   │   │   │   └── ameba1.cfg +│   │   │   ├── ram_all.bin +│   │   │   ├── rtl_gdb_debug_jlink.txt +│   │   │   ├── rtl_gdb_debug_openocd.txt +│   │   │   ├── rtl_gdb_debug.txt +│   │   │   ├── rtl_gdb_flash_write_jlink.txt +│   │   │   ├── rtl_gdb_flash_write_openocd.txt +│   │   │   ├── rtl_gdb_flash_write.txt +│   │   │   ├── rtl_gdb_ramdebug_jlink.txt +│   │   │   ├── rtl_gdb_ramdebug_openocd.txt +│   │   │   ├── rtl_gdb_ramdebug.txt +│   │   │   ├── SetupGDB_NORMAL.sh +│   │   │   ├── target_NORMAL.axf +│   │   │   ├── target_NORMALB.axf +│   │   │   └── target_NORMALC.axf +│   │   ├── iar_utility +│   │   │   ├── common +│   │   │   │   ├── 8195a.ddf +│   │   │   │   ├── dram +│   │   │   │   │   ├── common.mac +│   │   │   │   │   ├── EM6A6165TS_7G.mac +│   │   │   │   │   └── readme.txt +│   │   │   │   ├── flashloader +│   │   │   │   │   ├── EWARM_bcut +│   │   │   │   │   │   ├── FlashLoader.ewd +│   │   │   │   │   │   ├── FlashLoader.ewp +│   │   │   │   │   │   ├── FlashLoader.eww +│   │   │   │   │   │   ├── flash_MX25L8008.c +│   │   │   │   │   │   ├── framework2 +│   │   │   │   │   │   │   ├── flash_config.h +│   │   │   │   │   │   │   ├── flash_loader_asm.s +│   │   │   │   │   │   │   ├── flash_loader.c +│   │   │   │   │   │   │   ├── flash_loader_extra.h +│   │   │   │   │   │   │   └── flash_loader.h +│   │   │   │   │   │   ├── mx25l8008_flashloader_mp.icf +│   │   │   │   │   │   ├── platform_autoconf.h +│   │   │   │   │   │   ├── preload.mp.mac +│   │   │   │   │   │   ├── rom_v01.nodbg.a +│   │   │   │   │   │   └── rtl8195a +│   │   │   │   │   │   └── hal_misc.c +│   │   │   │   │   ├── FlashRTL8195aMP.board +│   │   │   │   │   ├── FlashRTL8195aMP.flash +│   │   │   │   │   ├── FlashRTL8195aMP_img1.board +│   │   │   │   │   ├── FlashRTL8195aMP_img1_v0.board +│   │   │   │   │   ├── FlashRTL8195aMP_img2.board +│   │   │   │   │   ├── FlashRTL8195aMP.mac +│   │   │   │   │   ├── FlashRTL8195aMP.out +│   │   │   │   │   ├── FlashRTL8195aQA.board +│   │   │   │   │   ├── FlashRTL8195aQA.flash +│   │   │   │   │   ├── FlashRTL8195aQA.mac +│   │   │   │   │   └── FlashRTL8195aQA.out +│   │   │   │   ├── gen_board.bat +│   │   │   │   ├── gen_board_img2.bat +│   │   │   │   ├── postbuild_alink.bat +│   │   │   │   ├── postbuild_alink.vbs +│   │   │   │   ├── postbuild.bat +│   │   │   │   ├── postbuild_img1.bat +│   │   │   │   ├── postbuild_img1.vbs +│   │   │   │   ├── postbuild_img2.bat +│   │   │   │   ├── postbuild_img2_gcc.bat +│   │   │   │   ├── postbuild_img2.vbs +│   │   │   │   ├── postbuild.vbs +│   │   │   │   ├── prebuild.bat +│   │   │   │   ├── prebuild.vbs +│   │   │   │   ├── preload.mac +│   │   │   │   └── tools +│   │   │   │   ├── bedit.exe +│   │   │   │   ├── checksum +│   │   │   │   ├── checksum.exe +│   │   │   │   ├── coan.exe +│   │   │   │   ├── cyggcc_s-1.dll +│   │   │   │   ├── cyggmp-10.dll +│   │   │   │   ├── cygiconv-2.dll +│   │   │   │   ├── cygintl-8.dll +│   │   │   │   ├── cygmpfr-4.dll +│   │   │   │   ├── cygncursesw-10.dll +│   │   │   │   ├── cygpcre-1.dll +│   │   │   │   ├── cygreadline7.dll +│   │   │   │   ├── cygwin1.dll +│   │   │   │   ├── cygz.dll +│   │   │   │   ├── decomment.exe +│   │   │   │   ├── fart.exe +│   │   │   │   ├── gawk.exe +│   │   │   │   ├── grep.exe +│   │   │   │   ├── head.exe +│   │   │   │   ├── iarchive.exe +│   │   │   │   ├── nm.exe +│   │   │   │   ├── objcopy.exe +│   │   │   │   ├── objdump.exe +│   │   │   │   ├── padding +│   │   │   │   ├── padding.exe +│   │   │   │   ├── pick +│   │   │   │   ├── pick.exe +│   │   │   │   ├── sed.exe +│   │   │   │   ├── sort.exe +│   │   │   │   ├── strip.exe +│   │   │   │   └── tail.exe +│   │   │   ├── va +│   │   │   └── vb +│   │   └── rtl_std_lib +│   │   └── include +│   │   ├── rt_lib_rom.h +│   │   └── rtl_lib.h +│   └── common +│   └── bsp +│   ├── basic_types.h +│   └── section_config.h +├── doc +│   ├── AN0004 Realtek low power wi-fi mp user guide.pdf +│   ├── AN0011 Realtek wlan simple configuration.pdf +│   ├── AN0012 Realtek secure socket layer(ssl).pdf +│   ├── AN0025 Realtek at command.pdf +│   ├── AN0033 Realtek Ameba-1 over the air firmware update.pdf +│   ├── AN0038 Realtek googlenest user guide.pdf +│   ├── AN0043 Realtek mdns user guide.pdf +│   ├── AN0045 Realtek Ameba-1 power modes.pdf +│   ├── AN0046 Realtek Ameba uart adapter.pdf +│   ├── AN0049 Realtek Ameba WiGadget iot demo kit application note.pdf +│   ├── AN0075 Realtek Ameba-1 at command v2.0.pdf +│   ├── UM0006 Realtek wificonf application programming interface.pdf +│   ├── UM0014 Realtek web server user guide.pdf +│   ├── UM0023 Realtek Ameba-1 build environment setup - iar.pdf +│   ├── UM0027 Realtek Ameba-1 crypto engine.pdf +│   ├── UM0034 Realtek Ameba-1 memory layout.pdf +│   ├── UM0039 Realtek Ameba-1 SDK quick start.pdf +│   └── UM0048 Realtek Ameba1 DEV 1v0 User Manual_1v9_20160406_1.pdf +├── project +│   └── realtek_ameba1_va0_example +│   ├── example_sources +│   │   ├── analogin_voltage +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── crypto +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── efuse_mtp +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── efuse_otp +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── ethernet_mii +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── flash +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gdma +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gpio +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gpio_irq +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gpio_jtag +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gpio_level_irq +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gpio_light_weight +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gpio_port +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gpio_pulse_measure +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gtimer +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── gtimer_rtc +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── i2c +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── i2c_epl2197_heartrate +│   │   │   ├── inc +│   │   │   │   ├── heart_interface.h +│   │   │   │   └── HRM_2197.h +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── i2c_epl2590_light +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── i2c_epl2590_proximity +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── i2c_LPS25HB_pressure +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── i2c-shtc1 +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── i2s +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   ├── alc5651.c +│   │   │   ├── birds_11025_2ch_16b.c +│   │   │   ├── birds_16000_2ch_16b.c +│   │   │   ├── birds_22050_2ch_16b.c +│   │   │   ├── birds_24000_2ch_16b.c +│   │   │   ├── birds_32000_2ch_16b.c +│   │   │   ├── birds_44100_2ch_16b.c +│   │   │   ├── birds_48000_2ch_16b.c +│   │   │   ├── birds_8000_2ch_16b.c +│   │   │   └── main.c +│   │   ├── i2s_bypass +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   ├── alc5651.c +│   │   │   └── main.c +│   │   ├── i2s_tx_and_rx_only +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   ├── alc5651.c +│   │   │   └── main.c +│   │   ├── log_uart_char_loopback +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── log_uart_loopback +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── log_uart_stream_loopback +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── nfc +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── pm_deepsleep +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── pm_deepstandby +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── pm_sleep +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── pm_tickless +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── pwm +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── pwm-buzzer +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── sdio_device +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── spi +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── spi_pl7223 +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── spi_stream_twoboard +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── spi_twoboard +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── uart +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── uart_auto_flow_ctrl +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── uart_clock +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── uart_irq +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── uart_stream_dma +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── uart_stream_irq +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   ├── watchdog +│   │   │   ├── readme.txt +│   │   │   └── src +│   │   │   └── main.c +│   │   └── wlan +│   │   ├── readme.txt +│   │   └── src +│   │   └── main.c +│   ├── GCC-RELEASE +│   │   ├── application +│   │   │   └── Debug +│   │   │   ├── bin +│   │   │   │   ├── application.asm +│   │   │   │   ├── application.axf +│   │   │   │   ├── application.map +│   │   │   │   ├── application.nmap +│   │   │   │   ├── ota.bin +│   │   │   │   ├── ram_2.bin +│   │   │   │   ├── ram_all.bin +│   │   │   │   └── sdram.bin +│   │   │   └── obj +│   │   │   ├── aes.d +│   │   │   ├── aesni.d +│   │   │   ├── aesni.o +│   │   │   ├── aes.o +│   │   │   ├── analogin_api.d +│   │   │   ├── analogin_api.o +│   │   │   ├── api_lib.d +│   │   │   ├── api_lib.o +│   │   │   ├── api_msg.d +│   │   │   ├── api_msg.o +│   │   │   ├── arc4.d +│   │   │   ├── arc4.o +│   │   │   ├── asn1parse.d +│   │   │   ├── asn1parse.o +│   │   │   ├── asn1write.d +│   │   │   ├── asn1write.o +│   │   │   ├── atcmd_ethernet.d +│   │   │   ├── atcmd_ethernet.o +│   │   │   ├── atcmd_lwip.d +│   │   │   ├── atcmd_lwip.o +│   │   │   ├── atcmd_sys.d +│   │   │   ├── atcmd_sys.o +│   │   │   ├── atcmd_wifi.d +│   │   │   ├── atcmd_wifi.o +│   │   │   ├── autoip.d +│   │   │   ├── autoip.o +│   │   │   ├── base64.d +│   │   │   ├── base64.o +│   │   │   ├── bignum.d +│   │   │   ├── bignum.o +│   │   │   ├── blowfish.d +│   │   │   ├── blowfish.o +│   │   │   ├── camellia.d +│   │   │   ├── camellia.o +│   │   │   ├── ccm.d +│   │   │   ├── ccm.o +│   │   │   ├── ccsbcs.d +│   │   │   ├── ccsbcs.o +│   │   │   ├── certs.d +│   │   │   ├── certs.o +│   │   │   ├── cipher.d +│   │   │   ├── cipher.o +│   │   │   ├── cipher_wrap.d +│   │   │   ├── cipher_wrap.o +│   │   │   ├── cJSON.d +│   │   │   ├── cJSON.o +│   │   │   ├── cloud_link.d +│   │   │   ├── cloud_link.o +│   │   │   ├── cmsis_os.d +│   │   │   ├── cmsis_os.o +│   │   │   ├── croutine.d +│   │   │   ├── croutine.o +│   │   │   ├── ctr_drbg.d +│   │   │   ├── ctr_drbg.o +│   │   │   ├── debug.d +│   │   │   ├── debug.o +│   │   │   ├── def.d +│   │   │   ├── def.o +│   │   │   ├── des.d +│   │   │   ├── des.o +│   │   │   ├── device_lock.d +│   │   │   ├── device_lock.o +│   │   │   ├── dhcp.d +│   │   │   ├── dhcp.o +│   │   │   ├── dhcps.d +│   │   │   ├── dhcps.o +│   │   │   ├── dhm.d +│   │   │   ├── dhm.o +│   │   │   ├── diskio.d +│   │   │   ├── diskio.o +│   │   │   ├── dma_api.d +│   │   │   ├── dma_api.o +│   │   │   ├── dns.d +│   │   │   ├── dns.o +│   │   │   ├── ecdh.d +│   │   │   ├── ecdh.o +│   │   │   ├── ecdsa.d +│   │   │   ├── ecdsa.o +│   │   │   ├── ecp_curves.d +│   │   │   ├── ecp_curves.o +│   │   │   ├── ecp.d +│   │   │   ├── ecp.o +│   │   │   ├── efuse_api.d +│   │   │   ├── efuse_api.o +│   │   │   ├── entropy.d +│   │   │   ├── entropy.o +│   │   │   ├── entropy_poll.d +│   │   │   ├── entropy_poll.o +│   │   │   ├── err.d +│   │   │   ├── err.o +│   │   │   ├── error.d +│   │   │   ├── error.o +│   │   │   ├── etharp.d +│   │   │   ├── etharp.o +│   │   │   ├── ethernet_api.d +│   │   │   ├── ethernet_api.o +│   │   │   ├── ethernetif.d +│   │   │   ├── ethernetif.o +│   │   │   ├── ethernet_mii.d +│   │   │   ├── ethernet_mii.o +│   │   │   ├── event_groups.d +│   │   │   ├── event_groups.o +│   │   │   ├── example_entry.d +│   │   │   ├── example_entry.o +│   │   │   ├── example_uart_atcmd.d +│   │   │   ├── example_uart_atcmd.o +│   │   │   ├── ff.d +│   │   │   ├── ff_driver.d +│   │   │   ├── ff_driver.o +│   │   │   ├── ff.o +│   │   │   ├── flash_api.d +│   │   │   ├── flash_api.o +│   │   │   ├── freertos_pmu.d +│   │   │   ├── freertos_pmu.o +│   │   │   ├── freertos_service.d +│   │   │   ├── freertos_service.o +│   │   │   ├── gcm.d +│   │   │   ├── gcm.o +│   │   │   ├── gpio_api.d +│   │   │   ├── gpio_api.o +│   │   │   ├── gpio_irq_api.d +│   │   │   ├── gpio_irq_api.o +│   │   │   ├── hal_32k.d +│   │   │   ├── hal_32k.o +│   │   │   ├── hal_adc.d +│   │   │   ├── hal_adc.o +│   │   │   ├── hal_gdma.d +│   │   │   ├── hal_gdma.o +│   │   │   ├── hal_gpio.d +│   │   │   ├── hal_gpio.o +│   │   │   ├── hal_i2c.d +│   │   │   ├── hal_i2c.o +│   │   │   ├── hal_i2s.d +│   │   │   ├── hal_i2s.o +│   │   │   ├── hal_mii.d +│   │   │   ├── hal_mii.o +│   │   │   ├── hal_nfc.d +│   │   │   ├── hal_nfc.o +│   │   │   ├── hal_pcm.d +│   │   │   ├── hal_pcm.o +│   │   │   ├── hal_pwm.d +│   │   │   ├── hal_pwm.o +│   │   │   ├── hal_sdr_controller.d +│   │   │   ├── hal_sdr_controller.o +│   │   │   ├── hal_ssi.d +│   │   │   ├── hal_ssi.o +│   │   │   ├── hal_timer.d +│   │   │   ├── hal_timer.o +│   │   │   ├── hal_uart.d +│   │   │   ├── hal_uart.o +│   │   │   ├── havege.d +│   │   │   ├── havege.o +│   │   │   ├── heap_5.d +│   │   │   ├── heap_5.o +│   │   │   ├── hmac_drbg.d +│   │   │   ├── hmac_drbg.o +│   │   │   ├── http_client.d +│   │   │   ├── http_client.o +│   │   │   ├── i2c_api.d +│   │   │   ├── i2c_api.o +│   │   │   ├── i2s_api.d +│   │   │   ├── i2s_api.o +│   │   │   ├── icmp.d +│   │   │   ├── icmp.o +│   │   │   ├── igmp.d +│   │   │   ├── igmp.o +│   │   │   ├── inet_chksum.d +│   │   │   ├── inet_chksum.o +│   │   │   ├── inet.d +│   │   │   ├── inet.o +│   │   │   ├── init.d +│   │   │   ├── init.o +│   │   │   ├── ip_addr.d +│   │   │   ├── ip_addr.o +│   │   │   ├── ip.d +│   │   │   ├── ip_frag.d +│   │   │   ├── ip_frag.o +│   │   │   ├── ip.o +│   │   │   ├── list.d +│   │   │   ├── list.o +│   │   │   ├── log_service.d +│   │   │   ├── log_service.o +│   │   │   ├── log_uart_api.d +│   │   │   ├── log_uart_api.o +│   │   │   ├── low_level_io.d +│   │   │   ├── low_level_io.o +│   │   │   ├── lwip_intf.d +│   │   │   ├── lwip_intf.o +│   │   │   ├── lwip_netconf.d +│   │   │   ├── lwip_netconf.o +│   │   │   ├── lwip_timers.d +│   │   │   ├── lwip_timers.o +│   │   │   ├── mailbox.d +│   │   │   ├── mailbox.o +│   │   │   ├── main.d +│   │   │   ├── main.o +│   │   │   ├── md2.d +│   │   │   ├── md2.o +│   │   │   ├── md4.d +│   │   │   ├── md4.o +│   │   │   ├── md5.d +│   │   │   ├── md5.o +│   │   │   ├── md.d +│   │   │   ├── mDNSPlatform.d +│   │   │   ├── mDNSPlatform.o +│   │   │   ├── md.o +│   │   │   ├── md_wrap.d +│   │   │   ├── md_wrap.o +│   │   │   ├── mem.d +│   │   │   ├── mem.o +│   │   │   ├── memory_buffer_alloc.d +│   │   │   ├── memory_buffer_alloc.o +│   │   │   ├── memp.d +│   │   │   ├── memp.o +│   │   │   ├── netbuf.d +│   │   │   ├── netbuf.o +│   │   │   ├── net.d +│   │   │   ├── netdb.d +│   │   │   ├── netdb.o +│   │   │   ├── netifapi.d +│   │   │   ├── netifapi.o +│   │   │   ├── netif.d +│   │   │   ├── netif.o +│   │   │   ├── net.o +│   │   │   ├── nfc_api.d +│   │   │   ├── nfc_api.o +│   │   │   ├── oid.d +│   │   │   ├── oid.o +│   │   │   ├── osdep_api.d +│   │   │   ├── osdep_api.o +│   │   │   ├── osdep_service.d +│   │   │   ├── osdep_service.o +│   │   │   ├── padlock.d +│   │   │   ├── padlock.o +│   │   │   ├── pbkdf2.d +│   │   │   ├── pbkdf2.o +│   │   │   ├── pbuf.d +│   │   │   ├── pbuf.o +│   │   │   ├── pem.d +│   │   │   ├── pem.o +│   │   │   ├── ping_test.d +│   │   │   ├── ping_test.o +│   │   │   ├── pinmap_common.d +│   │   │   ├── pinmap_common.o +│   │   │   ├── pinmap.d +│   │   │   ├── pinmap.o +│   │   │   ├── pkcs11.d +│   │   │   ├── pkcs11.o +│   │   │   ├── pkcs12.d +│   │   │   ├── pkcs12.o +│   │   │   ├── pkcs5.d +│   │   │   ├── pkcs5.o +│   │   │   ├── pk.d +│   │   │   ├── pk.o +│   │   │   ├── pkparse.d +│   │   │   ├── pkparse.o +│   │   │   ├── pk_wrap.d +│   │   │   ├── pk_wrap.o +│   │   │   ├── pkwrite.d +│   │   │   ├── pkwrite.o +│   │   │   ├── platform.d +│   │   │   ├── platform.o +│   │   │   ├── port_api.d +│   │   │   ├── port_api.o +│   │   │   ├── port.d +│   │   │   ├── port.o +│   │   │   ├── pwmout_api.d +│   │   │   ├── pwmout_api.o +│   │   │   ├── queue.d +│   │   │   ├── queue.o +│   │   │   ├── ram_1.r.bin +│   │   │   ├── ram_1.r.o +│   │   │   ├── raw.d +│   │   │   ├── raw.o +│   │   │   ├── ripemd160.d +│   │   │   ├── ripemd160.o +│   │   │   ├── rom_ssl_ram_map.d +│   │   │   ├── rom_ssl_ram_map.o +│   │   │   ├── rsa.d +│   │   │   ├── rsa.o +│   │   │   ├── rtc_api.d +│   │   │   ├── rtc_api.o +│   │   │   ├── rtl8195a_adc.d +│   │   │   ├── rtl8195a_adc.o +│   │   │   ├── rtl8195a_gdma.d +│   │   │   ├── rtl8195a_gdma.o +│   │   │   ├── rtl8195a_gpio.d +│   │   │   ├── rtl8195a_gpio.o +│   │   │   ├── rtl8195a_i2c.d +│   │   │   ├── rtl8195a_i2c.o +│   │   │   ├── rtl8195a_i2s.d +│   │   │   ├── rtl8195a_i2s.o +│   │   │   ├── rtl8195a_mii.d +│   │   │   ├── rtl8195a_mii.o +│   │   │   ├── rtl8195a_nfc.d +│   │   │   ├── rtl8195a_nfc.o +│   │   │   ├── rtl8195a_pwm.d +│   │   │   ├── rtl8195a_pwm.o +│   │   │   ├── rtl8195a_ssi.d +│   │   │   ├── rtl8195a_ssi.o +│   │   │   ├── rtl8195a_timer.d +│   │   │   ├── rtl8195a_timer.o +│   │   │   ├── rtl8195a_uart.d +│   │   │   ├── rtl8195a_uart.o +│   │   │   ├── rtl_consol.d +│   │   │   ├── rtl_consol.o +│   │   │   ├── sdcard.d +│   │   │   ├── sdcard.o +│   │   │   ├── serial_api.d +│   │   │   ├── serial_api.o +│   │   │   ├── sha1.d +│   │   │   ├── sha1.o +│   │   │   ├── sha256.d +│   │   │   ├── sha256.o +│   │   │   ├── sha512.d +│   │   │   ├── sha512.o +│   │   │   ├── shtc1.d +│   │   │   ├── shtc1.o +│   │   │   ├── sleep.d +│   │   │   ├── sleep.o +│   │   │   ├── sntp.d +│   │   │   ├── sntp.o +│   │   │   ├── sockets.d +│   │   │   ├── sockets.o +│   │   │   ├── spdio_api.d +│   │   │   ├── spdio_api.o +│   │   │   ├── spi_api.d +│   │   │   ├── spi_api.o +│   │   │   ├── ssl_cache.d +│   │   │   ├── ssl_cache.o +│   │   │   ├── ssl_ciphersuites.d +│   │   │   ├── ssl_ciphersuites.o +│   │   │   ├── ssl_cli.d +│   │   │   ├── ssl_client.d +│   │   │   ├── ssl_client_ext.d +│   │   │   ├── ssl_client_ext.o +│   │   │   ├── ssl_client.o +│   │   │   ├── ssl_cli.o +│   │   │   ├── ssl_ram_map.d +│   │   │   ├── ssl_ram_map.o +│   │   │   ├── ssl_srv.d +│   │   │   ├── ssl_srv.o +│   │   │   ├── ssl_tls.d +│   │   │   ├── ssl_tls.o +│   │   │   ├── stats.d +│   │   │   ├── stats.o +│   │   │   ├── stdlib_patch.d +│   │   │   ├── stdlib_patch.o +│   │   │   ├── sys_api.d +│   │   │   ├── sys_api.o +│   │   │   ├── sys_arch.d +│   │   │   ├── sys_arch.o +│   │   │   ├── sys.d +│   │   │   ├── sys.o +│   │   │   ├── system_8195a.d +│   │   │   ├── system_8195a.o +│   │   │   ├── tasks.d +│   │   │   ├── tasks.o +│   │   │   ├── tcm_heap.d +│   │   │   ├── tcm_heap.o +│   │   │   ├── tcp.d +│   │   │   ├── tcp_in.d +│   │   │   ├── tcp_in.o +│   │   │   ├── tcpip.d +│   │   │   ├── tcpip.o +│   │   │   ├── tcp.o +│   │   │   ├── tcp_out.d +│   │   │   ├── tcp_out.o +│   │   │   ├── tcptest.d +│   │   │   ├── tcptest.o +│   │   │   ├── threading.d +│   │   │   ├── threading.o +│   │   │   ├── timer_api.d +│   │   │   ├── timer_api.o +│   │   │   ├── timers.d +│   │   │   ├── timers.o +│   │   │   ├── timing.d +│   │   │   ├── timing.o +│   │   │   ├── uart_adapter.d +│   │   │   ├── uart_adapter.o +│   │   │   ├── uart_fw_update.d +│   │   │   ├── uart_fw_update.o +│   │   │   ├── uart_socket.d +│   │   │   ├── uart_socket.o +│   │   │   ├── uart_ymodem.d +│   │   │   ├── uart_ymodem.o +│   │   │   ├── udp.d +│   │   │   ├── udp.o +│   │   │   ├── update.d +│   │   │   ├── update.o +│   │   │   ├── us_ticker_api.d +│   │   │   ├── us_ticker_api.o +│   │   │   ├── us_ticker.d +│   │   │   ├── us_ticker.o +│   │   │   ├── version.d +│   │   │   ├── version_features.d +│   │   │   ├── version_features.o +│   │   │   ├── version.o +│   │   │   ├── wait_api.d +│   │   │   ├── wait_api.o +│   │   │   ├── wdt_api.d +│   │   │   ├── wdt_api.o +│   │   │   ├── webserver.d +│   │   │   ├── webserver.o +│   │   │   ├── wifi_conf.d +│   │   │   ├── wifi_conf.o +│   │   │   ├── wifi_eap_config.d +│   │   │   ├── wifi_eap_config.o +│   │   │   ├── wifi_ind.d +│   │   │   ├── wifi_ind.o +│   │   │   ├── wifi_p2p_config.d +│   │   │   ├── wifi_p2p_config.o +│   │   │   ├── wifi_promisc.d +│   │   │   ├── wifi_promisc.o +│   │   │   ├── wifi_simple_config.d +│   │   │   ├── wifi_simple_config.o +│   │   │   ├── wifi_util.d +│   │   │   ├── wifi_util.o +│   │   │   ├── wifi_wps_config.d +│   │   │   ├── wifi_wps_config.o +│   │   │   ├── wigadget.d +│   │   │   ├── wigadget.o +│   │   │   ├── wlan_network.d +│   │   │   ├── wlan_network.o +│   │   │   ├── x509_create.d +│   │   │   ├── x509_create.o +│   │   │   ├── x509_crl.d +│   │   │   ├── x509_crl.o +│   │   │   ├── x509_crt.d +│   │   │   ├── x509_crt.o +│   │   │   ├── x509_csr.d +│   │   │   ├── x509_csr.o +│   │   │   ├── x509.d +│   │   │   ├── x509.o +│   │   │   ├── x509write_crt.d +│   │   │   ├── x509write_crt.o +│   │   │   ├── x509write_csr.d +│   │   │   ├── x509write_csr.o +│   │   │   ├── xml.d +│   │   │   ├── xml.o +│   │   │   ├── xtea.d +│   │   │   └── xtea.o +│   │   ├── application.mk +│   │   ├── export-rom_v02.txt +│   │   ├── fwsize.gdb +│   │   ├── Makefile +│   │   ├── rlx8195A-symbol-v02-img2.ld +│   │   ├── run_openocd.bat +│   │   └── run_openocd.sh +│   ├── inc +│   │   ├── build_info.h +│   │   ├── FreeRTOSConfig.h +│   │   ├── main.h +│   │   ├── platform_autoconf.h +│   │   └── platform_opts.h +│   └── src +│   ├── main.c +│   └── main.o +├── release_note.txt +└── tools + ├── arm-none-eabi-gcc + │   ├── 4.8.3-2014q1 + │   │   ├── arm-none-eabi + │   │   │   ├── bin + │   │   │   │   ├── ar + │   │   │   │   ├── as + │   │   │   │   ├── c++ + │   │   │   │   ├── g++ + │   │   │   │   ├── gcc + │   │   │   │   ├── ld + │   │   │   │   ├── ld.bfd + │   │   │   │   ├── nm + │   │   │   │   ├── objcopy + │   │   │   │   ├── objdump + │   │   │   │   ├── ranlib + │   │   │   │   └── strip + │   │   │   ├── include + │   │   │   │   ├── alloca.h + │   │   │   │   ├── _ansi.h + │   │   │   │   ├── argz.h + │   │   │   │   ├── ar.h + │   │   │   │   ├── assert.h + │   │   │   │   ├── bits + │   │   │   │   ├── c++ + │   │   │   │   │   └── 4.8.3 + │   │   │   │   │   ├── algorithm + │   │   │   │   │   ├── arm-none-eabi + │   │   │   │   │   │   ├── armv6-m + │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   └── ext + │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   ├── armv7-ar + │   │   │   │   │   │   │   └── thumb + │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   ├── ext + │   │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   │   ├── fpu + │   │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   │   └── ext + │   │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   │   └── softfp + │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   └── ext + │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   ├── armv7e-m + │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   ├── ext + │   │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   │   ├── fpu + │   │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   │   └── ext + │   │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   │   └── softfp + │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   └── ext + │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   ├── armv7-m + │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   └── ext + │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   ├── ext + │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   ├── fpu + │   │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   │   └── ext + │   │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   │   └── thumb + │   │   │   │   │   │   ├── bits + │   │   │   │   │   │   │   ├── atomic_word.h + │   │   │   │   │   │   │   ├── basic_file.h + │   │   │   │   │   │   │   ├── c++allocator.h + │   │   │   │   │   │   │   ├── c++config.h + │   │   │   │   │   │   │   ├── c++io.h + │   │   │   │   │   │   │   ├── c++locale.h + │   │   │   │   │   │   │   ├── cpu_defines.h + │   │   │   │   │   │   │   ├── ctype_base.h + │   │   │   │   │   │   │   ├── ctype_inline.h + │   │   │   │   │   │   │   ├── cxxabi_tweaks.h + │   │   │   │   │   │   │   ├── error_constants.h + │   │   │   │   │   │   │   ├── extc++.h + │   │   │   │   │   │   │   ├── gthr-default.h + │   │   │   │   │   │   │   ├── gthr.h + │   │   │   │   │   │   │   ├── gthr-posix.h + │   │   │   │   │   │   │   ├── gthr-single.h + │   │   │   │   │   │   │   ├── messages_members.h + │   │   │   │   │   │   │   ├── opt_random.h + │   │   │   │   │   │   │   ├── os_defines.h + │   │   │   │   │   │   │   ├── stdc++.h + │   │   │   │   │   │   │   ├── stdtr1c++.h + │   │   │   │   │   │   │   └── time_members.h + │   │   │   │   │   │   └── ext + │   │   │   │   │   │   └── opt_random.h + │   │   │   │   │   ├── array + │   │   │   │   │   ├── atomic + │   │   │   │   │   ├── backward + │   │   │   │   │   │   ├── auto_ptr.h + │   │   │   │   │   │   ├── backward_warning.h + │   │   │   │   │   │   ├── binders.h + │   │   │   │   │   │   ├── hash_fun.h + │   │   │   │   │   │   ├── hash_map + │   │   │   │   │   │   ├── hash_set + │   │   │   │   │   │   ├── hashtable.h + │   │   │   │   │   │   └── strstream + │   │   │   │   │   ├── bits + │   │   │   │   │   │   ├── algorithmfwd.h + │   │   │   │   │   │   ├── allocator.h + │   │   │   │   │   │   ├── alloc_traits.h + │   │   │   │   │   │   ├── atomic_base.h + │   │   │   │   │   │   ├── atomic_lockfree_defines.h + │   │   │   │   │   │   ├── basic_ios.h + │   │   │   │   │   │   ├── basic_ios.tcc + │   │   │   │   │   │   ├── basic_string.h + │   │   │   │   │   │   ├── basic_string.tcc + │   │   │   │   │   │   ├── boost_concept_check.h + │   │   │   │   │   │   ├── c++0x_warning.h + │   │   │   │   │   │   ├── char_traits.h + │   │   │   │   │   │   ├── codecvt.h + │   │   │   │   │   │   ├── concept_check.h + │   │   │   │   │   │   ├── cpp_type_traits.h + │   │   │   │   │   │   ├── cxxabi_forced.h + │   │   │   │   │   │   ├── deque.tcc + │   │   │   │   │   │   ├── exception_defines.h + │   │   │   │   │   │   ├── exception_ptr.h + │   │   │   │   │   │   ├── forward_list.h + │   │   │   │   │   │   ├── forward_list.tcc + │   │   │   │   │   │   ├── fstream.tcc + │   │   │   │   │   │   ├── functexcept.h + │   │   │   │   │   │   ├── functional_hash.h + │   │   │   │   │   │   ├── gslice_array.h + │   │   │   │   │   │   ├── gslice.h + │   │   │   │   │   │   ├── hash_bytes.h + │   │   │   │   │   │   ├── hashtable.h + │   │   │   │   │   │   ├── hashtable_policy.h + │   │   │   │   │   │   ├── indirect_array.h + │   │   │   │   │   │   ├── ios_base.h + │   │   │   │   │   │   ├── istream.tcc + │   │   │   │   │   │   ├── list.tcc + │   │   │   │   │   │   ├── locale_classes.h + │   │   │   │   │   │   ├── locale_classes.tcc + │   │   │   │   │   │   ├── locale_facets.h + │   │   │   │   │   │   ├── locale_facets_nonio.h + │   │   │   │   │   │   ├── locale_facets_nonio.tcc + │   │   │   │   │   │   ├── locale_facets.tcc + │   │   │   │   │   │   ├── localefwd.h + │   │   │   │   │   │   ├── mask_array.h + │   │   │   │   │   │   ├── memoryfwd.h + │   │   │   │   │   │   ├── move.h + │   │   │   │   │   │   ├── nested_exception.h + │   │   │   │   │   │   ├── ostream_insert.h + │   │   │   │   │   │   ├── ostream.tcc + │   │   │   │   │   │   ├── postypes.h + │   │   │   │   │   │   ├── ptr_traits.h + │   │   │   │   │   │   ├── random.h + │   │   │   │   │   │   ├── random.tcc + │   │   │   │   │   │   ├── range_access.h + │   │   │   │   │   │   ├── regex_compiler.h + │   │   │   │   │   │   ├── regex_constants.h + │   │   │   │   │   │   ├── regex_cursor.h + │   │   │   │   │   │   ├── regex_error.h + │   │   │   │   │   │   ├── regex_grep_matcher.h + │   │   │   │   │   │   ├── regex_grep_matcher.tcc + │   │   │   │   │   │   ├── regex.h + │   │   │   │   │   │   ├── regex_nfa.h + │   │   │   │   │   │   ├── regex_nfa.tcc + │   │   │   │   │   │   ├── shared_ptr_base.h + │   │   │   │   │   │   ├── shared_ptr.h + │   │   │   │   │   │   ├── slice_array.h + │   │   │   │   │   │   ├── sstream.tcc + │   │   │   │   │   │   ├── stl_algobase.h + │   │   │   │   │   │   ├── stl_algo.h + │   │   │   │   │   │   ├── stl_bvector.h + │   │   │   │   │   │   ├── stl_construct.h + │   │   │   │   │   │   ├── stl_deque.h + │   │   │   │   │   │   ├── stl_function.h + │   │   │   │   │   │   ├── stl_heap.h + │   │   │   │   │   │   ├── stl_iterator_base_funcs.h + │   │   │   │   │   │   ├── stl_iterator_base_types.h + │   │   │   │   │   │   ├── stl_iterator.h + │   │   │   │   │   │   ├── stl_list.h + │   │   │   │   │   │   ├── stl_map.h + │   │   │   │   │   │   ├── stl_multimap.h + │   │   │   │   │   │   ├── stl_multiset.h + │   │   │   │   │   │   ├── stl_numeric.h + │   │   │   │   │   │   ├── stl_pair.h + │   │   │   │   │   │   ├── stl_queue.h + │   │   │   │   │   │   ├── stl_raw_storage_iter.h + │   │   │   │   │   │   ├── stl_relops.h + │   │   │   │   │   │   ├── stl_set.h + │   │   │   │   │   │   ├── stl_stack.h + │   │   │   │   │   │   ├── stl_tempbuf.h + │   │   │   │   │   │   ├── stl_tree.h + │   │   │   │   │   │   ├── stl_uninitialized.h + │   │   │   │   │   │   ├── stl_vector.h + │   │   │   │   │   │   ├── streambuf_iterator.h + │   │   │   │   │   │   ├── streambuf.tcc + │   │   │   │   │   │   ├── stream_iterator.h + │   │   │   │   │   │   ├── stringfwd.h + │   │   │   │   │   │   ├── unique_ptr.h + │   │   │   │   │   │   ├── unordered_map.h + │   │   │   │   │   │   ├── unordered_set.h + │   │   │   │   │   │   ├── uses_allocator.h + │   │   │   │   │   │   ├── valarray_after.h + │   │   │   │   │   │   ├── valarray_array.h + │   │   │   │   │   │   ├── valarray_array.tcc + │   │   │   │   │   │   ├── valarray_before.h + │   │   │   │   │   │   └── vector.tcc + │   │   │   │   │   ├── bitset + │   │   │   │   │   ├── cassert + │   │   │   │   │   ├── ccomplex + │   │   │   │   │   ├── cctype + │   │   │   │   │   ├── cerrno + │   │   │   │   │   ├── cfenv + │   │   │   │   │   ├── cfloat + │   │   │   │   │   ├── chrono + │   │   │   │   │   ├── cinttypes + │   │   │   │   │   ├── ciso646 + │   │   │   │   │   ├── climits + │   │   │   │   │   ├── clocale + │   │   │   │   │   ├── cmath + │   │   │   │   │   ├── complex + │   │   │   │   │   ├── complex.h + │   │   │   │   │   ├── condition_variable + │   │   │   │   │   ├── csetjmp + │   │   │   │   │   ├── csignal + │   │   │   │   │   ├── cstdalign + │   │   │   │   │   ├── cstdarg + │   │   │   │   │   ├── cstdbool + │   │   │   │   │   ├── cstddef + │   │   │   │   │   ├── cstdint + │   │   │   │   │   ├── cstdio + │   │   │   │   │   ├── cstdlib + │   │   │   │   │   ├── cstring + │   │   │   │   │   ├── ctgmath + │   │   │   │   │   ├── ctime + │   │   │   │   │   ├── cwchar + │   │   │   │   │   ├── cwctype + │   │   │   │   │   ├── cxxabi.h + │   │   │   │   │   ├── debug + │   │   │   │   │   │   ├── array + │   │   │   │   │   │   ├── bitset + │   │   │   │   │   │   ├── debug.h + │   │   │   │   │   │   ├── deque + │   │   │   │   │   │   ├── formatter.h + │   │   │   │   │   │   ├── forward_list + │   │   │   │   │   │   ├── functions.h + │   │   │   │   │   │   ├── list + │   │   │   │   │   │   ├── macros.h + │   │   │   │   │   │   ├── map + │   │   │   │   │   │   ├── map.h + │   │   │   │   │   │   ├── multimap.h + │   │   │   │   │   │   ├── multiset.h + │   │   │   │   │   │   ├── safe_base.h + │   │   │   │   │   │   ├── safe_iterator.h + │   │   │   │   │   │   ├── safe_iterator.tcc + │   │   │   │   │   │   ├── safe_local_iterator.h + │   │   │   │   │   │   ├── safe_local_iterator.tcc + │   │   │   │   │   │   ├── safe_sequence.h + │   │   │   │   │   │   ├── safe_sequence.tcc + │   │   │   │   │   │   ├── safe_unordered_base.h + │   │   │   │   │   │   ├── safe_unordered_container.h + │   │   │   │   │   │   ├── safe_unordered_container.tcc + │   │   │   │   │   │   ├── set + │   │   │   │   │   │   ├── set.h + │   │   │   │   │   │   ├── string + │   │   │   │   │   │   ├── unordered_map + │   │   │   │   │   │   ├── unordered_set + │   │   │   │   │   │   └── vector + │   │   │   │   │   ├── decimal + │   │   │   │   │   │   ├── decimal + │   │   │   │   │   │   └── decimal.h + │   │   │   │   │   ├── deque + │   │   │   │   │   ├── exception + │   │   │   │   │   ├── ext + │   │   │   │   │   │   ├── algorithm + │   │   │   │   │   │   ├── alloc_traits.h + │   │   │   │   │   │   ├── array_allocator.h + │   │   │   │   │   │   ├── atomicity.h + │   │   │   │   │   │   ├── bitmap_allocator.h + │   │   │   │   │   │   ├── cast.h + │   │   │   │   │   │   ├── cmath + │   │   │   │   │   │   ├── codecvt_specializations.h + │   │   │   │   │   │   ├── concurrence.h + │   │   │   │   │   │   ├── debug_allocator.h + │   │   │   │   │   │   ├── enc_filebuf.h + │   │   │   │   │   │   ├── extptr_allocator.h + │   │   │   │   │   │   ├── functional + │   │   │   │   │   │   ├── hash_map + │   │   │   │   │   │   ├── hash_set + │   │   │   │   │   │   ├── iterator + │   │   │   │   │   │   ├── malloc_allocator.h + │   │   │   │   │   │   ├── memory + │   │   │   │   │   │   ├── mt_allocator.h + │   │   │   │   │   │   ├── new_allocator.h + │   │   │   │   │   │   ├── numeric + │   │   │   │   │   │   ├── numeric_traits.h + │   │   │   │   │   │   ├── pb_ds + │   │   │   │   │   │   │   ├── assoc_container.hpp + │   │   │   │   │   │   │   ├── detail + │   │   │   │   │   │   │   │   ├── binary_heap_ + │   │   │   │   │   │   │   │   │   ├── binary_heap_.hpp + │   │   │   │   │   │   │   │   │   ├── const_iterator.hpp + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── entry_cmp.hpp + │   │   │   │   │   │   │   │   │   ├── entry_pred.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── iterators_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── point_const_iterator.hpp + │   │   │   │   │   │   │   │   │   ├── policy_access_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── resize_policy.hpp + │   │   │   │   │   │   │   │   │   ├── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── trace_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── binomial_heap_ + │   │   │   │   │   │   │   │   │   ├── binomial_heap_.hpp + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── binomial_heap_base_ + │   │   │   │   │   │   │   │   │   ├── binomial_heap_base_.hpp + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── bin_search_tree_ + │   │   │   │   │   │   │   │   │   ├── bin_search_tree_.hpp + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── iterators_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── node_iterators.hpp + │   │   │   │   │   │   │   │   │   ├── point_iterators.hpp + │   │   │   │   │   │   │   │   │   ├── policy_access_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── r_erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── rotate_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── traits.hpp + │   │   │   │   │   │   │   │   ├── branch_policy + │   │   │   │   │   │   │   │   │   ├── branch_policy.hpp + │   │   │   │   │   │   │   │   │   ├── null_node_metadata.hpp + │   │   │   │   │   │   │   │   │   └── traits.hpp + │   │   │   │   │   │   │   │   ├── cc_hash_table_map_ + │   │   │   │   │   │   │   │   │   ├── cc_ht_map_.hpp + │   │   │   │   │   │   │   │   │   ├── cmp_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── cond_key_dtor_entry_dealtor.hpp + │   │   │   │   │   │   │   │   │   ├── constructor_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── constructor_destructor_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── constructor_destructor_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── entry_list_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── iterators_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── policy_access_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── resize_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── resize_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── resize_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── size_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── trace_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── cond_dealtor.hpp + │   │   │   │   │   │   │   │   ├── container_base_dispatch.hpp + │   │   │   │   │   │   │   │   ├── debug_map_base.hpp + │   │   │   │   │   │   │   │   ├── eq_fn + │   │   │   │   │   │   │   │   │   ├── eq_by_less.hpp + │   │   │   │   │   │   │   │   │   └── hash_eq_fn.hpp + │   │   │   │   │   │   │   │   ├── gp_hash_table_map_ + │   │   │   │   │   │   │   │   │   ├── constructor_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── constructor_destructor_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── constructor_destructor_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── gp_ht_map_.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── iterator_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── policy_access_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── resize_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── resize_no_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── resize_store_hash_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── trace_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── hash_fn + │   │   │   │   │   │   │   │   │   ├── direct_mask_range_hashing_imp.hpp + │   │   │   │   │   │   │   │   │   ├── direct_mod_range_hashing_imp.hpp + │   │   │   │   │   │   │   │   │   ├── linear_probe_fn_imp.hpp + │   │   │   │   │   │   │   │   │   ├── mask_based_range_hashing.hpp + │   │   │   │   │   │   │   │   │   ├── mod_based_range_hashing.hpp + │   │   │   │   │   │   │   │   │   ├── probe_fn_base.hpp + │   │   │   │   │   │   │   │   │   ├── quadratic_probe_fn_imp.hpp + │   │   │   │   │   │   │   │   │   ├── ranged_hash_fn.hpp + │   │   │   │   │   │   │   │   │   ├── ranged_probe_fn.hpp + │   │   │   │   │   │   │   │   │   ├── sample_probe_fn.hpp + │   │   │   │   │   │   │   │   │   ├── sample_ranged_hash_fn.hpp + │   │   │   │   │   │   │   │   │   ├── sample_ranged_probe_fn.hpp + │   │   │   │   │   │   │   │   │   └── sample_range_hashing.hpp + │   │   │   │   │   │   │   │   ├── left_child_next_sibling_heap_ + │   │   │   │   │   │   │   │   │   ├── const_iterator.hpp + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── iterators_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── left_child_next_sibling_heap_.hpp + │   │   │   │   │   │   │   │   │   ├── node.hpp + │   │   │   │   │   │   │   │   │   ├── point_const_iterator.hpp + │   │   │   │   │   │   │   │   │   ├── policy_access_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── trace_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── list_update_map_ + │   │   │   │   │   │   │   │   │   ├── constructor_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── entry_metadata_base.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── iterators_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── lu_map_.hpp + │   │   │   │   │   │   │   │   │   └── trace_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── list_update_policy + │   │   │   │   │   │   │   │   │   ├── lu_counter_metadata.hpp + │   │   │   │   │   │   │   │   │   └── sample_update_policy.hpp + │   │   │   │   │   │   │   │   ├── ov_tree_map_ + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── iterators_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── node_iterators.hpp + │   │   │   │   │   │   │   │   │   ├── ov_tree_map_.hpp + │   │   │   │   │   │   │   │   │   ├── policy_access_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── traits.hpp + │   │   │   │   │   │   │   │   ├── pairing_heap_ + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── pairing_heap_.hpp + │   │   │   │   │   │   │   │   │   └── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── pat_trie_ + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_join_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── iterators_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── pat_trie_base.hpp + │   │   │   │   │   │   │   │   │   ├── pat_trie_.hpp + │   │   │   │   │   │   │   │   │   ├── policy_access_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── r_erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── rotate_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── split_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── synth_access_traits.hpp + │   │   │   │   │   │   │   │   │   ├── trace_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── traits.hpp + │   │   │   │   │   │   │   │   │   └── update_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── priority_queue_base_dispatch.hpp + │   │   │   │   │   │   │   │   ├── rb_tree_map_ + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── node.hpp + │   │   │   │   │   │   │   │   │   ├── rb_tree_.hpp + │   │   │   │   │   │   │   │   │   ├── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── traits.hpp + │   │   │   │   │   │   │   │   ├── rc_binomial_heap_ + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── rc_binomial_heap_.hpp + │   │   │   │   │   │   │   │   │   ├── rc.hpp + │   │   │   │   │   │   │   │   │   ├── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── trace_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── resize_policy + │   │   │   │   │   │   │   │   │   ├── cc_hash_max_collision_check_resize_trigger_imp.hpp + │   │   │   │   │   │   │   │   │   ├── hash_exponential_size_policy_imp.hpp + │   │   │   │   │   │   │   │   │   ├── hash_load_check_resize_trigger_imp.hpp + │   │   │   │   │   │   │   │   │   ├── hash_load_check_resize_trigger_size_base.hpp + │   │   │   │   │   │   │   │   │   ├── hash_prime_size_policy_imp.hpp + │   │   │   │   │   │   │   │   │   ├── hash_standard_resize_policy_imp.hpp + │   │   │   │   │   │   │   │   │   ├── sample_resize_policy.hpp + │   │   │   │   │   │   │   │   │   ├── sample_resize_trigger.hpp + │   │   │   │   │   │   │   │   │   └── sample_size_policy.hpp + │   │   │   │   │   │   │   │   ├── splay_tree_ + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── info_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── node.hpp + │   │   │   │   │   │   │   │   │   ├── splay_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── splay_tree_.hpp + │   │   │   │   │   │   │   │   │   ├── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   │   └── traits.hpp + │   │   │   │   │   │   │   │   ├── standard_policies.hpp + │   │   │   │   │   │   │   │   ├── thin_heap_ + │   │   │   │   │   │   │   │   │   ├── constructors_destructor_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── debug_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── erase_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── find_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── insert_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── split_join_fn_imps.hpp + │   │   │   │   │   │   │   │   │   ├── thin_heap_.hpp + │   │   │   │   │   │   │   │   │   └── trace_fn_imps.hpp + │   │   │   │   │   │   │   │   ├── tree_policy + │   │   │   │   │   │   │   │   │   ├── node_metadata_selector.hpp + │   │   │   │   │   │   │   │   │   ├── order_statistics_imp.hpp + │   │   │   │   │   │   │   │   │   └── sample_tree_node_update.hpp + │   │   │   │   │   │   │   │   ├── tree_trace_base.hpp + │   │   │   │   │   │   │   │   ├── trie_policy + │   │   │   │   │   │   │   │   │   ├── node_metadata_selector.hpp + │   │   │   │   │   │   │   │   │   ├── order_statistics_imp.hpp + │   │   │   │   │   │   │   │   │   ├── prefix_search_node_update_imp.hpp + │   │   │   │   │   │   │   │   │   ├── sample_trie_access_traits.hpp + │   │   │   │   │   │   │   │   │   ├── sample_trie_node_update.hpp + │   │   │   │   │   │   │   │   │   ├── trie_policy_base.hpp + │   │   │   │   │   │   │   │   │   └── trie_string_access_traits_imp.hpp + │   │   │   │   │   │   │   │   ├── types_traits.hpp + │   │   │   │   │   │   │   │   ├── type_utils.hpp + │   │   │   │   │   │   │   │   └── unordered_iterator + │   │   │   │   │   │   │   │   ├── const_iterator.hpp + │   │   │   │   │   │   │   │   ├── iterator.hpp + │   │   │   │   │   │   │   │   ├── point_const_iterator.hpp + │   │   │   │   │   │   │   │   └── point_iterator.hpp + │   │   │   │   │   │   │   ├── exception.hpp + │   │   │   │   │   │   │   ├── hash_policy.hpp + │   │   │   │   │   │   │   ├── list_update_policy.hpp + │   │   │   │   │   │   │   ├── priority_queue.hpp + │   │   │   │   │   │   │   ├── tag_and_trait.hpp + │   │   │   │   │   │   │   ├── tree_policy.hpp + │   │   │   │   │   │   │   └── trie_policy.hpp + │   │   │   │   │   │   ├── pod_char_traits.h + │   │   │   │   │   │   ├── pointer.h + │   │   │   │   │   │   ├── pool_allocator.h + │   │   │   │   │   │   ├── random + │   │   │   │   │   │   ├── random.tcc + │   │   │   │   │   │   ├── rb_tree + │   │   │   │   │   │   ├── rc_string_base.h + │   │   │   │   │   │   ├── rope + │   │   │   │   │   │   ├── ropeimpl.h + │   │   │   │   │   │   ├── slist + │   │   │   │   │   │   ├── sso_string_base.h + │   │   │   │   │   │   ├── stdio_filebuf.h + │   │   │   │   │   │   ├── stdio_sync_filebuf.h + │   │   │   │   │   │   ├── string_conversions.h + │   │   │   │   │   │   ├── throw_allocator.h + │   │   │   │   │   │   ├── typelist.h + │   │   │   │   │   │   ├── type_traits.h + │   │   │   │   │   │   ├── vstring_fwd.h + │   │   │   │   │   │   ├── vstring.h + │   │   │   │   │   │   ├── vstring.tcc + │   │   │   │   │   │   └── vstring_util.h + │   │   │   │   │   ├── fenv.h + │   │   │   │   │   ├── forward_list + │   │   │   │   │   ├── fstream + │   │   │   │   │   ├── functional + │   │   │   │   │   ├── future + │   │   │   │   │   ├── initializer_list + │   │   │   │   │   ├── iomanip + │   │   │   │   │   ├── ios + │   │   │   │   │   ├── iosfwd + │   │   │   │   │   ├── iostream + │   │   │   │   │   ├── istream + │   │   │   │   │   ├── iterator + │   │   │   │   │   ├── limits + │   │   │   │   │   ├── list + │   │   │   │   │   ├── locale + │   │   │   │   │   ├── map + │   │   │   │   │   ├── memory + │   │   │   │   │   ├── mutex + │   │   │   │   │   ├── new + │   │   │   │   │   ├── numeric + │   │   │   │   │   ├── ostream + │   │   │   │   │   ├── parallel + │   │   │   │   │   │   ├── algobase.h + │   │   │   │   │   │   ├── algo.h + │   │   │   │   │   │   ├── algorithm + │   │   │   │   │   │   ├── algorithmfwd.h + │   │   │   │   │   │   ├── balanced_quicksort.h + │   │   │   │   │   │   ├── base.h + │   │   │   │   │   │   ├── basic_iterator.h + │   │   │   │   │   │   ├── checkers.h + │   │   │   │   │   │   ├── compatibility.h + │   │   │   │   │   │   ├── compiletime_settings.h + │   │   │   │   │   │   ├── equally_split.h + │   │   │   │   │   │   ├── features.h + │   │   │   │   │   │   ├── find.h + │   │   │   │   │   │   ├── find_selectors.h + │   │   │   │   │   │   ├── for_each.h + │   │   │   │   │   │   ├── for_each_selectors.h + │   │   │   │   │   │   ├── iterator.h + │   │   │   │   │   │   ├── list_partition.h + │   │   │   │   │   │   ├── losertree.h + │   │   │   │   │   │   ├── merge.h + │   │   │   │   │   │   ├── multiseq_selection.h + │   │   │   │   │   │   ├── multiway_merge.h + │   │   │   │   │   │   ├── multiway_mergesort.h + │   │   │   │   │   │   ├── numeric + │   │   │   │   │   │   ├── numericfwd.h + │   │   │   │   │   │   ├── omp_loop.h + │   │   │   │   │   │   ├── omp_loop_static.h + │   │   │   │   │   │   ├── parallel.h + │   │   │   │   │   │   ├── par_loop.h + │   │   │   │   │   │   ├── partial_sum.h + │   │   │   │   │   │   ├── partition.h + │   │   │   │   │   │   ├── queue.h + │   │   │   │   │   │   ├── quicksort.h + │   │   │   │   │   │   ├── random_number.h + │   │   │   │   │   │   ├── random_shuffle.h + │   │   │   │   │   │   ├── search.h + │   │   │   │   │   │   ├── set_operations.h + │   │   │   │   │   │   ├── settings.h + │   │   │   │   │   │   ├── sort.h + │   │   │   │   │   │   ├── tags.h + │   │   │   │   │   │   ├── types.h + │   │   │   │   │   │   ├── unique_copy.h + │   │   │   │   │   │   └── workstealing.h + │   │   │   │   │   ├── profile + │   │   │   │   │   │   ├── array + │   │   │   │   │   │   ├── base.h + │   │   │   │   │   │   ├── bitset + │   │   │   │   │   │   ├── deque + │   │   │   │   │   │   ├── forward_list + │   │   │   │   │   │   ├── impl + │   │   │   │   │   │   │   ├── profiler_algos.h + │   │   │   │   │   │   │   ├── profiler_container_size.h + │   │   │   │   │   │   │   ├── profiler.h + │   │   │   │   │   │   │   ├── profiler_hash_func.h + │   │   │   │   │   │   │   ├── profiler_hashtable_size.h + │   │   │   │   │   │   │   ├── profiler_list_to_slist.h + │   │   │   │   │   │   │   ├── profiler_list_to_vector.h + │   │   │   │   │   │   │   ├── profiler_map_to_unordered_map.h + │   │   │   │   │   │   │   ├── profiler_node.h + │   │   │   │   │   │   │   ├── profiler_state.h + │   │   │   │   │   │   │   ├── profiler_trace.h + │   │   │   │   │   │   │   ├── profiler_vector_size.h + │   │   │   │   │   │   │   └── profiler_vector_to_list.h + │   │   │   │   │   │   ├── iterator_tracker.h + │   │   │   │   │   │   ├── list + │   │   │   │   │   │   ├── map + │   │   │   │   │   │   ├── map.h + │   │   │   │   │   │   ├── multimap.h + │   │   │   │   │   │   ├── multiset.h + │   │   │   │   │   │   ├── set + │   │   │   │   │   │   ├── set.h + │   │   │   │   │   │   ├── unordered_base.h + │   │   │   │   │   │   ├── unordered_map + │   │   │   │   │   │   ├── unordered_set + │   │   │   │   │   │   └── vector + │   │   │   │   │   ├── queue + │   │   │   │   │   ├── random + │   │   │   │   │   ├── ratio + │   │   │   │   │   ├── regex + │   │   │   │   │   ├── scoped_allocator + │   │   │   │   │   ├── set + │   │   │   │   │   ├── sstream + │   │   │   │   │   ├── stack + │   │   │   │   │   ├── stdexcept + │   │   │   │   │   ├── streambuf + │   │   │   │   │   ├── string + │   │   │   │   │   ├── system_error + │   │   │   │   │   ├── tgmath.h + │   │   │   │   │   ├── thread + │   │   │   │   │   ├── tr1 + │   │   │   │   │   │   ├── array + │   │   │   │   │   │   ├── bessel_function.tcc + │   │   │   │   │   │   ├── beta_function.tcc + │   │   │   │   │   │   ├── ccomplex + │   │   │   │   │   │   ├── cctype + │   │   │   │   │   │   ├── cfenv + │   │   │   │   │   │   ├── cfloat + │   │   │   │   │   │   ├── cinttypes + │   │   │   │   │   │   ├── climits + │   │   │   │   │   │   ├── cmath + │   │   │   │   │   │   ├── complex + │   │   │   │   │   │   ├── complex.h + │   │   │   │   │   │   ├── cstdarg + │   │   │   │   │   │   ├── cstdbool + │   │   │   │   │   │   ├── cstdint + │   │   │   │   │   │   ├── cstdio + │   │   │   │   │   │   ├── cstdlib + │   │   │   │   │   │   ├── ctgmath + │   │   │   │   │   │   ├── ctime + │   │   │   │   │   │   ├── ctype.h + │   │   │   │   │   │   ├── cwchar + │   │   │   │   │   │   ├── cwctype + │   │   │   │   │   │   ├── ell_integral.tcc + │   │   │   │   │   │   ├── exp_integral.tcc + │   │   │   │   │   │   ├── fenv.h + │   │   │   │   │   │   ├── float.h + │   │   │   │   │   │   ├── functional + │   │   │   │   │   │   ├── functional_hash.h + │   │   │   │   │   │   ├── gamma.tcc + │   │   │   │   │   │   ├── hashtable.h + │   │   │   │   │   │   ├── hashtable_policy.h + │   │   │   │   │   │   ├── hypergeometric.tcc + │   │   │   │   │   │   ├── inttypes.h + │   │   │   │   │   │   ├── legendre_function.tcc + │   │   │   │   │   │   ├── limits.h + │   │   │   │   │   │   ├── math.h + │   │   │   │   │   │   ├── memory + │   │   │   │   │   │   ├── modified_bessel_func.tcc + │   │   │   │   │   │   ├── poly_hermite.tcc + │   │   │   │   │   │   ├── poly_laguerre.tcc + │   │   │   │   │   │   ├── random + │   │   │   │   │   │   ├── random.h + │   │   │   │   │   │   ├── random.tcc + │   │   │   │   │   │   ├── regex + │   │   │   │   │   │   ├── riemann_zeta.tcc + │   │   │   │   │   │   ├── shared_ptr.h + │   │   │   │   │   │   ├── special_function_util.h + │   │   │   │   │   │   ├── stdarg.h + │   │   │   │   │   │   ├── stdbool.h + │   │   │   │   │   │   ├── stdint.h + │   │   │   │   │   │   ├── stdio.h + │   │   │   │   │   │   ├── stdlib.h + │   │   │   │   │   │   ├── tgmath.h + │   │   │   │   │   │   ├── tuple + │   │   │   │   │   │   ├── type_traits + │   │   │   │   │   │   ├── unordered_map + │   │   │   │   │   │   ├── unordered_map.h + │   │   │   │   │   │   ├── unordered_set + │   │   │   │   │   │   ├── unordered_set.h + │   │   │   │   │   │   ├── utility + │   │   │   │   │   │   ├── wchar.h + │   │   │   │   │   │   └── wctype.h + │   │   │   │   │   ├── tr2 + │   │   │   │   │   │   ├── bool_set + │   │   │   │   │   │   ├── bool_set.tcc + │   │   │   │   │   │   ├── dynamic_bitset + │   │   │   │   │   │   ├── ratio + │   │   │   │   │   │   └── type_traits + │   │   │   │   │   ├── tuple + │   │   │   │   │   ├── typeindex + │   │   │   │   │   ├── typeinfo + │   │   │   │   │   ├── type_traits + │   │   │   │   │   ├── unordered_map + │   │   │   │   │   ├── unordered_set + │   │   │   │   │   ├── utility + │   │   │   │   │   ├── valarray + │   │   │   │   │   └── vector + │   │   │   │   ├── complex.h + │   │   │   │   ├── ctype.h + │   │   │   │   ├── dirent.h + │   │   │   │   ├── envlock.h + │   │   │   │   ├── envz.h + │   │   │   │   ├── errno.h + │   │   │   │   ├── fastmath.h + │   │   │   │   ├── fcntl.h + │   │   │   │   ├── fnmatch.h + │   │   │   │   ├── getopt.h + │   │   │   │   ├── glob.h + │   │   │   │   ├── grp.h + │   │   │   │   ├── iconv.h + │   │   │   │   ├── ieeefp.h + │   │   │   │   ├── inttypes.h + │   │   │   │   ├── langinfo.h + │   │   │   │   ├── libgen.h + │   │   │   │   ├── limits.h + │   │   │   │   ├── locale.h + │   │   │   │   ├── machine + │   │   │   │   │   ├── ansi.h + │   │   │   │   │   ├── _default_types.h + │   │   │   │   │   ├── endian.h + │   │   │   │   │   ├── fastmath.h + │   │   │   │   │   ├── ieeefp.h + │   │   │   │   │   ├── malloc.h + │   │   │   │   │   ├── param.h + │   │   │   │   │   ├── setjmp-dj.h + │   │   │   │   │   ├── setjmp.h + │   │   │   │   │   ├── stdlib.h + │   │   │   │   │   ├── termios.h + │   │   │   │   │   ├── time.h + │   │   │   │   │   ├── _types.h + │   │   │   │   │   └── types.h + │   │   │   │   ├── malloc.h + │   │   │   │   ├── math.h + │   │   │   │   ├── newlib.h + │   │   │   │   ├── paths.h + │   │   │   │   ├── pthread.h + │   │   │   │   ├── pwd.h + │   │   │   │   ├── reent.h + │   │   │   │   ├── regdef.h + │   │   │   │   ├── regex.h + │   │   │   │   ├── rpc + │   │   │   │   ├── sched.h + │   │   │   │   ├── search.h + │   │   │   │   ├── setjmp.h + │   │   │   │   ├── signal.h + │   │   │   │   ├── spawn.h + │   │   │   │   ├── stdatomic.h + │   │   │   │   ├── stdint.h + │   │   │   │   ├── stdio_ext.h + │   │   │   │   ├── stdio.h + │   │   │   │   ├── stdlib.h + │   │   │   │   ├── string.h + │   │   │   │   ├── strings.h + │   │   │   │   ├── sys + │   │   │   │   │   ├── cdefs.h + │   │   │   │   │   ├── config.h + │   │   │   │   │   ├── custom_file.h + │   │   │   │   │   ├── _default_fcntl.h + │   │   │   │   │   ├── dirent.h + │   │   │   │   │   ├── dir.h + │   │   │   │   │   ├── errno.h + │   │   │   │   │   ├── fcntl.h + │   │   │   │   │   ├── features.h + │   │   │   │   │   ├── file.h + │   │   │   │   │   ├── iconvnls.h + │   │   │   │   │   ├── lock.h + │   │   │   │   │   ├── param.h + │   │   │   │   │   ├── queue.h + │   │   │   │   │   ├── reent.h + │   │   │   │   │   ├── resource.h + │   │   │   │   │   ├── sched.h + │   │   │   │   │   ├── signal.h + │   │   │   │   │   ├── stat.h + │   │   │   │   │   ├── stdio.h + │   │   │   │   │   ├── string.h + │   │   │   │   │   ├── syslimits.h + │   │   │   │   │   ├── timeb.h + │   │   │   │   │   ├── time.h + │   │   │   │   │   ├── times.h + │   │   │   │   │   ├── _types.h + │   │   │   │   │   ├── types.h + │   │   │   │   │   ├── unistd.h + │   │   │   │   │   ├── utime.h + │   │   │   │   │   └── wait.h + │   │   │   │   ├── _syslist.h + │   │   │   │   ├── tar.h + │   │   │   │   ├── termios.h + │   │   │   │   ├── tgmath.h + │   │   │   │   ├── time.h + │   │   │   │   ├── unctrl.h + │   │   │   │   ├── unistd.h + │   │   │   │   ├── utime.h + │   │   │   │   ├── utmp.h + │   │   │   │   ├── wchar.h + │   │   │   │   ├── wctype.h + │   │   │   │   └── wordexp.h + │   │   │   ├── lib + │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   ├── armv6-m + │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   ├── crt0.o + │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   ├── libc.a + │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   ├── libg.a + │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   ├── libm.a + │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   ├── linux.specs + │   │   │   │   │   ├── nano.specs + │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   ├── pid.specs + │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   └── redboot-syscalls.o + │   │   │   │   ├── armv7-ar + │   │   │   │   │   └── thumb + │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   ├── crt0.o + │   │   │   │   │   ├── fpu + │   │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   │   ├── crt0.o + │   │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   │   ├── libc.a + │   │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   │   ├── libg.a + │   │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   │   ├── libm.a + │   │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   │   ├── linux.specs + │   │   │   │   │   │   ├── nano.specs + │   │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   │   ├── pid.specs + │   │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   │   └── redboot-syscalls.o + │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   ├── libc.a + │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   ├── libg.a + │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   ├── libm.a + │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   ├── linux.specs + │   │   │   │   │   ├── nano.specs + │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   ├── pid.specs + │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   ├── redboot-syscalls.o + │   │   │   │   │   └── softfp + │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   ├── crt0.o + │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   ├── libc.a + │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   ├── libg.a + │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   ├── libm.a + │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   ├── linux.specs + │   │   │   │   │   ├── nano.specs + │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   ├── pid.specs + │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   └── redboot-syscalls.o + │   │   │   │   ├── armv7e-m + │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   ├── crt0.o + │   │   │   │   │   ├── fpu + │   │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   │   ├── crt0.o + │   │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   │   ├── libc.a + │   │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   │   ├── libg.a + │   │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   │   ├── libm.a + │   │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   │   ├── linux.specs + │   │   │   │   │   │   ├── nano.specs + │   │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   │   ├── pid.specs + │   │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   │   └── redboot-syscalls.o + │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   ├── libc.a + │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   ├── libg.a + │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   ├── libm.a + │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   ├── linux.specs + │   │   │   │   │   ├── nano.specs + │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   ├── pid.specs + │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   ├── redboot-syscalls.o + │   │   │   │   │   └── softfp + │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   ├── crt0.o + │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   ├── libc.a + │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   ├── libg.a + │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   ├── libm.a + │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   ├── linux.specs + │   │   │   │   │   ├── nano.specs + │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   ├── pid.specs + │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   └── redboot-syscalls.o + │   │   │   │   ├── armv7-m + │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   ├── crt0.o + │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   ├── libc.a + │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   ├── libg.a + │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   ├── libm.a + │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   ├── linux.specs + │   │   │   │   │   ├── nano.specs + │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   ├── pid.specs + │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   └── redboot-syscalls.o + │   │   │   │   ├── cpu-init + │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   ├── crt0.o + │   │   │   │   ├── fpu + │   │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   │   ├── cpu-init + │   │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   │   ├── crt0.o + │   │   │   │   │   ├── iq80310.specs + │   │   │   │   │   ├── libc.a + │   │   │   │   │   ├── libc_s.a + │   │   │   │   │   ├── libg.a + │   │   │   │   │   ├── libgloss-linux.a + │   │   │   │   │   ├── libg_s.a + │   │   │   │   │   ├── libm.a + │   │   │   │   │   ├── libnosys.a + │   │   │   │   │   ├── librdimon.a + │   │   │   │   │   ├── librdimon_s.a + │   │   │   │   │   ├── librdpmon.a + │   │   │   │   │   ├── libstdc++.a + │   │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   │   ├── libstdc++_s.a + │   │   │   │   │   ├── libsupc++.a + │   │   │   │   │   ├── libsupc++_s.a + │   │   │   │   │   ├── linux-crt0.o + │   │   │   │   │   ├── linux.specs + │   │   │   │   │   ├── nano.specs + │   │   │   │   │   ├── nosys.specs + │   │   │   │   │   ├── pid.specs + │   │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   │   ├── rdimon.specs + │   │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   │   ├── rdpmon.specs + │   │   │   │   │   ├── redboot-crt0.o + │   │   │   │   │   ├── redboot.ld + │   │   │   │   │   ├── redboot.specs + │   │   │   │   │   └── redboot-syscalls.o + │   │   │   │   ├── iq80310.specs + │   │   │   │   ├── ldscripts + │   │   │   │   │   ├── armelf.x + │   │   │   │   │   ├── armelf.xbn + │   │   │   │   │   ├── armelf.xc + │   │   │   │   │   ├── armelf.xn + │   │   │   │   │   ├── armelf.xr + │   │   │   │   │   ├── armelf.xs + │   │   │   │   │   ├── armelf.xsc + │   │   │   │   │   ├── armelf.xsw + │   │   │   │   │   ├── armelf.xu + │   │   │   │   │   └── armelf.xw + │   │   │   │   ├── libc.a + │   │   │   │   ├── libc_s.a + │   │   │   │   ├── libg.a + │   │   │   │   ├── libgloss-linux.a + │   │   │   │   ├── libg_s.a + │   │   │   │   ├── libm.a + │   │   │   │   ├── libnosys.a + │   │   │   │   ├── librdimon.a + │   │   │   │   ├── librdimon_s.a + │   │   │   │   ├── librdpmon.a + │   │   │   │   ├── libstdc++.a + │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   ├── libstdc++_s.a + │   │   │   │   ├── libsupc++.a + │   │   │   │   ├── libsupc++_s.a + │   │   │   │   ├── linux-crt0.o + │   │   │   │   ├── linux.specs + │   │   │   │   ├── nano.specs + │   │   │   │   ├── nosys.specs + │   │   │   │   ├── pid.specs + │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   ├── rdimon.specs + │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   ├── rdpmon.specs + │   │   │   │   ├── redboot-crt0.o + │   │   │   │   ├── redboot.ld + │   │   │   │   ├── redboot.specs + │   │   │   │   ├── redboot-syscalls.o + │   │   │   │   └── thumb + │   │   │   │   ├── aprofile-validation.specs + │   │   │   │   ├── aprofile-ve.specs + │   │   │   │   ├── cpu-init + │   │   │   │   │   └── rdimon-aem.o + │   │   │   │   ├── crt0.o + │   │   │   │   ├── iq80310.specs + │   │   │   │   ├── libc.a + │   │   │   │   ├── libc_s.a + │   │   │   │   ├── libg.a + │   │   │   │   ├── libgloss-linux.a + │   │   │   │   ├── libg_s.a + │   │   │   │   ├── libm.a + │   │   │   │   ├── libnosys.a + │   │   │   │   ├── librdimon.a + │   │   │   │   ├── librdimon_s.a + │   │   │   │   ├── librdpmon.a + │   │   │   │   ├── libstdc++.a + │   │   │   │   ├── libstdc++.a-gdb.py + │   │   │   │   ├── libstdc++_s.a + │   │   │   │   ├── libsupc++.a + │   │   │   │   ├── libsupc++_s.a + │   │   │   │   ├── linux-crt0.o + │   │   │   │   ├── linux.specs + │   │   │   │   ├── nano.specs + │   │   │   │   ├── nosys.specs + │   │   │   │   ├── pid.specs + │   │   │   │   ├── rdimon-crt0.o + │   │   │   │   ├── rdimon.specs + │   │   │   │   ├── rdpmon-crt0.o + │   │   │   │   ├── rdpmon.specs + │   │   │   │   ├── redboot-crt0.o + │   │   │   │   ├── redboot.ld + │   │   │   │   ├── redboot.specs + │   │   │   │   └── redboot-syscalls.o + │   │   │   └── share + │   │   │   └── gdb + │   │   │   ├── python + │   │   │   │   └── gdb + │   │   │   │   ├── command + │   │   │   │   │   ├── explore.py + │   │   │   │   │   ├── __init__.py + │   │   │   │   │   ├── pretty_printers.py + │   │   │   │   │   ├── prompt.py + │   │   │   │   │   └── type_printers.py + │   │   │   │   ├── function + │   │   │   │   │   ├── __init__.py + │   │   │   │   │   └── strfns.py + │   │   │   │   ├── __init__.py + │   │   │   │   ├── printing.py + │   │   │   │   ├── prompt.py + │   │   │   │   └── types.py + │   │   │   └── syscalls + │   │   │   ├── amd64-linux.xml + │   │   │   ├── gdb-syscalls.dtd + │   │   │   ├── i386-linux.xml + │   │   │   ├── mips-n32-linux.xml + │   │   │   ├── mips-n64-linux.xml + │   │   │   ├── mips-o32-linux.xml + │   │   │   ├── ppc64-linux.xml + │   │   │   ├── ppc-linux.xml + │   │   │   ├── sparc64-linux.xml + │   │   │   └── sparc-linux.xml + │   │   ├── bin + │   │   │   ├── arm-none-eabi-addr2line + │   │   │   ├── arm-none-eabi-ar + │   │   │   ├── arm-none-eabi-as + │   │   │   ├── arm-none-eabi-c++ + │   │   │   ├── arm-none-eabi-c++filt + │   │   │   ├── arm-none-eabi-cpp + │   │   │   ├── arm-none-eabi-elfedit + │   │   │   ├── arm-none-eabi-g++ + │   │   │   ├── arm-none-eabi-gcc + │   │   │   ├── arm-none-eabi-gcc-4.8.3 + │   │   │   ├── arm-none-eabi-gcc-ar + │   │   │   ├── arm-none-eabi-gcc-nm + │   │   │   ├── arm-none-eabi-gcc-ranlib + │   │   │   ├── arm-none-eabi-gcov + │   │   │   ├── arm-none-eabi-gdb + │   │   │   ├── arm-none-eabi-gprof + │   │   │   ├── arm-none-eabi-ld + │   │   │   ├── arm-none-eabi-ld.bfd + │   │   │   ├── arm-none-eabi-nm + │   │   │   ├── arm-none-eabi-objcopy + │   │   │   ├── arm-none-eabi-objdump + │   │   │   ├── arm-none-eabi-ranlib + │   │   │   ├── arm-none-eabi-readelf + │   │   │   ├── arm-none-eabi-size + │   │   │   ├── arm-none-eabi-strings + │   │   │   └── arm-none-eabi-strip + │   │   ├── lib + │   │   │   └── gcc + │   │   │   └── arm-none-eabi + │   │   │   └── 4.8.3 + │   │   │   ├── armv6-m + │   │   │   │   ├── crtbegin.o + │   │   │   │   ├── crtend.o + │   │   │   │   ├── crti.o + │   │   │   │   ├── crtn.o + │   │   │   │   ├── libgcc.a + │   │   │   │   └── libgcov.a + │   │   │   ├── armv7-ar + │   │   │   │   └── thumb + │   │   │   │   ├── crtbegin.o + │   │   │   │   ├── crtend.o + │   │   │   │   ├── crti.o + │   │   │   │   ├── crtn.o + │   │   │   │   ├── fpu + │   │   │   │   │   ├── crtbegin.o + │   │   │   │   │   ├── crtend.o + │   │   │   │   │   ├── crti.o + │   │   │   │   │   ├── crtn.o + │   │   │   │   │   ├── libgcc.a + │   │   │   │   │   └── libgcov.a + │   │   │   │   ├── libgcc.a + │   │   │   │   ├── libgcov.a + │   │   │   │   └── softfp + │   │   │   │   ├── crtbegin.o + │   │   │   │   ├── crtend.o + │   │   │   │   ├── crti.o + │   │   │   │   ├── crtn.o + │   │   │   │   ├── libgcc.a + │   │   │   │   └── libgcov.a + │   │   │   ├── armv7e-m + │   │   │   │   ├── crtbegin.o + │   │   │   │   ├── crtend.o + │   │   │   │   ├── crti.o + │   │   │   │   ├── crtn.o + │   │   │   │   ├── fpu + │   │   │   │   │   ├── crtbegin.o + │   │   │   │   │   ├── crtend.o + │   │   │   │   │   ├── crti.o + │   │   │   │   │   ├── crtn.o + │   │   │   │   │   ├── libgcc.a + │   │   │   │   │   └── libgcov.a + │   │   │   │   ├── libgcc.a + │   │   │   │   ├── libgcov.a + │   │   │   │   └── softfp + │   │   │   │   ├── crtbegin.o + │   │   │   │   ├── crtend.o + │   │   │   │   ├── crti.o + │   │   │   │   ├── crtn.o + │   │   │   │   ├── libgcc.a + │   │   │   │   └── libgcov.a + │   │   │   ├── armv7-m + │   │   │   │   ├── crtbegin.o + │   │   │   │   ├── crtend.o + │   │   │   │   ├── crti.o + │   │   │   │   ├── crtn.o + │   │   │   │   ├── libgcc.a + │   │   │   │   └── libgcov.a + │   │   │   ├── cc1 + │   │   │   ├── cc1plus + │   │   │   ├── collect2 + │   │   │   ├── crtbegin.o + │   │   │   ├── crtend.o + │   │   │   ├── crti.o + │   │   │   ├── crtn.o + │   │   │   ├── fpu + │   │   │   │   ├── crtbegin.o + │   │   │   │   ├── crtend.o + │   │   │   │   ├── crti.o + │   │   │   │   ├── crtn.o + │   │   │   │   ├── libgcc.a + │   │   │   │   └── libgcov.a + │   │   │   ├── include + │   │   │   │   ├── arm_neon.h + │   │   │   │   ├── float.h + │   │   │   │   ├── iso646.h + │   │   │   │   ├── mmintrin.h + │   │   │   │   ├── stdalign.h + │   │   │   │   ├── stdarg.h + │   │   │   │   ├── stdbool.h + │   │   │   │   ├── stddef.h + │   │   │   │   ├── stdfix.h + │   │   │   │   ├── stdint-gcc.h + │   │   │   │   ├── stdint.h + │   │   │   │   ├── stdnoreturn.h + │   │   │   │   ├── tgmath.h + │   │   │   │   ├── unwind-arm-common.h + │   │   │   │   ├── unwind.h + │   │   │   │   └── varargs.h + │   │   │   ├── include-fixed + │   │   │   │   ├── limits.h + │   │   │   │   ├── README + │   │   │   │   ├── sys + │   │   │   │   │   └── cdefs.h + │   │   │   │   └── syslimits.h + │   │   │   ├── install-tools + │   │   │   │   ├── fixincl + │   │   │   │   ├── fixinc_list + │   │   │   │   ├── fixinc.sh + │   │   │   │   ├── gsyslimits.h + │   │   │   │   ├── include + │   │   │   │   │   ├── limits.h + │   │   │   │   │   └── README + │   │   │   │   ├── macro_list + │   │   │   │   ├── mkheaders + │   │   │   │   ├── mkheaders.conf + │   │   │   │   └── mkinstalldirs + │   │   │   ├── libgcc.a + │   │   │   ├── libgcov.a + │   │   │   ├── liblto_plugin.so -> liblto_plugin.so.0.0.0 + │   │   │   ├── liblto_plugin.so.0 -> liblto_plugin.so.0.0.0 + │   │   │   ├── liblto_plugin.so.0.0.0 + │   │   │   ├── lto1 + │   │   │   ├── lto-wrapper + │   │   │   ├── plugin + │   │   │   │   ├── gengtype + │   │   │   │   ├── gtype.state + │   │   │   │   ├── include + │   │   │   │   │   ├── ada + │   │   │   │   │   │   └── gcc-interface + │   │   │   │   │   │   └── ada-tree.def + │   │   │   │   │   ├── alias.h + │   │   │   │   │   ├── alloc-pool.h + │   │   │   │   │   ├── all-tree.def + │   │   │   │   │   ├── ansidecl.h + │   │   │   │   │   ├── auto-host.h + │   │   │   │   │   ├── basic-block.h + │   │   │   │   │   ├── b-header-vars + │   │   │   │   │   ├── bitmap.h + │   │   │   │   │   ├── builtins.def + │   │   │   │   │   ├── bversion.h + │   │   │   │   │   ├── c-family + │   │   │   │   │   │   ├── c-common.def + │   │   │   │   │   │   ├── c-common.h + │   │   │   │   │   │   ├── c-objc.h + │   │   │   │   │   │   ├── c-pragma.h + │   │   │   │   │   │   └── c-pretty-print.h + │   │   │   │   │   ├── cfg-flags.def + │   │   │   │   │   ├── cfghooks.h + │   │   │   │   │   ├── cfgloop.h + │   │   │   │   │   ├── cgraph.h + │   │   │   │   │   ├── cif-code.def + │   │   │   │   │   ├── config + │   │   │   │   │   │   ├── arm + │   │   │   │   │   │   │   ├── aarch-common-protos.h + │   │   │   │   │   │   │   ├── aout.h + │   │   │   │   │   │   │   ├── arm-cores.def + │   │   │   │   │   │   │   ├── arm.h + │   │   │   │   │   │   │   ├── arm-opts.h + │   │   │   │   │   │   │   ├── arm-protos.h + │   │   │   │   │   │   │   ├── bpabi.h + │   │   │   │   │   │   │   ├── elf.h + │   │   │   │   │   │   │   └── unknown-elf.h + │   │   │   │   │   │   ├── dbxelf.h + │   │   │   │   │   │   ├── elfos.h + │   │   │   │   │   │   ├── initfini-array.h + │   │   │   │   │   │   ├── newlib-stdint.h + │   │   │   │   │   │   └── vxworks-dummy.h + │   │   │   │   │   ├── configargs.h + │   │   │   │   │   ├── config.h + │   │   │   │   │   ├── coretypes.h + │   │   │   │   │   ├── cp + │   │   │   │   │   │   ├── cp-tree.def + │   │   │   │   │   │   ├── cp-tree.h + │   │   │   │   │   │   ├── cxx-pretty-print.h + │   │   │   │   │   │   └── name-lookup.h + │   │   │   │   │   ├── cppdefault.h + │   │   │   │   │   ├── cpplib.h + │   │   │   │   │   ├── c-tree.h + │   │   │   │   │   ├── debug.h + │   │   │   │   │   ├── defaults.h + │   │   │   │   │   ├── diagnostic-core.h + │   │   │   │   │   ├── diagnostic.def + │   │   │   │   │   ├── diagnostic.h + │   │   │   │   │   ├── double-int.h + │   │   │   │   │   ├── dumpfile.h + │   │   │   │   │   ├── emit-rtl.h + │   │   │   │   │   ├── except.h + │   │   │   │   │   ├── filenames.h + │   │   │   │   │   ├── fixed-value.h + │   │   │   │   │   ├── flags.h + │   │   │   │   │   ├── flag-types.h + │   │   │   │   │   ├── function.h + │   │   │   │   │   ├── gcc-plugin.h + │   │   │   │   │   ├── genrtl.h + │   │   │   │   │   ├── ggc.h + │   │   │   │   │   ├── gimple.def + │   │   │   │   │   ├── gimple.h + │   │   │   │   │   ├── gimple-pretty-print.h + │   │   │   │   │   ├── gsstruct.def + │   │   │   │   │   ├── gtm-builtins.def + │   │   │   │   │   ├── gtype-desc.h + │   │   │   │   │   ├── hard-reg-set.h + │   │   │   │   │   ├── hashtab.h + │   │   │   │   │   ├── highlev-plugin-common.h + │   │   │   │   │   ├── hwint.h + │   │   │   │   │   ├── incpath.h + │   │   │   │   │   ├── input.h + │   │   │   │   │   ├── insn-constants.h + │   │   │   │   │   ├── insn-flags.h + │   │   │   │   │   ├── insn-modes.h + │   │   │   │   │   ├── insn-notes.def + │   │   │   │   │   ├── internal-fn.def + │   │   │   │   │   ├── internal-fn.h + │   │   │   │   │   ├── intl.h + │   │   │   │   │   ├── ipa-prop.h + │   │   │   │   │   ├── ipa-reference.h + │   │   │   │   │   ├── ipa-ref.h + │   │   │   │   │   ├── ipa-ref-inline.h + │   │   │   │   │   ├── ipa-utils.h + │   │   │   │   │   ├── is-a.h + │   │   │   │   │   ├── java + │   │   │   │   │   │   └── java-tree.def + │   │   │   │   │   ├── langhooks.h + │   │   │   │   │   ├── libiberty.h + │   │   │   │   │   ├── line-map.h + │   │   │   │   │   ├── machmode.h + │   │   │   │   │   ├── md5.h + │   │   │   │   │   ├── mode-classes.def + │   │   │   │   │   ├── objc + │   │   │   │   │   │   └── objc-tree.def + │   │   │   │   │   ├── obstack.h + │   │   │   │   │   ├── omp-builtins.def + │   │   │   │   │   ├── options.h + │   │   │   │   │   ├── opts.h + │   │   │   │   │   ├── output.h + │   │   │   │   │   ├── params.def + │   │   │   │   │   ├── params.h + │   │   │   │   │   ├── plugin-api.h + │   │   │   │   │   ├── plugin.def + │   │   │   │   │   ├── plugin.h + │   │   │   │   │   ├── plugin-version.h + │   │   │   │   │   ├── pointer-set.h + │   │   │   │   │   ├── predict.def + │   │   │   │   │   ├── predict.h + │   │   │   │   │   ├── prefix.h + │   │   │   │   │   ├── pretty-print.h + │   │   │   │   │   ├── real.h + │   │   │   │   │   ├── realmpfr.h + │   │   │   │   │   ├── reg-notes.def + │   │   │   │   │   ├── rtl.def + │   │   │   │   │   ├── rtl.h + │   │   │   │   │   ├── safe-ctype.h + │   │   │   │   │   ├── sanitizer.def + │   │   │   │   │   ├── sbitmap.h + │   │   │   │   │   ├── splay-tree.h + │   │   │   │   │   ├── statistics.h + │   │   │   │   │   ├── symtab.h + │   │   │   │   │   ├── sync-builtins.def + │   │   │   │   │   ├── system.h + │   │   │   │   │   ├── target.def + │   │   │   │   │   ├── target.h + │   │   │   │   │   ├── target-hooks-macros.h + │   │   │   │   │   ├── timevar.def + │   │   │   │   │   ├── timevar.h + │   │   │   │   │   ├── tm.h + │   │   │   │   │   ├── tm_p.h + │   │   │   │   │   ├── tm-preds.h + │   │   │   │   │   ├── toplev.h + │   │   │   │   │   ├── tree-check.h + │   │   │   │   │   ├── tree.def + │   │   │   │   │   ├── tree-dump.h + │   │   │   │   │   ├── tree-flow.h + │   │   │   │   │   ├── tree-flow-inline.h + │   │   │   │   │   ├── tree.h + │   │   │   │   │   ├── tree-inline.h + │   │   │   │   │   ├── tree-iterator.h + │   │   │   │   │   ├── tree-pass.h + │   │   │   │   │   ├── tree-pretty-print.h + │   │   │   │   │   ├── tree-ssa-alias.h + │   │   │   │   │   ├── tree-ssa-operands.h + │   │   │   │   │   ├── tree-ssa-sccvn.h + │   │   │   │   │   ├── treestruct.def + │   │   │   │   │   ├── vec.h + │   │   │   │   │   └── version.h + │   │   │   │   └── tree_switch_shortcut_elf.so + │   │   │   └── thumb + │   │   │   ├── crtbegin.o + │   │   │   ├── crtend.o + │   │   │   ├── crti.o + │   │   │   ├── crtn.o + │   │   │   ├── libgcc.a + │   │   │   └── libgcov.a + │   │   └── share + │   │   ├── doc + │   │   │   └── gcc-arm-none-eabi + │   │   │   ├── html + │   │   │   │   ├── annotate + │   │   │   │   │   ├── Annotations-for-Running.html + │   │   │   │   │   ├── Annotations-Overview.html + │   │   │   │   │   ├── Breakpoint-Info.html + │   │   │   │   │   ├── Displays.html + │   │   │   │   │   ├── Errors.html + │   │   │   │   │   ├── Frame-Annotations.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Invalidation.html + │   │   │   │   │   ├── Limitations.html + │   │   │   │   │   ├── Migrating-to-GDB_002fMI.html + │   │   │   │   │   ├── Multi_002dthreaded-Apps.html + │   │   │   │   │   ├── Prompting.html + │   │   │   │   │   ├── Server-Prefix.html + │   │   │   │   │   ├── Source-Annotations.html + │   │   │   │   │   └── Value-Annotations.html + │   │   │   │   ├── as.html + │   │   │   │   │   ├── a_002eout-Symbols.html + │   │   │   │   │   ├── AArch64_002dChars.html + │   │   │   │   │   ├── AArch64_002dDependent.html + │   │   │   │   │   ├── AArch64_002dRegs.html + │   │   │   │   │   ├── AArch64_002dRelocations.html + │   │   │   │   │   ├── AArch64-Directives.html + │   │   │   │   │   ├── AArch64-Floating-Point.html + │   │   │   │   │   ├── AArch64-Mapping-Symbols.html + │   │   │   │   │   ├── AArch64-Opcodes.html + │   │   │   │   │   ├── AArch64-Options.html + │   │   │   │   │   ├── AArch64-Syntax.html + │   │   │   │   │   ├── ABORT-_0028COFF_0029.html + │   │   │   │   │   ├── Abort.html + │   │   │   │   │   ├── Absolute-Literals-Directive.html + │   │   │   │   │   ├── Acknowledgements.html + │   │   │   │   │   ├── a.html + │   │   │   │   │   ├── Align.html + │   │   │   │   │   ├── Alpha_002dChars.html + │   │   │   │   │   ├── Alpha_002dDependent.html + │   │   │   │   │   ├── Alpha_002dRegs.html + │   │   │   │   │   ├── Alpha_002dRelocs.html + │   │   │   │   │   ├── Alpha-Directives.html + │   │   │   │   │   ├── Alpha-Floating-Point.html + │   │   │   │   │   ├── Alpha-Notes.html + │   │   │   │   │   ├── Alpha-Opcodes.html + │   │   │   │   │   ├── Alpha-Options.html + │   │   │   │   │   ├── Alpha-Syntax.html + │   │   │   │   │   ├── alternate.html + │   │   │   │   │   ├── Altmacro.html + │   │   │   │   │   ├── ARC_002dChars.html + │   │   │   │   │   ├── ARC_002dDependent.html + │   │   │   │   │   ├── ARC_002dRegs.html + │   │   │   │   │   ├── ARC-Directives.html + │   │   │   │   │   ├── ARC-Floating-Point.html + │   │   │   │   │   ├── ARC-Opcodes.html + │   │   │   │   │   ├── ARC-Options.html + │   │   │   │   │   ├── ARC-Syntax.html + │   │   │   │   │   ├── Arguments.html + │   │   │   │   │   ├── ARM_002dChars.html + │   │   │   │   │   ├── ARM_002dDependent.html + │   │   │   │   │   ├── ARM_002dInstruction_002dSet.html + │   │   │   │   │   ├── ARM_002dNeon_002dAlignment.html + │   │   │   │   │   ├── ARM_002dRegs.html + │   │   │   │   │   ├── ARM_002dRelocations.html + │   │   │   │   │   ├── arm_005ffnend.html + │   │   │   │   │   ├── arm_005ffnstart.html + │   │   │   │   │   ├── arm_005fpad.html + │   │   │   │   │   ├── arm_005fsave.html + │   │   │   │   │   ├── arm_005fsetfp.html + │   │   │   │   │   ├── ARM-Directives.html + │   │   │   │   │   ├── ARM-Floating-Point.html + │   │   │   │   │   ├── ARM-Mapping-Symbols.html + │   │   │   │   │   ├── ARM-Opcodes.html + │   │   │   │   │   ├── ARM-Options.html + │   │   │   │   │   ├── ARM-Syntax.html + │   │   │   │   │   ├── ARM-Unwinding-Tutorial.html + │   │   │   │   │   ├── Ascii.html + │   │   │   │   │   ├── Asciz.html + │   │   │   │   │   ├── AS-Index.html + │   │   │   │   │   ├── As-Sections.html + │   │   │   │   │   ├── AVR_002dChars.html + │   │   │   │   │   ├── AVR_002dDependent.html + │   │   │   │   │   ├── AVR_002dModifiers.html + │   │   │   │   │   ├── AVR_002dRegs.html + │   │   │   │   │   ├── AVR-Opcodes.html + │   │   │   │   │   ├── AVR-Options.html + │   │   │   │   │   ├── AVR-Syntax.html + │   │   │   │   │   ├── Balign.html + │   │   │   │   │   ├── Bignums.html + │   │   │   │   │   ├── Blackfin_002dDependent.html + │   │   │   │   │   ├── Blackfin-Directives.html + │   │   │   │   │   ├── Blackfin-Options.html + │   │   │   │   │   ├── Blackfin-Syntax.html + │   │   │   │   │   ├── bss.html + │   │   │   │   │   ├── Bug-Criteria.html + │   │   │   │   │   ├── Bug-Reporting.html + │   │   │   │   │   ├── Bundle-directives.html + │   │   │   │   │   ├── Byte.html + │   │   │   │   │   ├── callj_002di960.html + │   │   │   │   │   ├── CFI-directives.html + │   │   │   │   │   ├── Characters.html + │   │   │   │   │   ├── Chars.html + │   │   │   │   │   ├── COFF-Symbols.html + │   │   │   │   │   ├── Command-Line.html + │   │   │   │   │   ├── Comments.html + │   │   │   │   │   ├── Comm.html + │   │   │   │   │   ├── Compare_002dand_002dbranch_002di960.html + │   │   │   │   │   ├── Constants.html + │   │   │   │   │   ├── CR16_002dChars.html + │   │   │   │   │   ├── CR16_002dDependent.html + │   │   │   │   │   ├── CR16-Operand-Qualifiers.html + │   │   │   │   │   ├── CR16-Syntax.html + │   │   │   │   │   ├── CRIS_002dChars.html + │   │   │   │   │   ├── CRIS_002dDependent.html + │   │   │   │   │   ├── CRIS_002dExpand.html + │   │   │   │   │   ├── CRIS_002dOpts.html + │   │   │   │   │   ├── CRIS_002dPic.html + │   │   │   │   │   ├── CRIS_002dPseudos.html + │   │   │   │   │   ├── CRIS_002dRegs.html + │   │   │   │   │   ├── CRIS_002dSymbols.html + │   │   │   │   │   ├── CRIS_002dSyntax.html + │   │   │   │   │   ├── crisnous.html + │   │   │   │   │   ├── crispic.html + │   │   │   │   │   ├── D10V_002dAddressing.html + │   │   │   │   │   ├── D10V_002dChars.html + │   │   │   │   │   ├── D10V_002dDependent.html + │   │   │   │   │   ├── D10V_002dFloat.html + │   │   │   │   │   ├── D10V_002dOpcodes.html + │   │   │   │   │   ├── D10V_002dOpts.html + │   │   │   │   │   ├── D10V_002dRegs.html + │   │   │   │   │   ├── D10V_002dSize.html + │   │   │   │   │   ├── D10V_002dSubs.html + │   │   │   │   │   ├── D10V_002dSyntax.html + │   │   │   │   │   ├── D10V_002dWord.html + │   │   │   │   │   ├── D30V_002dAddressing.html + │   │   │   │   │   ├── D30V_002dChars.html + │   │   │   │   │   ├── D30V_002dDependent.html + │   │   │   │   │   ├── D30V_002dFloat.html + │   │   │   │   │   ├── D30V_002dGuarded.html + │   │   │   │   │   ├── D30V_002dOpcodes.html + │   │   │   │   │   ├── D30V_002dOpts.html + │   │   │   │   │   ├── D30V_002dRegs.html + │   │   │   │   │   ├── D30V_002dSize.html + │   │   │   │   │   ├── D30V_002dSubs.html + │   │   │   │   │   ├── D30V_002dSyntax.html + │   │   │   │   │   ├── Data.html + │   │   │   │   │   ├── Def.html + │   │   │   │   │   ├── Defining-New-Object-Attributes.html + │   │   │   │   │   ├── Density-Instructions.html + │   │   │   │   │   ├── Deprecated.html + │   │   │   │   │   ├── Desc.html + │   │   │   │   │   ├── D.html + │   │   │   │   │   ├── Dim.html + │   │   │   │   │   ├── Directives_002di860.html + │   │   │   │   │   ├── Directives_002di960.html + │   │   │   │   │   ├── Dot.html + │   │   │   │   │   ├── Double.html + │   │   │   │   │   ├── Eject.html + │   │   │   │   │   ├── Else.html + │   │   │   │   │   ├── Elseif.html + │   │   │   │   │   ├── Empty-Exprs.html + │   │   │   │   │   ├── Endef.html + │   │   │   │   │   ├── Endfunc.html + │   │   │   │   │   ├── End.html + │   │   │   │   │   ├── Endif.html + │   │   │   │   │   ├── Epiphany_002dChars.html + │   │   │   │   │   ├── Epiphany_002dDependent.html + │   │   │   │   │   ├── Epiphany-Options.html + │   │   │   │   │   ├── Epiphany-Syntax.html + │   │   │   │   │   ├── Equ.html + │   │   │   │   │   ├── Equiv.html + │   │   │   │   │   ├── Eqv.html + │   │   │   │   │   ├── Err.html + │   │   │   │   │   ├── Error.html + │   │   │   │   │   ├── Errors.html + │   │   │   │   │   ├── ESA_002f390_002dDependent.html + │   │   │   │   │   ├── ESA_002f390-Directives.html + │   │   │   │   │   ├── ESA_002f390-Floating-Point.html + │   │   │   │   │   ├── ESA_002f390-Notes.html + │   │   │   │   │   ├── ESA_002f390-Opcodes.html + │   │   │   │   │   ├── ESA_002f390-Options.html + │   │   │   │   │   ├── ESA_002f390-Syntax.html + │   │   │   │   │   ├── Exitm.html + │   │   │   │   │   ├── Expressions.html + │   │   │   │   │   ├── Extern.html + │   │   │   │   │   ├── Fail.html + │   │   │   │   │   ├── f.html + │   │   │   │   │   ├── File.html + │   │   │   │   │   ├── Fill.html + │   │   │   │   │   ├── Float.html + │   │   │   │   │   ├── Floating-Point_002di960.html + │   │   │   │   │   ├── Flonums.html + │   │   │   │   │   ├── Func.html + │   │   │   │   │   ├── Global.html + │   │   │   │   │   ├── Gnu_005fattribute.html + │   │   │   │   │   ├── GNU-Assembler.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── GNU-Object-Attributes.html + │   │   │   │   │   ├── GREG_002dbase.html + │   │   │   │   │   ├── H8_002f300_002dAddressing.html + │   │   │   │   │   ├── H8_002f300_002dChars.html + │   │   │   │   │   ├── H8_002f300_002dDependent.html + │   │   │   │   │   ├── H8_002f300_002dRegs.html + │   │   │   │   │   ├── H8_002f300-Directives.html + │   │   │   │   │   ├── H8_002f300-Floating-Point.html + │   │   │   │   │   ├── H8_002f300-Opcodes.html + │   │   │   │   │   ├── H8_002f300-Options.html + │   │   │   │   │   ├── H8_002f300-Syntax.html + │   │   │   │   │   ├── Hidden.html + │   │   │   │   │   ├── HPPA_002dDependent.html + │   │   │   │   │   ├── HPPA-Directives.html + │   │   │   │   │   ├── HPPA-Floating-Point.html + │   │   │   │   │   ├── HPPA-Notes.html + │   │   │   │   │   ├── HPPA-Opcodes.html + │   │   │   │   │   ├── HPPA-Options.html + │   │   │   │   │   ├── HPPA-Syntax.html + │   │   │   │   │   ├── hword.html + │   │   │   │   │   ├── i386_002d16bit.html + │   │   │   │   │   ├── i386_002dArch.html + │   │   │   │   │   ├── i386_002dBMI.html + │   │   │   │   │   ├── i386_002dBugs.html + │   │   │   │   │   ├── i386_002dChars.html + │   │   │   │   │   ├── i386_002dDependent.html + │   │   │   │   │   ├── i386_002dDirectives.html + │   │   │   │   │   ├── i386_002dFloat.html + │   │   │   │   │   ├── i386_002dJumps.html + │   │   │   │   │   ├── i386_002dLWP.html + │   │   │   │   │   ├── i386_002dMemory.html + │   │   │   │   │   ├── i386_002dMnemonics.html + │   │   │   │   │   ├── i386_002dNotes.html + │   │   │   │   │   ├── i386_002dOptions.html + │   │   │   │   │   ├── i386_002dPrefixes.html + │   │   │   │   │   ├── i386_002dRegs.html + │   │   │   │   │   ├── i386_002dSIMD.html + │   │   │   │   │   ├── i386_002dSyntax.html + │   │   │   │   │   ├── i386_002dTBM.html + │   │   │   │   │   ├── i386_002dVariations.html + │   │   │   │   │   ├── i860_002dChars.html + │   │   │   │   │   ├── i860_002dDependent.html + │   │   │   │   │   ├── i960_002dChars.html + │   │   │   │   │   ├── i960_002dDependent.html + │   │   │   │   │   ├── IA_002d64_002dBits.html + │   │   │   │   │   ├── IA_002d64_002dChars.html + │   │   │   │   │   ├── IA_002d64_002dDependent.html + │   │   │   │   │   ├── IA_002d64_002dRegs.html + │   │   │   │   │   ├── IA_002d64_002dRelocs.html + │   │   │   │   │   ├── IA_002d64-Opcodes.html + │   │   │   │   │   ├── IA_002d64-Options.html + │   │   │   │   │   ├── IA_002d64-Syntax.html + │   │   │   │   │   ├── Ident.html + │   │   │   │   │   ├── If.html + │   │   │   │   │   ├── I.html + │   │   │   │   │   ├── Incbin.html + │   │   │   │   │   ├── Include.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Infix-Ops.html + │   │   │   │   │   ├── Input-Files.html + │   │   │   │   │   ├── Integer-Exprs.html + │   │   │   │   │   ├── Integers.html + │   │   │   │   │   ├── Internal.html + │   │   │   │   │   ├── Int.html + │   │   │   │   │   ├── Invoking.html + │   │   │   │   │   ├── IP2K_002dChars.html + │   │   │   │   │   ├── IP2K_002dDependent.html + │   │   │   │   │   ├── IP2K_002dOpts.html + │   │   │   │   │   ├── IP2K_002dSyntax.html + │   │   │   │   │   ├── Irpc.html + │   │   │   │   │   ├── Irp.html + │   │   │   │   │   ├── K.html + │   │   │   │   │   ├── Labels.html + │   │   │   │   │   ├── Lcomm.html + │   │   │   │   │   ├── Ld-Sections.html + │   │   │   │   │   ├── Lflags.html + │   │   │   │   │   ├── L.html + │   │   │   │   │   ├── Line.html + │   │   │   │   │   ├── Linkonce.html + │   │   │   │   │   ├── List.html + │   │   │   │   │   ├── listing.html + │   │   │   │   │   ├── Literal-Directive.html + │   │   │   │   │   ├── Literal-Position-Directive.html + │   │   │   │   │   ├── Literal-Prefix-Directive.html + │   │   │   │   │   ├── LM32_002dChars.html + │   │   │   │   │   ├── LM32_002dDependent.html + │   │   │   │   │   ├── LM32_002dModifiers.html + │   │   │   │   │   ├── LM32_002dRegs.html + │   │   │   │   │   ├── LM32-Opcodes.html + │   │   │   │   │   ├── LM32-Options.html + │   │   │   │   │   ├── LM32-Syntax.html + │   │   │   │   │   ├── Ln.html + │   │   │   │   │   ├── Loc_005fmark_005flabels.html + │   │   │   │   │   ├── Local.html + │   │   │   │   │   ├── Loc.html + │   │   │   │   │   ├── Longcalls-Directive.html + │   │   │   │   │   ├── Long.html + │   │   │   │   │   ├── M32C_002dChars.html + │   │   │   │   │   ├── M32C_002dDependent.html + │   │   │   │   │   ├── M32C_002dModifiers.html + │   │   │   │   │   ├── M32C_002dOpts.html + │   │   │   │   │   ├── M32C_002dSyntax.html + │   │   │   │   │   ├── M32R_002dDependent.html + │   │   │   │   │   ├── M32R_002dDirectives.html + │   │   │   │   │   ├── M32R_002dOpts.html + │   │   │   │   │   ├── M32R_002dWarnings.html + │   │   │   │   │   ├── M68HC11_002dBranch.html + │   │   │   │   │   ├── M68HC11_002dDependent.html + │   │   │   │   │   ├── M68HC11_002dDirectives.html + │   │   │   │   │   ├── M68HC11_002dFloat.html + │   │   │   │   │   ├── M68HC11_002dModifiers.html + │   │   │   │   │   ├── M68HC11_002dopcodes.html + │   │   │   │   │   ├── M68HC11_002dOpts.html + │   │   │   │   │   ├── M68HC11_002dSyntax.html + │   │   │   │   │   ├── M68K_002dBranch.html + │   │   │   │   │   ├── M68K_002dChars.html + │   │   │   │   │   ├── M68K_002dDependent.html + │   │   │   │   │   ├── M68K_002dDirectives.html + │   │   │   │   │   ├── M68K_002dFloat.html + │   │   │   │   │   ├── M68K_002dMoto_002dSyntax.html + │   │   │   │   │   ├── M68K_002dopcodes.html + │   │   │   │   │   ├── M68K_002dOpts.html + │   │   │   │   │   ├── M68K_002dSyntax.html + │   │   │   │   │   ├── Machine-Dependencies.html + │   │   │   │   │   ├── Macro.html + │   │   │   │   │   ├── Manual.html + │   │   │   │   │   ├── march_002doption.html + │   │   │   │   │   ├── MD.html + │   │   │   │   │   ├── M.html + │   │   │   │   │   ├── MicroBlaze_002dChars.html + │   │   │   │   │   ├── MicroBlaze_002dDependent.html + │   │   │   │   │   ├── MicroBlaze-Directives.html + │   │   │   │   │   ├── MicroBlaze-Syntax.html + │   │   │   │   │   ├── MIPS_002dChars.html + │   │   │   │   │   ├── MIPS_002dDependent.html + │   │   │   │   │   ├── MIPS-ASE-instruction-generation-overrides.html + │   │   │   │   │   ├── MIPS-autoextend.html + │   │   │   │   │   ├── MIPS-floating_002dpoint.html + │   │   │   │   │   ├── MIPS-insn.html + │   │   │   │   │   ├── MIPS-ISA.html + │   │   │   │   │   ├── MIPS-Object.html + │   │   │   │   │   ├── MIPS-option-stack.html + │   │   │   │   │   ├── MIPS-Opts.html + │   │   │   │   │   ├── MIPS-Stabs.html + │   │   │   │   │   ├── MIPS-symbol-sizes.html + │   │   │   │   │   ├── MIPS-Syntax.html + │   │   │   │   │   ├── MMIX_002dbyte.html + │   │   │   │   │   ├── MMIX_002dChars.html + │   │   │   │   │   ├── MMIX_002dconstants.html + │   │   │   │   │   ├── MMIX_002dDependent.html + │   │   │   │   │   ├── MMIX_002dExpand.html + │   │   │   │   │   ├── MMIX_002dgreg.html + │   │   │   │   │   ├── MMIX_002dis.html + │   │   │   │   │   ├── MMIX_002dlocal.html + │   │   │   │   │   ├── MMIX_002dloc.html + │   │   │   │   │   ├── MMIX_002dmmixal.html + │   │   │   │   │   ├── MMIX_002dOpts.html + │   │   │   │   │   ├── MMIX_002dprefix.html + │   │   │   │   │   ├── MMIX_002dPseudos.html + │   │   │   │   │   ├── MMIX_002dRegs.html + │   │   │   │   │   ├── MMIX_002dspec.html + │   │   │   │   │   ├── MMIX_002dSymbols.html + │   │   │   │   │   ├── MMIX_002dSyntax.html + │   │   │   │   │   ├── mmixsite.html + │   │   │   │   │   ├── MRI.html + │   │   │   │   │   ├── MSP430_002dChars.html + │   │   │   │   │   ├── MSP430_002dDependent.html + │   │   │   │   │   ├── MSP430_002dExt.html + │   │   │   │   │   ├── MSP430_002dMacros.html + │   │   │   │   │   ├── MSP430_002dRegs.html + │   │   │   │   │   ├── MSP430-Directives.html + │   │   │   │   │   ├── MSP430-Floating-Point.html + │   │   │   │   │   ├── MSP430-Opcodes.html + │   │   │   │   │   ├── MSP430-Options.html + │   │   │   │   │   ├── MSP430-Profiling-Capability.html + │   │   │   │   │   ├── MSP430-Syntax.html + │   │   │   │   │   ├── Noaltmacro.html + │   │   │   │   │   ├── Nolist.html + │   │   │   │   │   ├── Notes_002di860.html + │   │   │   │   │   ├── NS32K_002dChars.html + │   │   │   │   │   ├── NS32K_002dDependent.html + │   │   │   │   │   ├── NS32K-Syntax.html + │   │   │   │   │   ├── Numbers.html + │   │   │   │   │   ├── Object-Attributes.html + │   │   │   │   │   ├── Object-Formats.html + │   │   │   │   │   ├── Object.html + │   │   │   │   │   ├── Octa.html + │   │   │   │   │   ├── Offset.html + │   │   │   │   │   ├── o.html + │   │   │   │   │   ├── Opcodes-for-i860.html + │   │   │   │   │   ├── Opcodes-for-i960.html + │   │   │   │   │   ├── Operators.html + │   │   │   │   │   ├── Options_002di860.html + │   │   │   │   │   ├── Options_002di960.html + │   │   │   │   │   ├── Org.html + │   │   │   │   │   ├── Overview.html + │   │   │   │   │   ├── P2align.html + │   │   │   │   │   ├── PDP_002d11_002dDependent.html + │   │   │   │   │   ├── PDP_002d11_002dMnemonics.html + │   │   │   │   │   ├── PDP_002d11_002dOptions.html + │   │   │   │   │   ├── PDP_002d11_002dPseudos.html + │   │   │   │   │   ├── PDP_002d11_002dSyntax.html + │   │   │   │   │   ├── PDP_002d11_002dSynthetic.html + │   │   │   │   │   ├── PJ_002dChars.html + │   │   │   │   │   ├── PJ_002dDependent.html + │   │   │   │   │   ├── PJ-Options.html + │   │   │   │   │   ├── PJ-Syntax.html + │   │   │   │   │   ├── PopSection.html + │   │   │   │   │   ├── PowerPC_002dChars.html + │   │   │   │   │   ├── PowerPC_002dOpts.html + │   │   │   │   │   ├── PowerPC_002dPseudo.html + │   │   │   │   │   ├── PowerPC_002dSyntax.html + │   │   │   │   │   ├── PPC_002dDependent.html + │   │   │   │   │   ├── Prefix-Ops.html + │   │   │   │   │   ├── Preprocessing.html + │   │   │   │   │   ├── Previous.html + │   │   │   │   │   ├── Print.html + │   │   │   │   │   ├── Protected.html + │   │   │   │   │   ├── Pseudo-Ops.html + │   │   │   │   │   ├── Psize.html + │   │   │   │   │   ├── Purgem.html + │   │   │   │   │   ├── PushSection.html + │   │   │   │   │   ├── Quad.html + │   │   │   │   │   ├── Reloc.html + │   │   │   │   │   ├── Reporting-Bugs.html + │   │   │   │   │   ├── Rept.html + │   │   │   │   │   ├── R.html + │   │   │   │   │   ├── RL78_002dChars.html + │   │   │   │   │   ├── RL78_002dDependent.html + │   │   │   │   │   ├── RL78_002dDirectives.html + │   │   │   │   │   ├── RL78_002dModifiers.html + │   │   │   │   │   ├── RL78_002dOpts.html + │   │   │   │   │   ├── RL78_002dSyntax.html + │   │   │   │   │   ├── RX_002dChars.html + │   │   │   │   │   ├── RX_002dDependent.html + │   │   │   │   │   ├── RX_002dDirectives.html + │   │   │   │   │   ├── RX_002dFloat.html + │   │   │   │   │   ├── RX_002dModifiers.html + │   │   │   │   │   ├── RX_002dOpts.html + │   │   │   │   │   ├── RX_002dSyntax.html + │   │   │   │   │   ├── S_002f390_002dDependent.html + │   │   │   │   │   ├── s390-Aliases.html + │   │   │   │   │   ├── s390-Characters.html + │   │   │   │   │   ├── s390-Directives.html + │   │   │   │   │   ├── s390-Floating-Point.html + │   │   │   │   │   ├── s390-Formats.html + │   │   │   │   │   ├── s390-Instruction-Marker.html + │   │   │   │   │   ├── s390-Literal-Pool-Entries.html + │   │   │   │   │   ├── s390-Mnemonics.html + │   │   │   │   │   ├── s390-Operand-Modifier.html + │   │   │   │   │   ├── s390-Operands.html + │   │   │   │   │   ├── s390-Options.html + │   │   │   │   │   ├── s390-Register.html + │   │   │   │   │   ├── s390-Syntax.html + │   │   │   │   │   ├── Sbttl.html + │   │   │   │   │   ├── Schedule-Directive.html + │   │   │   │   │   ├── Scl.html + │   │   │   │   │   ├── SCORE_002dChars.html + │   │   │   │   │   ├── SCORE_002dDependent.html + │   │   │   │   │   ├── SCORE_002dOpts.html + │   │   │   │   │   ├── SCORE_002dPseudo.html + │   │   │   │   │   ├── SCORE_002dSyntax.html + │   │   │   │   │   ├── Secs-Background.html + │   │   │   │   │   ├── Section.html + │   │   │   │   │   ├── Sections.html + │   │   │   │   │   ├── Set.html + │   │   │   │   │   ├── Setting-Symbols.html + │   │   │   │   │   ├── SH_002dAddressing.html + │   │   │   │   │   ├── SH_002dChars.html + │   │   │   │   │   ├── SH_002dDependent.html + │   │   │   │   │   ├── SH_002dRegs.html + │   │   │   │   │   ├── SH64_002dAddressing.html + │   │   │   │   │   ├── SH64_002dChars.html + │   │   │   │   │   ├── SH64_002dDependent.html + │   │   │   │   │   ├── SH64_002dRegs.html + │   │   │   │   │   ├── SH64-Directives.html + │   │   │   │   │   ├── SH64-Opcodes.html + │   │   │   │   │   ├── SH64-Options.html + │   │   │   │   │   ├── SH64-Syntax.html + │   │   │   │   │   ├── SH-Directives.html + │   │   │   │   │   ├── SH-Floating-Point.html + │   │   │   │   │   ├── SH-Opcodes.html + │   │   │   │   │   ├── SH-Options.html + │   │   │   │   │   ├── Short.html + │   │   │   │   │   ├── SH-Syntax.html + │   │   │   │   │   ├── Single.html + │   │   │   │   │   ├── Size.html + │   │   │   │   │   ├── Skip.html + │   │   │   │   │   ├── Sleb128.html + │   │   │   │   │   ├── SOM-Symbols.html + │   │   │   │   │   ├── Space.html + │   │   │   │   │   ├── Sparc_002dAligned_002dData.html + │   │   │   │   │   ├── Sparc_002dChars.html + │   │   │   │   │   ├── Sparc_002dConstants.html + │   │   │   │   │   ├── Sparc_002dDependent.html + │   │   │   │   │   ├── Sparc_002dDirectives.html + │   │   │   │   │   ├── Sparc_002dFloat.html + │   │   │   │   │   ├── Sparc_002dOpts.html + │   │   │   │   │   ├── Sparc_002dRegs.html + │   │   │   │   │   ├── Sparc_002dRelocs.html + │   │   │   │   │   ├── Sparc_002dSize_002dTranslations.html + │   │   │   │   │   ├── Sparc_002dSyntax.html + │   │   │   │   │   ├── Stab.html + │   │   │   │   │   ├── Statements.html + │   │   │   │   │   ├── statistics.html + │   │   │   │   │   ├── String.html + │   │   │   │   │   ├── Strings.html + │   │   │   │   │   ├── Struct.html + │   │   │   │   │   ├── Sub_002dSections.html + │   │   │   │   │   ├── SubSection.html + │   │   │   │   │   ├── Symbol-Attributes.html + │   │   │   │   │   ├── Symbol-Desc.html + │   │   │   │   │   ├── Symbol-Intro.html + │   │   │   │   │   ├── Symbol-Names.html + │   │   │   │   │   ├── Symbol-Other.html + │   │   │   │   │   ├── Symbols.html + │   │   │   │   │   ├── Symbol-Type.html + │   │   │   │   │   ├── Symbol-Value.html + │   │   │   │   │   ├── Symver.html + │   │   │   │   │   ├── Syntax.html + │   │   │   │   │   ├── Syntax-of-i860.html + │   │   │   │   │   ├── Syntax-of-i960.html + │   │   │   │   │   ├── Tag.html + │   │   │   │   │   ├── Text.html + │   │   │   │   │   ├── TIC54X_002dBlock.html + │   │   │   │   │   ├── TIC54X_002dBuiltins.html + │   │   │   │   │   ├── TIC54X_002dChars.html + │   │   │   │   │   ├── TIC54X_002dConstants.html + │   │   │   │   │   ├── TIC54X_002dDependent.html + │   │   │   │   │   ├── TIC54X_002dDirectives.html + │   │   │   │   │   ├── TIC54X_002dEnv.html + │   │   │   │   │   ├── TIC54X_002dExt.html + │   │   │   │   │   ├── TIC54X_002dLocals.html + │   │   │   │   │   ├── TIC54X_002dMacros.html + │   │   │   │   │   ├── TIC54X_002dMMRegs.html + │   │   │   │   │   ├── TIC54X_002dOpts.html + │   │   │   │   │   ├── TIC54X_002dSubsyms.html + │   │   │   │   │   ├── TIC54X_002dSyntax.html + │   │   │   │   │   ├── TIC6X_002dDependent.html + │   │   │   │   │   ├── TIC6X-Directives.html + │   │   │   │   │   ├── TIC6X-Options.html + │   │   │   │   │   ├── TIC6X-Syntax.html + │   │   │   │   │   ├── TILE_002dGx_002dDependent.html + │   │   │   │   │   ├── TILE_002dGx-Directives.html + │   │   │   │   │   ├── TILE_002dGx-Modifiers.html + │   │   │   │   │   ├── TILE_002dGx-Opcodes.html + │   │   │   │   │   ├── TILE_002dGx-Options.html + │   │   │   │   │   ├── TILE_002dGx-Registers.html + │   │   │   │   │   ├── TILE_002dGx-Syntax.html + │   │   │   │   │   ├── TILEPro_002dDependent.html + │   │   │   │   │   ├── TILEPro-Directives.html + │   │   │   │   │   ├── TILEPro-Modifiers.html + │   │   │   │   │   ├── TILEPro-Opcodes.html + │   │   │   │   │   ├── TILEPro-Options.html + │   │   │   │   │   ├── TILEPro-Registers.html + │   │   │   │   │   ├── TILEPro-Syntax.html + │   │   │   │   │   ├── Title.html + │   │   │   │   │   ├── traditional_002dformat.html + │   │   │   │   │   ├── Transform-Directive.html + │   │   │   │   │   ├── Type.html + │   │   │   │   │   ├── Uleb128.html + │   │   │   │   │   ├── V850_002dChars.html + │   │   │   │   │   ├── V850_002dDependent.html + │   │   │   │   │   ├── V850_002dRegs.html + │   │   │   │   │   ├── V850-Directives.html + │   │   │   │   │   ├── V850-Floating-Point.html + │   │   │   │   │   ├── V850-Opcodes.html + │   │   │   │   │   ├── V850-Options.html + │   │   │   │   │   ├── V850-Syntax.html + │   │   │   │   │   ├── Val.html + │   │   │   │   │   ├── VAX_002dbranch.html + │   │   │   │   │   ├── VAX_002dChars.html + │   │   │   │   │   ├── Vax_002dDependent.html + │   │   │   │   │   ├── VAX_002ddirectives.html + │   │   │   │   │   ├── VAX_002dfloat.html + │   │   │   │   │   ├── VAX_002dno.html + │   │   │   │   │   ├── VAX_002dopcodes.html + │   │   │   │   │   ├── VAX_002doperands.html + │   │   │   │   │   ├── VAX_002dOpts.html + │   │   │   │   │   ├── VAX_002dSyntax.html + │   │   │   │   │   ├── Version.html + │   │   │   │   │   ├── v.html + │   │   │   │   │   ├── VTableEntry.html + │   │   │   │   │   ├── VTableInherit.html + │   │   │   │   │   ├── Warning.html + │   │   │   │   │   ├── Weak.html + │   │   │   │   │   ├── Weakref.html + │   │   │   │   │   ├── Whitespace.html + │   │   │   │   │   ├── W.html + │   │   │   │   │   ├── Word.html + │   │   │   │   │   ├── XGATE_002dDependent.html + │   │   │   │   │   ├── XGATE_002dDirectives.html + │   │   │   │   │   ├── XGATE_002dFloat.html + │   │   │   │   │   ├── XGATE_002dopcodes.html + │   │   │   │   │   ├── XGATE_002dOpts.html + │   │   │   │   │   ├── XGATE_002dSyntax.html + │   │   │   │   │   ├── XStormy16_002dChars.html + │   │   │   │   │   ├── XSTORMY16_002dDependent.html + │   │   │   │   │   ├── XStormy16-Directives.html + │   │   │   │   │   ├── XStormy16-Opcodes.html + │   │   │   │   │   ├── XStormy16-Syntax.html + │   │   │   │   │   ├── Xtensa_002dDependent.html + │   │   │   │   │   ├── Xtensa-Automatic-Alignment.html + │   │   │   │   │   ├── Xtensa-Branch-Relaxation.html + │   │   │   │   │   ├── Xtensa-Call-Relaxation.html + │   │   │   │   │   ├── Xtensa-Directives.html + │   │   │   │   │   ├── Xtensa-Immediate-Relaxation.html + │   │   │   │   │   ├── Xtensa-Opcodes.html + │   │   │   │   │   ├── Xtensa-Optimizations.html + │   │   │   │   │   ├── Xtensa-Options.html + │   │   │   │   │   ├── Xtensa-Registers.html + │   │   │   │   │   ├── Xtensa-Relaxation.html + │   │   │   │   │   ├── Xtensa-Syntax.html + │   │   │   │   │   ├── Z8000_002dAddressing.html + │   │   │   │   │   ├── Z8000_002dChars.html + │   │   │   │   │   ├── Z8000_002dDependent.html + │   │   │   │   │   ├── Z8000_002dRegs.html + │   │   │   │   │   ├── Z80_002dCase.html + │   │   │   │   │   ├── Z80_002dChars.html + │   │   │   │   │   ├── Z80_002dDependent.html + │   │   │   │   │   ├── Z80_002dRegs.html + │   │   │   │   │   ├── Z8000-Directives.html + │   │   │   │   │   ├── Z8000-Opcodes.html + │   │   │   │   │   ├── Z8000-Options.html + │   │   │   │   │   ├── Z8000-Syntax.html + │   │   │   │   │   ├── Z80-Directives.html + │   │   │   │   │   ├── Z80-Floating-Point.html + │   │   │   │   │   ├── Z80-Opcodes.html + │   │   │   │   │   ├── Z80-Options.html + │   │   │   │   │   ├── Z80-Syntax.html + │   │   │   │   │   └── Z.html + │   │   │   │   ├── bfd.html + │   │   │   │   │   ├── Adding-symbols-from-an-archive.html + │   │   │   │   │   ├── Adding-symbols-from-an-object-file.html + │   │   │   │   │   ├── Adding-Symbols-to-the-Hash-Table.html + │   │   │   │   │   ├── aout.html + │   │   │   │   │   ├── Architectures.html + │   │   │   │   │   ├── Archives.html + │   │   │   │   │   ├── bfd_005ftarget.html + │   │   │   │   │   ├── BFD-back-ends.html + │   │   │   │   │   ├── BFD-front-end.html + │   │   │   │   │   ├── BFD-Index.html + │   │   │   │   │   ├── BFD-information-loss.html + │   │   │   │   │   ├── Canonical-format.html + │   │   │   │   │   ├── coff.html + │   │   │   │   │   ├── Core-Files.html + │   │   │   │   │   ├── Creating-a-Linker-Hash-Table.html + │   │   │   │   │   ├── Creating-and-Freeing-a-Hash-Table.html + │   │   │   │   │   ├── Define-the-Derived-Structures.html + │   │   │   │   │   ├── Deriving-a-New-Hash-Table-Type.html + │   │   │   │   │   ├── Differing-file-formats.html + │   │   │   │   │   ├── elf.html + │   │   │   │   │   ├── File-Caching.html + │   │   │   │   │   ├── File-layout.html + │   │   │   │   │   ├── Formats.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── Hash-Tables.html + │   │   │   │   │   ├── History.html + │   │   │   │   │   ├── How-It-Works.html + │   │   │   │   │   ├── howto-manager.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Information-provided-by-the-linker.html + │   │   │   │   │   ├── Initialization.html + │   │   │   │   │   ├── Internal.html + │   │   │   │   │   ├── Linker-Functions.html + │   │   │   │   │   ├── Looking-Up-or-Entering-a-String.html + │   │   │   │   │   ├── Memory-Usage.html + │   │   │   │   │   ├── Mini-Symbols.html + │   │   │   │   │   ├── mmo.html + │   │   │   │   │   ├── mmo-section-mapping.html + │   │   │   │   │   ├── Opening-and-Closing.html + │   │   │   │   │   ├── Overview.html + │   │   │   │   │   ├── Performing-the-Final-Link.html + │   │   │   │   │   ├── Reading-Symbols.html + │   │   │   │   │   ├── Relocating-the-section-contents.html + │   │   │   │   │   ├── Relocations.html + │   │   │   │   │   ├── Section-Input.html + │   │   │   │   │   ├── Section-Output.html + │   │   │   │   │   ├── section-prototypes.html + │   │   │   │   │   ├── Sections.html + │   │   │   │   │   ├── Symbol_002dtable.html + │   │   │   │   │   ├── symbol-handling-functions.html + │   │   │   │   │   ├── Symbols.html + │   │   │   │   │   ├── Targets.html + │   │   │   │   │   ├── Traversing-a-Hash-Table.html + │   │   │   │   │   ├── typedef-arelent.html + │   │   │   │   │   ├── typedef-asection.html + │   │   │   │   │   ├── typedef-asymbol.html + │   │   │   │   │   ├── What-BFD-Version-2-Can-Do.html + │   │   │   │   │   ├── What-to-Put-Where.html + │   │   │   │   │   ├── Write-Other-Derived-Routines.html + │   │   │   │   │   ├── Write-the-Derived-Creation-Routine.html + │   │   │   │   │   ├── Writing-Symbols.html + │   │   │   │   │   └── Writing-the-symbol-table.html + │   │   │   │   ├── binutils.html + │   │   │   │   │   ├── addr2line.html + │   │   │   │   │   ├── Architecture-Selection.html + │   │   │   │   │   ├── ar-cmdline.html + │   │   │   │   │   ├── ar.html + │   │   │   │   │   ├── ar-scripts.html + │   │   │   │   │   ├── Binutils-Index.html + │   │   │   │   │   ├── Bug-Criteria.html + │   │   │   │   │   ├── Bug-Reporting.html + │   │   │   │   │   ├── c_002b_002bfilt.html + │   │   │   │   │   ├── Common-Options.html + │   │   │   │   │   ├── def-file-format.html + │   │   │   │   │   ├── dlltool.html + │   │   │   │   │   ├── elfedit.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── nlmconv.html + │   │   │   │   │   ├── nm.html + │   │   │   │   │   ├── objcopy.html + │   │   │   │   │   ├── objdump.html + │   │   │   │   │   ├── ranlib.html + │   │   │   │   │   ├── readelf.html + │   │   │   │   │   ├── Reporting-Bugs.html + │   │   │   │   │   ├── Selecting-the-Target-System.html + │   │   │   │   │   ├── size.html + │   │   │   │   │   ├── strings.html + │   │   │   │   │   ├── strip.html + │   │   │   │   │   ├── Target-Selection.html + │   │   │   │   │   ├── windmc.html + │   │   │   │   │   └── windres.html + │   │   │   │   ├── configure.html + │   │   │   │   ├── cpp + │   │   │   │   │   ├── Alternatives-to-Wrapper-_0023ifndef.html + │   │   │   │   │   ├── Argument-Prescan.html + │   │   │   │   │   ├── C_002b_002b-Named-Operators.html + │   │   │   │   │   ├── Character-sets.html + │   │   │   │   │   ├── Common-Predefined-Macros.html + │   │   │   │   │   ├── Computed-Includes.html + │   │   │   │   │   ├── Concatenation.html + │   │   │   │   │   ├── Concept-Index.html + │   │   │   │   │   ├── Conditionals.html + │   │   │   │   │   ├── Conditional-Syntax.html + │   │   │   │   │   ├── Conditional-Uses.html + │   │   │   │   │   ├── dashMF.html + │   │   │   │   │   ├── Defined.html + │   │   │   │   │   ├── Deleted-Code.html + │   │   │   │   │   ├── Diagnostics.html + │   │   │   │   │   ├── Differences-from-previous-versions.html + │   │   │   │   │   ├── Directives-Within-Macro-Arguments.html + │   │   │   │   │   ├── Duplication-of-Side-Effects.html + │   │   │   │   │   ├── Elif.html + │   │   │   │   │   ├── Else.html + │   │   │   │   │   ├── Environment-Variables.html + │   │   │   │   │   ├── fdollars_002din_002didentifiers.html + │   │   │   │   │   ├── Function_002dlike-Macros.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── Header-Files.html + │   │   │   │   │   ├── Identifier-characters.html + │   │   │   │   │   ├── Ifdef.html + │   │   │   │   │   ├── If.html + │   │   │   │   │   ├── Implementation_002ddefined-behavior.html + │   │   │   │   │   ├── Implementation-Details.html + │   │   │   │   │   ├── Implementation-limits.html + │   │   │   │   │   ├── Include-Operation.html + │   │   │   │   │   ├── Include-Syntax.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Index-of-Directives.html + │   │   │   │   │   ├── Initial-processing.html + │   │   │   │   │   ├── Invocation.html + │   │   │   │   │   ├── Line-Control.html + │   │   │   │   │   ├── Macro-Arguments.html + │   │   │   │   │   ├── Macro-Pitfalls.html + │   │   │   │   │   ├── Macros.html + │   │   │   │   │   ├── Misnesting.html + │   │   │   │   │   ├── Newlines-in-Arguments.html + │   │   │   │   │   ├── Object_002dlike-Macros.html + │   │   │   │   │   ├── Obsolete-Features.html + │   │   │   │   │   ├── Once_002dOnly-Headers.html + │   │   │   │   │   ├── Operator-Precedence-Problems.html + │   │   │   │   │   ├── Option-Index.html + │   │   │   │   │   ├── Other-Directives.html + │   │   │   │   │   ├── Overview.html + │   │   │   │   │   ├── Pragmas.html + │   │   │   │   │   ├── Predefined-Macros.html + │   │   │   │   │   ├── Preprocessor-Output.html + │   │   │   │   │   ├── Search-Path.html + │   │   │   │   │   ├── Self_002dReferential-Macros.html + │   │   │   │   │   ├── Standard-Predefined-Macros.html + │   │   │   │   │   ├── Stringification.html + │   │   │   │   │   ├── Swallowing-the-Semicolon.html + │   │   │   │   │   ├── System_002dspecific-Predefined-Macros.html + │   │   │   │   │   ├── System-Headers.html + │   │   │   │   │   ├── The-preprocessing-language.html + │   │   │   │   │   ├── Tokenization.html + │   │   │   │   │   ├── Traditional-lexical-analysis.html + │   │   │   │   │   ├── Traditional-macros.html + │   │   │   │   │   ├── Traditional-miscellany.html + │   │   │   │   │   ├── Traditional-Mode.html + │   │   │   │   │   ├── Traditional-warnings.html + │   │   │   │   │   ├── trigraphs.html + │   │   │   │   │   ├── Undefining-and-Redefining-Macros.html + │   │   │   │   │   ├── Variadic-Macros.html + │   │   │   │   │   ├── Wrapper-Headers.html + │   │   │   │   │   └── Wtrigraphs.html + │   │   │   │   ├── cppinternals + │   │   │   │   │   ├── Concept-Index.html + │   │   │   │   │   ├── Conventions.html + │   │   │   │   │   ├── Files.html + │   │   │   │   │   ├── Guard-Macros.html + │   │   │   │   │   ├── Hash-Nodes.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Invalid-identifiers.html + │   │   │   │   │   ├── Lexer.html + │   │   │   │   │   ├── Lexing-a-line.html + │   │   │   │   │   ├── Line-Numbering.html + │   │   │   │   │   ├── Macro-Expansion.html + │   │   │   │   │   └── Token-Spacing.html + │   │   │   │   ├── gcc + │   │   │   │   │   ├── _0040encode.html + │   │   │   │   │   ├── _005f_005fatomic-Builtins.html + │   │   │   │   │   ├── _005f_005fint128.html + │   │   │   │   │   ├── _005f_005fsync-Builtins.html + │   │   │   │   │   ├── AArch64-Options.html + │   │   │   │   │   ├── Actual-Bugs.html + │   │   │   │   │   ├── Adapteva-Epiphany-Options.html + │   │   │   │   │   ├── Alignment.html + │   │   │   │   │   ├── Alpha-Built_002din-Functions.html + │   │   │   │   │   ├── Alternate-Keywords.html + │   │   │   │   │   ├── Architecture-implementation.html + │   │   │   │   │   ├── Argument-Types.html + │   │   │   │   │   ├── ARM-iWMMXt-Built_002din-Functions.html + │   │   │   │   │   ├── ARM-NEON-Intrinsics.html + │   │   │   │   │   ├── ARM-Options.html + │   │   │   │   │   ├── ARM-Pragmas.html + │   │   │   │   │   ├── Arrays-and-pointers-implementation.html + │   │   │   │   │   ├── Asm-Labels.html + │   │   │   │   │   ├── Assembler-Options.html + │   │   │   │   │   ├── Attribute-Syntax.html + │   │   │   │   │   ├── AVR-Built_002din-Functions.html + │   │   │   │   │   ├── AVR-Named-Address-Spaces.html + │   │   │   │   │   ├── AVR-Options.html + │   │   │   │   │   ├── AVR-Variable-Attributes.html + │   │   │   │   │   ├── Backwards-Compatibility.html + │   │   │   │   │   ├── Binary-constants.html + │   │   │   │   │   ├── Blackfin-Built_002din-Functions.html + │   │   │   │   │   ├── Blackfin-Options.html + │   │   │   │   │   ├── Bound-member-functions.html + │   │   │   │   │   ├── Bug-Criteria.html + │   │   │   │   │   ├── Bug-Reporting.html + │   │   │   │   │   ├── Bugs.html + │   │   │   │   │   ├── C_002b_002b98-Thread_002dLocal-Edits.html + │   │   │   │   │   ├── C_002b_002b-Attributes.html + │   │   │   │   │   ├── C_002b_002b-Comments.html + │   │   │   │   │   ├── C_002b_002b-Dialect-Options.html + │   │   │   │   │   ├── C_002b_002b-Extensions.html + │   │   │   │   │   ├── C_002b_002b-Implementation.html + │   │   │   │   │   ├── C_002b_002b-Interface.html + │   │   │   │   │   ├── C_002b_002b-Misunderstandings.html + │   │   │   │   │   ├── C_002b_002b-Volatiles.html + │   │   │   │   │   ├── C6X-Options.html + │   │   │   │   │   ├── c99_002dlike-fast-enumeration-syntax.html + │   │   │   │   │   ├── C99-Thread_002dLocal-Edits.html + │   │   │   │   │   ├── Case-Ranges.html + │   │   │   │   │   ├── Cast-to-Union.html + │   │   │   │   │   ├── C-Dialect-Options.html + │   │   │   │   │   ├── C-Extensions.html + │   │   │   │   │   ├── Character-Escapes.html + │   │   │   │   │   ├── Characters-implementation.html + │   │   │   │   │   ├── C-Implementation.html + │   │   │   │   │   ├── Code-Gen-Options.html + │   │   │   │   │   ├── compatibility_005falias.html + │   │   │   │   │   ├── Compatibility.html + │   │   │   │   │   ├── Complex.html + │   │   │   │   │   ├── Compound-Literals.html + │   │   │   │   │   ├── Conditionally_002dsupported-behavior.html + │   │   │   │   │   ├── Conditionals.html + │   │   │   │   │   ├── Constant-string-objects.html + │   │   │   │   │   ├── Constraints.html + │   │   │   │   │   ├── Constructing-Calls.html + │   │   │   │   │   ├── Contributing.html + │   │   │   │   │   ├── Contributors.html + │   │   │   │   │   ├── Copy-Assignment.html + │   │   │   │   │   ├── Copying.html + │   │   │   │   │   ├── CR16-Options.html + │   │   │   │   │   ├── CRIS-Options.html + │   │   │   │   │   ├── Cross_002dprofiling.html + │   │   │   │   │   ├── Darwin-Format-Checks.html + │   │   │   │   │   ├── Darwin-Options.html + │   │   │   │   │   ├── Darwin-Pragmas.html + │   │   │   │   │   ├── dashMF.html + │   │   │   │   │   ├── Debugging-Options.html + │   │   │   │   │   ├── DEC-Alpha-Options.html + │   │   │   │   │   ├── Decimal-Float.html + │   │   │   │   │   ├── Declarators-implementation.html + │   │   │   │   │   ├── Deprecated-Features.html + │   │   │   │   │   ├── Designated-Inits.html + │   │   │   │   │   ├── Diagnostic-Pragmas.html + │   │   │   │   │   ├── Directly_002dmapped-Integer-Functions.html + │   │   │   │   │   ├── Directly_002dmapped-Media-Functions.html + │   │   │   │   │   ├── Directory-Options.html + │   │   │   │   │   ├── Disappointments.html + │   │   │   │   │   ├── Dollar-Signs.html + │   │   │   │   │   ├── Dynamically-registering-methods.html + │   │   │   │   │   ├── Empty-Structures.html + │   │   │   │   │   ├── Environment-implementation.html + │   │   │   │   │   ├── Environment-Variables.html + │   │   │   │   │   ├── Escaped-Newlines.html + │   │   │   │   │   ├── Example-of-asm-with-clobbered-asm-reg.html + │   │   │   │   │   ├── Exception-handling.html + │   │   │   │   │   ├── Exceptions.html + │   │   │   │   │   ├── Executing-code-before-main.html + │   │   │   │   │   ├── Explicit-Reg-Vars.html + │   │   │   │   │   ├── Extended-Asm.html + │   │   │   │   │   ├── Extended-asm-with-goto.html + │   │   │   │   │   ├── Fast-enumeration-details.html + │   │   │   │   │   ├── Fast-enumeration.html + │   │   │   │   │   ├── Fast-enumeration-protocol.html + │   │   │   │   │   ├── fdollars_002din_002didentifiers.html + │   │   │   │   │   ├── Fixed_002dPoint.html + │   │   │   │   │   ├── Fixed-Headers.html + │   │   │   │   │   ├── Floating-point-implementation.html + │   │   │   │   │   ├── Floating-Types.html + │   │   │   │   │   ├── Forwarding-hook.html + │   │   │   │   │   ├── FR_002dV-Built_002din-Functions.html + │   │   │   │   │   ├── FR30-Options.html + │   │   │   │   │   ├── FRV-Options.html + │   │   │   │   │   ├── Function-Attributes.html + │   │   │   │   │   ├── Function-Multiversioning.html + │   │   │   │   │   ├── Function-Names.html + │   │   │   │   │   ├── Function-Prototypes.html + │   │   │   │   │   ├── Function-Specific-Option-Pragmas.html + │   │   │   │   │   ├── Funding.html + │   │   │   │   │   ├── G_002b_002b-and-GCC.html + │   │   │   │   │   ├── Garbage-Collection.html + │   │   │   │   │   ├── Gcov-and-Optimization.html + │   │   │   │   │   ├── Gcov-Data-Files.html + │   │   │   │   │   ├── Gcov.html + │   │   │   │   │   ├── Gcov-Intro.html + │   │   │   │   │   ├── Global-Reg-Vars.html + │   │   │   │   │   ├── GNU_002fLinux-Options.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── GNU-Objective_002dC-runtime-API.html + │   │   │   │   │   ├── GNU-Project.html + │   │   │   │   │   ├── H8_002f300-Options.html + │   │   │   │   │   ├── Half_002dPrecision.html + │   │   │   │   │   ├── Hex-Floats.html + │   │   │   │   │   ├── Hints-implementation.html + │   │   │   │   │   ├── HPPA-Options.html + │   │   │   │   │   ├── i386-and-x86_002d64-Options.html + │   │   │   │   │   ├── i386-and-x86_002d64-Windows-Options.html + │   │   │   │   │   ├── i386-Type-Attributes.html + │   │   │   │   │   ├── i386-Variable-Attributes.html + │   │   │   │   │   ├── IA_002d64-Options.html + │   │   │   │   │   ├── Identifiers-implementation.html + │   │   │   │   │   ├── Incompatibilities.html + │   │   │   │   │   ├── Incomplete-Enums.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Initializers.html + │   │   │   │   │   ├── Inline.html + │   │   │   │   │   ├── Integers-implementation.html + │   │   │   │   │   ├── Interoperation.html + │   │   │   │   │   ├── Invoking-G_002b_002b.html + │   │   │   │   │   ├── Invoking-GCC.html + │   │   │   │   │   ├── Invoking-Gcov.html + │   │   │   │   │   ├── Java-Exceptions.html + │   │   │   │   │   ├── Keyword-Index.html + │   │   │   │   │   ├── Labels-as-Values.html + │   │   │   │   │   ├── Language-Independent-Options.html + │   │   │   │   │   ├── Legacy-type-encoding.html + │   │   │   │   │   ├── Library-functions-implementation.html + │   │   │   │   │   ├── Link-Options.html + │   │   │   │   │   ├── LM32-Options.html + │   │   │   │   │   ├── Locale_002dspecific-behavior-implementation.html + │   │   │   │   │   ├── Local-Labels.html + │   │   │   │   │   ├── Local-Reg-Vars.html + │   │   │   │   │   ├── Long-Long.html + │   │   │   │   │   ├── M32C-Options.html + │   │   │   │   │   ├── M32C-Pragmas.html + │   │   │   │   │   ├── M32R_002fD-Options.html + │   │   │   │   │   ├── M680x0-Options.html + │   │   │   │   │   ├── Machine-Constraints.html + │   │   │   │   │   ├── MCore-Options.html + │   │   │   │   │   ├── MeP-Options.html + │   │   │   │   │   ├── MeP-Pragmas.html + │   │   │   │   │   ├── MeP-Type-Attributes.html + │   │   │   │   │   ├── MeP-Variable-Attributes.html + │   │   │   │   │   ├── Messaging-with-the-GNU-Objective_002dC-runtime.html + │   │   │   │   │   ├── Method-signatures.html + │   │   │   │   │   ├── MicroBlaze-Options.html + │   │   │   │   │   ├── MIPS_002d3D-Built_002din-Functions.html + │   │   │   │   │   ├── MIPS-DSP-Built_002din-Functions.html + │   │   │   │   │   ├── MIPS-Loongson-Built_002din-Functions.html + │   │   │   │   │   ├── MIPS-Options.html + │   │   │   │   │   ├── MIPS-Paired_002dSingle-Support.html + │   │   │   │   │   ├── Mixed-Declarations.html + │   │   │   │   │   ├── MMIX-Options.html + │   │   │   │   │   ├── MN10300-Options.html + │   │   │   │   │   ├── Modern-GNU-Objective_002dC-runtime-API.html + │   │   │   │   │   ├── Modifiers.html + │   │   │   │   │   ├── Moxie-Options.html + │   │   │   │   │   ├── Multi_002dAlternative.html + │   │   │   │   │   ├── Named-Address-Spaces.html + │   │   │   │   │   ├── Name-lookup.html + │   │   │   │   │   ├── Namespace-Association.html + │   │   │   │   │   ├── Nested-Functions.html + │   │   │   │   │   ├── Non_002dbugs.html + │   │   │   │   │   ├── Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html + │   │   │   │   │   ├── Objective_002dC.html + │   │   │   │   │   ├── Object-Size-Checking.html + │   │   │   │   │   ├── Offsetof.html + │   │   │   │   │   ├── Optimize-Options.html + │   │   │   │   │   ├── Option-Index.html + │   │   │   │   │   ├── Option-Summary.html + │   │   │   │   │   ├── Other-Built_002din-Functions.html + │   │   │   │   │   ├── Other-Builtins.html + │   │   │   │   │   ├── Other-MIPS-Built_002din-Functions.html + │   │   │   │   │   ├── Overall-Options.html + │   │   │   │   │   ├── Paired_002dSingle-Arithmetic.html + │   │   │   │   │   ├── Paired_002dSingle-Built_002din-Functions.html + │   │   │   │   │   ├── PDP_002d11-Options.html + │   │   │   │   │   ├── picoChip-Built_002din-Functions.html + │   │   │   │   │   ├── picoChip-Options.html + │   │   │   │   │   ├── Pointer-Arith.html + │   │   │   │   │   ├── PowerPC-AltiVec_002fVSX-Built_002din-Functions.html + │   │   │   │   │   ├── PowerPC-Built_002din-Functions.html + │   │   │   │   │   ├── PowerPC-Options.html + │   │   │   │   │   ├── PowerPC-Type-Attributes.html + │   │   │   │   │   ├── Pragmas.html + │   │   │   │   │   ├── Precompiled-Headers.html + │   │   │   │   │   ├── Preprocessing-directives-implementation.html + │   │   │   │   │   ├── Preprocessor-Options.html + │   │   │   │   │   ├── Push_002fPop-Macro-Pragmas.html + │   │   │   │   │   ├── Qualifiers-implementation.html + │   │   │   │   │   ├── Raw-read_002fwrite-Functions.html + │   │   │   │   │   ├── Restricted-Pointers.html + │   │   │   │   │   ├── Return-Address.html + │   │   │   │   │   ├── RL78-Options.html + │   │   │   │   │   ├── RS_002f6000-and-PowerPC-Options.html + │   │   │   │   │   ├── RS_002f6000-and-PowerPC-Pragmas.html + │   │   │   │   │   ├── RX-Built_002din-Functions.html + │   │   │   │   │   ├── RX-Options.html + │   │   │   │   │   ├── S_002f390-and-zSeries-Options.html + │   │   │   │   │   ├── S_002f390-System-z-Built_002din-Functions.html + │   │   │   │   │   ├── Score-Options.html + │   │   │   │   │   ├── Service.html + │   │   │   │   │   ├── SH-Built_002din-Functions.html + │   │   │   │   │   ├── SH-Options.html + │   │   │   │   │   ├── Simple-Constraints.html + │   │   │   │   │   ├── Solaris-2-Options.html + │   │   │   │   │   ├── Solaris-Format-Checks.html + │   │   │   │   │   ├── Solaris-Pragmas.html + │   │   │   │   │   ├── SPARC-Options.html + │   │   │   │   │   ├── SPARC-VIS-Built_002din-Functions.html + │   │   │   │   │   ├── Spec-Files.html + │   │   │   │   │   ├── SPU-Built_002din-Functions.html + │   │   │   │   │   ├── SPU-Options.html + │   │   │   │   │   ├── SPU-Type-Attributes.html + │   │   │   │   │   ├── Standard-Libraries.html + │   │   │   │   │   ├── Standards.html + │   │   │   │   │   ├── Statement-Exprs.html + │   │   │   │   │   ├── Statements-implementation.html + │   │   │   │   │   ├── Static-Definitions.html + │   │   │   │   │   ├── Structure_002dPacking-Pragmas.html + │   │   │   │   │   ├── Structures-unions-enumerations-and-bit_002dfields-implementation.html + │   │   │   │   │   ├── Submodel-Options.html + │   │   │   │   │   ├── Subscripting.html + │   │   │   │   │   ├── Symbol_002dRenaming-Pragmas.html + │   │   │   │   │   ├── Synchronization.html + │   │   │   │   │   ├── System-V-Options.html + │   │   │   │   │   ├── Target-Builtins.html + │   │   │   │   │   ├── Target-Format-Checks.html + │   │   │   │   │   ├── Target-Options.html + │   │   │   │   │   ├── Template-Instantiation.html + │   │   │   │   │   ├── Temporaries.html + │   │   │   │   │   ├── Thread_002dLocal.html + │   │   │   │   │   ├── TI-C6X-Built_002din-Functions.html + │   │   │   │   │   ├── TILE_002dGx-Built_002din-Functions.html + │   │   │   │   │   ├── TILE_002dGx-Options.html + │   │   │   │   │   ├── TILEPro-Built_002din-Functions.html + │   │   │   │   │   ├── TILEPro-Options.html + │   │   │   │   │   ├── Traditional-GNU-Objective_002dC-runtime-API.html + │   │   │   │   │   ├── Translation-implementation.html + │   │   │   │   │   ├── Trouble.html + │   │   │   │   │   ├── Type_002dpunning.html + │   │   │   │   │   ├── Type-Attributes.html + │   │   │   │   │   ├── Type-encoding.html + │   │   │   │   │   ├── Typeof.html + │   │   │   │   │   ├── Type-Traits.html + │   │   │   │   │   ├── Unnamed-Fields.html + │   │   │   │   │   ├── Using-fast-enumeration.html + │   │   │   │   │   ├── V850-Options.html + │   │   │   │   │   ├── Vague-Linkage.html + │   │   │   │   │   ├── Variable-Attributes.html + │   │   │   │   │   ├── Variable-Length.html + │   │   │   │   │   ├── Variadic-Macros.html + │   │   │   │   │   ├── VAX-Options.html + │   │   │   │   │   ├── Vector-Extensions.html + │   │   │   │   │   ├── Visibility-Pragmas.html + │   │   │   │   │   ├── VMS-Options.html + │   │   │   │   │   ├── Volatiles.html + │   │   │   │   │   ├── VxWorks-Options.html + │   │   │   │   │   ├── Warning-Options.html + │   │   │   │   │   ├── Warnings-and-Errors.html + │   │   │   │   │   ├── Weak-Pragmas.html + │   │   │   │   │   ├── What-you-can-and-what-you-cannot-do-in-_002bload.html + │   │   │   │   │   ├── Wtrigraphs.html + │   │   │   │   │   ├── x86_002d64-Options.html + │   │   │   │   │   ├── X86-Built_002din-Functions.html + │   │   │   │   │   ├── x86-specific-memory-model-extensions-for-transactional-memory.html + │   │   │   │   │   ├── X86-transactional-memory-intrinsics.html + │   │   │   │   │   ├── Xstormy16-Options.html + │   │   │   │   │   ├── Xtensa-Options.html + │   │   │   │   │   ├── Zero-Length.html + │   │   │   │   │   └── zSeries-Options.html + │   │   │   │   ├── gccinstall + │   │   │   │   │   ├── binaries.html + │   │   │   │   │   ├── build.html + │   │   │   │   │   ├── configure.html + │   │   │   │   │   ├── download.html + │   │   │   │   │   ├── finalinstall.html + │   │   │   │   │   ├── gfdl.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── old.html + │   │   │   │   │   ├── prerequisites.html + │   │   │   │   │   ├── specific.html + │   │   │   │   │   └── test.html + │   │   │   │   ├── gccint + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fATOMIC_005fLOAD_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fATOMIC_005fSTORE_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fMASTER_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fORDERED_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html + │   │   │   │   │   ├── _003ccode_003eGIMPLE_005fWITH_005fCLEANUP_005fEXPR_003c_002fcode_003e.html + │   │   │   │   │   ├── Accessors.html + │   │   │   │   │   ├── Ada-Tests.html + │   │   │   │   │   ├── Adding-a-new-GIMPLE-statement-code.html + │   │   │   │   │   ├── Adding-new-DECL-node-types.html + │   │   │   │   │   ├── Add-Options.html + │   │   │   │   │   ├── Addressing-Modes.html + │   │   │   │   │   ├── Aggregate-Return.html + │   │   │   │   │   ├── Alias-analysis.html + │   │   │   │   │   ├── Alignment-Output.html + │   │   │   │   │   ├── All-Debuggers.html + │   │   │   │   │   ├── Allocation-Order.html + │   │   │   │   │   ├── Anchored-Addresses.html + │   │   │   │   │   ├── Annotations.html + │   │   │   │   │   ├── Arithmetic.html + │   │   │   │   │   ├── arm_005fneon_005ffp16_005fok.html + │   │   │   │   │   ├── arm_005fneon_005fok.html + │   │   │   │   │   ├── arm_005fneonv2_005fok.html + │   │   │   │   │   ├── Assembler-Format.html + │   │   │   │   │   ├── Assembler.html + │   │   │   │   │   ├── Attr-Example.html + │   │   │   │   │   ├── Attributes.html + │   │   │   │   │   ├── Back-End.html + │   │   │   │   │   ├── Basic-Blocks.html + │   │   │   │   │   ├── Basic-Statements.html + │   │   │   │   │   ├── Bit_002dFields.html + │   │   │   │   │   ├── Blocks.html + │   │   │   │   │   ├── Build.html + │   │   │   │   │   ├── C_002b_002b-ABI.html + │   │   │   │   │   ├── C_002b_002b-Expressions.html + │   │   │   │   │   ├── Caller-Saves.html + │   │   │   │   │   ├── Calls.html + │   │   │   │   │   ├── C-and-C_002b_002b-Trees.html + │   │   │   │   │   ├── CC0-Condition-Codes.html + │   │   │   │   │   ├── C-Constraint-Interface.html + │   │   │   │   │   ├── Classes.html + │   │   │   │   │   ├── Class-Preferences.html + │   │   │   │   │   ├── Cleanups.html + │   │   │   │   │   ├── Code-Iterators.html + │   │   │   │   │   ├── Collect2.html + │   │   │   │   │   ├── Comparisons.html + │   │   │   │   │   ├── compat-Testing.html + │   │   │   │   │   ├── Compound-Expressions.html + │   │   │   │   │   ├── Compound-Lvalues.html + │   │   │   │   │   ├── Concept-Index.html + │   │   │   │   │   ├── Cond-Exec-Macros.html + │   │   │   │   │   ├── Conditional-Execution.html + │   │   │   │   │   ├── Conditional-Expressions.html + │   │   │   │   │   ├── Condition-Code.html + │   │   │   │   │   ├── Config-Fragments.html + │   │   │   │   │   ├── Configuration-Files.html + │   │   │   │   │   ├── Configuration.html + │   │   │   │   │   ├── Configure-Terms.html + │   │   │   │   │   ├── Constant-Attributes.html + │   │   │   │   │   ├── Constant-Definitions.html + │   │   │   │   │   ├── Constant-expressions.html + │   │   │   │   │   ├── Constants.html + │   │   │   │   │   ├── Constraints.html + │   │   │   │   │   ├── Containers.html + │   │   │   │   │   ├── Contributing.html + │   │   │   │   │   ├── Contributors.html + │   │   │   │   │   ├── Control-Flow.html + │   │   │   │   │   ├── Conversions.html + │   │   │   │   │   ├── Copying.html + │   │   │   │   │   ├── Costs.html + │   │   │   │   │   ├── C-Tests.html + │   │   │   │   │   ├── Current-structure-hierarchy.html + │   │   │   │   │   ├── Data-Output.html + │   │   │   │   │   ├── DBX-Hooks.html + │   │   │   │   │   ├── DBX-Options.html + │   │   │   │   │   ├── Debugging-Info.html + │   │   │   │   │   ├── Debug-Information.html + │   │   │   │   │   ├── Decimal-float-library-routines.html + │   │   │   │   │   ├── Declarations.html + │   │   │   │   │   ├── Deficiencies.html + │   │   │   │   │   ├── define_005fenum_005fattr.html + │   │   │   │   │   ├── define_005fenum.html + │   │   │   │   │   ├── define_005fpeephole2.html + │   │   │   │   │   ├── define_005fpeephole.html + │   │   │   │   │   ├── Define-Constraints.html + │   │   │   │   │   ├── Define-Subst-Example.html + │   │   │   │   │   ├── Define-Subst.html + │   │   │   │   │   ├── Define-Subst-Output-Template.html + │   │   │   │   │   ├── Define-Subst-Pattern-Matching.html + │   │   │   │   │   ├── Defining-Attributes.html + │   │   │   │   │   ├── Defining-Mode-Iterators.html + │   │   │   │   │   ├── Defining-Predicates.html + │   │   │   │   │   ├── Delay-Slots.html + │   │   │   │   │   ├── Dependency-analysis.html + │   │   │   │   │   ├── Dependent-Patterns.html + │   │   │   │   │   ├── Directives.html + │   │   │   │   │   ├── Disable-Insn-Alternatives.html + │   │   │   │   │   ├── Dispatch-Tables.html + │   │   │   │   │   ├── Documentation.html + │   │   │   │   │   ├── Driver.html + │   │   │   │   │   ├── Edges.html + │   │   │   │   │   ├── Effective_002dTarget-Keywords.html + │   │   │   │   │   ├── Elimination.html + │   │   │   │   │   ├── Empty-Statements.html + │   │   │   │   │   ├── Emulated-TLS.html + │   │   │   │   │   ├── epilogue-instruction-pattern.html + │   │   │   │   │   ├── Example.html + │   │   │   │   │   ├── Examples.html + │   │   │   │   │   ├── Exception-Handling.html + │   │   │   │   │   ├── Exception-handling-routines.html + │   │   │   │   │   ├── Exception-Region-Output.html + │   │   │   │   │   ├── Expander-Definitions.html + │   │   │   │   │   ├── Expressions.html + │   │   │   │   │   ├── Expression-trees.html + │   │   │   │   │   ├── File-Framework.html + │   │   │   │   │   ├── File-Names-and-DBX.html + │   │   │   │   │   ├── Files.html + │   │   │   │   │   ├── Filesystem.html + │   │   │   │   │   ├── Final-Actions.html + │   │   │   │   │   ├── Fixed_002dpoint-fractional-library-routines.html + │   │   │   │   │   ├── Flags.html + │   │   │   │   │   ├── Floating-Point.html + │   │   │   │   │   ├── Fragments.html + │   │   │   │   │   ├── Frame-Layout.html + │   │   │   │   │   ├── Frame-Registers.html + │   │   │   │   │   ├── Front-End-Config.html + │   │   │   │   │   ├── Front-End-Directory.html + │   │   │   │   │   ├── Front-End.html + │   │   │   │   │   ├── Front-End-Makefile.html + │   │   │   │   │   ├── Function-Basics.html + │   │   │   │   │   ├── Function-Entry.html + │   │   │   │   │   ├── Function-Properties.html + │   │   │   │   │   ├── Functions-for-C_002b_002b.html + │   │   │   │   │   ├── Functions.html + │   │   │   │   │   ├── Funding.html + │   │   │   │   │   ├── gcc-Directory.html + │   │   │   │   │   ├── gcov-Testing.html + │   │   │   │   │   ├── GENERIC.html + │   │   │   │   │   ├── GGC-Roots.html + │   │   │   │   │   ├── GIMPLE-Exception-Handling.html + │   │   │   │   │   ├── GIMPLE.html + │   │   │   │   │   ├── GIMPLE-instruction-set.html + │   │   │   │   │   ├── GIMPLE-sequences.html + │   │   │   │   │   ├── Gimplification-pass.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── GNU-Project.html + │   │   │   │   │   ├── GTY-Options.html + │   │   │   │   │   ├── Header-Dirs.html + │   │   │   │   │   ├── Headers.html + │   │   │   │   │   ├── Host-Common.html + │   │   │   │   │   ├── Host-Config.html + │   │   │   │   │   ├── Host-Fragment.html + │   │   │   │   │   ├── Host-Misc.html + │   │   │   │   │   ├── Identifiers.html + │   │   │   │   │   ├── Incdec.html + │   │   │   │   │   ├── Including-Patterns.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Initialization.html + │   │   │   │   │   ├── Insn-Attributes.html + │   │   │   │   │   ├── Insn-Canonicalizations.html + │   │   │   │   │   ├── Insn-Lengths.html + │   │   │   │   │   ├── Insns.html + │   │   │   │   │   ├── Insn-Splitting.html + │   │   │   │   │   ├── Instruction-Output.html + │   │   │   │   │   ├── Integer-library-routines.html + │   │   │   │   │   ├── Interface.html + │   │   │   │   │   ├── Internal-flags.html + │   │   │   │   │   ├── Internal-structure.html + │   │   │   │   │   ├── Int-Iterators.html + │   │   │   │   │   ├── Invoking-the-garbage-collector.html + │   │   │   │   │   ├── IPA.html + │   │   │   │   │   ├── Iterators.html + │   │   │   │   │   ├── Java-Trees.html + │   │   │   │   │   ├── Jump-Patterns.html + │   │   │   │   │   ├── Jumps.html + │   │   │   │   │   ├── Label-Output.html + │   │   │   │   │   ├── Lambda.html + │   │   │   │   │   ├── Language_002ddependent-trees.html + │   │   │   │   │   ├── Languages.html + │   │   │   │   │   ├── LCSSA.html + │   │   │   │   │   ├── Leaf-Functions.html + │   │   │   │   │   ├── Libgcc.html + │   │   │   │   │   ├── libgcj-Tests.html + │   │   │   │   │   ├── Library-Calls.html + │   │   │   │   │   ├── Library-Files.html + │   │   │   │   │   ├── Liveness-information.html + │   │   │   │   │   ├── Logical-Operators.html + │   │   │   │   │   ├── loop_002div.html + │   │   │   │   │   ├── Loop-Analysis-and-Representation.html + │   │   │   │   │   ├── Looping-Patterns.html + │   │   │   │   │   ├── Loop-manipulation.html + │   │   │   │   │   ├── Loop-querying.html + │   │   │   │   │   ├── Loop-representation.html + │   │   │   │   │   ├── LTO.html + │   │   │   │   │   ├── LTO-object-file-layout.html + │   │   │   │   │   ├── LTO-Overview.html + │   │   │   │   │   ├── LTO-Testing.html + │   │   │   │   │   ├── Machine_002dIndependent-Predicates.html + │   │   │   │   │   ├── Machine-Constraints.html + │   │   │   │   │   ├── Machine-Desc.html + │   │   │   │   │   ├── Machine-Modes.html + │   │   │   │   │   ├── Macros-and-Functions.html + │   │   │   │   │   ├── Macros-for-Initialization.html + │   │   │   │   │   ├── Maintaining-the-CFG.html + │   │   │   │   │   ├── Makefile.html + │   │   │   │   │   ├── Manipulating-GIMPLE-statements.html + │   │   │   │   │   ├── Man-Page-Generation.html + │   │   │   │   │   ├── Memory-model.html + │   │   │   │   │   ├── MIPS-Coprocessors.html + │   │   │   │   │   ├── Miscellaneous-Docs.html + │   │   │   │   │   ├── Miscellaneous-routines.html + │   │   │   │   │   ├── Misc.html + │   │   │   │   │   ├── MODE_005fCC-Condition-Codes.html + │   │   │   │   │   ├── Mode-Iterators.html + │   │   │   │   │   ├── Mode-Switching.html + │   │   │   │   │   ├── Modifiers.html + │   │   │   │   │   ├── Multi_002dAlternative.html + │   │   │   │   │   ├── Named-Address-Spaces.html + │   │   │   │   │   ├── Namespaces.html + │   │   │   │   │   ├── Number-of-iterations.html + │   │   │   │   │   ├── Old-Constraints.html + │   │   │   │   │   ├── Omega.html + │   │   │   │   │   ├── OpenMP.html + │   │   │   │   │   ├── Operands.html + │   │   │   │   │   ├── Option-file-format.html + │   │   │   │   │   ├── Option-Index.html + │   │   │   │   │   ├── Option-properties.html + │   │   │   │   │   ├── Options.html + │   │   │   │   │   ├── Output-Statement.html + │   │   │   │   │   ├── Output-Template.html + │   │   │   │   │   ├── Overview.html + │   │   │   │   │   ├── Parsing-pass.html + │   │   │   │   │   ├── Passes.html + │   │   │   │   │   ├── Pass-manager.html + │   │   │   │   │   ├── Pattern-Ordering.html + │   │   │   │   │   ├── Patterns.html + │   │   │   │   │   ├── PCH-Target.html + │   │   │   │   │   ├── Peephole-Definitions.html + │   │   │   │   │   ├── Per_002dFunction-Data.html + │   │   │   │   │   ├── PIC.html + │   │   │   │   │   ├── Plugin-API.html + │   │   │   │   │   ├── Plugins-attr.html + │   │   │   │   │   ├── Plugins-building.html + │   │   │   │   │   ├── Plugins-description.html + │   │   │   │   │   ├── Plugins-gate.html + │   │   │   │   │   ├── Plugins-GC.html + │   │   │   │   │   ├── Plugins.html + │   │   │   │   │   ├── Plugins-loading.html + │   │   │   │   │   ├── Plugins-pass.html + │   │   │   │   │   ├── Plugins-recording.html + │   │   │   │   │   ├── Plugins-tracking.html + │   │   │   │   │   ├── Portability.html + │   │   │   │   │   ├── Predicates.html + │   │   │   │   │   ├── Processor-pipeline-description.html + │   │   │   │   │   ├── Profile-information.html + │   │   │   │   │   ├── Profiling.html + │   │   │   │   │   ├── profopt-Testing.html + │   │   │   │   │   ├── prologue-instruction-pattern.html + │   │   │   │   │   ├── Reading-RTL.html + │   │   │   │   │   ├── Register-Arguments.html + │   │   │   │   │   ├── Register-Basics.html + │   │   │   │   │   ├── Register-Classes.html + │   │   │   │   │   ├── Registers.html + │   │   │   │   │   ├── Regs-and-Memory.html + │   │   │   │   │   ├── Require-Support.html + │   │   │   │   │   ├── RTL-Classes.html + │   │   │   │   │   ├── RTL-Declarations.html + │   │   │   │   │   ├── RTL.html + │   │   │   │   │   ├── RTL-Objects.html + │   │   │   │   │   ├── RTL-passes.html + │   │   │   │   │   ├── RTL-Template.html + │   │   │   │   │   ├── Run_002dtime-Target.html + │   │   │   │   │   ├── Scalar-evolutions.html + │   │   │   │   │   ├── Scalar-Return.html + │   │   │   │   │   ├── Scheduling.html + │   │   │   │   │   ├── SDB-and-DWARF.html + │   │   │   │   │   ├── Sections.html + │   │   │   │   │   ├── Selectors.html + │   │   │   │   │   ├── Sequence-iterators.html + │   │   │   │   │   ├── Sharing.html + │   │   │   │   │   ├── shift-patterns.html + │   │   │   │   │   ├── Side-Effects.html + │   │   │   │   │   ├── Simple-Constraints.html + │   │   │   │   │   ├── Soft-float-library-routines.html + │   │   │   │   │   ├── Source-Tree.html + │   │   │   │   │   ├── Special-Accessors.html + │   │   │   │   │   ├── SSA.html + │   │   │   │   │   ├── SSA-Operands.html + │   │   │   │   │   ├── Stack-and-Calling.html + │   │   │   │   │   ├── Stack-Arguments.html + │   │   │   │   │   ├── Stack-Checking.html + │   │   │   │   │   ├── Stack-Registers.html + │   │   │   │   │   ├── Stack-Smashing-Protection.html + │   │   │   │   │   ├── Standard-Names.html + │   │   │   │   │   ├── Statement-and-operand-traversals.html + │   │   │   │   │   ├── Statement-Sequences.html + │   │   │   │   │   ├── Statements-for-C_002b_002b.html + │   │   │   │   │   ├── Statements.html + │   │   │   │   │   ├── Storage-Layout.html + │   │   │   │   │   ├── Storage-References.html + │   │   │   │   │   ├── Subdirectories.html + │   │   │   │   │   ├── Subst-Iterators.html + │   │   │   │   │   ├── Substitutions.html + │   │   │   │   │   ├── System-Config.html + │   │   │   │   │   ├── Tagging-Insns.html + │   │   │   │   │   ├── Tail-Calls.html + │   │   │   │   │   ├── TARGET_005fHAVE_005fSWITCHABLE_005fBSS_005fSECTIONS.html + │   │   │   │   │   ├── TARGET_005fSHIFT_005fTRUNCATION_005fMASK.html + │   │   │   │   │   ├── Target-Attributes.html + │   │   │   │   │   ├── Target-Fragment.html + │   │   │   │   │   ├── Target-Macros.html + │   │   │   │   │   ├── Target-Structure.html + │   │   │   │   │   ├── Temporaries.html + │   │   │   │   │   ├── Test-Directives.html + │   │   │   │   │   ├── Test-Idioms.html + │   │   │   │   │   ├── Testsuites.html + │   │   │   │   │   ├── Texinfo-Manuals.html + │   │   │   │   │   ├── Top-Level.html + │   │   │   │   │   ├── Torture-Tests.html + │   │   │   │   │   ├── Trampolines.html + │   │   │   │   │   ├── Tree-overview.html + │   │   │   │   │   ├── Tree-SSA.html + │   │   │   │   │   ├── Tree-SSA-passes.html + │   │   │   │   │   ├── Troubleshooting.html + │   │   │   │   │   ├── Tuple-representation.html + │   │   │   │   │   ├── Tuple-specific-accessors.html + │   │   │   │   │   ├── Type-Information.html + │   │   │   │   │   ├── Type-Layout.html + │   │   │   │   │   ├── Types-for-C_002b_002b.html + │   │   │   │   │   ├── Types.html + │   │   │   │   │   ├── Unary-and-Binary-Expressions.html + │   │   │   │   │   ├── Uninitialized-Data.html + │   │   │   │   │   ├── User-GC.html + │   │   │   │   │   ├── Values-in-Registers.html + │   │   │   │   │   ├── Varargs.html + │   │   │   │   │   ├── Vector-Operations.html + │   │   │   │   │   ├── Vectors.html + │   │   │   │   │   ├── VMS-Debug.html + │   │   │   │   │   ├── WHOPR.html + │   │   │   │   │   ├── window_005fsave-instruction-pattern.html + │   │   │   │   │   └── Working-with-declarations.html + │   │   │   │   ├── gdb + │   │   │   │   │   ├── _002dinterpreter_002dexec.html + │   │   │   │   │   ├── _002dnh.html + │   │   │   │   │   ├── _002dnx.html + │   │   │   │   │   ├── _002dvar_002dlist_002dchildren.html + │   │   │   │   │   ├── _002dvar_002dset_002dformat.html + │   │   │   │   │   ├── _002dvar_002dset_002dfrozen.html + │   │   │   │   │   ├── _002dvar_002dset_002dupdate_002drange.html + │   │   │   │   │   ├── _002dvar_002dset_002dvisualizer.html + │   │   │   │   │   ├── _002dvar_002dupdate.html + │   │   │   │   │   ├── AArch64-Features.html + │   │   │   │   │   ├── AArch64.html + │   │   │   │   │   ├── ABI.html + │   │   │   │   │   ├── A-code-overlay.html + │   │   │   │   │   ├── Active-Targets.html + │   │   │   │   │   ├── Ada-Glitches.html + │   │   │   │   │   ├── Ada.html + │   │   │   │   │   ├── Ada-Mode-Intro.html + │   │   │   │   │   ├── Ada-Tasks-and-Core-Files.html + │   │   │   │   │   ├── Ada-Tasks.html + │   │   │   │   │   ├── add_002dauto_002dload_002dsafe_002dpath.html + │   │   │   │   │   ├── Additions-to-Ada.html + │   │   │   │   │   ├── agent-expression-object.html + │   │   │   │   │   ├── Agent-Expressions.html + │   │   │   │   │   ├── Aliases.html + │   │   │   │   │   ├── All_002dStop-Mode.html + │   │   │   │   │   ├── Alpha.html + │   │   │   │   │   ├── Altering.html + │   │   │   │   │   ├── Ambiguous-Expressions.html + │   │   │   │   │   ├── Analyze-Collected-Data.html + │   │   │   │   │   ├── Annotations-for-Running.html + │   │   │   │   │   ├── Annotations.html + │   │   │   │   │   ├── Annotations-Overview.html + │   │   │   │   │   ├── Architecture_002dSpecific-Protocol-Details.html + │   │   │   │   │   ├── Architectures.html + │   │   │   │   │   ├── Architectures-In-Python.html + │   │   │   │   │   ├── Arguments.html + │   │   │   │   │   ├── ARM_002dSpecific-Protocol-Details.html + │   │   │   │   │   ├── ARM-Breakpoint-Kinds.html + │   │   │   │   │   ├── ARM-Features.html + │   │   │   │   │   ├── ARM.html + │   │   │   │   │   ├── Arrays.html + │   │   │   │   │   ├── Assignment.html + │   │   │   │   │   ├── Asynchronous-and-non_002dstop-modes.html + │   │   │   │   │   ├── Attach.html + │   │   │   │   │   ├── Auto_002dloading.html + │   │   │   │   │   ├── Auto_002dloading-safe-path.html + │   │   │   │   │   ├── Auto_002dloading-verbose-mode.html + │   │   │   │   │   ├── Auto-Display.html + │   │   │   │   │   ├── Automatically.html + │   │   │   │   │   ├── Automatic-Overlay-Debugging.html + │   │   │   │   │   ├── AVR.html + │   │   │   │   │   ├── Background-Execution.html + │   │   │   │   │   ├── Backtrace.html + │   │   │   │   │   ├── Basic-Python.html + │   │   │   │   │   ├── bc.html + │   │   │   │   │   ├── Binary-Data.html + │   │   │   │   │   ├── Bindable-Readline-Commands.html + │   │   │   │   │   ├── Blocks-In-Python.html + │   │   │   │   │   ├── Bootstrapping.html + │   │   │   │   │   ├── Branch-Trace-Format.html + │   │   │   │   │   ├── Break-Commands.html + │   │   │   │   │   ├── Breakpoint_002drelated-Warnings.html + │   │   │   │   │   ├── Breakpoints.html + │   │   │   │   │   ├── Breakpoints-In-Python.html + │   │   │   │   │   ├── BSD-libkvm-Interface.html + │   │   │   │   │   ├── bs.html + │   │   │   │   │   ├── Bug-Criteria.html + │   │   │   │   │   ├── Bug-Reporting.html + │   │   │   │   │   ├── Built_002dIn-Func_002fProc.html + │   │   │   │   │   ├── Bytecode-Descriptions.html + │   │   │   │   │   ├── Byte-Order.html + │   │   │   │   │   ├── Caching-Remote-Data.html + │   │   │   │   │   ├── Calling.html + │   │   │   │   │   ├── C-Checks.html + │   │   │   │   │   ├── C-Constants.html + │   │   │   │   │   ├── C-Defaults.html + │   │   │   │   │   ├── Character-Sets.html + │   │   │   │   │   ├── Checkpoint_002fRestart.html + │   │   │   │   │   ├── Checks.html + │   │   │   │   │   ├── C.html + │   │   │   │   │   ├── close.html + │   │   │   │   │   ├── Command-and-Variable-Index.html + │   │   │   │   │   ├── Command-Files.html + │   │   │   │   │   ├── Command-History.html + │   │   │   │   │   ├── Command-Line-Editing.html + │   │   │   │   │   ├── Commands-For-Completion.html + │   │   │   │   │   ├── Commands-For-History.html + │   │   │   │   │   ├── Commands-For-Killing.html + │   │   │   │   │   ├── Commands-For-Moving.html + │   │   │   │   │   ├── Commands-For-Text.html + │   │   │   │   │   ├── Commands.html + │   │   │   │   │   ├── Commands-In-Python.html + │   │   │   │   │   ├── Command-Syntax.html + │   │   │   │   │   ├── Compilation.html + │   │   │   │   │   ├── Completion.html + │   │   │   │   │   ├── Concept-Index.html + │   │   │   │   │   ├── Conditional-Init-Constructs.html + │   │   │   │   │   ├── Conditions.html + │   │   │   │   │   ├── Config-Names.html + │   │   │   │   │   ├── Configurations.html + │   │   │   │   │   ├── Configure-Options.html + │   │   │   │   │   ├── confirmation-requests.html + │   │   │   │   │   ├── Connecting.html + │   │   │   │   │   ├── Console-I_002fO.html + │   │   │   │   │   ├── Constants.html + │   │   │   │   │   ├── Context-management.html + │   │   │   │   │   ├── Continuing-and-Stepping.html + │   │   │   │   │   ├── Contributors.html + │   │   │   │   │   ├── Control-Agent.html + │   │   │   │   │   ├── Controlling-GDB.html + │   │   │   │   │   ├── Convenience-Funs.html + │   │   │   │   │   ├── Convenience-Vars.html + │   │   │   │   │   ├── C-Operators.html + │   │   │   │   │   ├── Copying.html + │   │   │   │   │   ├── Core-File-Generation.html + │   │   │   │   │   ├── C-Plus-Plus-Expressions.html + │   │   │   │   │   ├── Create-and-Delete-Tracepoints.html + │   │   │   │   │   ├── CRIS.html + │   │   │   │   │   ├── Custom-Debug-Info.html + │   │   │   │   │   ├── cycle-step-packet.html + │   │   │   │   │   ├── Cygwin-Native.html + │   │   │   │   │   ├── Darwin.html + │   │   │   │   │   ├── Data-Files.html + │   │   │   │   │   ├── Data.html + │   │   │   │   │   ├── debug_002dfile_002ddirectory.html + │   │   │   │   │   ├── Debugging-C.html + │   │   │   │   │   ├── Debugging-C-Plus-Plus.html + │   │   │   │   │   ├── Debugging-Output.html + │   │   │   │   │   ├── Debug-Session.html + │   │   │   │   │   ├── Decimal-Floating-Point.html + │   │   │   │   │   ├── Declarations.html + │   │   │   │   │   ├── Define.html + │   │   │   │   │   ├── Delete-Breaks.html + │   │   │   │   │   ├── Deviations.html + │   │   │   │   │   ├── D.html + │   │   │   │   │   ├── Disabling.html + │   │   │   │   │   ├── disconnected-tracing.html + │   │   │   │   │   ├── DJGPP-Native.html + │   │   │   │   │   ├── dotdebug_005fgdb_005fscripts-section.html + │   │   │   │   │   ├── Dump_002fRestore-Files.html + │   │   │   │   │   ├── Dynamic-Printf.html + │   │   │   │   │   ├── Edit.html + │   │   │   │   │   ├── Editing.html + │   │   │   │   │   ├── Emacs.html + │   │   │   │   │   ├── Embedded-OS.html + │   │   │   │   │   ├── Embedded-Processors.html + │   │   │   │   │   ├── Enable-and-Disable-Tracepoints.html + │   │   │   │   │   ├── Environment.html + │   │   │   │   │   ├── Errno-Values.html + │   │   │   │   │   ├── Error-in-Breakpoints.html + │   │   │   │   │   ├── Errors.html + │   │   │   │   │   ├── Event-Designators.html + │   │   │   │   │   ├── Events-In-Python.html + │   │   │   │   │   ├── Examples.html + │   │   │   │   │   ├── Exception-Handling.html + │   │   │   │   │   ├── Expat.html + │   │   │   │   │   ├── Expressions.html + │   │   │   │   │   ├── extended-mode.html + │   │   │   │   │   ├── Extending-GDB.html + │   │   │   │   │   ├── extra-signal-information.html + │   │   │   │   │   ├── File_002dI_002fO-Examples.html + │   │   │   │   │   ├── File_002dI_002fO-Overview.html + │   │   │   │   │   ├── File_002dI_002fO-Remote-Protocol-Extension.html + │   │   │   │   │   ├── Filenames.html + │   │   │   │   │   ├── File-Options.html + │   │   │   │   │   ├── Files.html + │   │   │   │   │   ├── File-Transfer.html + │   │   │   │   │   ├── Finish-Breakpoints-in-Python.html + │   │   │   │   │   ├── Floating-Point-Hardware.html + │   │   │   │   │   ├── Forks.html + │   │   │   │   │   ├── Formatting-Documentation.html + │   │   │   │   │   ├── Fortran-Defaults.html + │   │   │   │   │   ├── Fortran.html + │   │   │   │   │   ├── Fortran-Operators.html + │   │   │   │   │   ├── Frame-Info.html + │   │   │   │   │   ├── Frames.html + │   │   │   │   │   ├── Frames-In-Python.html + │   │   │   │   │   ├── Free-Documentation.html + │   │   │   │   │   ├── Free-Software.html + │   │   │   │   │   ├── Functions-In-Python.html + │   │   │   │   │   ├── gdb_002eprinting.html + │   │   │   │   │   ├── gdb_002eprompt.html + │   │   │   │   │   ├── gdb_002etypes.html + │   │   │   │   │   ├── GDB_002fM2.html + │   │   │   │   │   ├── GDB_002fMI-Ada-Exception-Information.html + │   │   │   │   │   ├── GDB_002fMI-Ada-Tasking-Commands.html + │   │   │   │   │   ├── GDB_002fMI-Async-Records.html + │   │   │   │   │   ├── GDB_002fMI-Breakpoint-Commands.html + │   │   │   │   │   ├── GDB_002fMI-Breakpoint-Information.html + │   │   │   │   │   ├── GDB_002fMI-Catchpoint-Commands.html + │   │   │   │   │   ├── GDB_002fMI-Command-Description-Format.html + │   │   │   │   │   ├── GDB_002fMI-Command-Syntax.html + │   │   │   │   │   ├── GDB_002fMI-Compatibility-with-CLI.html + │   │   │   │   │   ├── GDB_002fMI-Data-Manipulation.html + │   │   │   │   │   ├── GDB_002fMI-Development-and-Front-Ends.html + │   │   │   │   │   ├── GDB_002fMI-File-Commands.html + │   │   │   │   │   ├── GDB_002fMI-File-Transfer-Commands.html + │   │   │   │   │   ├── GDB_002fMI-Frame-Information.html + │   │   │   │   │   ├── GDB_002fMI-General-Design.html + │   │   │   │   │   ├── GDB_002fMI.html + │   │   │   │   │   ├── GDB_002fMI-Input-Syntax.html + │   │   │   │   │   ├── GDB_002fMI-Miscellaneous-Commands.html + │   │   │   │   │   ├── GDB_002fMI-Output-Records.html + │   │   │   │   │   ├── GDB_002fMI-Output-Syntax.html + │   │   │   │   │   ├── GDB_002fMI-Program-Context.html + │   │   │   │   │   ├── GDB_002fMI-Program-Execution.html + │   │   │   │   │   ├── GDB_002fMI-Result-Records.html + │   │   │   │   │   ├── GDB_002fMI-Simple-Examples.html + │   │   │   │   │   ├── GDB_002fMI-Stack-Manipulation.html + │   │   │   │   │   ├── GDB_002fMI-Stream-Records.html + │   │   │   │   │   ├── GDB_002fMI-Symbol-Query.html + │   │   │   │   │   ├── GDB_002fMI-Target-Manipulation.html + │   │   │   │   │   ├── GDB_002fMI-Thread-Commands.html + │   │   │   │   │   ├── GDB_002fMI-Thread-Information.html + │   │   │   │   │   ├── GDB_002fMI-Tracepoint-Commands.html + │   │   │   │   │   ├── GDB_002fMI-Variable-Objects.html + │   │   │   │   │   ├── GDB-Bugs.html + │   │   │   │   │   ├── GDB-Files.html + │   │   │   │   │   ├── General-Bytecode-Design.html + │   │   │   │   │   ├── General-Query-Packets.html + │   │   │   │   │   ├── gettimeofday.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── Go.html + │   │   │   │   │   ├── Help.html + │   │   │   │   │   ├── History-Interaction.html + │   │   │   │   │   ├── Home-Directory-Init-File.html + │   │   │   │   │   ├── Hooks.html + │   │   │   │   │   ├── Host-I_002fO-Packets.html + │   │   │   │   │   ├── How-Overlays-Work.html + │   │   │   │   │   ├── HP_002dUX.html + │   │   │   │   │   ├── HPPA.html + │   │   │   │   │   ├── Hurd-Native.html + │   │   │   │   │   ├── i386-Features.html + │   │   │   │   │   ├── i386.html + │   │   │   │   │   ├── In_002dProcess-Agent.html + │   │   │   │   │   ├── In_002dProcess-Agent-Protocol.html + │   │   │   │   │   ├── Index-Files.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Index-Section-Format.html + │   │   │   │   │   ├── Inferiors-and-Programs.html + │   │   │   │   │   ├── Inferiors-In-Python.html + │   │   │   │   │   ├── info-auto_002dload-gdb_002dscripts.html + │   │   │   │   │   ├── info-auto_002dload.html + │   │   │   │   │   ├── info-auto_002dload-libthread_002ddb.html + │   │   │   │   │   ├── info-auto_002dload-local_002dgdbinit.html + │   │   │   │   │   ├── info-auto_002dload-python_002dscripts.html + │   │   │   │   │   ├── Init-File-in-the-Current-Directory-during-Startup.html + │   │   │   │   │   ├── Init-File-in-the-Current-Directory.html + │   │   │   │   │   ├── Inline-Functions.html + │   │   │   │   │   ├── In-Memoriam.html + │   │   │   │   │   ├── Input_002fOutput.html + │   │   │   │   │   ├── insert-breakpoint-or-watchpoint-packet.html + │   │   │   │   │   ├── Installing-GDB.html + │   │   │   │   │   ├── install-tracepoint-in-tracing.html + │   │   │   │   │   ├── Integral-Datatypes.html + │   │   │   │   │   ├── Interpreters.html + │   │   │   │   │   ├── Interrupted-System-Calls.html + │   │   │   │   │   ├── Interrupts.html + │   │   │   │   │   ├── Introduction-and-Notation.html + │   │   │   │   │   ├── Invalidation.html + │   │   │   │   │   ├── Invocation.html + │   │   │   │   │   ├── Invoking-GDB.html + │   │   │   │   │   ├── IPA-Protocol-Commands.html + │   │   │   │   │   ├── IPA-Protocol-Objects.html + │   │   │   │   │   ├── isatty.html + │   │   │   │   │   ├── JIT-Interface.html + │   │   │   │   │   ├── Jumping.html + │   │   │   │   │   ├── Keyboard-Macros.html + │   │   │   │   │   ├── Kill-Process.html + │   │   │   │   │   ├── Languages.html + │   │   │   │   │   ├── Lazy-Strings-In-Python.html + │   │   │   │   │   ├── Library-List-Format-for-SVR4-Targets.html + │   │   │   │   │   ├── Library-List-Format.html + │   │   │   │   │   ├── libthread_005fdb_002eso_002e1-file.html + │   │   │   │   │   ├── Limits.html + │   │   │   │   │   ├── linux-info-os-infotypes.html + │   │   │   │   │   ├── List.html + │   │   │   │   │   ├── Listing-Static-Tracepoint-Markers.html + │   │   │   │   │   ├── Listing-Tracepoints.html + │   │   │   │   │   ├── List-of-Supported-Calls.html + │   │   │   │   │   ├── load.html + │   │   │   │   │   ├── Logging-Output.html + │   │   │   │   │   ├── Lseek-Flags.html + │   │   │   │   │   ├── lseek.html + │   │   │   │   │   ├── M2-Checks.html + │   │   │   │   │   ├── M2-Constants.html + │   │   │   │   │   ├── M2-Defaults.html + │   │   │   │   │   ├── M2-Operators.html + │   │   │   │   │   ├── M2-Scope.html + │   │   │   │   │   ├── M2-Types.html + │   │   │   │   │   ├── M32R_002fD.html + │   │   │   │   │   ├── M68K-Features.html + │   │   │   │   │   ├── M68K.html + │   │   │   │   │   ├── Machine-Code.html + │   │   │   │   │   ├── Macros.html + │   │   │   │   │   ├── Maintenance-Commands.html + │   │   │   │   │   ├── maint-info-breakpoints.html + │   │   │   │   │   ├── Manually.html + │   │   │   │   │   ├── Memory.html + │   │   │   │   │   ├── Memory-Map-Format.html + │   │   │   │   │   ├── Memory-Region-Attributes.html + │   │   │   │   │   ├── Memory-Transfer.html + │   │   │   │   │   ├── Messages_002fWarnings.html + │   │   │   │   │   ├── Method-Names-in-Commands.html + │   │   │   │   │   ├── MicroBlaze.html + │   │   │   │   │   ├── MiniDebugInfo.html + │   │   │   │   │   ├── MIPS_002dSpecific-Protocol-Details.html + │   │   │   │   │   ├── MIPS-Breakpoint-Kinds.html + │   │   │   │   │   ├── MIPS-Embedded.html + │   │   │   │   │   ├── MIPS-Features.html + │   │   │   │   │   ├── MIPS.html + │   │   │   │   │   ├── MIPS-Register-packet-Format.html + │   │   │   │   │   ├── Miscellaneous-Commands.html + │   │   │   │   │   ├── mode_005ft-Values.html + │   │   │   │   │   ├── Mode-Options.html + │   │   │   │   │   ├── Modifiers.html + │   │   │   │   │   ├── Modula_002d2.html + │   │   │   │   │   ├── Monitor-Commands-for-gdbserver.html + │   │   │   │   │   ├── multiprocess-extensions.html + │   │   │   │   │   ├── Native.html + │   │   │   │   │   ├── Non_002ddebug-DLL-Symbols.html + │   │   │   │   │   ├── Non_002dStop-Mode.html + │   │   │   │   │   ├── Notification-Packets.html + │   │   │   │   │   ├── Numbers.html + │   │   │   │   │   ├── Numeric-Arguments.html + │   │   │   │   │   ├── Objective_002dC.html + │   │   │   │   │   ├── objfile_002dgdb_002egdb-file.html + │   │   │   │   │   ├── objfile_002dgdb_002epy-file.html + │   │   │   │   │   ├── Objfiles-In-Python.html + │   │   │   │   │   ├── Observer-Mode.html + │   │   │   │   │   ├── Omissions-from-Ada.html + │   │   │   │   │   ├── OpenCL-C-Datatypes.html + │   │   │   │   │   ├── OpenCL-C-Expressions.html + │   │   │   │   │   ├── OpenCL-C.html + │   │   │   │   │   ├── OpenCL-C-Operators.html + │   │   │   │   │   ├── Open-Flags.html + │   │   │   │   │   ├── open.html + │   │   │   │   │   ├── OpenRISC-1000.html + │   │   │   │   │   ├── Operating-System-Information.html + │   │   │   │   │   ├── Optimized-Code.html + │   │   │   │   │   ├── Option-_002dinit_002deval_002dcommand.html + │   │   │   │   │   ├── OS-Information.html + │   │   │   │   │   ├── Other-Misc-Settings.html + │   │   │   │   │   ├── Output-Formats.html + │   │   │   │   │   ├── Output.html + │   │   │   │   │   ├── Overlay-Commands.html + │   │   │   │   │   ├── Overlay-Sample-Program.html + │   │   │   │   │   ├── Overlays.html + │   │   │   │   │   ├── Overview.html + │   │   │   │   │   ├── Packet-Acknowledgment.html + │   │   │   │   │   ├── Packets.html + │   │   │   │   │   ├── PA.html + │   │   │   │   │   ├── Parameters-In-Python.html + │   │   │   │   │   ├── Pascal.html + │   │   │   │   │   ├── Patching.html + │   │   │   │   │   ├── Pointer-Values.html + │   │   │   │   │   ├── PowerPC-Embedded.html + │   │   │   │   │   ├── PowerPC-Features.html + │   │   │   │   │   ├── PowerPC.html + │   │   │   │   │   ├── Predefined-Target-Types.html + │   │   │   │   │   ├── Pretty_002dPrinter-Commands.html + │   │   │   │   │   ├── Pretty_002dPrinter-Example.html + │   │   │   │   │   ├── Pretty_002dPrinter-Introduction.html + │   │   │   │   │   ├── Pretty-Printing-API.html + │   │   │   │   │   ├── Pretty-Printing.html + │   │   │   │   │   ├── Print-Settings.html + │   │   │   │   │   ├── Process-list.html + │   │   │   │   │   ├── Process-Record-and-Replay.html + │   │   │   │   │   ├── Progspaces-In-Python.html + │   │   │   │   │   ├── prompt_005fhook.html + │   │   │   │   │   ├── Prompt.html + │   │   │   │   │   ├── Prompting.html + │   │   │   │   │   ├── Protocol_002dspecific-Representation-of-Datatypes.html + │   │   │   │   │   ├── Protocol-Basics.html + │   │   │   │   │   ├── Python-API.html + │   │   │   │   │   ├── Python-Auto_002dloading.html + │   │   │   │   │   ├── Python-Commands.html + │   │   │   │   │   ├── Python.html + │   │   │   │   │   ├── Python-modules.html + │   │   │   │   │   ├── QNonStop.html + │   │   │   │   │   ├── QPassSignals.html + │   │   │   │   │   ├── QProgramSignals.html + │   │   │   │   │   ├── qSearch-memory.html + │   │   │   │   │   ├── QStartNoAckMode.html + │   │   │   │   │   ├── qSupported.html + │   │   │   │   │   ├── QTBuffer_002dsize.html + │   │   │   │   │   ├── QTDisable.html + │   │   │   │   │   ├── QTEnable.html + │   │   │   │   │   ├── qTfSTM.html + │   │   │   │   │   ├── qTsSTM.html + │   │   │   │   │   ├── qTSTMat.html + │   │   │   │   │   ├── Quitting-GDB.html + │   │   │   │   │   ├── qXfer-auxiliary-vector-read.html + │   │   │   │   │   ├── qXfer-btrace-read.html + │   │   │   │   │   ├── qXfer-fdpic-loadmap-read.html + │   │   │   │   │   ├── qXfer-library-list-read.html + │   │   │   │   │   ├── qXfer-memory-map-read.html + │   │   │   │   │   ├── qXfer-osdata-read.html + │   │   │   │   │   ├── qXfer-read.html + │   │   │   │   │   ├── qXfer-sdata-read.html + │   │   │   │   │   ├── qXfer-siginfo-read.html + │   │   │   │   │   ├── qXfer-siginfo-write.html + │   │   │   │   │   ├── qXfer-spu-read.html + │   │   │   │   │   ├── qXfer-spu-write.html + │   │   │   │   │   ├── qXfer-svr4-library-list-read.html + │   │   │   │   │   ├── qXfer-target-description-read.html + │   │   │   │   │   ├── qXfer-threads-read.html + │   │   │   │   │   ├── qXfer-traceframe-info-read.html + │   │   │   │   │   ├── qXfer-unwind-info-block.html + │   │   │   │   │   ├── qXfer-write.html + │   │   │   │   │   ├── Range-Checking.html + │   │   │   │   │   ├── Rationale.html + │   │   │   │   │   ├── Ravenscar-Profile.html + │   │   │   │   │   ├── read.html + │   │   │   │   │   ├── Readline-Arguments.html + │   │   │   │   │   ├── Readline-Bare-Essentials.html + │   │   │   │   │   ├── Readline-Init-File.html + │   │   │   │   │   ├── Readline-Init-File-Syntax.html + │   │   │   │   │   ├── Readline-Interaction.html + │   │   │   │   │   ├── Readline-Killing-Commands.html + │   │   │   │   │   ├── Readline-Movement-Commands.html + │   │   │   │   │   ├── Readline-vi-Mode.html + │   │   │   │   │   ├── read-registers-packet.html + │   │   │   │   │   ├── Registering-Code.html + │   │   │   │   │   ├── Registers.html + │   │   │   │   │   ├── Remote-Configuration.html + │   │   │   │   │   ├── Remote-Debugging.html + │   │   │   │   │   ├── Remote-Non_002dStop.html + │   │   │   │   │   ├── Remote-Protocol.html + │   │   │   │   │   ├── Remote-Stub.html + │   │   │   │   │   ├── rename.html + │   │   │   │   │   ├── Requirements.html + │   │   │   │   │   ├── Retrieving-Descriptions.html + │   │   │   │   │   ├── Returning.html + │   │   │   │   │   ├── Reverse-Execution.html + │   │   │   │   │   ├── Running-Configure.html + │   │   │   │   │   ├── Running.html + │   │   │   │   │   ├── Sample-Init-File.html + │   │   │   │   │   ├── Sample-Session.html + │   │   │   │   │   ├── Save-Breakpoints.html + │   │   │   │   │   ├── save-tracepoints.html + │   │   │   │   │   ├── Screen-Size.html + │   │   │   │   │   ├── Search.html + │   │   │   │   │   ├── Searching.html + │   │   │   │   │   ├── Searching-Memory.html + │   │   │   │   │   ├── Selecting-Pretty_002dPrinters.html + │   │   │   │   │   ├── Selection.html + │   │   │   │   │   ├── Separate-Debug-Files.html + │   │   │   │   │   ├── Separate-Objdir.html + │   │   │   │   │   ├── Sequences.html + │   │   │   │   │   ├── Server.html + │   │   │   │   │   ├── Server-Prefix.html + │   │   │   │   │   ├── set-auto_002dload-gdb_002dscripts.html + │   │   │   │   │   ├── set-auto_002dload-libthread_002ddb.html + │   │   │   │   │   ├── set-auto_002dload-local_002dgdbinit.html + │   │   │   │   │   ├── set-auto_002dload-off.html + │   │   │   │   │   ├── set-auto_002dload-python_002dscripts.html + │   │   │   │   │   ├── set-auto_002dload-safe_002dpath.html + │   │   │   │   │   ├── set-auto_002dload-scripts_002ddirectory.html + │   │   │   │   │   ├── Set-Breaks.html + │   │   │   │   │   ├── Set-Catchpoints.html + │   │   │   │   │   ├── set-debug-auto_002dload.html + │   │   │   │   │   ├── set-debug-entry_002dvalues.html + │   │   │   │   │   ├── set-libthread_002ddb_002dsearch_002dpath.html + │   │   │   │   │   ├── set-print-entry_002dvalues.html + │   │   │   │   │   ├── set-remotebreak.html + │   │   │   │   │   ├── set-remote-exec_002dfile.html + │   │   │   │   │   ├── set-remote-hardware_002dbreakpoint_002dlimit.html + │   │   │   │   │   ├── set-remote-hardware_002dwatchpoint_002dlength_002dlimit.html + │   │   │   │   │   ├── set-remote-hardware_002dwatchpoint_002dlimit.html + │   │   │   │   │   ├── set-substitute_002dpath.html + │   │   │   │   │   ├── Setting.html + │   │   │   │   │   ├── Set-Tracepoints.html + │   │   │   │   │   ├── Set-Watchpoints.html + │   │   │   │   │   ├── Shared-Libraries.html + │   │   │   │   │   ├── Shell-Commands.html + │   │   │   │   │   ├── show-auto_002dload-gdb_002dscripts.html + │   │   │   │   │   ├── show-auto_002dload.html + │   │   │   │   │   ├── show-auto_002dload-libthread_002ddb.html + │   │   │   │   │   ├── show-auto_002dload-local_002dgdbinit.html + │   │   │   │   │   ├── show-auto_002dload-python_002dscripts.html + │   │   │   │   │   ├── show-auto_002dload-safe_002dpath.html + │   │   │   │   │   ├── show-auto_002dload-scripts_002ddirectory.html + │   │   │   │   │   ├── show-debug-auto_002dload.html + │   │   │   │   │   ├── Show.html + │   │   │   │   │   ├── Signaling.html + │   │   │   │   │   ├── Signals.html + │   │   │   │   │   ├── Skipping-Over-Functions-and-Files.html + │   │   │   │   │   ├── Source-Annotations.html + │   │   │   │   │   ├── Source.html + │   │   │   │   │   ├── Source-Path.html + │   │   │   │   │   ├── Sparclet-Connection.html + │   │   │   │   │   ├── Sparclet-Download.html + │   │   │   │   │   ├── Sparclet-Execution.html + │   │   │   │   │   ├── Sparclet-File.html + │   │   │   │   │   ├── Sparclet.html + │   │   │   │   │   ├── Sparclite.html + │   │   │   │   │   ├── Special-Fortran-Commands.html + │   │   │   │   │   ├── Specify-Location.html + │   │   │   │   │   ├── SPU.html + │   │   │   │   │   ├── Stack.html + │   │   │   │   │   ├── Standard-Target-Features.html + │   │   │   │   │   ├── Starting-and-Stopping-Trace-Experiments.html + │   │   │   │   │   ├── Starting.html + │   │   │   │   │   ├── Startup.html + │   │   │   │   │   ├── stat_002ffstat.html + │   │   │   │   │   ├── Static-Probe-Points.html + │   │   │   │   │   ├── step-with-signal-packet.html + │   │   │   │   │   ├── Stopping-Before-Main-Program.html + │   │   │   │   │   ├── Stopping.html + │   │   │   │   │   ├── Stop-Reply-Packets.html + │   │   │   │   │   ├── struct-stat.html + │   │   │   │   │   ├── struct-timeval.html + │   │   │   │   │   ├── Stub-Contents.html + │   │   │   │   │   ├── Summary.html + │   │   │   │   │   ├── Super_002dH.html + │   │   │   │   │   ├── Supported-Languages.html + │   │   │   │   │   ├── SVR4-Process-Information.html + │   │   │   │   │   ├── Symbol-Errors.html + │   │   │   │   │   ├── Symbols.html + │   │   │   │   │   ├── Symbols-In-Python.html + │   │   │   │   │   ├── Symbol-Tables-In-Python.html + │   │   │   │   │   ├── System_002dwide-configuration.html + │   │   │   │   │   ├── system.html + │   │   │   │   │   ├── Tail-Call-Frames.html + │   │   │   │   │   ├── Target-Commands.html + │   │   │   │   │   ├── Target-Description-Format.html + │   │   │   │   │   ├── Target-Descriptions.html + │   │   │   │   │   ├── Targets.html + │   │   │   │   │   ├── tdump.html + │   │   │   │   │   ├── tfind.html + │   │   │   │   │   ├── The-Ctrl_002dC-Message.html + │   │   │   │   │   ├── The-F-Reply-Packet.html + │   │   │   │   │   ├── The-F-Request-Packet.html + │   │   │   │   │   ├── The-Print-Command-with-Objective_002dC.html + │   │   │   │   │   ├── thread_002did-syntax.html + │   │   │   │   │   ├── Thread_002dSpecific-Breakpoints.html + │   │   │   │   │   ├── Thread-groups.html + │   │   │   │   │   ├── Thread-List-Format.html + │   │   │   │   │   ├── Threads.html + │   │   │   │   │   ├── Threads-In-Python.html + │   │   │   │   │   ├── Thread-Stops.html + │   │   │   │   │   ├── TIC6x-Features.html + │   │   │   │   │   ├── Trace-File-Format.html + │   │   │   │   │   ├── Trace-Files.html + │   │   │   │   │   ├── Traceframe-Info-Format.html + │   │   │   │   │   ├── tracepoint-action-object.html + │   │   │   │   │   ├── Tracepoint-Actions.html + │   │   │   │   │   ├── Tracepoint-Conditions.html + │   │   │   │   │   ├── tracepoint-object.html + │   │   │   │   │   ├── Tracepoint-Packets.html + │   │   │   │   │   ├── Tracepoint-Passcounts.html + │   │   │   │   │   ├── Tracepoint-Restrictions.html + │   │   │   │   │   ├── Tracepoints.html + │   │   │   │   │   ├── Tracepoint-Variables.html + │   │   │   │   │   ├── Trace-State-Variables.html + │   │   │   │   │   ├── TUI-Commands.html + │   │   │   │   │   ├── TUI-Configuration.html + │   │   │   │   │   ├── TUI.html + │   │   │   │   │   ├── TUI-Keys.html + │   │   │   │   │   ├── TUI-Overview.html + │   │   │   │   │   ├── TUI-Single-Key-Mode.html + │   │   │   │   │   ├── Type-Checking.html + │   │   │   │   │   ├── Type-Printing-API.html + │   │   │   │   │   ├── Types-In-Python.html + │   │   │   │   │   ├── unlink.html + │   │   │   │   │   ├── Unregistering-Code.html + │   │   │   │   │   ├── Unsupported-Languages.html + │   │   │   │   │   ├── Using-Agent-Expressions.html + │   │   │   │   │   ├── Using-History-Interactively.html + │   │   │   │   │   ├── Using-JIT-Debug-Info-Readers.html + │   │   │   │   │   ├── Value-History.html + │   │   │   │   │   ├── Values-From-Inferior.html + │   │   │   │   │   ├── Variables.html + │   │   │   │   │   ├── Varying-Target-Capabilities.html + │   │   │   │   │   ├── vCont-packet.html + │   │   │   │   │   ├── Vector-Unit.html + │   │   │   │   │   ├── VxWorks-Attach.html + │   │   │   │   │   ├── VxWorks-Connection.html + │   │   │   │   │   ├── VxWorks-Download.html + │   │   │   │   │   ├── VxWorks.html + │   │   │   │   │   ├── Which-flavor-to-choose_003f.html + │   │   │   │   │   ├── with_002dauto_002dload_002ddir.html + │   │   │   │   │   ├── Word-Designators.html + │   │   │   │   │   ├── Working-Directory.html + │   │   │   │   │   ├── write.html + │   │   │   │   │   ├── write-register-packet.html + │   │   │   │   │   ├── Writing-a-Pretty_002dPrinter.html + │   │   │   │   │   ├── Writing-JIT-Debug-Info-Readers.html + │   │   │   │   │   ├── X-packet.html + │   │   │   │   │   └── Z8000.html + │   │   │   │   ├── gdbint + │   │   │   │   │   ├── About-Dummy-Frames.html + │   │   │   │   │   ├── Adding-a-New-Target.html + │   │   │   │   │   ├── Adding-support-for-debugging-core-files.html + │   │   │   │   │   ├── Adding-Target-Described-Register-Support.html + │   │   │   │   │   ├── Address-Classes.html + │   │   │   │   │   ├── Algorithms.html + │   │   │   │   │   ├── All-About-Stack-Frames.html + │   │   │   │   │   ├── Analyzing-Stacks_002d_002d_002dFrame-Sniffers.html + │   │   │   │   │   ├── Coding-Standards.html + │   │   │   │   │   ├── Concept-Index.html + │   │   │   │   │   ├── Contributors.html + │   │   │   │   │   ├── Creating-a-New-Architecture.html + │   │   │   │   │   ├── Debugging-GDB.html + │   │   │   │   │   ├── Defining-Other-Architecture-Features.html + │   │   │   │   │   ├── Existing-Targets.html + │   │   │   │   │   ├── experimental-branch-tags.html + │   │   │   │   │   ├── frame_005falign.html + │   │   │   │   │   ├── Frame-Handling-Terminology.html + │   │   │   │   │   ├── Frame-Interpretation.html + │   │   │   │   │   ├── Function-and-Variable-Index.html + │   │   │   │   │   ├── Functions-and-Variable-to-Analyze-Frames.html + │   │   │   │   │   ├── Functions-Creating-Dummy-Frames.html + │   │   │   │   │   ├── Functions-to-Access-Frame-Data.html + │   │   │   │   │   ├── gdbarch_005fbreakpoint_005ffrom_005fpc.html + │   │   │   │   │   ├── gdbarch_005fdummy_005fid.html + │   │   │   │   │   ├── gdbarch_005fpush_005fdummy_005fcall.html + │   │   │   │   │   ├── gdbarch_005fpush_005fdummy_005fcode.html + │   │   │   │   │   ├── gdbarch_005freturn_005fvalue.html + │   │   │   │   │   ├── gdbarch_005fstabs_005fargument_005fhas_005faddr.html + │   │   │   │   │   ├── GDB-Observers.html + │   │   │   │   │   ├── Getting-Started.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── Hints.html + │   │   │   │   │   ├── Host-Definition.html + │   │   │   │   │   ├── How-an-Architecture-is-Represented.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Inferior-Call-Setup.html + │   │   │   │   │   ├── Initialize-New-Architecture.html + │   │   │   │   │   ├── Language-Support.html + │   │   │   │   │   ├── libgdb.html + │   │   │   │   │   ├── Looking-Up-an-Existing-Architecture.html + │   │   │   │   │   ├── Managing-Execution-State.html + │   │   │   │   │   ├── Misc-Guidelines.html + │   │   │   │   │   ├── Native-Debugging.html + │   │   │   │   │   ├── OS-ABI-Variant-Handling.html + │   │   │   │   │   ├── Overall-Structure.html + │   │   │   │   │   ├── Pointers-and-Addresses.html + │   │   │   │   │   ├── Porting-GDB.html + │   │   │   │   │   ├── Prologue-Caches.html + │   │   │   │   │   ├── Raw-and-Cooked-Registers.html + │   │   │   │   │   ├── Register-and-Memory-Data.html + │   │   │   │   │   ├── Register-Architecture-Functions-_0026-Variables.html + │   │   │   │   │   ├── Register-Caching.html + │   │   │   │   │   ├── Register-Information-Functions.html + │   │   │   │   │   ├── Register-Representation.html + │   │   │   │   │   ├── Registers-and-Memory.html + │   │   │   │   │   ├── Releasing-GDB.html + │   │   │   │   │   ├── Requirements.html + │   │   │   │   │   ├── Stack-Frames.html + │   │   │   │   │   ├── Start-of-New-Year-Procedure.html + │   │   │   │   │   ├── Summary.html + │   │   │   │   │   ├── Support-Libraries.html + │   │   │   │   │   ├── Symbol-Handling.html + │   │   │   │   │   ├── Tags.html + │   │   │   │   │   ├── Target-Architecture-Definition.html + │   │   │   │   │   ├── Target-Descriptions.html + │   │   │   │   │   ├── Target-Descriptions-Implementation.html + │   │   │   │   │   ├── Target-Vector-Definition.html + │   │   │   │   │   ├── Testsuite.html + │   │   │   │   │   ├── UI_002dIndependent-Output.html + │   │   │   │   │   ├── User-Interface.html + │   │   │   │   │   ├── Values.html + │   │   │   │   │   └── Versions-and-Branches.html + │   │   │   │   ├── gprof.html + │   │   │   │   │   ├── Analysis-Options.html + │   │   │   │   │   ├── Annotated-Source.html + │   │   │   │   │   ├── Assumptions.html + │   │   │   │   │   ├── Callers.html + │   │   │   │   │   ├── Call-Graph.html + │   │   │   │   │   ├── Compiling.html + │   │   │   │   │   ├── Cycles.html + │   │   │   │   │   ├── Debugging.html + │   │   │   │   │   ├── Deprecated-Options.html + │   │   │   │   │   ├── Details.html + │   │   │   │   │   ├── Executing.html + │   │   │   │   │   ├── File-Format.html + │   │   │   │   │   ├── Flat-Profile.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── How-do-I_003f.html + │   │   │   │   │   ├── Implementation.html + │   │   │   │   │   ├── Inaccuracy.html + │   │   │   │   │   ├── Incompatibilities.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Internals.html + │   │   │   │   │   ├── Introduction.html + │   │   │   │   │   ├── Invoking.html + │   │   │   │   │   ├── Line_002dby_002dline.html + │   │   │   │   │   ├── Miscellaneous-Options.html + │   │   │   │   │   ├── Output.html + │   │   │   │   │   ├── Output-Options.html + │   │   │   │   │   ├── Primary.html + │   │   │   │   │   ├── Sampling-Error.html + │   │   │   │   │   ├── Subroutines.html + │   │   │   │   │   └── Symspecs.html + │   │   │   │   ├── ld.html + │   │   │   │   │   ├── ARM.html + │   │   │   │   │   ├── Assignments.html + │   │   │   │   │   ├── Basic-Script-Concepts.html + │   │   │   │   │   ├── BFD.html + │   │   │   │   │   ├── BFD-information-loss.html + │   │   │   │   │   ├── BFD-outline.html + │   │   │   │   │   ├── Bug-Criteria.html + │   │   │   │   │   ├── Bug-Reporting.html + │   │   │   │   │   ├── Builtin-Functions.html + │   │   │   │   │   ├── Canonical-format.html + │   │   │   │   │   ├── Constants.html + │   │   │   │   │   ├── Entry-Point.html + │   │   │   │   │   ├── Environment.html + │   │   │   │   │   ├── Evaluation.html + │   │   │   │   │   ├── Expression-Section.html + │   │   │   │   │   ├── Expressions.html + │   │   │   │   │   ├── File-Commands.html + │   │   │   │   │   ├── Forced-Input-Alignment.html + │   │   │   │   │   ├── Forced-Output-Alignment.html + │   │   │   │   │   ├── Format-Commands.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── H8_002f300.html + │   │   │   │   │   ├── HIDDEN.html + │   │   │   │   │   ├── HPPA-ELF32.html + │   │   │   │   │   ├── i960.html + │   │   │   │   │   ├── Implicit-Linker-Scripts.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Input-Section-Basics.html + │   │   │   │   │   ├── Input-Section-Common.html + │   │   │   │   │   ├── Input-Section-Example.html + │   │   │   │   │   ├── Input-Section.html + │   │   │   │   │   ├── Input-Section-Keep.html + │   │   │   │   │   ├── Input-Section-Wildcards.html + │   │   │   │   │   ├── Invocation.html + │   │   │   │   │   ├── LD-Index.html + │   │   │   │   │   ├── Location-Counter.html + │   │   │   │   │   ├── M68HC11_002f68HC12.html + │   │   │   │   │   ├── M68K.html + │   │   │   │   │   ├── Machine-Dependent.html + │   │   │   │   │   ├── MEMORY.html + │   │   │   │   │   ├── Miscellaneous-Commands.html + │   │   │   │   │   ├── MMIX.html + │   │   │   │   │   ├── MRI.html + │   │   │   │   │   ├── MSP430.html + │   │   │   │   │   ├── Operators.html + │   │   │   │   │   ├── Options.html + │   │   │   │   │   ├── Orphan-Sections.html + │   │   │   │   │   ├── Output-Section-Address.html + │   │   │   │   │   ├── Output-Section-Attributes.html + │   │   │   │   │   ├── Output-Section-Constraint.html + │   │   │   │   │   ├── Output-Section-Data.html + │   │   │   │   │   ├── Output-Section-Description.html + │   │   │   │   │   ├── Output-Section-Discarding.html + │   │   │   │   │   ├── Output-Section-Fill.html + │   │   │   │   │   ├── Output-Section-Keywords.html + │   │   │   │   │   ├── Output-Section-LMA.html + │   │   │   │   │   ├── Output-Section-Name.html + │   │   │   │   │   ├── Output-Section-Phdr.html + │   │   │   │   │   ├── Output-Section-Region.html + │   │   │   │   │   ├── Output-Section-Type.html + │   │   │   │   │   ├── Overlay-Description.html + │   │   │   │   │   ├── Overview.html + │   │   │   │   │   ├── PHDRS.html + │   │   │   │   │   ├── PowerPC64-ELF64.html + │   │   │   │   │   ├── PowerPC-ELF32.html + │   │   │   │   │   ├── PROVIDE_005fHIDDEN.html + │   │   │   │   │   ├── PROVIDE.html + │   │   │   │   │   ├── REGION_005fALIAS.html + │   │   │   │   │   ├── Reporting-Bugs.html + │   │   │   │   │   ├── Script-Format.html + │   │   │   │   │   ├── Scripts.html + │   │   │   │   │   ├── SECTIONS.html + │   │   │   │   │   ├── Simple-Assignments.html + │   │   │   │   │   ├── Simple-Commands.html + │   │   │   │   │   ├── Simple-Example.html + │   │   │   │   │   ├── Source-Code-Reference.html + │   │   │   │   │   ├── SPU-ELF.html + │   │   │   │   │   ├── Symbolic-Constants.html + │   │   │   │   │   ├── Symbols.html + │   │   │   │   │   ├── TI-COFF.html + │   │   │   │   │   ├── VERSION.html + │   │   │   │   │   ├── WIN32.html + │   │   │   │   │   └── Xtensa.html + │   │   │   │   ├── libc + │   │   │   │   │   ├── _005f_005fenv_005flock.html + │   │   │   │   │   ├── _005f_005fmalloc_005flock.html + │   │   │   │   │   ├── _005f_005ftz_005flock.html + │   │   │   │   │   ├── _005fExit.html + │   │   │   │   │   ├── a64l.html + │   │   │   │   │   ├── abort.html + │   │   │   │   │   ├── abs.html + │   │   │   │   │   ├── Arglists.html + │   │   │   │   │   ├── asctime.html + │   │   │   │   │   ├── assert.html + │   │   │   │   │   ├── atexit.html + │   │   │   │   │   ├── atof.html + │   │   │   │   │   ├── atoi.html + │   │   │   │   │   ├── atoll.html + │   │   │   │   │   ├── bcmp.html + │   │   │   │   │   ├── bcopy.html + │   │   │   │   │   ├── bsearch.html + │   │   │   │   │   ├── bzero.html + │   │   │   │   │   ├── calloc.html + │   │   │   │   │   ├── clearerr.html + │   │   │   │   │   ├── clock.html + │   │   │   │   │   ├── ctime.html + │   │   │   │   │   ├── Ctype.html + │   │   │   │   │   ├── difftime.html + │   │   │   │   │   ├── diprintf.html + │   │   │   │   │   ├── div.html + │   │   │   │   │   ├── Document-Index.html + │   │   │   │   │   ├── dprintf.html + │   │   │   │   │   ├── ecvtbuf.html + │   │   │   │   │   ├── ecvt.html + │   │   │   │   │   ├── exit.html + │   │   │   │   │   ├── fcloseall.html + │   │   │   │   │   ├── fclose.html + │   │   │   │   │   ├── fdopen.html + │   │   │   │   │   ├── feof.html + │   │   │   │   │   ├── ferror.html + │   │   │   │   │   ├── fflush.html + │   │   │   │   │   ├── ffs.html + │   │   │   │   │   ├── fgetc.html + │   │   │   │   │   ├── fgetpos.html + │   │   │   │   │   ├── fgets.html + │   │   │   │   │   ├── fgetwc.html + │   │   │   │   │   ├── fgetws.html + │   │   │   │   │   ├── fileno.html + │   │   │   │   │   ├── fmemopen.html + │   │   │   │   │   ├── fopencookie.html + │   │   │   │   │   ├── fopen.html + │   │   │   │   │   ├── fpurge.html + │   │   │   │   │   ├── fputc.html + │   │   │   │   │   ├── fputs.html + │   │   │   │   │   ├── fputwc.html + │   │   │   │   │   ├── fputws.html + │   │   │   │   │   ├── fread.html + │   │   │   │   │   ├── freopen.html + │   │   │   │   │   ├── fseek.html + │   │   │   │   │   ├── fsetpos.html + │   │   │   │   │   ├── ftell.html + │   │   │   │   │   ├── funopen.html + │   │   │   │   │   ├── fwide.html + │   │   │   │   │   ├── fwrite.html + │   │   │   │   │   ├── getc_005funlocked.html + │   │   │   │   │   ├── getchar_005funlocked.html + │   │   │   │   │   ├── getchar.html + │   │   │   │   │   ├── getc.html + │   │   │   │   │   ├── getdelim.html + │   │   │   │   │   ├── getenv.html + │   │   │   │   │   ├── getline.html + │   │   │   │   │   ├── gets.html + │   │   │   │   │   ├── getwchar.html + │   │   │   │   │   ├── getw.html + │   │   │   │   │   ├── gmtime.html + │   │   │   │   │   ├── gvcvt.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Introduction.html + │   │   │   │   │   ├── isalnum.html + │   │   │   │   │   ├── isalpha.html + │   │   │   │   │   ├── isascii.html + │   │   │   │   │   ├── iscntrl.html + │   │   │   │   │   ├── isdigit.html + │   │   │   │   │   ├── islower.html + │   │   │   │   │   ├── isprint.html + │   │   │   │   │   ├── ispunct.html + │   │   │   │   │   ├── isspace.html + │   │   │   │   │   ├── isupper.html + │   │   │   │   │   ├── iswalnum.html + │   │   │   │   │   ├── iswalpha.html + │   │   │   │   │   ├── iswblank.html + │   │   │   │   │   ├── iswcntrl.html + │   │   │   │   │   ├── iswctype.html + │   │   │   │   │   ├── iswdigit.html + │   │   │   │   │   ├── iswgraph.html + │   │   │   │   │   ├── iswlower.html + │   │   │   │   │   ├── iswprint.html + │   │   │   │   │   ├── iswpunct.html + │   │   │   │   │   ├── iswspace.html + │   │   │   │   │   ├── iswupper.html + │   │   │   │   │   ├── iswxdigit.html + │   │   │   │   │   ├── isxdigit.html + │   │   │   │   │   ├── labs.html + │   │   │   │   │   ├── ldiv.html + │   │   │   │   │   ├── llabs.html + │   │   │   │   │   ├── lldiv.html + │   │   │   │   │   ├── Locale.html + │   │   │   │   │   ├── localtime.html + │   │   │   │   │   ├── mallinfo.html + │   │   │   │   │   ├── malloc.html + │   │   │   │   │   ├── mblen.html + │   │   │   │   │   ├── mbsrtowcs.html + │   │   │   │   │   ├── mbstowcs.html + │   │   │   │   │   ├── mbtowc.html + │   │   │   │   │   ├── memccpy.html + │   │   │   │   │   ├── memchr.html + │   │   │   │   │   ├── memcmp.html + │   │   │   │   │   ├── memcpy.html + │   │   │   │   │   ├── memmem.html + │   │   │   │   │   ├── memmove.html + │   │   │   │   │   ├── mempcpy.html + │   │   │   │   │   ├── memset.html + │   │   │   │   │   ├── Misc.html + │   │   │   │   │   ├── mktemp.html + │   │   │   │   │   ├── mktime.html + │   │   │   │   │   ├── on_005fexit.html + │   │   │   │   │   ├── open_005fmemstream.html + │   │   │   │   │   ├── perror.html + │   │   │   │   │   ├── psignal.html + │   │   │   │   │   ├── putc_005funlocked.html + │   │   │   │   │   ├── putchar_005funlocked.html + │   │   │   │   │   ├── putchar.html + │   │   │   │   │   ├── putc.html + │   │   │   │   │   ├── puts.html + │   │   │   │   │   ├── putwchar.html + │   │   │   │   │   ├── putw.html + │   │   │   │   │   ├── qsort.html + │   │   │   │   │   ├── raise.html + │   │   │   │   │   ├── rand48.html + │   │   │   │   │   ├── rand.html + │   │   │   │   │   ├── Reentrancy.html + │   │   │   │   │   ├── Reentrant-Syscalls.html + │   │   │   │   │   ├── remove.html + │   │   │   │   │   ├── rename.html + │   │   │   │   │   ├── rewind.html + │   │   │   │   │   ├── rindex.html + │   │   │   │   │   ├── setbuffer.html + │   │   │   │   │   ├── setbuf.html + │   │   │   │   │   ├── setlinebuf.html + │   │   │   │   │   ├── setlocale.html + │   │   │   │   │   ├── setvbuf.html + │   │   │   │   │   ├── signal.html + │   │   │   │   │   ├── Signals.html + │   │   │   │   │   ├── siprintf.html + │   │   │   │   │   ├── siscanf.html + │   │   │   │   │   ├── sprintf.html + │   │   │   │   │   ├── sscanf.html + │   │   │   │   │   ├── Stdarg.html + │   │   │   │   │   ├── Stdio.html + │   │   │   │   │   ├── Stdlib.html + │   │   │   │   │   ├── stpcpy.html + │   │   │   │   │   ├── stpncpy.html + │   │   │   │   │   ├── strcasecmp.html + │   │   │   │   │   ├── strcasestr.html + │   │   │   │   │   ├── strcat.html + │   │   │   │   │   ├── strchr.html + │   │   │   │   │   ├── strcmp.html + │   │   │   │   │   ├── strcoll.html + │   │   │   │   │   ├── strcpy.html + │   │   │   │   │   ├── strcspn.html + │   │   │   │   │   ├── strerror_005fr.html + │   │   │   │   │   ├── strerror.html + │   │   │   │   │   ├── strftime.html + │   │   │   │   │   ├── Strings.html + │   │   │   │   │   ├── strlen.html + │   │   │   │   │   ├── strlwr.html + │   │   │   │   │   ├── strncasecmp.html + │   │   │   │   │   ├── strncat.html + │   │   │   │   │   ├── strncmp.html + │   │   │   │   │   ├── strncpy.html + │   │   │   │   │   ├── strnlen.html + │   │   │   │   │   ├── strpbrk.html + │   │   │   │   │   ├── strrchr.html + │   │   │   │   │   ├── strsignal.html + │   │   │   │   │   ├── strspn.html + │   │   │   │   │   ├── strstr.html + │   │   │   │   │   ├── strtod.html + │   │   │   │   │   ├── strtok.html + │   │   │   │   │   ├── strtol.html + │   │   │   │   │   ├── strtoll.html + │   │   │   │   │   ├── strtoul.html + │   │   │   │   │   ├── strtoull.html + │   │   │   │   │   ├── strupr.html + │   │   │   │   │   ├── strxfrm.html + │   │   │   │   │   ├── Stubs.html + │   │   │   │   │   ├── swab.html + │   │   │   │   │   ├── swprintf.html + │   │   │   │   │   ├── swscanf.html + │   │   │   │   │   ├── Syscalls.html + │   │   │   │   │   ├── system.html + │   │   │   │   │   ├── Timefns.html + │   │   │   │   │   ├── time.html + │   │   │   │   │   ├── tmpfile.html + │   │   │   │   │   ├── tmpnam.html + │   │   │   │   │   ├── toascii.html + │   │   │   │   │   ├── tolower.html + │   │   │   │   │   ├── toupper.html + │   │   │   │   │   ├── towctrans.html + │   │   │   │   │   ├── towlower.html + │   │   │   │   │   ├── towupper.html + │   │   │   │   │   ├── tzset.html + │   │   │   │   │   ├── unctrl.html + │   │   │   │   │   ├── ungetc.html + │   │   │   │   │   ├── ungetwc.html + │   │   │   │   │   ├── va_005falist.html + │   │   │   │   │   ├── va_005farg_002dtrad.html + │   │   │   │   │   ├── va_005farg.html + │   │   │   │   │   ├── va_005fend_002dtrad.html + │   │   │   │   │   ├── va_005fend.html + │   │   │   │   │   ├── va_005fstart_002dtrad.html + │   │   │   │   │   ├── va_005fstart.html + │   │   │   │   │   ├── Varargs.html + │   │   │   │   │   ├── vfprintf.html + │   │   │   │   │   ├── vfscanf.html + │   │   │   │   │   ├── vfwprintf.html + │   │   │   │   │   ├── vfwscanf.html + │   │   │   │   │   ├── viprintf.html + │   │   │   │   │   ├── viscanf.html + │   │   │   │   │   ├── Wchar-strings.html + │   │   │   │   │   ├── wcpcpy.html + │   │   │   │   │   ├── wcpncpy.html + │   │   │   │   │   ├── wcscasecmp.html + │   │   │   │   │   ├── wcscat.html + │   │   │   │   │   ├── wcschr.html + │   │   │   │   │   ├── wcscmp.html + │   │   │   │   │   ├── wcscoll.html + │   │   │   │   │   ├── wcscpy.html + │   │   │   │   │   ├── wcscspn.html + │   │   │   │   │   ├── wcsdup.html + │   │   │   │   │   ├── wcsftime.html + │   │   │   │   │   ├── wcslcat.html + │   │   │   │   │   ├── wcslcpy.html + │   │   │   │   │   ├── wcslen.html + │   │   │   │   │   ├── wcsncasecmp.html + │   │   │   │   │   ├── wcsncat.html + │   │   │   │   │   ├── wcsncmp.html + │   │   │   │   │   ├── wcsncpy.html + │   │   │   │   │   ├── wcsnlen.html + │   │   │   │   │   ├── wcspbrk.html + │   │   │   │   │   ├── wcsrchr.html + │   │   │   │   │   ├── wcsrtombs.html + │   │   │   │   │   ├── wcsspn.html + │   │   │   │   │   ├── wcsstr.html + │   │   │   │   │   ├── wcstod.html + │   │   │   │   │   ├── wcstok.html + │   │   │   │   │   ├── wcstol.html + │   │   │   │   │   ├── wcstoll.html + │   │   │   │   │   ├── wcstombs.html + │   │   │   │   │   ├── wcstoul.html + │   │   │   │   │   ├── wcstoull.html + │   │   │   │   │   ├── wcswidth.html + │   │   │   │   │   ├── wcsxfrm.html + │   │   │   │   │   ├── wctomb.html + │   │   │   │   │   ├── wctrans.html + │   │   │   │   │   ├── wctype.html + │   │   │   │   │   ├── wcwidth.html + │   │   │   │   │   ├── wmemchr.html + │   │   │   │   │   ├── wmemcmp.html + │   │   │   │   │   ├── wmemcpy.html + │   │   │   │   │   ├── wmemmove.html + │   │   │   │   │   └── wmemset.html + │   │   │   │   ├── libiberty.html + │   │   │   │   ├── libm + │   │   │   │   │   ├── acosh.html + │   │   │   │   │   ├── acos.html + │   │   │   │   │   ├── asinh.html + │   │   │   │   │   ├── asin.html + │   │   │   │   │   ├── atan2.html + │   │   │   │   │   ├── atanh.html + │   │   │   │   │   ├── atan.html + │   │   │   │   │   ├── cabs.html + │   │   │   │   │   ├── cacosh.html + │   │   │   │   │   ├── cacos.html + │   │   │   │   │   ├── carg.html + │   │   │   │   │   ├── casinh.html + │   │   │   │   │   ├── casin.html + │   │   │   │   │   ├── catanh.html + │   │   │   │   │   ├── catan.html + │   │   │   │   │   ├── cbrt.html + │   │   │   │   │   ├── ccosh.html + │   │   │   │   │   ├── ccos.html + │   │   │   │   │   ├── cexp.html + │   │   │   │   │   ├── cimag.html + │   │   │   │   │   ├── clog.html + │   │   │   │   │   ├── Complex.html + │   │   │   │   │   ├── conj.html + │   │   │   │   │   ├── copysign.html + │   │   │   │   │   ├── cosh.html + │   │   │   │   │   ├── cpow.html + │   │   │   │   │   ├── cproj.html + │   │   │   │   │   ├── creal.html + │   │   │   │   │   ├── csinh.html + │   │   │   │   │   ├── csin.html + │   │   │   │   │   ├── csqrt.html + │   │   │   │   │   ├── ctanh.html + │   │   │   │   │   ├── ctan.html + │   │   │   │   │   ├── Document-Index.html + │   │   │   │   │   ├── erf.html + │   │   │   │   │   ├── exp2.html + │   │   │   │   │   ├── exp.html + │   │   │   │   │   ├── expm1.html + │   │   │   │   │   ├── fabs.html + │   │   │   │   │   ├── fdim.html + │   │   │   │   │   ├── floor.html + │   │   │   │   │   ├── fma.html + │   │   │   │   │   ├── fmax.html + │   │   │   │   │   ├── fmin.html + │   │   │   │   │   ├── fmod.html + │   │   │   │   │   ├── fpclassify.html + │   │   │   │   │   ├── frexp.html + │   │   │   │   │   ├── gamma.html + │   │   │   │   │   ├── hypot.html + │   │   │   │   │   ├── ilogb.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── infinity.html + │   │   │   │   │   ├── isgreater.html + │   │   │   │   │   ├── jN.html + │   │   │   │   │   ├── ldexp.html + │   │   │   │   │   ├── log10.html + │   │   │   │   │   ├── log1p.html + │   │   │   │   │   ├── log2.html + │   │   │   │   │   ├── logb.html + │   │   │   │   │   ├── log.html + │   │   │   │   │   ├── Long-Double-Functions.html + │   │   │   │   │   ├── lrint.html + │   │   │   │   │   ├── lround.html + │   │   │   │   │   ├── matherr.html + │   │   │   │   │   ├── Math.html + │   │   │   │   │   ├── modf.html + │   │   │   │   │   ├── nan.html + │   │   │   │   │   ├── nearbyint.html + │   │   │   │   │   ├── nextafter.html + │   │   │   │   │   ├── pow.html + │   │   │   │   │   ├── Reentrancy.html + │   │   │   │   │   ├── remainder.html + │   │   │   │   │   ├── remquo.html + │   │   │   │   │   ├── rint.html + │   │   │   │   │   ├── round.html + │   │   │   │   │   ├── scalbn.html + │   │   │   │   │   ├── signbit.html + │   │   │   │   │   ├── sinh.html + │   │   │   │   │   ├── sin.html + │   │   │   │   │   ├── sqrt.html + │   │   │   │   │   ├── tanh.html + │   │   │   │   │   ├── tan.html + │   │   │   │   │   ├── trunc.html + │   │   │   │   │   └── version.html + │   │   │   │   ├── stabs + │   │   │   │   │   ├── Alternate-Entry-Points.html + │   │   │   │   │   ├── Arrays.html + │   │   │   │   │   ├── Assembly-Code.html + │   │   │   │   │   ├── Based-Variables.html + │   │   │   │   │   ├── Basic-Cplusplus-Types.html + │   │   │   │   │   ├── Block-Structure.html + │   │   │   │   │   ├── Builtin-Type-Descriptors.html + │   │   │   │   │   ├── Builtin-Types.html + │   │   │   │   │   ├── C-Example.html + │   │   │   │   │   ├── Class-Instance.html + │   │   │   │   │   ├── Class-Names.html + │   │   │   │   │   ├── Common-Blocks.html + │   │   │   │   │   ├── Conformant-Arrays.html + │   │   │   │   │   ├── Constants.html + │   │   │   │   │   ├── Cplusplus.html + │   │   │   │   │   ├── Cross_002dReferences.html + │   │   │   │   │   ├── ELF-Linker-Relocation.html + │   │   │   │   │   ├── Enumerations.html + │   │   │   │   │   ├── Expanded-Reference.html + │   │   │   │   │   ├── Flow.html + │   │   │   │   │   ├── Function-Types.html + │   │   │   │   │   ├── Global-Variables.html + │   │   │   │   │   ├── GNU-Free-Documentation-License.html + │   │   │   │   │   ├── Gould.html + │   │   │   │   │   ├── Include-Files.html + │   │   │   │   │   ├── index.html + │   │   │   │   │   ├── Inheritance.html + │   │   │   │   │   ├── Line-Numbers.html + │   │   │   │   │   ├── Local-Variable-Parameters.html + │   │   │   │   │   ├── Macro-define-and-undefine.html + │   │   │   │   │   ├── Main-Program.html + │   │   │   │   │   ├── Member-Type-Descriptor.html + │   │   │   │   │   ├── Method-Modifiers.html + │   │   │   │   │   ├── Methods.html + │   │   │   │   │   ├── Method-Type-Descriptor.html + │   │   │   │   │   ├── Miscellaneous-Types.html + │   │   │   │   │   ├── N_005fBROWS.html + │   │   │   │   │   ├── N_005fCATCH.html + │   │   │   │   │   ├── N_005fDEFD.html + │   │   │   │   │   ├── N_005fEHDECL.html + │   │   │   │   │   ├── N_005fLENG.html + │   │   │   │   │   ├── N_005fM2C.html + │   │   │   │   │   ├── N_005fMOD2.html + │   │   │   │   │   ├── N_005fNOMAP.html + │   │   │   │   │   ├── N_005fNSYMS.html + │   │   │   │   │   ├── N_005fPC.html + │   │   │   │   │   ├── N_005fSCOPE.html + │   │   │   │   │   ├── N_005fSSYM.html + │   │   │   │   │   ├── Negative-Type-Numbers.html + │   │   │   │   │   ├── Nested-Procedures.html + │   │   │   │   │   ├── Nested-Symbols.html + │   │   │   │   │   ├── Non_002dStab-Symbol-Types.html + │   │   │   │   │   ├── Overview.html + │   │   │   │   │   ├── Parameters.html + │   │   │   │   │   ├── Procedures.html + │   │   │   │   │   ├── Program-Structure.html + │   │   │   │   │   ├── Protections.html + │   │   │   │   │   ├── Questions.html + │   │   │   │   │   ├── Reference-Parameters.html + │   │   │   │   │   ├── Register-Parameters.html + │   │   │   │   │   ├── Register-Variables.html + │   │   │   │   │   ├── Simple-Classes.html + │   │   │   │   │   ├── Source-Files.html + │   │   │   │   │   ├── Stab-Section-Basics.html + │   │   │   │   │   ├── Stab-Sections.html + │   │   │   │   │   ├── Stab-Section-Transformations.html + │   │   │   │   │   ├── Stabs-Format.html + │   │   │   │   │   ├── Stab-Symbol-Types.html + │   │   │   │   │   ├── Stab-Types.html + │   │   │   │   │   ├── Stack-Variables.html + │   │   │   │   │   ├── Static-Members.html + │   │   │   │   │   ├── Statics.html + │   │   │   │   │   ├── String-Field.html + │   │   │   │   │   ├── Strings.html + │   │   │   │   │   ├── Structures.html + │   │   │   │   │   ├── Subranges.html + │   │   │   │   │   ├── Symbol-Descriptors.html + │   │   │   │   │   ├── Symbol-Table-Format.html + │   │   │   │   │   ├── Symbol-Tables.html + │   │   │   │   │   ├── Symbol-Types-Index.html + │   │   │   │   │   ├── Traditional-Builtin-Types.html + │   │   │   │   │   ├── Traditional-Integer-Types.html + │   │   │   │   │   ├── Traditional-Other-Types.html + │   │   │   │   │   ├── Transformations-On-Global-Variables.html + │   │   │   │   │   ├── Transformations-On-Static-Variables.html + │   │   │   │   │   ├── Transformations-On-Symbol-Tables.html + │   │   │   │   │   ├── Typedefs.html + │   │   │   │   │   ├── Type-Descriptors.html + │   │   │   │   │   ├── Types.html + │   │   │   │   │   ├── Unions.html + │   │   │   │   │   ├── Variables.html + │   │   │   │   │   ├── Virtual-Base-Classes.html + │   │   │   │   │   └── Virtual-Methods.html + │   │   │   │   └── standards.html + │   │   │   ├── info + │   │   │   │   ├── annotate.info + │   │   │   │   ├── as.info + │   │   │   │   ├── bfd.info + │   │   │   │   ├── binutils.info + │   │   │   │   ├── configure.info + │   │   │   │   ├── cpp.info + │   │   │   │   ├── cppinternals.info + │   │   │   │   ├── dir + │   │   │   │   ├── dir.old + │   │   │   │   ├── gcc.info + │   │   │   │   ├── gccinstall.info + │   │   │   │   ├── gccint.info + │   │   │   │   ├── gdb.info + │   │   │   │   ├── gdbint.info + │   │   │   │   ├── gprof.info + │   │   │   │   ├── ld.info + │   │   │   │   ├── stabs.info + │   │   │   │   └── standards.info + │   │   │   ├── license.txt + │   │   │   ├── man + │   │   │   │   ├── man1 + │   │   │   │   │   ├── arm-none-eabi-addr2line.1 + │   │   │   │   │   ├── arm-none-eabi-ar.1 + │   │   │   │   │   ├── arm-none-eabi-as.1 + │   │   │   │   │   ├── arm-none-eabi-c++filt.1 + │   │   │   │   │   ├── arm-none-eabi-cpp.1 + │   │   │   │   │   ├── arm-none-eabi-dlltool.1 + │   │   │   │   │   ├── arm-none-eabi-elfedit.1 + │   │   │   │   │   ├── arm-none-eabi-g++.1 + │   │   │   │   │   ├── arm-none-eabi-gcc.1 + │   │   │   │   │   ├── arm-none-eabi-gcov.1 + │   │   │   │   │   ├── arm-none-eabi-gdb.1 + │   │   │   │   │   ├── arm-none-eabi-gprof.1 + │   │   │   │   │   ├── arm-none-eabi-ld.1 + │   │   │   │   │   ├── arm-none-eabi-nlmconv.1 + │   │   │   │   │   ├── arm-none-eabi-nm.1 + │   │   │   │   │   ├── arm-none-eabi-objcopy.1 + │   │   │   │   │   ├── arm-none-eabi-objdump.1 + │   │   │   │   │   ├── arm-none-eabi-ranlib.1 + │   │   │   │   │   ├── arm-none-eabi-readelf.1 + │   │   │   │   │   ├── arm-none-eabi-size.1 + │   │   │   │   │   ├── arm-none-eabi-strings.1 + │   │   │   │   │   ├── arm-none-eabi-strip.1 + │   │   │   │   │   ├── arm-none-eabi-windmc.1 + │   │   │   │   │   └── arm-none-eabi-windres.1 + │   │   │   │   └── man7 + │   │   │   │   ├── fsf-funding.7 + │   │   │   │   ├── gfdl.7 + │   │   │   │   └── gpl.7 + │   │   │   ├── pdf + │   │   │   │   ├── annotate.pdf + │   │   │   │   ├── as.pdf + │   │   │   │   ├── bfd.pdf + │   │   │   │   ├── binutils.pdf + │   │   │   │   ├── etc + │   │   │   │   │   ├── configure.pdf + │   │   │   │   │   └── standards.pdf + │   │   │   │   ├── gcc + │   │   │   │   │   ├── cppinternals.pdf + │   │   │   │   │   ├── cpp.pdf + │   │   │   │   │   ├── gccinstall.pdf + │   │   │   │   │   ├── gccint.pdf + │   │   │   │   │   └── gcc.pdf + │   │   │   │   ├── gdbint.pdf + │   │   │   │   ├── gdb.pdf + │   │   │   │   ├── gprof.pdf + │   │   │   │   ├── ld.pdf + │   │   │   │   ├── libc.pdf + │   │   │   │   ├── libiberty.pdf + │   │   │   │   ├── libm.pdf + │   │   │   │   ├── refcard.pdf + │   │   │   │   └── stabs.pdf + │   │   │   ├── readme.txt + │   │   │   └── release.txt + │   │   └── gcc-arm-none-eabi + │   │   ├── libstdcxx + │   │   │   ├── __init__.py + │   │   │   └── v6 + │   │   │   ├── __init__.py + │   │   │   └── printers.py + │   │   └── samples + │   │   ├── ldscripts + │   │   │   ├── gcc.ld + │   │   │   ├── mem.ld + │   │   │   ├── multi-ram.ld + │   │   │   └── nokeep.ld + │   │   ├── readme.txt + │   │   ├── src + │   │   │   ├── cpp + │   │   │   │   ├── cpp.cc + │   │   │   │   └── Makefile + │   │   │   ├── fpin + │   │   │   │   ├── fpin.c + │   │   │   │   └── Makefile + │   │   │   ├── fpout + │   │   │   │   ├── fpout.c + │   │   │   │   └── Makefile + │   │   │   ├── Makefile + │   │   │   ├── makefile.conf + │   │   │   ├── minimum + │   │   │   │   ├── Makefile + │   │   │   │   └── minimum.c + │   │   │   ├── multiram + │   │   │   │   ├── Makefile + │   │   │   │   └── multiram.cc + │   │   │   ├── qemu + │   │   │   │   ├── hello.c + │   │   │   │   └── Makefile + │   │   │   ├── retarget + │   │   │   │   ├── main.c + │   │   │   │   ├── Makefile + │   │   │   │   └── retarget.c + │   │   │   └── semihost + │   │   │   ├── Makefile + │   │   │   └── semihost.c + │   │   └── startup + │   │   ├── startup_ARMCM0.S + │   │   ├── startup_ARMCM3.S + │   │   └── startup_ARMCM4.S + │   ├── 4.8.3-2014q1.tar.gz + │   └── gcc-arm-none-eabi-4_8-2014q1-20140314-linux.tar.bz2 + ├── autopatch + │   └── auto_patch.bat + ├── DownloadServer + │   ├── DownloadServer.exe + │   ├── readme.txt + │   └── start.bat + ├── file_check_sum + │   └── file_checksum.c + ├── iperf.exe + ├── serial_to_usb + │   └── mbedWinSerial_16466.zip + ├── simple_config_wizard + │   ├── Android + │   │   ├── ChangeLog + │   │   ├── Realtek_Android_Simple_Config_Wizard_Guide_V2.pdf + │   │   ├── SimpleConfigWizard + │   │   │   ├── AndroidManifest.xml + │   │   │   ├── assets + │   │   │   ├── bin + │   │   │   │   ├── AndroidManifest.xml + │   │   │   │   ├── classes + │   │   │   │   │   └── com + │   │   │   │   │   ├── rtk + │   │   │   │   │   │   └── simpleconfig_wizard + │   │   │   │   │   │   ├── AESCrypt.class + │   │   │   │   │   │   ├── BuildConfig.class + │   │   │   │   │   │   ├── ConfigurationDevice.class + │   │   │   │   │   │   ├── ConfigurationDevice$DeviceInfo.class + │   │   │   │   │   │   ├── FileOps.class + │   │   │   │   │   │   ├── MainActivity$10.class + │   │   │   │   │   │   ├── MainActivity$11.class + │   │   │   │   │   │   ├── MainActivity$12$1.class + │   │   │   │   │   │   ├── MainActivity$12$2$1.class + │   │   │   │   │   │   ├── MainActivity$12$2$2.class + │   │   │   │   │   │   ├── MainActivity$12$2.class + │   │   │   │   │   │   ├── MainActivity$12.class + │   │   │   │   │   │   ├── MainActivity$13.class + │   │   │   │   │   │   ├── MainActivity$14.class + │   │   │   │   │   │   ├── MainActivity$15.class + │   │   │   │   │   │   ├── MainActivity$16.class + │   │   │   │   │   │   ├── MainActivity$17.class + │   │   │   │   │   │   ├── MainActivity$18.class + │   │   │   │   │   │   ├── MainActivity$19.class + │   │   │   │   │   │   ├── MainActivity$1.class + │   │   │   │   │   │   ├── MainActivity$20.class + │   │   │   │   │   │   ├── MainActivity$21.class + │   │   │   │   │   │   ├── MainActivity$22.class + │   │   │   │   │   │   ├── MainActivity$23.class + │   │   │   │   │   │   ├── MainActivity$24.class + │   │   │   │   │   │   ├── MainActivity$25.class + │   │   │   │   │   │   ├── MainActivity$26.class + │   │   │   │   │   │   ├── MainActivity$27.class + │   │   │   │   │   │   ├── MainActivity$28.class + │   │   │   │   │   │   ├── MainActivity$29.class + │   │   │   │   │   │   ├── MainActivity$2.class + │   │   │   │   │   │   ├── MainActivity$30.class + │   │   │   │   │   │   ├── MainActivity$31.class + │   │   │   │   │   │   ├── MainActivity$32.class + │   │   │   │   │   │   ├── MainActivity$3.class + │   │   │   │   │   │   ├── MainActivity$4.class + │   │   │   │   │   │   ├── MainActivity$5.class + │   │   │   │   │   │   ├── MainActivity$6.class + │   │   │   │   │   │   ├── MainActivity$7.class + │   │   │   │   │   │   ├── MainActivity$8.class + │   │   │   │   │   │   ├── MainActivity$9.class + │   │   │   │   │   │   ├── MainActivity.class + │   │   │   │   │   │   ├── MainActivity$DeviceAdapter.class + │   │   │   │   │   │   ├── MainActivity$DeviceAdapter$ViewHolder.class + │   │   │   │   │   │   ├── MainActivity$MsgHandler$1.class + │   │   │   │   │   │   ├── MainActivity$MsgHandler.class + │   │   │   │   │   │   ├── MainActivity$SECURITY_TYPE.class + │   │   │   │   │   │   ├── R$attr.class + │   │   │   │   │   │   ├── R.class + │   │   │   │   │   │   ├── R$color.class + │   │   │   │   │   │   ├── R$dimen.class + │   │   │   │   │   │   ├── R$drawable.class + │   │   │   │   │   │   ├── R$id.class + │   │   │   │   │   │   ├── R$layout.class + │   │   │   │   │   │   ├── R$menu.class + │   │   │   │   │   │   ├── R$raw.class + │   │   │   │   │   │   ├── R$string.class + │   │   │   │   │   │   ├── R$style.class + │   │   │   │   │   │   ├── SCCtlOps.class + │   │   │   │   │   │   ├── SCCtlOps$Flag.class + │   │   │   │   │   │   └── SCCtlOps$ScanACK.class + │   │   │   │   │   ├── wifi + │   │   │   │   │   │   └── connection + │   │   │   │   │   │   ├── BaseContent$1.class + │   │   │   │   │   │   ├── BaseContent$2.class + │   │   │   │   │   │   ├── BaseContent.class + │   │   │   │   │   │   ├── ChangePasswordContent$1.class + │   │   │   │   │   │   ├── ChangePasswordContent.class + │   │   │   │   │   │   ├── ChangingAwareEditText.class + │   │   │   │   │   │   ├── ConfigurationSecurities.class + │   │   │   │   │   │   ├── ConfigurationSecuritiesOld.class + │   │   │   │   │   │   ├── ConfigurationSecuritiesV8.class + │   │   │   │   │   │   ├── ConfigurationSecuritiesV8$PskType.class + │   │   │   │   │   │   ├── ConfiguredNetworkContent$1.class + │   │   │   │   │   │   ├── ConfiguredNetworkContent$2.class + │   │   │   │   │   │   ├── ConfiguredNetworkContent$3.class + │   │   │   │   │   │   ├── ConfiguredNetworkContent.class + │   │   │   │   │   │   ├── CurrentNetworkContent$1.class + │   │   │   │   │   │   ├── CurrentNetworkContent.class + │   │   │   │   │   │   ├── Floating.class + │   │   │   │   │   │   ├── Floating$Content.class + │   │   │   │   │   │   ├── MainActivity.class + │   │   │   │   │   │   ├── NewNetworkContent$1.class + │   │   │   │   │   │   ├── NewNetworkContent.class + │   │   │   │   │   │   ├── ReenableAllApsWhenNetworkStateChanged$BackgroundService$1.class + │   │   │   │   │   │   ├── ReenableAllApsWhenNetworkStateChanged$BackgroundService.class + │   │   │   │   │   │   ├── ReenableAllApsWhenNetworkStateChanged.class + │   │   │   │   │   │   ├── Version.class + │   │   │   │   │   │   ├── Wifi$1.class + │   │   │   │   │   │   └── Wifi.class + │   │   │   │   │   └── zxing + │   │   │   │   │   ├── activity + │   │   │   │   │   │   ├── CaptureActivity$1.class + │   │   │   │   │   │   ├── CaptureActivity$2.class + │   │   │   │   │   │   └── CaptureActivity.class + │   │   │   │   │   ├── camera + │   │   │   │   │   │   ├── AutoFocusCallback.class + │   │   │   │   │   │   ├── CameraConfigurationManager.class + │   │   │   │   │   │   ├── CameraManager.class + │   │   │   │   │   │   ├── FlashlightManager.class + │   │   │   │   │   │   ├── PlanarYUVLuminanceSource.class + │   │   │   │   │   │   └── PreviewCallback.class + │   │   │   │   │   ├── decoding + │   │   │   │   │   │   ├── CaptureActivityHandler.class + │   │   │   │   │   │   ├── CaptureActivityHandler$State.class + │   │   │   │   │   │   ├── DecodeFormatManager.class + │   │   │   │   │   │   ├── DecodeHandler.class + │   │   │   │   │   │   ├── DecodeThread.class + │   │   │   │   │   │   ├── FinishListener.class + │   │   │   │   │   │   ├── InactivityTimer.class + │   │   │   │   │   │   ├── InactivityTimer$DaemonThreadFactory.class + │   │   │   │   │   │   ├── Intents.class + │   │   │   │   │   │   ├── Intents$Encode.class + │   │   │   │   │   │   ├── Intents$Scan.class + │   │   │   │   │   │   ├── Intents$SearchBookContents.class + │   │   │   │   │   │   ├── Intents$Share.class + │   │   │   │   │   │   └── Intents$WifiConnect.class + │   │   │   │   │   └── view + │   │   │   │   │   ├── ViewfinderResultPointCallback.class + │   │   │   │   │   └── ViewfinderView.class + │   │   │   │   ├── classes.dex + │   │   │   │   ├── dexedLibs + │   │   │   │   │   ├── android-support-v4-c5fcaff10ac869d31a0f85f3a84c0d27.jar + │   │   │   │   │   ├── gson-2.2.1-d21d34720db4d42074bdd66fdf715106.jar + │   │   │   │   │   ├── simpleconfigwizard_r2_lib-585d79537219fda53acbaff36929a4c6.jar + │   │   │   │   │   └── zxing-95822a6859c23310d978aa940d37fe59.jar + │   │   │   │   ├── jarlist.cache + │   │   │   │   ├── res + │   │   │   │   │   └── crunch + │   │   │   │   │   ├── drawable + │   │   │   │   │   │   ├── add_icon.png + │   │   │   │   │   │   ├── ic_dialog_icon.png + │   │   │   │   │   │   ├── icon.png + │   │   │   │   │   │   ├── qrcode_img.png + │   │   │   │   │   │   ├── refresh.png + │   │   │   │   │   │   ├── settings_icon.png + │   │   │   │   │   │   ├── settings.png + │   │   │   │   │   │   ├── signal1.png + │   │   │   │   │   │   ├── signal2.png + │   │   │   │   │   │   ├── signal3.png + │   │   │   │   │   │   ├── signal4.png + │   │   │   │   │   │   ├── signal5.png + │   │   │   │   │   │   └── speaker.png + │   │   │   │   │   ├── drawable-hdpi + │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   ├── drawable-mdpi + │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   ├── drawable-xhdpi + │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   └── drawable-xxhdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── resources.ap_ + │   │   │   │   └── SimpleConfigWizard_R2.apk + │   │   │   ├── gen + │   │   │   │   └── com + │   │   │   │   └── rtk + │   │   │   │   └── simpleconfig_wizard + │   │   │   │   ├── BuildConfig.java + │   │   │   │   └── R.java + │   │   │   ├── ic_launcher-web.png + │   │   │   ├── libs + │   │   │   │   ├── android-support-v4.jar + │   │   │   │   ├── armeabi + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── armeabi-v7a + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── gson-2.2.1.jar + │   │   │   │   ├── mips + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── simpleconfigwizard_r2_lib.jar + │   │   │   │   ├── x86 + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   └── zxing.jar + │   │   │   ├── proguard-project.txt + │   │   │   ├── project.properties + │   │   │   ├── res + │   │   │   │   ├── drawable + │   │   │   │   │   ├── add_icon.png + │   │   │   │   │   ├── ic_dialog_icon.png + │   │   │   │   │   ├── icon.png + │   │   │   │   │   ├── navbar.9.png + │   │   │   │   │   ├── qrcode_img.png + │   │   │   │   │   ├── refresh.png + │   │   │   │   │   ├── settings_icon.png + │   │   │   │   │   ├── settings.png + │   │   │   │   │   ├── signal1.png + │   │   │   │   │   ├── signal2.png + │   │   │   │   │   ├── signal3.png + │   │   │   │   │   ├── signal4.png + │   │   │   │   │   ├── signal5.png + │   │   │   │   │   └── speaker.png + │   │   │   │   ├── drawable-hdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── drawable-ldpi + │   │   │   │   ├── drawable-mdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── drawable-xhdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── drawable-xxhdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── layout + │   │   │   │   │   ├── activity_main.xml + │   │   │   │   │   ├── add_network_content.xml + │   │   │   │   │   ├── base_content.xml + │   │   │   │   │   ├── buttons_view_divider.xml + │   │   │   │   │   ├── confirm_list.xml + │   │   │   │   │   ├── confirm_pincode_entry.xml + │   │   │   │   │   ├── customtitlebar.xml + │   │   │   │   │   ├── device_list_confirm.xml + │   │   │   │   │   ├── device_list.xml + │   │   │   │   │   ├── device_rename.xml + │   │   │   │   │   ├── floating.xml + │   │   │   │   │   ├── qrcode_scanner.xml + │   │   │   │   │   ├── title_view.xml + │   │   │   │   │   ├── wifiap_list.xml + │   │   │   │   │   └── wifi_password_entry.xml + │   │   │   │   ├── menu + │   │   │   │   │   └── main.xml + │   │   │   │   ├── raw + │   │   │   │   │   └── beep.ogg + │   │   │   │   ├── values + │   │   │   │   │   ├── colors.xml + │   │   │   │   │   ├── dimens.xml + │   │   │   │   │   ├── ids.xml + │   │   │   │   │   ├── strings.xml + │   │   │   │   │   └── styles.xml + │   │   │   │   ├── values-sw600dp + │   │   │   │   │   └── dimens.xml + │   │   │   │   ├── values-sw720dp-land + │   │   │   │   │   └── dimens.xml + │   │   │   │   ├── values-v11 + │   │   │   │   │   └── styles.xml + │   │   │   │   └── values-v14 + │   │   │   │   └── styles.xml + │   │   │   └── src + │   │   │   └── com + │   │   │   ├── rtk + │   │   │   │   └── simpleconfig_wizard + │   │   │   │   ├── AESCrypt.java + │   │   │   │   ├── ConfigurationDevice.java + │   │   │   │   ├── FileOps.java + │   │   │   │   ├── MainActivity.java + │   │   │   │   └── SCCtlOps.java + │   │   │   ├── wifi + │   │   │   │   └── connection + │   │   │   │   ├── BaseContent.java + │   │   │   │   ├── ChangePasswordContent.java + │   │   │   │   ├── ChangingAwareEditText.java + │   │   │   │   ├── ConfigurationSecurities.java + │   │   │   │   ├── ConfigurationSecuritiesOld.java + │   │   │   │   ├── ConfigurationSecuritiesV8.java + │   │   │   │   ├── ConfiguredNetworkContent.java + │   │   │   │   ├── CurrentNetworkContent.java + │   │   │   │   ├── Floating.java + │   │   │   │   ├── MainActivity.java + │   │   │   │   ├── NewNetworkContent.java + │   │   │   │   ├── ReenableAllApsWhenNetworkStateChanged.java + │   │   │   │   ├── Version.java + │   │   │   │   └── Wifi.java + │   │   │   └── zxing + │   │   │   ├── activity + │   │   │   │   └── CaptureActivity.java + │   │   │   ├── camera + │   │   │   │   ├── AutoFocusCallback.java + │   │   │   │   ├── CameraConfigurationManager.java + │   │   │   │   ├── CameraManager.java + │   │   │   │   ├── FlashlightManager.java + │   │   │   │   ├── PlanarYUVLuminanceSource.java + │   │   │   │   └── PreviewCallback.java + │   │   │   ├── decoding + │   │   │   │   ├── CaptureActivityHandler.java + │   │   │   │   ├── DecodeFormatManager.java + │   │   │   │   ├── DecodeHandler.java + │   │   │   │   ├── DecodeThread.java + │   │   │   │   ├── FinishListener.java + │   │   │   │   ├── InactivityTimer.java + │   │   │   │   └── Intents.java + │   │   │   └── view + │   │   │   ├── ViewfinderResultPointCallback.java + │   │   │   └── ViewfinderView.java + │   │   └── SimpleConfigWizard_v2.0.8.20160523.apk + │   └── iOS + │   ├── ChangeLog + │   ├── Realtek_iOS_Simple_Config_Wizard_Guide_V205.pdf + │   └── SimpleConfigWizard + │   ├── SimpleConfig + │   │   ├── AppDelegate.h + │   │   ├── AppDelegate.m + │   │   ├── Base.lproj + │   │   │   ├── LaunchScreen.xib + │   │   │   └── Main.storyboard + │   │   ├── ClientListCell.h + │   │   ├── ClientListCell.m + │   │   ├── ClientViewController.h + │   │   ├── ClientViewController.m + │   │   ├── ConfigViewController.h + │   │   ├── ConfigViewController.m + │   │   ├── DiscoverViewController.h + │   │   ├── DiscoverViewController.m + │   │   ├── Images.xcassets + │   │   │   └── AppIcon.appiconset + │   │   │   ├── 120тАЖ├ЧтА_20-1.png + │   │   │   ├── 120тАЖ├ЧтА_20.png + │   │   │   ├── 152тАЖ├ЧтА_52.png + │   │   │   ├── 180 X 180.png + │   │   │   ├── 29 X 29.png + │   │   │   ├── 40 X 40.png + │   │   │   ├── 58 X 58-1.png + │   │   │   ├── 58 X 58.png + │   │   │   ├── 76тАЖ├ЧтА_6.png + │   │   │   ├── 80 X 80-1.png + │   │   │   ├── 80 X 80.png + │   │   │   ├── 87 X 87.png + │   │   │   └── Contents.json + │   │   ├── Info.plist + │   │   ├── Lib + │   │   │   ├── Controller + │   │   │   │   ├── Controller.h + │   │   │   │   └── Controller.m + │   │   │   ├── Discover + │   │   │   │   ├── Scanner.h + │   │   │   │   └── Scanner.m + │   │   │   ├── SimpleConfigLib + │   │   │   │   ├── AsyncSocket.h + │   │   │   │   ├── AsyncUdpSocket.h + │   │   │   │   ├── Defines.h + │   │   │   │   ├── libsimpleconfiglib.a + │   │   │   │   ├── PatternBase.h + │   │   │   │   ├── PatternFour.h + │   │   │   │   ├── PatternThree.h + │   │   │   │   └── PatternTwo.h + │   │   │   └── ZBarSDK + │   │   │   ├── Headers + │   │   │   │   └── ZBarSDK + │   │   │   │   ├── zbar + │   │   │   │   │   ├── Decoder.h + │   │   │   │   │   ├── Exception.h + │   │   │   │   │   ├── Image.h + │   │   │   │   │   ├── ImageScanner.h + │   │   │   │   │   ├── Processor.h + │   │   │   │   │   ├── Scanner.h + │   │   │   │   │   ├── Symbol.h + │   │   │   │   │   ├── Video.h + │   │   │   │   │   └── Window.h + │   │   │   │   ├── ZBarCameraSimulator.h + │   │   │   │   ├── ZBarCaptureReader.h + │   │   │   │   ├── zbar.h + │   │   │   │   ├── ZBarHelpController.h + │   │   │   │   ├── ZBarImage.h + │   │   │   │   ├── ZBarImageScanner.h + │   │   │   │   ├── ZBarReaderController.h + │   │   │   │   ├── ZBarReaderViewController.h + │   │   │   │   ├── ZBarReaderView.h + │   │   │   │   ├── ZBarSDK.h + │   │   │   │   └── ZBarSymbol.h + │   │   │   ├── libzbar.a + │   │   │   └── Resources + │   │   │   ├── Thumbs.db + │   │   │   ├── zbar-back.png + │   │   │   ├── zbar-help.html + │   │   │   ├── zbar-helpicons.png + │   │   │   └── zbar-samples.png + │   │   ├── main.m + │   │   ├── Reachability.h + │   │   ├── Reachability.m + │   │   ├── Resource + │   │   │   ├── home_image.png + │   │   │   ├── icon + │   │   │   │   ├── 114тАЖ├ЧтА_14.png0000 + │   │   │   │   ├── 120тАЖ├ЧтА_20.png0000 + │   │   │   │   ├── 144тАЖ├ЧтА_44.png0000 + │   │   │   │   ├── 152тАЖ├ЧтА_52.png0000 + │   │   │   │   ├── 180 X 180.png + │   │   │   │   ├── 29 X 29.png + │   │   │   │   ├── 40 X 40.png + │   │   │   │   ├── 57тАЖ├ЧтА_7.png + │   │   │   │   ├── 58 X 58.png + │   │   │   │   ├── 72тАЖ├ЧтА_2.png + │   │   │   │   ├── 76тАЖ├ЧтА_6.png + │   │   │   │   ├── 80 X 80.png + │   │   │   │   └── 87 X 87.png + │   │   │   ├── line@2x.png + │   │   │   ├── pick_bg@2x.png + │   │   │   ├── qr_scan.png + │   │   │   ├── zbar-back.png + │   │   │   ├── zbar-help.html + │   │   │   ├── zbar-helpicons.png + │   │   │   └── zbar-samples.png + │   │   ├── SimpleConfig.h + │   │   ├── SimpleConfig.m + │   │   ├── String.h + │   │   ├── ViewController.h + │   │   └── ViewController.m + │   ├── SimpleConfigTests + │   │   ├── Info.plist + │   │   └── SimpleConfigTests.m + │   └── SimpleConfig.xcodeproj + │   ├── project.pbxproj + │   ├── project.xcworkspace + │   │   ├── contents.xcworkspacedata + │   │   ├── xcshareddata + │   │   │   └── SimpleConfig.xcscmblueprint + │   │   └── xcuserdata + │   │   ├── iSOHO.xcuserdatad + │   │   │   ├── UserInterfaceState.xcuserstate + │   │   │   └── WorkspaceSettings.xcsettings + │   │   └── realsil_ap.xcuserdatad + │   │   └── UserInterfaceState.xcuserstate + │   └── xcuserdata + │   ├── iSOHO.xcuserdatad + │   │   ├── xcdebugger + │   │   │   └── Breakpoints_v2.xcbkptlist + │   │   └── xcschemes + │   │   ├── SimpleConfig.xcscheme + │   │   └── xcschememanagement.plist + │   └── realsil_ap.xcuserdatad + │   ├── xcdebugger + │   │   └── Breakpoints_v2.xcbkptlist + │   └── xcschemes + │   ├── SimpleConfig.xcscheme + │   └── xcschememanagement.plist + ├── simple_config_wizard_3.4b + │   ├── Android + │   │   ├── ChangeLog + │   │   ├── Realtek_Android_Simple_Config_Wizard_User_Guide_V1.pdf + │   │   ├── SimpleConfigWizard_v115 + │   │   │   ├── AndroidManifest.xml + │   │   │   ├── assets + │   │   │   ├── bin + │   │   │   │   ├── AndroidManifest.xml + │   │   │   │   ├── classes + │   │   │   │   │   └── com + │   │   │   │   │   ├── rtk + │   │   │   │   │   │   └── simpleconfig_wizard + │   │   │   │   │   ├── wifi + │   │   │   │   │   │   └── connection + │   │   │   │   │   └── zxing + │   │   │   │   │   ├── activity + │   │   │   │   │   ├── camera + │   │   │   │   │   ├── decoding + │   │   │   │   │   └── view + │   │   │   │   ├── classes.dex + │   │   │   │   ├── dexedLibs + │   │   │   │   │   ├── android-support-v4-a74692b9d7d9aba6cd6970ed42fd1406.jar + │   │   │   │   │   ├── gson-2.2.1-8b153186fa4dc34e80885770cbac3405.jar + │   │   │   │   │   ├── simpleconfigwizardlib-f8662afb3a2ce92a9bd4be387c4feb9c.jar + │   │   │   │   │   └── zxing-fe997f42c9e9d79af760053f0adf1279.jar + │   │   │   │   ├── res + │   │   │   │   │   └── crunch + │   │   │   │   │   ├── drawable + │   │   │   │   │   │   ├── add_icon.png + │   │   │   │   │   │   ├── ic_dialog_icon.png + │   │   │   │   │   │   ├── icon.png + │   │   │   │   │   │   ├── navbar.png + │   │   │   │   │   │   ├── qrcode_img.png + │   │   │   │   │   │   ├── refresh.png + │   │   │   │   │   │   ├── settings_icon.png + │   │   │   │   │   │   ├── settings.png + │   │   │   │   │   │   ├── signal1.png + │   │   │   │   │   │   ├── signal2.png + │   │   │   │   │   │   ├── signal3.png + │   │   │   │   │   │   ├── signal4.png + │   │   │   │   │   │   └── signal5.png + │   │   │   │   │   ├── drawable-hdpi + │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   ├── drawable-mdpi + │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   ├── drawable-xhdpi + │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   └── drawable-xxhdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── resources.ap_ + │   │   │   │   └── SimpleConfigWizard.apk + │   │   │   ├── gen + │   │   │   │   └── com + │   │   │   │   └── rtk + │   │   │   │   └── simpleconfig_wizard + │   │   │   │   ├── BuildConfig.java + │   │   │   │   └── R.java + │   │   │   ├── ic_launcher-web.png + │   │   │   ├── libs + │   │   │   │   ├── android-support-v4.jar + │   │   │   │   ├── arm64-v8a + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── armeabi + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── armeabi-v7a + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── gson-2.2.1.jar + │   │   │   │   ├── mips + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── mips64 + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── simpleconfigwizardlib.jar + │   │   │   │   ├── x86 + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   ├── x86_64 + │   │   │   │   │   └── libsimpleconfiglib.so + │   │   │   │   └── zxing.jar + │   │   │   ├── proguard-project.txt + │   │   │   ├── project.properties + │   │   │   ├── res + │   │   │   │   ├── drawable + │   │   │   │   │   ├── add_icon.png + │   │   │   │   │   ├── ic_dialog_icon.png + │   │   │   │   │   ├── icon.png + │   │   │   │   │   ├── navbar.png + │   │   │   │   │   ├── qrcode_img.png + │   │   │   │   │   ├── refresh.png + │   │   │   │   │   ├── settings_icon.png + │   │   │   │   │   ├── settings.png + │   │   │   │   │   ├── signal1.png + │   │   │   │   │   ├── signal2.png + │   │   │   │   │   ├── signal3.png + │   │   │   │   │   ├── signal4.png + │   │   │   │   │   └── signal5.png + │   │   │   │   ├── drawable-hdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── drawable-ldpi + │   │   │   │   ├── drawable-mdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── drawable-xhdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── drawable-xxhdpi + │   │   │   │   │   └── ic_launcher.png + │   │   │   │   ├── layout + │   │   │   │   │   ├── activity_main.xml + │   │   │   │   │   ├── add_network_content.xml + │   │   │   │   │   ├── base_content.xml + │   │   │   │   │   ├── buttons_view_divider.xml + │   │   │   │   │   ├── confirm_list.xml + │   │   │   │   │   ├── confirm_pincode_entry.xml + │   │   │   │   │   ├── customtitlebar.xml + │   │   │   │   │   ├── device_list.xml + │   │   │   │   │   ├── device_rename.xml + │   │   │   │   │   ├── floating.xml + │   │   │   │   │   ├── qrcode_scanner.xml + │   │   │   │   │   ├── title_view.xml + │   │   │   │   │   ├── wifiap_list.xml + │   │   │   │   │   └── wifi_password_entry.xml + │   │   │   │   ├── menu + │   │   │   │   │   └── main.xml + │   │   │   │   ├── raw + │   │   │   │   │   └── beep.ogg + │   │   │   │   ├── values + │   │   │   │   │   ├── colors.xml + │   │   │   │   │   ├── dimens.xml + │   │   │   │   │   ├── ids.xml + │   │   │   │   │   ├── strings.xml + │   │   │   │   │   └── styles.xml + │   │   │   │   ├── values-sw600dp + │   │   │   │   │   └── dimens.xml + │   │   │   │   ├── values-sw720dp-land + │   │   │   │   │   └── dimens.xml + │   │   │   │   ├── values-v11 + │   │   │   │   │   └── styles.xml + │   │   │   │   └── values-v14 + │   │   │   │   └── styles.xml + │   │   │   └── src + │   │   │   └── com + │   │   │   ├── rtk + │   │   │   │   └── simpleconfig_wizard + │   │   │   │   ├── AESCrypt.java + │   │   │   │   ├── ConfigurationDevice.java + │   │   │   │   ├── FileOps.java + │   │   │   │   ├── MainActivity.java + │   │   │   │   └── SCCtlOps.java + │   │   │   ├── wifi + │   │   │   │   └── connection + │   │   │   │   ├── BaseContent.java + │   │   │   │   ├── ChangePasswordContent.java + │   │   │   │   ├── ChangingAwareEditText.java + │   │   │   │   ├── ConfigurationSecurities.java + │   │   │   │   ├── ConfigurationSecuritiesOld.java + │   │   │   │   ├── ConfigurationSecuritiesV8.java + │   │   │   │   ├── ConfiguredNetworkContent.java + │   │   │   │   ├── CurrentNetworkContent.java + │   │   │   │   ├── Floating.java + │   │   │   │   ├── MainActivity.java + │   │   │   │   ├── NewNetworkContent.java + │   │   │   │   ├── ReenableAllApsWhenNetworkStateChanged.java + │   │   │   │   ├── Version.java + │   │   │   │   └── Wifi.java + │   │   │   └── zxing + │   │   │   ├── activity + │   │   │   │   └── CaptureActivity.java + │   │   │   ├── camera + │   │   │   │   ├── AutoFocusCallback.java + │   │   │   │   ├── CameraConfigurationManager.java + │   │   │   │   ├── CameraManager.java + │   │   │   │   ├── FlashlightManager.java + │   │   │   │   ├── PlanarYUVLuminanceSource.java + │   │   │   │   └── PreviewCallback.java + │   │   │   ├── decoding + │   │   │   │   ├── CaptureActivityHandler.java + │   │   │   │   ├── DecodeFormatManager.java + │   │   │   │   ├── DecodeHandler.java + │   │   │   │   ├── DecodeThread.java + │   │   │   │   ├── FinishListener.java + │   │   │   │   ├── InactivityTimer.java + │   │   │   │   └── Intents.java + │   │   │   └── view + │   │   │   ├── ViewfinderResultPointCallback.java + │   │   │   └── ViewfinderView.java + │   │   └── SimpleConfigWizard_v115.apk + │   └── iOS + │   ├── ChangeLog + │   ├── Realtek_iOS_Simple_Config_Wizard_Guide_V1.pdf + │   └── SimpleConfigWizard_v109 + │   ├── CocoaAsyncSocket.framework + │   │   ├── CocoaAsyncSocket + │   │   ├── _CodeSignature + │   │   │   └── CodeResources + │   │   ├── Headers + │   │   │   ├── AsyncSocket.h + │   │   │   ├── AsyncUdpSocket.h + │   │   │   ├── CocoaAsyncSocket.h + │   │   │   ├── GCDAsyncSocket.h + │   │   │   └── GCDAsyncUdpSocket.h + │   │   ├── Info.plist + │   │   └── Modules + │   │   └── module.modulemap + │   ├── SimpleConfig + │   │   ├── Base.lproj + │   │   │   ├── Main_iPad.storyboard + │   │   │   └── Main_iPhone.storyboard + │   │   ├── en.lproj + │   │   │   └── InfoPlist.strings + │   │   ├── ic_dialog_icon.png + │   │   ├── image + │   │   │   ├── Default-568h@2x.png + │   │   │   ├── ic_dialog_icon.png + │   │   │   ├── icon.png + │   │   │   ├── imagebtn_bg.png + │   │   │   ├── imagebtn_bg_up.png + │   │   │   ├── qrcode_img.png + │   │   │   ├── refresh.png + │   │   │   └── settings.png + │   │   ├── Images.xcassets + │   │   │   ├── AppIcon.appiconset + │   │   │   │   ├── 29_1_icon.png + │   │   │   │   ├── 29_2_icon-1.png + │   │   │   │   ├── 29_2_icon.png + │   │   │   │   ├── 29_3_icon-1.png + │   │   │   │   ├── 40_1_icon.png + │   │   │   │   ├── 40_2_icon-1.png + │   │   │   │   ├── 40_2_icon.png + │   │   │   │   ├── 40_3_icon-1.png + │   │   │   │   ├── 60_2_icon.png + │   │   │   │   ├── 60_3icon.png + │   │   │   │   ├── 76_1_icon.png + │   │   │   │   ├── 76_2_icon.png + │   │   │   │   └── Contents.json + │   │   │   ├── Contents.json + │   │   │   └── LaunchImage.launchimage + │   │   │   ├── Contents.json + │   │   │   └── Default-568h@2x.png + │   │   ├── include + │   │   │   ├── LibSimpleConfig + │   │   │   │   ├── libLibSimpleConfig.a + │   │   │   │   ├── LibSimpleConfig.h + │   │   │   │   └── SimpleConfig.h + │   │   │   └── ZBarSDK + │   │   │   ├── Headers + │   │   │   │   └── ZBarSDK + │   │   │   │   ├── zbar + │   │   │   │   │   ├── Decoder.h + │   │   │   │   │   ├── Exception.h + │   │   │   │   │   ├── Image.h + │   │   │   │   │   ├── ImageScanner.h + │   │   │   │   │   ├── Processor.h + │   │   │   │   │   ├── Scanner.h + │   │   │   │   │   ├── Symbol.h + │   │   │   │   │   ├── Video.h + │   │   │   │   │   └── Window.h + │   │   │   │   ├── ZBarCameraSimulator.h + │   │   │   │   ├── ZBarCaptureReader.h + │   │   │   │   ├── zbar.h + │   │   │   │   ├── ZBarHelpController.h + │   │   │   │   ├── ZBarImage.h + │   │   │   │   ├── ZBarImageScanner.h + │   │   │   │   ├── ZBarReaderController.h + │   │   │   │   ├── ZBarReaderViewController.h + │   │   │   │   ├── ZBarReaderView.h + │   │   │   │   ├── ZBarSDK.h + │   │   │   │   └── ZBarSymbol.h + │   │   │   ├── libzbar.a + │   │   │   └── Resources + │   │   │   ├── Thumbs.db + │   │   │   ├── zbar-back.png + │   │   │   ├── zbar-help.html + │   │   │   ├── zbar-helpicons.png + │   │   │   └── zbar-samples.png + │   │   ├── main.m + │   │   ├── Reachability.h + │   │   ├── Reachability.m + │   │   ├── RTKAppDelegate.h + │   │   ├── RTKAppDelegate.m + │   │   ├── RTKViewController.h + │   │   ├── RTKViewController.m + │   │   ├── SimpleConfig-Info.plist + │   │   └── SimpleConfig-Prefix.pch + │   ├── SimpleConfigTests + │   │   ├── en.lproj + │   │   │   └── InfoPlist.strings + │   │   ├── SimpleConfigTests-Info.plist + │   │   └── SimpleConfigTests.m + │   └── SimpleConfig.xcodeproj + │   ├── project.pbxproj + │   ├── project.xcworkspace + │   │   ├── contents.xcworkspacedata + │   │   └── xcuserdata + │   │   ├── isaiah.xcuserdatad + │   │   │   └── UserInterfaceState.xcuserstate + │   │   └── iSOHO.xcuserdatad + │   │   └── UserInterfaceState.xcuserstate + │   └── xcuserdata + │   ├── isaiah.xcuserdatad + │   │   ├── xcdebugger + │   │   │   └── Breakpoints_v2.xcbkptlist + │   │   └── xcschemes + │   │   ├── SimpleConfig.xcscheme + │   │   └── xcschememanagement.plist + │   └── iSOHO.xcuserdatad + │   ├── xcdebugger + │   │   └── Breakpoints_v2.xcbkptlist + │   └── xcschemes + │   ├── SimpleConfig.xcscheme + │   └── xcschememanagement.plist + ├── uart_adapter + │   └── app + │   └── android + │   ├── Document + │   │   └── Android UART Adapter Programming Guide_v0.1.doc + │   ├── UartThrough + │   │   ├── app + │   │   │   ├── app.iml + │   │   │   ├── build + │   │   │   │   ├── generated + │   │   │   │   │   ├── res + │   │   │   │   │   │   └── rs + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   └── source + │   │   │   │   │   ├── aidl + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   ├── buildConfig + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── com + │   │   │   │   │   │   │   └── realtek + │   │   │   │   │   │   │   └── uartthrough + │   │   │   │   │   │   │   └── test + │   │   │   │   │   │   │   └── BuildConfig.java + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── com + │   │   │   │   │   │   └── realtek + │   │   │   │   │   │   └── uartthrough + │   │   │   │   │   │   └── BuildConfig.java + │   │   │   │   │   ├── r + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── com + │   │   │   │   │   │   └── realtek + │   │   │   │   │   │   └── uartthrough + │   │   │   │   │   │   └── R.java + │   │   │   │   │   └── rs + │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   └── debug + │   │   │   │   │   └── debug + │   │   │   │   ├── intermediates + │   │   │   │   │   ├── assets + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   ├── incremental + │   │   │   │   │   │   ├── aidl + │   │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   │   └── dependency.store + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── dependency.store + │   │   │   │   │   │   ├── mergeAssets + │   │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   │   └── merger.xml + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── merger.xml + │   │   │   │   │   │   └── mergeResources + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── merger.xml + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── merger.xml + │   │   │   │   │   ├── manifests + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── AndroidManifest.xml + │   │   │   │   │   │   ├── full + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── AndroidManifest.xml + │   │   │   │   │   │   └── tmp + │   │   │   │   │   ├── res + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   ├── drawable + │   │   │   │   │   │   │   ├── add.png + │   │   │   │   │   │   │   ├── back.png + │   │   │   │   │   │   │   ├── bg_index01.png + │   │   │   │   │   │   │   ├── bg_index1.png + │   │   │   │   │   │   │   ├── device.png + │   │   │   │   │   │   │   ├── logo1.png + │   │   │   │   │   │   │   ├── logo.png + │   │   │   │   │   │   │   ├── search.png + │   │   │   │   │   │   │   └── setting.png + │   │   │   │   │   │   ├── drawable-hdpi-v4 + │   │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   │   ├── drawable-mdpi-v4 + │   │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   │   ├── drawable-xhdpi-v4 + │   │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   │   ├── drawable-xxhdpi-v4 + │   │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   │   ├── layout + │   │   │   │   │   │   │   ├── activity_chat.xml + │   │   │   │   │   │   │   ├── activity_main.xml + │   │   │   │   │   │   │   ├── layout_item_setting.xml + │   │   │   │   │   │   │   ├── layout_item.xml + │   │   │   │   │   │   │   └── setting_serialport.xml + │   │   │   │   │   │   ├── menu + │   │   │   │   │   │   │   ├── chat.xml + │   │   │   │   │   │   │   └── main.xml + │   │   │   │   │   │   ├── values + │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   ├── values-sw720dp-land-v13 + │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   ├── values-v11 + │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   └── values-v14 + │   │   │   │   │   │   └── values.xml + │   │   │   │   │   ├── resources + │   │   │   │   │   │   ├── resources-debug-androidTest.ap_ + │   │   │   │   │   │   └── resources-debug.ap_ + │   │   │   │   │   ├── rs + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   ├── lib + │   │   │   │   │   │   │   └── obj + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   ├── lib + │   │   │   │   │   │   └── obj + │   │   │   │   │   └── symbols + │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   └── debug + │   │   │   │   │   └── debug + │   │   │   │   └── outputs + │   │   │   │   └── logs + │   │   │   │   └── manifest-merger-debug-report.txt + │   │   │   ├── build.gradle + │   │   │   └── src + │   │   │   └── main + │   │   │   ├── AndroidManifest.xml + │   │   │   ├── assets + │   │   │   ├── java + │   │   │   │   └── com + │   │   │   │   └── realtek + │   │   │   │   └── uartthrough + │   │   │   │   ├── ChatActivity.java + │   │   │   │   ├── DeviceManager.java + │   │   │   │   ├── Globals_ctrl.java + │   │   │   │   ├── Globals_d.java + │   │   │   │   ├── MainActivity.java + │   │   │   │   ├── NsdCore.java + │   │   │   │   ├── OpStates.java + │   │   │   │   ├── TcpClient.java + │   │   │   │   └── UARTCmd.java + │   │   │   └── res + │   │   │   ├── drawable + │   │   │   │   ├── add.png + │   │   │   │   ├── back.png + │   │   │   │   ├── bg_index01.png + │   │   │   │   ├── bg_index1.png + │   │   │   │   ├── device.png + │   │   │   │   ├── logo1.png + │   │   │   │   ├── logo.png + │   │   │   │   ├── search.png + │   │   │   │   └── setting.png + │   │   │   ├── drawable-hdpi + │   │   │   │   └── ic_launcher.png + │   │   │   ├── drawable-ldpi + │   │   │   ├── drawable-mdpi + │   │   │   │   └── ic_launcher.png + │   │   │   ├── drawable-xhdpi + │   │   │   │   └── ic_launcher.png + │   │   │   ├── drawable-xxhdpi + │   │   │   │   └── ic_launcher.png + │   │   │   ├── layout + │   │   │   │   ├── activity_chat.xml + │   │   │   │   ├── activity_main.xml + │   │   │   │   ├── layout_item_setting.xml + │   │   │   │   ├── layout_item.xml + │   │   │   │   └── setting_serialport.xml + │   │   │   ├── menu + │   │   │   │   ├── chat.xml + │   │   │   │   └── main.xml + │   │   │   ├── values + │   │   │   │   ├── dimens.xml + │   │   │   │   ├── strings.xml + │   │   │   │   └── styles.xml + │   │   │   ├── values-sw600dp + │   │   │   │   └── dimens.xml + │   │   │   ├── values-sw720dp-land + │   │   │   │   └── dimens.xml + │   │   │   ├── values-v11 + │   │   │   │   └── styles.xml + │   │   │   └── values-v14 + │   │   │   └── styles.xml + │   │   ├── build + │   │   │   └── intermediates + │   │   │   ├── dex-cache + │   │   │   │   └── cache.xml + │   │   │   └── model_data.bin + │   │   ├── build.gradle + │   │   ├── gradle + │   │   │   └── wrapper + │   │   │   ├── gradle-wrapper.jar + │   │   │   └── gradle-wrapper.properties + │   │   ├── gradlew + │   │   ├── gradlew.bat + │   │   ├── import-summary.txt + │   │   ├── local.properties + │   │   ├── settings.gradle + │   │   └── UartThrough1.iml + │   └── UartThrough.apk + └── wigadget + ├── Android + │   ├── WiGadget + │   │   ├── app + │   │   │   ├── app.iml + │   │   │   ├── build + │   │   │   │   ├── generated + │   │   │   │   │   ├── res + │   │   │   │   │   │   └── rs + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   └── source + │   │   │   │   │   ├── aidl + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   ├── buildConfig + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── com + │   │   │   │   │   │   │   └── realtek + │   │   │   │   │   │   │   └── amebazeroconf + │   │   │   │   │   │   │   └── test + │   │   │   │   │   │   │   └── BuildConfig.java + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── com + │   │   │   │   │   │   └── realtek + │   │   │   │   │   │   └── wigadget + │   │   │   │   │   │   └── BuildConfig.java + │   │   │   │   │   ├── r + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   ├── android + │   │   │   │   │   │   │   └── support + │   │   │   │   │   │   │   └── v7 + │   │   │   │   │   │   │   └── appcompat + │   │   │   │   │   │   │   └── R.java + │   │   │   │   │   │   └── com + │   │   │   │   │   │   └── realtek + │   │   │   │   │   │   └── wigadget + │   │   │   │   │   │   └── R.java + │   │   │   │   │   └── rs + │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   └── debug + │   │   │   │   │   └── debug + │   │   │   │   ├── intermediates + │   │   │   │   │   ├── assets + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   ├── exploded-aar + │   │   │   │   │   │   └── com.android.support + │   │   │   │   │   │   ├── appcompat-v7 + │   │   │   │   │   │   │   └── 21.0.3 + │   │   │   │   │   │   │   ├── AndroidManifest.xml + │   │   │   │   │   │   │   ├── assets + │   │   │   │   │   │   │   ├── jars + │   │   │   │   │   │   │   │   └── classes.jar + │   │   │   │   │   │   │   ├── res + │   │   │   │   │   │   │   │   ├── anim + │   │   │   │   │   │   │   │   │   ├── abc_fade_in.xml + │   │   │   │   │   │   │   │   │   ├── abc_fade_out.xml + │   │   │   │   │   │   │   │   │   ├── abc_slide_in_bottom.xml + │   │   │   │   │   │   │   │   │   ├── abc_slide_in_top.xml + │   │   │   │   │   │   │   │   │   ├── abc_slide_out_bottom.xml + │   │   │   │   │   │   │   │   │   └── abc_slide_out_top.xml + │   │   │   │   │   │   │   │   ├── color + │   │   │   │   │   │   │   │   │   ├── abc_background_cache_hint_selector_material_dark.xml + │   │   │   │   │   │   │   │   │   ├── abc_background_cache_hint_selector_material_light.xml + │   │   │   │   │   │   │   │   │   ├── abc_primary_text_disable_only_material_dark.xml + │   │   │   │   │   │   │   │   │   ├── abc_primary_text_disable_only_material_light.xml + │   │   │   │   │   │   │   │   │   ├── abc_primary_text_material_dark.xml + │   │   │   │   │   │   │   │   │   ├── abc_primary_text_material_light.xml + │   │   │   │   │   │   │   │   │   ├── abc_search_url_text.xml + │   │   │   │   │   │   │   │   │   ├── abc_secondary_text_material_dark.xml + │   │   │   │   │   │   │   │   │   └── abc_secondary_text_material_light.xml + │   │   │   │   │   │   │   │   ├── drawable + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_material.xml + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_material.xml + │   │   │   │   │   │   │   │   │   ├── abc_cab_background_internal_bg.xml + │   │   │   │   │   │   │   │   │   ├── abc_cab_background_top_material.xml + │   │   │   │   │   │   │   │   │   ├── abc_edit_text_material.xml + │   │   │   │   │   │   │   │   │   ├── abc_item_background_holo_dark.xml + │   │   │   │   │   │   │   │   │   ├── abc_item_background_holo_light.xml + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_background_transition_holo_dark.xml + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_background_transition_holo_light.xml + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_holo_dark.xml + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_holo_light.xml + │   │   │   │   │   │   │   │   │   ├── abc_switch_thumb_material.xml + │   │   │   │   │   │   │   │   │   ├── abc_tab_indicator_material.xml + │   │   │   │   │   │   │   │   │   └── abc_textfield_search_material.xml + │   │   │   │   │   │   │   │   ├── drawable-hdpi + │   │   │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   │   │   ├── abc_cab_background_top_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_commit_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_go_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_share_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_list_divider_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_focused_holo.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_longpressed_holo.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_pressed_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_pressed_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_menu_hardkey_panel_mtrl_mult.9.png + │   │   │   │   │   │   │   │   │   ├── abc_popup_background_mtrl_mult.9.png + │   │   │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_search_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   └── abc_textfield_search_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-ldrtl-hdpi + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-ldrtl-mdpi + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-ldrtl-xhdpi + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-ldrtl-xxhdpi + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-ldrtl-xxxhdpi + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-mdpi + │   │   │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   │   │   ├── abc_cab_background_top_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_commit_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_go_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_share_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_list_divider_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_focused_holo.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_longpressed_holo.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_pressed_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_pressed_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_menu_hardkey_panel_mtrl_mult.9.png + │   │   │   │   │   │   │   │   │   ├── abc_popup_background_mtrl_mult.9.png + │   │   │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_search_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   └── abc_textfield_search_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-xhdpi + │   │   │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   │   │   ├── abc_cab_background_top_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_commit_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_go_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_share_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_list_divider_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_focused_holo.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_longpressed_holo.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_pressed_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_pressed_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_menu_hardkey_panel_mtrl_mult.9.png + │   │   │   │   │   │   │   │   │   ├── abc_popup_background_mtrl_mult.9.png + │   │   │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_search_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   └── abc_textfield_search_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-xxhdpi + │   │   │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   │   │   ├── abc_cab_background_top_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_commit_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_go_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_share_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_list_divider_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_focused_holo.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_longpressed_holo.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_pressed_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_pressed_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_dark.9.png + │   │   │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_light.9.png + │   │   │   │   │   │   │   │   │   ├── abc_menu_hardkey_panel_mtrl_mult.9.png + │   │   │   │   │   │   │   │   │   ├── abc_popup_background_mtrl_mult.9.png + │   │   │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_textfield_search_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   └── abc_textfield_search_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   ├── drawable-xxxhdpi + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   │   └── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   │   ├── layout + │   │   │   │   │   │   │   │   │   ├── abc_action_bar_title_item.xml + │   │   │   │   │   │   │   │   │   ├── abc_action_bar_up_container.xml + │   │   │   │   │   │   │   │   │   ├── abc_action_bar_view_list_nav_layout.xml + │   │   │   │   │   │   │   │   │   ├── abc_action_menu_item_layout.xml + │   │   │   │   │   │   │   │   │   ├── abc_action_menu_layout.xml + │   │   │   │   │   │   │   │   │   ├── abc_action_mode_bar.xml + │   │   │   │   │   │   │   │   │   ├── abc_action_mode_close_item_material.xml + │   │   │   │   │   │   │   │   │   ├── abc_activity_chooser_view_include.xml + │   │   │   │   │   │   │   │   │   ├── abc_activity_chooser_view_list_item.xml + │   │   │   │   │   │   │   │   │   ├── abc_activity_chooser_view.xml + │   │   │   │   │   │   │   │   │   ├── abc_expanded_menu_layout.xml + │   │   │   │   │   │   │   │   │   ├── abc_list_menu_item_checkbox.xml + │   │   │   │   │   │   │   │   │   ├── abc_list_menu_item_icon.xml + │   │   │   │   │   │   │   │   │   ├── abc_list_menu_item_layout.xml + │   │   │   │   │   │   │   │   │   ├── abc_list_menu_item_radio.xml + │   │   │   │   │   │   │   │   │   ├── abc_popup_menu_item_layout.xml + │   │   │   │   │   │   │   │   │   ├── abc_screen_content_include.xml + │   │   │   │   │   │   │   │   │   ├── abc_screen_simple_overlay_action_mode.xml + │   │   │   │   │   │   │   │   │   ├── abc_screen_simple.xml + │   │   │   │   │   │   │   │   │   ├── abc_screen_toolbar.xml + │   │   │   │   │   │   │   │   │   ├── abc_search_dropdown_item_icons_2line.xml + │   │   │   │   │   │   │   │   │   ├── abc_search_view.xml + │   │   │   │   │   │   │   │   │   ├── abc_simple_dropdown_hint.xml + │   │   │   │   │   │   │   │   │   └── support_simple_spinner_dropdown_item.xml + │   │   │   │   │   │   │   │   ├── layout-v11 + │   │   │   │   │   │   │   │   │   └── abc_screen_content_include.xml + │   │   │   │   │   │   │   │   ├── values + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-af + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-am + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ar + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-bg + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-bn-rBD + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ca + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-cs + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-da + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-de + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-el + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-en-rGB + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-en-rIN + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-es + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-es-rUS + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-et-rEE + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-eu-rES + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-fa + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-fi + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-fr + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-fr-rCA + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-gl-rES + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-hi + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-hr + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-hu + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-hy-rAM + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-in + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-is-rIS + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-it + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-iw + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ja + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ka-rGE + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-kk-rKZ + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-km-rKH + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-kn-rIN + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ko + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ky-rKG + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-land + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-large + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-lo-rLA + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-lt + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-lv + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-mk-rMK + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ml-rIN + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-mn-rMN + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-mr-rIN + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ms-rMY + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-my-rMM + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-nb + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ne-rNP + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-nl + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-pl + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-port + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-pt + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-pt-rPT + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ro + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ru + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-si-rLK + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-sk + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-sl + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-sr + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-sv + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-sw + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-sw600dp + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ta-rIN + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-te-rIN + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-th + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-tl + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-tr + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-uk + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-ur-rPK + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-uz-rUZ + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-v11 + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-v14 + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-v17 + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-v21 + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-vi + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-w360dp + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-w480dp + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-w500dp + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-w600dp + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-w720dp + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-xlarge + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-xlarge-land + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-zh-rCN + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-zh-rHK + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   ├── values-zh-rTW + │   │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   │   └── values-zu + │   │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   │   └── R.txt + │   │   │   │   │   │   └── support-v4 + │   │   │   │   │   │   └── 21.0.3 + │   │   │   │   │   │   ├── aidl + │   │   │   │   │   │   │   └── android + │   │   │   │   │   │   │   └── support + │   │   │   │   │   │   │   └── v4 + │   │   │   │   │   │   │   ├── accessibilityservice + │   │   │   │   │   │   │   ├── app + │   │   │   │   │   │   │   │   └── INotificationSideChannel.aidl + │   │   │   │   │   │   │   ├── content + │   │   │   │   │   │   │   │   ├── pm + │   │   │   │   │   │   │   │   └── res + │   │   │   │   │   │   │   ├── database + │   │   │   │   │   │   │   ├── graphics + │   │   │   │   │   │   │   │   └── drawable + │   │   │   │   │   │   │   ├── hardware + │   │   │   │   │   │   │   │   └── display + │   │   │   │   │   │   │   ├── internal + │   │   │   │   │   │   │   │   └── view + │   │   │   │   │   │   │   ├── media + │   │   │   │   │   │   │   │   └── session + │   │   │   │   │   │   │   ├── net + │   │   │   │   │   │   │   ├── os + │   │   │   │   │   │   │   ├── print + │   │   │   │   │   │   │   ├── provider + │   │   │   │   │   │   │   ├── text + │   │   │   │   │   │   │   ├── util + │   │   │   │   │   │   │   ├── view + │   │   │   │   │   │   │   │   └── accessibility + │   │   │   │   │   │   │   └── widget + │   │   │   │   │   │   ├── AndroidManifest.xml + │   │   │   │   │   │   ├── assets + │   │   │   │   │   │   ├── jars + │   │   │   │   │   │   │   ├── classes.jar + │   │   │   │   │   │   │   └── libs + │   │   │   │   │   │   │   └── internal_impl-21.0.3.jar + │   │   │   │   │   │   ├── libs + │   │   │   │   │   │   └── res + │   │   │   │   │   ├── incremental + │   │   │   │   │   │   ├── aidl + │   │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   │   └── dependency.store + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── dependency.store + │   │   │   │   │   │   ├── mergeAssets + │   │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   │   └── merger.xml + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── merger.xml + │   │   │   │   │   │   └── mergeResources + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── merger.xml + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── merger.xml + │   │   │   │   │   ├── manifests + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── AndroidManifest.xml + │   │   │   │   │   │   ├── full + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   └── AndroidManifest.xml + │   │   │   │   │   │   └── tmp + │   │   │   │   │   ├── res + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   ├── anim + │   │   │   │   │   │   │   ├── abc_fade_in.xml + │   │   │   │   │   │   │   ├── abc_fade_out.xml + │   │   │   │   │   │   │   ├── abc_slide_in_bottom.xml + │   │   │   │   │   │   │   ├── abc_slide_in_top.xml + │   │   │   │   │   │   │   ├── abc_slide_out_bottom.xml + │   │   │   │   │   │   │   └── abc_slide_out_top.xml + │   │   │   │   │   │   ├── color + │   │   │   │   │   │   │   ├── abc_background_cache_hint_selector_material_dark.xml + │   │   │   │   │   │   │   ├── abc_background_cache_hint_selector_material_light.xml + │   │   │   │   │   │   │   ├── abc_primary_text_disable_only_material_dark.xml + │   │   │   │   │   │   │   ├── abc_primary_text_disable_only_material_light.xml + │   │   │   │   │   │   │   ├── abc_primary_text_material_dark.xml + │   │   │   │   │   │   │   ├── abc_primary_text_material_light.xml + │   │   │   │   │   │   │   ├── abc_search_url_text.xml + │   │   │   │   │   │   │   ├── abc_secondary_text_material_dark.xml + │   │   │   │   │   │   │   └── abc_secondary_text_material_light.xml + │   │   │   │   │   │   ├── drawable + │   │   │   │   │   │   │   ├── abc_btn_check_material.xml + │   │   │   │   │   │   │   ├── abc_btn_radio_material.xml + │   │   │   │   │   │   │   ├── abc_cab_background_internal_bg.xml + │   │   │   │   │   │   │   ├── abc_cab_background_top_material.xml + │   │   │   │   │   │   │   ├── abc_edit_text_material.xml + │   │   │   │   │   │   │   ├── abc_item_background_holo_dark.xml + │   │   │   │   │   │   │   ├── abc_item_background_holo_light.xml + │   │   │   │   │   │   │   ├── abc_list_selector_background_transition_holo_dark.xml + │   │   │   │   │   │   │   ├── abc_list_selector_background_transition_holo_light.xml + │   │   │   │   │   │   │   ├── abc_list_selector_holo_dark.xml + │   │   │   │   │   │   │   ├── abc_list_selector_holo_light.xml + │   │   │   │   │   │   │   ├── abc_switch_thumb_material.xml + │   │   │   │   │   │   │   ├── abc_tab_indicator_material.xml + │   │   │   │   │   │   │   ├── abc_textfield_search_material.xml + │   │   │   │   │   │   │   ├── animation.xml + │   │   │   │   │   │   │   ├── bg_counter.xml + │   │   │   │   │   │   │   ├── grid_selector.xml + │   │   │   │   │   │   │   ├── list_item_bg_normal.xml + │   │   │   │   │   │   │   ├── list_item_bg_pressed.xml + │   │   │   │   │   │   │   └── list_selector.xml + │   │   │   │   │   │   ├── drawable-hdpi + │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   ├── abc_cab_background_top_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_commit_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_go_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_share_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_list_divider_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_list_focused_holo.9.png + │   │   │   │   │   │   │   ├── abc_list_longpressed_holo.9.png + │   │   │   │   │   │   │   ├── abc_list_pressed_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_list_pressed_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_menu_hardkey_panel_mtrl_mult.9.png + │   │   │   │   │   │   │   ├── abc_popup_background_mtrl_mult.9.png + │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_search_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   └── abc_textfield_search_default_mtrl_alpha.9.png + │   │   │   │   │   │   ├── drawable-ldrtl-hdpi + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   ├── drawable-ldrtl-mdpi + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   ├── drawable-ldrtl-xhdpi + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   ├── drawable-ldrtl-xxhdpi + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   ├── drawable-ldrtl-xxxhdpi + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   └── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   ├── drawable-mdpi + │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   ├── abc_cab_background_top_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_commit_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_go_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_share_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_list_divider_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_list_focused_holo.9.png + │   │   │   │   │   │   │   ├── abc_list_longpressed_holo.9.png + │   │   │   │   │   │   │   ├── abc_list_pressed_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_list_pressed_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_menu_hardkey_panel_mtrl_mult.9.png + │   │   │   │   │   │   │   ├── abc_popup_background_mtrl_mult.9.png + │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_search_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   └── abc_textfield_search_default_mtrl_alpha.9.png + │   │   │   │   │   │   ├── drawable-xhdpi + │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   ├── abc_cab_background_top_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_commit_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_go_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_share_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_list_divider_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_list_focused_holo.9.png + │   │   │   │   │   │   │   ├── abc_list_longpressed_holo.9.png + │   │   │   │   │   │   │   ├── abc_list_pressed_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_list_pressed_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_menu_hardkey_panel_mtrl_mult.9.png + │   │   │   │   │   │   │   ├── abc_popup_background_mtrl_mult.9.png + │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_search_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   └── abc_textfield_search_default_mtrl_alpha.9.png + │   │   │   │   │   │   ├── drawable-xxhdpi + │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_ab_share_pack_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   ├── abc_cab_background_top_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_commit_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_go_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_share_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_list_divider_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_list_focused_holo.9.png + │   │   │   │   │   │   │   ├── abc_list_longpressed_holo.9.png + │   │   │   │   │   │   │   ├── abc_list_pressed_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_list_pressed_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_dark.9.png + │   │   │   │   │   │   │   ├── abc_list_selector_disabled_holo_light.9.png + │   │   │   │   │   │   │   ├── abc_menu_hardkey_panel_mtrl_mult.9.png + │   │   │   │   │   │   │   ├── abc_popup_background_mtrl_mult.9.png + │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_search_activated_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── abc_textfield_search_default_mtrl_alpha.9.png + │   │   │   │   │   │   │   ├── bg_actionbar.png + │   │   │   │   │   │   │   ├── drawer_shadow.9.png + │   │   │   │   │   │   │   ├── ic_about.png + │   │   │   │   │   │   │   ├── ic_action_set10.png + │   │   │   │   │   │   │   ├── ic_action_set11.png + │   │   │   │   │   │   │   ├── ic_action_set12.png + │   │   │   │   │   │   │   ├── ic_action_set13.png + │   │   │   │   │   │   │   ├── ic_action_set14.png + │   │   │   │   │   │   │   ├── ic_action_set15.png + │   │   │   │   │   │   │   ├── ic_action_set16.png + │   │   │   │   │   │   │   ├── ic_action_set17.png + │   │   │   │   │   │   │   ├── ic_action_set18.png + │   │   │   │   │   │   │   ├── ic_action_set19.png + │   │   │   │   │   │   │   ├── ic_action_set1.png + │   │   │   │   │   │   │   ├── ic_action_set20.png + │   │   │   │   │   │   │   ├── ic_action_set2.png + │   │   │   │   │   │   │   ├── ic_action_set3.png + │   │   │   │   │   │   │   ├── ic_action_set4.png + │   │   │   │   │   │   │   ├── ic_action_set5.png + │   │   │   │   │   │   │   ├── ic_action_set6.png + │   │   │   │   │   │   │   ├── ic_action_set7.png + │   │   │   │   │   │   │   ├── ic_action_set8.png + │   │   │   │   │   │   │   ├── ic_action_set9.png + │   │   │   │   │   │   │   ├── ic_add_firebase_app_id.png + │   │   │   │   │   │   │   ├── ic_delete.png + │   │   │   │   │   │   │   ├── ic_device_ht_sensor_cloud_offline.png + │   │   │   │   │   │   │   ├── ic_device_ht_sensor_cloud_online.png + │   │   │   │   │   │   │   ├── ic_device_ht_sensor_local_offline.png + │   │   │   │   │   │   │   ├── ic_device_ht_sensor_local_online.png + │   │   │   │   │   │   │   ├── ic_device_unknown_cloud_offline.png + │   │   │   │   │   │   │   ├── ic_device_unknown_cloud_online.png + │   │   │   │   │   │   │   ├── ic_device_unknown_local_offline.png + │   │   │   │   │   │   │   ├── ic_device_unknown_local_online.png + │   │   │   │   │   │   │   ├── ic_drawer.png + │   │   │   │   │   │   │   ├── ic_edit.png + │   │   │   │   │   │   │   ├── ic_find_device.png + │   │   │   │   │   │   │   ├── ic_my_device.png + │   │   │   │   │   │   │   ├── ic_new_name.png + │   │   │   │   │   │   │   ├── ic_pair.png + │   │   │   │   │   │   │   ├── ic_rtk_white.png + │   │   │   │   │   │   │   └── ic_share.png + │   │   │   │   │   │   ├── drawable-xxxhdpi + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_check_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_000.png + │   │   │   │   │   │   │   ├── abc_btn_radio_to_on_mtrl_015.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00001.9.png + │   │   │   │   │   │   │   ├── abc_btn_switch_to_on_mtrl_00012.9.png + │   │   │   │   │   │   │   ├── abc_ic_ab_back_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_clear_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_copy_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_cut_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_moreoverflow_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_paste_mtrl_am_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_menu_selectall_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_ic_voice_search_api_mtrl_alpha.png + │   │   │   │   │   │   │   ├── abc_spinner_mtrl_am_alpha.9.png + │   │   │   │   │   │   │   ├── abc_switch_track_mtrl_alpha.9.png + │   │   │   │   │   │   │   └── abc_tab_indicator_mtrl_alpha.9.png + │   │   │   │   │   │   ├── layout + │   │   │   │   │   │   │   ├── abc_action_bar_title_item.xml + │   │   │   │   │   │   │   ├── abc_action_bar_up_container.xml + │   │   │   │   │   │   │   ├── abc_action_bar_view_list_nav_layout.xml + │   │   │   │   │   │   │   ├── abc_action_menu_item_layout.xml + │   │   │   │   │   │   │   ├── abc_action_menu_layout.xml + │   │   │   │   │   │   │   ├── abc_action_mode_bar.xml + │   │   │   │   │   │   │   ├── abc_action_mode_close_item_material.xml + │   │   │   │   │   │   │   ├── abc_activity_chooser_view_include.xml + │   │   │   │   │   │   │   ├── abc_activity_chooser_view_list_item.xml + │   │   │   │   │   │   │   ├── abc_activity_chooser_view.xml + │   │   │   │   │   │   │   ├── abc_expanded_menu_layout.xml + │   │   │   │   │   │   │   ├── abc_list_menu_item_checkbox.xml + │   │   │   │   │   │   │   ├── abc_list_menu_item_icon.xml + │   │   │   │   │   │   │   ├── abc_list_menu_item_layout.xml + │   │   │   │   │   │   │   ├── abc_list_menu_item_radio.xml + │   │   │   │   │   │   │   ├── abc_popup_menu_item_layout.xml + │   │   │   │   │   │   │   ├── abc_screen_content_include.xml + │   │   │   │   │   │   │   ├── abc_screen_simple_overlay_action_mode.xml + │   │   │   │   │   │   │   ├── abc_screen_simple.xml + │   │   │   │   │   │   │   ├── abc_screen_toolbar.xml + │   │   │   │   │   │   │   ├── abc_search_dropdown_item_icons_2line.xml + │   │   │   │   │   │   │   ├── abc_search_view.xml + │   │   │   │   │   │   │   ├── abc_simple_dropdown_hint.xml + │   │   │   │   │   │   │   ├── activity_device_ht.xml + │   │   │   │   │   │   │   ├── activity_main.xml + │   │   │   │   │   │   │   ├── activity_register_firebase_account.xml + │   │   │   │   │   │   │   ├── fragment_about.xml + │   │   │   │   │   │   │   ├── fragment_find_device.xml + │   │   │   │   │   │   │   ├── fragment_main.xml + │   │   │   │   │   │   │   ├── fragment_my_device.xml + │   │   │   │   │   │   │   ├── fragment_navigation_drawer.xml + │   │   │   │   │   │   │   ├── layout_drawer_list_item.xml + │   │   │   │   │   │   │   ├── layout_grid_view_item.xml + │   │   │   │   │   │   │   ├── layout_popup_dialog_prompts_firebase_app_id.xml + │   │   │   │   │   │   │   ├── layout_popup_dialog_prompts_rename.xml + │   │   │   │   │   │   │   ├── layout_popup_dialog_row_cell.xml + │   │   │   │   │   │   │   └── support_simple_spinner_dropdown_item.xml + │   │   │   │   │   │   ├── layout-v11 + │   │   │   │   │   │   │   └── abc_screen_content_include.xml + │   │   │   │   │   │   ├── menu + │   │   │   │   │   │   │   ├── global.xml + │   │   │   │   │   │   │   └── main.xml + │   │   │   │   │   │   ├── mipmap-xxhdpi + │   │   │   │   │   │   │   └── ic_launcher.png + │   │   │   │   │   │   ├── raw + │   │   │   │   │   │   │   ├── sound_altair.ogg + │   │   │   │   │   │   │   ├── sound_ariel.ogg + │   │   │   │   │   │   │   ├── sound_ding.ogg + │   │   │   │   │   │   │   ├── sound_fomalhaut.ogg + │   │   │   │   │   │   │   └── sound_tinkerbell.ogg + │   │   │   │   │   │   ├── values + │   │   │   │   │   │   │   └── values.xml + │   │   │   │   │   │   ├── values-af + │   │   │   │   │   │   │   └── values-af.xml + │   │   │   │   │   │   ├── values-am + │   │   │   │   │   │   │   └── values-am.xml + │   │   │   │   │   │   ├── values-ar + │   │   │   │   │   │   │   └── values-ar.xml + │   │   │   │   │   │   ├── values-bg + │   │   │   │   │   │   │   └── values-bg.xml + │   │   │   │   │   │   ├── values-bn-rBD + │   │   │   │   │   │   │   └── values-bn-rBD.xml + │   │   │   │   │   │   ├── values-ca + │   │   │   │   │   │   │   └── values-ca.xml + │   │   │   │   │   │   ├── values-cs + │   │   │   │   │   │   │   └── values-cs.xml + │   │   │   │   │   │   ├── values-da + │   │   │   │   │   │   │   └── values-da.xml + │   │   │   │   │   │   ├── values-de + │   │   │   │   │   │   │   └── values-de.xml + │   │   │   │   │   │   ├── values-el + │   │   │   │   │   │   │   └── values-el.xml + │   │   │   │   │   │   ├── values-en-rGB + │   │   │   │   │   │   │   └── values-en-rGB.xml + │   │   │   │   │   │   ├── values-en-rIN + │   │   │   │   │   │   │   └── values-en-rIN.xml + │   │   │   │   │   │   ├── values-es + │   │   │   │   │   │   │   └── values-es.xml + │   │   │   │   │   │   ├── values-es-rUS + │   │   │   │   │   │   │   └── values-es-rUS.xml + │   │   │   │   │   │   ├── values-et-rEE + │   │   │   │   │   │   │   └── values-et-rEE.xml + │   │   │   │   │   │   ├── values-eu-rES + │   │   │   │   │   │   │   └── values-eu-rES.xml + │   │   │   │   │   │   ├── values-fa + │   │   │   │   │   │   │   └── values-fa.xml + │   │   │   │   │   │   ├── values-fi + │   │   │   │   │   │   │   └── values-fi.xml + │   │   │   │   │   │   ├── values-fr + │   │   │   │   │   │   │   └── values-fr.xml + │   │   │   │   │   │   ├── values-fr-rCA + │   │   │   │   │   │   │   └── values-fr-rCA.xml + │   │   │   │   │   │   ├── values-gl-rES + │   │   │   │   │   │   │   └── values-gl-rES.xml + │   │   │   │   │   │   ├── values-hi + │   │   │   │   │   │   │   └── values-hi.xml + │   │   │   │   │   │   ├── values-hr + │   │   │   │   │   │   │   └── values-hr.xml + │   │   │   │   │   │   ├── values-hu + │   │   │   │   │   │   │   └── values-hu.xml + │   │   │   │   │   │   ├── values-hy-rAM + │   │   │   │   │   │   │   └── values-hy-rAM.xml + │   │   │   │   │   │   ├── values-in + │   │   │   │   │   │   │   └── values-in.xml + │   │   │   │   │   │   ├── values-is-rIS + │   │   │   │   │   │   │   └── values-is-rIS.xml + │   │   │   │   │   │   ├── values-it + │   │   │   │   │   │   │   └── values-it.xml + │   │   │   │   │   │   ├── values-iw + │   │   │   │   │   │   │   └── values-iw.xml + │   │   │   │   │   │   ├── values-ja + │   │   │   │   │   │   │   └── values-ja.xml + │   │   │   │   │   │   ├── values-ka-rGE + │   │   │   │   │   │   │   └── values-ka-rGE.xml + │   │   │   │   │   │   ├── values-kk-rKZ + │   │   │   │   │   │   │   └── values-kk-rKZ.xml + │   │   │   │   │   │   ├── values-km-rKH + │   │   │   │   │   │   │   └── values-km-rKH.xml + │   │   │   │   │   │   ├── values-kn-rIN + │   │   │   │   │   │   │   └── values-kn-rIN.xml + │   │   │   │   │   │   ├── values-ko + │   │   │   │   │   │   │   └── values-ko.xml + │   │   │   │   │   │   ├── values-ky-rKG + │   │   │   │   │   │   │   └── values-ky-rKG.xml + │   │   │   │   │   │   ├── values-land + │   │   │   │   │   │   │   └── values-land.xml + │   │   │   │   │   │   ├── values-large + │   │   │   │   │   │   │   └── values-large.xml + │   │   │   │   │   │   ├── values-lo-rLA + │   │   │   │   │   │   │   └── values-lo-rLA.xml + │   │   │   │   │   │   ├── values-lt + │   │   │   │   │   │   │   └── values-lt.xml + │   │   │   │   │   │   ├── values-lv + │   │   │   │   │   │   │   └── values-lv.xml + │   │   │   │   │   │   ├── values-mk-rMK + │   │   │   │   │   │   │   └── values-mk-rMK.xml + │   │   │   │   │   │   ├── values-ml-rIN + │   │   │   │   │   │   │   └── values-ml-rIN.xml + │   │   │   │   │   │   ├── values-mn-rMN + │   │   │   │   │   │   │   └── values-mn-rMN.xml + │   │   │   │   │   │   ├── values-mr-rIN + │   │   │   │   │   │   │   └── values-mr-rIN.xml + │   │   │   │   │   │   ├── values-ms-rMY + │   │   │   │   │   │   │   └── values-ms-rMY.xml + │   │   │   │   │   │   ├── values-my-rMM + │   │   │   │   │   │   │   └── values-my-rMM.xml + │   │   │   │   │   │   ├── values-nb + │   │   │   │   │   │   │   └── values-nb.xml + │   │   │   │   │   │   ├── values-ne-rNP + │   │   │   │   │   │   │   └── values-ne-rNP.xml + │   │   │   │   │   │   ├── values-nl + │   │   │   │   │   │   │   └── values-nl.xml + │   │   │   │   │   │   ├── values-pl + │   │   │   │   │   │   │   └── values-pl.xml + │   │   │   │   │   │   ├── values-port + │   │   │   │   │   │   │   └── values-port.xml + │   │   │   │   │   │   ├── values-pt + │   │   │   │   │   │   │   └── values-pt.xml + │   │   │   │   │   │   ├── values-pt-rPT + │   │   │   │   │   │   │   └── values-pt-rPT.xml + │   │   │   │   │   │   ├── values-ro + │   │   │   │   │   │   │   └── values-ro.xml + │   │   │   │   │   │   ├── values-ru + │   │   │   │   │   │   │   └── values-ru.xml + │   │   │   │   │   │   ├── values-si-rLK + │   │   │   │   │   │   │   └── values-si-rLK.xml + │   │   │   │   │   │   ├── values-sk + │   │   │   │   │   │   │   └── values-sk.xml + │   │   │   │   │   │   ├── values-sl + │   │   │   │   │   │   │   └── values-sl.xml + │   │   │   │   │   │   ├── values-sr + │   │   │   │   │   │   │   └── values-sr.xml + │   │   │   │   │   │   ├── values-sv + │   │   │   │   │   │   │   └── values-sv.xml + │   │   │   │   │   │   ├── values-sw + │   │   │   │   │   │   │   └── values-sw.xml + │   │   │   │   │   │   ├── values-sw600dp + │   │   │   │   │   │   │   └── values-sw600dp.xml + │   │   │   │   │   │   ├── values-ta-rIN + │   │   │   │   │   │   │   └── values-ta-rIN.xml + │   │   │   │   │   │   ├── values-te-rIN + │   │   │   │   │   │   │   └── values-te-rIN.xml + │   │   │   │   │   │   ├── values-th + │   │   │   │   │   │   │   └── values-th.xml + │   │   │   │   │   │   ├── values-tl + │   │   │   │   │   │   │   └── values-tl.xml + │   │   │   │   │   │   ├── values-tr + │   │   │   │   │   │   │   └── values-tr.xml + │   │   │   │   │   │   ├── values-uk + │   │   │   │   │   │   │   └── values-uk.xml + │   │   │   │   │   │   ├── values-ur-rPK + │   │   │   │   │   │   │   └── values-ur-rPK.xml + │   │   │   │   │   │   ├── values-uz-rUZ + │   │   │   │   │   │   │   └── values-uz-rUZ.xml + │   │   │   │   │   │   ├── values-v11 + │   │   │   │   │   │   │   └── values-v11.xml + │   │   │   │   │   │   ├── values-v14 + │   │   │   │   │   │   │   └── values-v14.xml + │   │   │   │   │   │   ├── values-v17 + │   │   │   │   │   │   │   └── values-v17.xml + │   │   │   │   │   │   ├── values-v21 + │   │   │   │   │   │   │   └── values-v21.xml + │   │   │   │   │   │   ├── values-vi + │   │   │   │   │   │   │   └── values-vi.xml + │   │   │   │   │   │   ├── values-w360dp + │   │   │   │   │   │   │   └── values-w360dp.xml + │   │   │   │   │   │   ├── values-w480dp + │   │   │   │   │   │   │   └── values-w480dp.xml + │   │   │   │   │   │   ├── values-w500dp + │   │   │   │   │   │   │   └── values-w500dp.xml + │   │   │   │   │   │   ├── values-w600dp + │   │   │   │   │   │   │   └── values-w600dp.xml + │   │   │   │   │   │   ├── values-w720dp + │   │   │   │   │   │   │   └── values-w720dp.xml + │   │   │   │   │   │   ├── values-w820dp + │   │   │   │   │   │   │   └── values-w820dp.xml + │   │   │   │   │   │   ├── values-xlarge + │   │   │   │   │   │   │   └── values-xlarge.xml + │   │   │   │   │   │   ├── values-xlarge-land + │   │   │   │   │   │   │   └── values-xlarge-land.xml + │   │   │   │   │   │   ├── values-zh-rCN + │   │   │   │   │   │   │   └── values-zh-rCN.xml + │   │   │   │   │   │   ├── values-zh-rHK + │   │   │   │   │   │   │   └── values-zh-rHK.xml + │   │   │   │   │   │   ├── values-zh-rTW + │   │   │   │   │   │   │   └── values-zh-rTW.xml + │   │   │   │   │   │   ├── values-zu + │   │   │   │   │   │   │   └── values-zu.xml + │   │   │   │   │   │   └── xml + │   │   │   │   │   │   ├── app_settings.xml + │   │   │   │   │   │   ├── line_point_formatter_with_plf1.xml + │   │   │   │   │   │   └── line_point_formatter_with_plf2.xml + │   │   │   │   │   ├── resources + │   │   │   │   │   │   ├── resources-debug-androidTest.ap_ + │   │   │   │   │   │   └── resources-debug.ap_ + │   │   │   │   │   ├── rs + │   │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   │   └── debug + │   │   │   │   │   │   │   ├── lib + │   │   │   │   │   │   │   └── obj + │   │   │   │   │   │   └── debug + │   │   │   │   │   │   ├── lib + │   │   │   │   │   │   └── obj + │   │   │   │   │   └── symbols + │   │   │   │   │   ├── androidTest + │   │   │   │   │   │   └── debug + │   │   │   │   │   └── debug + │   │   │   │   │   └── R.txt + │   │   │   │   └── outputs + │   │   │   │   └── logs + │   │   │   │   └── manifest-merger-debug-report.txt + │   │   │   ├── build.gradle + │   │   │   ├── libs + │   │   │   │   ├── androidplot-core-0.6.1.jar + │   │   │   │   ├── commons-codec-1.6-repack.jar + │   │   │   │   └── firebase-client-android-2.2.4.jar + │   │   │   ├── proguard-rules.pro + │   │   │   └── src + │   │   │   ├── androidTest + │   │   │   │   └── java + │   │   │   │   └── com + │   │   │   │   └── realtek + │   │   │   │   └── wigadget + │   │   │   │   └── ApplicationTest.java + │   │   │   └── main + │   │   │   ├── AndroidManifest.xml + │   │   │   ├── java + │   │   │   │   ├── com + │   │   │   │   │   └── realtek + │   │   │   │   │   └── wigadget + │   │   │   │   │   ├── AboutFragment.java + │   │   │   │   │   ├── AES128.java + │   │   │   │   │   ├── ConnectionChecker.java + │   │   │   │   │   ├── Constants.java + │   │   │   │   │   ├── DeviceIcon.java + │   │   │   │   │   ├── DeviceList.java + │   │   │   │   │   ├── FindDeviceFragment.java + │   │   │   │   │   ├── GridViewAdapter.java + │   │   │   │   │   ├── HTSensorActivity.java + │   │   │   │   │   ├── ImageListAdapter.java + │   │   │   │   │   ├── KeyGen.java + │   │   │   │   │   ├── MainActivity.java + │   │   │   │   │   ├── MyDeviceFragment.java + │   │   │   │   │   ├── NavDrawerItem.java + │   │   │   │   │   ├── NavDrawerListAdapter.java + │   │   │   │   │   ├── NsdHelper.java + │   │   │   │   │   ├── RegisterFirebaseAccountActivity.java + │   │   │   │   │   ├── SettingsActivity.java + │   │   │   │   │   └── TcpClient.java + │   │   │   │   ├── djb + │   │   │   │   │   └── Curve25519.java + │   │   │   │   └── javax + │   │   │   │   └── jmdns + │   │   │   │   ├── impl + │   │   │   │   │   ├── constants + │   │   │   │   │   │   ├── DNSConstants.java + │   │   │   │   │   │   ├── DNSLabel.java + │   │   │   │   │   │   ├── DNSOperationCode.java + │   │   │   │   │   │   ├── DNSOptionCode.java + │   │   │   │   │   │   ├── DNSRecordClass.java + │   │   │   │   │   │   ├── DNSRecordType.java + │   │   │   │   │   │   ├── DNSResultCode.java + │   │   │   │   │   │   ├── DNSState.java + │   │   │   │   │   │   └── package-info.java + │   │   │   │   │   ├── DNSCache.java + │   │   │   │   │   ├── DNSEntry.java + │   │   │   │   │   ├── DNSIncoming.java + │   │   │   │   │   ├── DNSListener.java + │   │   │   │   │   ├── DNSMessage.java + │   │   │   │   │   ├── DNSOutgoing.java + │   │   │   │   │   ├── DNSQuestion.java + │   │   │   │   │   ├── DNSRecord.java + │   │   │   │   │   ├── DNSStatefulObject.java + │   │   │   │   │   ├── DNSTaskStarter.java + │   │   │   │   │   ├── HostInfo.java + │   │   │   │   │   ├── JmDNSImpl.java + │   │   │   │   │   ├── JmmDNSImpl.java + │   │   │   │   │   ├── ListenerStatus.java + │   │   │   │   │   ├── NameRegister.java + │   │   │   │   │   ├── NetworkTopologyDiscoveryImpl.java + │   │   │   │   │   ├── NetworkTopologyEventImpl.java + │   │   │   │   │   ├── package-info.java + │   │   │   │   │   ├── ServiceEventImpl.java + │   │   │   │   │   ├── ServiceInfoImpl.java + │   │   │   │   │   ├── SocketListener.java + │   │   │   │   │   ├── tasks + │   │   │   │   │   │   ├── DNSTask.java + │   │   │   │   │   │   ├── package-info.java + │   │   │   │   │   │   ├── RecordReaper.java + │   │   │   │   │   │   ├── resolver + │   │   │   │   │   │   │   ├── DNSResolverTask.java + │   │   │   │   │   │   │   ├── package-info.java + │   │   │   │   │   │   │   ├── ServiceInfoResolver.java + │   │   │   │   │   │   │   ├── ServiceResolver.java + │   │   │   │   │   │   │   └── TypeResolver.java + │   │   │   │   │   │   ├── Responder.java + │   │   │   │   │   │   └── state + │   │   │   │   │   │   ├── Announcer.java + │   │   │   │   │   │   ├── Canceler.java + │   │   │   │   │   │   ├── DNSStateTask.java + │   │   │   │   │   │   ├── package-info.java + │   │   │   │   │   │   ├── Prober.java + │   │   │   │   │   │   └── Renewer.java + │   │   │   │   │   └── util + │   │   │   │   │   └── NamedThreadFactory.java + │   │   │   │   ├── JmDNS.java + │   │   │   │   ├── JmmDNS.java + │   │   │   │   ├── NetworkTopologyDiscovery.java + │   │   │   │   ├── NetworkTopologyEvent.java + │   │   │   │   ├── NetworkTopologyListener.java + │   │   │   │   ├── package-info.java + │   │   │   │   ├── ServiceEvent.java + │   │   │   │   ├── ServiceInfo.java + │   │   │   │   ├── ServiceListener.java + │   │   │   │   └── ServiceTypeListener.java + │   │   │   └── res + │   │   │   ├── drawable + │   │   │   │   ├── animation.xml + │   │   │   │   ├── bg_counter.xml + │   │   │   │   ├── grid_selector.xml + │   │   │   │   ├── list_item_bg_normal.xml + │   │   │   │   ├── list_item_bg_pressed.xml + │   │   │   │   └── list_selector.xml + │   │   │   ├── drawable-xxhdpi + │   │   │   │   ├── bg_actionbar.png + │   │   │   │   ├── drawer_shadow.9.png + │   │   │   │   ├── ic_about.png + │   │   │   │   ├── ic_action_set10.png + │   │   │   │   ├── ic_action_set11.png + │   │   │   │   ├── ic_action_set12.png + │   │   │   │   ├── ic_action_set13.png + │   │   │   │   ├── ic_action_set14.png + │   │   │   │   ├── ic_action_set15.png + │   │   │   │   ├── ic_action_set16.png + │   │   │   │   ├── ic_action_set17.png + │   │   │   │   ├── ic_action_set18.png + │   │   │   │   ├── ic_action_set19.png + │   │   │   │   ├── ic_action_set1.png + │   │   │   │   ├── ic_action_set20.png + │   │   │   │   ├── ic_action_set2.png + │   │   │   │   ├── ic_action_set3.png + │   │   │   │   ├── ic_action_set4.png + │   │   │   │   ├── ic_action_set5.png + │   │   │   │   ├── ic_action_set6.png + │   │   │   │   ├── ic_action_set7.png + │   │   │   │   ├── ic_action_set8.png + │   │   │   │   ├── ic_action_set9.png + │   │   │   │   ├── ic_add_firebase_app_id.png + │   │   │   │   ├── ic_delete.png + │   │   │   │   ├── ic_device_ht_sensor_cloud_offline.png + │   │   │   │   ├── ic_device_ht_sensor_cloud_online.png + │   │   │   │   ├── ic_device_ht_sensor_local_offline.png + │   │   │   │   ├── ic_device_ht_sensor_local_online.png + │   │   │   │   ├── ic_device_unknown_cloud_offline.png + │   │   │   │   ├── ic_device_unknown_cloud_online.png + │   │   │   │   ├── ic_device_unknown_local_offline.png + │   │   │   │   ├── ic_device_unknown_local_online.png + │   │   │   │   ├── ic_drawer.png + │   │   │   │   ├── ic_edit.png + │   │   │   │   ├── ic_find_device.png + │   │   │   │   ├── ic_my_device.png + │   │   │   │   ├── ic_new_name.png + │   │   │   │   ├── ic_pair.png + │   │   │   │   ├── ic_rtk_white.png + │   │   │   │   └── ic_share.png + │   │   │   ├── layout + │   │   │   │   ├── activity_device_ht.xml + │   │   │   │   ├── activity_main.xml + │   │   │   │   ├── activity_register_firebase_account.xml + │   │   │   │   ├── fragment_about.xml + │   │   │   │   ├── fragment_find_device.xml + │   │   │   │   ├── fragment_main.xml + │   │   │   │   ├── fragment_my_device.xml + │   │   │   │   ├── fragment_navigation_drawer.xml + │   │   │   │   ├── layout_drawer_list_item.xml + │   │   │   │   ├── layout_grid_view_item.xml + │   │   │   │   ├── layout_popup_dialog_prompts_firebase_app_id.xml + │   │   │   │   ├── layout_popup_dialog_prompts_rename.xml + │   │   │   │   └── layout_popup_dialog_row_cell.xml + │   │   │   ├── menu + │   │   │   │   ├── global.xml + │   │   │   │   └── main.xml + │   │   │   ├── mipmap-xxhdpi + │   │   │   │   └── ic_launcher.png + │   │   │   ├── raw + │   │   │   │   ├── sound_altair.ogg + │   │   │   │   ├── sound_ariel.ogg + │   │   │   │   ├── sound_ding.ogg + │   │   │   │   ├── sound_fomalhaut.ogg + │   │   │   │   └── sound_tinkerbell.ogg + │   │   │   ├── values + │   │   │   │   ├── color.xml + │   │   │   │   ├── dimens.xml + │   │   │   │   ├── strings.xml + │   │   │   │   └── styles.xml + │   │   │   ├── values-w820dp + │   │   │   │   └── dimens.xml + │   │   │   └── xml + │   │   │   ├── app_settings.xml + │   │   │   ├── line_point_formatter_with_plf1.xml + │   │   │   └── line_point_formatter_with_plf2.xml + │   │   ├── build + │   │   │   └── intermediates + │   │   │   ├── dex-cache + │   │   │   │   └── cache.xml + │   │   │   ├── gradle_project_sync_data.bin + │   │   │   └── model_data.bin + │   │   ├── build.gradle + │   │   ├── _changes.txt + │   │   ├── gradle + │   │   │   └── wrapper + │   │   │   ├── gradle-wrapper.jar + │   │   │   └── gradle-wrapper.properties + │   │   ├── gradle.properties + │   │   ├── gradlew + │   │   ├── gradlew.bat + │   │   ├── local.properties + │   │   ├── settings.gradle + │   │   └── WiGadget.iml + │   └── WiGadget.apk + └── iOS + └── WiGadget + ├── WiGadget + │   ├── AlarmSounds + │   │   ├── sound_one.wav + │   │   ├── sound_three.wav + │   │   └── sound_two.wav + │   ├── Ameba + │   │   ├── AmebaList.swift + │   │   └── Ameba.swift + │   ├── AppDelegate + │   │   └── AppDelegate.swift + │   ├── Base.lproj + │   │   ├── LaunchScreen.xib + │   │   └── Main.storyboard + │   ├── Bonjour + │   │   └── BonjourBrowser.swift + │   ├── Crypto + │   │   ├── Crypto.swift + │   │   ├── Curve25519 + │   │   │   ├── curve25519-donna.c + │   │   │   └── curve25519-donna.h + │   │   └── TinyAES128 + │   │   ├── aes.c + │   │   └── aes.h + │   ├── Firebase + │   │   └── Firebase.framework + │   │   ├── Firebase + │   │   ├── Headers + │   │   │   ├── FAuthData.h + │   │   │   ├── FAuthType.h + │   │   │   ├── FConfig.h + │   │   │   ├── FDataSnapshot.h + │   │   │   ├── FEventType.h + │   │   │   ├── FirebaseApp.h + │   │   │   ├── Firebase.h + │   │   │   ├── FirebaseServerValue.h + │   │   │   ├── FMutableData.h + │   │   │   ├── FQuery.h + │   │   │   └── FTransactionResult.h + │   │   ├── Info.plist + │   │   ├── Modules + │   │   │   └── module.modulemap + │   │   └── NOTICE + │   ├── HTSensor + │   │   ├── HTSensor.storyboard + │   │   └── HTSensorVC.swift + │   ├── Images.xcassets + │   │   ├── app_banner_441x72.imageset + │   │   │   ├── app_banner_441x72.png + │   │   │   └── Contents.json + │   │   ├── AppIcon.appiconset + │   │   │   ├── AppIcon29x29@2x~ipad.png + │   │   │   ├── AppIcon29x29@2x.png + │   │   │   ├── AppIcon29x29~ipad.png + │   │   │   ├── AppIcon29x29.png + │   │   │   ├── AppIcon40x40@2x~ipad.png + │   │   │   ├── AppIcon40x40@2x.png + │   │   │   ├── AppIcon40x40@3x.png + │   │   │   ├── AppIcon40x40~ipad.png + │   │   │   ├── AppIcon50x50@2x.png + │   │   │   ├── AppIcon50x50.png + │   │   │   ├── AppIcon57x57@2x.png + │   │   │   ├── AppIcon57x57.png + │   │   │   ├── AppIcon60x60@2x.png + │   │   │   ├── AppIcon60x60@3x.png + │   │   │   ├── AppIcon72x72@2x~ipad.png + │   │   │   ├── AppIcon72x72~ipad.png + │   │   │   ├── AppIcon76x76@2x~ipad.png + │   │   │   ├── AppIcon76x76~ipad.png + │   │   │   └── Contents.json + │   │   ├── color_label_bg.imageset + │   │   │   ├── color_label_bg.png + │   │   │   └── Contents.json + │   │   ├── Contents.json + │   │   ├── ic_about_72x72.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_about_72x72.png + │   │   ├── ic_device_ht_sensor_cloud_offline_128x128.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_device_ht_sensor_cloud_offline_128x128.png + │   │   ├── ic_device_ht_sensor_cloud_online_128x128.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_device_ht_sensor_cloud_online_128x128.png + │   │   ├── ic_device_ht_sensor_local_offline_128x128.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_device_ht_sensor_local_offline_128x128.png + │   │   ├── ic_device_ht_sensor_local_online_128x128.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_device_ht_sensor_local_online_128x128.png + │   │   ├── ic_failed_512x513.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_failed_512x513.png + │   │   ├── ic_find_device_72x72.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_find_device_72x72.png + │   │   ├── ic_ht_56x56.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_ht_56x56.png + │   │   ├── ic_launcher_676x1054.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_launcher_676x1054.png + │   │   ├── ic_my_device_72x72.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_my_device_72x72.png + │   │   ├── ic_selected_55x55.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_selected_55x55.png + │   │   ├── ic_settings_72x72.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_settings_72x72.png + │   │   ├── ic_succeed_512x513.imageset + │   │   │   ├── Contents.json + │   │   │   └── ic_succeed_512x513.png + │   │   └── menu.imageset + │   │   ├── Contents.json + │   │   ├── menu@2x.png + │   │   ├── menu@3x.png + │   │   └── menu.png + │   ├── Info.plist + │   ├── iOSCharts + │   │   ├── Animation + │   │   │   ├── ChartAnimationEasing.swift + │   │   │   └── ChartAnimator.swift + │   │   ├── Charts + │   │   │   ├── BarChartView.swift + │   │   │   ├── BarLineChartViewBase.swift + │   │   │   ├── BubbleChartView.swift + │   │   │   ├── CandleStickChartView.swift + │   │   │   ├── ChartViewBase.swift + │   │   │   ├── CombinedChartView.swift + │   │   │   ├── HorizontalBarChartView.swift + │   │   │   ├── LineChartView.swift + │   │   │   ├── PieChartView.swift + │   │   │   ├── PieRadarChartViewBase.swift + │   │   │   ├── RadarChartView.swift + │   │   │   └── ScatterChartView.swift + │   │   ├── Components + │   │   │   ├── ChartAxisBase.swift + │   │   │   ├── ChartComponentBase.swift + │   │   │   ├── ChartLegend.swift + │   │   │   ├── ChartLimitLine.swift + │   │   │   ├── ChartMarker.swift + │   │   │   ├── ChartXAxis.swift + │   │   │   └── ChartYAxis.swift + │   │   ├── Data + │   │   │   ├── BarChartDataEntry.swift + │   │   │   ├── BarChartDataSet.swift + │   │   │   ├── BarChartData.swift + │   │   │   ├── BarLineScatterCandleChartDataSet.swift + │   │   │   ├── BarLineScatterCandleChartData.swift + │   │   │   ├── BubbleChartDataEntry.swift + │   │   │   ├── BubbleChartDataSet.swift + │   │   │   ├── BubbleChartData.swift + │   │   │   ├── CandleChartDataEntry.swift + │   │   │   ├── CandleChartDataSet.swift + │   │   │   ├── CandleChartData.swift + │   │   │   ├── ChartDataEntry.swift + │   │   │   ├── ChartDataSet.swift + │   │   │   ├── ChartData.swift + │   │   │   ├── CombinedChartData.swift + │   │   │   ├── LineChartDataSet.swift + │   │   │   ├── LineChartData.swift + │   │   │   ├── LineRadarChartDataSet.swift + │   │   │   ├── LineScatterCandleChartDataSet.swift + │   │   │   ├── PieChartDataSet.swift + │   │   │   ├── PieChartData.swift + │   │   │   ├── RadarChartDataSet.swift + │   │   │   ├── RadarChartData.swift + │   │   │   ├── ScatterChartDataSet.swift + │   │   │   └── ScatterChartData.swift + │   │   ├── Filters + │   │   │   ├── ChartDataApproximatorFilter.swift + │   │   │   └── ChartDataBaseFilter.swift + │   │   ├── Highlight + │   │   │   ├── BarChartHighlighter.swift + │   │   │   ├── ChartHighlighter.swift + │   │   │   ├── ChartHighlight.swift + │   │   │   ├── ChartRange.swift + │   │   │   └── HorizontalBarChartHighlighter.swift + │   │   ├── Renderers + │   │   │   ├── BarChartRenderer.swift + │   │   │   ├── BubbleChartRenderer.swift + │   │   │   ├── CandleStickChartRenderer.swift + │   │   │   ├── ChartAxisRendererBase.swift + │   │   │   ├── ChartDataRendererBase.swift + │   │   │   ├── ChartLegendRenderer.swift + │   │   │   ├── ChartRendererBase.swift + │   │   │   ├── ChartXAxisRendererBarChart.swift + │   │   │   ├── ChartXAxisRendererHorizontalBarChart.swift + │   │   │   ├── ChartXAxisRendererRadarChart.swift + │   │   │   ├── ChartXAxisRenderer.swift + │   │   │   ├── ChartYAxisRendererHorizontalBarChart.swift + │   │   │   ├── ChartYAxisRendererRadarChart.swift + │   │   │   ├── ChartYAxisRenderer.swift + │   │   │   ├── CombinedChartRenderer.swift + │   │   │   ├── HorizontalBarChartRenderer.swift + │   │   │   ├── LineChartRenderer.swift + │   │   │   ├── LineScatterCandleRadarChartRenderer.swift + │   │   │   ├── PieChartRenderer.swift + │   │   │   ├── RadarChartRenderer.swift + │   │   │   └── ScatterChartRenderer.swift + │   │   └── Utils + │   │   ├── CALayer+Extensions.swift + │   │   ├── ChartColorTemplates.swift + │   │   ├── ChartFillFormatter.swift + │   │   ├── ChartSelectionDetail.swift + │   │   ├── ChartTransformerHorizontalBarChart.swift + │   │   ├── ChartTransformer.swift + │   │   ├── ChartUtils.swift + │   │   ├── ChartViewPortHandler.swift + │   │   └── UIGraphics+Extensions.swift + │   ├── Just + │   │   └── Just.swift + │   ├── Log + │   │   └── Log.swift + │   ├── MainUI + │   │   ├── AboutVC.swift + │   │   ├── BackTableVC.swift + │   │   ├── DeviceCollectionViewCell.swift + │   │   ├── FindDeviceVC.swift + │   │   ├── HTSettingsVC.swift + │   │   ├── MyDeviceVC.swift + │   │   └── SettingsVC.swift + │   ├── R + │   │   └── R.swift + │   ├── RegisterFirebase + │   │   ├── RegisterFirebase.storyboard + │   │   └── RegisterFirebaseVC.swift + │   ├── SCLAlertView + │   │   ├── SCLAlertView.h + │   │   ├── SCLAlertView.m + │   │   ├── SCLAlertViewResponder.h + │   │   ├── SCLAlertViewResponder.m + │   │   ├── SCLAlertViewStyleKit.h + │   │   ├── SCLAlertViewStyleKit.m + │   │   ├── SCLButton.h + │   │   ├── SCLButton.m + │   │   ├── SCLMacros.h + │   │   ├── SCLTimerDisplay.h + │   │   ├── SCLTimerDisplay.m + │   │   ├── UIImage+ImageEffects.h + │   │   └── UIImage+ImageEffects.m + │   ├── Socket + │   │   ├── YSocket + │   │   │   ├── ytcpsocket.c + │   │   │   ├── ytcpsocket.h + │   │   │   ├── yudpsocket.c + │   │   │   └── yudpsocket.h + │   │   ├── YSocket.swift + │   │   ├── YTCPSocket.swift + │   │   └── YUDPSocket.swift + │   ├── SwiftyJSON + │   │   └── SwiftyJSON.swift + │   ├── SWRevealViewController + │   │   ├── SWRevealViewController.h + │   │   └── SWRevealViewController.m + │   ├── Toast + │   │   ├── UIView+Toast.h + │   │   └── UIView+Toast.m + │   ├── UIImage+animatedGIF + │   │   ├── preloader_256x23.gif + │   │   ├── UIImage+animatedGIF.h + │   │   └── UIImage+animatedGIF.m + │   ├── WiGadget-Bridging-Header + │   └── WiGadget-Bridging-Header.h + ├── WiGadgetTests + │   ├── Info.plist + │   └── WiGadgetTests.swift + └── WiGadget.xcodeproj + ├── project.pbxproj + ├── project.xcworkspace + │   ├── contents.xcworkspacedata + │   ├── xcshareddata + │   │   └── WiGadget.xccheckout + │   └── xcuserdata + │   └── WUJINZHOU.xcuserdatad + │   └── UserInterfaceState.xcuserstate + └── xcuserdata + └── WUJINZHOU.xcuserdatad + ├── xcdebugger + │   └── Breakpoints_v2.xcbkptlist + └── xcschemes + ├── WiGadget.xcscheme + └── xcschememanagement.plist + +1282 directories, 8366 files diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.asm b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.asm new file mode 100644 index 0000000..b4cddf2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.asm @@ -0,0 +1,100050 @@ + +application/Debug/bin/application.axf: file format elf32-littlearm + + +Disassembly of section .dummy: + +1fff0000 <__ram_image1_text_start__>: +1fff0000: 1fff15ed .word 0x1fff15ed + +1fff0004 : +1fff0004: 1fff1295 .... + +1fff0008 : +1fff0008: 1fff1295 .... + +1fff000c : +1fff000c: 1fff1295 .... + +1fff0010 : +1fff0010: 1fff1295 .... + +1fff0014 : +1fff0014: 88167923 ffffffff #y...... + +1fff001c : +1fff001c: 075bcd15 ..[. + +1fff0020 : + ... + +1fff1020 : +1fff1020: 1fff1084 1fff1068 1fff1034 00002710 ....h...4....'.. +1fff1030: 00000000 .... + +1fff1034 : +1fff1034: 0000ea60 007733a0 00000002 00003a98 `....3w......:.. +1fff1044: 00003a98 0000a410 00000002 00004e20 .:.......... N.. +1fff1054: 00000000 00000002 00000000 00000001 ................ +1fff1064: 0000ea60 `... + +1fff1068 : + ... +1fff1070: 00000003 00000000 00000000 00000000 ................ +1fff1080: 00000000 .... + +1fff1084 : +1fff1084: 00000008 00000000 00000000 00000000 ................ + +1fff1094 : +1fff1094: 000587c4 .... + +1fff1098 : +1fff1098: 1f123bb5 .;.. + +1fff109c : +1fff109c: 0074cbb1 ..t. + +1fff10a0 : + ... + +1fff11cc : +1fff11cc: b570 push {r4, r5, r6, lr} +1fff11ce: 4e1e ldr r6, [pc, #120] ; (1fff1248 ) +1fff11d0: 4d1e ldr r5, [pc, #120] ; (1fff124c ) +1fff11d2: 2300 movs r3, #0 +1fff11d4: 6033 str r3, [r6, #0] +1fff11d6: 2380 movs r3, #128 ; 0x80 +1fff11d8: 602b str r3, [r5, #0] +1fff11da: 4b1d ldr r3, [pc, #116] ; (1fff1250 ) +1fff11dc: 4604 mov r4, r0 +1fff11de: 4798 blx r3 +1fff11e0: f44f 2116 mov.w r1, #614400 ; 0x96000 +1fff11e4: 0880 lsrs r0, r0, #2 +1fff11e6: 220a movs r2, #10 +1fff11e8: fbb0 f3f1 udiv r3, r0, r1 +1fff11ec: 4350 muls r0, r2 +1fff11ee: fbb0 f1f1 udiv r1, r0, r1 +1fff11f2: fb02 1213 mls r2, r2, r3, r1 +1fff11f6: 2a04 cmp r2, #4 +1fff11f8: bf88 it hi +1fff11fa: 3301 addhi r3, #1 +1fff11fc: 4a15 ldr r2, [pc, #84] ; (1fff1254 ) +1fff11fe: b2d9 uxtb r1, r3 +1fff1200: f3c3 2307 ubfx r3, r3, #8, #8 +1fff1204: 6011 str r1, [r2, #0] +1fff1206: 6033 str r3, [r6, #0] +1fff1208: 2300 movs r3, #0 +1fff120a: 602b str r3, [r5, #0] +1fff120c: 2303 movs r3, #3 +1fff120e: 602b str r3, [r5, #0] +1fff1210: 4b11 ldr r3, [pc, #68] ; (1fff1258 ) +1fff1212: 22c1 movs r2, #193 ; 0xc1 +1fff1214: 601a str r2, [r3, #0] +1fff1216: 6034 str r4, [r6, #0] +1fff1218: b19c cbz r4, 1fff1242 +1fff121a: f04f 7280 mov.w r2, #16777216 ; 0x1000000 +1fff121e: f2a3 73fc subw r3, r3, #2044 ; 0x7fc +1fff1222: 490e ldr r1, [pc, #56] ; (1fff125c ) +1fff1224: 601a str r2, [r3, #0] +1fff1226: 68cb ldr r3, [r1, #12] +1fff1228: f64f 02ff movw r2, #63743 ; 0xf8ff +1fff122c: 401a ands r2, r3 +1fff122e: 4b0c ldr r3, [pc, #48] ; (1fff1260 ) +1fff1230: 4313 orrs r3, r2 +1fff1232: 60cb str r3, [r1, #12] +1fff1234: 4b0b ldr r3, [pc, #44] ; (1fff1264 ) +1fff1236: 22e0 movs r2, #224 ; 0xe0 +1fff1238: f883 2313 strb.w r2, [r3, #787] ; 0x313 +1fff123c: f44f 2200 mov.w r2, #524288 ; 0x80000 +1fff1240: 601a str r2, [r3, #0] +1fff1242: 2000 movs r0, #0 +1fff1244: bd70 pop {r4, r5, r6, pc} +1fff1246: bf00 nop +1fff1248: 40003004 .word 0x40003004 +1fff124c: 4000300c .word 0x4000300c +1fff1250: 00000355 .word 0x00000355 +1fff1254: 40003000 .word 0x40003000 +1fff1258: 40003008 .word 0x40003008 +1fff125c: e000ed00 .word 0xe000ed00 +1fff1260: 05fa0300 .word 0x05fa0300 +1fff1264: e000e100 .word 0xe000e100 + +1fff1268 : +1fff1268: 4b08 ldr r3, [pc, #32] ; (1fff128c ) +1fff126a: 2005 movs r0, #5 +1fff126c: 681b ldr r3, [r3, #0] +1fff126e: 4b08 ldr r3, [pc, #32] ; (1fff1290 ) +1fff1270: 681a ldr r2, [r3, #0] +1fff1272: f422 5280 bic.w r2, r2, #4096 ; 0x1000 +1fff1276: 601a str r2, [r3, #0] +1fff1278: 681a ldr r2, [r3, #0] +1fff127a: f442 5280 orr.w r2, r2, #4096 ; 0x1000 +1fff127e: 601a str r2, [r3, #0] +1fff1280: 6a1a ldr r2, [r3, #32] +1fff1282: f442 5280 orr.w r2, r2, #4096 ; 0x1000 +1fff1286: 621a str r2, [r3, #32] +1fff1288: f7ff bfa0 b.w 1fff11cc +1fff128c: 40003000 .word 0x40003000 +1fff1290: 40000210 .word 0x40000210 + +1fff1294 : +1fff1294: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1fff1298: 4858 ldr r0, [pc, #352] ; (1fff13fc ) +1fff129a: 4a59 ldr r2, [pc, #356] ; (1fff1400 ) +1fff129c: 4c59 ldr r4, [pc, #356] ; (1fff1404 ) +1fff129e: b088 sub sp, #32 +1fff12a0: 2100 movs r1, #0 +1fff12a2: 1a12 subs r2, r2, r0 +1fff12a4: 4b58 ldr r3, [pc, #352] ; (1fff1408 ) +1fff12a6: 4798 blx r3 +1fff12a8: 6823 ldr r3, [r4, #0] +1fff12aa: 2100 movs r1, #0 +1fff12ac: f043 0340 orr.w r3, r3, #64 ; 0x40 +1fff12b0: 6023 str r3, [r4, #0] +1fff12b2: 6823 ldr r3, [r4, #0] +1fff12b4: 4e55 ldr r6, [pc, #340] ; (1fff140c ) +1fff12b6: f043 0380 orr.w r3, r3, #128 ; 0x80 +1fff12ba: 6023 str r3, [r4, #0] +1fff12bc: 2201 movs r2, #1 +1fff12be: 20d8 movs r0, #216 ; 0xd8 +1fff12c0: 47b0 blx r6 +1fff12c2: 4b53 ldr r3, [pc, #332] ; (1fff1410 ) +1fff12c4: f240 72ff movw r2, #2047 ; 0x7ff +1fff12c8: 601a str r2, [r3, #0] +1fff12ca: f853 2c60 ldr.w r2, [r3, #-96] +1fff12ce: 4d51 ldr r5, [pc, #324] ; (1fff1414 ) +1fff12d0: f042 0201 orr.w r2, r2, #1 +1fff12d4: f843 2c60 str.w r2, [r3, #-96] +1fff12d8: f853 2c60 ldr.w r2, [r3, #-96] +1fff12dc: 484e ldr r0, [pc, #312] ; (1fff1418 ) +1fff12de: f442 1280 orr.w r2, r2, #1048576 ; 0x100000 +1fff12e2: f843 2c60 str.w r2, [r3, #-96] +1fff12e6: 4b4d ldr r3, [pc, #308] ; (1fff141c ) +1fff12e8: 4798 blx r3 +1fff12ea: 682b ldr r3, [r5, #0] +1fff12ec: 2100 movs r1, #0 +1fff12ee: f043 0310 orr.w r3, r3, #16 +1fff12f2: 602b str r3, [r5, #0] +1fff12f4: 6823 ldr r3, [r4, #0] +1fff12f6: 2201 movs r2, #1 +1fff12f8: f443 7380 orr.w r3, r3, #256 ; 0x100 +1fff12fc: 6023 str r3, [r4, #0] +1fff12fe: 6823 ldr r3, [r4, #0] +1fff1300: 20c4 movs r0, #196 ; 0xc4 +1fff1302: f443 7300 orr.w r3, r3, #512 ; 0x200 +1fff1306: 6023 str r3, [r4, #0] +1fff1308: 47b0 blx r6 +1fff130a: f000 fb2d bl 1fff1968 <__SpicNVMCalLoadAll_veneer> +1fff130e: 4b44 ldr r3, [pc, #272] ; (1fff1420 ) +1fff1310: 4f44 ldr r7, [pc, #272] ; (1fff1424 ) +1fff1312: 781a ldrb r2, [r3, #0] +1fff1314: 2600 movs r6, #0 +1fff1316: f002 028f and.w r2, r2, #143 ; 0x8f +1fff131a: 701a strb r2, [r3, #0] +1fff131c: f04f 33ff mov.w r3, #4294967295 +1fff1320: 603b str r3, [r7, #0] +1fff1322: 4b41 ldr r3, [pc, #260] ; (1fff1428 ) +1fff1324: f04f 0805 mov.w r8, #5 +1fff1328: 601e str r6, [r3, #0] +1fff132a: 4b40 ldr r3, [pc, #256] ; (1fff142c ) +1fff132c: 4630 mov r0, r6 +1fff132e: 601e str r6, [r3, #0] +1fff1330: 4b3f ldr r3, [pc, #252] ; (1fff1430 ) +1fff1332: 681b ldr r3, [r3, #0] +1fff1334: 682b ldr r3, [r5, #0] +1fff1336: f423 5380 bic.w r3, r3, #4096 ; 0x1000 +1fff133a: 602b str r3, [r5, #0] +1fff133c: 682b ldr r3, [r5, #0] +1fff133e: f443 5380 orr.w r3, r3, #4096 ; 0x1000 +1fff1342: 602b str r3, [r5, #0] +1fff1344: 6823 ldr r3, [r4, #0] +1fff1346: f443 5380 orr.w r3, r3, #4096 ; 0x1000 +1fff134a: 6023 str r3, [r4, #0] +1fff134c: 2358 movs r3, #88 ; 0x58 +1fff134e: 9301 str r3, [sp, #4] +1fff1350: 4b38 ldr r3, [pc, #224] ; (1fff1434 ) +1fff1352: 9602 str r6, [sp, #8] +1fff1354: 9300 str r3, [sp, #0] +1fff1356: f8cd 800c str.w r8, [sp, #12] +1fff135a: f7ff ff37 bl 1fff11cc +1fff135e: 4b36 ldr r3, [pc, #216] ; (1fff1438 ) +1fff1360: 4668 mov r0, sp +1fff1362: 4798 blx r3 +1fff1364: 4640 mov r0, r8 +1fff1366: f7ff ff31 bl 1fff11cc +1fff136a: 4b34 ldr r3, [pc, #208] ; (1fff143c ) +1fff136c: 2203 movs r2, #3 +1fff136e: 601a str r2, [r3, #0] +1fff1370: 6eda ldr r2, [r3, #108] ; 0x6c +1fff1372: 4668 mov r0, sp +1fff1374: f042 0201 orr.w r2, r2, #1 +1fff1378: 66da str r2, [r3, #108] ; 0x6c +1fff137a: 682b ldr r3, [r5, #0] +1fff137c: f443 3380 orr.w r3, r3, #65536 ; 0x10000 +1fff1380: 602b str r3, [r5, #0] +1fff1382: 6823 ldr r3, [r4, #0] +1fff1384: f443 4380 orr.w r3, r3, #16384 ; 0x4000 +1fff1388: 6023 str r3, [r4, #0] +1fff138a: 6823 ldr r3, [r4, #0] +1fff138c: f443 4300 orr.w r3, r3, #32768 ; 0x8000 +1fff1390: 6023 str r3, [r4, #0] +1fff1392: 2401 movs r4, #1 +1fff1394: 4b2a ldr r3, [pc, #168] ; (1fff1440 ) +1fff1396: f88d 401d strb.w r4, [sp, #29] +1fff139a: f88d 401c strb.w r4, [sp, #28] +1fff139e: 9601 str r6, [sp, #4] +1fff13a0: 9600 str r6, [sp, #0] +1fff13a2: 9602 str r6, [sp, #8] +1fff13a4: 4798 blx r3 +1fff13a6: 4b27 ldr r3, [pc, #156] ; (1fff1444 ) +1fff13a8: 4620 mov r0, r4 +1fff13aa: 4621 mov r1, r4 +1fff13ac: 4798 blx r3 +1fff13ae: 4620 mov r0, r4 +1fff13b0: f000 fafa bl 1fff19a8 <__SpicFlashInitRtl8195A_veneer> +1fff13b4: 683b ldr r3, [r7, #0] +1fff13b6: 005a lsls r2, r3, #1 +1fff13b8: d502 bpl.n 1fff13c0 +1fff13ba: 4823 ldr r0, [pc, #140] ; (1fff1448 ) +1fff13bc: 4b23 ldr r3, [pc, #140] ; (1fff144c ) +1fff13be: 4798 blx r3 +1fff13c0: 683b ldr r3, [r7, #0] +1fff13c2: 4c23 ldr r4, [pc, #140] ; (1fff1450 ) +1fff13c4: f013 4f80 tst.w r3, #1073741824 ; 0x40000000 +1fff13c8: d004 beq.n 1fff13d4 +1fff13ca: 4822 ldr r0, [pc, #136] ; (1fff1454 ) +1fff13cc: 4922 ldr r1, [pc, #136] ; (1fff1458 ) +1fff13ce: 6822 ldr r2, [r4, #0] +1fff13d0: 4b1e ldr r3, [pc, #120] ; (1fff144c ) +1fff13d2: 4798 blx r3 +1fff13d4: 4820 ldr r0, [pc, #128] ; (1fff1458 ) +1fff13d6: 4921 ldr r1, [pc, #132] ; (1fff145c ) +1fff13d8: 4b21 ldr r3, [pc, #132] ; (1fff1460 ) +1fff13da: 4798 blx r3 +1fff13dc: b148 cbz r0, 1fff13f2 +1fff13de: 683b ldr r3, [r7, #0] +1fff13e0: 005b lsls r3, r3, #1 +1fff13e2: d502 bpl.n 1fff13ea +1fff13e4: 481f ldr r0, [pc, #124] ; (1fff1464 ) +1fff13e6: 4b19 ldr r3, [pc, #100] ; (1fff144c ) +1fff13e8: 4798 blx r3 +1fff13ea: f44f 707a mov.w r0, #1000 ; 0x3e8 +1fff13ee: 4b1e ldr r3, [pc, #120] ; (1fff1468 ) +1fff13f0: 4798 blx r3 +1fff13f2: 6823 ldr r3, [r4, #0] +1fff13f4: 4798 blx r3 +1fff13f6: b008 add sp, #32 +1fff13f8: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1fff13fc: 10000300 .word 0x10000300 +1fff1400: 10000bc8 .word 0x10000bc8 +1fff1404: 40000230 .word 0x40000230 +1fff1408: 0000f511 .word 0x0000f511 +1fff140c: 00002b39 .word 0x00002b39 +1fff1410: 40000320 .word 0x40000320 +1fff1414: 40000210 .word 0x40000210 +1fff1418: 1ffffffc .word 0x1ffffffc +1fff141c: 00003de5 .word 0x00003de5 +1fff1420: 40000014 .word 0x40000014 +1fff1424: 10000314 .word 0x10000314 +1fff1428: 1000030c .word 0x1000030c +1fff142c: 10000310 .word 0x10000310 +1fff1430: 40003000 .word 0x40003000 +1fff1434: 0000ebf5 .word 0x0000ebf5 +1fff1438: 00004029 .word 0x00004029 +1fff143c: 40000204 .word 0x40000204 +1fff1440: 0000ef3d .word 0x0000ef3d +1fff1444: 000030e5 .word 0x000030e5 +1fff1448: 10049452 .word 0x10049452 +1fff144c: 0000f39d .word 0x0000f39d +1fff1450: 10006000 .word 0x10006000 +1fff1454: 1004946f .word 0x1004946f +1fff1458: 10006004 .word 0x10006004 +1fff145c: 10049493 .word 0x10049493 +1fff1460: 0000f6b1 .word 0x0000f6b1 +1fff1464: 1004949a .word 0x1004949a +1fff1468: 0000edcd .word 0x0000edcd + +1fff146c : +1fff146c: 4b14 ldr r3, [pc, #80] ; (1fff14c0 ) +1fff146e: b570 push {r4, r5, r6, lr} +1fff1470: 681b ldr r3, [r3, #0] +1fff1472: 4606 mov r6, r0 +1fff1474: 04db lsls r3, r3, #19 +1fff1476: 460c mov r4, r1 +1fff1478: d504 bpl.n 1fff1484 +1fff147a: 4812 ldr r0, [pc, #72] ; (1fff14c4 ) +1fff147c: 4912 ldr r1, [pc, #72] ; (1fff14c8 ) +1fff147e: 4622 mov r2, r4 +1fff1480: 4b12 ldr r3, [pc, #72] ; (1fff14cc ) +1fff1482: 4798 blx r3 +1fff1484: 4b12 ldr r3, [pc, #72] ; (1fff14d0 ) +1fff1486: 681d ldr r5, [r3, #0] +1fff1488: f015 0510 ands.w r5, r5, #16 +1fff148c: d002 beq.n 1fff1494 +1fff148e: f000 fa73 bl 1fff1978 <__SpicWaitWipRtl8195A_veneer> +1fff1492: 2501 movs r5, #1 +1fff1494: 2efc cmp r6, #252 ; 0xfc +1fff1496: d102 bne.n 1fff149e +1fff1498: 2c00 cmp r4, #0 +1fff149a: bf08 it eq +1fff149c: 2401 moveq r4, #1 +1fff149e: 4620 mov r0, r4 +1fff14a0: 4b0c ldr r3, [pc, #48] ; (1fff14d4 ) +1fff14a2: 4798 blx r3 +1fff14a4: 4b0c ldr r3, [pc, #48] ; (1fff14d8 ) +1fff14a6: f44f 707a mov.w r0, #1000 ; 0x3e8 +1fff14aa: 4798 blx r3 +1fff14ac: f7ff fedc bl 1fff1268 +1fff14b0: b125 cbz r5, 1fff14bc +1fff14b2: 4620 mov r0, r4 +1fff14b4: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1fff14b8: f000 ba6e b.w 1fff1998 <__SpicOneBitCalibrationRtl8195A_veneer> +1fff14bc: bd70 pop {r4, r5, r6, pc} +1fff14be: bf00 nop +1fff14c0: 10000310 .word 0x10000310 +1fff14c4: 100494b5 .word 0x100494b5 +1fff14c8: 1004970e .word 0x1004970e +1fff14cc: 0000f39d .word 0x0000f39d +1fff14d0: 40000210 .word 0x40000210 +1fff14d4: 00000341 .word 0x00000341 +1fff14d8: 00000899 .word 0x00000899 + +1fff14dc : +1fff14dc: b5f0 push {r4, r5, r6, r7, lr} +1fff14de: 4b19 ldr r3, [pc, #100] ; (1fff1544 ) +1fff14e0: b085 sub sp, #20 +1fff14e2: 681b ldr r3, [r3, #0] +1fff14e4: 4a18 ldr r2, [pc, #96] ; (1fff1548 ) +1fff14e6: f88d 3004 strb.w r3, [sp, #4] +1fff14ea: 0a1b lsrs r3, r3, #8 +1fff14ec: f88d 3005 strb.w r3, [sp, #5] +1fff14f0: 4b16 ldr r3, [pc, #88] ; (1fff154c ) +1fff14f2: 2400 movs r4, #0 +1fff14f4: 601a str r2, [r3, #0] +1fff14f6: 4626 mov r6, r4 +1fff14f8: 461f mov r7, r3 +1fff14fa: ab01 add r3, sp, #4 +1fff14fc: 5ce5 ldrb r5, [r4, r3] +1fff14fe: 2dff cmp r5, #255 ; 0xff +1fff1500: d018 beq.n 1fff1534 +1fff1502: f005 007f and.w r0, r5, #127 ; 0x7f +1fff1506: 4b12 ldr r3, [pc, #72] ; (1fff1550 ) +1fff1508: 4798 blx r3 +1fff150a: 062a lsls r2, r5, #24 +1fff150c: 9003 str r0, [sp, #12] +1fff150e: d502 bpl.n 1fff1516 +1fff1510: 2601 movs r6, #1 +1fff1512: 9602 str r6, [sp, #8] +1fff1514: e002 b.n 1fff151c +1fff1516: 2302 movs r3, #2 +1fff1518: 9302 str r3, [sp, #8] +1fff151a: 2600 movs r6, #0 +1fff151c: 4b0d ldr r3, [pc, #52] ; (1fff1554 ) +1fff151e: a802 add r0, sp, #8 +1fff1520: 4798 blx r3 +1fff1522: 4b0d ldr r3, [pc, #52] ; (1fff1558 ) +1fff1524: a802 add r0, sp, #8 +1fff1526: 4798 blx r3 +1fff1528: 1b83 subs r3, r0, r6 +1fff152a: 425e negs r6, r3 +1fff152c: 415e adcs r6, r3 +1fff152e: a802 add r0, sp, #8 +1fff1530: 4b0a ldr r3, [pc, #40] ; (1fff155c ) +1fff1532: 4798 blx r3 +1fff1534: 3401 adds r4, #1 +1fff1536: 2c02 cmp r4, #2 +1fff1538: d1df bne.n 1fff14fa +1fff153a: 2300 movs r3, #0 +1fff153c: 4630 mov r0, r6 +1fff153e: 603b str r3, [r7, #0] +1fff1540: b005 add sp, #20 +1fff1542: bdf0 pop {r4, r5, r6, r7, pc} +1fff1544: 98009008 .word 0x98009008 +1fff1548: 1fff10a0 .word 0x1fff10a0 +1fff154c: 10000354 .word 0x10000354 +1fff1550: 0000e1c1 .word 0x0000e1c1 +1fff1554: 0000d805 .word 0x0000d805 +1fff1558: 0000dbd1 .word 0x0000dbd1 +1fff155c: 0000dac1 .word 0x0000dac1 + +1fff1560 <_GetChipId>: +1fff1560: b513 push {r0, r1, r4, lr} +1fff1562: 4b0a ldr r3, [pc, #40] ; (1fff158c <_GetChipId+0x2c>) +1fff1564: 21f8 movs r1, #248 ; 0xf8 +1fff1566: 6818 ldr r0, [r3, #0] +1fff1568: aa01 add r2, sp, #4 +1fff156a: 2307 movs r3, #7 +1fff156c: 4c08 ldr r4, [pc, #32] ; (1fff1590 <_GetChipId+0x30>) +1fff156e: 47a0 blx r4 +1fff1570: 2801 cmp r0, #1 +1fff1572: d006 beq.n 1fff1582 <_GetChipId+0x22> +1fff1574: 4b07 ldr r3, [pc, #28] ; (1fff1594 <_GetChipId+0x34>) +1fff1576: 681b ldr r3, [r3, #0] +1fff1578: 005b lsls r3, r3, #1 +1fff157a: d502 bpl.n 1fff1582 <_GetChipId+0x22> +1fff157c: 4806 ldr r0, [pc, #24] ; (1fff1598 <_GetChipId+0x38>) +1fff157e: 4b07 ldr r3, [pc, #28] ; (1fff159c <_GetChipId+0x3c>) +1fff1580: 4798 blx r3 +1fff1582: f89d 0004 ldrb.w r0, [sp, #4] +1fff1586: b002 add sp, #8 +1fff1588: bd10 pop {r4, pc} +1fff158a: bf00 nop +1fff158c: 400000e8 .word 0x400000e8 +1fff1590: 000065f9 .word 0x000065f9 +1fff1594: 10000314 .word 0x10000314 +1fff1598: 100494cd .word 0x100494cd +1fff159c: 0000f39d .word 0x0000f39d + +1fff15a0 : +1fff15a0: 4b0f ldr r3, [pc, #60] ; (1fff15e0 ) +1fff15a2: b510 push {r4, lr} +1fff15a4: 6819 ldr r1, [r3, #0] +1fff15a6: 69da ldr r2, [r3, #28] +1fff15a8: f001 4170 and.w r1, r1, #4026531840 ; 0xf0000000 +1fff15ac: f042 0210 orr.w r2, r2, #16 +1fff15b0: 61da str r2, [r3, #28] +1fff15b2: 6bda ldr r2, [r3, #60] ; 0x3c +1fff15b4: 4604 mov r4, r0 +1fff15b6: f442 7280 orr.w r2, r2, #256 ; 0x100 +1fff15ba: 63da str r2, [r3, #60] ; 0x3c +1fff15bc: 6bda ldr r2, [r3, #60] ; 0x3c +1fff15be: 20c4 movs r0, #196 ; 0xc4 +1fff15c0: f442 7200 orr.w r2, r2, #512 ; 0x200 +1fff15c4: 63da str r2, [r3, #60] ; 0x3c +1fff15c6: f1b1 5340 subs.w r3, r1, #805306368 ; 0x30000000 +1fff15ca: 4259 negs r1, r3 +1fff15cc: 4159 adcs r1, r3 +1fff15ce: 2201 movs r2, #1 +1fff15d0: 4b04 ldr r3, [pc, #16] ; (1fff15e4 ) +1fff15d2: 4798 blx r3 +1fff15d4: 4620 mov r0, r4 +1fff15d6: 2100 movs r1, #0 +1fff15d8: 4b03 ldr r3, [pc, #12] ; (1fff15e8 ) +1fff15da: 4798 blx r3 +1fff15dc: bd10 pop {r4, pc} +1fff15de: bf00 nop +1fff15e0: 400001f4 .word 0x400001f4 +1fff15e4: 00002b39 .word 0x00002b39 +1fff15e8: 000030e5 .word 0x000030e5 + +1fff15ec : +1fff15ec: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1fff15f0: 4b91 ldr r3, [pc, #580] ; (1fff1838 ) +1fff15f2: 21d3 movs r1, #211 ; 0xd3 +1fff15f4: 6818 ldr r0, [r3, #0] +1fff15f6: f10d 0203 add.w r2, sp, #3 +1fff15fa: 2307 movs r3, #7 +1fff15fc: 4c8f ldr r4, [pc, #572] ; (1fff183c ) +1fff15fe: 47a0 blx r4 +1fff1600: f89d 3003 ldrb.w r3, [sp, #3] +1fff1604: 07d9 lsls r1, r3, #31 +1fff1606: d504 bpl.n 1fff1612 +1fff1608: 20d8 movs r0, #216 ; 0xd8 +1fff160a: 2100 movs r1, #0 +1fff160c: 2201 movs r2, #1 +1fff160e: 4b8c ldr r3, [pc, #560] ; (1fff1840 ) +1fff1610: 4798 blx r3 +1fff1612: f7ff ffa5 bl 1fff1560 <_GetChipId> +1fff1616: 4b8b ldr r3, [pc, #556] ; (1fff1844 ) +1fff1618: 4680 mov r8, r0 +1fff161a: 681c ldr r4, [r3, #0] +1fff161c: f014 0410 ands.w r4, r4, #16 +1fff1620: d10d bne.n 1fff163e +1fff1622: a801 add r0, sp, #4 +1fff1624: 4988 ldr r1, [pc, #544] ; (1fff1848 ) +1fff1626: 2204 movs r2, #4 +1fff1628: 4b88 ldr r3, [pc, #544] ; (1fff184c ) +1fff162a: 4798 blx r3 +1fff162c: f1b8 0ffb cmp.w r8, #251 ; 0xfb +1fff1630: 9d01 ldr r5, [sp, #4] +1fff1632: d007 beq.n 1fff1644 +1fff1634: 2001 movs r0, #1 +1fff1636: f7ff ffb3 bl 1fff15a0 +1fff163a: 2701 movs r7, #1 +1fff163c: e003 b.n 1fff1646 +1fff163e: 4d84 ldr r5, [pc, #528] ; (1fff1850 ) +1fff1640: 2401 movs r4, #1 +1fff1642: e7fa b.n 1fff163a +1fff1644: 4627 mov r7, r4 +1fff1646: 4e83 ldr r6, [pc, #524] ; (1fff1854 ) +1fff1648: 6833 ldr r3, [r6, #0] +1fff164a: 005a lsls r2, r3, #1 +1fff164c: d507 bpl.n 1fff165e +1fff164e: 4b82 ldr r3, [pc, #520] ; (1fff1858 ) +1fff1650: 4982 ldr r1, [pc, #520] ; (1fff185c ) +1fff1652: 4883 ldr r0, [pc, #524] ; (1fff1860 ) +1fff1654: 2c00 cmp r4, #0 +1fff1656: bf18 it ne +1fff1658: 4619 movne r1, r3 +1fff165a: 4b82 ldr r3, [pc, #520] ; (1fff1864 ) +1fff165c: 4798 blx r3 +1fff165e: 4882 ldr r0, [pc, #520] ; (1fff1868 ) +1fff1660: 4a82 ldr r2, [pc, #520] ; (1fff186c ) +1fff1662: 2100 movs r1, #0 +1fff1664: 1a12 subs r2, r2, r0 +1fff1666: 4b82 ldr r3, [pc, #520] ; (1fff1870 ) +1fff1668: 4798 blx r3 +1fff166a: 4b82 ldr r3, [pc, #520] ; (1fff1874 ) +1fff166c: f44f 707a mov.w r0, #1000 ; 0x3e8 +1fff1670: 4798 blx r3 +1fff1672: f108 0305 add.w r3, r8, #5 +1fff1676: b2db uxtb r3, r3 +1fff1678: 2b02 cmp r3, #2 +1fff167a: d85e bhi.n 1fff173a +1fff167c: f04f 0900 mov.w r9, #0 +1fff1680: f04f 33ff mov.w r3, #4294967295 +1fff1684: 4a7c ldr r2, [pc, #496] ; (1fff1878 ) +1fff1686: 6033 str r3, [r6, #0] +1fff1688: 2300 movs r3, #0 +1fff168a: 6013 str r3, [r2, #0] +1fff168c: 4a7b ldr r2, [pc, #492] ; (1fff187c ) +1fff168e: 6013 str r3, [r2, #0] +1fff1690: b10f cbz r7, 1fff1696 +1fff1692: f000 f969 bl 1fff1968 <__SpicNVMCalLoadAll_veneer> +1fff1696: 4640 mov r0, r8 +1fff1698: 2100 movs r1, #0 +1fff169a: f7ff fee7 bl 1fff146c +1fff169e: f7ff fde3 bl 1fff1268 +1fff16a2: 6833 ldr r3, [r6, #0] +1fff16a4: 005b lsls r3, r3, #1 +1fff16a6: d502 bpl.n 1fff16ae +1fff16a8: 4875 ldr r0, [pc, #468] ; (1fff1880 ) +1fff16aa: 4b6e ldr r3, [pc, #440] ; (1fff1864 ) +1fff16ac: 4798 blx r3 +1fff16ae: b127 cbz r7, 1fff16ba +1fff16b0: f000 f94a bl 1fff1948 <__SpicReadIDRtl8195A_veneer> +1fff16b4: 2001 movs r0, #1 +1fff16b6: f000 f977 bl 1fff19a8 <__SpicFlashInitRtl8195A_veneer> +1fff16ba: f1b9 0f00 cmp.w r9, #0 +1fff16be: d001 beq.n 1fff16c4 +1fff16c0: f000 f94a bl 1fff1958 <__SdrControllerInit_veneer> +1fff16c4: 2c00 cmp r4, #0 +1fff16c6: f000 8115 beq.w 1fff18f4 +1fff16ca: 4b6e ldr r3, [pc, #440] ; (1fff1884 ) +1fff16cc: 681a ldr r2, [r3, #0] +1fff16ce: b292 uxth r2, r2 +1fff16d0: 0293 lsls r3, r2, #10 +1fff16d2: b912 cbnz r2, 1fff16da +1fff16d4: 4b6c ldr r3, [pc, #432] ; (1fff1888 ) +1fff16d6: 681b ldr r3, [r3, #0] +1fff16d8: 3320 adds r3, #32 +1fff16da: f103 4218 add.w r2, r3, #2550136832 ; 0x98000000 +1fff16de: 6815 ldr r5, [r2, #0] +1fff16e0: 486a ldr r0, [pc, #424] ; (1fff188c ) +1fff16e2: 6891 ldr r1, [r2, #8] +1fff16e4: 68d2 ldr r2, [r2, #12] +1fff16e6: 4281 cmp r1, r0 +1fff16e8: d106 bne.n 1fff16f8 +1fff16ea: 4969 ldr r1, [pc, #420] ; (1fff1890 ) +1fff16ec: 428a cmp r2, r1 +1fff16ee: d109 bne.n 1fff1704 +1fff16f0: 461c mov r4, r3 +1fff16f2: f04f 37ff mov.w r7, #4294967295 +1fff16f6: e00b b.n 1fff1710 +1fff16f8: 4c66 ldr r4, [pc, #408] ; (1fff1894 ) +1fff16fa: 42a1 cmp r1, r4 +1fff16fc: d102 bne.n 1fff1704 +1fff16fe: 4964 ldr r1, [pc, #400] ; (1fff1890 ) +1fff1700: 428a cmp r2, r1 +1fff1702: d002 beq.n 1fff170a +1fff1704: f04f 34ff mov.w r4, #4294967295 +1fff1708: e7f3 b.n 1fff16f2 +1fff170a: 461f mov r7, r3 +1fff170c: f04f 34ff mov.w r4, #4294967295 +1fff1710: 4a61 ldr r2, [pc, #388] ; (1fff1898 ) +1fff1712: f8d2 8000 ldr.w r8, [r2] +1fff1716: f1b8 3fff cmp.w r8, #4294967295 +1fff171a: d013 beq.n 1fff1744 +1fff171c: 442b add r3, r5 +1fff171e: 4598 cmp r8, r3 +1fff1720: d303 bcc.n 1fff172a +1fff1722: f3c8 030b ubfx r3, r8, #0, #12 +1fff1726: 2b00 cmp r3, #0 +1fff1728: d071 beq.n 1fff180e +1fff172a: 6833 ldr r3, [r6, #0] +1fff172c: 005d lsls r5, r3, #1 +1fff172e: d509 bpl.n 1fff1744 +1fff1730: 4641 mov r1, r8 +1fff1732: 4b4c ldr r3, [pc, #304] ; (1fff1864 ) +1fff1734: 4859 ldr r0, [pc, #356] ; (1fff189c ) +1fff1736: 4798 blx r3 +1fff1738: e004 b.n 1fff1744 +1fff173a: f000 f93d bl 1fff19b8 <__SdrCtrlInit_veneer> +1fff173e: f04f 0901 mov.w r9, #1 +1fff1742: e79d b.n 1fff1680 +1fff1744: f04f 38ff mov.w r8, #4294967295 +1fff1748: f7ff fec8 bl 1fff14dc +1fff174c: b118 cbz r0, 1fff1756 +1fff174e: 1c78 adds r0, r7, #1 +1fff1750: d10e bne.n 1fff1770 +1fff1752: 4625 mov r5, r4 +1fff1754: e002 b.n 1fff175c +1fff1756: 1c62 adds r2, r4, #1 +1fff1758: d16c bne.n 1fff1834 +1fff175a: 463d mov r5, r7 +1fff175c: 1c6b adds r3, r5, #1 +1fff175e: d108 bne.n 1fff1772 +1fff1760: 484f ldr r0, [pc, #316] ; (1fff18a0 ) +1fff1762: 4b40 ldr r3, [pc, #256] ; (1fff1864 ) +1fff1764: 4798 blx r3 +1fff1766: f44f 707a mov.w r0, #1000 ; 0x3e8 +1fff176a: 4b4e ldr r3, [pc, #312] ; (1fff18a4 ) +1fff176c: 4798 blx r3 +1fff176e: e7fa b.n 1fff1766 +1fff1770: 463d mov r5, r7 +1fff1772: 42bd cmp r5, r7 +1fff1774: d101 bne.n 1fff177a +1fff1776: 484c ldr r0, [pc, #304] ; (1fff18a8 ) +1fff1778: e002 b.n 1fff1780 +1fff177a: 42a5 cmp r5, r4 +1fff177c: d108 bne.n 1fff1790 +1fff177e: 484b ldr r0, [pc, #300] ; (1fff18ac ) +1fff1780: ebb5 0e08 subs.w lr, r5, r8 +1fff1784: f1de 0100 rsbs r1, lr, #0 +1fff1788: eb51 010e adcs.w r1, r1, lr +1fff178c: 4b35 ldr r3, [pc, #212] ; (1fff1864 ) +1fff178e: 4798 blx r3 +1fff1790: f105 4318 add.w r3, r5, #2550136832 ; 0x98000000 +1fff1794: 6832 ldr r2, [r6, #0] +1fff1796: 681c ldr r4, [r3, #0] +1fff1798: 685b ldr r3, [r3, #4] +1fff179a: 0057 lsls r7, r2, #1 +1fff179c: 9301 str r3, [sp, #4] +1fff179e: d504 bpl.n 1fff17aa +1fff17a0: 4843 ldr r0, [pc, #268] ; (1fff18b0 ) +1fff17a2: 4629 mov r1, r5 +1fff17a4: 4622 mov r2, r4 +1fff17a6: 4f2f ldr r7, [pc, #188] ; (1fff1864 ) +1fff17a8: 47b8 blx r7 +1fff17aa: f105 0110 add.w r1, r5, #16 +1fff17ae: 9a01 ldr r2, [sp, #4] +1fff17b0: 2301 movs r3, #1 +1fff17b2: 4620 mov r0, r4 +1fff17b4: 4425 add r5, r4 +1fff17b6: f000 f8bf bl 1fff1938 <__SpicUserReadFourByteRtl8195A_veneer> +1fff17ba: f105 4318 add.w r3, r5, #2550136832 ; 0x98000000 +1fff17be: 691f ldr r7, [r3, #16] +1fff17c0: 695a ldr r2, [r3, #20] +1fff17c2: 1e7b subs r3, r7, #1 +1fff17c4: 3303 adds r3, #3 +1fff17c6: 6833 ldr r3, [r6, #0] +1fff17c8: d802 bhi.n 1fff17d0 +1fff17ca: f1b2 5f40 cmp.w r2, #805306368 ; 0x30000000 +1fff17ce: d005 beq.n 1fff17dc +1fff17d0: 005d lsls r5, r3, #1 +1fff17d2: d575 bpl.n 1fff18c0 +1fff17d4: 4b23 ldr r3, [pc, #140] ; (1fff1864 ) +1fff17d6: 4837 ldr r0, [pc, #220] ; (1fff18b4 ) +1fff17d8: 4798 blx r3 +1fff17da: e071 b.n 1fff18c0 +1fff17dc: f1b9 0f00 cmp.w r9, #0 +1fff17e0: d106 bne.n 1fff17f0 +1fff17e2: 005c lsls r4, r3, #1 +1fff17e4: d400 bmi.n 1fff17e8 +1fff17e6: e7fe b.n 1fff17e6 +1fff17e8: 4b1e ldr r3, [pc, #120] ; (1fff1864 ) +1fff17ea: 4833 ldr r0, [pc, #204] ; (1fff18b8 ) +1fff17ec: 4798 blx r3 +1fff17ee: e7fa b.n 1fff17e6 +1fff17f0: 0058 lsls r0, r3, #1 +1fff17f2: d503 bpl.n 1fff17fc +1fff17f4: 4831 ldr r0, [pc, #196] ; (1fff18bc ) +1fff17f6: 4639 mov r1, r7 +1fff17f8: 4b1a ldr r3, [pc, #104] ; (1fff1864 ) +1fff17fa: 4798 blx r3 +1fff17fc: 4638 mov r0, r7 +1fff17fe: f105 0120 add.w r1, r5, #32 +1fff1802: f04f 5240 mov.w r2, #805306368 ; 0x30000000 +1fff1806: 2301 movs r3, #1 +1fff1808: f000 f8be bl 1fff1988 <__SpicUserReadRtl8195A_veneer> +1fff180c: e058 b.n 1fff18c0 +1fff180e: f108 4318 add.w r3, r8, #2550136832 ; 0x98000000 +1fff1812: 689a ldr r2, [r3, #8] +1fff1814: 68db ldr r3, [r3, #12] +1fff1816: 4282 cmp r2, r0 +1fff1818: d104 bne.n 1fff1824 +1fff181a: 4a1d ldr r2, [pc, #116] ; (1fff1890 ) +1fff181c: 4293 cmp r3, r2 +1fff181e: bf08 it eq +1fff1820: 4644 moveq r4, r8 +1fff1822: e791 b.n 1fff1748 +1fff1824: 491b ldr r1, [pc, #108] ; (1fff1894 ) +1fff1826: 428a cmp r2, r1 +1fff1828: d18e bne.n 1fff1748 +1fff182a: 4a19 ldr r2, [pc, #100] ; (1fff1890 ) +1fff182c: 4293 cmp r3, r2 +1fff182e: bf08 it eq +1fff1830: 4647 moveq r7, r8 +1fff1832: e789 b.n 1fff1748 +1fff1834: 4625 mov r5, r4 +1fff1836: e79c b.n 1fff1772 +1fff1838: 400000e8 .word 0x400000e8 +1fff183c: 000065f9 .word 0x000065f9 +1fff1840: 00002b39 .word 0x00002b39 +1fff1844: 40000210 .word 0x40000210 +1fff1848: 1006fffc .word 0x1006fffc +1fff184c: 0000f465 .word 0x0000f465 +1fff1850: 10006000 .word 0x10006000 +1fff1854: 10000314 .word 0x10000314 +1fff1858: 100494e2 .word 0x100494e2 +1fff185c: 100494e6 .word 0x100494e6 +1fff1860: 100494e9 .word 0x100494e9 +1fff1864: 0000f39d .word 0x0000f39d +1fff1868: 1fff11cc .word 0x1fff11cc +1fff186c: 1fff11cc .word 0x1fff11cc +1fff1870: 0000f511 .word 0x0000f511 +1fff1874: 00000899 .word 0x00000899 +1fff1878: 1000030c .word 0x1000030c +1fff187c: 10000310 .word 0x10000310 +1fff1880: 100494ff .word 0x100494ff +1fff1884: 98000018 .word 0x98000018 +1fff1888: 98000010 .word 0x98000010 +1fff188c: 35393138 .word 0x35393138 +1fff1890: 31313738 .word 0x31313738 +1fff1894: 35393130 .word 0x35393130 +1fff1898: 98009000 .word 0x98009000 +1fff189c: 1004951b .word 0x1004951b +1fff18a0: 10049533 .word 0x10049533 +1fff18a4: 0000edcd .word 0x0000edcd +1fff18a8: 10049543 .word 0x10049543 +1fff18ac: 10049556 .word 0x10049556 +1fff18b0: 10049569 .word 0x10049569 +1fff18b4: 100496c2 .word 0x100496c2 +1fff18b8: 1004959d .word 0x1004959d +1fff18bc: 100495c4 .word 0x100495c4 +1fff18c0: 6833 ldr r3, [r6, #0] +1fff18c2: 9d01 ldr r5, [sp, #4] +1fff18c4: 005b lsls r3, r3, #1 +1fff18c6: d504 bpl.n 1fff18d2 +1fff18c8: 4815 ldr r0, [pc, #84] ; (1fff1920 ) +1fff18ca: 1d29 adds r1, r5, #4 +1fff18cc: 682a ldr r2, [r5, #0] +1fff18ce: 4b15 ldr r3, [pc, #84] ; (1fff1924 ) +1fff18d0: 4798 blx r3 +1fff18d2: 9801 ldr r0, [sp, #4] +1fff18d4: 4914 ldr r1, [pc, #80] ; (1fff1928 ) +1fff18d6: 3004 adds r0, #4 +1fff18d8: 4b14 ldr r3, [pc, #80] ; (1fff192c ) +1fff18da: 4798 blx r3 +1fff18dc: b180 cbz r0, 1fff1900 +1fff18de: 6833 ldr r3, [r6, #0] +1fff18e0: 005a lsls r2, r3, #1 +1fff18e2: d502 bpl.n 1fff18ea +1fff18e4: 4812 ldr r0, [pc, #72] ; (1fff1930 ) +1fff18e6: 4b0f ldr r3, [pc, #60] ; (1fff1924 ) +1fff18e8: 4798 blx r3 +1fff18ea: f44f 707a mov.w r0, #1000 ; 0x3e8 +1fff18ee: 4b11 ldr r3, [pc, #68] ; (1fff1934 ) +1fff18f0: 4798 blx r3 +1fff18f2: e7f4 b.n 1fff18de +1fff18f4: 9801 ldr r0, [sp, #4] +1fff18f6: 490c ldr r1, [pc, #48] ; (1fff1928 ) +1fff18f8: 3004 adds r0, #4 +1fff18fa: 4b0c ldr r3, [pc, #48] ; (1fff192c ) +1fff18fc: 4798 blx r3 +1fff18fe: b940 cbnz r0, 1fff1912 +1fff1900: 682b ldr r3, [r5, #0] +1fff1902: 4798 blx r3 +1fff1904: b003 add sp, #12 +1fff1906: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1fff190a: f44f 707a mov.w r0, #1000 ; 0x3e8 +1fff190e: 4b09 ldr r3, [pc, #36] ; (1fff1934 ) +1fff1910: 4798 blx r3 +1fff1912: 6833 ldr r3, [r6, #0] +1fff1914: 0059 lsls r1, r3, #1 +1fff1916: d5f8 bpl.n 1fff190a +1fff1918: 4b02 ldr r3, [pc, #8] ; (1fff1924 ) +1fff191a: 4805 ldr r0, [pc, #20] ; (1fff1930 ) +1fff191c: 4798 blx r3 +1fff191e: e7f4 b.n 1fff190a +1fff1920: 100495ed .word 0x100495ed +1fff1924: 0000f39d .word 0x0000f39d +1fff1928: 10049493 .word 0x10049493 +1fff192c: 0000f6b1 .word 0x0000f6b1 +1fff1930: 1004949a .word 0x1004949a +1fff1934: 0000edcd .word 0x0000edcd + +1fff1938 <__SpicUserReadFourByteRtl8195A_veneer>: +1fff1938: b401 push {r0} +1fff193a: 4802 ldr r0, [pc, #8] ; (1fff1944 <__SpicUserReadFourByteRtl8195A_veneer+0xc>) +1fff193c: 4684 mov ip, r0 +1fff193e: bc01 pop {r0} +1fff1940: 4760 bx ip +1fff1942: bf00 nop +1fff1944: 100067b1 .word 0x100067b1 + +1fff1948 <__SpicReadIDRtl8195A_veneer>: +1fff1948: b401 push {r0} +1fff194a: 4802 ldr r0, [pc, #8] ; (1fff1954 <__SpicReadIDRtl8195A_veneer+0xc>) +1fff194c: 4684 mov ip, r0 +1fff194e: bc01 pop {r0} +1fff1950: 4760 bx ip +1fff1952: bf00 nop +1fff1954: 100064c9 .word 0x100064c9 + +1fff1958 <__SdrControllerInit_veneer>: +1fff1958: b401 push {r0} +1fff195a: 4802 ldr r0, [pc, #8] ; (1fff1964 <__SdrControllerInit_veneer+0xc>) +1fff195c: 4684 mov ip, r0 +1fff195e: bc01 pop {r0} +1fff1960: 4760 bx ip +1fff1962: bf00 nop +1fff1964: 10007d09 .word 0x10007d09 + +1fff1968 <__SpicNVMCalLoadAll_veneer>: +1fff1968: b401 push {r0} +1fff196a: 4802 ldr r0, [pc, #8] ; (1fff1974 <__SpicNVMCalLoadAll_veneer+0xc>) +1fff196c: 4684 mov ip, r0 +1fff196e: bc01 pop {r0} +1fff1970: 4760 bx ip +1fff1972: bf00 nop +1fff1974: 1000711d .word 0x1000711d + +1fff1978 <__SpicWaitWipRtl8195A_veneer>: +1fff1978: b401 push {r0} +1fff197a: 4802 ldr r0, [pc, #8] ; (1fff1984 <__SpicWaitWipRtl8195A_veneer+0xc>) +1fff197c: 4684 mov ip, r0 +1fff197e: bc01 pop {r0} +1fff1980: 4760 bx ip +1fff1982: bf00 nop +1fff1984: 10006e69 .word 0x10006e69 + +1fff1988 <__SpicUserReadRtl8195A_veneer>: +1fff1988: b401 push {r0} +1fff198a: 4802 ldr r0, [pc, #8] ; (1fff1994 <__SpicUserReadRtl8195A_veneer+0xc>) +1fff198c: 4684 mov ip, r0 +1fff198e: bc01 pop {r0} +1fff1990: 4760 bx ip +1fff1992: bf00 nop +1fff1994: 1000663d .word 0x1000663d + +1fff1998 <__SpicOneBitCalibrationRtl8195A_veneer>: +1fff1998: b401 push {r0} +1fff199a: 4802 ldr r0, [pc, #8] ; (1fff19a4 <__SpicOneBitCalibrationRtl8195A_veneer+0xc>) +1fff199c: 4684 mov ip, r0 +1fff199e: bc01 pop {r0} +1fff19a0: 4760 bx ip +1fff19a2: bf00 nop +1fff19a4: 10007589 .word 0x10007589 + +1fff19a8 <__SpicFlashInitRtl8195A_veneer>: +1fff19a8: b401 push {r0} +1fff19aa: 4802 ldr r0, [pc, #8] ; (1fff19b4 <__SpicFlashInitRtl8195A_veneer+0xc>) +1fff19ac: 4684 mov ip, r0 +1fff19ae: bc01 pop {r0} +1fff19b0: 4760 bx ip +1fff19b2: bf00 nop +1fff19b4: 100074dd .word 0x100074dd + +1fff19b8 <__SdrCtrlInit_veneer>: +1fff19b8: b401 push {r0} +1fff19ba: 4802 ldr r0, [pc, #8] ; (1fff19c4 <__SdrCtrlInit_veneer+0xc>) +1fff19bc: 4684 mov ip, r0 +1fff19be: bc01 pop {r0} +1fff19c0: 4760 bx ip +1fff19c2: bf00 nop +1fff19c4: 100075a1 .word 0x100075a1 + +Disassembly of section .ram_image2.text: + +10006038 : +10006038: 4b024a01 .word 0x4b024a01 +1000603c: 609a str r2, [r3, #8] +1000603e: 4770 .short 0x4770 +10006040: fca1 1001 stc2 0, cr1, [r1], #4 +10006044: 10000000 .word 0x10000000 + +10006048 : +10006048: 4b06 ldr r3, [pc, #24] ; (10006064 ) +1000604a: 681a .short 0x681a +1000604c: f022 6270 bic.w r2, r2, #251658240 ; 0xf000000 +10006050: 62c0f042 .word 0x62c0f042 +10006054: 601a str r2, [r3, #0] +10006056: 6c5a .short 0x6c5a +10006058: f022 0218 bic.w r2, r2, #24 +1000605c: 0208f042 .word 0x0208f042 +10006060: 645a str r2, [r3, #68] ; 0x44 +10006062: 4770 .short 0x4770 +10006064: 0020 movs r0, r4 +10006066: 4000 .short 0x4000 + +10006068 : +10006068: b538 push {r3, r4, r5, lr} +1000606a: 4a1d .short 0x4a1d +1000606c: 4b1d ldr r3, [pc, #116] ; (100060e4 ) +1000606e: 4d1e .short 0x4d1e +10006070: 609a str r2, [r3, #8] +10006072: 4b1e .short 0x4b1e +10006074: 681c ldr r4, [r3, #0] +10006076: f019 .short 0xf019 +10006078: fe51 f3c4 cdp2 3, 5, cr15, cr1, cr4, {6} +1000607c: b1281400 .word 0xb1281400 +10006080: 682b ldr r3, [r5, #0] +10006082: 005a .short 0x005a +10006084: d502 bpl.n 1000608c +10006086: 481a .short 0x481a +10006088: 4b1a ldr r3, [pc, #104] ; (100060f4 ) +1000608a: 4798 .short 0x4798 +1000608c: 682b ldr r3, [r5, #0] +1000608e: 005b .short 0x005b +10006090: d502 bpl.n 10006098 +10006092: 4819 .short 0x4819 +10006094: 4b17 ldr r3, [pc, #92] ; (100060f4 ) +10006096: 4798 .short 0x4798 +10006098: f01a fa6a bl 10020570 +1000609c: 4a184817 .word 0x4a184817 +100060a0: 2100 movs r1, #0 +100060a2: 1a12 .short 0x1a12 +100060a4: 4b17 ldr r3, [pc, #92] ; (10006104 ) +100060a6: 4798 .short 0x4798 +100060a8: b11c cbz r4, 100060b2 +100060aa: f001 .short 0xf001 +100060ac: f837 f000 pldw [r7, r0] +100060b0: f001fa0b .word 0xf001fa0b +100060b4: fe83 f7ff mcr2 7, 4, pc, cr3, cr15, {7} ; +100060b8: f017ffc7 .word 0xf017ffc7 +100060bc: fefd f01a mrc2 0, 7, pc, cr13, cr10, {0} +100060c0: f019f96d .word 0xf019f96d +100060c4: fe0d 4810 mcr2 8, 0, r4, cr13, cr0, {0} +100060c8: 4a114910 .word 0x4a114910 +100060cc: 4b11 ldr r3, [pc, #68] ; (10006114 ) +100060ce: 4798 .short 0x4798 +100060d0: b10c cbz r4, 100060d6 +100060d2: f000 .short 0xf000 +100060d4: ff8f e8bd ; instruction: 0xff8fe8bd +100060d8: f01a4038 .word 0xf01a4038 +100060dc: ba4b rev16 r3, r1 +100060de: bf00 .short 0xbf00 +100060e0: fca1 1001 stc2 0, cr1, [r1], #4 +100060e4: 10000000 .word 0x10000000 +100060e8: 0314 lsls r4, r2, #12 +100060ea: 1000 .short 0x1000 +100060ec: 0210 lsls r0, r2, #8 +100060ee: 4000 .short 0x4000 +100060f0: 9612 str r6, [sp, #72] ; 0x48 +100060f2: 1004 .short 0x1004 +100060f4: f39d 0000 ; instruction: 0xf39d0000 +100060f8: 1004962c .word 0x1004962c +100060fc: f19c 1004 ; instruction: 0xf19c1004 +10006100: 100589c4 .word 0x100589c4 +10006104: f511 0000 adds.w r0, r1, #8388608 ; 0x800000 +10006108: 1001ac9d .word 0x1001ac9d +1000610c: ad29 add r5, sp, #164 ; 0xa4 +1000610e: 1001 .short 0x1001 +10006110: ad6d add r5, sp, #436 ; 0x1b4 +10006112: 1001 .short 0x1001 +10006114: 4019 ands r1, r3 + ... + +10006118 : +10006118: 4b2fb570 .word 0x4b2fb570 +1000611c: 4798 blx r3 +1000611e: 4c2f .short 0x4c2f +10006120: 4605 mov r5, r0 +10006122: 2000 .short 0x2000 +10006124: 47a0 blx r4 +10006126: 4b2e .short 0x4b2e +10006128: 2000 movs r0, #0 +1000612a: 4798 .short 0x4798 +1000612c: 4603 mov r3, r0 +1000612e: b1b8 .short 0xb1b8 +10006130: 281b cmp r0, #27 +10006132: d018 .short 0xd018 +10006134: 4e2b ldr r6, [pc, #172] ; (100061e4 ) +10006136: 6831 .short 0x6831 +10006138: 78ca ldrb r2, [r1, #3] +1000613a: 2a01 .short 0x2a01 +1000613c: d02a beq.n 10006194 +1000613e: 78ca .short 0x78ca +10006140: 2a02 cmp r2, #2 +10006142: d01c .short 0xd01c +10006144: 2201 movs r2, #1 +10006146: 4b28 .short 0x4b28 +10006148: 4798 blx r3 +1000614a: 2802 .short 0x2802 +1000614c: d108 bne.n 10006160 +1000614e: 6830 .short 0x6830 +10006150: 6882 ldr r2, [r0, #8] +10006152: 2a00 .short 0x2a00 +10006154: d039 beq.n 100061ca +10006156: 2301 .short 0x2301 +10006158: 7103 strb r3, [r0, #4] +1000615a: 6a03 ldr r3, [r0, #32] +1000615c: 2b00 cmp r3, #0 +1000615e: d130 bne.n 100061c2 +10006160: 4628 mov r0, r5 +10006162: 47a0 .short 0x47a0 +10006164: bd70 pop {r4, r5, r6, pc} +10006166: 4b1f ldr r3, [pc, #124] ; (100061e4 ) +10006168: 795a681b .word 0x795a681b +1000616c: 2a01 cmp r2, #1 +1000616e: d019 .short 0xd019 +10006170: 2101 movs r1, #1 +10006172: 2200 movs r2, #0 +10006174: 7159 strb r1, [r3, #5] +10006176: 4628 mov r0, r5 +10006178: 47a070da .word 0x47a070da +1000617c: bd70 pop {r4, r5, r6, pc} +1000617e: f1a0 .short 0xf1a0 +10006180: 0341 lsls r1, r0, #13 +10006182: b2db uxtb r3, r3 +10006184: 2b012200 .word 0x2b012200 +10006188: 70ca strb r2, [r1, #3] +1000618a: d8e9 bhi.n 10006160 +1000618c: 2201 movs r2, #1 +1000618e: 4b17 ldr r3, [pc, #92] ; (100061ec ) +10006190: 4798 blx r3 +10006192: e7e5 .short 0xe7e5 +10006194: 285b cmp r0, #91 ; 0x5b +10006196: bf14 .short 0xbf14 +10006198: 2300 movne r3, #0 +1000619a: 2302 .short 0x2302 +1000619c: 70cb strb r3, [r1, #3] +1000619e: 4628 .short 0x4628 +100061a0: 47a0 blx r4 ; unpredictable branch in IT block + +100061a2: bd70 .short 0xbd70 +100061a4: 799a ldrb r2, [r3, #6] +100061a6: 2a01 cmpeq r2, #1 +100061a8: d005 beq.n 100061b6 +100061aa: 6a1a .short 0x6a1a +100061ac: 2a01 cmp r2, #1 +100061ae: d002 .short 0xd002 +100061b0: 2200 movs r2, #0 +100061b2: 70da .short 0x70da +100061b4: e7d4 b.n 10006160 +100061b6: 78da .short 0x78da +100061b8: 2a00 cmp r2, #0 +100061ba: d1d1 .short 0xd1d1 +100061bc: 2201 movs r2, #1 +100061be: 70da .short 0x70da +100061c0: e7ce b.n 10006160 +100061c2: 3024 .short 0x3024 +100061c4: f016 fd2c bl 1001cc20 +100061c8: e7ca b.n 10006160 +100061ca: 6880 .short 0x6880 +100061cc: 217f movs r1, #127 ; 0x7f +100061ce: 3001 .short 0x3001 +100061d0: 4b07 ldr r3, [pc, #28] ; (100061f0 ) +100061d2: 4798 .short 0x4798 +100061d4: e7c4 b.n 10006160 +100061d6: bf00 .short 0xbf00 +100061d8: 0329 lsls r1, r5, #12 +100061da: 0000 .short 0x0000 +100061dc: 0335 lsls r5, r6, #12 +100061de: 0000 .short 0x0000 +100061e0: 0309 lsls r1, r1, #12 +100061e2: 0000 .short 0x0000 +100061e4: 3a40 subs r2, #64 ; 0x40 +100061e6: 1004 .short 0x1004 +100061e8: eadd 0000 ; instruction: 0xeadd0000 +100061ec: 0000ea71 .word 0x0000ea71 +100061f0: e8b1 0000 ldmia.w r1!, {} + +100061f4 : +100061f4: 47f0e92d .word 0x47f0e92d +100061f8: 4c2f ldr r4, [pc, #188] ; (100062b8 ) +100061fa: 2500 .short 0x2500 +100061fc: 4689 mov r9, r1 +100061fe: 4692 .short 0x4692 +10006200: 4626 mov r6, r4 +10006202: 462a .short 0x462a +10006204: 4b2d ldr r3, [pc, #180] ; (100062bc ) +10006206: b084 .short 0xb084 +10006208: 4680 mov r8, r0 +1000620a: 217f .short 0x217f +1000620c: 1d60 adds r0, r4, #5 +1000620e: 4f2c .short 0x4f2c +10006210: f806 5f04 strb.w r5, [r6, #4]! +10006214: f1044798 .word 0xf1044798 +10006218: 03ac lsls r4, r5, #14 +1000621a: f104 0284 add.w r2, r4, #132 ; 0x84 +1000621e: f884 .short 0xf884 +10006220: 5084 str r4, [r0, r2] +10006222: 6022 .short 0x6022 +10006224: f884 5085 strb.w r5, [r4, #133] ; 0x85 +10006228: f884 5086 strb.w r5, [r4, #134] ; 0x86 +1000622c: f884 5087 strb.w r5, [r4, #135] ; 0x87 +10006230: 508af884 .word 0x508af884 +10006234: f8c4 608c str.w r6, [r4, #140] ; 0x8c +10006238: 509cf8c4 .word 0x509cf8c4 +1000623c: f8c4 30a0 str.w r3, [r4, #160] ; 0xa0 +10006240: f8c4 7090 str.w r7, [r4, #144] ; 0x90 +10006244: a094f8c4 .word 0xa094f8c4 +10006248: f8c4 9098 str.w r9, [r4, #152] ; 0x98 +1000624c: 50a4f8c4 .word 0x50a4f8c4 +10006250: f1b8 0f00 cmp.w r8, #0 +10006254: d108 bne.n 10006268 +10006256: f884 8088 strb.w r8, [r4, #136] ; 0x88 +1000625a: f884 .short 0xf884 +1000625c: 8089 strh r1, [r1, #4] +1000625e: 4819 ldr r0, [pc, #100] ; (100062c4 ) +10006260: 47b8 blx r7 +10006262: b004 add sp, #16 +10006264: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10006268: 2301 movs r3, #1 +1000626a: f104 00a8 add.w r0, r4, #168 ; 0xa8 +1000626e: 4629 .short 0x4629 +10006270: f884 5088 strb.w r5, [r4, #136] ; 0x88 +10006274: 3089f884 .word 0x3089f884 +10006278: f016 fcc0 bl 1001cbfc +1000627c: f44f6823 .word 0xf44f6823 +10006280: 7000 strb r0, [r0, #0] +10006282: 621d .short 0x621d +10006284: f017 f8aa bl 1001d3dc +10006288: b1904604 .word 0xb1904604 +1000628c: 2300 movs r3, #0 +1000628e: 2209 .short 0x2209 +10006290: e88d 001c stmia.w sp, {r2, r3, r4} +10006294: 9303 str r3, [sp, #12] +10006296: 480c ldr r0, [pc, #48] ; (100062c8 ) +10006298: 2280490c .word 0x2280490c +1000629c: f015 f9b2 bl 1001b604 +100062a0: d0dc2801 .word 0xd0dc2801 +100062a4: 480a ldr r0, [pc, #40] ; (100062d0 ) +100062a6: 47b8 .short 0x47b8 +100062a8: 4806 ldr r0, [pc, #24] ; (100062c4 ) +100062aa: 47b8 .short 0x47b8 +100062ac: b004 add sp, #16 +100062ae: e8bd .short 0xe8bd +100062b0: 87f0 strh r0, [r6, #62] ; 0x3e +100062b2: 4808 .short 0x4808 +100062b4: 47b8 blx r7 +100062b6: e7e9 b.n 1000628c +100062b8: 10043a40 .word 0x10043a40 +100062bc: e8b1 0000 ldmia.w r1!, {} +100062c0: 0000f39d .word 0x0000f39d +100062c4: 6014 str r4, [r2, #0] +100062c6: 1004 .short 0x1004 +100062c8: 62d9 str r1, [r3, #44] ; 0x2c +100062ca: 1000 .short 0x1000 +100062cc: 5fe8 ldrsh r0, [r5, r7] +100062ce: 1004 asrs r4, r0, #32 +100062d0: 10045ff8 .word 0x10045ff8 +100062d4: 5fc4 ldrsh r4, [r0, r7] +100062d6: 1004 .short 0x1004 + +100062d8 : +100062d8: b570 push {r4, r5, r6, lr} +100062da: 4c0b .short 0x4c0b +100062dc: f005 ffb2 bl 1000c244 +100062e0: 22016823 .word 0x22016823 +100062e4: 621a str r2, [r3, #32] +100062e6: 4626 .short 0x4626 +100062e8: 2500 movs r5, #0 +100062ea: f103 .short 0xf103 +100062ec: 0024 movs r4, r4 +100062ee: f016 .short 0xf016 +100062f0: fca9 6820 stc2 8, cr6, [r9], #128 ; 0x80 +100062f4: 46037902 .word 0x46037902 +100062f8: 2a00 cmp r2, #0 +100062fa: d0f6 beq.n 100062ea +100062fc: ffe8f005 .word 0xffe8f005 +10006300: 6833 ldr r3, [r6, #0] +10006302: 711d strb r5, [r3, #4] +10006304: bf00e7f1 .word 0xbf00e7f1 +10006308: 3a40 subs r2, #64 ; 0x40 +1000630a: 1004 asrs r4, r0, #32 + +1000630c : +1000630c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10006310: b087 sub sp, #28 +10006312: ab02 add r3, sp, #8 +10006314: e883 0006 stmia.w r3, {r1, r2} +10006318: 4b31 ldr r3, [pc, #196] ; (100063e0 ) +1000631a: 4680 .short 0x4680 +1000631c: 6818 ldr r0, [r3, #0] +1000631e: 4c31 ldr r4, [pc, #196] ; (100063e4 ) +10006320: 1002f3c0 .word 0x1002f3c0 +10006324: eb04 04c0 add.w r4, r4, r0, lsl #3 +10006328: 78e3 ldrb r3, [r4, #3] +1000632a: b923 cbnz r3, 10006336 +1000632c: 2101 movs r1, #1 +1000632e: aa04 add r2, sp, #16 +10006330: 4b2d ldr r3, [pc, #180] ; (100063e8 ) +10006332: 4798 blx r3 +10006334: ac04 add r4, sp, #16 +10006336: 4b2d ldr r3, [pc, #180] ; (100063ec ) +10006338: 681b ldr r3, [r3, #0] +1000633a: 04db lsls r3, r3, #19 +1000633c: d505 bpl.n 1000634a +1000633e: 482c ldr r0, [pc, #176] ; (100063f0 ) +10006340: 492c ldr r1, [pc, #176] ; (100063f4 ) +10006342: 4642 mov r2, r8 +10006344: 4623 mov r3, r4 +10006346: 4d2c ldr r5, [pc, #176] ; (100063f8 ) +10006348: 4f2c47a8 .word 0x4f2c47a8 +1000634c: 7862 ldrb r2, [r4, #1] +1000634e: f8d7 b000 ldr.w fp, [r7] +10006352: 4e2b .short 0x4e2b +10006354: ea4f 431b mov.w r3, fp, lsr #16 +10006358: 041b lsls r3, r3, #16 +1000635a: 4313 orrs r3, r2 +1000635c: 603b str r3, [r7, #0] +1000635e: f8d6 a000 ldr.w sl, [r6] +10006362: 7823 .short 0x7823 +10006364: ea4f 411a mov.w r1, sl, lsr #16 +10006368: 4d260409 .word 0x4d260409 +1000636c: 4319 orrs r1, r3 +1000636e: 6031 str r1, [r6, #0] +10006370: 9000f8d5 .word 0x9000f8d5 +10006374: 78a2 ldrb r2, [r4, #2] +10006376: f029 03ff bic.w r3, r9, #255 ; 0xff +1000637a: 4c23 .short 0x4c23 +1000637c: 4313 orrs r3, r2 +1000637e: 602b .short 0x602b +10006380: 4a22 ldr r2, [pc, #136] ; (1000640c ) +10006382: 2300 .short 0x2300 +10006384: 6023 str r3, [r4, #0] +10006386: 6811 .short 0x6811 +10006388: fa1f fb8b uxth.w fp, fp +1000638c: f421 2170 bic.w r1, r1, #983040 ; 0xf0000 +10006390: f421 7140 bic.w r1, r1, #768 ; 0x300 +10006394: 7140f441 .word 0x7140f441 +10006398: 6011 str r1, [r2, #0] +1000639a: f882 .short 0xf882 +1000639c: 8060 strh r0, [r4, #2] +1000639e: 2201 .short 0x2201 +100063a0: 6022 str r2, [r4, #0] +100063a2: 9301 str r3, [sp, #4] +100063a4: 47904a1a .word 0x47904a1a +100063a8: 9b01 ldr r3, [sp, #4] +100063aa: fa1f .short 0xfa1f +100063ac: fa8a 6023 ; instruction: 0xfa8a6023 +100063b0: 683a ldr r2, [r7, #0] +100063b2: fa5f f989 uxtb.w r9, r9 +100063b6: 0c12 lsrs r2, r2, #16 +100063b8: 0412 lsls r2, r2, #16 +100063ba: ea42 020b orr.w r2, r2, fp +100063be: 603a str r2, [r7, #0] +100063c0: 6833 ldr r3, [r6, #0] +100063c2: 0c1b lsrs r3, r3, #16 +100063c4: 041b lsls r3, r3, #16 +100063c6: ea43 030a orr.w r3, r3, sl +100063ca: 6033 str r3, [r6, #0] +100063cc: 682b ldr r3, [r5, #0] +100063ce: f023 .short 0xf023 +100063d0: 03ff lsls r7, r7, #15 +100063d2: ea43 0309 orr.w r3, r3, r9 +100063d6: 602b str r3, [r5, #0] +100063d8: b007 add sp, #28 +100063da: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100063de: bf00 nop +100063e0: 0014 movs r4, r2 +100063e2: 4000 ands r0, r0 +100063e4: f19c 1004 ; instruction: 0xf19c1004 +100063e8: 3081 adds r0, #129 ; 0x81 +100063ea: 0000 movs r0, r0 +100063ec: 0310 lsls r0, r2, #12 +100063ee: 1000 asrs r0, r0, #32 +100063f0: 98a5 ldr r0, [sp, #660] ; 0x294 +100063f2: 1004 asrs r4, r0, #32 +100063f4: 9c75 ldr r4, [sp, #468] ; 0x1d4 +100063f6: 1004 asrs r4, r0, #32 +100063f8: f39d 0000 ; instruction: 0xf39d0000 +100063fc: 611c str r4, [r3, #16] +100063fe: 4000 ands r0, r0 +10006400: 6014 str r4, [r2, #0] +10006402: 4000 ands r0, r0 +10006404: 40000300 .word 0x40000300 +10006408: 40006008 .word 0x40006008 +1000640c: 6000 str r0, [r0, #0] +1000640e: 4000 ands r0, r0 +10006410: 2ea5 cmp r6, #165 ; 0xa5 + ... + +10006414 : +10006414: b5374b24 .word 0xb5374b24 +10006418: 4605 mov r5, r0 +1000641a: 6818 ldr r0, [r3, #0] +1000641c: f3c02306 .word 0xf3c02306 +10006420: 1002 asrs r2, r0, #32 +10006422: fb03 0301 mla r3, r3, r1, r0 +10006426: 4a21 ldr r2, [pc, #132] ; (100064ac ) +10006428: 460c mov r4, r1 +1000642a: eb02 03c3 add.w r3, r2, r3, lsl #3 +1000642e: 78da .short 0x78da +10006430: b922 cbnz r2, 1000643c +10006432: 4b1f .short 0x4b1f +10006434: 2101 movs r1, #1 +10006436: 466a mov r2, sp +10006438: 4798 blx r3 +1000643a: 466b mov r3, sp +1000643c: 21004a1d .word 0x21004a1d +10006440: 6011 str r1, [r2, #0] +10006442: 2101 movs r1, #1 +10006444: 60d5 str r5, [r2, #12] +10006446: 6091 str r1, [r2, #8] +10006448: 491b ldr r1, [pc, #108] ; (100064b8 ) +1000644a: 7858 ldrb r0, [r3, #1] +1000644c: 2c01680a .word 0x2c01680a +10006450: ea4f 4212 mov.w r2, r2, lsr #16 +10006454: ea4f 4202 mov.w r2, r2, lsl #16 +10006458: ea40 0202 orr.w r2, r0, r2 +1000645c: 600a str r2, [r1, #0] +1000645e: 4a17 .short 0x4a17 +10006460: 7899 ldrb r1, [r3, #2] +10006462: 6810 .short 0x6810 +10006464: f020 03ff bic.w r3, r0, #255 ; 0xff +10006468: ea41 0303 orr.w r3, r1, r3 +1000646c: 6013 str r3, [r2, #0] +1000646e: 4b14 .short 0x4b14 +10006470: 0204f04f .word 0x0204f04f +10006474: 601a str r2, [r3, #0] +10006476: d00e .short 0xd00e +10006478: d308 bcc.n 1000648c +1000647a: 2c02 .short 0x2c02 +1000647c: d112 bne.n 100064a4 +1000647e: 4b11 ldr r3, [pc, #68] ; (100064c4 ) +10006480: 681a ldr r2, [r3, #0] +10006482: f422 127c bic.w r2, r2, #4128768 ; 0x3f0000 +10006486: f442 2220 orr.w r2, r2, #655360 ; 0xa0000 +1000648a: e00a b.n 100064a2 +1000648c: 4b0d ldr r3, [pc, #52] ; (100064c4 ) +1000648e: 681a .short 0x681a +10006490: f422 127c bic.w r2, r2, #4128768 ; 0x3f0000 +10006494: 4b0be005 .word 0x4b0be005 +10006498: 681a ldr r2, [r3, #0] +1000649a: f422 127c bic.w r2, r2, #4128768 ; 0x3f0000 +1000649e: f442 .short 0xf442 +100064a0: 22a0 movs r2, #160 ; 0xa0 +100064a2: 601a .short 0x601a +100064a4: b003 add sp, #12 +100064a6: bd30 pop {r4, r5, pc} +100064a8: 0014 movs r4, r2 +100064aa: 4000 .short 0x4000 +100064ac: f19c 1004 ; instruction: 0xf19c1004 +100064b0: 00003081 .word 0x00003081 +100064b4: 6008 str r0, [r1, #0] +100064b6: 4000 .short 0x4000 +100064b8: 4000611c .word 0x4000611c +100064bc: 0300 lsls r0, r0, #12 +100064be: 4000 .short 0x4000 +100064c0: 6004 str r4, [r0, #0] +100064c2: 4000 ands r0, r0 +100064c4: 40006000 .word 0x40006000 + +100064c8 : +100064c8: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +100064cc: 4b35 ldr r3, [pc, #212] ; (100065a4 ) +100064ce: 466d mov r5, sp +100064d0: 681b ldr r3, [r3, #0] +100064d2: f413 5f80 tst.w r3, #4096 ; 0x1000 +100064d6: d00e beq.n 100064f6 +100064d8: f88d2300 .word 0xf88d2300 +100064dc: 3004 adds r0, #4 +100064de: f88d 3005 strb.w r3, [sp, #5] +100064e2: f88d 3006 strb.w r3, [sp, #6] +100064e6: f88d 3007 strb.w r3, [sp, #7] +100064ea: 482f ldr r0, [pc, #188] ; (100065a8 ) +100064ec: 492f ldr r1, [pc, #188] ; (100065ac ) +100064ee: e89d .short 0xe89d +100064f0: 000c movs r4, r1 +100064f2: 4c2f .short 0x4c2f +100064f4: 47a0 blx r4 +100064f6: 4b2f ldr r3, [pc, #188] ; (100065b4 ) +100064f8: 4f2f ldr r7, [pc, #188] ; (100065b8 ) +100064fa: 2600 movs r6, #0 +100064fc: 2203 movs r2, #3 +100064fe: 603e str r6, [r7, #0] +10006500: 601a str r2, [r3, #0] +10006502: f88d 6004 strb.w r6, [sp, #4] +10006506: f88d 6005 strb.w r6, [sp, #5] +1000650a: f88d .short 0xf88d +1000650c: 6006 str r6, [r0, #0] +1000650e: f88d 6007 strb.w r6, [sp, #7] +10006512: e895 0006 ldmia.w r5, {r1, r2} +10006516: 209f movs r0, #159 ; 0x9f +10006518: f7ff fef8 bl 1000630c +1000651c: 4b27 ldr r3, [pc, #156] ; (100065bc ) +1000651e: 4634 mov r4, r6 +10006520: 681b ldr r3, [r3, #0] +10006522: b2dd .short 0xb2dd +10006524: f3c3 2907 ubfx r9, r3, #8, #8 +10006528: f3c3 4807 ubfx r8, r3, #16, #8 +1000652c: 1e6b subs r3, r5, #1 +1000652e: b2db uxtb r3, r3 +10006530: 2bfd cmp r3, #253 ; 0xfd +10006532: d810 bhi.n 10006556 +10006534: 2d20 cmp r5, #32 +10006536: d01b .short 0xd01b +10006538: 2dc2 cmp r5, #194 ; 0xc2 +1000653a: d105 .short 0xd105 +1000653c: f1b8 0f18 cmp.w r8, #24 +10006540: bf14 ite ne +10006542: 2401 movne r4, #1 +10006544: 2402 moveq r4, #2 +10006546: e016 b.n 10006576 +10006548: d0132def .word 0xd0132def +1000654c: 2d1c cmp r5, #28 +1000654e: bf14 .short 0xbf14 +10006550: 2400 movne r4, #0 +10006552: 2405 .short 0x2405 +10006554: e00f b.n 10006576 ; unpredictable branch in IT block + +10006556: 2e02 .short 0x2e02 +10006558: d106 bne.n 10006568 +1000655a: 4b19 .short 0x4b19 +1000655c: 681b ldr r3, [r3, #0] +1000655e: 005b lsleq r3, r3, #1 +10006560: 4818d502 .word 0x4818d502 +10006564: 4b12 ldr r3, [pc, #72] ; (100065b0 ) +10006566: 4798 .short 0x4798 +10006568: 3601 adds r6, #1 +1000656a: 2e03 .short 0x2e03 +1000656c: d1de bne.n 1000652c +1000656e: e002 .short 0xe002 +10006570: 2404 movs r4, #4 +10006572: e000 .short 0xe000 +10006574: 2403 movs r4, #3 +10006576: 4b14 .short 0x4b14 +10006578: f103 0190 add.w r1, r3, #144 ; 0x90 +1000657c: 0230f103 .word 0x0230f103 +10006580: f803 5c01 strb.w r5, [r3, #-1] +10006584: 9000f883 .word 0x9000f883 +10006588: f883 8001 strb.w r8, [r3, #1] +1000658c: 3308709c .word 0x3308709c +10006590: 4293 cmp r3, r2 +10006592: d1f5 .short 0xd1f5 +10006594: 428b cmp r3, r1 +10006596: d1f1 .short 0xd1f1 +10006598: 2300 movs r3, #0 +1000659a: 603b str r3, [r7, #0] +1000659c: b003 add sp, #12 +1000659e: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100065a2: bf00 nop +100065a4: 10000310 .word 0x10000310 +100065a8: 94b5 str r4, [sp, #724] ; 0x2d4 +100065aa: 1004 .short 0x1004 +100065ac: 9c62 ldr r4, [sp, #392] ; 0x188 +100065ae: 1004 .short 0x1004 +100065b0: f39d 0000 ; instruction: 0xf39d0000 +100065b4: 40006004 .word 0x40006004 +100065b8: 6008 str r0, [r1, #0] +100065ba: 4000 .short 0x4000 +100065bc: 6060 str r0, [r4, #4] +100065be: 4000 .short 0x4000 +100065c0: 0314 lsls r4, r2, #12 +100065c2: 1000 asrs r0, r0, #32 +100065c4: 98c0 ldr r0, [sp, #768] ; 0x300 +100065c6: 1004 .short 0x1004 +100065c8: f1a1 1004 sub.w r0, r1, #262148 ; 0x40004 + +100065cc : +100065cc: 22004b17 .word 0x22004b17 +100065d0: 601a str r2, [r3, #0] +100065d2: f503 738c add.w r3, r3, #280 ; 0x118 +100065d6: 681a ldr r2, [r3, #0] +100065d8: 2801 cmp r0, #1 +100065da: f422 72ff bic.w r2, r2, #510 ; 0x1fe +100065de: 601a str r2, [r3, #0] +100065e0: d10b bne.n 100065fa +100065e2: 4a13 ldr r2, [pc, #76] ; (10006630 ) +100065e4: 21a2 movs r1, #162 ; 0xa2 +100065e6: 6011 str r1, [r2, #0] +100065e8: 213b movs r1, #59 ; 0x3b +100065ea: f842 1c14 str.w r1, [r2, #-20] +100065ee: 681a ldr r2, [r3, #0] +100065f0: f442 7200 orr.w r2, r2, #512 ; 0x200 +100065f4: f042 0202 orr.w r2, r2, #2 +100065f8: e016 b.n 10006628 +100065fa: 2802 cmp r0, #2 +100065fc: d115 bne.n 1000662a +100065fe: 4a0d ldr r2, [pc, #52] ; (10006634 ) +10006600: 2138 movs r1, #56 ; 0x38 +10006602: 6011 .short 0x6011 +10006604: 21eb movs r1, #235 ; 0xeb +10006606: f842 1c14 str.w r1, [r2, #-20] +1000660a: 2132 .short 0x2132 +1000660c: f842 1c04 str.w r1, [r2, #-4] +10006610: f842216b .word 0xf842216b +10006614: 1c18 adds r0, r3, #0 +10006616: 4a08 .short 0x4a08 +10006618: 79d2 ldrb r2, [r2, #7] +1000661a: 2a02 .short 0x2a02 +1000661c: 681a ldr r2, [r3, #0] +1000661e: bf0c .short 0xbf0c +10006620: f442 7202 orreq.w r2, r2, #520 ; 0x208 +10006624: 7204f442 .word 0x7204f442 +10006628: 601a str r2, [r3, #0] +1000662a: 4770 bxne lr +1000662c: 6008 str r0, [r1, #0] +1000662e: 4000 .short 0x4000 +10006630: 60fc str r4, [r7, #12] +10006632: 4000 ands r0, r0 +10006634: 6104 str r4, [r0, #16] +10006636: 4000 ands r0, r0 +10006638: 1004f19c .word 0x1004f19c + +1000663c : +1000663c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10006640: 48544604 .word 0x48544604 +10006644: 4690 mov r8, r2 +10006646: 2200 .short 0x2200 +10006648: 6002 str r2, [r0, #0] +1000664a: 4a53 .short 0x4a53 +1000664c: f011 0703 ands.w r7, r1, #3 +10006650: bf18460d .word 0xbf18460d +10006654: ebc7 0501 rsbne r5, r7, r1 +10006658: 2b016811 .word 0x2b016811 +1000665c: f421 2170 bic.w r1, r1, #983040 ; 0xf0000 +10006660: 7140f421 .word 0x7140f421 +10006664: f441 7140 orr.w r1, r1, #768 ; 0x300 +10006668: b0856011 .word 0xb0856011 +1000666c: 4682 mov sl, r0 +1000666e: 6813 .short 0x6813 +10006670: d105 bne.n 1000667e +10006672: f443 .short 0xf443 +10006674: 2380 movs r3, #128 ; 0x80 +10006676: 6013 .short 0x6013 +10006678: f04f 0b3b mov.w fp, #59 ; 0x3b +1000667c: 6013e002 .word 0x6013e002 +10006680: f04f 0b03 mov.w fp, #3 +10006684: 2307f3c5 .word 0x2307f3c5 +10006688: f3c5 4107 ubfx r1, r5, #16, #8 +1000668c: ea43041b .word 0xea43041b +10006690: 2101 movs r1, #1 +10006692: ea41 .short 0xea41 +10006694: 6105 str r5, [r0, #16] +10006696: ea41 .short 0xea41 +10006698: 010b lsls r3, r1, #4 +1000669a: f8df .short 0xf8df +1000669c: 9110 str r1, [sp, #64] ; 0x40 +1000669e: b127 .short 0xb127 +100066a0: 2c20 cmp r4, #32 +100066a2: d904 .short 0xd904 +100066a4: f107 031c add.w r3, r7, #28 +100066a8: 2c20e005 .word 0x2c20e005 +100066ac: d802 bhi.n 100066b4 +100066ae: f8c9 4000 str.w r4, [r9] +100066b2: e002 .short 0xe002 +100066b4: 2320 movs r3, #32 +100066b6: f8c9 3000 str.w r3, [r9] +100066ba: 4b38 ldr r3, [pc, #224] ; (1000679c ) +100066bc: 601a2203 .word 0x601a2203 +100066c0: 4a37 ldr r2, [pc, #220] ; (100067a0 ) +100066c2: 2301 .short 0x2301 +100066c4: 6013 str r3, [r2, #0] +100066c6: 4e37 ldr r6, [pc, #220] ; (100067a4 ) +100066c8: 6511 str r1, [r2, #80] ; 0x50 +100066ca: 3250 .short 0x3250 +100066cc: f8ca 3000 str.w r3, [sl] +100066d0: 47b09200 .word 0x47b09200 +100066d4: 9a00 ldr r2, [sp, #0] +100066d6: 4631 mov r1, r6 +100066d8: b1af cbz r7, 10006706 +100066da: 6813 ldr r3, [r2, #0] +100066dc: 4646 mov r6, r8 +100066de: 9303 .short 0x9303 +100066e0: ebc8 0306 rsb r3, r8, r6 +100066e4: b2db uxtb r3, r3 +100066e6: f1c7 .short 0xf1c7 +100066e8: 0004 movs r4, r0 +100066ea: 4283 .short 0x4283 +100066ec: d207 bcs.n 100066fe +100066ee: a804 add r0, sp, #16 +100066f0: 44034438 .word 0x44034438 +100066f4: f813 3c04 ldrb.w r3, [r3, #-4] +100066f8: f806 3b01 strb.w r3, [r6], #1 +100066fc: e7f0 b.n 100066e0 +100066fe: 3c04 subs r4, #4 +10006700: 443c add r4, r7 +10006702: b2ff uxtb r7, r7 +10006704: e007 b.n 10006716 +10006706: 4646 mov r6, r8 +10006708: f846e005 .word 0xf846e005 +1000670c: 3b04 subs r3, #4 +1000670e: 3704 adds r7, #4 +10006710: 3c04 subs r4, #4 +10006712: b2ff uxtb r7, r7 +10006714: 46b0 mov r8, r6 +10006716: 2c00 .short 0x2c00 +10006718: d033 beq.n 10006782 +1000671a: 2f1c .short 0x2f1c +1000671c: dd1f ble.n 1000675e +1000671e: 443d add r5, r7 +10006720: 4007f3c5 .word 0x4007f3c5 +10006724: ea4b 6305 orr.w r3, fp, r5, lsl #24 +10006728: ea43 2300 orr.w r3, r3, r0, lsl #8 +1000672c: f3c5 2007 ubfx r0, r5, #8, #8 +10006730: 2c1f cmp r4, #31 +10006732: ea43 .short 0xea43 +10006734: 4300 orrs r0, r0 +10006736: f04f 0000 mov.w r0, #0 +1000673a: f8ca 0000 str.w r0, [sl] +1000673e: bf8a .short 0xbf8a +10006740: 2020 movhi r0, #32 +10006742: f8c9 .short 0xf8c9 +10006744: 4000 andhi r0, r0 +10006746: f8c9 0000 str.w r0, [r9] +1000674a: 6013 str r3, [r2, #0] +1000674c: 2301 movs r3, #1 +1000674e: f8ca 3000 str.w r3, [sl] +10006752: 9101 str r1, [sp, #4] +10006754: 9200 str r2, [sp, #0] +10006756: 4788 blx r1 +10006758: 9a00 ldr r2, [sp, #0] +1000675a: 9901 ldr r1, [sp, #4] +1000675c: 2700 movs r7, #0 +1000675e: 6813 ldr r3, [r2, #0] +10006760: 2c03 cmp r4, #3 +10006762: 9303 str r3, [sp, #12] +10006764: d8d1 bhi.n 1000670a +10006766: 4646 mov r6, r8 +10006768: ebc8 0306 rsb r3, r8, r6 +1000676c: b2db uxtb r3, r3 +1000676e: 42a3 cmp r3, r4 +10006770: d206 bcs.n 10006780 +10006772: aa04 add r2, sp, #16 +10006774: 4413 add r3, r2 +10006776: f813 3c04 ldrb.w r3, [r3, #-4] +1000677a: f806 3b01 strb.w r3, [r6], #1 +1000677e: e7f3 b.n 10006768 +10006780: 2400 movs r4, #0 +10006782: 4b09 ldr r3, [pc, #36] ; (100067a8 ) +10006784: 2201 movs r2, #1 +10006786: f8ca 4000 str.w r4, [sl] +1000678a: 601a str r2, [r3, #0] +1000678c: b005 add sp, #20 +1000678e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10006792: bf00 nop +10006794: 6008 str r0, [r1, #0] +10006796: 4000 ands r0, r0 +10006798: 6000 str r0, [r0, #0] +1000679a: 4000 ands r0, r0 +1000679c: 6118 str r0, [r3, #16] +1000679e: 4000 ands r0, r0 +100067a0: 6010 str r0, [r2, #0] +100067a2: 4000 ands r0, r0 +100067a4: 2ea5 cmp r6, #165 ; 0xa5 +100067a6: 0000 movs r0, r0 +100067a8: 6128 str r0, [r5, #16] +100067aa: 4000 ands r0, r0 +100067ac: 6004 str r4, [r0, #0] +100067ae: 4000 ands r0, r0 + +100067b0 : +100067b0: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100067b4: 4606 mov r6, r0 +100067b6: 460d mov r5, r1 +100067b8: f3c1 4007 ubfx r0, r1, #16, #8 +100067bc: f3c1 2707 ubfx r7, r1, #8, #8 +100067c0: 4939 ldr r1, [pc, #228] ; (100068a8 ) +100067c2: 4c3a .short 0x4c3a +100067c4: 4691 mov r9, r2 +100067c6: 2200 movs r2, #0 +100067c8: 600a str r2, [r1, #0] +100067ca: 6822 ldr r2, [r4, #0] +100067cc: f4222b01 .word 0xf4222b01 +100067d0: 2270 movs r2, #112 ; 0x70 +100067d2: f422 7240 bic.w r2, r2, #768 ; 0x300 +100067d6: f442 7240 orr.w r2, r2, #768 ; 0x300 +100067da: 6022 .short 0x6022 +100067dc: 4688 mov r8, r1 +100067de: d105 bne.n 100067ec +100067e0: 6823 ldr r3, [r4, #0] +100067e2: f443 2380 orr.w r3, r3, #262144 ; 0x40000 +100067e6: 6023 .short 0x6023 +100067e8: 243b movs r4, #59 ; 0x3b +100067ea: e012 b.n 10006812 +100067ec: b91b cbnz r3, 100067f6 +100067ee: 6823 ldr r3, [r4, #0] +100067f0: 6023 str r3, [r4, #0] +100067f2: 2403 .short 0x2403 +100067f4: e00d b.n 10006812 +100067f6: 4b2e ldr r3, [pc, #184] ; (100068b0 ) +100067f8: 2b0279db .word 0x2b0279db +100067fc: 6823 ldr r3, [r4, #0] +100067fe: d104 bne.n 1000680a +10006800: f443 2300 orr.w r3, r3, #524288 ; 0x80000 +10006804: 6023 str r3, [r4, #0] +10006806: 246b .short 0x246b +10006808: e003 b.n 10006812 +1000680a: f443 2320 orr.w r3, r3, #655360 ; 0xa0000 +1000680e: 6023 str r3, [r4, #0] +10006810: 24eb movs r4, #235 ; 0xeb +10006812: 2e1f .short 0x2e1f +10006814: ea4f 4207 mov.w r2, r7, lsl #16 +10006818: bf844f26 .word 0xbf844f26 +1000681c: 2320 movhi r3, #32 +1000681e: 603b strhi r3, [r7, #0] +10006820: 4b25 ldr r3, [pc, #148] ; (100068b8 ) +10006822: ea42 2200 orr.w r2, r2, r0, lsl #8 +10006826: f04f 0103 mov.w r1, #3 +1000682a: bf98 it ls +1000682c: 603e strls r6, [r7, #0] +1000682e: ea42 .short 0xea42 +10006830: 6205 str r5, [r0, #32] +10006832: 6019 .short 0x6019 +10006834: f8df a08c ldr.w sl, [pc, #140] ; 100068c4 +10006838: 23014920 .word 0x23014920 +1000683c: 4322 orrs r2, r4 +1000683e: 600b str r3, [r1, #0] +10006840: b084f8df .word 0xb084f8df +10006844: f8ca 2000 str.w r2, [sl] +10006848: f8c8 3000 str.w r3, [r8] +1000684c: 47d8 blx fp +1000684e: 2300 .short 0x2300 +10006850: b326 cbz r6, 1000689c +10006852: 2b20 cmp r3, #32 +10006854: d11b bne.n 1000688e +10006856: 3520 adds r5, #32 +10006858: f3c5 4107 ubfx r1, r5, #16, #8 +1000685c: 6205ea44 .word 0x6205ea44 +10006860: ea42 2201 orr.w r2, r2, r1, lsl #8 +10006864: 2107f3c5 .word 0x2107f3c5 +10006868: ea42 4201 orr.w r2, r2, r1, lsl #16 +1000686c: 2e1f cmp r6, #31 +1000686e: f04f 0100 mov.w r1, #0 +10006872: f8c8 .short 0xf8c8 +10006874: 1000 asrs r0, r0, #32 +10006876: bf88 .short 0xbf88 +10006878: 603b strhi r3, [r7, #0] +1000687a: f04f .short 0xf04f +1000687c: 0301 lsls r1, r0, #12 +1000687e: bf98 it ls +10006880: f8ca603e .word 0xf8ca603e +10006884: 2000 movs r0, #0 +10006886: f8c8 3000 strls.w r3, [r8] +1000688a: 47d8 blx fp +1000688c: f8da2300 .word 0xf8da2300 +10006890: 2000 movs r0, #0 +10006892: 3304 .short 0x3304 +10006894: f849 2b04 str.w r2, [r9], #4 +10006898: e7d93e04 .word 0xe7d93e04 +1000689c: 4b08 ldr r3, [pc, #32] ; (100068c0 ) +1000689e: 2201 .short 0x2201 +100068a0: 601a str r2, [r3, #0] +100068a2: e8bd .short 0xe8bd +100068a4: 8ff8 ldrh r0, [r7, #62] ; 0x3e +100068a6: bf00 .short 0xbf00 +100068a8: 6008 str r0, [r1, #0] +100068aa: 4000 .short 0x4000 +100068ac: 6000 str r0, [r0, #0] +100068ae: 4000 ands r0, r0 +100068b0: f19c 1004 ; instruction: 0xf19c1004 +100068b4: 40006004 .word 0x40006004 +100068b8: 6118 str r0, [r3, #16] +100068ba: 4000 .short 0x4000 +100068bc: 6010 str r0, [r2, #0] +100068be: 4000 .short 0x4000 +100068c0: 6128 str r0, [r5, #16] +100068c2: 4000 .short 0x4000 +100068c4: 6060 str r0, [r4, #4] +100068c6: 4000 .short 0x4000 +100068c8: 2ea5 cmp r6, #165 ; 0xa5 + ... + +100068cc : +100068cc: 4b0eb573 .word 0x4b0eb573 +100068d0: 681b466c .word 0x681b466c +100068d4: e88d 0003 stmia.w sp, {r0, r1} +100068d8: d50504db .word 0xd50504db +100068dc: 480b ldr r0, [pc, #44] ; (1000690c ) +100068de: 490c .short 0x490c +100068e0: e89d 000c ldmia.w sp, {r2, r3} +100068e4: 47a84d0b .word 0x47a84d0b +100068e8: 4d0b ldr r5, [pc, #44] ; (10006918 ) +100068ea: 4b0c .short 0x4b0c +100068ec: 2600 movs r6, #0 +100068ee: 2201 .short 0x2201 +100068f0: 602e str r6, [r5, #0] +100068f2: 601a .short 0x601a +100068f4: 20c8 movs r0, #200 ; 0xc8 +100068f6: e894 .short 0xe894 +100068f8: 0006 movs r6, r0 +100068fa: f7ff .short 0xf7ff +100068fc: fd07 4b08 stc2 11, cr4, [r7, #-32] ; 0xffffffe0 +10006900: 602e7818 .word 0x602e7818 +10006904: b002 add sp, #8 +10006906: bd70 .short 0xbd70 +10006908: 0310 lsls r0, r2, #12 +1000690a: 1000 .short 0x1000 +1000690c: 94b5 str r4, [sp, #724] ; 0x2d4 +1000690e: 1004 .short 0x1004 +10006910: 988b ldr r0, [sp, #556] ; 0x22c +10006912: 1004 .short 0x1004 +10006914: f39d 0000 ; instruction: 0xf39d0000 +10006918: 40006008 .word 0x40006008 +1000691c: 6004 str r4, [r0, #0] +1000691e: 4000 .short 0x4000 +10006920: 6060 str r0, [r4, #4] +10006922: 4000 .short 0x4000 + +10006924 : +10006924: b573 push {r0, r1, r4, r5, r6, lr} +10006926: 4b0e .short 0x4b0e +10006928: 466c mov r4, sp +1000692a: 681b ldr r3, [r3, #0] +1000692c: e88d 0003 stmia.w sp, {r0, r1} +10006930: d50504db .word 0xd50504db +10006934: 480b ldr r0, [pc, #44] ; (10006964 ) +10006936: 490c .short 0x490c +10006938: e89d 000c ldmia.w sp, {r2, r3} +1000693c: 47a84d0b .word 0x47a84d0b +10006940: 4d0b ldr r5, [pc, #44] ; (10006970 ) +10006942: 4b0c .short 0x4b0c +10006944: 2600 movs r6, #0 +10006946: 2201 .short 0x2201 +10006948: 602e str r6, [r5, #0] +1000694a: 601a .short 0x601a +1000694c: 2015 movs r0, #21 +1000694e: e894 .short 0xe894 +10006950: 0006 movs r6, r0 +10006952: f7ff .short 0xf7ff +10006954: fcdb 4b08 ldc2l 11, cr4, [fp], {8} +10006958: 602e7818 .word 0x602e7818 +1000695c: b002 add sp, #8 +1000695e: bd70 .short 0xbd70 +10006960: 0310 lsls r0, r2, #12 +10006962: 1000 .short 0x1000 +10006964: 94b5 str r4, [sp, #724] ; 0x2d4 +10006966: 1004 .short 0x1004 +10006968: 9821 ldr r0, [sp, #132] ; 0x84 +1000696a: 1004 .short 0x1004 +1000696c: f39d 0000 ; instruction: 0xf39d0000 +10006970: 40006008 .word 0x40006008 +10006974: 6004 str r4, [r0, #0] +10006976: 4000 ands r0, r0 +10006978: 40006060 .word 0x40006060 + +1000697c : +1000697c: b573 push {r0, r1, r4, r5, r6, lr} +1000697e: 4b0e ldr r3, [pc, #56] ; (100069b8 ) +10006980: 681b466c .word 0x681b466c +10006984: e88d 0003 stmia.w sp, {r0, r1} +10006988: 04db lsls r3, r3, #19 +1000698a: d505 bpl.n 10006998 +1000698c: 480b ldr r0, [pc, #44] ; (100069bc ) +1000698e: 490c ldr r1, [pc, #48] ; (100069c0 ) +10006990: e89d 000c ldmia.w sp, {r2, r3} +10006994: 4d0b ldr r5, [pc, #44] ; (100069c4 ) +10006996: 47a8 .short 0x47a8 +10006998: 4d0b ldr r5, [pc, #44] ; (100069c8 ) +1000699a: 4b0c ldr r3, [pc, #48] ; (100069cc ) +1000699c: 2600 movs r6, #0 +1000699e: 2201 movs r2, #1 +100069a0: 601a602e .word 0x601a602e +100069a4: 2005 movs r0, #5 +100069a6: e894 0006 ldmia.w r4, {r1, r2} +100069aa: f7ff .short 0xf7ff +100069ac: fcaf 4b08 stc2 11, cr4, [pc], #32 ; 100069d0 +100069b0: 7818 ldrb r0, [r3, #0] +100069b2: 602e .short 0x602e +100069b4: b002 add sp, #8 +100069b6: bd70 pop {r4, r5, r6, pc} +100069b8: 0310 lsls r0, r2, #12 +100069ba: 1000 asrs r0, r0, #32 +100069bc: 94b5 str r4, [sp, #724] ; 0x2d4 +100069be: 1004 .short 0x1004 +100069c0: 9c40 ldr r4, [sp, #256] ; 0x100 +100069c2: 1004 asrs r4, r0, #32 +100069c4: 0000f39d .word 0x0000f39d +100069c8: 6008 str r0, [r1, #0] +100069ca: 4000 ands r0, r0 +100069cc: 6004 str r4, [r0, #0] +100069ce: 4000 ands r0, r0 +100069d0: 40006060 .word 0x40006060 + +100069d4 : +100069d4: b537 push {r0, r1, r2, r4, r5, lr} +100069d6: 4b0a ldr r3, [pc, #40] ; (10006a00 ) +100069d8: 466c mov r4, sp +100069da: 681b .short 0x681b +100069dc: 0003e88d .word 0x0003e88d +100069e0: 04da lsls r2, r3, #19 +100069e2: d505 .short 0xd505 +100069e4: 4807 ldr r0, [pc, #28] ; (10006a04 ) +100069e6: 4908 .short 0x4908 +100069e8: e89d 000c ldmia.w sp, {r2, r3} +100069ec: 4d07 ldr r5, [pc, #28] ; (10006a0c ) +100069ee: 47a8 .short 0x47a8 +100069f0: 0003e894 .word 0x0003e894 +100069f4: f7ff ffc2 bl 1000697c +100069f8: 07c3 lsls r3, r0, #31 +100069fa: d4f9 .short 0xd4f9 +100069fc: bd30b003 .word 0xbd30b003 +10006a00: 0310 lsls r0, r2, #12 +10006a02: 1000 asrs r0, r0, #32 +10006a04: 94b5 str r4, [sp, #724] ; 0x2d4 +10006a06: 1004 asrs r4, r0, #32 +10006a08: 9802 ldr r0, [sp, #8] +10006a0a: 1004 asrs r4, r0, #32 +10006a0c: f39d 0000 ; instruction: 0xf39d0000 + +10006a10 : +10006a10: b082 sub sp, #8 +10006a12: b5f0 push {r4, r5, r6, r7, lr} +10006a14: b085 sub sp, #20 +10006a16: 930b str r3, [sp, #44] ; 0x2c +10006a18: 4b27 ldr r3, [pc, #156] ; (10006ab8 ) +10006a1a: 4615 mov r5, r2 +10006a1c: 681b ldr r3, [r3, #0] +10006a1e: 4606 .short 0x4606 +10006a20: 04da lsls r2, r3, #19 +10006a22: 460c mov r4, r1 +10006a24: d50d bpl.n 10006a42 +10006a26: 466b mov r3, sp +10006a28: f843 5b04 str.w r5, [r3], #4 +10006a2c: e892aa0b .word 0xe892aa0b +10006a30: 0003 movs r3, r0 +10006a32: 4f22 ldr r7, [pc, #136] ; (10006abc ) +10006a34: e883 0003 stmia.w r3, {r0, r1} +10006a38: 4632 mov r2, r6 +10006a3a: 4821 .short 0x4821 +10006a3c: 4921 ldr r1, [pc, #132] ; (10006ac4 ) +10006a3e: 4623 .short 0x4623 +10006a40: 47b8 blx r7 +10006a42: 4b21 ldr r3, [pc, #132] ; (10006ac8 ) +10006a44: 2200 movs r2, #0 +10006a46: 2c0f .short 0x2c0f +10006a48: 601a str r2, [r3, #0] +10006a4a: 461f .short 0x461f +10006a4c: d908 bls.n 10006a60 +10006a4e: 4b1f ldr r3, [pc, #124] ; (10006acc ) +10006a50: 04db681b .word 0x04db681b +10006a54: d503 bpl.n 10006a5e +10006a56: 481e .short 0x481e +10006a58: 4621 mov r1, r4 +10006a5a: 4b18 ldr r3, [pc, #96] ; (10006abc ) +10006a5c: 4798 blx r3 +10006a5e: 240f .short 0x240f +10006a60: 4b1c ldr r3, [pc, #112] ; (10006ad4 ) +10006a62: 4a1d ldr r2, [pc, #116] ; (10006ad8 ) +10006a64: 6813601c .word 0x6813601c +10006a68: 3260 adds r2, #96 ; 0x60 +10006a6a: f423 .short 0xf423 +10006a6c: 2370 movs r3, #112 ; 0x70 +10006a6e: f423 .short 0xf423 +10006a70: 7340 strb r0, [r0, #13] +10006a72: f842 .short 0xf842 +10006a74: 3c60 subs r4, #96 ; 0x60 +10006a76: 7016 .short 0x7016 +10006a78: 2300 movs r3, #0 +10006a7a: b2d9 uxtb r1, r3 +10006a7c: 42a1 cmp r1, r4 +10006a7e: d203 .short 0xd203 +10006a80: 33015ce9 .word 0x33015ce9 +10006a84: 7011 strb r1, [r2, #0] +10006a86: e7f8 b.n 10006a7a +10006a88: 2301 movs r3, #1 +10006a8a: 603b str r3, [r7, #0] +10006a8c: 4b13 ldr r3, [pc, #76] ; (10006adc ) +10006a8e: 4798 .short 0x4798 +10006a90: 79db4b13 .word 0x79db4b13 +10006a94: 2b04 cmp r3, #4 +10006a96: ab0b add r3, sp, #44 ; 0x2c +10006a98: e893 0003 ldmia.w r3, {r0, r1} +10006a9c: d105 bne.n 10006aaa +10006a9e: b005 add sp, #20 +10006aa0: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +10006aa4: b002 add sp, #8 +10006aa6: f000 b863 b.w 10006b70 +10006aaa: b005 add sp, #20 +10006aac: 40f0e8bd .word 0x40f0e8bd +10006ab0: f7ffb002 .word 0xf7ffb002 +10006ab4: bf8f iteee hi +10006ab6: bf00 nophi +10006ab8: 0310 lslls r0, r2, #12 +10006aba: 1000 .short 0x1000 +10006abc: f39d 0000 ; instruction: 0xf39d0000 +10006ac0: 98cd ldrls r0, [sp, #820] ; 0x334 +10006ac2: 1004 asrls r4, r0, #32 +10006ac4: 10049871 .word 0x10049871 +10006ac8: 6008 str r0, [r1, #0] +10006aca: 4000 ands r0, r0 +10006acc: 1000030c .word 0x1000030c +10006ad0: 98f4 ldr r0, [sp, #976] ; 0x3d0 +10006ad2: 1004 .short 0x1004 +10006ad4: 6118 str r0, [r3, #16] +10006ad6: 4000 .short 0x4000 +10006ad8: 6000 str r0, [r0, #0] +10006ada: 4000 ands r0, r0 +10006adc: 2ea5 cmp r6, #165 ; 0xa5 +10006ade: 0000 movs r0, r0 +10006ae0: 1004f19c .word 0x1004f19c + +10006ae4 : +10006ae4: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +10006ae6: 4b19 .short 0x4b19 +10006ae8: ac02 add r4, sp, #8 +10006aea: 681b .short 0x681b +10006aec: e884 0003 stmia.w r4, {r0, r1} +10006af0: d50504d8 .word 0xd50504d8 +10006af4: 4816 ldr r0, [pc, #88] ; (10006b50 ) +10006af6: 4917 .short 0x4917 +10006af8: e894 000c ldmia.w r4, {r2, r3} +10006afc: 47a84d16 .word 0x47a84d16 +10006b00: 4b16 ldr r3, [pc, #88] ; (10006b5c ) +10006b02: 4d17 ldr r5, [pc, #92] ; (10006b60 ) +10006b04: 22012600 .word 0x22012600 +10006b08: 602e str r6, [r5, #0] +10006b0a: 601a str r2, [r3, #0] +10006b0c: e894 0006 ldmia.w r4, {r1, r2} +10006b10: 2070 movs r0, #112 ; 0x70 +10006b12: f7ff .short 0xf7ff +10006b14: fbfb 4b13 ; instruction: 0xfbfb4b13 +10006b18: 781c ldrb r4, [r3, #0] +10006b1a: 602e str r6, [r5, #0] +10006b1c: b2e4 uxtb r4, r4 +10006b1e: 07a1 lsls r1, r4, #30 +10006b20: d510 bpl.n 10006b44 +10006b22: 0622 lsls r2, r4, #24 +10006b24: d506 bpl.n 10006b34 +10006b26: 4b10 ldr r3, [pc, #64] ; (10006b68 ) +10006b28: 681b ldr r3, [r3, #0] +10006b2a: 04db lsls r3, r3, #19 +10006b2c: d502 bpl.n 10006b34 +10006b2e: 480f ldr r0, [pc, #60] ; (10006b6c ) +10006b30: 4b09 ldr r3, [pc, #36] ; (10006b58 ) +10006b32: 4798 blx r3 +10006b34: 21009b03 .word 0x21009b03 +10006b38: 20509300 .word 0x20509300 +10006b3c: 9b02 ldr r3, [sp, #8] +10006b3e: 460a .short 0x460a +10006b40: f7ff ff66 bl 10006a10 +10006b44: b0044620 .word 0xb0044620 +10006b48: bf00bd70 .word 0xbf00bd70 +10006b4c: 0310 lsls r0, r2, #12 +10006b4e: 1000 asrs r0, r0, #32 +10006b50: 100494b5 .word 0x100494b5 +10006b54: 9858 ldr r0, [sp, #352] ; 0x160 +10006b56: 1004 asrs r4, r0, #32 +10006b58: f39d 0000 ; instruction: 0xf39d0000 +10006b5c: 6004 str r4, [r0, #0] +10006b5e: 4000 ands r0, r0 +10006b60: 40006008 .word 0x40006008 +10006b64: 6060 str r0, [r4, #4] +10006b66: 4000 .short 0x4000 +10006b68: 030c lsls r4, r1, #12 +10006b6a: 1000 .short 0x1000 +10006b6c: 9930 ldr r1, [sp, #192] ; 0xc0 +10006b6e: 1004 asrs r4, r0, #32 + +10006b70 : +10006b70: 4b0ab537 .word 0x4b0ab537 +10006b74: 466c mov r4, sp +10006b76: 681b ldr r3, [r3, #0] +10006b78: e88d 0003 stmia.w sp, {r0, r1} +10006b7c: 04da lsls r2, r3, #19 +10006b7e: d505 bpl.n 10006b8c +10006b80: 4807 ldr r0, [pc, #28] ; (10006ba0 ) +10006b82: 4908 ldr r1, [pc, #32] ; (10006ba4 ) +10006b84: e89d 000c ldmia.w sp, {r2, r3} +10006b88: 4d07 ldr r5, [pc, #28] ; (10006ba8 ) +10006b8a: 47a8 blx r5 +10006b8c: e894 0003 ldmia.w r4, {r0, r1} +10006b90: f7ff ffa8 bl 10006ae4 +10006b94: d5f90603 .word 0xd5f90603 +10006b98: b003 add sp, #12 +10006b9a: bd30 pop {r4, r5, pc} +10006b9c: 0310 lsls r0, r2, #12 +10006b9e: 1000 asrs r0, r0, #32 +10006ba0: 94b5 str r4, [sp, #724] ; 0x2d4 +10006ba2: 1004 asrs r4, r0, #32 +10006ba4: 1004983a .word 0x1004983a +10006ba8: 0000f39d .word 0x0000f39d + +10006bac : +10006bac: 4b18 ldr r3, [pc, #96] ; (10006c10 ) +10006bae: b507 push {r0, r1, r2, lr} +10006bb0: 681b ldr r3, [r3, #0] +10006bb2: 019a lsls r2, r3, #6 +10006bb4: d528 bpl.n 10006c08 +10006bb6: 4b17 ldr r3, [pc, #92] ; (10006c14 ) +10006bb8: 681b ldr r3, [r3, #0] +10006bba: f3c3 1303 ubfx r3, r3, #4, #4 +10006bbe: 2b01 cmp r3, #1 +10006bc0: 4b15d922 .word 0x4b15d922 +10006bc4: 681a ldr r2, [r3, #0] +10006bc6: f042 .short 0xf042 +10006bc8: 0201 lsls r1, r0, #8 +10006bca: 601a str r2, [r3, #0] +10006bcc: ab02 add r3, sp, #8 +10006bce: e913 .short 0xe913 +10006bd0: 0003 movs r3, r0 +10006bd2: f7ff .short 0xf7ff +10006bd4: feff 4b11 mrc2 11, 7, r4, cr15, cr1, {0} +10006bd8: 681b ldr r3, [r3, #0] +10006bda: 005b lsls r3, r3, #1 +10006bdc: d502 bpl.n 10006be4 +10006bde: 4810 ldr r0, [pc, #64] ; (10006c20 ) +10006be0: 4b10 ldr r3, [pc, #64] ; (10006c24 ) +10006be2: 4798 blx r3 +10006be4: 4a10 ldr r2, [pc, #64] ; (10006c28 ) +10006be6: 4911 ldr r1, [pc, #68] ; (10006c2c ) +10006be8: 60132300 .word 0x60132300 +10006bec: 680b ldr r3, [r1, #0] +10006bee: 2014 movs r0, #20 +10006bf0: f423 2370 bic.w r3, r3, #983040 ; 0xf0000 +10006bf4: f423 7340 bic.w r3, r3, #768 ; 0x300 +10006bf8: 600b str r3, [r1, #0] +10006bfa: 4b0d ldr r3, [pc, #52] ; (10006c30 ) +10006bfc: 21b9 movs r1, #185 ; 0xb9 +10006bfe: 7019 .short 0x7019 +10006c00: 2301 movs r3, #1 +10006c02: 6013 str r3, [r2, #0] +10006c04: 4b0b ldr r3, [pc, #44] ; (10006c34 ) +10006c06: 4798 blx r3 +10006c08: b003 add sp, #12 +10006c0a: f85d fb04 ldr.w pc, [sp], #4 +10006c0e: bf00 nop +10006c10: 0038 movs r0, r7 +10006c12: 4000 ands r0, r0 +10006c14: 01f0 lsls r0, r6, #7 +10006c16: 4000 ands r0, r0 +10006c18: 02c0 lsls r0, r0, #11 +10006c1a: 4000 ands r0, r0 +10006c1c: 0314 lsls r4, r2, #12 +10006c1e: 1000 asrs r0, r0, #32 +10006c20: 9968 ldr r1, [sp, #416] ; 0x1a0 +10006c22: 1004 asrs r4, r0, #32 +10006c24: f39d 0000 ; instruction: 0xf39d0000 +10006c28: 6008 str r0, [r1, #0] +10006c2a: 4000 ands r0, r0 +10006c2c: 6000 str r0, [r0, #0] +10006c2e: 4000 .short 0x4000 +10006c30: 6060 str r0, [r4, #4] +10006c32: 4000 ands r0, r0 +10006c34: 0899 lsrs r1, r3, #2 + ... + +10006c38 : +10006c38: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10006c3c: b087 sub sp, #28 +10006c3e: ae02 .short 0xae02 +10006c40: e886 0006 stmia.w r6, {r1, r2} +10006c44: 4605 mov r5, r0 +10006c46: 2200 movs r2, #0 +10006c48: 92049810 .word 0x92049810 +10006c4c: 9205 str r2, [sp, #20] +10006c4e: f013 02ff ands.w r2, r3, #255 ; 0xff +10006c52: 6801 ldr r1, [r0, #0] +10006c54: d007 beq.n 10006c66 +10006c56: 29ff .short 0x29ff +10006c58: d802 bhi.n 10006c60 +10006c5a: 188c .short 0x188c +10006c5c: 2cff cmp r4, #255 ; 0xff +10006c5e: d909 .short 0xd909 +10006c60: f5c2 7280 rsb r2, r2, #256 ; 0x100 +10006c64: e007 b.n 10006c76 +10006c66: f5b1 7f80 cmp.w r1, #256 ; 0x100 +10006c6a: bf34 .short 0xbf34 +10006c6c: 460a movcc r2, r1 +10006c6e: f44f 7280 movcs.w r2, #256 ; 0x100 +10006c72: e000 b.n 10006c76 +10006c74: 460a mov r2, r1 +10006c76: 1a89 subs r1, r1, r2 +10006c78: f013 0a03 ands.w sl, r3, #3 +10006c7c: 6001 str r1, [r0, #0] +10006c7e: d01c beq.n 10006cba +10006c80: fa5f f08a uxtb.w r0, sl +10006c84: 1a1b subs r3, r3, r0 +10006c86: f103 4118 add.w r1, r3, #2550136832 ; 0x98000000 +10006c8a: 6809 ldr r1, [r1, #0] +10006c8c: ac06 add r4, sp, #24 +10006c8e: f844 1d08 str.w r1, [r4, #-8]! +10006c92: f1c0 0a04 rsb sl, r0, #4 +10006c96: 4420 add r0, r4 +10006c98: fa5f fa8a uxtb.w sl, sl +10006c9c: 38014629 .word 0x38014629 +10006ca0: 4614 mov r4, r2 +10006ca2: f811 7b01 ldrb.w r7, [r1], #1 +10006ca6: 3c01 subs r4, #1 +10006ca8: f800 7f01 strb.w r7, [r0, #1]! +10006cac: 468b mov fp, r1 +10006cae: d013 beq.n 10006cd8 +10006cb0: 1b17 subs r7, r2, r4 +10006cb2: b2ff uxtb r7, r7 +10006cb4: 4557 cmp r7, sl +10006cb6: d3f4 bcc.n 10006ca2 +10006cb8: e00e b.n 10006cd8 +10006cba: 2a03 .short 0x2a03 +10006cbc: d90a bls.n 10006cd4 +10006cbe: 78a9 ldrb r1, [r5, #2] +10006cc0: 04097868 .word 0x04097868 +10006cc4: ea41 2100 orr.w r1, r1, r0, lsl #8 +10006cc8: 43017828 .word 0x43017828 +10006ccc: ea4178e8 .word 0xea4178e8 +10006cd0: 6100 str r0, [r0, #16] +10006cd2: 9104 .short 0x9104 +10006cd4: 46ab mov fp, r5 +10006cd6: 4614 mov r4, r2 +10006cd8: f014 0103 ands.w r1, r4, #3 +10006cdc: 191ad01f .word 0x191ad01f +10006ce0: b2c9 uxtb r1, r1 +10006ce2: f102 .short 0xf102 +10006ce4: 4218 tst r0, r3 +10006ce6: f1ba 0f00 cmp.w sl, #0 +10006cea: d000 beq.n 10006cee +10006cec: 3204 adds r2, #4 +10006cee: 1a52 subs r2, r2, r1 +10006cf0: 6812 ldr r2, [r2, #0] +10006cf2: 2000 movs r0, #0 +10006cf4: 1a629205 .word 0x1a629205 +10006cf8: b2c24493 .word 0xb2c24493 +10006cfc: 428a cmp r2, r1 +10006cfe: d205 bcs.n 10006d0c +10006d00: f81b 7000 ldrb.w r7, [fp, r0] +10006d04: aa05 add r2, sp, #20 +10006d06: 5487 strb r7, [r0, r2] +10006d08: 3001 adds r0, #1 +10006d0a: e7f6 b.n 10006cfa +10006d0c: 448b add fp, r1 +10006d0e: f1ba .short 0xf1ba +10006d10: 0f00 lsrs r0, r0, #28 +10006d12: d104 bne.n 10006d1e +10006d14: 2c03 cmp r4, #3 +10006d16: d802 bhi.n 10006d1e +10006d18: 46549a05 .word 0x46549a05 +10006d1c: 9204 str r2, [sp, #16] +10006d1e: ea4f 6803 mov.w r8, r3, lsl #24 +10006d22: f3c3 4207 ubfx r2, r3, #16, #8 +10006d26: f048 0802 orr.w r8, r8, #2 +10006d2a: ea48 2802 orr.w r8, r8, r2, lsl #8 +10006d2e: f3c3 2307 ubfx r3, r3, #8, #8 +10006d32: 4f48 ldr r7, [pc, #288] ; (10006e54 ) +10006d34: ea48 4803 orr.w r8, r8, r3, lsl #16 +10006d38: 21009b03 .word 0x21009b03 +10006d3c: f8d7 9000 ldr.w r9, [r7] +10006d40: 460a mov r2, r1 +10006d42: 9300 str r3, [sp, #0] +10006d44: 2006 movs r0, #6 +10006d46: 9b02 .short 0x9b02 +10006d48: f7ff fe62 bl 10006a10 +10006d4c: 4a42 ldr r2, [pc, #264] ; (10006e58 ) +10006d4e: 2300 movs r3, #0 +10006d50: 6013 str r3, [r2, #0] +10006d52: 4b42 ldr r3, [pc, #264] ; (10006e5c ) +10006d54: 6819 ldr r1, [r3, #0] +10006d56: f421 7140 bic.w r1, r1, #768 ; 0x300 +10006d5a: 6019 str r1, [r3, #0] +10006d5c: 2303 movs r3, #3 +10006d5e: 603b .short 0x603b +10006d60: 4b3f ldr r3, [pc, #252] ; (10006e60 ) +10006d62: f8c3 .short 0xf8c3 +10006d64: 8000 strh r0, [r0, #0] +10006d66: 9904 ldr r1, [sp, #16] +10006d68: 46b8 mov r8, r7 +10006d6a: 6019 .short 0x6019 +10006d6c: 4617 mov r7, r2 +10006d6e: 469e .short 0x469e +10006d70: f1ba 0f00 cmp.w sl, #0 +10006d74: d105 bne.n 10006d82 +10006d76: 2c03 .short 0x2c03 +10006d78: d905 bls.n 10006d86 +10006d7a: f105 .short 0xf105 +10006d7c: 0b04 lsrs r4, r0, #12 +10006d7e: 3c04 .short 0x3c04 +10006d80: e001 b.n 10006d86 +10006d82: eb05 0b0a add.w fp, r5, sl +10006d86: 465a mov r2, fp +10006d88: f10b 0104 add.w r1, fp, #4 +10006d8c: 0518f10b .word 0x0518f10b +10006d90: 2c04 cmp r4, #4 +10006d92: 4613 .short 0x4613 +10006d94: d921 bls.n 10006dda +10006d96: f012 .short 0xf012 +10006d98: 0f03 lsrs r3, r0, #28 +10006d9a: f1a4 0404 sub.w r4, r4, #4 +10006d9e: d010 .short 0xd010 +10006da0: 7893 ldrb r3, [r2, #2] +10006da2: 7850 .short 0x7850 +10006da4: 041b lsls r3, r3, #16 +10006da6: ea43 2300 orr.w r3, r3, r0, lsl #8 +10006daa: f811 0c04 ldrb.w r0, [r1, #-4] +10006dae: 4303 .short 0x4303 +10006db0: 78d0 ldrb r0, [r2, #3] +10006db2: ea43 6300 orr.w r3, r3, r0, lsl #24 +10006db6: 9304 str r3, [sp, #16] +10006db8: 4620 mov r0, r4 +10006dba: f8ce 3000 str.w r3, [lr] +10006dbe: 460b mov r3, r1 +10006dc0: e005 b.n 10006dce +10006dc2: f851 0c04 ldr.w r0, [r1, #-4] +10006dc6: 460b mov r3, r1 +10006dc8: 0000f8ce .word 0x0000f8ce +10006dcc: 4620 mov r0, r4 +10006dce: 3204 .short 0x3204 +10006dd0: 42aa cmp r2, r5 +10006dd2: f101 .short 0xf101 +10006dd4: 0104 lsls r4, r0, #4 +10006dd6: d1db .short 0xd1db +10006dd8: 4620e000 .word 0x4620e000 +10006ddc: 2201 movs r2, #1 +10006dde: f013 .short 0xf013 +10006de0: 0f03 lsrs r3, r0, #28 +10006de2: 603a .short 0x603a +10006de4: eb03 0200 add.w r2, r3, r0 +10006de8: 1ad1d012 .word 0x1ad1d012 +10006dec: 2903 cmp r1, #3 +10006dee: d917 .short 0xd917 +10006df0: 785c7899 .word 0x785c7899 +10006df4: 0409 lsls r1, r1, #16 +10006df6: ea41 .short 0xea41 +10006df8: 2104 movs r1, #4 +10006dfa: 781c ldrb r4, [r3, #0] +10006dfc: 3304 adds r3, #4 +10006dfe: 4321 orrs r1, r4 +10006e00: f813 4c01 ldrb.w r4, [r3, #-1] +10006e04: 6104ea41 .word 0x6104ea41 +10006e08: 9104 str r1, [sp, #16] +10006e0a: f8ce 1000 str.w r1, [lr] +10006e0e: e7ec .short 0xe7ec +10006e10: 1ad1 subs r1, r2, r3 +10006e12: 2903 .short 0x2903 +10006e14: d904 bls.n 10006e20 +10006e16: f853 1b04 ldr.w r1, [r3], #4 +10006e1a: f8ce .short 0xf8ce +10006e1c: 1000 asrs r0, r0, #32 +10006e1e: e7f7 b.n 10006e10 +10006e20: 0003f000 .word 0x0003f000 +10006e24: b110 cbz r0, 10006e2c +10006e26: 9b05 ldr r3, [sp, #20] +10006e28: f8ce 3000 str.w r3, [lr] +10006e2c: 4b0d ldr r3, [pc, #52] ; (10006e64 ) +10006e2e: 4798 blx r3 +10006e30: e896 0003 ldmia.w r6, {r0, r1} +10006e34: f89d 300f ldrb.w r3, [sp, #15] +10006e38: d1022b04 .word 0xd1022b04 +10006e3c: f7ff fe98 bl 10006b70 +10006e40: e001 b.n 10006e46 +10006e42: f7ff .short 0xf7ff +10006e44: fdc7 2300 stc2l 3, cr2, [r7] +10006e48: f8c8603b .word 0xf8c8603b +10006e4c: 9000 str r0, [sp, #0] +10006e4e: b007 add sp, #28 +10006e50: 8ff0e8bd .word 0x8ff0e8bd +10006e54: 6118 str r0, [r3, #16] +10006e56: 4000 ands r0, r0 +10006e58: 6008 str r0, [r1, #0] +10006e5a: 4000 ands r0, r0 +10006e5c: 6000 str r0, [r0, #0] +10006e5e: 4000 ands r0, r0 +10006e60: 6060 str r0, [r4, #4] +10006e62: 4000 .short 0x4000 +10006e64: 2ea5 cmp r6, #165 ; 0xa5 + ... + +10006e68 : +10006e68: ab02b507 .word 0xab02b507 +10006e6c: e913 0003 ldmdb r3, {r0, r1} +10006e70: f7ff fdb0 bl 100069d4 +10006e74: 2001 movs r0, #1 +10006e76: b003 .short 0xb003 +10006e78: f85d fb04 ldr.w pc, [sp], #4 + +10006e7c : +10006e7c: e92d 41d0 stmdb sp!, {r4, r6, r7, r8, lr} +10006e80: b085 sub sp, #20 +10006e82: ac02 .short 0xac02 +10006e84: 4680 mov r8, r0 +10006e86: 460f .short 0x460f +10006e88: e894 0003 ldmia.w r4, {r0, r1} +10006e8c: 4616 mov r6, r2 +10006e8e: f7ff .short 0xf7ff +10006e90: fda1 4b1b stc2 11, cr4, [r1, #108]! ; 0x6c +10006e94: 005a681b .word 0x005a681b +10006e98: d502 bpl.n 10006ea0 +10006e9a: 481a .short 0x481a +10006e9c: 4b1a ldr r3, [pc, #104] ; (10006f08 ) +10006e9e: 4798 blx r3 +10006ea0: e894 0003 ldmia.w r4, {r0, r1} +10006ea4: fd6af7ff .word 0xfd6af7ff +10006ea8: 9b03 ldr r3, [sp, #12] +10006eaa: f000 0002 and.w r0, r0, #2 +10006eae: 9300 str r3, [sp, #0] +10006eb0: 01fff000 .word 0x01fff000 +10006eb4: 9b02 ldr r3, [sp, #8] +10006eb6: b920 cbnz r0, 10006ec2 +10006eb8: 2006 movs r0, #6 +10006eba: 460a .short 0x460a +10006ebc: f7ff fda8 bl 10006a10 +10006ec0: 4640e7ee .word 0x4640e7ee +10006ec4: 4639 mov r1, r7 +10006ec6: 4632 mov r2, r6 +10006ec8: fda2f7ff .word 0xfda2f7ff +10006ecc: 4b0f ldr r3, [pc, #60] ; (10006f0c ) +10006ece: 79db ldrb r3, [r3, #7] +10006ed0: 2b04 cmp r3, #4 +10006ed2: d104 .short 0xd104 +10006ed4: e894 0003 ldmia.w r4, {r0, r1} +10006ed8: fe4af7ff .word 0xfe4af7ff +10006edc: e00c b.n 10006ef8 +10006ede: 2b05 cmp r3, #5 +10006ee0: d104 bne.n 10006eec +10006ee2: e894 .short 0xe894 +10006ee4: 0003 movs r3, r0 +10006ee6: f7ff .short 0xf7ff +10006ee8: fd75 e005 ldc2l 0, cr14, [r5, #-20]! ; 0xffffffec +10006eec: 0003e894 .word 0x0003e894 +10006ef0: f7ff fd44 bl 1000697c +10006ef4: d4f90783 .word 0xd4f90783 +10006ef8: b005 add sp, #20 +10006efa: e8bd .short 0xe8bd +10006efc: 81d0 strh r0, [r2, #14] +10006efe: bf00 .short 0xbf00 +10006f00: 0314 lsls r4, r2, #12 +10006f02: 1000 .short 0x1000 +10006f04: b9ec cbnz r4, 10006f42 +10006f06: 1004 .short 0x1004 +10006f08: f39d 0000 ; instruction: 0xf39d0000 +10006f0c: f19c 1004 ; instruction: 0xf19c1004 + +10006f10 : +10006f10: 20c72100 .word 0x20c72100 +10006f14: 460a mov r2, r1 +10006f16: f7ff bfb1 b.w 10006e7c + +10006f1a : +10006f1a: b507 push {r0, r1, r2, lr} +10006f1c: 0c03 lsrs r3, r0, #16 +10006f1e: f88d 3004 strb.w r3, [sp, #4] +10006f22: f88d 0006 strb.w r0, [sp, #6] +10006f26: 0a03 lsrs r3, r0, #8 +10006f28: 20c42103 .word 0x20c42103 +10006f2c: aa01 add r2, sp, #4 +10006f2e: f88d 3005 strb.w r3, [sp, #5] +10006f32: f7ff .short 0xf7ff +10006f34: ffa3 b003 vaddl.u32 , d3, d3 +10006f38: f85d fb04 ldr.w pc, [sp], #4 + +10006f3c : +10006f3c: b507 push {r0, r1, r2, lr} +10006f3e: 0c03 .short 0x0c03 +10006f40: f88d 3004 strb.w r3, [sp, #4] +10006f44: f88d 0006 strb.w r0, [sp, #6] +10006f48: 0a03 lsrs r3, r0, #8 +10006f4a: 2103 movs r1, #3 +10006f4c: 20d8 movs r0, #216 ; 0xd8 +10006f4e: aa01 add r2, sp, #4 +10006f50: f88d 3005 strb.w r3, [sp, #5] +10006f54: f7ff ff92 bl 10006e7c +10006f58: b003 add sp, #12 +10006f5a: f85d fb04 ldr.w pc, [sp], #4 + +10006f5e : +10006f5e: b507 .short 0xb507 +10006f60: 0c03 lsrs r3, r0, #16 +10006f62: f88d 3004 strb.w r3, [sp, #4] +10006f66: f88d 0006 strb.w r0, [sp, #6] +10006f6a: 0a03 lsrs r3, r0, #8 +10006f6c: 2103 movs r1, #3 +10006f6e: 2020 .short 0x2020 +10006f70: f88daa01 .word 0xf88daa01 +10006f74: 3005 adds r0, #5 +10006f76: f7ff ff81 bl 10006e7c +10006f7a: b003 .short 0xb003 +10006f7c: f85d fb04 ldr.w pc, [sp], #4 + +10006f80 : +10006f80: b51f push {r0, r1, r2, r3, r4, lr} +10006f82: ab01 .short 0xab01 +10006f84: e883 0006 stmia.w r3, {r1, r2} +10006f88: 9003 str r0, [sp, #12] +10006f8a: 2101 movs r1, #1 +10006f8c: 20c5 movs r0, #197 ; 0xc5 +10006f8e: aa03 .short 0xaa03 +10006f90: f7ff ff74 bl 10006e7c +10006f94: b005 add sp, #20 +10006f96: f85d fb04 ldr.w pc, [sp], #4 + +10006f9a : +10006f9a: b51f push {r0, r1, r2, r3, r4, lr} +10006f9c: 4b0a ldr r3, [pc, #40] ; (10006fc8 ) +10006f9e: f88d 000c strb.w r0, [sp, #12] +10006fa2: 79db ldrb r3, [r3, #7] +10006fa4: 0a00 lsrs r0, r0, #8 +10006fa6: 3b02 subs r3, #2 +10006fa8: 2b01 cmp r3, #1 +10006faa: f88d 000d strb.w r0, [sp, #13] +10006fae: f04f 0001 mov.w r0, #1 +10006fb2: e88d 0006 stmia.w sp, {r1, r2} +10006fb6: bf94 ite ls +10006fb8: 2102 movls r1, #2 +10006fba: 4601 movhi r1, r0 +10006fbc: aa03 add r2, sp, #12 +10006fbe: f7ff ff5d bl 10006e7c +10006fc2: b005 add sp, #20 +10006fc4: f85d fb04 ldr.w pc, [sp], #4 +10006fc8: f19c 1004 ; instruction: 0xf19c1004 + +10006fcc : +10006fcc: b537 push {r0, r1, r2, r4, r5, lr} +10006fce: 4605 mov r5, r0 +10006fd0: e89d 0003 ldmia.w sp, {r0, r1} +10006fd4: 466c mov r4, sp +10006fd6: f7ff fcd1 bl 1000697c +10006fda: b11d cbz r5, 10006fe4 +10006fdc: f040 001c orr.w r0, r0, #28 +10006fe0: b2c0 uxtb r0, r0 +10006fe2: e001 b.n 10006fe8 +10006fe4: f000 00e3 and.w r0, r0, #227 ; 0xe3 +10006fe8: e894 0006 ldmia.w r4, {r1, r2} +10006fec: f7ff ffd5 bl 10006f9a +10006ff0: b003 add sp, #12 +10006ff2: bd30 .short 0xbd30 + +10006ff4 : +10006ff4: 4b02 ldr r3, [pc, #8] ; (10007000 ) +10006ff6: 681a ldr r2, [r3, #0] +10006ff8: 0201f022 .word 0x0201f022 +10006ffc: 601a str r2, [r3, #0] +10006ffe: 4770 bx lr +10007000: 02c0 lsls r0, r0, #11 +10007002: 4000 .short 0x4000 + +10007004 : +10007004: 4ff0e92d .word 0x4ff0e92d +10007008: 4b37 ldr r3, [pc, #220] ; (100070e8 ) +1000700a: 4d38 ldr r5, [pc, #224] ; (100070ec ) +1000700c: 2406 movs r4, #6 +1000700e: fb04 1400 mla r4, r4, r0, r1 +10007012: f8d5 8000 ldr.w r8, [r5] +10007016: f8d3 b000 ldr.w fp, [r3] +1000701a: b085 sub sp, #20 +1000701c: 0f01f1bb .word 0x0f01f1bb +10007020: 4607 mov r7, r0 +10007022: 460e mov r6, r1 +10007024: ea4f 0ac4 mov.w sl, r4, lsl #3 +10007028: 4699 mov r9, r3 +1000702a: d111 bne.n 10007050 +1000702c: 4b30 ldr r3, [pc, #192] ; (100070f0 ) +1000702e: 4798 .short 0x4798 +10007030: 4b30 ldr r3, [pc, #192] ; (100070f4 ) +10007032: 4298 cmp r0, r3 +10007034: d10c bne.n 10007050 +10007036: 4a30 .short 0x4a30 +10007038: 2300 movs r3, #0 +1000703a: 6013 str r3, [r2, #0] +1000703c: 682b ldr r3, [r5, #0] +1000703e: f443 7300 orr.w r3, r3, #512 ; 0x200 +10007042: f043 0302 orr.w r3, r3, #2 +10007046: 602b str r3, [r5, #0] +10007048: f8c2 b000 str.w fp, [r2] +1000704c: 4b2b ldr r3, [pc, #172] ; (100070fc ) +1000704e: 4798 blx r3 +10007050: 4b2b ldr r3, [pc, #172] ; (10007100 ) +10007052: f853 2034 ldr.w r2, [r3, r4, lsl #3] +10007056: 1c51 adds r1, r2, #1 +10007058: 9203 str r2, [sp, #12] +1000705a: d033 beq.n 100070c4 +1000705c: 3304 adds r3, #4 +1000705e: f853 3034 ldr.w r3, [r3, r4, lsl #3] +10007062: ea83 0102 eor.w r1, r3, r2 +10007066: 3101 adds r1, #1 +10007068: 2206d122 .word 0x2206d122 +1000706c: fb02 6207 mla r2, r2, r7, r6 +10007070: f89d4b24 .word 0xf89d4b24 +10007074: 100c asrs r4, r1, #32 +10007076: eb03 04c2 add.w r4, r3, r2, lsl #3 +1000707a: f803 1032 strb.w r1, [r3, r2, lsl #3] +1000707e: f89d 100d ldrb.w r1, [sp, #13] +10007082: 7061 strb r1, [r4, #1] +10007084: f89d 100e ldrb.w r1, [sp, #14] +10007088: 70a1 strb r1, [r4, #2] +1000708a: f89d .short 0xf89d +1000708c: 100f asrs r7, r1, #32 +1000708e: 70e1 .short 0x70e1 +10007090: 491d ldr r1, [pc, #116] ; (10007108 ) +10007092: 6809 ldr r1, [r1, #0] +10007094: 04c8 lsls r0, r1, #19 +10007096: d515 bpl.n 100070c4 +10007098: f813 3032 ldrb.w r3, [r3, r2, lsl #3] +1000709c: 7862 ldrb r2, [r4, #1] +1000709e: 4639 .short 0x4639 +100070a0: 9200 str r2, [sp, #0] +100070a2: 78a2 .short 0x78a2 +100070a4: 4819 ldr r0, [pc, #100] ; (1000710c ) +100070a6: 9201 .short 0x9201 +100070a8: 4c19 ldr r4, [pc, #100] ; (10007110 ) +100070aa: 4632 mov r2, r6 +100070ac: e00947a0 .word 0xe00947a0 +100070b0: 4918 ldr r1, [pc, #96] ; (10007114 ) +100070b2: 6809 ldr r1, [r1, #0] +100070b4: 04c9 lsls r1, r1, #19 +100070b6: d505 bpl.n 100070c4 +100070b8: 4110f50a .word 0x4110f50a +100070bc: 4816 ldr r0, [pc, #88] ; (10007118 ) +100070be: 3180 .short 0x3180 +100070c0: 4c13 ldr r4, [pc, #76] ; (10007110 ) +100070c2: 47a0 .short 0x47a0 +100070c4: f8d9 4000 ldr.w r4, [r9] +100070c8: d10a2c01 .word 0xd10a2c01 +100070cc: 4b08 ldr r3, [pc, #32] ; (100070f0 ) +100070ce: 4798 .short 0x4798 +100070d0: 4b08 ldr r3, [pc, #32] ; (100070f4 ) +100070d2: 4298 .short 0x4298 +100070d4: d105 bne.n 100070e2 +100070d6: 4b08 .short 0x4b08 +100070d8: 2200 movs r2, #0 +100070da: 601a .short 0x601a +100070dc: f8c5 8000 str.w r8, [r5] +100070e0: b005601c .word 0xb005601c +100070e4: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100070e8: 6014 str r4, [r2, #0] +100070ea: 4000 ands r0, r0 +100070ec: 6120 str r0, [r4, #16] +100070ee: 4000 .short 0x4000 +100070f0: 0355 lsls r5, r2, #13 +100070f2: 0000 movs r0, r0 +100070f4: 09ef21aa .word 0x09ef21aa +100070f8: 6008 str r0, [r1, #0] +100070fa: 4000 .short 0x4000 +100070fc: 2ea5 cmp r6, #165 ; 0xa5 +100070fe: 0000 .short 0x0000 +10007100: 9080 str r0, [sp, #512] ; 0x200 +10007102: 9800 .short 0x9800 +10007104: f19c 1004 ; instruction: 0xf19c1004 +10007108: 0310 lsls r0, r2, #12 +1000710a: 1000 asrs r0, r0, #32 +1000710c: 997a ldr r1, [sp, #488] ; 0x1e8 +1000710e: 1004 asrs r4, r0, #32 +10007110: 0000f39d .word 0x0000f39d +10007114: 030c lsls r4, r1, #12 +10007116: 1000 asrs r0, r0, #32 +10007118: 100499f0 .word 0x100499f0 + +1000711c : +1000711c: b538 push {r3, r4, r5, lr} +1000711e: 2500 movs r5, #0 +10007120: 2400 movs r4, #0 +10007122: b2e1 .short 0xb2e1 +10007124: 4628 mov r0, r5 +10007126: 3401 .short 0x3401 +10007128: f7ff ff6c bl 10007004 +1000712c: d1f82c06 .word 0xd1f82c06 +10007130: 3501 adds r5, #1 +10007132: b2ed .short 0xb2ed +10007134: 2d03 cmp r5, #3 +10007136: d1f3 .short 0xd1f3 +10007138: bd38 pop {r3, r4, r5, pc} + +1000713a : +1000713a: 2306 .short 0x2306 +1000713c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10007140: 1300fb03 .word 0x1300fb03 +10007144: 4f49 ldr r7, [pc, #292] ; (1000726c ) +10007146: b087 .short 0xb087 +10007148: eb07 03c3 add.w r3, r7, r3, lsl #3 +1000714c: 4606791b .word 0x4606791b +10007150: 460d mov r5, r1 +10007152: b90b cbnz r3, 10007158 +10007154: f9b8f7ff .word 0xf9b8f7ff +10007158: 4b45 ldr r3, [pc, #276] ; (10007270 ) +1000715a: 681a .short 0x681a +1000715c: 04d0 lsls r0, r2, #19 +1000715e: d504 .short 0xd504 +10007160: 4844 ldr r0, [pc, #272] ; (10007274 ) +10007162: 4631 .short 0x4631 +10007164: 462a mov r2, r5 +10007166: 4b44 .short 0x4b44 +10007168: 4798 blx r3 +1000716a: 2406 .short 0x2406 +1000716c: fb04 5406 mla r4, r4, r6, r5 +10007170: 9118f8df .word 0x9118f8df +10007174: ea4f 08c4 mov.w r8, r4, lsl #3 +10007178: f859 2034 ldr.w r2, [r9, r4, lsl #3] +1000717c: 92031c51 .word 0x92031c51 +10007180: d167 bne.n 10007252 +10007182: f817 .short 0xf817 +10007184: 3034 adds r0, #52 ; 0x34 +10007186: f10d .short 0xf10d +10007188: 0b10 lsrs r0, r2, #12 +1000718a: f88d .short 0xf88d +1000718c: 300c adds r0, #12 +1000718e: eb07 .short 0xeb07 +10007190: 0308 lsls r0, r1, #12 +10007192: 785a .short 0x785a +10007194: e89b 0003 ldmia.w fp, {r0, r1} +10007198: 200df88d .word 0x200df88d +1000719c: 789a ldrb r2, [r3, #2] +1000719e: f88d 200e strb.w r2, [sp, #14] +100071a2: 78da .short 0x78da +100071a4: f88d 200f strb.w r2, [sp, #15] +100071a8: f8499a03 .word 0xf8499a03 +100071ac: 2034 movs r0, #52 ; 0x34 +100071ae: 79db .short 0x79db +100071b0: 2b04 cmp r3, #4 +100071b2: d102 .short 0xd102 +100071b4: f7ff fcdc bl 10006b70 +100071b8: f7ffe001 .word 0xf7ffe001 +100071bc: fc0b e89b stc2 8, cr14, [fp], {155} ; 0x9b +100071c0: 9a030003 .word 0x9a030003 +100071c4: f8df a0c8 ldr.w sl, [pc, #200] ; 10007290 +100071c8: f84a43d2 .word 0xf84a43d2 +100071cc: 2034 movs r0, #52 ; 0x34 +100071ce: 2206 .short 0x2206 +100071d0: fb02 5206 mla r2, r2, r6, r5 +100071d4: eb07 02c2 add.w r2, r7, r2, lsl #3 +100071d8: 79d2 ldrb r2, [r2, #7] +100071da: 2a04 .short 0x2a04 +100071dc: d102 bne.n 100071e4 +100071de: f7ff .short 0xf7ff +100071e0: fcc7 e001 stc2l 0, cr14, [r7], {1} +100071e4: fbf6f7ff .word 0xfbf6f7ff +100071e8: 4a21 ldr r2, [pc, #132] ; (10007270 ) +100071ea: 6813 .short 0x6813 +100071ec: 04db lsls r3, r3, #19 +100071ee: d50f bpl.n 10007210 +100071f0: 2206 movs r2, #6 +100071f2: fb02 5206 mla r2, r2, r6, r5 +100071f6: f817 .short 0xf817 +100071f8: 3032 adds r0, #50 ; 0x32 +100071fa: eb07 .short 0xeb07 +100071fc: 07c2 lsls r2, r0, #31 +100071fe: 787a .short 0x787a +10007200: 481e ldr r0, [pc, #120] ; (1000727c ) +10007202: 9200 str r2, [sp, #0] +10007204: 463178ba .word 0x463178ba +10007208: 9201 str r2, [sp, #4] +1000720a: 462a .short 0x462a +1000720c: 4d1a ldr r5, [pc, #104] ; (10007278 ) +1000720e: 47a8 .short 0x47a8 +10007210: f859 3034 ldr.w r3, [r9, r4, lsl #3] +10007214: 9a03 ldr r2, [sp, #12] +10007216: 4293 .short 0x4293 +10007218: d009 beq.n 1000722e +1000721a: 4b19 .short 0x4b19 +1000721c: 681b ldr r3, [r3, #0] +1000721e: 04d8 .short 0x04d8 +10007220: d505 bpl.n 1000722e +10007222: f859 .short 0xf859 +10007224: 3034 adds r0, #52 ; 0x34 +10007226: 4817 .short 0x4817 +10007228: 4641 mov r1, r8 +1000722a: 4d13 .short 0x4d13 +1000722c: 47a8 blx r5 +1000722e: 9a03 .short 0x9a03 +10007230: f85a 3034 ldr.w r3, [sl, r4, lsl #3] +10007234: 429343d2 .word 0x429343d2 +10007238: d015 beq.n 10007266 +1000723a: 4b11 .short 0x4b11 +1000723c: 681b ldr r3, [r3, #0] +1000723e: 04d9 .short 0x04d9 +10007240: d511 bpl.n 10007266 +10007242: f85a .short 0xf85a +10007244: 3034 adds r0, #52 ; 0x34 +10007246: f108 .short 0xf108 +10007248: 0104 lsls r4, r0, #4 +1000724a: 4c0b ldr r4, [pc, #44] ; (10007278 ) +1000724c: 480d ldr r0, [pc, #52] ; (10007284 ) +1000724e: 47a0 blx r4 +10007250: 4b0be009 .word 0x4b0be009 +10007254: 681b ldr r3, [r3, #0] +10007256: 04db .short 0x04db +10007258: d505 bpl.n 10007266 +1000725a: f508 .short 0xf508 +1000725c: 4110 asrs r0, r2 +1000725e: 480a .short 0x480a +10007260: 3180 adds r1, #128 ; 0x80 +10007262: 4b05 .short 0x4b05 +10007264: 4798 blx r3 +10007266: b007 .short 0xb007 +10007268: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000726c: 1004f19c .word 0x1004f19c +10007270: 0310 lsls r0, r2, #12 +10007272: 1000 asrs r0, r0, #32 +10007274: 10049a3a .word 0x10049a3a +10007278: f39d 0000 ; instruction: 0xf39d0000 +1000727c: 9a6f ldr r2, [sp, #444] ; 0x1bc +1000727e: 1004 .short 0x1004 +10007280: 0314 lsls r4, r2, #12 +10007282: 1000 .short 0x1000 +10007284: 9ae6 ldr r2, [sp, #920] ; 0x398 +10007286: 1004 .short 0x1004 +10007288: 9b26 ldr r3, [sp, #152] ; 0x98 +1000728a: 1004 .short 0x1004 +1000728c: 9080 str r0, [sp, #512] ; 0x200 +1000728e: 9800 .short 0x9800 +10007290: 9084 str r0, [sp, #528] ; 0x210 +10007292: 9800 .short 0x9800 + +10007294 : +10007294: 4b85 ldr r3, [pc, #532] ; (100074ac ) +10007296: e92d .short 0xe92d +10007298: 4ff0 ldr r7, [pc, #960] ; (1000765c ) +1000729a: 681b .short 0x681b +1000729c: 2206 movs r2, #6 +1000729e: f3c3 .short 0xf3c3 +100072a0: 1b02 subs r2, r0, r4 +100072a2: fb02 b200 mla r2, r2, r0, fp +100072a6: 4b82 .short 0x4b82 +100072a8: b08d sub sp, #52 ; 0x34 +100072aa: eb03 02c2 add.w r2, r3, r2, lsl #3 +100072ae: 78d2 ldrb r2, [r2, #3] +100072b0: 9007 str r0, [sp, #28] +100072b2: 460d .short 0x460d +100072b4: b912 cbnz r2, 100072bc +100072b6: 4659 mov r1, fp +100072b8: fea4f7ff .word 0xfea4f7ff +100072bc: 9807 ldr r0, [sp, #28] +100072be: 2206 .short 0x2206 +100072c0: fb02 b200 mla r2, r2, r0, fp +100072c4: 497a ldr r1, [pc, #488] ; (100074b0 ) +100072c6: eb01 .short 0xeb01 +100072c8: 03c2 lsls r2, r0, #15 +100072ca: 78d9 ldrb r1, [r3, #3] +100072cc: 4b79b939 .word 0x4b79b939 +100072d0: 681b ldr r3, [r3, #0] +100072d2: 005a .short 0x005a +100072d4: d525 bpl.n 10007322 +100072d6: 4b78 .short 0x4b78 +100072d8: 4878 ldr r0, [pc, #480] ; (100074bc ) +100072da: 4798 .short 0x4798 +100072dc: e021 b.n 10007322 +100072de: 4978 ldr r1, [pc, #480] ; (100074c0 ) +100072e0: 60082000 .word 0x60082000 +100072e4: 4872 ldr r0, [pc, #456] ; (100074b0 ) +100072e6: f810 0032 ldrb.w r0, [r0, r2, lsl #3] +100072ea: 4a76 ldr r2, [pc, #472] ; (100074c4 ) +100072ec: 48766010 .word 0x48766010 +100072f0: 785c ldrb r4, [r3, #1] +100072f2: 6802 .short 0x6802 +100072f4: 0c12 lsrs r2, r2, #16 +100072f6: 0412 .short 0x0412 +100072f8: 4322 orrs r2, r4 +100072fa: 6002 .short 0x6002 +100072fc: 4a73 ldr r2, [pc, #460] ; (100074cc ) +100072fe: 7898 .short 0x7898 +10007300: 6814 ldr r4, [r2, #0] +10007302: f024 .short 0xf024 +10007304: 03ff lsls r7, r7, #15 +10007306: 4303 .short 0x4303 +10007308: 2401 movs r4, #1 +1000730a: 6013 .short 0x6013 +1000730c: 600c str r4, [r1, #0] +1000730e: aa0c add r2, sp, #48 ; 0x30 +10007310: 0003e912 .word 0x0003e912 +10007314: f7ff fb5e bl 100069d4 +10007318: 47984b6d .word 0x47984b6d +1000731c: 2800 cmp r0, #0 +1000731e: d0d6 .short 0xd0d6 +10007320: e0bf b.n 100074a2 +10007322: 2400 .short 0x2400 +10007324: 006d lsls r5, r5, #1 +10007326: 9508 .short 0x9508 +10007328: 46ac mov ip, r5 +1000732a: 9406 .short 0x9406 +1000732c: 46a2 mov sl, r4 +1000732e: 46a0 .short 0x46a0 +10007330: 2701 movs r7, #1 +10007332: 2f01 cmp r7, #1 +10007334: d104 bne.n 10007340 +10007336: 9b07 ldr r3, [sp, #28] +10007338: f1bbb913 .word 0xf1bbb913 +1000733c: 0f00 lsrs r0, r0, #28 +1000733e: d06a .short 0xd06a +10007340: 495f ldr r1, [pc, #380] ; (100074c0 ) +10007342: 4b60 .short 0x4b60 +10007344: 2001 movs r0, #1 +10007346: 2200 .short 0x2200 +10007348: 600a str r2, [r1, #0] +1000734a: 601f .short 0x601f +1000734c: 6008 str r0, [r1, #0] +1000734e: f10c .short 0xf10c +10007350: 0014 movs r4, r2 +10007352: 9009 .short 0x9009 +10007354: 46e1 mov r9, ip +10007356: 9b09 .short 0x9b09 +10007358: 4599 cmp r9, r3 +1000735a: d251 .short 0xd251 +1000735c: 4958 ldr r1, [pc, #352] ; (100074c0 ) +1000735e: 2500 .short 0x2500 +10007360: 600d str r5, [r1, #0] +10007362: f8d1 .short 0xf8d1 +10007364: 3114 adds r1, #20 +10007366: fa1f .short 0xfa1f +10007368: f089 0c1b eor.w ip, r9, #27 +1000736c: 4303041b .word 0x4303041b +10007370: 4853 ldr r0, [pc, #332] ; (100074c0 ) +10007372: f8c1 .short 0xf8c1 +10007374: 3114 adds r1, #20 +10007376: 2301 .short 0x2301 +10007378: 6003 str r3, [r0, #0] +1000737a: 462e mov r6, r5 +1000737c: 2363 movs r3, #99 ; 0x63 +1000737e: 4953 ldr r1, [pc, #332] ; (100074cc ) +10007380: 6808 ldr r0, [r1, #0] +10007382: f020 00ff bic.w r0, r0, #255 ; 0xff +10007386: 4328 .short 0x4328 +10007388: 6008 str r0, [r1, #0] +1000738a: 9205 .short 0x9205 +1000738c: 9304 str r3, [sp, #16] +1000738e: f8cd .short 0xf8cd +10007390: c00c stmia r0!, {r2, r3} +10007392: 494f .short 0x494f +10007394: 4788 blx r1 +10007396: 9a05 .short 0x9a05 +10007398: 9b04 ldr r3, [sp, #16] +1000739a: f8dd .short 0xf8dd +1000739c: c00c stmia r0!, {r2, r3} +1000739e: b1b0 .short 0xb1b0 +100073a0: b90e cbnz r6, 100073a6 +100073a2: 3201 .short 0x3201 +100073a4: 462b mov r3, r5 +100073a6: 2d63 .short 0x2d63 +100073a8: d121 bne.n 100073ee +100073aa: 2a01 .short 0x2a01 +100073ac: d102 bne.n 100073b4 +100073ae: b2b9 .short 0xb2b9 +100073b0: 9106 str r1, [sp, #24] +100073b2: e007 .short 0xe007 +100073b4: f1c3 0063 rsb r0, r3, #99 ; 0x63 +100073b8: 0108ebc4 .word 0x0108ebc4 +100073bc: 4288 cmp r0, r1 +100073be: d916 .short 0xd916 +100073c0: b2b8 uxth r0, r7 +100073c2: 9006 .short 0x9006 +100073c4: fa1f fa89 uxth.w sl, r9 +100073c8: 461c46a8 .word 0x461c46a8 +100073cc: e00f b.n 100073ee +100073ce: 2e01 .short 0x2e01 +100073d0: d10f bne.n 100073f2 +100073d2: 2a01 .short 0x2a01 +100073d4: d004 beq.n 100073e0 +100073d6: 1aee .short 0x1aee +100073d8: ebc4 0108 rsb r1, r4, r8 +100073dc: d908428e .word 0xd908428e +100073e0: b2b9 uxth r1, r7 +100073e2: 9106 .short 0x9106 +100073e4: fa1f fa89 uxth.w sl, r9 +100073e8: 46a8 mov r8, r5 +100073ea: 461c mov r4, r3 +100073ec: 2601e001 .word 0x2601e001 +100073f0: e000 b.n 100073f4 +100073f2: 4606 .short 0x4606 +100073f4: 3501 adds r5, #1 +100073f6: 2d64 .short 0x2d64 +100073f8: d1c1 bne.n 1000737e +100073fa: f109 .short 0xf109 +100073fc: 0901 lsrs r1, r0, #4 +100073fe: e7aa .short 0xe7aa +10007400: b14a cbz r2, 10007416 +10007402: 4b2c .short 0x4b2c +10007404: 681a ldr r2, [r3, #0] +10007406: 461d .short 0x461d +10007408: f012 4f80 tst.w r2, #1073741824 ; 0x40000000 +1000740c: 4b2ad00c .word 0x4b2ad00c +10007410: 4830 ldr r0, [pc, #192] ; (100074d4 ) +10007412: 4798 .short 0x4798 +10007414: e008 b.n 10007428 +10007416: 3701 .short 0x3701 +10007418: 9b08 ldr r3, [sp, #32] +1000741a: 2f05 .short 0x2f05 +1000741c: 4463 add r3, ip +1000741e: d001 .short 0xd001 +10007420: 469c mov ip, r3 +10007422: e786 .short 0xe786 +10007424: 2000 movs r0, #0 +10007426: e03d .short 0xe03d +10007428: 682b ldr r3, [r5, #0] +1000742a: 005b .short 0x005b +1000742c: d507 bpl.n 1000743e +1000742e: f8cd .short 0xf8cd +10007430: 8000 strh r0, [r0, #0] +10007432: 4829 .short 0x4829 +10007434: 9906 ldr r1, [sp, #24] +10007436: 4652 mov r2, sl +10007438: 4623 mov r3, r4 +1000743a: 4d1f ldr r5, [pc, #124] ; (100074b8 ) +1000743c: 47a8 blx r5 +1000743e: 9906 ldr r1, [sp, #24] +10007440: 2300481f .word 0x2300481f +10007444: 4a1f ldr r2, [pc, #124] ; (100074c4 ) +10007446: 6003 .short 0x6003 +10007448: 9807 ldr r0, [sp, #28] +1000744a: f3c1 .short 0xf3c1 +1000744c: 030b lsls r3, r1, #12 +1000744e: 6013 .short 0x6013 +10007450: 2306 movs r3, #6 +10007452: fb03 .short 0xfb03 +10007454: b300 cbz r0, 10007498 +10007456: 4a16 .short 0x4a16 +10007458: 4815 ldr r0, [pc, #84] ; (100074b0 ) +1000745a: f802 1033 strb.w r1, [r2, r3, lsl #3] +1000745e: 491a ldr r1, [pc, #104] ; (100074c8 ) +10007460: 03c3eb00 .word 0x03c3eb00 +10007464: 680a ldr r2, [r1, #0] +10007466: 4444 add r4, r8 +10007468: 04120c12 .word 0x04120c12 +1000746c: ea4a 0202 orr.w r2, sl, r2 +10007470: 4a16600a .word 0x4a16600a +10007474: f883 a001 strb.w sl, [r3, #1] +10007478: 08646811 .word 0x08646811 +1000747c: b2e0 uxtb r0, r4 +1000747e: f021 01ff bic.w r1, r1, #255 ; 0xff +10007482: 4301 orrs r1, r0 +10007484: 6011 str r1, [r2, #0] +10007486: 490e ldr r1, [pc, #56] ; (100074c0 ) +10007488: 709c strb r4, [r3, #2] +1000748a: 2401 movs r4, #1 +1000748c: 70dc strb r4, [r3, #3] +1000748e: aa0c add r2, sp, #48 ; 0x30 +10007490: 600c str r4, [r1, #0] +10007492: e912 0003 ldmdb r2, {r0, r1} +10007496: f7ff fa9d bl 100069d4 +1000749a: 9807 ldr r0, [sp, #28] +1000749c: f7ff4659 .word 0xf7ff4659 +100074a0: fe4c 4620 cdp2 6, 4, cr4, cr12, cr0, {1} +100074a4: e8bdb00d .word 0xe8bdb00d +100074a8: 8ff0 ldrh r0, [r6, #62] ; 0x3e +100074aa: bf00 nop +100074ac: 0014 movs r4, r2 +100074ae: 4000 ands r0, r0 +100074b0: 1004f19c .word 0x1004f19c +100074b4: 0314 lsls r4, r2, #12 +100074b6: 1000 asrs r0, r0, #32 +100074b8: 0000f39d .word 0x0000f39d +100074bc: 9b8d ldr r3, [sp, #564] ; 0x234 +100074be: 1004 .short 0x1004 +100074c0: 6008 str r0, [r1, #0] +100074c2: 4000 ands r0, r0 +100074c4: 6014 str r4, [r2, #0] +100074c6: 4000 .short 0x4000 +100074c8: 611c str r4, [r3, #16] +100074ca: 4000 .short 0x4000 +100074cc: 0300 lsls r0, r0, #12 +100074ce: 4000 .short 0x4000 +100074d0: 3049 adds r0, #73 ; 0x49 +100074d2: 0000 .short 0x0000 +100074d4: 9b9f ldr r3, [sp, #636] ; 0x27c +100074d6: 1004 asrs r4, r0, #32 +100074d8: 9bba ldr r3, [sp, #744] ; 0x2e8 +100074da: 1004 asrs r4, r0, #32 + +100074dc : +100074dc: b573 push {r0, r1, r4, r5, r6, lr} +100074de: 4b24 ldr r3, [pc, #144] ; (10007570 ) +100074e0: 4604 mov r4, r0 +100074e2: 791a ldrb r2, [r3, #4] +100074e4: 461e mov r6, r3 +100074e6: b90a cbnz r2, 100074ec +100074e8: f7fe ffee bl 100064c8 +100074ec: e89d 0003 ldmia.w sp, {r0, r1} +100074f0: f7ff fa70 bl 100069d4 +100074f4: 2c01 cmp r4, #1 +100074f6: d00f .short 0xd00f +100074f8: d30a bcc.n 10007510 +100074fa: 2c02 cmp r4, #2 +100074fc: d111 bne.n 10007522 +100074fe: 4620 mov r0, r4 +10007500: f7ff f864 bl 100065cc +10007504: 79f3 ldrb r3, [r6, #7] +10007506: 2b05 cmp r3, #5 +10007508: bf0c ite eq +1000750a: 2106 moveq r1, #6 +1000750c: 2108 movne r1, #8 +1000750e: e011 b.n 10007534 +10007510: 2000 movs r0, #0 +10007512: f7ff f85b bl 100065cc +10007516: e00c b.n 10007532 +10007518: 4620 mov r0, r4 +1000751a: f7ff f857 bl 100065cc +1000751e: 2108 movs r1, #8 +10007520: e008 b.n 10007534 +10007522: 4b14 ldr r3, [pc, #80] ; (10007574 ) +10007524: 6819 ldr r1, [r3, #0] +10007526: f011 4180 ands.w r1, r1, #1073741824 ; 0x40000000 +1000752a: d003 .short 0xd003 +1000752c: 4812 ldr r0, [pc, #72] ; (10007578 ) +1000752e: 4b13 ldr r3, [pc, #76] ; (1000757c ) +10007530: 4798 blx r3 +10007532: 2100 movs r1, #0 +10007534: 4620 mov r0, r4 +10007536: f7ff fead bl 10007294 +1000753a: b9a8 cbnz r0, 10007568 +1000753c: 4b0d ldr r3, [pc, #52] ; (10007574 ) +1000753e: 681b ldr r3, [r3, #0] +10007540: 005b lsls r3, r3, #1 +10007542: d502 bpl.n 1000754a +10007544: 480e ldr r0, [pc, #56] ; (10007580 ) +10007546: 4b0d ldr r3, [pc, #52] ; (1000757c ) +10007548: 4798 blx r3 +1000754a: 2000 movs r0, #0 +1000754c: 4601 mov r1, r0 +1000754e: 466a mov r2, sp +10007550: 4b0c ldr r3, [pc, #48] ; (10007584 ) +10007552: 4798 .short 0x4798 +10007554: f89d 0000 ldrb.w r0, [sp] +10007558: 2100 movs r1, #0 +1000755a: f7fe .short 0xf7fe +1000755c: ff5b 2000 vhadd.u16 d18, d11, d0 +10007560: f834f7ff .word 0xf834f7ff +10007564: 2000 movs r0, #0 +10007566: e000 .short 0xe000 +10007568: 2001 movs r0, #1 +1000756a: b002 add sp, #8 +1000756c: bf00bd70 .word 0xbf00bd70 +10007570: f19c 1004 ; instruction: 0xf19c1004 +10007574: 10000314 .word 0x10000314 +10007578: 9bf2 ldr r3, [sp, #968] ; 0x3c8 +1000757a: 1004 .short 0x1004 +1000757c: f39d 0000 ; instruction: 0xf39d0000 +10007580: 9c10 ldr r4, [sp, #64] ; 0x40 +10007582: 1004 .short 0x1004 +10007584: 3081 adds r0, #129 ; 0x81 + ... + +10007588 : +10007588: 2000b508 .word 0x2000b508 +1000758c: f7ff f81e bl 100065cc +10007590: 46012000 .word 0x46012000 +10007594: f7ff fe7e bl 10007294 +10007598: bf183000 .word 0xbf183000 +1000759c: 2001 movne r0, #1 +1000759e: bd08 .short 0xbd08 + +100075a0 : +100075a0: 4b05 ldr r3, [pc, #20] ; (100075b8 ) +100075a2: 681a .short 0x681a +100075a4: f3c2 0213 ubfx r2, r2, #0, #20 +100075a8: 0260f442 .word 0x0260f442 +100075ac: 601a str r2, [r3, #0] +100075ae: 681a .short 0x681a +100075b0: f042 0202 orr.w r2, r2, #2 +100075b4: 4770601a .word 0x4770601a +100075b8: 0040 lsls r0, r0, #1 +100075ba: 4000 .short 0x4000 + +100075bc : +100075bc: 6903 ldr r3, [r0, #16] +100075be: 2201 .short 0x2201 +100075c0: 409a lsls r2, r3 +100075c2: 68c1 .short 0x68c1 +100075c4: 6883 ldr r3, [r0, #8] +100075c6: fb01 .short 0xfb01 +100075c8: f102 e92d ; instruction: 0xf102e92d +100075cc: 69dc0ff0 .word 0x69dc0ff0 +100075d0: 689d ldr r5, [r3, #8] +100075d2: 6806 .short 0x6806 +100075d4: fbb4 f4f1 udiv r4, r4, r1 +100075d8: f5f2fbb5 .word 0xf5f2fbb5 +100075dc: f8d6 b000 ldr.w fp, [r6] +100075e0: 35011ce7 .word 0x35011ce7 +100075e4: 42af cmp r7, r5 +100075e6: bf28 .short 0xbf28 +100075e8: 462f movcs r7, r5 +100075ea: b086 .short 0xb086 +100075ec: f1bb 0f02 cmp.w fp, #2 +100075f0: f1049704 .word 0xf1049704 +100075f4: 0701 lsls r1, r0, #28 +100075f6: f000 .short 0xf000 +100075f8: 80a8 strh r0, [r5, #4] +100075fa: f1bb .short 0xf1bb +100075fc: 0f03 lsrs r3, r0, #28 +100075fe: f000 .short 0xf000 +10007600: 80da strh r2, [r3, #6] +10007602: f1bb .short 0xf1bb +10007604: 0f08 lsrs r0, r1, #28 +10007606: f000 .short 0xf000 +10007608: 812d strh r5, [r5, #8] +1000760a: 2400 .short 0x2400 +1000760c: 9400 str r4, [sp, #0] +1000760e: 9402 .short 0x9402 +10007610: f06f 0c03 mvn.w ip, #3 +10007614: 94032400 .word 0x94032400 +10007618: f06f 0802 mvn.w r8, #2 +1000761c: 0908f04f .word 0x0908f04f +10007620: fbb4 f4f2 udiv r4, r4, r2 +10007624: 68f59405 .word 0x68f59405 +10007628: 6877 ldr r7, [r6, #4] +1000762a: 2d01 .short 0x2d01 +1000762c: 68b6 ldr r6, [r6, #8] +1000762e: bf14 .short 0xbf14 +10007630: 3701 addne r7, #1 +10007632: 3702 .short 0x3702 +10007634: 9701 str r7, [sp, #4] +10007636: ea4f 1a06 moveq.w sl, r6, lsl #4 +1000763a: 9e00 ldr r6, [sp, #0] +1000763c: 9c01 ldr r4, [sp, #4] +1000763e: ea4a 2a05 orr.w sl, sl, r5, lsl #8 +10007642: fbbc fcf2 udiv ip, ip, r2 +10007646: ea4a 0a06 orr.w sl, sl, r6 +1000764a: ea49 1905 orr.w r9, r9, r5, lsl #4 +1000764e: ea4f 5c0c mov.w ip, ip, lsl #20 +10007652: fbb8 f8f2 udiv r8, r8, r2 +10007656: 4f93 ldr r7, [pc, #588] ; (100078a4 ) +10007658: 4e93 ldr r6, [pc, #588] ; (100078a8 ) +1000765a: 4d94 ldr r5, [pc, #592] ; (100078ac ) +1000765c: ea4a 0a04 orr.w sl, sl, r4 +10007660: f449 7900 orr.w r9, r9, #512 ; 0x200 +10007664: ea4c 3c08 orr.w ip, ip, r8, lsl #12 +10007668: f1bb 0fc8 cmp.w fp, #200 ; 0xc8 +1000766c: f8c7 a000 str.w sl, [r7] +10007670: f8c6 9000 str.w r9, [r6] +10007674: c000f8c5 .word 0xc000f8c5 +10007678: d007 beq.n 1000768a +1000767a: 9e03 .short 0x9e03 +1000767c: 6840 ldr r0, [r0, #4] +1000767e: 622e str r6, [r5, #32] +10007680: 488b6905 .word 0x488b6905 +10007684: f045 0506 orr.w r5, r5, #6 +10007688: 9f026005 .word 0x9f026005 +1000768c: 4889 ldr r0, [pc, #548] ; (100078b4 ) +1000768e: 4e8a .short 0x4e8a +10007690: 6007 str r7, [r0, #0] +10007692: 681d .short 0x681d +10007694: 6858 ldr r0, [r3, #4] +10007696: fbb5 .short 0xfbb5 +10007698: f5f1 fbb0 bl fdf8dfc +1000769c: 3501f0f1 .word 0x3501f0f1 +100076a0: f045 6510 orr.w r5, r5, #150994944 ; 0x9000000 +100076a4: 3001 adds r0, #1 +100076a6: ea45 .short 0xea45 +100076a8: 2000 movs r0, #0 +100076aa: 6030 str r0, [r6, #0] +100076ac: 691e ldr r6, [r3, #16] +100076ae: 6a9d .short 0x6a9d +100076b0: 6958 ldr r0, [r3, #20] +100076b2: fbb6 .short 0xfbb6 +100076b4: f6f1 fbb5 bl fef8e22 +100076b8: 3601f5f2 .word 0x3601f5f2 +100076bc: fbb0 f0f1 udiv r0, r0, r1 +100076c0: f8dd3501 .word 0xf8dd3501 +100076c4: 8010 strh r0, [r2, #0] +100076c6: ea46 .short 0xea46 +100076c8: 3545 adds r5, #69 ; 0x45 +100076ca: 3001 .short 0x3001 +100076cc: ea45 1000 orr.w r0, r5, r0, lsl #4 +100076d0: ea404d7a .word 0xea404d7a +100076d4: 2048 movs r0, #72 ; 0x48 +100076d6: 6028 .short 0x6028 +100076d8: 6ad8 ldr r0, [r3, #44] ; 0x2c +100076da: 6a1d .short 0x6a1d +100076dc: fbb0 f7f2 udiv r7, r0, r2 +100076e0: fbb56998 .word 0xfbb56998 +100076e4: f6f2 3701 ; instruction: 0xf6f23701 +100076e8: fbb068dd .word 0xfbb068dd +100076ec: f2f2 03bf ; instruction: 0xf2f203bf +100076f0: 36036b18 .word 0x36036b18 +100076f4: fbb5 f5f1 udiv r5, r5, r1 +100076f8: 4646ea47 .word 0x4646ea47 +100076fc: 3201 adds r2, #1 +100076fe: 4332 .short 0x4332 +10007700: fbb0 f1f1 udiv r1, r0, r1 +10007704: 98053501 .word 0x98053501 +10007708: ea42 2585 orr.w r5, r2, r5, lsl #10 +1000770c: ea453101 .word 0xea453101 +10007710: 1101 asrs r1, r0, #4 +10007712: 4a6b .short 0x4a6b +10007714: ea41 5400 orr.w r4, r1, r0, lsl #20 +10007718: 6a5d6014 .word 0x6a5d6014 +1000771c: 4b6a4869 .word 0x4b6a4869 +10007720: 016d lsls r5, r5, #5 +10007722: f045 .short 0xf045 +10007724: 0502 lsls r2, r0, #20 +10007726: f44f .short 0xf44f +10007728: 64e0 str r0, [r4, #76] ; 0x4c +1000772a: 2101 .short 0x2101 +1000772c: 6055 str r5, [r2, #4] +1000772e: 6004 str r4, [r0, #0] +10007730: 461a mov r2, r3 +10007732: 6019 str r1, [r3, #0] +10007734: 07db6813 .word 0x07db6813 +10007738: d5fc bpl.n 10007734 +1000773a: 4b62 .short 0x4b62 +1000773c: f44f 62c0 mov.w r2, #1536 ; 0x600 +10007740: 601a str r2, [r3, #0] +10007742: b006 add sp, #24 +10007744: e8bd 0ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp} +10007748: 4770 bx lr +1000774a: 4d60 ldr r5, [pc, #384] ; (100078cc ) +1000774c: 6844 ldr r4, [r0, #4] +1000774e: fba5 8c07 umull r8, ip, r5, r7 +10007752: 68a5 ldr r5, [r4, #8] +10007754: ea4f 0c9c mov.w ip, ip, lsr #2 +10007758: f8d4 8004 ldr.w r8, [r4, #4] +1000775c: f8d4 9000 ldr.w r9, [r4] +10007760: eb0c 0c4c add.w ip, ip, ip, lsl #1 +10007764: ea4f 1a05 mov.w sl, r5, lsl #4 +10007768: 6964 ldr r4, [r4, #20] +1000776a: eba7 074c sub.w r7, r7, ip, lsl #1 +1000776e: f1b9 .short 0xf1b9 +10007770: 0f00 lsrs r0, r0, #28 +10007772: ea4a .short 0xea4a +10007774: 0ac8 lsrs r0, r1, #11 +10007776: f107 .short 0xf107 +10007778: 37ff adds r7, #255 ; 0xff +1000777a: 46a8 .short 0x46a8 +1000777c: 44a0 add r8, r4 +1000777e: ea4a .short 0xea4a +10007780: 2747 movs r7, #71 ; 0x47 +10007782: bf14 .short 0xbf14 +10007784: 2403 movne r4, #3 +10007786: 2402 .short 0x2402 +10007788: ea47 0704 orr.w r7, r7, r4 +1000778c: 97029501 .word 0x97029501 +10007790: f04f 0500 mov.w r5, #0 +10007794: 2740bf14 .word 0x2740bf14 +10007798: 2700 moveq r7, #0 +1000779a: f108 .short 0xf108 +1000779c: 38ff subs r0, #255 ; 0xff +1000779e: 9700 str r7, [sp, #0] +100077a0: 2406bf14 .word 0x2406bf14 +100077a4: 2404 moveq r4, #4 +100077a6: 46d9 .short 0x46d9 +100077a8: 9503 str r5, [sp, #12] +100077aa: 9d01 .short 0x9d01 +100077ac: f1a8 0803 sub.w r8, r8, #3 +100077b0: 0c04f1a5 .word 0x0c04f1a5 +100077b4: e734 b.n 10007620 +100077b6: f8d0 .short 0xf8d0 +100077b8: c004 stmia r0!, {r2} +100077ba: f8dc .short 0xf8dc +100077bc: 5000 str r0, [r0, r0] +100077be: f8dc .short 0xf8dc +100077c0: 8008 strh r0, [r1, #0] +100077c2: 2d00 .short 0x2d00 +100077c4: bf14 ite ne +100077c6: 2540 movne r5, #64 ; 0x40 +100077c8: 95002500 .word 0x95002500 +100077cc: bf14 ite ne +100077ce: 2500 .short 0x2500 +100077d0: 2502 moveq r5, #2 +100077d2: 9502 str r5, [sp, #8] +100077d4: 5014f8dc .word 0x5014f8dc +100077d8: ea4f 0a58 mov.w sl, r8, lsr #1 +100077dc: f018 0801 ands.w r8, r8, #1 +100077e0: bf14 ite ne +100077e2: f10a .short 0xf10a +100077e4: 090c lsreq r4, r1, #4 +100077e6: f10a 0904 add.w r9, sl, #4 +100077ea: 2d01 cmp r5, #1 +100077ec: f8cd 8014 str.w r8, [sp, #20] +100077f0: 2d02d04c .word 0x2d02d04c +100077f4: bf14 ite ne +100077f6: f04f .short 0xf04f +100077f8: 0800 lsreq r0, r0, #32 +100077fa: f06f 0801 mvn.w r8, #1 +100077fe: eb08 0509 add.w r5, r8, r9 +10007802: 9501 str r5, [sp, #4] +10007804: f8dc 5018 ldr.w r5, [ip, #24] +10007808: 2f10 cmp r7, #16 +1000780a: f105 0505 add.w r5, r5, #5 +1000780e: 44a8 add r8, r5 +10007810: 5018f8dc .word 0x5018f8dc +10007814: ea4f 05c5 mov.w r5, r5, lsl #3 +10007818: 9503 str r5, [sp, #12] +1000781a: d03e beq.n 1000789a +1000781c: 2f09 cmp r7, #9 +1000781e: d838 bhi.n 10007892 +10007820: 3c03 subs r4, #3 +10007822: 0267 lsls r7, r4, #9 +10007824: 9d05 ldr r5, [sp, #20] +10007826: f8dc .short 0xf8dc +10007828: c004 stmia r0!, {r2} +1000782a: 00ac .short 0x00ac +1000782c: ea44 140a orr.w r4, r4, sl, lsl #4 +10007830: ea449d02 .word 0xea449d02 +10007834: 0ccc lsrs r4, r1, #19 +10007836: f109 .short 0xf109 +10007838: 0406 lsls r6, r0, #16 +1000783a: ea4c .short 0xea4c +1000783c: 0c05 lsrs r5, r0, #16 +1000783e: ebc8 .short 0xebc8 +10007840: 0404 lsls r4, r0, #16 +10007842: ea4c .short 0xea4c +10007844: 0707 lsls r7, r0, #28 +10007846: 07e5 .short 0x07e5 +10007848: 9702 str r7, [sp, #8] +1000784a: d528 .short 0xd528 +1000784c: 3401 adds r4, #1 +1000784e: fbb4 .short 0xfbb4 +10007850: f4f2 9405 b.w f0fa05e +10007854: f1a89c01 .word 0xf1a89c01 +10007858: 0803 lsrs r3, r0, #32 +1000785a: f1a4 0c04 sub.w ip, r4, #4 +1000785e: f04f 0903 mov.w r9, #3 +10007862: e6e0 .short 0xe6e0 +10007864: 6844 ldr r4, [r0, #4] +10007866: 6827 ldr r7, [r4, #0] +10007868: 2f006865 .word 0x2f006865 +1000786c: bf14 ite ne +1000786e: 2433 movne r4, #51 ; 0x33 +10007870: ea442422 .word 0xea442422 +10007874: 05c5 lsls r5, r0, #23 +10007876: bf14 .short 0xbf14 +10007878: 2740 movne r7, #64 ; 0x40 +1000787a: 2700 moveq r7, #0 +1000787c: 9502 str r5, [sp, #8] +1000787e: bf14 ite ne +10007880: 3cfff04f .word 0x3cfff04f +10007884: f06f 0c01 mvn.w ip, #1 +10007888: e6c39700 .word 0xe6c39700 +1000788c: f04f 38ff mov.w r8, #4294967295 +10007890: 3402e7b5 .word 0x3402e7b5 +10007894: 0867 lsrs r7, r4, #1 +10007896: 027f .short 0x027f +10007898: e7c4 b.n 10007824 ; unpredictable branch in IT block + +1000789a: 2700 .short 0x2700 +1000789c: e7c2 b.n 10007824 ; unpredictable branch in IT block + +1000789e: f04f 0903 movne.w r9, #3 +100078a2: e782 beq.n 100077aa +100078a4: 5224 strh r4, [r4, r0] +100078a6: 4000 ands r0, r0 +100078a8: 5004 str r4, [r0, r0] +100078aa: 4000 ands r0, r0 +100078ac: 5008 str r0, [r1, r0] +100078ae: 4000 ands r0, r0 +100078b0: 5024 str r4, [r4, r0] +100078b2: 4000 ands r0, r0 +100078b4: 5020 str r0, [r4, r0] +100078b6: 4000 ands r0, r0 +100078b8: 40005010 .word 0x40005010 +100078bc: 5014 str r4, [r2, r0] +100078be: 4000 .short 0x4000 +100078c0: 5018 str r0, [r3, r0] +100078c2: 4000 ands r0, r0 +100078c4: 4000500c .word 0x4000500c +100078c8: 5000 str r0, [r0, r0] +100078ca: 4000 ands r0, r0 +100078cc: aaaaaaab .word 0xaaaaaaab + +100078d0 : +100078d0: 4b01 ldr r3, [pc, #4] ; (100078d8 ) +100078d2: 6018 .short 0x6018 +100078d4: 4770 bx lr +100078d6: bf00 nop +100078d8: 001c movs r4, r3 +100078da: 1fff subs r7, r7, #7 + +100078dc : +100078dc: 490f ldr r1, [pc, #60] ; (1000791c ) +100078de: b4f0 push {r4, r5, r6, r7} +100078e0: 684c4e0f .word 0x684c4e0f +100078e4: 688a ldr r2, [r1, #8] +100078e6: 4d0f ldr r5, [pc, #60] ; (10007924 ) +100078e8: 6830 ldr r0, [r6, #0] +100078ea: 2300 movs r3, #0 +100078ec: 4f0e ldr r7, [pc, #56] ; (10007928 ) +100078ee: fbe5 2304 umlal r2, r3, r5, r4 +100078f2: f243 0439 movw r4, #12345 ; 0x3039 +100078f6: fb07 4700 mla r7, r7, r0, r4 +100078fa: 6808 ldr r0, [r1, #0] +100078fc: 461c mov r4, r3 +100078fe: ea80 .short 0xea80 +10007900: 3040 adds r0, #64 ; 0x40 +10007902: ea80 .short 0xea80 +10007904: 4350 muls r0, r2 +10007906: ea83 1343 eor.w r3, r3, r3, lsl #5 +1000790a: 18b8 adds r0, r7, r2 +1000790c: 608c str r4, [r1, #8] +1000790e: 6037 .short 0x6037 +10007910: 4418 add r0, r3 +10007912: 604a .short 0x604a +10007914: 600b str r3, [r1, #0] +10007916: bcf0 .short 0xbcf0 +10007918: 4770 bx lr +1000791a: bf00 nop +1000791c: 1094 asrs r4, r2, #2 +1000791e: 1fff .short 0x1fff +10007920: 001c movs r4, r3 +10007922: 1fff subs r7, r7, #7 +10007924: 5ead ldrsh r5, [r5, r2] +10007926: 29a6 .short 0x29a6 +10007928: 0dcd lsrs r5, r1, #23 +1000792a: 0001 movs r1, r0 + +1000792c : +1000792c: 4606b570 .word 0x4606b570 +10007930: b082 sub sp, #8 +10007932: 2500 movs r5, #0 +10007934: e01db918 .word 0xe01db918 +10007938: 3501 adds r5, #1 +1000793a: 42b5 .short 0x42b5 +1000793c: d01a beq.n 10007974 +1000793e: f7ff .short 0xf7ff +10007940: ffcd 4604 vrsubhn.i16 d20, , q2 +10007944: ffcaf7ff .word 0xffcaf7ff +10007948: 4a0c ldr r2, [pc, #48] ; (1000797c ) +1000794a: 4002 .short 0x4002 +1000794c: f102 5340 add.w r3, r2, #805306368 ; 0x30000000 +10007950: 6819601c .word 0x6819601c +10007954: 42a1 cmp r1, r4 +10007956: d0ef .short 0xd0ef +10007958: 4909 ldr r1, [pc, #36] ; (10007980 ) +1000795a: 6808 .short 0x6808 +1000795c: f010 4080 ands.w r0, r0, #1073741824 ; 0x40000000 +10007960: 681bd009 .word 0x681bd009 +10007964: 4629 mov r1, r5 +10007966: 9300 .short 0x9300 +10007968: 4806 ldr r0, [pc, #24] ; (10007984 ) +1000796a: 4623 .short 0x4623 +1000796c: 4c06 ldr r4, [pc, #24] ; (10007988 ) +1000796e: 47a0 .short 0x47a0 +10007970: 2000 movs r0, #0 +10007972: e000 .short 0xe000 +10007974: 2001 movs r0, #1 +10007976: b002 .short 0xb002 +10007978: bd70 pop {r4, r5, r6, pc} +1000797a: bf00 .short 0xbf00 +1000797c: fffc 001f vshr.u32 d16, d15, #4 +10007980: 10000314 .word 0x10000314 +10007984: 8574 strh r4, [r6, #42] ; 0x2a +10007986: 1004 .short 0x1004 +10007988: f39d 0000 ; instruction: 0xf39d0000 + +1000798c : +1000798c: e92d4aad .word 0xe92d4aad +10007990: 4ff0 ldr r7, [pc, #960] ; (10007d54 ) +10007992: 6812 .short 0x6812 +10007994: 4bac ldr r3, [pc, #688] ; (10007c48 ) +10007996: f3c2 .short 0xf3c2 +10007998: 1202 asrs r2, r0, #8 +1000799a: 4413 add r3, r2 +1000799c: 00dbb08b .word 0x00dbb08b +100079a0: 9302 str r3, [sp, #8] +100079a2: 9c02 .short 0x9c02 +100079a4: 681b ldr r3, [r3, #0] +100079a6: 6864 .short 0x6864 +100079a8: b2d8 uxtb r0, r3 +100079aa: 9401 .short 0x9401 +100079ac: f3c3 2307 ubfx r3, r3, #8, #8 +100079b0: b2e24043 .word 0xb2e24043 +100079b4: f3c4 2507 ubfx r5, r4, #8, #8 +100079b8: 2bff9e01 .word 0x2bff9e01 +100079bc: ea85 0502 eor.w r5, r5, r2 +100079c0: 4307f3c4 .word 0x4307f3c4 +100079c4: 49a1 ldr r1, [pc, #644] ; (10007c4c ) +100079c6: bf0c .short 0xbf0c +100079c8: 4604 moveq r4, r0 +100079ca: f04f 34ff movne.w r4, #4294967295 +100079ce: ea83 .short 0xea83 +100079d0: 6016 str r6, [r2, #0] +100079d2: 2dff .short 0x2dff +100079d4: bf0c ite eq +100079d6: 4615 .short 0x4615 +100079d8: f04f 35ff movne.w r5, #4294967295 +100079dc: 28ff79c9 .word 0x28ff79c9 +100079e0: bf0c ite eq +100079e2: 461e .short 0x461e +100079e4: f04f 36ff movne.w r6, #4294967295 +100079e8: 91032c01 .word 0x91032c01 +100079ec: f000 80d9 beq.w 10007ba2 +100079f0: 48972100 .word 0x48972100 +100079f4: f44f 5280 mov.w r2, #4096 ; 0x1000 +100079f8: 460e4b96 .word 0x460e4b96 +100079fc: 4798 blx r3 +100079fe: f8df .short 0xf8df +10007a00: b268 sxtb r0, r5 +10007a02: f8df .short 0xf8df +10007a04: a268 add r2, pc, #416 ; (adr r2, 10007ba8 ) +10007a06: 46b1 .short 0x46b1 +10007a08: 4893 ldr r0, [pc, #588] ; (10007c58 ) +10007a0a: ea4f 2209 mov.w r2, r9, lsl #8 +10007a0e: 6803 .short 0x6803 +10007a10: b2db uxtb r3, r3 +10007a12: 4313 orrs r3, r2 +10007a14: f8db6003 .word 0xf8db6003 +10007a18: 3000 adds r0, #0 +10007a1a: 049c .short 0x049c +10007a1c: f100 810d bmi.w 10007c3a +10007a20: f04f 0800 mov.w r8, #0 +10007a24: 24014647 .word 0x24014647 +10007a28: e004 b.n 10007a34 +10007a2a: 2e00 cmp r6, #0 +10007a2c: d153 bne.n 10007ad6 +10007a2e: 3401 adds r4, #1 +10007a30: 2c0e cmp r4, #14 +10007a32: d03f beq.n 10007ab4 +10007a34: 3000f8da .word 0x3000f8da +10007a38: 1e65 subs r5, r4, #1 +10007a3a: f423 .short 0xf423 +10007a3c: 037f lsls r7, r7, #13 +10007a3e: ea43 .short 0xea43 +10007a40: 4305 orrs r5, r0 +10007a42: f8ca .short 0xf8ca +10007a44: 3000 adds r0, #0 +10007a46: f8db .short 0xf8db +10007a48: 3000 adds r0, #0 +10007a4a: 0499 lsls r1, r3, #18 +10007a4c: 80e9f100 .word 0x80e9f100 +10007a50: f242 7010 movw r0, #10000 ; 0x2710 +10007a54: ff6af7ff .word 0xff6af7ff +10007a58: 2801 cmp r0, #1 +10007a5a: d1e6 bne.n 10007a2a +10007a5c: f1b8 0f00 cmp.w r8, #0 +10007a60: f8dbd10a .word 0xf8dbd10a +10007a64: 3000 adds r0, #0 +10007a66: 049a lsls r2, r3, #18 +10007a68: f100 80e2 bmi.w 10007c30 +10007a6c: a80a add r0, sp, #40 ; 0x28 +10007a6e: eb00 .short 0xeb00 +10007a70: 0386 lsls r6, r0, #14 +10007a72: f843 .short 0xf843 +10007a74: 9c10 ldr r4, [sp, #64] ; 0x40 +10007a76: 3601 .short 0x3601 +10007a78: 4a781e73 .word 0x4a781e73 +10007a7c: eb07 2143 add.w r1, r7, r3, lsl #9 +10007a80: eb00a80a .word 0xeb00a80a +10007a84: 0383 lsls r3, r0, #14 +10007a86: 3701 adds r7, #1 +10007a88: eb02 0281 add.w r2, r2, r1, lsl #2 +10007a8c: 2c0b cmp r4, #11 +10007a8e: f843 7c18 str.w r7, [r3, #-24] +10007a92: 6055 .short 0x6055 +10007a94: d80e bhi.n 10007ab4 +10007a96: f8db .short 0xf8db +10007a98: 3000 adds r0, #0 +10007a9a: 049b .short 0x049b +10007a9c: bf58 it pl +10007a9e: f04f .short 0xf04f +10007aa0: 0801 lsrs r1, r0, #32 +10007aa2: d5c4 .short 0xd5c4 +10007aa4: 462a mov r2, r5 +10007aa6: 486e .short 0x486e +10007aa8: 4649 mov r1, r9 +10007aaa: 4b6e .short 0x4b6e +10007aac: 4798 blx r3 ; unpredictable branch in IT block + +10007aae: f04f .short 0xf04f +10007ab0: 0801 lsrs r1, r0, #32 +10007ab2: e7bc .short 0xe7bc +10007ab4: 2e02 cmp r6, #2 +10007ab6: d811 bhi.n 10007adc ; unpredictable +10007ab8: f8dbb926 .word 0xf8dbb926 +10007abc: 3000 adds r0, #0 +10007abe: 049b lsls r3, r3, #18 +10007ac0: f100 810b bmi.w 10007cda +10007ac4: 0901f109 .word 0x0901f109 +10007ac8: f1b9 0f08 cmp.w r9, #8 +10007acc: d19c bne.n 10007a08 +10007ace: 2000 movs r0, #0 +10007ad0: e8bdb00b .word 0xe8bdb00b +10007ad4: 8ff0 ldrh r0, [r6, #62] ; 0x3e +10007ad6: 1c73 .short 0x1c73 +10007ad8: 2b02 cmp r3, #2 +10007ada: d958 .short 0xd958 +10007adc: f8db 3000 ldr.w r3, [fp] +10007ae0: 049c4d61 .word 0x049c4d61 +10007ae4: f100 80cc bmi.w 10007c80 +10007ae8: 9b059c04 .word 0x9b059c04 +10007aec: aa0a add r2, sp, #40 ; 0x28 +10007aee: 42a3 .short 0x42a3 +10007af0: bf34 ite cc +10007af2: 2300 .short 0x2300 +10007af4: 2301 movcs r3, #1 +10007af6: 009c .short 0x009c +10007af8: 4422 add r2, r4 +10007afa: f852 .short 0xf852 +10007afc: 6c18 ldr r0, [r3, #64] ; 0x40 +10007afe: f8df .short 0xf8df +10007b00: 815c strh r4, [r3, #10] +10007b02: f852 .short 0xf852 +10007b04: 5c10 ldrb r0, [r2, r0] +10007b06: ea4f .short 0xea4f +10007b08: 2943 cmp r1, #67 ; 0x43 +10007b0a: f3c6 .short 0xf3c6 +10007b0c: 49520647 .word 0x49520647 +10007b10: 4a56 ldr r2, [pc, #344] ; (10007c6c ) +10007b12: 6808 .short 0x6808 +10007b14: eb09 0306 add.w r3, r9, r6 +10007b18: b2c0 uxtb r0, r0 +10007b1a: ea40 .short 0xea40 +10007b1c: 2505 movs r5, #5 +10007b1e: 600d .short 0x600d +10007b20: 6811 ldr r1, [r2, #0] +10007b22: eb08 .short 0xeb08 +10007b24: 0383 lsls r3, r0, #14 +10007b26: 7918 ldrb r0, [r3, #4] +10007b28: 017ff421 .word 0x017ff421 +10007b2c: ae0a add r6, sp, #40 ; 0x28 +10007b2e: ea41 .short 0xea41 +10007b30: 4100 asrs r0, r0 +10007b32: 6011 .short 0x6011 +10007b34: 4434 add r4, r6 +10007b36: f814 .short 0xf814 +10007b38: 2c10 cmp r4, #16 +10007b3a: 9c01 .short 0x9c01 +10007b3c: 9e02 ldr r6, [sp, #8] +10007b3e: 791b .short 0x791b +10007b40: f362 0407 bfi r4, r2, #0, #8 +10007b44: 43d2 mvns r2, r2 +10007b46: f362 240f bfi r4, r2, #8, #8 +10007b4a: 6872 .short 0x6872 +10007b4c: 4417f363 .word 0x4417f363 +10007b50: 43db mvns r3, r3 +10007b52: f363 .short 0xf363 +10007b54: 3201641f .word 0x3201641f +10007b58: 9401 str r4, [sp, #4] +10007b5a: d04b .short 0xd04b +10007b5c: 9b01 ldr r3, [sp, #4] +10007b5e: 2401 .short 0x2401 +10007b60: 0307f364 .word 0x0307f364 +10007b64: 9301 str r3, [sp, #4] +10007b66: 9e01 .short 0x9e01 +10007b68: f06f 0301 mvn.w r3, #1 +10007b6c: 260ff363 .word 0x260ff363 +10007b70: 9601 str r6, [sp, #4] +10007b72: 9e02 .short 0x9e02 +10007b74: 6833 ldr r3, [r6, #0] +10007b76: 9e01 ldr r6, [sp, #4] +10007b78: 3301 adds r3, #1 +10007b7a: ea6f 4606 mvn.w r6, r6, lsl #16 +10007b7e: ea6f .short 0xea6f +10007b80: 4616 mov r6, r2 +10007b82: 9601 str r6, [sp, #4] +10007b84: d02a beq.n 10007bdc +10007b86: 4620 mov r0, r4 +10007b88: b00b add sp, #44 ; 0x2c +10007b8a: e8bd .short 0xe8bd +10007b8c: 8ff0 ldrh r0, [r6, #62] ; 0x3e +10007b8e: ac0a .short 0xac0a +10007b90: eb04 0286 add.w r2, r4, r6, lsl #2 +10007b94: 2100 movs r1, #0 +10007b96: f842 9c10 str.w r9, [r2, #-16] +10007b9a: 461e mov r6, r3 +10007b9c: f842 1c18 str.w r1, [r2, #-24] +10007ba0: e78a b.n 10007ab8 +10007ba2: 1c6b adds r3, r5, #1 +10007ba4: af24f43f .word 0xaf24f43f +10007ba8: 1c77 adds r7, r6, #1 +10007baa: f43f af21 beq.w 100079f0 +10007bae: 4b30 ldr r3, [pc, #192] ; (10007c70 ) +10007bb0: 200a movs r0, #10 +10007bb2: 4798 blx r3 +10007bb4: 4b2d4a28 .word 0x4b2d4a28 +10007bb8: 6811 ldr r1, [r2, #0] +10007bba: 2003 movs r0, #3 +10007bbc: b2c9 uxtb r1, r1 +10007bbe: ea41 2505 orr.w r5, r1, r5, lsl #8 +10007bc2: 6015 .short 0x6015 +10007bc4: 681a ldr r2, [r3, #0] +10007bc6: f422 .short 0xf422 +10007bc8: 027f lsls r7, r7, #9 +10007bca: ea42 4606 orr.w r6, r2, r6, lsl #16 +10007bce: 601e .short 0x601e +10007bd0: f7ff feac bl 1000792c +10007bd4: f43f2800 .word 0xf43f2800 +10007bd8: af0b add r7, sp, #44 ; 0x2c +10007bda: e7d4 .short 0xe7d4 +10007bdc: 9b02 ldr r3, [sp, #8] +10007bde: 601e .short 0x601e +10007be0: 9e03 ldr r6, [sp, #12] +10007be2: 2e04 cmp r6, #4 +10007be4: d016 beq.n 10007c14 +10007be6: ab0a add r3, sp, #40 ; 0x28 +10007be8: 0003e913 .word 0x0003e913 +10007bec: f7fe fef2 bl 100069d4 +10007bf0: e76d4620 .word 0xe76d4620 +10007bf4: 9b03 ldr r3, [sp, #12] +10007bf6: 6074 .short 0x6074 +10007bf8: 2b04 cmp r3, #4 +10007bfa: d005 .short 0xd005 +10007bfc: ae0a add r6, sp, #40 ; 0x28 +10007bfe: e916 .short 0xe916 +10007c00: 0003 movs r3, r0 +10007c02: f7fe .short 0xf7fe +10007c04: fee7 e7a9 cdp2 7, 14, cr14, cr7, cr9, {5} +10007c08: e914ac0a .word 0xe914ac0a +10007c0c: 0003 movs r3, r0 +10007c0e: f7fe .short 0xf7fe +10007c10: ffaf e7a3 vabdl.u32 q7, d31, d19 +10007c14: e912aa0a .word 0xe912aa0a +10007c18: 0003 movs r3, r0 +10007c1a: f7fe .short 0xf7fe +10007c1c: ffa9 4620 vrsubhn.i64 d4, , q8 +10007c20: f8dae756 .word 0xf8dae756 +10007c24: 1000 asrs r0, r0, #32 +10007c26: 462a .short 0x462a +10007c28: 4b0e ldr r3, [pc, #56] ; (10007c64 ) +10007c2a: 4812 .short 0x4812 +10007c2c: 4798 blx r3 +10007c2e: e70f .short 0xe70f +10007c30: 4631 mov r1, r6 +10007c32: 4a0c .short 0x4a0c +10007c34: 4810 ldr r0, [pc, #64] ; (10007c78 ) +10007c36: 4790 .short 0x4790 +10007c38: e718 b.n 10007a6c +10007c3a: 6801 .short 0x6801 +10007c3c: 4b09 ldr r3, [pc, #36] ; (10007c64 ) +10007c3e: 480f .short 0x480f +10007c40: 4798 blx r3 +10007c42: e6ed .short 0xe6ed +10007c44: 0014 movs r4, r2 +10007c46: 4000 .short 0x4000 +10007c48: 1230 asrs r0, r6, #8 +10007c4a: 1300 asrs r0, r0, #12 +10007c4c: f19c 1004 ; instruction: 0xf19c1004 +10007c50: 0020 movs r0, r4 +10007c52: 1fff .short 0x1fff +10007c54: f511 0000 adds.w r0, r1, #8388608 ; 0x800000 +10007c58: 40005008 .word 0x40005008 +10007c5c: 001c movs r4, r3 +10007c5e: 1fff .short 0x1fff +10007c60: 8608 strh r0, [r1, #48] ; 0x30 +10007c62: 1004 asrs r4, r0, #32 +10007c64: 0000f39d .word 0x0000f39d +10007c68: 0310 lsls r0, r2, #12 +10007c6a: 1000 .short 0x1000 +10007c6c: 0300 lsls r0, r0, #12 +10007c6e: 4000 .short 0x4000 +10007c70: 0899 lsrs r1, r3, #2 +10007c72: 0000 .short 0x0000 +10007c74: 85c8 strh r0, [r1, #46] ; 0x2e +10007c76: 1004 .short 0x1004 +10007c78: 85ec strh r4, [r5, #46] ; 0x2e +10007c7a: 1004 .short 0x1004 +10007c7c: 85a4 strh r4, [r4, #44] ; 0x2c +10007c7e: 1004 .short 0x1004 +10007c80: 9c04 ldr r4, [sp, #16] +10007c82: 481b .short 0x481b +10007c84: 4621 mov r1, r4 +10007c86: 9a06 .short 0x9a06 +10007c88: 4f1a ldr r7, [pc, #104] ; (10007cf4 ) +10007c8a: 47b8 .short 0x47b8 +10007c8c: 682b ldr r3, [r5, #0] +10007c8e: 0498 .short 0x0498 +10007c90: f57f af2b bpl.w 10007aea +10007c94: 9a079e05 .word 0x9a079e05 +10007c98: 4631 mov r1, r6 +10007c9a: 4817 .short 0x4817 +10007c9c: 47b8 blx r7 +10007c9e: 42b4 .short 0x42b4 +10007ca0: bf8c ite hi +10007ca2: 2300 .short 0x2300 +10007ca4: 2301 movls r3, #1 +10007ca6: 009c .short 0x009c +10007ca8: aa0a add r2, sp, #40 ; 0x28 +10007caa: 4422 .short 0x4422 +10007cac: 6829 ldr r1, [r5, #0] +10007cae: f852 .short 0xf852 +10007cb0: 6c18 ldr r0, [r3, #64] ; 0x40 +10007cb2: 0489 .short 0x0489 +10007cb4: ea4f 0656 mov.w r6, r6, lsr #1 +10007cb8: d512b2f6 .word 0xd512b2f6 +10007cbc: ea4f 2943 mov.w r9, r3, lsl #9 +10007cc0: 8040f8df .word 0x8040f8df +10007cc4: f852 5c10 ldr.w r5, [r2, #-16] +10007cc8: 0306eb09 .word 0x0306eb09 +10007ccc: eb08 0383 add.w r3, r8, r3, lsl #2 +10007cd0: 4629685a .word 0x4629685a +10007cd4: 4809 ldr r0, [pc, #36] ; (10007cfc ) +10007cd6: 47b8 blx r7 +10007cd8: 4c06e719 .word 0x4c06e719 +10007cdc: 4808 ldr r0, [pc, #32] ; (10007d00 ) +10007cde: 47a0 .short 0x47a0 +10007ce0: e6f0 b.n 10007ac4 +10007ce2: f852 .short 0xf852 +10007ce4: 5c10 ldrb r0, [r2, r0] +10007ce6: ea4f .short 0xea4f +10007ce8: 2943 cmp r1, #67 ; 0x43 +10007cea: f8df .short 0xf8df +10007cec: 8018 strh r0, [r3, #0] +10007cee: e70e .short 0xe70e +10007cf0: 863c strh r4, [r7, #48] ; 0x30 +10007cf2: 1004 .short 0x1004 +10007cf4: 0000f39d .word 0x0000f39d +10007cf8: 8670 strh r0, [r6, #50] ; 0x32 +10007cfa: 1004 .short 0x1004 +10007cfc: 86a4 strh r4, [r4, #52] ; 0x34 +10007cfe: 1004 .short 0x1004 +10007d00: 86d4 strh r4, [r2, #54] ; 0x36 +10007d02: 1004 .short 0x1004 +10007d04: 001c movs r4, r3 +10007d06: 1fff .short 0x1fff + +10007d08 : +10007d08: b538 push {r3, r4, r5, lr} +10007d0a: 4b21 .short 0x4b21 +10007d0c: 681b ldr r3, [r3, #0] +10007d0e: 005b .short 0x005b +10007d10: d439 bmi.n 10007d86 +10007d12: 4920 .short 0x4920 +10007d14: 4b20 ldr r3, [pc, #128] ; (10007d98 ) +10007d16: 6808 .short 0x6808 +10007d18: 4a20 ldr r2, [pc, #128] ; (10007d9c ) +10007d1a: f3c0 .short 0xf3c0 +10007d1c: 0013 movs r3, r2 +10007d1e: f440 .short 0xf440 +10007d20: 1040 asrs r0, r0, #1 +10007d22: 6008 .short 0x6008 +10007d24: 6819 ldr r1, [r3, #0] +10007d26: 4d1e .short 0x4d1e +10007d28: f021 0107 bic.w r1, r1, #7 +10007d2c: f041 0102 orr.w r1, r1, #2 +10007d30: 6019 str r1, [r3, #0] +10007d32: 6811 ldr r1, [r2, #0] +10007d34: 2400 movs r4, #0 +10007d36: f421 6140 bic.w r1, r1, #3072 ; 0xc00 +10007d3a: 6011 .short 0x6011 +10007d3c: 602c str r4, [r5, #0] +10007d3e: f853 .short 0xf853 +10007d40: 2cd4 cmp r4, #212 ; 0xd4 +10007d42: 4621 .short 0x4621 +10007d44: f442 6280 orr.w r2, r2, #1024 ; 0x400 +10007d48: 2cd4f843 .word 0x2cd4f843 +10007d4c: f853 2cd4 ldr.w r2, [r3, #-212] +10007d50: 20c8 movs r0, #200 ; 0xc8 +10007d52: f442 6200 orr.w r2, r2, #2048 ; 0x800 +10007d56: f843 2cd4 str.w r2, [r3, #-212] +10007d5a: 2201 movs r2, #1 +10007d5c: 4b11 ldr r3, [pc, #68] ; (10007da4 ) +10007d5e: 4798 .short 0x4798 +10007d60: 4b11 ldr r3, [pc, #68] ; (10007da8 ) +10007d62: 602c .short 0x602c +10007d64: 681a ldr r2, [r3, #0] +10007d66: f640 .short 0xf640 +10007d68: 30b8 adds r0, #184 ; 0xb8 +10007d6a: f042 0240 orr.w r2, r2, #64 ; 0x40 +10007d6e: 601a .short 0x601a +10007d70: 4b0e ldr r3, [pc, #56] ; (10007dac ) +10007d72: 4798 .short 0x4798 +10007d74: 480e ldr r0, [pc, #56] ; (10007db0 ) +10007d76: f7ff .short 0xf7ff +10007d78: fc21 f7ff stc2 7, cr15, [r1], #-1020 ; 0xfffffc04 +10007d7c: 1b00fe07 .word 0x1b00fe07 +10007d80: bf18 it ne +10007d82: 2001 .short 0x2001 +10007d84: bd38 pop {r3, r4, r5, pc} +10007d86: 4b0b .short 0x4b0b +10007d88: 480b ldr r0, [pc, #44] ; (10007db8 ) +10007d8a: 4798 .short 0x4798 +10007d8c: e7c1 b.n 10007d12 ; unpredictable branch in IT block + +10007d8e: bf00 .short 0xbf00 +10007d90: 0314 lsls r4, r2, #12 +10007d92: 1000 .short 0x1000 +10007d94: 0040 lsls r0, r0, #1 +10007d96: 4000 .short 0x4000 +10007d98: 0304 lsls r4, r0, #12 +10007d9a: 4000 .short 0x4000 +10007d9c: 0250 lsls r0, r2, #9 +10007d9e: 4000 .short 0x4000 +10007da0: 0340 lsls r0, r0, #13 +10007da2: 4000 .short 0x4000 +10007da4: 2b39 cmp r3, #57 ; 0x39 +10007da6: 0000 .short 0x0000 +10007da8: 0210 lsls r0, r2, #8 +10007daa: 4000 andne r0, r0 +10007dac: 00000899 .word 0x00000899 +10007db0: 1020 asrs r0, r4, #32 +10007db2: 1fff .short 0x1fff +10007db4: f39d 0000 ; instruction: 0xf39d0000 +10007db8: 100486f0 .word 0x100486f0 + +10007dbc : +10007dbc: b508 push {r3, lr} +10007dbe: 4b02 .short 0x4b02 +10007dc0: 4798 blx r3 +10007dc2: 4b02 .short 0x4b02 +10007dc4: 6018 str r0, [r3, #0] +10007dc6: bd08 .short 0xbd08 +10007dc8: 0355 lsls r5, r2, #13 +10007dca: 0000 movs r0, r0 +10007dcc: 1004d55c .word 0x1004d55c + +10007dd0 : +10007dd0: b508 push {r3, lr} +10007dd2: 4b0c .short 0x4b0c +10007dd4: 681b ldr r3, [r3, #0] +10007dd6: 061b .short 0x061b +10007dd8: d502 bpl.n 10007de0 +10007dda: 4b0b .short 0x4b0b +10007ddc: 781b ldrb r3, [r3, #0] +10007dde: b963 .short 0xb963 +10007de0: 4b0a ldr r3, [pc, #40] ; (10007e0c ) +10007de2: 480b .short 0x480b +10007de4: 681b ldr r3, [r3, #0] +10007de6: f44f 61c8 mov.w r1, #1600 ; 0x640 +10007dea: 4a0a ldr r2, [pc, #40] ; (10007e14 ) +10007dec: f91cf03a .word 0xf91cf03a +10007df0: e8bd 4008 ldmia.w sp!, {r3, lr} +10007df4: 4806 ldr r0, [pc, #24] ; (10007e10 ) +10007df6: f017 .short 0xf017 +10007df8: bd03 pop {r0, r1, pc} +10007dfa: 4807 .short 0x4807 +10007dfc: f03a f984 bl 10042108 +10007e00: bf00e7ee .word 0xbf00e7ee +10007e04: d7e8 bvc.n 10007dd8 +10007e06: 1004 .short 0x1004 +10007e08: d7f8 bvc.n 10007dfc +10007e0a: 1004 .short 0x1004 +10007e0c: f3e4 1004 ; instruction: 0xf3e41004 +10007e10: 1005207c .word 0x1005207c +10007e14: 3db0 subs r5, #176 ; 0xb0 +10007e16: 1004 .short 0x1004 +10007e18: 3d90 subs r5, #144 ; 0x90 +10007e1a: 1004 .short 0x1004 + +10007e1c : +10007e1c: b570 push {r4, r5, r6, lr} +10007e1e: 4b51 .short 0x4b51 +10007e20: 4a51 ldr r2, [pc, #324] ; (10007f68 ) +10007e22: 681b .short 0x681b +10007e24: 6812 ldr r2, [r2, #0] +10007e26: 061b .short 0x061b +10007e28: b084 sub sp, #16 +10007e2a: 6a56 .short 0x6a56 +10007e2c: d504 bpl.n 10007e38 +10007e2e: 4b4f .short 0x4b4f +10007e30: 781b ldrb r3, [r3, #0] +10007e32: 2b00 .short 0x2b00 +10007e34: f040 8091 bne.w 10007f5a +10007e38: d0752e00 .word 0xd0752e00 +10007e3c: 6833 ldr r3, [r6, #0] +10007e3e: b903 .short 0xb903 +10007e40: e7fe b.n 10007e40 +10007e42: f44f .short 0xf44f +10007e44: 61c8 str r0, [r1, #28] +10007e46: 4a4a .short 0x4a4a +10007e48: 484a ldr r0, [pc, #296] ; (10007f74 ) +10007e4a: f03a .short 0xf03a +10007e4c: f8ed 4849 str??.w r4, [sp, #2121] ; 0x849 +10007e50: fcd6f017 .word 0xfcd6f017 +10007e54: f996 3008 ldrsb.w r3, [r6, #8] +10007e58: f44f4846 .word 0xf44f4846 +10007e5c: 61c8 str r0, [r1, #28] +10007e5e: 2b00 .short 0x2b00 +10007e60: d174 bne.n 10007f4c +10007e62: 4a45 .short 0x4a45 +10007e64: f03a f8e0 bl 10042028 +10007e68: f0174842 .word 0xf0174842 +10007e6c: fcc9 68f3 stc2l 8, cr6, [r9], {243} ; 0xf3 +10007e70: f44f4840 .word 0xf44f4840 +10007e74: 61c8 str r0, [r1, #28] +10007e76: 2b00 .short 0x2b00 +10007e78: d161 bne.n 10007f3e +10007e7a: 4a40 .short 0x4a40 +10007e7c: f03a f8d4 bl 10042028 +10007e80: f017483c .word 0xf017483c +10007e84: fcbd 6930 ldc2 9, cr6, [sp], #192 ; 0xc0 +10007e88: ffc8f00b .word 0xffc8f00b +10007e8c: ad04 add r5, sp, #16 +10007e8e: f845 .short 0xf845 +10007e90: 0d04 lsrs r4, r0, #20 +10007e92: 4628 .short 0x4628 +10007e94: f00b fcba bl 1001380c +10007e98: 46038ab2 .word 0x46038ab2 +10007e9c: 9200 str r2, [sp, #0] +10007e9e: 6872 .short 0x6872 +10007ea0: f44f 61c8 mov.w r1, #1600 ; 0x640 +10007ea4: 48339201 .word 0x48339201 +10007ea8: 4a35 ldr r2, [pc, #212] ; (10007f80 ) +10007eaa: f03a .short 0xf03a +10007eac: f8bd 4831 ldrh.w r4, [sp, #2097] ; 0x831 +10007eb0: fca6f017 .word 0xfca6f017 +10007eb4: 6ab4 ldr r4, [r6, #40] ; 0x28 +10007eb6: b9ec .short 0xb9ec +10007eb8: e033 b.n 10007f22 +10007eba: 4a30 .short 0x4a30 +10007ebc: f03a f8b4 bl 10042028 +10007ec0: f017482c .word 0xf017482c +10007ec4: fc9d 6920 ldc2 9, cr6, [sp], {32} +10007ec8: ffa8f00b .word 0xffa8f00b +10007ecc: 9003 str r0, [sp, #12] +10007ece: 4628 .short 0x4628 +10007ed0: f00b fc9c bl 1001380c +10007ed4: 46038aa2 .word 0x46038aa2 +10007ed8: 9200 str r2, [sp, #0] +10007eda: 6862 .short 0x6862 +10007edc: f44f 61c8 mov.w r1, #1600 ; 0x640 +10007ee0: 48249201 .word 0x48249201 +10007ee4: 4a26 ldr r2, [pc, #152] ; (10007f80 ) +10007ee6: f03a .short 0xf03a +10007ee8: f89f 4822 ldrb.w r4, [pc, #2082] ; 1000870e +10007eec: fc88f017 .word 0xfc88f017 +10007ef0: 6aa4 ldr r4, [r4, #40] ; 0x28 +10007ef2: b1b4 .short 0xb1b4 +10007ef4: f44f 61c8 mov.w r1, #1600 ; 0x640 +10007ef8: 68234a22 .word 0x68234a22 +10007efc: 481d ldr r0, [pc, #116] ; (10007f74 ) +10007efe: f03a .short 0xf03a +10007f00: f893 481c ldrb.w r4, [r3, #2076] ; 0x81c +10007f04: fc7cf017 .word 0xfc7cf017 +10007f08: 68e3 ldr r3, [r4, #12] +10007f0a: f44f .short 0xf44f +10007f0c: 61c8 str r0, [r1, #28] +10007f0e: 4a1e .short 0x4a1e +10007f10: 4818 ldr r0, [pc, #96] ; (10007f74 ) +10007f12: 2b00 .short 0x2b00 +10007f14: d0d1 beq.n 10007eba +10007f16: f03a f887 bl 10042028 +10007f1a: 4816 .short 0x4816 +10007f1c: f017 fc70 bl 1001f800 +10007f20: 6a76e7d1 .word 0x6a76e7d1 +10007f24: 2e00 cmp r6, #0 +10007f26: d189 .short 0xd189 +10007f28: f44f 61c8 mov.w r1, #1600 ; 0x640 +10007f2c: 48114a17 .word 0x48114a17 +10007f30: f03a f87a bl 10042028 +10007f34: f017480f .word 0xf017480f +10007f38: fc63 b004 stc2l 0, cr11, [r3], #-16 +10007f3c: 4a12bd70 .word 0x4a12bd70 +10007f40: f03a f872 bl 10042028 +10007f44: f017480b .word 0xf017480b +10007f48: fc5b e79c mrrc2 7, 9, lr, fp, cr12 +10007f4c: f03a4a10 .word 0xf03a4a10 +10007f50: f86b 4808 str??.w r4, [fp, ] +10007f54: fc54f017 .word 0xfc54f017 +10007f58: e789 b.n 10007e6e +10007f5a: 480e .short 0x480e +10007f5c: f03a f8d4 bl 10042108 +10007f60: bf00e76a .word 0xbf00e76a +10007f64: d7e8 bvc.n 10007f38 +10007f66: 1004 .short 0x1004 +10007f68: 006c lsls r4, r5, #1 +10007f6a: 1005 .short 0x1005 +10007f6c: d7f8 bvc.n 10007f60 +10007f6e: 1004 .short 0x1004 +10007f70: 3de8 subs r5, #232 ; 0xe8 +10007f72: 1004 .short 0x1004 +10007f74: 207c movs r0, #124 ; 0x7c +10007f76: 1005 .short 0x1005 +10007f78: 3df8 subs r5, #248 ; 0xf8 +10007f7a: 1004 .short 0x1004 +10007f7c: 3e08 subs r6, #8 +10007f7e: 1004 .short 0x1004 +10007f80: 3e18 subs r6, #24 +10007f82: 1004 .short 0x1004 +10007f84: 3e38 subs r6, #56 ; 0x38 +10007f86: 1004 .short 0x1004 +10007f88: 3e10 subs r6, #16 +10007f8a: 1004 .short 0x1004 +10007f8c: 3e4c subs r6, #76 ; 0x4c +10007f8e: 1004 .short 0x1004 +10007f90: 3e00 subs r6, #0 +10007f92: 1004 .short 0x1004 +10007f94: 3dc0 subs r5, #192 ; 0xc0 +10007f96: 1004 .short 0x1004 + +10007f98 : +10007f98: b082 sub sp, #8 +10007f9a: b5f0 .short 0xb5f0 +10007f9c: 4604 mov r4, r0 +10007f9e: 68c0 .short 0x68c0 +10007fa0: b087 sub sp, #28 +10007fa2: 2801 .short 0x2801 +10007fa4: 930d str r3, [sp, #52] ; 0x34 +10007fa6: 460e .short 0x460e +10007fa8: 4615 mov r5, r2 +10007faa: d00f beq.n 10007fcc +10007fac: 2800 cmp r0, #0 +10007fae: d12e bne.n 1000800e +10007fb0: f994 3008 ldrsb.w r3, [r4, #8] +10007fb4: 2b00 cmp r3, #0 +10007fb6: d13f bne.n 10008038 +10007fb8: 4b3a ldr r3, [pc, #232] ; (100080a4 ) +10007fba: 681b ldr r3, [r3, #0] +10007fbc: 061a lsls r2, r3, #24 +10007fbe: d446 bmi.n 1000804e +10007fc0: 2007 movs r0, #7 +10007fc2: b007 add sp, #28 +10007fc4: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +10007fc8: b002 add sp, #8 +10007fca: 4770 bx lr +10007fcc: f994 3008 ldrsb.w r3, [r4, #8] +10007fd0: b31b cbz r3, 1000801a +10007fd2: af02 add r7, sp, #8 +10007fd4: 2100 movs r1, #0 +10007fd6: 2210 movs r2, #16 +10007fd8: 4638 mov r0, r7 +10007fda: f03a f8c7 bl 1004216c +10007fde: 2302 movs r3, #2 +10007fe0: 8aa0 ldrh r0, [r4, #20] +10007fe2: f88d 3009 strb.w r3, [sp, #9] +10007fe6: f00b ff11 bl 10013e0c +10007fea: f8ad 000a strh.w r0, [sp, #10] +10007fee: 6920 ldr r0, [r4, #16] +10007ff0: f00b ff14 bl 10013e1c +10007ff4: 6862 ldr r2, [r4, #4] +10007ff6: 2310 movs r3, #16 +10007ff8: 9003 str r0, [sp, #12] +10007ffa: 9301 str r3, [sp, #4] +10007ffc: 4610 mov r0, r2 +10007ffe: 9700 str r7, [sp, #0] +10008000: 4631 mov r1, r6 +10008002: 462a mov r2, r5 +10008004: 2300 movs r3, #0 +10008006: f009 ff35 bl 10011e74 +1000800a: 2800 cmp r0, #0 +1000800c: dd28 ble.n 10008060 +1000800e: 2000 movs r0, #0 +10008010: b007 add sp, #28 +10008012: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +10008016: b002 add sp, #8 +10008018: 4770 bx lr +1000801a: 6860 ldr r0, [r4, #4] +1000801c: ad0d add r5, sp, #52 ; 0x34 +1000801e: 2410 movs r4, #16 +10008020: 9500 str r5, [sp, #0] +10008022: 9401 str r4, [sp, #4] +10008024: f009 ff26 bl 10011e74 +10008028: 2800 cmp r0, #0 +1000802a: dcf0 bgt.n 1000800e +1000802c: 4b1d ldr r3, [pc, #116] ; (100080a4 ) +1000802e: 681b ldr r3, [r3, #0] +10008030: 0618 lsls r0, r3, #24 +10008032: d42d bmi.n 10008090 +10008034: 2005 movs r0, #5 +10008036: e7eb b.n 10008010 +10008038: 6860 ldr r0, [r4, #4] +1000803a: f00a f827 bl 1001208c +1000803e: 2800 cmp r0, #0 +10008040: dce5 bgt.n 1000800e +10008042: 4b18 ldr r3, [pc, #96] ; (100080a4 ) +10008044: 681b ldr r3, [r3, #0] +10008046: 061b lsls r3, r3, #24 +10008048: d417 bmi.n 1000807a +1000804a: 2008 movs r0, #8 +1000804c: e7e0 b.n 10008010 +1000804e: 4b16 ldr r3, [pc, #88] ; (100080a8 ) +10008050: 781b ldrb r3, [r3, #0] +10008052: 2b01 cmp r3, #1 +10008054: d9b4 bls.n 10007fc0 +10008056: 4815 ldr r0, [pc, #84] ; (100080ac ) +10008058: f03a f856 bl 10042108 +1000805c: 2007 movs r0, #7 +1000805e: e7d7 b.n 10008010 +10008060: 4b10 ldr r3, [pc, #64] ; (100080a4 ) +10008062: 681b ldr r3, [r3, #0] +10008064: 0619 lsls r1, r3, #24 +10008066: d511 bpl.n 1000808c +10008068: 4b0f ldr r3, [pc, #60] ; (100080a8 ) +1000806a: 781b ldrb r3, [r3, #0] +1000806c: 2b01 cmp r3, #1 +1000806e: d90d bls.n 1000808c +10008070: 480f ldr r0, [pc, #60] ; (100080b0 ) +10008072: f03a f849 bl 10042108 +10008076: 2006 movs r0, #6 +10008078: e7ca b.n 10008010 +1000807a: 4b0b ldr r3, [pc, #44] ; (100080a8 ) +1000807c: 781b ldrb r3, [r3, #0] +1000807e: 2b01 cmp r3, #1 +10008080: d9e3 bls.n 1000804a +10008082: 480b ldr r0, [pc, #44] ; (100080b0 ) +10008084: f03a f840 bl 10042108 +10008088: 2008 movs r0, #8 +1000808a: e7c1 b.n 10008010 +1000808c: 2006 movs r0, #6 +1000808e: e7bf b.n 10008010 +10008090: 4b05 ldr r3, [pc, #20] ; (100080a8 ) +10008092: 781b ldrb r3, [r3, #0] +10008094: 2b01 cmp r3, #1 +10008096: d9cd bls.n 10008034 +10008098: 4806 ldr r0, [pc, #24] ; (100080b4 ) +1000809a: f03a f835 bl 10042108 +1000809e: 2005 movs r0, #5 +100080a0: e7b6 b.n 10008010 +100080a2: bf00 nop +100080a4: 1004d7e8 .word 0x1004d7e8 +100080a8: 1004d7f8 .word 0x1004d7f8 +100080ac: 10043ea0 .word 0x10043ea0 +100080b0: 10043e7c .word 0x10043e7c +100080b4: 10043e58 .word 0x10043e58 + +100080b8 : +100080b8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100080bc: f8df 8150 ldr.w r8, [pc, #336] ; 10008210 +100080c0: b08a sub sp, #40 ; 0x28 +100080c2: f8d8 3000 ldr.w r3, [r8] +100080c6: 0619 lsls r1, r3, #24 +100080c8: d503 bpl.n 100080d2 +100080ca: 4b42 ldr r3, [pc, #264] ; (100081d4 ) +100080cc: 781b ldrb r3, [r3, #0] +100080ce: 2b00 cmp r3, #0 +100080d0: d17b bne.n 100081ca +100080d2: 4841 ldr r0, [pc, #260] ; (100081d8 ) +100080d4: f014 fdb6 bl 1001cc44 +100080d8: 2801 cmp r0, #1 +100080da: 4d40 ldr r5, [pc, #256] ; (100081dc ) +100080dc: d147 bne.n 1000816e +100080de: f014 ff63 bl 1001cfa8 +100080e2: 4c3f ldr r4, [pc, #252] ; (100081e0 ) +100080e4: e004 b.n 100080f0 +100080e6: 2005 movs r0, #5 +100080e8: f014 ffb0 bl 1001d04c +100080ec: f014 ff5c bl 1001cfa8 +100080f0: 6823 ldr r3, [r4, #0] +100080f2: 1ac0 subs r0, r0, r3 +100080f4: f014 ff62 bl 1001cfbc +100080f8: 2813 cmp r0, #19 +100080fa: d9f4 bls.n 100080e6 +100080fc: a804 add r0, sp, #16 +100080fe: a905 add r1, sp, #20 +10008100: f014 feea bl 1001ced8 +10008104: 682b ldr r3, [r5, #0] +10008106: 4c35 ldr r4, [pc, #212] ; (100081dc ) +10008108: 2b03 cmp r3, #3 +1000810a: dd07 ble.n 1000811c +1000810c: 4835 ldr r0, [pc, #212] ; (100081e4 ) +1000810e: 4936 ldr r1, [pc, #216] ; (100081e8 ) +10008110: 2204 movs r2, #4 +10008112: f03a f81f bl 10042154 +10008116: 4603 mov r3, r0 +10008118: 2800 cmp r0, #0 +1000811a: d04e beq.n 100081ba +1000811c: 4e33 ldr r6, [pc, #204] ; (100081ec ) +1000811e: 682a ldr r2, [r5, #0] +10008120: 4630 mov r0, r6 +10008122: 4930 ldr r1, [pc, #192] ; (100081e4 ) +10008124: f014 fe42 bl 1001cdac +10008128: 2700 movs r7, #0 +1000812a: a804 add r0, sp, #16 +1000812c: a905 add r1, sp, #20 +1000812e: 682c ldr r4, [r5, #0] +10008130: 602f str r7, [r5, #0] +10008132: f014 fed9 bl 1001cee8 +10008136: f8d8 3000 ldr.w r3, [r8] +1000813a: 5537 strb r7, [r6, r4] +1000813c: 061a lsls r2, r3, #24 +1000813e: d503 bpl.n 10008148 +10008140: 4b24 ldr r3, [pc, #144] ; (100081d4 ) +10008142: 781b ldrb r3, [r3, #0] +10008144: 2b00 cmp r3, #0 +10008146: d12e bne.n 100081a6 +10008148: 4e29 ldr r6, [pc, #164] ; (100081f0 ) +1000814a: ab0a add r3, sp, #40 ; 0x28 +1000814c: 6836 ldr r6, [r6, #0] +1000814e: e913 0007 ldmdb r3, {r0, r1, r2} +10008152: 6a76 ldr r6, [r6, #36] ; 0x24 +10008154: 9b06 ldr r3, [sp, #24] +10008156: e88d 0007 stmia.w sp, {r0, r1, r2} +1000815a: b2a2 uxth r2, r4 +1000815c: 4923 ldr r1, [pc, #140] ; (100081ec ) +1000815e: 4630 mov r0, r6 +10008160: f7ff ff1a bl 10007f98 +10008164: 481c ldr r0, [pc, #112] ; (100081d8 ) +10008166: f014 fd6d bl 1001cc44 +1000816a: 2801 cmp r0, #1 +1000816c: d0b7 beq.n 100080de +1000816e: f8d8 3000 ldr.w r3, [r8] +10008172: 061b lsls r3, r3, #24 +10008174: d502 bpl.n 1000817c +10008176: 4b17 ldr r3, [pc, #92] ; (100081d4 ) +10008178: 781b ldrb r3, [r3, #0] +1000817a: b9d3 cbnz r3, 100081b2 +1000817c: 4816 ldr r0, [pc, #88] ; (100081d8 ) +1000817e: f014 fd45 bl 1001cc0c +10008182: 4b1c ldr r3, [pc, #112] ; (100081f4 ) +10008184: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008188: 4a1b ldr r2, [pc, #108] ; (100081f8 ) +1000818a: 2400 movs r4, #0 +1000818c: 481b ldr r0, [pc, #108] ; (100081fc ) +1000818e: 601c str r4, [r3, #0] +10008190: f039 ff4a bl 10042028 +10008194: 4819 ldr r0, [pc, #100] ; (100081fc ) +10008196: f017 fb33 bl 1001f800 +1000819a: 4620 mov r0, r4 +1000819c: f013 fb1a bl 1001b7d4 +100081a0: b00a add sp, #40 ; 0x28 +100081a2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100081a6: 4632 mov r2, r6 +100081a8: 4621 mov r1, r4 +100081aa: 4815 ldr r0, [pc, #84] ; (10008200 ) +100081ac: f039 ffac bl 10042108 +100081b0: e7ca b.n 10008148 +100081b2: 4814 ldr r0, [pc, #80] ; (10008204 ) +100081b4: f039 ffa8 bl 10042108 +100081b8: e7e0 b.n 1000817c +100081ba: 4a13 ldr r2, [pc, #76] ; (10008208 ) +100081bc: a804 add r0, sp, #16 +100081be: a905 add r1, sp, #20 +100081c0: 6013 str r3, [r2, #0] +100081c2: 6023 str r3, [r4, #0] +100081c4: f014 fe90 bl 1001cee8 +100081c8: e7d1 b.n 1000816e +100081ca: 4810 ldr r0, [pc, #64] ; (1000820c ) +100081cc: f039 ff9c bl 10042108 +100081d0: e77f b.n 100080d2 +100081d2: bf00 nop +100081d4: 1004d7f8 .word 0x1004d7f8 +100081d8: 10050080 .word 0x10050080 +100081dc: 10050074 .word 0x10050074 +100081e0: 10050070 .word 0x10050070 +100081e4: 10050100 .word 0x10050100 +100081e8: 10043ef0 .word 0x10043ef0 +100081ec: 1004f3e8 .word 0x1004f3e8 +100081f0: 1005006c .word 0x1005006c +100081f4: 1005007c .word 0x1005007c +100081f8: 100493c8 .word 0x100493c8 +100081fc: 1005207c .word 0x1005207c +10008200: 10043ef8 .word 0x10043ef8 +10008204: 10043f08 .word 0x10043f08 +10008208: 10050078 .word 0x10050078 +1000820c: 10043ed8 .word 0x10043ed8 +10008210: 1004d7e8 .word 0x1004d7e8 + +10008214 : +10008214: b508 push {r3, lr} +10008216: 2100 movs r1, #0 +10008218: f44f 72dc mov.w r2, #440 ; 0x1b8 +1000821c: 4806 ldr r0, [pc, #24] ; (10008238 ) +1000821e: f039 ffa5 bl 1004216c +10008222: 4905 ldr r1, [pc, #20] ; (10008238 ) +10008224: 2300 movs r3, #0 +10008226: f04f 32ff mov.w r2, #4294967295 +1000822a: 50ca str r2, [r1, r3] +1000822c: 332c adds r3, #44 ; 0x2c +1000822e: f5b3 7fdc cmp.w r3, #440 ; 0x1b8 +10008232: d1fa bne.n 1000822a +10008234: bd08 pop {r3, pc} +10008236: bf00 nop +10008238: 1004f22c .word 0x1004f22c + +1000823c : +1000823c: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10008240: 2400 movs r4, #0 +10008242: 4f1c ldr r7, [pc, #112] ; (100082b4 ) +10008244: 4681 mov r9, r0 +10008246: 4688 mov r8, r1 +10008248: 4625 mov r5, r4 +1000824a: f011 ff8f bl 1001a16c +1000824e: 593e ldr r6, [r7, r4] +10008250: 4b18 ldr r3, [pc, #96] ; (100082b4 ) +10008252: 1c72 adds r2, r6, #1 +10008254: f104 042c add.w r4, r4, #44 ; 0x2c +10008258: d016 beq.n 10008288 +1000825a: 3501 adds r5, #1 +1000825c: f011 ff8c bl 1001a178 +10008260: 2d0a cmp r5, #10 +10008262: d1f2 bne.n 1000824a +10008264: 4b14 ldr r3, [pc, #80] ; (100082b8 ) +10008266: 6818 ldr r0, [r3, #0] +10008268: f010 0080 ands.w r0, r0, #128 ; 0x80 +1000826c: d00a beq.n 10008284 +1000826e: 4b13 ldr r3, [pc, #76] ; (100082bc ) +10008270: 781b ldrb r3, [r3, #0] +10008272: 2b01 cmp r3, #1 +10008274: d905 bls.n 10008282 +10008276: 4812 ldr r0, [pc, #72] ; (100082c0 ) +10008278: f039 ff46 bl 10042108 +1000827c: 2000 movs r0, #0 +1000827e: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10008282: 2000 movs r0, #0 +10008284: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10008288: 222c movs r2, #44 ; 0x2c +1000828a: fb02 f205 mul.w r2, r2, r5 +1000828e: 189c adds r4, r3, r2 +10008290: 509d str r5, [r3, r2] +10008292: f011 ff71 bl 1001a178 +10008296: 2300 movs r3, #0 +10008298: f884 8008 strb.w r8, [r4, #8] +1000829c: 6066 str r6, [r4, #4] +1000829e: f8c4 900c str.w r9, [r4, #12] +100082a2: 82a6 strh r6, [r4, #20] +100082a4: 6123 str r3, [r4, #16] +100082a6: 6223 str r3, [r4, #32] +100082a8: 4620 mov r0, r4 +100082aa: 6263 str r3, [r4, #36] ; 0x24 +100082ac: 62a3 str r3, [r4, #40] ; 0x28 +100082ae: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +100082b2: bf00 nop +100082b4: 1004f22c .word 0x1004f22c +100082b8: 1004d7e8 .word 0x1004d7e8 +100082bc: 1004d7f8 .word 0x1004d7f8 +100082c0: 10043f20 .word 0x10043f20 + +100082c4 : +100082c4: b570 push {r4, r5, r6, lr} +100082c6: 4604 mov r4, r0 +100082c8: 2800 cmp r0, #0 +100082ca: d036 beq.n 1000833a +100082cc: f011 ff4e bl 1001a16c +100082d0: 4b28 ldr r3, [pc, #160] ; (10008374 ) +100082d2: 681d ldr r5, [r3, #0] +100082d4: b1c5 cbz r5, 10008308 +100082d6: 42a5 cmp r5, r4 +100082d8: bf04 itt eq +100082da: 6a6b ldreq r3, [r5, #36] ; 0x24 +100082dc: 6273 streq r3, [r6, #36] ; 0x24 +100082de: f995 3008 ldrsb.w r3, [r5, #8] +100082e2: b963 cbnz r3, 100082fe +100082e4: 6aab ldr r3, [r5, #40] ; 0x28 +100082e6: b153 cbz r3, 100082fe +100082e8: 4629 mov r1, r5 +100082ea: e000 b.n 100082ee +100082ec: 4613 mov r3, r2 +100082ee: 42a3 cmp r3, r4 +100082f0: bf04 itt eq +100082f2: 6a9a ldreq r2, [r3, #40] ; 0x28 +100082f4: 628a streq r2, [r1, #40] ; 0x28 +100082f6: 6a9a ldr r2, [r3, #40] ; 0x28 +100082f8: 4619 mov r1, r3 +100082fa: 2a00 cmp r2, #0 +100082fc: d1f6 bne.n 100082ec +100082fe: 6a6b ldr r3, [r5, #36] ; 0x24 +10008300: b113 cbz r3, 10008308 +10008302: 462e mov r6, r5 +10008304: 461d mov r5, r3 +10008306: e7e6 b.n 100082d6 +10008308: f011 ff36 bl 1001a178 +1000830c: f994 3008 ldrsb.w r3, [r4, #8] +10008310: b1a3 cbz r3, 1000833c +10008312: 68e3 ldr r3, [r4, #12] +10008314: 2b01 cmp r3, #1 +10008316: d028 beq.n 1000836a +10008318: 6860 ldr r0, [r4, #4] +1000831a: 1c43 adds r3, r0, #1 +1000831c: d004 beq.n 10008328 +1000831e: f009 fbcd bl 10011abc +10008322: f04f 33ff mov.w r3, #4294967295 +10008326: 6063 str r3, [r4, #4] +10008328: 6a20 ldr r0, [r4, #32] +1000832a: b118 cbz r0, 10008334 +1000832c: f013 fa52 bl 1001b7d4 +10008330: 2300 movs r3, #0 +10008332: 6223 str r3, [r4, #32] +10008334: f04f 33ff mov.w r3, #4294967295 +10008338: 6023 str r3, [r4, #0] +1000833a: bd70 pop {r4, r5, r6, pc} +1000833c: 6aa5 ldr r5, [r4, #40] ; 0x28 +1000833e: 2d00 cmp r5, #0 +10008340: d0e7 beq.n 10008312 +10008342: f04f 36ff mov.w r6, #4294967295 +10008346: e000 b.n 1000834a +10008348: 461d mov r5, r3 +1000834a: 68eb ldr r3, [r5, #12] +1000834c: b92b cbnz r3, 1000835a +1000834e: 6868 ldr r0, [r5, #4] +10008350: 1c42 adds r2, r0, #1 +10008352: d002 beq.n 1000835a +10008354: f009 fbb2 bl 10011abc +10008358: 606e str r6, [r5, #4] +1000835a: 6aab ldr r3, [r5, #40] ; 0x28 +1000835c: 62a3 str r3, [r4, #40] ; 0x28 +1000835e: 602e str r6, [r5, #0] +10008360: 2b00 cmp r3, #0 +10008362: d1f1 bne.n 10008348 +10008364: 68e3 ldr r3, [r4, #12] +10008366: 2b01 cmp r3, #1 +10008368: d1d6 bne.n 10008318 +1000836a: f994 3008 ldrsb.w r3, [r4, #8] +1000836e: 2b02 cmp r3, #2 +10008370: d1d2 bne.n 10008318 +10008372: e7d9 b.n 10008328 +10008374: 1005006c .word 0x1005006c + +10008378 : +10008378: b510 push {r4, lr} +1000837a: 4c05 ldr r4, [pc, #20] ; (10008390 ) +1000837c: 6823 ldr r3, [r4, #0] +1000837e: 6a58 ldr r0, [r3, #36] ; 0x24 +10008380: b128 cbz r0, 1000838e +10008382: f7ff ff9f bl 100082c4 +10008386: 6823 ldr r3, [r4, #0] +10008388: 6a58 ldr r0, [r3, #36] ; 0x24 +1000838a: 2800 cmp r0, #0 +1000838c: d1f9 bne.n 10008382 +1000838e: bd10 pop {r4, pc} +10008390: 1005006c .word 0x1005006c + +10008394 : +10008394: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10008398: 4c69 ldr r4, [pc, #420] ; (10008540 ) +1000839a: b092 sub sp, #72 ; 0x48 +1000839c: 6822 ldr r2, [r4, #0] +1000839e: 2300 movs r3, #0 +100083a0: 0611 lsls r1, r2, #24 +100083a2: 4605 mov r5, r0 +100083a4: 9306 str r3, [sp, #24] +100083a6: 9307 str r3, [sp, #28] +100083a8: 9308 str r3, [sp, #32] +100083aa: 9309 str r3, [sp, #36] ; 0x24 +100083ac: 930a str r3, [sp, #40] ; 0x28 +100083ae: 930b str r3, [sp, #44] ; 0x2c +100083b0: 930c str r3, [sp, #48] ; 0x30 +100083b2: 930d str r3, [sp, #52] ; 0x34 +100083b4: 930e str r3, [sp, #56] ; 0x38 +100083b6: 930f str r3, [sp, #60] ; 0x3c +100083b8: 9310 str r3, [sp, #64] ; 0x40 +100083ba: 9311 str r3, [sp, #68] ; 0x44 +100083bc: d503 bpl.n 100083c6 +100083be: 4b61 ldr r3, [pc, #388] ; (10008544 ) +100083c0: 781b ldrb r3, [r3, #0] +100083c2: 2b00 cmp r3, #0 +100083c4: d145 bne.n 10008452 +100083c6: 4b60 ldr r3, [pc, #384] ; (10008548 ) +100083c8: 681b ldr r3, [r3, #0] +100083ca: 2b01 cmp r3, #1 +100083cc: d01e beq.n 1000840c +100083ce: 4628 mov r0, r5 +100083d0: a906 add r1, sp, #24 +100083d2: f003 fd93 bl 1000befc +100083d6: 2803 cmp r0, #3 +100083d8: dc1f bgt.n 1000841a +100083da: 6823 ldr r3, [r4, #0] +100083dc: 061a lsls r2, r3, #24 +100083de: d508 bpl.n 100083f2 +100083e0: 4b58 ldr r3, [pc, #352] ; (10008544 ) +100083e2: 781b ldrb r3, [r3, #0] +100083e4: 2b01 cmp r3, #1 +100083e6: d904 bls.n 100083f2 +100083e8: 4858 ldr r0, [pc, #352] ; (1000854c ) +100083ea: f039 fe8d bl 10042108 +100083ee: 2301 movs r3, #1 +100083f0: e000 b.n 100083f4 +100083f2: 2301 movs r3, #1 +100083f4: 4856 ldr r0, [pc, #344] ; (10008550 ) +100083f6: f44f 61c8 mov.w r1, #1600 ; 0x640 +100083fa: 4a56 ldr r2, [pc, #344] ; (10008554 ) +100083fc: f039 fe14 bl 10042028 +10008400: 4853 ldr r0, [pc, #332] ; (10008550 ) +10008402: f017 f9fd bl 1001f800 +10008406: b012 add sp, #72 ; 0x48 +10008408: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000840c: 4b52 ldr r3, [pc, #328] ; (10008558 ) +1000840e: 681b ldr r3, [r3, #0] +10008410: 6a5b ldr r3, [r3, #36] ; 0x24 +10008412: 2b00 cmp r3, #0 +10008414: d0db beq.n 100083ce +10008416: 230d movs r3, #13 +10008418: e7ec b.n 100083f4 +1000841a: 4d50 ldr r5, [pc, #320] ; (1000855c ) +1000841c: 9807 ldr r0, [sp, #28] +1000841e: 47a8 blx r5 +10008420: 4607 mov r7, r0 +10008422: 9809 ldr r0, [sp, #36] ; 0x24 +10008424: 47a8 blx r5 +10008426: a905 add r1, sp, #20 +10008428: 4606 mov r6, r0 +1000842a: 9808 ldr r0, [sp, #32] +1000842c: f00b f8e0 bl 100135f0 +10008430: 2800 cmp r0, #0 +10008432: d054 beq.n 100084de +10008434: f5b6 3f80 cmp.w r6, #65536 ; 0x10000 +10008438: d311 bcc.n 1000845e +1000843a: 6823 ldr r3, [r4, #0] +1000843c: 0619 lsls r1, r3, #24 +1000843e: d50c bpl.n 1000845a +10008440: 4b40 ldr r3, [pc, #256] ; (10008544 ) +10008442: 781b ldrb r3, [r3, #0] +10008444: 2b01 cmp r3, #1 +10008446: d908 bls.n 1000845a +10008448: 4845 ldr r0, [pc, #276] ; (10008560 ) +1000844a: f039 fe5d bl 10042108 +1000844e: 2303 movs r3, #3 +10008450: e7d0 b.n 100083f4 +10008452: 4844 ldr r0, [pc, #272] ; (10008564 ) +10008454: f039 fe58 bl 10042108 +10008458: e7b5 b.n 100083c6 +1000845a: 2303 movs r3, #3 +1000845c: e7ca b.n 100083f4 +1000845e: 980a ldr r0, [sp, #40] ; 0x28 +10008460: 2800 cmp r0, #0 +10008462: d069 beq.n 10008538 +10008464: 47a8 blx r5 +10008466: f5b0 3f80 cmp.w r0, #65536 ; 0x10000 +1000846a: 4680 mov r8, r0 +1000846c: d22b bcs.n 100084c6 +1000846e: 4638 mov r0, r7 +10008470: 2101 movs r1, #1 +10008472: f7ff fee3 bl 1000823c +10008476: 4605 mov r5, r0 +10008478: 2800 cmp r0, #0 +1000847a: d05b beq.n 10008534 +1000847c: 8286 strh r6, [r0, #20] +1000847e: 9805 ldr r0, [sp, #20] +10008480: f00b fcce bl 10013e20 +10008484: 2300 movs r3, #0 +10008486: 2201 movs r2, #1 +10008488: 6128 str r0, [r5, #16] +1000848a: f8a5 801c strh.w r8, [r5, #28] +1000848e: 4836 ldr r0, [pc, #216] ; (10008568 ) +10008490: e88d 000c stmia.w sp, {r2, r3} +10008494: 9302 str r3, [sp, #8] +10008496: 9303 str r3, [sp, #12] +10008498: 4934 ldr r1, [pc, #208] ; (1000856c ) +1000849a: f44f 7200 mov.w r2, #512 ; 0x200 +1000849e: 462b mov r3, r5 +100084a0: f013 f8b0 bl 1001b604 +100084a4: 2801 cmp r0, #1 +100084a6: d0ae beq.n 10008406 +100084a8: 6823 ldr r3, [r4, #0] +100084aa: 061b lsls r3, r3, #24 +100084ac: d506 bpl.n 100084bc +100084ae: 4b25 ldr r3, [pc, #148] ; (10008544 ) +100084b0: 781b ldrb r3, [r3, #0] +100084b2: 2b01 cmp r3, #1 +100084b4: d902 bls.n 100084bc +100084b6: 482e ldr r0, [pc, #184] ; (10008570 ) +100084b8: f039 fe26 bl 10042108 +100084bc: 4628 mov r0, r5 +100084be: f7ff ff01 bl 100082c4 +100084c2: 2305 movs r3, #5 +100084c4: e796 b.n 100083f4 +100084c6: 6823 ldr r3, [r4, #0] +100084c8: 061a lsls r2, r3, #24 +100084ca: d524 bpl.n 10008516 +100084cc: 4b1d ldr r3, [pc, #116] ; (10008544 ) +100084ce: 781b ldrb r3, [r3, #0] +100084d0: 2b01 cmp r3, #1 +100084d2: d920 bls.n 10008516 +100084d4: 4827 ldr r0, [pc, #156] ; (10008574 ) +100084d6: f039 fe17 bl 10042108 +100084da: 230b movs r3, #11 +100084dc: e78a b.n 100083f4 +100084de: 9808 ldr r0, [sp, #32] +100084e0: f008 ff64 bl 100113ac +100084e4: b1c8 cbz r0, 1000851a +100084e6: 6903 ldr r3, [r0, #16] +100084e8: 2204 movs r2, #4 +100084ea: 6819 ldr r1, [r3, #0] +100084ec: a805 add r0, sp, #20 +100084ee: f039 fe37 bl 10042160 +100084f2: 6823 ldr r3, [r4, #0] +100084f4: 061b lsls r3, r3, #24 +100084f6: d59d bpl.n 10008434 +100084f8: 4b12 ldr r3, [pc, #72] ; (10008544 ) +100084fa: 781b ldrb r3, [r3, #0] +100084fc: 2b00 cmp r3, #0 +100084fe: d099 beq.n 10008434 +10008500: a805 add r0, sp, #20 +10008502: f8dd 8020 ldr.w r8, [sp, #32] +10008506: f00b f981 bl 1001380c +1000850a: 4641 mov r1, r8 +1000850c: 4602 mov r2, r0 +1000850e: 481a ldr r0, [pc, #104] ; (10008578 ) +10008510: f039 fdfa bl 10042108 +10008514: e78e b.n 10008434 +10008516: 230b movs r3, #11 +10008518: e76c b.n 100083f4 +1000851a: 6823 ldr r3, [r4, #0] +1000851c: 0618 lsls r0, r3, #24 +1000851e: d50d bpl.n 1000853c +10008520: 4b08 ldr r3, [pc, #32] ; (10008544 ) +10008522: 781b ldrb r3, [r3, #0] +10008524: 2b01 cmp r3, #1 +10008526: d909 bls.n 1000853c +10008528: 4814 ldr r0, [pc, #80] ; (1000857c ) +1000852a: 9908 ldr r1, [sp, #32] +1000852c: f039 fdec bl 10042108 +10008530: 2302 movs r3, #2 +10008532: e75f b.n 100083f4 +10008534: 2304 movs r3, #4 +10008536: e75d b.n 100083f4 +10008538: 4680 mov r8, r0 +1000853a: e798 b.n 1000846e +1000853c: 2302 movs r3, #2 +1000853e: e759 b.n 100083f4 +10008540: 1004d7e8 .word 0x1004d7e8 +10008544: 1004d7f8 .word 0x1004d7f8 +10008548: 10050078 .word 0x10050078 +1000854c: 10043f60 .word 0x10043f60 +10008550: 1005207c .word 0x1005207c +10008554: 10044090 .word 0x10044090 +10008558: 1005006c .word 0x1005006c +1000855c: 0000f769 .word 0x0000f769 +10008560: 10044000 .word 0x10044000 +10008564: 10043f38 .word 0x10043f38 +10008568: 1000875d .word 0x1000875d +1000856c: 10044048 .word 0x10044048 +10008570: 1004405c .word 0x1004405c +10008574: 10044024 .word 0x10044024 +10008578: 10043fb8 .word 0x10043fb8 +1000857c: 10043fd8 .word 0x10043fd8 + +10008580 : +10008580: b5f0 push {r4, r5, r6, r7, lr} +10008582: 4c46 ldr r4, [pc, #280] ; (1000869c ) +10008584: b091 sub sp, #68 ; 0x44 +10008586: 6822 ldr r2, [r4, #0] +10008588: 2300 movs r3, #0 +1000858a: 0616 lsls r6, r2, #24 +1000858c: 4605 mov r5, r0 +1000858e: 9304 str r3, [sp, #16] +10008590: 9305 str r3, [sp, #20] +10008592: 9306 str r3, [sp, #24] +10008594: 9307 str r3, [sp, #28] +10008596: 9308 str r3, [sp, #32] +10008598: 9309 str r3, [sp, #36] ; 0x24 +1000859a: 930a str r3, [sp, #40] ; 0x28 +1000859c: 930b str r3, [sp, #44] ; 0x2c +1000859e: 930c str r3, [sp, #48] ; 0x30 +100085a0: 930d str r3, [sp, #52] ; 0x34 +100085a2: 930e str r3, [sp, #56] ; 0x38 +100085a4: 930f str r3, [sp, #60] ; 0x3c +100085a6: d503 bpl.n 100085b0 +100085a8: 4b3d ldr r3, [pc, #244] ; (100086a0 ) +100085aa: 781b ldrb r3, [r3, #0] +100085ac: 2b00 cmp r3, #0 +100085ae: d130 bne.n 10008612 +100085b0: 4b3c ldr r3, [pc, #240] ; (100086a4 ) +100085b2: 681b ldr r3, [r3, #0] +100085b4: 2b01 cmp r3, #1 +100085b6: d01e beq.n 100085f6 +100085b8: 4628 mov r0, r5 +100085ba: a904 add r1, sp, #16 +100085bc: f003 fc9e bl 1000befc +100085c0: 2803 cmp r0, #3 +100085c2: 4605 mov r5, r0 +100085c4: d029 beq.n 1000861a +100085c6: 6823 ldr r3, [r4, #0] +100085c8: 0619 lsls r1, r3, #24 +100085ca: d508 bpl.n 100085de +100085cc: 4b34 ldr r3, [pc, #208] ; (100086a0 ) +100085ce: 781b ldrb r3, [r3, #0] +100085d0: 2b01 cmp r3, #1 +100085d2: d904 bls.n 100085de +100085d4: 4834 ldr r0, [pc, #208] ; (100086a8 ) +100085d6: f039 fd97 bl 10042108 +100085da: 2301 movs r3, #1 +100085dc: e000 b.n 100085e0 +100085de: 2301 movs r3, #1 +100085e0: 4832 ldr r0, [pc, #200] ; (100086ac ) +100085e2: f44f 61c8 mov.w r1, #1600 ; 0x640 +100085e6: 4a32 ldr r2, [pc, #200] ; (100086b0 ) +100085e8: f039 fd1e bl 10042028 +100085ec: 482f ldr r0, [pc, #188] ; (100086ac ) +100085ee: f017 f907 bl 1001f800 +100085f2: b011 add sp, #68 ; 0x44 +100085f4: bdf0 pop {r4, r5, r6, r7, pc} +100085f6: 6823 ldr r3, [r4, #0] +100085f8: 0618 lsls r0, r3, #24 +100085fa: d508 bpl.n 1000860e +100085fc: 4b28 ldr r3, [pc, #160] ; (100086a0 ) +100085fe: 781b ldrb r3, [r3, #0] +10008600: 2b01 cmp r3, #1 +10008602: d904 bls.n 1000860e +10008604: 482b ldr r0, [pc, #172] ; (100086b4 ) +10008606: f039 fd7f bl 10042108 +1000860a: 230d movs r3, #13 +1000860c: e7e8 b.n 100085e0 +1000860e: 230d movs r3, #13 +10008610: e7e6 b.n 100085e0 +10008612: 4829 ldr r0, [pc, #164] ; (100086b8 ) +10008614: f039 fd78 bl 10042108 +10008618: e7ca b.n 100085b0 +1000861a: 4e28 ldr r6, [pc, #160] ; (100086bc ) +1000861c: 9805 ldr r0, [sp, #20] +1000861e: 47b0 blx r6 +10008620: 4607 mov r7, r0 +10008622: 9806 ldr r0, [sp, #24] +10008624: 47b0 blx r6 +10008626: f5b0 3f80 cmp.w r0, #65536 ; 0x10000 +1000862a: 4606 mov r6, r0 +1000862c: d30b bcc.n 10008646 +1000862e: 6823 ldr r3, [r4, #0] +10008630: 061a lsls r2, r3, #24 +10008632: d52e bpl.n 10008692 +10008634: 4b1a ldr r3, [pc, #104] ; (100086a0 ) +10008636: 781b ldrb r3, [r3, #0] +10008638: 2b01 cmp r3, #1 +1000863a: d92a bls.n 10008692 +1000863c: 4820 ldr r0, [pc, #128] ; (100086c0 ) +1000863e: f039 fd63 bl 10042108 +10008642: 2302 movs r3, #2 +10008644: e7cc b.n 100085e0 +10008646: 4638 mov r0, r7 +10008648: 2100 movs r1, #0 +1000864a: f7ff fdf7 bl 1000823c +1000864e: 4607 mov r7, r0 +10008650: b308 cbz r0, 10008696 +10008652: f100 0220 add.w r2, r0, #32 +10008656: 2300 movs r3, #0 +10008658: 2101 movs r1, #1 +1000865a: 8286 strh r6, [r0, #20] +1000865c: e88d 000e stmia.w sp, {r1, r2, r3} +10008660: 9303 str r3, [sp, #12] +10008662: 4818 ldr r0, [pc, #96] ; (100086c4 ) +10008664: 4918 ldr r1, [pc, #96] ; (100086c8 ) +10008666: f44f 7200 mov.w r2, #512 ; 0x200 +1000866a: 463b mov r3, r7 +1000866c: f012 ffca bl 1001b604 +10008670: 2801 cmp r0, #1 +10008672: d0be beq.n 100085f2 +10008674: 6823 ldr r3, [r4, #0] +10008676: 061b lsls r3, r3, #24 +10008678: d506 bpl.n 10008688 +1000867a: 4b09 ldr r3, [pc, #36] ; (100086a0 ) +1000867c: 781b ldrb r3, [r3, #0] +1000867e: 2b01 cmp r3, #1 +10008680: d902 bls.n 10008688 +10008682: 4812 ldr r0, [pc, #72] ; (100086cc ) +10008684: f039 fd40 bl 10042108 +10008688: 4638 mov r0, r7 +1000868a: f7ff fe1b bl 100082c4 +1000868e: 2304 movs r3, #4 +10008690: e7a6 b.n 100085e0 +10008692: 2302 movs r3, #2 +10008694: e7a4 b.n 100085e0 +10008696: 462b mov r3, r5 +10008698: e7a2 b.n 100085e0 +1000869a: bf00 nop +1000869c: 1004d7e8 .word 0x1004d7e8 +100086a0: 1004d7f8 .word 0x1004d7f8 +100086a4: 10050078 .word 0x10050078 +100086a8: 10044108 .word 0x10044108 +100086ac: 1005207c .word 0x1005207c +100086b0: 100441bc .word 0x100441bc +100086b4: 100440cc .word 0x100440cc +100086b8: 100440a4 .word 0x100440a4 +100086bc: 0000f769 .word 0x0000f769 +100086c0: 10044144 .word 0x10044144 +100086c4: 100089f1 .word 0x100089f1 +100086c8: 10044174 .word 0x10044174 +100086cc: 10044188 .word 0x10044188 + +100086d0 : +100086d0: b570 push {r4, r5, r6, lr} +100086d2: 4b1e ldr r3, [pc, #120] ; (1000874c ) +100086d4: b082 sub sp, #8 +100086d6: 4606 mov r6, r0 +100086d8: 681d ldr r5, [r3, #0] +100086da: f011 fd47 bl 1001a16c +100086de: 6a6c ldr r4, [r5, #36] ; 0x24 +100086e0: 2c00 cmp r4, #0 +100086e2: d02d beq.n 10008740 +100086e4: f996 3008 ldrsb.w r3, [r6, #8] +100086e8: 4625 mov r5, r4 +100086ea: 2b00 cmp r3, #0 +100086ec: d1f7 bne.n 100086de +100086ee: 8aa2 ldrh r2, [r4, #20] +100086f0: 8ab3 ldrh r3, [r6, #20] +100086f2: 429a cmp r2, r3 +100086f4: d1f3 bne.n 100086de +100086f6: 6922 ldr r2, [r4, #16] +100086f8: 6933 ldr r3, [r6, #16] +100086fa: 429a cmp r2, r3 +100086fc: d1ef bne.n 100086de +100086fe: f994 3008 ldrsb.w r3, [r4, #8] +10008702: 2b00 cmp r3, #0 +10008704: d1eb bne.n 100086de +10008706: 68e2 ldr r2, [r4, #12] +10008708: 68f3 ldr r3, [r6, #12] +1000870a: 429a cmp r2, r3 +1000870c: d1e7 bne.n 100086de +1000870e: f011 fd33 bl 1001a178 +10008712: 6930 ldr r0, [r6, #16] +10008714: f00b fb82 bl 10013e1c +10008718: 4b0d ldr r3, [pc, #52] ; (10008750 ) +1000871a: 9001 str r0, [sp, #4] +1000871c: 681b ldr r3, [r3, #0] +1000871e: 061b lsls r3, r3, #24 +10008720: d50b bpl.n 1000873a +10008722: 4b0c ldr r3, [pc, #48] ; (10008754 ) +10008724: 781b ldrb r3, [r3, #0] +10008726: 2b01 cmp r3, #1 +10008728: d907 bls.n 1000873a +1000872a: a801 add r0, sp, #4 +1000872c: f00b f86e bl 1001380c +10008730: 8ab2 ldrh r2, [r6, #20] +10008732: 4601 mov r1, r0 +10008734: 4808 ldr r0, [pc, #32] ; (10008758 ) +10008736: f039 fce7 bl 10042108 +1000873a: f04f 30ff mov.w r0, #4294967295 +1000873e: e003 b.n 10008748 +10008740: 626e str r6, [r5, #36] ; 0x24 +10008742: f011 fd19 bl 1001a178 +10008746: 4620 mov r0, r4 +10008748: b002 add sp, #8 +1000874a: bd70 pop {r4, r5, r6, pc} +1000874c: 1005006c .word 0x1005006c +10008750: 1004d7e8 .word 0x1004d7e8 +10008754: 1004d7f8 .word 0x1004d7f8 +10008758: 100441d0 .word 0x100441d0 + +1000875c : +1000875c: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10008760: 4604 mov r4, r0 +10008762: b08f sub sp, #60 ; 0x3c +10008764: f44f 707a mov.w r0, #1000 ; 0x3e8 +10008768: f013 fa5e bl 1001bc28 +1000876c: 2c00 cmp r4, #0 +1000876e: d07e beq.n 1000886e +10008770: 6920 ldr r0, [r4, #16] +10008772: 68e6 ldr r6, [r4, #12] +10008774: f8b4 9014 ldrh.w r9, [r4, #20] +10008778: f00b fb50 bl 10013e1c +1000877c: ab0e add r3, sp, #56 ; 0x38 +1000877e: f843 0d34 str.w r0, [r3, #-52]! +10008782: 4618 mov r0, r3 +10008784: a902 add r1, sp, #8 +10008786: 2210 movs r2, #16 +10008788: f00a ffe0 bl 1001374c +1000878c: 2800 cmp r0, #0 +1000878e: f000 80a3 beq.w 100088d8 +10008792: 2e01 cmp r6, #1 +10008794: f04f 0002 mov.w r0, #2 +10008798: bf0c ite eq +1000879a: 4601 moveq r1, r0 +1000879c: 2101 movne r1, #1 +1000879e: 2200 movs r2, #0 +100087a0: f009 fc28 bl 10011ff4 +100087a4: 1c41 adds r1, r0, #1 +100087a6: 4605 mov r5, r0 +100087a8: f000 809c beq.w 100088e4 +100087ac: 4f69 ldr r7, [pc, #420] ; (10008954 ) +100087ae: 683b ldr r3, [r7, #0] +100087b0: 061b lsls r3, r3, #24 +100087b2: d504 bpl.n 100087be +100087b4: 4b68 ldr r3, [pc, #416] ; (10008958 ) +100087b6: 781b ldrb r3, [r3, #0] +100087b8: 2b00 cmp r3, #0 +100087ba: f040 808f bne.w 100088dc +100087be: 2100 movs r1, #0 +100087c0: 2210 movs r2, #16 +100087c2: a806 add r0, sp, #24 +100087c4: f039 fcd2 bl 1004216c +100087c8: f04f 0802 mov.w r8, #2 +100087cc: a802 add r0, sp, #8 +100087ce: f88d 8019 strb.w r8, [sp, #25] +100087d2: f00a ffab bl 1001372c +100087d6: 9007 str r0, [sp, #28] +100087d8: 4648 mov r0, r9 +100087da: f00b fb17 bl 10013e0c +100087de: 6065 str r5, [r4, #4] +100087e0: f8ad 001a strh.w r0, [sp, #26] +100087e4: 2e00 cmp r6, #0 +100087e6: d048 beq.n 1000887a +100087e8: 8ba3 ldrh r3, [r4, #28] +100087ea: b1bb cbz r3, 1000881c +100087ec: 2100 movs r1, #0 +100087ee: 2210 movs r2, #16 +100087f0: a80a add r0, sp, #40 ; 0x28 +100087f2: f039 fcbb bl 1004216c +100087f6: 8ba0 ldrh r0, [r4, #28] +100087f8: f88d 8029 strb.w r8, [sp, #41] ; 0x29 +100087fc: f00b fb06 bl 10013e0c +10008800: f8ad 002a strh.w r0, [sp, #42] ; 0x2a +10008804: 2000 movs r0, #0 +10008806: f00b fb09 bl 10013e1c +1000880a: a90a add r1, sp, #40 ; 0x28 +1000880c: 900b str r0, [sp, #44] ; 0x2c +1000880e: 2210 movs r2, #16 +10008810: 6860 ldr r0, [r4, #4] +10008812: f009 f90b bl 10011a2c +10008816: 2800 cmp r0, #0 +10008818: f2c0 8082 blt.w 10008920 +1000881c: 4620 mov r0, r4 +1000881e: f7ff ff57 bl 100086d0 +10008822: 2800 cmp r0, #0 +10008824: db3c blt.n 100088a0 +10008826: f003 fcdd bl 1000c1e4 +1000882a: 6823 ldr r3, [r4, #0] +1000882c: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008830: 4a4a ldr r2, [pc, #296] ; (1000895c ) +10008832: 484b ldr r0, [pc, #300] ; (10008960 ) +10008834: f039 fbf8 bl 10042028 +10008838: 4849 ldr r0, [pc, #292] ; (10008960 ) +1000883a: f016 ffe1 bl 1001f800 +1000883e: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008842: 4a48 ldr r2, [pc, #288] ; (10008964 ) +10008844: 4846 ldr r0, [pc, #280] ; (10008960 ) +10008846: f039 fbef bl 10042028 +1000884a: 4845 ldr r0, [pc, #276] ; (10008960 ) +1000884c: f016 ffd8 bl 1001f800 +10008850: f003 fcce bl 1000c1f0 +10008854: 683b ldr r3, [r7, #0] +10008856: 061b lsls r3, r3, #24 +10008858: d503 bpl.n 10008862 +1000885a: 4b3f ldr r3, [pc, #252] ; (10008958 ) +1000885c: 781b ldrb r3, [r3, #0] +1000885e: 2b00 cmp r3, #0 +10008860: d174 bne.n 1000894c +10008862: 2000 movs r0, #0 +10008864: f012 ffb6 bl 1001b7d4 +10008868: b00f add sp, #60 ; 0x3c +1000886a: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1000886e: 4620 mov r0, r4 +10008870: f012 ffb0 bl 1001b7d4 +10008874: b00f add sp, #60 ; 0x3c +10008876: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1000887a: 4628 mov r0, r5 +1000887c: a906 add r1, sp, #24 +1000887e: 2210 movs r2, #16 +10008880: f009 f958 bl 10011b34 +10008884: 683b ldr r3, [r7, #0] +10008886: 2800 cmp r0, #0 +10008888: d03b beq.n 10008902 +1000888a: 0619 lsls r1, r3, #24 +1000888c: d554 bpl.n 10008938 +1000888e: 4b32 ldr r3, [pc, #200] ; (10008958 ) +10008890: 781b ldrb r3, [r3, #0] +10008892: 2b01 cmp r3, #1 +10008894: d950 bls.n 10008938 +10008896: 4834 ldr r0, [pc, #208] ; (10008968 ) +10008898: f039 fc36 bl 10042108 +1000889c: 2509 movs r5, #9 +1000889e: e000 b.n 100088a2 +100088a0: 250a movs r5, #10 +100088a2: 4620 mov r0, r4 +100088a4: f7ff fd0e bl 100082c4 +100088a8: f003 fc9c bl 1000c1e4 +100088ac: 482c ldr r0, [pc, #176] ; (10008960 ) +100088ae: 4a2f ldr r2, [pc, #188] ; (1000896c ) +100088b0: 462b mov r3, r5 +100088b2: f44f 61c8 mov.w r1, #1600 ; 0x640 +100088b6: f039 fbb7 bl 10042028 +100088ba: 4829 ldr r0, [pc, #164] ; (10008960 ) +100088bc: f016 ffa0 bl 1001f800 +100088c0: f44f 61c8 mov.w r1, #1600 ; 0x640 +100088c4: 4a27 ldr r2, [pc, #156] ; (10008964 ) +100088c6: 4826 ldr r0, [pc, #152] ; (10008960 ) +100088c8: f039 fbae bl 10042028 +100088cc: 4824 ldr r0, [pc, #144] ; (10008960 ) +100088ce: f016 ff97 bl 1001f800 +100088d2: f003 fc8d bl 1000c1f0 +100088d6: e7c4 b.n 10008862 +100088d8: 2506 movs r5, #6 +100088da: e7e2 b.n 100088a2 +100088dc: 4824 ldr r0, [pc, #144] ; (10008970 ) +100088de: f039 fc13 bl 10042108 +100088e2: e76c b.n 100087be +100088e4: 4b1b ldr r3, [pc, #108] ; (10008954 ) +100088e6: 681b ldr r3, [r3, #0] +100088e8: 061a lsls r2, r3, #24 +100088ea: d508 bpl.n 100088fe +100088ec: 4b1a ldr r3, [pc, #104] ; (10008958 ) +100088ee: 781b ldrb r3, [r3, #0] +100088f0: 2b01 cmp r3, #1 +100088f2: d904 bls.n 100088fe +100088f4: 481f ldr r0, [pc, #124] ; (10008974 ) +100088f6: f039 fc07 bl 10042108 +100088fa: 2507 movs r5, #7 +100088fc: e7d1 b.n 100088a2 +100088fe: 2507 movs r5, #7 +10008900: e7cf b.n 100088a2 +10008902: 0618 lsls r0, r3, #24 +10008904: d505 bpl.n 10008912 +10008906: 4b14 ldr r3, [pc, #80] ; (10008958 ) +10008908: 781b ldrb r3, [r3, #0] +1000890a: b113 cbz r3, 10008912 +1000890c: 481a ldr r0, [pc, #104] ; (10008978 ) +1000890e: f039 fbfb bl 10042108 +10008912: 4620 mov r0, r4 +10008914: f7ff fedc bl 100086d0 +10008918: 2800 cmp r0, #0 +1000891a: da0f bge.n 1000893c +1000891c: 2508 movs r5, #8 +1000891e: e7c0 b.n 100088a2 +10008920: 683b ldr r3, [r7, #0] +10008922: 061a lsls r2, r3, #24 +10008924: d506 bpl.n 10008934 +10008926: 4b0c ldr r3, [pc, #48] ; (10008958 ) +10008928: 781b ldrb r3, [r3, #0] +1000892a: 2b01 cmp r3, #1 +1000892c: d902 bls.n 10008934 +1000892e: 4813 ldr r0, [pc, #76] ; (1000897c ) +10008930: f039 fbea bl 10042108 +10008934: 250c movs r5, #12 +10008936: e7b4 b.n 100088a2 +10008938: 2509 movs r5, #9 +1000893a: e7b2 b.n 100088a2 +1000893c: f003 fc52 bl 1000c1e4 +10008940: 6823 ldr r3, [r4, #0] +10008942: 4807 ldr r0, [pc, #28] ; (10008960 ) +10008944: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008948: 4a04 ldr r2, [pc, #16] ; (1000895c ) +1000894a: e7b4 b.n 100088b6 +1000894c: 480c ldr r0, [pc, #48] ; (10008980 ) +1000894e: f039 fbdb bl 10042108 +10008952: e786 b.n 10008862 +10008954: 1004d7e8 .word 0x1004d7e8 +10008958: 1004d7f8 .word 0x1004d7f8 +1000895c: 10044250 .word 0x10044250 +10008960: 1005207c .word 0x1005207c +10008964: 100493c8 .word 0x100493c8 +10008968: 10044270 .word 0x10044270 +1000896c: 10044090 .word 0x10044090 +10008970: 10044218 .word 0x10044218 +10008974: 100441fc .word 0x100441fc +10008978: 10044230 .word 0x10044230 +1000897c: 1004429c .word 0x1004429c +10008980: 100442b0 .word 0x100442b0 + +10008984 : +10008984: b570 push {r4, r5, r6, lr} +10008986: b082 sub sp, #8 +10008988: 4605 mov r5, r0 +1000898a: 460e mov r6, r1 +1000898c: f011 fbee bl 1001a16c +10008990: 6aac ldr r4, [r5, #40] ; 0x28 +10008992: b30c cbz r4, 100089d8 +10008994: 8aa2 ldrh r2, [r4, #20] +10008996: 8ab3 ldrh r3, [r6, #20] +10008998: 4625 mov r5, r4 +1000899a: 429a cmp r2, r3 +1000899c: d1f8 bne.n 10008990 +1000899e: 6922 ldr r2, [r4, #16] +100089a0: 6933 ldr r3, [r6, #16] +100089a2: 429a cmp r2, r3 +100089a4: d1f4 bne.n 10008990 +100089a6: f011 fbe7 bl 1001a178 +100089aa: 6930 ldr r0, [r6, #16] +100089ac: f00b fa36 bl 10013e1c +100089b0: 4b0c ldr r3, [pc, #48] ; (100089e4 ) +100089b2: 9001 str r0, [sp, #4] +100089b4: 681b ldr r3, [r3, #0] +100089b6: 061b lsls r3, r3, #24 +100089b8: d50a bpl.n 100089d0 +100089ba: 4b0b ldr r3, [pc, #44] ; (100089e8 ) +100089bc: 781b ldrb r3, [r3, #0] +100089be: b13b cbz r3, 100089d0 +100089c0: a801 add r0, sp, #4 +100089c2: f00a ff23 bl 1001380c +100089c6: 8ab2 ldrh r2, [r6, #20] +100089c8: 4601 mov r1, r0 +100089ca: 4808 ldr r0, [pc, #32] ; (100089ec ) +100089cc: f039 fb9c bl 10042108 +100089d0: f04f 30ff mov.w r0, #4294967295 +100089d4: b002 add sp, #8 +100089d6: bd70 pop {r4, r5, r6, pc} +100089d8: 62ae str r6, [r5, #40] ; 0x28 +100089da: f011 fbcd bl 1001a178 +100089de: 4620 mov r0, r4 +100089e0: b002 add sp, #8 +100089e2: bd70 pop {r4, r5, r6, pc} +100089e4: 1004d7e8 .word 0x1004d7e8 +100089e8: 1004d7f8 .word 0x1004d7f8 +100089ec: 100442d0 .word 0x100442d0 + +100089f0 : +100089f0: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100089f4: 4604 mov r4, r0 +100089f6: b08e sub sp, #56 ; 0x38 +100089f8: f44f 707a mov.w r0, #1000 ; 0x3e8 +100089fc: f013 f914 bl 1001bc28 +10008a00: 2c00 cmp r4, #0 +10008a02: f000 808c beq.w 10008b1e +10008a06: 68e6 ldr r6, [r4, #12] +10008a08: 2101 movs r1, #1 +10008a0a: 428e cmp r6, r1 +10008a0c: f04f 0002 mov.w r0, #2 +10008a10: 9105 str r1, [sp, #20] +10008a12: f04f 0200 mov.w r2, #0 +10008a16: bf08 it eq +10008a18: 4601 moveq r1, r0 +10008a1a: 8aa7 ldrh r7, [r4, #20] +10008a1c: f009 faea bl 10011ff4 +10008a20: 1c42 adds r2, r0, #1 +10008a22: 4605 mov r5, r0 +10008a24: d054 beq.n 10008ad0 +10008a26: 2204 movs r2, #4 +10008a28: 9200 str r2, [sp, #0] +10008a2a: f640 71ff movw r1, #4095 ; 0xfff +10008a2e: ab05 add r3, sp, #20 +10008a30: f009 fc8e bl 10012350 +10008a34: 2800 cmp r0, #0 +10008a36: f2c0 808e blt.w 10008b56 +10008a3a: 2100 movs r1, #0 +10008a3c: 2210 movs r2, #16 +10008a3e: a806 add r0, sp, #24 +10008a40: f039 fb94 bl 1004216c +10008a44: f04f 0800 mov.w r8, #0 +10008a48: 2302 movs r3, #2 +10008a4a: 4638 mov r0, r7 +10008a4c: f88d 3019 strb.w r3, [sp, #25] +10008a50: f8cd 801c str.w r8, [sp, #28] +10008a54: f00b f9da bl 10013e0c +10008a58: a906 add r1, sp, #24 +10008a5a: f8ad 001a strh.w r0, [sp, #26] +10008a5e: 2210 movs r2, #16 +10008a60: 4628 mov r0, r5 +10008a62: f008 ffe3 bl 10011a2c +10008a66: 4540 cmp r0, r8 +10008a68: db68 blt.n 10008b3c +10008a6a: 489b ldr r0, [pc, #620] ; (10008cd8 ) +10008a6c: f006 fd7e bl 1000f56c +10008a70: 6065 str r5, [r4, #4] +10008a72: 6800 ldr r0, [r0, #0] +10008a74: f00b f9d4 bl 10013e20 +10008a78: 6120 str r0, [r4, #16] +10008a7a: 2e00 cmp r6, #0 +10008a7c: d07e beq.n 10008b7c +10008a7e: 4620 mov r0, r4 +10008a80: f7ff fe26 bl 100086d0 +10008a84: 2800 cmp r0, #0 +10008a86: db75 blt.n 10008b74 +10008a88: f003 fbac bl 1000c1e4 +10008a8c: 6823 ldr r3, [r4, #0] +10008a8e: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008a92: 4a92 ldr r2, [pc, #584] ; (10008cdc ) +10008a94: 4892 ldr r0, [pc, #584] ; (10008ce0 ) +10008a96: f039 fac7 bl 10042028 +10008a9a: 4891 ldr r0, [pc, #580] ; (10008ce0 ) +10008a9c: f016 feb0 bl 1001f800 +10008aa0: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008aa4: 4a8f ldr r2, [pc, #572] ; (10008ce4 ) +10008aa6: 488e ldr r0, [pc, #568] ; (10008ce0 ) +10008aa8: f039 fabe bl 10042028 +10008aac: 488c ldr r0, [pc, #560] ; (10008ce0 ) +10008aae: f016 fea7 bl 1001f800 +10008ab2: f003 fb9d bl 1000c1f0 +10008ab6: 4b8c ldr r3, [pc, #560] ; (10008ce8 ) +10008ab8: f8c4 8020 str.w r8, [r4, #32] +10008abc: 681b ldr r3, [r3, #0] +10008abe: 061b lsls r3, r3, #24 +10008ac0: d527 bpl.n 10008b12 +10008ac2: 4b8a ldr r3, [pc, #552] ; (10008cec ) +10008ac4: 781b ldrb r3, [r3, #0] +10008ac6: b323 cbz r3, 10008b12 +10008ac8: 4889 ldr r0, [pc, #548] ; (10008cf0 ) +10008aca: f039 fb1d bl 10042108 +10008ace: e020 b.n 10008b12 +10008ad0: 4b85 ldr r3, [pc, #532] ; (10008ce8 ) +10008ad2: 681b ldr r3, [r3, #0] +10008ad4: 061b lsls r3, r3, #24 +10008ad6: d428 bmi.n 10008b2a +10008ad8: 2505 movs r5, #5 +10008ada: 2200 movs r2, #0 +10008adc: 6222 str r2, [r4, #32] +10008ade: 4620 mov r0, r4 +10008ae0: f7ff fbf0 bl 100082c4 +10008ae4: f003 fb7e bl 1000c1e4 +10008ae8: 462b mov r3, r5 +10008aea: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008aee: 4a81 ldr r2, [pc, #516] ; (10008cf4 ) +10008af0: 487b ldr r0, [pc, #492] ; (10008ce0 ) +10008af2: f039 fa99 bl 10042028 +10008af6: 487a ldr r0, [pc, #488] ; (10008ce0 ) +10008af8: f016 fe82 bl 1001f800 +10008afc: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008b00: 4a78 ldr r2, [pc, #480] ; (10008ce4 ) +10008b02: 4877 ldr r0, [pc, #476] ; (10008ce0 ) +10008b04: f039 fa90 bl 10042028 +10008b08: 4875 ldr r0, [pc, #468] ; (10008ce0 ) +10008b0a: f016 fe79 bl 1001f800 +10008b0e: f003 fb6f bl 1000c1f0 +10008b12: 2000 movs r0, #0 +10008b14: f012 fe5e bl 1001b7d4 +10008b18: b00e add sp, #56 ; 0x38 +10008b1a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10008b1e: 4620 mov r0, r4 +10008b20: f012 fe58 bl 1001b7d4 +10008b24: b00e add sp, #56 ; 0x38 +10008b26: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10008b2a: 4b70 ldr r3, [pc, #448] ; (10008cec ) +10008b2c: 781b ldrb r3, [r3, #0] +10008b2e: 2b01 cmp r3, #1 +10008b30: d9d2 bls.n 10008ad8 +10008b32: 4871 ldr r0, [pc, #452] ; (10008cf8 ) +10008b34: f039 fae8 bl 10042108 +10008b38: 2505 movs r5, #5 +10008b3a: e7ce b.n 10008ada +10008b3c: 4b6a ldr r3, [pc, #424] ; (10008ce8 ) +10008b3e: 681b ldr r3, [r3, #0] +10008b40: 061e lsls r6, r3, #24 +10008b42: d519 bpl.n 10008b78 +10008b44: 4b69 ldr r3, [pc, #420] ; (10008cec ) +10008b46: 781b ldrb r3, [r3, #0] +10008b48: 2b01 cmp r3, #1 +10008b4a: d915 bls.n 10008b78 +10008b4c: 486b ldr r0, [pc, #428] ; (10008cfc ) +10008b4e: f039 fadb bl 10042108 +10008b52: 2507 movs r5, #7 +10008b54: e7c1 b.n 10008ada +10008b56: 4b64 ldr r3, [pc, #400] ; (10008ce8 ) +10008b58: 681b ldr r3, [r3, #0] +10008b5a: 061f lsls r7, r3, #24 +10008b5c: d508 bpl.n 10008b70 +10008b5e: 4b63 ldr r3, [pc, #396] ; (10008cec ) +10008b60: 781b ldrb r3, [r3, #0] +10008b62: 2b01 cmp r3, #1 +10008b64: d904 bls.n 10008b70 +10008b66: 4866 ldr r0, [pc, #408] ; (10008d00 ) +10008b68: f039 face bl 10042108 +10008b6c: 2506 movs r5, #6 +10008b6e: e7b4 b.n 10008ada +10008b70: 2506 movs r5, #6 +10008b72: e7b2 b.n 10008ada +10008b74: 250c movs r5, #12 +10008b76: e7b0 b.n 10008ada +10008b78: 2507 movs r5, #7 +10008b7a: e7ae b.n 10008ada +10008b7c: 4628 mov r0, r5 +10008b7e: 2105 movs r1, #5 +10008b80: f009 f820 bl 10011bc4 +10008b84: 2800 cmp r0, #0 +10008b86: f2c0 8083 blt.w 10008c90 +10008b8a: 4620 mov r0, r4 +10008b8c: f7ff fda0 bl 100086d0 +10008b90: 2800 cmp r0, #0 +10008b92: f2c0 808a blt.w 10008caa +10008b96: f003 fb25 bl 1000c1e4 +10008b9a: 6823 ldr r3, [r4, #0] +10008b9c: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008ba0: 4a4e ldr r2, [pc, #312] ; (10008cdc ) +10008ba2: 484f ldr r0, [pc, #316] ; (10008ce0 ) +10008ba4: f039 fa40 bl 10042028 +10008ba8: 484d ldr r0, [pc, #308] ; (10008ce0 ) +10008baa: f016 fe29 bl 1001f800 +10008bae: f8df 8138 ldr.w r8, [pc, #312] ; 10008ce8 +10008bb2: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008bb6: 4a4b ldr r2, [pc, #300] ; (10008ce4 ) +10008bb8: 4849 ldr r0, [pc, #292] ; (10008ce0 ) +10008bba: f039 fa35 bl 10042028 +10008bbe: 4848 ldr r0, [pc, #288] ; (10008ce0 ) +10008bc0: f016 fe1e bl 1001f800 +10008bc4: f003 fb14 bl 1000c1f0 +10008bc8: f8d8 3000 ldr.w r3, [r8] +10008bcc: 0618 lsls r0, r3, #24 +10008bce: d506 bpl.n 10008bde +10008bd0: 4b46 ldr r3, [pc, #280] ; (10008cec ) +10008bd2: 781b ldrb r3, [r3, #0] +10008bd4: 2b01 cmp r3, #1 +10008bd6: d902 bls.n 10008bde +10008bd8: 484a ldr r0, [pc, #296] ; (10008d04 ) +10008bda: f039 fa95 bl 10042108 +10008bde: 2310 movs r3, #16 +10008be0: 9304 str r3, [sp, #16] +10008be2: 4628 mov r0, r5 +10008be4: a90a add r1, sp, #40 ; 0x28 +10008be6: aa04 add r2, sp, #16 +10008be8: f008 fe74 bl 100118d4 +10008bec: 1e07 subs r7, r0, #0 +10008bee: db40 blt.n 10008c72 +10008bf0: 2000 movs r0, #0 +10008bf2: 2102 movs r1, #2 +10008bf4: f7ff fb22 bl 1000823c +10008bf8: 4606 mov r6, r0 +10008bfa: 2800 cmp r0, #0 +10008bfc: d05d beq.n 10008cba +10008bfe: 6047 str r7, [r0, #4] +10008c00: f8bd 002a ldrh.w r0, [sp, #42] ; 0x2a +10008c04: f00b f906 bl 10013e14 +10008c08: 82b0 strh r0, [r6, #20] +10008c0a: 980b ldr r0, [sp, #44] ; 0x2c +10008c0c: f00b f908 bl 10013e20 +10008c10: 4631 mov r1, r6 +10008c12: 6130 str r0, [r6, #16] +10008c14: 4620 mov r0, r4 +10008c16: f7ff feb5 bl 10008984 +10008c1a: 2800 cmp r0, #0 +10008c1c: db49 blt.n 10008cb2 +10008c1e: f003 fae1 bl 1000c1e4 +10008c22: a80b add r0, sp, #44 ; 0x2c +10008c24: 6827 ldr r7, [r4, #0] +10008c26: f8d6 a000 ldr.w sl, [r6] +10008c2a: f00a fdef bl 1001380c +10008c2e: 4681 mov r9, r0 +10008c30: f8bd 002a ldrh.w r0, [sp, #42] ; 0x2a +10008c34: f00b f8ee bl 10013e14 +10008c38: f8cd a000 str.w sl, [sp] +10008c3c: 9002 str r0, [sp, #8] +10008c3e: f8cd 9004 str.w r9, [sp, #4] +10008c42: 6872 ldr r2, [r6, #4] +10008c44: 463b mov r3, r7 +10008c46: 9203 str r2, [sp, #12] +10008c48: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008c4c: 4a2e ldr r2, [pc, #184] ; (10008d08 ) +10008c4e: 4824 ldr r0, [pc, #144] ; (10008ce0 ) +10008c50: f039 f9ea bl 10042028 +10008c54: 4822 ldr r0, [pc, #136] ; (10008ce0 ) +10008c56: f016 fdd3 bl 1001f800 +10008c5a: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008c5e: 4a21 ldr r2, [pc, #132] ; (10008ce4 ) +10008c60: 481f ldr r0, [pc, #124] ; (10008ce0 ) +10008c62: f039 f9e1 bl 10042028 +10008c66: 481e ldr r0, [pc, #120] ; (10008ce0 ) +10008c68: f016 fdca bl 1001f800 +10008c6c: f003 fac0 bl 1000c1f0 +10008c70: e7b7 b.n 10008be2 +10008c72: f8d8 3000 ldr.w r3, [r8] +10008c76: 0619 lsls r1, r3, #24 +10008c78: d508 bpl.n 10008c8c +10008c7a: 4b1c ldr r3, [pc, #112] ; (10008cec ) +10008c7c: 781b ldrb r3, [r3, #0] +10008c7e: 2b01 cmp r3, #1 +10008c80: d904 bls.n 10008c8c +10008c82: 4822 ldr r0, [pc, #136] ; (10008d0c ) +10008c84: f039 fa40 bl 10042108 +10008c88: 250a movs r5, #10 +10008c8a: e726 b.n 10008ada +10008c8c: 250a movs r5, #10 +10008c8e: e724 b.n 10008ada +10008c90: 4b15 ldr r3, [pc, #84] ; (10008ce8 ) +10008c92: 681b ldr r3, [r3, #0] +10008c94: 061d lsls r5, r3, #24 +10008c96: d50a bpl.n 10008cae +10008c98: 4b14 ldr r3, [pc, #80] ; (10008cec ) +10008c9a: 781b ldrb r3, [r3, #0] +10008c9c: 2b01 cmp r3, #1 +10008c9e: d906 bls.n 10008cae +10008ca0: 481b ldr r0, [pc, #108] ; (10008d10 ) +10008ca2: f039 fa31 bl 10042108 +10008ca6: 2508 movs r5, #8 +10008ca8: e717 b.n 10008ada +10008caa: 2509 movs r5, #9 +10008cac: e715 b.n 10008ada +10008cae: 2508 movs r5, #8 +10008cb0: e713 b.n 10008ada +10008cb2: 4630 mov r0, r6 +10008cb4: f7ff fb06 bl 100082c4 +10008cb8: e793 b.n 10008be2 +10008cba: f8d8 3000 ldr.w r3, [r8] +10008cbe: 061a lsls r2, r3, #24 +10008cc0: d508 bpl.n 10008cd4 +10008cc2: 4b0a ldr r3, [pc, #40] ; (10008cec ) +10008cc4: 781b ldrb r3, [r3, #0] +10008cc6: 2b01 cmp r3, #1 +10008cc8: d904 bls.n 10008cd4 +10008cca: 4812 ldr r0, [pc, #72] ; (10008d14 ) +10008ccc: f039 fa1c bl 10042108 +10008cd0: 250b movs r5, #11 +10008cd2: e702 b.n 10008ada +10008cd4: 250b movs r5, #11 +10008cd6: e700 b.n 10008ada +10008cd8: 10050ae4 .word 0x10050ae4 +10008cdc: 10044360 .word 0x10044360 +10008ce0: 1005207c .word 0x1005207c +10008ce4: 100493c8 .word 0x100493c8 +10008ce8: 1004d7e8 .word 0x1004d7e8 +10008cec: 1004d7f8 .word 0x1004d7f8 +10008cf0: 10044434 .word 0x10044434 +10008cf4: 100441bc .word 0x100441bc +10008cf8: 100442f8 .word 0x100442f8 +10008cfc: 10044334 .word 0x10044334 +10008d00: 10044310 .word 0x10044310 +10008d04: 10044380 .word 0x10044380 +10008d08: 100443d8 .word 0x100443d8 +10008d0c: 1004439c .word 0x1004439c +10008d10: 10044348 .word 0x10044348 +10008d14: 100443bc .word 0x100443bc + +10008d18 : +10008d18: 4b0a ldr r3, [pc, #40] ; (10008d44 ) +10008d1a: 6819 ldr r1, [r3, #0] +10008d1c: 6a49 ldr r1, [r1, #36] ; 0x24 +10008d1e: b169 cbz r1, 10008d3c +10008d20: 680b ldr r3, [r1, #0] +10008d22: 4283 cmp r3, r0 +10008d24: d00a beq.n 10008d3c +10008d26: 6a8b ldr r3, [r1, #40] ; 0x28 +10008d28: b91b cbnz r3, 10008d32 +10008d2a: e7f7 b.n 10008d1c +10008d2c: 6a9b ldr r3, [r3, #40] ; 0x28 +10008d2e: 2b00 cmp r3, #0 +10008d30: d0f4 beq.n 10008d1c +10008d32: 681a ldr r2, [r3, #0] +10008d34: 4282 cmp r2, r0 +10008d36: d1f9 bne.n 10008d2c +10008d38: 4618 mov r0, r3 +10008d3a: 4770 bx lr +10008d3c: 460b mov r3, r1 +10008d3e: 4618 mov r0, r3 +10008d40: 4770 bx lr +10008d42: bf00 nop +10008d44: 1005006c .word 0x1005006c + +10008d48 : +10008d48: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10008d4c: 2300 movs r3, #0 +10008d4e: b099 sub sp, #100 ; 0x64 +10008d50: 930c str r3, [sp, #48] ; 0x30 +10008d52: 930d str r3, [sp, #52] ; 0x34 +10008d54: 930e str r3, [sp, #56] ; 0x38 +10008d56: 930f str r3, [sp, #60] ; 0x3c +10008d58: 9310 str r3, [sp, #64] ; 0x40 +10008d5a: 9311 str r3, [sp, #68] ; 0x44 +10008d5c: 9312 str r3, [sp, #72] ; 0x48 +10008d5e: 9313 str r3, [sp, #76] ; 0x4c +10008d60: 9314 str r3, [sp, #80] ; 0x50 +10008d62: 9315 str r3, [sp, #84] ; 0x54 +10008d64: 9316 str r3, [sp, #88] ; 0x58 +10008d66: 9317 str r3, [sp, #92] ; 0x5c +10008d68: 4605 mov r5, r0 +10008d6a: f039 fa11 bl 10042190 +10008d6e: 4c49 ldr r4, [pc, #292] ; (10008e94 ) +10008d70: 4606 mov r6, r0 +10008d72: 6823 ldr r3, [r4, #0] +10008d74: 0619 lsls r1, r3, #24 +10008d76: d503 bpl.n 10008d80 +10008d78: 4b47 ldr r3, [pc, #284] ; (10008e98 ) +10008d7a: 781b ldrb r3, [r3, #0] +10008d7c: 2b00 cmp r3, #0 +10008d7e: d132 bne.n 10008de6 +10008d80: 4628 mov r0, r5 +10008d82: a90c add r1, sp, #48 ; 0x30 +10008d84: f003 f8ba bl 1000befc +10008d88: 2803 cmp r0, #3 +10008d8a: d021 beq.n 10008dd0 +10008d8c: 2805 cmp r0, #5 +10008d8e: d01f beq.n 10008dd0 +10008d90: 6823 ldr r3, [r4, #0] +10008d92: 061a lsls r2, r3, #24 +10008d94: d40f bmi.n 10008db6 +10008d96: 2301 movs r3, #1 +10008d98: f04f 35ff mov.w r5, #4294967295 +10008d9c: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008da0: 4a3e ldr r2, [pc, #248] ; (10008e9c ) +10008da2: 9500 str r5, [sp, #0] +10008da4: 483e ldr r0, [pc, #248] ; (10008ea0 ) +10008da6: f039 f93f bl 10042028 +10008daa: 483d ldr r0, [pc, #244] ; (10008ea0 ) +10008dac: f016 fd28 bl 1001f800 +10008db0: b019 add sp, #100 ; 0x64 +10008db2: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10008db6: 4b38 ldr r3, [pc, #224] ; (10008e98 ) +10008db8: 781b ldrb r3, [r3, #0] +10008dba: 2b01 cmp r3, #1 +10008dbc: d9eb bls.n 10008d96 +10008dbe: 4839 ldr r0, [pc, #228] ; (10008ea4 ) +10008dc0: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008dc4: f039 f9a0 bl 10042108 +10008dc8: f04f 35ff mov.w r5, #4294967295 +10008dcc: 2301 movs r3, #1 +10008dce: e7e5 b.n 10008d9c +10008dd0: 980d ldr r0, [sp, #52] ; 0x34 +10008dd2: 4f35 ldr r7, [pc, #212] ; (10008ea8 ) +10008dd4: 47b8 blx r7 +10008dd6: f5b0 6fc8 cmp.w r0, #1600 ; 0x640 +10008dda: 4680 mov r8, r0 +10008ddc: dd07 ble.n 10008dee +10008dde: 2302 movs r3, #2 +10008de0: f04f 35ff mov.w r5, #4294967295 +10008de4: e7da b.n 10008d9c +10008de6: 4831 ldr r0, [pc, #196] ; (10008eac ) +10008de8: f039 f98e bl 10042108 +10008dec: e7c8 b.n 10008d80 +10008dee: 980e ldr r0, [sp, #56] ; 0x38 +10008df0: 47b8 blx r7 +10008df2: 4605 mov r5, r0 +10008df4: f7ff ff90 bl 10008d18 +10008df8: 4681 mov r9, r0 +10008dfa: 2800 cmp r0, #0 +10008dfc: d048 beq.n 10008e90 +10008dfe: 68c3 ldr r3, [r0, #12] +10008e00: 2b01 cmp r3, #1 +10008e02: d01c beq.n 10008e3e +10008e04: af05 add r7, sp, #20 +10008e06: 4c2a ldr r4, [pc, #168] ; (10008eb0 ) +10008e08: e897 0007 ldmia.w r7, {r0, r1, r2} +10008e0c: 9b04 ldr r3, [sp, #16] +10008e0e: e88d 0007 stmia.w sp, {r0, r1, r2} +10008e12: 4648 mov r0, r9 +10008e14: fa1f f288 uxth.w r2, r8 +10008e18: 19a1 adds r1, r4, r6 +10008e1a: f7ff f8bd bl 10007f98 +10008e1e: 4603 mov r3, r0 +10008e20: 2800 cmp r0, #0 +10008e22: d1bb bne.n 10008d9c +10008e24: 462b mov r3, r5 +10008e26: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008e2a: 4a22 ldr r2, [pc, #136] ; (10008eb4 ) +10008e2c: 481c ldr r0, [pc, #112] ; (10008ea0 ) +10008e2e: f039 f8fb bl 10042028 +10008e32: 481b ldr r0, [pc, #108] ; (10008ea0 ) +10008e34: f016 fce4 bl 1001f800 +10008e38: b019 add sp, #100 ; 0x64 +10008e3a: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10008e3e: f990 3008 ldrsb.w r3, [r0, #8] +10008e42: 2b00 cmp r3, #0 +10008e44: d1de bne.n 10008e04 +10008e46: 990f ldr r1, [sp, #60] ; 0x3c +10008e48: a808 add r0, sp, #32 +10008e4a: 9308 str r3, [sp, #32] +10008e4c: 9309 str r3, [sp, #36] ; 0x24 +10008e4e: 930a str r3, [sp, #40] ; 0x28 +10008e50: 930b str r3, [sp, #44] ; 0x2c +10008e52: f039 f997 bl 10042184 +10008e56: 2302 movs r3, #2 +10008e58: 9810 ldr r0, [sp, #64] ; 0x40 +10008e5a: f88d 3011 strb.w r3, [sp, #17] +10008e5e: 47b8 blx r7 +10008e60: b280 uxth r0, r0 +10008e62: f00a ffd3 bl 10013e0c +10008e66: af05 add r7, sp, #20 +10008e68: f8ad 0012 strh.w r0, [sp, #18] +10008e6c: 4639 mov r1, r7 +10008e6e: a808 add r0, sp, #32 +10008e70: f00a fbbe bl 100135f0 +10008e74: 2800 cmp r0, #0 +10008e76: d1c6 bne.n 10008e06 +10008e78: 6823 ldr r3, [r4, #0] +10008e7a: 061b lsls r3, r3, #24 +10008e7c: d506 bpl.n 10008e8c +10008e7e: 4b06 ldr r3, [pc, #24] ; (10008e98 ) +10008e80: 781b ldrb r3, [r3, #0] +10008e82: 2b01 cmp r3, #1 +10008e84: d902 bls.n 10008e8c +10008e86: 480c ldr r0, [pc, #48] ; (10008eb8 ) +10008e88: f039 f93e bl 10042108 +10008e8c: 2304 movs r3, #4 +10008e8e: e785 b.n 10008d9c +10008e90: 2303 movs r3, #3 +10008e92: e783 b.n 10008d9c +10008e94: 1004d7e8 .word 0x1004d7e8 +10008e98: 1004d7f8 .word 0x1004d7f8 +10008e9c: 100444e8 .word 0x100444e8 +10008ea0: 1005207c .word 0x1005207c +10008ea4: 10044474 .word 0x10044474 +10008ea8: 0000f769 .word 0x0000f769 +10008eac: 10044450 .word 0x10044450 +10008eb0: 10050106 .word 0x10050106 +10008eb4: 10044500 .word 0x10044500 +10008eb8: 100444c4 .word 0x100444c4 + +10008ebc : +10008ebc: b570 push {r4, r5, r6, lr} +10008ebe: 4c5f ldr r4, [pc, #380] ; (1000903c ) +10008ec0: b098 sub sp, #96 ; 0x60 +10008ec2: 6822 ldr r2, [r4, #0] +10008ec4: 2300 movs r3, #0 +10008ec6: 0616 lsls r6, r2, #24 +10008ec8: 4605 mov r5, r0 +10008eca: 9304 str r3, [sp, #16] +10008ecc: 9305 str r3, [sp, #20] +10008ece: 9306 str r3, [sp, #24] +10008ed0: 9307 str r3, [sp, #28] +10008ed2: 9308 str r3, [sp, #32] +10008ed4: 9309 str r3, [sp, #36] ; 0x24 +10008ed6: 930a str r3, [sp, #40] ; 0x28 +10008ed8: 930b str r3, [sp, #44] ; 0x2c +10008eda: 930c str r3, [sp, #48] ; 0x30 +10008edc: 930d str r3, [sp, #52] ; 0x34 +10008ede: 930e str r3, [sp, #56] ; 0x38 +10008ee0: 930f str r3, [sp, #60] ; 0x3c +10008ee2: 9310 str r3, [sp, #64] ; 0x40 +10008ee4: 9311 str r3, [sp, #68] ; 0x44 +10008ee6: 9312 str r3, [sp, #72] ; 0x48 +10008ee8: 9313 str r3, [sp, #76] ; 0x4c +10008eea: 9314 str r3, [sp, #80] ; 0x50 +10008eec: 9315 str r3, [sp, #84] ; 0x54 +10008eee: 9316 str r3, [sp, #88] ; 0x58 +10008ef0: 9317 str r3, [sp, #92] ; 0x5c +10008ef2: d503 bpl.n 10008efc +10008ef4: 4b52 ldr r3, [pc, #328] ; (10009040 ) +10008ef6: 781b ldrb r3, [r3, #0] +10008ef8: 2b00 cmp r3, #0 +10008efa: d16d bne.n 10008fd8 +10008efc: 2d00 cmp r5, #0 +10008efe: d04b beq.n 10008f98 +10008f00: a90c add r1, sp, #48 ; 0x30 +10008f02: 4628 mov r0, r5 +10008f04: f002 fffa bl 1000befc +10008f08: 4606 mov r6, r0 +10008f0a: 980d ldr r0, [sp, #52] ; 0x34 +10008f0c: f039 f940 bl 10042190 +10008f10: 2802 cmp r0, #2 +10008f12: d814 bhi.n 10008f3e +10008f14: 4b4b ldr r3, [pc, #300] ; (10009044 ) +10008f16: 980d ldr r0, [sp, #52] ; 0x34 +10008f18: 4798 blx r3 +10008f1a: f7ff fefd bl 10008d18 +10008f1e: 2800 cmp r0, #0 +10008f20: d078 beq.n 10009014 +10008f22: 7a03 ldrb r3, [r0, #8] +10008f24: b25a sxtb r2, r3 +10008f26: 2a01 cmp r2, #1 +10008f28: d07b beq.n 10009022 +10008f2a: ad04 add r5, sp, #16 +10008f2c: 2b00 cmp r3, #0 +10008f2e: d057 beq.n 10008fe0 +10008f30: 2a02 cmp r2, #2 +10008f32: d109 bne.n 10008f48 +10008f34: 6901 ldr r1, [r0, #16] +10008f36: 4628 mov r0, r5 +10008f38: f039 f924 bl 10042184 +10008f3c: e004 b.n 10008f48 +10008f3e: ad04 add r5, sp, #16 +10008f40: 4628 mov r0, r5 +10008f42: 990d ldr r1, [sp, #52] ; 0x34 +10008f44: f039 f91e bl 10042184 +10008f48: 2e02 cmp r6, #2 +10008f4a: d112 bne.n 10008f72 +10008f4c: 6823 ldr r3, [r4, #0] +10008f4e: 0619 lsls r1, r3, #24 +10008f50: d43a bmi.n 10008fc8 +10008f52: 4628 mov r0, r5 +10008f54: 2100 movs r1, #0 +10008f56: 2205 movs r2, #5 +10008f58: f006 fcfa bl 1000f950 +10008f5c: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008f60: 4a39 ldr r2, [pc, #228] ; (10009048 ) +10008f62: 483a ldr r0, [pc, #232] ; (1000904c ) +10008f64: f039 f860 bl 10042028 +10008f68: 4838 ldr r0, [pc, #224] ; (1000904c ) +10008f6a: f016 fc49 bl 1001f800 +10008f6e: b018 add sp, #96 ; 0x60 +10008f70: bd70 pop {r4, r5, r6, pc} +10008f72: 980e ldr r0, [sp, #56] ; 0x38 +10008f74: 4936 ldr r1, [pc, #216] ; (10009050 ) +10008f76: f039 f8ff bl 10042178 +10008f7a: 2800 cmp r0, #0 +10008f7c: d135 bne.n 10008fea +10008f7e: 6823 ldr r3, [r4, #0] +10008f80: 061a lsls r2, r3, #24 +10008f82: d503 bpl.n 10008f8c +10008f84: 4b2e ldr r3, [pc, #184] ; (10009040 ) +10008f86: 781b ldrb r3, [r3, #0] +10008f88: 2b00 cmp r3, #0 +10008f8a: d145 bne.n 10009018 +10008f8c: 4628 mov r0, r5 +10008f8e: 2101 movs r1, #1 +10008f90: 2200 movs r2, #0 +10008f92: f006 fcdd bl 1000f950 +10008f96: e7e1 b.n 10008f5c +10008f98: 6823 ldr r3, [r4, #0] +10008f9a: 0618 lsls r0, r3, #24 +10008f9c: d508 bpl.n 10008fb0 +10008f9e: 4b28 ldr r3, [pc, #160] ; (10009040 ) +10008fa0: 781b ldrb r3, [r3, #0] +10008fa2: 2b01 cmp r3, #1 +10008fa4: d904 bls.n 10008fb0 +10008fa6: 482b ldr r0, [pc, #172] ; (10009054 ) +10008fa8: f039 f8ae bl 10042108 +10008fac: 2301 movs r3, #1 +10008fae: e000 b.n 10008fb2 +10008fb0: 2301 movs r3, #1 +10008fb2: f44f 61c8 mov.w r1, #1600 ; 0x640 +10008fb6: 4a28 ldr r2, [pc, #160] ; (10009058 ) +10008fb8: 4824 ldr r0, [pc, #144] ; (1000904c ) +10008fba: f039 f835 bl 10042028 +10008fbe: 4823 ldr r0, [pc, #140] ; (1000904c ) +10008fc0: f016 fc1e bl 1001f800 +10008fc4: b018 add sp, #96 ; 0x60 +10008fc6: bd70 pop {r4, r5, r6, pc} +10008fc8: 4b1d ldr r3, [pc, #116] ; (10009040 ) +10008fca: 781b ldrb r3, [r3, #0] +10008fcc: 2b00 cmp r3, #0 +10008fce: d0c0 beq.n 10008f52 +10008fd0: 4822 ldr r0, [pc, #136] ; (1000905c ) +10008fd2: f039 f899 bl 10042108 +10008fd6: e7bc b.n 10008f52 +10008fd8: 4821 ldr r0, [pc, #132] ; (10009060 ) +10008fda: f039 f895 bl 10042108 +10008fde: e78d b.n 10008efc +10008fe0: 4628 mov r0, r5 +10008fe2: 4920 ldr r1, [pc, #128] ; (10009064 ) +10008fe4: f039 f8ce bl 10042184 +10008fe8: e7ae b.n 10008f48 +10008fea: 4b16 ldr r3, [pc, #88] ; (10009044 ) +10008fec: 980e ldr r0, [sp, #56] ; 0x38 +10008fee: 4798 blx r3 +10008ff0: 6823 ldr r3, [r4, #0] +10008ff2: 4602 mov r2, r0 +10008ff4: 061b lsls r3, r3, #24 +10008ff6: d508 bpl.n 1000900a +10008ff8: 4b11 ldr r3, [pc, #68] ; (10009040 ) +10008ffa: 781b ldrb r3, [r3, #0] +10008ffc: b12b cbz r3, 1000900a +10008ffe: 4611 mov r1, r2 +10009000: 4819 ldr r0, [pc, #100] ; (10009068 ) +10009002: 9201 str r2, [sp, #4] +10009004: f039 f880 bl 10042108 +10009008: 9a01 ldr r2, [sp, #4] +1000900a: 4628 mov r0, r5 +1000900c: 2100 movs r1, #0 +1000900e: f006 fc9f bl 1000f950 +10009012: e7a3 b.n 10008f5c +10009014: 2302 movs r3, #2 +10009016: e7cc b.n 10008fb2 +10009018: 490d ldr r1, [pc, #52] ; (10009050 ) +1000901a: 4814 ldr r0, [pc, #80] ; (1000906c ) +1000901c: f039 f874 bl 10042108 +10009020: e7b4 b.n 10008f8c +10009022: 6900 ldr r0, [r0, #16] +10009024: f00a fefa bl 10013e1c +10009028: ab18 add r3, sp, #96 ; 0x60 +1000902a: f843 0d54 str.w r0, [r3, #-84]! +1000902e: ad04 add r5, sp, #16 +10009030: 4618 mov r0, r3 +10009032: 4629 mov r1, r5 +10009034: 2220 movs r2, #32 +10009036: f00a fb89 bl 1001374c +1000903a: e785 b.n 10008f48 +1000903c: 1004d7e8 .word 0x1004d7e8 +10009040: 1004d7f8 .word 0x1004d7f8 +10009044: 0000f769 .word 0x0000f769 +10009048: 100445f8 .word 0x100445f8 +1000904c: 1005207c .word 0x1005207c +10009050: 100445a4 .word 0x100445a4 +10009054: 10044530 .word 0x10044530 +10009058: 100445e4 .word 0x100445e4 +1000905c: 1004458c .word 0x1004458c +10009060: 10044510 .word 0x10044510 +10009064: 10044580 .word 0x10044580 +10009068: 100445c8 .word 0x100445c8 +1000906c: 100445ac .word 0x100445ac + +10009070 : +10009070: b538 push {r3, r4, r5, lr} +10009072: 4d22 ldr r5, [pc, #136] ; (100090fc ) +10009074: 4604 mov r4, r0 +10009076: 682b ldr r3, [r5, #0] +10009078: 061a lsls r2, r3, #24 +1000907a: d503 bpl.n 10009084 +1000907c: 4b20 ldr r3, [pc, #128] ; (10009100 ) +1000907e: 781b ldrb r3, [r3, #0] +10009080: 2b00 cmp r3, #0 +10009082: d134 bne.n 100090ee +10009084: b1dc cbz r4, 100090be +10009086: 4620 mov r0, r4 +10009088: 4b1e ldr r3, [pc, #120] ; (10009104 ) +1000908a: 4798 blx r3 +1000908c: b988 cbnz r0, 100090b2 +1000908e: 4b1e ldr r3, [pc, #120] ; (10009108 ) +10009090: 681a ldr r2, [r3, #0] +10009092: 2a01 cmp r2, #1 +10009094: bf08 it eq +10009096: 6018 streq r0, [r3, #0] +10009098: f7ff f96e bl 10008378 +1000909c: 481b ldr r0, [pc, #108] ; (1000910c ) +1000909e: f44f 61c8 mov.w r1, #1600 ; 0x640 +100090a2: 4a1b ldr r2, [pc, #108] ; (10009110 ) +100090a4: f038 ffc0 bl 10042028 +100090a8: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +100090ac: 4817 ldr r0, [pc, #92] ; (1000910c ) +100090ae: f016 bba7 b.w 1001f800 +100090b2: f7ff fe31 bl 10008d18 +100090b6: b1f0 cbz r0, 100090f6 +100090b8: f7ff f904 bl 100082c4 +100090bc: e7ee b.n 1000909c +100090be: 682b ldr r3, [r5, #0] +100090c0: 061b lsls r3, r3, #24 +100090c2: d508 bpl.n 100090d6 +100090c4: 4b0e ldr r3, [pc, #56] ; (10009100 ) +100090c6: 781b ldrb r3, [r3, #0] +100090c8: 2b01 cmp r3, #1 +100090ca: d904 bls.n 100090d6 +100090cc: 4811 ldr r0, [pc, #68] ; (10009114 ) +100090ce: f039 f81b bl 10042108 +100090d2: 2301 movs r3, #1 +100090d4: e000 b.n 100090d8 +100090d6: 2301 movs r3, #1 +100090d8: 480c ldr r0, [pc, #48] ; (1000910c ) +100090da: f44f 61c8 mov.w r1, #1600 ; 0x640 +100090de: 4a0e ldr r2, [pc, #56] ; (10009118 ) +100090e0: f038 ffa2 bl 10042028 +100090e4: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +100090e8: 4808 ldr r0, [pc, #32] ; (1000910c ) +100090ea: f016 bb89 b.w 1001f800 +100090ee: 480b ldr r0, [pc, #44] ; (1000911c ) +100090f0: f039 f80a bl 10042108 +100090f4: e7c6 b.n 10009084 +100090f6: 2303 movs r3, #3 +100090f8: e7ee b.n 100090d8 +100090fa: bf00 nop +100090fc: 1004d7e8 .word 0x1004d7e8 +10009100: 1004d7f8 .word 0x1004d7f8 +10009104: 0000f769 .word 0x0000f769 +10009108: 1005007c .word 0x1005007c +1000910c: 1005207c .word 0x1005207c +10009110: 10044674 .word 0x10044674 +10009114: 10044630 .word 0x10044630 +10009118: 10044660 .word 0x10044660 +1000911c: 10044604 .word 0x10044604 + +10009120 : +10009120: 1e43 subs r3, r0, #1 +10009122: 2b09 cmp r3, #9 +10009124: b510 push {r4, lr} +10009126: 4604 mov r4, r0 +10009128: d811 bhi.n 1000914e +1000912a: f011 f81f bl 1001a16c +1000912e: 232c movs r3, #44 ; 0x2c +10009130: fb03 f404 mul.w r4, r3, r4 +10009134: 4b09 ldr r3, [pc, #36] ; (1000915c ) +10009136: 4601 mov r1, r0 +10009138: 591a ldr r2, [r3, r4] +1000913a: 441c add r4, r3 +1000913c: 3201 adds r2, #1 +1000913e: d008 beq.n 10009152 +10009140: 6863 ldr r3, [r4, #4] +10009142: 3301 adds r3, #1 +10009144: d005 beq.n 10009152 +10009146: f011 f817 bl 1001a178 +1000914a: 4620 mov r0, r4 +1000914c: bd10 pop {r4, pc} +1000914e: 2000 movs r0, #0 +10009150: bd10 pop {r4, pc} +10009152: 4608 mov r0, r1 +10009154: f011 f810 bl 1001a178 +10009158: 2000 movs r0, #0 +1000915a: bd10 pop {r4, pc} +1000915c: 1004f22c .word 0x1004f22c + +10009160 : +10009160: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10009164: b08d sub sp, #52 ; 0x34 +10009166: 4680 mov r8, r0 +10009168: 468b mov fp, r1 +1000916a: 4692 mov sl, r2 +1000916c: 4699 mov r9, r3 +1000916e: f10d 0417 add.w r4, sp, #23 +10009172: f10d 071f add.w r7, sp, #31 +10009176: 2600 movs r6, #0 +10009178: f804 6f01 strb.w r6, [r4, #1]! +1000917c: 42bc cmp r4, r7 +1000917e: f04f 0500 mov.w r5, #0 +10009182: d1f9 bne.n 10009178 +10009184: f8d8 0004 ldr.w r0, [r8, #4] +10009188: 2701 movs r7, #1 +1000918a: f000 031f and.w r3, r0, #31 +1000918e: 409f lsls r7, r3 +10009190: 0944 lsrs r4, r0, #5 +10009192: aa0c add r2, sp, #48 ; 0x30 +10009194: eb02 0484 add.w r4, r2, r4, lsl #2 +10009198: f854 3c18 ldr.w r3, [r4, #-24] +1000919c: aa04 add r2, sp, #16 +1000919e: 431f orrs r7, r3 +100091a0: 9200 str r2, [sp, #0] +100091a2: 3001 adds r0, #1 +100091a4: f644 6620 movw r6, #20000 ; 0x4e20 +100091a8: a906 add r1, sp, #24 +100091aa: 462a mov r2, r5 +100091ac: 462b mov r3, r5 +100091ae: f844 7c18 str.w r7, [r4, #-24] +100091b2: 9504 str r5, [sp, #16] +100091b4: 9605 str r6, [sp, #20] +100091b6: f008 ff6d bl 10012094 +100091ba: 42a8 cmp r0, r5 +100091bc: dd0f ble.n 100091de +100091be: f8d8 0004 ldr.w r0, [r8, #4] +100091c2: ac0c add r4, sp, #48 ; 0x30 +100091c4: 0943 lsrs r3, r0, #5 +100091c6: eb04 0383 add.w r3, r4, r3, lsl #2 +100091ca: f853 2c18 ldr.w r2, [r3, #-24] +100091ce: f000 031f and.w r3, r0, #31 +100091d2: fa42 f303 asr.w r3, r2, r3 +100091d6: f013 0301 ands.w r3, r3, #1 +100091da: d107 bne.n 100091ec +100091dc: 461d mov r5, r3 +100091de: 2400 movs r4, #0 +100091e0: 4620 mov r0, r4 +100091e2: f8c9 5000 str.w r5, [r9] +100091e6: b00d add sp, #52 ; 0x34 +100091e8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100091ec: f8d8 300c ldr.w r3, [r8, #12] +100091f0: 2b01 cmp r3, #1 +100091f2: d00c beq.n 1000920e +100091f4: 4659 mov r1, fp +100091f6: 4652 mov r2, sl +100091f8: f008 fe32 bl 10011e60 +100091fc: 1e05 subs r5, r0, #0 +100091fe: dcee bgt.n 100091de +10009200: 4b46 ldr r3, [pc, #280] ; (1000931c ) +10009202: 681b ldr r3, [r3, #0] +10009204: d162 bne.n 100092cc +10009206: 061a lsls r2, r3, #24 +10009208: d47e bmi.n 10009308 +1000920a: 2407 movs r4, #7 +1000920c: e023 b.n 10009256 +1000920e: f998 4008 ldrsb.w r4, [r8, #8] +10009212: 2310 movs r3, #16 +10009214: bb5c cbnz r4, 1000926e +10009216: ad08 add r5, sp, #32 +10009218: 461a mov r2, r3 +1000921a: 4628 mov r0, r5 +1000921c: 4621 mov r1, r4 +1000921e: 9303 str r3, [sp, #12] +10009220: f038 ffa4 bl 1004216c +10009224: ab03 add r3, sp, #12 +10009226: f8d8 0004 ldr.w r0, [r8, #4] +1000922a: 4659 mov r1, fp +1000922c: 9500 str r5, [sp, #0] +1000922e: 9301 str r3, [sp, #4] +10009230: 4652 mov r2, sl +10009232: 4623 mov r3, r4 +10009234: f008 fd04 bl 10011c40 +10009238: 1e05 subs r5, r0, #0 +1000923a: dd4b ble.n 100092d4 +1000923c: 2210 movs r2, #16 +1000923e: 9916 ldr r1, [sp, #88] ; 0x58 +10009240: a809 add r0, sp, #36 ; 0x24 +10009242: f00a fa83 bl 1001374c +10009246: f8bd 0022 ldrh.w r0, [sp, #34] ; 0x22 +1000924a: f00a fde3 bl 10013e14 +1000924e: 9a17 ldr r2, [sp, #92] ; 0x5c +10009250: 8010 strh r0, [r2, #0] +10009252: 2c00 cmp r4, #0 +10009254: d0c3 beq.n 100091de +10009256: f8d8 0004 ldr.w r0, [r8, #4] +1000925a: f008 fc2f bl 10011abc +1000925e: f04f 33ff mov.w r3, #4294967295 +10009262: 4620 mov r0, r4 +10009264: f8c8 3004 str.w r3, [r8, #4] +10009268: b00d add sp, #52 ; 0x34 +1000926a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000926e: ac08 add r4, sp, #32 +10009270: 461a mov r2, r3 +10009272: 4629 mov r1, r5 +10009274: 4620 mov r0, r4 +10009276: 9303 str r3, [sp, #12] +10009278: f038 ff78 bl 1004216c +1000927c: 2302 movs r3, #2 +1000927e: f8b8 0014 ldrh.w r0, [r8, #20] +10009282: f88d 3021 strb.w r3, [sp, #33] ; 0x21 +10009286: f00a fdc1 bl 10013e0c +1000928a: f8ad 0022 strh.w r0, [sp, #34] ; 0x22 +1000928e: f8d8 0010 ldr.w r0, [r8, #16] +10009292: f00a fdc3 bl 10013e1c +10009296: f8d8 7004 ldr.w r7, [r8, #4] +1000929a: ae03 add r6, sp, #12 +1000929c: 9009 str r0, [sp, #36] ; 0x24 +1000929e: 462b mov r3, r5 +100092a0: 9400 str r4, [sp, #0] +100092a2: 4659 mov r1, fp +100092a4: 4652 mov r2, sl +100092a6: 4638 mov r0, r7 +100092a8: 9601 str r6, [sp, #4] +100092aa: f008 fcc9 bl 10011c40 +100092ae: 1e05 subs r5, r0, #0 +100092b0: dc95 bgt.n 100091de +100092b2: 4b1a ldr r3, [pc, #104] ; (1000931c ) +100092b4: 681b ldr r3, [r3, #0] +100092b6: 0619 lsls r1, r3, #24 +100092b8: d519 bpl.n 100092ee +100092ba: 4b19 ldr r3, [pc, #100] ; (10009320 ) +100092bc: 781b ldrb r3, [r3, #0] +100092be: 2b01 cmp r3, #1 +100092c0: d915 bls.n 100092ee +100092c2: 4818 ldr r0, [pc, #96] ; (10009324 ) +100092c4: f038 ff20 bl 10042108 +100092c8: 2405 movs r4, #5 +100092ca: e7c4 b.n 10009256 +100092cc: 061b lsls r3, r3, #24 +100092ce: d412 bmi.n 100092f6 +100092d0: 2408 movs r4, #8 +100092d2: e7c0 b.n 10009256 +100092d4: 4b11 ldr r3, [pc, #68] ; (1000931c ) +100092d6: 681b ldr r3, [r3, #0] +100092d8: 0618 lsls r0, r3, #24 +100092da: d50a bpl.n 100092f2 +100092dc: 4b10 ldr r3, [pc, #64] ; (10009320 ) +100092de: 781b ldrb r3, [r3, #0] +100092e0: 2b01 cmp r3, #1 +100092e2: d906 bls.n 100092f2 +100092e4: 480f ldr r0, [pc, #60] ; (10009324 ) +100092e6: f038 ff0f bl 10042108 +100092ea: 2404 movs r4, #4 +100092ec: e7a6 b.n 1000923c +100092ee: 2405 movs r4, #5 +100092f0: e7b1 b.n 10009256 +100092f2: 2404 movs r4, #4 +100092f4: e7a2 b.n 1000923c +100092f6: 4b0a ldr r3, [pc, #40] ; (10009320 ) +100092f8: 781b ldrb r3, [r3, #0] +100092fa: 2b01 cmp r3, #1 +100092fc: d9e8 bls.n 100092d0 +100092fe: 480a ldr r0, [pc, #40] ; (10009328 ) +10009300: f038 ff02 bl 10042108 +10009304: 2408 movs r4, #8 +10009306: e7a6 b.n 10009256 +10009308: 4b05 ldr r3, [pc, #20] ; (10009320 ) +1000930a: 781b ldrb r3, [r3, #0] +1000930c: 2b01 cmp r3, #1 +1000930e: f67f af7c bls.w 1000920a +10009312: 4806 ldr r0, [pc, #24] ; (1000932c ) +10009314: f038 fef8 bl 10042108 +10009318: 2407 movs r4, #7 +1000931a: e79c b.n 10009256 +1000931c: 1004d7e8 .word 0x1004d7e8 +10009320: 1004d7f8 .word 0x1004d7f8 +10009324: 10044680 .word 0x10044680 +10009328: 100446d0 .word 0x100446d0 +1000932c: 100446a8 .word 0x100446a8 + +10009330 : +10009330: b5f0 push {r4, r5, r6, r7, lr} +10009332: 4c79 ldr r4, [pc, #484] ; (10009518 ) +10009334: b097 sub sp, #92 ; 0x5c +10009336: 6822 ldr r2, [r4, #0] +10009338: 2300 movs r3, #0 +1000933a: 0617 lsls r7, r2, #24 +1000933c: 4605 mov r5, r0 +1000933e: 930a str r3, [sp, #40] ; 0x28 +10009340: 930b str r3, [sp, #44] ; 0x2c +10009342: 930c str r3, [sp, #48] ; 0x30 +10009344: 930d str r3, [sp, #52] ; 0x34 +10009346: 930e str r3, [sp, #56] ; 0x38 +10009348: 930f str r3, [sp, #60] ; 0x3c +1000934a: 9310 str r3, [sp, #64] ; 0x40 +1000934c: 9311 str r3, [sp, #68] ; 0x44 +1000934e: 9312 str r3, [sp, #72] ; 0x48 +10009350: 9313 str r3, [sp, #76] ; 0x4c +10009352: 9314 str r3, [sp, #80] ; 0x50 +10009354: 9315 str r3, [sp, #84] ; 0x54 +10009356: 9305 str r3, [sp, #20] +10009358: 9306 str r3, [sp, #24] +1000935a: 9307 str r3, [sp, #28] +1000935c: 9308 str r3, [sp, #32] +1000935e: 9309 str r3, [sp, #36] ; 0x24 +10009360: f8ad 3012 strh.w r3, [sp, #18] +10009364: d503 bpl.n 1000936e +10009366: 4b6d ldr r3, [pc, #436] ; (1000951c ) +10009368: 781b ldrb r3, [r3, #0] +1000936a: 2b00 cmp r3, #0 +1000936c: d139 bne.n 100093e2 +1000936e: 4b6c ldr r3, [pc, #432] ; (10009520 ) +10009370: 681b ldr r3, [r3, #0] +10009372: 2b01 cmp r3, #1 +10009374: d023 beq.n 100093be +10009376: 4628 mov r0, r5 +10009378: a90a add r1, sp, #40 ; 0x28 +1000937a: f002 fdbf bl 1000befc +1000937e: 2803 cmp r0, #3 +10009380: 4606 mov r6, r0 +10009382: d032 beq.n 100093ea +10009384: 6823 ldr r3, [r4, #0] +10009386: 061d lsls r5, r3, #24 +10009388: d50a bpl.n 100093a0 +1000938a: 4b64 ldr r3, [pc, #400] ; (1000951c ) +1000938c: 781b ldrb r3, [r3, #0] +1000938e: 2b01 cmp r3, #1 +10009390: d906 bls.n 100093a0 +10009392: 4864 ldr r0, [pc, #400] ; (10009524 ) +10009394: f038 feb8 bl 10042108 +10009398: f04f 35ff mov.w r5, #4294967295 +1000939c: 2301 movs r3, #1 +1000939e: e002 b.n 100093a6 +100093a0: 2301 movs r3, #1 +100093a2: f04f 35ff mov.w r5, #4294967295 +100093a6: 9500 str r5, [sp, #0] +100093a8: 485f ldr r0, [pc, #380] ; (10009528 ) +100093aa: f44f 61c8 mov.w r1, #1600 ; 0x640 +100093ae: 4a5f ldr r2, [pc, #380] ; (1000952c ) +100093b0: f038 fe3a bl 10042028 +100093b4: 485c ldr r0, [pc, #368] ; (10009528 ) +100093b6: f016 fa23 bl 1001f800 +100093ba: b017 add sp, #92 ; 0x5c +100093bc: bdf0 pop {r4, r5, r6, r7, pc} +100093be: 6823 ldr r3, [r4, #0] +100093c0: 061e lsls r6, r3, #24 +100093c2: d50a bpl.n 100093da +100093c4: 4b55 ldr r3, [pc, #340] ; (1000951c ) +100093c6: 781b ldrb r3, [r3, #0] +100093c8: 2b01 cmp r3, #1 +100093ca: d906 bls.n 100093da +100093cc: 4858 ldr r0, [pc, #352] ; (10009530 ) +100093ce: f038 fe9b bl 10042108 +100093d2: f04f 35ff mov.w r5, #4294967295 +100093d6: 230a movs r3, #10 +100093d8: e7e5 b.n 100093a6 +100093da: 230a movs r3, #10 +100093dc: f04f 35ff mov.w r5, #4294967295 +100093e0: e7e1 b.n 100093a6 +100093e2: 4854 ldr r0, [pc, #336] ; (10009534 ) +100093e4: f038 fe90 bl 10042108 +100093e8: e7c1 b.n 1000936e +100093ea: 980b ldr r0, [sp, #44] ; 0x2c +100093ec: 4f52 ldr r7, [pc, #328] ; (10009538 ) +100093ee: 47b8 blx r7 +100093f0: 1e43 subs r3, r0, #1 +100093f2: 2b09 cmp r3, #9 +100093f4: 4605 mov r5, r0 +100093f6: d901 bls.n 100093fc +100093f8: 2309 movs r3, #9 +100093fa: e7d4 b.n 100093a6 +100093fc: 980c ldr r0, [sp, #48] ; 0x30 +100093fe: 47b8 blx r7 +10009400: 1e43 subs r3, r0, #1 +10009402: f5b3 6fc8 cmp.w r3, #1600 ; 0x640 +10009406: d310 bcc.n 1000942a +10009408: 6823 ldr r3, [r4, #0] +1000940a: 061c lsls r4, r3, #24 +1000940c: d50b bpl.n 10009426 +1000940e: 4b43 ldr r3, [pc, #268] ; (1000951c ) +10009410: 781b ldrb r3, [r3, #0] +10009412: 2b01 cmp r3, #1 +10009414: d907 bls.n 10009426 +10009416: 4601 mov r1, r0 +10009418: f44f 62c8 mov.w r2, #1600 ; 0x640 +1000941c: 4847 ldr r0, [pc, #284] ; (1000953c ) +1000941e: f038 fe73 bl 10042108 +10009422: 2302 movs r3, #2 +10009424: e7bf b.n 100093a6 +10009426: 2302 movs r3, #2 +10009428: e7bd b.n 100093a6 +1000942a: 4628 mov r0, r5 +1000942c: f7ff fc74 bl 10008d18 +10009430: 4607 mov r7, r0 +10009432: 2800 cmp r0, #0 +10009434: d06e beq.n 10009514 +10009436: 68c3 ldr r3, [r0, #12] +10009438: b973 cbnz r3, 10009458 +1000943a: f990 3008 ldrsb.w r3, [r0, #8] +1000943e: b95b cbnz r3, 10009458 +10009440: 6823 ldr r3, [r4, #0] +10009442: 0619 lsls r1, r3, #24 +10009444: d564 bpl.n 10009510 +10009446: 4b35 ldr r3, [pc, #212] ; (1000951c ) +10009448: 781b ldrb r3, [r3, #0] +1000944a: 2b01 cmp r3, #1 +1000944c: d960 bls.n 10009510 +1000944e: 483c ldr r0, [pc, #240] ; (10009540 ) +10009450: f038 fe5a bl 10042108 +10009454: 2306 movs r3, #6 +10009456: e7a6 b.n 100093a6 +10009458: 2100 movs r1, #0 +1000945a: f44f 62c8 mov.w r2, #1600 ; 0x640 +1000945e: 4839 ldr r0, [pc, #228] ; (10009544 ) +10009460: f038 fe84 bl 1004216c +10009464: ae06 add r6, sp, #24 +10009466: f10d 0312 add.w r3, sp, #18 +1000946a: 9301 str r3, [sp, #4] +1000946c: 9600 str r6, [sp, #0] +1000946e: ab05 add r3, sp, #20 +10009470: 4638 mov r0, r7 +10009472: 4934 ldr r1, [pc, #208] ; (10009544 ) +10009474: f240 52dc movw r2, #1500 ; 0x5dc +10009478: f7ff fe72 bl 10009160 +1000947c: 4603 mov r3, r0 +1000947e: 2800 cmp r0, #0 +10009480: d191 bne.n 100093a6 +10009482: 68fa ldr r2, [r7, #12] +10009484: 2a01 cmp r2, #1 +10009486: d019 beq.n 100094bc +10009488: 6823 ldr r3, [r4, #0] +1000948a: 061b lsls r3, r3, #24 +1000948c: d503 bpl.n 10009496 +1000948e: 4b23 ldr r3, [pc, #140] ; (1000951c ) +10009490: 781b ldrb r3, [r3, #0] +10009492: 2b00 cmp r3, #0 +10009494: d12c bne.n 100094f0 +10009496: 9b05 ldr r3, [sp, #20] +10009498: 9500 str r5, [sp, #0] +1000949a: 4823 ldr r0, [pc, #140] ; (10009528 ) +1000949c: f44f 61c8 mov.w r1, #1600 ; 0x640 +100094a0: 4a29 ldr r2, [pc, #164] ; (10009548 ) +100094a2: f038 fdc1 bl 10042028 +100094a6: 4820 ldr r0, [pc, #128] ; (10009528 ) +100094a8: f016 f9aa bl 1001f800 +100094ac: 9905 ldr r1, [sp, #20] +100094ae: 2900 cmp r1, #0 +100094b0: d083 beq.n 100093ba +100094b2: 4824 ldr r0, [pc, #144] ; (10009544 ) +100094b4: f016 fb3e bl 1001fb34 +100094b8: b017 add sp, #92 ; 0x5c +100094ba: bdf0 pop {r4, r5, r6, r7, pc} +100094bc: f997 2008 ldrsb.w r2, [r7, #8] +100094c0: 2a00 cmp r2, #0 +100094c2: d1e1 bne.n 10009488 +100094c4: 6823 ldr r3, [r4, #0] +100094c6: 061a lsls r2, r3, #24 +100094c8: d502 bpl.n 100094d0 +100094ca: 4b14 ldr r3, [pc, #80] ; (1000951c ) +100094cc: 781b ldrb r3, [r3, #0] +100094ce: b9ab cbnz r3, 100094fc +100094d0: f8bd 2012 ldrh.w r2, [sp, #18] +100094d4: 9b05 ldr r3, [sp, #20] +100094d6: 9202 str r2, [sp, #8] +100094d8: e88d 0060 stmia.w sp, {r5, r6} +100094dc: f44f 61c8 mov.w r1, #1600 ; 0x640 +100094e0: 4a1a ldr r2, [pc, #104] ; (1000954c ) +100094e2: 4811 ldr r0, [pc, #68] ; (10009528 ) +100094e4: f038 fda0 bl 10042028 +100094e8: 480f ldr r0, [pc, #60] ; (10009528 ) +100094ea: f016 f989 bl 1001f800 +100094ee: e7dd b.n 100094ac +100094f0: 9905 ldr r1, [sp, #20] +100094f2: 462a mov r2, r5 +100094f4: 4816 ldr r0, [pc, #88] ; (10009550 ) +100094f6: f038 fe07 bl 10042108 +100094fa: e7cc b.n 10009496 +100094fc: f8bd 3012 ldrh.w r3, [sp, #18] +10009500: 9905 ldr r1, [sp, #20] +10009502: 9300 str r3, [sp, #0] +10009504: 462a mov r2, r5 +10009506: 4633 mov r3, r6 +10009508: 4812 ldr r0, [pc, #72] ; (10009554 ) +1000950a: f038 fdfd bl 10042108 +1000950e: e7df b.n 100094d0 +10009510: 2306 movs r3, #6 +10009512: e748 b.n 100093a6 +10009514: 4633 mov r3, r6 +10009516: e746 b.n 100093a6 +10009518: 1004d7e8 .word 0x1004d7e8 +1000951c: 1004d7f8 .word 0x1004d7f8 +10009520: 1005007c .word 0x1005007c +10009524: 10044750 .word 0x10044750 +10009528: 1005207c .word 0x1005207c +1000952c: 10044850 .word 0x10044850 +10009530: 10044720 .word 0x10044720 +10009534: 100446f8 .word 0x100446f8 +10009538: 0000f769 .word 0x0000f769 +1000953c: 10044780 .word 0x10044780 +10009540: 100447b0 .word 0x100447b0 +10009544: 1004fa2c .word 0x1004fa2c +10009548: 1004483c .word 0x1004483c +1000954c: 10044808 .word 0x10044808 +10009550: 10044824 .word 0x10044824 +10009554: 100447ec .word 0x100447ec + +10009558 : +10009558: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000955c: f8df 81f0 ldr.w r8, [pc, #496] ; 10009750 +10009560: b08c sub sp, #48 ; 0x30 +10009562: f8d8 3000 ldr.w r3, [r8] +10009566: 061c lsls r4, r3, #24 +10009568: d504 bpl.n 10009574 +1000956a: 4b6c ldr r3, [pc, #432] ; (1000971c ) +1000956c: 781b ldrb r3, [r3, #0] +1000956e: 2b00 cmp r3, #0 +10009570: f040 80d0 bne.w 10009714 +10009574: f8df 91dc ldr.w r9, [pc, #476] ; 10009754 +10009578: f8df a1a8 ldr.w sl, [pc, #424] ; 10009724 +1000957c: 4f68 ldr r7, [pc, #416] ; (10009720 ) +1000957e: f8d9 3000 ldr.w r3, [r9] +10009582: 2b01 cmp r3, #1 +10009584: f040 80a0 bne.w 100096c8 +10009588: 2500 movs r5, #0 +1000958a: ae08 add r6, sp, #32 +1000958c: e007 b.n 1000959e +1000958e: 2800 cmp r0, #0 +10009590: d13d bne.n 1000960e +10009592: 9b07 ldr r3, [sp, #28] +10009594: 2b00 cmp r3, #0 +10009596: d156 bne.n 10009646 +10009598: 3501 adds r5, #1 +1000959a: 2d0a cmp r5, #10 +1000959c: d0ef beq.n 1000957e +1000959e: 2200 movs r2, #0 +100095a0: 4628 mov r0, r5 +100095a2: 9207 str r2, [sp, #28] +100095a4: 6032 str r2, [r6, #0] +100095a6: 9209 str r2, [sp, #36] ; 0x24 +100095a8: 920a str r2, [sp, #40] ; 0x28 +100095aa: 920b str r2, [sp, #44] ; 0x2c +100095ac: f8ad 201a strh.w r2, [sp, #26] +100095b0: f7ff fdb6 bl 10009120 +100095b4: 4604 mov r4, r0 +100095b6: 2800 cmp r0, #0 +100095b8: d0ee beq.n 10009598 +100095ba: 68c3 ldr r3, [r0, #12] +100095bc: b91b cbnz r3, 100095c6 +100095be: f990 3008 ldrsb.w r3, [r0, #8] +100095c2: 2b00 cmp r3, #0 +100095c4: d0e8 beq.n 10009598 +100095c6: f10d 031a add.w r3, sp, #26 +100095ca: 9301 str r3, [sp, #4] +100095cc: 9600 str r6, [sp, #0] +100095ce: ab07 add r3, sp, #28 +100095d0: 4620 mov r0, r4 +100095d2: 4954 ldr r1, [pc, #336] ; (10009724 ) +100095d4: f240 52dc movw r2, #1500 ; 0x5dc +100095d8: f7ff fdc2 bl 10009160 +100095dc: 683b ldr r3, [r7, #0] +100095de: 2b01 cmp r3, #1 +100095e0: d1d5 bne.n 1000958e +100095e2: 2800 cmp r0, #0 +100095e4: d1d8 bne.n 10009598 +100095e6: 9907 ldr r1, [sp, #28] +100095e8: 2900 cmp r1, #0 +100095ea: d0d5 beq.n 10009598 +100095ec: f8d8 3000 ldr.w r3, [r8] +100095f0: f80a 0001 strb.w r0, [sl, r1] +100095f4: 0618 lsls r0, r3, #24 +100095f6: d503 bpl.n 10009600 +100095f8: 4b48 ldr r3, [pc, #288] ; (1000971c ) +100095fa: 781b ldrb r3, [r3, #0] +100095fc: 2b00 cmp r3, #0 +100095fe: d170 bne.n 100096e2 +10009600: 4848 ldr r0, [pc, #288] ; (10009724 ) +10009602: f016 fa97 bl 1001fb34 +10009606: 2014 movs r0, #20 +10009608: f013 fd20 bl 1001d04c +1000960c: e7c4 b.n 10009598 +1000960e: 9005 str r0, [sp, #20] +10009610: f002 fde8 bl 1000c1e4 +10009614: 6822 ldr r2, [r4, #0] +10009616: 9805 ldr r0, [sp, #20] +10009618: 9200 str r2, [sp, #0] +1000961a: 4603 mov r3, r0 +1000961c: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009620: 4841 ldr r0, [pc, #260] ; (10009728 ) +10009622: 4a42 ldr r2, [pc, #264] ; (1000972c ) +10009624: f038 fd00 bl 10042028 +10009628: 483f ldr r0, [pc, #252] ; (10009728 ) +1000962a: f016 f8e9 bl 1001f800 +1000962e: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009632: 4a3f ldr r2, [pc, #252] ; (10009730 ) +10009634: 483c ldr r0, [pc, #240] ; (10009728 ) +10009636: f038 fcf7 bl 10042028 +1000963a: 483b ldr r0, [pc, #236] ; (10009728 ) +1000963c: f016 f8e0 bl 1001f800 +10009640: f002 fdd6 bl 1000c1f0 +10009644: e7a8 b.n 10009598 +10009646: f002 fdcd bl 1000c1e4 +1000964a: 68e3 ldr r3, [r4, #12] +1000964c: 2b01 cmp r3, #1 +1000964e: d018 beq.n 10009682 +10009650: f8d8 3000 ldr.w r3, [r8] +10009654: 061a lsls r2, r3, #24 +10009656: d503 bpl.n 10009660 +10009658: 4b30 ldr r3, [pc, #192] ; (1000971c ) +1000965a: 781b ldrb r3, [r3, #0] +1000965c: 2b00 cmp r3, #0 +1000965e: d12d bne.n 100096bc +10009660: 6822 ldr r2, [r4, #0] +10009662: 9b07 ldr r3, [sp, #28] +10009664: 9200 str r2, [sp, #0] +10009666: 4830 ldr r0, [pc, #192] ; (10009728 ) +10009668: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000966c: 4a31 ldr r2, [pc, #196] ; (10009734 ) +1000966e: f038 fcdb bl 10042028 +10009672: 482d ldr r0, [pc, #180] ; (10009728 ) +10009674: f016 f8c4 bl 1001f800 +10009678: 482a ldr r0, [pc, #168] ; (10009724 ) +1000967a: 9907 ldr r1, [sp, #28] +1000967c: f016 fa5a bl 1001fb34 +10009680: e7d5 b.n 1000962e +10009682: f994 3008 ldrsb.w r3, [r4, #8] +10009686: 2b00 cmp r3, #0 +10009688: d1e2 bne.n 10009650 +1000968a: f8d8 3000 ldr.w r3, [r8] +1000968e: 0619 lsls r1, r3, #24 +10009690: d503 bpl.n 1000969a +10009692: 4b22 ldr r3, [pc, #136] ; (1000971c ) +10009694: 781b ldrb r3, [r3, #0] +10009696: 2b00 cmp r3, #0 +10009698: d132 bne.n 10009700 +1000969a: 6822 ldr r2, [r4, #0] +1000969c: f8bd 101a ldrh.w r1, [sp, #26] +100096a0: e88d 0044 stmia.w sp, {r2, r6} +100096a4: 9102 str r1, [sp, #8] +100096a6: 9b07 ldr r3, [sp, #28] +100096a8: f44f 61c8 mov.w r1, #1600 ; 0x640 +100096ac: 4a22 ldr r2, [pc, #136] ; (10009738 ) +100096ae: 481e ldr r0, [pc, #120] ; (10009728 ) +100096b0: f038 fcba bl 10042028 +100096b4: 481c ldr r0, [pc, #112] ; (10009728 ) +100096b6: f016 f8a3 bl 1001f800 +100096ba: e7dd b.n 10009678 +100096bc: 9907 ldr r1, [sp, #28] +100096be: 6822 ldr r2, [r4, #0] +100096c0: 481e ldr r0, [pc, #120] ; (1000973c ) +100096c2: f038 fd21 bl 10042108 +100096c6: e7cb b.n 10009660 +100096c8: f8d8 3000 ldr.w r3, [r8] +100096cc: 061b lsls r3, r3, #24 +100096ce: d502 bpl.n 100096d6 +100096d0: 4b12 ldr r3, [pc, #72] ; (1000971c ) +100096d2: 781b ldrb r3, [r3, #0] +100096d4: b95b cbnz r3, 100096ee +100096d6: 2000 movs r0, #0 +100096d8: f012 f87c bl 1001b7d4 +100096dc: b00c add sp, #48 ; 0x30 +100096de: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +100096e2: 4817 ldr r0, [pc, #92] ; (10009740 ) +100096e4: 4a0f ldr r2, [pc, #60] ; (10009724 ) +100096e6: f038 fd0f bl 10042108 +100096ea: 9907 ldr r1, [sp, #28] +100096ec: e788 b.n 10009600 +100096ee: 4815 ldr r0, [pc, #84] ; (10009744 ) +100096f0: f038 fd0a bl 10042108 +100096f4: 2000 movs r0, #0 +100096f6: f012 f86d bl 1001b7d4 +100096fa: b00c add sp, #48 ; 0x30 +100096fc: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10009700: f8bd 301a ldrh.w r3, [sp, #26] +10009704: 6822 ldr r2, [r4, #0] +10009706: 9907 ldr r1, [sp, #28] +10009708: 9300 str r3, [sp, #0] +1000970a: 480f ldr r0, [pc, #60] ; (10009748 ) +1000970c: 4633 mov r3, r6 +1000970e: f038 fcfb bl 10042108 +10009712: e7c2 b.n 1000969a +10009714: 480d ldr r0, [pc, #52] ; (1000974c ) +10009716: f038 fcf7 bl 10042108 +1000971a: e72b b.n 10009574 +1000971c: 1004d7f8 .word 0x1004d7f8 +10009720: 10050078 .word 0x10050078 +10009724: 1004fa2c .word 0x1004fa2c +10009728: 1005207c .word 0x1005207c +1000972c: 10044850 .word 0x10044850 +10009730: 100493c8 .word 0x100493c8 +10009734: 1004483c .word 0x1004483c +10009738: 10044808 .word 0x10044808 +1000973c: 10044824 .word 0x10044824 +10009740: 10044884 .word 0x10044884 +10009744: 10044894 .word 0x10044894 +10009748: 100447ec .word 0x100447ec +1000974c: 10044868 .word 0x10044868 +10009750: 1004d7e8 .word 0x1004d7e8 +10009754: 1005007c .word 0x1005007c + +10009758 : +10009758: b570 push {r4, r5, r6, lr} +1000975a: 2400 movs r4, #0 +1000975c: b084 sub sp, #16 +1000975e: 2501 movs r5, #1 +10009760: 4e11 ldr r6, [pc, #68] ; (100097a8 ) +10009762: 9500 str r5, [sp, #0] +10009764: 9401 str r4, [sp, #4] +10009766: 9402 str r4, [sp, #8] +10009768: 9403 str r4, [sp, #12] +1000976a: 4623 mov r3, r4 +1000976c: 480f ldr r0, [pc, #60] ; (100097ac ) +1000976e: 4910 ldr r1, [pc, #64] ; (100097b0 ) +10009770: f44f 7200 mov.w r2, #512 ; 0x200 +10009774: 6035 str r5, [r6, #0] +10009776: f011 ff45 bl 1001b604 +1000977a: 42a8 cmp r0, r5 +1000977c: bf08 it eq +1000977e: 4620 moveq r0, r4 +10009780: d101 bne.n 10009786 +10009782: b004 add sp, #16 +10009784: bd70 pop {r4, r5, r6, pc} +10009786: 4b0b ldr r3, [pc, #44] ; (100097b4 ) +10009788: 681b ldr r3, [r3, #0] +1000978a: 061b lsls r3, r3, #24 +1000978c: d506 bpl.n 1000979c +1000978e: 4b0a ldr r3, [pc, #40] ; (100097b8 ) +10009790: 781b ldrb r3, [r3, #0] +10009792: 42ab cmp r3, r5 +10009794: d902 bls.n 1000979c +10009796: 4809 ldr r0, [pc, #36] ; (100097bc ) +10009798: f038 fcb6 bl 10042108 +1000979c: 2300 movs r3, #0 +1000979e: 6033 str r3, [r6, #0] +100097a0: f04f 30ff mov.w r0, #4294967295 +100097a4: e7ed b.n 10009782 +100097a6: bf00 nop +100097a8: 1005007c .word 0x1005007c +100097ac: 10009559 .word 0x10009559 +100097b0: 100448b0 .word 0x100448b0 +100097b4: 1004d7e8 .word 0x1004d7e8 +100097b8: 1004d7f8 .word 0x1004d7f8 +100097bc: 100448c8 .word 0x100448c8 + +100097c0 : +100097c0: b530 push {r4, r5, lr} +100097c2: 4c36 ldr r4, [pc, #216] ; (1000989c ) +100097c4: b08d sub sp, #52 ; 0x34 +100097c6: 6822 ldr r2, [r4, #0] +100097c8: 2300 movs r3, #0 +100097ca: 4605 mov r5, r0 +100097cc: 0610 lsls r0, r2, #24 +100097ce: 9300 str r3, [sp, #0] +100097d0: 9301 str r3, [sp, #4] +100097d2: 9302 str r3, [sp, #8] +100097d4: 9303 str r3, [sp, #12] +100097d6: 9304 str r3, [sp, #16] +100097d8: 9305 str r3, [sp, #20] +100097da: 9306 str r3, [sp, #24] +100097dc: 9307 str r3, [sp, #28] +100097de: 9308 str r3, [sp, #32] +100097e0: 9309 str r3, [sp, #36] ; 0x24 +100097e2: 930a str r3, [sp, #40] ; 0x28 +100097e4: 930b str r3, [sp, #44] ; 0x2c +100097e6: d503 bpl.n 100097f0 +100097e8: 4b2d ldr r3, [pc, #180] ; (100098a0 ) +100097ea: 781b ldrb r3, [r3, #0] +100097ec: 2b00 cmp r3, #0 +100097ee: d13f bne.n 10009870 +100097f0: 4628 mov r0, r5 +100097f2: 4669 mov r1, sp +100097f4: f002 fb82 bl 1000befc +100097f8: 2801 cmp r0, #1 +100097fa: dd21 ble.n 10009840 +100097fc: 4b29 ldr r3, [pc, #164] ; (100098a4 ) +100097fe: 9801 ldr r0, [sp, #4] +10009800: 4798 blx r3 +10009802: 4b29 ldr r3, [pc, #164] ; (100098a8 ) +10009804: b138 cbz r0, 10009816 +10009806: 681b ldr r3, [r3, #0] +10009808: 2b01 cmp r3, #1 +1000980a: d035 beq.n 10009878 +1000980c: f7ff ffa4 bl 10009758 +10009810: b158 cbz r0, 1000982a +10009812: 2302 movs r3, #2 +10009814: e021 b.n 1000985a +10009816: 681a ldr r2, [r3, #0] +10009818: 2a01 cmp r2, #1 +1000981a: d038 beq.n 1000988e +1000981c: 6823 ldr r3, [r4, #0] +1000981e: 061b lsls r3, r3, #24 +10009820: d503 bpl.n 1000982a +10009822: 4b1f ldr r3, [pc, #124] ; (100098a0 ) +10009824: 781b ldrb r3, [r3, #0] +10009826: 2b00 cmp r3, #0 +10009828: d133 bne.n 10009892 +1000982a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000982e: 4a1f ldr r2, [pc, #124] ; (100098ac ) +10009830: 481f ldr r0, [pc, #124] ; (100098b0 ) +10009832: f038 fbf9 bl 10042028 +10009836: 481e ldr r0, [pc, #120] ; (100098b0 ) +10009838: f015 ffe2 bl 1001f800 +1000983c: b00d add sp, #52 ; 0x34 +1000983e: bd30 pop {r4, r5, pc} +10009840: 6823 ldr r3, [r4, #0] +10009842: 0619 lsls r1, r3, #24 +10009844: d508 bpl.n 10009858 +10009846: 4b16 ldr r3, [pc, #88] ; (100098a0 ) +10009848: 781b ldrb r3, [r3, #0] +1000984a: 2b01 cmp r3, #1 +1000984c: d904 bls.n 10009858 +1000984e: 4819 ldr r0, [pc, #100] ; (100098b4 ) +10009850: f038 fc5a bl 10042108 +10009854: 2301 movs r3, #1 +10009856: e000 b.n 1000985a +10009858: 2301 movs r3, #1 +1000985a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000985e: 4a16 ldr r2, [pc, #88] ; (100098b8 ) +10009860: 4813 ldr r0, [pc, #76] ; (100098b0 ) +10009862: f038 fbe1 bl 10042028 +10009866: 4812 ldr r0, [pc, #72] ; (100098b0 ) +10009868: f015 ffca bl 1001f800 +1000986c: b00d add sp, #52 ; 0x34 +1000986e: bd30 pop {r4, r5, pc} +10009870: 4812 ldr r0, [pc, #72] ; (100098bc ) +10009872: f038 fc49 bl 10042108 +10009876: e7bb b.n 100097f0 +10009878: 6823 ldr r3, [r4, #0] +1000987a: 061a lsls r2, r3, #24 +1000987c: d5d5 bpl.n 1000982a +1000987e: 4b08 ldr r3, [pc, #32] ; (100098a0 ) +10009880: 781b ldrb r3, [r3, #0] +10009882: 2b00 cmp r3, #0 +10009884: d0d1 beq.n 1000982a +10009886: 480e ldr r0, [pc, #56] ; (100098c0 ) +10009888: f038 fc3e bl 10042108 +1000988c: e7cd b.n 1000982a +1000988e: 6018 str r0, [r3, #0] +10009890: e7cb b.n 1000982a +10009892: 480c ldr r0, [pc, #48] ; (100098c4 ) +10009894: f038 fc38 bl 10042108 +10009898: e7c7 b.n 1000982a +1000989a: bf00 nop +1000989c: 1004d7e8 .word 0x1004d7e8 +100098a0: 1004d7f8 .word 0x1004d7f8 +100098a4: 0000f769 .word 0x0000f769 +100098a8: 1005007c .word 0x1005007c +100098ac: 100449a0 .word 0x100449a0 +100098b0: 1005207c .word 0x1005207c +100098b4: 10044914 .word 0x10044914 +100098b8: 1004498c .word 0x1004498c +100098bc: 100448f0 .word 0x100448f0 +100098c0: 10044934 .word 0x10044934 +100098c4: 10044960 .word 0x10044960 + +100098c8 : +100098c8: 4b02 ldr r3, [pc, #8] ; (100098d4 ) +100098ca: 6818 ldr r0, [r3, #0] +100098cc: 1e43 subs r3, r0, #1 +100098ce: 4258 negs r0, r3 +100098d0: 4158 adcs r0, r3 +100098d2: 4770 bx lr +100098d4: 10050078 .word 0x10050078 + +100098d8 : +100098d8: b570 push {r4, r5, r6, lr} +100098da: 481c ldr r0, [pc, #112] ; (1000994c ) +100098dc: b084 sub sp, #16 +100098de: 2100 movs r1, #0 +100098e0: 4e1b ldr r6, [pc, #108] ; (10009950 ) +100098e2: f013 f98b bl 1001cbfc +100098e6: 2401 movs r4, #1 +100098e8: 2300 movs r3, #0 +100098ea: 4d1a ldr r5, [pc, #104] ; (10009954 ) +100098ec: e88d 0050 stmia.w sp, {r4, r6} +100098f0: 9302 str r3, [sp, #8] +100098f2: 9303 str r3, [sp, #12] +100098f4: 4818 ldr r0, [pc, #96] ; (10009958 ) +100098f6: 4919 ldr r1, [pc, #100] ; (1000995c ) +100098f8: f44f 7200 mov.w r2, #512 ; 0x200 +100098fc: 602c str r4, [r5, #0] +100098fe: f011 fe81 bl 1001b604 +10009902: 42a0 cmp r0, r4 +10009904: d10c bne.n 10009920 +10009906: 2014 movs r0, #20 +10009908: f013 f9a6 bl 1001cc58 +1000990c: 4b14 ldr r3, [pc, #80] ; (10009960 ) +1000990e: 681b ldr r3, [r3, #0] +10009910: 2b01 cmp r3, #1 +10009912: d002 beq.n 1000991a +10009914: f7ff ff20 bl 10009758 +10009918: b998 cbnz r0, 10009942 +1000991a: 2000 movs r0, #0 +1000991c: b004 add sp, #16 +1000991e: bd70 pop {r4, r5, r6, pc} +10009920: 4b10 ldr r3, [pc, #64] ; (10009964 ) +10009922: 681b ldr r3, [r3, #0] +10009924: 061b lsls r3, r3, #24 +10009926: d506 bpl.n 10009936 +10009928: 4b0f ldr r3, [pc, #60] ; (10009968 ) +1000992a: 781b ldrb r3, [r3, #0] +1000992c: 42a3 cmp r3, r4 +1000992e: d902 bls.n 10009936 +10009930: 480e ldr r0, [pc, #56] ; (1000996c ) +10009932: f038 fbe9 bl 10042108 +10009936: 2300 movs r3, #0 +10009938: f04f 30ff mov.w r0, #4294967295 +1000993c: 602b str r3, [r5, #0] +1000993e: b004 add sp, #16 +10009940: bd70 pop {r4, r5, r6, pc} +10009942: 6830 ldr r0, [r6, #0] +10009944: f011 ff46 bl 1001b7d4 +10009948: e7f5 b.n 10009936 +1000994a: bf00 nop +1000994c: 10050080 .word 0x10050080 +10009950: 1004fa28 .word 0x1004fa28 +10009954: 10050078 .word 0x10050078 +10009958: 100080b9 .word 0x100080b9 +1000995c: 100449ac .word 0x100449ac +10009960: 1005007c .word 0x1005007c +10009964: 1004d7e8 .word 0x1004d7e8 +10009968: 1004d7f8 .word 0x1004d7f8 +1000996c: 100449b4 .word 0x100449b4 + +10009970 : +10009970: b530 push {r4, r5, lr} +10009972: 4c43 ldr r4, [pc, #268] ; (10009a80 ) +10009974: 2300 movs r3, #0 +10009976: 6822 ldr r2, [r4, #0] +10009978: b08d sub sp, #52 ; 0x34 +1000997a: 9300 str r3, [sp, #0] +1000997c: 9301 str r3, [sp, #4] +1000997e: 9302 str r3, [sp, #8] +10009980: 9303 str r3, [sp, #12] +10009982: 9304 str r3, [sp, #16] +10009984: 9305 str r3, [sp, #20] +10009986: 9306 str r3, [sp, #24] +10009988: 9307 str r3, [sp, #28] +1000998a: 9308 str r3, [sp, #32] +1000998c: 9309 str r3, [sp, #36] ; 0x24 +1000998e: 930a str r3, [sp, #40] ; 0x28 +10009990: 930b str r3, [sp, #44] ; 0x2c +10009992: 0613 lsls r3, r2, #24 +10009994: 4605 mov r5, r0 +10009996: d503 bpl.n 100099a0 +10009998: 4b3a ldr r3, [pc, #232] ; (10009a84 ) +1000999a: 781b ldrb r3, [r3, #0] +1000999c: 2b00 cmp r3, #0 +1000999e: d144 bne.n 10009a2a +100099a0: 4628 mov r0, r5 +100099a2: 4669 mov r1, sp +100099a4: f002 faaa bl 1000befc +100099a8: 2801 cmp r0, #1 +100099aa: dd26 ble.n 100099fa +100099ac: 9801 ldr r0, [sp, #4] +100099ae: 4b36 ldr r3, [pc, #216] ; (10009a88 ) +100099b0: 4798 blx r3 +100099b2: b1b8 cbz r0, 100099e4 +100099b4: 4b35 ldr r3, [pc, #212] ; (10009a8c ) +100099b6: 681b ldr r3, [r3, #0] +100099b8: 6a5b ldr r3, [r3, #36] ; 0x24 +100099ba: 2b00 cmp r3, #0 +100099bc: d049 beq.n 10009a52 +100099be: f993 2008 ldrsb.w r2, [r3, #8] +100099c2: 2a00 cmp r2, #0 +100099c4: d035 beq.n 10009a32 +100099c6: 6a5a ldr r2, [r3, #36] ; 0x24 +100099c8: 2a00 cmp r2, #0 +100099ca: d050 beq.n 10009a6e +100099cc: 6823 ldr r3, [r4, #0] +100099ce: 061b lsls r3, r3, #24 +100099d0: d53d bpl.n 10009a4e +100099d2: 4b2c ldr r3, [pc, #176] ; (10009a84 ) +100099d4: 781b ldrb r3, [r3, #0] +100099d6: 2b01 cmp r3, #1 +100099d8: d939 bls.n 10009a4e +100099da: 482d ldr r0, [pc, #180] ; (10009a90 ) +100099dc: f038 fb94 bl 10042108 +100099e0: 2304 movs r3, #4 +100099e2: e017 b.n 10009a14 +100099e4: f44f 61c8 mov.w r1, #1600 ; 0x640 +100099e8: 4a2a ldr r2, [pc, #168] ; (10009a94 ) +100099ea: 482b ldr r0, [pc, #172] ; (10009a98 ) +100099ec: f038 fb1c bl 10042028 +100099f0: 4829 ldr r0, [pc, #164] ; (10009a98 ) +100099f2: f015 ff05 bl 1001f800 +100099f6: b00d add sp, #52 ; 0x34 +100099f8: bd30 pop {r4, r5, pc} +100099fa: 6823 ldr r3, [r4, #0] +100099fc: 0618 lsls r0, r3, #24 +100099fe: d508 bpl.n 10009a12 +10009a00: 4b20 ldr r3, [pc, #128] ; (10009a84 ) +10009a02: 781b ldrb r3, [r3, #0] +10009a04: 2b01 cmp r3, #1 +10009a06: d904 bls.n 10009a12 +10009a08: 4824 ldr r0, [pc, #144] ; (10009a9c ) +10009a0a: f038 fb7d bl 10042108 +10009a0e: 2301 movs r3, #1 +10009a10: e000 b.n 10009a14 +10009a12: 2301 movs r3, #1 +10009a14: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009a18: 4a21 ldr r2, [pc, #132] ; (10009aa0 ) +10009a1a: 481f ldr r0, [pc, #124] ; (10009a98 ) +10009a1c: f038 fb04 bl 10042028 +10009a20: 481d ldr r0, [pc, #116] ; (10009a98 ) +10009a22: f015 feed bl 1001f800 +10009a26: b00d add sp, #52 ; 0x34 +10009a28: bd30 pop {r4, r5, pc} +10009a2a: 481e ldr r0, [pc, #120] ; (10009aa4 ) +10009a2c: f038 fb6c bl 10042108 +10009a30: e7b6 b.n 100099a0 +10009a32: 6823 ldr r3, [r4, #0] +10009a34: 061a lsls r2, r3, #24 +10009a36: d508 bpl.n 10009a4a +10009a38: 4b12 ldr r3, [pc, #72] ; (10009a84 ) +10009a3a: 781b ldrb r3, [r3, #0] +10009a3c: 2b01 cmp r3, #1 +10009a3e: d904 bls.n 10009a4a +10009a40: 4819 ldr r0, [pc, #100] ; (10009aa8 ) +10009a42: f038 fb61 bl 10042108 +10009a46: 2303 movs r3, #3 +10009a48: e7e4 b.n 10009a14 +10009a4a: 2303 movs r3, #3 +10009a4c: e7e2 b.n 10009a14 +10009a4e: 2304 movs r3, #4 +10009a50: e7e0 b.n 10009a14 +10009a52: 6823 ldr r3, [r4, #0] +10009a54: 0619 lsls r1, r3, #24 +10009a56: d508 bpl.n 10009a6a +10009a58: 4b0a ldr r3, [pc, #40] ; (10009a84 ) +10009a5a: 781b ldrb r3, [r3, #0] +10009a5c: 2b01 cmp r3, #1 +10009a5e: d904 bls.n 10009a6a +10009a60: 4812 ldr r0, [pc, #72] ; (10009aac ) +10009a62: f038 fb51 bl 10042108 +10009a66: 2302 movs r3, #2 +10009a68: e7d4 b.n 10009a14 +10009a6a: 2302 movs r3, #2 +10009a6c: e7d2 b.n 10009a14 +10009a6e: 6a9b ldr r3, [r3, #40] ; 0x28 +10009a70: 2b00 cmp r3, #0 +10009a72: d1ab bne.n 100099cc +10009a74: f7ff ff30 bl 100098d8 +10009a78: 2800 cmp r0, #0 +10009a7a: d0b3 beq.n 100099e4 +10009a7c: 2305 movs r3, #5 +10009a7e: e7c9 b.n 10009a14 +10009a80: 1004d7e8 .word 0x1004d7e8 +10009a84: 1004d7f8 .word 0x1004d7f8 +10009a88: 0000f769 .word 0x0000f769 +10009a8c: 1005006c .word 0x1005006c +10009a90: 10044a48 .word 0x10044a48 +10009a94: 10044a80 .word 0x10044a80 +10009a98: 1005207c .word 0x1005207c +10009a9c: 100449f4 .word 0x100449f4 +10009aa0: 10044a6c .word 0x10044a6c +10009aa4: 100449d4 .word 0x100449d4 +10009aa8: 10044a28 .word 0x10044a28 +10009aac: 10044a10 .word 0x10044a10 + +10009ab0 : +10009ab0: b5f0 push {r4, r5, r6, r7, lr} +10009ab2: 2500 movs r5, #0 +10009ab4: b08d sub sp, #52 ; 0x34 +10009ab6: 460f mov r7, r1 +10009ab8: 4606 mov r6, r0 +10009aba: aa01 add r2, sp, #4 +10009abc: 4629 mov r1, r5 +10009abe: 2003 movs r0, #3 +10009ac0: 232c movs r3, #44 ; 0x2c +10009ac2: 9501 str r5, [sp, #4] +10009ac4: 9502 str r5, [sp, #8] +10009ac6: 9503 str r5, [sp, #12] +10009ac8: 9504 str r5, [sp, #16] +10009aca: 9505 str r5, [sp, #20] +10009acc: 9506 str r5, [sp, #24] +10009ace: 9507 str r5, [sp, #28] +10009ad0: 9508 str r5, [sp, #32] +10009ad2: 9509 str r5, [sp, #36] ; 0x24 +10009ad4: 950a str r5, [sp, #40] ; 0x28 +10009ad6: 950b str r5, [sp, #44] ; 0x2c +10009ad8: f015 fd7a bl 1001f5d0 +10009adc: 2f00 cmp r7, #0 +10009ade: d045 beq.n 10009b6c +10009ae0: 9b02 ldr r3, [sp, #8] +10009ae2: 2b01 cmp r3, #1 +10009ae4: d925 bls.n 10009b32 +10009ae6: 9502 str r5, [sp, #8] +10009ae8: 9503 str r5, [sp, #12] +10009aea: ab01 add r3, sp, #4 +10009aec: ebc5 05c5 rsb r5, r5, r5, lsl #3 +10009af0: eb03 0085 add.w r0, r3, r5, lsl #2 +10009af4: 3010 adds r0, #16 +10009af6: 4631 mov r1, r6 +10009af8: 221c movs r2, #28 +10009afa: f038 fb31 bl 10042160 +10009afe: 9b02 ldr r3, [sp, #8] +10009b00: 3301 adds r3, #1 +10009b02: 2b01 cmp r3, #1 +10009b04: bfc8 it gt +10009b06: 2301 movgt r3, #1 +10009b08: 9302 str r3, [sp, #8] +10009b0a: 4b20 ldr r3, [pc, #128] ; (10009b8c ) +10009b0c: 681b ldr r3, [r3, #0] +10009b0e: 061b lsls r3, r3, #24 +10009b10: d505 bpl.n 10009b1e +10009b12: 4b1f ldr r3, [pc, #124] ; (10009b90 ) +10009b14: 781b ldrb r3, [r3, #0] +10009b16: b113 cbz r3, 10009b1e +10009b18: 481e ldr r0, [pc, #120] ; (10009b94 ) +10009b1a: f038 faf5 bl 10042108 +10009b1e: aa01 add r2, sp, #4 +10009b20: 2003 movs r0, #3 +10009b22: 2101 movs r1, #1 +10009b24: 232c movs r3, #44 ; 0x2c +10009b26: 9701 str r7, [sp, #4] +10009b28: f015 fd52 bl 1001f5d0 +10009b2c: 2000 movs r0, #0 +10009b2e: b00d add sp, #52 ; 0x34 +10009b30: bdf0 pop {r4, r5, r6, r7, pc} +10009b32: d124 bne.n 10009b7e +10009b34: ac05 add r4, sp, #20 +10009b36: e002 b.n 10009b3e +10009b38: 9b02 ldr r3, [sp, #8] +10009b3a: 42ab cmp r3, r5 +10009b3c: dd1f ble.n 10009b7e +10009b3e: 4621 mov r1, r4 +10009b40: 4630 mov r0, r6 +10009b42: 221c movs r2, #28 +10009b44: f038 fb06 bl 10042154 +10009b48: 3501 adds r5, #1 +10009b4a: 341c adds r4, #28 +10009b4c: 2800 cmp r0, #0 +10009b4e: d1f3 bne.n 10009b38 +10009b50: 4b0e ldr r3, [pc, #56] ; (10009b8c ) +10009b52: 681b ldr r3, [r3, #0] +10009b54: 061a lsls r2, r3, #24 +10009b56: d505 bpl.n 10009b64 +10009b58: 4b0d ldr r3, [pc, #52] ; (10009b90 ) +10009b5a: 781b ldrb r3, [r3, #0] +10009b5c: b113 cbz r3, 10009b64 +10009b5e: 480e ldr r0, [pc, #56] ; (10009b98 ) +10009b60: f038 fad2 bl 10042108 +10009b64: 9b01 ldr r3, [sp, #4] +10009b66: 42bb cmp r3, r7 +10009b68: d1d9 bne.n 10009b1e +10009b6a: e7df b.n 10009b2c +10009b6c: 463a mov r2, r7 +10009b6e: 463b mov r3, r7 +10009b70: 2003 movs r0, #3 +10009b72: 2102 movs r1, #2 +10009b74: f015 fd2c bl 1001f5d0 +10009b78: 2000 movs r0, #0 +10009b7a: b00d add sp, #52 ; 0x34 +10009b7c: bdf0 pop {r4, r5, r6, r7, pc} +10009b7e: 9d03 ldr r5, [sp, #12] +10009b80: 1c6b adds r3, r5, #1 +10009b82: 2b00 cmp r3, #0 +10009b84: dcb1 bgt.n 10009aea +10009b86: 461d mov r5, r3 +10009b88: e7ae b.n 10009ae8 +10009b8a: bf00 nop +10009b8c: 1004d7e8 .word 0x1004d7e8 +10009b90: 1004d7f8 .word 0x1004d7f8 +10009b94: 10044ab0 .word 0x10044ab0 +10009b98: 10044a8c .word 0x10044a8c + +10009b9c : +10009b9c: b5f0 push {r4, r5, r6, r7, lr} +10009b9e: 2400 movs r4, #0 +10009ba0: b095 sub sp, #84 ; 0x54 +10009ba2: 9408 str r4, [sp, #32] +10009ba4: 9409 str r4, [sp, #36] ; 0x24 +10009ba6: 940a str r4, [sp, #40] ; 0x28 +10009ba8: 940b str r4, [sp, #44] ; 0x2c +10009baa: 940c str r4, [sp, #48] ; 0x30 +10009bac: 940d str r4, [sp, #52] ; 0x34 +10009bae: 940e str r4, [sp, #56] ; 0x38 +10009bb0: 940f str r4, [sp, #60] ; 0x3c +10009bb2: 9410 str r4, [sp, #64] ; 0x40 +10009bb4: 9411 str r4, [sp, #68] ; 0x44 +10009bb6: 9412 str r4, [sp, #72] ; 0x48 +10009bb8: 9413 str r4, [sp, #76] ; 0x4c +10009bba: b180 cbz r0, 10009bde +10009bbc: a908 add r1, sp, #32 +10009bbe: f002 f99d bl 1000befc +10009bc2: 2802 cmp r0, #2 +10009bc4: d01a beq.n 10009bfc +10009bc6: 2302 movs r3, #2 +10009bc8: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009bcc: 4a22 ldr r2, [pc, #136] ; (10009c58 ) +10009bce: 4823 ldr r0, [pc, #140] ; (10009c5c ) +10009bd0: f038 fa2a bl 10042028 +10009bd4: 4821 ldr r0, [pc, #132] ; (10009c5c ) +10009bd6: f015 fe13 bl 1001f800 +10009bda: b015 add sp, #84 ; 0x54 +10009bdc: bdf0 pop {r4, r5, r6, r7, pc} +10009bde: 4b20 ldr r3, [pc, #128] ; (10009c60 ) +10009be0: 681b ldr r3, [r3, #0] +10009be2: 061b lsls r3, r3, #24 +10009be4: d508 bpl.n 10009bf8 +10009be6: 4b1f ldr r3, [pc, #124] ; (10009c64 ) +10009be8: 781b ldrb r3, [r3, #0] +10009bea: 2b01 cmp r3, #1 +10009bec: d904 bls.n 10009bf8 +10009bee: 481e ldr r0, [pc, #120] ; (10009c68 ) +10009bf0: f038 fa8a bl 10042108 +10009bf4: 2301 movs r3, #1 +10009bf6: e7e7 b.n 10009bc8 +10009bf8: 2301 movs r3, #1 +10009bfa: e7e5 b.n 10009bc8 +10009bfc: 9809 ldr r0, [sp, #36] ; 0x24 +10009bfe: b1f0 cbz r0, 10009c3e +10009c00: 4b1a ldr r3, [pc, #104] ; (10009c6c ) +10009c02: 4798 blx r3 +10009c04: 4b1a ldr r3, [pc, #104] ; (10009c70 ) +10009c06: 9401 str r4, [sp, #4] +10009c08: 681b ldr r3, [r3, #0] +10009c0a: 9402 str r4, [sp, #8] +10009c0c: 9403 str r4, [sp, #12] +10009c0e: 9404 str r4, [sp, #16] +10009c10: 9405 str r4, [sp, #20] +10009c12: 9406 str r4, [sp, #24] +10009c14: 9407 str r4, [sp, #28] +10009c16: 6a5b ldr r3, [r3, #36] ; 0x24 +10009c18: b100 cbz r0, 10009c1c +10009c1a: b1db cbz r3, 10009c54 +10009c1c: f993 7008 ldrsb.w r7, [r3, #8] +10009c20: 68dd ldr r5, [r3, #12] +10009c22: 691c ldr r4, [r3, #16] +10009c24: 8a9e ldrh r6, [r3, #20] +10009c26: 699a ldr r2, [r3, #24] +10009c28: 8b9b ldrh r3, [r3, #28] +10009c2a: 4601 mov r1, r0 +10009c2c: a801 add r0, sp, #4 +10009c2e: 9701 str r7, [sp, #4] +10009c30: 9502 str r5, [sp, #8] +10009c32: 9403 str r4, [sp, #12] +10009c34: 9604 str r6, [sp, #16] +10009c36: 9205 str r2, [sp, #20] +10009c38: 9306 str r3, [sp, #24] +10009c3a: f7ff ff39 bl 10009ab0 +10009c3e: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009c42: 4a0c ldr r2, [pc, #48] ; (10009c74 ) +10009c44: 4805 ldr r0, [pc, #20] ; (10009c5c ) +10009c46: f038 f9ef bl 10042028 +10009c4a: 4804 ldr r0, [pc, #16] ; (10009c5c ) +10009c4c: f015 fdd8 bl 1001f800 +10009c50: b015 add sp, #84 ; 0x54 +10009c52: bdf0 pop {r4, r5, r6, r7, pc} +10009c54: 2303 movs r3, #3 +10009c56: e7b7 b.n 10009bc8 +10009c58: 10044b10 .word 0x10044b10 +10009c5c: 1005207c .word 0x1005207c +10009c60: 1004d7e8 .word 0x1004d7e8 +10009c64: 1004d7f8 .word 0x1004d7f8 +10009c68: 10044aec .word 0x10044aec +10009c6c: 0000f769 .word 0x0000f769 +10009c70: 1005006c .word 0x1005006c +10009c74: 10044b24 .word 0x10044b24 + +10009c78 : +10009c78: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10009c7c: 2400 movs r4, #0 +10009c7e: b095 sub sp, #84 ; 0x54 +10009c80: 232c movs r3, #44 ; 0x2c +10009c82: 4621 mov r1, r4 +10009c84: aa09 add r2, sp, #36 ; 0x24 +10009c86: 2003 movs r0, #3 +10009c88: 9409 str r4, [sp, #36] ; 0x24 +10009c8a: 940a str r4, [sp, #40] ; 0x28 +10009c8c: 940b str r4, [sp, #44] ; 0x2c +10009c8e: 940c str r4, [sp, #48] ; 0x30 +10009c90: 940d str r4, [sp, #52] ; 0x34 +10009c92: 940e str r4, [sp, #56] ; 0x38 +10009c94: 940f str r4, [sp, #60] ; 0x3c +10009c96: 9410 str r4, [sp, #64] ; 0x40 +10009c98: 9411 str r4, [sp, #68] ; 0x44 +10009c9a: 9412 str r4, [sp, #72] ; 0x48 +10009c9c: 9413 str r4, [sp, #76] ; 0x4c +10009c9e: f015 fc97 bl 1001f5d0 +10009ca2: 9b09 ldr r3, [sp, #36] ; 0x24 +10009ca4: b13b cbz r3, 10009cb6 +10009ca6: 9b0a ldr r3, [sp, #40] ; 0x28 +10009ca8: 2b01 cmp r3, #1 +10009caa: d009 beq.n 10009cc0 +10009cac: 2402 movs r4, #2 +10009cae: 4620 mov r0, r4 +10009cb0: b015 add sp, #84 ; 0x54 +10009cb2: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10009cb6: 2401 movs r4, #1 +10009cb8: 4620 mov r0, r4 +10009cba: b015 add sp, #84 ; 0x54 +10009cbc: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10009cc0: 9f0b ldr r7, [sp, #44] ; 0x2c +10009cc2: f8df 81c4 ldr.w r8, [pc, #452] ; 10009e88 +10009cc6: f8df a1c4 ldr.w sl, [pc, #452] ; 10009e8c +10009cca: 46a1 mov r9, r4 +10009ccc: ebc7 03c7 rsb r3, r7, r7, lsl #3 +10009cd0: 009b lsls r3, r3, #2 +10009cd2: 3310 adds r3, #16 +10009cd4: ae09 add r6, sp, #36 ; 0x24 +10009cd6: 441e add r6, r3 +10009cd8: aa09 add r2, sp, #36 ; 0x24 +10009cda: 56d1 ldrsb r1, [r2, r3] +10009cdc: 6870 ldr r0, [r6, #4] +10009cde: 1c7b adds r3, r7, #1 +10009ce0: 2b00 cmp r3, #0 +10009ce2: bfd8 it le +10009ce4: 461f movle r7, r3 +10009ce6: f7fe faa9 bl 1000823c +10009cea: 4605 mov r5, r0 +10009cec: 2800 cmp r0, #0 +10009cee: f000 80b6 beq.w 10009e5e +10009cf2: 68b1 ldr r1, [r6, #8] +10009cf4: 6932 ldr r2, [r6, #16] +10009cf6: 6970 ldr r0, [r6, #20] +10009cf8: 68f3 ldr r3, [r6, #12] +10009cfa: 68ee ldr r6, [r5, #12] +10009cfc: 83a8 strh r0, [r5, #28] +10009cfe: 2e01 cmp r6, #1 +10009d00: f04f 0002 mov.w r0, #2 +10009d04: 6129 str r1, [r5, #16] +10009d06: 61aa str r2, [r5, #24] +10009d08: bf0c ite eq +10009d0a: 4601 moveq r1, r0 +10009d0c: 2101 movne r1, #1 +10009d0e: 82ab strh r3, [r5, #20] +10009d10: 2200 movs r2, #0 +10009d12: f008 f96f bl 10011ff4 +10009d16: 6068 str r0, [r5, #4] +10009d18: 3001 adds r0, #1 +10009d1a: f000 80a6 beq.w 10009e6a +10009d1e: 6928 ldr r0, [r5, #16] +10009d20: f00a f87c bl 10013e1c +10009d24: f8d8 3000 ldr.w r3, [r8] +10009d28: 9004 str r0, [sp, #16] +10009d2a: 061b lsls r3, r3, #24 +10009d2c: 4e56 ldr r6, [pc, #344] ; (10009e88 ) +10009d2e: d503 bpl.n 10009d38 +10009d30: f89a 3000 ldrb.w r3, [sl] +10009d34: 2b00 cmp r3, #0 +10009d36: d137 bne.n 10009da8 +10009d38: f995 3008 ldrsb.w r3, [r5, #8] +10009d3c: b35b cbz r3, 10009d96 +10009d3e: 68e9 ldr r1, [r5, #12] +10009d40: 2900 cmp r1, #0 +10009d42: d041 beq.n 10009dc8 +10009d44: 8bab ldrh r3, [r5, #28] +10009d46: b1bb cbz r3, 10009d78 +10009d48: 2100 movs r1, #0 +10009d4a: 2210 movs r2, #16 +10009d4c: a805 add r0, sp, #20 +10009d4e: f038 fa0d bl 1004216c +10009d52: 2302 movs r3, #2 +10009d54: f88d 3015 strb.w r3, [sp, #21] +10009d58: 8ba8 ldrh r0, [r5, #28] +10009d5a: f00a f857 bl 10013e0c +10009d5e: f8ad 0016 strh.w r0, [sp, #22] +10009d62: 2000 movs r0, #0 +10009d64: f00a f85a bl 10013e1c +10009d68: 9006 str r0, [sp, #24] +10009d6a: a905 add r1, sp, #20 +10009d6c: 6868 ldr r0, [r5, #4] +10009d6e: 2210 movs r2, #16 +10009d70: f007 fe5c bl 10011a2c +10009d74: 2800 cmp r0, #0 +10009d76: db4a blt.n 10009e0e +10009d78: 4628 mov r0, r5 +10009d7a: f7fe fca9 bl 100086d0 +10009d7e: 6833 ldr r3, [r6, #0] +10009d80: 2800 cmp r0, #0 +10009d82: bfb8 it lt +10009d84: 2408 movlt r4, #8 +10009d86: 061b lsls r3, r3, #24 +10009d88: d505 bpl.n 10009d96 +10009d8a: 4b40 ldr r3, [pc, #256] ; (10009e8c ) +10009d8c: 781b ldrb r3, [r3, #0] +10009d8e: b113 cbz r3, 10009d96 +10009d90: 483f ldr r0, [pc, #252] ; (10009e90 ) +10009d92: f038 f9b9 bl 10042108 +10009d96: 2c00 cmp r4, #0 +10009d98: d08e beq.n 10009cb8 +10009d9a: 4628 mov r0, r5 +10009d9c: f7fe fa92 bl 100082c4 +10009da0: 4620 mov r0, r4 +10009da2: b015 add sp, #84 ; 0x54 +10009da4: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10009da8: 6869 ldr r1, [r5, #4] +10009daa: a804 add r0, sp, #16 +10009dac: f8d5 b00c ldr.w fp, [r5, #12] +10009db0: 9103 str r1, [sp, #12] +10009db2: f009 fd2b bl 1001380c +10009db6: 4603 mov r3, r0 +10009db8: 8aa8 ldrh r0, [r5, #20] +10009dba: 9903 ldr r1, [sp, #12] +10009dbc: 9000 str r0, [sp, #0] +10009dbe: 465a mov r2, fp +10009dc0: 4834 ldr r0, [pc, #208] ; (10009e94 ) +10009dc2: f038 f9a1 bl 10042108 +10009dc6: e7b7 b.n 10009d38 +10009dc8: 2210 movs r2, #16 +10009dca: a805 add r0, sp, #20 +10009dcc: f038 f9ce bl 1004216c +10009dd0: 2302 movs r3, #2 +10009dd2: f88d 3015 strb.w r3, [sp, #21] +10009dd6: 6928 ldr r0, [r5, #16] +10009dd8: f00a f820 bl 10013e1c +10009ddc: 9006 str r0, [sp, #24] +10009dde: 8aa8 ldrh r0, [r5, #20] +10009de0: f00a f814 bl 10013e0c +10009de4: a905 add r1, sp, #20 +10009de6: f8ad 0016 strh.w r0, [sp, #22] +10009dea: 2210 movs r2, #16 +10009dec: 6868 ldr r0, [r5, #4] +10009dee: f007 fea1 bl 10011b34 +10009df2: bb10 cbnz r0, 10009e3a +10009df4: 6833 ldr r3, [r6, #0] +10009df6: 0618 lsls r0, r3, #24 +10009df8: d502 bpl.n 10009e00 +10009dfa: 4b24 ldr r3, [pc, #144] ; (10009e8c ) +10009dfc: 781b ldrb r3, [r3, #0] +10009dfe: bb83 cbnz r3, 10009e62 +10009e00: 4628 mov r0, r5 +10009e02: f7fe fc65 bl 100086d0 +10009e06: 2800 cmp r0, #0 +10009e08: dac5 bge.n 10009d96 +10009e0a: 2405 movs r4, #5 +10009e0c: e7c5 b.n 10009d9a +10009e0e: f8d8 3000 ldr.w r3, [r8] +10009e12: 061a lsls r2, r3, #24 +10009e14: d506 bpl.n 10009e24 +10009e16: f89a 3000 ldrb.w r3, [sl] +10009e1a: 2b01 cmp r3, #1 +10009e1c: d902 bls.n 10009e24 +10009e1e: 481e ldr r0, [pc, #120] ; (10009e98 ) +10009e20: f038 f972 bl 10042108 +10009e24: 4628 mov r0, r5 +10009e26: f7fe fa4d bl 100082c4 +10009e2a: 2407 movs r4, #7 +10009e2c: 9b0a ldr r3, [sp, #40] ; 0x28 +10009e2e: f109 0901 add.w r9, r9, #1 +10009e32: 454b cmp r3, r9 +10009e34: f73f af4a bgt.w 10009ccc +10009e38: e73e b.n 10009cb8 +10009e3a: f8d8 3000 ldr.w r3, [r8] +10009e3e: 0619 lsls r1, r3, #24 +10009e40: d508 bpl.n 10009e54 +10009e42: f89a 3000 ldrb.w r3, [sl] +10009e46: 2b01 cmp r3, #1 +10009e48: d904 bls.n 10009e54 +10009e4a: 4b14 ldr r3, [pc, #80] ; (10009e9c ) +10009e4c: 4814 ldr r0, [pc, #80] ; (10009ea0 ) +10009e4e: 6819 ldr r1, [r3, #0] +10009e50: f038 f95a bl 10042108 +10009e54: 4628 mov r0, r5 +10009e56: f7fe fa35 bl 100082c4 +10009e5a: 2406 movs r4, #6 +10009e5c: e7e6 b.n 10009e2c +10009e5e: 2403 movs r4, #3 +10009e60: e72a b.n 10009cb8 +10009e62: 4810 ldr r0, [pc, #64] ; (10009ea4 ) +10009e64: f038 f950 bl 10042108 +10009e68: e7ca b.n 10009e00 +10009e6a: 4b07 ldr r3, [pc, #28] ; (10009e88 ) +10009e6c: 681b ldr r3, [r3, #0] +10009e6e: 061a lsls r2, r3, #24 +10009e70: d508 bpl.n 10009e84 +10009e72: 4b06 ldr r3, [pc, #24] ; (10009e8c ) +10009e74: 781b ldrb r3, [r3, #0] +10009e76: 2b01 cmp r3, #1 +10009e78: d904 bls.n 10009e84 +10009e7a: 480b ldr r0, [pc, #44] ; (10009ea8 ) +10009e7c: f038 f944 bl 10042108 +10009e80: 2404 movs r4, #4 +10009e82: e78a b.n 10009d9a +10009e84: 2404 movs r4, #4 +10009e86: e788 b.n 10009d9a +10009e88: 1004d7e8 .word 0x1004d7e8 +10009e8c: 1004d7f8 .word 0x1004d7f8 +10009e90: 100442b0 .word 0x100442b0 +10009e94: 10044b30 .word 0x10044b30 +10009e98: 1004429c .word 0x1004429c +10009e9c: 1004f3e4 .word 0x1004f3e4 +10009ea0: 10044b50 .word 0x10044b50 +10009ea4: 10044230 .word 0x10044230 +10009ea8: 100441fc .word 0x100441fc + +10009eac : +10009eac: b508 push {r3, lr} +10009eae: f7ff fee3 bl 10009c78 +10009eb2: b930 cbnz r0, 10009ec2 +10009eb4: f7ff fd10 bl 100098d8 +10009eb8: 3000 adds r0, #0 +10009eba: bf18 it ne +10009ebc: 2001 movne r0, #1 +10009ebe: 4240 negs r0, r0 +10009ec0: bd08 pop {r3, pc} +10009ec2: f04f 30ff mov.w r0, #4294967295 +10009ec6: bd08 pop {r3, pc} + +10009ec8 : +10009ec8: b538 push {r3, r4, r5, lr} +10009eca: 4d08 ldr r5, [pc, #32] ; (10009eec ) +10009ecc: 2400 movs r4, #0 +10009ece: 592b ldr r3, [r5, r4] +10009ed0: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009ed4: 4a06 ldr r2, [pc, #24] ; (10009ef0 ) +10009ed6: 4807 ldr r0, [pc, #28] ; (10009ef4 ) +10009ed8: f038 f8a6 bl 10042028 +10009edc: 3410 adds r4, #16 +10009ede: 4805 ldr r0, [pc, #20] ; (10009ef4 ) +10009ee0: f015 fc8e bl 1001f800 +10009ee4: 2cb0 cmp r4, #176 ; 0xb0 +10009ee6: d1f2 bne.n 10009ece +10009ee8: bd38 pop {r3, r4, r5, pc} +10009eea: bf00 nop +10009eec: 1004d560 .word 0x1004d560 +10009ef0: 10044b70 .word 0x10044b70 +10009ef4: 1005207c .word 0x1005207c + +10009ef8 : +10009ef8: b508 push {r3, lr} +10009efa: f7fe f98b bl 10008214 +10009efe: f04f 30ff mov.w r0, #4294967295 +10009f02: 4601 mov r1, r0 +10009f04: f7fe f99a bl 1000823c +10009f08: 4b03 ldr r3, [pc, #12] ; (10009f18 ) +10009f0a: 210b movs r1, #11 +10009f0c: 6018 str r0, [r3, #0] +10009f0e: 4803 ldr r0, [pc, #12] ; (10009f1c ) +10009f10: e8bd 4008 ldmia.w sp!, {r3, lr} +10009f14: f001 bf5c b.w 1000bdd0 +10009f18: 1005006c .word 0x1005006c +10009f1c: 1004d560 .word 0x1004d560 + +10009f20 : +10009f20: b510 push {r4, lr} +10009f22: 4c06 ldr r4, [pc, #24] ; (10009f3c ) +10009f24: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009f28: 4620 mov r0, r4 +10009f2a: 4a05 ldr r2, [pc, #20] ; (10009f40 ) +10009f2c: f038 f87c bl 10042028 +10009f30: 4620 mov r0, r4 +10009f32: e8bd 4010 ldmia.w sp!, {r4, lr} +10009f36: f015 bc63 b.w 1001f800 +10009f3a: bf00 nop +10009f3c: 1005207c .word 0x1005207c +10009f40: 10044bd0 .word 0x10044bd0 + +10009f44 : +10009f44: b510 push {r4, lr} +10009f46: 4c07 ldr r4, [pc, #28] ; (10009f64 ) +10009f48: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009f4c: 4620 mov r0, r4 +10009f4e: 4a06 ldr r2, [pc, #24] ; (10009f68 ) +10009f50: f038 f86a bl 10042028 +10009f54: 4620 mov r0, r4 +10009f56: f015 fc53 bl 1001f800 +10009f5a: e8bd 4010 ldmia.w sp!, {r4, lr} +10009f5e: f013 bf77 b.w 1001de50 +10009f62: bf00 nop +10009f64: 1005207c .word 0x1005207c +10009f68: 10044bdc .word 0x10044bdc + +10009f6c : +10009f6c: b530 push {r4, r5, lr} +10009f6e: b093 sub sp, #76 ; 0x4c +10009f70: ac0a add r4, sp, #40 ; 0x28 +10009f72: a802 add r0, sp, #8 +10009f74: 490b ldr r1, [pc, #44] ; (10009fa4 ) +10009f76: f038 f905 bl 10042184 +10009f7a: 4620 mov r0, r4 +10009f7c: 490a ldr r1, [pc, #40] ; (10009fa8 ) +10009f7e: f038 f901 bl 10042184 +10009f82: 4d0a ldr r5, [pc, #40] ; (10009fac ) +10009f84: 4a0a ldr r2, [pc, #40] ; (10009fb0 ) +10009f86: ab02 add r3, sp, #8 +10009f88: 9201 str r2, [sp, #4] +10009f8a: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009f8e: 4a09 ldr r2, [pc, #36] ; (10009fb4 ) +10009f90: 9400 str r4, [sp, #0] +10009f92: 4628 mov r0, r5 +10009f94: f038 f848 bl 10042028 +10009f98: 4628 mov r0, r5 +10009f9a: f015 fc31 bl 1001f800 +10009f9e: b013 add sp, #76 ; 0x4c +10009fa0: bd30 pop {r4, r5, pc} +10009fa2: bf00 nop +10009fa4: 10044be8 .word 0x10044be8 +10009fa8: 10044bf0 .word 0x10044bf0 +10009fac: 1005207c .word 0x1005207c +10009fb0: 10044c10 .word 0x10044c10 +10009fb4: 10044bf8 .word 0x10044bf8 + +10009fb8 : +10009fb8: b500 push {lr} +10009fba: 2300 movs r3, #0 +10009fbc: b08d sub sp, #52 ; 0x34 +10009fbe: 9300 str r3, [sp, #0] +10009fc0: 9301 str r3, [sp, #4] +10009fc2: 9302 str r3, [sp, #8] +10009fc4: 9303 str r3, [sp, #12] +10009fc6: 9304 str r3, [sp, #16] +10009fc8: 9305 str r3, [sp, #20] +10009fca: 9306 str r3, [sp, #24] +10009fcc: 9307 str r3, [sp, #28] +10009fce: 9308 str r3, [sp, #32] +10009fd0: 9309 str r3, [sp, #36] ; 0x24 +10009fd2: 930a str r3, [sp, #40] ; 0x28 +10009fd4: 930b str r3, [sp, #44] ; 0x2c +10009fd6: b120 cbz r0, 10009fe2 +10009fd8: 4669 mov r1, sp +10009fda: f001 ff8f bl 1000befc +10009fde: 2802 cmp r0, #2 +10009fe0: d016 beq.n 1000a010 +10009fe2: 4b28 ldr r3, [pc, #160] ; (1000a084 ) +10009fe4: 681b ldr r3, [r3, #0] +10009fe6: 05da lsls r2, r3, #23 +10009fe8: d506 bpl.n 10009ff8 +10009fea: 4b27 ldr r3, [pc, #156] ; (1000a088 ) +10009fec: 781b ldrb r3, [r3, #0] +10009fee: 2b01 cmp r3, #1 +10009ff0: d902 bls.n 10009ff8 +10009ff2: 4826 ldr r0, [pc, #152] ; (1000a08c ) +10009ff4: f038 f888 bl 10042108 +10009ff8: 4825 ldr r0, [pc, #148] ; (1000a090 ) +10009ffa: f44f 61c8 mov.w r1, #1600 ; 0x640 +10009ffe: 4a25 ldr r2, [pc, #148] ; (1000a094 ) +1000a000: f038 f812 bl 10042028 +1000a004: 4822 ldr r0, [pc, #136] ; (1000a090 ) +1000a006: f015 fbfb bl 1001f800 +1000a00a: b00d add sp, #52 ; 0x34 +1000a00c: f85d fb04 ldr.w pc, [sp], #4 +1000a010: 9b01 ldr r3, [sp, #4] +1000a012: f993 3000 ldrsb.w r3, [r3] +1000a016: 2b61 cmp r3, #97 ; 0x61 +1000a018: d018 beq.n 1000a04c +1000a01a: 2b72 cmp r3, #114 ; 0x72 +1000a01c: d02d beq.n 1000a07a +1000a01e: 2b3f cmp r3, #63 ; 0x3f +1000a020: d017 beq.n 1000a052 +1000a022: 4b18 ldr r3, [pc, #96] ; (1000a084 ) +1000a024: 681b ldr r3, [r3, #0] +1000a026: 05db lsls r3, r3, #23 +1000a028: d506 bpl.n 1000a038 +1000a02a: 4b17 ldr r3, [pc, #92] ; (1000a088 ) +1000a02c: 781b ldrb r3, [r3, #0] +1000a02e: 2b01 cmp r3, #1 +1000a030: d902 bls.n 1000a038 +1000a032: 4816 ldr r0, [pc, #88] ; (1000a08c ) +1000a034: f038 f868 bl 10042108 +1000a038: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a03c: 4a16 ldr r2, [pc, #88] ; (1000a098 ) +1000a03e: 4814 ldr r0, [pc, #80] ; (1000a090 ) +1000a040: f037 fff2 bl 10042028 +1000a044: 4812 ldr r0, [pc, #72] ; (1000a090 ) +1000a046: f015 fbdb bl 1001f800 +1000a04a: e7de b.n 1000a00a +1000a04c: 2001 movs r0, #1 +1000a04e: f014 f9e5 bl 1001e41c +1000a052: f014 f9f3 bl 1001e43c +1000a056: 4a11 ldr r2, [pc, #68] ; (1000a09c ) +1000a058: 4b11 ldr r3, [pc, #68] ; (1000a0a0 ) +1000a05a: f010 0f01 tst.w r0, #1 +1000a05e: bf08 it eq +1000a060: 4613 moveq r3, r2 +1000a062: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a066: 4a0f ldr r2, [pc, #60] ; (1000a0a4 ) +1000a068: 4809 ldr r0, [pc, #36] ; (1000a090 ) +1000a06a: f037 ffdd bl 10042028 +1000a06e: 4808 ldr r0, [pc, #32] ; (1000a090 ) +1000a070: f015 fbc6 bl 1001f800 +1000a074: b00d add sp, #52 ; 0x34 +1000a076: f85d fb04 ldr.w pc, [sp], #4 +1000a07a: 2001 movs r0, #1 +1000a07c: f014 f9d6 bl 1001e42c +1000a080: e7e7 b.n 1000a052 +1000a082: bf00 nop +1000a084: 1004d7e8 .word 0x1004d7e8 +1000a088: 1004d7f8 .word 0x1004d7f8 +1000a08c: 10044c24 .word 0x10044c24 +1000a090: 1005207c .word 0x1005207c +1000a094: 10044c44 .word 0x10044c44 +1000a098: 10044c58 .word 0x10044c58 +1000a09c: 100450b0 .word 0x100450b0 +1000a0a0: 10044588 .word 0x10044588 +1000a0a4: 10044c6c .word 0x10044c6c + +1000a0a8 : +1000a0a8: b530 push {r4, r5, lr} +1000a0aa: 4c46 ldr r4, [pc, #280] ; (1000a1c4 ) +1000a0ac: 2300 movs r3, #0 +1000a0ae: 6822 ldr r2, [r4, #0] +1000a0b0: b08d sub sp, #52 ; 0x34 +1000a0b2: 9300 str r3, [sp, #0] +1000a0b4: 9301 str r3, [sp, #4] +1000a0b6: 9302 str r3, [sp, #8] +1000a0b8: 9303 str r3, [sp, #12] +1000a0ba: 9304 str r3, [sp, #16] +1000a0bc: 9305 str r3, [sp, #20] +1000a0be: 9306 str r3, [sp, #24] +1000a0c0: 9307 str r3, [sp, #28] +1000a0c2: 9308 str r3, [sp, #32] +1000a0c4: 9309 str r3, [sp, #36] ; 0x24 +1000a0c6: 930a str r3, [sp, #40] ; 0x28 +1000a0c8: 930b str r3, [sp, #44] ; 0x2c +1000a0ca: 0653 lsls r3, r2, #25 +1000a0cc: 4605 mov r5, r0 +1000a0ce: d503 bpl.n 1000a0d8 +1000a0d0: 4b3d ldr r3, [pc, #244] ; (1000a1c8 ) +1000a0d2: 781b ldrb r3, [r3, #0] +1000a0d4: 2b00 cmp r3, #0 +1000a0d6: d154 bne.n 1000a182 +1000a0d8: 2d00 cmp r5, #0 +1000a0da: d03a beq.n 1000a152 +1000a0dc: 4628 mov r0, r5 +1000a0de: 4669 mov r1, sp +1000a0e0: f001 ff0c bl 1000befc +1000a0e4: 2801 cmp r0, #1 +1000a0e6: dd5a ble.n 1000a19e +1000a0e8: 9b01 ldr r3, [sp, #4] +1000a0ea: f993 3000 ldrsb.w r3, [r3] +1000a0ee: 2b61 cmp r3, #97 ; 0x61 +1000a0f0: d04b beq.n 1000a18a +1000a0f2: 2b72 cmp r3, #114 ; 0x72 +1000a0f4: d00a beq.n 1000a10c +1000a0f6: 2b3f cmp r3, #63 ; 0x3f +1000a0f8: d011 beq.n 1000a11e +1000a0fa: 6823 ldr r3, [r4, #0] +1000a0fc: 065b lsls r3, r3, #25 +1000a0fe: d503 bpl.n 1000a108 +1000a100: 4b31 ldr r3, [pc, #196] ; (1000a1c8 ) +1000a102: 781b ldrb r3, [r3, #0] +1000a104: 2b00 cmp r3, #0 +1000a106: d152 bne.n 1000a1ae +1000a108: 2303 movs r3, #3 +1000a10a: e026 b.n 1000a15a +1000a10c: 2803 cmp r0, #3 +1000a10e: d106 bne.n 1000a11e +1000a110: 2100 movs r1, #0 +1000a112: 2210 movs r2, #16 +1000a114: 4b2d ldr r3, [pc, #180] ; (1000a1cc ) +1000a116: 9802 ldr r0, [sp, #8] +1000a118: 4798 blx r3 +1000a11a: f014 f987 bl 1001e42c +1000a11e: 6823 ldr r3, [r4, #0] +1000a120: 065a lsls r2, r3, #25 +1000a122: d508 bpl.n 1000a136 +1000a124: 4b28 ldr r3, [pc, #160] ; (1000a1c8 ) +1000a126: 781b ldrb r3, [r3, #0] +1000a128: b12b cbz r3, 1000a136 +1000a12a: f014 f987 bl 1001e43c +1000a12e: 4601 mov r1, r0 +1000a130: 4827 ldr r0, [pc, #156] ; (1000a1d0 ) +1000a132: f037 ffe9 bl 10042108 +1000a136: f014 f981 bl 1001e43c +1000a13a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a13e: 4603 mov r3, r0 +1000a140: 4a24 ldr r2, [pc, #144] ; (1000a1d4 ) +1000a142: 4825 ldr r0, [pc, #148] ; (1000a1d8 ) +1000a144: f037 ff70 bl 10042028 +1000a148: 4823 ldr r0, [pc, #140] ; (1000a1d8 ) +1000a14a: f015 fb59 bl 1001f800 +1000a14e: b00d add sp, #52 ; 0x34 +1000a150: bd30 pop {r4, r5, pc} +1000a152: 6823 ldr r3, [r4, #0] +1000a154: 0658 lsls r0, r3, #25 +1000a156: d40b bmi.n 1000a170 +1000a158: 2301 movs r3, #1 +1000a15a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a15e: 4a1f ldr r2, [pc, #124] ; (1000a1dc ) +1000a160: 481d ldr r0, [pc, #116] ; (1000a1d8 ) +1000a162: f037 ff61 bl 10042028 +1000a166: 481c ldr r0, [pc, #112] ; (1000a1d8 ) +1000a168: f015 fb4a bl 1001f800 +1000a16c: b00d add sp, #52 ; 0x34 +1000a16e: bd30 pop {r4, r5, pc} +1000a170: 4b15 ldr r3, [pc, #84] ; (1000a1c8 ) +1000a172: 781b ldrb r3, [r3, #0] +1000a174: 2b00 cmp r3, #0 +1000a176: d0ef beq.n 1000a158 +1000a178: 4819 ldr r0, [pc, #100] ; (1000a1e0 ) +1000a17a: f037 ffc5 bl 10042108 +1000a17e: 2301 movs r3, #1 +1000a180: e7eb b.n 1000a15a +1000a182: 4818 ldr r0, [pc, #96] ; (1000a1e4 ) +1000a184: f037 ffc0 bl 10042108 +1000a188: e7a6 b.n 1000a0d8 +1000a18a: 2803 cmp r0, #3 +1000a18c: d1c7 bne.n 1000a11e +1000a18e: 2100 movs r1, #0 +1000a190: 2210 movs r2, #16 +1000a192: 4b0e ldr r3, [pc, #56] ; (1000a1cc ) +1000a194: 9802 ldr r0, [sp, #8] +1000a196: 4798 blx r3 +1000a198: f014 f940 bl 1001e41c +1000a19c: e7bf b.n 1000a11e +1000a19e: 6823 ldr r3, [r4, #0] +1000a1a0: 0659 lsls r1, r3, #25 +1000a1a2: d502 bpl.n 1000a1aa +1000a1a4: 4b08 ldr r3, [pc, #32] ; (1000a1c8 ) +1000a1a6: 781b ldrb r3, [r3, #0] +1000a1a8: b933 cbnz r3, 1000a1b8 +1000a1aa: 2302 movs r3, #2 +1000a1ac: e7d5 b.n 1000a15a +1000a1ae: 480c ldr r0, [pc, #48] ; (1000a1e0 ) +1000a1b0: f037 ffaa bl 10042108 +1000a1b4: 2303 movs r3, #3 +1000a1b6: e7d0 b.n 1000a15a +1000a1b8: 4809 ldr r0, [pc, #36] ; (1000a1e0 ) +1000a1ba: f037 ffa5 bl 10042108 +1000a1be: 2302 movs r3, #2 +1000a1c0: e7cb b.n 1000a15a +1000a1c2: bf00 nop +1000a1c4: 1004d7e8 .word 0x1004d7e8 +1000a1c8: 1004d7f8 .word 0x1004d7f8 +1000a1cc: 0000f965 .word 0x0000f965 +1000a1d0: 10044cc8 .word 0x10044cc8 +1000a1d4: 10044cf8 .word 0x10044cf8 +1000a1d8: 1005207c .word 0x1005207c +1000a1dc: 10044ce4 .word 0x10044ce4 +1000a1e0: 10044ca0 .word 0x10044ca0 +1000a1e4: 10044c7c .word 0x10044c7c + +1000a1e8 : +1000a1e8: b530 push {r4, r5, lr} +1000a1ea: 4d33 ldr r5, [pc, #204] ; (1000a2b8 ) +1000a1ec: b08d sub sp, #52 ; 0x34 +1000a1ee: 682a ldr r2, [r5, #0] +1000a1f0: 2300 movs r3, #0 +1000a1f2: 05d2 lsls r2, r2, #23 +1000a1f4: 4604 mov r4, r0 +1000a1f6: 9300 str r3, [sp, #0] +1000a1f8: 9301 str r3, [sp, #4] +1000a1fa: 9302 str r3, [sp, #8] +1000a1fc: 9303 str r3, [sp, #12] +1000a1fe: 9304 str r3, [sp, #16] +1000a200: 9305 str r3, [sp, #20] +1000a202: 9306 str r3, [sp, #24] +1000a204: 9307 str r3, [sp, #28] +1000a206: 9308 str r3, [sp, #32] +1000a208: 9309 str r3, [sp, #36] ; 0x24 +1000a20a: 930a str r3, [sp, #40] ; 0x28 +1000a20c: 930b str r3, [sp, #44] ; 0x2c +1000a20e: d502 bpl.n 1000a216 +1000a210: 4b2a ldr r3, [pc, #168] ; (1000a2bc ) +1000a212: 781b ldrb r3, [r3, #0] +1000a214: bb53 cbnz r3, 1000a26c +1000a216: b1dc cbz r4, 1000a250 +1000a218: 4620 mov r0, r4 +1000a21a: 4669 mov r1, sp +1000a21c: f001 fe6e bl 1000befc +1000a220: 1e83 subs r3, r0, #2 +1000a222: 2b02 cmp r3, #2 +1000a224: 4604 mov r4, r0 +1000a226: d90b bls.n 1000a240 +1000a228: 2302 movs r3, #2 +1000a22a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a22e: 4a24 ldr r2, [pc, #144] ; (1000a2c0 ) +1000a230: 4824 ldr r0, [pc, #144] ; (1000a2c4 ) +1000a232: f037 fef9 bl 10042028 +1000a236: 4823 ldr r0, [pc, #140] ; (1000a2c4 ) +1000a238: f015 fae2 bl 1001f800 +1000a23c: b00d add sp, #52 ; 0x34 +1000a23e: bd30 pop {r4, r5, pc} +1000a240: 9801 ldr r0, [sp, #4] +1000a242: b1c8 cbz r0, 1000a278 +1000a244: 4b20 ldr r3, [pc, #128] ; (1000a2c8 ) +1000a246: 4798 blx r3 +1000a248: 2801 cmp r0, #1 +1000a24a: d913 bls.n 1000a274 +1000a24c: 2303 movs r3, #3 +1000a24e: e7ec b.n 1000a22a +1000a250: 682b ldr r3, [r5, #0] +1000a252: 05db lsls r3, r3, #23 +1000a254: d508 bpl.n 1000a268 +1000a256: 4b19 ldr r3, [pc, #100] ; (1000a2bc ) +1000a258: 781b ldrb r3, [r3, #0] +1000a25a: 2b01 cmp r3, #1 +1000a25c: d904 bls.n 1000a268 +1000a25e: 481b ldr r0, [pc, #108] ; (1000a2cc ) +1000a260: f037 ff52 bl 10042108 +1000a264: 2301 movs r3, #1 +1000a266: e7e0 b.n 1000a22a +1000a268: 2301 movs r3, #1 +1000a26a: e7de b.n 1000a22a +1000a26c: 4818 ldr r0, [pc, #96] ; (1000a2d0 ) +1000a26e: f037 ff4b bl 10042108 +1000a272: e7d0 b.n 1000a216 +1000a274: 4b17 ldr r3, [pc, #92] ; (1000a2d4 ) +1000a276: 7018 strb r0, [r3, #0] +1000a278: 2c02 cmp r4, #2 +1000a27a: d011 beq.n 1000a2a0 +1000a27c: 9802 ldr r0, [sp, #8] +1000a27e: b128 cbz r0, 1000a28c +1000a280: 2100 movs r1, #0 +1000a282: 460a mov r2, r1 +1000a284: 4b14 ldr r3, [pc, #80] ; (1000a2d8 ) +1000a286: 4798 blx r3 +1000a288: f001 fed2 bl 1000c030 +1000a28c: 2c04 cmp r4, #4 +1000a28e: d107 bne.n 1000a2a0 +1000a290: 9803 ldr r0, [sp, #12] +1000a292: b128 cbz r0, 1000a2a0 +1000a294: 2100 movs r1, #0 +1000a296: 460a mov r2, r1 +1000a298: 4b0f ldr r3, [pc, #60] ; (1000a2d8 ) +1000a29a: 4798 blx r3 +1000a29c: f001 fec2 bl 1000c024 +1000a2a0: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a2a4: 4a0d ldr r2, [pc, #52] ; (1000a2dc ) +1000a2a6: 4807 ldr r0, [pc, #28] ; (1000a2c4 ) +1000a2a8: f037 febe bl 10042028 +1000a2ac: 4805 ldr r0, [pc, #20] ; (1000a2c4 ) +1000a2ae: f015 faa7 bl 1001f800 +1000a2b2: b00d add sp, #52 ; 0x34 +1000a2b4: bd30 pop {r4, r5, pc} +1000a2b6: bf00 nop +1000a2b8: 1004d7e8 .word 0x1004d7e8 +1000a2bc: 1004d7f8 .word 0x1004d7f8 +1000a2c0: 10044d70 .word 0x10044d70 +1000a2c4: 1005207c .word 0x1005207c +1000a2c8: 0000f769 .word 0x0000f769 +1000a2cc: 10044d34 .word 0x10044d34 +1000a2d0: 10044d0c .word 0x10044d0c +1000a2d4: 1004d841 .word 0x1004d841 +1000a2d8: 0000f965 .word 0x0000f965 +1000a2dc: 10044d64 .word 0x10044d64 + +1000a2e0 : +1000a2e0: b510 push {r4, lr} +1000a2e2: 4c09 ldr r4, [pc, #36] ; (1000a308 ) +1000a2e4: f015 fa48 bl 1001f778 +1000a2e8: 2000 movs r0, #0 +1000a2ea: f005 feb5 bl 10010058 +1000a2ee: 4620 mov r0, r4 +1000a2f0: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a2f4: 4a05 ldr r2, [pc, #20] ; (1000a30c ) +1000a2f6: f037 fe97 bl 10042028 +1000a2fa: 4620 mov r0, r4 +1000a2fc: f015 fa80 bl 1001f800 +1000a300: e8bd 4010 ldmia.w sp!, {r4, lr} +1000a304: f013 bda4 b.w 1001de50 +1000a308: 1005207c .word 0x1005207c +1000a30c: 10044d84 .word 0x10044d84 + +1000a310 : +1000a310: b530 push {r4, r5, lr} +1000a312: 2400 movs r4, #0 +1000a314: b08d sub sp, #52 ; 0x34 +1000a316: 9400 str r4, [sp, #0] +1000a318: 9401 str r4, [sp, #4] +1000a31a: 9402 str r4, [sp, #8] +1000a31c: 9403 str r4, [sp, #12] +1000a31e: 9404 str r4, [sp, #16] +1000a320: 9405 str r4, [sp, #20] +1000a322: 9406 str r4, [sp, #24] +1000a324: 9407 str r4, [sp, #28] +1000a326: 9408 str r4, [sp, #32] +1000a328: 9409 str r4, [sp, #36] ; 0x24 +1000a32a: 940a str r4, [sp, #40] ; 0x28 +1000a32c: 940b str r4, [sp, #44] ; 0x2c +1000a32e: b120 cbz r0, 1000a33a +1000a330: 4669 mov r1, sp +1000a332: f001 fde3 bl 1000befc +1000a336: 2802 cmp r0, #2 +1000a338: d015 beq.n 1000a366 +1000a33a: 4b1a ldr r3, [pc, #104] ; (1000a3a4 ) +1000a33c: 681b ldr r3, [r3, #0] +1000a33e: 06db lsls r3, r3, #27 +1000a340: d506 bpl.n 1000a350 +1000a342: 4b19 ldr r3, [pc, #100] ; (1000a3a8 ) +1000a344: 781b ldrb r3, [r3, #0] +1000a346: 2b01 cmp r3, #1 +1000a348: d902 bls.n 1000a350 +1000a34a: 4818 ldr r0, [pc, #96] ; (1000a3ac ) +1000a34c: f037 fedc bl 10042108 +1000a350: 4817 ldr r0, [pc, #92] ; (1000a3b0 ) +1000a352: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a356: 4a17 ldr r2, [pc, #92] ; (1000a3b4 ) +1000a358: f037 fe66 bl 10042028 +1000a35c: 4814 ldr r0, [pc, #80] ; (1000a3b0 ) +1000a35e: f015 fa4f bl 1001f800 +1000a362: b00d add sp, #52 ; 0x34 +1000a364: bd30 pop {r4, r5, pc} +1000a366: 9801 ldr r0, [sp, #4] +1000a368: 4b13 ldr r3, [pc, #76] ; (1000a3b8 ) +1000a36a: 4798 blx r3 +1000a36c: 4605 mov r5, r0 +1000a36e: 2d01 cmp r5, #1 +1000a370: 480f ldr r0, [pc, #60] ; (1000a3b0 ) +1000a372: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a376: d906 bls.n 1000a386 +1000a378: 4a10 ldr r2, [pc, #64] ; (1000a3bc ) +1000a37a: f037 fe55 bl 10042028 +1000a37e: 480c ldr r0, [pc, #48] ; (1000a3b0 ) +1000a380: f015 fa3e bl 1001f800 +1000a384: e7ed b.n 1000a362 +1000a386: 4a0e ldr r2, [pc, #56] ; (1000a3c0 ) +1000a388: f037 fe4e bl 10042028 +1000a38c: 4808 ldr r0, [pc, #32] ; (1000a3b0 ) +1000a38e: f015 fa37 bl 1001f800 +1000a392: 2d01 cmp r5, #1 +1000a394: bf0c ite eq +1000a396: 4628 moveq r0, r5 +1000a398: 4620 movne r0, r4 +1000a39a: f005 fe5d bl 10010058 +1000a39e: f013 fd57 bl 1001de50 +1000a3a2: e7de b.n 1000a362 +1000a3a4: 1004d7e8 .word 0x1004d7e8 +1000a3a8: 1004d7f8 .word 0x1004d7f8 +1000a3ac: 10044d90 .word 0x10044d90 +1000a3b0: 1005207c .word 0x1005207c +1000a3b4: 10044db0 .word 0x10044db0 +1000a3b8: 0000f769 .word 0x0000f769 +1000a3bc: 10044dc4 .word 0x10044dc4 +1000a3c0: 10044dd8 .word 0x10044dd8 + +1000a3c4 : +1000a3c4: b530 push {r4, r5, lr} +1000a3c6: 2300 movs r3, #0 +1000a3c8: b08d sub sp, #52 ; 0x34 +1000a3ca: 9300 str r3, [sp, #0] +1000a3cc: 9301 str r3, [sp, #4] +1000a3ce: 9302 str r3, [sp, #8] +1000a3d0: 9303 str r3, [sp, #12] +1000a3d2: 9304 str r3, [sp, #16] +1000a3d4: 9305 str r3, [sp, #20] +1000a3d6: 9306 str r3, [sp, #24] +1000a3d8: 9307 str r3, [sp, #28] +1000a3da: 9308 str r3, [sp, #32] +1000a3dc: 9309 str r3, [sp, #36] ; 0x24 +1000a3de: 930a str r3, [sp, #40] ; 0x28 +1000a3e0: 930b str r3, [sp, #44] ; 0x2c +1000a3e2: b148 cbz r0, 1000a3f8 +1000a3e4: 4b1d ldr r3, [pc, #116] ; (1000a45c ) +1000a3e6: ac0c add r4, sp, #48 ; 0x30 +1000a3e8: 4669 mov r1, sp +1000a3ea: f844 3d30 str.w r3, [r4, #-48]! +1000a3ee: f001 fd85 bl 1000befc +1000a3f2: 2803 cmp r0, #3 +1000a3f4: 4605 mov r5, r0 +1000a3f6: d015 beq.n 1000a424 +1000a3f8: 4b19 ldr r3, [pc, #100] ; (1000a460 ) +1000a3fa: 681b ldr r3, [r3, #0] +1000a3fc: 06db lsls r3, r3, #27 +1000a3fe: d506 bpl.n 1000a40e +1000a400: 4b18 ldr r3, [pc, #96] ; (1000a464 ) +1000a402: 781b ldrb r3, [r3, #0] +1000a404: 2b01 cmp r3, #1 +1000a406: d902 bls.n 1000a40e +1000a408: 4817 ldr r0, [pc, #92] ; (1000a468 ) +1000a40a: f037 fe7d bl 10042108 +1000a40e: 4817 ldr r0, [pc, #92] ; (1000a46c ) +1000a410: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a414: 4a16 ldr r2, [pc, #88] ; (1000a470 ) +1000a416: f037 fe07 bl 10042028 +1000a41a: 4814 ldr r0, [pc, #80] ; (1000a46c ) +1000a41c: f015 f9f0 bl 1001f800 +1000a420: b00d add sp, #52 ; 0x34 +1000a422: bd30 pop {r4, r5, pc} +1000a424: f002 fd2c bl 1000ce80 +1000a428: b968 cbnz r0, 1000a446 +1000a42a: 4669 mov r1, sp +1000a42c: 4628 mov r0, r5 +1000a42e: f005 fdf9 bl 10010024 +1000a432: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a436: 4a0f ldr r2, [pc, #60] ; (1000a474 ) +1000a438: 480c ldr r0, [pc, #48] ; (1000a46c ) +1000a43a: f037 fdf5 bl 10042028 +1000a43e: 480b ldr r0, [pc, #44] ; (1000a46c ) +1000a440: f015 f9de bl 1001f800 +1000a444: e7ec b.n 1000a420 +1000a446: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a44a: 4a0b ldr r2, [pc, #44] ; (1000a478 ) +1000a44c: 4807 ldr r0, [pc, #28] ; (1000a46c ) +1000a44e: f037 fdeb bl 10042028 +1000a452: 4806 ldr r0, [pc, #24] ; (1000a46c ) +1000a454: f015 f9d4 bl 1001f800 +1000a458: e7e2 b.n 1000a420 +1000a45a: bf00 nop +1000a45c: 10044e1c .word 0x10044e1c +1000a460: 1004d7e8 .word 0x1004d7e8 +1000a464: 1004d7f8 .word 0x1004d7f8 +1000a468: 10044de4 .word 0x10044de4 +1000a46c: 1005207c .word 0x1005207c +1000a470: 10044e08 .word 0x10044e08 +1000a474: 10044e24 .word 0x10044e24 +1000a478: 10044e30 .word 0x10044e30 + +1000a47c : +1000a47c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000a480: 2400 movs r4, #0 +1000a482: b090 sub sp, #64 ; 0x40 +1000a484: 9404 str r4, [sp, #16] +1000a486: 9405 str r4, [sp, #20] +1000a488: 9406 str r4, [sp, #24] +1000a48a: 9407 str r4, [sp, #28] +1000a48c: 9408 str r4, [sp, #32] +1000a48e: 9409 str r4, [sp, #36] ; 0x24 +1000a490: 940a str r4, [sp, #40] ; 0x28 +1000a492: 940b str r4, [sp, #44] ; 0x2c +1000a494: 940c str r4, [sp, #48] ; 0x30 +1000a496: 940d str r4, [sp, #52] ; 0x34 +1000a498: 940e str r4, [sp, #56] ; 0x38 +1000a49a: 940f str r4, [sp, #60] ; 0x3c +1000a49c: b120 cbz r0, 1000a4a8 +1000a49e: a904 add r1, sp, #16 +1000a4a0: f001 fd2c bl 1000befc +1000a4a4: 2807 cmp r0, #7 +1000a4a6: d016 beq.n 1000a4d6 +1000a4a8: 4b42 ldr r3, [pc, #264] ; (1000a5b4 ) +1000a4aa: 681b ldr r3, [r3, #0] +1000a4ac: 05da lsls r2, r3, #23 +1000a4ae: d506 bpl.n 1000a4be +1000a4b0: 4b41 ldr r3, [pc, #260] ; (1000a5b8 ) +1000a4b2: 781b ldrb r3, [r3, #0] +1000a4b4: 2b01 cmp r3, #1 +1000a4b6: d902 bls.n 1000a4be +1000a4b8: 4840 ldr r0, [pc, #256] ; (1000a5bc ) +1000a4ba: f037 fe25 bl 10042108 +1000a4be: 4840 ldr r0, [pc, #256] ; (1000a5c0 ) +1000a4c0: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a4c4: 4a3f ldr r2, [pc, #252] ; (1000a5c4 ) +1000a4c6: f037 fdaf bl 10042028 +1000a4ca: 483d ldr r0, [pc, #244] ; (1000a5c0 ) +1000a4cc: f015 f998 bl 1001f800 +1000a4d0: b010 add sp, #64 ; 0x40 +1000a4d2: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1000a4d6: 4d3c ldr r5, [pc, #240] ; (1000a5c8 ) +1000a4d8: 9805 ldr r0, [sp, #20] +1000a4da: 47a8 blx r5 +1000a4dc: 4682 mov sl, r0 +1000a4de: 9806 ldr r0, [sp, #24] +1000a4e0: 47a8 blx r5 +1000a4e2: b2c6 uxtb r6, r0 +1000a4e4: 9807 ldr r0, [sp, #28] +1000a4e6: 47a8 blx r5 +1000a4e8: 4607 mov r7, r0 +1000a4ea: 9808 ldr r0, [sp, #32] +1000a4ec: 47a8 blx r5 +1000a4ee: 4680 mov r8, r0 +1000a4f0: 9809 ldr r0, [sp, #36] ; 0x24 +1000a4f2: 47a8 blx r5 +1000a4f4: 4681 mov r9, r0 +1000a4f6: 980a ldr r0, [sp, #40] ; 0x28 +1000a4f8: 47a8 blx r5 +1000a4fa: 1f73 subs r3, r6, #5 +1000a4fc: 2b03 cmp r3, #3 +1000a4fe: d803 bhi.n 1000a508 +1000a500: b2ff uxtb r7, r7 +1000a502: 1e7b subs r3, r7, #1 +1000a504: 2b01 cmp r3, #1 +1000a506: d909 bls.n 1000a51c +1000a508: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a50c: 4a2f ldr r2, [pc, #188] ; (1000a5cc ) +1000a50e: 482c ldr r0, [pc, #176] ; (1000a5c0 ) +1000a510: f037 fd8a bl 10042028 +1000a514: 482a ldr r0, [pc, #168] ; (1000a5c0 ) +1000a516: f015 f973 bl 1001f800 +1000a51a: e7d9 b.n 1000a4d0 +1000a51c: fa5f f888 uxtb.w r8, r8 +1000a520: f1b8 0f02 cmp.w r8, #2 +1000a524: d8f0 bhi.n 1000a508 +1000a526: fa5f f589 uxtb.w r5, r9 +1000a52a: 2d01 cmp r5, #1 +1000a52c: d8ec bhi.n 1000a508 +1000a52e: fa5f f980 uxtb.w r9, r0 +1000a532: f1b9 0f03 cmp.w r9, #3 +1000a536: d8e7 bhi.n 1000a508 +1000a538: 4621 mov r1, r4 +1000a53a: a802 add r0, sp, #8 +1000a53c: 2208 movs r2, #8 +1000a53e: f037 fe15 bl 1004216c +1000a542: 4b1c ldr r3, [pc, #112] ; (1000a5b4 ) +1000a544: f8cd a008 str.w sl, [sp, #8] +1000a548: 681b ldr r3, [r3, #0] +1000a54a: f88d 600c strb.w r6, [sp, #12] +1000a54e: 05db lsls r3, r3, #23 +1000a550: f88d 700d strb.w r7, [sp, #13] +1000a554: f88d 800e strb.w r8, [sp, #14] +1000a558: f88d 500f strb.w r5, [sp, #15] +1000a55c: d502 bpl.n 1000a564 +1000a55e: 4b16 ldr r3, [pc, #88] ; (1000a5b8 ) +1000a560: 781b ldrb r3, [r3, #0] +1000a562: b9eb cbnz r3, 1000a5a0 +1000a564: f1b9 0f01 cmp.w r9, #1 +1000a568: d00f beq.n 1000a58a +1000a56a: f1b9 0f02 cmp.w r9, #2 +1000a56e: d013 beq.n 1000a598 +1000a570: f1b9 0f00 cmp.w r9, #0 +1000a574: d00c beq.n 1000a590 +1000a576: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a57a: 4a15 ldr r2, [pc, #84] ; (1000a5d0 ) +1000a57c: 4810 ldr r0, [pc, #64] ; (1000a5c0 ) +1000a57e: f037 fd53 bl 10042028 +1000a582: 480f ldr r0, [pc, #60] ; (1000a5c0 ) +1000a584: f015 f93c bl 1001f800 +1000a588: e7a2 b.n 1000a4d0 +1000a58a: a802 add r0, sp, #8 +1000a58c: f015 f8ea bl 1001f764 +1000a590: a802 add r0, sp, #8 +1000a592: f015 f911 bl 1001f7b8 +1000a596: e7ee b.n 1000a576 +1000a598: a802 add r0, sp, #8 +1000a59a: f015 f8e3 bl 1001f764 +1000a59e: e7ea b.n 1000a576 +1000a5a0: f8cd 8000 str.w r8, [sp] +1000a5a4: 9501 str r5, [sp, #4] +1000a5a6: 4651 mov r1, sl +1000a5a8: 4632 mov r2, r6 +1000a5aa: 463b mov r3, r7 +1000a5ac: 4809 ldr r0, [pc, #36] ; (1000a5d4 ) +1000a5ae: f037 fdab bl 10042108 +1000a5b2: e7d7 b.n 1000a564 +1000a5b4: 1004d7e8 .word 0x1004d7e8 +1000a5b8: 1004d7f8 .word 0x1004d7f8 +1000a5bc: 10044e44 .word 0x10044e44 +1000a5c0: 1005207c .word 0x1005207c +1000a5c4: 10044e9c .word 0x10044e9c +1000a5c8: 0000f769 .word 0x0000f769 +1000a5cc: 10044eb0 .word 0x10044eb0 +1000a5d0: 10044ee4 .word 0x10044ee4 +1000a5d4: 10044ec4 .word 0x10044ec4 + +1000a5d8 : +1000a5d8: b570 push {r4, r5, r6, lr} +1000a5da: 4c61 ldr r4, [pc, #388] ; (1000a760 ) +1000a5dc: b092 sub sp, #72 ; 0x48 +1000a5de: 6822 ldr r2, [r4, #0] +1000a5e0: 2300 movs r3, #0 +1000a5e2: 0716 lsls r6, r2, #28 +1000a5e4: 4605 mov r5, r0 +1000a5e6: 9306 str r3, [sp, #24] +1000a5e8: 9307 str r3, [sp, #28] +1000a5ea: 9308 str r3, [sp, #32] +1000a5ec: 9309 str r3, [sp, #36] ; 0x24 +1000a5ee: 930a str r3, [sp, #40] ; 0x28 +1000a5f0: 930b str r3, [sp, #44] ; 0x2c +1000a5f2: 930c str r3, [sp, #48] ; 0x30 +1000a5f4: 930d str r3, [sp, #52] ; 0x34 +1000a5f6: 930e str r3, [sp, #56] ; 0x38 +1000a5f8: 930f str r3, [sp, #60] ; 0x3c +1000a5fa: 9310 str r3, [sp, #64] ; 0x40 +1000a5fc: 9311 str r3, [sp, #68] ; 0x44 +1000a5fe: d503 bpl.n 1000a608 +1000a600: 4b58 ldr r3, [pc, #352] ; (1000a764 ) +1000a602: 781b ldrb r3, [r3, #0] +1000a604: 2b00 cmp r3, #0 +1000a606: d17a bne.n 1000a6fe +1000a608: 2d00 cmp r5, #0 +1000a60a: d06a beq.n 1000a6e2 +1000a60c: 4628 mov r0, r5 +1000a60e: a906 add r1, sp, #24 +1000a610: f001 fc74 bl 1000befc +1000a614: 2802 cmp r0, #2 +1000a616: dc0b bgt.n 1000a630 +1000a618: 6823 ldr r3, [r4, #0] +1000a61a: 071c lsls r4, r3, #28 +1000a61c: d555 bpl.n 1000a6ca +1000a61e: 4b51 ldr r3, [pc, #324] ; (1000a764 ) +1000a620: 781b ldrb r3, [r3, #0] +1000a622: 2b01 cmp r3, #1 +1000a624: d951 bls.n 1000a6ca +1000a626: 4850 ldr r0, [pc, #320] ; (1000a768 ) +1000a628: f037 fd6e bl 10042108 +1000a62c: 2302 movs r3, #2 +1000a62e: e04d b.n 1000a6cc +1000a630: 9b08 ldr r3, [sp, #32] +1000a632: 2100 movs r1, #0 +1000a634: 1cd8 adds r0, r3, #3 +1000a636: 460a mov r2, r1 +1000a638: 4e4c ldr r6, [pc, #304] ; (1000a76c ) +1000a63a: 785d ldrb r5, [r3, #1] +1000a63c: 47b0 blx r6 +1000a63e: 3d41 subs r5, #65 ; 0x41 +1000a640: 6823 ldr r3, [r4, #0] +1000a642: b240 sxtb r0, r0 +1000a644: b26d sxtb r5, r5 +1000a646: ea40 1505 orr.w r5, r0, r5, lsl #4 +1000a64a: 0718 lsls r0, r3, #28 +1000a64c: d503 bpl.n 1000a656 +1000a64e: 4b45 ldr r3, [pc, #276] ; (1000a764 ) +1000a650: 781b ldrb r3, [r3, #0] +1000a652: 2b00 cmp r3, #0 +1000a654: d178 bne.n 1000a748 +1000a656: 4628 mov r0, r5 +1000a658: f013 f8f8 bl 1001d84c +1000a65c: 28ff cmp r0, #255 ; 0xff +1000a65e: d052 beq.n 1000a706 +1000a660: 4668 mov r0, sp +1000a662: 4629 mov r1, r5 +1000a664: f013 f90e bl 1001d884 +1000a668: 980a ldr r0, [sp, #40] ; 0x28 +1000a66a: b148 cbz r0, 1000a680 +1000a66c: 4b40 ldr r3, [pc, #256] ; (1000a770 ) +1000a66e: 4798 blx r3 +1000a670: 6823 ldr r3, [r4, #0] +1000a672: 4605 mov r5, r0 +1000a674: 071a lsls r2, r3, #28 +1000a676: d455 bmi.n 1000a724 +1000a678: 4629 mov r1, r5 +1000a67a: 4668 mov r0, sp +1000a67c: f013 f934 bl 1001d8e8 +1000a680: 980b ldr r0, [sp, #44] ; 0x2c +1000a682: b148 cbz r0, 1000a698 +1000a684: 4b3a ldr r3, [pc, #232] ; (1000a770 ) +1000a686: 4798 blx r3 +1000a688: 6823 ldr r3, [r4, #0] +1000a68a: 4605 mov r5, r0 +1000a68c: 071b lsls r3, r3, #28 +1000a68e: d452 bmi.n 1000a736 +1000a690: 4629 mov r1, r5 +1000a692: 4668 mov r0, sp +1000a694: f013 f910 bl 1001d8b8 +1000a698: 9b07 ldr r3, [sp, #28] +1000a69a: f993 3000 ldrsb.w r3, [r3] +1000a69e: 2b52 cmp r3, #82 ; 0x52 +1000a6a0: d058 beq.n 1000a754 +1000a6a2: 9809 ldr r0, [sp, #36] ; 0x24 +1000a6a4: 4b32 ldr r3, [pc, #200] ; (1000a770 ) +1000a6a6: 4798 blx r3 +1000a6a8: 4604 mov r4, r0 +1000a6aa: 4621 mov r1, r4 +1000a6ac: 4668 mov r0, sp +1000a6ae: f013 f933 bl 1001d918 +1000a6b2: 4623 mov r3, r4 +1000a6b4: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a6b8: 4a2e ldr r2, [pc, #184] ; (1000a774 ) +1000a6ba: 482f ldr r0, [pc, #188] ; (1000a778 ) +1000a6bc: f037 fcb4 bl 10042028 +1000a6c0: 482d ldr r0, [pc, #180] ; (1000a778 ) +1000a6c2: f015 f89d bl 1001f800 +1000a6c6: b012 add sp, #72 ; 0x48 +1000a6c8: bd70 pop {r4, r5, r6, pc} +1000a6ca: 2302 movs r3, #2 +1000a6cc: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a6d0: 4a2a ldr r2, [pc, #168] ; (1000a77c ) +1000a6d2: 4829 ldr r0, [pc, #164] ; (1000a778 ) +1000a6d4: f037 fca8 bl 10042028 +1000a6d8: 4827 ldr r0, [pc, #156] ; (1000a778 ) +1000a6da: f015 f891 bl 1001f800 +1000a6de: b012 add sp, #72 ; 0x48 +1000a6e0: bd70 pop {r4, r5, r6, pc} +1000a6e2: 6823 ldr r3, [r4, #0] +1000a6e4: 071d lsls r5, r3, #28 +1000a6e6: d508 bpl.n 1000a6fa +1000a6e8: 4b1e ldr r3, [pc, #120] ; (1000a764 ) +1000a6ea: 781b ldrb r3, [r3, #0] +1000a6ec: 2b01 cmp r3, #1 +1000a6ee: d904 bls.n 1000a6fa +1000a6f0: 481d ldr r0, [pc, #116] ; (1000a768 ) +1000a6f2: f037 fd09 bl 10042108 +1000a6f6: 2301 movs r3, #1 +1000a6f8: e7e8 b.n 1000a6cc +1000a6fa: 2301 movs r3, #1 +1000a6fc: e7e6 b.n 1000a6cc +1000a6fe: 4820 ldr r0, [pc, #128] ; (1000a780 ) +1000a700: f037 fd02 bl 10042108 +1000a704: e780 b.n 1000a608 +1000a706: 6823 ldr r3, [r4, #0] +1000a708: 0719 lsls r1, r3, #28 +1000a70a: d509 bpl.n 1000a720 +1000a70c: 4b15 ldr r3, [pc, #84] ; (1000a764 ) +1000a70e: 781b ldrb r3, [r3, #0] +1000a710: 2b01 cmp r3, #1 +1000a712: d905 bls.n 1000a720 +1000a714: 4629 mov r1, r5 +1000a716: 481b ldr r0, [pc, #108] ; (1000a784 ) +1000a718: f037 fcf6 bl 10042108 +1000a71c: 2303 movs r3, #3 +1000a71e: e7d5 b.n 1000a6cc +1000a720: 2303 movs r3, #3 +1000a722: e7d3 b.n 1000a6cc +1000a724: 4b0f ldr r3, [pc, #60] ; (1000a764 ) +1000a726: 781b ldrb r3, [r3, #0] +1000a728: 2b00 cmp r3, #0 +1000a72a: d0a5 beq.n 1000a678 +1000a72c: 990a ldr r1, [sp, #40] ; 0x28 +1000a72e: 4816 ldr r0, [pc, #88] ; (1000a788 ) +1000a730: f037 fcea bl 10042108 +1000a734: e7a0 b.n 1000a678 +1000a736: 4b0b ldr r3, [pc, #44] ; (1000a764 ) +1000a738: 781b ldrb r3, [r3, #0] +1000a73a: 2b00 cmp r3, #0 +1000a73c: d0a8 beq.n 1000a690 +1000a73e: 990b ldr r1, [sp, #44] ; 0x2c +1000a740: 4812 ldr r0, [pc, #72] ; (1000a78c ) +1000a742: f037 fce1 bl 10042108 +1000a746: e7a3 b.n 1000a690 +1000a748: 9908 ldr r1, [sp, #32] +1000a74a: 462a mov r2, r5 +1000a74c: 4810 ldr r0, [pc, #64] ; (1000a790 ) +1000a74e: f037 fcdb bl 10042108 +1000a752: e780 b.n 1000a656 +1000a754: 4668 mov r0, sp +1000a756: f013 f907 bl 1001d968 +1000a75a: 4604 mov r4, r0 +1000a75c: e7a9 b.n 1000a6b2 +1000a75e: bf00 nop +1000a760: 1004d7e8 .word 0x1004d7e8 +1000a764: 1004d7f8 .word 0x1004d7f8 +1000a768: 10044f10 .word 0x10044f10 +1000a76c: 0000f965 .word 0x0000f965 +1000a770: 0000f769 .word 0x0000f769 +1000a774: 10044f90 .word 0x10044f90 +1000a778: 1005207c .word 0x1005207c +1000a77c: 10044fa0 .word 0x10044fa0 +1000a780: 10044ef0 .word 0x10044ef0 +1000a784: 10044f58 .word 0x10044f58 +1000a788: 10044f78 .word 0x10044f78 +1000a78c: 10044f84 .word 0x10044f84 +1000a790: 10044f48 .word 0x10044f48 + +1000a794 : +1000a794: b538 push {r3, r4, r5, lr} +1000a796: 4d08 ldr r5, [pc, #32] ; (1000a7b8 ) +1000a798: 2400 movs r4, #0 +1000a79a: 592b ldr r3, [r5, r4] +1000a79c: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a7a0: 4a06 ldr r2, [pc, #24] ; (1000a7bc ) +1000a7a2: 4807 ldr r0, [pc, #28] ; (1000a7c0 ) +1000a7a4: f037 fc40 bl 10042028 +1000a7a8: 3410 adds r4, #16 +1000a7aa: 4805 ldr r0, [pc, #20] ; (1000a7c0 ) +1000a7ac: f015 f828 bl 1001f800 +1000a7b0: 2cc0 cmp r4, #192 ; 0xc0 +1000a7b2: d1f2 bne.n 1000a79a +1000a7b4: bd38 pop {r3, r4, r5, pc} +1000a7b6: bf00 nop +1000a7b8: 1004d610 .word 0x1004d610 +1000a7bc: 10044b70 .word 0x10044b70 +1000a7c0: 1005207c .word 0x1005207c + +1000a7c4 : +1000a7c4: b538 push {r3, r4, r5, lr} +1000a7c6: 4c1d ldr r4, [pc, #116] ; (1000a83c ) +1000a7c8: 4605 mov r5, r0 +1000a7ca: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a7ce: 4a1c ldr r2, [pc, #112] ; (1000a840 ) +1000a7d0: 4620 mov r0, r4 +1000a7d2: f037 fc29 bl 10042028 +1000a7d6: 4620 mov r0, r4 +1000a7d8: f015 f812 bl 1001f800 +1000a7dc: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a7e0: 4a18 ldr r2, [pc, #96] ; (1000a844 ) +1000a7e2: 4620 mov r0, r4 +1000a7e4: f037 fc20 bl 10042028 +1000a7e8: 4620 mov r0, r4 +1000a7ea: f015 f809 bl 1001f800 +1000a7ee: 4628 mov r0, r5 +1000a7f0: f7ff ffd0 bl 1000a794 +1000a7f4: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a7f8: 4a13 ldr r2, [pc, #76] ; (1000a848 ) +1000a7fa: 4620 mov r0, r4 +1000a7fc: f037 fc14 bl 10042028 +1000a800: 4620 mov r0, r4 +1000a802: f014 fffd bl 1001f800 +1000a806: 4628 mov r0, r5 +1000a808: f001 fabe bl 1000bd88 +1000a80c: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a810: 4a0e ldr r2, [pc, #56] ; (1000a84c ) +1000a812: 4620 mov r0, r4 +1000a814: f037 fc08 bl 10042028 +1000a818: 4620 mov r0, r4 +1000a81a: f014 fff1 bl 1001f800 +1000a81e: 4628 mov r0, r5 +1000a820: f7ff fb52 bl 10009ec8 +1000a824: 4620 mov r0, r4 +1000a826: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a82a: 4a09 ldr r2, [pc, #36] ; (1000a850 ) +1000a82c: f037 fbfc bl 10042028 +1000a830: 4620 mov r0, r4 +1000a832: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1000a836: f014 bfe3 b.w 1001f800 +1000a83a: bf00 nop +1000a83c: 1005207c .word 0x1005207c +1000a840: 10044fb4 .word 0x10044fb4 +1000a844: 10044fc0 .word 0x10044fc0 +1000a848: 10044fd8 .word 0x10044fd8 +1000a84c: 10044fec .word 0x10044fec +1000a850: 10045004 .word 0x10045004 + +1000a854 : +1000a854: 4801 ldr r0, [pc, #4] ; (1000a85c ) +1000a856: 210c movs r1, #12 +1000a858: f001 baba b.w 1000bdd0 +1000a85c: 1004d610 .word 0x1004d610 + +1000a860 : +1000a860: b570 push {r4, r5, r6, lr} +1000a862: 4d12 ldr r5, [pc, #72] ; (1000a8ac ) +1000a864: 2100 movs r1, #0 +1000a866: 2221 movs r2, #33 ; 0x21 +1000a868: 1c68 adds r0, r5, #1 +1000a86a: 2400 movs r4, #0 +1000a86c: f037 fc7e bl 1004216c +1000a870: 4e0f ldr r6, [pc, #60] ; (1000a8b0 ) +1000a872: 2100 movs r1, #0 +1000a874: 2206 movs r2, #6 +1000a876: f105 0022 add.w r0, r5, #34 ; 0x22 +1000a87a: f037 fc77 bl 1004216c +1000a87e: 4621 mov r1, r4 +1000a880: 2241 movs r2, #65 ; 0x41 +1000a882: 480c ldr r0, [pc, #48] ; (1000a8b4 ) +1000a884: f037 fc72 bl 1004216c +1000a888: f04f 33ff mov.w r3, #4294967295 +1000a88c: 4621 mov r1, r4 +1000a88e: 1c70 adds r0, r6, #1 +1000a890: 2221 movs r2, #33 ; 0x21 +1000a892: 636b str r3, [r5, #52] ; 0x34 +1000a894: 702c strb r4, [r5, #0] +1000a896: 62ec str r4, [r5, #44] ; 0x2c +1000a898: 632c str r4, [r5, #48] ; 0x30 +1000a89a: f037 fc67 bl 1004216c +1000a89e: 2301 movs r3, #1 +1000a8a0: 7034 strb r4, [r6, #0] +1000a8a2: 62b4 str r4, [r6, #40] ; 0x28 +1000a8a4: 62f4 str r4, [r6, #44] ; 0x2c +1000a8a6: 6333 str r3, [r6, #48] ; 0x30 +1000a8a8: bd70 pop {r4, r5, r6, pc} +1000a8aa: bf00 nop +1000a8ac: 1004d7a4 .word 0x1004d7a4 +1000a8b0: 100500c8 .word 0x100500c8 +1000a8b4: 10050084 .word 0x10050084 + +1000a8b8 : +1000a8b8: b510 push {r4, lr} +1000a8ba: 4827 ldr r0, [pc, #156] ; (1000a958 ) +1000a8bc: b08a sub sp, #40 ; 0x28 +1000a8be: f037 fc23 bl 10042108 +1000a8c2: 4826 ldr r0, [pc, #152] ; (1000a95c ) +1000a8c4: f037 fc20 bl 10042108 +1000a8c8: a901 add r1, sp, #4 +1000a8ca: 4825 ldr r0, [pc, #148] ; (1000a960 ) +1000a8cc: f003 ffbe bl 1000e84c +1000a8d0: 2800 cmp r0, #0 +1000a8d2: db38 blt.n 1000a946 +1000a8d4: f002 faac bl 1000ce30 +1000a8d8: 2800 cmp r0, #0 +1000a8da: db36 blt.n 1000a94a +1000a8dc: 2415 movs r4, #21 +1000a8de: e003 b.n 1000a8e8 +1000a8e0: f44f 707a mov.w r0, #1000 ; 0x3e8 +1000a8e4: f011 f9a0 bl 1001bc28 +1000a8e8: 481d ldr r0, [pc, #116] ; (1000a960 ) +1000a8ea: a901 add r1, sp, #4 +1000a8ec: f003 ffae bl 1000e84c +1000a8f0: 2800 cmp r0, #0 +1000a8f2: db15 blt.n 1000a920 +1000a8f4: 3c01 subs r4, #1 +1000a8f6: d1f3 bne.n 1000a8e0 +1000a8f8: 481a ldr r0, [pc, #104] ; (1000a964 ) +1000a8fa: f037 fc05 bl 10042108 +1000a8fe: 481a ldr r0, [pc, #104] ; (1000a968 ) +1000a900: f037 fc02 bl 10042108 +1000a904: f7ff ffac bl 1000a860 +1000a908: 2304 movs r3, #4 +1000a90a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a90e: 4a17 ldr r2, [pc, #92] ; (1000a96c ) +1000a910: 4817 ldr r0, [pc, #92] ; (1000a970 ) +1000a912: f037 fb89 bl 10042028 +1000a916: 4816 ldr r0, [pc, #88] ; (1000a970 ) +1000a918: f014 ff72 bl 1001f800 +1000a91c: b00a add sp, #40 ; 0x28 +1000a91e: bd10 pop {r4, pc} +1000a920: 4814 ldr r0, [pc, #80] ; (1000a974 ) +1000a922: f037 fbf1 bl 10042108 +1000a926: 4810 ldr r0, [pc, #64] ; (1000a968 ) +1000a928: f037 fbee bl 10042108 +1000a92c: f7ff ff98 bl 1000a860 +1000a930: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a934: 4a10 ldr r2, [pc, #64] ; (1000a978 ) +1000a936: 480e ldr r0, [pc, #56] ; (1000a970 ) +1000a938: f037 fb76 bl 10042028 +1000a93c: 480c ldr r0, [pc, #48] ; (1000a970 ) +1000a93e: f014 ff5f bl 1001f800 +1000a942: b00a add sp, #40 ; 0x28 +1000a944: bd10 pop {r4, pc} +1000a946: 480b ldr r0, [pc, #44] ; (1000a974 ) +1000a948: e7ee b.n 1000a928 +1000a94a: 480c ldr r0, [pc, #48] ; (1000a97c ) +1000a94c: f037 fbdc bl 10042108 +1000a950: f7ff ff86 bl 1000a860 +1000a954: 2303 movs r3, #3 +1000a956: e7d8 b.n 1000a90a +1000a958: 10045074 .word 0x10045074 +1000a95c: 10045094 .word 0x10045094 +1000a960: 100450ac .word 0x100450ac +1000a964: 100450f0 .word 0x100450f0 +1000a968: 10047ea0 .word 0x10047ea0 +1000a96c: 1004510c .word 0x1004510c +1000a970: 1005207c .word 0x1005207c +1000a974: 100450b4 .word 0x100450b4 +1000a978: 100450c8 .word 0x100450c8 +1000a97c: 100450d4 .word 0x100450d4 + +1000a980 : +1000a980: b510 push {r4, lr} +1000a982: 2300 movs r3, #0 +1000a984: b082 sub sp, #8 +1000a986: 4604 mov r4, r0 +1000a988: 480a ldr r0, [pc, #40] ; (1000a9b4 ) +1000a98a: 9300 str r3, [sp, #0] +1000a98c: 9301 str r3, [sp, #4] +1000a98e: f037 fbbb bl 10042108 +1000a992: 4b09 ldr r3, [pc, #36] ; (1000a9b8 ) +1000a994: 9300 str r3, [sp, #0] +1000a996: b134 cbz r4, 1000a9a6 +1000a998: 2002 movs r0, #2 +1000a99a: 4669 mov r1, sp +1000a99c: 9401 str r4, [sp, #4] +1000a99e: f003 ff07 bl 1000e7b0 +1000a9a2: b002 add sp, #8 +1000a9a4: bd10 pop {r4, pc} +1000a9a6: 2001 movs r0, #1 +1000a9a8: 4669 mov r1, sp +1000a9aa: f003 ff01 bl 1000e7b0 +1000a9ae: b002 add sp, #8 +1000a9b0: bd10 pop {r4, pc} +1000a9b2: bf00 nop +1000a9b4: 10045120 .word 0x10045120 +1000a9b8: 10045144 .word 0x10045144 + +1000a9bc : +1000a9bc: b510 push {r4, lr} +1000a9be: 2300 movs r3, #0 +1000a9c0: b08c sub sp, #48 ; 0x30 +1000a9c2: 9300 str r3, [sp, #0] +1000a9c4: 9301 str r3, [sp, #4] +1000a9c6: 9302 str r3, [sp, #8] +1000a9c8: 9303 str r3, [sp, #12] +1000a9ca: 9304 str r3, [sp, #16] +1000a9cc: 9305 str r3, [sp, #20] +1000a9ce: 9306 str r3, [sp, #24] +1000a9d0: 9307 str r3, [sp, #28] +1000a9d2: 9308 str r3, [sp, #32] +1000a9d4: 9309 str r3, [sp, #36] ; 0x24 +1000a9d6: 930a str r3, [sp, #40] ; 0x28 +1000a9d8: 930b str r3, [sp, #44] ; 0x2c +1000a9da: b180 cbz r0, 1000a9fe +1000a9dc: 4669 mov r1, sp +1000a9de: f001 fa8d bl 1000befc +1000a9e2: 2803 cmp r0, #3 +1000a9e4: d018 beq.n 1000aa18 +1000a9e6: 2301 movs r3, #1 +1000a9e8: 481b ldr r0, [pc, #108] ; (1000aa58 ) +1000a9ea: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000a9ee: 4a1b ldr r2, [pc, #108] ; (1000aa5c ) +1000a9f0: f037 fb1a bl 10042028 +1000a9f4: 4818 ldr r0, [pc, #96] ; (1000aa58 ) +1000a9f6: f014 ff03 bl 1001f800 +1000a9fa: b00c add sp, #48 ; 0x30 +1000a9fc: bd10 pop {r4, pc} +1000a9fe: 4b18 ldr r3, [pc, #96] ; (1000aa60 ) +1000aa00: 681b ldr r3, [r3, #0] +1000aa02: 059b lsls r3, r3, #22 +1000aa04: d5ef bpl.n 1000a9e6 +1000aa06: 4b17 ldr r3, [pc, #92] ; (1000aa64 ) +1000aa08: 781b ldrb r3, [r3, #0] +1000aa0a: 2b01 cmp r3, #1 +1000aa0c: d9eb bls.n 1000a9e6 +1000aa0e: 4816 ldr r0, [pc, #88] ; (1000aa68 ) +1000aa10: f037 fb7a bl 10042108 +1000aa14: 2301 movs r3, #1 +1000aa16: e7e7 b.n 1000a9e8 +1000aa18: 9801 ldr r0, [sp, #4] +1000aa1a: b138 cbz r0, 1000aa2c +1000aa1c: 4b13 ldr r3, [pc, #76] ; (1000aa6c ) +1000aa1e: 4798 blx r3 +1000aa20: 1e43 subs r3, r0, #1 +1000aa22: 2b01 cmp r3, #1 +1000aa24: 4604 mov r4, r0 +1000aa26: d901 bls.n 1000aa2c +1000aa28: 2302 movs r3, #2 +1000aa2a: e7dd b.n 1000a9e8 +1000aa2c: 9802 ldr r0, [sp, #8] +1000aa2e: b148 cbz r0, 1000aa44 +1000aa30: 4b0e ldr r3, [pc, #56] ; (1000aa6c ) +1000aa32: 4798 blx r3 +1000aa34: 1e43 subs r3, r0, #1 +1000aa36: 2b01 cmp r3, #1 +1000aa38: d8f6 bhi.n 1000aa28 +1000aa3a: 2c01 cmp r4, #1 +1000aa3c: bf0c ite eq +1000aa3e: 4b0c ldreq r3, [pc, #48] ; (1000aa70 ) +1000aa40: 4b0c ldrne r3, [pc, #48] ; (1000aa74 ) +1000aa42: 7018 strb r0, [r3, #0] +1000aa44: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000aa48: 4a0b ldr r2, [pc, #44] ; (1000aa78 ) +1000aa4a: 4803 ldr r0, [pc, #12] ; (1000aa58 ) +1000aa4c: f037 faec bl 10042028 +1000aa50: 4801 ldr r0, [pc, #4] ; (1000aa58 ) +1000aa52: f014 fed5 bl 1001f800 +1000aa56: e7d0 b.n 1000a9fa +1000aa58: 1005207c .word 0x1005207c +1000aa5c: 1004518c .word 0x1004518c +1000aa60: 1004d7e8 .word 0x1004d7e8 +1000aa64: 1004d7f8 .word 0x1004d7f8 +1000aa68: 10045158 .word 0x10045158 +1000aa6c: 0000f769 .word 0x0000f769 +1000aa70: 1004d7e1 .word 0x1004d7e1 +1000aa74: 1004d7e0 .word 0x1004d7e0 +1000aa78: 10045180 .word 0x10045180 + +1000aa7c : +1000aa7c: b510 push {r4, lr} +1000aa7e: 2300 movs r3, #0 +1000aa80: b08c sub sp, #48 ; 0x30 +1000aa82: 9300 str r3, [sp, #0] +1000aa84: 9301 str r3, [sp, #4] +1000aa86: 9302 str r3, [sp, #8] +1000aa88: 9303 str r3, [sp, #12] +1000aa8a: 9304 str r3, [sp, #16] +1000aa8c: 9305 str r3, [sp, #20] +1000aa8e: 9306 str r3, [sp, #24] +1000aa90: 9307 str r3, [sp, #28] +1000aa92: 9308 str r3, [sp, #32] +1000aa94: 9309 str r3, [sp, #36] ; 0x24 +1000aa96: 930a str r3, [sp, #40] ; 0x28 +1000aa98: 930b str r3, [sp, #44] ; 0x2c +1000aa9a: b188 cbz r0, 1000aac0 +1000aa9c: 4669 mov r1, sp +1000aa9e: f001 fa2d bl 1000befc +1000aaa2: 2802 cmp r0, #2 +1000aaa4: 4604 mov r4, r0 +1000aaa6: d018 beq.n 1000aada +1000aaa8: 2301 movs r3, #1 +1000aaaa: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000aaae: 4a16 ldr r2, [pc, #88] ; (1000ab08 ) +1000aab0: 4816 ldr r0, [pc, #88] ; (1000ab0c ) +1000aab2: f037 fab9 bl 10042028 +1000aab6: 4815 ldr r0, [pc, #84] ; (1000ab0c ) +1000aab8: f014 fea2 bl 1001f800 +1000aabc: b00c add sp, #48 ; 0x30 +1000aabe: bd10 pop {r4, pc} +1000aac0: 4b13 ldr r3, [pc, #76] ; (1000ab10 ) +1000aac2: 681b ldr r3, [r3, #0] +1000aac4: 059b lsls r3, r3, #22 +1000aac6: d5ef bpl.n 1000aaa8 +1000aac8: 4b12 ldr r3, [pc, #72] ; (1000ab14 ) +1000aaca: 781b ldrb r3, [r3, #0] +1000aacc: 2b01 cmp r3, #1 +1000aace: d9eb bls.n 1000aaa8 +1000aad0: 4811 ldr r0, [pc, #68] ; (1000ab18 ) +1000aad2: f037 fb19 bl 10042108 +1000aad6: 2301 movs r3, #1 +1000aad8: e7e7 b.n 1000aaaa +1000aada: 9801 ldr r0, [sp, #4] +1000aadc: b140 cbz r0, 1000aaf0 +1000aade: 4b0f ldr r3, [pc, #60] ; (1000ab1c ) +1000aae0: 4798 blx r3 +1000aae2: 4a0f ldr r2, [pc, #60] ; (1000ab20 ) +1000aae4: 1e43 subs r3, r0, #1 +1000aae6: 2b02 cmp r3, #2 +1000aae8: 6010 str r0, [r2, #0] +1000aaea: d901 bls.n 1000aaf0 +1000aaec: 4623 mov r3, r4 +1000aaee: e7dc b.n 1000aaaa +1000aaf0: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000aaf4: 4a0b ldr r2, [pc, #44] ; (1000ab24 ) +1000aaf6: 4805 ldr r0, [pc, #20] ; (1000ab0c ) +1000aaf8: f037 fa96 bl 10042028 +1000aafc: 4803 ldr r0, [pc, #12] ; (1000ab0c ) +1000aafe: f014 fe7f bl 1001f800 +1000ab02: b00c add sp, #48 ; 0x30 +1000ab04: bd10 pop {r4, pc} +1000ab06: bf00 nop +1000ab08: 100451cc .word 0x100451cc +1000ab0c: 1005207c .word 0x1005207c +1000ab10: 1004d7e8 .word 0x1004d7e8 +1000ab14: 1004d7f8 .word 0x1004d7f8 +1000ab18: 100451a0 .word 0x100451a0 +1000ab1c: 0000f769 .word 0x0000f769 +1000ab20: 1004d7e4 .word 0x1004d7e4 +1000ab24: 100451c0 .word 0x100451c0 + +1000ab28 : +1000ab28: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000ab2c: 2400 movs r4, #0 +1000ab2e: b097 sub sp, #92 ; 0x5c +1000ab30: 4680 mov r8, r0 +1000ab32: 4843 ldr r0, [pc, #268] ; (1000ac40 ) +1000ab34: 9402 str r4, [sp, #8] +1000ab36: 9403 str r4, [sp, #12] +1000ab38: 9404 str r4, [sp, #16] +1000ab3a: 9405 str r4, [sp, #20] +1000ab3c: 9406 str r4, [sp, #24] +1000ab3e: 9407 str r4, [sp, #28] +1000ab40: 9408 str r4, [sp, #32] +1000ab42: 9409 str r4, [sp, #36] ; 0x24 +1000ab44: 940a str r4, [sp, #40] ; 0x28 +1000ab46: 940b str r4, [sp, #44] ; 0x2c +1000ab48: 940c str r4, [sp, #48] ; 0x30 +1000ab4a: 940d str r4, [sp, #52] ; 0x34 +1000ab4c: 940e str r4, [sp, #56] ; 0x38 +1000ab4e: 940f str r4, [sp, #60] ; 0x3c +1000ab50: 9410 str r4, [sp, #64] ; 0x40 +1000ab52: 9411 str r4, [sp, #68] ; 0x44 +1000ab54: 9412 str r4, [sp, #72] ; 0x48 +1000ab56: 9413 str r4, [sp, #76] ; 0x4c +1000ab58: 9414 str r4, [sp, #80] ; 0x50 +1000ab5a: 9415 str r4, [sp, #84] ; 0x54 +1000ab5c: f037 fad4 bl 10042108 +1000ab60: f1b8 0f00 cmp.w r8, #0 +1000ab64: d058 beq.n 1000ac18 +1000ab66: 4641 mov r1, r8 +1000ab68: a802 add r0, sp, #8 +1000ab6a: f037 fb0b bl 10042184 +1000ab6e: a802 add r0, sp, #8 +1000ab70: a90a add r1, sp, #40 ; 0x28 +1000ab72: f001 f9c3 bl 1000befc +1000ab76: 2801 cmp r0, #1 +1000ab78: 4681 mov r9, r0 +1000ab7a: dd3b ble.n 1000abf4 +1000ab7c: 980b ldr r0, [sp, #44] ; 0x2c +1000ab7e: 4f31 ldr r7, [pc, #196] ; (1000ac44 ) +1000ab80: 47b8 blx r7 +1000ab82: 9001 str r0, [sp, #4] +1000ab84: f00f fffe bl 1001ab84 +1000ab88: 4606 mov r6, r0 +1000ab8a: 2800 cmp r0, #0 +1000ab8c: d047 beq.n 1000ac1e +1000ab8e: 9801 ldr r0, [sp, #4] +1000ab90: f00f fff8 bl 1001ab84 +1000ab94: 4605 mov r5, r0 +1000ab96: 2800 cmp r0, #0 +1000ab98: d04c beq.n 1000ac34 +1000ab9a: f1b9 0f02 cmp.w r9, #2 +1000ab9e: d00e beq.n 1000abbe +1000aba0: f1a9 0902 sub.w r9, r9, #2 +1000aba4: f10d 0a2c add.w sl, sp, #44 ; 0x2c +1000aba8: f04f 0b01 mov.w fp, #1 +1000abac: f85a 0f04 ldr.w r0, [sl, #4]! +1000abb0: 47b8 blx r7 +1000abb2: 5530 strb r0, [r6, r4] +1000abb4: f805 b004 strb.w fp, [r5, r4] +1000abb8: 3401 adds r4, #1 +1000abba: 454c cmp r4, r9 +1000abbc: d1f6 bne.n 1000abac +1000abbe: 9b01 ldr r3, [sp, #4] +1000abc0: 4630 mov r0, r6 +1000abc2: b2da uxtb r2, r3 +1000abc4: 4629 mov r1, r5 +1000abc6: f002 fc8d bl 1000d4e4 +1000abca: 2800 cmp r0, #0 +1000abcc: db2d blt.n 1000ac2a +1000abce: 481e ldr r0, [pc, #120] ; (1000ac48 ) +1000abd0: 2100 movs r1, #0 +1000abd2: f002 fc29 bl 1000d428 +1000abd6: b9d0 cbnz r0, 1000ac0e +1000abd8: f1b8 0f00 cmp.w r8, #0 +1000abdc: d007 beq.n 1000abee +1000abde: b116 cbz r6, 1000abe6 +1000abe0: 4630 mov r0, r6 +1000abe2: f00f ff5f bl 1001aaa4 +1000abe6: b115 cbz r5, 1000abee +1000abe8: 4628 mov r0, r5 +1000abea: f00f ff5b bl 1001aaa4 +1000abee: b017 add sp, #92 ; 0x5c +1000abf0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000abf4: 4625 mov r5, r4 +1000abf6: 4626 mov r6, r4 +1000abf8: 2301 movs r3, #1 +1000abfa: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000abfe: 4a13 ldr r2, [pc, #76] ; (1000ac4c ) +1000ac00: 4813 ldr r0, [pc, #76] ; (1000ac50 ) +1000ac02: f037 fa11 bl 10042028 +1000ac06: 4812 ldr r0, [pc, #72] ; (1000ac50 ) +1000ac08: f014 fdfa bl 1001f800 +1000ac0c: e7e4 b.n 1000abd8 +1000ac0e: 4811 ldr r0, [pc, #68] ; (1000ac54 ) +1000ac10: f037 fa7a bl 10042108 +1000ac14: 2305 movs r3, #5 +1000ac16: e7f0 b.n 1000abfa +1000ac18: 4645 mov r5, r8 +1000ac1a: 4646 mov r6, r8 +1000ac1c: e7d7 b.n 1000abce +1000ac1e: 480e ldr r0, [pc, #56] ; (1000ac58 ) +1000ac20: f037 fa72 bl 10042108 +1000ac24: 4635 mov r5, r6 +1000ac26: 2302 movs r3, #2 +1000ac28: e7e7 b.n 1000abfa +1000ac2a: 480c ldr r0, [pc, #48] ; (1000ac5c ) +1000ac2c: f037 fa6c bl 10042108 +1000ac30: 2304 movs r3, #4 +1000ac32: e7e2 b.n 1000abfa +1000ac34: 480a ldr r0, [pc, #40] ; (1000ac60 ) +1000ac36: f037 fa67 bl 10042108 +1000ac3a: 2303 movs r3, #3 +1000ac3c: e7dd b.n 1000abfa +1000ac3e: bf00 nop +1000ac40: 100451e0 .word 0x100451e0 +1000ac44: 0000f769 .word 0x0000f769 +1000ac48: 1000b3f1 .word 0x1000b3f1 +1000ac4c: 100452b8 .word 0x100452b8 +1000ac50: 1005207c .word 0x1005207c +1000ac54: 10045298 .word 0x10045298 +1000ac58: 100451fc .word 0x100451fc +1000ac5c: 10045264 .word 0x10045264 +1000ac60: 10045230 .word 0x10045230 + +1000ac64 : +1000ac64: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000ac68: 4881 ldr r0, [pc, #516] ; (1000ae70 ) +1000ac6a: b0ab sub sp, #172 ; 0xac +1000ac6c: f004 fc7c bl 1000f568 +1000ac70: 487f ldr r0, [pc, #508] ; (1000ae70 ) +1000ac72: f004 fc7b bl 1000f56c +1000ac76: 487e ldr r0, [pc, #504] ; (1000ae70 ) +1000ac78: f004 fc7a bl 1000f570 +1000ac7c: 4b7d ldr r3, [pc, #500] ; (1000ae74 ) +1000ac7e: f10d 0a18 add.w sl, sp, #24 +1000ac82: e893 0003 ldmia.w r3, {r0, r1} +1000ac86: e88a 0003 stmia.w sl, {r0, r1} +1000ac8a: 487b ldr r0, [pc, #492] ; (1000ae78 ) +1000ac8c: f037 fa3c bl 10042108 +1000ac90: 4e77 ldr r6, [pc, #476] ; (1000ae70 ) +1000ac92: 2400 movs r4, #0 +1000ac94: fa5f f984 uxtb.w r9, r4 +1000ac98: 4648 mov r0, r9 +1000ac9a: f031 f807 bl 1003bcac +1000ac9e: b980 cbnz r0, 1000acc2 +1000aca0: 3401 adds r4, #1 +1000aca2: 2c02 cmp r4, #2 +1000aca4: f106 063c add.w r6, r6, #60 ; 0x3c +1000aca8: d1f4 bne.n 1000ac94 +1000acaa: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000acae: 4a73 ldr r2, [pc, #460] ; (1000ae7c ) +1000acb0: 4873 ldr r0, [pc, #460] ; (1000ae80 ) +1000acb2: f037 f9b9 bl 10042028 +1000acb6: 4872 ldr r0, [pc, #456] ; (1000ae80 ) +1000acb8: f014 fda2 bl 1001f800 +1000acbc: b02b add sp, #172 ; 0xac +1000acbe: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000acc2: 4630 mov r0, r6 +1000acc4: f004 fc50 bl 1000f568 +1000acc8: 4605 mov r5, r0 +1000acca: 4630 mov r0, r6 +1000accc: f004 fc4e bl 1000f56c +1000acd0: 4680 mov r8, r0 +1000acd2: 4630 mov r0, r6 +1000acd4: f004 fc4c bl 1000f570 +1000acd8: f85a b024 ldr.w fp, [sl, r4, lsl #2] +1000acdc: 4607 mov r7, r0 +1000acde: 4659 mov r1, fp +1000ace0: 4868 ldr r0, [pc, #416] ; (1000ae84 ) +1000ace2: f037 fa11 bl 10042108 +1000ace6: 4868 ldr r0, [pc, #416] ; (1000ae88 ) +1000ace8: f037 fa0e bl 10042108 +1000acec: 4648 mov r0, r9 +1000acee: f030 ffe9 bl 1003bcc4 +1000acf2: a90e add r1, sp, #56 ; 0x38 +1000acf4: 4658 mov r0, fp +1000acf6: f002 fc07 bl 1000d508 +1000acfa: a90e add r1, sp, #56 ; 0x38 +1000acfc: 4658 mov r0, fp +1000acfe: f002 fc67 bl 1000d5d0 +1000ad02: 786a ldrb r2, [r5, #1] +1000ad04: 782b ldrb r3, [r5, #0] +1000ad06: 9200 str r2, [sp, #0] +1000ad08: 78aa ldrb r2, [r5, #2] +1000ad0a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000ad0e: 9201 str r2, [sp, #4] +1000ad10: 78ea ldrb r2, [r5, #3] +1000ad12: 485b ldr r0, [pc, #364] ; (1000ae80 ) +1000ad14: 9202 str r2, [sp, #8] +1000ad16: 792a ldrb r2, [r5, #4] +1000ad18: 9203 str r2, [sp, #12] +1000ad1a: f895 e005 ldrb.w lr, [r5, #5] +1000ad1e: 4a5b ldr r2, [pc, #364] ; (1000ae8c ) +1000ad20: f8cd e010 str.w lr, [sp, #16] +1000ad24: f037 f980 bl 10042028 +1000ad28: 4855 ldr r0, [pc, #340] ; (1000ae80 ) +1000ad2a: f014 fd69 bl 1001f800 +1000ad2e: f898 2001 ldrb.w r2, [r8, #1] +1000ad32: f898 3000 ldrb.w r3, [r8] +1000ad36: 9200 str r2, [sp, #0] +1000ad38: f898 2002 ldrb.w r2, [r8, #2] +1000ad3c: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000ad40: 9201 str r2, [sp, #4] +1000ad42: f898 2003 ldrb.w r2, [r8, #3] +1000ad46: 484e ldr r0, [pc, #312] ; (1000ae80 ) +1000ad48: 9202 str r2, [sp, #8] +1000ad4a: 4a51 ldr r2, [pc, #324] ; (1000ae90 ) +1000ad4c: f037 f96c bl 10042028 +1000ad50: 484b ldr r0, [pc, #300] ; (1000ae80 ) +1000ad52: f014 fd55 bl 1001f800 +1000ad56: 787a ldrb r2, [r7, #1] +1000ad58: 783b ldrb r3, [r7, #0] +1000ad5a: 9200 str r2, [sp, #0] +1000ad5c: 78ba ldrb r2, [r7, #2] +1000ad5e: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000ad62: 9201 str r2, [sp, #4] +1000ad64: 78fa ldrb r2, [r7, #3] +1000ad66: 4846 ldr r0, [pc, #280] ; (1000ae80 ) +1000ad68: 9202 str r2, [sp, #8] +1000ad6a: 4a4a ldr r2, [pc, #296] ; (1000ae94 ) +1000ad6c: f037 f95c bl 10042028 +1000ad70: 4843 ldr r0, [pc, #268] ; (1000ae80 ) +1000ad72: f014 fd45 bl 1001f800 +1000ad76: 4659 mov r1, fp +1000ad78: 4847 ldr r0, [pc, #284] ; (1000ae98 ) +1000ad7a: f037 f9c5 bl 10042108 +1000ad7e: 4842 ldr r0, [pc, #264] ; (1000ae88 ) +1000ad80: f037 f9c2 bl 10042108 +1000ad84: 78e8 ldrb r0, [r5, #3] +1000ad86: 7829 ldrb r1, [r5, #0] +1000ad88: 786a ldrb r2, [r5, #1] +1000ad8a: 78ab ldrb r3, [r5, #2] +1000ad8c: 9000 str r0, [sp, #0] +1000ad8e: 7928 ldrb r0, [r5, #4] +1000ad90: 9001 str r0, [sp, #4] +1000ad92: 7968 ldrb r0, [r5, #5] +1000ad94: 9002 str r0, [sp, #8] +1000ad96: 4841 ldr r0, [pc, #260] ; (1000ae9c ) +1000ad98: f037 f9b6 bl 10042108 +1000ad9c: f898 0003 ldrb.w r0, [r8, #3] +1000ada0: f898 1000 ldrb.w r1, [r8] +1000ada4: f898 2001 ldrb.w r2, [r8, #1] +1000ada8: f898 3002 ldrb.w r3, [r8, #2] +1000adac: 9000 str r0, [sp, #0] +1000adae: 483c ldr r0, [pc, #240] ; (1000aea0 ) +1000adb0: f037 f9aa bl 10042108 +1000adb4: 78f8 ldrb r0, [r7, #3] +1000adb6: 78bb ldrb r3, [r7, #2] +1000adb8: 7839 ldrb r1, [r7, #0] +1000adba: 787a ldrb r2, [r7, #1] +1000adbc: 9000 str r0, [sp, #0] +1000adbe: 4839 ldr r0, [pc, #228] ; (1000aea4 ) +1000adc0: f037 f9a2 bl 10042108 +1000adc4: 9b0e ldr r3, [sp, #56] ; 0x38 +1000adc6: 2b02 cmp r3, #2 +1000adc8: d002 beq.n 1000add0 +1000adca: 2c01 cmp r4, #1 +1000adcc: f47f af68 bne.w 1000aca0 +1000add0: 2303 movs r3, #3 +1000add2: ad2a add r5, sp, #168 ; 0xa8 +1000add4: f845 3d88 str.w r3, [r5, #-136]! +1000add8: 2118 movs r1, #24 +1000adda: 4628 mov r0, r5 +1000addc: f002 f86c bl 1000ceb8 +1000ade0: 4831 ldr r0, [pc, #196] ; (1000aea8 ) +1000ade2: f037 f991 bl 10042108 +1000ade6: 4828 ldr r0, [pc, #160] ; (1000ae88 ) +1000ade8: f037 f98e bl 10042108 +1000adec: 9908 ldr r1, [sp, #32] +1000adee: 2900 cmp r1, #0 +1000adf0: d039 beq.n 1000ae66 +1000adf2: 482e ldr r0, [pc, #184] ; (1000aeac ) +1000adf4: f037 f988 bl 10042108 +1000adf8: 9b08 ldr r3, [sp, #32] +1000adfa: 2b00 cmp r3, #0 +1000adfc: dd2f ble.n 1000ae5e +1000adfe: 2700 movs r7, #0 +1000ae00: 3701 adds r7, #1 +1000ae02: 4639 mov r1, r7 +1000ae04: 482a ldr r0, [pc, #168] ; (1000aeb0 ) +1000ae06: f037 f97f bl 10042108 +1000ae0a: f895 c007 ldrb.w ip, [r5, #7] +1000ae0e: f895 e008 ldrb.w lr, [r5, #8] +1000ae12: 7a68 ldrb r0, [r5, #9] +1000ae14: 7929 ldrb r1, [r5, #4] +1000ae16: 796a ldrb r2, [r5, #5] +1000ae18: 79ab ldrb r3, [r5, #6] +1000ae1a: e88d 5000 stmia.w sp, {ip, lr} +1000ae1e: 9002 str r0, [sp, #8] +1000ae20: 481e ldr r0, [pc, #120] ; (1000ae9c ) +1000ae22: f037 f971 bl 10042108 +1000ae26: f895 c005 ldrb.w ip, [r5, #5] +1000ae2a: f895 e006 ldrb.w lr, [r5, #6] +1000ae2e: 79e8 ldrb r0, [r5, #7] +1000ae30: 7a29 ldrb r1, [r5, #8] +1000ae32: 7a6a ldrb r2, [r5, #9] +1000ae34: f895 8004 ldrb.w r8, [r5, #4] +1000ae38: 463b mov r3, r7 +1000ae3a: e88d 5100 stmia.w sp, {r8, ip, lr} +1000ae3e: 9003 str r0, [sp, #12] +1000ae40: 9104 str r1, [sp, #16] +1000ae42: 9205 str r2, [sp, #20] +1000ae44: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000ae48: 4a1a ldr r2, [pc, #104] ; (1000aeb4 ) +1000ae4a: 480d ldr r0, [pc, #52] ; (1000ae80 ) +1000ae4c: f037 f8ec bl 10042028 +1000ae50: 480b ldr r0, [pc, #44] ; (1000ae80 ) +1000ae52: f014 fcd5 bl 1001f800 +1000ae56: 9b08 ldr r3, [sp, #32] +1000ae58: 3506 adds r5, #6 +1000ae5a: 42bb cmp r3, r7 +1000ae5c: dcd0 bgt.n 1000ae00 +1000ae5e: 4816 ldr r0, [pc, #88] ; (1000aeb8 ) +1000ae60: f037 f952 bl 10042108 +1000ae64: e71c b.n 1000aca0 +1000ae66: 4815 ldr r0, [pc, #84] ; (1000aebc ) +1000ae68: f037 f94e bl 10042108 +1000ae6c: e718 b.n 1000aca0 +1000ae6e: bf00 nop +1000ae70: 10050ae4 .word 0x10050ae4 +1000ae74: 1004506c .word 0x1004506c +1000ae78: 100452cc .word 0x100452cc +1000ae7c: 10045444 .word 0x10045444 +1000ae80: 1005207c .word 0x1005207c +1000ae84: 100452e8 .word 0x100452e8 +1000ae88: 10045304 .word 0x10045304 +1000ae8c: 10045328 .word 0x10045328 +1000ae90: 10045348 .word 0x10045348 +1000ae94: 10047458 .word 0x10047458 +1000ae98: 10045358 .word 0x10045358 +1000ae9c: 1004536c .word 0x1004536c +1000aea0: 10045394 .word 0x10045394 +1000aea4: 100453ac .word 0x100453ac +1000aea8: 100453c4 .word 0x100453c4 +1000aeac: 100453f4 .word 0x100453f4 +1000aeb0: 10045408 .word 0x10045408 +1000aeb4: 10045418 .word 0x10045418 +1000aeb8: 10047ea0 .word 0x10047ea0 +1000aebc: 100453e0 .word 0x100453e0 + +1000aec0 : +1000aec0: b5f0 push {r4, r5, r6, r7, lr} +1000aec2: 2300 movs r3, #0 +1000aec4: b099 sub sp, #100 ; 0x64 +1000aec6: 930c str r3, [sp, #48] ; 0x30 +1000aec8: 930d str r3, [sp, #52] ; 0x34 +1000aeca: 930e str r3, [sp, #56] ; 0x38 +1000aecc: 930f str r3, [sp, #60] ; 0x3c +1000aece: 9310 str r3, [sp, #64] ; 0x40 +1000aed0: 9311 str r3, [sp, #68] ; 0x44 +1000aed2: 9312 str r3, [sp, #72] ; 0x48 +1000aed4: 9313 str r3, [sp, #76] ; 0x4c +1000aed6: 9314 str r3, [sp, #80] ; 0x50 +1000aed8: 9315 str r3, [sp, #84] ; 0x54 +1000aeda: 9316 str r3, [sp, #88] ; 0x58 +1000aedc: 9317 str r3, [sp, #92] ; 0x5c +1000aede: b1d0 cbz r0, 1000af16 +1000aee0: a90c add r1, sp, #48 ; 0x30 +1000aee2: f001 f80b bl 1000befc +1000aee6: 2804 cmp r0, #4 +1000aee8: dc0e bgt.n 1000af08 +1000aeea: 2401 movs r4, #1 +1000aeec: f7ff fcb8 bl 1000a860 +1000aef0: 4623 mov r3, r4 +1000aef2: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000aef6: 4a63 ldr r2, [pc, #396] ; (1000b084 ) +1000aef8: 4863 ldr r0, [pc, #396] ; (1000b088 ) +1000aefa: f037 f895 bl 10042028 +1000aefe: 4862 ldr r0, [pc, #392] ; (1000b088 ) +1000af00: f014 fc7e bl 1001f800 +1000af04: b019 add sp, #100 ; 0x64 +1000af06: bdf0 pop {r4, r5, r6, r7, pc} +1000af08: 4d60 ldr r5, [pc, #384] ; (1000b08c ) +1000af0a: 682c ldr r4, [r5, #0] +1000af0c: 1ea3 subs r3, r4, #2 +1000af0e: 2b01 cmp r3, #1 +1000af10: d90e bls.n 1000af30 +1000af12: 2405 movs r4, #5 +1000af14: e7ea b.n 1000aeec +1000af16: 4b5e ldr r3, [pc, #376] ; (1000b090 ) +1000af18: 681b ldr r3, [r3, #0] +1000af1a: 059b lsls r3, r3, #22 +1000af1c: d5e5 bpl.n 1000aeea +1000af1e: 4b5d ldr r3, [pc, #372] ; (1000b094 ) +1000af20: 781b ldrb r3, [r3, #0] +1000af22: 2b01 cmp r3, #1 +1000af24: d9e1 bls.n 1000aeea +1000af26: 485c ldr r0, [pc, #368] ; (1000b098 ) +1000af28: f037 f8ee bl 10042108 +1000af2c: 2401 movs r4, #1 +1000af2e: e7dd b.n 1000aeec +1000af30: 980d ldr r0, [sp, #52] ; 0x34 +1000af32: b130 cbz r0, 1000af42 +1000af34: f037 f92c bl 10042190 +1000af38: 4e58 ldr r6, [pc, #352] ; (1000b09c ) +1000af3a: b2c0 uxtb r0, r0 +1000af3c: 2820 cmp r0, #32 +1000af3e: 7030 strb r0, [r6, #0] +1000af40: d901 bls.n 1000af46 +1000af42: 2402 movs r4, #2 +1000af44: e7d2 b.n 1000aeec +1000af46: 1c70 adds r0, r6, #1 +1000af48: 990d ldr r1, [sp, #52] ; 0x34 +1000af4a: f037 f91b bl 10042184 +1000af4e: 980e ldr r0, [sp, #56] ; 0x38 +1000af50: 2800 cmp r0, #0 +1000af52: f000 8084 beq.w 1000b05e +1000af56: f037 f91b bl 10042190 +1000af5a: 2807 cmp r0, #7 +1000af5c: d9f1 bls.n 1000af42 +1000af5e: 980e ldr r0, [sp, #56] ; 0x38 +1000af60: f037 f916 bl 10042190 +1000af64: 2840 cmp r0, #64 ; 0x40 +1000af66: d8ec bhi.n 1000af42 +1000af68: 4f4d ldr r7, [pc, #308] ; (1000b0a0 ) +1000af6a: 990e ldr r1, [sp, #56] ; 0x38 +1000af6c: 4638 mov r0, r7 +1000af6e: f037 f909 bl 10042184 +1000af72: 980e ldr r0, [sp, #56] ; 0x38 +1000af74: 62b7 str r7, [r6, #40] ; 0x28 +1000af76: f037 f90b bl 10042190 +1000af7a: 4b4a ldr r3, [pc, #296] ; (1000b0a4 ) +1000af7c: 62f0 str r0, [r6, #44] ; 0x2c +1000af7e: 6273 str r3, [r6, #36] ; 0x24 +1000af80: 980f ldr r0, [sp, #60] ; 0x3c +1000af82: b128 cbz r0, 1000af90 +1000af84: 4b48 ldr r3, [pc, #288] ; (1000b0a8 ) +1000af86: 4798 blx r3 +1000af88: b2c0 uxtb r0, r0 +1000af8a: 280b cmp r0, #11 +1000af8c: 6330 str r0, [r6, #48] ; 0x30 +1000af8e: d8d8 bhi.n 1000af42 +1000af90: 9810 ldr r0, [sp, #64] ; 0x40 +1000af92: 2800 cmp r0, #0 +1000af94: d065 beq.n 1000b062 +1000af96: 4f44 ldr r7, [pc, #272] ; (1000b0a8 ) +1000af98: 47b8 blx r7 +1000af9a: b118 cbz r0, 1000afa4 +1000af9c: 9810 ldr r0, [sp, #64] ; 0x40 +1000af9e: 47b8 blx r7 +1000afa0: 2801 cmp r0, #1 +1000afa2: d1ce bne.n 1000af42 +1000afa4: 9810 ldr r0, [sp, #64] ; 0x40 +1000afa6: 47b8 blx r7 +1000afa8: b2c7 uxtb r7, r0 +1000afaa: 9811 ldr r0, [sp, #68] ; 0x44 +1000afac: b130 cbz r0, 1000afbc +1000afae: 4b3e ldr r3, [pc, #248] ; (1000b0a8 ) +1000afb0: 4798 blx r3 +1000afb2: b2c0 uxtb r0, r0 +1000afb4: f004 f93a bl 1000f22c +1000afb8: 2800 cmp r0, #0 +1000afba: d1c2 bne.n 1000af42 +1000afbc: f00f fcf4 bl 1001a9a8 +1000afc0: f001 fffe bl 1000cfc0 +1000afc4: 2014 movs r0, #20 +1000afc6: f010 fe2f bl 1001bc28 +1000afca: 4620 mov r0, r4 +1000afcc: f001 ff9e bl 1000cf0c +1000afd0: 2800 cmp r0, #0 +1000afd2: db4e blt.n 1000b072 +1000afd4: 6af1 ldr r1, [r6, #44] ; 0x2c +1000afd6: 6b32 ldr r2, [r6, #48] ; 0x30 +1000afd8: 7833 ldrb r3, [r6, #0] +1000afda: e88d 0006 stmia.w sp, {r1, r2} +1000afde: 4833 ldr r0, [pc, #204] ; (1000b0ac ) +1000afe0: 6a71 ldr r1, [r6, #36] ; 0x24 +1000afe2: 6ab2 ldr r2, [r6, #40] ; 0x28 +1000afe4: 2f00 cmp r7, #0 +1000afe6: d03e beq.n 1000b066 +1000afe8: f002 f89e bl 1000d128 +1000afec: 2800 cmp r0, #0 +1000afee: db3e blt.n 1000b06e +1000aff0: 2615 movs r6, #21 +1000aff2: e003 b.n 1000affc +1000aff4: f44f 707a mov.w r0, #1000 ; 0x3e8 +1000aff8: f010 fe16 bl 1001bc28 +1000affc: 2c02 cmp r4, #2 +1000affe: a903 add r1, sp, #12 +1000b000: 482b ldr r0, [pc, #172] ; (1000b0b0 ) +1000b002: bf08 it eq +1000b004: 482b ldreq r0, [pc, #172] ; (1000b0b4 ) +1000b006: f003 fc21 bl 1000e84c +1000b00a: 2800 cmp r0, #0 +1000b00c: 4927 ldr r1, [pc, #156] ; (1000b0ac ) +1000b00e: a803 add r0, sp, #12 +1000b010: dd03 ble.n 1000b01a +1000b012: f037 f8b1 bl 10042178 +1000b016: 2800 cmp r0, #0 +1000b018: d031 beq.n 1000b07e +1000b01a: 3e01 subs r6, #1 +1000b01c: d1ea bne.n 1000aff4 +1000b01e: 2404 movs r4, #4 +1000b020: 4b25 ldr r3, [pc, #148] ; (1000b0b8 ) +1000b022: 682d ldr r5, [r5, #0] +1000b024: f103 023c add.w r2, r3, #60 ; 0x3c +1000b028: 2d03 cmp r5, #3 +1000b02a: bf14 ite ne +1000b02c: 461d movne r5, r3 +1000b02e: 4615 moveq r5, r2 +1000b030: 4628 mov r0, r5 +1000b032: f004 fa9f bl 1000f574 +1000b036: 4b21 ldr r3, [pc, #132] ; (1000b0bc ) +1000b038: 781b ldrb r3, [r3, #0] +1000b03a: 2b01 cmp r3, #1 +1000b03c: d01b beq.n 1000b076 +1000b03e: f7ff fc0f bl 1000a860 +1000b042: 2c00 cmp r4, #0 +1000b044: f47f af54 bne.w 1000aef0 +1000b048: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b04c: 4a1c ldr r2, [pc, #112] ; (1000b0c0 ) +1000b04e: 480e ldr r0, [pc, #56] ; (1000b088 ) +1000b050: f036 ffea bl 10042028 +1000b054: 480c ldr r0, [pc, #48] ; (1000b088 ) +1000b056: f014 fbd3 bl 1001f800 +1000b05a: b019 add sp, #100 ; 0x64 +1000b05c: bdf0 pop {r4, r5, r6, r7, pc} +1000b05e: 6270 str r0, [r6, #36] ; 0x24 +1000b060: e78e b.n 1000af80 +1000b062: 4607 mov r7, r0 +1000b064: e7a1 b.n 1000afaa +1000b066: f001 ffed bl 1000d044 +1000b06a: 2800 cmp r0, #0 +1000b06c: dac0 bge.n 1000aff0 +1000b06e: 2404 movs r4, #4 +1000b070: e73c b.n 1000aeec +1000b072: 2403 movs r4, #3 +1000b074: e73a b.n 1000aeec +1000b076: 4628 mov r0, r5 +1000b078: f00f fc16 bl 1001a8a8 +1000b07c: e7df b.n 1000b03e +1000b07e: 2400 movs r4, #0 +1000b080: e7ce b.n 1000b020 +1000b082: bf00 nop +1000b084: 100454a4 .word 0x100454a4 +1000b088: 1005207c .word 0x1005207c +1000b08c: 1004d7e4 .word 0x1004d7e4 +1000b090: 1004d7e8 .word 0x1004d7e8 +1000b094: 1004d7f8 .word 0x1004d7f8 +1000b098: 10045450 .word 0x10045450 +1000b09c: 100500c8 .word 0x100500c8 +1000b0a0: 10050084 .word 0x10050084 +1000b0a4: 00400004 .word 0x00400004 +1000b0a8: 0000f769 .word 0x0000f769 +1000b0ac: 100500c9 .word 0x100500c9 +1000b0b0: 10045490 .word 0x10045490 +1000b0b4: 100450ac .word 0x100450ac +1000b0b8: 10050ae4 .word 0x10050ae4 +1000b0bc: 1004d7e1 .word 0x1004d7e1 +1000b0c0: 10045498 .word 0x10045498 + +1000b0c4 <_find_ap_from_scan_buf>: +1000b0c4: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000b0c8: f1b1 0a00 subs.w sl, r1, #0 +1000b0cc: 4607 mov r7, r0 +1000b0ce: 4691 mov r9, r2 +1000b0d0: 469b mov fp, r3 +1000b0d2: dd2e ble.n 1000b132 <_find_ap_from_scan_buf+0x6e> +1000b0d4: 7805 ldrb r5, [r0, #0] +1000b0d6: b365 cbz r5, 1000b132 <_find_ap_from_scan_buf+0x6e> +1000b0d8: f04f 0800 mov.w r8, #0 +1000b0dc: 4644 mov r4, r8 +1000b0de: e004 b.n 1000b0ea <_find_ap_from_scan_buf+0x26> +1000b0e0: 45a2 cmp sl, r4 +1000b0e2: dd26 ble.n 1000b132 <_find_ap_from_scan_buf+0x6e> +1000b0e4: 5d3d ldrb r5, [r7, r4] +1000b0e6: 46a0 mov r8, r4 +1000b0e8: b31d cbz r5, 1000b132 <_find_ap_from_scan_buf+0x6e> +1000b0ea: 4648 mov r0, r9 +1000b0ec: f037 f850 bl 10042190 +1000b0f0: f1a5 060e sub.w r6, r5, #14 +1000b0f4: b2f6 uxtb r6, r6 +1000b0f6: 4286 cmp r6, r0 +1000b0f8: 442c add r4, r5 +1000b0fa: d1f1 bne.n 1000b0e0 <_find_ap_from_scan_buf+0x1c> +1000b0fc: f108 000e add.w r0, r8, #14 +1000b100: 4632 mov r2, r6 +1000b102: 4438 add r0, r7 +1000b104: 4649 mov r1, r9 +1000b106: f037 f825 bl 10042154 +1000b10a: 2800 cmp r0, #0 +1000b10c: d1e8 bne.n 1000b0e0 <_find_ap_from_scan_buf+0x1c> +1000b10e: 4447 add r7, r8 +1000b110: 4649 mov r1, r9 +1000b112: f10b 0004 add.w r0, fp, #4 +1000b116: f037 f835 bl 10042184 +1000b11a: 7b7b ldrb r3, [r7, #13] +1000b11c: f88b 3025 strb.w r3, [fp, #37] ; 0x25 +1000b120: 7afb ldrb r3, [r7, #11] +1000b122: b123 cbz r3, 1000b12e <_find_ap_from_scan_buf+0x6a> +1000b124: 2b01 cmp r3, #1 +1000b126: d002 beq.n 1000b12e <_find_ap_from_scan_buf+0x6a> +1000b128: 2b03 cmp r3, #3 +1000b12a: d102 bne.n 1000b132 <_find_ap_from_scan_buf+0x6e> +1000b12c: 4b02 ldr r3, [pc, #8] ; (1000b138 <_find_ap_from_scan_buf+0x74>) +1000b12e: f8cb 3028 str.w r3, [fp, #40] ; 0x28 +1000b132: 2000 movs r0, #0 +1000b134: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000b138: 00400004 .word 0x00400004 + +1000b13c : +1000b13c: b530 push {r4, r5, lr} +1000b13e: 2300 movs r3, #0 +1000b140: b08d sub sp, #52 ; 0x34 +1000b142: 9300 str r3, [sp, #0] +1000b144: 9301 str r3, [sp, #4] +1000b146: 9302 str r3, [sp, #8] +1000b148: 9303 str r3, [sp, #12] +1000b14a: 9304 str r3, [sp, #16] +1000b14c: 9305 str r3, [sp, #20] +1000b14e: 9306 str r3, [sp, #24] +1000b150: 9307 str r3, [sp, #28] +1000b152: 9308 str r3, [sp, #32] +1000b154: 9309 str r3, [sp, #36] ; 0x24 +1000b156: 930a str r3, [sp, #40] ; 0x28 +1000b158: 930b str r3, [sp, #44] ; 0x2c +1000b15a: 2800 cmp r0, #0 +1000b15c: d045 beq.n 1000b1ea +1000b15e: 4669 mov r1, sp +1000b160: f000 fecc bl 1000befc +1000b164: 3802 subs r0, #2 +1000b166: 2802 cmp r0, #2 +1000b168: d90b bls.n 1000b182 +1000b16a: 2301 movs r3, #1 +1000b16c: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b170: 4a2c ldr r2, [pc, #176] ; (1000b224 ) +1000b172: 482d ldr r0, [pc, #180] ; (1000b228 ) +1000b174: f036 ff58 bl 10042028 +1000b178: 482b ldr r0, [pc, #172] ; (1000b228 ) +1000b17a: f014 fb41 bl 1001f800 +1000b17e: b00d add sp, #52 ; 0x34 +1000b180: bd30 pop {r4, r5, pc} +1000b182: 9801 ldr r0, [sp, #4] +1000b184: 2800 cmp r0, #0 +1000b186: d044 beq.n 1000b212 +1000b188: f008 fad0 bl 1001372c +1000b18c: 4b27 ldr r3, [pc, #156] ; (1000b22c ) +1000b18e: 9a02 ldr r2, [sp, #8] +1000b190: b2c4 uxtb r4, r0 +1000b192: 0e05 lsrs r5, r0, #24 +1000b194: f3c0 2107 ubfx r1, r0, #8, #8 +1000b198: f3c0 4007 ubfx r0, r0, #16, #8 +1000b19c: 701c strb r4, [r3, #0] +1000b19e: 70dd strb r5, [r3, #3] +1000b1a0: 7059 strb r1, [r3, #1] +1000b1a2: 7098 strb r0, [r3, #2] +1000b1a4: b372 cbz r2, 1000b204 +1000b1a6: 4610 mov r0, r2 +1000b1a8: f008 fac0 bl 1001372c +1000b1ac: 4b20 ldr r3, [pc, #128] ; (1000b230 ) +1000b1ae: 0a04 lsrs r4, r0, #8 +1000b1b0: 0c01 lsrs r1, r0, #16 +1000b1b2: 0e02 lsrs r2, r0, #24 +1000b1b4: 705c strb r4, [r3, #1] +1000b1b6: 7018 strb r0, [r3, #0] +1000b1b8: 7099 strb r1, [r3, #2] +1000b1ba: 70da strb r2, [r3, #3] +1000b1bc: 9803 ldr r0, [sp, #12] +1000b1be: b350 cbz r0, 1000b216 +1000b1c0: f008 fab4 bl 1001372c +1000b1c4: 4b1b ldr r3, [pc, #108] ; (1000b234 ) +1000b1c6: 0a04 lsrs r4, r0, #8 +1000b1c8: 0c01 lsrs r1, r0, #16 +1000b1ca: 0e02 lsrs r2, r0, #24 +1000b1cc: 705c strb r4, [r3, #1] +1000b1ce: 7018 strb r0, [r3, #0] +1000b1d0: 7099 strb r1, [r3, #2] +1000b1d2: 70da strb r2, [r3, #3] +1000b1d4: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b1d8: 4a17 ldr r2, [pc, #92] ; (1000b238 ) +1000b1da: 4813 ldr r0, [pc, #76] ; (1000b228 ) +1000b1dc: f036 ff24 bl 10042028 +1000b1e0: 4811 ldr r0, [pc, #68] ; (1000b228 ) +1000b1e2: f014 fb0d bl 1001f800 +1000b1e6: b00d add sp, #52 ; 0x34 +1000b1e8: bd30 pop {r4, r5, pc} +1000b1ea: 4b14 ldr r3, [pc, #80] ; (1000b23c ) +1000b1ec: 681b ldr r3, [r3, #0] +1000b1ee: 059b lsls r3, r3, #22 +1000b1f0: d5bb bpl.n 1000b16a +1000b1f2: 4b13 ldr r3, [pc, #76] ; (1000b240 ) +1000b1f4: 781b ldrb r3, [r3, #0] +1000b1f6: 2b01 cmp r3, #1 +1000b1f8: d9b7 bls.n 1000b16a +1000b1fa: 4812 ldr r0, [pc, #72] ; (1000b244 ) +1000b1fc: f036 ff84 bl 10042108 +1000b200: 2301 movs r3, #1 +1000b202: e7b3 b.n 1000b16c +1000b204: 4b0a ldr r3, [pc, #40] ; (1000b230 ) +1000b206: 2201 movs r2, #1 +1000b208: 701c strb r4, [r3, #0] +1000b20a: 7059 strb r1, [r3, #1] +1000b20c: 7098 strb r0, [r3, #2] +1000b20e: 70da strb r2, [r3, #3] +1000b210: e7d4 b.n 1000b1bc +1000b212: 2302 movs r3, #2 +1000b214: e7aa b.n 1000b16c +1000b216: 4b07 ldr r3, [pc, #28] ; (1000b234 ) +1000b218: 22ff movs r2, #255 ; 0xff +1000b21a: 70d8 strb r0, [r3, #3] +1000b21c: 701a strb r2, [r3, #0] +1000b21e: 705a strb r2, [r3, #1] +1000b220: 709a strb r2, [r3, #2] +1000b222: e7d7 b.n 1000b1d4 +1000b224: 100454f4 .word 0x100454f4 +1000b228: 1005207c .word 0x1005207c +1000b22c: 1004d6d8 .word 0x1004d6d8 +1000b230: 1004d6d4 .word 0x1004d6d4 +1000b234: 1004d6dc .word 0x1004d6dc +1000b238: 100454e8 .word 0x100454e8 +1000b23c: 1004d7e8 .word 0x1004d7e8 +1000b240: 1004d7f8 .word 0x1004d7f8 +1000b244: 100454b8 .word 0x100454b8 + +1000b248 : +1000b248: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1000b24c: 2400 movs r4, #0 +1000b24e: b08f sub sp, #60 ; 0x3c +1000b250: 9402 str r4, [sp, #8] +1000b252: 9403 str r4, [sp, #12] +1000b254: 9404 str r4, [sp, #16] +1000b256: 9405 str r4, [sp, #20] +1000b258: 9406 str r4, [sp, #24] +1000b25a: 9407 str r4, [sp, #28] +1000b25c: 9408 str r4, [sp, #32] +1000b25e: 9409 str r4, [sp, #36] ; 0x24 +1000b260: 940a str r4, [sp, #40] ; 0x28 +1000b262: 940b str r4, [sp, #44] ; 0x2c +1000b264: 940c str r4, [sp, #48] ; 0x30 +1000b266: 940d str r4, [sp, #52] ; 0x34 +1000b268: b188 cbz r0, 1000b28e +1000b26a: a902 add r1, sp, #8 +1000b26c: f000 fe46 bl 1000befc +1000b270: 2804 cmp r0, #4 +1000b272: d019 beq.n 1000b2a8 +1000b274: 2301 movs r3, #1 +1000b276: 482d ldr r0, [pc, #180] ; (1000b32c ) +1000b278: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b27c: 4a2c ldr r2, [pc, #176] ; (1000b330 ) +1000b27e: f036 fed3 bl 10042028 +1000b282: 482a ldr r0, [pc, #168] ; (1000b32c ) +1000b284: f014 fabc bl 1001f800 +1000b288: b00f add sp, #60 ; 0x3c +1000b28a: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1000b28e: 4b29 ldr r3, [pc, #164] ; (1000b334 ) +1000b290: 681b ldr r3, [r3, #0] +1000b292: 059b lsls r3, r3, #22 +1000b294: d5ee bpl.n 1000b274 +1000b296: 4b28 ldr r3, [pc, #160] ; (1000b338 ) +1000b298: 781b ldrb r3, [r3, #0] +1000b29a: 2b01 cmp r3, #1 +1000b29c: d9ea bls.n 1000b274 +1000b29e: 4827 ldr r0, [pc, #156] ; (1000b33c ) +1000b2a0: f036 ff32 bl 10042108 +1000b2a4: 2301 movs r3, #1 +1000b2a6: e7e6 b.n 1000b276 +1000b2a8: 9803 ldr r0, [sp, #12] +1000b2aa: 2800 cmp r0, #0 +1000b2ac: d03c beq.n 1000b328 +1000b2ae: f008 fa3d bl 1001372c +1000b2b2: 9b04 ldr r3, [sp, #16] +1000b2b4: 9000 str r0, [sp, #0] +1000b2b6: 2b00 cmp r3, #0 +1000b2b8: d036 beq.n 1000b328 +1000b2ba: 4618 mov r0, r3 +1000b2bc: f008 fa36 bl 1001372c +1000b2c0: 4669 mov r1, sp +1000b2c2: 9001 str r0, [sp, #4] +1000b2c4: aa01 add r2, sp, #4 +1000b2c6: 2001 movs r0, #1 +1000b2c8: f00f fad4 bl 1001a874 +1000b2cc: 9805 ldr r0, [sp, #20] +1000b2ce: b358 cbz r0, 1000b328 +1000b2d0: f008 fa2c bl 1001372c +1000b2d4: 4e1a ldr r6, [pc, #104] ; (1000b340 ) +1000b2d6: 4b1b ldr r3, [pc, #108] ; (1000b344 ) +1000b2d8: 4d1b ldr r5, [pc, #108] ; (1000b348 ) +1000b2da: f3c0 4c07 ubfx ip, r0, #16, #8 +1000b2de: ea4f 6e10 mov.w lr, r0, lsr #24 +1000b2e2: fa5f f980 uxtb.w r9, r0 +1000b2e6: f3c0 2807 ubfx r8, r0, #8, #8 +1000b2ea: 27ff movs r7, #255 ; 0xff +1000b2ec: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b2f0: 4a16 ldr r2, [pc, #88] ; (1000b34c ) +1000b2f2: 480e ldr r0, [pc, #56] ; (1000b32c ) +1000b2f4: f886 9000 strb.w r9, [r6] +1000b2f8: f885 9000 strb.w r9, [r5] +1000b2fc: f886 8001 strb.w r8, [r6, #1] +1000b300: f885 8001 strb.w r8, [r5, #1] +1000b304: f886 c002 strb.w ip, [r6, #2] +1000b308: f885 c002 strb.w ip, [r5, #2] +1000b30c: f886 e003 strb.w lr, [r6, #3] +1000b310: f885 e003 strb.w lr, [r5, #3] +1000b314: 70dc strb r4, [r3, #3] +1000b316: 701f strb r7, [r3, #0] +1000b318: 705f strb r7, [r3, #1] +1000b31a: 709f strb r7, [r3, #2] +1000b31c: f036 fe84 bl 10042028 +1000b320: 4802 ldr r0, [pc, #8] ; (1000b32c ) +1000b322: f014 fa6d bl 1001f800 +1000b326: e7af b.n 1000b288 +1000b328: 2302 movs r3, #2 +1000b32a: e7a4 b.n 1000b276 +1000b32c: 1005207c .word 0x1005207c +1000b330: 10045558 .word 0x10045558 +1000b334: 1004d7e8 .word 0x1004d7e8 +1000b338: 1004d7f8 .word 0x1004d7f8 +1000b33c: 10045508 .word 0x10045508 +1000b340: 1004d7dc .word 0x1004d7dc +1000b344: 1004d6d0 .word 0x1004d6d0 +1000b348: 1004d6e0 .word 0x1004d6e0 +1000b34c: 1004554c .word 0x1004554c + +1000b350 : +1000b350: b510 push {r4, lr} +1000b352: 2300 movs r3, #0 +1000b354: b08c sub sp, #48 ; 0x30 +1000b356: 9300 str r3, [sp, #0] +1000b358: 9301 str r3, [sp, #4] +1000b35a: 9302 str r3, [sp, #8] +1000b35c: 9303 str r3, [sp, #12] +1000b35e: 9304 str r3, [sp, #16] +1000b360: 9305 str r3, [sp, #20] +1000b362: 9306 str r3, [sp, #24] +1000b364: 9307 str r3, [sp, #28] +1000b366: 9308 str r3, [sp, #32] +1000b368: 9309 str r3, [sp, #36] ; 0x24 +1000b36a: 930a str r3, [sp, #40] ; 0x28 +1000b36c: 930b str r3, [sp, #44] ; 0x2c +1000b36e: b188 cbz r0, 1000b394 +1000b370: 4669 mov r1, sp +1000b372: f000 fdc3 bl 1000befc +1000b376: 2802 cmp r0, #2 +1000b378: 4604 mov r4, r0 +1000b37a: d018 beq.n 1000b3ae +1000b37c: 2301 movs r3, #1 +1000b37e: 4816 ldr r0, [pc, #88] ; (1000b3d8 ) +1000b380: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b384: 4a15 ldr r2, [pc, #84] ; (1000b3dc ) +1000b386: f036 fe4f bl 10042028 +1000b38a: 4813 ldr r0, [pc, #76] ; (1000b3d8 ) +1000b38c: f014 fa38 bl 1001f800 +1000b390: b00c add sp, #48 ; 0x30 +1000b392: bd10 pop {r4, pc} +1000b394: 4b12 ldr r3, [pc, #72] ; (1000b3e0 ) +1000b396: 681b ldr r3, [r3, #0] +1000b398: 059b lsls r3, r3, #22 +1000b39a: d5ef bpl.n 1000b37c +1000b39c: 4b11 ldr r3, [pc, #68] ; (1000b3e4 ) +1000b39e: 781b ldrb r3, [r3, #0] +1000b3a0: 2b01 cmp r3, #1 +1000b3a2: d9eb bls.n 1000b37c +1000b3a4: 4810 ldr r0, [pc, #64] ; (1000b3e8 ) +1000b3a6: f036 feaf bl 10042108 +1000b3aa: 2301 movs r3, #1 +1000b3ac: e7e7 b.n 1000b37e +1000b3ae: 9801 ldr r0, [sp, #4] +1000b3b0: b140 cbz r0, 1000b3c4 +1000b3b2: f036 feed bl 10042190 +1000b3b6: 280c cmp r0, #12 +1000b3b8: d001 beq.n 1000b3be +1000b3ba: 4623 mov r3, r4 +1000b3bc: e7df b.n 1000b37e +1000b3be: 9801 ldr r0, [sp, #4] +1000b3c0: f001 fd60 bl 1000ce84 +1000b3c4: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b3c8: 4a08 ldr r2, [pc, #32] ; (1000b3ec ) +1000b3ca: 4803 ldr r0, [pc, #12] ; (1000b3d8 ) +1000b3cc: f036 fe2c bl 10042028 +1000b3d0: 4801 ldr r0, [pc, #4] ; (1000b3d8 ) +1000b3d2: f014 fa15 bl 1001f800 +1000b3d6: e7db b.n 1000b390 +1000b3d8: 1005207c .word 0x1005207c +1000b3dc: 10045598 .word 0x10045598 +1000b3e0: 1004d7e8 .word 0x1004d7e8 +1000b3e4: 1004d7f8 .word 0x1004d7f8 +1000b3e8: 1004556c .word 0x1004556c +1000b3ec: 1004558c .word 0x1004558c + +1000b3f0 : +1000b3f0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000b3f4: 6c03 ldr r3, [r0, #64] ; 0x40 +1000b3f6: b08a sub sp, #40 ; 0x28 +1000b3f8: 2b01 cmp r3, #1 +1000b3fa: 4604 mov r4, r0 +1000b3fc: d059 beq.n 1000b4b2 +1000b3fe: 4d42 ldr r5, [pc, #264] ; (1000b508 ) +1000b400: 7802 ldrb r2, [r0, #0] +1000b402: 682e ldr r6, [r5, #0] +1000b404: 4402 add r2, r0 +1000b406: 3601 adds r6, #1 +1000b408: 2100 movs r1, #0 +1000b40a: 4633 mov r3, r6 +1000b40c: 7051 strb r1, [r2, #1] +1000b40e: 483f ldr r0, [pc, #252] ; (1000b50c ) +1000b410: 4a3f ldr r2, [pc, #252] ; (1000b510 ) +1000b412: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b416: 602e str r6, [r5, #0] +1000b418: f036 fe06 bl 10042028 +1000b41c: 483b ldr r0, [pc, #236] ; (1000b50c ) +1000b41e: f014 f9ef bl 1001f800 +1000b422: 6b22 ldr r2, [r4, #48] ; 0x30 +1000b424: 1c63 adds r3, r4, #1 +1000b426: f8d4 c038 ldr.w ip, [r4, #56] ; 0x38 +1000b42a: b1ca cbz r2, 1000b460 +1000b42c: 2a01 cmp r2, #1 +1000b42e: d05c beq.n 1000b4ea +1000b430: 4938 ldr r1, [pc, #224] ; (1000b514 ) +1000b432: 428a cmp r2, r1 +1000b434: d056 beq.n 1000b4e4 +1000b436: 3102 adds r1, #2 +1000b438: 428a cmp r2, r1 +1000b43a: d059 beq.n 1000b4f0 +1000b43c: f501 1100 add.w r1, r1, #2097152 ; 0x200000 +1000b440: 428a cmp r2, r1 +1000b442: d058 beq.n 1000b4f6 +1000b444: 3902 subs r1, #2 +1000b446: 428a cmp r2, r1 +1000b448: d058 beq.n 1000b4fc +1000b44a: 3104 adds r1, #4 +1000b44c: 428a cmp r2, r1 +1000b44e: d058 beq.n 1000b502 +1000b450: 4831 ldr r0, [pc, #196] ; (1000b518 ) +1000b452: 4932 ldr r1, [pc, #200] ; (1000b51c ) +1000b454: f5b2 0fc0 cmp.w r2, #6291456 ; 0x600000 +1000b458: bf14 ite ne +1000b45a: 4680 movne r8, r0 +1000b45c: 4688 moveq r8, r1 +1000b45e: e001 b.n 1000b464 +1000b460: f8df 80c8 ldr.w r8, [pc, #200] ; 1000b52c +1000b464: f9b4 e028 ldrsh.w lr, [r4, #40] ; 0x28 +1000b468: f894 2022 ldrb.w r2, [r4, #34] ; 0x22 +1000b46c: f894 0026 ldrb.w r0, [r4, #38] ; 0x26 +1000b470: f894 1027 ldrb.w r1, [r4, #39] ; 0x27 +1000b474: f894 7023 ldrb.w r7, [r4, #35] ; 0x23 +1000b478: f894 6024 ldrb.w r6, [r4, #36] ; 0x24 +1000b47c: f894 5025 ldrb.w r5, [r4, #37] ; 0x25 +1000b480: f8cd c000 str.w ip, [sp] +1000b484: f8cd e008 str.w lr, [sp, #8] +1000b488: 9203 str r2, [sp, #12] +1000b48a: 9007 str r0, [sp, #28] +1000b48c: 9108 str r1, [sp, #32] +1000b48e: 4a24 ldr r2, [pc, #144] ; (1000b520 ) +1000b490: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b494: f8cd 8004 str.w r8, [sp, #4] +1000b498: 9704 str r7, [sp, #16] +1000b49a: 9605 str r6, [sp, #20] +1000b49c: 9506 str r5, [sp, #24] +1000b49e: 481b ldr r0, [pc, #108] ; (1000b50c ) +1000b4a0: f036 fdc2 bl 10042028 +1000b4a4: 4819 ldr r0, [pc, #100] ; (1000b50c ) +1000b4a6: f014 f9ab bl 1001f800 +1000b4aa: 2000 movs r0, #0 +1000b4ac: b00a add sp, #40 ; 0x28 +1000b4ae: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000b4b2: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b4b6: 4a1b ldr r2, [pc, #108] ; (1000b524 ) +1000b4b8: 4814 ldr r0, [pc, #80] ; (1000b50c ) +1000b4ba: f036 fdb5 bl 10042028 +1000b4be: 4813 ldr r0, [pc, #76] ; (1000b50c ) +1000b4c0: f014 f99e bl 1001f800 +1000b4c4: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b4c8: 4a17 ldr r2, [pc, #92] ; (1000b528 ) +1000b4ca: 4810 ldr r0, [pc, #64] ; (1000b50c ) +1000b4cc: f036 fdac bl 10042028 +1000b4d0: 480e ldr r0, [pc, #56] ; (1000b50c ) +1000b4d2: f014 f995 bl 1001f800 +1000b4d6: 4b0c ldr r3, [pc, #48] ; (1000b508 ) +1000b4d8: 2200 movs r2, #0 +1000b4da: 2000 movs r0, #0 +1000b4dc: 601a str r2, [r3, #0] +1000b4de: b00a add sp, #40 ; 0x28 +1000b4e0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000b4e4: f8df 8048 ldr.w r8, [pc, #72] ; 1000b530 +1000b4e8: e7bc b.n 1000b464 +1000b4ea: f8df 8048 ldr.w r8, [pc, #72] ; 1000b534 +1000b4ee: e7b9 b.n 1000b464 +1000b4f0: f8df 8044 ldr.w r8, [pc, #68] ; 1000b538 +1000b4f4: e7b6 b.n 1000b464 +1000b4f6: f8df 8044 ldr.w r8, [pc, #68] ; 1000b53c +1000b4fa: e7b3 b.n 1000b464 +1000b4fc: f8df 8040 ldr.w r8, [pc, #64] ; 1000b540 +1000b500: e7b0 b.n 1000b464 +1000b502: f8df 8040 ldr.w r8, [pc, #64] ; 1000b544 +1000b506: e7ad b.n 1000b464 +1000b508: 100500fc .word 0x100500fc +1000b50c: 1005207c .word 0x1005207c +1000b510: 100455f8 .word 0x100455f8 +1000b514: 00200002 .word 0x00200002 +1000b518: 100455b4 .word 0x100455b4 +1000b51c: 100455e8 .word 0x100455e8 +1000b520: 10045604 .word 0x10045604 +1000b524: 10045630 .word 0x10045630 +1000b528: 100493c8 .word 0x100493c8 +1000b52c: 100455ac .word 0x100455ac +1000b530: 100455bc .word 0x100455bc +1000b534: 10046488 .word 0x10046488 +1000b538: 100455c8 .word 0x100455c8 +1000b53c: 100455ec .word 0x100455ec +1000b540: 100455d0 .word 0x100455d0 +1000b544: 100455dc .word 0x100455dc + +1000b548 : +1000b548: b5f0 push {r4, r5, r6, r7, lr} +1000b54a: 2400 movs r4, #0 +1000b54c: b0b1 sub sp, #196 ; 0xc4 +1000b54e: 4605 mov r5, r0 +1000b550: 9408 str r4, [sp, #32] +1000b552: 9409 str r4, [sp, #36] ; 0x24 +1000b554: 940a str r4, [sp, #40] ; 0x28 +1000b556: 940b str r4, [sp, #44] ; 0x2c +1000b558: 940c str r4, [sp, #48] ; 0x30 +1000b55a: 940d str r4, [sp, #52] ; 0x34 +1000b55c: 940e str r4, [sp, #56] ; 0x38 +1000b55e: 940f str r4, [sp, #60] ; 0x3c +1000b560: 9410 str r4, [sp, #64] ; 0x40 +1000b562: 9411 str r4, [sp, #68] ; 0x44 +1000b564: 9412 str r4, [sp, #72] ; 0x48 +1000b566: 9413 str r4, [sp, #76] ; 0x4c +1000b568: f010 fa32 bl 1001b9d0 +1000b56c: b1ed cbz r5, 1000b5aa +1000b56e: 4628 mov r0, r5 +1000b570: a908 add r1, sp, #32 +1000b572: f000 fcc3 bl 1000befc +1000b576: 3802 subs r0, #2 +1000b578: 2803 cmp r0, #3 +1000b57a: d90e bls.n 1000b59a +1000b57c: 2401 movs r4, #1 +1000b57e: f7ff f96f bl 1000a860 +1000b582: 4623 mov r3, r4 +1000b584: 4884 ldr r0, [pc, #528] ; (1000b798 ) +1000b586: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b58a: 4a84 ldr r2, [pc, #528] ; (1000b79c ) +1000b58c: f036 fd4c bl 10042028 +1000b590: 4881 ldr r0, [pc, #516] ; (1000b798 ) +1000b592: f014 f935 bl 1001f800 +1000b596: b031 add sp, #196 ; 0xc4 +1000b598: bdf0 pop {r4, r5, r6, r7, pc} +1000b59a: 4b81 ldr r3, [pc, #516] ; (1000b7a0 ) +1000b59c: 681b ldr r3, [r3, #0] +1000b59e: f023 0302 bic.w r3, r3, #2 +1000b5a2: 2b01 cmp r3, #1 +1000b5a4: d00e beq.n 1000b5c4 +1000b5a6: 2405 movs r4, #5 +1000b5a8: e7e9 b.n 1000b57e +1000b5aa: 4b7e ldr r3, [pc, #504] ; (1000b7a4 ) +1000b5ac: 681b ldr r3, [r3, #0] +1000b5ae: 0599 lsls r1, r3, #22 +1000b5b0: d5e4 bpl.n 1000b57c +1000b5b2: 4b7d ldr r3, [pc, #500] ; (1000b7a8 ) +1000b5b4: 781b ldrb r3, [r3, #0] +1000b5b6: 2b01 cmp r3, #1 +1000b5b8: d9e0 bls.n 1000b57c +1000b5ba: 487c ldr r0, [pc, #496] ; (1000b7ac ) +1000b5bc: f036 fda4 bl 10042108 +1000b5c0: 2401 movs r4, #1 +1000b5c2: e7dc b.n 1000b57e +1000b5c4: 9909 ldr r1, [sp, #36] ; 0x24 +1000b5c6: 2900 cmp r1, #0 +1000b5c8: d07b beq.n 1000b6c2 +1000b5ca: 4d79 ldr r5, [pc, #484] ; (1000b7b0 ) +1000b5cc: 1c68 adds r0, r5, #1 +1000b5ce: f036 fdd9 bl 10042184 +1000b5d2: 9809 ldr r0, [sp, #36] ; 0x24 +1000b5d4: f036 fddc bl 10042190 +1000b5d8: 9b0a ldr r3, [sp, #40] ; 0x28 +1000b5da: 7028 strb r0, [r5, #0] +1000b5dc: 62ac str r4, [r5, #40] ; 0x28 +1000b5de: b1a3 cbz r3, 1000b60a +1000b5e0: 4618 mov r0, r3 +1000b5e2: f036 fdd5 bl 10042190 +1000b5e6: 2840 cmp r0, #64 ; 0x40 +1000b5e8: dc6b bgt.n 1000b6c2 +1000b5ea: 2807 cmp r0, #7 +1000b5ec: dc01 bgt.n 1000b5f2 +1000b5ee: 2805 cmp r0, #5 +1000b5f0: d167 bne.n 1000b6c2 +1000b5f2: 4c70 ldr r4, [pc, #448] ; (1000b7b4 ) +1000b5f4: 990a ldr r1, [sp, #40] ; 0x28 +1000b5f6: 4620 mov r0, r4 +1000b5f8: f036 fdc4 bl 10042184 +1000b5fc: 980a ldr r0, [sp, #40] ; 0x28 +1000b5fe: 62ec str r4, [r5, #44] ; 0x2c +1000b600: f036 fdc6 bl 10042190 +1000b604: 4b6c ldr r3, [pc, #432] ; (1000b7b8 ) +1000b606: 6328 str r0, [r5, #48] ; 0x30 +1000b608: 62ab str r3, [r5, #40] ; 0x28 +1000b60a: 980b ldr r0, [sp, #44] ; 0x2c +1000b60c: b168 cbz r0, 1000b62a +1000b60e: f036 fdbf bl 10042190 +1000b612: 2801 cmp r0, #1 +1000b614: 4604 mov r4, r0 +1000b616: d154 bne.n 1000b6c2 +1000b618: 980b ldr r0, [sp, #44] ; 0x2c +1000b61a: 7803 ldrb r3, [r0, #0] +1000b61c: 3b30 subs r3, #48 ; 0x30 +1000b61e: 2b03 cmp r3, #3 +1000b620: d84f bhi.n 1000b6c2 +1000b622: 4b66 ldr r3, [pc, #408] ; (1000b7bc ) +1000b624: 4798 blx r3 +1000b626: 62ac str r4, [r5, #40] ; 0x28 +1000b628: 6368 str r0, [r5, #52] ; 0x34 +1000b62a: 980c ldr r0, [sp, #48] ; 0x30 +1000b62c: 2800 cmp r0, #0 +1000b62e: f000 8082 beq.w 1000b736 +1000b632: f036 fdad bl 10042190 +1000b636: 280c cmp r0, #12 +1000b638: d143 bne.n 1000b6c2 +1000b63a: 4e61 ldr r6, [pc, #388] ; (1000b7c0 ) +1000b63c: 2400 movs r4, #0 +1000b63e: 9b0c ldr r3, [sp, #48] ; 0x30 +1000b640: 191a adds r2, r3, r4 +1000b642: 5718 ldrsb r0, [r3, r4] +1000b644: f992 1001 ldrsb.w r1, [r2, #1] +1000b648: f038 f90a bl 10043860 <__key_2char2num_veneer> +1000b64c: 3402 adds r4, #2 +1000b64e: 2c0c cmp r4, #12 +1000b650: f806 0f01 strb.w r0, [r6, #1]! +1000b654: d1f3 bne.n 1000b63e +1000b656: 2701 movs r7, #1 +1000b658: 485a ldr r0, [pc, #360] ; (1000b7c4 ) +1000b65a: a907 add r1, sp, #28 +1000b65c: f003 fafe bl 1000ec5c +1000b660: 9c07 ldr r4, [sp, #28] +1000b662: 2c03 cmp r4, #3 +1000b664: d077 beq.n 1000b756 +1000b666: 6aab ldr r3, [r5, #40] ; 0x28 +1000b668: 1c5a adds r2, r3, #1 +1000b66a: d032 beq.n 1000b6d2 +1000b66c: 4a52 ldr r2, [pc, #328] ; (1000b7b8 ) +1000b66e: 4293 cmp r3, r2 +1000b670: d02f beq.n 1000b6d2 +1000b672: f89d 301b ldrb.w r3, [sp, #27] +1000b676: 3b01 subs r3, #1 +1000b678: 2201 movs r2, #1 +1000b67a: 2b0c cmp r3, #12 +1000b67c: f88d 2050 strb.w r2, [sp, #80] ; 0x50 +1000b680: d921 bls.n 1000b6c6 +1000b682: 2f00 cmp r7, #0 +1000b684: d05b beq.n 1000b73e +1000b686: 6b69 ldr r1, [r5, #52] ; 0x34 +1000b688: 782f ldrb r7, [r5, #0] +1000b68a: 6b2c ldr r4, [r5, #48] ; 0x30 +1000b68c: 484e ldr r0, [pc, #312] ; (1000b7c8 ) +1000b68e: 6aaa ldr r2, [r5, #40] ; 0x28 +1000b690: 6aeb ldr r3, [r5, #44] ; 0x2c +1000b692: 2606 movs r6, #6 +1000b694: 2500 movs r5, #0 +1000b696: 9103 str r1, [sp, #12] +1000b698: 9701 str r7, [sp, #4] +1000b69a: 9402 str r4, [sp, #8] +1000b69c: f1a0 0121 sub.w r1, r0, #33 ; 0x21 +1000b6a0: 9600 str r6, [sp, #0] +1000b6a2: 9504 str r5, [sp, #16] +1000b6a4: f001 fa36 bl 1000cb14 +1000b6a8: 2800 cmp r0, #0 +1000b6aa: d146 bne.n 1000b73a +1000b6ac: 4b47 ldr r3, [pc, #284] ; (1000b7cc ) +1000b6ae: 781b ldrb r3, [r3, #0] +1000b6b0: 2b02 cmp r3, #2 +1000b6b2: d05e beq.n 1000b772 +1000b6b4: 4601 mov r1, r0 +1000b6b6: f003 fe7b bl 1000f3b0 +1000b6ba: 2802 cmp r0, #2 +1000b6bc: d05f beq.n 1000b77e +1000b6be: 2407 movs r4, #7 +1000b6c0: e75d b.n 1000b57e +1000b6c2: 2402 movs r4, #2 +1000b6c4: e75b b.n 1000b57e +1000b6c6: f10d 001b add.w r0, sp, #27 +1000b6ca: a914 add r1, sp, #80 ; 0x50 +1000b6cc: f001 ff0a bl 1000d4e4 +1000b6d0: e7d7 b.n 1000b682 +1000b6d2: 2603 movs r6, #3 +1000b6d4: 4c36 ldr r4, [pc, #216] ; (1000b7b0 ) +1000b6d6: 2100 movs r1, #0 +1000b6d8: 2270 movs r2, #112 ; 0x70 +1000b6da: a814 add r0, sp, #80 ; 0x50 +1000b6dc: f036 fd46 bl 1004216c +1000b6e0: 1c60 adds r0, r4, #1 +1000b6e2: f036 fd55 bl 10042190 +1000b6e6: a914 add r1, sp, #80 ; 0x50 +1000b6e8: 9000 str r0, [sp, #0] +1000b6ea: 1c63 adds r3, r4, #1 +1000b6ec: 4838 ldr r0, [pc, #224] ; (1000b7d0 ) +1000b6ee: f44f 727a mov.w r2, #1000 ; 0x3e8 +1000b6f2: f001 fdc1 bl 1000d278 +1000b6f6: 1c61 adds r1, r4, #1 +1000b6f8: b998 cbnz r0, 1000b722 +1000b6fa: a815 add r0, sp, #84 ; 0x54 +1000b6fc: f036 fd3c bl 10042178 +1000b700: b990 cbnz r0, 1000b728 +1000b702: 9a1e ldr r2, [sp, #120] ; 0x78 +1000b704: f89d 3075 ldrb.w r3, [sp, #117] ; 0x75 +1000b708: f422 4100 bic.w r1, r2, #32768 ; 0x8000 +1000b70c: 2901 cmp r1, #1 +1000b70e: 62a2 str r2, [r4, #40] ; 0x28 +1000b710: f88d 301b strb.w r3, [sp, #27] +1000b714: d1af bne.n 1000b676 +1000b716: 6b62 ldr r2, [r4, #52] ; 0x34 +1000b718: 2a04 cmp r2, #4 +1000b71a: bf28 it cs +1000b71c: 2200 movcs r2, #0 +1000b71e: 636a str r2, [r5, #52] ; 0x34 +1000b720: e7a9 b.n 1000b676 +1000b722: 482c ldr r0, [pc, #176] ; (1000b7d4 ) +1000b724: f036 fcf0 bl 10042108 +1000b728: 3e01 subs r6, #1 +1000b72a: d1d3 bne.n 1000b6d4 +1000b72c: 482a ldr r0, [pc, #168] ; (1000b7d8 ) +1000b72e: f036 fceb bl 10042108 +1000b732: 2406 movs r4, #6 +1000b734: e723 b.n 1000b57e +1000b736: 4607 mov r7, r0 +1000b738: e78e b.n 1000b658 +1000b73a: 2404 movs r4, #4 +1000b73c: e71f b.n 1000b57e +1000b73e: 6b68 ldr r0, [r5, #52] ; 0x34 +1000b740: 6b2c ldr r4, [r5, #48] ; 0x30 +1000b742: 6aa9 ldr r1, [r5, #40] ; 0x28 +1000b744: 6aea ldr r2, [r5, #44] ; 0x2c +1000b746: 782b ldrb r3, [r5, #0] +1000b748: 9001 str r0, [sp, #4] +1000b74a: 9702 str r7, [sp, #8] +1000b74c: 9400 str r4, [sp, #0] +1000b74e: 4823 ldr r0, [pc, #140] ; (1000b7dc ) +1000b750: f000 ffa4 bl 1000c69c +1000b754: e7a8 b.n 1000b6a8 +1000b756: f00f f927 bl 1001a9a8 +1000b75a: f001 fc31 bl 1000cfc0 +1000b75e: 2014 movs r0, #20 +1000b760: f010 fa62 bl 1001bc28 +1000b764: 2001 movs r0, #1 +1000b766: f001 fbd1 bl 1000cf0c +1000b76a: 2800 cmp r0, #0 +1000b76c: f6bf af7b bge.w 1000b666 +1000b770: e705 b.n 1000b57e +1000b772: 481b ldr r0, [pc, #108] ; (1000b7e0 ) +1000b774: f003 fefe bl 1000f574 +1000b778: 4819 ldr r0, [pc, #100] ; (1000b7e0 ) +1000b77a: f00f f895 bl 1001a8a8 +1000b77e: f7ff f86f bl 1000a860 +1000b782: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000b786: 4a17 ldr r2, [pc, #92] ; (1000b7e4 ) +1000b788: 4803 ldr r0, [pc, #12] ; (1000b798 ) +1000b78a: f036 fc4d bl 10042028 +1000b78e: 4802 ldr r0, [pc, #8] ; (1000b798 ) +1000b790: f014 f836 bl 1001f800 +1000b794: e6ff b.n 1000b596 +1000b796: bf00 nop +1000b798: 1005207c .word 0x1005207c +1000b79c: 100456c0 .word 0x100456c0 +1000b7a0: 1004d7e4 .word 0x1004d7e4 +1000b7a4: 1004d7e8 .word 0x1004d7e8 +1000b7a8: 1004d7f8 .word 0x1004d7f8 +1000b7ac: 1004563c .word 0x1004563c +1000b7b0: 1004d7a4 .word 0x1004d7a4 +1000b7b4: 10050084 .word 0x10050084 +1000b7b8: 00400004 .word 0x00400004 +1000b7bc: 0000f769 .word 0x0000f769 +1000b7c0: 1004d7c5 .word 0x1004d7c5 +1000b7c4: 100450ac .word 0x100450ac +1000b7c8: 1004d7c6 .word 0x1004d7c6 +1000b7cc: 1004d7e0 .word 0x1004d7e0 +1000b7d0: 1000b0c5 .word 0x1000b0c5 +1000b7d4: 10045674 .word 0x10045674 +1000b7d8: 10045688 .word 0x10045688 +1000b7dc: 1004d7a5 .word 0x1004d7a5 +1000b7e0: 10050ae4 .word 0x10050ae4 +1000b7e4: 100456b4 .word 0x100456b4 + +1000b7e8 : +1000b7e8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000b7ec: 4606 mov r6, r0 +1000b7ee: b0a8 sub sp, #160 ; 0xa0 +1000b7f0: 2500 movs r5, #0 +1000b7f2: f44f 708c mov.w r0, #280 ; 0x118 +1000b7f6: 460f mov r7, r1 +1000b7f8: 9500 str r5, [sp, #0] +1000b7fa: f00f f9c3 bl 1001ab84 +1000b7fe: 4604 mov r4, r0 +1000b800: b360 cbz r0, 1000b85c +1000b802: b377 cbz r7, 1000b862 +1000b804: 4629 mov r1, r5 +1000b806: f44f 728c mov.w r2, #280 ; 0x118 +1000b80a: f036 fcaf bl 1004216c +1000b80e: f104 0804 add.w r8, r4, #4 +1000b812: 4629 mov r1, r5 +1000b814: 2002 movs r0, #2 +1000b816: 4622 mov r2, r4 +1000b818: f44f 738c mov.w r3, #280 ; 0x118 +1000b81c: f013 fed8 bl 1001f5d0 +1000b820: 4640 mov r0, r8 +1000b822: 4631 mov r1, r6 +1000b824: 2270 movs r2, #112 ; 0x70 +1000b826: f036 fc95 bl 10042154 +1000b82a: 2800 cmp r0, #0 +1000b82c: d17c bne.n 1000b928 +1000b82e: 4680 mov r8, r0 +1000b830: 6833 ldr r3, [r6, #0] +1000b832: f023 0302 bic.w r3, r3, #2 +1000b836: 2b01 cmp r3, #1 +1000b838: d020 beq.n 1000b87c +1000b83a: f1b8 0f00 cmp.w r8, #0 +1000b83e: d102 bne.n 1000b846 +1000b840: 6823 ldr r3, [r4, #0] +1000b842: 42bb cmp r3, r7 +1000b844: d014 beq.n 1000b870 +1000b846: 2002 movs r0, #2 +1000b848: 6027 str r7, [r4, #0] +1000b84a: 2101 movs r1, #1 +1000b84c: 4622 mov r2, r4 +1000b84e: f44f 738c mov.w r3, #280 ; 0x118 +1000b852: f013 febd bl 1001f5d0 +1000b856: 4620 mov r0, r4 +1000b858: f00f f924 bl 1001aaa4 +1000b85c: b028 add sp, #160 ; 0xa0 +1000b85e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000b862: 2002 movs r0, #2 +1000b864: 4601 mov r1, r0 +1000b866: 4622 mov r2, r4 +1000b868: f44f 738c mov.w r3, #280 ; 0x118 +1000b86c: f013 feb0 bl 1001f5d0 +1000b870: 4620 mov r0, r4 +1000b872: f00f f917 bl 1001aaa4 +1000b876: b028 add sp, #160 ; 0xa0 +1000b878: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000b87c: 2100 movs r1, #0 +1000b87e: 229c movs r2, #156 ; 0x9c +1000b880: a801 add r0, sp, #4 +1000b882: f036 fc73 bl 1004216c +1000b886: f896 3025 ldrb.w r3, [r6, #37] ; 0x25 +1000b88a: 2100 movs r1, #0 +1000b88c: 2224 movs r2, #36 ; 0x24 +1000b88e: 1d35 adds r5, r6, #4 +1000b890: 4851 ldr r0, [pc, #324] ; (1000b9d8 ) +1000b892: 9300 str r3, [sp, #0] +1000b894: f036 fc6a bl 1004216c +1000b898: 4628 mov r0, r5 +1000b89a: f036 fc79 bl 10042190 +1000b89e: 4629 mov r1, r5 +1000b8a0: 4602 mov r2, r0 +1000b8a2: 484d ldr r0, [pc, #308] ; (1000b9d8 ) +1000b8a4: f036 fc80 bl 100421a8 +1000b8a8: 6ab5 ldr r5, [r6, #40] ; 0x28 +1000b8aa: 2d01 cmp r5, #1 +1000b8ac: d078 beq.n 1000b9a0 +1000b8ae: dd43 ble.n 1000b938 +1000b8b0: 4b4a ldr r3, [pc, #296] ; (1000b9dc ) +1000b8b2: 429d cmp r5, r3 +1000b8b4: d002 beq.n 1000b8bc +1000b8b6: 4b4a ldr r3, [pc, #296] ; (1000b9e0 ) +1000b8b8: 429d cmp r5, r3 +1000b8ba: d100 bne.n 1000b8be +1000b8bc: 9526 str r5, [sp, #152] ; 0x98 +1000b8be: 4946 ldr r1, [pc, #280] ; (1000b9d8 ) +1000b8c0: 2224 movs r2, #36 ; 0x24 +1000b8c2: a801 add r0, sp, #4 +1000b8c4: f036 fc4c bl 10042160 +1000b8c8: 4846 ldr r0, [pc, #280] ; (1000b9e4 ) +1000b8ca: f036 fc61 bl 10042190 +1000b8ce: 2840 cmp r0, #64 ; 0x40 +1000b8d0: bf0c ite eq +1000b8d2: 4944 ldreq r1, [pc, #272] ; (1000b9e4 ) +1000b8d4: 4944 ldrne r1, [pc, #272] ; (1000b9e8 ) +1000b8d6: 2241 movs r2, #65 ; 0x41 +1000b8d8: a80a add r0, sp, #40 ; 0x28 +1000b8da: f036 fc41 bl 10042160 +1000b8de: 4943 ldr r1, [pc, #268] ; (1000b9ec ) +1000b8e0: 2228 movs r2, #40 ; 0x28 +1000b8e2: f10d 0069 add.w r0, sp, #105 ; 0x69 +1000b8e6: f036 fc3b bl 10042160 +1000b8ea: 2204 movs r2, #4 +1000b8ec: a825 add r0, sp, #148 ; 0x94 +1000b8ee: 4669 mov r1, sp +1000b8f0: f036 fc36 bl 10042160 +1000b8f4: 6f62 ldr r2, [r4, #116] ; 0x74 +1000b8f6: 2a01 cmp r2, #1 +1000b8f8: d92c bls.n 1000b954 +1000b8fa: 2200 movs r2, #0 +1000b8fc: f04f 33ff mov.w r3, #4294967295 +1000b900: 6762 str r2, [r4, #116] ; 0x74 +1000b902: 67a3 str r3, [r4, #120] ; 0x78 +1000b904: 9727 str r7, [sp, #156] ; 0x9c +1000b906: 1c5a adds r2, r3, #1 +1000b908: 2a00 cmp r2, #0 +1000b90a: dd61 ble.n 1000b9d0 +1000b90c: 229c movs r2, #156 ; 0x9c +1000b90e: fb02 4003 mla r0, r2, r3, r4 +1000b912: a901 add r1, sp, #4 +1000b914: 307c adds r0, #124 ; 0x7c +1000b916: f036 fc23 bl 10042160 +1000b91a: 6f63 ldr r3, [r4, #116] ; 0x74 +1000b91c: 3301 adds r3, #1 +1000b91e: 2b01 cmp r3, #1 +1000b920: bfc8 it gt +1000b922: 2301 movgt r3, #1 +1000b924: 6763 str r3, [r4, #116] ; 0x74 +1000b926: e78e b.n 1000b846 +1000b928: 4640 mov r0, r8 +1000b92a: 4631 mov r1, r6 +1000b92c: 2270 movs r2, #112 ; 0x70 +1000b92e: f036 fc17 bl 10042160 +1000b932: f04f 0801 mov.w r8, #1 +1000b936: e77b b.n 1000b830 +1000b938: 2d00 cmp r5, #0 +1000b93a: d1c0 bne.n 1000b8be +1000b93c: 4629 mov r1, r5 +1000b93e: 2241 movs r2, #65 ; 0x41 +1000b940: 4829 ldr r0, [pc, #164] ; (1000b9e8 ) +1000b942: f036 fc13 bl 1004216c +1000b946: 4829 ldr r0, [pc, #164] ; (1000b9ec ) +1000b948: 4629 mov r1, r5 +1000b94a: 2228 movs r2, #40 ; 0x28 +1000b94c: f036 fc0e bl 1004216c +1000b950: 9526 str r5, [sp, #152] ; 0x98 +1000b952: e7b4 b.n 1000b8be +1000b954: 6fa3 ldr r3, [r4, #120] ; 0x78 +1000b956: 2b01 cmp r3, #1 +1000b958: d8cf bhi.n 1000b8fa +1000b95a: 9727 str r7, [sp, #156] ; 0x9c +1000b95c: 2a00 cmp r2, #0 +1000b95e: d0d2 beq.n 1000b906 +1000b960: f104 057c add.w r5, r4, #124 ; 0x7c +1000b964: 2600 movs r6, #0 +1000b966: e002 b.n 1000b96e +1000b968: 6f63 ldr r3, [r4, #116] ; 0x74 +1000b96a: 42b3 cmp r3, r6 +1000b96c: d916 bls.n 1000b99c +1000b96e: 4629 mov r1, r5 +1000b970: a801 add r0, sp, #4 +1000b972: 229c movs r2, #156 ; 0x9c +1000b974: f036 fbee bl 10042154 +1000b978: 3601 adds r6, #1 +1000b97a: 359c adds r5, #156 ; 0x9c +1000b97c: 2800 cmp r0, #0 +1000b97e: d1f3 bne.n 1000b968 +1000b980: 4b1b ldr r3, [pc, #108] ; (1000b9f0 ) +1000b982: 681b ldr r3, [r3, #0] +1000b984: 059b lsls r3, r3, #22 +1000b986: f57f af58 bpl.w 1000b83a +1000b98a: 4b1a ldr r3, [pc, #104] ; (1000b9f4 ) +1000b98c: 781b ldrb r3, [r3, #0] +1000b98e: 2b00 cmp r3, #0 +1000b990: f43f af53 beq.w 1000b83a +1000b994: 4818 ldr r0, [pc, #96] ; (1000b9f8 ) +1000b996: f036 fbb7 bl 10042108 +1000b99a: e74e b.n 1000b83a +1000b99c: 6fa3 ldr r3, [r4, #120] ; 0x78 +1000b99e: e7b2 b.n 1000b906 +1000b9a0: f896 206d ldrb.w r2, [r6, #109] ; 0x6d +1000b9a4: 9b00 ldr r3, [sp, #0] +1000b9a6: 2100 movs r1, #0 +1000b9a8: ea43 7302 orr.w r3, r3, r2, lsl #28 +1000b9ac: 480e ldr r0, [pc, #56] ; (1000b9e8 ) +1000b9ae: 2241 movs r2, #65 ; 0x41 +1000b9b0: 9300 str r3, [sp, #0] +1000b9b2: f036 fbdb bl 1004216c +1000b9b6: 2100 movs r1, #0 +1000b9b8: 2228 movs r2, #40 ; 0x28 +1000b9ba: 480c ldr r0, [pc, #48] ; (1000b9ec ) +1000b9bc: f036 fbd6 bl 1004216c +1000b9c0: f106 012c add.w r1, r6, #44 ; 0x2c +1000b9c4: 4808 ldr r0, [pc, #32] ; (1000b9e8 ) +1000b9c6: 2241 movs r2, #65 ; 0x41 +1000b9c8: f036 fbca bl 10042160 +1000b9cc: 9526 str r5, [sp, #152] ; 0x98 +1000b9ce: e776 b.n 1000b8be +1000b9d0: 67a2 str r2, [r4, #120] ; 0x78 +1000b9d2: 4613 mov r3, r2 +1000b9d4: e79a b.n 1000b90c +1000b9d6: bf00 nop +1000b9d8: 100530f4 .word 0x100530f4 +1000b9dc: 00200002 .word 0x00200002 +1000b9e0: 00400004 .word 0x00400004 +1000b9e4: 100531be .word 0x100531be +1000b9e8: 1005313c .word 0x1005313c +1000b9ec: 100531ff .word 0x100531ff +1000b9f0: 1004d7e8 .word 0x1004d7e8 +1000b9f4: 1004d7f8 .word 0x1004d7f8 +1000b9f8: 10044a8c .word 0x10044a8c + +1000b9fc : +1000b9fc: b530 push {r4, r5, lr} +1000b9fe: 2300 movs r3, #0 +1000ba00: b0a9 sub sp, #164 ; 0xa4 +1000ba02: 9300 str r3, [sp, #0] +1000ba04: 9301 str r3, [sp, #4] +1000ba06: 9302 str r3, [sp, #8] +1000ba08: 9303 str r3, [sp, #12] +1000ba0a: 9304 str r3, [sp, #16] +1000ba0c: 9305 str r3, [sp, #20] +1000ba0e: 9306 str r3, [sp, #24] +1000ba10: 9307 str r3, [sp, #28] +1000ba12: 9308 str r3, [sp, #32] +1000ba14: 9309 str r3, [sp, #36] ; 0x24 +1000ba16: 930a str r3, [sp, #40] ; 0x28 +1000ba18: 930b str r3, [sp, #44] ; 0x2c +1000ba1a: b188 cbz r0, 1000ba40 +1000ba1c: 4669 mov r1, sp +1000ba1e: f000 fa6d bl 1000befc +1000ba22: 2802 cmp r0, #2 +1000ba24: 4604 mov r4, r0 +1000ba26: d018 beq.n 1000ba5a +1000ba28: 2301 movs r3, #1 +1000ba2a: 4823 ldr r0, [pc, #140] ; (1000bab8 ) +1000ba2c: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000ba30: 4a22 ldr r2, [pc, #136] ; (1000babc ) +1000ba32: f036 faf9 bl 10042028 +1000ba36: 4820 ldr r0, [pc, #128] ; (1000bab8 ) +1000ba38: f013 fee2 bl 1001f800 +1000ba3c: b029 add sp, #164 ; 0xa4 +1000ba3e: bd30 pop {r4, r5, pc} +1000ba40: 4b1f ldr r3, [pc, #124] ; (1000bac0 ) +1000ba42: 681b ldr r3, [r3, #0] +1000ba44: 059a lsls r2, r3, #22 +1000ba46: d5ef bpl.n 1000ba28 +1000ba48: 4b1e ldr r3, [pc, #120] ; (1000bac4 ) +1000ba4a: 781b ldrb r3, [r3, #0] +1000ba4c: 2b01 cmp r3, #1 +1000ba4e: d9eb bls.n 1000ba28 +1000ba50: 481d ldr r0, [pc, #116] ; (1000bac8 ) +1000ba52: f036 fb59 bl 10042108 +1000ba56: 2301 movs r3, #1 +1000ba58: e7e7 b.n 1000ba2a +1000ba5a: 9801 ldr r0, [sp, #4] +1000ba5c: b160 cbz r0, 1000ba78 +1000ba5e: 4b1b ldr r3, [pc, #108] ; (1000bacc ) +1000ba60: 4798 blx r3 +1000ba62: 2801 cmp r0, #1 +1000ba64: 4605 mov r5, r0 +1000ba66: d901 bls.n 1000ba6c +1000ba68: 4623 mov r3, r4 +1000ba6a: e7de b.n 1000ba2a +1000ba6c: ac0c add r4, sp, #48 ; 0x30 +1000ba6e: d00d beq.n 1000ba8c +1000ba70: 4620 mov r0, r4 +1000ba72: 4629 mov r1, r5 +1000ba74: f7ff feb8 bl 1000b7e8 +1000ba78: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000ba7c: 4a14 ldr r2, [pc, #80] ; (1000bad0 ) +1000ba7e: 480e ldr r0, [pc, #56] ; (1000bab8 ) +1000ba80: f036 fad2 bl 10042028 +1000ba84: 480c ldr r0, [pc, #48] ; (1000bab8 ) +1000ba86: f013 febb bl 1001f800 +1000ba8a: e7d7 b.n 1000ba3c +1000ba8c: 4621 mov r1, r4 +1000ba8e: 4811 ldr r0, [pc, #68] ; (1000bad4 ) +1000ba90: f001 fd3a bl 1000d508 +1000ba94: 2800 cmp r0, #0 +1000ba96: d0eb beq.n 1000ba70 +1000ba98: 4b09 ldr r3, [pc, #36] ; (1000bac0 ) +1000ba9a: 681b ldr r3, [r3, #0] +1000ba9c: 059b lsls r3, r3, #22 +1000ba9e: d508 bpl.n 1000bab2 +1000baa0: 4b08 ldr r3, [pc, #32] ; (1000bac4 ) +1000baa2: 781b ldrb r3, [r3, #0] +1000baa4: 2b01 cmp r3, #1 +1000baa6: d904 bls.n 1000bab2 +1000baa8: 480b ldr r0, [pc, #44] ; (1000bad8 ) +1000baaa: f036 fb2d bl 10042108 +1000baae: 2303 movs r3, #3 +1000bab0: e7bb b.n 1000ba2a +1000bab2: 2303 movs r3, #3 +1000bab4: e7b9 b.n 1000ba2a +1000bab6: bf00 nop +1000bab8: 1005207c .word 0x1005207c +1000babc: 1004571c .word 0x1004571c +1000bac0: 1004d7e8 .word 0x1004d7e8 +1000bac4: 1004d7f8 .word 0x1004d7f8 +1000bac8: 100456d4 .word 0x100456d4 +1000bacc: 0000f769 .word 0x0000f769 +1000bad0: 10045710 .word 0x10045710 +1000bad4: 100450ac .word 0x100450ac +1000bad8: 100456f8 .word 0x100456f8 + +1000badc : +1000badc: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000bae0: f44f 708c mov.w r0, #280 ; 0x118 +1000bae4: b097 sub sp, #92 ; 0x5c +1000bae6: 2400 movs r4, #0 +1000bae8: f04f 35ff mov.w r5, #4294967295 +1000baec: f8ad 4014 strh.w r4, [sp, #20] +1000baf0: 9408 str r4, [sp, #32] +1000baf2: 9409 str r4, [sp, #36] ; 0x24 +1000baf4: 940a str r4, [sp, #40] ; 0x28 +1000baf6: 940b str r4, [sp, #44] ; 0x2c +1000baf8: 940c str r4, [sp, #48] ; 0x30 +1000bafa: 940d str r4, [sp, #52] ; 0x34 +1000bafc: 940e str r4, [sp, #56] ; 0x38 +1000bafe: 940f str r4, [sp, #60] ; 0x3c +1000bb00: 9410 str r4, [sp, #64] ; 0x40 +1000bb02: 9411 str r4, [sp, #68] ; 0x44 +1000bb04: 9412 str r4, [sp, #72] ; 0x48 +1000bb06: 9413 str r4, [sp, #76] ; 0x4c +1000bb08: 9414 str r4, [sp, #80] ; 0x50 +1000bb0a: 9515 str r5, [sp, #84] ; 0x54 +1000bb0c: f011 f930 bl 1001cd70 +1000bb10: 4682 mov sl, r0 +1000bb12: 2800 cmp r0, #0 +1000bb14: f000 80c6 beq.w 1000bca4 +1000bb18: 4621 mov r1, r4 +1000bb1a: 2002 movs r0, #2 +1000bb1c: 4652 mov r2, sl +1000bb1e: f44f 738c mov.w r3, #280 ; 0x118 +1000bb22: f013 fd55 bl 1001f5d0 +1000bb26: f8da 4000 ldr.w r4, [sl] +1000bb2a: 2c01 cmp r4, #1 +1000bb2c: f040 80b3 bne.w 1000bc96 +1000bb30: f8da 3004 ldr.w r3, [sl, #4] +1000bb34: 3b02 subs r3, #2 +1000bb36: 2b01 cmp r3, #1 +1000bb38: f240 80ad bls.w 1000bc96 +1000bb3c: 485a ldr r0, [pc, #360] ; (1000bca8 ) +1000bb3e: a907 add r1, sp, #28 +1000bb40: f003 f88c bl 1000ec5c +1000bb44: 9b07 ldr r3, [sp, #28] +1000bb46: 2b03 cmp r3, #3 +1000bb48: f000 8093 beq.w 1000bc72 +1000bb4c: 2000 movs r0, #0 +1000bb4e: f001 fe67 bl 1000d820 +1000bb52: f8da 2074 ldr.w r2, [sl, #116] ; 0x74 +1000bb56: f8da 4078 ldr.w r4, [sl, #120] ; 0x78 +1000bb5a: 2a00 cmp r2, #0 +1000bb5c: f340 809b ble.w 1000bc96 +1000bb60: f8df 914c ldr.w r9, [pc, #332] ; 1000bcb0 +1000bb64: 2500 movs r5, #0 +1000bb66: f04f 3bff mov.w fp, #4294967295 +1000bb6a: e002 b.n 1000bb72 +1000bb6c: 3501 adds r5, #1 +1000bb6e: 42aa cmp r2, r5 +1000bb70: dd5e ble.n 1000bc30 +1000bb72: 279c movs r7, #156 ; 0x9c +1000bb74: fb07 a704 mla r7, r7, r4, sl +1000bb78: f8d7 8114 ldr.w r8, [r7, #276] ; 0x114 +1000bb7c: 1c63 adds r3, r4, #1 +1000bb7e: 2b00 cmp r3, #0 +1000bb80: bfd8 it le +1000bb82: 461c movle r4, r3 +1000bb84: f1b8 0f01 cmp.w r8, #1 +1000bb88: f107 067c add.w r6, r7, #124 ; 0x7c +1000bb8c: f107 0778 add.w r7, r7, #120 ; 0x78 +1000bb90: d1ec bne.n 1000bb6c +1000bb92: 4631 mov r1, r6 +1000bb94: 2224 movs r2, #36 ; 0x24 +1000bb96: 4845 ldr r0, [pc, #276] ; (1000bcac ) +1000bb98: f036 fae2 bl 10042160 +1000bb9c: f107 0128 add.w r1, r7, #40 ; 0x28 +1000bba0: 2241 movs r2, #65 ; 0x41 +1000bba2: 4843 ldr r0, [pc, #268] ; (1000bcb0 ) +1000bba4: f036 fadc bl 10042160 +1000bba8: f107 0169 add.w r1, r7, #105 ; 0x69 +1000bbac: 2228 movs r2, #40 ; 0x28 +1000bbae: 4841 ldr r0, [pc, #260] ; (1000bcb4 ) +1000bbb0: f036 fad6 bl 10042160 +1000bbb4: f8d7 3094 ldr.w r3, [r7, #148] ; 0x94 +1000bbb8: 493f ldr r1, [pc, #252] ; (1000bcb8 ) +1000bbba: 0f1a lsrs r2, r3, #28 +1000bbbc: a805 add r0, sp, #20 +1000bbbe: 9306 str r3, [sp, #24] +1000bbc0: f036 fa72 bl 100420a8 +1000bbc4: f89d 7018 ldrb.w r7, [sp, #24] +1000bbc8: 2303 movs r3, #3 +1000bbca: 4642 mov r2, r8 +1000bbcc: f8d6 6094 ldr.w r6, [r6, #148] ; 0x94 +1000bbd0: f10d 0113 add.w r1, sp, #19 +1000bbd4: a806 add r0, sp, #24 +1000bbd6: f88d 3013 strb.w r3, [sp, #19] +1000bbda: 9706 str r7, [sp, #24] +1000bbdc: f001 fc82 bl 1000d4e4 +1000bbe0: 4932 ldr r1, [pc, #200] ; (1000bcac ) +1000bbe2: f10d 0021 add.w r0, sp, #33 ; 0x21 +1000bbe6: 9612 str r6, [sp, #72] ; 0x48 +1000bbe8: f036 facc bl 10042184 +1000bbec: 482f ldr r0, [pc, #188] ; (1000bcac ) +1000bbee: f036 facf bl 10042190 +1000bbf2: 4a32 ldr r2, [pc, #200] ; (1000bcbc ) +1000bbf4: b2c3 uxtb r3, r0 +1000bbf6: 4296 cmp r6, r2 +1000bbf8: 4931 ldr r1, [pc, #196] ; (1000bcc0 ) +1000bbfa: f88d 3020 strb.w r3, [sp, #32] +1000bbfe: d02d beq.n 1000bc5c +1000bc00: 428e cmp r6, r1 +1000bc02: d02b beq.n 1000bc5c +1000bc04: 2e01 cmp r6, #1 +1000bc06: d01b beq.n 1000bc40 +1000bc08: 9e14 ldr r6, [sp, #80] ; 0x50 +1000bc0a: 9815 ldr r0, [sp, #84] ; 0x54 +1000bc0c: 2700 movs r7, #0 +1000bc0e: 9001 str r0, [sp, #4] +1000bc10: 9912 ldr r1, [sp, #72] ; 0x48 +1000bc12: 9a13 ldr r2, [sp, #76] ; 0x4c +1000bc14: 9600 str r6, [sp, #0] +1000bc16: f10d 0021 add.w r0, sp, #33 ; 0x21 +1000bc1a: 9702 str r7, [sp, #8] +1000bc1c: f000 fd3e bl 1000c69c +1000bc20: 4683 mov fp, r0 +1000bc22: 2800 cmp r0, #0 +1000bc24: d03a beq.n 1000bc9c +1000bc26: f8da 2074 ldr.w r2, [sl, #116] ; 0x74 +1000bc2a: 3501 adds r5, #1 +1000bc2c: 42aa cmp r2, r5 +1000bc2e: dca0 bgt.n 1000bb72 +1000bc30: 4650 mov r0, sl +1000bc32: 219c movs r1, #156 ; 0x9c +1000bc34: f011 f8b2 bl 1001cd9c +1000bc38: 4658 mov r0, fp +1000bc3a: b017 add sp, #92 ; 0x5c +1000bc3c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000bc40: 481b ldr r0, [pc, #108] ; (1000bcb0 ) +1000bc42: f8cd 904c str.w r9, [sp, #76] ; 0x4c +1000bc46: f036 faa3 bl 10042190 +1000bc4a: 4b1e ldr r3, [pc, #120] ; (1000bcc4 ) +1000bc4c: 9014 str r0, [sp, #80] ; 0x50 +1000bc4e: a805 add r0, sp, #20 +1000bc50: 4798 blx r3 +1000bc52: f89d 3020 ldrb.w r3, [sp, #32] +1000bc56: 9015 str r0, [sp, #84] ; 0x54 +1000bc58: 9e14 ldr r6, [sp, #80] ; 0x50 +1000bc5a: e7d7 b.n 1000bc0c +1000bc5c: 4814 ldr r0, [pc, #80] ; (1000bcb0 ) +1000bc5e: f8cd 904c str.w r9, [sp, #76] ; 0x4c +1000bc62: f036 fa95 bl 10042190 +1000bc66: 4606 mov r6, r0 +1000bc68: f89d 3020 ldrb.w r3, [sp, #32] +1000bc6c: 9815 ldr r0, [sp, #84] ; 0x54 +1000bc6e: 9614 str r6, [sp, #80] ; 0x50 +1000bc70: e7cc b.n 1000bc0c +1000bc72: f00e fe99 bl 1001a9a8 +1000bc76: f001 f9a3 bl 1000cfc0 +1000bc7a: 2014 movs r0, #20 +1000bc7c: f00f ffd4 bl 1001bc28 +1000bc80: 4620 mov r0, r4 +1000bc82: f001 f943 bl 1000cf0c +1000bc86: 2800 cmp r0, #0 +1000bc88: f6bf af60 bge.w 1000bb4c +1000bc8c: 480e ldr r0, [pc, #56] ; (1000bcc8 ) +1000bc8e: 46ab mov fp, r5 +1000bc90: f036 fa3a bl 10042108 +1000bc94: e7cc b.n 1000bc30 +1000bc96: f04f 3bff mov.w fp, #4294967295 +1000bc9a: e7c9 b.n 1000bc30 +1000bc9c: 4601 mov r1, r0 +1000bc9e: f003 fb87 bl 1000f3b0 +1000bca2: e7c5 b.n 1000bc30 +1000bca4: 46ab mov fp, r5 +1000bca6: e7c7 b.n 1000bc38 +1000bca8: 100450ac .word 0x100450ac +1000bcac: 100530f4 .word 0x100530f4 +1000bcb0: 1005313c .word 0x1005313c +1000bcb4: 100531ff .word 0x100531ff +1000bcb8: 100481ac .word 0x100481ac +1000bcbc: 00200002 .word 0x00200002 +1000bcc0: 00400004 .word 0x00400004 +1000bcc4: 0000f769 .word 0x0000f769 +1000bcc8: 10045730 .word 0x10045730 + +1000bccc : +1000bccc: b510 push {r4, lr} +1000bcce: 4c25 ldr r4, [pc, #148] ; (1000bd64 ) +1000bcd0: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bcd4: 4a24 ldr r2, [pc, #144] ; (1000bd68 ) +1000bcd6: 4620 mov r0, r4 +1000bcd8: f036 f9a6 bl 10042028 +1000bcdc: 4620 mov r0, r4 +1000bcde: f013 fd8f bl 1001f800 +1000bce2: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bce6: 4a21 ldr r2, [pc, #132] ; (1000bd6c ) +1000bce8: 4620 mov r0, r4 +1000bcea: f036 f99d bl 10042028 +1000bcee: 4620 mov r0, r4 +1000bcf0: f013 fd86 bl 1001f800 +1000bcf4: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bcf8: 4a1d ldr r2, [pc, #116] ; (1000bd70 ) +1000bcfa: 4620 mov r0, r4 +1000bcfc: f036 f994 bl 10042028 +1000bd00: 4620 mov r0, r4 +1000bd02: f013 fd7d bl 1001f800 +1000bd06: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bd0a: 4a1a ldr r2, [pc, #104] ; (1000bd74 ) +1000bd0c: 4620 mov r0, r4 +1000bd0e: f036 f98b bl 10042028 +1000bd12: 4620 mov r0, r4 +1000bd14: f013 fd74 bl 1001f800 +1000bd18: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bd1c: 4a16 ldr r2, [pc, #88] ; (1000bd78 ) +1000bd1e: 4620 mov r0, r4 +1000bd20: f036 f982 bl 10042028 +1000bd24: 4620 mov r0, r4 +1000bd26: f013 fd6b bl 1001f800 +1000bd2a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bd2e: 4a13 ldr r2, [pc, #76] ; (1000bd7c ) +1000bd30: 4620 mov r0, r4 +1000bd32: f036 f979 bl 10042028 +1000bd36: 4620 mov r0, r4 +1000bd38: f013 fd62 bl 1001f800 +1000bd3c: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bd40: 4a0f ldr r2, [pc, #60] ; (1000bd80 ) +1000bd42: 4620 mov r0, r4 +1000bd44: f036 f970 bl 10042028 +1000bd48: 4620 mov r0, r4 +1000bd4a: f013 fd59 bl 1001f800 +1000bd4e: 4620 mov r0, r4 +1000bd50: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bd54: 4a0b ldr r2, [pc, #44] ; (1000bd84 ) +1000bd56: f036 f967 bl 10042028 +1000bd5a: 4620 mov r0, r4 +1000bd5c: e8bd 4010 ldmia.w sp!, {r4, lr} +1000bd60: f013 bd4e b.w 1001f800 +1000bd64: 1005207c .word 0x1005207c +1000bd68: 1004574c .word 0x1004574c +1000bd6c: 10045764 .word 0x10045764 +1000bd70: 10045788 .word 0x10045788 +1000bd74: 100457b0 .word 0x100457b0 +1000bd78: 100457bc .word 0x100457bc +1000bd7c: 100457d8 .word 0x100457d8 +1000bd80: 10045804 .word 0x10045804 +1000bd84: 1004581c .word 0x1004581c + +1000bd88 : +1000bd88: b538 push {r3, r4, r5, lr} +1000bd8a: 4d08 ldr r5, [pc, #32] ; (1000bdac ) +1000bd8c: 2400 movs r4, #0 +1000bd8e: 592b ldr r3, [r5, r4] +1000bd90: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000bd94: 4a06 ldr r2, [pc, #24] ; (1000bdb0 ) +1000bd96: 4807 ldr r0, [pc, #28] ; (1000bdb4 ) +1000bd98: f036 f946 bl 10042028 +1000bd9c: 3410 adds r4, #16 +1000bd9e: 4805 ldr r0, [pc, #20] ; (1000bdb4 ) +1000bda0: f013 fd2e bl 1001f800 +1000bda4: 2cc0 cmp r4, #192 ; 0xc0 +1000bda6: d1f2 bne.n 1000bd8e +1000bda8: bd38 pop {r3, r4, r5, pc} +1000bdaa: bf00 nop +1000bdac: 1004d6e4 .word 0x1004d6e4 +1000bdb0: 10044b70 .word 0x10044b70 +1000bdb4: 1005207c .word 0x1005207c + +1000bdb8 : +1000bdb8: b508 push {r3, lr} +1000bdba: f7fe fd51 bl 1000a860 +1000bdbe: e8bd 4008 ldmia.w sp!, {r3, lr} +1000bdc2: 4802 ldr r0, [pc, #8] ; (1000bdcc ) +1000bdc4: 210c movs r1, #12 +1000bdc6: f000 b803 b.w 1000bdd0 +1000bdca: bf00 nop +1000bdcc: 1004d6e4 .word 0x1004d6e4 + +1000bdd0 : +1000bdd0: 2900 cmp r1, #0 +1000bdd2: e92d 01f0 stmdb sp!, {r4, r5, r6, r7, r8} +1000bdd6: dd24 ble.n 1000be22 +1000bdd8: f100 0c08 add.w ip, r0, #8 +1000bddc: 4f13 ldr r7, [pc, #76] ; (1000be2c ) +1000bdde: eb0c 1801 add.w r8, ip, r1, lsl #4 +1000bde2: 4666 mov r6, ip +1000bde4: f856 1c08 ldr.w r1, [r6, #-8] +1000bde8: 780a ldrb r2, [r1, #0] +1000bdea: b1ea cbz r2, 1000be28 +1000bdec: 2300 movs r3, #0 +1000bdee: b254 sxtb r4, r2 +1000bdf0: eb03 1583 add.w r5, r3, r3, lsl #6 +1000bdf4: f811 2f01 ldrb.w r2, [r1, #1]! +1000bdf8: eb03 0345 add.w r3, r3, r5, lsl #1 +1000bdfc: 4423 add r3, r4 +1000bdfe: 2a00 cmp r2, #0 +1000be00: d1f5 bne.n 1000bdee +1000be02: f003 031f and.w r3, r3, #31 +1000be06: f857 1033 ldr.w r1, [r7, r3, lsl #3] +1000be0a: 1a32 subs r2, r6, r0 +1000be0c: 4462 add r2, ip +1000be0e: eb07 04c3 add.w r4, r7, r3, lsl #3 +1000be12: 604e str r6, [r1, #4] +1000be14: e902 0012 stmdb r2, {r1, r4} +1000be18: f847 6033 str.w r6, [r7, r3, lsl #3] +1000be1c: 3610 adds r6, #16 +1000be1e: 4546 cmp r6, r8 +1000be20: d1e0 bne.n 1000bde4 +1000be22: e8bd 01f0 ldmia.w sp!, {r4, r5, r6, r7, r8} +1000be26: 4770 bx lr +1000be28: 4613 mov r3, r2 +1000be2a: e7ec b.n 1000be06 +1000be2c: 10050750 .word 0x10050750 + +1000be30 : +1000be30: b5f8 push {r3, r4, r5, r6, r7, lr} +1000be32: 7802 ldrb r2, [r0, #0] +1000be34: 4607 mov r7, r0 +1000be36: b322 cbz r2, 1000be82 +1000be38: 4604 mov r4, r0 +1000be3a: 2300 movs r3, #0 +1000be3c: b255 sxtb r5, r2 +1000be3e: eb03 1683 add.w r6, r3, r3, lsl #6 +1000be42: f814 2f01 ldrb.w r2, [r4, #1]! +1000be46: eb03 0346 add.w r3, r3, r6, lsl #1 +1000be4a: 442b add r3, r5 +1000be4c: 2a00 cmp r2, #0 +1000be4e: d1f5 bne.n 1000be3c +1000be50: f003 051f and.w r5, r3, #31 +1000be54: 490c ldr r1, [pc, #48] ; (1000be88 ) +1000be56: f851 4035 ldr.w r4, [r1, r5, lsl #3] +1000be5a: eb01 05c5 add.w r5, r1, r5, lsl #3 +1000be5e: 42a5 cmp r5, r4 +1000be60: d103 bne.n 1000be6a +1000be62: e00c b.n 1000be7e +1000be64: 6824 ldr r4, [r4, #0] +1000be66: 42a5 cmp r5, r4 +1000be68: d009 beq.n 1000be7e +1000be6a: f854 0c08 ldr.w r0, [r4, #-8] +1000be6e: 4639 mov r1, r7 +1000be70: f036 f982 bl 10042178 +1000be74: 2800 cmp r0, #0 +1000be76: d1f5 bne.n 1000be64 +1000be78: f854 0c04 ldr.w r0, [r4, #-4] +1000be7c: bdf8 pop {r3, r4, r5, r6, r7, pc} +1000be7e: 2000 movs r0, #0 +1000be80: bdf8 pop {r3, r4, r5, r6, r7, pc} +1000be82: 4615 mov r5, r2 +1000be84: e7e6 b.n 1000be54 +1000be86: bf00 nop +1000be88: 10050750 .word 0x10050750 + +1000be8c : +1000be8c: b530 push {r4, r5, lr} +1000be8e: f2ad 6d54 subw sp, sp, #1620 ; 0x654 +1000be92: ac04 add r4, sp, #16 +1000be94: 4605 mov r5, r0 +1000be96: 2100 movs r1, #0 +1000be98: 4620 mov r0, r4 +1000be9a: f44f 62c8 mov.w r2, #1600 ; 0x640 +1000be9e: f036 fa34 bl 1004230a +1000bea2: 2300 movs r3, #0 +1000bea4: 4629 mov r1, r5 +1000bea6: 4620 mov r0, r4 +1000bea8: f240 623f movw r2, #1599 ; 0x63f +1000beac: 9401 str r4, [sp, #4] +1000beae: 9302 str r3, [sp, #8] +1000beb0: f88d 300c strb.w r3, [sp, #12] +1000beb4: f036 f978 bl 100421a8 +1000beb8: a801 add r0, sp, #4 +1000beba: 490e ldr r1, [pc, #56] ; (1000bef4 ) +1000bebc: 4b0e ldr r3, [pc, #56] ; (1000bef8 ) +1000bebe: 4798 blx r3 +1000bec0: 9d01 ldr r5, [sp, #4] +1000bec2: 4604 mov r4, r0 +1000bec4: b190 cbz r0, 1000beec +1000bec6: f036 f963 bl 10042190 +1000beca: 2804 cmp r0, #4 +1000becc: d80e bhi.n 1000beec +1000bece: 4621 mov r1, r4 +1000bed0: a802 add r0, sp, #8 +1000bed2: f036 f957 bl 10042184 +1000bed6: a802 add r0, sp, #8 +1000bed8: f7ff ffaa bl 1000be30 +1000bedc: 4604 mov r4, r0 +1000bede: b110 cbz r0, 1000bee6 +1000bee0: 4628 mov r0, r5 +1000bee2: 47a0 blx r4 +1000bee4: 4620 mov r0, r4 +1000bee6: f20d 6d54 addw sp, sp, #1620 ; 0x654 +1000beea: bd30 pop {r4, r5, pc} +1000beec: 2000 movs r0, #0 +1000beee: f20d 6d54 addw sp, sp, #1620 ; 0x654 +1000bef2: bd30 pop {r4, r5, pc} +1000bef4: 10045f0c .word 0x10045f0c +1000bef8: 0000f7d5 .word 0x0000f7d5 + +1000befc : +1000befc: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000bf00: 4b47 ldr r3, [pc, #284] ; (1000c020 ) +1000bf02: f5ad 6dc8 sub.w sp, sp, #1600 ; 0x640 +1000bf06: 881b ldrh r3, [r3, #0] +1000bf08: 4604 mov r4, r0 +1000bf0a: 4688 mov r8, r1 +1000bf0c: f10d 0002 add.w r0, sp, #2 +1000bf10: 2100 movs r1, #0 +1000bf12: f240 623e movw r2, #1598 ; 0x63e +1000bf16: f8ad 3000 strh.w r3, [sp] +1000bf1a: 2701 movs r7, #1 +1000bf1c: f036 f9f5 bl 1004230a +1000bf20: 2c00 cmp r4, #0 +1000bf22: d03a beq.n 1000bf9a +1000bf24: 2600 movs r6, #0 +1000bf26: 7822 ldrb r2, [r4, #0] +1000bf28: 2a00 cmp r2, #0 +1000bf2a: d036 beq.n 1000bf9a +1000bf2c: b253 sxtb r3, r2 +1000bf2e: e007 b.n 1000bf40 +1000bf30: 2b5b cmp r3, #91 ; 0x5b +1000bf32: d001 beq.n 1000bf38 +1000bf34: 2b5d cmp r3, #93 ; 0x5d +1000bf36: d10f bne.n 1000bf58 +1000bf38: 7862 ldrb r2, [r4, #1] +1000bf3a: b253 sxtb r3, r2 +1000bf3c: f804 6b01 strb.w r6, [r4], #1 +1000bf40: 2b2c cmp r3, #44 ; 0x2c +1000bf42: d1f5 bne.n 1000bf30 +1000bf44: 7862 ldrb r2, [r4, #1] +1000bf46: b253 sxtb r3, r2 +1000bf48: 2b2c cmp r3, #44 ; 0x2c +1000bf4a: d1f7 bne.n 1000bf3c +1000bf4c: f848 6027 str.w r6, [r8, r7, lsl #2] +1000bf50: 7862 ldrb r2, [r4, #1] +1000bf52: 3701 adds r7, #1 +1000bf54: b253 sxtb r3, r2 +1000bf56: e7f1 b.n 1000bf3c +1000bf58: b1fa cbz r2, 1000bf9a +1000bf5a: 2b22 cmp r3, #34 ; 0x22 +1000bf5c: d022 beq.n 1000bfa4 +1000bf5e: f848 4027 str.w r4, [r8, r7, lsl #2] +1000bf62: 7862 ldrb r2, [r4, #1] +1000bf64: 3701 adds r7, #1 +1000bf66: b253 sxtb r3, r2 +1000bf68: 2b2c cmp r3, #44 ; 0x2c +1000bf6a: f104 0101 add.w r1, r4, #1 +1000bf6e: d04b beq.n 1000c008 +1000bf70: 2a00 cmp r2, #0 +1000bf72: d049 beq.n 1000c008 +1000bf74: 2b5b cmp r3, #91 ; 0x5b +1000bf76: d047 beq.n 1000c008 +1000bf78: 2b5d cmp r3, #93 ; 0x5d +1000bf7a: d045 beq.n 1000c008 +1000bf7c: 1ca2 adds r2, r4, #2 +1000bf7e: e004 b.n 1000bf8a +1000bf80: b14d cbz r5, 1000bf96 +1000bf82: 2b5b cmp r3, #91 ; 0x5b +1000bf84: d007 beq.n 1000bf96 +1000bf86: 2b5d cmp r3, #93 ; 0x5d +1000bf88: d005 beq.n 1000bf96 +1000bf8a: 4614 mov r4, r2 +1000bf8c: f812 5b01 ldrb.w r5, [r2], #1 +1000bf90: b26b sxtb r3, r5 +1000bf92: 2b2c cmp r3, #44 ; 0x2c +1000bf94: d1f4 bne.n 1000bf80 +1000bf96: 2f0b cmp r7, #11 +1000bf98: ddc5 ble.n 1000bf26 +1000bf9a: 4638 mov r0, r7 +1000bf9c: f50d 6dc8 add.w sp, sp, #1600 ; 0x640 +1000bfa0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000bfa4: f44f 62c8 mov.w r2, #1600 ; 0x640 +1000bfa8: 4668 mov r0, sp +1000bfaa: 2100 movs r1, #0 +1000bfac: f036 f8de bl 1004216c +1000bfb0: 4623 mov r3, r4 +1000bfb2: f803 6b01 strb.w r6, [r3], #1 +1000bfb6: f994 2001 ldrsb.w r2, [r4, #1] +1000bfba: 2a00 cmp r2, #0 +1000bfbc: d0ed beq.n 1000bf9a +1000bfbe: f848 3027 str.w r3, [r8, r7, lsl #2] +1000bfc2: 7862 ldrb r2, [r4, #1] +1000bfc4: b251 sxtb r1, r2 +1000bfc6: 2922 cmp r1, #34 ; 0x22 +1000bfc8: d022 beq.n 1000c010 +1000bfca: b32a cbz r2, 1000c018 +1000bfcc: f10d 35ff add.w r5, sp, #4294967295 +1000bfd0: 2000 movs r0, #0 +1000bfd2: e001 b.n 1000bfd8 +1000bfd4: b182 cbz r2, 1000bff8 +1000bfd6: 4623 mov r3, r4 +1000bfd8: 295c cmp r1, #92 ; 0x5c +1000bfda: bf08 it eq +1000bfdc: 3301 addeq r3, #1 +1000bfde: 785a ldrb r2, [r3, #1] +1000bfe0: 461c mov r4, r3 +1000bfe2: f814 3b01 ldrb.w r3, [r4], #1 +1000bfe6: b251 sxtb r1, r2 +1000bfe8: bf08 it eq +1000bfea: 3001 addeq r0, #1 +1000bfec: 2922 cmp r1, #34 ; 0x22 +1000bfee: f100 0001 add.w r0, r0, #1 +1000bff2: f805 3f01 strb.w r3, [r5, #1]! +1000bff6: d1ed bne.n 1000bfd4 +1000bff8: 4602 mov r2, r0 +1000bffa: 4240 negs r0, r0 +1000bffc: 7026 strb r6, [r4, #0] +1000bffe: 4420 add r0, r4 +1000c000: 4669 mov r1, sp +1000c002: f036 f8ad bl 10042160 +1000c006: e7ac b.n 1000bf62 +1000c008: 2f0b cmp r7, #11 +1000c00a: 460c mov r4, r1 +1000c00c: dd8b ble.n 1000bf26 +1000c00e: e7c4 b.n 1000bf9a +1000c010: 2000 movs r0, #0 +1000c012: 461c mov r4, r3 +1000c014: 4602 mov r2, r0 +1000c016: e7f1 b.n 1000bffc +1000c018: 4610 mov r0, r2 +1000c01a: 461c mov r4, r3 +1000c01c: e7ee b.n 1000bffc +1000c01e: bf00 nop +1000c020: 100458a4 .word 0x100458a4 + +1000c024 : +1000c024: 4b01 ldr r3, [pc, #4] ; (1000c02c ) +1000c026: 7018 strb r0, [r3, #0] +1000c028: 4770 bx lr +1000c02a: bf00 nop +1000c02c: 1004d7f8 .word 0x1004d7f8 + +1000c030 : +1000c030: 4b01 ldr r3, [pc, #4] ; (1000c038 ) +1000c032: 6018 str r0, [r3, #0] +1000c034: 4770 bx lr +1000c036: bf00 nop +1000c038: 1004d7e8 .word 0x1004d7e8 + +1000c03c : +1000c03c: b510 push {r4, lr} +1000c03e: b090 sub sp, #64 ; 0x40 +1000c040: 4604 mov r4, r0 +1000c042: 2100 movs r1, #0 +1000c044: 2240 movs r2, #64 ; 0x40 +1000c046: 4668 mov r0, sp +1000c048: f036 f95f bl 1004230a +1000c04c: 4621 mov r1, r4 +1000c04e: 4668 mov r0, sp +1000c050: 223f movs r2, #63 ; 0x3f +1000c052: f036 f8a9 bl 100421a8 +1000c056: 4668 mov r0, sp +1000c058: 490c ldr r1, [pc, #48] ; (1000c08c ) +1000c05a: f036 f8b1 bl 100421c0 +1000c05e: b180 cbz r0, 1000c082 +1000c060: 4668 mov r0, sp +1000c062: 490b ldr r1, [pc, #44] ; (1000c090 ) +1000c064: f036 f888 bl 10042178 +1000c068: 4604 mov r4, r0 +1000c06a: b950 cbnz r0, 1000c082 +1000c06c: 4909 ldr r1, [pc, #36] ; (1000c094 ) +1000c06e: f036 f8a7 bl 100421c0 +1000c072: 2201 movs r2, #1 +1000c074: 4601 mov r1, r0 +1000c076: 4808 ldr r0, [pc, #32] ; (1000c098 ) +1000c078: f002 ff20 bl 1000eebc +1000c07c: 4620 mov r0, r4 +1000c07e: b010 add sp, #64 ; 0x40 +1000c080: bd10 pop {r4, pc} +1000c082: f04f 34ff mov.w r4, #4294967295 +1000c086: 4620 mov r0, r4 +1000c088: b010 add sp, #64 ; 0x40 +1000c08a: bd10 pop {r4, pc} +1000c08c: 100493cc .word 0x100493cc +1000c090: 10045f10 .word 0x10045f10 +1000c094: 100462fc .word 0x100462fc +1000c098: 100450ac .word 0x100450ac + +1000c09c : +1000c09c: b510 push {r4, lr} +1000c09e: 4906 ldr r1, [pc, #24] ; (1000c0b8 ) +1000c0a0: f036 f86a bl 10042178 +1000c0a4: 4604 mov r4, r0 +1000c0a6: b918 cbnz r0, 1000c0b0 +1000c0a8: f7ff fe10 bl 1000bccc +1000c0ac: 4620 mov r0, r4 +1000c0ae: bd10 pop {r4, pc} +1000c0b0: f04f 34ff mov.w r4, #4294967295 +1000c0b4: e7fa b.n 1000c0ac +1000c0b6: bf00 nop +1000c0b8: 10045f18 .word 0x10045f18 + +1000c0bc : +1000c0bc: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1000c0c0: 4e3c ldr r6, [pc, #240] ; (1000c1b4 ) +1000c0c2: f8df 811c ldr.w r8, [pc, #284] ; 1000c1e0 +1000c0c6: 6833 ldr r3, [r6, #0] +1000c0c8: 05d8 lsls r0, r3, #23 +1000c0ca: d503 bpl.n 1000c0d4 +1000c0cc: f898 3000 ldrb.w r3, [r8] +1000c0d0: 2b00 cmp r3, #0 +1000c0d2: d160 bne.n 1000c196 +1000c0d4: 4c38 ldr r4, [pc, #224] ; (1000c1b8 ) +1000c0d6: 4f39 ldr r7, [pc, #228] ; (1000c1bc ) +1000c0d8: 2100 movs r1, #0 +1000c0da: 460b mov r3, r1 +1000c0dc: 6820 ldr r0, [r4, #0] +1000c0de: f04f 32ff mov.w r2, #4294967295 +1000c0e2: f00f f973 bl 1001b3cc +1000c0e6: 2801 cmp r0, #1 +1000c0e8: d1f6 bne.n 1000c0d8 +1000c0ea: 4835 ldr r0, [pc, #212] ; (1000c1c0 ) +1000c0ec: f010 fdaa bl 1001cc44 +1000c0f0: 4832 ldr r0, [pc, #200] ; (1000c1bc ) +1000c0f2: f7ff fecb bl 1000be8c +1000c0f6: 2800 cmp r0, #0 +1000c0f8: d038 beq.n 1000c16c +1000c0fa: 6833 ldr r3, [r6, #0] +1000c0fc: 2200 movs r2, #0 +1000c0fe: 703a strb r2, [r7, #0] +1000c100: 05da lsls r2, r3, #23 +1000c102: 4d2c ldr r5, [pc, #176] ; (1000c1b4 ) +1000c104: d504 bpl.n 1000c110 +1000c106: f898 3000 ldrb.w r3, [r8] +1000c10a: f8df 90d4 ldr.w r9, [pc, #212] ; 1000c1e0 +1000c10e: b9e3 cbnz r3, 1000c14a +1000c110: f7fd fbda bl 100098c8 +1000c114: b178 cbz r0, 1000c136 +1000c116: 482b ldr r0, [pc, #172] ; (1000c1c4 ) +1000c118: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000c11c: 4a2a ldr r2, [pc, #168] ; (1000c1c8 ) +1000c11e: f035 ff83 bl 10042028 +1000c122: 4828 ldr r0, [pc, #160] ; (1000c1c4 ) +1000c124: f013 fb6c bl 1001f800 +1000c128: 4825 ldr r0, [pc, #148] ; (1000c1c0 ) +1000c12a: f010 fd73 bl 1001cc14 +1000c12e: 2004 movs r0, #4 +1000c130: f012 f97c bl 1001e42c +1000c134: e7d0 b.n 1000c0d8 +1000c136: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000c13a: 4a24 ldr r2, [pc, #144] ; (1000c1cc ) +1000c13c: 4821 ldr r0, [pc, #132] ; (1000c1c4 ) +1000c13e: f035 ff73 bl 10042028 +1000c142: 4820 ldr r0, [pc, #128] ; (1000c1c4 ) +1000c144: f013 fb5c bl 1001f800 +1000c148: e7ee b.n 1000c128 +1000c14a: f00e fcc7 bl 1001aadc +1000c14e: 4601 mov r1, r0 +1000c150: 481f ldr r0, [pc, #124] ; (1000c1d0 ) +1000c152: f035 ffd9 bl 10042108 +1000c156: 682b ldr r3, [r5, #0] +1000c158: 05db lsls r3, r3, #23 +1000c15a: d5d9 bpl.n 1000c110 +1000c15c: f899 3000 ldrb.w r3, [r9] +1000c160: 2b00 cmp r3, #0 +1000c162: d0d5 beq.n 1000c110 +1000c164: 4819 ldr r0, [pc, #100] ; (1000c1cc ) +1000c166: f035 ffcf bl 10042108 +1000c16a: e7d1 b.n 1000c110 +1000c16c: 4813 ldr r0, [pc, #76] ; (1000c1bc ) +1000c16e: f7ff ff65 bl 1000c03c +1000c172: 2800 cmp r0, #0 +1000c174: dac1 bge.n 1000c0fa +1000c176: 4811 ldr r0, [pc, #68] ; (1000c1bc ) +1000c178: f7ff ff90 bl 1000c09c +1000c17c: 2800 cmp r0, #0 +1000c17e: dabc bge.n 1000c0fa +1000c180: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000c184: 4a13 ldr r2, [pc, #76] ; (1000c1d4 ) +1000c186: 4b0d ldr r3, [pc, #52] ; (1000c1bc ) +1000c188: 480e ldr r0, [pc, #56] ; (1000c1c4 ) +1000c18a: f035 ff4d bl 10042028 +1000c18e: 480d ldr r0, [pc, #52] ; (1000c1c4 ) +1000c190: f013 fb36 bl 1001f800 +1000c194: e7b1 b.n 1000c0fa +1000c196: 4810 ldr r0, [pc, #64] ; (1000c1d8 ) +1000c198: f035 ffb6 bl 10042108 +1000c19c: 6833 ldr r3, [r6, #0] +1000c19e: 05d9 lsls r1, r3, #23 +1000c1a0: d598 bpl.n 1000c0d4 +1000c1a2: f898 3000 ldrb.w r3, [r8] +1000c1a6: 2b00 cmp r3, #0 +1000c1a8: d094 beq.n 1000c0d4 +1000c1aa: 480c ldr r0, [pc, #48] ; (1000c1dc ) +1000c1ac: f035 ffac bl 10042108 +1000c1b0: e790 b.n 1000c0d4 +1000c1b2: bf00 nop +1000c1b4: 1004d7e8 .word 0x1004d7e8 +1000c1b8: 10050748 .word 0x10050748 +1000c1bc: 10050100 .word 0x10050100 +1000c1c0: 10050740 .word 0x10050740 +1000c1c4: 1005207c .word 0x1005207c +1000c1c8: 10045f88 .word 0x10045f88 +1000c1cc: 100493c8 .word 0x100493c8 +1000c1d0: 10045f5c .word 0x10045f5c +1000c1d4: 10045f44 .word 0x10045f44 +1000c1d8: 10045f20 .word 0x10045f20 +1000c1dc: 10045f3c .word 0x10045f3c +1000c1e0: 1004d7f8 .word 0x1004d7f8 + +1000c1e4 : +1000c1e4: 4801 ldr r0, [pc, #4] ; (1000c1ec ) +1000c1e6: f010 bd2d b.w 1001cc44 +1000c1ea: bf00 nop +1000c1ec: 10050740 .word 0x10050740 + +1000c1f0 : +1000c1f0: 4801 ldr r0, [pc, #4] ; (1000c1f8 ) +1000c1f2: f010 bd0f b.w 1001cc14 +1000c1f6: bf00 nop +1000c1f8: 10050740 .word 0x10050740 + +1000c1fc : +1000c1fc: b500 push {lr} +1000c1fe: f44f 50a0 mov.w r0, #5120 ; 0x1400 +1000c202: b087 sub sp, #28 +1000c204: f011 f8ea bl 1001d3dc +1000c208: 2105 movs r1, #5 +1000c20a: aa05 add r2, sp, #20 +1000c20c: 2300 movs r3, #0 +1000c20e: e88d 0006 stmia.w sp, {r1, r2} +1000c212: 9002 str r0, [sp, #8] +1000c214: 9303 str r3, [sp, #12] +1000c216: 4807 ldr r0, [pc, #28] ; (1000c234 ) +1000c218: 4907 ldr r1, [pc, #28] ; (1000c238 ) +1000c21a: f44f 62a0 mov.w r2, #1280 ; 0x500 +1000c21e: f00f f9f1 bl 1001b604 +1000c222: 2801 cmp r0, #1 +1000c224: d003 beq.n 1000c22e +1000c226: 4805 ldr r0, [pc, #20] ; (1000c23c ) +1000c228: 4905 ldr r1, [pc, #20] ; (1000c240 ) +1000c22a: f035 ff6d bl 10042108 +1000c22e: b007 add sp, #28 +1000c230: f85d fb04 ldr.w pc, [sp], #4 +1000c234: 1000c0bd .word 0x1000c0bd +1000c238: 10045f90 .word 0x10045f90 +1000c23c: 10045f9c .word 0x10045f9c +1000c240: 10045ee4 .word 0x10045ee4 + +1000c244 : +1000c244: 4a1b ldr r2, [pc, #108] ; (1000c2b4 ) +1000c246: b5f8 push {r3, r4, r5, r6, r7, lr} +1000c248: 4f1b ldr r7, [pc, #108] ; (1000c2b8 ) +1000c24a: 4e1c ldr r6, [pc, #112] ; (1000c2bc ) +1000c24c: 4b1c ldr r3, [pc, #112] ; (1000c2c0 ) +1000c24e: f102 0130 add.w r1, r2, #48 ; 0x30 +1000c252: 6032 str r2, [r6, #0] +1000c254: 6039 str r1, [r7, #0] +1000c256: f503 7280 add.w r2, r3, #256 ; 0x100 +1000c25a: 601b str r3, [r3, #0] +1000c25c: 605b str r3, [r3, #4] +1000c25e: 3308 adds r3, #8 +1000c260: 4293 cmp r3, r2 +1000c262: d1fa bne.n 1000c25a +1000c264: 4d17 ldr r5, [pc, #92] ; (1000c2c4 ) +1000c266: 2400 movs r4, #0 +1000c268: f855 3f04 ldr.w r3, [r5, #4]! +1000c26c: 4798 blx r3 +1000c26e: 683a ldr r2, [r7, #0] +1000c270: 6833 ldr r3, [r6, #0] +1000c272: 3401 adds r4, #1 +1000c274: 1ad3 subs r3, r2, r3 +1000c276: 109b asrs r3, r3, #2 +1000c278: ebb4 0f93 cmp.w r4, r3, lsr #2 +1000c27c: d3f4 bcc.n 1000c268 +1000c27e: 2001 movs r0, #1 +1000c280: 2100 movs r1, #0 +1000c282: 2203 movs r2, #3 +1000c284: f00e ff9c bl 1001b1c0 +1000c288: 4c0f ldr r4, [pc, #60] ; (1000c2c8 ) +1000c28a: 6020 str r0, [r4, #0] +1000c28c: b128 cbz r0, 1000c29a +1000c28e: 2100 movs r1, #0 +1000c290: 460a mov r2, r1 +1000c292: 460b mov r3, r1 +1000c294: f00e ffc0 bl 1001b218 +1000c298: 6820 ldr r0, [r4, #0] +1000c29a: 2100 movs r1, #0 +1000c29c: 460b mov r3, r1 +1000c29e: 2201 movs r2, #1 +1000c2a0: f00f f894 bl 1001b3cc +1000c2a4: 4809 ldr r0, [pc, #36] ; (1000c2cc ) +1000c2a6: 2101 movs r1, #1 +1000c2a8: f010 fca8 bl 1001cbfc +1000c2ac: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +1000c2b0: f7ff bfa4 b.w 1000c1fc +1000c2b4: 1004d7ec .word 0x1004d7ec +1000c2b8: 1005074c .word 0x1005074c +1000c2bc: 10050744 .word 0x10050744 +1000c2c0: 10050750 .word 0x10050750 +1000c2c4: 1004d7e8 .word 0x1004d7e8 +1000c2c8: 10050748 .word 0x10050748 +1000c2cc: 10050740 .word 0x10050740 + +1000c2d0 : +1000c2d0: b5f8 push {r3, r4, r5, r6, r7, lr} +1000c2d2: 6885 ldr r5, [r0, #8] +1000c2d4: f240 623f movw r2, #1599 ; 0x63f +1000c2d8: 1c6c adds r4, r5, #1 +1000c2da: 4621 mov r1, r4 +1000c2dc: 4811 ldr r0, [pc, #68] ; (1000c324 ) +1000c2de: f035 ff63 bl 100421a8 +1000c2e2: 4620 mov r0, r4 +1000c2e4: f037 fa54 bl 10043790 <__GetArgc_veneer> +1000c2e8: 4606 mov r6, r0 +1000c2ea: 4620 mov r0, r4 +1000c2ec: f037 fba0 bl 10043a30 <__GetArgv_veneer> +1000c2f0: f016 0fff tst.w r6, #255 ; 0xff +1000c2f4: 4607 mov r7, r0 +1000c2f6: d10c bne.n 1000c312 +1000c2f8: 2004 movs r0, #4 +1000c2fa: f012 f88f bl 1001e41c +1000c2fe: 480a ldr r0, [pc, #40] ; (1000c328 ) +1000c300: 4b0a ldr r3, [pc, #40] ; (1000c32c ) +1000c302: 4798 blx r3 +1000c304: 4e0a ldr r6, [pc, #40] ; (1000c330 ) +1000c306: 2200 movs r2, #0 +1000c308: 4620 mov r0, r4 +1000c30a: 702a strb r2, [r5, #0] +1000c30c: 217f movs r1, #127 ; 0x7f +1000c30e: 47b0 blx r6 +1000c310: bdf8 pop {r3, r4, r5, r6, r7, pc} +1000c312: 4808 ldr r0, [pc, #32] ; (1000c334 ) +1000c314: f010 fc7e bl 1001cc14 +1000c318: 4e05 ldr r6, [pc, #20] ; (1000c330 ) +1000c31a: 6838 ldr r0, [r7, #0] +1000c31c: 2104 movs r1, #4 +1000c31e: 2200 movs r2, #0 +1000c320: 47b0 blx r6 +1000c322: e7f0 b.n 1000c306 +1000c324: 10050100 .word 0x10050100 +1000c328: 10046014 .word 0x10046014 +1000c32c: 0000f39d .word 0x0000f39d +1000c330: 0000e8b1 .word 0x0000e8b1 +1000c334: 10050748 .word 0x10050748 + +1000c338 : +1000c338: b510 push {r4, lr} +1000c33a: 490a ldr r1, [pc, #40] ; (1000c364 ) +1000c33c: b084 sub sp, #16 +1000c33e: 2400 movs r4, #0 +1000c340: 2258 movs r2, #88 ; 0x58 +1000c342: 4668 mov r0, sp +1000c344: 4b08 ldr r3, [pc, #32] ; (1000c368 ) +1000c346: 9100 str r1, [sp, #0] +1000c348: 9201 str r2, [sp, #4] +1000c34a: 9402 str r4, [sp, #8] +1000c34c: 9403 str r4, [sp, #12] +1000c34e: 4798 blx r3 +1000c350: 4b06 ldr r3, [pc, #24] ; (1000c36c ) +1000c352: 4668 mov r0, sp +1000c354: 4798 blx r3 +1000c356: 4621 mov r1, r4 +1000c358: 4622 mov r2, r4 +1000c35a: 2001 movs r0, #1 +1000c35c: f7f9 ff4a bl 100061f4 +1000c360: b004 add sp, #16 +1000c362: bd10 pop {r4, pc} +1000c364: 10006119 .word 0x10006119 +1000c368: 00004091 .word 0x00004091 +1000c36c: 00004029 .word 0x00004029 + +1000c370 : +1000c370: 4b01 ldr r3, [pc, #4] ; (1000c378 ) +1000c372: 7818 ldrb r0, [r3, #0] +1000c374: 4770 bx lr +1000c376: bf00 nop +1000c378: 10050851 .word 0x10050851 + +1000c37c : +1000c37c: 4b01 ldr r3, [pc, #4] ; (1000c384 ) +1000c37e: 7818 ldrb r0, [r3, #0] +1000c380: 4770 bx lr +1000c382: bf00 nop +1000c384: 10050850 .word 0x10050850 + +1000c388 : +1000c388: 4770 bx lr +1000c38a: bf00 nop + +1000c38c : +1000c38c: 4b03 ldr r3, [pc, #12] ; (1000c39c ) +1000c38e: 681b ldr r3, [r3, #0] +1000c390: b113 cbz r3, 1000c398 +1000c392: 4b03 ldr r3, [pc, #12] ; (1000c3a0 ) +1000c394: 2220 movs r2, #32 +1000c396: 601a str r2, [r3, #0] +1000c398: 4770 bx lr +1000c39a: bf00 nop +1000c39c: 10050880 .word 0x10050880 +1000c3a0: 10050858 .word 0x10050858 + +1000c3a4 : +1000c3a4: 4770 bx lr +1000c3a6: bf00 nop + +1000c3a8 : +1000c3a8: 4770 bx lr +1000c3aa: bf00 nop + +1000c3ac : +1000c3ac: b570 push {r4, r5, r6, lr} +1000c3ae: 4c19 ldr r4, [pc, #100] ; (1000c414 ) +1000c3b0: b092 sub sp, #72 ; 0x48 +1000c3b2: 68a3 ldr r3, [r4, #8] +1000c3b4: 2b00 cmp r3, #0 +1000c3b6: dd12 ble.n 1000c3de +1000c3b8: 2500 movs r5, #0 +1000c3ba: 6823 ldr r3, [r4, #0] +1000c3bc: 4668 mov r0, sp +1000c3be: f853 1025 ldr.w r1, [r3, r5, lsl #2] +1000c3c2: 2240 movs r2, #64 ; 0x40 +1000c3c4: f010 fcf2 bl 1001cdac +1000c3c8: 69e3 ldr r3, [r4, #28] +1000c3ca: 68e2 ldr r2, [r4, #12] +1000c3cc: 9311 str r3, [sp, #68] ; 0x44 +1000c3ce: 9210 str r2, [sp, #64] ; 0x40 +1000c3d0: 6963 ldr r3, [r4, #20] +1000c3d2: 4668 mov r0, sp +1000c3d4: 4798 blx r3 +1000c3d6: 68a3 ldr r3, [r4, #8] +1000c3d8: 3501 adds r5, #1 +1000c3da: 42ab cmp r3, r5 +1000c3dc: dced bgt.n 1000c3ba +1000c3de: 2301 movs r3, #1 +1000c3e0: 60e3 str r3, [r4, #12] +1000c3e2: 9310 str r3, [sp, #64] ; 0x40 +1000c3e4: 4668 mov r0, sp +1000c3e6: 6963 ldr r3, [r4, #20] +1000c3e8: 4798 blx r3 +1000c3ea: 6860 ldr r0, [r4, #4] +1000c3ec: 2100 movs r1, #0 +1000c3ee: f010 fcd5 bl 1001cd9c +1000c3f2: 6820 ldr r0, [r4, #0] +1000c3f4: 2100 movs r1, #0 +1000c3f6: f010 fcd1 bl 1001cd9c +1000c3fa: 2300 movs r3, #0 +1000c3fc: 2003 movs r0, #3 +1000c3fe: 4906 ldr r1, [pc, #24] ; (1000c418 ) +1000c400: 61a3 str r3, [r4, #24] +1000c402: f001 fa6f bl 1000d8e4 +1000c406: 2004 movs r0, #4 +1000c408: 4904 ldr r1, [pc, #16] ; (1000c41c ) +1000c40a: f001 fa6b bl 1000d8e4 +1000c40e: b012 add sp, #72 ; 0x48 +1000c410: bd70 pop {r4, r5, r6, pc} +1000c412: bf00 nop +1000c414: 1005085c .word 0x1005085c +1000c418: 1000c4e5 .word 0x1000c4e5 +1000c41c: 1000c3ad .word 0x1000c3ad + +1000c420 : +1000c420: 4a04 ldr r2, [pc, #16] ; (1000c434 ) +1000c422: 4b05 ldr r3, [pc, #20] ; (1000c438 ) +1000c424: 6810 ldr r0, [r2, #0] +1000c426: 229f movs r2, #159 ; 0x9f +1000c428: 601a str r2, [r3, #0] +1000c42a: b110 cbz r0, 1000c432 +1000c42c: 3038 adds r0, #56 ; 0x38 +1000c42e: f010 bd05 b.w 1001ce3c +1000c432: 4770 bx lr +1000c434: 10050880 .word 0x10050880 +1000c438: 10050858 .word 0x10050858 + +1000c43c : +1000c43c: 4b18 ldr r3, [pc, #96] ; (1000c4a0 ) +1000c43e: 6818 ldr r0, [r3, #0] +1000c440: b198 cbz r0, 1000c46a +1000c442: 6a83 ldr r3, [r0, #40] ; 0x28 +1000c444: b13b cbz r3, 1000c456 +1000c446: 2b01 cmp r3, #1 +1000c448: d016 beq.n 1000c478 +1000c44a: 4a16 ldr r2, [pc, #88] ; (1000c4a4 ) +1000c44c: 4293 cmp r3, r2 +1000c44e: d01d beq.n 1000c48c +1000c450: 3038 adds r0, #56 ; 0x38 +1000c452: f010 bcf3 b.w 1001ce3c +1000c456: 4b14 ldr r3, [pc, #80] ; (1000c4a8 ) +1000c458: 681b ldr r3, [r3, #0] +1000c45a: 2b20 cmp r3, #32 +1000c45c: d1f8 bne.n 1000c450 +1000c45e: 4b13 ldr r3, [pc, #76] ; (1000c4ac ) +1000c460: 2201 movs r2, #1 +1000c462: 3038 adds r0, #56 ; 0x38 +1000c464: 601a str r2, [r3, #0] +1000c466: f010 bce9 b.w 1001ce3c +1000c46a: 4b10 ldr r3, [pc, #64] ; (1000c4ac ) +1000c46c: 681a ldr r2, [r3, #0] +1000c46e: b912 cbnz r2, 1000c476 +1000c470: 2205 movs r2, #5 +1000c472: 601a str r2, [r3, #0] +1000c474: 4770 bx lr +1000c476: 4770 bx lr +1000c478: 4b0b ldr r3, [pc, #44] ; (1000c4a8 ) +1000c47a: 681b ldr r3, [r3, #0] +1000c47c: 2b20 cmp r3, #32 +1000c47e: d0ee beq.n 1000c45e +1000c480: 2b00 cmp r3, #0 +1000c482: d1e5 bne.n 1000c450 +1000c484: 4b09 ldr r3, [pc, #36] ; (1000c4ac ) +1000c486: 2202 movs r2, #2 +1000c488: 601a str r2, [r3, #0] +1000c48a: e7e1 b.n 1000c450 +1000c48c: 4b06 ldr r3, [pc, #24] ; (1000c4a8 ) +1000c48e: 681b ldr r3, [r3, #0] +1000c490: 2b20 cmp r3, #32 +1000c492: d0e4 beq.n 1000c45e +1000c494: 2b00 cmp r3, #0 +1000c496: d0f5 beq.n 1000c484 +1000c498: 4b04 ldr r3, [pc, #16] ; (1000c4ac ) +1000c49a: 2203 movs r2, #3 +1000c49c: 601a str r2, [r3, #0] +1000c49e: e7d7 b.n 1000c450 +1000c4a0: 10050880 .word 0x10050880 +1000c4a4: 00400004 .word 0x00400004 +1000c4a8: 10050858 .word 0x10050858 +1000c4ac: 1004d7fc .word 0x1004d7fc + +1000c4b0 : +1000c4b0: 4b09 ldr r3, [pc, #36] ; (1000c4d8 ) +1000c4b2: 6818 ldr r0, [r3, #0] +1000c4b4: b140 cbz r0, 1000c4c8 +1000c4b6: 6a83 ldr r3, [r0, #40] ; 0x28 +1000c4b8: 2b01 cmp r3, #1 +1000c4ba: d906 bls.n 1000c4ca +1000c4bc: 4a07 ldr r2, [pc, #28] ; (1000c4dc ) +1000c4be: 4293 cmp r3, r2 +1000c4c0: d102 bne.n 1000c4c8 +1000c4c2: 4b07 ldr r3, [pc, #28] ; (1000c4e0 ) +1000c4c4: 221f movs r2, #31 +1000c4c6: 601a str r2, [r3, #0] +1000c4c8: 4770 bx lr +1000c4ca: 4b05 ldr r3, [pc, #20] ; (1000c4e0 ) +1000c4cc: 221f movs r2, #31 +1000c4ce: 3038 adds r0, #56 ; 0x38 +1000c4d0: 601a str r2, [r3, #0] +1000c4d2: f010 bcb3 b.w 1001ce3c +1000c4d6: bf00 nop +1000c4d8: 10050880 .word 0x10050880 +1000c4dc: 00400004 .word 0x00400004 +1000c4e0: 10050858 .word 0x10050858 + +1000c4e4 : +1000c4e4: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1000c4e8: 4f5b ldr r7, [pc, #364] ; (1000c658 ) +1000c4ea: 4680 mov r8, r0 +1000c4ec: 68be ldr r6, [r7, #8] +1000c4ee: 6801 ldr r1, [r0, #0] +1000c4f0: 2e00 cmp r6, #0 +1000c4f2: dd48 ble.n 1000c586 +1000c4f4: f8d7 9000 ldr.w r9, [r7] +1000c4f8: f8b1 c022 ldrh.w ip, [r1, #34] ; 0x22 +1000c4fc: f1a9 0404 sub.w r4, r9, #4 +1000c500: 2300 movs r3, #0 +1000c502: e002 b.n 1000c50a +1000c504: 3301 adds r3, #1 +1000c506: 42b3 cmp r3, r6 +1000c508: d03d beq.n 1000c586 +1000c50a: f854 2f04 ldr.w r2, [r4, #4]! +1000c50e: 8c55 ldrh r5, [r2, #34] ; 0x22 +1000c510: 4565 cmp r5, ip +1000c512: d1f7 bne.n 1000c504 +1000c514: 6a50 ldr r0, [r2, #36] ; 0x24 +1000c516: 6a4d ldr r5, [r1, #36] ; 0x24 +1000c518: 42a8 cmp r0, r5 +1000c51a: d1f3 bne.n 1000c504 +1000c51c: f9b2 4028 ldrsh.w r4, [r2, #40] ; 0x28 +1000c520: f9b1 5028 ldrsh.w r5, [r1, #40] ; 0x28 +1000c524: 42ac cmp r4, r5 +1000c526: da27 bge.n 1000c578 +1000c528: 1e59 subs r1, r3, #1 +1000c52a: b1db cbz r3, 1000c564 +1000c52c: f859 3021 ldr.w r3, [r9, r1, lsl #2] +1000c530: 008c lsls r4, r1, #2 +1000c532: f9b3 6028 ldrsh.w r6, [r3, #40] ; 0x28 +1000c536: 42ae cmp r6, r5 +1000c538: da14 bge.n 1000c564 +1000c53a: 3c04 subs r4, #4 +1000c53c: e00a b.n 1000c554 +1000c53e: f859 3004 ldr.w r3, [r9, r4] +1000c542: f8d8 5000 ldr.w r5, [r8] +1000c546: f9b3 6028 ldrsh.w r6, [r3, #40] ; 0x28 +1000c54a: f9b5 5028 ldrsh.w r5, [r5, #40] ; 0x28 +1000c54e: 3c04 subs r4, #4 +1000c550: 42ae cmp r6, r5 +1000c552: da07 bge.n 1000c564 +1000c554: 1c4d adds r5, r1, #1 +1000c556: 3901 subs r1, #1 +1000c558: f849 3025 str.w r3, [r9, r5, lsl #2] +1000c55c: 1c4b adds r3, r1, #1 +1000c55e: f8d7 9000 ldr.w r9, [r7] +1000c562: d1ec bne.n 1000c53e +1000c564: 1c4b adds r3, r1, #1 +1000c566: f849 2023 str.w r2, [r9, r3, lsl #2] +1000c56a: f8d8 1000 ldr.w r1, [r8] +1000c56e: 6838 ldr r0, [r7, #0] +1000c570: 8d0a ldrh r2, [r1, #40] ; 0x28 +1000c572: f850 3023 ldr.w r3, [r0, r3, lsl #2] +1000c576: 851a strh r2, [r3, #40] ; 0x28 +1000c578: 4608 mov r0, r1 +1000c57a: 2240 movs r2, #64 ; 0x40 +1000c57c: 2100 movs r1, #0 +1000c57e: e8bd 43f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1000c582: f035 bdf3 b.w 1004216c +1000c586: 7c3b ldrb r3, [r7, #16] +1000c588: 1c72 adds r2, r6, #1 +1000c58a: 429a cmp r2, r3 +1000c58c: 60ba str r2, [r7, #8] +1000c58e: 4c32 ldr r4, [pc, #200] ; (1000c658 ) +1000c590: dd3f ble.n 1000c612 +1000c592: f103 4280 add.w r2, r3, #1073741824 ; 0x40000000 +1000c596: 6820 ldr r0, [r4, #0] +1000c598: 3a01 subs r2, #1 +1000c59a: f850 0022 ldr.w r0, [r0, r2, lsl #2] +1000c59e: f9b1 5028 ldrsh.w r5, [r1, #40] ; 0x28 +1000c5a2: f9b0 2028 ldrsh.w r2, [r0, #40] ; 0x28 +1000c5a6: 60a3 str r3, [r4, #8] +1000c5a8: 4295 cmp r5, r2 +1000c5aa: dc01 bgt.n 1000c5b0 +1000c5ac: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1000c5b0: 2240 movs r2, #64 ; 0x40 +1000c5b2: f010 fbfb bl 1001cdac +1000c5b6: 7c23 ldrb r3, [r4, #16] +1000c5b8: 6820 ldr r0, [r4, #0] +1000c5ba: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 +1000c5be: 3b01 subs r3, #1 +1000c5c0: f850 6023 ldr.w r6, [r0, r3, lsl #2] +1000c5c4: f8d7 c008 ldr.w ip, [r7, #8] +1000c5c8: f10c 32ff add.w r2, ip, #4294967295 +1000c5cc: 2a00 cmp r2, #0 +1000c5ce: dd40 ble.n 1000c652 +1000c5d0: f8d8 1000 ldr.w r1, [r8] +1000c5d4: 6803 ldr r3, [r0, #0] +1000c5d6: f9b1 9028 ldrsh.w r9, [r1, #40] ; 0x28 +1000c5da: f9b3 3028 ldrsh.w r3, [r3, #40] ; 0x28 +1000c5de: 454b cmp r3, r9 +1000c5e0: db20 blt.n 1000c624 +1000c5e2: 4601 mov r1, r0 +1000c5e4: 2300 movs r3, #0 +1000c5e6: e005 b.n 1000c5f4 +1000c5e8: f851 4f04 ldr.w r4, [r1, #4]! +1000c5ec: f9b4 4028 ldrsh.w r4, [r4, #40] ; 0x28 +1000c5f0: 454c cmp r4, r9 +1000c5f2: db19 blt.n 1000c628 +1000c5f4: 3301 adds r3, #1 +1000c5f6: 4293 cmp r3, r2 +1000c5f8: ea4f 0583 mov.w r5, r3, lsl #2 +1000c5fc: d1f4 bne.n 1000c5e8 +1000c5fe: b1fe cbz r6, 1000c640 +1000c600: 5146 str r6, [r0, r5] +1000c602: f8d8 0000 ldr.w r0, [r8] +1000c606: 2100 movs r1, #0 +1000c608: 2240 movs r2, #64 ; 0x40 +1000c60a: e8bd 43f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1000c60e: f010 bbdf b.w 1001cdd0 +1000c612: 6860 ldr r0, [r4, #4] +1000c614: 2240 movs r2, #64 ; 0x40 +1000c616: eb00 1086 add.w r0, r0, r6, lsl #6 +1000c61a: f010 fbc7 bl 1001cdac +1000c61e: 2600 movs r6, #0 +1000c620: 6820 ldr r0, [r4, #0] +1000c622: e7cf b.n 1000c5c4 +1000c624: 2500 movs r5, #0 +1000c626: 462b mov r3, r5 +1000c628: 0091 lsls r1, r2, #2 +1000c62a: 1844 adds r4, r0, r1 +1000c62c: f854 4c04 ldr.w r4, [r4, #-4] +1000c630: 3a01 subs r2, #1 +1000c632: 5044 str r4, [r0, r1] +1000c634: 4293 cmp r3, r2 +1000c636: f1a1 0104 sub.w r1, r1, #4 +1000c63a: 6838 ldr r0, [r7, #0] +1000c63c: dbf5 blt.n 1000c62a +1000c63e: e7de b.n 1000c5fe +1000c640: 687b ldr r3, [r7, #4] +1000c642: f10c 6c80 add.w ip, ip, #67108864 ; 0x4000000 +1000c646: f10c 3cff add.w ip, ip, #4294967295 +1000c64a: eb03 138c add.w r3, r3, ip, lsl #6 +1000c64e: 5143 str r3, [r0, r5] +1000c650: e7d7 b.n 1000c602 +1000c652: 2500 movs r5, #0 +1000c654: e7d3 b.n 1000c5fe +1000c656: bf00 nop +1000c658: 1005085c .word 0x1005085c + +1000c65c : +1000c65c: b5f0 push {r4, r5, r6, r7, lr} +1000c65e: 4c0b ldr r4, [pc, #44] ; (1000c68c ) +1000c660: b085 sub sp, #20 +1000c662: 2500 movs r5, #0 +1000c664: 9f0a ldr r7, [sp, #40] ; 0x28 +1000c666: 9501 str r5, [sp, #4] +1000c668: 9502 str r5, [sp, #8] +1000c66a: 9503 str r5, [sp, #12] +1000c66c: 2601 movs r6, #1 +1000c66e: 9d0b ldr r5, [sp, #44] ; 0x2c +1000c670: e884 000f stmia.w r4, {r0, r1, r2, r3} +1000c674: 9600 str r6, [sp, #0] +1000c676: 4623 mov r3, r4 +1000c678: 4905 ldr r1, [pc, #20] ; (1000c690 ) +1000c67a: f44f 7200 mov.w r2, #512 ; 0x200 +1000c67e: 4805 ldr r0, [pc, #20] ; (1000c694 ) +1000c680: 6127 str r7, [r4, #16] +1000c682: 6165 str r5, [r4, #20] +1000c684: f00e ffbe bl 1001b604 +1000c688: b005 add sp, #20 +1000c68a: bdf0 pop {r4, r5, r6, r7, pc} +1000c68c: 10050884 .word 0x10050884 +1000c690: 10046018 .word 0x10046018 +1000c694: 1000ca89 .word 0x1000ca89 + +1000c698 : +1000c698: 4770 bx lr +1000c69a: bf00 nop + +1000c69c : +1000c69c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000c6a0: 4f97 ldr r7, [pc, #604] ; (1000c900 ) +1000c6a2: b09f sub sp, #124 ; 0x7c +1000c6a4: 683d ldr r5, [r7, #0] +1000c6a6: 2400 movs r4, #0 +1000c6a8: f415 7540 ands.w r5, r5, #768 ; 0x300 +1000c6ac: 940d str r4, [sp, #52] ; 0x34 +1000c6ae: 940e str r4, [sp, #56] ; 0x38 +1000c6b0: 940f str r4, [sp, #60] ; 0x3c +1000c6b2: f8ad 4040 strh.w r4, [sp, #64] ; 0x40 +1000c6b6: 4682 mov sl, r0 +1000c6b8: 460e mov r6, r1 +1000c6ba: 4691 mov r9, r2 +1000c6bc: 4698 mov r8, r3 +1000c6be: 9c28 ldr r4, [sp, #160] ; 0xa0 +1000c6c0: f040 8176 bne.w 1000c9b0 +1000c6c4: 4b8f ldr r3, [pc, #572] ; (1000c904 ) +1000c6c6: f1a4 0208 sub.w r2, r4, #8 +1000c6ca: 2105 movs r1, #5 +1000c6cc: 2a38 cmp r2, #56 ; 0x38 +1000c6ce: 603d str r5, [r7, #0] +1000c6d0: 6019 str r1, [r3, #0] +1000c6d2: d912 bls.n 1000c6fa +1000c6d4: 4a8c ldr r2, [pc, #560] ; (1000c908 ) +1000c6d6: 4296 cmp r6, r2 +1000c6d8: f000 8092 beq.w 1000c800 +1000c6dc: 3202 adds r2, #2 +1000c6de: 4296 cmp r6, r2 +1000c6e0: f000 808e beq.w 1000c800 +1000c6e4: f502 1200 add.w r2, r2, #2097152 ; 0x200000 +1000c6e8: 4296 cmp r6, r2 +1000c6ea: f000 8089 beq.w 1000c800 +1000c6ee: 3a02 subs r2, #2 +1000c6f0: f026 0104 bic.w r1, r6, #4 +1000c6f4: 4291 cmp r1, r2 +1000c6f6: f000 8083 beq.w 1000c800 +1000c6fa: f426 4200 bic.w r2, r6, #32768 ; 0x8000 +1000c6fe: 2a01 cmp r2, #1 +1000c700: d074 beq.n 1000c7ec +1000c702: f04f 0b00 mov.w fp, #0 +1000c706: 203c movs r0, #60 ; 0x3c +1000c708: f010 fb32 bl 1001cd70 +1000c70c: 4607 mov r7, r0 +1000c70e: 2800 cmp r0, #0 +1000c710: f000 819f beq.w 1000ca52 +1000c714: f1b8 0f20 cmp.w r8, #32 +1000c718: bfb4 ite lt +1000c71a: 4643 movlt r3, r8 +1000c71c: 2320 movge r3, #32 +1000c71e: 4605 mov r5, r0 +1000c720: f805 3b01 strb.w r3, [r5], #1 +1000c724: 4651 mov r1, sl +1000c726: 4642 mov r2, r8 +1000c728: 4628 mov r0, r5 +1000c72a: f010 fb3f bl 1001cdac +1000c72e: 633c str r4, [r7, #48] ; 0x30 +1000c730: 2c00 cmp r4, #0 +1000c732: f040 80a7 bne.w 1000c884 +1000c736: 9b29 ldr r3, [sp, #164] ; 0xa4 +1000c738: 62be str r6, [r7, #40] ; 0x28 +1000c73a: 637b str r3, [r7, #52] ; 0x34 +1000c73c: 9b2a ldr r3, [sp, #168] ; 0xa8 +1000c73e: 2b00 cmp r3, #0 +1000c740: f000 8139 beq.w 1000c9b6 +1000c744: 9b2a ldr r3, [sp, #168] ; 0xa8 +1000c746: 63bb str r3, [r7, #56] ; 0x38 +1000c748: 200e movs r0, #14 +1000c74a: 4970 ldr r1, [pc, #448] ; (1000c90c ) +1000c74c: 2200 movs r2, #0 +1000c74e: f001 f89f bl 1000d890 +1000c752: 2000 movs r0, #0 +1000c754: 4602 mov r2, r0 +1000c756: 496e ldr r1, [pc, #440] ; (1000c910 ) +1000c758: f001 f89a bl 1000d890 +1000c75c: 2001 movs r0, #1 +1000c75e: 496d ldr r1, [pc, #436] ; (1000c914 ) +1000c760: 2200 movs r2, #0 +1000c762: f001 f895 bl 1000d890 +1000c766: 2002 movs r0, #2 +1000c768: 496b ldr r1, [pc, #428] ; (1000c918 ) +1000c76a: 2200 movs r2, #0 +1000c76c: f001 f890 bl 1000d890 +1000c770: f001 f8ea bl 1000d948 +1000c774: 2800 cmp r0, #0 +1000c776: f040 8094 bne.w 1000c8a2 +1000c77a: 6abb ldr r3, [r7, #40] ; 0x28 +1000c77c: 4a67 ldr r2, [pc, #412] ; (1000c91c ) +1000c77e: 4293 cmp r3, r2 +1000c780: f000 809d beq.w 1000c8be +1000c784: dc57 bgt.n 1000c836 +1000c786: 2b01 cmp r3, #1 +1000c788: d040 beq.n 1000c80c +1000c78a: f300 8090 bgt.w 1000c8ae +1000c78e: 2b00 cmp r3, #0 +1000c790: d173 bne.n 1000c87a +1000c792: 4619 mov r1, r3 +1000c794: 9300 str r3, [sp, #0] +1000c796: 9301 str r3, [sp, #4] +1000c798: 9302 str r3, [sp, #8] +1000c79a: 9303 str r3, [sp, #12] +1000c79c: 9304 str r3, [sp, #16] +1000c79e: 461a mov r2, r3 +1000c7a0: 485f ldr r0, [pc, #380] ; (1000c920 ) +1000c7a2: f002 f911 bl 1000e9c8 +1000c7a6: b920 cbnz r0, 1000c7b2 +1000c7a8: 4629 mov r1, r5 +1000c7aa: 485d ldr r0, [pc, #372] ; (1000c920 ) +1000c7ac: 783a ldrb r2, [r7, #0] +1000c7ae: f002 f883 bl 1000e8b8 +1000c7b2: 4d5c ldr r5, [pc, #368] ; (1000c924 ) +1000c7b4: 9b2a ldr r3, [sp, #168] ; 0xa8 +1000c7b6: 602f str r7, [r5, #0] +1000c7b8: 2600 movs r6, #0 +1000c7ba: 2b00 cmp r3, #0 +1000c7bc: f000 8105 beq.w 1000c9ca +1000c7c0: 2400 movs r4, #0 +1000c7c2: 4638 mov r0, r7 +1000c7c4: 4621 mov r1, r4 +1000c7c6: 602c str r4, [r5, #0] +1000c7c8: f010 fae8 bl 1001cd9c +1000c7cc: 4620 mov r0, r4 +1000c7ce: 4950 ldr r1, [pc, #320] ; (1000c910 ) +1000c7d0: f001 f888 bl 1000d8e4 +1000c7d4: 200e movs r0, #14 +1000c7d6: 494d ldr r1, [pc, #308] ; (1000c90c ) +1000c7d8: f001 f884 bl 1000d8e4 +1000c7dc: 2002 movs r0, #2 +1000c7de: 494e ldr r1, [pc, #312] ; (1000c918 ) +1000c7e0: f001 f880 bl 1000d8e4 +1000c7e4: 4630 mov r0, r6 +1000c7e6: b01f add sp, #124 ; 0x7c +1000c7e8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000c7ec: 2c05 cmp r4, #5 +1000c7ee: d088 beq.n 1000c702 +1000c7f0: 2c0d cmp r4, #13 +1000c7f2: d086 beq.n 1000c702 +1000c7f4: 2c0a cmp r4, #10 +1000c7f6: f000 80fd beq.w 1000c9f4 +1000c7fa: 2c1a cmp r4, #26 +1000c7fc: f000 809a beq.w 1000c934 +1000c800: 2203 movs r2, #3 +1000c802: 601a str r2, [r3, #0] +1000c804: 2004 movs r0, #4 +1000c806: b01f add sp, #124 ; 0x7c +1000c808: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000c80c: 4844 ldr r0, [pc, #272] ; (1000c920 ) +1000c80e: 2106 movs r1, #6 +1000c810: 2202 movs r2, #2 +1000c812: f002 f8b1 bl 1000e978 +1000c816: 2800 cmp r0, #0 +1000c818: d1cb bne.n 1000c7b2 +1000c81a: 2101 movs r1, #1 +1000c81c: 6b7b ldr r3, [r7, #52] ; 0x34 +1000c81e: 9001 str r0, [sp, #4] +1000c820: 9002 str r0, [sp, #8] +1000c822: 9100 str r1, [sp, #0] +1000c824: 6afa ldr r2, [r7, #44] ; 0x2c +1000c826: 9203 str r2, [sp, #12] +1000c828: 8e3e ldrh r6, [r7, #48] ; 0x30 +1000c82a: 4602 mov r2, r0 +1000c82c: 9604 str r6, [sp, #16] +1000c82e: 483c ldr r0, [pc, #240] ; (1000c920 ) +1000c830: f002 f8ca bl 1000e9c8 +1000c834: e7b7 b.n 1000c7a6 +1000c836: 4a3c ldr r2, [pc, #240] ; (1000c928 ) +1000c838: 4293 cmp r3, r2 +1000c83a: d040 beq.n 1000c8be +1000c83c: dc17 bgt.n 1000c86e +1000c83e: 3a02 subs r2, #2 +1000c840: 4293 cmp r3, r2 +1000c842: d11a bne.n 1000c87a +1000c844: 4836 ldr r0, [pc, #216] ; (1000c920 ) +1000c846: 2106 movs r1, #6 +1000c848: 2201 movs r2, #1 +1000c84a: f002 f895 bl 1000e978 +1000c84e: 2800 cmp r0, #0 +1000c850: d1af bne.n 1000c7b2 +1000c852: 4602 mov r2, r0 +1000c854: 9000 str r0, [sp, #0] +1000c856: 9001 str r0, [sp, #4] +1000c858: 9002 str r0, [sp, #8] +1000c85a: 9003 str r0, [sp, #12] +1000c85c: 9004 str r0, [sp, #16] +1000c85e: 4603 mov r3, r0 +1000c860: 2102 movs r1, #2 +1000c862: 482f ldr r0, [pc, #188] ; (1000c920 ) +1000c864: f002 f8b0 bl 1000e9c8 +1000c868: 2800 cmp r0, #0 +1000c86a: d03e beq.n 1000c8ea +1000c86c: e7a1 b.n 1000c7b2 +1000c86e: 4a2f ldr r2, [pc, #188] ; (1000c92c ) +1000c870: 4293 cmp r3, r2 +1000c872: d024 beq.n 1000c8be +1000c874: f5b3 0fc0 cmp.w r3, #6291456 ; 0x600000 +1000c878: d021 beq.n 1000c8be +1000c87a: 4619 mov r1, r3 +1000c87c: 482c ldr r0, [pc, #176] ; (1000c930 ) +1000c87e: f035 fc43 bl 10042108 +1000c882: e796 b.n 1000c7b2 +1000c884: 1c60 adds r0, r4, #1 +1000c886: f010 fa73 bl 1001cd70 +1000c88a: 62f8 str r0, [r7, #44] ; 0x2c +1000c88c: 2800 cmp r0, #0 +1000c88e: f000 80d2 beq.w 1000ca36 +1000c892: f1bb 0f00 cmp.w fp, #0 +1000c896: d12e bne.n 1000c8f6 +1000c898: 4649 mov r1, r9 +1000c89a: 4622 mov r2, r4 +1000c89c: f010 fa86 bl 1001cdac +1000c8a0: e749 b.n 1000c736 +1000c8a2: 2000 movs r0, #0 +1000c8a4: 4601 mov r1, r0 +1000c8a6: 4602 mov r2, r0 +1000c8a8: f001 f84c bl 1000d944 +1000c8ac: e765 b.n 1000c77a +1000c8ae: f248 0201 movw r2, #32769 ; 0x8001 +1000c8b2: 4293 cmp r3, r2 +1000c8b4: d0aa beq.n 1000c80c +1000c8b6: 4a14 ldr r2, [pc, #80] ; (1000c908 ) +1000c8b8: 4293 cmp r3, r2 +1000c8ba: d0c3 beq.n 1000c844 +1000c8bc: e7dd b.n 1000c87a +1000c8be: 4818 ldr r0, [pc, #96] ; (1000c920 ) +1000c8c0: 2106 movs r1, #6 +1000c8c2: 2201 movs r2, #1 +1000c8c4: f002 f858 bl 1000e978 +1000c8c8: 2800 cmp r0, #0 +1000c8ca: f47f af72 bne.w 1000c7b2 +1000c8ce: 4602 mov r2, r0 +1000c8d0: 9000 str r0, [sp, #0] +1000c8d2: 9001 str r0, [sp, #4] +1000c8d4: 9002 str r0, [sp, #8] +1000c8d6: 9003 str r0, [sp, #12] +1000c8d8: 9004 str r0, [sp, #16] +1000c8da: 4603 mov r3, r0 +1000c8dc: 2103 movs r1, #3 +1000c8de: 4810 ldr r0, [pc, #64] ; (1000c920 ) +1000c8e0: f002 f872 bl 1000e9c8 +1000c8e4: 2800 cmp r0, #0 +1000c8e6: f47f af64 bne.w 1000c7b2 +1000c8ea: 6af9 ldr r1, [r7, #44] ; 0x2c +1000c8ec: 8e3a ldrh r2, [r7, #48] ; 0x30 +1000c8ee: 480c ldr r0, [pc, #48] ; (1000c920 ) +1000c8f0: f002 f944 bl 1000eb7c +1000c8f4: e757 b.n 1000c7a6 +1000c8f6: a90d add r1, sp, #52 ; 0x34 +1000c8f8: 4622 mov r2, r4 +1000c8fa: f010 fa57 bl 1001cdac +1000c8fe: e71a b.n 1000c736 +1000c900: 10050858 .word 0x10050858 +1000c904: 1004d7fc .word 0x1004d7fc +1000c908: 00200002 .word 0x00200002 +1000c90c: 1000c38d .word 0x1000c38d +1000c910: 1000c4b1 .word 0x1000c4b1 +1000c914: 1000c43d .word 0x1000c43d +1000c918: 1000c421 .word 0x1000c421 +1000c91c: 00200004 .word 0x00200004 +1000c920: 100450ac .word 0x100450ac +1000c924: 10050880 .word 0x10050880 +1000c928: 00400004 .word 0x00400004 +1000c92c: 00400006 .word 0x00400006 +1000c930: 10046064 .word 0x10046064 +1000c934: aa13 add r2, sp, #76 ; 0x4c +1000c936: ab14 add r3, sp, #80 ; 0x50 +1000c938: f10d 0c58 add.w ip, sp, #88 ; 0x58 +1000c93c: ad18 add r5, sp, #96 ; 0x60 +1000c93e: a819 add r0, sp, #100 ; 0x64 +1000c940: a91a add r1, sp, #104 ; 0x68 +1000c942: 9200 str r2, [sp, #0] +1000c944: 9301 str r3, [sp, #4] +1000c946: aa1b add r2, sp, #108 ; 0x6c +1000c948: ab1c add r3, sp, #112 ; 0x70 +1000c94a: ac1d add r4, sp, #116 ; 0x74 +1000c94c: f10d 0b54 add.w fp, sp, #84 ; 0x54 +1000c950: af17 add r7, sp, #92 ; 0x5c +1000c952: 9505 str r5, [sp, #20] +1000c954: 9006 str r0, [sp, #24] +1000c956: 2500 movs r5, #0 +1000c958: 9107 str r1, [sp, #28] +1000c95a: 9208 str r2, [sp, #32] +1000c95c: 9309 str r3, [sp, #36] ; 0x24 +1000c95e: aa11 add r2, sp, #68 ; 0x44 +1000c960: ab12 add r3, sp, #72 ; 0x48 +1000c962: 940a str r4, [sp, #40] ; 0x28 +1000c964: f8cd b008 str.w fp, [sp, #8] +1000c968: f8cd c00c str.w ip, [sp, #12] +1000c96c: 9704 str r7, [sp, #16] +1000c96e: 4648 mov r0, r9 +1000c970: 4941 ldr r1, [pc, #260] ; (1000ca78 ) +1000c972: 9511 str r5, [sp, #68] ; 0x44 +1000c974: 9512 str r5, [sp, #72] ; 0x48 +1000c976: 9513 str r5, [sp, #76] ; 0x4c +1000c978: 9514 str r5, [sp, #80] ; 0x50 +1000c97a: 9515 str r5, [sp, #84] ; 0x54 +1000c97c: 9516 str r5, [sp, #88] ; 0x58 +1000c97e: 9517 str r5, [sp, #92] ; 0x5c +1000c980: 9518 str r5, [sp, #96] ; 0x60 +1000c982: 9519 str r5, [sp, #100] ; 0x64 +1000c984: 951a str r5, [sp, #104] ; 0x68 +1000c986: 951b str r5, [sp, #108] ; 0x6c +1000c988: 951c str r5, [sp, #112] ; 0x70 +1000c98a: 951d str r5, [sp, #116] ; 0x74 +1000c98c: f035 fda8 bl 100424e0 +1000c990: ab10 add r3, sp, #64 ; 0x40 +1000c992: f10d 0233 add.w r2, sp, #51 ; 0x33 +1000c996: f853 1f04 ldr.w r1, [r3, #4]! +1000c99a: 42a3 cmp r3, r4 +1000c99c: f802 1f01 strb.w r1, [r2, #1]! +1000c9a0: d1f9 bne.n 1000c996 +1000c9a2: 2300 movs r3, #0 +1000c9a4: f88d 3041 strb.w r3, [sp, #65] ; 0x41 +1000c9a8: f04f 0b01 mov.w fp, #1 +1000c9ac: 240d movs r4, #13 +1000c9ae: e6aa b.n 1000c706 +1000c9b0: f04f 30ff mov.w r0, #4294967295 +1000c9b4: e727 b.n 1000c806 +1000c9b6: 4619 mov r1, r3 +1000c9b8: f107 0038 add.w r0, r7, #56 ; 0x38 +1000c9bc: f010 fa2e bl 1001ce1c +1000c9c0: 6bbb ldr r3, [r7, #56] ; 0x38 +1000c9c2: 2b00 cmp r3, #0 +1000c9c4: d04d beq.n 1000ca62 +1000c9c6: 9311 str r3, [sp, #68] ; 0x44 +1000c9c8: e6be b.n 1000c748 +1000c9ca: f107 0038 add.w r0, r7, #56 ; 0x38 +1000c9ce: f643 2198 movw r1, #15000 ; 0x3a98 +1000c9d2: f010 fa43 bl 1001ce5c +1000c9d6: 2800 cmp r0, #0 +1000c9d8: d035 beq.n 1000ca46 +1000c9da: 6b3b ldr r3, [r7, #48] ; 0x30 +1000c9dc: 2b00 cmp r3, #0 +1000c9de: d13b bne.n 1000ca58 +1000c9e0: f02f f9ee bl 1003bdc0 +1000c9e4: 3000 adds r0, #0 +1000c9e6: bf18 it ne +1000c9e8: 2001 movne r0, #1 +1000c9ea: 4246 negs r6, r0 +1000c9ec: a811 add r0, sp, #68 ; 0x44 +1000c9ee: f010 fa1d bl 1001ce2c +1000c9f2: e6e5 b.n 1000c7c0 +1000c9f4: aa13 add r2, sp, #76 ; 0x4c +1000c9f6: ab14 add r3, sp, #80 ; 0x50 +1000c9f8: ac15 add r4, sp, #84 ; 0x54 +1000c9fa: 2500 movs r5, #0 +1000c9fc: e88d 001c stmia.w sp, {r2, r3, r4} +1000ca00: 4648 mov r0, r9 +1000ca02: aa11 add r2, sp, #68 ; 0x44 +1000ca04: ab12 add r3, sp, #72 ; 0x48 +1000ca06: 491d ldr r1, [pc, #116] ; (1000ca7c ) +1000ca08: 9511 str r5, [sp, #68] ; 0x44 +1000ca0a: 9512 str r5, [sp, #72] ; 0x48 +1000ca0c: 9513 str r5, [sp, #76] ; 0x4c +1000ca0e: 9514 str r5, [sp, #80] ; 0x50 +1000ca10: 9515 str r5, [sp, #84] ; 0x54 +1000ca12: f035 fd65 bl 100424e0 +1000ca16: ab10 add r3, sp, #64 ; 0x40 +1000ca18: f10d 0233 add.w r2, sp, #51 ; 0x33 +1000ca1c: f853 1f04 ldr.w r1, [r3, #4]! +1000ca20: 42a3 cmp r3, r4 +1000ca22: f802 1f01 strb.w r1, [r2, #1]! +1000ca26: d1f9 bne.n 1000ca1c +1000ca28: 2300 movs r3, #0 +1000ca2a: f88d 3039 strb.w r3, [sp, #57] ; 0x39 +1000ca2e: f04f 0b01 mov.w fp, #1 +1000ca32: 2405 movs r4, #5 +1000ca34: e667 b.n 1000c706 +1000ca36: 9b2a ldr r3, [sp, #168] ; 0xa8 +1000ca38: 4d11 ldr r5, [pc, #68] ; (1000ca80 ) +1000ca3a: f06f 061a mvn.w r6, #26 +1000ca3e: 2b00 cmp r3, #0 +1000ca40: f47f aebe bne.w 1000c7c0 +1000ca44: e7d2 b.n 1000c9ec +1000ca46: 480f ldr r0, [pc, #60] ; (1000ca84 ) +1000ca48: f035 fb5e bl 10042108 +1000ca4c: b96c cbnz r4, 1000ca6a +1000ca4e: 2602 movs r6, #2 +1000ca50: e7cc b.n 1000c9ec +1000ca52: f06f 001a mvn.w r0, #26 +1000ca56: e6d6 b.n 1000c806 +1000ca58: 992a ldr r1, [sp, #168] ; 0xa8 +1000ca5a: 6af8 ldr r0, [r7, #44] ; 0x2c +1000ca5c: f010 f99e bl 1001cd9c +1000ca60: e7be b.n 1000c9e0 +1000ca62: f06f 0615 mvn.w r6, #21 +1000ca66: 4d06 ldr r5, [pc, #24] ; (1000ca80 ) +1000ca68: e7c0 b.n 1000c9ec +1000ca6a: 992a ldr r1, [sp, #168] ; 0xa8 +1000ca6c: 6af8 ldr r0, [r7, #44] ; 0x2c +1000ca6e: f010 f995 bl 1001cd9c +1000ca72: 2602 movs r6, #2 +1000ca74: e7ba b.n 1000c9ec +1000ca76: bf00 nop +1000ca78: 1004602c .word 0x1004602c +1000ca7c: 1004604c .word 0x1004604c +1000ca80: 10050880 .word 0x10050880 +1000ca84: 10046098 .word 0x10046098 + +1000ca88 : +1000ca88: b570 push {r4, r5, r6, lr} +1000ca8a: 4604 mov r4, r0 +1000ca8c: b084 sub sp, #16 +1000ca8e: 481d ldr r0, [pc, #116] ; (1000cb04 ) +1000ca90: f035 fb3a bl 10042108 +1000ca94: 6821 ldr r1, [r4, #0] +1000ca96: 6860 ldr r0, [r4, #4] +1000ca98: 68e2 ldr r2, [r4, #12] +1000ca9a: 68a3 ldr r3, [r4, #8] +1000ca9c: 6926 ldr r6, [r4, #16] +1000ca9e: 6964 ldr r4, [r4, #20] +1000caa0: 2500 movs r5, #0 +1000caa2: 9600 str r6, [sp, #0] +1000caa4: 9401 str r4, [sp, #4] +1000caa6: 9502 str r5, [sp, #8] +1000caa8: f7ff fdf8 bl 1000c69c +1000caac: 4601 mov r1, r0 +1000caae: b980 cbnz r0, 1000cad2 +1000cab0: 4b15 ldr r3, [pc, #84] ; (1000cb08 ) +1000cab2: 781b ldrb r3, [r3, #0] +1000cab4: 2b02 cmp r3, #2 +1000cab6: d012 beq.n 1000cade +1000cab8: f002 fc7a bl 1000f3b0 +1000cabc: 4813 ldr r0, [pc, #76] ; (1000cb0c ) +1000cabe: f002 fd55 bl 1000f56c +1000cac2: 7803 ldrb r3, [r0, #0] +1000cac4: b92b cbnz r3, 1000cad2 +1000cac6: 7843 ldrb r3, [r0, #1] +1000cac8: b91b cbnz r3, 1000cad2 +1000caca: 7883 ldrb r3, [r0, #2] +1000cacc: b90b cbnz r3, 1000cad2 +1000cace: 78c3 ldrb r3, [r0, #3] +1000cad0: b18b cbz r3, 1000caf6 +1000cad2: 2000 movs r0, #0 +1000cad4: b004 add sp, #16 +1000cad6: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1000cada: f00e be7b b.w 1001b7d4 +1000cade: 480b ldr r0, [pc, #44] ; (1000cb0c ) +1000cae0: f002 fd48 bl 1000f574 +1000cae4: 4809 ldr r0, [pc, #36] ; (1000cb0c ) +1000cae6: f00d fedf bl 1001a8a8 +1000caea: 2000 movs r0, #0 +1000caec: b004 add sp, #16 +1000caee: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1000caf2: f00e be6f b.w 1001b7d4 +1000caf6: 4806 ldr r0, [pc, #24] ; (1000cb10 ) +1000caf8: f035 fb06 bl 10042108 +1000cafc: 4803 ldr r0, [pc, #12] ; (1000cb0c ) +1000cafe: f002 fda9 bl 1000f654 +1000cb02: e7e6 b.n 1000cad2 +1000cb04: 100460b4 .word 0x100460b4 +1000cb08: 1004d7e0 .word 0x1004d7e0 +1000cb0c: 10050ae4 .word 0x10050ae4 +1000cb10: 100460cc .word 0x100460cc + +1000cb14 : +1000cb14: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000cb18: 4d9a ldr r5, [pc, #616] ; (1000cd84 ) +1000cb1a: b08d sub sp, #52 ; 0x34 +1000cb1c: 682c ldr r4, [r5, #0] +1000cb1e: 4681 mov r9, r0 +1000cb20: f414 7440 ands.w r4, r4, #768 ; 0x300 +1000cb24: 468b mov fp, r1 +1000cb26: 4690 mov r8, r2 +1000cb28: 469a mov sl, r3 +1000cb2a: 9f17 ldr r7, [sp, #92] ; 0x5c +1000cb2c: 9e18 ldr r6, [sp, #96] ; 0x60 +1000cb2e: f040 80da bne.w 1000cce6 +1000cb32: 4b95 ldr r3, [pc, #596] ; (1000cd88 ) +1000cb34: 2205 movs r2, #5 +1000cb36: 203c movs r0, #60 ; 0x3c +1000cb38: 602c str r4, [r5, #0] +1000cb3a: 601a str r2, [r3, #0] +1000cb3c: f010 f918 bl 1001cd70 +1000cb40: 4604 mov r4, r0 +1000cb42: 2800 cmp r0, #0 +1000cb44: f000 810a beq.w 1000cd5c +1000cb48: b167 cbz r7, 1000cb64 +1000cb4a: f1bb 0f00 cmp.w fp, #0 +1000cb4e: d009 beq.n 1000cb64 +1000cb50: 2f20 cmp r7, #32 +1000cb52: bfb4 ite lt +1000cb54: 463b movlt r3, r7 +1000cb56: 2320 movge r3, #32 +1000cb58: f800 3b01 strb.w r3, [r0], #1 +1000cb5c: 4659 mov r1, fp +1000cb5e: 463a mov r2, r7 +1000cb60: f010 f924 bl 1001cdac +1000cb64: 4649 mov r1, r9 +1000cb66: f104 0022 add.w r0, r4, #34 ; 0x22 +1000cb6a: 9a16 ldr r2, [sp, #88] ; 0x58 +1000cb6c: f010 f91e bl 1001cdac +1000cb70: f1a6 0308 sub.w r3, r6, #8 +1000cb74: 2b38 cmp r3, #56 ; 0x38 +1000cb76: d91d bls.n 1000cbb4 +1000cb78: 4b84 ldr r3, [pc, #528] ; (1000cd8c ) +1000cb7a: 4598 cmp r8, r3 +1000cb7c: d076 beq.n 1000cc6c +1000cb7e: 3302 adds r3, #2 +1000cb80: 4598 cmp r8, r3 +1000cb82: d073 beq.n 1000cc6c +1000cb84: f503 1300 add.w r3, r3, #2097152 ; 0x200000 +1000cb88: 4598 cmp r8, r3 +1000cb8a: d06f beq.n 1000cc6c +1000cb8c: 3b02 subs r3, #2 +1000cb8e: f028 0204 bic.w r2, r8, #4 +1000cb92: 429a cmp r2, r3 +1000cb94: d06a beq.n 1000cc6c +1000cb96: 2e05 cmp r6, #5 +1000cb98: d10e bne.n 1000cbb8 +1000cb9a: 6326 str r6, [r4, #48] ; 0x30 +1000cb9c: 1c70 adds r0, r6, #1 +1000cb9e: f010 f8e7 bl 1001cd70 +1000cba2: 62e0 str r0, [r4, #44] ; 0x2c +1000cba4: 2800 cmp r0, #0 +1000cba6: f000 80d9 beq.w 1000cd5c +1000cbaa: 4651 mov r1, sl +1000cbac: 4632 mov r2, r6 +1000cbae: f010 f8fd bl 1001cdac +1000cbb2: e008 b.n 1000cbc6 +1000cbb4: 2e0d cmp r6, #13 +1000cbb6: d0f0 beq.n 1000cb9a +1000cbb8: f428 4300 bic.w r3, r8, #32768 ; 0x8000 +1000cbbc: 2b01 cmp r3, #1 +1000cbbe: d055 beq.n 1000cc6c +1000cbc0: 6326 str r6, [r4, #48] ; 0x30 +1000cbc2: 2e00 cmp r6, #0 +1000cbc4: d1ea bne.n 1000cb9c +1000cbc6: 9b19 ldr r3, [sp, #100] ; 0x64 +1000cbc8: f8c4 8028 str.w r8, [r4, #40] ; 0x28 +1000cbcc: 6363 str r3, [r4, #52] ; 0x34 +1000cbce: 9b1a ldr r3, [sp, #104] ; 0x68 +1000cbd0: 2b00 cmp r3, #0 +1000cbd2: f000 8105 beq.w 1000cde0 +1000cbd6: 9b1a ldr r3, [sp, #104] ; 0x68 +1000cbd8: 63a3 str r3, [r4, #56] ; 0x38 +1000cbda: 200e movs r0, #14 +1000cbdc: 496c ldr r1, [pc, #432] ; (1000cd90 ) +1000cbde: 2200 movs r2, #0 +1000cbe0: f000 fe56 bl 1000d890 +1000cbe4: 2000 movs r0, #0 +1000cbe6: 4602 mov r2, r0 +1000cbe8: 496a ldr r1, [pc, #424] ; (1000cd94 ) +1000cbea: f000 fe51 bl 1000d890 +1000cbee: 2500 movs r5, #0 +1000cbf0: 2001 movs r0, #1 +1000cbf2: 4969 ldr r1, [pc, #420] ; (1000cd98 ) +1000cbf4: 2200 movs r2, #0 +1000cbf6: f000 fe4b bl 1000d890 +1000cbfa: 2002 movs r0, #2 +1000cbfc: 4967 ldr r1, [pc, #412] ; (1000cd9c ) +1000cbfe: 462a mov r2, r5 +1000cc00: f000 fe46 bl 1000d890 +1000cc04: 9408 str r4, [sp, #32] +1000cc06: 9509 str r5, [sp, #36] ; 0x24 +1000cc08: 950a str r5, [sp, #40] ; 0x28 +1000cc0a: 950b str r5, [sp, #44] ; 0x2c +1000cc0c: f000 fe9c bl 1000d948 +1000cc10: 2800 cmp r0, #0 +1000cc12: d16b bne.n 1000ccec +1000cc14: 9b08 ldr r3, [sp, #32] +1000cc16: b183 cbz r3, 1000cc3a +1000cc18: 6a9b ldr r3, [r3, #40] ; 0x28 +1000cc1a: 4a5c ldr r2, [pc, #368] ; (1000cd8c ) +1000cc1c: 4293 cmp r3, r2 +1000cc1e: d06b beq.n 1000ccf8 +1000cc20: dc43 bgt.n 1000ccaa +1000cc22: 2b01 cmp r3, #1 +1000cc24: f000 8083 beq.w 1000cd2e +1000cc28: f248 0201 movw r2, #32769 ; 0x8001 +1000cc2c: 4293 cmp r3, r2 +1000cc2e: d07e beq.n 1000cd2e +1000cc30: b303 cbz r3, 1000cc74 +1000cc32: 4619 mov r1, r3 +1000cc34: 485a ldr r0, [pc, #360] ; (1000cda0 ) +1000cc36: f035 fa67 bl 10042108 +1000cc3a: 4d5a ldr r5, [pc, #360] ; (1000cda4 ) +1000cc3c: 9b1a ldr r3, [sp, #104] ; 0x68 +1000cc3e: 602c str r4, [r5, #0] +1000cc40: 2b00 cmp r3, #0 +1000cc42: f000 80b9 beq.w 1000cdb8 +1000cc46: 2400 movs r4, #0 +1000cc48: 2300 movs r3, #0 +1000cc4a: 4618 mov r0, r3 +1000cc4c: 4951 ldr r1, [pc, #324] ; (1000cd94 ) +1000cc4e: 602b str r3, [r5, #0] +1000cc50: f000 fe48 bl 1000d8e4 +1000cc54: 200e movs r0, #14 +1000cc56: 494e ldr r1, [pc, #312] ; (1000cd90 ) +1000cc58: f000 fe44 bl 1000d8e4 +1000cc5c: 2002 movs r0, #2 +1000cc5e: 494f ldr r1, [pc, #316] ; (1000cd9c ) +1000cc60: f000 fe40 bl 1000d8e4 +1000cc64: 4620 mov r0, r4 +1000cc66: b00d add sp, #52 ; 0x34 +1000cc68: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000cc6c: 2004 movs r0, #4 +1000cc6e: b00d add sp, #52 ; 0x34 +1000cc70: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000cc74: 4619 mov r1, r3 +1000cc76: 9300 str r3, [sp, #0] +1000cc78: 9301 str r3, [sp, #4] +1000cc7a: 9302 str r3, [sp, #8] +1000cc7c: 9303 str r3, [sp, #12] +1000cc7e: 9304 str r3, [sp, #16] +1000cc80: 461a mov r2, r3 +1000cc82: 4849 ldr r0, [pc, #292] ; (1000cda8 ) +1000cc84: f001 fea0 bl 1000e9c8 +1000cc88: 2800 cmp r0, #0 +1000cc8a: d1d6 bne.n 1000cc3a +1000cc8c: 9908 ldr r1, [sp, #32] +1000cc8e: a809 add r0, sp, #36 ; 0x24 +1000cc90: 3122 adds r1, #34 ; 0x22 +1000cc92: 2206 movs r2, #6 +1000cc94: f035 fa64 bl 10042160 +1000cc98: 9b08 ldr r3, [sp, #32] +1000cc9a: 781b ldrb r3, [r3, #0] +1000cc9c: 2b00 cmp r3, #0 +1000cc9e: d164 bne.n 1000cd6a +1000cca0: a909 add r1, sp, #36 ; 0x24 +1000cca2: 4841 ldr r0, [pc, #260] ; (1000cda8 ) +1000cca4: f001 fe32 bl 1000e90c +1000cca8: e7c7 b.n 1000cc3a +1000ccaa: 4a40 ldr r2, [pc, #256] ; (1000cdac ) +1000ccac: 4293 cmp r3, r2 +1000ccae: d023 beq.n 1000ccf8 +1000ccb0: dd57 ble.n 1000cd62 +1000ccb2: 4a3f ldr r2, [pc, #252] ; (1000cdb0 ) +1000ccb4: 4293 cmp r3, r2 +1000ccb6: d002 beq.n 1000ccbe +1000ccb8: 3202 adds r2, #2 +1000ccba: 4293 cmp r3, r2 +1000ccbc: d1b9 bne.n 1000cc32 +1000ccbe: 483a ldr r0, [pc, #232] ; (1000cda8 ) +1000ccc0: 2106 movs r1, #6 +1000ccc2: 2201 movs r2, #1 +1000ccc4: f001 fe58 bl 1000e978 +1000ccc8: 2800 cmp r0, #0 +1000ccca: d1b6 bne.n 1000cc3a +1000cccc: 4602 mov r2, r0 +1000ccce: 9000 str r0, [sp, #0] +1000ccd0: 9001 str r0, [sp, #4] +1000ccd2: 9002 str r0, [sp, #8] +1000ccd4: 9003 str r0, [sp, #12] +1000ccd6: 9004 str r0, [sp, #16] +1000ccd8: 4603 mov r3, r0 +1000ccda: 2103 movs r1, #3 +1000ccdc: 4832 ldr r0, [pc, #200] ; (1000cda8 ) +1000ccde: f001 fe73 bl 1000e9c8 +1000cce2: b1e8 cbz r0, 1000cd20 +1000cce4: e7a9 b.n 1000cc3a +1000cce6: f04f 30ff mov.w r0, #4294967295 +1000ccea: e7c0 b.n 1000cc6e +1000ccec: 4628 mov r0, r5 +1000ccee: 4629 mov r1, r5 +1000ccf0: 462a mov r2, r5 +1000ccf2: f000 fe27 bl 1000d944 +1000ccf6: e78d b.n 1000cc14 +1000ccf8: 482b ldr r0, [pc, #172] ; (1000cda8 ) +1000ccfa: 2106 movs r1, #6 +1000ccfc: 2201 movs r2, #1 +1000ccfe: f001 fe3b bl 1000e978 +1000cd02: 2800 cmp r0, #0 +1000cd04: d199 bne.n 1000cc3a +1000cd06: 4602 mov r2, r0 +1000cd08: 9000 str r0, [sp, #0] +1000cd0a: 9001 str r0, [sp, #4] +1000cd0c: 9002 str r0, [sp, #8] +1000cd0e: 9003 str r0, [sp, #12] +1000cd10: 9004 str r0, [sp, #16] +1000cd12: 4603 mov r3, r0 +1000cd14: 2102 movs r1, #2 +1000cd16: 4824 ldr r0, [pc, #144] ; (1000cda8 ) +1000cd18: f001 fe56 bl 1000e9c8 +1000cd1c: 2800 cmp r0, #0 +1000cd1e: d18c bne.n 1000cc3a +1000cd20: 9b08 ldr r3, [sp, #32] +1000cd22: 4821 ldr r0, [pc, #132] ; (1000cda8 ) +1000cd24: 6ad9 ldr r1, [r3, #44] ; 0x2c +1000cd26: 8e1a ldrh r2, [r3, #48] ; 0x30 +1000cd28: f001 ff28 bl 1000eb7c +1000cd2c: e7ac b.n 1000cc88 +1000cd2e: 481e ldr r0, [pc, #120] ; (1000cda8 ) +1000cd30: 2106 movs r1, #6 +1000cd32: 2202 movs r2, #2 +1000cd34: f001 fe20 bl 1000e978 +1000cd38: 2800 cmp r0, #0 +1000cd3a: f47f af7e bne.w 1000cc3a +1000cd3e: 9a08 ldr r2, [sp, #32] +1000cd40: 2101 movs r1, #1 +1000cd42: 6b53 ldr r3, [r2, #52] ; 0x34 +1000cd44: 9001 str r0, [sp, #4] +1000cd46: 9002 str r0, [sp, #8] +1000cd48: 9100 str r1, [sp, #0] +1000cd4a: 6ad5 ldr r5, [r2, #44] ; 0x2c +1000cd4c: 9503 str r5, [sp, #12] +1000cd4e: 8e15 ldrh r5, [r2, #48] ; 0x30 +1000cd50: 4602 mov r2, r0 +1000cd52: 9504 str r5, [sp, #16] +1000cd54: 4814 ldr r0, [pc, #80] ; (1000cda8 ) +1000cd56: f001 fe37 bl 1000e9c8 +1000cd5a: e795 b.n 1000cc88 +1000cd5c: f06f 001a mvn.w r0, #26 +1000cd60: e785 b.n 1000cc6e +1000cd62: 4a14 ldr r2, [pc, #80] ; (1000cdb4 ) +1000cd64: 4293 cmp r3, r2 +1000cd66: d0aa beq.n 1000ccbe +1000cd68: e763 b.n 1000cc32 +1000cd6a: 2523 movs r5, #35 ; 0x23 +1000cd6c: 2340 movs r3, #64 ; 0x40 +1000cd6e: a80b add r0, sp, #44 ; 0x2c +1000cd70: a908 add r1, sp, #32 +1000cd72: 2204 movs r2, #4 +1000cd74: f88d 502a strb.w r5, [sp, #42] ; 0x2a +1000cd78: f88d 302b strb.w r3, [sp, #43] ; 0x2b +1000cd7c: f035 f9f0 bl 10042160 +1000cd80: e78e b.n 1000cca0 +1000cd82: bf00 nop +1000cd84: 10050858 .word 0x10050858 +1000cd88: 1004d7fc .word 0x1004d7fc +1000cd8c: 00200002 .word 0x00200002 +1000cd90: 1000c38d .word 0x1000c38d +1000cd94: 1000c4b1 .word 0x1000c4b1 +1000cd98: 1000c43d .word 0x1000c43d +1000cd9c: 1000c421 .word 0x1000c421 +1000cda0: 10046064 .word 0x10046064 +1000cda4: 10050880 .word 0x10050880 +1000cda8: 100450ac .word 0x100450ac +1000cdac: 00400002 .word 0x00400002 +1000cdb0: 00400004 .word 0x00400004 +1000cdb4: 00200004 .word 0x00200004 +1000cdb8: f104 0038 add.w r0, r4, #56 ; 0x38 +1000cdbc: f643 2198 movw r1, #15000 ; 0x3a98 +1000cdc0: f010 f84c bl 1001ce5c +1000cdc4: b9a8 cbnz r0, 1000cdf2 +1000cdc6: 4819 ldr r0, [pc, #100] ; (1000ce2c ) +1000cdc8: f035 f99e bl 10042108 +1000cdcc: bb0e cbnz r6, 1000ce12 +1000cdce: 4620 mov r0, r4 +1000cdd0: 2100 movs r1, #0 +1000cdd2: f00f ffe3 bl 1001cd9c +1000cdd6: a807 add r0, sp, #28 +1000cdd8: f010 f828 bl 1001ce2c +1000cddc: 2402 movs r4, #2 +1000cdde: e733 b.n 1000cc48 +1000cde0: 4619 mov r1, r3 +1000cde2: f104 0038 add.w r0, r4, #56 ; 0x38 +1000cde6: f010 f819 bl 1001ce1c +1000cdea: 6ba3 ldr r3, [r4, #56] ; 0x38 +1000cdec: b1db cbz r3, 1000ce26 +1000cdee: 9307 str r3, [sp, #28] +1000cdf0: e6f3 b.n 1000cbda +1000cdf2: a807 add r0, sp, #28 +1000cdf4: f010 f81a bl 1001ce2c +1000cdf8: 6b23 ldr r3, [r4, #48] ; 0x30 +1000cdfa: b97b cbnz r3, 1000ce1c +1000cdfc: 4620 mov r0, r4 +1000cdfe: 2100 movs r1, #0 +1000ce00: f00f ffcc bl 1001cd9c +1000ce04: f02e ffdc bl 1003bdc0 +1000ce08: 3000 adds r0, #0 +1000ce0a: bf18 it ne +1000ce0c: 2001 movne r0, #1 +1000ce0e: 4244 negs r4, r0 +1000ce10: e71a b.n 1000cc48 +1000ce12: 6ae0 ldr r0, [r4, #44] ; 0x2c +1000ce14: 991a ldr r1, [sp, #104] ; 0x68 +1000ce16: f00f ffc1 bl 1001cd9c +1000ce1a: e7d8 b.n 1000cdce +1000ce1c: 6ae0 ldr r0, [r4, #44] ; 0x2c +1000ce1e: 991a ldr r1, [sp, #104] ; 0x68 +1000ce20: f00f ffbc bl 1001cd9c +1000ce24: e7ea b.n 1000cdfc +1000ce26: f06f 0015 mvn.w r0, #21 +1000ce2a: e720 b.n 1000cc6e +1000ce2c: 10046098 .word 0x10046098 + +1000ce30 : +1000ce30: b510 push {r4, lr} +1000ce32: b082 sub sp, #8 +1000ce34: 2400 movs r4, #0 +1000ce36: 2301 movs r3, #1 +1000ce38: 480f ldr r0, [pc, #60] ; (1000ce78 ) +1000ce3a: 4669 mov r1, sp +1000ce3c: f88d 4000 strb.w r4, [sp] +1000ce40: f88d 4001 strb.w r4, [sp, #1] +1000ce44: f88d 4002 strb.w r4, [sp, #2] +1000ce48: f88d 4003 strb.w r4, [sp, #3] +1000ce4c: f88d 4004 strb.w r4, [sp, #4] +1000ce50: f88d 4006 strb.w r4, [sp, #6] +1000ce54: f88d 4007 strb.w r4, [sp, #7] +1000ce58: f88d 3005 strb.w r3, [sp, #5] +1000ce5c: f001 fd56 bl 1000e90c +1000ce60: 42a0 cmp r0, r4 +1000ce62: bfa8 it ge +1000ce64: 4620 movge r0, r4 +1000ce66: db01 blt.n 1000ce6c +1000ce68: b002 add sp, #8 +1000ce6a: bd10 pop {r4, pc} +1000ce6c: 4803 ldr r0, [pc, #12] ; (1000ce7c ) +1000ce6e: f035 f94b bl 10042108 +1000ce72: f04f 30ff mov.w r0, #4294967295 +1000ce76: e7f7 b.n 1000ce68 +1000ce78: 100450ac .word 0x100450ac +1000ce7c: 100460e0 .word 0x100460e0 + +1000ce80 : +1000ce80: f02e bf9e b.w 1003bdc0 + +1000ce84 : +1000ce84: b510 push {r4, lr} +1000ce86: b088 sub sp, #32 +1000ce88: 4604 mov r4, r0 +1000ce8a: 2100 movs r1, #0 +1000ce8c: 4668 mov r0, sp +1000ce8e: 221f movs r2, #31 +1000ce90: f00f ff9e bl 1001cdd0 +1000ce94: 4623 mov r3, r4 +1000ce96: 4668 mov r0, sp +1000ce98: 211e movs r1, #30 +1000ce9a: 4a05 ldr r2, [pc, #20] ; (1000ceb0 ) +1000ce9c: f035 f8c4 bl 10042028 +1000cea0: 4669 mov r1, sp +1000cea2: 2200 movs r2, #0 +1000cea4: 4803 ldr r0, [pc, #12] ; (1000ceb4 ) +1000cea6: f002 f809 bl 1000eebc +1000ceaa: b008 add sp, #32 +1000ceac: bd10 pop {r4, pc} +1000ceae: bf00 nop +1000ceb0: 10046110 .word 0x10046110 +1000ceb4: 100450ac .word 0x100450ac + +1000ceb8 : +1000ceb8: b570 push {r4, r5, r6, lr} +1000ceba: 4b0d ldr r3, [pc, #52] ; (1000cef0 ) +1000cebc: b088 sub sp, #32 +1000cebe: 681e ldr r6, [r3, #0] +1000cec0: 4c0c ldr r4, [pc, #48] ; (1000cef4 ) +1000cec2: 4b0d ldr r3, [pc, #52] ; (1000cef8 ) +1000cec4: 4605 mov r5, r0 +1000cec6: 2100 movs r1, #0 +1000cec8: a801 add r0, sp, #4 +1000ceca: 2219 movs r2, #25 +1000cecc: 2e03 cmp r6, #3 +1000cece: bf18 it ne +1000ced0: 461c movne r4, r3 +1000ced2: f00f ff7d bl 1001cdd0 +1000ced6: 462b mov r3, r5 +1000ced8: a801 add r0, sp, #4 +1000ceda: 2119 movs r1, #25 +1000cedc: 4a07 ldr r2, [pc, #28] ; (1000cefc ) +1000cede: f035 f8a3 bl 10042028 +1000cee2: 4620 mov r0, r4 +1000cee4: a901 add r1, sp, #4 +1000cee6: 2200 movs r2, #0 +1000cee8: f001 ffe8 bl 1000eebc +1000ceec: b008 add sp, #32 +1000ceee: bd70 pop {r4, r5, r6, pc} +1000cef0: 1004d7e4 .word 0x1004d7e4 +1000cef4: 10045490 .word 0x10045490 +1000cef8: 100450ac .word 0x100450ac +1000cefc: 1004612c .word 0x1004612c + +1000cf00 : +1000cf00: b2c1 uxtb r1, r0 +1000cf02: 4801 ldr r0, [pc, #4] ; (1000cf08 ) +1000cf04: f001 bf48 b.w 1000ed98 +1000cf08: 100450ac .word 0x100450ac + +1000cf0c : +1000cf0c: b5f8 push {r3, r4, r5, r6, r7, lr} +1000cf0e: 4606 mov r6, r0 +1000cf10: 2000 movs r0, #0 +1000cf12: f02e fecb bl 1003bcac +1000cf16: 2800 cmp r0, #0 +1000cf18: d13c bne.n 1000cf94 +1000cf1a: 4c23 ldr r4, [pc, #140] ; (1000cfa8 ) +1000cf1c: 6823 ldr r3, [r4, #0] +1000cf1e: 2b00 cmp r3, #0 +1000cf20: d033 beq.n 1000cf8a +1000cf22: 4b22 ldr r3, [pc, #136] ; (1000cfac ) +1000cf24: 2e03 cmp r6, #3 +1000cf26: f04f 0000 mov.w r0, #0 +1000cf2a: bf0c ite eq +1000cf2c: 2502 moveq r5, #2 +1000cf2e: 2501 movne r5, #1 +1000cf30: 601e str r6, [r3, #0] +1000cf32: f002 f95f bl 1000f1f4 +1000cf36: 481e ldr r0, [pc, #120] ; (1000cfb0 ) +1000cf38: f035 f8e6 bl 10042108 +1000cf3c: 2400 movs r4, #0 +1000cf3e: 4620 mov r0, r4 +1000cf40: 4631 mov r1, r6 +1000cf42: f02e fcf3 bl 1003b92c +1000cf46: 1e07 subs r7, r0, #0 +1000cf48: f104 0401 add.w r4, r4, #1 +1000cf4c: db1b blt.n 1000cf86 +1000cf4e: 42a5 cmp r5, r4 +1000cf50: dcf5 bgt.n 1000cf3e +1000cf52: 2400 movs r4, #0 +1000cf54: 4620 mov r0, r4 +1000cf56: 3401 adds r4, #1 +1000cf58: f02e fd8e bl 1003ba78 +1000cf5c: 42a5 cmp r5, r4 +1000cf5e: dcf9 bgt.n 1000cf54 +1000cf60: 3d01 subs r5, #1 +1000cf62: b2ed uxtb r5, r5 +1000cf64: 2415 movs r4, #21 +1000cf66: e003 b.n 1000cf70 +1000cf68: f44f 707a mov.w r0, #1000 ; 0x3e8 +1000cf6c: f00e fe5c bl 1001bc28 +1000cf70: 4628 mov r0, r5 +1000cf72: f02e fe9b bl 1003bcac +1000cf76: b990 cbnz r0, 1000cf9e +1000cf78: 3c01 subs r4, #1 +1000cf7a: d1f5 bne.n 1000cf68 +1000cf7c: 480d ldr r0, [pc, #52] ; (1000cfb4 ) +1000cf7e: f035 f8c3 bl 10042108 +1000cf82: 4638 mov r0, r7 +1000cf84: bdf8 pop {r3, r4, r5, r6, r7, pc} +1000cf86: 4638 mov r0, r7 +1000cf88: bdf8 pop {r3, r4, r5, r6, r7, pc} +1000cf8a: f000 fccf bl 1000d92c +1000cf8e: 2301 movs r3, #1 +1000cf90: 6023 str r3, [r4, #0] +1000cf92: e7c6 b.n 1000cf22 +1000cf94: 4808 ldr r0, [pc, #32] ; (1000cfb8 ) +1000cf96: f035 f8b7 bl 10042108 +1000cf9a: 2001 movs r0, #1 +1000cf9c: bdf8 pop {r3, r4, r5, r6, r7, pc} +1000cf9e: 4807 ldr r0, [pc, #28] ; (1000cfbc ) +1000cfa0: f035 f8b2 bl 10042108 +1000cfa4: 4638 mov r0, r7 +1000cfa6: bdf8 pop {r3, r4, r5, r6, r7, pc} +1000cfa8: 10050854 .word 0x10050854 +1000cfac: 1004d7e4 .word 0x1004d7e4 +1000cfb0: 1004618c .word 0x1004618c +1000cfb4: 100461b8 .word 0x100461b8 +1000cfb8: 10046170 .word 0x10046170 +1000cfbc: 100461a4 .word 0x100461a4 + +1000cfc0 : +1000cfc0: b510 push {r4, lr} +1000cfc2: 2000 movs r0, #0 +1000cfc4: f02e fe72 bl 1003bcac +1000cfc8: b918 cbnz r0, 1000cfd2 +1000cfca: 2001 movs r0, #1 +1000cfcc: f02e fe6e bl 1003bcac +1000cfd0: b340 cbz r0, 1000d024 +1000cfd2: f00d fce9 bl 1001a9a8 +1000cfd6: 2104 movs r1, #4 +1000cfd8: 2000 movs r0, #0 +1000cfda: f002 f9e9 bl 1000f3b0 +1000cfde: 4814 ldr r0, [pc, #80] ; (1000d030 ) +1000cfe0: f035 f892 bl 10042108 +1000cfe4: 2415 movs r4, #21 +1000cfe6: f02e fce5 bl 1003b9b4 +1000cfea: e005 b.n 1000cff8 +1000cfec: 3c01 subs r4, #1 +1000cfee: d011 beq.n 1000d014 +1000cff0: f44f 707a mov.w r0, #1000 ; 0x3e8 +1000cff4: f00e fe18 bl 1001bc28 +1000cff8: 2000 movs r0, #0 +1000cffa: f02e fe57 bl 1003bcac +1000cffe: 2800 cmp r0, #0 +1000d000: d1f4 bne.n 1000cfec +1000d002: 2001 movs r0, #1 +1000d004: f02e fe52 bl 1003bcac +1000d008: 2800 cmp r0, #0 +1000d00a: d1ef bne.n 1000cfec +1000d00c: 4809 ldr r0, [pc, #36] ; (1000d034 ) +1000d00e: f035 f87b bl 10042108 +1000d012: e002 b.n 1000d01a +1000d014: 4808 ldr r0, [pc, #32] ; (1000d038 ) +1000d016: f035 f877 bl 10042108 +1000d01a: 4b08 ldr r3, [pc, #32] ; (1000d03c ) +1000d01c: 2200 movs r2, #0 +1000d01e: 601a str r2, [r3, #0] +1000d020: 2000 movs r0, #0 +1000d022: bd10 pop {r4, pc} +1000d024: 4806 ldr r0, [pc, #24] ; (1000d040 ) +1000d026: f035 f86f bl 10042108 +1000d02a: 2000 movs r0, #0 +1000d02c: bd10 pop {r4, pc} +1000d02e: bf00 nop +1000d030: 100461ec .word 0x100461ec +1000d034: 10046208 .word 0x10046208 +1000d038: 10046220 .word 0x10046220 +1000d03c: 1004d7e4 .word 0x1004d7e4 +1000d040: 100461d4 .word 0x100461d4 + +1000d044 : +1000d044: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000d048: 4c30 ldr r4, [pc, #192] ; (1000d10c ) +1000d04a: 4d31 ldr r5, [pc, #196] ; (1000d110 ) +1000d04c: f8d4 e000 ldr.w lr, [r4] +1000d050: 4c30 ldr r4, [pc, #192] ; (1000d114 ) +1000d052: b086 sub sp, #24 +1000d054: f1be 0f03 cmp.w lr, #3 +1000d058: bf18 it ne +1000d05a: 4625 movne r5, r4 +1000d05c: 4680 mov r8, r0 +1000d05e: 460e mov r6, r1 +1000d060: 4691 mov r9, r2 +1000d062: 461f mov r7, r3 +1000d064: 9c0e ldr r4, [sp, #56] ; 0x38 +1000d066: f8dd a03c ldr.w sl, [sp, #60] ; 0x3c +1000d06a: f000 fc6d bl 1000d948 +1000d06e: 2800 cmp r0, #0 +1000d070: d132 bne.n 1000d0d8 +1000d072: 2008 movs r0, #8 +1000d074: 4928 ldr r1, [pc, #160] ; (1000d118 ) +1000d076: 2200 movs r2, #0 +1000d078: f000 fc0a bl 1000d890 +1000d07c: 2009 movs r0, #9 +1000d07e: 4927 ldr r1, [pc, #156] ; (1000d11c ) +1000d080: 2200 movs r2, #0 +1000d082: f000 fc05 bl 1000d890 +1000d086: 4628 mov r0, r5 +1000d088: 2103 movs r1, #3 +1000d08a: f001 fdc5 bl 1000ec18 +1000d08e: 2800 cmp r0, #0 +1000d090: db1f blt.n 1000d0d2 +1000d092: fa5f f18a uxtb.w r1, sl +1000d096: 4628 mov r0, r5 +1000d098: f001 fe7e bl 1000ed98 +1000d09c: 2800 cmp r0, #0 +1000d09e: db18 blt.n 1000d0d2 +1000d0a0: b156 cbz r6, 1000d0b8 +1000d0a2: 4b1f ldr r3, [pc, #124] ; (1000d120 ) +1000d0a4: 429e cmp r6, r3 +1000d0a6: d10f bne.n 1000d0c8 +1000d0a8: 4628 mov r0, r5 +1000d0aa: 2106 movs r1, #6 +1000d0ac: 2201 movs r2, #1 +1000d0ae: f001 fc63 bl 1000e978 +1000d0b2: b1b8 cbz r0, 1000d0e4 +1000d0b4: 2800 cmp r0, #0 +1000d0b6: db0c blt.n 1000d0d2 +1000d0b8: 4628 mov r0, r5 +1000d0ba: 4641 mov r1, r8 +1000d0bc: b2ba uxth r2, r7 +1000d0be: b006 add sp, #24 +1000d0c0: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000d0c4: f001 bdec b.w 1000eca0 +1000d0c8: 4816 ldr r0, [pc, #88] ; (1000d124 ) +1000d0ca: f035 f81d bl 10042108 +1000d0ce: f04f 30ff mov.w r0, #4294967295 +1000d0d2: b006 add sp, #24 +1000d0d4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1000d0d8: 2000 movs r0, #0 +1000d0da: 4601 mov r1, r0 +1000d0dc: 4602 mov r2, r0 +1000d0de: f000 fc31 bl 1000d944 +1000d0e2: e7c6 b.n 1000d072 +1000d0e4: 4602 mov r2, r0 +1000d0e6: 9000 str r0, [sp, #0] +1000d0e8: 9001 str r0, [sp, #4] +1000d0ea: 9002 str r0, [sp, #8] +1000d0ec: 9003 str r0, [sp, #12] +1000d0ee: 9004 str r0, [sp, #16] +1000d0f0: 4603 mov r3, r0 +1000d0f2: 2103 movs r1, #3 +1000d0f4: 4628 mov r0, r5 +1000d0f6: f001 fc67 bl 1000e9c8 +1000d0fa: 2800 cmp r0, #0 +1000d0fc: d1da bne.n 1000d0b4 +1000d0fe: 4649 mov r1, r9 +1000d100: b2a2 uxth r2, r4 +1000d102: 4628 mov r0, r5 +1000d104: f001 fd3a bl 1000eb7c +1000d108: e7d4 b.n 1000d0b4 +1000d10a: bf00 nop +1000d10c: 1004d7e4 .word 0x1004d7e4 +1000d110: 10045490 .word 0x10045490 +1000d114: 100450ac .word 0x100450ac +1000d118: 1000c3a5 .word 0x1000c3a5 +1000d11c: 1000c3a9 .word 0x1000c3a9 +1000d120: 00400004 .word 0x00400004 +1000d124: 10046240 .word 0x10046240 + +1000d128 : +1000d128: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000d12c: 4c33 ldr r4, [pc, #204] ; (1000d1fc ) +1000d12e: 4d34 ldr r5, [pc, #208] ; (1000d200 ) +1000d130: f8d4 e000 ldr.w lr, [r4] +1000d134: 4c33 ldr r4, [pc, #204] ; (1000d204 ) +1000d136: b086 sub sp, #24 +1000d138: f1be 0f03 cmp.w lr, #3 +1000d13c: bf18 it ne +1000d13e: 4625 movne r5, r4 +1000d140: 4680 mov r8, r0 +1000d142: 460e mov r6, r1 +1000d144: 4691 mov r9, r2 +1000d146: 461f mov r7, r3 +1000d148: 9c0e ldr r4, [sp, #56] ; 0x38 +1000d14a: f8dd a03c ldr.w sl, [sp, #60] ; 0x3c +1000d14e: f000 fbfb bl 1000d948 +1000d152: 2800 cmp r0, #0 +1000d154: d138 bne.n 1000d1c8 +1000d156: 2008 movs r0, #8 +1000d158: 492b ldr r1, [pc, #172] ; (1000d208 ) +1000d15a: 2200 movs r2, #0 +1000d15c: f000 fb98 bl 1000d890 +1000d160: 2009 movs r0, #9 +1000d162: 492a ldr r1, [pc, #168] ; (1000d20c ) +1000d164: 2200 movs r2, #0 +1000d166: f000 fb93 bl 1000d890 +1000d16a: 4628 mov r0, r5 +1000d16c: 2103 movs r1, #3 +1000d16e: f001 fd53 bl 1000ec18 +1000d172: 2800 cmp r0, #0 +1000d174: db25 blt.n 1000d1c2 +1000d176: fa5f f18a uxtb.w r1, sl +1000d17a: 4628 mov r0, r5 +1000d17c: f001 fe0c bl 1000ed98 +1000d180: 2800 cmp r0, #0 +1000d182: db1e blt.n 1000d1c2 +1000d184: b156 cbz r6, 1000d19c +1000d186: 4b22 ldr r3, [pc, #136] ; (1000d210 ) +1000d188: 429e cmp r6, r3 +1000d18a: d115 bne.n 1000d1b8 +1000d18c: 4628 mov r0, r5 +1000d18e: 2106 movs r1, #6 +1000d190: 2201 movs r2, #1 +1000d192: f001 fbf1 bl 1000e978 +1000d196: b1e8 cbz r0, 1000d1d4 +1000d198: 2800 cmp r0, #0 +1000d19a: db12 blt.n 1000d1c2 +1000d19c: 4628 mov r0, r5 +1000d19e: 2101 movs r1, #1 +1000d1a0: f015 fb6a bl 10022878 +1000d1a4: 2800 cmp r0, #0 +1000d1a6: db0c blt.n 1000d1c2 +1000d1a8: 4628 mov r0, r5 +1000d1aa: 4641 mov r1, r8 +1000d1ac: b2ba uxth r2, r7 +1000d1ae: b006 add sp, #24 +1000d1b0: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000d1b4: f001 bd74 b.w 1000eca0 +1000d1b8: 4816 ldr r0, [pc, #88] ; (1000d214 ) +1000d1ba: f034 ffa5 bl 10042108 +1000d1be: f04f 30ff mov.w r0, #4294967295 +1000d1c2: b006 add sp, #24 +1000d1c4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1000d1c8: 2000 movs r0, #0 +1000d1ca: 4601 mov r1, r0 +1000d1cc: 4602 mov r2, r0 +1000d1ce: f000 fbb9 bl 1000d944 +1000d1d2: e7c0 b.n 1000d156 +1000d1d4: 4602 mov r2, r0 +1000d1d6: 9000 str r0, [sp, #0] +1000d1d8: 9001 str r0, [sp, #4] +1000d1da: 9002 str r0, [sp, #8] +1000d1dc: 9003 str r0, [sp, #12] +1000d1de: 9004 str r0, [sp, #16] +1000d1e0: 4603 mov r3, r0 +1000d1e2: 2103 movs r1, #3 +1000d1e4: 4628 mov r0, r5 +1000d1e6: f001 fbef bl 1000e9c8 +1000d1ea: 2800 cmp r0, #0 +1000d1ec: d1d4 bne.n 1000d198 +1000d1ee: 4649 mov r1, r9 +1000d1f0: b2a2 uxth r2, r4 +1000d1f2: 4628 mov r0, r5 +1000d1f4: f001 fcc2 bl 1000eb7c +1000d1f8: e7ce b.n 1000d198 +1000d1fa: bf00 nop +1000d1fc: 1004d7e4 .word 0x1004d7e4 +1000d200: 10045490 .word 0x10045490 +1000d204: 100450ac .word 0x100450ac +1000d208: 1000c3a5 .word 0x1000c3a5 +1000d20c: 1000c3a9 .word 0x1000c3a9 +1000d210: 00400004 .word 0x00400004 +1000d214: 10046240 .word 0x10046240 + +1000d218 : +1000d218: b510 push {r4, lr} +1000d21a: ea40 2101 orr.w r1, r0, r1, lsl #8 +1000d21e: b082 sub sp, #8 +1000d220: b28b uxth r3, r1 +1000d222: 4614 mov r4, r2 +1000d224: b17a cbz r2, 1000d246 +1000d226: 6811 ldr r1, [r2, #0] +1000d228: 4810 ldr r0, [pc, #64] ; (1000d26c ) +1000d22a: 8892 ldrh r2, [r2, #4] +1000d22c: f001 fe00 bl 1000ee30 +1000d230: b938 cbnz r0, 1000d242 +1000d232: 480e ldr r0, [pc, #56] ; (1000d26c ) +1000d234: 6821 ldr r1, [r4, #0] +1000d236: 88a2 ldrh r2, [r4, #4] +1000d238: b002 add sp, #8 +1000d23a: e8bd 4010 ldmia.w sp!, {r4, lr} +1000d23e: f001 be1f b.w 1000ee80 +1000d242: b002 add sp, #8 +1000d244: bd10 pop {r4, pc} +1000d246: 2003 movs r0, #3 +1000d248: 4909 ldr r1, [pc, #36] ; (1000d270 ) +1000d24a: 9301 str r3, [sp, #4] +1000d24c: f000 fb20 bl 1000d890 +1000d250: 4622 mov r2, r4 +1000d252: 2004 movs r0, #4 +1000d254: 4907 ldr r1, [pc, #28] ; (1000d274 ) +1000d256: f000 fb1b bl 1000d890 +1000d25a: 9b01 ldr r3, [sp, #4] +1000d25c: 4803 ldr r0, [pc, #12] ; (1000d26c ) +1000d25e: 4621 mov r1, r4 +1000d260: 4622 mov r2, r4 +1000d262: b002 add sp, #8 +1000d264: e8bd 4010 ldmia.w sp!, {r4, lr} +1000d268: f001 bde2 b.w 1000ee30 +1000d26c: 100450ac .word 0x100450ac +1000d270: 1000c4e5 .word 0x1000c4e5 +1000d274: 1000c3ad .word 0x1000c3ad + +1000d278 : +1000d278: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1000d27c: 4607 mov r7, r0 +1000d27e: b083 sub sp, #12 +1000d280: 4610 mov r0, r2 +1000d282: 9201 str r2, [sp, #4] +1000d284: 460e mov r6, r1 +1000d286: 461d mov r5, r3 +1000d288: f00d fc7c bl 1001ab84 +1000d28c: 9000 str r0, [sp, #0] +1000d28e: 2800 cmp r0, #0 +1000d290: f000 80a3 beq.w 1000d3da +1000d294: 2100 movs r1, #0 +1000d296: 9a01 ldr r2, [sp, #4] +1000d298: f034 ff68 bl 1004216c +1000d29c: ac02 add r4, sp, #8 +1000d29e: a90a add r1, sp, #40 ; 0x28 +1000d2a0: 2204 movs r2, #4 +1000d2a2: 9800 ldr r0, [sp, #0] +1000d2a4: f034 ff5c bl 10042160 +1000d2a8: f854 0d08 ldr.w r0, [r4, #-8]! +1000d2ac: 4629 mov r1, r5 +1000d2ae: 9a0a ldr r2, [sp, #40] ; 0x28 +1000d2b0: 3004 adds r0, #4 +1000d2b2: f034 ff55 bl 10042160 +1000d2b6: 466a mov r2, sp +1000d2b8: 2000 movs r0, #0 +1000d2ba: 2102 movs r1, #2 +1000d2bc: f7ff ffac bl 1000d218 +1000d2c0: 2800 cmp r0, #0 +1000d2c2: db12 blt.n 1000d2ea +1000d2c4: b1cf cbz r7, 1000d2fa +1000d2c6: 2400 movs r4, #0 +1000d2c8: 462a mov r2, r5 +1000d2ca: 4633 mov r3, r6 +1000d2cc: e89d 0003 ldmia.w sp, {r0, r1} +1000d2d0: 47b8 blx r7 +1000d2d2: 9800 ldr r0, [sp, #0] +1000d2d4: b128 cbz r0, 1000d2e2 +1000d2d6: f00d fbe5 bl 1001aaa4 +1000d2da: 4620 mov r0, r4 +1000d2dc: b003 add sp, #12 +1000d2de: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1000d2e2: 4620 mov r0, r4 +1000d2e4: b003 add sp, #12 +1000d2e6: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1000d2ea: 483f ldr r0, [pc, #252] ; (1000d3e8 ) +1000d2ec: f034 ff0c bl 10042108 +1000d2f0: f04f 34ff mov.w r4, #4294967295 +1000d2f4: 2f00 cmp r7, #0 +1000d2f6: d0ec beq.n 1000d2d2 +1000d2f8: e7e6 b.n 1000d2c8 +1000d2fa: 9b01 ldr r3, [sp, #4] +1000d2fc: 46b9 mov r9, r7 +1000d2fe: 2b00 cmp r3, #0 +1000d300: dd58 ble.n 1000d3b4 +1000d302: 483a ldr r0, [pc, #232] ; (1000d3ec ) +1000d304: f034 ff00 bl 10042108 +1000d308: 9b00 ldr r3, [sp, #0] +1000d30a: 4839 ldr r0, [pc, #228] ; (1000d3f0 ) +1000d30c: f913 8007 ldrsb.w r8, [r3, r7] +1000d310: 4641 mov r1, r8 +1000d312: f034 fef9 bl 10042108 +1000d316: f1b8 0f00 cmp.w r8, #0 +1000d31a: d04b beq.n 1000d3b4 +1000d31c: 9b00 ldr r3, [sp, #0] +1000d31e: 1c7d adds r5, r7, #1 +1000d320: 4834 ldr r0, [pc, #208] ; (1000d3f4 ) +1000d322: 441d add r5, r3 +1000d324: f034 fef0 bl 10042108 +1000d328: 2400 movs r4, #0 +1000d32a: 5d29 ldrb r1, [r5, r4] +1000d32c: 4832 ldr r0, [pc, #200] ; (1000d3f8 ) +1000d32e: 3401 adds r4, #1 +1000d330: f034 feea bl 10042108 +1000d334: 2c06 cmp r4, #6 +1000d336: d1f8 bne.n 1000d32a +1000d338: 4830 ldr r0, [pc, #192] ; (1000d3fc ) +1000d33a: f034 fee5 bl 10042108 +1000d33e: 9b00 ldr r3, [sp, #0] +1000d340: 482f ldr r0, [pc, #188] ; (1000d400 ) +1000d342: 443b add r3, r7 +1000d344: f8d3 1007 ldr.w r1, [r3, #7] +1000d348: f034 fede bl 10042108 +1000d34c: 9b00 ldr r3, [sp, #0] +1000d34e: 443b add r3, r7 +1000d350: f993 200b ldrsb.w r2, [r3, #11] +1000d354: 2a01 cmp r2, #1 +1000d356: d03a beq.n 1000d3ce +1000d358: 2a03 cmp r2, #3 +1000d35a: d032 beq.n 1000d3c2 +1000d35c: b922 cbnz r2, 1000d368 +1000d35e: 4829 ldr r0, [pc, #164] ; (1000d404 ) +1000d360: f034 fed2 bl 10042108 +1000d364: 9b00 ldr r3, [sp, #0] +1000d366: 443b add r3, r7 +1000d368: f993 100c ldrsb.w r1, [r3, #12] +1000d36c: 4826 ldr r0, [pc, #152] ; (1000d408 ) +1000d36e: f034 fecb bl 10042108 +1000d372: 9b00 ldr r3, [sp, #0] +1000d374: 4825 ldr r0, [pc, #148] ; (1000d40c ) +1000d376: 443b add r3, r7 +1000d378: f993 100d ldrsb.w r1, [r3, #13] +1000d37c: f034 fec4 bl 10042108 +1000d380: 9b00 ldr r3, [sp, #0] +1000d382: f107 060e add.w r6, r7, #14 +1000d386: f1a8 050e sub.w r5, r8, #14 +1000d38a: 4821 ldr r0, [pc, #132] ; (1000d410 ) +1000d38c: 441e add r6, r3 +1000d38e: f034 febb bl 10042108 +1000d392: 2d00 cmp r5, #0 +1000d394: bfc8 it gt +1000d396: 2400 movgt r4, #0 +1000d398: dd06 ble.n 1000d3a8 +1000d39a: 5731 ldrsb r1, [r6, r4] +1000d39c: 481d ldr r0, [pc, #116] ; (1000d414 ) +1000d39e: 3401 adds r4, #1 +1000d3a0: f034 feb2 bl 10042108 +1000d3a4: 42a5 cmp r5, r4 +1000d3a6: dcf8 bgt.n 1000d39a +1000d3a8: 9b01 ldr r3, [sp, #4] +1000d3aa: 4447 add r7, r8 +1000d3ac: 42bb cmp r3, r7 +1000d3ae: f109 0901 add.w r9, r9, #1 +1000d3b2: dca6 bgt.n 1000d302 +1000d3b4: 4649 mov r1, r9 +1000d3b6: 4818 ldr r0, [pc, #96] ; (1000d418 ) +1000d3b8: 2200 movs r2, #0 +1000d3ba: f034 fea5 bl 10042108 +1000d3be: 2400 movs r4, #0 +1000d3c0: e787 b.n 1000d2d2 +1000d3c2: 4816 ldr r0, [pc, #88] ; (1000d41c ) +1000d3c4: f034 fea0 bl 10042108 +1000d3c8: 9b00 ldr r3, [sp, #0] +1000d3ca: 443b add r3, r7 +1000d3cc: e7cc b.n 1000d368 +1000d3ce: 4814 ldr r0, [pc, #80] ; (1000d420 ) +1000d3d0: f034 fe9a bl 10042108 +1000d3d4: 9b00 ldr r3, [sp, #0] +1000d3d6: 443b add r3, r7 +1000d3d8: e7c6 b.n 1000d368 +1000d3da: 4812 ldr r0, [pc, #72] ; (1000d424 ) +1000d3dc: 9901 ldr r1, [sp, #4] +1000d3de: f034 fe93 bl 10042108 +1000d3e2: f06f 001a mvn.w r0, #26 +1000d3e6: e779 b.n 1000d2dc +1000d3e8: 10046290 .word 0x10046290 +1000d3ec: 10047ea0 .word 0x10047ea0 +1000d3f0: 100462ac .word 0x100462ac +1000d3f4: 100462b8 .word 0x100462b8 +1000d3f8: 100462c0 .word 0x100462c0 +1000d3fc: 10046328 .word 0x10046328 +1000d400: 100462c8 .word 0x100462c8 +1000d404: 100462d8 .word 0x100462d8 +1000d408: 10046314 .word 0x10046314 +1000d40c: 1004632c .word 0x1004632c +1000d410: 1004633c .word 0x1004633c +1000d414: 10046344 .word 0x10046344 +1000d418: 10046348 .word 0x10046348 +1000d41c: 10046300 .word 0x10046300 +1000d420: 100462ec .word 0x100462ec +1000d424: 1004626c .word 0x1004626c + +1000d428 : +1000d428: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000d42c: 4d2b ldr r5, [pc, #172] ; (1000d4dc ) +1000d42e: 4680 mov r8, r0 +1000d430: 69ab ldr r3, [r5, #24] +1000d432: 460f mov r7, r1 +1000d434: b15b cbz r3, 1000d44e +1000d436: 2464 movs r4, #100 ; 0x64 +1000d438: e001 b.n 1000d43e +1000d43a: 2c00 cmp r4, #0 +1000d43c: d032 beq.n 1000d4a4 +1000d43e: 2014 movs r0, #20 +1000d440: f00f fe04 bl 1001d04c +1000d444: 69ab ldr r3, [r5, #24] +1000d446: 3c01 subs r4, #1 +1000d448: 2b00 cmp r3, #0 +1000d44a: d1f6 bne.n 1000d43a +1000d44c: b354 cbz r4, 1000d4a4 +1000d44e: f00f fdab bl 1001cfa8 +1000d452: 2640 movs r6, #64 ; 0x40 +1000d454: 6228 str r0, [r5, #32] +1000d456: 2301 movs r3, #1 +1000d458: f44f 5080 mov.w r0, #4096 ; 0x1000 +1000d45c: f8c5 8014 str.w r8, [r5, #20] +1000d460: 61ab str r3, [r5, #24] +1000d462: 742e strb r6, [r5, #16] +1000d464: f00f fc84 bl 1001cd70 +1000d468: 4c1c ldr r4, [pc, #112] ; (1000d4dc ) +1000d46a: 6068 str r0, [r5, #4] +1000d46c: b370 cbz r0, 1000d4cc +1000d46e: 2100 movs r1, #0 +1000d470: f44f 5280 mov.w r2, #4096 ; 0x1000 +1000d474: f00f fcac bl 1001cdd0 +1000d478: f44f 7080 mov.w r0, #256 ; 0x100 +1000d47c: f00f fc78 bl 1001cd70 +1000d480: 6020 str r0, [r4, #0] +1000d482: b1e8 cbz r0, 1000d4c0 +1000d484: 2100 movs r1, #0 +1000d486: 4632 mov r2, r6 +1000d488: 460e mov r6, r1 +1000d48a: f00f fca1 bl 1001cdd0 +1000d48e: 4632 mov r2, r6 +1000d490: 2010 movs r0, #16 +1000d492: 2102 movs r1, #2 +1000d494: 61e7 str r7, [r4, #28] +1000d496: 60a6 str r6, [r4, #8] +1000d498: 60e6 str r6, [r4, #12] +1000d49a: f7ff febd bl 1000d218 +1000d49e: b950 cbnz r0, 1000d4b6 +1000d4a0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000d4a4: f00f fd80 bl 1001cfa8 +1000d4a8: 4601 mov r1, r0 +1000d4aa: 480d ldr r0, [pc, #52] ; (1000d4e0 ) +1000d4ac: f034 fe2c bl 10042108 +1000d4b0: 2002 movs r0, #2 +1000d4b2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000d4b6: 6820 ldr r0, [r4, #0] +1000d4b8: 4631 mov r1, r6 +1000d4ba: f00f fc6f bl 1001cd9c +1000d4be: 6026 str r6, [r4, #0] +1000d4c0: 6868 ldr r0, [r5, #4] +1000d4c2: 2100 movs r1, #0 +1000d4c4: f00f fc6a bl 1001cd9c +1000d4c8: 2300 movs r3, #0 +1000d4ca: 606b str r3, [r5, #4] +1000d4cc: 4803 ldr r0, [pc, #12] ; (1000d4dc ) +1000d4ce: 2100 movs r1, #0 +1000d4d0: 2224 movs r2, #36 ; 0x24 +1000d4d2: f00f fc7d bl 1001cdd0 +1000d4d6: f04f 30ff mov.w r0, #4294967295 +1000d4da: e7e1 b.n 1000d4a0 +1000d4dc: 1005085c .word 0x1005085c +1000d4e0: 10046378 .word 0x10046378 + +1000d4e4 : +1000d4e4: b410 push {r4} +1000d4e6: 4613 mov r3, r2 +1000d4e8: 460c mov r4, r1 +1000d4ea: b130 cbz r0, 1000d4fa +1000d4ec: 4601 mov r1, r0 +1000d4ee: 4622 mov r2, r4 +1000d4f0: 4804 ldr r0, [pc, #16] ; (1000d504 ) +1000d4f2: f85d 4b04 ldr.w r4, [sp], #4 +1000d4f6: f001 bbfd b.w 1000ecf4 +1000d4fa: f04f 30ff mov.w r0, #4294967295 +1000d4fe: f85d 4b04 ldr.w r4, [sp], #4 +1000d502: 4770 bx lr +1000d504: 100450ac .word 0x100450ac + +1000d508 : +1000d508: b5f0 push {r4, r5, r6, r7, lr} +1000d50a: 2300 movs r3, #0 +1000d50c: 460c mov r4, r1 +1000d50e: b083 sub sp, #12 +1000d510: 4606 mov r6, r0 +1000d512: 2270 movs r2, #112 ; 0x70 +1000d514: 4619 mov r1, r3 +1000d516: 4620 mov r0, r4 +1000d518: 9301 str r3, [sp, #4] +1000d51a: f8ad 3002 strh.w r3, [sp, #2] +1000d51e: f034 fe25 bl 1004216c +1000d522: a901 add r1, sp, #4 +1000d524: 4630 mov r0, r6 +1000d526: f001 fb99 bl 1000ec5c +1000d52a: 9b01 ldr r3, [sp, #4] +1000d52c: 4605 mov r5, r0 +1000d52e: 2b03 cmp r3, #3 +1000d530: bf0c ite eq +1000d532: 2302 moveq r3, #2 +1000d534: 2301 movne r3, #1 +1000d536: 6023 str r3, [r4, #0] +1000d538: 1d21 adds r1, r4, #4 +1000d53a: 4630 mov r0, r6 +1000d53c: f001 f986 bl 1000e84c +1000d540: f104 0125 add.w r1, r4, #37 ; 0x25 +1000d544: 2800 cmp r0, #0 +1000d546: 4630 mov r0, r6 +1000d548: bfac ite ge +1000d54a: 17ed asrge r5, r5, #31 +1000d54c: f04f 35ff movlt.w r5, #4294967295 +1000d550: f001 fc4a bl 1000ede8 +1000d554: f104 072c add.w r7, r4, #44 ; 0x2c +1000d558: 2800 cmp r0, #0 +1000d55a: f104 026d add.w r2, r4, #109 ; 0x6d +1000d55e: 463b mov r3, r7 +1000d560: 4630 mov r0, r6 +1000d562: f10d 0102 add.w r1, sp, #2 +1000d566: bfb8 it lt +1000d568: f04f 35ff movlt.w r5, #4294967295 +1000d56c: f001 fac8 bl 1000eb00 +1000d570: f8bd 2002 ldrh.w r2, [sp, #2] +1000d574: 2800 cmp r0, #0 +1000d576: bfb8 it lt +1000d578: f04f 35ff movlt.w r5, #4294967295 +1000d57c: 2a03 cmp r2, #3 +1000d57e: d81d bhi.n 1000d5bc +1000d580: e8df f002 tbb [pc, r2] +1000d584: 020f1712 .word 0x020f1712 +1000d588: 4b0f ldr r3, [pc, #60] ; (1000d5c8 ) +1000d58a: 62a3 str r3, [r4, #40] ; 0x28 +1000d58c: 4630 mov r0, r6 +1000d58e: 4639 mov r1, r7 +1000d590: f001 fb1e bl 1000ebd0 +1000d594: 2800 cmp r0, #0 +1000d596: bfb8 it lt +1000d598: f04f 35ff movlt.w r5, #4294967295 +1000d59c: 4628 mov r0, r5 +1000d59e: b003 add sp, #12 +1000d5a0: bdf0 pop {r4, r5, r6, r7, pc} +1000d5a2: 4b0a ldr r3, [pc, #40] ; (1000d5cc ) +1000d5a4: 62a3 str r3, [r4, #40] ; 0x28 +1000d5a6: e7f1 b.n 1000d58c +1000d5a8: 2300 movs r3, #0 +1000d5aa: 4628 mov r0, r5 +1000d5ac: 62a3 str r3, [r4, #40] ; 0x28 +1000d5ae: b003 add sp, #12 +1000d5b0: bdf0 pop {r4, r5, r6, r7, pc} +1000d5b2: 2301 movs r3, #1 +1000d5b4: 4628 mov r0, r5 +1000d5b6: 62a3 str r3, [r4, #40] ; 0x28 +1000d5b8: b003 add sp, #12 +1000d5ba: bdf0 pop {r4, r5, r6, r7, pc} +1000d5bc: 3a02 subs r2, #2 +1000d5be: 2a01 cmp r2, #1 +1000d5c0: d9e4 bls.n 1000d58c +1000d5c2: 4628 mov r0, r5 +1000d5c4: b003 add sp, #12 +1000d5c6: bdf0 pop {r4, r5, r6, r7, pc} +1000d5c8: 00400004 .word 0x00400004 +1000d5cc: 00200002 .word 0x00200002 + +1000d5d0 : +1000d5d0: b530 push {r4, r5, lr} +1000d5d2: 4603 mov r3, r0 +1000d5d4: b083 sub sp, #12 +1000d5d6: 460c mov r4, r1 +1000d5d8: 4855 ldr r0, [pc, #340] ; (1000d730 ) +1000d5da: 4619 mov r1, r3 +1000d5dc: f034 fd94 bl 10042108 +1000d5e0: 4854 ldr r0, [pc, #336] ; (1000d734 ) +1000d5e2: f034 fd91 bl 10042108 +1000d5e6: 6823 ldr r3, [r4, #0] +1000d5e8: 4853 ldr r0, [pc, #332] ; (1000d738 ) +1000d5ea: 2b01 cmp r3, #1 +1000d5ec: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000d5f0: d063 beq.n 1000d6ba +1000d5f2: 2b02 cmp r3, #2 +1000d5f4: d04a beq.n 1000d68c +1000d5f6: 4a51 ldr r2, [pc, #324] ; (1000d73c ) +1000d5f8: f034 fd16 bl 10042028 +1000d5fc: 484e ldr r0, [pc, #312] ; (1000d738 ) +1000d5fe: f012 f8ff bl 1001f800 +1000d602: 484f ldr r0, [pc, #316] ; (1000d740 ) +1000d604: f034 fd80 bl 10042108 +1000d608: f894 3025 ldrb.w r3, [r4, #37] ; 0x25 +1000d60c: 1d25 adds r5, r4, #4 +1000d60e: 4a4d ldr r2, [pc, #308] ; (1000d744 ) +1000d610: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000d614: 9300 str r3, [sp, #0] +1000d616: 4848 ldr r0, [pc, #288] ; (1000d738 ) +1000d618: 462b mov r3, r5 +1000d61a: f034 fd05 bl 10042028 +1000d61e: 4846 ldr r0, [pc, #280] ; (1000d738 ) +1000d620: f012 f8ee bl 1001f800 +1000d624: 4629 mov r1, r5 +1000d626: 4848 ldr r0, [pc, #288] ; (1000d748 ) +1000d628: f034 fd6e bl 10042108 +1000d62c: 4847 ldr r0, [pc, #284] ; (1000d74c ) +1000d62e: f894 1025 ldrb.w r1, [r4, #37] ; 0x25 +1000d632: f034 fd69 bl 10042108 +1000d636: 6aa3 ldr r3, [r4, #40] ; 0x28 +1000d638: 2b01 cmp r3, #1 +1000d63a: d064 beq.n 1000d706 +1000d63c: dd47 ble.n 1000d6ce +1000d63e: 4a44 ldr r2, [pc, #272] ; (1000d750 ) +1000d640: 4293 cmp r3, r2 +1000d642: d053 beq.n 1000d6ec +1000d644: 4a43 ldr r2, [pc, #268] ; (1000d754 ) +1000d646: 4293 cmp r3, r2 +1000d648: d12a bne.n 1000d6a0 +1000d64a: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000d64e: 4a42 ldr r2, [pc, #264] ; (1000d758 ) +1000d650: 4839 ldr r0, [pc, #228] ; (1000d738 ) +1000d652: f034 fce9 bl 10042028 +1000d656: 4838 ldr r0, [pc, #224] ; (1000d738 ) +1000d658: f012 f8d2 bl 1001f800 +1000d65c: 483f ldr r0, [pc, #252] ; (1000d75c ) +1000d65e: f034 fd53 bl 10042108 +1000d662: 342c adds r4, #44 ; 0x2c +1000d664: 4623 mov r3, r4 +1000d666: 4a3e ldr r2, [pc, #248] ; (1000d760 ) +1000d668: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000d66c: 4832 ldr r0, [pc, #200] ; (1000d738 ) +1000d66e: f034 fcdb bl 10042028 +1000d672: 4831 ldr r0, [pc, #196] ; (1000d738 ) +1000d674: f012 f8c4 bl 1001f800 +1000d678: 4621 mov r1, r4 +1000d67a: 483a ldr r0, [pc, #232] ; (1000d764 ) +1000d67c: f034 fd44 bl 10042108 +1000d680: 4839 ldr r0, [pc, #228] ; (1000d768 ) +1000d682: f034 fd41 bl 10042108 +1000d686: 2000 movs r0, #0 +1000d688: b003 add sp, #12 +1000d68a: bd30 pop {r4, r5, pc} +1000d68c: 4a37 ldr r2, [pc, #220] ; (1000d76c ) +1000d68e: f034 fccb bl 10042028 +1000d692: 4829 ldr r0, [pc, #164] ; (1000d738 ) +1000d694: f012 f8b4 bl 1001f800 +1000d698: 4835 ldr r0, [pc, #212] ; (1000d770 ) +1000d69a: f034 fd35 bl 10042108 +1000d69e: e7b3 b.n 1000d608 +1000d6a0: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000d6a4: 4a33 ldr r2, [pc, #204] ; (1000d774 ) +1000d6a6: 4824 ldr r0, [pc, #144] ; (1000d738 ) +1000d6a8: f034 fcbe bl 10042028 +1000d6ac: 4822 ldr r0, [pc, #136] ; (1000d738 ) +1000d6ae: f012 f8a7 bl 1001f800 +1000d6b2: 4831 ldr r0, [pc, #196] ; (1000d778 ) +1000d6b4: f034 fd28 bl 10042108 +1000d6b8: e7d3 b.n 1000d662 +1000d6ba: 4a30 ldr r2, [pc, #192] ; (1000d77c ) +1000d6bc: f034 fcb4 bl 10042028 +1000d6c0: 481d ldr r0, [pc, #116] ; (1000d738 ) +1000d6c2: f012 f89d bl 1001f800 +1000d6c6: 482e ldr r0, [pc, #184] ; (1000d780 ) +1000d6c8: f034 fd1e bl 10042108 +1000d6cc: e79c b.n 1000d608 +1000d6ce: 2b00 cmp r3, #0 +1000d6d0: d1e6 bne.n 1000d6a0 +1000d6d2: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000d6d6: 4a2b ldr r2, [pc, #172] ; (1000d784 ) +1000d6d8: 4817 ldr r0, [pc, #92] ; (1000d738 ) +1000d6da: f034 fca5 bl 10042028 +1000d6de: 4816 ldr r0, [pc, #88] ; (1000d738 ) +1000d6e0: f012 f88e bl 1001f800 +1000d6e4: 4828 ldr r0, [pc, #160] ; (1000d788 ) +1000d6e6: f034 fd0f bl 10042108 +1000d6ea: e7ba b.n 1000d662 +1000d6ec: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000d6f0: 4a26 ldr r2, [pc, #152] ; (1000d78c ) +1000d6f2: 4811 ldr r0, [pc, #68] ; (1000d738 ) +1000d6f4: f034 fc98 bl 10042028 +1000d6f8: 480f ldr r0, [pc, #60] ; (1000d738 ) +1000d6fa: f012 f881 bl 1001f800 +1000d6fe: 4824 ldr r0, [pc, #144] ; (1000d790 ) +1000d700: f034 fd02 bl 10042108 +1000d704: e7ad b.n 1000d662 +1000d706: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000d70a: 4a22 ldr r2, [pc, #136] ; (1000d794 ) +1000d70c: f894 306d ldrb.w r3, [r4, #109] ; 0x6d +1000d710: 4809 ldr r0, [pc, #36] ; (1000d738 ) +1000d712: f034 fc89 bl 10042028 +1000d716: 4808 ldr r0, [pc, #32] ; (1000d738 ) +1000d718: f012 f872 bl 1001f800 +1000d71c: 481e ldr r0, [pc, #120] ; (1000d798 ) +1000d71e: f034 fcf3 bl 10042108 +1000d722: f894 106d ldrb.w r1, [r4, #109] ; 0x6d +1000d726: 481d ldr r0, [pc, #116] ; (1000d79c ) +1000d728: f034 fcee bl 10042108 +1000d72c: e799 b.n 1000d662 +1000d72e: bf00 nop +1000d730: 100463a8 .word 0x100463a8 +1000d734: 10045304 .word 0x10045304 +1000d738: 1005207c .word 0x1005207c +1000d73c: 100463fc .word 0x100463fc +1000d740: 10046408 .word 0x10046408 +1000d744: 10046420 .word 0x10046420 +1000d748: 10046428 .word 0x10046428 +1000d74c: 1004643c .word 0x1004643c +1000d750: 00200002 .word 0x00200002 +1000d754: 00400004 .word 0x00400004 +1000d758: 100464c0 .word 0x100464c0 +1000d75c: 100464c8 .word 0x100464c8 +1000d760: 10046500 .word 0x10046500 +1000d764: 10046504 .word 0x10046504 +1000d768: 10047ea0 .word 0x10047ea0 +1000d76c: 100463c0 .word 0x100463c0 +1000d770: 100463c8 .word 0x100463c8 +1000d774: 100464dc .word 0x100464dc +1000d778: 100464e8 .word 0x100464e8 +1000d77c: 100463dc .word 0x100463dc +1000d780: 100463e4 .word 0x100463e4 +1000d784: 10046450 .word 0x10046450 +1000d788: 10046458 .word 0x10046458 +1000d78c: 100464a0 .word 0x100464a0 +1000d790: 100464a8 .word 0x100464a8 +1000d794: 10046470 .word 0x10046470 +1000d798: 10046478 .word 0x10046478 +1000d79c: 1004648c .word 0x1004648c + +1000d7a0 : +1000d7a0: f000 b8d0 b.w 1000d944 + +1000d7a4 : +1000d7a4: b500 push {lr} +1000d7a6: 4b13 ldr r3, [pc, #76] ; (1000d7f4 ) +1000d7a8: b08b sub sp, #44 ; 0x2c +1000d7aa: 681b ldr r3, [r3, #0] +1000d7ac: 2200 movs r2, #0 +1000d7ae: 2b03 cmp r3, #3 +1000d7b0: 9200 str r2, [sp, #0] +1000d7b2: d008 beq.n 1000d7c6 +1000d7b4: 4810 ldr r0, [pc, #64] ; (1000d7f8 ) +1000d7b6: 4669 mov r1, sp +1000d7b8: f001 fa50 bl 1000ec5c +1000d7bc: 9b00 ldr r3, [sp, #0] +1000d7be: 2b02 cmp r3, #2 +1000d7c0: d00c beq.n 1000d7dc +1000d7c2: 2b03 cmp r3, #3 +1000d7c4: d107 bne.n 1000d7d6 +1000d7c6: f7ff fbfb bl 1000cfc0 +1000d7ca: 2014 movs r0, #20 +1000d7cc: f00e fa2c bl 1001bc28 +1000d7d0: 2004 movs r0, #4 +1000d7d2: f7ff fb9b bl 1000cf0c +1000d7d6: b00b add sp, #44 ; 0x2c +1000d7d8: f85d fb04 ldr.w pc, [sp], #4 +1000d7dc: 4806 ldr r0, [pc, #24] ; (1000d7f8 ) +1000d7de: a901 add r1, sp, #4 +1000d7e0: f001 f834 bl 1000e84c +1000d7e4: 2800 cmp r0, #0 +1000d7e6: ddf6 ble.n 1000d7d6 +1000d7e8: f7ff fb22 bl 1000ce30 +1000d7ec: b00b add sp, #44 ; 0x2c +1000d7ee: f85d fb04 ldr.w pc, [sp], #4 +1000d7f2: bf00 nop +1000d7f4: 1004d7e4 .word 0x1004d7e4 +1000d7f8: 100450ac .word 0x100450ac + +1000d7fc : +1000d7fc: b470 push {r4, r5, r6} +1000d7fe: 4c05 ldr r4, [pc, #20] ; (1000d814 ) +1000d800: 4d05 ldr r5, [pc, #20] ; (1000d818 ) +1000d802: 460e mov r6, r1 +1000d804: 4613 mov r3, r2 +1000d806: 4601 mov r1, r0 +1000d808: 4632 mov r2, r6 +1000d80a: 6025 str r5, [r4, #0] +1000d80c: 4803 ldr r0, [pc, #12] ; (1000d81c ) +1000d80e: bc70 pop {r4, r5, r6} +1000d810: f001 bcb2 b.w 1000f178 +1000d814: 100530d8 .word 0x100530d8 +1000d818: 1000c65d .word 0x1000c65d +1000d81c: 100450ac .word 0x100450ac + +1000d820 : +1000d820: b430 push {r4, r5} +1000d822: 4c05 ldr r4, [pc, #20] ; (1000d838 ) +1000d824: 4d05 ldr r5, [pc, #20] ; (1000d83c ) +1000d826: 4601 mov r1, r0 +1000d828: 6025 str r5, [r4, #0] +1000d82a: 4805 ldr r0, [pc, #20] ; (1000d840 ) +1000d82c: 2203 movs r2, #3 +1000d82e: 2305 movs r3, #5 +1000d830: bc30 pop {r4, r5} +1000d832: f001 bca1 b.w 1000f178 +1000d836: bf00 nop +1000d838: 100530d8 .word 0x100530d8 +1000d83c: 1000c65d .word 0x1000c65d +1000d840: 100450ac .word 0x100450ac + +1000d844 : +1000d844: f000 b888 b.w 1000d958 + +1000d848 : +1000d848: f000 b8a4 b.w 1000d994 + +1000d84c : +1000d84c: f000 b8e2 b.w 1000da14 + +1000d850 : +1000d850: f000 b902 b.w 1000da58 + +1000d854 : +1000d854: f000 b922 b.w 1000da9c + +1000d858 : +1000d858: 280f cmp r0, #15 +1000d85a: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1000d85e: 460f mov r7, r1 +1000d860: 4690 mov r8, r2 +1000d862: 4699 mov r9, r3 +1000d864: dc10 bgt.n 1000d888 +1000d866: 4b09 ldr r3, [pc, #36] ; (1000d88c ) +1000d868: eb00 0040 add.w r0, r0, r0, lsl #1 +1000d86c: eb03 04c0 add.w r4, r3, r0, lsl #3 +1000d870: 2503 movs r5, #3 +1000d872: 6826 ldr r6, [r4, #0] +1000d874: 4638 mov r0, r7 +1000d876: 4641 mov r1, r8 +1000d878: 464a mov r2, r9 +1000d87a: b10e cbz r6, 1000d880 +1000d87c: 6863 ldr r3, [r4, #4] +1000d87e: 47b0 blx r6 +1000d880: 3d01 subs r5, #1 +1000d882: f104 0408 add.w r4, r4, #8 +1000d886: d1f4 bne.n 1000d872 +1000d888: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1000d88c: 1005089c .word 0x1005089c + +1000d890 : +1000d890: 280f cmp r0, #15 +1000d892: b4f0 push {r4, r5, r6, r7} +1000d894: d80b bhi.n 1000d8ae +1000d896: 0046 lsls r6, r0, #1 +1000d898: 4b11 ldr r3, [pc, #68] ; (1000d8e0 ) +1000d89a: 1834 adds r4, r6, r0 +1000d89c: 00e4 lsls r4, r4, #3 +1000d89e: 591d ldr r5, [r3, r4] +1000d8a0: 441c add r4, r3 +1000d8a2: b1d5 cbz r5, 1000d8da +1000d8a4: 68a7 ldr r7, [r4, #8] +1000d8a6: b127 cbz r7, 1000d8b2 +1000d8a8: 6924 ldr r4, [r4, #16] +1000d8aa: 2702 movs r7, #2 +1000d8ac: b114 cbz r4, 1000d8b4 +1000d8ae: bcf0 pop {r4, r5, r6, r7} +1000d8b0: 4770 bx lr +1000d8b2: 2701 movs r7, #1 +1000d8b4: 42a9 cmp r1, r5 +1000d8b6: d0fa beq.n 1000d8ae +1000d8b8: 4430 add r0, r6 +1000d8ba: eb03 03c0 add.w r3, r3, r0, lsl #3 +1000d8be: 689d ldr r5, [r3, #8] +1000d8c0: 4c07 ldr r4, [pc, #28] ; (1000d8e0 ) +1000d8c2: 428d cmp r5, r1 +1000d8c4: d0f3 beq.n 1000d8ae +1000d8c6: 691b ldr r3, [r3, #16] +1000d8c8: 428b cmp r3, r1 +1000d8ca: d0f0 beq.n 1000d8ae +1000d8cc: 4438 add r0, r7 +1000d8ce: eb04 03c0 add.w r3, r4, r0, lsl #3 +1000d8d2: f844 1030 str.w r1, [r4, r0, lsl #3] +1000d8d6: 605a str r2, [r3, #4] +1000d8d8: e7e9 b.n 1000d8ae +1000d8da: 462f mov r7, r5 +1000d8dc: e7ea b.n 1000d8b4 +1000d8de: bf00 nop +1000d8e0: 1005089c .word 0x1005089c + +1000d8e4 : +1000d8e4: 280f cmp r0, #15 +1000d8e6: b430 push {r4, r5} +1000d8e8: d80f bhi.n 1000d90a +1000d8ea: 0044 lsls r4, r0, #1 +1000d8ec: 4b0e ldr r3, [pc, #56] ; (1000d928 ) +1000d8ee: 1822 adds r2, r4, r0 +1000d8f0: 00d2 lsls r2, r2, #3 +1000d8f2: 589d ldr r5, [r3, r2] +1000d8f4: 441a add r2, r3 +1000d8f6: 428d cmp r5, r1 +1000d8f8: d013 beq.n 1000d922 +1000d8fa: 6895 ldr r5, [r2, #8] +1000d8fc: 428d cmp r5, r1 +1000d8fe: d006 beq.n 1000d90e +1000d900: 6912 ldr r2, [r2, #16] +1000d902: 428a cmp r2, r1 +1000d904: bf08 it eq +1000d906: 2202 moveq r2, #2 +1000d908: d002 beq.n 1000d910 +1000d90a: bc30 pop {r4, r5} +1000d90c: 4770 bx lr +1000d90e: 2201 movs r2, #1 +1000d910: 4420 add r0, r4 +1000d912: 4410 add r0, r2 +1000d914: eb03 01c0 add.w r1, r3, r0, lsl #3 +1000d918: 2200 movs r2, #0 +1000d91a: f843 2030 str.w r2, [r3, r0, lsl #3] +1000d91e: 604a str r2, [r1, #4] +1000d920: e7f3 b.n 1000d90a +1000d922: 2200 movs r2, #0 +1000d924: e7f4 b.n 1000d910 +1000d926: bf00 nop +1000d928: 1005089c .word 0x1005089c + +1000d92c : +1000d92c: 4802 ldr r0, [pc, #8] ; (1000d938 ) +1000d92e: 2100 movs r1, #0 +1000d930: f44f 72c0 mov.w r2, #384 ; 0x180 +1000d934: f034 bc1a b.w 1004216c +1000d938: 1005089c .word 0x1005089c + +1000d93c : +1000d93c: f01b bd69 b.w 10029412 <_promisc_deinit> + +1000d940 : +1000d940: f01b bd90 b.w 10029464 <_promisc_recv_func> + +1000d944 : +1000d944: f01c b834 b.w 100299b0 <_promisc_set> + +1000d948 : +1000d948: b508 push {r3, lr} +1000d94a: f01c f879 bl 10029a40 <_is_promisc_enabled> +1000d94e: b2c0 uxtb r0, r0 +1000d950: bd08 pop {r3, pc} +1000d952: bf00 nop + +1000d954 : +1000d954: f01c b880 b.w 10029a58 <_promisc_get_fixed_channel> + +1000d958 : +1000d958: 4b0c ldr r3, [pc, #48] ; (1000d98c ) +1000d95a: b410 push {r4} +1000d95c: f103 0078 add.w r0, r3, #120 ; 0x78 +1000d960: 240a movs r4, #10 +1000d962: 2200 movs r2, #0 +1000d964: f803 4c0c strb.w r4, [r3, #-12] +1000d968: 721a strb r2, [r3, #8] +1000d96a: f823 2c06 strh.w r2, [r3, #-6] +1000d96e: 605a str r2, [r3, #4] +1000d970: f843 2c04 str.w r2, [r3, #-4] +1000d974: f843 2b18 str.w r2, [r3], #24 +1000d978: 4283 cmp r3, r0 +1000d97a: f04f 0100 mov.w r1, #0 +1000d97e: d1f1 bne.n 1000d964 +1000d980: 4b03 ldr r3, [pc, #12] ; (1000d990 ) +1000d982: 7019 strb r1, [r3, #0] +1000d984: f85d 4b04 ldr.w r4, [sp], #4 +1000d988: 4770 bx lr +1000d98a: bf00 nop +1000d98c: 10050a28 .word 0x10050a28 +1000d990: 10050a94 .word 0x10050a94 + +1000d994 : +1000d994: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1000d998: 2300 movs r3, #0 +1000d99a: 4e1d ldr r6, [pc, #116] ; (1000da10 ) +1000d99c: 4688 mov r8, r1 +1000d99e: 4691 mov r9, r2 +1000d9a0: 461c mov r4, r3 +1000d9a2: 56f5 ldrsb r5, [r6, r3] +1000d9a4: 4f1a ldr r7, [pc, #104] ; (1000da10 ) +1000d9a6: 2d0a cmp r5, #10 +1000d9a8: f103 0318 add.w r3, r3, #24 +1000d9ac: d006 beq.n 1000d9bc +1000d9ae: 3401 adds r4, #1 +1000d9b0: 2c05 cmp r4, #5 +1000d9b2: d1f6 bne.n 1000d9a2 +1000d9b4: f04f 30ff mov.w r0, #4294967295 +1000d9b8: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1000d9bc: eb04 0444 add.w r4, r4, r4, lsl #1 +1000d9c0: 00e4 lsls r4, r4, #3 +1000d9c2: 5538 strb r0, [r7, r4] +1000d9c4: f8b8 2002 ldrh.w r2, [r8, #2] +1000d9c8: f8b8 3000 ldrh.w r3, [r8] +1000d9cc: 4427 add r7, r4 +1000d9ce: 80fa strh r2, [r7, #6] +1000d9d0: f8b8 0002 ldrh.w r0, [r8, #2] +1000d9d4: 80bb strh r3, [r7, #4] +1000d9d6: f00d f8d5 bl 1001ab84 +1000d9da: 463c mov r4, r7 +1000d9dc: f844 0f08 str.w r0, [r4, #8]! +1000d9e0: f8d8 1004 ldr.w r1, [r8, #4] +1000d9e4: f8b8 2002 ldrh.w r2, [r8, #2] +1000d9e8: f034 fbba bl 10042160 +1000d9ec: f8b8 0002 ldrh.w r0, [r8, #2] +1000d9f0: f00d f8c8 bl 1001ab84 +1000d9f4: 6060 str r0, [r4, #4] +1000d9f6: f8d8 1008 ldr.w r1, [r8, #8] +1000d9fa: f8b8 2002 ldrh.w r2, [r8, #2] +1000d9fe: f034 fbaf bl 10042160 +1000da02: f847 9f10 str.w r9, [r7, #16]! +1000da06: 2000 movs r0, #0 +1000da08: 7138 strb r0, [r7, #4] +1000da0a: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1000da0e: bf00 nop +1000da10: 10050a1c .word 0x10050a1c + +1000da14 : +1000da14: b430 push {r4, r5} +1000da16: 2300 movs r3, #0 +1000da18: 4c0d ldr r4, [pc, #52] ; (1000da50 ) +1000da1a: 461a mov r2, r3 +1000da1c: 56e1 ldrsb r1, [r4, r3] +1000da1e: 4d0c ldr r5, [pc, #48] ; (1000da50 ) +1000da20: 4281 cmp r1, r0 +1000da22: f103 0318 add.w r3, r3, #24 +1000da26: d006 beq.n 1000da36 +1000da28: 3201 adds r2, #1 +1000da2a: 2a05 cmp r2, #5 +1000da2c: d1f6 bne.n 1000da1c +1000da2e: bc30 pop {r4, r5} +1000da30: f04f 30ff mov.w r0, #4294967295 +1000da34: 4770 bx lr +1000da36: 4b07 ldr r3, [pc, #28] ; (1000da54 ) +1000da38: eb02 0242 add.w r2, r2, r2, lsl #1 +1000da3c: 7819 ldrb r1, [r3, #0] +1000da3e: eb05 05c2 add.w r5, r5, r2, lsl #3 +1000da42: 2201 movs r2, #1 +1000da44: 4411 add r1, r2 +1000da46: 752a strb r2, [r5, #20] +1000da48: 7019 strb r1, [r3, #0] +1000da4a: 2000 movs r0, #0 +1000da4c: bc30 pop {r4, r5} +1000da4e: 4770 bx lr +1000da50: 10050a1c .word 0x10050a1c +1000da54: 10050a94 .word 0x10050a94 + +1000da58 : +1000da58: b430 push {r4, r5} +1000da5a: 2300 movs r3, #0 +1000da5c: 4c0d ldr r4, [pc, #52] ; (1000da94 ) +1000da5e: 461a mov r2, r3 +1000da60: 56e1 ldrsb r1, [r4, r3] +1000da62: 4d0c ldr r5, [pc, #48] ; (1000da94 ) +1000da64: 4281 cmp r1, r0 +1000da66: f103 0318 add.w r3, r3, #24 +1000da6a: d006 beq.n 1000da7a +1000da6c: 3201 adds r2, #1 +1000da6e: 2a05 cmp r2, #5 +1000da70: d1f6 bne.n 1000da60 +1000da72: bc30 pop {r4, r5} +1000da74: f04f 30ff mov.w r0, #4294967295 +1000da78: 4770 bx lr +1000da7a: 4b07 ldr r3, [pc, #28] ; (1000da98 ) +1000da7c: eb02 0242 add.w r2, r2, r2, lsl #1 +1000da80: 7819 ldrb r1, [r3, #0] +1000da82: eb05 05c2 add.w r5, r5, r2, lsl #3 +1000da86: 2000 movs r0, #0 +1000da88: 1e4a subs r2, r1, #1 +1000da8a: 7528 strb r0, [r5, #20] +1000da8c: 701a strb r2, [r3, #0] +1000da8e: bc30 pop {r4, r5} +1000da90: 4770 bx lr +1000da92: bf00 nop +1000da94: 10050a1c .word 0x10050a1c +1000da98: 10050a94 .word 0x10050a94 + +1000da9c : +1000da9c: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000daa0: 2300 movs r3, #0 +1000daa2: 4d18 ldr r5, [pc, #96] ; (1000db04 ) +1000daa4: 461c mov r4, r3 +1000daa6: 56ea ldrsb r2, [r5, r3] +1000daa8: 4916 ldr r1, [pc, #88] ; (1000db04 ) +1000daaa: 4282 cmp r2, r0 +1000daac: f103 0318 add.w r3, r3, #24 +1000dab0: d006 beq.n 1000dac0 +1000dab2: 3401 adds r4, #1 +1000dab4: 2c05 cmp r4, #5 +1000dab6: d1f6 bne.n 1000daa6 +1000dab8: f04f 30ff mov.w r0, #4294967295 +1000dabc: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000dac0: ea4f 0844 mov.w r8, r4, lsl #1 +1000dac4: eb08 0304 add.w r3, r8, r4 +1000dac8: 00db lsls r3, r3, #3 +1000daca: 18ce adds r6, r1, r3 +1000dacc: 68b0 ldr r0, [r6, #8] +1000dace: 2700 movs r7, #0 +1000dad0: f04f 0c0a mov.w ip, #10 +1000dad4: f801 c003 strb.w ip, [r1, r3] +1000dad8: 7537 strb r7, [r6, #20] +1000dada: 80f7 strh r7, [r6, #6] +1000dadc: 6137 str r7, [r6, #16] +1000dade: b110 cbz r0, 1000dae6 +1000dae0: f00c ffe0 bl 1001aaa4 +1000dae4: 60b7 str r7, [r6, #8] +1000dae6: 4444 add r4, r8 +1000dae8: eb05 05c4 add.w r5, r5, r4, lsl #3 +1000daec: 68e8 ldr r0, [r5, #12] +1000daee: 3508 adds r5, #8 +1000daf0: b128 cbz r0, 1000dafe +1000daf2: f00c ffd7 bl 1001aaa4 +1000daf6: 2000 movs r0, #0 +1000daf8: 6068 str r0, [r5, #4] +1000dafa: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000dafe: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000db02: bf00 nop +1000db04: 10050a1c .word 0x10050a1c + +1000db08 : +1000db08: b5f0 push {r4, r5, r6, r7, lr} +1000db0a: 4c0f ldr r4, [pc, #60] ; (1000db48 ) +1000db0c: b083 sub sp, #12 +1000db0e: 4607 mov r7, r0 +1000db10: 460e mov r6, r1 +1000db12: 4615 mov r5, r2 +1000db14: f00d f8ec bl 1001acf0 +1000db18: 6824 ldr r4, [r4, #0] +1000db1a: 2c01 cmp r4, #1 +1000db1c: d004 beq.n 1000db28 +1000db1e: b003 add sp, #12 +1000db20: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +1000db24: f00d b8f6 b.w 1001ad14 +1000db28: 4b08 ldr r3, [pc, #32] ; (1000db4c ) +1000db2a: 4638 mov r0, r7 +1000db2c: 6819 ldr r1, [r3, #0] +1000db2e: 4632 mov r2, r6 +1000db30: 462b mov r3, r5 +1000db32: 9100 str r1, [sp, #0] +1000db34: 1db9 adds r1, r7, #6 +1000db36: f013 f9f1 bl 10020f1c +1000db3a: 4b05 ldr r3, [pc, #20] ; (1000db50 ) +1000db3c: 6018 str r0, [r3, #0] +1000db3e: b003 add sp, #12 +1000db40: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +1000db44: f00d b8e6 b.w 1001ad14 +1000db48: 10050aa8 .word 0x10050aa8 +1000db4c: 10050ab0 .word 0x10050ab0 +1000db50: 10050adc .word 0x10050adc + +1000db54 : +1000db54: b570 push {r4, r5, r6, lr} +1000db56: 4c11 ldr r4, [pc, #68] ; (1000db9c ) +1000db58: 2100 movs r1, #0 +1000db5a: 2250 movs r2, #80 ; 0x50 +1000db5c: 6820 ldr r0, [r4, #0] +1000db5e: f034 fb05 bl 1004216c +1000db62: 6826 ldr r6, [r4, #0] +1000db64: 2320 movs r3, #32 +1000db66: 7033 strb r3, [r6, #0] +1000db68: 204d movs r0, #77 ; 0x4d +1000db6a: f006 f94f bl 10013e0c +1000db6e: 4d0c ldr r5, [pc, #48] ; (1000dba0 ) +1000db70: 6823 ldr r3, [r4, #0] +1000db72: f8a6 0001 strh.w r0, [r6, #1] +1000db76: 4629 mov r1, r5 +1000db78: 1cd8 adds r0, r3, #3 +1000db7a: 2206 movs r2, #6 +1000db7c: f034 faf0 bl 10042160 +1000db80: 6820 ldr r0, [r4, #0] +1000db82: 2100 movs r1, #0 +1000db84: f855 3c27 ldr.w r3, [r5, #-39] +1000db88: 7241 strb r1, [r0, #9] +1000db8a: 60c3 str r3, [r0, #12] +1000db8c: 7281 strb r1, [r0, #10] +1000db8e: 72c1 strb r1, [r0, #11] +1000db90: 2240 movs r2, #64 ; 0x40 +1000db92: 3010 adds r0, #16 +1000db94: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1000db98: f034 bae8 b.w 1004216c +1000db9c: 10050a9c .word 0x10050a9c +1000dba0: 10050b0f .word 0x10050b0f + +1000dba4 : +1000dba4: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000dba8: b086 sub sp, #24 +1000dbaa: 4681 mov r9, r0 +1000dbac: f7ff ffd2 bl 1000db54 +1000dbb0: 2002 movs r0, #2 +1000dbb2: 4601 mov r1, r0 +1000dbb4: 2211 movs r2, #17 +1000dbb6: f004 fa1d bl 10011ff4 +1000dbba: 1c43 adds r3, r0, #1 +1000dbbc: 4605 mov r5, r0 +1000dbbe: d037 beq.n 1000dc30 +1000dbc0: 481d ldr r0, [pc, #116] ; (1000dc38 ) +1000dbc2: ae02 add r6, sp, #8 +1000dbc4: f034 faa0 bl 10042108 +1000dbc8: 4633 mov r3, r6 +1000dbca: 2200 movs r2, #0 +1000dbcc: f803 2b01 strb.w r2, [r3], #1 +1000dbd0: a906 add r1, sp, #24 +1000dbd2: 428b cmp r3, r1 +1000dbd4: d1fa bne.n 1000dbcc +1000dbd6: 2302 movs r3, #2 +1000dbd8: f242 20a0 movw r0, #8864 ; 0x22a0 +1000dbdc: f88d 3009 strb.w r3, [sp, #9] +1000dbe0: f006 f914 bl 10013e0c +1000dbe4: 4b15 ldr r3, [pc, #84] ; (1000dc3c ) +1000dbe6: f8ad 000a strh.w r0, [sp, #10] +1000dbea: 681b ldr r3, [r3, #0] +1000dbec: f8d3 3061 ldr.w r3, [r3, #97] ; 0x61 +1000dbf0: 9303 str r3, [sp, #12] +1000dbf2: f1b9 0f00 cmp.w r9, #0 +1000dbf6: d017 beq.n 1000dc28 +1000dbf8: f8df 8044 ldr.w r8, [pc, #68] ; 1000dc40 +1000dbfc: f04f 0a00 mov.w sl, #0 +1000dc00: 2710 movs r7, #16 +1000dc02: 2414 movs r4, #20 +1000dc04: f8d8 1000 ldr.w r1, [r8] +1000dc08: 2250 movs r2, #80 ; 0x50 +1000dc0a: 2300 movs r3, #0 +1000dc0c: e88d 00c0 stmia.w sp, {r6, r7} +1000dc10: 4628 mov r0, r5 +1000dc12: f004 f92f bl 10011e74 +1000dc16: 2032 movs r0, #50 ; 0x32 +1000dc18: f00e f806 bl 1001bc28 +1000dc1c: 3c01 subs r4, #1 +1000dc1e: d1f1 bne.n 1000dc04 +1000dc20: f10a 0a01 add.w sl, sl, #1 +1000dc24: 45d1 cmp r9, sl +1000dc26: dcec bgt.n 1000dc02 +1000dc28: 4628 mov r0, r5 +1000dc2a: f003 ff47 bl 10011abc +1000dc2e: 2000 movs r0, #0 +1000dc30: b006 add sp, #24 +1000dc32: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1000dc36: bf00 nop +1000dc38: 10046594 .word 0x10046594 +1000dc3c: 10050ab0 .word 0x10050ab0 +1000dc40: 10050a9c .word 0x10050a9c + +1000dc44 : +1000dc44: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000dc48: 4605 mov r5, r0 +1000dc4a: b09f sub sp, #124 ; 0x7c +1000dc4c: 48b2 ldr r0, [pc, #712] ; (1000df18 ) +1000dc4e: 460c mov r4, r1 +1000dc50: f034 fa5a bl 10042108 +1000dc54: 4bb1 ldr r3, [pc, #708] ; (1000df1c ) +1000dc56: 429d cmp r5, r3 +1000dc58: f000 80fb beq.w 1000de52 +1000dc5c: 2d01 cmp r5, #1 +1000dc5e: f000 8107 beq.w 1000de70 +1000dc62: 4baf ldr r3, [pc, #700] ; (1000df20 ) +1000dc64: 429d cmp r5, r3 +1000dc66: f000 80d6 beq.w 1000de16 +1000dc6a: 48ae ldr r0, [pc, #696] ; (1000df24 ) +1000dc6c: f034 fa4c bl 10042108 +1000dc70: 2300 movs r3, #0 +1000dc72: f884 3028 strb.w r3, [r4, #40] ; 0x28 +1000dc76: f884 3029 strb.w r3, [r4, #41] ; 0x29 +1000dc7a: f884 302a strb.w r3, [r4, #42] ; 0x2a +1000dc7e: f884 302b strb.w r3, [r4, #43] ; 0x2b +1000dc82: 4ea9 ldr r6, [pc, #676] ; (1000df28 ) +1000dc84: 4da9 ldr r5, [pc, #676] ; (1000df2c ) +1000dc86: 6830 ldr r0, [r6, #0] +1000dc88: 3020 adds r0, #32 +1000dc8a: 62e0 str r0, [r4, #44] ; 0x2c +1000dc8c: f034 fa80 bl 10042190 +1000dc90: 682b ldr r3, [r5, #0] +1000dc92: 6320 str r0, [r4, #48] ; 0x30 +1000dc94: b92b cbnz r3, 1000dca2 +1000dc96: 6830 ldr r0, [r6, #0] +1000dc98: f034 fa7a bl 10042190 +1000dc9c: 2800 cmp r0, #0 +1000dc9e: f000 80fc beq.w 1000de9a +1000dca2: 6830 ldr r0, [r6, #0] +1000dca4: 49a2 ldr r1, [pc, #648] ; (1000df30 ) +1000dca6: 4fa0 ldr r7, [pc, #640] ; (1000df28 ) +1000dca8: f034 fa66 bl 10042178 +1000dcac: bb60 cbnz r0, 1000dd08 +1000dcae: 6838 ldr r0, [r7, #0] +1000dcb0: f034 fa6e bl 10042190 +1000dcb4: 4625 mov r5, r4 +1000dcb6: f805 0b01 strb.w r0, [r5], #1 +1000dcba: b2c2 uxtb r2, r0 +1000dcbc: 6839 ldr r1, [r7, #0] +1000dcbe: 4628 mov r0, r5 +1000dcc0: f00f f874 bl 1001cdac +1000dcc4: 489b ldr r0, [pc, #620] ; (1000df34 ) +1000dcc6: f034 fa1f bl 10042108 +1000dcca: 6aa3 ldr r3, [r4, #40] ; 0x28 +1000dccc: 2b01 cmp r3, #1 +1000dcce: d032 beq.n 1000dd36 +1000dcd0: 6ae1 ldr r1, [r4, #44] ; 0x2c +1000dcd2: 4899 ldr r0, [pc, #612] ; (1000df38 ) +1000dcd4: f034 fa18 bl 10042108 +1000dcd8: 6b21 ldr r1, [r4, #48] ; 0x30 +1000dcda: 4898 ldr r0, [pc, #608] ; (1000df3c ) +1000dcdc: f034 fa14 bl 10042108 +1000dce0: 4629 mov r1, r5 +1000dce2: 4897 ldr r0, [pc, #604] ; (1000df40 ) +1000dce4: f034 fa10 bl 10042108 +1000dce8: 7821 ldrb r1, [r4, #0] +1000dcea: 4896 ldr r0, [pc, #600] ; (1000df44 ) +1000dcec: f034 fa0c bl 10042108 +1000dcf0: 4b95 ldr r3, [pc, #596] ; (1000df48 ) +1000dcf2: 4896 ldr r0, [pc, #600] ; (1000df4c ) +1000dcf4: 6819 ldr r1, [r3, #0] +1000dcf6: f034 fa07 bl 10042108 +1000dcfa: 4895 ldr r0, [pc, #596] ; (1000df50 ) +1000dcfc: f034 fa04 bl 10042108 +1000dd00: 2000 movs r0, #0 +1000dd02: b01f add sp, #124 ; 0x7c +1000dd04: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000dd08: 6838 ldr r0, [r7, #0] +1000dd0a: f034 fa41 bl 10042190 +1000dd0e: 2800 cmp r0, #0 +1000dd10: f040 8090 bne.w 1000de34 +1000dd14: 682a ldr r2, [r5, #0] +1000dd16: 2a00 cmp r2, #0 +1000dd18: dd7b ble.n 1000de12 +1000dd1a: 4625 mov r5, r4 +1000dd1c: f805 2b01 strb.w r2, [r5], #1 +1000dd20: 4628 mov r0, r5 +1000dd22: b2d2 uxtb r2, r2 +1000dd24: 4982 ldr r1, [pc, #520] ; (1000df30 ) +1000dd26: f00f f841 bl 1001cdac +1000dd2a: 488a ldr r0, [pc, #552] ; (1000df54 ) +1000dd2c: f034 f9ec bl 10042108 +1000dd30: 6aa3 ldr r3, [r4, #40] ; 0x28 +1000dd32: 2b01 cmp r3, #1 +1000dd34: d1cc bne.n 1000dcd0 +1000dd36: 6b23 ldr r3, [r4, #48] ; 0x30 +1000dd38: 2b0a cmp r3, #10 +1000dd3a: f000 80b4 beq.w 1000dea6 +1000dd3e: 2b1a cmp r3, #26 +1000dd40: d1c6 bne.n 1000dcd0 +1000dd42: 6830 ldr r0, [r6, #0] +1000dd44: f10d 0b4c add.w fp, sp, #76 ; 0x4c +1000dd48: f10d 0c5c add.w ip, sp, #92 ; 0x5c +1000dd4c: f10d 0e60 add.w lr, sp, #96 ; 0x60 +1000dd50: a919 add r1, sp, #100 ; 0x64 +1000dd52: aa1a add r2, sp, #104 ; 0x68 +1000dd54: ab1b add r3, sp, #108 ; 0x6c +1000dd56: f8cd b000 str.w fp, [sp] +1000dd5a: af1d add r7, sp, #116 ; 0x74 +1000dd5c: f10d 0a50 add.w sl, sp, #80 ; 0x50 +1000dd60: f10d 0954 add.w r9, sp, #84 ; 0x54 +1000dd64: f10d 0858 add.w r8, sp, #88 ; 0x58 +1000dd68: f10d 0b70 add.w fp, sp, #112 ; 0x70 +1000dd6c: f8cd e014 str.w lr, [sp, #20] +1000dd70: 9106 str r1, [sp, #24] +1000dd72: f04f 0e00 mov.w lr, #0 +1000dd76: 9207 str r2, [sp, #28] +1000dd78: 9308 str r3, [sp, #32] +1000dd7a: aa11 add r2, sp, #68 ; 0x44 +1000dd7c: ab12 add r3, sp, #72 ; 0x48 +1000dd7e: 3020 adds r0, #32 +1000dd80: 970a str r7, [sp, #40] ; 0x28 +1000dd82: f8cd a004 str.w sl, [sp, #4] +1000dd86: f8cd 9008 str.w r9, [sp, #8] +1000dd8a: f8cd 800c str.w r8, [sp, #12] +1000dd8e: f8cd c010 str.w ip, [sp, #16] +1000dd92: f8cd b024 str.w fp, [sp, #36] ; 0x24 +1000dd96: 4970 ldr r1, [pc, #448] ; (1000df58 ) +1000dd98: f8cd e044 str.w lr, [sp, #68] ; 0x44 +1000dd9c: f8cd e048 str.w lr, [sp, #72] ; 0x48 +1000dda0: f8cd e04c str.w lr, [sp, #76] ; 0x4c +1000dda4: f8cd e050 str.w lr, [sp, #80] ; 0x50 +1000dda8: f8cd e054 str.w lr, [sp, #84] ; 0x54 +1000ddac: f8cd e058 str.w lr, [sp, #88] ; 0x58 +1000ddb0: f8cd e05c str.w lr, [sp, #92] ; 0x5c +1000ddb4: f8cd e060 str.w lr, [sp, #96] ; 0x60 +1000ddb8: f8cd e064 str.w lr, [sp, #100] ; 0x64 +1000ddbc: f8cd e068 str.w lr, [sp, #104] ; 0x68 +1000ddc0: f8cd e06c str.w lr, [sp, #108] ; 0x6c +1000ddc4: f8cd e070 str.w lr, [sp, #112] ; 0x70 +1000ddc8: f8cd e074 str.w lr, [sp, #116] ; 0x74 +1000ddcc: f034 fb88 bl 100424e0 +1000ddd0: ab10 add r3, sp, #64 ; 0x40 +1000ddd2: f10d 0233 add.w r2, sp, #51 ; 0x33 +1000ddd6: f853 1f04 ldr.w r1, [r3, #4]! +1000ddda: 42bb cmp r3, r7 +1000dddc: f802 1f01 strb.w r1, [r2, #1]! +1000dde0: d1f9 bne.n 1000ddd6 +1000dde2: 6830 ldr r0, [r6, #0] +1000dde4: 2700 movs r7, #0 +1000dde6: 4639 mov r1, r7 +1000dde8: 2240 movs r2, #64 ; 0x40 +1000ddea: 3020 adds r0, #32 +1000ddec: f88d 7041 strb.w r7, [sp, #65] ; 0x41 +1000ddf0: f034 f9bc bl 1004216c +1000ddf4: 6830 ldr r0, [r6, #0] +1000ddf6: a90d add r1, sp, #52 ; 0x34 +1000ddf8: 3020 adds r0, #32 +1000ddfa: f034 f9c3 bl 10042184 +1000ddfe: 230d movs r3, #13 +1000de00: f884 7031 strb.w r7, [r4, #49] ; 0x31 +1000de04: f884 7032 strb.w r7, [r4, #50] ; 0x32 +1000de08: f884 7033 strb.w r7, [r4, #51] ; 0x33 +1000de0c: f884 3030 strb.w r3, [r4, #48] ; 0x30 +1000de10: e75e b.n 1000dcd0 +1000de12: 1c65 adds r5, r4, #1 +1000de14: e759 b.n 1000dcca +1000de16: 4851 ldr r0, [pc, #324] ; (1000df5c ) +1000de18: f034 f976 bl 10042108 +1000de1c: 2300 movs r3, #0 +1000de1e: 2104 movs r1, #4 +1000de20: 2220 movs r2, #32 +1000de22: f884 3029 strb.w r3, [r4, #41] ; 0x29 +1000de26: f884 302b strb.w r3, [r4, #43] ; 0x2b +1000de2a: f884 1028 strb.w r1, [r4, #40] ; 0x28 +1000de2e: f884 202a strb.w r2, [r4, #42] ; 0x2a +1000de32: e726 b.n 1000dc82 +1000de34: 6838 ldr r0, [r7, #0] +1000de36: f034 f9ab bl 10042190 +1000de3a: 4625 mov r5, r4 +1000de3c: f805 0b01 strb.w r0, [r5], #1 +1000de40: b2c2 uxtb r2, r0 +1000de42: 6839 ldr r1, [r7, #0] +1000de44: 4628 mov r0, r5 +1000de46: f00e ffb1 bl 1001cdac +1000de4a: 4845 ldr r0, [pc, #276] ; (1000df60 ) +1000de4c: f034 f95c bl 10042108 +1000de50: e73b b.n 1000dcca +1000de52: 4844 ldr r0, [pc, #272] ; (1000df64 ) +1000de54: f034 f958 bl 10042108 +1000de58: 2300 movs r3, #0 +1000de5a: 2104 movs r1, #4 +1000de5c: 2240 movs r2, #64 ; 0x40 +1000de5e: f884 3029 strb.w r3, [r4, #41] ; 0x29 +1000de62: f884 302b strb.w r3, [r4, #43] ; 0x2b +1000de66: f884 1028 strb.w r1, [r4, #40] ; 0x28 +1000de6a: f884 202a strb.w r2, [r4, #42] ; 0x2a +1000de6e: e708 b.n 1000dc82 +1000de70: 483d ldr r0, [pc, #244] ; (1000df68 ) +1000de72: f034 f949 bl 10042108 +1000de76: 2300 movs r3, #0 +1000de78: f884 5028 strb.w r5, [r4, #40] ; 0x28 +1000de7c: f884 3029 strb.w r3, [r4, #41] ; 0x29 +1000de80: f884 302a strb.w r3, [r4, #42] ; 0x2a +1000de84: f884 302b strb.w r3, [r4, #43] ; 0x2b +1000de88: f884 3034 strb.w r3, [r4, #52] ; 0x34 +1000de8c: f884 3035 strb.w r3, [r4, #53] ; 0x35 +1000de90: f884 3036 strb.w r3, [r4, #54] ; 0x36 +1000de94: f884 3037 strb.w r3, [r4, #55] ; 0x37 +1000de98: e6f3 b.n 1000dc82 +1000de9a: 4834 ldr r0, [pc, #208] ; (1000df6c ) +1000de9c: f034 f934 bl 10042108 +1000dea0: f04f 30ff mov.w r0, #4294967295 +1000dea4: e72d b.n 1000dd02 +1000dea6: 6830 ldr r0, [r6, #0] +1000dea8: aa13 add r2, sp, #76 ; 0x4c +1000deaa: ab14 add r3, sp, #80 ; 0x50 +1000deac: af15 add r7, sp, #84 ; 0x54 +1000deae: f04f 0e00 mov.w lr, #0 +1000deb2: e88d 008c stmia.w sp, {r2, r3, r7} +1000deb6: 3020 adds r0, #32 +1000deb8: aa11 add r2, sp, #68 ; 0x44 +1000deba: ab12 add r3, sp, #72 ; 0x48 +1000debc: 492c ldr r1, [pc, #176] ; (1000df70 ) +1000debe: f8cd e044 str.w lr, [sp, #68] ; 0x44 +1000dec2: f8cd e048 str.w lr, [sp, #72] ; 0x48 +1000dec6: f8cd e04c str.w lr, [sp, #76] ; 0x4c +1000deca: f8cd e050 str.w lr, [sp, #80] ; 0x50 +1000dece: f8cd e054 str.w lr, [sp, #84] ; 0x54 +1000ded2: f034 fb05 bl 100424e0 +1000ded6: ab10 add r3, sp, #64 ; 0x40 +1000ded8: f10d 0233 add.w r2, sp, #51 ; 0x33 +1000dedc: f853 1f04 ldr.w r1, [r3, #4]! +1000dee0: 42bb cmp r3, r7 +1000dee2: f802 1f01 strb.w r1, [r2, #1]! +1000dee6: d1f9 bne.n 1000dedc +1000dee8: 6830 ldr r0, [r6, #0] +1000deea: 2700 movs r7, #0 +1000deec: 4639 mov r1, r7 +1000deee: 2241 movs r2, #65 ; 0x41 +1000def0: 3020 adds r0, #32 +1000def2: f88d 7039 strb.w r7, [sp, #57] ; 0x39 +1000def6: f034 f939 bl 1004216c +1000defa: 6830 ldr r0, [r6, #0] +1000defc: a90d add r1, sp, #52 ; 0x34 +1000defe: 3020 adds r0, #32 +1000df00: f034 f940 bl 10042184 +1000df04: 2305 movs r3, #5 +1000df06: f884 7031 strb.w r7, [r4, #49] ; 0x31 +1000df0a: f884 7032 strb.w r7, [r4, #50] ; 0x32 +1000df0e: f884 7033 strb.w r7, [r4, #51] ; 0x33 +1000df12: f884 3030 strb.w r3, [r4, #48] ; 0x30 +1000df16: e6db b.n 1000dcd0 +1000df18: 100465b0 .word 0x100465b0 +1000df1c: 00400004 .word 0x00400004 +1000df20: 00200004 .word 0x00200004 +1000df24: 10046674 .word 0x10046674 +1000df28: 10050ab0 .word 0x10050ab0 +1000df2c: 10050aa4 .word 0x10050aa4 +1000df30: 10050ab8 .word 0x10050ab8 +1000df34: 100466c8 .word 0x100466c8 +1000df38: 10046738 .word 0x10046738 +1000df3c: 10046750 .word 0x10046750 +1000df40: 1004676c .word 0x1004676c +1000df44: 10046780 .word 0x10046780 +1000df48: 10050aa0 .word 0x10050aa0 +1000df4c: 10046798 .word 0x10046798 +1000df50: 100467b0 .word 0x100467b0 +1000df54: 10046714 .word 0x10046714 +1000df58: 1004602c .word 0x1004602c +1000df5c: 10046640 .word 0x10046640 +1000df60: 100466f4 .word 0x100466f4 +1000df64: 100465dc .word 0x100465dc +1000df68: 10046610 .word 0x10046610 +1000df6c: 100466a0 .word 0x100466a0 +1000df70: 1004604c .word 0x1004604c + +1000df74 : +1000df74: 2801 cmp r0, #1 +1000df76: b508 push {r3, lr} +1000df78: d009 beq.n 1000df8e +1000df7a: d309 bcc.n 1000df90 +1000df7c: 2803 cmp r0, #3 +1000df7e: d101 bne.n 1000df84 +1000df80: 4804 ldr r0, [pc, #16] ; (1000df94 ) +1000df82: bd08 pop {r3, pc} +1000df84: 4804 ldr r0, [pc, #16] ; (1000df98 ) +1000df86: f034 f8bf bl 10042108 +1000df8a: f04f 30ff mov.w r0, #4294967295 +1000df8e: bd08 pop {r3, pc} +1000df90: 2000 movs r0, #0 +1000df92: bd08 pop {r3, pc} +1000df94: 00400004 .word 0x00400004 +1000df98: 100467dc .word 0x100467dc + +1000df9c : +1000df9c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000dfa0: f04f 0900 mov.w r9, #0 +1000dfa4: b09d sub sp, #116 ; 0x74 +1000dfa6: 4603 mov r3, r0 +1000dfa8: 2505 movs r5, #5 +1000dfaa: 220e movs r2, #14 +1000dfac: 460e mov r6, r1 +1000dfae: a807 add r0, sp, #28 +1000dfb0: 4649 mov r1, r9 +1000dfb2: 685f ldr r7, [r3, #4] +1000dfb4: 681c ldr r4, [r3, #0] +1000dfb6: f88d 501b strb.w r5, [sp, #27] +1000dfba: f88d 901a strb.w r9, [sp, #26] +1000dfbe: f034 f8d5 bl 1004216c +1000dfc2: 4849 ldr r0, [pc, #292] ; (1000e0e8 ) +1000dfc4: f034 f8a0 bl 10042108 +1000dfc8: 464d mov r5, r9 +1000dfca: e005 b.n 1000dfd8 +1000dfcc: f89d 301c ldrb.w r3, [sp, #28] +1000dfd0: 441d add r5, r3 +1000dfd2: 42af cmp r7, r5 +1000dfd4: 441c add r4, r3 +1000dfd6: dd68 ble.n 1000e0aa +1000dfd8: 4621 mov r1, r4 +1000dfda: a807 add r0, sp, #28 +1000dfdc: 220e movs r2, #14 +1000dfde: f034 f8bf bl 10042160 +1000dfe2: f89d 101c ldrb.w r1, [sp, #28] +1000dfe6: 290d cmp r1, #13 +1000dfe8: d96c bls.n 1000e0c4 +1000dfea: 2100 movs r1, #0 +1000dfec: 2241 movs r2, #65 ; 0x41 +1000dfee: a80b add r0, sp, #44 ; 0x2c +1000dff0: f034 f8bc bl 1004216c +1000dff4: f89d 801c ldrb.w r8, [sp, #28] +1000dff8: a80b add r0, sp, #44 ; 0x2c +1000dffa: f1a8 080e sub.w r8, r8, #14 +1000dffe: 4642 mov r2, r8 +1000e000: f104 010e add.w r1, r4, #14 +1000e004: f034 f8ac bl 10042160 +1000e008: 7832 ldrb r2, [r6, #0] +1000e00a: 4542 cmp r2, r8 +1000e00c: d1de bne.n 1000dfcc +1000e00e: f106 0801 add.w r8, r6, #1 +1000e012: 4641 mov r1, r8 +1000e014: a80b add r0, sp, #44 ; 0x2c +1000e016: f034 f89d bl 10042154 +1000e01a: 2800 cmp r0, #0 +1000e01c: d1d6 bne.n 1000dfcc +1000e01e: a80b add r0, sp, #44 ; 0x2c +1000e020: f89d 9020 ldrb.w r9, [sp, #32] +1000e024: f89d c021 ldrb.w ip, [sp, #33] ; 0x21 +1000e028: f89d e022 ldrb.w lr, [sp, #34] ; 0x22 +1000e02c: 9003 str r0, [sp, #12] +1000e02e: f89d 0027 ldrb.w r0, [sp, #39] ; 0x27 +1000e032: f89d 301f ldrb.w r3, [sp, #31] +1000e036: 9004 str r0, [sp, #16] +1000e038: f89d 101d ldrb.w r1, [sp, #29] +1000e03c: f89d 201e ldrb.w r2, [sp, #30] +1000e040: e88d 5200 stmia.w sp, {r9, ip, lr} +1000e044: 4829 ldr r0, [pc, #164] ; (1000e0ec ) +1000e046: f034 f85f bl 10042108 +1000e04a: f89d 3029 ldrb.w r3, [sp, #41] ; 0x29 +1000e04e: f10d 0b70 add.w fp, sp, #112 ; 0x70 +1000e052: f80b 3d56 strb.w r3, [fp, #-86]! +1000e056: f04f 0a03 mov.w sl, #3 +1000e05a: 4658 mov r0, fp +1000e05c: f10d 011b add.w r1, sp, #27 +1000e060: 2201 movs r2, #1 +1000e062: f7ff fa3f bl 1000d4e4 +1000e066: 2800 cmp r0, #0 +1000e068: db37 blt.n 1000e0da +1000e06a: f89d 0027 ldrb.w r0, [sp, #39] ; 0x27 +1000e06e: f7ff ff81 bl 1000df74 +1000e072: f896 c000 ldrb.w ip, [r6] +1000e076: f8d6 e030 ldr.w lr, [r6, #48] ; 0x30 +1000e07a: 2100 movs r1, #0 +1000e07c: 4602 mov r2, r0 +1000e07e: 2006 movs r0, #6 +1000e080: 6af3 ldr r3, [r6, #44] ; 0x2c +1000e082: e88d 5001 stmia.w sp, {r0, ip, lr} +1000e086: 9103 str r1, [sp, #12] +1000e088: 9104 str r1, [sp, #16] +1000e08a: f10d 001d add.w r0, sp, #29 +1000e08e: 4641 mov r1, r8 +1000e090: f7fe fd40 bl 1000cb14 +1000e094: 4681 mov r9, r0 +1000e096: b168 cbz r0, 1000e0b4 +1000e098: f1ba 0a01 subs.w sl, sl, #1 +1000e09c: d1dd bne.n 1000e05a +1000e09e: f89d 301c ldrb.w r3, [sp, #28] +1000e0a2: 441d add r5, r3 +1000e0a4: 42af cmp r7, r5 +1000e0a6: 441c add r4, r3 +1000e0a8: dc96 bgt.n 1000dfd8 +1000e0aa: 4629 mov r1, r5 +1000e0ac: 463a mov r2, r7 +1000e0ae: 4810 ldr r0, [pc, #64] ; (1000e0f0 ) +1000e0b0: f034 f82a bl 10042108 +1000e0b4: 490f ldr r1, [pc, #60] ; (1000e0f4 ) +1000e0b6: 4810 ldr r0, [pc, #64] ; (1000e0f8 ) +1000e0b8: f034 f826 bl 10042108 +1000e0bc: 4648 mov r0, r9 +1000e0be: b01d add sp, #116 ; 0x74 +1000e0c0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000e0c4: 480d ldr r0, [pc, #52] ; (1000e0fc ) +1000e0c6: f034 f81f bl 10042108 +1000e0ca: 490a ldr r1, [pc, #40] ; (1000e0f4 ) +1000e0cc: 480c ldr r0, [pc, #48] ; (1000e100 ) +1000e0ce: f034 f81b bl 10042108 +1000e0d2: 4648 mov r0, r9 +1000e0d4: b01d add sp, #116 ; 0x74 +1000e0d6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000e0da: 480a ldr r0, [pc, #40] ; (1000e104 ) +1000e0dc: f034 f814 bl 10042108 +1000e0e0: f04f 0903 mov.w r9, #3 +1000e0e4: e7f1 b.n 1000e0ca +1000e0e6: bf00 nop +1000e0e8: 10046800 .word 0x10046800 +1000e0ec: 10046858 .word 0x10046858 +1000e0f0: 100468cc .word 0x100468cc +1000e0f4: 10046570 .word 0x10046570 +1000e0f8: 100468e4 .word 0x100468e4 +1000e0fc: 1004683c .word 0x1004683c +1000e100: 100468f0 .word 0x100468f0 +1000e104: 100468a0 .word 0x100468a0 + +1000e108 : +1000e108: b530 push {r4, r5, lr} +1000e10a: 1c45 adds r5, r0, #1 +1000e10c: 7803 ldrb r3, [r0, #0] +1000e10e: b085 sub sp, #20 +1000e110: 6ac2 ldr r2, [r0, #44] ; 0x2c +1000e112: 4629 mov r1, r5 +1000e114: 4604 mov r4, r0 +1000e116: 4821 ldr r0, [pc, #132] ; (1000e19c ) +1000e118: 9301 str r3, [sp, #4] +1000e11a: f033 fff5 bl 10042108 +1000e11e: f44f 737a mov.w r3, #1000 ; 0x3e8 +1000e122: 4618 mov r0, r3 +1000e124: 9303 str r3, [sp, #12] +1000e126: f00c fd2d bl 1001ab84 +1000e12a: 9002 str r0, [sp, #8] +1000e12c: 2800 cmp r0, #0 +1000e12e: d02f beq.n 1000e190 +1000e130: 2100 movs r1, #0 +1000e132: 9a03 ldr r2, [sp, #12] +1000e134: f034 f81a bl 1004216c +1000e138: b175 cbz r5, 1000e158 +1000e13a: 9b01 ldr r3, [sp, #4] +1000e13c: 3b01 subs r3, #1 +1000e13e: 2b1f cmp r3, #31 +1000e140: d80a bhi.n 1000e158 +1000e142: a901 add r1, sp, #4 +1000e144: 2204 movs r2, #4 +1000e146: 9802 ldr r0, [sp, #8] +1000e148: f034 f80a bl 10042160 +1000e14c: 9802 ldr r0, [sp, #8] +1000e14e: 4629 mov r1, r5 +1000e150: 3004 adds r0, #4 +1000e152: 9a01 ldr r2, [sp, #4] +1000e154: f034 f804 bl 10042160 +1000e158: aa02 add r2, sp, #8 +1000e15a: 2000 movs r0, #0 +1000e15c: 2102 movs r1, #2 +1000e15e: f7ff f85b bl 1000d218 +1000e162: 2800 cmp r0, #0 +1000e164: db0e blt.n 1000e184 +1000e166: 4621 mov r1, r4 +1000e168: a802 add r0, sp, #8 +1000e16a: f7ff ff17 bl 1000df9c +1000e16e: 4604 mov r4, r0 +1000e170: 9802 ldr r0, [sp, #8] +1000e172: b120 cbz r0, 1000e17e +1000e174: f00c fc96 bl 1001aaa4 +1000e178: 4620 mov r0, r4 +1000e17a: b005 add sp, #20 +1000e17c: bd30 pop {r4, r5, pc} +1000e17e: 4620 mov r0, r4 +1000e180: b005 add sp, #20 +1000e182: bd30 pop {r4, r5, pc} +1000e184: 4806 ldr r0, [pc, #24] ; (1000e1a0 ) +1000e186: f033 ffbf bl 10042108 +1000e18a: f04f 34ff mov.w r4, #4294967295 +1000e18e: e7ef b.n 1000e170 +1000e190: 4804 ldr r0, [pc, #16] ; (1000e1a4 ) +1000e192: f033 ffb9 bl 10042108 +1000e196: f06f 001a mvn.w r0, #26 +1000e19a: e7ee b.n 1000e17a +1000e19c: 100468fc .word 0x100468fc +1000e1a0: 10046290 .word 0x10046290 +1000e1a4: 10046920 .word 0x10046920 + +1000e1a8 : +1000e1a8: 3801 subs r0, #1 +1000e1aa: b508 push {r3, lr} +1000e1ac: 2808 cmp r0, #8 +1000e1ae: d80c bhi.n 1000e1ca +1000e1b0: e8df f000 tbb [pc, r0] +1000e1b4: 09090507 .word 0x09090507 +1000e1b8: 0b090909 .word 0x0b090909 +1000e1bc: 05 .byte 0x05 +1000e1bd: 00 .byte 0x00 +1000e1be: 2001 movs r0, #1 +1000e1c0: bd08 pop {r3, pc} +1000e1c2: 2000 movs r0, #0 +1000e1c4: bd08 pop {r3, pc} +1000e1c6: 4804 ldr r0, [pc, #16] ; (1000e1d8 ) +1000e1c8: bd08 pop {r3, pc} +1000e1ca: 4804 ldr r0, [pc, #16] ; (1000e1dc ) +1000e1cc: f033 ff9c bl 10042108 +1000e1d0: f04f 30ff mov.w r0, #4294967295 +1000e1d4: bd08 pop {r3, pc} +1000e1d6: bf00 nop +1000e1d8: 00400004 .word 0x00400004 +1000e1dc: 10046940 .word 0x10046940 + +1000e1e0 : +1000e1e0: b5f0 push {r4, r5, r6, r7, lr} +1000e1e2: 4a3a ldr r2, [pc, #232] ; (1000e2cc ) +1000e1e4: b097 sub sp, #92 ; 0x5c +1000e1e6: 6812 ldr r2, [r2, #0] +1000e1e8: 2300 movs r3, #0 +1000e1ea: 9308 str r3, [sp, #32] +1000e1ec: 9309 str r3, [sp, #36] ; 0x24 +1000e1ee: 930a str r3, [sp, #40] ; 0x28 +1000e1f0: 930b str r3, [sp, #44] ; 0x2c +1000e1f2: 930c str r3, [sp, #48] ; 0x30 +1000e1f4: 930d str r3, [sp, #52] ; 0x34 +1000e1f6: 930e str r3, [sp, #56] ; 0x38 +1000e1f8: 930f str r3, [sp, #60] ; 0x3c +1000e1fa: 9310 str r3, [sp, #64] ; 0x40 +1000e1fc: 9311 str r3, [sp, #68] ; 0x44 +1000e1fe: 9312 str r3, [sp, #72] ; 0x48 +1000e200: 9313 str r3, [sp, #76] ; 0x4c +1000e202: 9314 str r3, [sp, #80] ; 0x50 +1000e204: 9315 str r3, [sp, #84] ; 0x54 +1000e206: b10a cbz r2, 1000e20c +1000e208: f88d 201e strb.w r2, [sp, #30] +1000e20c: 4c30 ldr r4, [pc, #192] ; (1000e2d0 ) +1000e20e: 2305 movs r3, #5 +1000e210: 7820 ldrb r0, [r4, #0] +1000e212: f88d 301f strb.w r3, [sp, #31] +1000e216: f7ff ffc7 bl 1000e1a8 +1000e21a: 23ff movs r3, #255 ; 0xff +1000e21c: a908 add r1, sp, #32 +1000e21e: 7023 strb r3, [r4, #0] +1000e220: f7ff fd10 bl 1000dc44 +1000e224: 3001 adds r0, #1 +1000e226: d04a beq.n 1000e2be +1000e228: 2000 movs r0, #0 +1000e22a: f7ff faf9 bl 1000d820 +1000e22e: 4e29 ldr r6, [pc, #164] ; (1000e2d4 ) +1000e230: 2406 movs r4, #6 +1000e232: f10d 011f add.w r1, sp, #31 +1000e236: f10d 001e add.w r0, sp, #30 +1000e23a: 2201 movs r2, #1 +1000e23c: f7ff f952 bl 1000d4e4 +1000e240: 2500 movs r5, #0 +1000e242: 42a8 cmp r0, r5 +1000e244: f04f 0e06 mov.w lr, #6 +1000e248: f10d 0121 add.w r1, sp, #33 ; 0x21 +1000e24c: 4822 ldr r0, [pc, #136] ; (1000e2d8 ) +1000e24e: db38 blt.n 1000e2c2 +1000e250: f89d 7020 ldrb.w r7, [sp, #32] +1000e254: 9a12 ldr r2, [sp, #72] ; 0x48 +1000e256: 9701 str r7, [sp, #4] +1000e258: 9f14 ldr r7, [sp, #80] ; 0x50 +1000e25a: f8cd e000 str.w lr, [sp] +1000e25e: 9702 str r7, [sp, #8] +1000e260: 9f15 ldr r7, [sp, #84] ; 0x54 +1000e262: 9504 str r5, [sp, #16] +1000e264: 9b13 ldr r3, [sp, #76] ; 0x4c +1000e266: 9703 str r7, [sp, #12] +1000e268: 6035 str r5, [r6, #0] +1000e26a: f7fe fc53 bl 1000cb14 +1000e26e: b1a0 cbz r0, 1000e29a +1000e270: 3c01 subs r4, #1 +1000e272: d1de bne.n 1000e232 +1000e274: 4819 ldr r0, [pc, #100] ; (1000e2dc ) +1000e276: f033 ff47 bl 10042108 +1000e27a: a808 add r0, sp, #32 +1000e27c: f7ff ff44 bl 1000e108 +1000e280: b158 cbz r0, 1000e29a +1000e282: 2404 movs r4, #4 +1000e284: 4816 ldr r0, [pc, #88] ; (1000e2e0 ) +1000e286: f033 ff3f bl 10042108 +1000e28a: 210a movs r1, #10 +1000e28c: 2205 movs r2, #5 +1000e28e: 2001 movs r0, #1 +1000e290: f7ff fab4 bl 1000d7fc +1000e294: 4620 mov r0, r4 +1000e296: b017 add sp, #92 ; 0x5c +1000e298: bdf0 pop {r4, r5, r6, r7, pc} +1000e29a: 2000 movs r0, #0 +1000e29c: 2103 movs r1, #3 +1000e29e: f00d fb01 bl 1001b8a4 +1000e2a2: 2000 movs r0, #0 +1000e2a4: 4601 mov r1, r0 +1000e2a6: f001 f883 bl 1000f3b0 +1000e2aa: 2101 movs r1, #1 +1000e2ac: 4604 mov r4, r0 +1000e2ae: 2000 movs r0, #0 +1000e2b0: f00d faf8 bl 1001b8a4 +1000e2b4: 2c02 cmp r4, #2 +1000e2b6: bf0c ite eq +1000e2b8: 2408 moveq r4, #8 +1000e2ba: 2405 movne r4, #5 +1000e2bc: e7e5 b.n 1000e28a +1000e2be: 2402 movs r4, #2 +1000e2c0: e7e0 b.n 1000e284 +1000e2c2: 4808 ldr r0, [pc, #32] ; (1000e2e4 ) +1000e2c4: f033 ff20 bl 10042108 +1000e2c8: 2403 movs r4, #3 +1000e2ca: e7db b.n 1000e284 +1000e2cc: 10050aa0 .word 0x10050aa0 +1000e2d0: 1004d8fc .word 0x1004d8fc +1000e2d4: 10050858 .word 0x10050858 +1000e2d8: 10053074 .word 0x10053074 +1000e2dc: 10046964 .word 0x10046964 +1000e2e0: 10046990 .word 0x10046990 +1000e2e4: 100468a0 .word 0x100468a0 + +1000e2e8 : +1000e2e8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000e2ec: 4b3a ldr r3, [pc, #232] ; (1000e3d8 ) +1000e2ee: 2400 movs r4, #0 +1000e2f0: f8df e120 ldr.w lr, [pc, #288] ; 1000e414 +1000e2f4: 4d39 ldr r5, [pc, #228] ; (1000e3dc ) +1000e2f6: 4e3a ldr r6, [pc, #232] ; (1000e3e0 ) +1000e2f8: f04f 0c01 mov.w ip, #1 +1000e2fc: 2220 movs r2, #32 +1000e2fe: b08d sub sp, #52 ; 0x34 +1000e300: 4621 mov r1, r4 +1000e302: 4607 mov r7, r0 +1000e304: 4837 ldr r0, [pc, #220] ; (1000e3e4 ) +1000e306: f8c6 c000 str.w ip, [r6] +1000e30a: f8ce 4000 str.w r4, [lr] +1000e30e: 602c str r4, [r5, #0] +1000e310: 601c str r4, [r3, #0] +1000e312: f00e fd5d bl 1001cdd0 +1000e316: 4b34 ldr r3, [pc, #208] ; (1000e3e8 ) +1000e318: 4d34 ldr r5, [pc, #208] ; (1000e3ec ) +1000e31a: 601c str r4, [r3, #0] +1000e31c: f00d fb58 bl 1001b9d0 +1000e320: 4a33 ldr r2, [pc, #204] ; (1000e3f0 ) +1000e322: 682b ldr r3, [r5, #0] +1000e324: 6010 str r0, [r2, #0] +1000e326: b11b cbz r3, 1000e330 +1000e328: 4618 mov r0, r3 +1000e32a: f00c fbbb bl 1001aaa4 +1000e32e: 602c str r4, [r5, #0] +1000e330: 2050 movs r0, #80 ; 0x50 +1000e332: f00c fc27 bl 1001ab84 +1000e336: 4c2d ldr r4, [pc, #180] ; (1000e3ec ) +1000e338: 6028 str r0, [r5, #0] +1000e33a: 2800 cmp r0, #0 +1000e33c: d03a beq.n 1000e3b4 +1000e33e: 2250 movs r2, #80 ; 0x50 +1000e340: 2100 movs r1, #0 +1000e342: f033 ff13 bl 1004216c +1000e346: 2065 movs r0, #101 ; 0x65 +1000e348: f00c fc1c bl 1001ab84 +1000e34c: 4a29 ldr r2, [pc, #164] ; (1000e3f4 ) +1000e34e: 6010 str r0, [r2, #0] +1000e350: 2800 cmp r0, #0 +1000e352: d034 beq.n 1000e3be +1000e354: 2100 movs r1, #0 +1000e356: 2265 movs r2, #101 ; 0x65 +1000e358: f033 ff08 bl 1004216c +1000e35c: f8df b0b8 ldr.w fp, [pc, #184] ; 1000e418 +1000e360: f8df c0b8 ldr.w ip, [pc, #184] ; 1000e41c +1000e364: f8df e0b8 ldr.w lr, [pc, #184] ; 1000e420 +1000e368: 4a23 ldr r2, [pc, #140] ; (1000e3f8 ) +1000e36a: 4b24 ldr r3, [pc, #144] ; (1000e3fc ) +1000e36c: f8df a0b4 ldr.w sl, [pc, #180] ; 1000e424 +1000e370: f8df 90b4 ldr.w r9, [pc, #180] ; 1000e428 +1000e374: f8df 80b4 ldr.w r8, [pc, #180] ; 1000e42c +1000e378: 4d21 ldr r5, [pc, #132] ; (1000e400 ) +1000e37a: 4c22 ldr r4, [pc, #136] ; (1000e404 ) +1000e37c: 4638 mov r0, r7 +1000e37e: a901 add r1, sp, #4 +1000e380: 960b str r6, [sp, #44] ; 0x2c +1000e382: f8cd b018 str.w fp, [sp, #24] +1000e386: f8cd a020 str.w sl, [sp, #32] +1000e38a: f8cd 9024 str.w r9, [sp, #36] ; 0x24 +1000e38e: f8cd 800c str.w r8, [sp, #12] +1000e392: f8cd c008 str.w ip, [sp, #8] +1000e396: f8cd e004 str.w lr, [sp, #4] +1000e39a: 9505 str r5, [sp, #20] +1000e39c: 9404 str r4, [sp, #16] +1000e39e: 9207 str r2, [sp, #28] +1000e3a0: 930a str r3, [sp, #40] ; 0x28 +1000e3a2: f012 fcd5 bl 10020d50 +1000e3a6: 2800 cmp r0, #0 +1000e3a8: bfa8 it ge +1000e3aa: 2000 movge r0, #0 +1000e3ac: db0d blt.n 1000e3ca +1000e3ae: b00d add sp, #52 ; 0x34 +1000e3b0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000e3b4: 4814 ldr r0, [pc, #80] ; (1000e408 ) +1000e3b6: f033 fea7 bl 10042108 +1000e3ba: 6820 ldr r0, [r4, #0] +1000e3bc: e7bf b.n 1000e33e +1000e3be: 4813 ldr r0, [pc, #76] ; (1000e40c ) +1000e3c0: f033 fea2 bl 10042108 +1000e3c4: f04f 30ff mov.w r0, #4294967295 +1000e3c8: e7f1 b.n 1000e3ae +1000e3ca: 4811 ldr r0, [pc, #68] ; (1000e410 ) +1000e3cc: f033 fe9c bl 10042108 +1000e3d0: f04f 30ff mov.w r0, #4294967295 +1000e3d4: e7eb b.n 1000e3ae +1000e3d6: bf00 nop +1000e3d8: 10050adc .word 0x10050adc +1000e3dc: 10050aa0 .word 0x10050aa0 +1000e3e0: 10050aa8 .word 0x10050aa8 +1000e3e4: 10050ab8 .word 0x10050ab8 +1000e3e8: 10050aa4 .word 0x10050aa4 +1000e3ec: 10050a9c .word 0x10050a9c +1000e3f0: 10050a98 .word 0x10050a98 +1000e3f4: 10050ab0 .word 0x10050ab0 +1000e3f8: 1001cd71 .word 0x1001cd71 +1000e3fc: 10013e21 .word 0x10013e21 +1000e400: 10042185 .word 0x10042185 +1000e404: 10042539 .word 0x10042539 +1000e408: 100469ac .word 0x100469ac +1000e40c: 100469d0 .word 0x100469d0 +1000e410: 100469f0 .word 0x100469f0 +1000e414: 10050ab4 .word 0x10050ab4 +1000e418: 1001cd9d .word 0x1001cd9d +1000e41c: 1004216d .word 0x1004216d +1000e420: 10042109 .word 0x10042109 +1000e424: 1001cd45 .word 0x1001cd45 +1000e428: 10042155 .word 0x10042155 +1000e42c: 10042161 .word 0x10042161 + +1000e430 : +1000e430: b510 push {r4, lr} +1000e432: 4c0a ldr r4, [pc, #40] ; (1000e45c ) +1000e434: f012 fd54 bl 10020ee0 +1000e438: 6820 ldr r0, [r4, #0] +1000e43a: b118 cbz r0, 1000e444 +1000e43c: f00c fb32 bl 1001aaa4 +1000e440: 2300 movs r3, #0 +1000e442: 6023 str r3, [r4, #0] +1000e444: 4c06 ldr r4, [pc, #24] ; (1000e460 ) +1000e446: 6820 ldr r0, [r4, #0] +1000e448: b118 cbz r0, 1000e452 +1000e44a: f00c fb2b bl 1001aaa4 +1000e44e: 2300 movs r3, #0 +1000e450: 6023 str r3, [r4, #0] +1000e452: 4b04 ldr r3, [pc, #16] ; (1000e464 ) +1000e454: 2200 movs r2, #0 +1000e456: 601a str r2, [r3, #0] +1000e458: bd10 pop {r4, pc} +1000e45a: bf00 nop +1000e45c: 10050ab0 .word 0x10050ab0 +1000e460: 10050a9c .word 0x10050a9c +1000e464: 10050858 .word 0x10050858 + +1000e468 : +1000e468: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000e46c: b083 sub sp, #12 +1000e46e: 9001 str r0, [sp, #4] +1000e470: 2001 movs r0, #1 +1000e472: 4602 mov r2, r0 +1000e474: 496d ldr r1, [pc, #436] ; (1000e62c ) +1000e476: f7ff f993 bl 1000d7a0 +1000e47a: f00d faa9 bl 1001b9d0 +1000e47e: 4607 mov r7, r0 +1000e480: 486b ldr r0, [pc, #428] ; (1000e630 ) +1000e482: f033 fe41 bl 10042108 +1000e486: 2001 movs r0, #1 +1000e488: f7fe fd3a bl 1000cf00 +1000e48c: f8df 81ac ldr.w r8, [pc, #428] ; 1000e63c +1000e490: f8df 91d8 ldr.w r9, [pc, #472] ; 1000e66c +1000e494: f8df a1d8 ldr.w sl, [pc, #472] ; 1000e670 +1000e498: 2600 movs r6, #0 +1000e49a: 2501 movs r5, #1 +1000e49c: f999 3000 ldrsb.w r3, [r9] +1000e4a0: 2b01 cmp r3, #1 +1000e4a2: d032 beq.n 1000e50a +1000e4a4: 2032 movs r0, #50 ; 0x32 +1000e4a6: f00d fbbf bl 1001bc28 +1000e4aa: f00d fa91 bl 1001b9d0 +1000e4ae: f44f 747a mov.w r4, #1000 ; 0x3e8 +1000e4b2: 4a60 ldr r2, [pc, #384] ; (1000e634 ) +1000e4b4: f106 0378 add.w r3, r6, #120 ; 0x78 +1000e4b8: fb04 f303 mul.w r3, r4, r3 +1000e4bc: 6812 ldr r2, [r2, #0] +1000e4be: f8ca 0000 str.w r0, [sl] +1000e4c2: 1a80 subs r0, r0, r2 +1000e4c4: 4298 cmp r0, r3 +1000e4c6: d220 bcs.n 1000e50a +1000e4c8: f00d fa82 bl 1001b9d0 +1000e4cc: 1bc0 subs r0, r0, r7 +1000e4ce: fb04 f400 mul.w r4, r4, r0 +1000e4d2: 4b59 ldr r3, [pc, #356] ; (1000e638 ) +1000e4d4: f8d8 2000 ldr.w r2, [r8] +1000e4d8: 429c cmp r4, r3 +1000e4da: 4b58 ldr r3, [pc, #352] ; (1000e63c ) +1000e4dc: d91e bls.n 1000e51c +1000e4de: 2a01 cmp r2, #1 +1000e4e0: d030 beq.n 1000e544 +1000e4e2: 3501 adds r5, #1 +1000e4e4: 1e6b subs r3, r5, #1 +1000e4e6: 2b0c cmp r3, #12 +1000e4e8: d83a bhi.n 1000e560 +1000e4ea: 4628 mov r0, r5 +1000e4ec: f7fe fd08 bl 1000cf00 +1000e4f0: 2800 cmp r0, #0 +1000e4f2: d1d3 bne.n 1000e49c +1000e4f4: f00d fa6c bl 1001b9d0 +1000e4f8: 4629 mov r1, r5 +1000e4fa: 4607 mov r7, r0 +1000e4fc: 4850 ldr r0, [pc, #320] ; (1000e640 ) +1000e4fe: f033 fe03 bl 10042108 +1000e502: f999 3000 ldrsb.w r3, [r9] +1000e506: 2b01 cmp r3, #1 +1000e508: d1cc bne.n 1000e4a4 +1000e50a: 2000 movs r0, #0 +1000e50c: 4601 mov r1, r0 +1000e50e: 4602 mov r2, r0 +1000e510: f7ff f946 bl 1000d7a0 +1000e514: 2001 movs r0, #1 +1000e516: b003 add sp, #12 +1000e518: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000e51c: b992 cbnz r2, 1000e544 +1000e51e: 4a49 ldr r2, [pc, #292] ; (1000e644 ) +1000e520: 7814 ldrb r4, [r2, #0] +1000e522: 2c01 cmp r4, #1 +1000e524: d10e bne.n 1000e544 +1000e526: 4848 ldr r0, [pc, #288] ; (1000e648 ) +1000e528: 4948 ldr r1, [pc, #288] ; (1000e64c ) +1000e52a: 4a49 ldr r2, [pc, #292] ; (1000e650 ) +1000e52c: 9300 str r3, [sp, #0] +1000e52e: f7ff fa11 bl 1000d954 +1000e532: 9b00 ldr r3, [sp, #0] +1000e534: 4683 mov fp, r0 +1000e536: 2800 cmp r0, #0 +1000e538: d140 bne.n 1000e5bc +1000e53a: 4846 ldr r0, [pc, #280] ; (1000e654 ) +1000e53c: 9300 str r3, [sp, #0] +1000e53e: f033 fde3 bl 10042108 +1000e542: 9b00 ldr r3, [sp, #0] +1000e544: f8df b12c ldr.w fp, [pc, #300] ; 1000e674 +1000e548: f8db 4000 ldr.w r4, [fp] +1000e54c: 2c01 cmp r4, #1 +1000e54e: d049 beq.n 1000e5e4 +1000e550: 1c62 adds r2, r4, #1 +1000e552: d00b beq.n 1000e56c +1000e554: 3402 adds r4, #2 +1000e556: d1a1 bne.n 1000e49c +1000e558: 483f ldr r0, [pc, #252] ; (1000e658 ) +1000e55a: f033 fdd5 bl 10042108 +1000e55e: e7d4 b.n 1000e50a +1000e560: 2001 movs r0, #1 +1000e562: f7fe fccd bl 1000cf00 +1000e566: b300 cbz r0, 1000e5aa +1000e568: 2501 movs r5, #1 +1000e56a: e797 b.n 1000e49c +1000e56c: 483b ldr r0, [pc, #236] ; (1000e65c ) +1000e56e: 9300 str r3, [sp, #0] +1000e570: f033 fdca bl 10042108 +1000e574: 2001 movs r0, #1 +1000e576: f7fe fcc3 bl 1000cf00 +1000e57a: 2600 movs r6, #0 +1000e57c: 9b00 ldr r3, [sp, #0] +1000e57e: f8df e0e8 ldr.w lr, [pc, #232] ; 1000e668 +1000e582: 4631 mov r1, r6 +1000e584: 2220 movs r2, #32 +1000e586: 4831 ldr r0, [pc, #196] ; (1000e64c ) +1000e588: 601e str r6, [r3, #0] +1000e58a: f8ce 6000 str.w r6, [lr] +1000e58e: f033 fded bl 1004216c +1000e592: 4a2f ldr r2, [pc, #188] ; (1000e650 ) +1000e594: 4b32 ldr r3, [pc, #200] ; (1000e660 ) +1000e596: f8cb 6000 str.w r6, [fp] +1000e59a: 6016 str r6, [r2, #0] +1000e59c: 701c strb r4, [r3, #0] +1000e59e: 263c movs r6, #60 ; 0x3c +1000e5a0: f012 fbb0 bl 10020d04 +1000e5a4: f8db 4000 ldr.w r4, [fp] +1000e5a8: e7d4 b.n 1000e554 +1000e5aa: f00d fa11 bl 1001b9d0 +1000e5ae: 2101 movs r1, #1 +1000e5b0: 4607 mov r7, r0 +1000e5b2: 4823 ldr r0, [pc, #140] ; (1000e640 ) +1000e5b4: f033 fda8 bl 10042108 +1000e5b8: 2501 movs r5, #1 +1000e5ba: e76f b.n 1000e49c +1000e5bc: 4659 mov r1, fp +1000e5be: 4a23 ldr r2, [pc, #140] ; (1000e64c ) +1000e5c0: 4828 ldr r0, [pc, #160] ; (1000e664 ) +1000e5c2: f033 fda1 bl 10042108 +1000e5c6: 4a28 ldr r2, [pc, #160] ; (1000e668 ) +1000e5c8: 4658 mov r0, fp +1000e5ca: 491c ldr r1, [pc, #112] ; (1000e63c ) +1000e5cc: f8c2 b000 str.w fp, [r2] +1000e5d0: f8df b0a0 ldr.w fp, [pc, #160] ; 1000e674 +1000e5d4: 600c str r4, [r1, #0] +1000e5d6: f7fe fc93 bl 1000cf00 +1000e5da: f8db 4000 ldr.w r4, [fp] +1000e5de: 9b00 ldr r3, [sp, #0] +1000e5e0: 2c01 cmp r4, #1 +1000e5e2: d1b5 bne.n 1000e550 +1000e5e4: 469b mov fp, r3 +1000e5e6: 2300 movs r3, #0 +1000e5e8: 4618 mov r0, r3 +1000e5ea: 4619 mov r1, r3 +1000e5ec: 461a mov r2, r3 +1000e5ee: f8cb 3000 str.w r3, [fp] +1000e5f2: f7ff f8d5 bl 1000d7a0 +1000e5f6: 9b01 ldr r3, [sp, #4] +1000e5f8: b15b cbz r3, 1000e612 +1000e5fa: 9b01 ldr r3, [sp, #4] +1000e5fc: 6a98 ldr r0, [r3, #40] ; 0x28 +1000e5fe: 4619 mov r1, r3 +1000e600: f7ff fb20 bl 1000dc44 +1000e604: 3001 adds r0, #1 +1000e606: bf14 ite ne +1000e608: 2008 movne r0, #8 +1000e60a: 2002 moveq r0, #2 +1000e60c: b003 add sp, #12 +1000e60e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000e612: f7ff fde5 bl 1000e1e0 +1000e616: 2808 cmp r0, #8 +1000e618: f47f af7d bne.w 1000e516 +1000e61c: 200a movs r0, #10 +1000e61e: f7ff fac1 bl 1000dba4 +1000e622: 3001 adds r0, #1 +1000e624: bf0c ite eq +1000e626: 2006 moveq r0, #6 +1000e628: 2008 movne r0, #8 +1000e62a: e774 b.n 1000e516 +1000e62c: 1000db09 .word 0x1000db09 +1000e630: 10047ea0 .word 0x10047ea0 +1000e634: 10050a98 .word 0x10050a98 +1000e638: 0001869f .word 0x0001869f +1000e63c: 10050ab4 .word 0x10050ab4 +1000e640: 10046aa0 .word 0x10046aa0 +1000e644: 10053088 .word 0x10053088 +1000e648: 10053074 .word 0x10053074 +1000e64c: 10050ab8 .word 0x10050ab8 +1000e650: 10050aa4 .word 0x10050aa4 +1000e654: 10046a38 .word 0x10046a38 +1000e658: 10046a7c .word 0x10046a7c +1000e65c: 10046a4c .word 0x10046a4c +1000e660: 1004d8fc .word 0x1004d8fc +1000e664: 10046a04 .word 0x10046a04 +1000e668: 10050aa0 .word 0x10050aa0 +1000e66c: 10050aac .word 0x10050aac +1000e670: 10050ad8 .word 0x10050ad8 +1000e674: 10050adc .word 0x10050adc + +1000e678 : +1000e678: b5f0 push {r4, r5, r6, r7, lr} +1000e67a: 4b1c ldr r3, [pc, #112] ; (1000e6ec ) +1000e67c: b08b sub sp, #44 ; 0x2c +1000e67e: 461a mov r2, r3 +1000e680: f832 ef04 ldrh.w lr, [r2, #4]! +1000e684: 881d ldrh r5, [r3, #0] +1000e686: 7898 ldrb r0, [r3, #2] +1000e688: 7897 ldrb r7, [r2, #2] +1000e68a: ab01 add r3, sp, #4 +1000e68c: 2400 movs r4, #0 +1000e68e: a903 add r1, sp, #12 +1000e690: 2203 movs r2, #3 +1000e692: ae02 add r6, sp, #8 +1000e694: f8ad e008 strh.w lr, [sp, #8] +1000e698: 9305 str r3, [sp, #20] +1000e69a: 9308 str r3, [sp, #32] +1000e69c: f88d 0006 strb.w r0, [sp, #6] +1000e6a0: f88d 000e strb.w r0, [sp, #14] +1000e6a4: 9109 str r1, [sp, #36] ; 0x24 +1000e6a6: f8ad 2012 strh.w r2, [sp, #18] +1000e6aa: f8ad 201e strh.w r2, [sp, #30] +1000e6ae: f88d 700a strb.w r7, [sp, #10] +1000e6b2: 9606 str r6, [sp, #24] +1000e6b4: f8ad 5004 strh.w r5, [sp, #4] +1000e6b8: f8ad 500c strh.w r5, [sp, #12] +1000e6bc: f8ad 4010 strh.w r4, [sp, #16] +1000e6c0: f8ad 401c strh.w r4, [sp, #28] +1000e6c4: f7ff f8be bl 1000d844 +1000e6c8: 4622 mov r2, r4 +1000e6ca: a904 add r1, sp, #16 +1000e6cc: 2001 movs r0, #1 +1000e6ce: f7ff f8bb bl 1000d848 +1000e6d2: 4622 mov r2, r4 +1000e6d4: a907 add r1, sp, #28 +1000e6d6: 2002 movs r0, #2 +1000e6d8: f7ff f8b6 bl 1000d848 +1000e6dc: 2001 movs r0, #1 +1000e6de: f7ff f8b5 bl 1000d84c +1000e6e2: 2002 movs r0, #2 +1000e6e4: f7ff f8b2 bl 1000d84c +1000e6e8: b00b add sp, #44 ; 0x2c +1000e6ea: bdf0 pop {r4, r5, r6, r7, pc} +1000e6ec: 10046568 .word 0x10046568 + +1000e6f0 : +1000e6f0: b508 push {r3, lr} +1000e6f2: 2001 movs r0, #1 +1000e6f4: f7ff f8ac bl 1000d850 +1000e6f8: 2002 movs r0, #2 +1000e6fa: f7ff f8a9 bl 1000d850 +1000e6fe: 2001 movs r0, #1 +1000e700: f7ff f8a8 bl 1000d854 +1000e704: e8bd 4008 ldmia.w sp!, {r3, lr} +1000e708: 2002 movs r0, #2 +1000e70a: f7ff b8a3 b.w 1000d854 +1000e70e: bf00 nop + +1000e710 : +1000e710: b510 push {r4, lr} +1000e712: 4604 mov r4, r0 +1000e714: 481c ldr r0, [pc, #112] ; (1000e788 ) +1000e716: f033 fcf7 bl 10042108 +1000e71a: 1e60 subs r0, r4, #1 +1000e71c: 2807 cmp r0, #7 +1000e71e: d82d bhi.n 1000e77c +1000e720: e8df f000 tbb [pc, r0] +1000e724: 18130e09 .word 0x18130e09 +1000e728: 0427221d .word 0x0427221d +1000e72c: 4817 ldr r0, [pc, #92] ; (1000e78c ) +1000e72e: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e732: f033 bce9 b.w 10042108 +1000e736: 4816 ldr r0, [pc, #88] ; (1000e790 ) +1000e738: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e73c: f033 bce4 b.w 10042108 +1000e740: 4814 ldr r0, [pc, #80] ; (1000e794 ) +1000e742: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e746: f033 bcdf b.w 10042108 +1000e74a: 4813 ldr r0, [pc, #76] ; (1000e798 ) +1000e74c: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e750: f033 bcda b.w 10042108 +1000e754: 4811 ldr r0, [pc, #68] ; (1000e79c ) +1000e756: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e75a: f033 bcd5 b.w 10042108 +1000e75e: 4810 ldr r0, [pc, #64] ; (1000e7a0 ) +1000e760: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e764: f033 bcd0 b.w 10042108 +1000e768: 480e ldr r0, [pc, #56] ; (1000e7a4 ) +1000e76a: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e76e: f033 bccb b.w 10042108 +1000e772: 480d ldr r0, [pc, #52] ; (1000e7a8 ) +1000e774: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e778: f033 bcc6 b.w 10042108 +1000e77c: 480b ldr r0, [pc, #44] ; (1000e7ac ) +1000e77e: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e782: f033 bcc1 b.w 10042108 +1000e786: bf00 nop +1000e788: 10044a0c .word 0x10044a0c +1000e78c: 10046c08 .word 0x10046c08 +1000e790: 10046abc .word 0x10046abc +1000e794: 10046afc .word 0x10046afc +1000e798: 10046b40 .word 0x10046b40 +1000e79c: 10046b70 .word 0x10046b70 +1000e7a0: 10046b90 .word 0x10046b90 +1000e7a4: 10046bc0 .word 0x10046bc0 +1000e7a8: 10046bec .word 0x10046bec +1000e7ac: 10046c20 .word 0x10046c20 + +1000e7b0 : +1000e7b0: 2802 cmp r0, #2 +1000e7b2: b510 push {r4, lr} +1000e7b4: dc1f bgt.n 1000e7f6 +1000e7b6: bf0c ite eq +1000e7b8: 684c ldreq r4, [r1, #4] +1000e7ba: 2400 movne r4, #0 +1000e7bc: 4b1d ldr r3, [pc, #116] ; (1000e834 ) +1000e7be: 491e ldr r1, [pc, #120] ; (1000e838 ) +1000e7c0: 681a ldr r2, [r3, #0] +1000e7c2: 2000 movs r0, #0 +1000e7c4: f442 7280 orr.w r2, r2, #256 ; 0x100 +1000e7c8: 7008 strb r0, [r1, #0] +1000e7ca: 601a str r2, [r3, #0] +1000e7cc: f7fe ffea bl 1000d7a4 +1000e7d0: 4620 mov r0, r4 +1000e7d2: f7ff fd89 bl 1000e2e8 +1000e7d6: 4604 mov r4, r0 +1000e7d8: b190 cbz r0, 1000e800 +1000e7da: f04f 34ff mov.w r4, #4294967295 +1000e7de: 4623 mov r3, r4 +1000e7e0: 4816 ldr r0, [pc, #88] ; (1000e83c ) +1000e7e2: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000e7e6: 4a16 ldr r2, [pc, #88] ; (1000e840 ) +1000e7e8: f033 fc1e bl 10042028 +1000e7ec: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e7f0: 4812 ldr r0, [pc, #72] ; (1000e83c ) +1000e7f2: f011 b805 b.w 1001f800 +1000e7f6: 4813 ldr r0, [pc, #76] ; (1000e844 ) +1000e7f8: f033 fc86 bl 10042108 +1000e7fc: 2400 movs r4, #0 +1000e7fe: e7dd b.n 1000e7bc +1000e800: f7ff ff3a bl 1000e678 +1000e804: 4620 mov r0, r4 +1000e806: f7ff fe2f bl 1000e468 +1000e80a: 4604 mov r4, r0 +1000e80c: f7ff fe10 bl 1000e430 +1000e810: 4620 mov r0, r4 +1000e812: f7ff ff7d bl 1000e710 +1000e816: f7ff ff6b bl 1000e6f0 +1000e81a: 2c08 cmp r4, #8 +1000e81c: d1df bne.n 1000e7de +1000e81e: 4807 ldr r0, [pc, #28] ; (1000e83c ) +1000e820: f44f 61c8 mov.w r1, #1600 ; 0x640 +1000e824: 4a08 ldr r2, [pc, #32] ; (1000e848 ) +1000e826: f033 fbff bl 10042028 +1000e82a: e8bd 4010 ldmia.w sp!, {r4, lr} +1000e82e: 4803 ldr r0, [pc, #12] ; (1000e83c ) +1000e830: f010 bfe6 b.w 1001f800 +1000e834: 10050858 .word 0x10050858 +1000e838: 10050aac .word 0x10050aac +1000e83c: 1005207c .word 0x1005207c +1000e840: 10046c60 .word 0x10046c60 +1000e844: 10046c44 .word 0x10046c44 +1000e848: 10046c54 .word 0x10046c54 + +1000e84c : +1000e84c: b570 push {r4, r5, r6, lr} +1000e84e: b088 sub sp, #32 +1000e850: 4606 mov r6, r0 +1000e852: 460c mov r4, r1 +1000e854: 2220 movs r2, #32 +1000e856: 2100 movs r1, #0 +1000e858: 4668 mov r0, sp +1000e85a: f033 fc87 bl 1004216c +1000e85e: 2520 movs r5, #32 +1000e860: 4631 mov r1, r6 +1000e862: 2205 movs r2, #5 +1000e864: 4668 mov r0, sp +1000e866: 9404 str r4, [sp, #16] +1000e868: f8ad 5014 strh.w r5, [sp, #20] +1000e86c: f033 fc78 bl 10042160 +1000e870: 4669 mov r1, sp +1000e872: f648 301b movw r0, #35611 ; 0x8b1b +1000e876: f02d f9cf bl 1003bc18 +1000e87a: 2800 cmp r0, #0 +1000e87c: db13 blt.n 1000e8a6 +1000e87e: f8bd 0014 ldrh.w r0, [sp, #20] +1000e882: 2820 cmp r0, #32 +1000e884: dd07 ble.n 1000e896 +1000e886: 462b mov r3, r5 +1000e888: 4628 mov r0, r5 +1000e88a: 221f movs r2, #31 +1000e88c: 5ca2 ldrb r2, [r4, r2] +1000e88e: b922 cbnz r2, 1000e89a +1000e890: 3801 subs r0, #1 +1000e892: 4603 mov r3, r0 +1000e894: e001 b.n 1000e89a +1000e896: 4603 mov r3, r0 +1000e898: b918 cbnz r0, 1000e8a2 +1000e89a: 2200 movs r2, #0 +1000e89c: 54e2 strb r2, [r4, r3] +1000e89e: b008 add sp, #32 +1000e8a0: bd70 pop {r4, r5, r6, pc} +1000e8a2: 1e42 subs r2, r0, #1 +1000e8a4: e7f2 b.n 1000e88c +1000e8a6: 4803 ldr r0, [pc, #12] ; (1000e8b4 ) +1000e8a8: f033 fc2e bl 10042108 +1000e8ac: f04f 30ff mov.w r0, #4294967295 +1000e8b0: e7f5 b.n 1000e89e +1000e8b2: bf00 nop +1000e8b4: 10046c74 .word 0x10046c74 + +1000e8b8 : +1000e8b8: b570 push {r4, r5, r6, lr} +1000e8ba: b088 sub sp, #32 +1000e8bc: 4614 mov r4, r2 +1000e8be: 4606 mov r6, r0 +1000e8c0: 460d mov r5, r1 +1000e8c2: 2220 movs r2, #32 +1000e8c4: 2100 movs r1, #0 +1000e8c6: 4668 mov r0, sp +1000e8c8: f033 fc50 bl 1004216c +1000e8cc: 1c23 adds r3, r4, #0 +1000e8ce: bf18 it ne +1000e8d0: 2301 movne r3, #1 +1000e8d2: 4631 mov r1, r6 +1000e8d4: 2205 movs r2, #5 +1000e8d6: 4668 mov r0, sp +1000e8d8: f8ad 3016 strh.w r3, [sp, #22] +1000e8dc: 9504 str r5, [sp, #16] +1000e8de: f8ad 4014 strh.w r4, [sp, #20] +1000e8e2: f033 fc3d bl 10042160 +1000e8e6: 4669 mov r1, sp +1000e8e8: f648 301a movw r0, #35610 ; 0x8b1a +1000e8ec: f02d f994 bl 1003bc18 +1000e8f0: 2800 cmp r0, #0 +1000e8f2: bfa8 it ge +1000e8f4: 2000 movge r0, #0 +1000e8f6: db01 blt.n 1000e8fc +1000e8f8: b008 add sp, #32 +1000e8fa: bd70 pop {r4, r5, r6, pc} +1000e8fc: 4802 ldr r0, [pc, #8] ; (1000e908 ) +1000e8fe: f033 fc03 bl 10042108 +1000e902: f04f 30ff mov.w r0, #4294967295 +1000e906: e7f7 b.n 1000e8f8 +1000e908: 10046ca8 .word 0x10046ca8 + +1000e90c : +1000e90c: b530 push {r4, r5, lr} +1000e90e: b089 sub sp, #36 ; 0x24 +1000e910: 460c mov r4, r1 +1000e912: 2220 movs r2, #32 +1000e914: 2100 movs r1, #0 +1000e916: 4605 mov r5, r0 +1000e918: 4668 mov r0, sp +1000e91a: f033 fc27 bl 1004216c +1000e91e: 2301 movs r3, #1 +1000e920: 4621 mov r1, r4 +1000e922: f10d 0012 add.w r0, sp, #18 +1000e926: 2206 movs r2, #6 +1000e928: f88d 3011 strb.w r3, [sp, #17] +1000e92c: f033 fc18 bl 10042160 +1000e930: 79a3 ldrb r3, [r4, #6] +1000e932: 2b23 cmp r3, #35 ; 0x23 +1000e934: d00f beq.n 1000e956 +1000e936: 4629 mov r1, r5 +1000e938: 2205 movs r2, #5 +1000e93a: 4668 mov r0, sp +1000e93c: f033 fc10 bl 10042160 +1000e940: 4669 mov r1, sp +1000e942: f648 3014 movw r0, #35604 ; 0x8b14 +1000e946: f02d f967 bl 1003bc18 +1000e94a: 2800 cmp r0, #0 +1000e94c: bfa8 it ge +1000e94e: 2000 movge r0, #0 +1000e950: db0a blt.n 1000e968 +1000e952: b009 add sp, #36 ; 0x24 +1000e954: bd30 pop {r4, r5, pc} +1000e956: 79e3 ldrb r3, [r4, #7] +1000e958: 2b40 cmp r3, #64 ; 0x40 +1000e95a: d1ec bne.n 1000e936 +1000e95c: 1da1 adds r1, r4, #6 +1000e95e: a806 add r0, sp, #24 +1000e960: 2206 movs r2, #6 +1000e962: f033 fbfd bl 10042160 +1000e966: e7e6 b.n 1000e936 +1000e968: 4802 ldr r0, [pc, #8] ; (1000e974 ) +1000e96a: f033 fbcd bl 10042108 +1000e96e: f04f 30ff mov.w r0, #4294967295 +1000e972: e7ee b.n 1000e952 +1000e974: 10046cc4 .word 0x10046cc4 + +1000e978 : +1000e978: b570 push {r4, r5, r6, lr} +1000e97a: b088 sub sp, #32 +1000e97c: 4606 mov r6, r0 +1000e97e: 460d mov r5, r1 +1000e980: 4614 mov r4, r2 +1000e982: 2100 movs r1, #0 +1000e984: 2220 movs r2, #32 +1000e986: 4668 mov r0, sp +1000e988: f033 fbf0 bl 1004216c +1000e98c: f3c5 030b ubfx r3, r5, #0, #12 +1000e990: 4631 mov r1, r6 +1000e992: 2205 movs r2, #5 +1000e994: 4668 mov r0, sp +1000e996: f8ad 3016 strh.w r3, [sp, #22] +1000e99a: 9404 str r4, [sp, #16] +1000e99c: f033 fbe0 bl 10042160 +1000e9a0: 4669 mov r1, sp +1000e9a2: f648 3032 movw r0, #35634 ; 0x8b32 +1000e9a6: f02d f937 bl 1003bc18 +1000e9aa: 2800 cmp r0, #0 +1000e9ac: db02 blt.n 1000e9b4 +1000e9ae: 2000 movs r0, #0 +1000e9b0: b008 add sp, #32 +1000e9b2: bd70 pop {r4, r5, r6, pc} +1000e9b4: 4629 mov r1, r5 +1000e9b6: 4622 mov r2, r4 +1000e9b8: 4802 ldr r0, [pc, #8] ; (1000e9c4 ) +1000e9ba: f033 fba5 bl 10042108 +1000e9be: 2000 movs r0, #0 +1000e9c0: b008 add sp, #32 +1000e9c2: bd70 pop {r4, r5, r6, pc} +1000e9c4: 10046ce0 .word 0x10046ce0 + +1000e9c8 : +1000e9c8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000e9cc: b089 sub sp, #36 ; 0x24 +1000e9ce: f8bd 5058 ldrh.w r5, [sp, #88] ; 0x58 +1000e9d2: 4682 mov sl, r0 +1000e9d4: f105 0728 add.w r7, r5, #40 ; 0x28 +1000e9d8: 4638 mov r0, r7 +1000e9da: 4688 mov r8, r1 +1000e9dc: 4614 mov r4, r2 +1000e9de: 469b mov fp, r3 +1000e9e0: f8bd 9050 ldrh.w r9, [sp, #80] ; 0x50 +1000e9e4: f00c f8ce bl 1001ab84 +1000e9e8: 4606 mov r6, r0 +1000e9ea: 2800 cmp r0, #0 +1000e9ec: f000 8082 beq.w 1000eaf4 +1000e9f0: 2100 movs r1, #0 +1000e9f2: 463a mov r2, r7 +1000e9f4: f033 fbba bl 1004216c +1000e9f8: f10b 0b01 add.w fp, fp, #1 +1000e9fc: 2220 movs r2, #32 +1000e9fe: 4668 mov r0, sp +1000ea00: 2100 movs r1, #0 +1000ea02: f033 fbb3 bl 1004216c +1000ea06: fa1f fb8b uxth.w fp, fp +1000ea0a: f5b8 4f00 cmp.w r8, #32768 ; 0x8000 +1000ea0e: f44b 6280 orr.w r2, fp, #1024 ; 0x400 +1000ea12: bf08 it eq +1000ea14: f44b 4b04 orreq.w fp, fp, #33792 ; 0x8400 +1000ea18: f8ad 2016 strh.w r2, [sp, #22] +1000ea1c: 9604 str r6, [sp, #16] +1000ea1e: f8ad 7014 strh.w r7, [sp, #20] +1000ea22: bf08 it eq +1000ea24: f8ad b016 strheq.w fp, [sp, #22] +1000ea28: 2c00 cmp r4, #0 +1000ea2a: d045 beq.n 1000eab8 +1000ea2c: 7861 ldrb r1, [r4, #1] +1000ea2e: 7822 ldrb r2, [r4, #0] +1000ea30: 78a0 ldrb r0, [r4, #2] +1000ea32: 400a ands r2, r1 +1000ea34: 78e1 ldrb r1, [r4, #3] +1000ea36: 4002 ands r2, r0 +1000ea38: 7920 ldrb r0, [r4, #4] +1000ea3a: 400a ands r2, r1 +1000ea3c: 7961 ldrb r1, [r4, #5] +1000ea3e: 4002 ands r2, r0 +1000ea40: 400a ands r2, r1 +1000ea42: 2aff cmp r2, #255 ; 0xff +1000ea44: d038 beq.n 1000eab8 +1000ea46: 9b12 ldr r3, [sp, #72] ; 0x48 +1000ea48: bb3b cbnz r3, 1000ea9a +1000ea4a: 2201 movs r2, #1 +1000ea4c: 7572 strb r2, [r6, #21] +1000ea4e: b364 cbz r4, 1000eaaa +1000ea50: 4621 mov r1, r4 +1000ea52: f106 0016 add.w r0, r6, #22 +1000ea56: 2206 movs r2, #6 +1000ea58: f033 fb82 bl 10042160 +1000ea5c: 9b15 ldr r3, [sp, #84] ; 0x54 +1000ea5e: b10b cbz r3, 1000ea64 +1000ea60: 2d00 cmp r5, #0 +1000ea62: d139 bne.n 1000ead8 +1000ea64: 9b13 ldr r3, [sp, #76] ; 0x4c +1000ea66: f8a6 8024 strh.w r8, [r6, #36] ; 0x24 +1000ea6a: b113 cbz r3, 1000ea72 +1000ea6c: f1b9 0f00 cmp.w r9, #0 +1000ea70: d127 bne.n 1000eac2 +1000ea72: 4651 mov r1, sl +1000ea74: 2205 movs r2, #5 +1000ea76: 4668 mov r0, sp +1000ea78: f033 fb72 bl 10042160 +1000ea7c: 4669 mov r1, sp +1000ea7e: f648 3034 movw r0, #35636 ; 0x8b34 +1000ea82: f02d f8c9 bl 1003bc18 +1000ea86: 2800 cmp r0, #0 +1000ea88: db2e blt.n 1000eae8 +1000ea8a: 2400 movs r4, #0 +1000ea8c: 4630 mov r0, r6 +1000ea8e: f00c f809 bl 1001aaa4 +1000ea92: 4620 mov r0, r4 +1000ea94: b009 add sp, #36 ; 0x24 +1000ea96: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000ea9a: 6832 ldr r2, [r6, #0] +1000ea9c: f042 0208 orr.w r2, r2, #8 +1000eaa0: 6032 str r2, [r6, #0] +1000eaa2: 2201 movs r2, #1 +1000eaa4: 7572 strb r2, [r6, #21] +1000eaa6: 2c00 cmp r4, #0 +1000eaa8: d1d2 bne.n 1000ea50 +1000eaaa: f106 0016 add.w r0, r6, #22 +1000eaae: 21ff movs r1, #255 ; 0xff +1000eab0: 2206 movs r2, #6 +1000eab2: f033 fb5b bl 1004216c +1000eab6: e7d1 b.n 1000ea5c +1000eab8: 6832 ldr r2, [r6, #0] +1000eaba: f042 0204 orr.w r2, r2, #4 +1000eabe: 6032 str r2, [r6, #0] +1000eac0: e7c1 b.n 1000ea46 +1000eac2: 6832 ldr r2, [r6, #0] +1000eac4: 4630 mov r0, r6 +1000eac6: f042 0202 orr.w r2, r2, #2 +1000eaca: f840 2b0c str.w r2, [r0], #12 +1000eace: 4619 mov r1, r3 +1000ead0: 464a mov r2, r9 +1000ead2: f033 fb45 bl 10042160 +1000ead6: e7cc b.n 1000ea72 +1000ead8: 4619 mov r1, r3 +1000eada: f106 0028 add.w r0, r6, #40 ; 0x28 +1000eade: 462a mov r2, r5 +1000eae0: f033 fb3e bl 10042160 +1000eae4: 84f5 strh r5, [r6, #38] ; 0x26 +1000eae6: e7bd b.n 1000ea64 +1000eae8: 4804 ldr r0, [pc, #16] ; (1000eafc ) +1000eaea: f033 fb0d bl 10042108 +1000eaee: f06f 0401 mvn.w r4, #1 +1000eaf2: e7cb b.n 1000ea8c +1000eaf4: f04f 30ff mov.w r0, #4294967295 +1000eaf8: e7cc b.n 1000ea94 +1000eafa: bf00 nop +1000eafc: 10046d14 .word 0x10046d14 + +1000eb00 : +1000eb00: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000eb04: 4607 mov r7, r0 +1000eb06: b088 sub sp, #32 +1000eb08: 2038 movs r0, #56 ; 0x38 +1000eb0a: 4688 mov r8, r1 +1000eb0c: 4616 mov r6, r2 +1000eb0e: 461d mov r5, r3 +1000eb10: f00c f838 bl 1001ab84 +1000eb14: 4604 mov r4, r0 +1000eb16: b360 cbz r0, 1000eb72 +1000eb18: 2100 movs r1, #0 +1000eb1a: 2238 movs r2, #56 ; 0x38 +1000eb1c: f033 fb26 bl 1004216c +1000eb20: 4639 mov r1, r7 +1000eb22: 2205 movs r2, #5 +1000eb24: 4668 mov r0, sp +1000eb26: 9404 str r4, [sp, #16] +1000eb28: f033 fb1a bl 10042160 +1000eb2c: 4669 mov r1, sp +1000eb2e: f648 3035 movw r0, #35637 ; 0x8b35 +1000eb32: f02d f871 bl 1003bc18 +1000eb36: 2800 cmp r0, #0 +1000eb38: db15 blt.n 1000eb66 +1000eb3a: 8ca3 ldrh r3, [r4, #36] ; 0x24 +1000eb3c: f8a8 3000 strh.w r3, [r8] +1000eb40: b116 cbz r6, 1000eb48 +1000eb42: f8bd 3016 ldrh.w r3, [sp, #22] +1000eb46: 7033 strb r3, [r6, #0] +1000eb48: b135 cbz r5, 1000eb58 +1000eb4a: 4628 mov r0, r5 +1000eb4c: f104 0128 add.w r1, r4, #40 ; 0x28 +1000eb50: 8ce2 ldrh r2, [r4, #38] ; 0x26 +1000eb52: f033 fb05 bl 10042160 +1000eb56: 2500 movs r5, #0 +1000eb58: 4620 mov r0, r4 +1000eb5a: f00b ffa3 bl 1001aaa4 +1000eb5e: 4628 mov r0, r5 +1000eb60: b008 add sp, #32 +1000eb62: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000eb66: 4804 ldr r0, [pc, #16] ; (1000eb78 ) +1000eb68: f033 face bl 10042108 +1000eb6c: f04f 35ff mov.w r5, #4294967295 +1000eb70: e7f2 b.n 1000eb58 +1000eb72: f04f 30ff mov.w r0, #4294967295 +1000eb76: e7f3 b.n 1000eb60 +1000eb78: 10046d3c .word 0x10046d3c + +1000eb7c : +1000eb7c: b570 push {r4, r5, r6, lr} +1000eb7e: b088 sub sp, #32 +1000eb80: 4614 mov r4, r2 +1000eb82: 4606 mov r6, r0 +1000eb84: 460d mov r5, r1 +1000eb86: 2220 movs r2, #32 +1000eb88: 2100 movs r1, #0 +1000eb8a: 4668 mov r0, sp +1000eb8c: f033 faee bl 1004216c +1000eb90: 1c23 adds r3, r4, #0 +1000eb92: bf18 it ne +1000eb94: 2301 movne r3, #1 +1000eb96: 4631 mov r1, r6 +1000eb98: 2205 movs r2, #5 +1000eb9a: 4668 mov r0, sp +1000eb9c: f8ad 3016 strh.w r3, [sp, #22] +1000eba0: 9504 str r5, [sp, #16] +1000eba2: f8ad 4014 strh.w r4, [sp, #20] +1000eba6: f033 fadb bl 10042160 +1000ebaa: 4669 mov r1, sp +1000ebac: f648 30ff movw r0, #35839 ; 0x8bff +1000ebb0: f02d f832 bl 1003bc18 +1000ebb4: 2800 cmp r0, #0 +1000ebb6: bfa8 it ge +1000ebb8: 2000 movge r0, #0 +1000ebba: db01 blt.n 1000ebc0 +1000ebbc: b008 add sp, #32 +1000ebbe: bd70 pop {r4, r5, r6, pc} +1000ebc0: 4802 ldr r0, [pc, #8] ; (1000ebcc ) +1000ebc2: f033 faa1 bl 10042108 +1000ebc6: f04f 30ff mov.w r0, #4294967295 +1000ebca: e7f7 b.n 1000ebbc +1000ebcc: 10046d5c .word 0x10046d5c + +1000ebd0 : +1000ebd0: b530 push {r4, r5, lr} +1000ebd2: b089 sub sp, #36 ; 0x24 +1000ebd4: 4605 mov r5, r0 +1000ebd6: 460c mov r4, r1 +1000ebd8: 2220 movs r2, #32 +1000ebda: 2100 movs r1, #0 +1000ebdc: 4668 mov r0, sp +1000ebde: f033 fac5 bl 1004216c +1000ebe2: 4629 mov r1, r5 +1000ebe4: 2205 movs r2, #5 +1000ebe6: 4668 mov r0, sp +1000ebe8: 9404 str r4, [sp, #16] +1000ebea: f033 fab9 bl 10042160 +1000ebee: 4669 mov r1, sp +1000ebf0: f648 30fc movw r0, #35836 ; 0x8bfc +1000ebf4: f02d f810 bl 1003bc18 +1000ebf8: 2800 cmp r0, #0 +1000ebfa: db05 blt.n 1000ec08 +1000ebfc: f8bd 0014 ldrh.w r0, [sp, #20] +1000ec00: 2300 movs r3, #0 +1000ec02: 5423 strb r3, [r4, r0] +1000ec04: b009 add sp, #36 ; 0x24 +1000ec06: bd30 pop {r4, r5, pc} +1000ec08: 4802 ldr r0, [pc, #8] ; (1000ec14 ) +1000ec0a: f033 fa7d bl 10042108 +1000ec0e: f04f 30ff mov.w r0, #4294967295 +1000ec12: e7f7 b.n 1000ec04 +1000ec14: 10046d80 .word 0x10046d80 + +1000ec18 : +1000ec18: b530 push {r4, r5, lr} +1000ec1a: b089 sub sp, #36 ; 0x24 +1000ec1c: 4605 mov r5, r0 +1000ec1e: 460c mov r4, r1 +1000ec20: 2220 movs r2, #32 +1000ec22: 2100 movs r1, #0 +1000ec24: 4668 mov r0, sp +1000ec26: f033 faa1 bl 1004216c +1000ec2a: 4629 mov r1, r5 +1000ec2c: 2205 movs r2, #5 +1000ec2e: 4668 mov r0, sp +1000ec30: 9404 str r4, [sp, #16] +1000ec32: f033 fa95 bl 10042160 +1000ec36: 4669 mov r1, sp +1000ec38: f648 3006 movw r0, #35590 ; 0x8b06 +1000ec3c: f02c ffec bl 1003bc18 +1000ec40: 2800 cmp r0, #0 +1000ec42: bfa8 it ge +1000ec44: 2000 movge r0, #0 +1000ec46: db01 blt.n 1000ec4c +1000ec48: b009 add sp, #36 ; 0x24 +1000ec4a: bd30 pop {r4, r5, pc} +1000ec4c: 4802 ldr r0, [pc, #8] ; (1000ec58 ) +1000ec4e: f033 fa5b bl 10042108 +1000ec52: f04f 30ff mov.w r0, #4294967295 +1000ec56: e7f7 b.n 1000ec48 +1000ec58: 10046e70 .word 0x10046e70 + +1000ec5c : +1000ec5c: b530 push {r4, r5, lr} +1000ec5e: b089 sub sp, #36 ; 0x24 +1000ec60: 4604 mov r4, r0 +1000ec62: 2220 movs r2, #32 +1000ec64: 460d mov r5, r1 +1000ec66: 4668 mov r0, sp +1000ec68: 2100 movs r1, #0 +1000ec6a: f033 fa7f bl 1004216c +1000ec6e: 4621 mov r1, r4 +1000ec70: 2205 movs r2, #5 +1000ec72: 4668 mov r0, sp +1000ec74: f033 fa74 bl 10042160 +1000ec78: 4669 mov r1, sp +1000ec7a: f648 3007 movw r0, #35591 ; 0x8b07 +1000ec7e: f02c ffcb bl 1003bc18 +1000ec82: 2800 cmp r0, #0 +1000ec84: db04 blt.n 1000ec90 +1000ec86: 9b04 ldr r3, [sp, #16] +1000ec88: 2000 movs r0, #0 +1000ec8a: 602b str r3, [r5, #0] +1000ec8c: b009 add sp, #36 ; 0x24 +1000ec8e: bd30 pop {r4, r5, pc} +1000ec90: 4802 ldr r0, [pc, #8] ; (1000ec9c ) +1000ec92: f033 fa39 bl 10042108 +1000ec96: f04f 30ff mov.w r0, #4294967295 +1000ec9a: e7f7 b.n 1000ec8c +1000ec9c: 10046e8c .word 0x10046e8c + +1000eca0 : +1000eca0: b570 push {r4, r5, r6, lr} +1000eca2: b088 sub sp, #32 +1000eca4: 4614 mov r4, r2 +1000eca6: 4606 mov r6, r0 +1000eca8: 460d mov r5, r1 +1000ecaa: 2220 movs r2, #32 +1000ecac: 2100 movs r1, #0 +1000ecae: 4668 mov r0, sp +1000ecb0: f033 fa5c bl 1004216c +1000ecb4: 1c23 adds r3, r4, #0 +1000ecb6: bf18 it ne +1000ecb8: 2301 movne r3, #1 +1000ecba: 4631 mov r1, r6 +1000ecbc: 2205 movs r2, #5 +1000ecbe: 4668 mov r0, sp +1000ecc0: f8ad 3016 strh.w r3, [sp, #22] +1000ecc4: 9504 str r5, [sp, #16] +1000ecc6: f8ad 4014 strh.w r4, [sp, #20] +1000ecca: f033 fa49 bl 10042160 +1000ecce: 4669 mov r1, sp +1000ecd0: f648 30fe movw r0, #35838 ; 0x8bfe +1000ecd4: f02c ffa0 bl 1003bc18 +1000ecd8: 2800 cmp r0, #0 +1000ecda: bfa8 it ge +1000ecdc: 2000 movge r0, #0 +1000ecde: db01 blt.n 1000ece4 +1000ece0: b008 add sp, #32 +1000ece2: bd70 pop {r4, r5, r6, pc} +1000ece4: 4802 ldr r0, [pc, #8] ; (1000ecf0 ) +1000ece6: f033 fa0f bl 10042108 +1000ecea: f04f 30ff mov.w r0, #4294967295 +1000ecee: e7f7 b.n 1000ece0 +1000ecf0: 10046db0 .word 0x10046db0 + +1000ecf4 : +1000ecf4: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000ecf8: b08b sub sp, #44 ; 0x2c +1000ecfa: ea4f 0943 mov.w r9, r3, lsl #1 +1000ecfe: 9001 str r0, [sp, #4] +1000ed00: 468b mov fp, r1 +1000ed02: 4692 mov sl, r2 +1000ed04: 2100 movs r1, #0 +1000ed06: 2220 movs r2, #32 +1000ed08: a802 add r0, sp, #8 +1000ed0a: 461f mov r7, r3 +1000ed0c: f033 fa2e bl 1004216c +1000ed10: f109 000d add.w r0, r9, #13 +1000ed14: f00b ff36 bl 1001ab84 +1000ed18: 4680 mov r8, r0 +1000ed1a: b3a8 cbz r0, 1000ed88 +1000ed1c: 210c movs r1, #12 +1000ed1e: 4a1c ldr r2, [pc, #112] ; (1000ed90 ) +1000ed20: f033 f982 bl 10042028 +1000ed24: f888 700c strb.w r7, [r8, #12] +1000ed28: b177 cbz r7, 1000ed48 +1000ed2a: f107 020d add.w r2, r7, #13 +1000ed2e: 4442 add r2, r8 +1000ed30: 2400 movs r4, #0 +1000ed32: f81b 6004 ldrb.w r6, [fp, r4] +1000ed36: eb08 0504 add.w r5, r8, r4 +1000ed3a: 736e strb r6, [r5, #13] +1000ed3c: f81a 5004 ldrb.w r5, [sl, r4] +1000ed40: 5315 strh r5, [r2, r4] +1000ed42: 3401 adds r4, #1 +1000ed44: 42a7 cmp r7, r4 +1000ed46: dcf4 bgt.n 1000ed32 +1000ed48: 9901 ldr r1, [sp, #4] +1000ed4a: 2205 movs r2, #5 +1000ed4c: f109 090d add.w r9, r9, #13 +1000ed50: a802 add r0, sp, #8 +1000ed52: f8ad 901c strh.w r9, [sp, #28] +1000ed56: f8cd 8018 str.w r8, [sp, #24] +1000ed5a: f033 fa01 bl 10042160 +1000ed5e: a902 add r1, sp, #8 +1000ed60: f648 10f0 movw r0, #35312 ; 0x89f0 +1000ed64: f02c ff58 bl 1003bc18 +1000ed68: 2800 cmp r0, #0 +1000ed6a: db07 blt.n 1000ed7c +1000ed6c: 2400 movs r4, #0 +1000ed6e: 4640 mov r0, r8 +1000ed70: f00b fe98 bl 1001aaa4 +1000ed74: 4620 mov r0, r4 +1000ed76: b00b add sp, #44 ; 0x2c +1000ed78: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000ed7c: 4805 ldr r0, [pc, #20] ; (1000ed94 ) +1000ed7e: f033 f9c3 bl 10042108 +1000ed82: f04f 34ff mov.w r4, #4294967295 +1000ed86: e7f2 b.n 1000ed6e +1000ed88: f04f 30ff mov.w r0, #4294967295 +1000ed8c: e7f3 b.n 1000ed76 +1000ed8e: bf00 nop +1000ed90: 10046ee8 .word 0x10046ee8 +1000ed94: 10046ef4 .word 0x10046ef4 + +1000ed98 : +1000ed98: b570 push {r4, r5, r6, lr} +1000ed9a: b088 sub sp, #32 +1000ed9c: 4606 mov r6, r0 +1000ed9e: 460d mov r5, r1 +1000eda0: 2220 movs r2, #32 +1000eda2: 2100 movs r1, #0 +1000eda4: 4668 mov r0, sp +1000eda6: f033 f9e1 bl 1004216c +1000edaa: 2400 movs r4, #0 +1000edac: 4631 mov r1, r6 +1000edae: 2205 movs r2, #5 +1000edb0: 4668 mov r0, sp +1000edb2: f88d 5016 strb.w r5, [sp, #22] +1000edb6: 9404 str r4, [sp, #16] +1000edb8: f8ad 4014 strh.w r4, [sp, #20] +1000edbc: f033 f9d0 bl 10042160 +1000edc0: 4669 mov r1, sp +1000edc2: f648 3004 movw r0, #35588 ; 0x8b04 +1000edc6: f02c ff27 bl 1003bc18 +1000edca: 42a0 cmp r0, r4 +1000edcc: bfa8 it ge +1000edce: 4620 movge r0, r4 +1000edd0: db01 blt.n 1000edd6 +1000edd2: b008 add sp, #32 +1000edd4: bd70 pop {r4, r5, r6, pc} +1000edd6: 4803 ldr r0, [pc, #12] ; (1000ede4 ) +1000edd8: f033 f996 bl 10042108 +1000eddc: f04f 30ff mov.w r0, #4294967295 +1000ede0: e7f7 b.n 1000edd2 +1000ede2: bf00 nop +1000ede4: 10046f2c .word 0x10046f2c + +1000ede8 : +1000ede8: b530 push {r4, r5, lr} +1000edea: b089 sub sp, #36 ; 0x24 +1000edec: 4604 mov r4, r0 +1000edee: 2220 movs r2, #32 +1000edf0: 460d mov r5, r1 +1000edf2: 4668 mov r0, sp +1000edf4: 2100 movs r1, #0 +1000edf6: f033 f9b9 bl 1004216c +1000edfa: 4621 mov r1, r4 +1000edfc: 2205 movs r2, #5 +1000edfe: 4668 mov r0, sp +1000ee00: f033 f9ae bl 10042160 +1000ee04: 4669 mov r1, sp +1000ee06: f648 3005 movw r0, #35589 ; 0x8b05 +1000ee0a: f02c ff05 bl 1003bc18 +1000ee0e: 2800 cmp r0, #0 +1000ee10: db05 blt.n 1000ee1e +1000ee12: f89d 3016 ldrb.w r3, [sp, #22] +1000ee16: 2000 movs r0, #0 +1000ee18: 702b strb r3, [r5, #0] +1000ee1a: b009 add sp, #36 ; 0x24 +1000ee1c: bd30 pop {r4, r5, pc} +1000ee1e: 4803 ldr r0, [pc, #12] ; (1000ee2c ) +1000ee20: f033 f972 bl 10042108 +1000ee24: f04f 30ff mov.w r0, #4294967295 +1000ee28: e7f7 b.n 1000ee1a +1000ee2a: bf00 nop +1000ee2c: 10046f48 .word 0x10046f48 + +1000ee30 : +1000ee30: b5f0 push {r4, r5, r6, r7, lr} +1000ee32: b089 sub sp, #36 ; 0x24 +1000ee34: 4606 mov r6, r0 +1000ee36: 460c mov r4, r1 +1000ee38: 4615 mov r5, r2 +1000ee3a: 2100 movs r1, #0 +1000ee3c: 2220 movs r2, #32 +1000ee3e: 4668 mov r0, sp +1000ee40: 461f mov r7, r3 +1000ee42: f033 f993 bl 1004216c +1000ee46: 4631 mov r1, r6 +1000ee48: 2205 movs r2, #5 +1000ee4a: 4668 mov r0, sp +1000ee4c: 9404 str r4, [sp, #16] +1000ee4e: f8ad 7016 strh.w r7, [sp, #22] +1000ee52: f8ad 5014 strh.w r5, [sp, #20] +1000ee56: f033 f983 bl 10042160 +1000ee5a: 4669 mov r1, sp +1000ee5c: f648 3018 movw r0, #35608 ; 0x8b18 +1000ee60: f02c feda bl 1003bc18 +1000ee64: 2800 cmp r0, #0 +1000ee66: bfa8 it ge +1000ee68: 2000 movge r0, #0 +1000ee6a: db01 blt.n 1000ee70 +1000ee6c: b009 add sp, #36 ; 0x24 +1000ee6e: bdf0 pop {r4, r5, r6, r7, pc} +1000ee70: 4802 ldr r0, [pc, #8] ; (1000ee7c ) +1000ee72: f033 f949 bl 10042108 +1000ee76: f04f 30ff mov.w r0, #4294967295 +1000ee7a: e7f7 b.n 1000ee6c +1000ee7c: 10046f64 .word 0x10046f64 + +1000ee80 : +1000ee80: b500 push {lr} +1000ee82: b089 sub sp, #36 ; 0x24 +1000ee84: 9104 str r1, [sp, #16] +1000ee86: f8ad 2014 strh.w r2, [sp, #20] +1000ee8a: 4601 mov r1, r0 +1000ee8c: 2205 movs r2, #5 +1000ee8e: 4668 mov r0, sp +1000ee90: f033 f966 bl 10042160 +1000ee94: 4669 mov r1, sp +1000ee96: f648 3019 movw r0, #35609 ; 0x8b19 +1000ee9a: f02c febd bl 1003bc18 +1000ee9e: 2800 cmp r0, #0 +1000eea0: db04 blt.n 1000eeac +1000eea2: f8bd 0016 ldrh.w r0, [sp, #22] +1000eea6: b009 add sp, #36 ; 0x24 +1000eea8: f85d fb04 ldr.w pc, [sp], #4 +1000eeac: 4802 ldr r0, [pc, #8] ; (1000eeb8 ) +1000eeae: f033 f92b bl 10042108 +1000eeb2: f04f 30ff mov.w r0, #4294967295 +1000eeb6: e7f6 b.n 1000eea6 +1000eeb8: 10046f80 .word 0x10046f80 + +1000eebc : +1000eebc: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1000eec0: b08f sub sp, #60 ; 0x3c +1000eec2: 2300 movs r3, #0 +1000eec4: 460d mov r5, r1 +1000eec6: 4681 mov r9, r0 +1000eec8: 4690 mov r8, r2 +1000eeca: 4608 mov r0, r1 +1000eecc: aa01 add r2, sp, #4 +1000eece: 4941 ldr r1, [pc, #260] ; (1000efd4 ) +1000eed0: 9301 str r3, [sp, #4] +1000eed2: 9302 str r3, [sp, #8] +1000eed4: 9303 str r3, [sp, #12] +1000eed6: 9304 str r3, [sp, #16] +1000eed8: f88d 3014 strb.w r3, [sp, #20] +1000eedc: f033 fb00 bl 100424e0 +1000eee0: a801 add r0, sp, #4 +1000eee2: 493d ldr r1, [pc, #244] ; (1000efd8 ) +1000eee4: f033 f948 bl 10042178 +1000eee8: 2800 cmp r0, #0 +1000eeea: d145 bne.n 1000ef78 +1000eeec: f640 2428 movw r4, #2600 ; 0xa28 +1000eef0: 4627 mov r7, r4 +1000eef2: 4628 mov r0, r5 +1000eef4: f033 f94c bl 10042190 +1000eef8: 42a0 cmp r0, r4 +1000eefa: d237 bcs.n 1000ef6c +1000eefc: 4620 mov r0, r4 +1000eefe: f00b fe41 bl 1001ab84 +1000ef02: 4606 mov r6, r0 +1000ef04: 2800 cmp r0, #0 +1000ef06: d05f beq.n 1000efc8 +1000ef08: 4622 mov r2, r4 +1000ef0a: 2100 movs r1, #0 +1000ef0c: f033 f92e bl 1004216c +1000ef10: 4629 mov r1, r5 +1000ef12: 4630 mov r0, r6 +1000ef14: f033 f936 bl 10042184 +1000ef18: 2100 movs r1, #0 +1000ef1a: 2220 movs r2, #32 +1000ef1c: a806 add r0, sp, #24 +1000ef1e: f033 f925 bl 1004216c +1000ef22: 2300 movs r3, #0 +1000ef24: 4649 mov r1, r9 +1000ef26: 2205 movs r2, #5 +1000ef28: a806 add r0, sp, #24 +1000ef2a: f8ad 302e strh.w r3, [sp, #46] ; 0x2e +1000ef2e: 960a str r6, [sp, #40] ; 0x28 +1000ef30: f8ad 702c strh.w r7, [sp, #44] ; 0x2c +1000ef34: f033 f914 bl 10042160 +1000ef38: a906 add r1, sp, #24 +1000ef3a: f648 10f0 movw r0, #35312 ; 0x89f0 +1000ef3e: f02c fe6b bl 1003bc18 +1000ef42: 1e04 subs r4, r0, #0 +1000ef44: db34 blt.n 1000efb0 +1000ef46: f1b8 0f00 cmp.w r8, #0 +1000ef4a: d008 beq.n 1000ef5e +1000ef4c: f8bd 302c ldrh.w r3, [sp, #44] ; 0x2c +1000ef50: b12b cbz r3, 1000ef5e +1000ef52: 429f cmp r7, r3 +1000ef54: db34 blt.n 1000efc0 +1000ef56: 4821 ldr r0, [pc, #132] ; (1000efdc ) +1000ef58: 990a ldr r1, [sp, #40] ; 0x28 +1000ef5a: f033 f8d5 bl 10042108 +1000ef5e: 4630 mov r0, r6 +1000ef60: f00b fda0 bl 1001aaa4 +1000ef64: 4620 mov r0, r4 +1000ef66: b00f add sp, #60 ; 0x3c +1000ef68: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1000ef6c: 4628 mov r0, r5 +1000ef6e: f033 f90f bl 10042190 +1000ef72: 1c44 adds r4, r0, #1 +1000ef74: 4627 mov r7, r4 +1000ef76: e7c1 b.n 1000eefc +1000ef78: a801 add r0, sp, #4 +1000ef7a: 4919 ldr r1, [pc, #100] ; (1000efe0 ) +1000ef7c: f033 f8fc bl 10042178 +1000ef80: 2800 cmp r0, #0 +1000ef82: d0b3 beq.n 1000eeec +1000ef84: a801 add r0, sp, #4 +1000ef86: 4917 ldr r1, [pc, #92] ; (1000efe4 ) +1000ef88: f033 f8f6 bl 10042178 +1000ef8c: 2800 cmp r0, #0 +1000ef8e: d0ad beq.n 1000eeec +1000ef90: a801 add r0, sp, #4 +1000ef92: 4915 ldr r1, [pc, #84] ; (1000efe8 ) +1000ef94: f033 f8f0 bl 10042178 +1000ef98: 2800 cmp r0, #0 +1000ef9a: d0a7 beq.n 1000eeec +1000ef9c: a801 add r0, sp, #4 +1000ef9e: 4913 ldr r1, [pc, #76] ; (1000efec ) +1000efa0: f033 f8ea bl 10042178 +1000efa4: 2800 cmp r0, #0 +1000efa6: d0a1 beq.n 1000eeec +1000efa8: f44f 7400 mov.w r4, #512 ; 0x200 +1000efac: 4627 mov r7, r4 +1000efae: e7a0 b.n 1000eef2 +1000efb0: 480f ldr r0, [pc, #60] ; (1000eff0 ) +1000efb2: 4621 mov r1, r4 +1000efb4: f033 f8a8 bl 10042108 +1000efb8: f1b8 0f00 cmp.w r8, #0 +1000efbc: d0cf beq.n 1000ef5e +1000efbe: e7c5 b.n 1000ef4c +1000efc0: 480c ldr r0, [pc, #48] ; (1000eff4 ) +1000efc2: f033 f8a1 bl 10042108 +1000efc6: e7c6 b.n 1000ef56 +1000efc8: 480b ldr r0, [pc, #44] ; (1000eff8 ) +1000efca: f033 f89d bl 10042108 +1000efce: f04f 34ff mov.w r4, #4294967295 +1000efd2: e7c7 b.n 1000ef64 +1000efd4: 10046fe0 .word 0x10046fe0 +1000efd8: 10046fe8 .word 0x10046fe8 +1000efdc: 10047044 .word 0x10047044 +1000efe0: 10046ff4 .word 0x10046ff4 +1000efe4: 10047000 .word 0x10047000 +1000efe8: 1004700c .word 0x1004700c +1000efec: 10047018 .word 0x10047018 +1000eff0: 10046fb8 .word 0x10046fb8 +1000eff4: 10047020 .word 0x10047020 +1000eff8: 10046f9c .word 0x10046f9c + +1000effc : +1000effc: b570 push {r4, r5, r6, lr} +1000effe: f648 3319 movw r3, #35609 ; 0x8b19 +1000f002: b082 sub sp, #8 +1000f004: 2400 movs r4, #0 +1000f006: 4298 cmp r0, r3 +1000f008: 460e mov r6, r1 +1000f00a: 4615 mov r5, r2 +1000f00c: 9400 str r4, [sp, #0] +1000f00e: f8ad 4004 strh.w r4, [sp, #4] +1000f012: d063 beq.n 1000f0dc +1000f014: f648 4302 movw r3, #35842 ; 0x8c02 +1000f018: 4298 cmp r0, r3 +1000f01a: d017 beq.n 1000f04c +1000f01c: f648 3315 movw r3, #35605 ; 0x8b15 +1000f020: 4298 cmp r0, r3 +1000f022: d001 beq.n 1000f028 +1000f024: b002 add sp, #8 +1000f026: bd70 pop {r4, r5, r6, pc} +1000f028: 784d ldrb r5, [r1, #1] +1000f02a: 2d01 cmp r5, #1 +1000f02c: d1fa bne.n 1000f024 +1000f02e: 1c8e adds r6, r1, #2 +1000f030: 4630 mov r0, r6 +1000f032: 4669 mov r1, sp +1000f034: 2206 movs r2, #6 +1000f036: f033 f88d bl 10042154 +1000f03a: 2800 cmp r0, #0 +1000f03c: d17b bne.n 1000f136 +1000f03e: 4601 mov r1, r0 +1000f040: 460a mov r2, r1 +1000f042: 4628 mov r0, r5 +1000f044: 460b mov r3, r1 +1000f046: f7fe fc07 bl 1000d858 +1000f04a: e7eb b.n 1000f024 +1000f04c: 2a00 cmp r2, #0 +1000f04e: d0e9 beq.n 1000f024 +1000f050: 4843 ldr r0, [pc, #268] ; (1000f160 ) +1000f052: f033 f89d bl 10042190 +1000f056: 4629 mov r1, r5 +1000f058: 4602 mov r2, r0 +1000f05a: 4841 ldr r0, [pc, #260] ; (1000f160 ) +1000f05c: f033 f87a bl 10042154 +1000f060: 4604 mov r4, r0 +1000f062: 2800 cmp r0, #0 +1000f064: d043 beq.n 1000f0ee +1000f066: 483f ldr r0, [pc, #252] ; (1000f164 ) +1000f068: f033 f892 bl 10042190 +1000f06c: 4629 mov r1, r5 +1000f06e: 4602 mov r2, r0 +1000f070: 483c ldr r0, [pc, #240] ; (1000f164 ) +1000f072: f033 f86f bl 10042154 +1000f076: 4604 mov r4, r0 +1000f078: 2800 cmp r0, #0 +1000f07a: d04c beq.n 1000f116 +1000f07c: 483a ldr r0, [pc, #232] ; (1000f168 ) +1000f07e: f033 f887 bl 10042190 +1000f082: 4629 mov r1, r5 +1000f084: 4602 mov r2, r0 +1000f086: 4838 ldr r0, [pc, #224] ; (1000f168 ) +1000f088: f033 f864 bl 10042154 +1000f08c: 4604 mov r4, r0 +1000f08e: 2800 cmp r0, #0 +1000f090: d037 beq.n 1000f102 +1000f092: 4836 ldr r0, [pc, #216] ; (1000f16c ) +1000f094: f033 f87c bl 10042190 +1000f098: 4629 mov r1, r5 +1000f09a: 4602 mov r2, r0 +1000f09c: 4833 ldr r0, [pc, #204] ; (1000f16c ) +1000f09e: f033 f859 bl 10042154 +1000f0a2: 2800 cmp r0, #0 +1000f0a4: d04e beq.n 1000f144 +1000f0a6: 4832 ldr r0, [pc, #200] ; (1000f170 ) +1000f0a8: f033 f872 bl 10042190 +1000f0ac: 4629 mov r1, r5 +1000f0ae: 4602 mov r2, r0 +1000f0b0: 482f ldr r0, [pc, #188] ; (1000f170 ) +1000f0b2: f033 f84f bl 10042154 +1000f0b6: 2800 cmp r0, #0 +1000f0b8: d04b beq.n 1000f152 +1000f0ba: 482e ldr r0, [pc, #184] ; (1000f174 ) +1000f0bc: f033 f868 bl 10042190 +1000f0c0: 4629 mov r1, r5 +1000f0c2: 4602 mov r2, r0 +1000f0c4: 482b ldr r0, [pc, #172] ; (1000f174 ) +1000f0c6: f033 f845 bl 10042154 +1000f0ca: 2800 cmp r0, #0 +1000f0cc: d1aa bne.n 1000f024 +1000f0ce: 4601 mov r1, r0 +1000f0d0: 4602 mov r2, r0 +1000f0d2: 88f3 ldrh r3, [r6, #6] +1000f0d4: 2006 movs r0, #6 +1000f0d6: f7fe fbbf bl 1000d858 +1000f0da: e7a3 b.n 1000f024 +1000f0dc: 6809 ldr r1, [r1, #0] +1000f0de: b321 cbz r1, 1000f12a +1000f0e0: 88b2 ldrh r2, [r6, #4] +1000f0e2: 4623 mov r3, r4 +1000f0e4: 2003 movs r0, #3 +1000f0e6: f7fe fbb7 bl 1000d858 +1000f0ea: b002 add sp, #8 +1000f0ec: bd70 pop {r4, r5, r6, pc} +1000f0ee: 481c ldr r0, [pc, #112] ; (1000f160 ) +1000f0f0: f033 f84e bl 10042190 +1000f0f4: 4629 mov r1, r5 +1000f0f6: 4602 mov r2, r0 +1000f0f8: 4623 mov r3, r4 +1000f0fa: 2002 movs r0, #2 +1000f0fc: f7fe fbac bl 1000d858 +1000f100: e790 b.n 1000f024 +1000f102: 4819 ldr r0, [pc, #100] ; (1000f168 ) +1000f104: f033 f844 bl 10042190 +1000f108: 4629 mov r1, r5 +1000f10a: 4602 mov r2, r0 +1000f10c: 4623 mov r3, r4 +1000f10e: 200e movs r0, #14 +1000f110: f7fe fba2 bl 1000d858 +1000f114: e786 b.n 1000f024 +1000f116: 4813 ldr r0, [pc, #76] ; (1000f164 ) +1000f118: f033 f83a bl 10042190 +1000f11c: 4629 mov r1, r5 +1000f11e: 4602 mov r2, r0 +1000f120: 4623 mov r3, r4 +1000f122: 2005 movs r0, #5 +1000f124: f7fe fb98 bl 1000d858 +1000f128: e77c b.n 1000f024 +1000f12a: 460a mov r2, r1 +1000f12c: 460b mov r3, r1 +1000f12e: 2004 movs r0, #4 +1000f130: f7fe fb92 bl 1000d858 +1000f134: e776 b.n 1000f024 +1000f136: 4620 mov r0, r4 +1000f138: 4631 mov r1, r6 +1000f13a: 4623 mov r3, r4 +1000f13c: 2206 movs r2, #6 +1000f13e: f7fe fb8b bl 1000d858 +1000f142: e76f b.n 1000f024 +1000f144: 4603 mov r3, r0 +1000f146: 6831 ldr r1, [r6, #0] +1000f148: 2008 movs r0, #8 +1000f14a: 88b2 ldrh r2, [r6, #4] +1000f14c: f7fe fb84 bl 1000d858 +1000f150: e768 b.n 1000f024 +1000f152: 4603 mov r3, r0 +1000f154: 1cb1 adds r1, r6, #2 +1000f156: 2009 movs r0, #9 +1000f158: 2206 movs r2, #6 +1000f15a: f7fe fb7d bl 1000d858 +1000f15e: e761 b.n 1000f024 +1000f160: 100470b8 .word 0x100470b8 +1000f164: 100470d0 .word 0x100470d0 +1000f168: 100470e8 .word 0x100470e8 +1000f16c: 1004710c .word 0x1004710c +1000f170: 10047118 .word 0x10047118 +1000f174: 10047128 .word 0x10047128 + +1000f178 : +1000f178: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000f17c: b088 sub sp, #32 +1000f17e: 4605 mov r5, r0 +1000f180: 4688 mov r8, r1 +1000f182: 4617 mov r7, r2 +1000f184: 2100 movs r1, #0 +1000f186: 2220 movs r2, #32 +1000f188: 4668 mov r0, sp +1000f18a: 461e mov r6, r3 +1000f18c: f032 ffee bl 1004216c +1000f190: 2011 movs r0, #17 +1000f192: f00b fcf7 bl 1001ab84 +1000f196: 4604 mov r4, r0 +1000f198: b328 cbz r0, 1000f1e6 +1000f19a: 210d movs r1, #13 +1000f19c: 4a13 ldr r2, [pc, #76] ; (1000f1ec ) +1000f19e: f032 ff43 bl 10042028 +1000f1a2: f884 800d strb.w r8, [r4, #13] +1000f1a6: 73a7 strb r7, [r4, #14] +1000f1a8: 73e6 strb r6, [r4, #15] +1000f1aa: 2311 movs r3, #17 +1000f1ac: 4629 mov r1, r5 +1000f1ae: 2205 movs r2, #5 +1000f1b0: 4668 mov r0, sp +1000f1b2: f8ad 3014 strh.w r3, [sp, #20] +1000f1b6: 9404 str r4, [sp, #16] +1000f1b8: f032 ffd2 bl 10042160 +1000f1bc: 4669 mov r1, sp +1000f1be: f648 10f0 movw r0, #35312 ; 0x89f0 +1000f1c2: f02c fd29 bl 1003bc18 +1000f1c6: 2800 cmp r0, #0 +1000f1c8: db07 blt.n 1000f1da +1000f1ca: 2500 movs r5, #0 +1000f1cc: 4620 mov r0, r4 +1000f1ce: f00b fc69 bl 1001aaa4 +1000f1d2: 4628 mov r0, r5 +1000f1d4: b008 add sp, #32 +1000f1d6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000f1da: 4805 ldr r0, [pc, #20] ; (1000f1f0 ) +1000f1dc: f032 ff94 bl 10042108 +1000f1e0: f04f 35ff mov.w r5, #4294967295 +1000f1e4: e7f2 b.n 1000f1cc +1000f1e6: f04f 30ff mov.w r0, #4294967295 +1000f1ea: e7f3 b.n 1000f1d4 +1000f1ec: 10047178 .word 0x10047178 +1000f1f0: 10047188 .word 0x10047188 + +1000f1f4 : +1000f1f4: 2801 cmp r0, #1 +1000f1f6: d00d beq.n 1000f214 +1000f1f8: 2802 cmp r0, #2 +1000f1fa: d004 beq.n 1000f206 +1000f1fc: 4b09 ldr r3, [pc, #36] ; (1000f224 ) +1000f1fe: 2200 movs r2, #0 +1000f200: 701a strb r2, [r3, #0] +1000f202: 2000 movs r0, #0 +1000f204: 4770 bx lr +1000f206: 4907 ldr r1, [pc, #28] ; (1000f224 ) +1000f208: 4a07 ldr r2, [pc, #28] ; (1000f228 ) +1000f20a: 2301 movs r3, #1 +1000f20c: 700b strb r3, [r1, #0] +1000f20e: 7013 strb r3, [r2, #0] +1000f210: 2000 movs r0, #0 +1000f212: 4770 bx lr +1000f214: 4903 ldr r1, [pc, #12] ; (1000f224 ) +1000f216: 4b04 ldr r3, [pc, #16] ; (1000f228 ) +1000f218: 2200 movs r2, #0 +1000f21a: 7008 strb r0, [r1, #0] +1000f21c: 701a strb r2, [r3, #0] +1000f21e: 2000 movs r0, #0 +1000f220: 4770 bx lr +1000f222: bf00 nop +1000f224: 10055348 .word 0x10055348 +1000f228: 1004d9bf .word 0x1004d9bf + +1000f22c : +1000f22c: f02c bcf2 b.w 1003bc14 + +1000f230 : +1000f230: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000f234: 2000 movs r0, #0 +1000f236: b08b sub sp, #44 ; 0x2c +1000f238: 4601 mov r1, r0 +1000f23a: f003 fa41 bl 100126c0 +1000f23e: 4951 ldr r1, [pc, #324] ; (1000f384 ) +1000f240: 4a51 ldr r2, [pc, #324] ; (1000f388 ) +1000f242: 4b52 ldr r3, [pc, #328] ; (1000f38c ) +1000f244: 788d ldrb r5, [r1, #2] +1000f246: 7890 ldrb r0, [r2, #2] +1000f248: f893 8002 ldrb.w r8, [r3, #2] +1000f24c: 78cf ldrb r7, [r1, #3] +1000f24e: f892 a003 ldrb.w sl, [r2, #3] +1000f252: f893 9003 ldrb.w r9, [r3, #3] +1000f256: f891 c000 ldrb.w ip, [r1] +1000f25a: f892 e000 ldrb.w lr, [r2] +1000f25e: 781e ldrb r6, [r3, #0] +1000f260: 0400 lsls r0, r0, #16 +1000f262: ea4f 4808 mov.w r8, r8, lsl #16 +1000f266: 042d lsls r5, r5, #16 +1000f268: 4c49 ldr r4, [pc, #292] ; (1000f390 ) +1000f26a: 785b ldrb r3, [r3, #1] +1000f26c: ea45 6507 orr.w r5, r5, r7, lsl #24 +1000f270: 784f ldrb r7, [r1, #1] +1000f272: ea40 610a orr.w r1, r0, sl, lsl #24 +1000f276: 7850 ldrb r0, [r2, #1] +1000f278: ea48 6209 orr.w r2, r8, r9, lsl #24 +1000f27c: ea45 050c orr.w r5, r5, ip +1000f280: ea41 010e orr.w r1, r1, lr +1000f284: f8df b120 ldr.w fp, [pc, #288] ; 1000f3a8 +1000f288: f8df a120 ldr.w sl, [pc, #288] ; 1000f3ac +1000f28c: 4332 orrs r2, r6 +1000f28e: f104 083c add.w r8, r4, #60 ; 0x3c +1000f292: 2600 movs r6, #0 +1000f294: ea45 2507 orr.w r5, r5, r7, lsl #8 +1000f298: ea41 2100 orr.w r1, r1, r0, lsl #8 +1000f29c: 4f3d ldr r7, [pc, #244] ; (1000f394 ) +1000f29e: ea42 2203 orr.w r2, r2, r3, lsl #8 +1000f2a2: 2331 movs r3, #49 ; 0x31 +1000f2a4: f8cd b004 str.w fp, [sp, #4] +1000f2a8: f8cd a008 str.w sl, [sp, #8] +1000f2ac: f04f 0972 mov.w r9, #114 ; 0x72 +1000f2b0: 9108 str r1, [sp, #32] +1000f2b2: 9209 str r2, [sp, #36] ; 0x24 +1000f2b4: a907 add r1, sp, #28 +1000f2b6: aa08 add r2, sp, #32 +1000f2b8: f884 306f strb.w r3, [r4, #111] ; 0x6f +1000f2bc: 4640 mov r0, r8 +1000f2be: ab09 add r3, sp, #36 ; 0x24 +1000f2c0: 9600 str r6, [sp, #0] +1000f2c2: 9507 str r5, [sp, #28] +1000f2c4: f884 906e strb.w r9, [r4, #110] ; 0x6e +1000f2c8: f006 fcbc bl 10015c44 +1000f2cc: 4638 mov r0, r7 +1000f2ce: 2101 movs r1, #1 +1000f2d0: f032 ff1a bl 10042108 +1000f2d4: 4d30 ldr r5, [pc, #192] ; (1000f398 ) +1000f2d6: 4831 ldr r0, [pc, #196] ; (1000f39c ) +1000f2d8: 4b31 ldr r3, [pc, #196] ; (1000f3a0 ) +1000f2da: 7882 ldrb r2, [r0, #2] +1000f2dc: f895 c002 ldrb.w ip, [r5, #2] +1000f2e0: f893 e002 ldrb.w lr, [r3, #2] +1000f2e4: 9600 str r6, [sp, #0] +1000f2e6: f8cd b004 str.w fp, [sp, #4] +1000f2ea: 78c1 ldrb r1, [r0, #3] +1000f2ec: f8cd a008 str.w sl, [sp, #8] +1000f2f0: f893 b003 ldrb.w fp, [r3, #3] +1000f2f4: ea4f 4e0e mov.w lr, lr, lsl #16 +1000f2f8: 0412 lsls r2, r2, #16 +1000f2fa: ea4e 6e0b orr.w lr, lr, fp, lsl #24 +1000f2fe: f890 b000 ldrb.w fp, [r0] +1000f302: ea42 6a01 orr.w sl, r2, r1, lsl #24 +1000f306: 78ea ldrb r2, [r5, #3] +1000f308: ea4a 0a0b orr.w sl, sl, fp +1000f30c: ea4f 4c0c mov.w ip, ip, lsl #16 +1000f310: f895 b000 ldrb.w fp, [r5] +1000f314: ea4c 6c02 orr.w ip, ip, r2, lsl #24 +1000f318: ea4c 0c0b orr.w ip, ip, fp +1000f31c: f893 b000 ldrb.w fp, [r3] +1000f320: 785b ldrb r3, [r3, #1] +1000f322: 7840 ldrb r0, [r0, #1] +1000f324: 9305 str r3, [sp, #20] +1000f326: ea4a 2a00 orr.w sl, sl, r0, lsl #8 +1000f32a: 786d ldrb r5, [r5, #1] +1000f32c: 9805 ldr r0, [sp, #20] +1000f32e: ea4e 0e0b orr.w lr, lr, fp +1000f332: ea4e 2e00 orr.w lr, lr, r0, lsl #8 +1000f336: aa08 add r2, sp, #32 +1000f338: ab09 add r3, sp, #36 ; 0x24 +1000f33a: a907 add r1, sp, #28 +1000f33c: ea4c 2505 orr.w r5, ip, r5, lsl #8 +1000f340: 4620 mov r0, r4 +1000f342: f04f 0c30 mov.w ip, #48 ; 0x30 +1000f346: f884 c033 strb.w ip, [r4, #51] ; 0x33 +1000f34a: f8cd e024 str.w lr, [sp, #36] ; 0x24 +1000f34e: f884 9032 strb.w r9, [r4, #50] ; 0x32 +1000f352: f8cd a01c str.w sl, [sp, #28] +1000f356: 9508 str r5, [sp, #32] +1000f358: f006 fc74 bl 10015c44 +1000f35c: 4631 mov r1, r6 +1000f35e: 4638 mov r0, r7 +1000f360: f032 fed2 bl 10042108 +1000f364: 4620 mov r0, r4 +1000f366: f006 fcb1 bl 10015ccc +1000f36a: 4620 mov r0, r4 +1000f36c: f006 fcb4 bl 10015cd8 +1000f370: 4640 mov r0, r8 +1000f372: f006 fcb1 bl 10015cd8 +1000f376: 4b0b ldr r3, [pc, #44] ; (1000f3a4 ) +1000f378: 2201 movs r2, #1 +1000f37a: 601a str r2, [r3, #0] +1000f37c: b00b add sp, #44 ; 0x2c +1000f37e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000f382: bf00 nop +1000f384: 1004d7dc .word 0x1004d7dc +1000f388: 1004d6d0 .word 0x1004d6d0 +1000f38c: 1004d6e0 .word 0x1004d6e0 +1000f390: 10050ae4 .word 0x10050ae4 +1000f394: 1004741c .word 0x1004741c +1000f398: 1004d6dc .word 0x1004d6dc +1000f39c: 1004d6d8 .word 0x1004d6d8 +1000f3a0: 1004d6d4 .word 0x1004d6d4 +1000f3a4: 10050ae0 .word 0x10050ae0 +1000f3a8: 10019d2d .word 0x10019d2d +1000f3ac: 1001258d .word 0x1001258d + +1000f3b0 : +1000f3b0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000f3b4: 4b61 ldr r3, [pc, #388] ; (1000f53c ) +1000f3b6: 2801 cmp r0, #1 +1000f3b8: bf34 ite cc +1000f3ba: 4605 movcc r5, r0 +1000f3bc: 2501 movcs r5, #1 +1000f3be: ebc5 1405 rsb r4, r5, r5, lsl #4 +1000f3c2: b087 sub sp, #28 +1000f3c4: eb03 0484 add.w r4, r3, r4, lsl #2 +1000f3c8: b911 cbnz r1, 1000f3d0 +1000f3ca: 6061 str r1, [r4, #4] +1000f3cc: 60a1 str r1, [r4, #8] +1000f3ce: 60e1 str r1, [r4, #12] +1000f3d0: 2600 movs r6, #0 +1000f3d2: f64e 275f movw r7, #59999 ; 0xea5f +1000f3d6: 2904 cmp r1, #4 +1000f3d8: d8fd bhi.n 1000f3d6 +1000f3da: a301 add r3, pc, #4 ; (adr r3, 1000f3e0 ) +1000f3dc: f853 f021 ldr.w pc, [r3, r1, lsl #2] +1000f3e0: 1000f455 .word 0x1000f455 +1000f3e4: 1000f42d .word 0x1000f42d +1000f3e8: 1000f3d7 .word 0x1000f3d7 +1000f3ec: 1000f411 .word 0x1000f411 +1000f3f0: 1000f3f5 .word 0x1000f3f5 +1000f3f4: 4952 ldr r1, [pc, #328] ; (1000f540 ) +1000f3f6: 200f movs r0, #15 +1000f3f8: f7fe fa74 bl 1000d8e4 +1000f3fc: 4851 ldr r0, [pc, #324] ; (1000f544 ) +1000f3fe: f032 fe83 bl 10042108 +1000f402: 4620 mov r0, r4 +1000f404: f005 fd4a bl 10014e9c +1000f408: 2004 movs r0, #4 +1000f40a: b007 add sp, #28 +1000f40c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000f410: 494b ldr r1, [pc, #300] ; (1000f540 ) +1000f412: 200f movs r0, #15 +1000f414: f7fe fa66 bl 1000d8e4 +1000f418: 484b ldr r0, [pc, #300] ; (1000f548 ) +1000f41a: f032 fe75 bl 10042108 +1000f41e: 4620 mov r0, r4 +1000f420: f005 fcb4 bl 10014d8c +1000f424: 2003 movs r0, #3 +1000f426: b007 add sp, #28 +1000f428: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000f42c: f8d4 8004 ldr.w r8, [r4, #4] +1000f430: f44f 70fa mov.w r0, #500 ; 0x1f4 +1000f434: 4406 add r6, r0 +1000f436: f1b8 0f00 cmp.w r8, #0 +1000f43a: d117 bne.n 1000f46c +1000f43c: 6a23 ldr r3, [r4, #32] +1000f43e: 7b5b ldrb r3, [r3, #13] +1000f440: 2b05 cmp r3, #5 +1000f442: d82b bhi.n 1000f49c +1000f444: f00c fbf0 bl 1001bc28 +1000f448: f005 fc50 bl 10014cec +1000f44c: 42be cmp r6, r7 +1000f44e: dc09 bgt.n 1000f464 +1000f450: 2101 movs r1, #1 +1000f452: e7c0 b.n 1000f3d6 +1000f454: 200f movs r0, #15 +1000f456: 493a ldr r1, [pc, #232] ; (1000f540 ) +1000f458: f7fe fa44 bl 1000d8e4 +1000f45c: 4620 mov r0, r4 +1000f45e: f005 fd35 bl 10014ecc +1000f462: e7f5 b.n 1000f450 +1000f464: f005 fbfc bl 10014c60 +1000f468: 4646 mov r6, r8 +1000f46a: e7f1 b.n 1000f450 +1000f46c: 200f movs r0, #15 +1000f46e: 4934 ldr r1, [pc, #208] ; (1000f540 ) +1000f470: 2200 movs r2, #0 +1000f472: f7fe fa0d bl 1000d890 +1000f476: f3c8 4207 ubfx r2, r8, #16, #8 +1000f47a: ea4f 6318 mov.w r3, r8, lsr #24 +1000f47e: e88d 000c stmia.w sp, {r2, r3} +1000f482: 4629 mov r1, r5 +1000f484: fa5f f288 uxtb.w r2, r8 +1000f488: f3c8 2307 ubfx r3, r8, #8, #8 +1000f48c: 482f ldr r0, [pc, #188] ; (1000f54c ) +1000f48e: f032 fe3b bl 10042108 +1000f492: 4b2f ldr r3, [pc, #188] ; (1000f550 ) +1000f494: 2200 movs r2, #0 +1000f496: 601a str r2, [r3, #0] +1000f498: 2002 movs r0, #2 +1000f49a: e7b6 b.n 1000f40a +1000f49c: 4620 mov r0, r4 +1000f49e: f005 fcfd bl 10014e9c +1000f4a2: 4e2c ldr r6, [pc, #176] ; (1000f554 ) +1000f4a4: 4a2c ldr r2, [pc, #176] ; (1000f558 ) +1000f4a6: 4b2d ldr r3, [pc, #180] ; (1000f55c ) +1000f4a8: f896 c002 ldrb.w ip, [r6, #2] +1000f4ac: 7897 ldrb r7, [r2, #2] +1000f4ae: f893 8002 ldrb.w r8, [r3, #2] +1000f4b2: f896 a003 ldrb.w sl, [r6, #3] +1000f4b6: f892 9003 ldrb.w r9, [r2, #3] +1000f4ba: f893 b003 ldrb.w fp, [r3, #3] +1000f4be: f896 e000 ldrb.w lr, [r6] +1000f4c2: 7811 ldrb r1, [r2, #0] +1000f4c4: 7818 ldrb r0, [r3, #0] +1000f4c6: ea4f 4c0c mov.w ip, ip, lsl #16 +1000f4ca: 043f lsls r7, r7, #16 +1000f4cc: ea4f 4808 mov.w r8, r8, lsl #16 +1000f4d0: ea4c 6a0a orr.w sl, ip, sl, lsl #24 +1000f4d4: ea47 6909 orr.w r9, r7, r9, lsl #24 +1000f4d8: f896 c001 ldrb.w ip, [r6, #1] +1000f4dc: 7857 ldrb r7, [r2, #1] +1000f4de: ea48 680b orr.w r8, r8, fp, lsl #24 +1000f4e2: 785a ldrb r2, [r3, #1] +1000f4e4: ea49 0101 orr.w r1, r9, r1 +1000f4e8: ea48 0300 orr.w r3, r8, r0 +1000f4ec: ea4a 0e0e orr.w lr, sl, lr +1000f4f0: ea4e 2e0c orr.w lr, lr, ip, lsl #8 +1000f4f4: 4620 mov r0, r4 +1000f4f6: ea41 2707 orr.w r7, r1, r7, lsl #8 +1000f4fa: ea43 2402 orr.w r4, r3, r2, lsl #8 +1000f4fe: a903 add r1, sp, #12 +1000f500: aa04 add r2, sp, #16 +1000f502: ab05 add r3, sp, #20 +1000f504: f8cd e00c str.w lr, [sp, #12] +1000f508: 9704 str r7, [sp, #16] +1000f50a: 9405 str r4, [sp, #20] +1000f50c: f006 fb8c bl 10015c28 +1000f510: 78f7 ldrb r7, [r6, #3] +1000f512: 78b4 ldrb r4, [r6, #2] +1000f514: f896 8001 ldrb.w r8, [r6, #1] +1000f518: 7836 ldrb r6, [r6, #0] +1000f51a: 4629 mov r1, r5 +1000f51c: 4810 ldr r0, [pc, #64] ; (1000f560 ) +1000f51e: f032 fdf3 bl 10042108 +1000f522: 4642 mov r2, r8 +1000f524: 4623 mov r3, r4 +1000f526: 9700 str r7, [sp, #0] +1000f528: 4631 mov r1, r6 +1000f52a: 480e ldr r0, [pc, #56] ; (1000f564 ) +1000f52c: f032 fdec bl 10042108 +1000f530: 4b07 ldr r3, [pc, #28] ; (1000f550 ) +1000f532: 2204 movs r2, #4 +1000f534: 601a str r2, [r3, #0] +1000f536: 2005 movs r0, #5 +1000f538: e767 b.n 1000f40a +1000f53a: bf00 nop +1000f53c: 10050ae4 .word 0x10050ae4 +1000f540: 1000c699 .word 0x1000c699 +1000f544: 100474bc .word 0x100474bc +1000f548: 100474a4 .word 0x100474a4 +1000f54c: 1004743c .word 0x1004743c +1000f550: 1004d7fc .word 0x1004d7fc +1000f554: 1004d6d8 .word 0x1004d6d8 +1000f558: 1004d6dc .word 0x1004d6dc +1000f55c: 1004d6d4 .word 0x1004d6d4 +1000f560: 10047464 .word 0x10047464 +1000f564: 10047480 .word 0x10047480 + +1000f568 : +1000f568: 302b adds r0, #43 ; 0x2b +1000f56a: 4770 bx lr + +1000f56c : +1000f56c: 3004 adds r0, #4 +1000f56e: 4770 bx lr + +1000f570 : +1000f570: 300c adds r0, #12 +1000f572: 4770 bx lr + +1000f574 : +1000f574: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000f578: f990 3033 ldrsb.w r3, [r0, #51] ; 0x33 +1000f57c: b084 sub sp, #16 +1000f57e: 2b30 cmp r3, #48 ; 0x30 +1000f580: d036 beq.n 1000f5f0 +1000f582: 492d ldr r1, [pc, #180] ; (1000f638 ) +1000f584: 4a2d ldr r2, [pc, #180] ; (1000f63c ) +1000f586: 4b2e ldr r3, [pc, #184] ; (1000f640 ) +1000f588: f891 a002 ldrb.w sl, [r1, #2] +1000f58c: f892 8002 ldrb.w r8, [r2, #2] +1000f590: 78ce ldrb r6, [r1, #3] +1000f592: 78d5 ldrb r5, [r2, #3] +1000f594: f893 e002 ldrb.w lr, [r3, #2] +1000f598: 78dc ldrb r4, [r3, #3] +1000f59a: ea4f 4a0a mov.w sl, sl, lsl #16 +1000f59e: ea4f 4808 mov.w r8, r8, lsl #16 +1000f5a2: ea4f 4e0e mov.w lr, lr, lsl #16 +1000f5a6: ea4a 6a06 orr.w sl, sl, r6, lsl #24 +1000f5aa: ea48 6805 orr.w r8, r8, r5, lsl #24 +1000f5ae: f891 9000 ldrb.w r9, [r1] +1000f5b2: f892 c000 ldrb.w ip, [r2] +1000f5b6: 781f ldrb r7, [r3, #0] +1000f5b8: 784e ldrb r6, [r1, #1] +1000f5ba: 7855 ldrb r5, [r2, #1] +1000f5bc: ea4e 6e04 orr.w lr, lr, r4, lsl #24 +1000f5c0: 785c ldrb r4, [r3, #1] +1000f5c2: ea4a 0109 orr.w r1, sl, r9 +1000f5c6: ea48 020c orr.w r2, r8, ip +1000f5ca: ea4e 0307 orr.w r3, lr, r7 +1000f5ce: ea41 2106 orr.w r1, r1, r6, lsl #8 +1000f5d2: ea42 2205 orr.w r2, r2, r5, lsl #8 +1000f5d6: ea43 2304 orr.w r3, r3, r4, lsl #8 +1000f5da: 9101 str r1, [sp, #4] +1000f5dc: 9202 str r2, [sp, #8] +1000f5de: 9303 str r3, [sp, #12] +1000f5e0: a901 add r1, sp, #4 +1000f5e2: aa02 add r2, sp, #8 +1000f5e4: ab03 add r3, sp, #12 +1000f5e6: f006 fb1f bl 10015c28 +1000f5ea: b004 add sp, #16 +1000f5ec: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1000f5f0: 4b14 ldr r3, [pc, #80] ; (1000f644 ) +1000f5f2: 681b ldr r3, [r3, #0] +1000f5f4: 2b01 cmp r3, #1 +1000f5f6: d002 beq.n 1000f5fe +1000f5f8: 2b02 cmp r3, #2 +1000f5fa: d1f1 bne.n 1000f5e0 +1000f5fc: e7c1 b.n 1000f582 +1000f5fe: 4912 ldr r1, [pc, #72] ; (1000f648 ) +1000f600: 4a12 ldr r2, [pc, #72] ; (1000f64c ) +1000f602: 4b13 ldr r3, [pc, #76] ; (1000f650 ) +1000f604: 788e ldrb r6, [r1, #2] +1000f606: 7895 ldrb r5, [r2, #2] +1000f608: 789c ldrb r4, [r3, #2] +1000f60a: f891 a003 ldrb.w sl, [r1, #3] +1000f60e: f892 8003 ldrb.w r8, [r2, #3] +1000f612: f893 e003 ldrb.w lr, [r3, #3] +1000f616: 0436 lsls r6, r6, #16 +1000f618: 042d lsls r5, r5, #16 +1000f61a: 0424 lsls r4, r4, #16 +1000f61c: ea46 6a0a orr.w sl, r6, sl, lsl #24 +1000f620: ea45 6808 orr.w r8, r5, r8, lsl #24 +1000f624: f891 9000 ldrb.w r9, [r1] +1000f628: f892 c000 ldrb.w ip, [r2] +1000f62c: 781f ldrb r7, [r3, #0] +1000f62e: 784e ldrb r6, [r1, #1] +1000f630: 7855 ldrb r5, [r2, #1] +1000f632: ea44 6e0e orr.w lr, r4, lr, lsl #24 +1000f636: e7c3 b.n 1000f5c0 +1000f638: 1004d7dc .word 0x1004d7dc +1000f63c: 1004d6d0 .word 0x1004d6d0 +1000f640: 1004d6e0 .word 0x1004d6e0 +1000f644: 1004d7e4 .word 0x1004d7e4 +1000f648: 1004d6d8 .word 0x1004d6d8 +1000f64c: 1004d6dc .word 0x1004d6dc +1000f650: 1004d6d4 .word 0x1004d6d4 + +1000f654 : +1000f654: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1000f658: b086 sub sp, #24 +1000f65a: 4604 mov r4, r0 +1000f65c: f003 f898 bl 10012790 +1000f660: e003 b.n 1000f66a +1000f662: f44f 707a mov.w r0, #1000 ; 0x3e8 +1000f666: f00c fadf bl 1001bc28 +1000f66a: 6a63 ldr r3, [r4, #36] ; 0x24 +1000f66c: 791b ldrb r3, [r3, #4] +1000f66e: 3b01 subs r3, #1 +1000f670: 2b01 cmp r3, #1 +1000f672: d9f6 bls.n 1000f662 +1000f674: 6863 ldr r3, [r4, #4] +1000f676: b153 cbz r3, 1000f68e +1000f678: 79e0 ldrb r0, [r4, #7] +1000f67a: 7921 ldrb r1, [r4, #4] +1000f67c: 7962 ldrb r2, [r4, #5] +1000f67e: 79a3 ldrb r3, [r4, #6] +1000f680: 9000 str r0, [sp, #0] +1000f682: 4823 ldr r0, [pc, #140] ; (1000f710 ) +1000f684: f032 fd40 bl 10042108 +1000f688: b006 add sp, #24 +1000f68a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1000f68e: 4821 ldr r0, [pc, #132] ; (1000f714 ) +1000f690: f032 fd3a bl 10042108 +1000f694: 4920 ldr r1, [pc, #128] ; (1000f718 ) +1000f696: 4a21 ldr r2, [pc, #132] ; (1000f71c ) +1000f698: 4b21 ldr r3, [pc, #132] ; (1000f720 ) +1000f69a: 788f ldrb r7, [r1, #2] +1000f69c: 7896 ldrb r6, [r2, #2] +1000f69e: 789d ldrb r5, [r3, #2] +1000f6a0: f891 a003 ldrb.w sl, [r1, #3] +1000f6a4: f892 8003 ldrb.w r8, [r2, #3] +1000f6a8: f893 e003 ldrb.w lr, [r3, #3] +1000f6ac: f892 c000 ldrb.w ip, [r2] +1000f6b0: f891 9000 ldrb.w r9, [r1] +1000f6b4: 7818 ldrb r0, [r3, #0] +1000f6b6: 043f lsls r7, r7, #16 +1000f6b8: 0436 lsls r6, r6, #16 +1000f6ba: 042d lsls r5, r5, #16 +1000f6bc: ea45 6e0e orr.w lr, r5, lr, lsl #24 +1000f6c0: ea47 6a0a orr.w sl, r7, sl, lsl #24 +1000f6c4: ea46 6808 orr.w r8, r6, r8, lsl #24 +1000f6c8: 784f ldrb r7, [r1, #1] +1000f6ca: 7856 ldrb r6, [r2, #1] +1000f6cc: 785d ldrb r5, [r3, #1] +1000f6ce: ea48 020c orr.w r2, r8, ip +1000f6d2: ea4e 0300 orr.w r3, lr, r0 +1000f6d6: ea4a 0109 orr.w r1, sl, r9 +1000f6da: ea41 2707 orr.w r7, r1, r7, lsl #8 +1000f6de: ea42 2606 orr.w r6, r2, r6, lsl #8 +1000f6e2: ea43 2505 orr.w r5, r3, r5, lsl #8 +1000f6e6: 4620 mov r0, r4 +1000f6e8: a903 add r1, sp, #12 +1000f6ea: aa04 add r2, sp, #16 +1000f6ec: ab05 add r3, sp, #20 +1000f6ee: 9703 str r7, [sp, #12] +1000f6f0: 9604 str r6, [sp, #16] +1000f6f2: 9505 str r5, [sp, #20] +1000f6f4: f006 fa98 bl 10015c28 +1000f6f8: 79e0 ldrb r0, [r4, #7] +1000f6fa: 7921 ldrb r1, [r4, #4] +1000f6fc: 7962 ldrb r2, [r4, #5] +1000f6fe: 79a3 ldrb r3, [r4, #6] +1000f700: 9000 str r0, [sp, #0] +1000f702: 4808 ldr r0, [pc, #32] ; (1000f724 ) +1000f704: f032 fd00 bl 10042108 +1000f708: b006 add sp, #24 +1000f70a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1000f70e: bf00 nop +1000f710: 10047508 .word 0x10047508 +1000f714: 100474d4 .word 0x100474d4 +1000f718: 1004d6d8 .word 0x1004d6d8 +1000f71c: 1004d6dc .word 0x1004d6dc +1000f720: 1004d6d4 .word 0x1004d6d4 +1000f724: 100474e4 .word 0x100474e4 + +1000f728 : +1000f728: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000f72c: 4a79 ldr r2, [pc, #484] ; (1000f914 ) +1000f72e: b091 sub sp, #68 ; 0x44 +1000f730: 6813 ldr r3, [r2, #0] +1000f732: f242 7210 movw r2, #10000 ; 0x2710 +1000f736: f44f 707a mov.w r0, #1000 ; 0x3e8 +1000f73a: 2110 movs r1, #16 +1000f73c: 4293 cmp r3, r2 +1000f73e: 9006 str r0, [sp, #24] +1000f740: 9107 str r1, [sp, #28] +1000f742: dd06 ble.n 1000f752 +1000f744: 4874 ldr r0, [pc, #464] ; (1000f918 ) +1000f746: 4975 ldr r1, [pc, #468] ; (1000f91c ) +1000f748: f032 fcde bl 10042108 +1000f74c: b011 add sp, #68 ; 0x44 +1000f74e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000f752: f103 0808 add.w r8, r3, #8 +1000f756: 4640 mov r0, r8 +1000f758: f00b fa14 bl 1001ab84 +1000f75c: 4604 mov r4, r0 +1000f75e: 2800 cmp r0, #0 +1000f760: f000 80cb beq.w 1000f8fa +1000f764: 4640 mov r0, r8 +1000f766: f00b fa0d bl 1001ab84 +1000f76a: 4681 mov r9, r0 +1000f76c: 2800 cmp r0, #0 +1000f76e: f000 80c9 beq.w 1000f904 +1000f772: 4a68 ldr r2, [pc, #416] ; (1000f914 ) +1000f774: 486a ldr r0, [pc, #424] ; (1000f920 ) +1000f776: 6813 ldr r3, [r2, #0] +1000f778: 496a ldr r1, [pc, #424] ; (1000f924 ) +1000f77a: f103 021c add.w r2, r3, #28 +1000f77e: 9200 str r2, [sp, #0] +1000f780: 4a69 ldr r2, [pc, #420] ; (1000f928 ) +1000f782: f032 fcc1 bl 10042108 +1000f786: 4f69 ldr r7, [pc, #420] ; (1000f92c ) +1000f788: 2600 movs r6, #0 +1000f78a: 4a69 ldr r2, [pc, #420] ; (1000f930 ) +1000f78c: 6813 ldr r3, [r2, #0] +1000f78e: 429e cmp r6, r3 +1000f790: db04 blt.n 1000f79c +1000f792: 4a68 ldr r2, [pc, #416] ; (1000f934 ) +1000f794: 6813 ldr r3, [r2, #0] +1000f796: 2b01 cmp r3, #1 +1000f798: f040 809f bne.w 1000f8da +1000f79c: 2103 movs r1, #3 +1000f79e: 2201 movs r2, #1 +1000f7a0: 2002 movs r0, #2 +1000f7a2: f002 fc27 bl 10011ff4 +1000f7a6: 2304 movs r3, #4 +1000f7a8: 9300 str r3, [sp, #0] +1000f7aa: f640 71ff movw r1, #4095 ; 0xfff +1000f7ae: f241 0206 movw r2, #4102 ; 0x1006 +1000f7b2: ab06 add r3, sp, #24 +1000f7b4: 4682 mov sl, r0 +1000f7b6: f002 fdcb bl 10012350 +1000f7ba: 2302 movs r3, #2 +1000f7bc: 2210 movs r2, #16 +1000f7be: 485a ldr r0, [pc, #360] ; (1000f928 ) +1000f7c0: f88d 3021 strb.w r3, [sp, #33] ; 0x21 +1000f7c4: f88d 2020 strb.w r2, [sp, #32] +1000f7c8: f003 ffb0 bl 1001372c +1000f7cc: 4b51 ldr r3, [pc, #324] ; (1000f914 ) +1000f7ce: 9009 str r0, [sp, #36] ; 0x24 +1000f7d0: f8d3 b000 ldr.w fp, [r3] +1000f7d4: f1bb 0f00 cmp.w fp, #0 +1000f7d8: dd07 ble.n 1000f7ea +1000f7da: eb04 020b add.w r2, r4, fp +1000f7de: 4623 mov r3, r4 +1000f7e0: 1b19 subs r1, r3, r4 +1000f7e2: 7219 strb r1, [r3, #8] +1000f7e4: 3301 adds r3, #1 +1000f7e6: 4293 cmp r3, r2 +1000f7e8: d1fa bne.n 1000f7e0 +1000f7ea: 883b ldrh r3, [r7, #0] +1000f7ec: 2500 movs r5, #0 +1000f7ee: 3301 adds r3, #1 +1000f7f0: b29b uxth r3, r3 +1000f7f2: f06f 0254 mvn.w r2, #84 ; 0x54 +1000f7f6: f06f 0132 mvn.w r1, #50 ; 0x32 +1000f7fa: 2008 movs r0, #8 +1000f7fc: 7162 strb r2, [r4, #5] +1000f7fe: 7020 strb r0, [r4, #0] +1000f800: 7065 strb r5, [r4, #1] +1000f802: 4618 mov r0, r3 +1000f804: 70a5 strb r5, [r4, #2] +1000f806: 70e5 strb r5, [r4, #3] +1000f808: 7121 strb r1, [r4, #4] +1000f80a: 803b strh r3, [r7, #0] +1000f80c: f004 fafe bl 10013e0c +1000f810: f10b 0108 add.w r1, fp, #8 +1000f814: 80e0 strh r0, [r4, #6] +1000f816: b289 uxth r1, r1 +1000f818: 4620 mov r0, r4 +1000f81a: f003 fc8f bl 1001313c +1000f81e: a908 add r1, sp, #32 +1000f820: 2210 movs r2, #16 +1000f822: 462b mov r3, r5 +1000f824: 8060 strh r0, [r4, #2] +1000f826: e88d 0006 stmia.w sp, {r1, r2} +1000f82a: 4650 mov r0, sl +1000f82c: 4621 mov r1, r4 +1000f82e: 4642 mov r2, r8 +1000f830: f002 fb20 bl 10011e74 +1000f834: f00c f8cc bl 1001b9d0 +1000f838: a90c add r1, sp, #48 ; 0x30 +1000f83a: aa07 add r2, sp, #28 +1000f83c: e88d 0006 stmia.w sp, {r1, r2} +1000f840: 462b mov r3, r5 +1000f842: 4683 mov fp, r0 +1000f844: 4649 mov r1, r9 +1000f846: 4650 mov r0, sl +1000f848: 4642 mov r2, r8 +1000f84a: f002 f9f9 bl 10011c40 +1000f84e: 281b cmp r0, #27 +1000f850: 4605 mov r5, r0 +1000f852: dd1a ble.n 1000f88a +1000f854: f00c f8bc bl 1001b9d0 +1000f858: f899 2000 ldrb.w r2, [r9] +1000f85c: f64a 33cd movw r3, #43981 ; 0xabcd +1000f860: f002 020f and.w r2, r2, #15 +1000f864: eb09 0282 add.w r2, r9, r2, lsl #2 +1000f868: 8891 ldrh r1, [r2, #4] +1000f86a: 4684 mov ip, r0 +1000f86c: 4299 cmp r1, r3 +1000f86e: d012 beq.n 1000f896 +1000f870: 4650 mov r0, sl +1000f872: f002 f923 bl 10011abc +1000f876: 4b30 ldr r3, [pc, #192] ; (1000f938 ) +1000f878: f44f 707a mov.w r0, #1000 ; 0x3e8 +1000f87c: 681b ldr r3, [r3, #0] +1000f87e: 3601 adds r6, #1 +1000f880: fb00 f003 mul.w r0, r0, r3 +1000f884: f00c f9d0 bl 1001bc28 +1000f888: e77f b.n 1000f78a +1000f88a: 4926 ldr r1, [pc, #152] ; (1000f924 ) +1000f88c: 883a ldrh r2, [r7, #0] +1000f88e: 482b ldr r0, [pc, #172] ; (1000f93c ) +1000f890: f032 fc3a bl 10042108 +1000f894: e7ec b.n 1000f870 +1000f896: 88d3 ldrh r3, [r2, #6] +1000f898: 8838 ldrh r0, [r7, #0] +1000f89a: 9304 str r3, [sp, #16] +1000f89c: 9205 str r2, [sp, #20] +1000f89e: f8cd c00c str.w ip, [sp, #12] +1000f8a2: f004 fab3 bl 10013e0c +1000f8a6: 9b04 ldr r3, [sp, #16] +1000f8a8: 4283 cmp r3, r0 +1000f8aa: d1e1 bne.n 1000f870 +1000f8ac: a80d add r0, sp, #52 ; 0x34 +1000f8ae: f003 ffad bl 1001380c +1000f8b2: 9a05 ldr r2, [sp, #20] +1000f8b4: 4603 mov r3, r0 +1000f8b6: 88d0 ldrh r0, [r2, #6] +1000f8b8: 9304 str r3, [sp, #16] +1000f8ba: f004 faa7 bl 10013e0c +1000f8be: f8dd c00c ldr.w ip, [sp, #12] +1000f8c2: 9000 str r0, [sp, #0] +1000f8c4: ebcb 020c rsb r2, fp, ip +1000f8c8: 9201 str r2, [sp, #4] +1000f8ca: 9b04 ldr r3, [sp, #16] +1000f8cc: f1a5 0214 sub.w r2, r5, #20 +1000f8d0: 4914 ldr r1, [pc, #80] ; (1000f924 ) +1000f8d2: 481b ldr r0, [pc, #108] ; (1000f940 ) +1000f8d4: f032 fc18 bl 10042108 +1000f8d8: e7ca b.n 1000f870 +1000f8da: 4620 mov r0, r4 +1000f8dc: f00b f8e2 bl 1001aaa4 +1000f8e0: 4648 mov r0, r9 +1000f8e2: f00b f8df bl 1001aaa4 +1000f8e6: 4b17 ldr r3, [pc, #92] ; (1000f944 ) +1000f8e8: 6818 ldr r0, [r3, #0] +1000f8ea: 2800 cmp r0, #0 +1000f8ec: f47f af2e bne.w 1000f74c +1000f8f0: f00b ff70 bl 1001b7d4 +1000f8f4: b011 add sp, #68 ; 0x44 +1000f8f6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000f8fa: 4908 ldr r1, [pc, #32] ; (1000f91c ) +1000f8fc: 4812 ldr r0, [pc, #72] ; (1000f948 ) +1000f8fe: f032 fc03 bl 10042108 +1000f902: e723 b.n 1000f74c +1000f904: 4620 mov r0, r4 +1000f906: f00b f8cd bl 1001aaa4 +1000f90a: 4904 ldr r1, [pc, #16] ; (1000f91c ) +1000f90c: 480f ldr r0, [pc, #60] ; (1000f94c ) +1000f90e: f032 fbfb bl 10042108 +1000f912: e71b b.n 1000f74c +1000f914: 10050b68 .word 0x10050b68 +1000f918: 10047538 .word 0x10047538 +1000f91c: 1004779c .word 0x1004779c +1000f920: 100475b8 .word 0x100475b8 +1000f924: 1004752c .word 0x1004752c +1000f928: 10050b70 .word 0x10050b70 +1000f92c: 10050b5c .word 0x10050b5c +1000f930: 10050b6c .word 0x10050b6c +1000f934: 10050b80 .word 0x10050b80 +1000f938: 10050b64 .word 0x10050b64 +1000f93c: 10047610 .word 0x10047610 +1000f940: 100475e0 .word 0x100475e0 +1000f944: 10050b60 .word 0x10050b60 +1000f948: 10047568 .word 0x10047568 +1000f94c: 10047590 .word 0x10047590 + +1000f950 : +1000f950: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000f954: 4b0e ldr r3, [pc, #56] ; (1000f990 ) +1000f956: f8df e048 ldr.w lr, [pc, #72] ; 1000f9a0 +1000f95a: f8df 8048 ldr.w r8, [pc, #72] ; 1000f9a4 +1000f95e: f8df c048 ldr.w ip, [pc, #72] ; 1000f9a8 +1000f962: 4e0c ldr r6, [pc, #48] ; (1000f994 ) +1000f964: 4d0c ldr r5, [pc, #48] ; (1000f998 ) +1000f966: 6019 str r1, [r3, #0] +1000f968: 2400 movs r4, #0 +1000f96a: 2301 movs r3, #1 +1000f96c: 4601 mov r1, r0 +1000f96e: 2778 movs r7, #120 ; 0x78 +1000f970: 480a ldr r0, [pc, #40] ; (1000f99c ) +1000f972: f8c8 3000 str.w r3, [r8] +1000f976: f8ae 4000 strh.w r4, [lr] +1000f97a: 6037 str r7, [r6, #0] +1000f97c: 602a str r2, [r5, #0] +1000f97e: f8cc 3000 str.w r3, [ip] +1000f982: f032 fbff bl 10042184 +1000f986: 4620 mov r0, r4 +1000f988: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1000f98c: f7ff becc b.w 1000f728 +1000f990: 10050b80 .word 0x10050b80 +1000f994: 10050b68 .word 0x10050b68 +1000f998: 10050b6c .word 0x10050b6c +1000f99c: 10050b70 .word 0x10050b70 +1000f9a0: 10050b5c .word 0x10050b5c +1000f9a4: 10050b60 .word 0x10050b60 +1000f9a8: 10050b64 .word 0x10050b64 + +1000f9ac : +1000f9ac: b508 push {r3, lr} +1000f9ae: 4b09 ldr r3, [pc, #36] ; (1000f9d4 ) +1000f9b0: 2221 movs r2, #33 ; 0x21 +1000f9b2: 601a str r2, [r3, #0] +1000f9b4: 2064 movs r0, #100 ; 0x64 +1000f9b6: f00b fadf bl 1001af78 +1000f9ba: 4a07 ldr r2, [pc, #28] ; (1000f9d8 ) +1000f9bc: 4b07 ldr r3, [pc, #28] ; (1000f9dc ) +1000f9be: 6811 ldr r1, [r2, #0] +1000f9c0: f401 61e0 and.w r1, r1, #1792 ; 0x700 +1000f9c4: 430b orrs r3, r1 +1000f9c6: 6013 str r3, [r2, #0] +1000f9c8: f44f 707a mov.w r0, #1000 ; 0x3e8 +1000f9cc: f00b fad4 bl 1001af78 +1000f9d0: e7fa b.n 1000f9c8 +1000f9d2: bf00 nop +1000f9d4: 40000014 .word 0x40000014 +1000f9d8: e000ed0c .word 0xe000ed0c +1000f9dc: 05fa0004 .word 0x05fa0004 + +1000f9e0 : +1000f9e0: b5f0 push {r4, r5, r6, r7, lr} +1000f9e2: 4605 mov r5, r0 +1000f9e4: b083 sub sp, #12 +1000f9e6: 2001 movs r0, #1 +1000f9e8: 460f mov r7, r1 +1000f9ea: f00c fd89 bl 1001c500 +1000f9ee: aa01 add r2, sp, #4 +1000f9f0: f44f 4110 mov.w r1, #36864 ; 0x9000 +1000f9f4: 4628 mov r0, r5 +1000f9f6: f00d fd55 bl 1001d4a4 +1000f9fa: 463b mov r3, r7 +1000f9fc: 4827 ldr r0, [pc, #156] ; (1000fa9c ) +1000f9fe: 4928 ldr r1, [pc, #160] ; (1000faa0 ) +1000fa00: 9a01 ldr r2, [sp, #4] +1000fa02: f032 fb81 bl 10042108 +1000fa06: 9b01 ldr r3, [sp, #4] +1000fa08: 4628 mov r0, r5 +1000fa0a: 3301 adds r3, #1 +1000fa0c: d03b beq.n 1000fa86 +1000fa0e: f44f 4100 mov.w r1, #32768 ; 0x8000 +1000fa12: f00d fd2b bl 1001d46c +1000fa16: f44f 4600 mov.w r6, #32768 ; 0x8000 +1000fa1a: 2404 movs r4, #4 +1000fa1c: e001 b.n 1000fa22 +1000fa1e: 3404 adds r4, #4 +1000fa20: 3604 adds r6, #4 +1000fa22: f504 410f add.w r1, r4, #36608 ; 0x8f00 +1000fa26: 31fc adds r1, #252 ; 0xfc +1000fa28: 4628 mov r0, r5 +1000fa2a: aa01 add r2, sp, #4 +1000fa2c: f00d fd3a bl 1001d4a4 +1000fa30: 2c04 cmp r4, #4 +1000fa32: 4631 mov r1, r6 +1000fa34: 4628 mov r0, r5 +1000fa36: d02c beq.n 1000fa92 +1000fa38: 9a01 ldr r2, [sp, #4] +1000fa3a: f00d fd57 bl 1001d4ec +1000fa3e: f5b4 5f80 cmp.w r4, #4096 ; 0x1000 +1000fa42: d1ec bne.n 1000fa1e +1000fa44: 4628 mov r0, r5 +1000fa46: f44f 4110 mov.w r1, #36864 ; 0x9000 +1000fa4a: f00d fd0f bl 1001d46c +1000fa4e: f44f 4400 mov.w r4, #32768 ; 0x8000 +1000fa52: 4621 mov r1, r4 +1000fa54: aa01 add r2, sp, #4 +1000fa56: 4628 mov r0, r5 +1000fa58: f00d fd24 bl 1001d4a4 +1000fa5c: f504 5180 add.w r1, r4, #4096 ; 0x1000 +1000fa60: 4628 mov r0, r5 +1000fa62: 9a01 ldr r2, [sp, #4] +1000fa64: 3404 adds r4, #4 +1000fa66: f00d fd41 bl 1001d4ec +1000fa6a: f5b4 4f10 cmp.w r4, #36864 ; 0x9000 +1000fa6e: d1f0 bne.n 1000fa52 +1000fa70: 4628 mov r0, r5 +1000fa72: f44f 4100 mov.w r1, #32768 ; 0x8000 +1000fa76: f00d fcf9 bl 1001d46c +1000fa7a: 2001 movs r0, #1 +1000fa7c: f00c fd58 bl 1001c530 +1000fa80: 2000 movs r0, #0 +1000fa82: b003 add sp, #12 +1000fa84: bdf0 pop {r4, r5, r6, r7, pc} +1000fa86: 463a mov r2, r7 +1000fa88: f44f 4110 mov.w r1, #36864 ; 0x9000 +1000fa8c: f00d fd2e bl 1001d4ec +1000fa90: e7f3 b.n 1000fa7a +1000fa92: 463a mov r2, r7 +1000fa94: 9701 str r7, [sp, #4] +1000fa96: f00d fd29 bl 1001d4ec +1000fa9a: e7c0 b.n 1000fa1e +1000fa9c: 10047800 .word 0x10047800 +1000faa0: 100477e0 .word 0x100477e0 + +1000faa4 : +1000faa4: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1000faa8: 4f60 ldr r7, [pc, #384] ; (1000fc2c ) +1000faaa: b0a7 sub sp, #156 ; 0x9c +1000faac: ad16 add r5, sp, #88 ; 0x58 +1000faae: 4604 mov r4, r0 +1000fab0: cf0f ldmia r7!, {r0, r1, r2, r3} +1000fab2: c50f stmia r5!, {r0, r1, r2, r3} +1000fab4: e897 0007 ldmia.w r7, {r0, r1, r2} +1000fab8: 2700 movs r7, #0 +1000faba: e885 0007 stmia.w r5, {r0, r1, r2} +1000fabe: 495c ldr r1, [pc, #368] ; (1000fc30 ) +1000fac0: 485c ldr r0, [pc, #368] ; (1000fc34 ) +1000fac2: 9706 str r7, [sp, #24] +1000fac4: 9707 str r7, [sp, #28] +1000fac6: 9708 str r7, [sp, #32] +1000fac8: 9709 str r7, [sp, #36] ; 0x24 +1000faca: 971d str r7, [sp, #116] ; 0x74 +1000facc: f032 fb1c bl 10042108 +1000fad0: f44f 7000 mov.w r0, #512 ; 0x200 +1000fad4: f00b f856 bl 1001ab84 +1000fad8: 4605 mov r5, r0 +1000fada: 2800 cmp r0, #0 +1000fadc: f000 81c2 beq.w 1000fe64 +1000fae0: 463a mov r2, r7 +1000fae2: 2002 movs r0, #2 +1000fae4: 2101 movs r1, #1 +1000fae6: f002 fa85 bl 10011ff4 +1000faea: 1e06 subs r6, r0, #0 +1000faec: db65 blt.n 1000fbba +1000faee: 6823 ldr r3, [r4, #0] +1000faf0: f8b4 e004 ldrh.w lr, [r4, #4] +1000faf4: 2702 movs r7, #2 +1000faf6: a912 add r1, sp, #72 ; 0x48 +1000faf8: 2210 movs r2, #16 +1000fafa: 9313 str r3, [sp, #76] ; 0x4c +1000fafc: f88d 7049 strb.w r7, [sp, #73] ; 0x49 +1000fb00: f8ad e04a strh.w lr, [sp, #74] ; 0x4a +1000fb04: f002 f816 bl 10011b34 +1000fb08: 1c43 adds r3, r0, #1 +1000fb0a: 4607 mov r7, r0 +1000fb0c: d05c beq.n 1000fbc8 +1000fb0e: 4b4a ldr r3, [pc, #296] ; (1000fc38 ) +1000fb10: 2001 movs r0, #1 +1000fb12: 681a ldr r2, [r3, #0] +1000fb14: f422 5280 bic.w r2, r2, #4096 ; 0x1000 +1000fb18: 601a str r2, [r3, #0] +1000fb1a: f00c fcf1 bl 1001c500 +1000fb1e: f44f 4130 mov.w r1, #45056 ; 0xb000 +1000fb22: aa07 add r2, sp, #28 +1000fb24: a80c add r0, sp, #48 ; 0x30 +1000fb26: f00d fcbd bl 1001d4a4 +1000fb2a: f8dd 801c ldr.w r8, [sp, #28] +1000fb2e: aa08 add r2, sp, #32 +1000fb30: f508 4730 add.w r7, r8, #45056 ; 0xb000 +1000fb34: 3710 adds r7, #16 +1000fb36: 4639 mov r1, r7 +1000fb38: a80c add r0, sp, #48 ; 0x30 +1000fb3a: f00d fcb3 bl 1001d4a4 +1000fb3e: f508 4130 add.w r1, r8, #45056 ; 0xb000 +1000fb42: 3114 adds r1, #20 +1000fb44: aa09 add r2, sp, #36 ; 0x24 +1000fb46: a80c add r0, sp, #48 ; 0x30 +1000fb48: f00d fcac bl 1001d4a4 +1000fb4c: 2001 movs r0, #1 +1000fb4e: f00c fcef bl 1001c530 +1000fb52: 9b09 ldr r3, [sp, #36] ; 0x24 +1000fb54: f1b3 5f40 cmp.w r3, #805306368 ; 0x30000000 +1000fb58: d03b beq.n 1000fbd2 +1000fb5a: 4838 ldr r0, [pc, #224] ; (1000fc3c ) +1000fb5c: 4934 ldr r1, [pc, #208] ; (1000fc30 ) +1000fb5e: f032 fad3 bl 10042108 +1000fb62: 9b07 ldr r3, [sp, #28] +1000fb64: f44f 4730 mov.w r7, #45056 ; 0xb000 +1000fb68: 9308 str r3, [sp, #32] +1000fb6a: 443b add r3, r7 +1000fb6c: f5b3 2f00 cmp.w r3, #524288 ; 0x80000 +1000fb70: d93c bls.n 1000fbec +1000fb72: 4833 ldr r0, [pc, #204] ; (1000fc40 ) +1000fb74: 492e ldr r1, [pc, #184] ; (1000fc30 ) +1000fb76: f44f 2200 mov.w r2, #524288 ; 0x80000 +1000fb7a: f032 fac5 bl 10042108 +1000fb7e: f04f 37ff mov.w r7, #4294967295 +1000fb82: 4628 mov r0, r5 +1000fb84: f00a ff8e bl 1001aaa4 +1000fb88: 2e00 cmp r6, #0 +1000fb8a: db02 blt.n 1000fb92 +1000fb8c: 4630 mov r0, r6 +1000fb8e: f001 ff95 bl 10011abc +1000fb92: b114 cbz r4, 1000fb9a +1000fb94: 4620 mov r0, r4 +1000fb96: f00a ff85 bl 1001aaa4 +1000fb9a: 4b2a ldr r3, [pc, #168] ; (1000fc44 ) +1000fb9c: 2400 movs r4, #0 +1000fb9e: 482a ldr r0, [pc, #168] ; (1000fc48 ) +1000fba0: 4923 ldr r1, [pc, #140] ; (1000fc30 ) +1000fba2: 601c str r4, [r3, #0] +1000fba4: f032 fab0 bl 10042108 +1000fba8: 2f00 cmp r7, #0 +1000fbaa: f000 81ba beq.w 1000ff22 +1000fbae: 4620 mov r0, r4 +1000fbb0: f00b fe10 bl 1001b7d4 +1000fbb4: b027 add sp, #156 ; 0x9c +1000fbb6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1000fbba: 4824 ldr r0, [pc, #144] ; (1000fc4c ) +1000fbbc: 491c ldr r1, [pc, #112] ; (1000fc30 ) +1000fbbe: f032 faa3 bl 10042108 +1000fbc2: f04f 37ff mov.w r7, #4294967295 +1000fbc6: e7dc b.n 1000fb82 +1000fbc8: 4919 ldr r1, [pc, #100] ; (1000fc30 ) +1000fbca: 4821 ldr r0, [pc, #132] ; (1000fc50 ) +1000fbcc: f032 fa9c bl 10042108 +1000fbd0: e7d7 b.n 1000fb82 +1000fbd2: 4820 ldr r0, [pc, #128] ; (1000fc54 ) +1000fbd4: 4916 ldr r1, [pc, #88] ; (1000fc30 ) +1000fbd6: 463a mov r2, r7 +1000fbd8: 9b08 ldr r3, [sp, #32] +1000fbda: f032 fa95 bl 10042108 +1000fbde: f5b7 2f00 cmp.w r7, #524288 ; 0x80000 +1000fbe2: f0c0 81a4 bcc.w 1000ff2e +1000fbe6: f5b7 2f00 cmp.w r7, #524288 ; 0x80000 +1000fbea: d1c2 bne.n 1000fb72 +1000fbec: f44f 2100 mov.w r1, #524288 ; 0x80000 +1000fbf0: a80c add r0, sp, #48 ; 0x30 +1000fbf2: f7ff fef5 bl 1000f9e0 +1000fbf6: 2001 movs r0, #1 +1000fbf8: f00c fc82 bl 1001c500 +1000fbfc: aa06 add r2, sp, #24 +1000fbfe: f44f 4110 mov.w r1, #36864 ; 0x9000 +1000fc02: a80c add r0, sp, #48 ; 0x30 +1000fc04: f00d fc4e bl 1001d4a4 +1000fc08: 2001 movs r0, #1 +1000fc0a: f00c fc91 bl 1001c530 +1000fc0e: 9a06 ldr r2, [sp, #24] +1000fc10: 42ba cmp r2, r7 +1000fc12: d923 bls.n 1000fc5c +1000fc14: 9b08 ldr r3, [sp, #32] +1000fc16: 443b add r3, r7 +1000fc18: 429a cmp r2, r3 +1000fc1a: d21f bcs.n 1000fc5c +1000fc1c: 480e ldr r0, [pc, #56] ; (1000fc58 ) +1000fc1e: 4904 ldr r1, [pc, #16] ; (1000fc30 ) +1000fc20: f032 fa72 bl 10042108 +1000fc24: f04f 37ff mov.w r7, #4294967295 +1000fc28: e7ab b.n 1000fb82 +1000fc2a: bf00 nop +1000fc2c: 100477a8 .word 0x100477a8 +1000fc30: 100477c8 .word 0x100477c8 +1000fc34: 10047820 .word 0x10047820 +1000fc38: 10000310 .word 0x10000310 +1000fc3c: 100478b8 .word 0x100478b8 +1000fc40: 100478cc .word 0x100478cc +1000fc44: 10050b84 .word 0x10050b84 +1000fc48: 10047adc .word 0x10047adc +1000fc4c: 10047858 .word 0x10047858 +1000fc50: 10047874 .word 0x10047874 +1000fc54: 10047894 .word 0x10047894 +1000fc58: 100478ec .word 0x100478ec +1000fc5c: 42ba cmp r2, r7 +1000fc5e: d3dd bcc.n 1000fc1c +1000fc60: f3c2 010b ubfx r1, r2, #0, #12 +1000fc64: 2900 cmp r1, #0 +1000fc66: d1d9 bne.n 1000fc1c +1000fc68: a80f add r0, sp, #60 ; 0x3c +1000fc6a: 220c movs r2, #12 +1000fc6c: f032 fa7e bl 1004216c +1000fc70: 9b0f ldr r3, [sp, #60] ; 0x3c +1000fc72: 2b00 cmp r3, #0 +1000fc74: f040 80fd bne.w 1000fe72 +1000fc78: 49ae ldr r1, [pc, #696] ; (1000ff34 ) +1000fc7a: 48af ldr r0, [pc, #700] ; (1000ff38 ) +1000fc7c: f032 fa44 bl 10042108 +1000fc80: a90f add r1, sp, #60 ; 0x3c +1000fc82: 220c movs r2, #12 +1000fc84: 4630 mov r0, r6 +1000fc86: f002 f8eb bl 10011e60 +1000fc8a: 49aa ldr r1, [pc, #680] ; (1000ff34 ) +1000fc8c: 4602 mov r2, r0 +1000fc8e: 48ab ldr r0, [pc, #684] ; (1000ff3c ) +1000fc90: f032 fa3a bl 10042108 +1000fc94: 48aa ldr r0, [pc, #680] ; (1000ff40 ) +1000fc96: 49a7 ldr r1, [pc, #668] ; (1000ff34 ) +1000fc98: 9a0f ldr r2, [sp, #60] ; 0x3c +1000fc9a: 9b11 ldr r3, [sp, #68] ; 0x44 +1000fc9c: f032 fa34 bl 10042108 +1000fca0: f8dd a044 ldr.w sl, [sp, #68] ; 0x44 +1000fca4: f1ba 0f00 cmp.w sl, #0 +1000fca8: f000 80ed beq.w 1000fe86 +1000fcac: 48a5 ldr r0, [pc, #660] ; (1000ff44 ) +1000fcae: 49a1 ldr r1, [pc, #644] ; (1000ff34 ) +1000fcb0: 4652 mov r2, sl +1000fcb2: f032 fa29 bl 10042108 +1000fcb6: f1ba 0f00 cmp.w sl, #0 +1000fcba: f340 80dd ble.w 1000fe78 +1000fcbe: f10a 38ff add.w r8, sl, #4294967295 +1000fcc2: ea4f 3818 mov.w r8, r8, lsr #12 +1000fcc6: f108 0801 add.w r8, r8, #1 +1000fcca: 4642 mov r2, r8 +1000fccc: 4643 mov r3, r8 +1000fcce: 4999 ldr r1, [pc, #612] ; (1000ff34 ) +1000fcd0: 489d ldr r0, [pc, #628] ; (1000ff48 ) +1000fcd2: f032 fa19 bl 10042108 +1000fcd6: 2001 movs r0, #1 +1000fcd8: f00c fc12 bl 1001c500 +1000fcdc: 2700 movs r7, #0 +1000fcde: 9906 ldr r1, [sp, #24] +1000fce0: a80c add r0, sp, #48 ; 0x30 +1000fce2: eb01 3107 add.w r1, r1, r7, lsl #12 +1000fce6: 3701 adds r7, #1 +1000fce8: f00d fbc0 bl 1001d46c +1000fcec: 4547 cmp r7, r8 +1000fcee: d1f6 bne.n 1000fcde +1000fcf0: 2001 movs r0, #1 +1000fcf2: f00c fc1d bl 1001c530 +1000fcf6: 4895 ldr r0, [pc, #596] ; (1000ff4c ) +1000fcf8: 498e ldr r1, [pc, #568] ; (1000ff34 ) +1000fcfa: 9a06 ldr r2, [sp, #24] +1000fcfc: f032 fa04 bl 10042108 +1000fd00: f8dd 8018 ldr.w r8, [sp, #24] +1000fd04: f04f 0b00 mov.w fp, #0 +1000fd08: f1b8 3fff cmp.w r8, #4294967295 +1000fd0c: f000 80a7 beq.w 1000fe5e +1000fd10: 488f ldr r0, [pc, #572] ; (1000ff50 ) +1000fd12: f032 f9f9 bl 10042108 +1000fd16: 465f mov r7, fp +1000fd18: 46d9 mov r9, fp +1000fd1a: 9403 str r4, [sp, #12] +1000fd1c: 465c mov r4, fp +1000fd1e: 46c3 mov fp, r8 +1000fd20: 2100 movs r1, #0 +1000fd22: f44f 7200 mov.w r2, #512 ; 0x200 +1000fd26: 4628 mov r0, r5 +1000fd28: f032 fa20 bl 1004216c +1000fd2c: 4630 mov r0, r6 +1000fd2e: 4629 mov r1, r5 +1000fd30: f44f 7200 mov.w r2, #512 ; 0x200 +1000fd34: f002 f894 bl 10011e60 +1000fd38: f1b0 0800 subs.w r8, r0, #0 +1000fd3c: d039 beq.n 1000fdb2 +1000fd3e: f2c0 80a9 blt.w 1000fe94 +1000fd42: b2e1 uxtb r1, r4 +1000fd44: f3c4 2207 ubfx r2, r4, #8, #8 +1000fd48: 440a add r2, r1 +1000fd4a: f3c4 4307 ubfx r3, r4, #16, #8 +1000fd4e: 4413 add r3, r2 +1000fd50: eb03 6314 add.w r3, r3, r4, lsr #24 +1000fd54: 2001 movs r0, #1 +1000fd56: 441f add r7, r3 +1000fd58: f00c fbd2 bl 1001c500 +1000fd5c: a80c add r0, sp, #48 ; 0x30 +1000fd5e: eb09 010b add.w r1, r9, fp +1000fd62: 4642 mov r2, r8 +1000fd64: 462b mov r3, r5 +1000fd66: f00d fc95 bl 1001d694 +1000fd6a: 2800 cmp r0, #0 +1000fd6c: f2c0 809a blt.w 1000fea4 +1000fd70: 2001 movs r0, #1 +1000fd72: f00c fbdd bl 1001c530 +1000fd76: f1a8 0104 sub.w r1, r8, #4 +1000fd7a: 2900 cmp r1, #0 +1000fd7c: 44c1 add r9, r8 +1000fd7e: dd05 ble.n 1000fd8c +1000fd80: 2300 movs r3, #0 +1000fd82: 5cea ldrb r2, [r5, r3] +1000fd84: 3301 adds r3, #1 +1000fd86: 428b cmp r3, r1 +1000fd88: 4417 add r7, r2 +1000fd8a: d1fa bne.n 1000fd82 +1000fd8c: 44a8 add r8, r5 +1000fd8e: f818 2c04 ldrb.w r2, [r8, #-4] +1000fd92: f818 3c03 ldrb.w r3, [r8, #-3] +1000fd96: f362 0407 bfi r4, r2, #0, #8 +1000fd9a: f818 2c02 ldrb.w r2, [r8, #-2] +1000fd9e: f363 240f bfi r4, r3, #8, #8 +1000fda2: f818 3c01 ldrb.w r3, [r8, #-1] +1000fda6: f362 4417 bfi r4, r2, #16, #8 +1000fdaa: 45d1 cmp r9, sl +1000fdac: f363 641f bfi r4, r3, #24, #8 +1000fdb0: d1b6 bne.n 1000fd20 +1000fdb2: f1a9 0304 sub.w r3, r9, #4 +1000fdb6: 4866 ldr r0, [pc, #408] ; (1000ff50 ) +1000fdb8: 46a3 mov fp, r4 +1000fdba: 9c03 ldr r4, [sp, #12] +1000fdbc: 9303 str r3, [sp, #12] +1000fdbe: f032 f9a3 bl 10042108 +1000fdc2: 9b03 ldr r3, [sp, #12] +1000fdc4: f04f 0800 mov.w r8, #0 +1000fdc8: 2b00 cmp r3, #0 +1000fdca: dd23 ble.n 1000fe14 +1000fdcc: 9405 str r4, [sp, #20] +1000fdce: f8cd 9010 str.w r9, [sp, #16] +1000fdd2: 46c2 mov sl, r8 +1000fdd4: 461c mov r4, r3 +1000fdd6: 9906 ldr r1, [sp, #24] +1000fdd8: ebca 0904 rsb r9, sl, r4 +1000fddc: f5b9 7f00 cmp.w r9, #512 ; 0x200 +1000fde0: bfa8 it ge +1000fde2: f44f 7900 movge.w r9, #512 ; 0x200 +1000fde6: 464a mov r2, r9 +1000fde8: 4451 add r1, sl +1000fdea: a80c add r0, sp, #48 ; 0x30 +1000fdec: 462b mov r3, r5 +1000fdee: f00d fbb1 bl 1001d554 +1000fdf2: f1b9 0f00 cmp.w r9, #0 +1000fdf6: dd06 ble.n 1000fe06 +1000fdf8: 44a9 add r9, r5 +1000fdfa: 462b mov r3, r5 +1000fdfc: f813 2b01 ldrb.w r2, [r3], #1 +1000fe00: 454b cmp r3, r9 +1000fe02: 4490 add r8, r2 +1000fe04: d1fa bne.n 1000fdfc +1000fe06: f50a 7a00 add.w sl, sl, #512 ; 0x200 +1000fe0a: 4554 cmp r4, sl +1000fe0c: dce3 bgt.n 1000fdd6 +1000fe0e: f8dd 9010 ldr.w r9, [sp, #16] +1000fe12: 9c05 ldr r4, [sp, #20] +1000fe14: 4649 mov r1, r9 +1000fe16: 463a mov r2, r7 +1000fe18: 4643 mov r3, r8 +1000fe1a: f8cd b000 str.w fp, [sp] +1000fe1e: 484d ldr r0, [pc, #308] ; (1000ff54 ) +1000fe20: f032 f972 bl 10042108 +1000fe24: 2001 movs r0, #1 +1000fe26: f00c fb6b bl 1001c500 +1000fe2a: f04f 0900 mov.w r9, #0 +1000fe2e: 9b06 ldr r3, [sp, #24] +1000fe30: aa1e add r2, sp, #120 ; 0x78 +1000fe32: f103 0128 add.w r1, r3, #40 ; 0x28 +1000fe36: 4449 add r1, r9 +1000fe38: 444a add r2, r9 +1000fe3a: a80c add r0, sp, #48 ; 0x30 +1000fe3c: f109 0904 add.w r9, r9, #4 +1000fe40: f00d fb30 bl 1001d4a4 +1000fe44: f1b9 0f20 cmp.w r9, #32 +1000fe48: d1f1 bne.n 1000fe2e +1000fe4a: 2001 movs r0, #1 +1000fe4c: f00c fb70 bl 1001c530 +1000fe50: 4841 ldr r0, [pc, #260] ; (1000ff58 ) +1000fe52: 4938 ldr r1, [pc, #224] ; (1000ff34 ) +1000fe54: aa1e add r2, sp, #120 ; 0x78 +1000fe56: f032 f957 bl 10042108 +1000fe5a: 455f cmp r7, fp +1000fe5c: d02d beq.n 1000feba +1000fe5e: f04f 37ff mov.w r7, #4294967295 +1000fe62: e68e b.n 1000fb82 +1000fe64: 483d ldr r0, [pc, #244] ; (1000ff5c ) +1000fe66: 4933 ldr r1, [pc, #204] ; (1000ff34 ) +1000fe68: f032 f94e bl 10042108 +1000fe6c: f04f 37ff mov.w r7, #4294967295 +1000fe70: e68a b.n 1000fb88 +1000fe72: f8dd a044 ldr.w sl, [sp, #68] ; 0x44 +1000fe76: e719 b.n 1000fcac +1000fe78: 4839 ldr r0, [pc, #228] ; (1000ff60 ) +1000fe7a: 492e ldr r1, [pc, #184] ; (1000ff34 ) +1000fe7c: f032 f944 bl 10042108 +1000fe80: f04f 37ff mov.w r7, #4294967295 +1000fe84: e67d b.n 1000fb82 +1000fe86: 4837 ldr r0, [pc, #220] ; (1000ff64 ) +1000fe88: 492a ldr r1, [pc, #168] ; (1000ff34 ) +1000fe8a: f032 f93d bl 10042108 +1000fe8e: f04f 37ff mov.w r7, #4294967295 +1000fe92: e676 b.n 1000fb82 +1000fe94: 4834 ldr r0, [pc, #208] ; (1000ff68 ) +1000fe96: 4927 ldr r1, [pc, #156] ; (1000ff34 ) +1000fe98: 9c03 ldr r4, [sp, #12] +1000fe9a: f04f 37ff mov.w r7, #4294967295 +1000fe9e: f032 f933 bl 10042108 +1000fea2: e66e b.n 1000fb82 +1000fea4: 4923 ldr r1, [pc, #140] ; (1000ff34 ) +1000fea6: 4831 ldr r0, [pc, #196] ; (1000ff6c ) +1000fea8: 9c03 ldr r4, [sp, #12] +1000feaa: f032 f92d bl 10042108 +1000feae: 2001 movs r0, #1 +1000feb0: f00c fb3e bl 1001c530 +1000feb4: f04f 37ff mov.w r7, #4294967295 +1000feb8: e663 b.n 1000fb82 +1000feba: 4547 cmp r7, r8 +1000febc: d1cf bne.n 1000fe5e +1000febe: a81e add r0, sp, #120 ; 0x78 +1000fec0: a916 add r1, sp, #88 ; 0x58 +1000fec2: f032 f959 bl 10042178 +1000fec6: 4680 mov r8, r0 +1000fec8: 2800 cmp r0, #0 +1000feca: d1c8 bne.n 1000fe5e +1000fecc: 2001 movs r0, #1 +1000fece: f00c fb17 bl 1001c500 +1000fed2: 9906 ldr r1, [sp, #24] +1000fed4: a80c add r0, sp, #48 ; 0x30 +1000fed6: 3108 adds r1, #8 +1000fed8: 4a25 ldr r2, [pc, #148] ; (1000ff70 ) +1000feda: f00d fb07 bl 1001d4ec +1000fede: 9906 ldr r1, [sp, #24] +1000fee0: a80c add r0, sp, #48 ; 0x30 +1000fee2: 310c adds r1, #12 +1000fee4: 4a23 ldr r2, [pc, #140] ; (1000ff74 ) +1000fee6: f00d fb01 bl 1001d4ec +1000feea: 9906 ldr r1, [sp, #24] +1000feec: aa0a add r2, sp, #40 ; 0x28 +1000feee: a80c add r0, sp, #48 ; 0x30 +1000fef0: 3108 adds r1, #8 +1000fef2: f00d fad7 bl 1001d4a4 +1000fef6: 9906 ldr r1, [sp, #24] +1000fef8: aa0b add r2, sp, #44 ; 0x2c +1000fefa: 310c adds r1, #12 +1000fefc: a80c add r0, sp, #48 ; 0x30 +1000fefe: f00d fad1 bl 1001d4a4 +1000ff02: 2001 movs r0, #1 +1000ff04: f00c fb14 bl 1001c530 +1000ff08: 9700 str r7, [sp, #0] +1000ff0a: 490a ldr r1, [pc, #40] ; (1000ff34 ) +1000ff0c: 9a0a ldr r2, [sp, #40] ; 0x28 +1000ff0e: 9b0b ldr r3, [sp, #44] ; 0x2c +1000ff10: 4819 ldr r0, [pc, #100] ; (1000ff78 ) +1000ff12: f032 f8f9 bl 10042108 +1000ff16: 4907 ldr r1, [pc, #28] ; (1000ff34 ) +1000ff18: 4818 ldr r0, [pc, #96] ; (1000ff7c ) +1000ff1a: 4647 mov r7, r8 +1000ff1c: f032 f8f4 bl 10042108 +1000ff20: e62f b.n 1000fb82 +1000ff22: 4904 ldr r1, [pc, #16] ; (1000ff34 ) +1000ff24: 4816 ldr r0, [pc, #88] ; (1000ff80 ) +1000ff26: f032 f8ef bl 10042108 +1000ff2a: f7ff fd3f bl 1000f9ac +1000ff2e: 9b08 ldr r3, [sp, #32] +1000ff30: e61b b.n 1000fb6a +1000ff32: bf00 nop +1000ff34: 100477c8 .word 0x100477c8 +1000ff38: 1004790c .word 0x1004790c +1000ff3c: 10047924 .word 0x10047924 +1000ff40: 1004793c .word 0x1004793c +1000ff44: 10047988 .word 0x10047988 +1000ff48: 100479a0 .word 0x100479a0 +1000ff4c: 100479c0 .word 0x100479c0 +1000ff50: 10047ea0 .word 0x10047ea0 +1000ff54: 10047a24 .word 0x10047a24 +1000ff58: 10047a7c .word 0x10047a7c +1000ff5c: 1004783c .word 0x1004783c +1000ff60: 100479d8 .word 0x100479d8 +1000ff64: 10047964 .word 0x10047964 +1000ff68: 100479ec .word 0x100479ec +1000ff6c: 10047a08 .word 0x10047a08 +1000ff70: 35393138 .word 0x35393138 +1000ff74: 31313738 .word 0x31313738 +1000ff78: 10047a98 .word 0x10047a98 +1000ff7c: 10047ac0 .word 0x10047ac0 +1000ff80: 10047af4 .word 0x10047af4 + +1000ff84 : +1000ff84: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1000ff88: 4d1f ldr r5, [pc, #124] ; (10010008 ) +1000ff8a: b084 sub sp, #16 +1000ff8c: 682c ldr r4, [r5, #0] +1000ff8e: 4606 mov r6, r0 +1000ff90: 460f mov r7, r1 +1000ff92: b13c cbz r4, 1000ffa4 +1000ff94: 481d ldr r0, [pc, #116] ; (1001000c ) +1000ff96: 491e ldr r1, [pc, #120] ; (10010010 ) +1000ff98: f032 f8b6 bl 10042108 +1000ff9c: 2000 movs r0, #0 +1000ff9e: b004 add sp, #16 +1000ffa0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000ffa4: 2008 movs r0, #8 +1000ffa6: f00a fded bl 1001ab84 +1000ffaa: 4680 mov r8, r0 +1000ffac: b320 cbz r0, 1000fff8 +1000ffae: 4630 mov r0, r6 +1000ffb0: f003 fbbc bl 1001372c +1000ffb4: f8c8 0000 str.w r0, [r8] +1000ffb8: b2b8 uxth r0, r7 +1000ffba: f003 ff2b bl 10013e14 +1000ffbe: 2301 movs r3, #1 +1000ffc0: f8a8 0004 strh.w r0, [r8, #4] +1000ffc4: 4913 ldr r1, [pc, #76] ; (10010014 ) +1000ffc6: 9300 str r3, [sp, #0] +1000ffc8: 9501 str r5, [sp, #4] +1000ffca: 9402 str r4, [sp, #8] +1000ffcc: 9403 str r4, [sp, #12] +1000ffce: 4812 ldr r0, [pc, #72] ; (10010018 ) +1000ffd0: f44f 6280 mov.w r2, #1024 ; 0x400 +1000ffd4: 4643 mov r3, r8 +1000ffd6: f00b fb15 bl 1001b604 +1000ffda: 2801 cmp r0, #1 +1000ffdc: d00a beq.n 1000fff4 +1000ffde: 4640 mov r0, r8 +1000ffe0: f00a fd60 bl 1001aaa4 +1000ffe4: 490a ldr r1, [pc, #40] ; (10010010 ) +1000ffe6: 480d ldr r0, [pc, #52] ; (1001001c ) +1000ffe8: f032 f88e bl 10042108 +1000ffec: 4620 mov r0, r4 +1000ffee: b004 add sp, #16 +1000fff0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1000fff4: 4620 mov r0, r4 +1000fff6: e7d2 b.n 1000ff9e +1000fff8: 4809 ldr r0, [pc, #36] ; (10010020 ) +1000fffa: 4905 ldr r1, [pc, #20] ; (10010010 ) +1000fffc: f032 f884 bl 10042108 +10010000: f04f 30ff mov.w r0, #4294967295 +10010004: e7cb b.n 1000ff9e +10010006: bf00 nop +10010008: 10050b84 .word 0x10050b84 +1001000c: 10047b0c .word 0x10047b0c +10010010: 10047bb4 .word 0x10047bb4 +10010014: 10047b4c .word 0x10047b4c +10010018: 1000faa5 .word 0x1000faa5 +1001001c: 10047b58 .word 0x10047b58 +10010020: 10047b2c .word 0x10047b2c + +10010024 : +10010024: 2803 cmp r0, #3 +10010026: b510 push {r4, lr} +10010028: 460c mov r4, r1 +1001002a: d005 beq.n 10010038 +1001002c: e8bd 4010 ldmia.w sp!, {r4, lr} +10010030: 4806 ldr r0, [pc, #24] ; (1001004c ) +10010032: 4907 ldr r1, [pc, #28] ; (10010050 ) +10010034: f032 b868 b.w 10042108 +10010038: 6888 ldr r0, [r1, #8] +1001003a: 4b06 ldr r3, [pc, #24] ; (10010054 ) +1001003c: 4798 blx r3 +1001003e: 4601 mov r1, r0 +10010040: 6860 ldr r0, [r4, #4] +10010042: e8bd 4010 ldmia.w sp!, {r4, lr} +10010046: f7ff bf9d b.w 1000ff84 +1001004a: bf00 nop +1001004c: 10047b7c .word 0x10047b7c +10010050: 10047bc8 .word 0x10047bc8 +10010054: 0000f769 .word 0x0000f769 + +10010058 : +10010058: b530 push {r4, r5, lr} +1001005a: f04f 33ff mov.w r3, #4294967295 +1001005e: b087 sub sp, #28 +10010060: 4605 mov r5, r0 +10010062: 2001 movs r0, #1 +10010064: 9301 str r3, [sp, #4] +10010066: 9302 str r3, [sp, #8] +10010068: f00c fa4a bl 1001c500 +1001006c: 2118 movs r1, #24 +1001006e: aa01 add r2, sp, #4 +10010070: a803 add r0, sp, #12 +10010072: f00d fa17 bl 1001d4a4 +10010076: f8bd 3004 ldrh.w r3, [sp, #4] +1001007a: f44f 4110 mov.w r1, #36864 ; 0x9000 +1001007e: 029b lsls r3, r3, #10 +10010080: aa02 add r2, sp, #8 +10010082: a803 add r0, sp, #12 +10010084: 9301 str r3, [sp, #4] +10010086: f00d fa0d bl 1001d4a4 +1001008a: 2001 movs r0, #1 +1001008c: f00c fa50 bl 1001c530 +10010090: 9b02 ldr r3, [sp, #8] +10010092: 3301 adds r3, #1 +10010094: d029 beq.n 100100ea +10010096: f44f 5080 mov.w r0, #4096 ; 0x1000 +1001009a: f00a fd73 bl 1001ab84 +1001009e: 4604 mov r4, r0 +100100a0: b318 cbz r0, 100100ea +100100a2: 2001 movs r0, #1 +100100a4: f00c fa2c bl 1001c500 +100100a8: 9902 ldr r1, [sp, #8] +100100aa: 4623 mov r3, r4 +100100ac: f44f 5280 mov.w r2, #4096 ; 0x1000 +100100b0: a803 add r0, sp, #12 +100100b2: f00d fa4f bl 1001d554 +100100b6: 2d01 cmp r5, #1 +100100b8: bf0c ite eq +100100ba: 490d ldreq r1, [pc, #52] ; (100100f0 ) +100100bc: 490d ldrne r1, [pc, #52] ; (100100f4 ) +100100be: 2208 movs r2, #8 +100100c0: f104 0008 add.w r0, r4, #8 +100100c4: f032 f84c bl 10042160 +100100c8: a803 add r0, sp, #12 +100100ca: 9902 ldr r1, [sp, #8] +100100cc: f00d f9ce bl 1001d46c +100100d0: 9902 ldr r1, [sp, #8] +100100d2: f44f 5280 mov.w r2, #4096 ; 0x1000 +100100d6: 4623 mov r3, r4 +100100d8: a803 add r0, sp, #12 +100100da: f00d fadb bl 1001d694 +100100de: 2001 movs r0, #1 +100100e0: f00c fa26 bl 1001c530 +100100e4: 4620 mov r0, r4 +100100e6: f00a fcdd bl 1001aaa4 +100100ea: b007 add sp, #28 +100100ec: bd30 pop {r4, r5, pc} +100100ee: bf00 nop +100100f0: 10047b9c .word 0x10047b9c +100100f4: 10047ba8 .word 0x10047ba8 + +100100f8 : +100100f8: b508 push {r3, lr} +100100fa: f7ff f899 bl 1000f230 +100100fe: 2001 movs r0, #1 +10010100: f7fc ff04 bl 1000cf0c +10010104: 2001 movs r0, #1 +10010106: f7fd fb8b bl 1000d820 +1001010a: f00a fce7 bl 1001aadc +1001010e: 4905 ldr r1, [pc, #20] ; (10010124 ) +10010110: 4603 mov r3, r0 +10010112: 2235 movs r2, #53 ; 0x35 +10010114: 4804 ldr r0, [pc, #16] ; (10010128 ) +10010116: f031 fff7 bl 10042108 +1001011a: e8bd 4008 ldmia.w sp!, {r3, lr} +1001011e: 2000 movs r0, #0 +10010120: f00b bb58 b.w 1001b7d4 +10010124: 10047c24 .word 0x10047c24 +10010128: 10047bd4 .word 0x10047bd4 + +1001012c : +1001012c: b500 push {lr} +1001012e: 2300 movs r3, #0 +10010130: b085 sub sp, #20 +10010132: 2207 movs r2, #7 +10010134: e88d 000c stmia.w sp, {r2, r3} +10010138: 9302 str r3, [sp, #8] +1001013a: 9303 str r3, [sp, #12] +1001013c: 4808 ldr r0, [pc, #32] ; (10010160 ) +1001013e: 4909 ldr r1, [pc, #36] ; (10010164 ) +10010140: f44f 62a0 mov.w r2, #1280 ; 0x500 +10010144: f00b fa5e bl 1001b604 +10010148: 2801 cmp r0, #1 +1001014a: d006 beq.n 1001015a +1001014c: 4806 ldr r0, [pc, #24] ; (10010168 ) +1001014e: 4907 ldr r1, [pc, #28] ; (1001016c ) +10010150: b005 add sp, #20 +10010152: f85d eb04 ldr.w lr, [sp], #4 +10010156: f031 bfd7 b.w 10042108 +1001015a: b005 add sp, #20 +1001015c: f85d fb04 ldr.w pc, [sp], #4 +10010160: 100100f9 .word 0x100100f9 +10010164: 10047bf4 .word 0x10047bf4 +10010168: 10047bfc .word 0x10047bfc +1001016c: 10047c30 .word 0x10047c30 + +10010170 : +10010170: b570 push {r4, r5, r6, lr} +10010172: 2300 movs r3, #0 +10010174: b088 sub sp, #32 +10010176: 460d mov r5, r1 +10010178: 4604 mov r4, r0 +1001017a: 9300 str r3, [sp, #0] +1001017c: 2900 cmp r1, #0 +1001017e: d056 beq.n 1001022e +10010180: 600b str r3, [r1, #0] +10010182: 2800 cmp r0, #0 +10010184: d053 beq.n 1001022e +10010186: f100 0614 add.w r6, r0, #20 +1001018a: 4630 mov r0, r6 +1001018c: f009 ff46 bl 1001a01c +10010190: 2800 cmp r0, #0 +10010192: d04a beq.n 1001022a +10010194: 7b23 ldrb r3, [r4, #12] +10010196: b25a sxtb r2, r3 +10010198: 3209 adds r2, #9 +1001019a: da02 bge.n 100101a2 +1001019c: b258 sxtb r0, r3 +1001019e: b008 add sp, #32 +100101a0: bd70 pop {r4, r5, r6, pc} +100101a2: 4630 mov r0, r6 +100101a4: 4669 mov r1, sp +100101a6: 6a62 ldr r2, [r4, #36] ; 0x24 +100101a8: f009 fefe bl 10019fa8 +100101ac: 3001 adds r0, #1 +100101ae: d040 beq.n 10010232 +100101b0: 6823 ldr r3, [r4, #0] +100101b2: 2b10 cmp r3, #16 +100101b4: d00d beq.n 100101d2 +100101b6: 9b00 ldr r3, [sp, #0] +100101b8: 681a ldr r2, [r3, #0] +100101ba: 8912 ldrh r2, [r2, #8] +100101bc: 6b66 ldr r6, [r4, #52] ; 0x34 +100101be: b11e cbz r6, 100101c8 +100101c0: 4620 mov r0, r4 +100101c2: 2101 movs r1, #1 +100101c4: 47b0 blx r6 +100101c6: 9b00 ldr r3, [sp, #0] +100101c8: 602b str r3, [r5, #0] +100101ca: 2300 movs r3, #0 +100101cc: b258 sxtb r0, r3 +100101ce: b008 add sp, #32 +100101d0: bd70 pop {r4, r5, r6, pc} +100101d2: f894 3028 ldrb.w r3, [r4, #40] ; 0x28 +100101d6: 071b lsls r3, r3, #28 +100101d8: d41d bmi.n 10010216 +100101da: 4a1c ldr r2, [pc, #112] ; (1001024c ) +100101dc: 9b00 ldr r3, [sp, #0] +100101de: 9402 str r4, [sp, #8] +100101e0: 9201 str r2, [sp, #4] +100101e2: b1fb cbz r3, 10010224 +100101e4: 891b ldrh r3, [r3, #8] +100101e6: 9304 str r3, [sp, #16] +100101e8: a801 add r0, sp, #4 +100101ea: f002 fa3d bl 10012668 +100101ee: 9b00 ldr r3, [sp, #0] +100101f0: b99b cbnz r3, 1001021a +100101f2: 6b65 ldr r5, [r4, #52] ; 0x34 +100101f4: b11d cbz r5, 100101fe +100101f6: 461a mov r2, r3 +100101f8: 4620 mov r0, r4 +100101fa: 2101 movs r1, #1 +100101fc: 47a8 blx r5 +100101fe: f009 ffb5 bl 1001a16c +10010202: f994 300c ldrsb.w r3, [r4, #12] +10010206: 3309 adds r3, #9 +10010208: bfa4 itt ge +1001020a: 23f4 movge r3, #244 ; 0xf4 +1001020c: 7323 strbge r3, [r4, #12] +1001020e: f009 ffb3 bl 1001a178 +10010212: 23f4 movs r3, #244 ; 0xf4 +10010214: e7c2 b.n 1001019c +10010216: 9b00 ldr r3, [sp, #0] +10010218: b10b cbz r3, 1001021e +1001021a: 891a ldrh r2, [r3, #8] +1001021c: e7ce b.n 100101bc +1001021e: 4b0b ldr r3, [pc, #44] ; (1001024c ) +10010220: 9402 str r4, [sp, #8] +10010222: 9301 str r3, [sp, #4] +10010224: 2301 movs r3, #1 +10010226: 9304 str r3, [sp, #16] +10010228: e7de b.n 100101e8 +1001022a: 23f3 movs r3, #243 ; 0xf3 +1001022c: e7b6 b.n 1001019c +1001022e: 23f2 movs r3, #242 ; 0xf2 +10010230: e7b4 b.n 1001019c +10010232: f009 ff9b bl 1001a16c +10010236: f994 300c ldrsb.w r3, [r4, #12] +1001023a: 3309 adds r3, #9 +1001023c: bfa4 itt ge +1001023e: 23fd movge r3, #253 ; 0xfd +10010240: 7323 strbge r3, [r4, #12] +10010242: f009 ff99 bl 1001a178 +10010246: 23fd movs r3, #253 ; 0xfd +10010248: e7a8 b.n 1001019c +1001024a: bf00 nop +1001024c: 100111dd .word 0x100111dd + +10010250 : +10010250: b570 push {r4, r5, r6, lr} +10010252: 460d mov r5, r1 +10010254: b088 sub sp, #32 +10010256: 4611 mov r1, r2 +10010258: f000 fd38 bl 10010ccc +1001025c: 4604 mov r4, r0 +1001025e: b318 cbz r0, 100102a8 +10010260: 4b13 ldr r3, [pc, #76] ; (100102b0 ) +10010262: a801 add r0, sp, #4 +10010264: f88d 5010 strb.w r5, [sp, #16] +10010268: 9402 str r4, [sp, #8] +1001026a: 9301 str r3, [sp, #4] +1001026c: f002 f9fc bl 10012668 +10010270: b910 cbnz r0, 10010278 +10010272: 4620 mov r0, r4 +10010274: b008 add sp, #32 +10010276: bd70 pop {r4, r5, r6, pc} +10010278: f104 0610 add.w r6, r4, #16 +1001027c: f104 0514 add.w r5, r4, #20 +10010280: 4630 mov r0, r6 +10010282: f009 ff1f bl 1001a0c4 +10010286: 4628 mov r0, r5 +10010288: f009 fec8 bl 1001a01c +1001028c: f104 0018 add.w r0, r4, #24 +10010290: f009 fec4 bl 1001a01c +10010294: 4630 mov r0, r6 +10010296: f009 ff11 bl 1001a0bc +1001029a: 4628 mov r0, r5 +1001029c: f009 fe56 bl 10019f4c +100102a0: 4621 mov r1, r4 +100102a2: 2008 movs r0, #8 +100102a4: f005 fc72 bl 10015b8c +100102a8: 2000 movs r0, #0 +100102aa: b008 add sp, #32 +100102ac: bd70 pop {r4, r5, r6, pc} +100102ae: bf00 nop +100102b0: 10010c35 .word 0x10010c35 + +100102b4 : +100102b4: b510 push {r4, lr} +100102b6: 4604 mov r4, r0 +100102b8: b088 sub sp, #32 +100102ba: b140 cbz r0, 100102ce +100102bc: 4b05 ldr r3, [pc, #20] ; (100102d4 ) +100102be: a801 add r0, sp, #4 +100102c0: 9402 str r4, [sp, #8] +100102c2: 9301 str r3, [sp, #4] +100102c4: f002 f9d0 bl 10012668 +100102c8: 4620 mov r0, r4 +100102ca: f000 fd33 bl 10010d34 +100102ce: 2000 movs r0, #0 +100102d0: b008 add sp, #32 +100102d2: bd10 pop {r4, pc} +100102d4: 10010e9d .word 0x10010e9d + +100102d8 : +100102d8: b530 push {r4, r5, lr} +100102da: 4604 mov r4, r0 +100102dc: b089 sub sp, #36 ; 0x24 +100102de: b1c8 cbz r0, 10010314 +100102e0: b1c1 cbz r1, 10010314 +100102e2: b1ba cbz r2, 10010314 +100102e4: 4d0c ldr r5, [pc, #48] ; (10010318 ) +100102e6: a801 add r0, sp, #4 +100102e8: 9104 str r1, [sp, #16] +100102ea: 9205 str r2, [sp, #20] +100102ec: f88d 3018 strb.w r3, [sp, #24] +100102f0: 9501 str r5, [sp, #4] +100102f2: 9402 str r4, [sp, #8] +100102f4: f002 f9b8 bl 10012668 +100102f8: 4605 mov r5, r0 +100102fa: f009 ff37 bl 1001a16c +100102fe: f994 300c ldrsb.w r3, [r4, #12] +10010302: 3309 adds r3, #9 +10010304: bfa8 it ge +10010306: 7325 strbge r5, [r4, #12] +10010308: f009 ff36 bl 1001a178 +1001030c: 4628 mov r0, r5 +1001030e: b240 sxtb r0, r0 +10010310: b009 add sp, #36 ; 0x24 +10010312: bd30 pop {r4, r5, pc} +10010314: 20f2 movs r0, #242 ; 0xf2 +10010316: e7fa b.n 1001030e +10010318: 10011269 .word 0x10011269 + +1001031c : +1001031c: b530 push {r4, r5, lr} +1001031e: 4604 mov r4, r0 +10010320: b089 sub sp, #36 ; 0x24 +10010322: b1b0 cbz r0, 10010352 +10010324: 4b0c ldr r3, [pc, #48] ; (10010358 ) +10010326: a801 add r0, sp, #4 +10010328: 9104 str r1, [sp, #16] +1001032a: f8ad 2014 strh.w r2, [sp, #20] +1001032e: 9301 str r3, [sp, #4] +10010330: 9402 str r4, [sp, #8] +10010332: f002 f999 bl 10012668 +10010336: 4605 mov r5, r0 +10010338: f009 ff18 bl 1001a16c +1001033c: f994 300c ldrsb.w r3, [r4, #12] +10010340: 3309 adds r3, #9 +10010342: bfa8 it ge +10010344: 7325 strbge r5, [r4, #12] +10010346: f009 ff17 bl 1001a178 +1001034a: 4628 mov r0, r5 +1001034c: b240 sxtb r0, r0 +1001034e: b009 add sp, #36 ; 0x24 +10010350: bd30 pop {r4, r5, pc} +10010352: 20f2 movs r0, #242 ; 0xf2 +10010354: e7fa b.n 1001034c +10010356: bf00 nop +10010358: 10010f45 .word 0x10010f45 + +1001035c : +1001035c: b530 push {r4, r5, lr} +1001035e: 4604 mov r4, r0 +10010360: b089 sub sp, #36 ; 0x24 +10010362: b1b0 cbz r0, 10010392 +10010364: 4b0c ldr r3, [pc, #48] ; (10010398 ) +10010366: a801 add r0, sp, #4 +10010368: 9104 str r1, [sp, #16] +1001036a: f8ad 2014 strh.w r2, [sp, #20] +1001036e: 9301 str r3, [sp, #4] +10010370: 9402 str r4, [sp, #8] +10010372: f002 f979 bl 10012668 +10010376: 4605 mov r5, r0 +10010378: f009 fef8 bl 1001a16c +1001037c: f994 300c ldrsb.w r3, [r4, #12] +10010380: 3309 adds r3, #9 +10010382: bfa8 it ge +10010384: 7325 strbge r5, [r4, #12] +10010386: f009 fef7 bl 1001a178 +1001038a: 4628 mov r0, r5 +1001038c: b240 sxtb r0, r0 +1001038e: b009 add sp, #36 ; 0x24 +10010390: bd30 pop {r4, r5, pc} +10010392: 20f2 movs r0, #242 ; 0xf2 +10010394: e7fa b.n 1001038c +10010396: bf00 nop +10010398: 10010fcd .word 0x10010fcd + +1001039c : +1001039c: b530 push {r4, r5, lr} +1001039e: 4604 mov r4, r0 +100103a0: b089 sub sp, #36 ; 0x24 +100103a2: b198 cbz r0, 100103cc +100103a4: 4b0a ldr r3, [pc, #40] ; (100103d0 ) +100103a6: a801 add r0, sp, #4 +100103a8: 9301 str r3, [sp, #4] +100103aa: 9402 str r4, [sp, #8] +100103ac: f002 f95c bl 10012668 +100103b0: 4605 mov r5, r0 +100103b2: f009 fedb bl 1001a16c +100103b6: f994 300c ldrsb.w r3, [r4, #12] +100103ba: 3309 adds r3, #9 +100103bc: bfa8 it ge +100103be: 7325 strbge r5, [r4, #12] +100103c0: f009 feda bl 1001a178 +100103c4: 4628 mov r0, r5 +100103c6: b240 sxtb r0, r0 +100103c8: b009 add sp, #36 ; 0x24 +100103ca: bd30 pop {r4, r5, pc} +100103cc: 20f2 movs r0, #242 ; 0xf2 +100103ce: e7fa b.n 100103c6 +100103d0: 10011099 .word 0x10011099 + +100103d4 : +100103d4: b5f0 push {r4, r5, r6, r7, lr} +100103d6: 460d mov r5, r1 +100103d8: b083 sub sp, #12 +100103da: 4604 mov r4, r0 +100103dc: b321 cbz r1, 10010428 +100103de: 2700 movs r7, #0 +100103e0: 600f str r7, [r1, #0] +100103e2: b308 cbz r0, 10010428 +100103e4: f100 0618 add.w r6, r0, #24 +100103e8: 4630 mov r0, r6 +100103ea: f009 fe17 bl 1001a01c +100103ee: b1d8 cbz r0, 10010428 +100103f0: 7b23 ldrb r3, [r4, #12] +100103f2: b25a sxtb r2, r3 +100103f4: 3209 adds r2, #9 +100103f6: da03 bge.n 10010400 +100103f8: 4618 mov r0, r3 +100103fa: b240 sxtb r0, r0 +100103fc: b003 add sp, #12 +100103fe: bdf0 pop {r4, r5, r6, r7, pc} +10010400: 4630 mov r0, r6 +10010402: a901 add r1, sp, #4 +10010404: 6a62 ldr r2, [r4, #36] ; 0x24 +10010406: f009 fdcf bl 10019fa8 +1001040a: 3001 adds r0, #1 +1001040c: d00e beq.n 1001042c +1001040e: 6b63 ldr r3, [r4, #52] ; 0x34 +10010410: b11b cbz r3, 1001041a +10010412: 463a mov r2, r7 +10010414: 4620 mov r0, r4 +10010416: 2101 movs r1, #1 +10010418: 4798 blx r3 +1001041a: 9b01 ldr r3, [sp, #4] +1001041c: b193 cbz r3, 10010444 +1001041e: 2000 movs r0, #0 +10010420: b240 sxtb r0, r0 +10010422: 602b str r3, [r5, #0] +10010424: b003 add sp, #12 +10010426: bdf0 pop {r4, r5, r6, r7, pc} +10010428: 20f2 movs r0, #242 ; 0xf2 +1001042a: e7e6 b.n 100103fa +1001042c: f009 fe9e bl 1001a16c +10010430: f994 300c ldrsb.w r3, [r4, #12] +10010434: 3309 adds r3, #9 +10010436: bfa4 itt ge +10010438: 23fd movge r3, #253 ; 0xfd +1001043a: 7323 strbge r3, [r4, #12] +1001043c: f009 fe9c bl 1001a178 +10010440: 20fd movs r0, #253 ; 0xfd +10010442: e7da b.n 100103fa +10010444: f009 fe92 bl 1001a16c +10010448: f994 300c ldrsb.w r3, [r4, #12] +1001044c: 3309 adds r3, #9 +1001044e: bfa4 itt ge +10010450: 23f6 movge r3, #246 ; 0xf6 +10010452: 7323 strbge r3, [r4, #12] +10010454: f009 fe90 bl 1001a178 +10010458: 20f6 movs r0, #246 ; 0xf6 +1001045a: e7ce b.n 100103fa + +1001045c : +1001045c: b120 cbz r0, 10010468 +1001045e: 6803 ldr r3, [r0, #0] +10010460: 2b10 cmp r3, #16 +10010462: d101 bne.n 10010468 +10010464: f7ff be84 b.w 10010170 +10010468: f06f 000d mvn.w r0, #13 +1001046c: 4770 bx lr +1001046e: bf00 nop + +10010470 : +10010470: b570 push {r4, r5, r6, lr} +10010472: 460d mov r5, r1 +10010474: b082 sub sp, #8 +10010476: 4604 mov r4, r0 +10010478: 2900 cmp r1, #0 +1001047a: d03b beq.n 100104f4 +1001047c: 2600 movs r6, #0 +1001047e: 600e str r6, [r1, #0] +10010480: 2800 cmp r0, #0 +10010482: d037 beq.n 100104f4 +10010484: 3014 adds r0, #20 +10010486: f009 fdc9 bl 1001a01c +1001048a: 2800 cmp r0, #0 +1001048c: d030 beq.n 100104f0 +1001048e: 6823 ldr r3, [r4, #0] +10010490: 2b10 cmp r3, #16 +10010492: d006 beq.n 100104a2 +10010494: 4620 mov r0, r4 +10010496: 4629 mov r1, r5 +10010498: f7ff fe6a bl 10010170 +1001049c: b240 sxtb r0, r0 +1001049e: b002 add sp, #8 +100104a0: bd70 pop {r4, r5, r6, pc} +100104a2: 2007 movs r0, #7 +100104a4: 9601 str r6, [sp, #4] +100104a6: f005 fb5b bl 10015b60 +100104aa: 4606 mov r6, r0 +100104ac: b1a0 cbz r0, 100104d8 +100104ae: 4620 mov r0, r4 +100104b0: a901 add r1, sp, #4 +100104b2: f7ff fe5d bl 10010170 +100104b6: 4604 mov r4, r0 +100104b8: b940 cbnz r0, 100104cc +100104ba: 9b01 ldr r3, [sp, #4] +100104bc: 81b0 strh r0, [r6, #12] +100104be: 60b0 str r0, [r6, #8] +100104c0: b240 sxtb r0, r0 +100104c2: 6033 str r3, [r6, #0] +100104c4: 6073 str r3, [r6, #4] +100104c6: 602e str r6, [r5, #0] +100104c8: b002 add sp, #8 +100104ca: bd70 pop {r4, r5, r6, pc} +100104cc: 2007 movs r0, #7 +100104ce: 4631 mov r1, r6 +100104d0: f005 fb5c bl 10015b8c +100104d4: 4620 mov r0, r4 +100104d6: e7e1 b.n 1001049c +100104d8: f009 fe48 bl 1001a16c +100104dc: f994 300c ldrsb.w r3, [r4, #12] +100104e0: 3309 adds r3, #9 +100104e2: bfa4 itt ge +100104e4: 23ff movge r3, #255 ; 0xff +100104e6: 7323 strbge r3, [r4, #12] +100104e8: f009 fe46 bl 1001a178 +100104ec: 20ff movs r0, #255 ; 0xff +100104ee: e7d5 b.n 1001049c +100104f0: 20f3 movs r0, #243 ; 0xf3 +100104f2: e7d3 b.n 1001049c +100104f4: 20f2 movs r0, #242 ; 0xf2 +100104f6: e7d1 b.n 1001049c + +100104f8 : +100104f8: b500 push {lr} +100104fa: 4603 mov r3, r0 +100104fc: b089 sub sp, #36 ; 0x24 +100104fe: b110 cbz r0, 10010506 +10010500: 6802 ldr r2, [r0, #0] +10010502: 2a10 cmp r2, #16 +10010504: d002 beq.n 1001050c +10010506: b009 add sp, #36 ; 0x24 +10010508: f85d fb04 ldr.w pc, [sp], #4 +1001050c: f890 2028 ldrb.w r2, [r0, #40] ; 0x28 +10010510: 0712 lsls r2, r2, #28 +10010512: d5f8 bpl.n 10010506 +10010514: 4a04 ldr r2, [pc, #16] ; (10010528 ) +10010516: a801 add r0, sp, #4 +10010518: 9302 str r3, [sp, #8] +1001051a: 9104 str r1, [sp, #16] +1001051c: 9201 str r2, [sp, #4] +1001051e: f002 f8a3 bl 10012668 +10010522: b009 add sp, #36 ; 0x24 +10010524: f85d fb04 ldr.w pc, [sp], #4 +10010528: 100111dd .word 0x100111dd + +1001052c : +1001052c: b530 push {r4, r5, lr} +1001052e: 4604 mov r4, r0 +10010530: b089 sub sp, #36 ; 0x24 +10010532: b1a0 cbz r0, 1001055e +10010534: 4b0b ldr r3, [pc, #44] ; (10010564 ) +10010536: a801 add r0, sp, #4 +10010538: 9104 str r1, [sp, #16] +1001053a: 9301 str r3, [sp, #4] +1001053c: 9402 str r4, [sp, #8] +1001053e: f002 f893 bl 10012668 +10010542: 4605 mov r5, r0 +10010544: f009 fe12 bl 1001a16c +10010548: f994 300c ldrsb.w r3, [r4, #12] +1001054c: 3309 adds r3, #9 +1001054e: bfa8 it ge +10010550: 7325 strbge r5, [r4, #12] +10010552: f009 fe11 bl 1001a178 +10010556: 4628 mov r0, r5 +10010558: b240 sxtb r0, r0 +1001055a: b009 add sp, #36 ; 0x24 +1001055c: bd30 pop {r4, r5, pc} +1001055e: 20f2 movs r0, #242 ; 0xf2 +10010560: e7fa b.n 10010558 +10010562: bf00 nop +10010564: 1001114d .word 0x1001114d + +10010568 : +10010568: b5f0 push {r4, r5, r6, r7, lr} +1001056a: 4604 mov r4, r0 +1001056c: b089 sub sp, #36 ; 0x24 +1001056e: 4615 mov r5, r2 +10010570: 2800 cmp r0, #0 +10010572: d03f beq.n 100105f4 +10010574: 6802 ldr r2, [r0, #0] +10010576: 2a10 cmp r2, #16 +10010578: d13a bne.n 100105f0 +1001057a: b33d cbz r5, 100105cc +1001057c: f890 2028 ldrb.w r2, [r0, #40] ; 0x28 +10010580: 0792 lsls r2, r2, #30 +10010582: d526 bpl.n 100105d2 +10010584: 9a0e ldr r2, [sp, #56] ; 0x38 +10010586: 2a00 cmp r2, #0 +10010588: d032 beq.n 100105f0 +1001058a: 2701 movs r7, #1 +1001058c: 481a ldr r0, [pc, #104] ; (100105f8 ) +1001058e: 6a22 ldr r2, [r4, #32] +10010590: 9402 str r4, [sp, #8] +10010592: 9104 str r1, [sp, #16] +10010594: f88d 3018 strb.w r3, [sp, #24] +10010598: 9505 str r5, [sp, #20] +1001059a: 9001 str r0, [sp, #4] +1001059c: bb22 cbnz r2, 100105e8 +1001059e: 9207 str r2, [sp, #28] +100105a0: a801 add r0, sp, #4 +100105a2: f002 f861 bl 10012668 +100105a6: 4606 mov r6, r0 +100105a8: b930 cbnz r0, 100105b8 +100105aa: 9a0e ldr r2, [sp, #56] ; 0x38 +100105ac: b122 cbz r2, 100105b8 +100105ae: b9bf cbnz r7, 100105e0 +100105b0: 6a23 ldr r3, [r4, #32] +100105b2: b9ab cbnz r3, 100105e0 +100105b4: 9b0e ldr r3, [sp, #56] ; 0x38 +100105b6: 601d str r5, [r3, #0] +100105b8: f009 fdd8 bl 1001a16c +100105bc: f994 300c ldrsb.w r3, [r4, #12] +100105c0: 4635 mov r5, r6 +100105c2: 3309 adds r3, #9 +100105c4: bfa8 it ge +100105c6: 7326 strbge r6, [r4, #12] +100105c8: f009 fdd6 bl 1001a178 +100105cc: b268 sxtb r0, r5 +100105ce: b009 add sp, #36 ; 0x24 +100105d0: bdf0 pop {r4, r5, r6, r7, pc} +100105d2: f003 0204 and.w r2, r3, #4 +100105d6: f002 07ff and.w r7, r2, #255 ; 0xff +100105da: 2a00 cmp r2, #0 +100105dc: d1d2 bne.n 10010584 +100105de: e7d5 b.n 1001058c +100105e0: 9b05 ldr r3, [sp, #20] +100105e2: 9a0e ldr r2, [sp, #56] ; 0x38 +100105e4: 6013 str r3, [r2, #0] +100105e6: e7e7 b.n 100105b8 +100105e8: f009 fdc8 bl 1001a17c +100105ec: 9007 str r0, [sp, #28] +100105ee: e7d7 b.n 100105a0 +100105f0: 25fa movs r5, #250 ; 0xfa +100105f2: e7eb b.n 100105cc +100105f4: 25f2 movs r5, #242 ; 0xf2 +100105f6: e7e9 b.n 100105cc +100105f8: 10011229 .word 0x10011229 + +100105fc : +100105fc: b570 push {r4, r5, r6, lr} +100105fe: 4605 mov r5, r0 +10010600: b086 sub sp, #24 +10010602: 460e mov r6, r1 +10010604: b300 cbz r0, 10010648 +10010606: b1f9 cbz r1, 10010648 +10010608: a801 add r0, sp, #4 +1001060a: 2100 movs r1, #0 +1001060c: f009 fd10 bl 1001a030 +10010610: 4604 mov r4, r0 +10010612: f88d 0003 strb.w r0, [sp, #3] +10010616: b9a0 cbnz r0, 10010642 +10010618: f10d 0303 add.w r3, sp, #3 +1001061c: 2201 movs r2, #1 +1001061e: a902 add r1, sp, #8 +10010620: 9502 str r5, [sp, #8] +10010622: 480a ldr r0, [pc, #40] ; (1001064c ) +10010624: ad01 add r5, sp, #4 +10010626: 9305 str r3, [sp, #20] +10010628: 9603 str r6, [sp, #12] +1001062a: 9504 str r5, [sp, #16] +1001062c: f001 ffd2 bl 100125d4 +10010630: 4621 mov r1, r4 +10010632: a801 add r0, sp, #4 +10010634: f009 fd1c bl 1001a070 +10010638: a801 add r0, sp, #4 +1001063a: f009 fd3f bl 1001a0bc +1001063e: f89d 0003 ldrb.w r0, [sp, #3] +10010642: b240 sxtb r0, r0 +10010644: b006 add sp, #24 +10010646: bd70 pop {r4, r5, r6, pc} +10010648: 20f2 movs r0, #242 ; 0xf2 +1001064a: e7fa b.n 10010642 +1001064c: 10011309 .word 0x10011309 + +10010650 : +10010650: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10010654: 4604 mov r4, r0 +10010656: 4615 mov r5, r2 +10010658: 4698 mov r8, r3 +1001065a: f8bd 9020 ldrh.w r9, [sp, #32] +1001065e: b128 cbz r0, 1001066c +10010660: f100 0714 add.w r7, r0, #20 +10010664: 4638 mov r0, r7 +10010666: f009 fcd9 bl 1001a01c +1001066a: b920 cbnz r0, 10010676 +1001066c: 4628 mov r0, r5 +1001066e: e8bd 43f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10010672: f005 bbf9 b.w 10015e68 +10010676: 2007 movs r0, #7 +10010678: f005 fa72 bl 10015b60 +1001067c: 4606 mov r6, r0 +1001067e: 2800 cmp r0, #0 +10010680: d0f4 beq.n 1001066c +10010682: 6005 str r5, [r0, #0] +10010684: 6045 str r5, [r0, #4] +10010686: f1b8 0f00 cmp.w r8, #0 +1001068a: d017 beq.n 100106bc +1001068c: f8d8 3000 ldr.w r3, [r8] +10010690: 4631 mov r1, r6 +10010692: 60b3 str r3, [r6, #8] +10010694: f8a6 900c strh.w r9, [r6, #12] +10010698: 4638 mov r0, r7 +1001069a: 892d ldrh r5, [r5, #8] +1001069c: f009 fc72 bl 10019f84 +100106a0: 4601 mov r1, r0 +100106a2: b930 cbnz r0, 100106b2 +100106a4: 6b63 ldr r3, [r4, #52] ; 0x34 +100106a6: b113 cbz r3, 100106ae +100106a8: 4620 mov r0, r4 +100106aa: 462a mov r2, r5 +100106ac: 4798 blx r3 +100106ae: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +100106b2: 4630 mov r0, r6 +100106b4: e8bd 43f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +100106b8: f000 be3c b.w 10011334 +100106bc: 4643 mov r3, r8 +100106be: e7e7 b.n 10010690 + +100106c0 : +100106c0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100106c4: 4604 mov r4, r0 +100106c6: 460f mov r7, r1 +100106c8: 4616 mov r6, r2 +100106ca: b128 cbz r0, 100106d8 +100106cc: f100 0514 add.w r5, r0, #20 +100106d0: 4628 mov r0, r5 +100106d2: f009 fca3 bl 1001a01c +100106d6: b910 cbnz r0, 100106de +100106d8: 2000 movs r0, #0 +100106da: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100106de: 2003 movs r0, #3 +100106e0: 8931 ldrh r1, [r6, #8] +100106e2: 2200 movs r2, #0 +100106e4: f005 fbf6 bl 10015ed4 +100106e8: 4680 mov r8, r0 +100106ea: 2800 cmp r0, #0 +100106ec: d0f4 beq.n 100106d8 +100106ee: 4631 mov r1, r6 +100106f0: f005 fcea bl 100160c8 +100106f4: b9f0 cbnz r0, 10010734 +100106f6: 2007 movs r0, #7 +100106f8: f005 fa32 bl 10015b60 +100106fc: 4606 mov r6, r0 +100106fe: b1c8 cbz r0, 10010734 +10010700: 4b10 ldr r3, [pc, #64] ; (10010744 ) +10010702: f8c6 8000 str.w r8, [r6] +10010706: 681b ldr r3, [r3, #0] +10010708: f8c6 8004 str.w r8, [r6, #4] +1001070c: 60b3 str r3, [r6, #8] +1001070e: 7c3b ldrb r3, [r7, #16] +10010710: 4628 mov r0, r5 +10010712: 4631 mov r1, r6 +10010714: 81b3 strh r3, [r6, #12] +10010716: f8b8 5008 ldrh.w r5, [r8, #8] +1001071a: f009 fc33 bl 10019f84 +1001071e: 4601 mov r1, r0 +10010720: b960 cbnz r0, 1001073c +10010722: 6b63 ldr r3, [r4, #52] ; 0x34 +10010724: 2b00 cmp r3, #0 +10010726: d0d7 beq.n 100106d8 +10010728: 4620 mov r0, r4 +1001072a: 462a mov r2, r5 +1001072c: 4798 blx r3 +1001072e: 2000 movs r0, #0 +10010730: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10010734: 4640 mov r0, r8 +10010736: f005 fb97 bl 10015e68 +1001073a: e7cd b.n 100106d8 +1001073c: 4630 mov r0, r6 +1001073e: f000 fdf9 bl 10011334 +10010742: e7c9 b.n 100106d8 +10010744: 10050cc8 .word 0x10050cc8 + +10010748 : +10010748: b510 push {r4, lr} +1001074a: 6884 ldr r4, [r0, #8] +1001074c: 4601 mov r1, r0 +1001074e: 4620 mov r0, r4 +10010750: f005 ff7c bl 1001664c +10010754: 4620 mov r0, r4 +10010756: 4909 ldr r1, [pc, #36] ; (1001077c ) +10010758: f005 ff7a bl 10016650 +1001075c: 4620 mov r0, r4 +1001075e: 4908 ldr r1, [pc, #32] ; (10010780 ) +10010760: f005 ff7a bl 10016658 +10010764: 4620 mov r0, r4 +10010766: 4907 ldr r1, [pc, #28] ; (10010784 ) +10010768: 2204 movs r2, #4 +1001076a: f005 ff7f bl 1001666c +1001076e: 4620 mov r0, r4 +10010770: 4905 ldr r1, [pc, #20] ; (10010788 ) +10010772: e8bd 4010 ldmia.w sp!, {r4, lr} +10010776: f005 bf73 b.w 10016660 +1001077a: bf00 nop +1001077c: 10010bb1 .word 0x10010bb1 +10010780: 10010b61 .word 0x10010b61 +10010784: 10010ad5 .word 0x10010ad5 +10010788: 1001078d .word 0x1001078d + +1001078c : +1001078c: b5f8 push {r3, r4, r5, r6, r7, lr} +1001078e: 2500 movs r5, #0 +10010790: 4604 mov r4, r0 +10010792: 460f mov r7, r1 +10010794: 6085 str r5, [r0, #8] +10010796: f009 fce9 bl 1001a16c +1001079a: 7327 strb r7, [r4, #12] +1001079c: f009 fcec bl 1001a178 +100107a0: 6b63 ldr r3, [r4, #52] ; 0x34 +100107a2: 6866 ldr r6, [r4, #4] +100107a4: 6065 str r5, [r4, #4] +100107a6: b17b cbz r3, 100107c8 +100107a8: 4620 mov r0, r4 +100107aa: 2104 movs r1, #4 +100107ac: 462a mov r2, r5 +100107ae: 4798 blx r3 +100107b0: 6b63 ldr r3, [r4, #52] ; 0x34 +100107b2: b14b cbz r3, 100107c8 +100107b4: 4620 mov r0, r4 +100107b6: 4629 mov r1, r5 +100107b8: 462a mov r2, r5 +100107ba: 4798 blx r3 +100107bc: 6b63 ldr r3, [r4, #52] ; 0x34 +100107be: b11b cbz r3, 100107c8 +100107c0: 462a mov r2, r5 +100107c2: 4620 mov r0, r4 +100107c4: 2102 movs r1, #2 +100107c6: 4798 blx r3 +100107c8: f104 0514 add.w r5, r4, #20 +100107cc: 4628 mov r0, r5 +100107ce: f009 fc25 bl 1001a01c +100107d2: bb28 cbnz r0, 10010820 +100107d4: f104 0518 add.w r5, r4, #24 +100107d8: 4628 mov r0, r5 +100107da: f009 fc1f bl 1001a01c +100107de: b9d0 cbnz r0, 10010816 +100107e0: 2e01 cmp r6, #1 +100107e2: d003 beq.n 100107ec +100107e4: 3e03 subs r6, #3 +100107e6: 2e01 cmp r6, #1 +100107e8: d900 bls.n 100107ec +100107ea: bdf8 pop {r3, r4, r5, r6, r7, pc} +100107ec: f894 3028 ldrb.w r3, [r4, #40] ; 0x28 +100107f0: f023 0204 bic.w r2, r3, #4 +100107f4: f003 0304 and.w r3, r3, #4 +100107f8: f884 2028 strb.w r2, [r4, #40] ; 0x28 +100107fc: f003 02ff and.w r2, r3, #255 ; 0xff +10010800: 2b00 cmp r3, #0 +10010802: d1f2 bne.n 100107ea +10010804: 6b23 ldr r3, [r4, #48] ; 0x30 +10010806: f104 0010 add.w r0, r4, #16 +1001080a: 711f strb r7, [r3, #4] +1001080c: 6322 str r2, [r4, #48] ; 0x30 +1001080e: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10010812: f009 bc4d b.w 1001a0b0 +10010816: 4628 mov r0, r5 +10010818: 2100 movs r1, #0 +1001081a: f009 fbb3 bl 10019f84 +1001081e: e7df b.n 100107e0 +10010820: 4628 mov r0, r5 +10010822: 2100 movs r1, #0 +10010824: f009 fbae bl 10019f84 +10010828: e7d4 b.n 100107d4 +1001082a: bf00 nop + +1001082c : +1001082c: b538 push {r3, r4, r5, lr} +1001082e: 4604 mov r4, r0 +10010830: 2800 cmp r0, #0 +10010832: d034 beq.n 1001089e +10010834: 6b03 ldr r3, [r0, #48] ; 0x30 +10010836: b103 cbz r3, 1001083a +10010838: 711a strb r2, [r3, #4] +1001083a: 6823 ldr r3, [r4, #0] +1001083c: 2b10 cmp r3, #16 +1001083e: d028 beq.n 10010892 +10010840: f894 2028 ldrb.w r2, [r4, #40] ; 0x28 +10010844: 2300 movs r3, #0 +10010846: f082 0504 eor.w r5, r2, #4 +1001084a: f3c5 0580 ubfx r5, r5, #2, #1 +1001084e: f022 0204 bic.w r2, r2, #4 +10010852: f884 2028 strb.w r2, [r4, #40] ; 0x28 +10010856: 6323 str r3, [r4, #48] ; 0x30 +10010858: 6063 str r3, [r4, #4] +1001085a: b185 cbz r5, 1001087e +1001085c: 6b63 ldr r3, [r4, #52] ; 0x34 +1001085e: b11b cbz r3, 10010868 +10010860: 4620 mov r0, r4 +10010862: 2102 movs r1, #2 +10010864: 2200 movs r2, #0 +10010866: 4798 blx r3 +10010868: b915 cbnz r5, 10010870 +1001086a: 4628 mov r0, r5 +1001086c: b240 sxtb r0, r0 +1001086e: bd38 pop {r3, r4, r5, pc} +10010870: f104 0010 add.w r0, r4, #16 +10010874: f009 fc1c bl 1001a0b0 +10010878: 2000 movs r0, #0 +1001087a: b240 sxtb r0, r0 +1001087c: bd38 pop {r3, r4, r5, pc} +1001087e: f009 fc75 bl 1001a16c +10010882: f994 300c ldrsb.w r3, [r4, #12] +10010886: 3309 adds r3, #9 +10010888: bfa8 it ge +1001088a: 7325 strbge r5, [r4, #12] +1001088c: f009 fc74 bl 1001a178 +10010890: e7e4 b.n 1001085c +10010892: 2a00 cmp r2, #0 +10010894: d1d4 bne.n 10010840 +10010896: 4620 mov r0, r4 +10010898: f7ff ff56 bl 10010748 +1001089c: e7d0 b.n 10010840 +1001089e: 20fa movs r0, #250 ; 0xfa +100108a0: e7e4 b.n 1001086c +100108a2: bf00 nop + +100108a4 : +100108a4: b5f8 push {r3, r4, r5, r6, r7, lr} +100108a6: f890 3028 ldrb.w r3, [r0, #40] ; 0x28 +100108aa: 6b02 ldr r2, [r0, #48] ; 0x30 +100108ac: 079b lsls r3, r3, #30 +100108ae: bf58 it pl +100108b0: 7c16 ldrbpl r6, [r2, #16] +100108b2: 6a03 ldr r3, [r0, #32] +100108b4: 4604 mov r4, r0 +100108b6: bf46 itte mi +100108b8: 2701 movmi r7, #1 +100108ba: 7c16 ldrbmi r6, [r2, #16] +100108bc: f3c6 0780 ubfxpl r7, r6, #2, #1 +100108c0: 2b00 cmp r3, #0 +100108c2: d14d bne.n 10010960 +100108c4: 6ae3 ldr r3, [r4, #44] ; 0x2c +100108c6: f8d2 e00c ldr.w lr, [r2, #12] +100108ca: 68a0 ldr r0, [r4, #8] +100108cc: 6891 ldr r1, [r2, #8] +100108ce: ebc3 020e rsb r2, r3, lr +100108d2: f5b2 3f80 cmp.w r2, #65536 ; 0x10000 +100108d6: f8b0 506a ldrh.w r5, [r0, #106] ; 0x6a +100108da: bf2a itet cs +100108dc: f64f 72ff movwcs r2, #65535 ; 0xffff +100108e0: b292 uxthcc r2, r2 +100108e2: f046 0602 orrcs.w r6, r6, #2 +100108e6: 42aa cmp r2, r5 +100108e8: 4419 add r1, r3 +100108ea: d946 bls.n 1001097a +100108ec: b9c7 cbnz r7, 10010920 +100108ee: f046 0602 orr.w r6, r6, #2 +100108f2: 4633 mov r3, r6 +100108f4: 462a mov r2, r5 +100108f6: f007 fe69 bl 100185cc +100108fa: 1c43 adds r3, r0, #1 +100108fc: b2db uxtb r3, r3 +100108fe: 2b01 cmp r3, #1 +10010900: 4606 mov r6, r0 +10010902: d943 bls.n 1001098c +10010904: 6b23 ldr r3, [r4, #48] ; 0x30 +10010906: 2200 movs r2, #0 +10010908: 60da str r2, [r3, #12] +1001090a: 6b22 ldr r2, [r4, #48] ; 0x30 +1001090c: 2300 movs r3, #0 +1001090e: 7116 strb r6, [r2, #4] +10010910: f104 0010 add.w r0, r4, #16 +10010914: 6323 str r3, [r4, #48] ; 0x30 +10010916: 6063 str r3, [r4, #4] +10010918: f009 fbca bl 1001a0b0 +1001091c: 2000 movs r0, #0 +1001091e: bdf8 pop {r3, r4, r5, r6, r7, pc} +10010920: 2d00 cmp r5, #0 +10010922: d1e6 bne.n 100108f2 +10010924: 26f9 movs r6, #249 ; 0xf9 +10010926: 45ae cmp lr, r5 +10010928: d931 bls.n 1001098e +1001092a: 6b63 ldr r3, [r4, #52] ; 0x34 +1001092c: b11b cbz r3, 10010936 +1001092e: 4620 mov r0, r4 +10010930: 2103 movs r1, #3 +10010932: 462a mov r2, r5 +10010934: 4798 blx r3 +10010936: f894 3028 ldrb.w r3, [r4, #40] ; 0x28 +1001093a: f043 0310 orr.w r3, r3, #16 +1001093e: f884 3028 strb.w r3, [r4, #40] ; 0x28 +10010942: 2e00 cmp r6, #0 +10010944: d13c bne.n 100109c0 +10010946: 6ae2 ldr r2, [r4, #44] ; 0x2c +10010948: 6b23 ldr r3, [r4, #48] ; 0x30 +1001094a: 4415 add r5, r2 +1001094c: 62e5 str r5, [r4, #44] ; 0x2c +1001094e: 68da ldr r2, [r3, #12] +10010950: 4295 cmp r5, r2 +10010952: d014 beq.n 1001097e +10010954: b99f cbnz r7, 1001097e +10010956: 68a0 ldr r0, [r4, #8] +10010958: f008 f8bc bl 10018ad4 +1001095c: 2000 movs r0, #0 +1001095e: bdf8 pop {r3, r4, r5, r6, r7, pc} +10010960: f009 fc0c bl 1001a17c +10010964: 6b22 ldr r2, [r4, #48] ; 0x30 +10010966: 6a23 ldr r3, [r4, #32] +10010968: 6951 ldr r1, [r2, #20] +1001096a: 1a40 subs r0, r0, r1 +1001096c: 4298 cmp r0, r3 +1001096e: dba9 blt.n 100108c4 +10010970: 6ae3 ldr r3, [r4, #44] ; 0x2c +10010972: 60d3 str r3, [r2, #12] +10010974: b9f3 cbnz r3, 100109b4 +10010976: 26f9 movs r6, #249 ; 0xf9 +10010978: e7c7 b.n 1001090a +1001097a: 4615 mov r5, r2 +1001097c: e7b9 b.n 100108f2 +1001097e: 60dd str r5, [r3, #12] +10010980: 2300 movs r3, #0 +10010982: 68a0 ldr r0, [r4, #8] +10010984: 62e3 str r3, [r4, #44] ; 0x2c +10010986: f008 f8a5 bl 10018ad4 +1001098a: e7be b.n 1001090a +1001098c: b9a7 cbnz r7, 100109b8 +1001098e: 68a3 ldr r3, [r4, #8] +10010990: f640 6242 movw r2, #3650 ; 0xe42 +10010994: f8b3 106a ldrh.w r1, [r3, #106] ; 0x6a +10010998: 4291 cmp r1, r2 +1001099a: d903 bls.n 100109a4 +1001099c: f8b3 306c ldrh.w r3, [r3, #108] ; 0x6c +100109a0: 2b09 cmp r3, #9 +100109a2: d9ce bls.n 10010942 +100109a4: 6b63 ldr r3, [r4, #52] ; 0x34 +100109a6: 2b00 cmp r3, #0 +100109a8: d0cb beq.n 10010942 +100109aa: 4620 mov r0, r4 +100109ac: 2103 movs r1, #3 +100109ae: 462a mov r2, r5 +100109b0: 4798 blx r3 +100109b2: e7c6 b.n 10010942 +100109b4: 2600 movs r6, #0 +100109b6: e7a8 b.n 1001090a +100109b8: 6b23 ldr r3, [r4, #48] ; 0x30 +100109ba: f8d3 e00c ldr.w lr, [r3, #12] +100109be: e7b2 b.n 10010926 +100109c0: b273 sxtb r3, r6 +100109c2: 3301 adds r3, #1 +100109c4: d19e bne.n 10010904 +100109c6: 2f00 cmp r7, #0 +100109c8: d19c bne.n 10010904 +100109ca: e7c4 b.n 10010956 + +100109cc : +100109cc: b5f8 push {r3, r4, r5, r6, r7, lr} +100109ce: 6b03 ldr r3, [r0, #48] ; 0x30 +100109d0: 4604 mov r4, r0 +100109d2: 7a19 ldrb r1, [r3, #8] +100109d4: 1ecb subs r3, r1, #3 +100109d6: 425d negs r5, r3 +100109d8: f001 0602 and.w r6, r1, #2 +100109dc: 415d adcs r5, r3 +100109de: b2f6 uxtb r6, r6 +100109e0: f001 0701 and.w r7, r1, #1 +100109e4: 2d00 cmp r5, #0 +100109e6: d15f bne.n 10010aa8 +100109e8: 68a0 ldr r0, [r4, #8] +100109ea: 6983 ldr r3, [r0, #24] +100109ec: 2b01 cmp r3, #1 +100109ee: d063 beq.n 10010ab8 +100109f0: 2f00 cmp r7, #0 +100109f2: d14e bne.n 10010a92 +100109f4: bb3e cbnz r6, 10010a46 +100109f6: 2d00 cmp r5, #0 +100109f8: d12b bne.n 10010a52 +100109fa: 4639 mov r1, r7 +100109fc: 4632 mov r2, r6 +100109fe: f006 f9ab bl 10016d58 +10010a02: 2800 cmp r0, #0 +10010a04: d132 bne.n 10010a6c +10010a06: 6b23 ldr r3, [r4, #48] ; 0x30 +10010a08: 7118 strb r0, [r3, #4] +10010a0a: 6320 str r0, [r4, #48] ; 0x30 +10010a0c: 6060 str r0, [r4, #4] +10010a0e: b135 cbz r5, 10010a1e +10010a10: 6b63 ldr r3, [r4, #52] ; 0x34 +10010a12: 60a0 str r0, [r4, #8] +10010a14: b11b cbz r3, 10010a1e +10010a16: 4602 mov r2, r0 +10010a18: 2104 movs r1, #4 +10010a1a: 4620 mov r0, r4 +10010a1c: 4798 blx r3 +10010a1e: b12f cbz r7, 10010a2c +10010a20: 6b63 ldr r3, [r4, #52] ; 0x34 +10010a22: b11b cbz r3, 10010a2c +10010a24: 2100 movs r1, #0 +10010a26: 460a mov r2, r1 +10010a28: 4620 mov r0, r4 +10010a2a: 4798 blx r3 +10010a2c: b12e cbz r6, 10010a3a +10010a2e: 6b63 ldr r3, [r4, #52] ; 0x34 +10010a30: b11b cbz r3, 10010a3a +10010a32: 4620 mov r0, r4 +10010a34: 2102 movs r1, #2 +10010a36: 2200 movs r2, #0 +10010a38: 4798 blx r3 +10010a3a: f104 0010 add.w r0, r4, #16 +10010a3e: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10010a42: f009 bb35 b.w 1001a0b0 +10010a46: 2100 movs r1, #0 +10010a48: f005 fe06 bl 10016658 +10010a4c: 68a0 ldr r0, [r4, #8] +10010a4e: 2d00 cmp r5, #0 +10010a50: d0d3 beq.n 100109fa +10010a52: 2100 movs r1, #0 +10010a54: 2204 movs r2, #4 +10010a56: f005 fe09 bl 1001666c +10010a5a: 68a0 ldr r0, [r4, #8] +10010a5c: 2100 movs r1, #0 +10010a5e: f005 fdff bl 10016660 +10010a62: 68a0 ldr r0, [r4, #8] +10010a64: f006 f8d8 bl 10016c18 +10010a68: 2800 cmp r0, #0 +10010a6a: d0cc beq.n 10010a06 +10010a6c: 68a0 ldr r0, [r4, #8] +10010a6e: 4916 ldr r1, [pc, #88] ; (10010ac8 ) +10010a70: f005 fdf2 bl 10016658 +10010a74: 68a0 ldr r0, [r4, #8] +10010a76: 4915 ldr r1, [pc, #84] ; (10010acc ) +10010a78: 2204 movs r2, #4 +10010a7a: f005 fdf7 bl 1001666c +10010a7e: 68a0 ldr r0, [r4, #8] +10010a80: 4913 ldr r1, [pc, #76] ; (10010ad0 ) +10010a82: f005 fded bl 10016660 +10010a86: 68a0 ldr r0, [r4, #8] +10010a88: 4621 mov r1, r4 +10010a8a: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10010a8e: f005 bddd b.w 1001664c +10010a92: 2100 movs r1, #0 +10010a94: f005 fddc bl 10016650 +10010a98: 68a0 ldr r0, [r4, #8] +10010a9a: 2100 movs r1, #0 +10010a9c: f005 fde4 bl 10016668 +10010aa0: 68a0 ldr r0, [r4, #8] +10010aa2: 2e00 cmp r6, #0 +10010aa4: d0a7 beq.n 100109f6 +10010aa6: e7ce b.n 10010a46 +10010aa8: 6880 ldr r0, [r0, #8] +10010aaa: 2100 movs r1, #0 +10010aac: f005 fdce bl 1001664c +10010ab0: 68a0 ldr r0, [r4, #8] +10010ab2: 6983 ldr r3, [r0, #24] +10010ab4: 2b01 cmp r3, #1 +10010ab6: d19b bne.n 100109f0 +10010ab8: 2100 movs r1, #0 +10010aba: f005 fdd5 bl 10016668 +10010abe: 2d00 cmp r5, #0 +10010ac0: d1cf bne.n 10010a62 +10010ac2: 68a0 ldr r0, [r4, #8] +10010ac4: e799 b.n 100109fa +10010ac6: bf00 nop +10010ac8: 10010b61 .word 0x10010b61 +10010acc: 10010ad5 .word 0x10010ad5 +10010ad0: 1001078d .word 0x1001078d + +10010ad4 : +10010ad4: b538 push {r3, r4, r5, lr} +10010ad6: 6843 ldr r3, [r0, #4] +10010ad8: 4604 mov r4, r0 +10010ada: 2b01 cmp r3, #1 +10010adc: d01d beq.n 10010b1a +10010ade: 2b04 cmp r3, #4 +10010ae0: d01e beq.n 10010b20 +10010ae2: f894 3028 ldrb.w r3, [r4, #40] ; 0x28 +10010ae6: 06da lsls r2, r3, #27 +10010ae8: d515 bpl.n 10010b16 +10010aea: 68a2 ldr r2, [r4, #8] +10010aec: b19a cbz r2, 10010b16 +10010aee: f8b2 006a ldrh.w r0, [r2, #106] ; 0x6a +10010af2: f640 6142 movw r1, #3650 ; 0xe42 +10010af6: 4288 cmp r0, r1 +10010af8: d90d bls.n 10010b16 +10010afa: f8b2 206c ldrh.w r2, [r2, #108] ; 0x6c +10010afe: 2a09 cmp r2, #9 +10010b00: d809 bhi.n 10010b16 +10010b02: 6b65 ldr r5, [r4, #52] ; 0x34 +10010b04: f023 0310 bic.w r3, r3, #16 +10010b08: f884 3028 strb.w r3, [r4, #40] ; 0x28 +10010b0c: b11d cbz r5, 10010b16 +10010b0e: 4620 mov r0, r4 +10010b10: 2102 movs r1, #2 +10010b12: 2200 movs r2, #0 +10010b14: 47a8 blx r5 +10010b16: 2000 movs r0, #0 +10010b18: bd38 pop {r3, r4, r5, pc} +10010b1a: f7ff fec3 bl 100108a4 +10010b1e: e7e0 b.n 10010ae2 +10010b20: f7ff ff54 bl 100109cc +10010b24: e7dd b.n 10010ae2 +10010b26: bf00 nop + +10010b28 : +10010b28: b538 push {r3, r4, r5, lr} +10010b2a: 4603 mov r3, r0 +10010b2c: 4614 mov r4, r2 +10010b2e: 460d mov r5, r1 +10010b30: 6810 ldr r0, [r2, #0] +10010b32: 4619 mov r1, r3 +10010b34: f031 fb20 bl 10042178 +10010b38: 68e3 ldr r3, [r4, #12] +10010b3a: b14d cbz r5, 10010b50 +10010b3c: 2200 movs r2, #0 +10010b3e: 701a strb r2, [r3, #0] +10010b40: 682a ldr r2, [r5, #0] +10010b42: 6863 ldr r3, [r4, #4] +10010b44: 68a0 ldr r0, [r4, #8] +10010b46: 601a str r2, [r3, #0] +10010b48: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10010b4c: f009 bab0 b.w 1001a0b0 +10010b50: 22fa movs r2, #250 ; 0xfa +10010b52: 701a strb r2, [r3, #0] +10010b54: 68a0 ldr r0, [r4, #8] +10010b56: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10010b5a: f009 baa9 b.w 1001a0b0 +10010b5e: bf00 nop + +10010b60 : +10010b60: b538 push {r3, r4, r5, lr} +10010b62: 6843 ldr r3, [r0, #4] +10010b64: 4604 mov r4, r0 +10010b66: 2b01 cmp r3, #1 +10010b68: 4615 mov r5, r2 +10010b6a: d01b beq.n 10010ba4 +10010b6c: 2b04 cmp r3, #4 +10010b6e: d01c beq.n 10010baa +10010b70: 68a3 ldr r3, [r4, #8] +10010b72: b1ab cbz r3, 10010ba0 +10010b74: f8b3 006a ldrh.w r0, [r3, #106] ; 0x6a +10010b78: f640 6142 movw r1, #3650 ; 0xe42 +10010b7c: 4288 cmp r0, r1 +10010b7e: d90f bls.n 10010ba0 +10010b80: f8b3 306c ldrh.w r3, [r3, #108] ; 0x6c +10010b84: 2b09 cmp r3, #9 +10010b86: d80b bhi.n 10010ba0 +10010b88: f894 2028 ldrb.w r2, [r4, #40] ; 0x28 +10010b8c: 6b63 ldr r3, [r4, #52] ; 0x34 +10010b8e: f022 0210 bic.w r2, r2, #16 +10010b92: f884 2028 strb.w r2, [r4, #40] ; 0x28 +10010b96: b11b cbz r3, 10010ba0 +10010b98: 4620 mov r0, r4 +10010b9a: 462a mov r2, r5 +10010b9c: 2102 movs r1, #2 +10010b9e: 4798 blx r3 +10010ba0: 2000 movs r0, #0 +10010ba2: bd38 pop {r3, r4, r5, pc} +10010ba4: f7ff fe7e bl 100108a4 +10010ba8: e7e2 b.n 10010b70 +10010baa: f7ff ff0f bl 100109cc +10010bae: e7df b.n 10010b70 + +10010bb0 : +10010bb0: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10010bb4: 4604 mov r4, r0 +10010bb6: 4688 mov r8, r1 +10010bb8: 4615 mov r5, r2 +10010bba: 4699 mov r9, r3 +10010bbc: 2800 cmp r0, #0 +10010bbe: d034 beq.n 10010c2a +10010bc0: f100 0714 add.w r7, r0, #20 +10010bc4: 4638 mov r0, r7 +10010bc6: f009 fa29 bl 1001a01c +10010bca: 4606 mov r6, r0 +10010bcc: b978 cbnz r0, 10010bee +10010bce: b155 cbz r5, 10010be6 +10010bd0: 4640 mov r0, r8 +10010bd2: 8929 ldrh r1, [r5, #8] +10010bd4: f005 fcf4 bl 100165c0 +10010bd8: 4628 mov r0, r5 +10010bda: 4635 mov r5, r6 +10010bdc: f005 f944 bl 10015e68 +10010be0: b268 sxtb r0, r5 +10010be2: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10010be6: 2500 movs r5, #0 +10010be8: b268 sxtb r0, r5 +10010bea: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10010bee: f009 fabd bl 1001a16c +10010bf2: f994 300c ldrsb.w r3, [r4, #12] +10010bf6: 3309 adds r3, #9 +10010bf8: bfa8 it ge +10010bfa: f884 900c strbge.w r9, [r4, #12] +10010bfe: f009 fabb bl 1001a178 +10010c02: b185 cbz r5, 10010c26 +10010c04: 892e ldrh r6, [r5, #8] +10010c06: 4629 mov r1, r5 +10010c08: 4638 mov r0, r7 +10010c0a: f009 f9bb bl 10019f84 +10010c0e: 4605 mov r5, r0 +10010c10: b968 cbnz r0, 10010c2e +10010c12: 6b63 ldr r3, [r4, #52] ; 0x34 +10010c14: 2b00 cmp r3, #0 +10010c16: d0e6 beq.n 10010be6 +10010c18: 4620 mov r0, r4 +10010c1a: 4632 mov r2, r6 +10010c1c: 4629 mov r1, r5 +10010c1e: 4798 blx r3 +10010c20: b268 sxtb r0, r5 +10010c22: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10010c26: 462e mov r6, r5 +10010c28: e7ed b.n 10010c06 +10010c2a: 25fa movs r5, #250 ; 0xfa +10010c2c: e7d8 b.n 10010be0 +10010c2e: 25ff movs r5, #255 ; 0xff +10010c30: e7d6 b.n 10010be0 +10010c32: bf00 nop + +10010c34 : +10010c34: b538 push {r3, r4, r5, lr} +10010c36: 2300 movs r3, #0 +10010c38: 6804 ldr r4, [r0, #0] +10010c3a: 7103 strb r3, [r0, #4] +10010c3c: 68a3 ldr r3, [r4, #8] +10010c3e: 4605 mov r5, r0 +10010c40: b12b cbz r3, 10010c4e +10010c42: f104 0010 add.w r0, r4, #16 +10010c46: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10010c4a: f009 ba31 b.w 1001a0b0 +10010c4e: 6823 ldr r3, [r4, #0] +10010c50: f003 03f0 and.w r3, r3, #240 ; 0xf0 +10010c54: 2b20 cmp r3, #32 +10010c56: d01e beq.n 10010c96 +10010c58: 2b40 cmp r3, #64 ; 0x40 +10010c5a: d00f beq.n 10010c7c +10010c5c: 2b10 cmp r3, #16 +10010c5e: d002 beq.n 10010c66 +10010c60: 23fa movs r3, #250 ; 0xfa +10010c62: 7103 strb r3, [r0, #4] +10010c64: e7ed b.n 10010c42 +10010c66: f006 f9a1 bl 10016fac +10010c6a: 60a0 str r0, [r4, #8] +10010c6c: 682c ldr r4, [r5, #0] +10010c6e: 68a3 ldr r3, [r4, #8] +10010c70: b323 cbz r3, 10010cbc +10010c72: 4620 mov r0, r4 +10010c74: f7ff fd68 bl 10010748 +10010c78: 682c ldr r4, [r5, #0] +10010c7a: e7e2 b.n 10010c42 +10010c7c: 7a00 ldrb r0, [r0, #8] +10010c7e: f005 fb83 bl 10016388 +10010c82: 60a0 str r0, [r4, #8] +10010c84: 682c ldr r4, [r5, #0] +10010c86: 68a0 ldr r0, [r4, #8] +10010c88: b1c0 cbz r0, 10010cbc +10010c8a: 4622 mov r2, r4 +10010c8c: 490d ldr r1, [pc, #52] ; (10010cc4 ) +10010c8e: f005 fb01 bl 10016294 +10010c92: 682c ldr r4, [r5, #0] +10010c94: e7d5 b.n 10010c42 +10010c96: f008 fbf1 bl 1001947c +10010c9a: 60a0 str r0, [r4, #8] +10010c9c: 682c ldr r4, [r5, #0] +10010c9e: 68a0 ldr r0, [r4, #8] +10010ca0: b160 cbz r0, 10010cbc +10010ca2: 6823 ldr r3, [r4, #0] +10010ca4: 2b22 cmp r3, #34 ; 0x22 +10010ca6: d103 bne.n 10010cb0 +10010ca8: 2301 movs r3, #1 +10010caa: 7403 strb r3, [r0, #16] +10010cac: 682c ldr r4, [r5, #0] +10010cae: 68a0 ldr r0, [r4, #8] +10010cb0: 4622 mov r2, r4 +10010cb2: 4905 ldr r1, [pc, #20] ; (10010cc8 ) +10010cb4: f008 fbc2 bl 1001943c +10010cb8: 682c ldr r4, [r5, #0] +10010cba: e7c2 b.n 10010c42 +10010cbc: 23ff movs r3, #255 ; 0xff +10010cbe: 712b strb r3, [r5, #4] +10010cc0: e7bf b.n 10010c42 +10010cc2: bf00 nop +10010cc4: 100106c1 .word 0x100106c1 +10010cc8: 10010651 .word 0x10010651 + +10010ccc : +10010ccc: b5f8 push {r3, r4, r5, r6, r7, lr} +10010cce: 4605 mov r5, r0 +10010cd0: 2008 movs r0, #8 +10010cd2: 460f mov r7, r1 +10010cd4: f004 ff44 bl 10015b60 +10010cd8: 4604 mov r4, r0 +10010cda: b350 cbz r0, 10010d32 +10010cdc: 2100 movs r1, #0 +10010cde: f100 0610 add.w r6, r0, #16 +10010ce2: 6005 str r5, [r0, #0] +10010ce4: 7301 strb r1, [r0, #12] +10010ce6: 6081 str r1, [r0, #8] +10010ce8: 4630 mov r0, r6 +10010cea: f009 f9a1 bl 1001a030 +10010cee: b9d0 cbnz r0, 10010d26 +10010cf0: f104 0014 add.w r0, r4, #20 +10010cf4: 2106 movs r1, #6 +10010cf6: f009 f919 bl 10019f2c +10010cfa: 4605 mov r5, r0 +10010cfc: b980 cbnz r0, 10010d20 +10010cfe: f104 0018 add.w r0, r4, #24 +10010d02: f009 f991 bl 1001a028 +10010d06: f04f 33ff mov.w r3, #4294967295 +10010d0a: f884 5028 strb.w r5, [r4, #40] ; 0x28 +10010d0e: 6065 str r5, [r4, #4] +10010d10: 6367 str r7, [r4, #52] ; 0x34 +10010d12: 6325 str r5, [r4, #48] ; 0x30 +10010d14: 62e5 str r5, [r4, #44] ; 0x2c +10010d16: 6225 str r5, [r4, #32] +10010d18: 6265 str r5, [r4, #36] ; 0x24 +10010d1a: 61e3 str r3, [r4, #28] +10010d1c: 4620 mov r0, r4 +10010d1e: bdf8 pop {r3, r4, r5, r6, r7, pc} +10010d20: 4630 mov r0, r6 +10010d22: f009 f9cb bl 1001a0bc +10010d26: 4621 mov r1, r4 +10010d28: 2008 movs r0, #8 +10010d2a: f004 ff2f bl 10015b8c +10010d2e: 2000 movs r0, #0 +10010d30: bdf8 pop {r3, r4, r5, r6, r7, pc} +10010d32: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10010d34 : +10010d34: b538 push {r3, r4, r5, lr} +10010d36: 4604 mov r4, r0 +10010d38: 3014 adds r0, #20 +10010d3a: f009 f96f bl 1001a01c +10010d3e: f104 0510 add.w r5, r4, #16 +10010d42: f104 0018 add.w r0, r4, #24 +10010d46: f009 f969 bl 1001a01c +10010d4a: 4628 mov r0, r5 +10010d4c: f009 f9b6 bl 1001a0bc +10010d50: 4628 mov r0, r5 +10010d52: f009 f9bd bl 1001a0d0 +10010d56: 4621 mov r1, r4 +10010d58: 2008 movs r0, #8 +10010d5a: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10010d5e: f004 bf15 b.w 10015b8c +10010d62: bf00 nop + +10010d64 : +10010d64: b5f0 push {r4, r5, r6, r7, lr} +10010d66: f100 0614 add.w r6, r0, #20 +10010d6a: b083 sub sp, #12 +10010d6c: 4604 mov r4, r0 +10010d6e: 4630 mov r0, r6 +10010d70: f009 f954 bl 1001a01c +10010d74: b300 cbz r0, 10010db8 +10010d76: ad01 add r5, sp, #4 +10010d78: 4630 mov r0, r6 +10010d7a: 4629 mov r1, r5 +10010d7c: f009 f93c bl 10019ff8 +10010d80: 3001 adds r0, #1 +10010d82: d013 beq.n 10010dac +10010d84: 6823 ldr r3, [r4, #0] +10010d86: 2b10 cmp r3, #16 +10010d88: d10c bne.n 10010da4 +10010d8a: 9f01 ldr r7, [sp, #4] +10010d8c: 2f00 cmp r7, #0 +10010d8e: d0f3 beq.n 10010d78 +10010d90: 68a3 ldr r3, [r4, #8] +10010d92: 4618 mov r0, r3 +10010d94: b113 cbz r3, 10010d9c +10010d96: 8939 ldrh r1, [r7, #8] +10010d98: f005 fc12 bl 100165c0 +10010d9c: 4638 mov r0, r7 +10010d9e: f005 f863 bl 10015e68 +10010da2: e7e9 b.n 10010d78 +10010da4: 9801 ldr r0, [sp, #4] +10010da6: f000 fac5 bl 10011334 +10010daa: e7e5 b.n 10010d78 +10010dac: 4630 mov r0, r6 +10010dae: f009 f8cd bl 10019f4c +10010db2: 4630 mov r0, r6 +10010db4: f009 f938 bl 1001a028 +10010db8: f104 0618 add.w r6, r4, #24 +10010dbc: 4630 mov r0, r6 +10010dbe: f009 f92d bl 1001a01c +10010dc2: b1d8 cbz r0, 10010dfc +10010dc4: ad01 add r5, sp, #4 +10010dc6: 2700 movs r7, #0 +10010dc8: e00c b.n 10010de4 +10010dca: 9c01 ldr r4, [sp, #4] +10010dcc: 4620 mov r0, r4 +10010dce: f7ff ffc9 bl 10010d64 +10010dd2: 68a3 ldr r3, [r4, #8] +10010dd4: 4618 mov r0, r3 +10010dd6: b113 cbz r3, 10010dde +10010dd8: f006 f846 bl 10016e68 +10010ddc: 60a7 str r7, [r4, #8] +10010dde: 4620 mov r0, r4 +10010de0: f7ff ffa8 bl 10010d34 +10010de4: 4630 mov r0, r6 +10010de6: 4629 mov r1, r5 +10010de8: f009 f906 bl 10019ff8 +10010dec: 3001 adds r0, #1 +10010dee: d1ec bne.n 10010dca +10010df0: 4630 mov r0, r6 +10010df2: f009 f8ab bl 10019f4c +10010df6: 4630 mov r0, r6 +10010df8: f009 f916 bl 1001a028 +10010dfc: b003 add sp, #12 +10010dfe: bdf0 pop {r4, r5, r6, r7, pc} + +10010e00 : +10010e00: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10010e04: f100 0518 add.w r5, r0, #24 +10010e08: 4604 mov r4, r0 +10010e0a: 4628 mov r0, r5 +10010e0c: 4688 mov r8, r1 +10010e0e: 4617 mov r7, r2 +10010e10: f009 f904 bl 1001a01c +10010e14: b1c8 cbz r0, 10010e4a +10010e16: 6820 ldr r0, [r4, #0] +10010e18: 6b61 ldr r1, [r4, #52] ; 0x34 +10010e1a: f7ff ff57 bl 10010ccc +10010e1e: 4606 mov r6, r0 +10010e20: b1a8 cbz r0, 10010e4e +10010e22: f8c0 8008 str.w r8, [r0, #8] +10010e26: f7ff fc8f bl 10010748 +10010e2a: 4628 mov r0, r5 +10010e2c: 7337 strb r7, [r6, #12] +10010e2e: 4631 mov r1, r6 +10010e30: f009 f8a8 bl 10019f84 +10010e34: 4605 mov r5, r0 +10010e36: b960 cbnz r0, 10010e52 +10010e38: 6b63 ldr r3, [r4, #52] ; 0x34 +10010e3a: b11b cbz r3, 10010e44 +10010e3c: 4620 mov r0, r4 +10010e3e: 4629 mov r1, r5 +10010e40: 462a mov r2, r5 +10010e42: 4798 blx r3 +10010e44: b268 sxtb r0, r5 +10010e46: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10010e4a: 25fa movs r5, #250 ; 0xfa +10010e4c: e7fa b.n 10010e44 +10010e4e: 25ff movs r5, #255 ; 0xff +10010e50: e7f8 b.n 10010e44 +10010e52: 68b4 ldr r4, [r6, #8] +10010e54: 2100 movs r1, #0 +10010e56: 4620 mov r0, r4 +10010e58: f005 fbf8 bl 1001664c +10010e5c: 4620 mov r0, r4 +10010e5e: 2100 movs r1, #0 +10010e60: f005 fbf6 bl 10016650 +10010e64: 4620 mov r0, r4 +10010e66: 2100 movs r1, #0 +10010e68: f005 fbf6 bl 10016658 +10010e6c: 2204 movs r2, #4 +10010e6e: 4620 mov r0, r4 +10010e70: 2100 movs r1, #0 +10010e72: f005 fbfb bl 1001666c +10010e76: 2100 movs r1, #0 +10010e78: 4620 mov r0, r4 +10010e7a: f005 fbf1 bl 10016660 +10010e7e: f106 0414 add.w r4, r6, #20 +10010e82: 2300 movs r3, #0 +10010e84: 60b3 str r3, [r6, #8] +10010e86: 4620 mov r0, r4 +10010e88: f009 f860 bl 10019f4c +10010e8c: 4620 mov r0, r4 +10010e8e: f009 f8cb bl 1001a028 +10010e92: 4630 mov r0, r6 +10010e94: f7ff ff4e bl 10010d34 +10010e98: 25ff movs r5, #255 ; 0xff +10010e9a: e7d3 b.n 10010e44 + +10010e9c : +10010e9c: b538 push {r3, r4, r5, lr} +10010e9e: 6803 ldr r3, [r0, #0] +10010ea0: 4604 mov r4, r0 +10010ea2: 685a ldr r2, [r3, #4] +10010ea4: b152 cbz r2, 10010ebc +10010ea6: 3a02 subs r2, #2 +10010ea8: 2a01 cmp r2, #1 +10010eaa: d907 bls.n 10010ebc +10010eac: 22fb movs r2, #251 ; 0xfb +10010eae: 7102 strb r2, [r0, #4] +10010eb0: f103 0010 add.w r0, r3, #16 +10010eb4: f009 f906 bl 1001a0c4 +10010eb8: bb40 cbnz r0, 10010f0c +10010eba: bd38 pop {r3, r4, r5, pc} +10010ebc: 4618 mov r0, r3 +10010ebe: f7ff ff51 bl 10010d64 +10010ec2: 6823 ldr r3, [r4, #0] +10010ec4: 6898 ldr r0, [r3, #8] +10010ec6: b158 cbz r0, 10010ee0 +10010ec8: 681a ldr r2, [r3, #0] +10010eca: f002 02f0 and.w r2, r2, #240 ; 0xf0 +10010ece: 2a20 cmp r2, #32 +10010ed0: d022 beq.n 10010f18 +10010ed2: 2a40 cmp r2, #64 ; 0x40 +10010ed4: d031 beq.n 10010f3a +10010ed6: 2a10 cmp r2, #16 +10010ed8: d025 beq.n 10010f26 +10010eda: 2200 movs r2, #0 +10010edc: 609a str r2, [r3, #8] +10010ede: 6823 ldr r3, [r4, #0] +10010ee0: 6b5d ldr r5, [r3, #52] ; 0x34 +10010ee2: 2d00 cmp r5, #0 +10010ee4: d0e4 beq.n 10010eb0 +10010ee6: 2100 movs r1, #0 +10010ee8: 4618 mov r0, r3 +10010eea: 460a mov r2, r1 +10010eec: 47a8 blx r5 +10010eee: 6823 ldr r3, [r4, #0] +10010ef0: 6b5d ldr r5, [r3, #52] ; 0x34 +10010ef2: 2d00 cmp r5, #0 +10010ef4: d0dc beq.n 10010eb0 +10010ef6: 4618 mov r0, r3 +10010ef8: 2102 movs r1, #2 +10010efa: 2200 movs r2, #0 +10010efc: 47a8 blx r5 +10010efe: 6823 ldr r3, [r4, #0] +10010f00: f103 0010 add.w r0, r3, #16 +10010f04: f009 f8de bl 1001a0c4 +10010f08: 2800 cmp r0, #0 +10010f0a: d0d6 beq.n 10010eba +10010f0c: 6820 ldr r0, [r4, #0] +10010f0e: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10010f12: 3010 adds r0, #16 +10010f14: f009 b8cc b.w 1001a0b0 +10010f18: 2200 movs r2, #0 +10010f1a: 6202 str r2, [r0, #32] +10010f1c: 6898 ldr r0, [r3, #8] +10010f1e: f008 fa91 bl 10019444 +10010f22: 6823 ldr r3, [r4, #0] +10010f24: e7d9 b.n 10010eda +10010f26: 2104 movs r1, #4 +10010f28: 2203 movs r2, #3 +10010f2a: 6059 str r1, [r3, #4] +10010f2c: 7222 strb r2, [r4, #8] +10010f2e: 4618 mov r0, r3 +10010f30: 631c str r4, [r3, #48] ; 0x30 +10010f32: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10010f36: f7ff bd49 b.w 100109cc +10010f3a: f005 fa09 bl 10016350 +10010f3e: 6823 ldr r3, [r4, #0] +10010f40: e7cb b.n 10010eda +10010f42: bf00 nop + +10010f44 : +10010f44: b510 push {r4, lr} +10010f46: 6803 ldr r3, [r0, #0] +10010f48: 4604 mov r4, r0 +10010f4a: 7b1a ldrb r2, [r3, #12] +10010f4c: b251 sxtb r1, r2 +10010f4e: 3109 adds r1, #9 +10010f50: db12 blt.n 10010f78 +10010f52: 22fa movs r2, #250 ; 0xfa +10010f54: 7102 strb r2, [r0, #4] +10010f56: 6898 ldr r0, [r3, #8] +10010f58: b140 cbz r0, 10010f6c +10010f5a: 681a ldr r2, [r3, #0] +10010f5c: f002 02f0 and.w r2, r2, #240 ; 0xf0 +10010f60: 2a20 cmp r2, #32 +10010f62: d010 beq.n 10010f86 +10010f64: 2a40 cmp r2, #64 ; 0x40 +10010f66: d026 beq.n 10010fb6 +10010f68: 2a10 cmp r2, #16 +10010f6a: d018 beq.n 10010f9e +10010f6c: e8bd 4010 ldmia.w sp!, {r4, lr} +10010f70: f103 0010 add.w r0, r3, #16 +10010f74: f009 b89c b.w 1001a0b0 +10010f78: 7102 strb r2, [r0, #4] +10010f7a: e8bd 4010 ldmia.w sp!, {r4, lr} +10010f7e: f103 0010 add.w r0, r3, #16 +10010f82: f009 b895 b.w 1001a0b0 +10010f86: 68a1 ldr r1, [r4, #8] +10010f88: 89a2 ldrh r2, [r4, #12] +10010f8a: f008 f919 bl 100191c0 +10010f8e: 6823 ldr r3, [r4, #0] +10010f90: 7120 strb r0, [r4, #4] +10010f92: e8bd 4010 ldmia.w sp!, {r4, lr} +10010f96: f103 0010 add.w r0, r3, #16 +10010f9a: f009 b889 b.w 1001a0b0 +10010f9e: 68a1 ldr r1, [r4, #8] +10010fa0: 89a2 ldrh r2, [r4, #12] +10010fa2: f005 fa39 bl 10016418 +10010fa6: 6823 ldr r3, [r4, #0] +10010fa8: 7120 strb r0, [r4, #4] +10010faa: e8bd 4010 ldmia.w sp!, {r4, lr} +10010fae: f103 0010 add.w r0, r3, #16 +10010fb2: f009 b87d b.w 1001a0b0 +10010fb6: 68a1 ldr r1, [r4, #8] +10010fb8: f005 f960 bl 1001627c +10010fbc: 6823 ldr r3, [r4, #0] +10010fbe: 7120 strb r0, [r4, #4] +10010fc0: e8bd 4010 ldmia.w sp!, {r4, lr} +10010fc4: f103 0010 add.w r0, r3, #16 +10010fc8: f009 b872 b.w 1001a0b0 + +10010fcc : +10010fcc: b510 push {r4, lr} +10010fce: 6803 ldr r3, [r0, #0] +10010fd0: 4604 mov r4, r0 +10010fd2: 6898 ldr r0, [r3, #8] +10010fd4: 2800 cmp r0, #0 +10010fd6: d04d beq.n 10011074 +10010fd8: 681a ldr r2, [r3, #0] +10010fda: f002 02f0 and.w r2, r2, #240 ; 0xf0 +10010fde: 2a20 cmp r2, #32 +10010fe0: d020 beq.n 10011024 +10010fe2: 2a40 cmp r2, #64 ; 0x40 +10010fe4: d009 beq.n 10010ffa +10010fe6: 2a10 cmp r2, #16 +10010fe8: d012 beq.n 10011010 +10010fea: 22fa movs r2, #250 ; 0xfa +10010fec: 7122 strb r2, [r4, #4] +10010fee: f103 0010 add.w r0, r3, #16 +10010ff2: e8bd 4010 ldmia.w sp!, {r4, lr} +10010ff6: f009 b85b b.w 1001a0b0 +10010ffa: 68a1 ldr r1, [r4, #8] +10010ffc: f005 f944 bl 10016288 +10011000: 6823 ldr r3, [r4, #0] +10011002: 7120 strb r0, [r4, #4] +10011004: e8bd 4010 ldmia.w sp!, {r4, lr} +10011008: f103 0010 add.w r0, r3, #16 +1001100c: f009 b850 b.w 1001a0b0 +10011010: 685a ldr r2, [r3, #4] +10011012: b19a cbz r2, 1001103c +10011014: 22f7 movs r2, #247 ; 0xf7 +10011016: 7122 strb r2, [r4, #4] +10011018: f103 0010 add.w r0, r3, #16 +1001101c: e8bd 4010 ldmia.w sp!, {r4, lr} +10011020: f009 b846 b.w 1001a0b0 +10011024: 68a1 ldr r1, [r4, #8] +10011026: 89a2 ldrh r2, [r4, #12] +10011028: f008 f9d4 bl 100193d4 +1001102c: 6823 ldr r3, [r4, #0] +1001102e: 7120 strb r0, [r4, #4] +10011030: e8bd 4010 ldmia.w sp!, {r4, lr} +10011034: f103 0010 add.w r0, r3, #16 +10011038: f009 b83a b.w 1001a0b0 +1001103c: 4618 mov r0, r3 +1001103e: f7ff fb83 bl 10010748 +10011042: 6823 ldr r3, [r4, #0] +10011044: 68a1 ldr r1, [r4, #8] +10011046: 6898 ldr r0, [r3, #8] +10011048: 89a2 ldrh r2, [r4, #12] +1001104a: 4b12 ldr r3, [pc, #72] ; (10011094 ) +1001104c: f005 ffc2 bl 10016fd4 +10011050: 6823 ldr r3, [r4, #0] +10011052: 7120 strb r0, [r4, #4] +10011054: 2800 cmp r0, #0 +10011056: d1ca bne.n 10010fee +10011058: f893 2028 ldrb.w r2, [r3, #40] ; 0x28 +1001105c: 2103 movs r1, #3 +1001105e: 6059 str r1, [r3, #4] +10011060: 0791 lsls r1, r2, #30 +10011062: d50f bpl.n 10011084 +10011064: f042 0204 orr.w r2, r2, #4 +10011068: f883 2028 strb.w r2, [r3, #40] ; 0x28 +1001106c: 22fb movs r2, #251 ; 0xfb +1001106e: 6823 ldr r3, [r4, #0] +10011070: 7122 strb r2, [r4, #4] +10011072: e7bc b.n 10010fee +10011074: 22f4 movs r2, #244 ; 0xf4 +10011076: 7122 strb r2, [r4, #4] +10011078: f103 0010 add.w r0, r3, #16 +1001107c: e8bd 4010 ldmia.w sp!, {r4, lr} +10011080: f009 b816 b.w 1001a0b0 +10011084: f022 0204 bic.w r2, r2, #4 +10011088: f883 2028 strb.w r2, [r3, #40] ; 0x28 +1001108c: 6823 ldr r3, [r4, #0] +1001108e: 631c str r4, [r3, #48] ; 0x30 +10011090: bd10 pop {r4, pc} +10011092: bf00 nop +10011094: 1001082d .word 0x1001082d + +10011098 : +10011098: b538 push {r3, r4, r5, lr} +1001109a: 6803 ldr r3, [r0, #0] +1001109c: 4604 mov r4, r0 +1001109e: 7b1a ldrb r2, [r3, #12] +100110a0: b251 sxtb r1, r2 +100110a2: 3109 adds r1, #9 +100110a4: db07 blt.n 100110b6 +100110a6: 22f3 movs r2, #243 ; 0xf3 +100110a8: 7102 strb r2, [r0, #4] +100110aa: 6898 ldr r0, [r3, #8] +100110ac: b120 cbz r0, 100110b8 +100110ae: 681a ldr r2, [r3, #0] +100110b0: 2a10 cmp r2, #16 +100110b2: d007 beq.n 100110c4 +100110b4: 22f2 movs r2, #242 ; 0xf2 +100110b6: 7122 strb r2, [r4, #4] +100110b8: f103 0010 add.w r0, r3, #16 +100110bc: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +100110c0: f008 bff6 b.w 1001a0b0 +100110c4: 685a ldr r2, [r3, #4] +100110c6: 2a00 cmp r2, #0 +100110c8: d1f6 bne.n 100110b8 +100110ca: 21ff movs r1, #255 ; 0xff +100110cc: f005 f9f2 bl 100164b4 +100110d0: 4605 mov r5, r0 +100110d2: b1e0 cbz r0, 1001110e +100110d4: 6820 ldr r0, [r4, #0] +100110d6: 3014 adds r0, #20 +100110d8: f008 ffa0 bl 1001a01c +100110dc: bb50 cbnz r0, 10011134 +100110de: 6820 ldr r0, [r4, #0] +100110e0: 2300 movs r3, #0 +100110e2: 3018 adds r0, #24 +100110e4: 7123 strb r3, [r4, #4] +100110e6: f008 ff99 bl 1001a01c +100110ea: b1e0 cbz r0, 10011126 +100110ec: 7920 ldrb r0, [r4, #4] +100110ee: b990 cbnz r0, 10011116 +100110f0: 6823 ldr r3, [r4, #0] +100110f2: 2202 movs r2, #2 +100110f4: 609d str r5, [r3, #8] +100110f6: 6821 ldr r1, [r4, #0] +100110f8: 605a str r2, [r3, #4] +100110fa: 6888 ldr r0, [r1, #8] +100110fc: f005 faa6 bl 1001664c +10011100: 6823 ldr r3, [r4, #0] +10011102: 4911 ldr r1, [pc, #68] ; (10011148 ) +10011104: 6898 ldr r0, [r3, #8] +10011106: f005 faaf bl 10016668 +1001110a: 6823 ldr r3, [r4, #0] +1001110c: e7d4 b.n 100110b8 +1001110e: 23ff movs r3, #255 ; 0xff +10011110: 7123 strb r3, [r4, #4] +10011112: 6823 ldr r3, [r4, #0] +10011114: e7d0 b.n 100110b8 +10011116: 4628 mov r0, r5 +10011118: f005 fd7e bl 10016c18 +1001111c: 6823 ldr r3, [r4, #0] +1001111e: 2200 movs r2, #0 +10011120: 609a str r2, [r3, #8] +10011122: 6823 ldr r3, [r4, #0] +10011124: e7c8 b.n 100110b8 +10011126: 6820 ldr r0, [r4, #0] +10011128: 2106 movs r1, #6 +1001112a: 3018 adds r0, #24 +1001112c: f008 fefe bl 10019f2c +10011130: 7120 strb r0, [r4, #4] +10011132: e7dc b.n 100110ee +10011134: 6820 ldr r0, [r4, #0] +10011136: 3014 adds r0, #20 +10011138: f008 ff08 bl 10019f4c +1001113c: 6820 ldr r0, [r4, #0] +1001113e: 3014 adds r0, #20 +10011140: f008 ff72 bl 1001a028 +10011144: e7cb b.n 100110de +10011146: bf00 nop +10011148: 10010e01 .word 0x10010e01 + +1001114c : +1001114c: b510 push {r4, lr} +1001114e: 6803 ldr r3, [r0, #0] +10011150: 4604 mov r4, r0 +10011152: 7b1a ldrb r2, [r3, #12] +10011154: b251 sxtb r1, r2 +10011156: 3109 adds r1, #9 +10011158: db1b blt.n 10011192 +1001115a: 22f3 movs r2, #243 ; 0xf3 +1001115c: 7102 strb r2, [r0, #4] +1001115e: 6898 ldr r0, [r3, #8] +10011160: b188 cbz r0, 10011186 +10011162: 681a ldr r2, [r3, #0] +10011164: f002 02f0 and.w r2, r2, #240 ; 0xf0 +10011168: 2a20 cmp r2, #32 +1001116a: d019 beq.n 100111a0 +1001116c: 2a40 cmp r2, #64 ; 0x40 +1001116e: d10a bne.n 10011186 +10011170: 68a3 ldr r3, [r4, #8] +10011172: f113 0208 adds.w r2, r3, #8 +10011176: d001 beq.n 1001117c +10011178: 6899 ldr r1, [r3, #8] +1001117a: bb49 cbnz r1, 100111d0 +1001117c: 6819 ldr r1, [r3, #0] +1001117e: f005 f8e3 bl 10016348 +10011182: 6823 ldr r3, [r4, #0] +10011184: 7120 strb r0, [r4, #4] +10011186: f103 0010 add.w r0, r3, #16 +1001118a: e8bd 4010 ldmia.w sp!, {r4, lr} +1001118e: f008 bf8f b.w 1001a0b0 +10011192: 7102 strb r2, [r0, #4] +10011194: e8bd 4010 ldmia.w sp!, {r4, lr} +10011198: f103 0010 add.w r0, r3, #16 +1001119c: f008 bf88 b.w 1001a0b0 +100111a0: 68a3 ldr r3, [r4, #8] +100111a2: f113 0208 adds.w r2, r3, #8 +100111a6: d001 beq.n 100111ac +100111a8: 6899 ldr r1, [r3, #8] +100111aa: b951 cbnz r1, 100111c2 +100111ac: 6819 ldr r1, [r3, #0] +100111ae: f008 f90d bl 100193cc +100111b2: 6823 ldr r3, [r4, #0] +100111b4: 7120 strb r0, [r4, #4] +100111b6: e8bd 4010 ldmia.w sp!, {r4, lr} +100111ba: f103 0010 add.w r0, r3, #16 +100111be: f008 bf77 b.w 1001a0b0 +100111c2: 6819 ldr r1, [r3, #0] +100111c4: 899b ldrh r3, [r3, #12] +100111c6: f008 f8e5 bl 10019394 +100111ca: 6823 ldr r3, [r4, #0] +100111cc: 7120 strb r0, [r4, #4] +100111ce: e7da b.n 10011186 +100111d0: 6819 ldr r1, [r3, #0] +100111d2: f005 f863 bl 1001629c +100111d6: 6823 ldr r3, [r4, #0] +100111d8: 7120 strb r0, [r4, #4] +100111da: e7d4 b.n 10011186 + +100111dc : +100111dc: b570 push {r4, r5, r6, lr} +100111de: 2200 movs r2, #0 +100111e0: 6803 ldr r3, [r0, #0] +100111e2: 7102 strb r2, [r0, #4] +100111e4: 4606 mov r6, r0 +100111e6: 6898 ldr r0, [r3, #8] +100111e8: b110 cbz r0, 100111f0 +100111ea: 681a ldr r2, [r3, #0] +100111ec: 2a10 cmp r2, #16 +100111ee: d005 beq.n 100111fc +100111f0: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +100111f4: f103 0010 add.w r0, r3, #16 +100111f8: f008 bf5a b.w 1001a0b0 +100111fc: 68b4 ldr r4, [r6, #8] +100111fe: e000 b.n 10011202 +10011200: 6898 ldr r0, [r3, #8] +10011202: f5b4 3f80 cmp.w r4, #65536 ; 0x10000 +10011206: bf2d iteet cs +10011208: f64f 75ff movwcs r5, #65535 ; 0xffff +1001120c: b2a1 uxthcc r1, r4 +1001120e: 4625 movcc r5, r4 +10011210: 4629 movcs r1, r5 +10011212: f005 f9d5 bl 100165c0 +10011216: 1b64 subs r4, r4, r5 +10011218: 6833 ldr r3, [r6, #0] +1001121a: d1f1 bne.n 10011200 +1001121c: f103 0010 add.w r0, r3, #16 +10011220: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10011224: f008 bf44 b.w 1001a0b0 + +10011228 : +10011228: 6803 ldr r3, [r0, #0] +1001122a: 7b1a ldrb r2, [r3, #12] +1001122c: b251 sxtb r1, r2 +1001122e: 3109 adds r1, #9 +10011230: db03 blt.n 1001123a +10011232: 681a ldr r2, [r3, #0] +10011234: 2a10 cmp r2, #16 +10011236: d005 beq.n 10011244 +10011238: 22fa movs r2, #250 ; 0xfa +1001123a: 7102 strb r2, [r0, #4] +1001123c: f103 0010 add.w r0, r3, #16 +10011240: f008 bf36 b.w 1001a0b0 +10011244: 685a ldr r2, [r3, #4] +10011246: b112 cbz r2, 1001124e +10011248: 22fb movs r2, #251 ; 0xfb +1001124a: 7102 strb r2, [r0, #4] +1001124c: e7f6 b.n 1001123c +1001124e: 6899 ldr r1, [r3, #8] +10011250: b131 cbz r1, 10011260 +10011252: 2101 movs r1, #1 +10011254: 6318 str r0, [r3, #48] ; 0x30 +10011256: 62da str r2, [r3, #44] ; 0x2c +10011258: 6059 str r1, [r3, #4] +1001125a: 4618 mov r0, r3 +1001125c: f7ff bb22 b.w 100108a4 +10011260: 22f3 movs r2, #243 ; 0xf3 +10011262: 7102 strb r2, [r0, #4] +10011264: e7ea b.n 1001123c +10011266: bf00 nop + +10011268 : +10011268: b410 push {r4} +1001126a: 6803 ldr r3, [r0, #0] +1001126c: 689a ldr r2, [r3, #8] +1001126e: b1d2 cbz r2, 100112a6 +10011270: 7c04 ldrb r4, [r0, #16] +10011272: 6881 ldr r1, [r0, #8] +10011274: b994 cbnz r4, 1001129c +10011276: 6852 ldr r2, [r2, #4] +10011278: 600a str r2, [r1, #0] +1001127a: 2200 movs r2, #0 +1001127c: 7102 strb r2, [r0, #4] +1001127e: 681a ldr r2, [r3, #0] +10011280: f002 02f0 and.w r2, r2, #240 ; 0xf0 +10011284: 2a20 cmp r2, #32 +10011286: d022 beq.n 100112ce +10011288: 2a40 cmp r2, #64 ; 0x40 +1001128a: d00a beq.n 100112a2 +1001128c: 2a10 cmp r2, #16 +1001128e: d012 beq.n 100112b6 +10011290: f103 0010 add.w r0, r3, #16 +10011294: f85d 4b04 ldr.w r4, [sp], #4 +10011298: f008 bf0a b.w 1001a0b0 +1001129c: 6812 ldr r2, [r2, #0] +1001129e: 600a str r2, [r1, #0] +100112a0: e7eb b.n 1001127a +100112a2: 7c02 ldrb r2, [r0, #16] +100112a4: b9ea cbnz r2, 100112e2 +100112a6: 22f3 movs r2, #243 ; 0xf3 +100112a8: 7102 strb r2, [r0, #4] +100112aa: f85d 4b04 ldr.w r4, [sp], #4 +100112ae: f103 0010 add.w r0, r3, #16 +100112b2: f008 befd b.w 1001a0b0 +100112b6: 7c01 ldrb r1, [r0, #16] +100112b8: 68c2 ldr r2, [r0, #12] +100112ba: b9e1 cbnz r1, 100112f6 +100112bc: 6899 ldr r1, [r3, #8] +100112be: 8c09 ldrh r1, [r1, #32] +100112c0: 8011 strh r1, [r2, #0] +100112c2: f103 0010 add.w r0, r3, #16 +100112c6: f85d 4b04 ldr.w r4, [sp], #4 +100112ca: f008 bef1 b.w 1001a0b0 +100112ce: 7c02 ldrb r2, [r0, #16] +100112d0: b9a2 cbnz r2, 100112fc +100112d2: 689a ldr r2, [r3, #8] +100112d4: 7c11 ldrb r1, [r2, #16] +100112d6: 0749 lsls r1, r1, #29 +100112d8: d5e5 bpl.n 100112a6 +100112da: 68c1 ldr r1, [r0, #12] +100112dc: 8a92 ldrh r2, [r2, #20] +100112de: 800a strh r2, [r1, #0] +100112e0: e7d6 b.n 10011290 +100112e2: 689a ldr r2, [r3, #8] +100112e4: 68c1 ldr r1, [r0, #12] +100112e6: 7c12 ldrb r2, [r2, #16] +100112e8: f103 0010 add.w r0, r3, #16 +100112ec: 800a strh r2, [r1, #0] +100112ee: f85d 4b04 ldr.w r4, [sp], #4 +100112f2: f008 bedd b.w 1001a0b0 +100112f6: 6899 ldr r1, [r3, #8] +100112f8: 8bc9 ldrh r1, [r1, #30] +100112fa: e7e1 b.n 100112c0 +100112fc: 689a ldr r2, [r3, #8] +100112fe: 68c1 ldr r1, [r0, #12] +10011300: 8a52 ldrh r2, [r2, #18] +10011302: 800a strh r2, [r1, #0] +10011304: e7c4 b.n 10011290 +10011306: bf00 nop + +10011308 : +10011308: b538 push {r3, r4, r5, lr} +1001130a: 4604 mov r4, r0 +1001130c: 4623 mov r3, r4 +1001130e: c803 ldmia r0, {r0, r1} +10011310: 4a07 ldr r2, [pc, #28] ; (10011330 ) +10011312: 68e5 ldr r5, [r4, #12] +10011314: f004 f846 bl 100153a4 +10011318: 7028 strb r0, [r5, #0] +1001131a: 68e3 ldr r3, [r4, #12] +1001131c: f993 3000 ldrsb.w r3, [r3] +10011320: 3305 adds r3, #5 +10011322: d004 beq.n 1001132e +10011324: 68a0 ldr r0, [r4, #8] +10011326: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001132a: f008 bec1 b.w 1001a0b0 +1001132e: bd38 pop {r3, r4, r5, pc} +10011330: 10010b29 .word 0x10010b29 + +10011334 : +10011334: b510 push {r4, lr} +10011336: 4604 mov r4, r0 +10011338: b160 cbz r0, 10011354 +1001133a: 6800 ldr r0, [r0, #0] +1001133c: b120 cbz r0, 10011348 +1001133e: f004 fd93 bl 10015e68 +10011342: 2300 movs r3, #0 +10011344: 6063 str r3, [r4, #4] +10011346: 6023 str r3, [r4, #0] +10011348: 4621 mov r1, r4 +1001134a: 2007 movs r0, #7 +1001134c: e8bd 4010 ldmia.w sp!, {r4, lr} +10011350: f004 bc1c b.w 10015b8c +10011354: bd10 pop {r4, pc} +10011356: bf00 nop + +10011358 : +10011358: b510 push {r4, lr} +1001135a: 4604 mov r4, r0 +1001135c: b130 cbz r0, 1001136c +1001135e: 6800 ldr r0, [r0, #0] +10011360: b108 cbz r0, 10011366 +10011362: f004 fd81 bl 10015e68 +10011366: 2300 movs r3, #0 +10011368: 6063 str r3, [r4, #4] +1001136a: 6023 str r3, [r4, #0] +1001136c: bd10 pop {r4, pc} +1001136e: bf00 nop + +10011370 : +10011370: b570 push {r4, r5, r6, lr} +10011372: 4604 mov r4, r0 +10011374: 460e mov r6, r1 +10011376: 4615 mov r5, r2 +10011378: b190 cbz r0, 100113a0 +1001137a: 6800 ldr r0, [r0, #0] +1001137c: b108 cbz r0, 10011382 +1001137e: f004 fd73 bl 10015e68 +10011382: 2000 movs r0, #0 +10011384: 4601 mov r1, r0 +10011386: 2202 movs r2, #2 +10011388: f004 fda4 bl 10015ed4 +1001138c: 4603 mov r3, r0 +1001138e: 6020 str r0, [r4, #0] +10011390: b140 cbz r0, 100113a4 +10011392: 6046 str r6, [r0, #4] +10011394: 8105 strh r5, [r0, #8] +10011396: 8145 strh r5, [r0, #10] +10011398: 2000 movs r0, #0 +1001139a: 6063 str r3, [r4, #4] +1001139c: b240 sxtb r0, r0 +1001139e: bd70 pop {r4, r5, r6, pc} +100113a0: 20f2 movs r0, #242 ; 0xf2 +100113a2: e7fb b.n 1001139c +100113a4: 6060 str r0, [r4, #4] +100113a6: 20ff movs r0, #255 ; 0xff +100113a8: e7f8 b.n 1001139c +100113aa: bf00 nop + +100113ac : +100113ac: b5f0 push {r4, r5, r6, r7, lr} +100113ae: b083 sub sp, #12 +100113b0: a901 add r1, sp, #4 +100113b2: 4604 mov r4, r0 +100113b4: f7ff f922 bl 100105fc +100113b8: b990 cbnz r0, 100113e0 +100113ba: 4b0c ldr r3, [pc, #48] ; (100113ec ) +100113bc: 4a0c ldr r2, [pc, #48] ; (100113f0 ) +100113be: 490d ldr r1, [pc, #52] ; (100113f4 ) +100113c0: f8df c038 ldr.w ip, [pc, #56] ; 100113fc +100113c4: 9d01 ldr r5, [sp, #4] +100113c6: 2702 movs r7, #2 +100113c8: 2604 movs r6, #4 +100113ca: 6050 str r0, [r2, #4] +100113cc: 4618 mov r0, r3 +100113ce: 600d str r5, [r1, #0] +100113d0: 6011 str r1, [r2, #0] +100113d2: 611a str r2, [r3, #16] +100113d4: e883 1010 stmia.w r3, {r4, ip} +100113d8: 609f str r7, [r3, #8] +100113da: 60de str r6, [r3, #12] +100113dc: b003 add sp, #12 +100113de: bdf0 pop {r4, r5, r6, r7, pc} +100113e0: 4b05 ldr r3, [pc, #20] ; (100113f8 ) +100113e2: 22d2 movs r2, #210 ; 0xd2 +100113e4: 2000 movs r0, #0 +100113e6: 601a str r2, [r3, #0] +100113e8: b003 add sp, #12 +100113ea: bdf0 pop {r4, r5, r6, r7, pc} +100113ec: 10050b88 .word 0x10050b88 +100113f0: 10050ba0 .word 0x10050ba0 +100113f4: 10050b9c .word 0x10050b9c +100113f8: 10050ba8 .word 0x10050ba8 +100113fc: 10050bac .word 0x10050bac + +10011400 : +10011400: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10011404: 2400 movs r4, #0 +10011406: 4f1c ldr r7, [pc, #112] ; (10011478 ) +10011408: 4680 mov r8, r0 +1001140a: 4689 mov r9, r1 +1001140c: 4625 mov r5, r4 +1001140e: f008 fead bl 1001a16c +10011412: 593e ldr r6, [r7, r4] +10011414: 4b18 ldr r3, [pc, #96] ; (10011478 ) +10011416: 3418 adds r4, #24 +10011418: b146 cbz r6, 1001142c +1001141a: 3501 adds r5, #1 +1001141c: f008 feac bl 1001a178 +10011420: 2d0a cmp r5, #10 +10011422: d1f4 bne.n 1001140e +10011424: f04f 30ff mov.w r0, #4294967295 +10011428: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1001142c: ea4f 0a45 mov.w sl, r5, lsl #1 +10011430: eb0a 0405 add.w r4, sl, r5 +10011434: 00e4 lsls r4, r4, #3 +10011436: f843 8004 str.w r8, [r3, r4] +1001143a: 441c add r4, r3 +1001143c: f008 fe9c bl 1001a178 +10011440: f8d8 3000 ldr.w r3, [r8] +10011444: 6066 str r6, [r4, #4] +10011446: 2b10 cmp r3, #16 +10011448: 8126 strh r6, [r4, #8] +1001144a: 8166 strh r6, [r4, #10] +1001144c: d00e beq.n 1001146c +1001144e: f04f 0901 mov.w r9, #1 +10011452: 44aa add sl, r5 +10011454: eb07 07ca add.w r7, r7, sl, lsl #3 +10011458: 2300 movs r3, #0 +1001145a: f8a7 900c strh.w r9, [r7, #12] +1001145e: 81fb strh r3, [r7, #14] +10011460: f847 3f10 str.w r3, [r7, #16]! +10011464: 4628 mov r0, r5 +10011466: 607b str r3, [r7, #4] +10011468: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1001146c: f119 0900 adds.w r9, r9, #0 +10011470: bf18 it ne +10011472: f04f 0901 movne.w r9, #1 +10011476: e7ec b.n 10011452 +10011478: 10050bb4 .word 0x10050bb4 + +1001147c : +1001147c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10011480: b08b sub sp, #44 ; 0x2c +10011482: 460e mov r6, r1 +10011484: 4617 mov r7, r2 +10011486: 4698 mov r8, r3 +10011488: 9002 str r0, [sp, #8] +1001148a: f10d 030f add.w r3, sp, #15 +1001148e: f10d 0117 add.w r1, sp, #23 +10011492: 2200 movs r2, #0 +10011494: f803 2f01 strb.w r2, [r3, #1]! +10011498: 428b cmp r3, r1 +1001149a: d1fb bne.n 10011494 +1001149c: f10d 011f add.w r1, sp, #31 +100114a0: 2200 movs r2, #0 +100114a2: f803 2f01 strb.w r2, [r3, #1]! +100114a6: 428b cmp r3, r1 +100114a8: d1fb bne.n 100114a2 +100114aa: f10d 0127 add.w r1, sp, #39 ; 0x27 +100114ae: 2200 movs r2, #0 +100114b0: f803 2f01 strb.w r2, [r3, #1]! +100114b4: 428b cmp r3, r1 +100114b6: d1fb bne.n 100114b0 +100114b8: 9c02 ldr r4, [sp, #8] +100114ba: 2500 movs r5, #0 +100114bc: 2c00 cmp r4, #0 +100114be: dd6b ble.n 10011598 +100114c0: 4643 mov r3, r8 +100114c2: 4c4b ldr r4, [pc, #300] ; (100115f0 ) +100114c4: 46ab mov fp, r5 +100114c6: 46a8 mov r8, r5 +100114c8: 461d mov r5, r3 +100114ca: f008 fe4f bl 1001a16c +100114ce: f1bb 0f09 cmp.w fp, #9 +100114d2: d97c bls.n 100115ce +100114d4: f04f 0a00 mov.w sl, #0 +100114d8: 46d1 mov r9, sl +100114da: f8cd a00c str.w sl, [sp, #12] +100114de: f8cd a004 str.w sl, [sp, #4] +100114e2: f008 fe49 bl 1001a178 +100114e6: b1ce cbz r6, 1001151c +100114e8: ea4f 115b mov.w r1, fp, lsr #5 +100114ec: f856 0021 ldr.w r0, [r6, r1, lsl #2] +100114f0: f00b 0c1f and.w ip, fp, #31 +100114f4: fa40 f00c asr.w r0, r0, ip +100114f8: 07c0 lsls r0, r0, #31 +100114fa: d50f bpl.n 1001151c +100114fc: 9a01 ldr r2, [sp, #4] +100114fe: 2a00 cmp r2, #0 +10011500: d060 beq.n 100115c4 +10011502: 2301 movs r3, #1 +10011504: fa03 fc0c lsl.w ip, r3, ip +10011508: aa0a add r2, sp, #40 ; 0x28 +1001150a: eb02 0181 add.w r1, r2, r1, lsl #2 +1001150e: f851 0c18 ldr.w r0, [r1, #-24] +10011512: 4498 add r8, r3 +10011514: ea40 000c orr.w r0, r0, ip +10011518: f841 0c18 str.w r0, [r1, #-24] +1001151c: b1cf cbz r7, 10011552 +1001151e: ea4f 115b mov.w r1, fp, lsr #5 +10011522: f857 0021 ldr.w r0, [r7, r1, lsl #2] +10011526: f00b 0c1f and.w ip, fp, #31 +1001152a: fa40 f00c asr.w r0, r0, ip +1001152e: 07c2 lsls r2, r0, #31 +10011530: d50f bpl.n 10011552 +10011532: f1b9 0f00 cmp.w r9, #0 +10011536: d00c beq.n 10011552 +10011538: 2301 movs r3, #1 +1001153a: fa03 fc0c lsl.w ip, r3, ip +1001153e: aa0a add r2, sp, #40 ; 0x28 +10011540: eb02 0181 add.w r1, r2, r1, lsl #2 +10011544: f851 0c10 ldr.w r0, [r1, #-16] +10011548: 4498 add r8, r3 +1001154a: ea40 000c orr.w r0, r0, ip +1001154e: f841 0c10 str.w r0, [r1, #-16] +10011552: b1cd cbz r5, 10011588 +10011554: ea4f 115b mov.w r1, fp, lsr #5 +10011558: f855 0021 ldr.w r0, [r5, r1, lsl #2] +1001155c: f00b 0c1f and.w ip, fp, #31 +10011560: fa40 f00c asr.w r0, r0, ip +10011564: 07c3 lsls r3, r0, #31 +10011566: d50f bpl.n 10011588 +10011568: f1ba 0f00 cmp.w sl, #0 +1001156c: d00c beq.n 10011588 +1001156e: 2301 movs r3, #1 +10011570: fa03 fc0c lsl.w ip, r3, ip +10011574: aa0a add r2, sp, #40 ; 0x28 +10011576: eb02 0181 add.w r1, r2, r1, lsl #2 +1001157a: f851 2c08 ldr.w r2, [r1, #-8] +1001157e: 4498 add r8, r3 +10011580: ea42 020c orr.w r2, r2, ip +10011584: f841 2c08 str.w r2, [r1, #-8] +10011588: 9b02 ldr r3, [sp, #8] +1001158a: f10b 0b01 add.w fp, fp, #1 +1001158e: 459b cmp fp, r3 +10011590: f104 0418 add.w r4, r4, #24 +10011594: d199 bne.n 100114ca +10011596: 4645 mov r5, r8 +10011598: 9c14 ldr r4, [sp, #80] ; 0x50 +1001159a: aa04 add r2, sp, #16 +1001159c: e892 0003 ldmia.w r2, {r0, r1} +100115a0: e884 0003 stmia.w r4, {r0, r1} +100115a4: 9c15 ldr r4, [sp, #84] ; 0x54 +100115a6: ab06 add r3, sp, #24 +100115a8: e893 0003 ldmia.w r3, {r0, r1} +100115ac: e884 0003 stmia.w r4, {r0, r1} +100115b0: 9c16 ldr r4, [sp, #88] ; 0x58 +100115b2: aa0a add r2, sp, #40 ; 0x28 +100115b4: e912 0003 ldmdb r2, {r0, r1} +100115b8: e884 0003 stmia.w r4, {r0, r1} +100115bc: 4628 mov r0, r5 +100115be: b00b add sp, #44 ; 0x2c +100115c0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100115c4: 9a03 ldr r2, [sp, #12] +100115c6: b213 sxth r3, r2 +100115c8: 2b00 cmp r3, #0 +100115ca: dc9a bgt.n 10011502 +100115cc: e7a6 b.n 1001151c +100115ce: 6822 ldr r2, [r4, #0] +100115d0: b142 cbz r2, 100115e4 +100115d2: 6862 ldr r2, [r4, #4] +100115d4: 8963 ldrh r3, [r4, #10] +100115d6: 9201 str r2, [sp, #4] +100115d8: 9303 str r3, [sp, #12] +100115da: f8b4 900c ldrh.w r9, [r4, #12] +100115de: f8b4 a00e ldrh.w sl, [r4, #14] +100115e2: e77e b.n 100114e2 +100115e4: 4692 mov sl, r2 +100115e6: 4691 mov r9, r2 +100115e8: 9203 str r2, [sp, #12] +100115ea: 9201 str r2, [sp, #4] +100115ec: e779 b.n 100114e2 +100115ee: bf00 nop +100115f0: 10050bb4 .word 0x10050bb4 + +100115f4 : +100115f4: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100115f8: 4605 mov r5, r0 +100115fa: 460e mov r6, r1 +100115fc: 2800 cmp r0, #0 +100115fe: d060 beq.n 100116c2 +10011600: 69c4 ldr r4, [r0, #28] +10011602: 2c00 cmp r4, #0 +10011604: db6c blt.n 100116e0 +10011606: 2c09 cmp r4, #9 +10011608: d810 bhi.n 1001162c +1001160a: 4f3e ldr r7, [pc, #248] ; (10011704 ) +1001160c: eb04 0344 add.w r3, r4, r4, lsl #1 +10011610: 00db lsls r3, r3, #3 +10011612: 58fa ldr r2, [r7, r3] +10011614: 441f add r7, r3 +10011616: b14a cbz r2, 1001162c +10011618: f008 fda8 bl 1001a16c +1001161c: 4605 mov r5, r0 +1001161e: 2e04 cmp r6, #4 +10011620: d80c bhi.n 1001163c +10011622: e8df f006 tbb [pc, r6] +10011626: 5908 .short 0x5908 +10011628: 5356 .short 0x5356 +1001162a: 50 .byte 0x50 +1001162b: 00 .byte 0x00 +1001162c: 4b36 ldr r3, [pc, #216] ; (10011708 ) +1001162e: 2209 movs r2, #9 +10011630: 601a str r2, [r3, #0] +10011632: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10011636: 897b ldrh r3, [r7, #10] +10011638: 3301 adds r3, #1 +1001163a: 817b strh r3, [r7, #10] +1001163c: 697b ldr r3, [r7, #20] +1001163e: 2b00 cmp r3, #0 +10011640: d033 beq.n 100116aa +10011642: f04f 0901 mov.w r9, #1 +10011646: fa09 f804 lsl.w r8, r9, r4 +1001164a: f8df a0c4 ldr.w sl, [pc, #196] ; 10011710 +1001164e: 4e2f ldr r6, [pc, #188] ; (1001170c ) +10011650: f8da 4000 ldr.w r4, [sl] +10011654: b34c cbz r4, 100116aa +10011656: 6963 ldr r3, [r4, #20] +10011658: b9cb cbnz r3, 1001168e +1001165a: f9b7 300a ldrsh.w r3, [r7, #10] +1001165e: 2b00 cmp r3, #0 +10011660: dd05 ble.n 1001166e +10011662: 68a3 ldr r3, [r4, #8] +10011664: b11b cbz r3, 1001166e +10011666: 681b ldr r3, [r3, #0] +10011668: ea18 0f03 tst.w r8, r3 +1001166c: d122 bne.n 100116b4 +1001166e: 89bb ldrh r3, [r7, #12] +10011670: b12b cbz r3, 1001167e +10011672: 68e3 ldr r3, [r4, #12] +10011674: b11b cbz r3, 1001167e +10011676: 681b ldr r3, [r3, #0] +10011678: ea18 0f03 tst.w r8, r3 +1001167c: d11a bne.n 100116b4 +1001167e: 89fb ldrh r3, [r7, #14] +10011680: b12b cbz r3, 1001168e +10011682: 6923 ldr r3, [r4, #16] +10011684: b11b cbz r3, 1001168e +10011686: 681b ldr r3, [r3, #0] +10011688: ea18 0f03 tst.w r8, r3 +1001168c: d112 bne.n 100116b4 +1001168e: 4628 mov r0, r5 +10011690: f8d6 b000 ldr.w fp, [r6] +10011694: f008 fd70 bl 1001a178 +10011698: f008 fd68 bl 1001a16c +1001169c: 6833 ldr r3, [r6, #0] +1001169e: 4605 mov r5, r0 +100116a0: 459b cmp fp, r3 +100116a2: d1d5 bne.n 10011650 +100116a4: 6824 ldr r4, [r4, #0] +100116a6: 2c00 cmp r4, #0 +100116a8: d1d5 bne.n 10011656 +100116aa: 4628 mov r0, r5 +100116ac: e8bd 4ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100116b0: f008 bd62 b.w 1001a178 +100116b4: f8c4 9014 str.w r9, [r4, #20] +100116b8: f104 0018 add.w r0, r4, #24 +100116bc: f008 fcf8 bl 1001a0b0 +100116c0: e7e5 b.n 1001168e +100116c2: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +100116c6: 2301 movs r3, #1 +100116c8: 81fb strh r3, [r7, #14] +100116ca: e7b7 b.n 1001163c +100116cc: 2300 movs r3, #0 +100116ce: 81bb strh r3, [r7, #12] +100116d0: e7b4 b.n 1001163c +100116d2: 2301 movs r3, #1 +100116d4: 81bb strh r3, [r7, #12] +100116d6: e7b1 b.n 1001163c +100116d8: 897b ldrh r3, [r7, #10] +100116da: 3b01 subs r3, #1 +100116dc: 817b strh r3, [r7, #10] +100116de: e7ad b.n 1001163c +100116e0: f008 fd44 bl 1001a16c +100116e4: 69ec ldr r4, [r5, #28] +100116e6: 4603 mov r3, r0 +100116e8: 2c00 cmp r4, #0 +100116ea: db02 blt.n 100116f2 +100116ec: f008 fd44 bl 1001a178 +100116f0: e789 b.n 10011606 +100116f2: b90e cbnz r6, 100116f8 +100116f4: 3c01 subs r4, #1 +100116f6: 61ec str r4, [r5, #28] +100116f8: 4618 mov r0, r3 +100116fa: e8bd 4ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100116fe: f008 bd3b b.w 1001a178 +10011702: bf00 nop +10011704: 10050bb4 .word 0x10050bb4 +10011708: 1004f3e4 .word 0x1004f3e4 +1001170c: 10050ca4 .word 0x10050ca4 +10011710: 10050bb0 .word 0x10050bb0 + +10011714 : +10011714: b530 push {r4, r5, lr} +10011716: 6883 ldr r3, [r0, #8] +10011718: b083 sub sp, #12 +1001171a: 2b06 cmp r3, #6 +1001171c: 4604 mov r4, r0 +1001171e: 6805 ldr r5, [r0, #0] +10011720: 68c2 ldr r2, [r0, #12] +10011722: 6901 ldr r1, [r0, #16] +10011724: d027 beq.n 10011776 +10011726: f640 70ff movw r0, #4095 ; 0xfff +1001172a: 4283 cmp r3, r0 +1001172c: d00f beq.n 1001174e +1001172e: b12b cbz r3, 1001173c +10011730: 6828 ldr r0, [r5, #0] +10011732: 3010 adds r0, #16 +10011734: f008 fcbc bl 1001a0b0 +10011738: b003 add sp, #12 +1001173a: bd30 pop {r4, r5, pc} +1001173c: 1e53 subs r3, r2, #1 +1001173e: 2b06 cmp r3, #6 +10011740: d8f6 bhi.n 10011730 +10011742: e8df f003 tbb [pc, r3] +10011746: 9993 .short 0x9993 +10011748: 837d6c6c .word 0x837d6c6c +1001174c: 88 .byte 0x88 +1001174d: 00 .byte 0x00 +1001174e: f5b2 7f00 cmp.w r2, #512 ; 0x200 +10011752: d01e beq.n 10011792 +10011754: dd17 ble.n 10011786 +10011756: f241 0306 movw r3, #4102 ; 0x1006 +1001175a: 429a cmp r2, r3 +1001175c: d02e beq.n 100117bc +1001175e: f241 030a movw r3, #4106 ; 0x100a +10011762: 429a cmp r2, r3 +10011764: d01f beq.n 100117a6 +10011766: f241 0305 movw r3, #4101 ; 0x1005 +1001176a: 429a cmp r2, r3 +1001176c: d1e0 bne.n 10011730 +1001176e: 6828 ldr r0, [r5, #0] +10011770: 680b ldr r3, [r1, #0] +10011772: 6203 str r3, [r0, #32] +10011774: e7dd b.n 10011732 +10011776: 3a01 subs r2, #1 +10011778: 2a04 cmp r2, #4 +1001177a: d8d9 bhi.n 10011730 +1001177c: e8df f002 tbb [pc, r2] +10011780: 3922492c .word 0x3922492c +10011784: 43 .byte 0x43 +10011785: 00 .byte 0x00 +10011786: 2a08 cmp r2, #8 +10011788: d003 beq.n 10011792 +1001178a: 2a20 cmp r2, #32 +1001178c: d001 beq.n 10011792 +1001178e: 2a04 cmp r2, #4 +10011790: d1ce bne.n 10011730 +10011792: 680b ldr r3, [r1, #0] +10011794: 2b00 cmp r3, #0 +10011796: d075 beq.n 10011884 +10011798: 682b ldr r3, [r5, #0] +1001179a: 689b ldr r3, [r3, #8] +1001179c: 7a19 ldrb r1, [r3, #8] +1001179e: 430a orrs r2, r1 +100117a0: 721a strb r2, [r3, #8] +100117a2: 6828 ldr r0, [r5, #0] +100117a4: e7c5 b.n 10011732 +100117a6: 680b ldr r3, [r1, #0] +100117a8: 2b00 cmp r3, #0 +100117aa: d072 beq.n 10011892 +100117ac: 682b ldr r3, [r5, #0] +100117ae: 689b ldr r3, [r3, #8] +100117b0: 7c1a ldrb r2, [r3, #16] +100117b2: f042 0201 orr.w r2, r2, #1 +100117b6: 741a strb r2, [r3, #16] +100117b8: 6828 ldr r0, [r5, #0] +100117ba: e7ba b.n 10011732 +100117bc: 6828 ldr r0, [r5, #0] +100117be: 680b ldr r3, [r1, #0] +100117c0: 6243 str r3, [r0, #36] ; 0x24 +100117c2: e7b6 b.n 10011732 +100117c4: 680b ldr r3, [r1, #0] +100117c6: f44f 727a mov.w r2, #1000 ; 0x3e8 +100117ca: 6828 ldr r0, [r5, #0] +100117cc: fb02 f203 mul.w r2, r2, r3 +100117d0: 6883 ldr r3, [r0, #8] +100117d2: f8c3 2094 str.w r2, [r3, #148] ; 0x94 +100117d6: e7ac b.n 10011732 +100117d8: 680b ldr r3, [r1, #0] +100117da: 2b00 cmp r3, #0 +100117dc: d061 beq.n 100118a2 +100117de: 682b ldr r3, [r5, #0] +100117e0: 689b ldr r3, [r3, #8] +100117e2: f893 2022 ldrb.w r2, [r3, #34] ; 0x22 +100117e6: f042 0240 orr.w r2, r2, #64 ; 0x40 +100117ea: f883 2022 strb.w r2, [r3, #34] ; 0x22 +100117ee: 6828 ldr r0, [r5, #0] +100117f0: e79f b.n 10011732 +100117f2: 680b ldr r3, [r1, #0] +100117f4: f44f 727a mov.w r2, #1000 ; 0x3e8 +100117f8: 6828 ldr r0, [r5, #0] +100117fa: fb02 f203 mul.w r2, r2, r3 +100117fe: 6883 ldr r3, [r0, #8] +10011800: f8c3 2098 str.w r2, [r3, #152] ; 0x98 +10011804: e795 b.n 10011732 +10011806: 6828 ldr r0, [r5, #0] +10011808: 680a ldr r2, [r1, #0] +1001180a: 6883 ldr r3, [r0, #8] +1001180c: f8c3 209c str.w r2, [r3, #156] ; 0x9c +10011810: e78f b.n 10011732 +10011812: 6828 ldr r0, [r5, #0] +10011814: 680a ldr r2, [r1, #0] +10011816: 6883 ldr r3, [r0, #8] +10011818: f8c3 2094 str.w r2, [r3, #148] ; 0x94 +1001181c: e789 b.n 10011732 +1001181e: 6848 ldr r0, [r1, #4] +10011820: 680b ldr r3, [r1, #0] +10011822: 2a03 cmp r2, #3 +10011824: e88d 0009 stmia.w sp, {r0, r3} +10011828: a901 add r1, sp, #4 +1001182a: 4668 mov r0, sp +1001182c: d04b beq.n 100118c6 +1001182e: f001 fb75 bl 10012f1c +10011832: 7620 strb r0, [r4, #24] +10011834: 2800 cmp r0, #0 +10011836: f43f af7b beq.w 10011730 +1001183a: 2363 movs r3, #99 ; 0x63 +1001183c: 7623 strb r3, [r4, #24] +1001183e: e777 b.n 10011730 +10011840: 682b ldr r3, [r5, #0] +10011842: 780a ldrb r2, [r1, #0] +10011844: 689b ldr r3, [r3, #8] +10011846: 729a strb r2, [r3, #10] +10011848: 6828 ldr r0, [r5, #0] +1001184a: e772 b.n 10011732 +1001184c: 6828 ldr r0, [r5, #0] +1001184e: 680a ldr r2, [r1, #0] +10011850: 6883 ldr r3, [r0, #8] +10011852: 619a str r2, [r3, #24] +10011854: e76d b.n 10011732 +10011856: 780b ldrb r3, [r1, #0] +10011858: 2b00 cmp r3, #0 +1001185a: d02c beq.n 100118b6 +1001185c: 682b ldr r3, [r5, #0] +1001185e: 689b ldr r3, [r3, #8] +10011860: 7c1a ldrb r2, [r3, #16] +10011862: f042 0208 orr.w r2, r2, #8 +10011866: 741a strb r2, [r3, #16] +10011868: 6828 ldr r0, [r5, #0] +1001186a: e762 b.n 10011732 +1001186c: 682b ldr r3, [r5, #0] +1001186e: 680a ldr r2, [r1, #0] +10011870: 689b ldr r3, [r3, #8] +10011872: 725a strb r2, [r3, #9] +10011874: 6828 ldr r0, [r5, #0] +10011876: e75c b.n 10011732 +10011878: 682b ldr r3, [r5, #0] +1001187a: 680a ldr r2, [r1, #0] +1001187c: 689b ldr r3, [r3, #8] +1001187e: 729a strb r2, [r3, #10] +10011880: 6828 ldr r0, [r5, #0] +10011882: e756 b.n 10011732 +10011884: 682b ldr r3, [r5, #0] +10011886: 689b ldr r3, [r3, #8] +10011888: 7a19 ldrb r1, [r3, #8] +1001188a: ea21 0202 bic.w r2, r1, r2 +1001188e: 721a strb r2, [r3, #8] +10011890: e74e b.n 10011730 +10011892: 682b ldr r3, [r5, #0] +10011894: 689b ldr r3, [r3, #8] +10011896: 7c1a ldrb r2, [r3, #16] +10011898: f022 0201 bic.w r2, r2, #1 +1001189c: 741a strb r2, [r3, #16] +1001189e: 6828 ldr r0, [r5, #0] +100118a0: e747 b.n 10011732 +100118a2: 682b ldr r3, [r5, #0] +100118a4: 689b ldr r3, [r3, #8] +100118a6: f893 2022 ldrb.w r2, [r3, #34] ; 0x22 +100118aa: f022 0240 bic.w r2, r2, #64 ; 0x40 +100118ae: f883 2022 strb.w r2, [r3, #34] ; 0x22 +100118b2: 6828 ldr r0, [r5, #0] +100118b4: e73d b.n 10011732 +100118b6: 682b ldr r3, [r5, #0] +100118b8: 689b ldr r3, [r3, #8] +100118ba: 7c1a ldrb r2, [r3, #16] +100118bc: f022 0208 bic.w r2, r2, #8 +100118c0: 741a strb r2, [r3, #16] +100118c2: 6828 ldr r0, [r5, #0] +100118c4: e735 b.n 10011732 +100118c6: f001 facb bl 10012e60 +100118ca: 7620 strb r0, [r4, #24] +100118cc: e7b2 b.n 10011834 +100118ce: bf00 nop + +100118d0 : +100118d0: 4770 bx lr +100118d2: bf00 nop + +100118d4 : +100118d4: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +100118d8: 2809 cmp r0, #9 +100118da: b08b sub sp, #44 ; 0x2c +100118dc: 460f mov r7, r1 +100118de: 4690 mov r8, r2 +100118e0: d81f bhi.n 10011922 +100118e2: 4c4f ldr r4, [pc, #316] ; (10011a20 ) +100118e4: eb00 0040 add.w r0, r0, r0, lsl #1 +100118e8: 00c5 lsls r5, r0, #3 +100118ea: 5960 ldr r0, [r4, r5] +100118ec: 1966 adds r6, r4, r5 +100118ee: 46a1 mov r9, r4 +100118f0: b1b8 cbz r0, 10011922 +100118f2: f890 3028 ldrb.w r3, [r0, #40] ; 0x28 +100118f6: 079b lsls r3, r3, #30 +100118f8: d503 bpl.n 10011902 +100118fa: f9b6 300a ldrsh.w r3, [r6, #10] +100118fe: 2b00 cmp r3, #0 +10011900: dd64 ble.n 100119cc +10011902: a904 add r1, sp, #16 +10011904: f7fe fd66 bl 100103d4 +10011908: b198 cbz r0, 10011932 +1001190a: f859 3005 ldr.w r3, [r9, r5] +1001190e: 681b ldr r3, [r3, #0] +10011910: 2b10 cmp r3, #16 +10011912: d062 beq.n 100119da +10011914: 4b43 ldr r3, [pc, #268] ; (10011a24 ) +10011916: 205f movs r0, #95 ; 0x5f +10011918: 6018 str r0, [r3, #0] +1001191a: 6130 str r0, [r6, #16] +1001191c: b00b add sp, #44 ; 0x2c +1001191e: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10011922: 4b40 ldr r3, [pc, #256] ; (10011a24 ) +10011924: 2209 movs r2, #9 +10011926: 601a str r2, [r3, #0] +10011928: f04f 30ff mov.w r0, #4294967295 +1001192c: b00b add sp, #44 ; 0x2c +1001192e: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10011932: 9a04 ldr r2, [sp, #16] +10011934: 4603 mov r3, r0 +10011936: f892 1028 ldrb.w r1, [r2, #40] ; 0x28 +1001193a: 4610 mov r0, r2 +1001193c: f041 0108 orr.w r1, r1, #8 +10011940: f882 1028 strb.w r1, [r2, #40] ; 0x28 +10011944: a905 add r1, sp, #20 +10011946: f10d 020e add.w r2, sp, #14 +1001194a: f7fe fcc5 bl 100102d8 +1001194e: 4601 mov r1, r0 +10011950: 2800 cmp r0, #0 +10011952: d14e bne.n 100119f2 +10011954: b1e7 cbz r7, 10011990 +10011956: 2210 movs r2, #16 +10011958: a806 add r0, sp, #24 +1001195a: f030 fc07 bl 1004216c +1001195e: 2510 movs r5, #16 +10011960: 2302 movs r3, #2 +10011962: f8bd 000e ldrh.w r0, [sp, #14] +10011966: f88d 3019 strb.w r3, [sp, #25] +1001196a: f88d 5018 strb.w r5, [sp, #24] +1001196e: f002 fa4d bl 10013e0c +10011972: f8d8 2000 ldr.w r2, [r8] +10011976: 9b05 ldr r3, [sp, #20] +10011978: 42aa cmp r2, r5 +1001197a: f8ad 001a strh.w r0, [sp, #26] +1001197e: bf84 itt hi +10011980: f8c8 5000 strhi.w r5, [r8] +10011984: 462a movhi r2, r5 +10011986: 4638 mov r0, r7 +10011988: a906 add r1, sp, #24 +1001198a: 9307 str r3, [sp, #28] +1001198c: f030 fbe8 bl 10042160 +10011990: 9804 ldr r0, [sp, #16] +10011992: 2101 movs r1, #1 +10011994: f7ff fd34 bl 10011400 +10011998: 1c42 adds r2, r0, #1 +1001199a: 4605 mov r5, r0 +1001199c: d035 beq.n 10011a0a +1001199e: eb00 0340 add.w r3, r0, r0, lsl #1 +100119a2: eb04 04c3 add.w r4, r4, r3, lsl #3 +100119a6: f008 fbe1 bl 1001a16c +100119aa: 9b04 ldr r3, [sp, #16] +100119ac: 8961 ldrh r1, [r4, #10] +100119ae: 69da ldr r2, [r3, #28] +100119b0: 3901 subs r1, #1 +100119b2: 1a8a subs r2, r1, r2 +100119b4: 8162 strh r2, [r4, #10] +100119b6: 61dd str r5, [r3, #28] +100119b8: f008 fbde bl 1001a178 +100119bc: 4a19 ldr r2, [pc, #100] ; (10011a24 ) +100119be: 2300 movs r3, #0 +100119c0: 4628 mov r0, r5 +100119c2: 6013 str r3, [r2, #0] +100119c4: 6133 str r3, [r6, #16] +100119c6: b00b add sp, #44 ; 0x2c +100119c8: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100119cc: 4a15 ldr r2, [pc, #84] ; (10011a24 ) +100119ce: 230b movs r3, #11 +100119d0: 6013 str r3, [r2, #0] +100119d2: 6133 str r3, [r6, #16] +100119d4: f04f 30ff mov.w r0, #4294967295 +100119d8: e7a8 b.n 1001192c +100119da: 4240 negs r0, r0 +100119dc: 280f cmp r0, #15 +100119de: d81d bhi.n 10011a1c +100119e0: 4b11 ldr r3, [pc, #68] ; (10011a28 ) +100119e2: f853 3020 ldr.w r3, [r3, r0, lsl #2] +100119e6: 4a0f ldr r2, [pc, #60] ; (10011a24 ) +100119e8: 6133 str r3, [r6, #16] +100119ea: 6013 str r3, [r2, #0] +100119ec: f04f 30ff mov.w r0, #4294967295 +100119f0: e79c b.n 1001192c +100119f2: 9804 ldr r0, [sp, #16] +100119f4: 9101 str r1, [sp, #4] +100119f6: f7fe fc5d bl 100102b4 +100119fa: 9901 ldr r1, [sp, #4] +100119fc: 4249 negs r1, r1 +100119fe: 290f cmp r1, #15 +10011a00: d80c bhi.n 10011a1c +10011a02: 4b09 ldr r3, [pc, #36] ; (10011a28 ) +10011a04: f853 3021 ldr.w r3, [r3, r1, lsl #2] +10011a08: e7ed b.n 100119e6 +10011a0a: 9804 ldr r0, [sp, #16] +10011a0c: f7fe fc52 bl 100102b4 +10011a10: 4a04 ldr r2, [pc, #16] ; (10011a24 ) +10011a12: 2317 movs r3, #23 +10011a14: 4628 mov r0, r5 +10011a16: 6013 str r3, [r2, #0] +10011a18: 6133 str r3, [r6, #16] +10011a1a: e787 b.n 1001192c +10011a1c: 2305 movs r3, #5 +10011a1e: e7e2 b.n 100119e6 +10011a20: 10050bb4 .word 0x10050bb4 +10011a24: 1004f3e4 .word 0x1004f3e4 +10011a28: 10047c40 .word 0x10047c40 + +10011a2c : +10011a2c: b570 push {r4, r5, r6, lr} +10011a2e: 2809 cmp r0, #9 +10011a30: b082 sub sp, #8 +10011a32: d81f bhi.n 10011a74 +10011a34: 4b1e ldr r3, [pc, #120] ; (10011ab0 ) +10011a36: eb00 0040 add.w r0, r0, r0, lsl #1 +10011a3a: 00c0 lsls r0, r0, #3 +10011a3c: 581d ldr r5, [r3, r0] +10011a3e: 181e adds r6, r3, r0 +10011a40: b1c5 cbz r5, 10011a74 +10011a42: 2a10 cmp r2, #16 +10011a44: d11d bne.n 10011a82 +10011a46: 784b ldrb r3, [r1, #1] +10011a48: 2b02 cmp r3, #2 +10011a4a: d11a bne.n 10011a82 +10011a4c: 078b lsls r3, r1, #30 +10011a4e: d118 bne.n 10011a82 +10011a50: 684b ldr r3, [r1, #4] +10011a52: ac02 add r4, sp, #8 +10011a54: 8848 ldrh r0, [r1, #2] +10011a56: f844 3d04 str.w r3, [r4, #-4]! +10011a5a: f002 f9db bl 10013e14 +10011a5e: 4621 mov r1, r4 +10011a60: 4602 mov r2, r0 +10011a62: 4628 mov r0, r5 +10011a64: f7fe fc5a bl 1001031c +10011a68: b998 cbnz r0, 10011a92 +10011a6a: 4b12 ldr r3, [pc, #72] ; (10011ab4 ) +10011a6c: 6130 str r0, [r6, #16] +10011a6e: 6018 str r0, [r3, #0] +10011a70: b002 add sp, #8 +10011a72: bd70 pop {r4, r5, r6, pc} +10011a74: 4b0f ldr r3, [pc, #60] ; (10011ab4 ) +10011a76: 2209 movs r2, #9 +10011a78: 601a str r2, [r3, #0] +10011a7a: f04f 30ff mov.w r0, #4294967295 +10011a7e: b002 add sp, #8 +10011a80: bd70 pop {r4, r5, r6, pc} +10011a82: 4a0c ldr r2, [pc, #48] ; (10011ab4 ) +10011a84: 2305 movs r3, #5 +10011a86: f04f 30ff mov.w r0, #4294967295 +10011a8a: 6013 str r3, [r2, #0] +10011a8c: 6133 str r3, [r6, #16] +10011a8e: b002 add sp, #8 +10011a90: bd70 pop {r4, r5, r6, pc} +10011a92: 4240 negs r0, r0 +10011a94: 280f cmp r0, #15 +10011a96: bf98 it ls +10011a98: 4b07 ldrls r3, [pc, #28] ; (10011ab8 ) +10011a9a: 4a06 ldr r2, [pc, #24] ; (10011ab4 ) +10011a9c: bf94 ite ls +10011a9e: f853 3020 ldrls.w r3, [r3, r0, lsl #2] +10011aa2: 2305 movhi r3, #5 +10011aa4: 6133 str r3, [r6, #16] +10011aa6: 6013 str r3, [r2, #0] +10011aa8: f04f 30ff mov.w r0, #4294967295 +10011aac: e7e7 b.n 10011a7e +10011aae: bf00 nop +10011ab0: 10050bb4 .word 0x10050bb4 +10011ab4: 1004f3e4 .word 0x1004f3e4 +10011ab8: 10047c40 .word 0x10047c40 + +10011abc : +10011abc: 2809 cmp r0, #9 +10011abe: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10011ac2: d824 bhi.n 10011b0e +10011ac4: 4f19 ldr r7, [pc, #100] ; (10011b2c ) +10011ac6: eb00 0040 add.w r0, r0, r0, lsl #1 +10011aca: 00c6 lsls r6, r0, #3 +10011acc: 59bb ldr r3, [r7, r6] +10011ace: 19bc adds r4, r7, r6 +10011ad0: b1eb cbz r3, 10011b0e +10011ad2: 2500 movs r5, #0 +10011ad4: 4618 mov r0, r3 +10011ad6: f8d3 9000 ldr.w r9, [r3] +10011ada: f7fe fbeb bl 100102b4 +10011ade: f8d4 8004 ldr.w r8, [r4, #4] +10011ae2: 8125 strh r5, [r4, #8] +10011ae4: 6065 str r5, [r4, #4] +10011ae6: 6125 str r5, [r4, #16] +10011ae8: f008 fb40 bl 1001a16c +10011aec: 51bd str r5, [r7, r6] +10011aee: f008 fb43 bl 1001a178 +10011af2: f1b8 0f00 cmp.w r8, #0 +10011af6: d005 beq.n 10011b04 +10011af8: f1b9 0f10 cmp.w r9, #16 +10011afc: 4640 mov r0, r8 +10011afe: d00d beq.n 10011b1c +10011b00: f7ff fc18 bl 10011334 +10011b04: 4b0a ldr r3, [pc, #40] ; (10011b30 ) +10011b06: 2000 movs r0, #0 +10011b08: 6018 str r0, [r3, #0] +10011b0a: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10011b0e: 4b08 ldr r3, [pc, #32] ; (10011b30 ) +10011b10: 2209 movs r2, #9 +10011b12: 601a str r2, [r3, #0] +10011b14: f04f 30ff mov.w r0, #4294967295 +10011b18: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10011b1c: f004 f9a4 bl 10015e68 +10011b20: 4b03 ldr r3, [pc, #12] ; (10011b30 ) +10011b22: 2000 movs r0, #0 +10011b24: 6018 str r0, [r3, #0] +10011b26: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10011b2a: bf00 nop +10011b2c: 10050bb4 .word 0x10050bb4 +10011b30: 1004f3e4 .word 0x1004f3e4 + +10011b34 : +10011b34: b570 push {r4, r5, r6, lr} +10011b36: 2809 cmp r0, #9 +10011b38: b082 sub sp, #8 +10011b3a: d81f bhi.n 10011b7c +10011b3c: 4c1e ldr r4, [pc, #120] ; (10011bb8 ) +10011b3e: eb00 0040 add.w r0, r0, r0, lsl #1 +10011b42: 00c3 lsls r3, r0, #3 +10011b44: 58e6 ldr r6, [r4, r3] +10011b46: 18e5 adds r5, r4, r3 +10011b48: b1c6 cbz r6, 10011b7c +10011b4a: 2a10 cmp r2, #16 +10011b4c: d11d bne.n 10011b8a +10011b4e: 784b ldrb r3, [r1, #1] +10011b50: 2b02 cmp r3, #2 +10011b52: d11a bne.n 10011b8a +10011b54: 078b lsls r3, r1, #30 +10011b56: d118 bne.n 10011b8a +10011b58: 684b ldr r3, [r1, #4] +10011b5a: ac02 add r4, sp, #8 +10011b5c: 8848 ldrh r0, [r1, #2] +10011b5e: f844 3d04 str.w r3, [r4, #-4]! +10011b62: f002 f957 bl 10013e14 +10011b66: 4621 mov r1, r4 +10011b68: 4602 mov r2, r0 +10011b6a: 4630 mov r0, r6 +10011b6c: f7fe fbf6 bl 1001035c +10011b70: b998 cbnz r0, 10011b9a +10011b72: 4b12 ldr r3, [pc, #72] ; (10011bbc ) +10011b74: 6128 str r0, [r5, #16] +10011b76: 6018 str r0, [r3, #0] +10011b78: b002 add sp, #8 +10011b7a: bd70 pop {r4, r5, r6, pc} +10011b7c: 4b0f ldr r3, [pc, #60] ; (10011bbc ) +10011b7e: 2209 movs r2, #9 +10011b80: 601a str r2, [r3, #0] +10011b82: f04f 30ff mov.w r0, #4294967295 +10011b86: b002 add sp, #8 +10011b88: bd70 pop {r4, r5, r6, pc} +10011b8a: 4a0c ldr r2, [pc, #48] ; (10011bbc ) +10011b8c: 2305 movs r3, #5 +10011b8e: f04f 30ff mov.w r0, #4294967295 +10011b92: 6013 str r3, [r2, #0] +10011b94: 612b str r3, [r5, #16] +10011b96: b002 add sp, #8 +10011b98: bd70 pop {r4, r5, r6, pc} +10011b9a: 4240 negs r0, r0 +10011b9c: 280f cmp r0, #15 +10011b9e: bf98 it ls +10011ba0: 4b07 ldrls r3, [pc, #28] ; (10011bc0 ) +10011ba2: 4a06 ldr r2, [pc, #24] ; (10011bbc ) +10011ba4: bf94 ite ls +10011ba6: f853 3020 ldrls.w r3, [r3, r0, lsl #2] +10011baa: 2305 movhi r3, #5 +10011bac: 612b str r3, [r5, #16] +10011bae: 6013 str r3, [r2, #0] +10011bb0: f04f 30ff mov.w r0, #4294967295 +10011bb4: e7e7 b.n 10011b86 +10011bb6: bf00 nop +10011bb8: 10050bb4 .word 0x10050bb4 +10011bbc: 1004f3e4 .word 0x1004f3e4 +10011bc0: 10047c40 .word 0x10047c40 + +10011bc4 : +10011bc4: 2809 cmp r0, #9 +10011bc6: b570 push {r4, r5, r6, lr} +10011bc8: d815 bhi.n 10011bf6 +10011bca: eb00 0040 add.w r0, r0, r0, lsl #1 +10011bce: 4c19 ldr r4, [pc, #100] ; (10011c34 ) +10011bd0: 00c5 lsls r5, r0, #3 +10011bd2: 5960 ldr r0, [r4, r5] +10011bd4: 1966 adds r6, r4, r5 +10011bd6: b170 cbz r0, 10011bf6 +10011bd8: 29fe cmp r1, #254 ; 0xfe +10011bda: dd12 ble.n 10011c02 +10011bdc: 21ff movs r1, #255 ; 0xff +10011bde: f7fe fbdd bl 1001039c +10011be2: b1a8 cbz r0, 10011c10 +10011be4: 5963 ldr r3, [r4, r5] +10011be6: 681b ldr r3, [r3, #0] +10011be8: 2b10 cmp r3, #16 +10011bea: d015 beq.n 10011c18 +10011bec: 4b12 ldr r3, [pc, #72] ; (10011c38 ) +10011bee: 205f movs r0, #95 ; 0x5f +10011bf0: 6018 str r0, [r3, #0] +10011bf2: 6130 str r0, [r6, #16] +10011bf4: bd70 pop {r4, r5, r6, pc} +10011bf6: 4b10 ldr r3, [pc, #64] ; (10011c38 ) +10011bf8: 2209 movs r2, #9 +10011bfa: 601a str r2, [r3, #0] +10011bfc: f04f 30ff mov.w r0, #4294967295 +10011c00: bd70 pop {r4, r5, r6, pc} +10011c02: ea21 71e1 bic.w r1, r1, r1, asr #31 +10011c06: b2c9 uxtb r1, r1 +10011c08: f7fe fbc8 bl 1001039c +10011c0c: 2800 cmp r0, #0 +10011c0e: d1e9 bne.n 10011be4 +10011c10: 4b09 ldr r3, [pc, #36] ; (10011c38 ) +10011c12: 6130 str r0, [r6, #16] +10011c14: 6018 str r0, [r3, #0] +10011c16: bd70 pop {r4, r5, r6, pc} +10011c18: 4240 negs r0, r0 +10011c1a: 280f cmp r0, #15 +10011c1c: bf98 it ls +10011c1e: 4b07 ldrls r3, [pc, #28] ; (10011c3c ) +10011c20: 4a05 ldr r2, [pc, #20] ; (10011c38 ) +10011c22: bf94 ite ls +10011c24: f853 3020 ldrls.w r3, [r3, r0, lsl #2] +10011c28: 2305 movhi r3, #5 +10011c2a: 6133 str r3, [r6, #16] +10011c2c: 6013 str r3, [r2, #0] +10011c2e: f04f 30ff mov.w r0, #4294967295 +10011c32: bd70 pop {r4, r5, r6, pc} +10011c34: 10050bb4 .word 0x10050bb4 +10011c38: 1004f3e4 .word 0x1004f3e4 +10011c3c: 10047c40 .word 0x10047c40 + +10011c40 : +10011c40: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10011c44: 2809 cmp r0, #9 +10011c46: b08d sub sp, #52 ; 0x34 +10011c48: f04f 0700 mov.w r7, #0 +10011c4c: 468b mov fp, r1 +10011c4e: 4616 mov r6, r2 +10011c50: 469a mov sl, r3 +10011c52: 9706 str r7, [sp, #24] +10011c54: d859 bhi.n 10011d0a +10011c56: 497f ldr r1, [pc, #508] ; (10011e54 ) +10011c58: eb00 0040 add.w r0, r0, r0, lsl #1 +10011c5c: 00c0 lsls r0, r0, #3 +10011c5e: 580b ldr r3, [r1, r0] +10011c60: 460c mov r4, r1 +10011c62: 9003 str r0, [sp, #12] +10011c64: 4404 add r4, r0 +10011c66: 2b00 cmp r3, #0 +10011c68: d04f beq.n 10011d0a +10011c6a: f00a 0208 and.w r2, sl, #8 +10011c6e: 9202 str r2, [sp, #8] +10011c70: 6863 ldr r3, [r4, #4] +10011c72: 2b00 cmp r3, #0 +10011c74: f000 8098 beq.w 10011da8 +10011c78: 9306 str r3, [sp, #24] +10011c7a: 4699 mov r9, r3 +10011c7c: 6823 ldr r3, [r4, #0] +10011c7e: eb0b 0107 add.w r1, fp, r7 +10011c82: 681b ldr r3, [r3, #0] +10011c84: 2b10 cmp r3, #16 +10011c86: bf18 it ne +10011c88: f8d9 9000 ldrne.w r9, [r9] +10011c8c: 8923 ldrh r3, [r4, #8] +10011c8e: f8b9 8008 ldrh.w r8, [r9, #8] +10011c92: 4648 mov r0, r9 +10011c94: ebc3 0808 rsb r8, r3, r8 +10011c98: fa1f f888 uxth.w r8, r8 +10011c9c: 4546 cmp r6, r8 +10011c9e: bf94 ite ls +10011ca0: b2b5 uxthls r5, r6 +10011ca2: 4645 movhi r5, r8 +10011ca4: 462a mov r2, r5 +10011ca6: f004 fa5f bl 10016168 +10011caa: 6820 ldr r0, [r4, #0] +10011cac: 442f add r7, r5 +10011cae: 6803 ldr r3, [r0, #0] +10011cb0: 2b10 cmp r3, #16 +10011cb2: d132 bne.n 10011d1a +10011cb4: 1b76 subs r6, r6, r5 +10011cb6: d030 beq.n 10011d1a +10011cb8: f899 200d ldrb.w r2, [r9, #13] +10011cbc: 07d2 lsls r2, r2, #31 +10011cbe: d42c bmi.n 10011d1a +10011cc0: f9b4 200a ldrsh.w r2, [r4, #10] +10011cc4: 2a00 cmp r2, #0 +10011cc6: dd28 ble.n 10011d1a +10011cc8: f01a 0201 ands.w r2, sl, #1 +10011ccc: d169 bne.n 10011da2 +10011cce: 4691 mov r9, r2 +10011cd0: ebc5 0808 rsb r8, r5, r8 +10011cd4: f1b8 0f00 cmp.w r8, #0 +10011cd8: f340 809c ble.w 10011e14 +10011cdc: 8921 ldrh r1, [r4, #8] +10011cde: 9b06 ldr r3, [sp, #24] +10011ce0: 440d add r5, r1 +10011ce2: 8125 strh r5, [r4, #8] +10011ce4: 6063 str r3, [r4, #4] +10011ce6: f1b9 0f00 cmp.w r9, #0 +10011cea: d0c1 beq.n 10011c70 +10011cec: b12f cbz r7, 10011cfa +10011cee: 4a59 ldr r2, [pc, #356] ; (10011e54 ) +10011cf0: 9903 ldr r1, [sp, #12] +10011cf2: 5850 ldr r0, [r2, r1] +10011cf4: 4639 mov r1, r7 +10011cf6: f7fe fbff bl 100104f8 +10011cfa: 4a57 ldr r2, [pc, #348] ; (10011e58 ) +10011cfc: 2300 movs r3, #0 +10011cfe: 4638 mov r0, r7 +10011d00: 6013 str r3, [r2, #0] +10011d02: 6123 str r3, [r4, #16] +10011d04: b00d add sp, #52 ; 0x34 +10011d06: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10011d0a: 4b53 ldr r3, [pc, #332] ; (10011e58 ) +10011d0c: 2209 movs r2, #9 +10011d0e: 601a str r2, [r3, #0] +10011d10: f04f 30ff mov.w r0, #4294967295 +10011d14: b00d add sp, #52 ; 0x34 +10011d16: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10011d1a: f00a 0901 and.w r9, sl, #1 +10011d1e: 9916 ldr r1, [sp, #88] ; 0x58 +10011d20: b381 cbz r1, 10011d84 +10011d22: 9917 ldr r1, [sp, #92] ; 0x5c +10011d24: b371 cbz r1, 10011d84 +10011d26: 2b10 cmp r3, #16 +10011d28: d055 beq.n 10011dd6 +10011d2a: 9b06 ldr r3, [sp, #24] +10011d2c: 899a ldrh r2, [r3, #12] +10011d2e: f103 0c08 add.w ip, r3, #8 +10011d32: f8ad 2016 strh.w r2, [sp, #22] +10011d36: 2100 movs r1, #0 +10011d38: 2210 movs r2, #16 +10011d3a: a808 add r0, sp, #32 +10011d3c: f8cd c000 str.w ip, [sp] +10011d40: f030 fa14 bl 1004216c +10011d44: 2310 movs r3, #16 +10011d46: 2202 movs r2, #2 +10011d48: f8bd 0016 ldrh.w r0, [sp, #22] +10011d4c: f88d 3020 strb.w r3, [sp, #32] +10011d50: f88d 2021 strb.w r2, [sp, #33] ; 0x21 +10011d54: 9301 str r3, [sp, #4] +10011d56: f002 f859 bl 10013e0c +10011d5a: f8dd e05c ldr.w lr, [sp, #92] ; 0x5c +10011d5e: f8dd c000 ldr.w ip, [sp] +10011d62: f8de 2000 ldr.w r2, [lr] +10011d66: f8dc 1000 ldr.w r1, [ip] +10011d6a: 9b01 ldr r3, [sp, #4] +10011d6c: 2a10 cmp r2, #16 +10011d6e: f8ad 0022 strh.w r0, [sp, #34] ; 0x22 +10011d72: 9109 str r1, [sp, #36] ; 0x24 +10011d74: bf84 itt hi +10011d76: f8ce 3000 strhi.w r3, [lr] +10011d7a: 461a movhi r2, r3 +10011d7c: a908 add r1, sp, #32 +10011d7e: 9816 ldr r0, [sp, #88] ; 0x58 +10011d80: f030 f9ee bl 10042160 +10011d84: f1b9 0f00 cmp.w r9, #0 +10011d88: d1b0 bne.n 10011cec +10011d8a: 6823 ldr r3, [r4, #0] +10011d8c: 681b ldr r3, [r3, #0] +10011d8e: 2b10 cmp r3, #16 +10011d90: d05d beq.n 10011e4e +10011d92: 9806 ldr r0, [sp, #24] +10011d94: f8c4 9004 str.w r9, [r4, #4] +10011d98: f8a4 9008 strh.w r9, [r4, #8] +10011d9c: f7ff faca bl 10011334 +10011da0: e7a4 b.n 10011cec +10011da2: f04f 0901 mov.w r9, #1 +10011da6: e7ba b.n 10011d1e +10011da8: 9b02 ldr r3, [sp, #8] +10011daa: b923 cbnz r3, 10011db6 +10011dac: 6820 ldr r0, [r4, #0] +10011dae: f890 3028 ldrb.w r3, [r0, #40] ; 0x28 +10011db2: 0799 lsls r1, r3, #30 +10011db4: d504 bpl.n 10011dc0 +10011db6: f9b4 300a ldrsh.w r3, [r4, #10] +10011dba: 2b00 cmp r3, #0 +10011dbc: dd35 ble.n 10011e2a +10011dbe: 6820 ldr r0, [r4, #0] +10011dc0: 6803 ldr r3, [r0, #0] +10011dc2: a906 add r1, sp, #24 +10011dc4: 2b10 cmp r3, #16 +10011dc6: d010 beq.n 10011dea +10011dc8: f7fe fb52 bl 10010470 +10011dcc: b988 cbnz r0, 10011df2 +10011dce: 9b06 ldr r3, [sp, #24] +10011dd0: 6063 str r3, [r4, #4] +10011dd2: 4699 mov r9, r3 +10011dd4: e752 b.n 10011c7c +10011dd6: a907 add r1, sp, #28 +10011dd8: f10d 0216 add.w r2, sp, #22 +10011ddc: 2300 movs r3, #0 +10011dde: 9100 str r1, [sp, #0] +10011de0: f7fe fa7a bl 100102d8 +10011de4: f8dd c000 ldr.w ip, [sp] +10011de8: e7a5 b.n 10011d36 +10011dea: f7fe fb37 bl 1001045c +10011dee: 2800 cmp r0, #0 +10011df0: d0ed beq.n 10011dce +10011df2: bb0f cbnz r7, 10011e38 +10011df4: b240 sxtb r0, r0 +10011df6: 4243 negs r3, r0 +10011df8: 2b0f cmp r3, #15 +10011dfa: bf96 itet ls +10011dfc: 4a17 ldrls r2, [pc, #92] ; (10011e5c ) +10011dfe: 2305 movhi r3, #5 +10011e00: f852 3023 ldrls.w r3, [r2, r3, lsl #2] +10011e04: 300c adds r0, #12 +10011e06: 4a14 ldr r2, [pc, #80] ; (10011e58 ) +10011e08: bf18 it ne +10011e0a: 2001 movne r0, #1 +10011e0c: 4240 negs r0, r0 +10011e0e: 6123 str r3, [r4, #16] +10011e10: 6013 str r3, [r2, #0] +10011e12: e77f b.n 10011d14 +10011e14: 2300 movs r3, #0 +10011e16: 9806 ldr r0, [sp, #24] +10011e18: 6063 str r3, [r4, #4] +10011e1a: 8123 strh r3, [r4, #8] +10011e1c: f004 f824 bl 10015e68 +10011e20: f1b9 0f00 cmp.w r9, #0 +10011e24: f43f af24 beq.w 10011c70 +10011e28: e760 b.n 10011cec +10011e2a: b14f cbz r7, 10011e40 +10011e2c: 4909 ldr r1, [pc, #36] ; (10011e54 ) +10011e2e: f8dd e00c ldr.w lr, [sp, #12] +10011e32: f851 000e ldr.w r0, [r1, lr] +10011e36: e75d b.n 10011cf4 +10011e38: 4b06 ldr r3, [pc, #24] ; (10011e54 ) +10011e3a: 9a03 ldr r2, [sp, #12] +10011e3c: 5898 ldr r0, [r3, r2] +10011e3e: e759 b.n 10011cf4 +10011e40: 4a05 ldr r2, [pc, #20] ; (10011e58 ) +10011e42: 230b movs r3, #11 +10011e44: 6013 str r3, [r2, #0] +10011e46: 6123 str r3, [r4, #16] +10011e48: f04f 30ff mov.w r0, #4294967295 +10011e4c: e762 b.n 10011d14 +10011e4e: f04f 0901 mov.w r9, #1 +10011e52: e73d b.n 10011cd0 +10011e54: 10050bb4 .word 0x10050bb4 +10011e58: 1004f3e4 .word 0x1004f3e4 +10011e5c: 10047c40 .word 0x10047c40 + +10011e60 : +10011e60: b500 push {lr} +10011e62: 2300 movs r3, #0 +10011e64: b083 sub sp, #12 +10011e66: 9300 str r3, [sp, #0] +10011e68: 9301 str r3, [sp, #4] +10011e6a: f7ff fee9 bl 10011c40 +10011e6e: b003 add sp, #12 +10011e70: f85d fb04 ldr.w pc, [sp], #4 + +10011e74 : +10011e74: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10011e78: 2809 cmp r0, #9 +10011e7a: b084 sub sp, #16 +10011e7c: 468a mov sl, r1 +10011e7e: 4616 mov r6, r2 +10011e80: 9c0c ldr r4, [sp, #48] ; 0x30 +10011e82: 9f0d ldr r7, [sp, #52] ; 0x34 +10011e84: d842 bhi.n 10011f0c +10011e86: 4d33 ldr r5, [pc, #204] ; (10011f54 ) +10011e88: eb00 0940 add.w r9, r0, r0, lsl #1 +10011e8c: ea4f 09c9 mov.w r9, r9, lsl #3 +10011e90: f855 c009 ldr.w ip, [r5, r9] +10011e94: eb05 0809 add.w r8, r5, r9 +10011e98: f1bc 0f00 cmp.w ip, #0 +10011e9c: d036 beq.n 10011f0c +10011e9e: f8dc c000 ldr.w ip, [ip] +10011ea2: f1bc 0f10 cmp.w ip, #16 +10011ea6: d052 beq.n 10011f4e +10011ea8: b2b6 uxth r6, r6 +10011eaa: 2c00 cmp r4, #0 +10011eac: d047 beq.n 10011f3e +10011eae: 2f10 cmp r7, #16 +10011eb0: d13b bne.n 10011f2a +10011eb2: 7863 ldrb r3, [r4, #1] +10011eb4: 2b02 cmp r3, #2 +10011eb6: d138 bne.n 10011f2a +10011eb8: f014 0303 ands.w r3, r4, #3 +10011ebc: d135 bne.n 10011f2a +10011ebe: 6862 ldr r2, [r4, #4] +10011ec0: 8860 ldrh r0, [r4, #2] +10011ec2: 9301 str r3, [sp, #4] +10011ec4: 9300 str r3, [sp, #0] +10011ec6: 9202 str r2, [sp, #8] +10011ec8: f001 ffa4 bl 10013e14 +10011ecc: f8ad 000c strh.w r0, [sp, #12] +10011ed0: 4651 mov r1, sl +10011ed2: 4668 mov r0, sp +10011ed4: 4632 mov r2, r6 +10011ed6: f7ff fa4b bl 10011370 +10011eda: 4604 mov r4, r0 +10011edc: b1f0 cbz r0, 10011f1c +10011ede: 4668 mov r0, sp +10011ee0: f7ff fa3a bl 10011358 +10011ee4: b263 sxtb r3, r4 +10011ee6: 425b negs r3, r3 +10011ee8: 2b0f cmp r3, #15 +10011eea: bf96 itet ls +10011eec: 4a1a ldrls r2, [pc, #104] ; (10011f58 ) +10011eee: 2305 movhi r3, #5 +10011ef0: f852 3023 ldrls.w r3, [r2, r3, lsl #2] +10011ef4: 4a19 ldr r2, [pc, #100] ; (10011f5c ) +10011ef6: 2c00 cmp r4, #0 +10011ef8: bf0c ite eq +10011efa: 4630 moveq r0, r6 +10011efc: f04f 30ff movne.w r0, #4294967295 +10011f00: f8c8 3010 str.w r3, [r8, #16] +10011f04: 6013 str r3, [r2, #0] +10011f06: b004 add sp, #16 +10011f08: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10011f0c: 4b13 ldr r3, [pc, #76] ; (10011f5c ) +10011f0e: 2209 movs r2, #9 +10011f10: 601a str r2, [r3, #0] +10011f12: f04f 30ff mov.w r0, #4294967295 +10011f16: b004 add sp, #16 +10011f18: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10011f1c: f855 0009 ldr.w r0, [r5, r9] +10011f20: 4669 mov r1, sp +10011f22: f7fe fb03 bl 1001052c +10011f26: 4604 mov r4, r0 +10011f28: e7d9 b.n 10011ede +10011f2a: 4a0c ldr r2, [pc, #48] ; (10011f5c ) +10011f2c: 2305 movs r3, #5 +10011f2e: f04f 30ff mov.w r0, #4294967295 +10011f32: 6013 str r3, [r2, #0] +10011f34: f8c8 3010 str.w r3, [r8, #16] +10011f38: b004 add sp, #16 +10011f3a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10011f3e: 2f00 cmp r7, #0 +10011f40: d1b5 bne.n 10011eae +10011f42: 9701 str r7, [sp, #4] +10011f44: 9700 str r7, [sp, #0] +10011f46: 9702 str r7, [sp, #8] +10011f48: f8ad 700c strh.w r7, [sp, #12] +10011f4c: e7c0 b.n 10011ed0 +10011f4e: f000 f807 bl 10011f60 +10011f52: e7e0 b.n 10011f16 +10011f54: 10050bb4 .word 0x10050bb4 +10011f58: 10047c40 .word 0x10047c40 +10011f5c: 1004f3e4 .word 0x1004f3e4 + +10011f60 : +10011f60: b5f0 push {r4, r5, r6, r7, lr} +10011f62: 2809 cmp r0, #9 +10011f64: b085 sub sp, #20 +10011f66: 461d mov r5, r3 +10011f68: d82b bhi.n 10011fc2 +10011f6a: 4f1f ldr r7, [pc, #124] ; (10011fe8 ) +10011f6c: eb00 0440 add.w r4, r0, r0, lsl #1 +10011f70: 00e4 lsls r4, r4, #3 +10011f72: 593e ldr r6, [r7, r4] +10011f74: 443c add r4, r7 +10011f76: b326 cbz r6, 10011fc2 +10011f78: 6837 ldr r7, [r6, #0] +10011f7a: 2f10 cmp r7, #16 +10011f7c: d128 bne.n 10011fd0 +10011f7e: f015 0f10 tst.w r5, #16 +10011f82: f04f 0000 mov.w r0, #0 +10011f86: bf0c ite eq +10011f88: 2301 moveq r3, #1 +10011f8a: 2303 movne r3, #3 +10011f8c: f015 0f08 tst.w r5, #8 +10011f90: ad04 add r5, sp, #16 +10011f92: bf0c ite eq +10011f94: 4607 moveq r7, r0 +10011f96: 2704 movne r7, #4 +10011f98: f845 0d04 str.w r0, [r5, #-4]! +10011f9c: 433b orrs r3, r7 +10011f9e: 4630 mov r0, r6 +10011fa0: 9500 str r5, [sp, #0] +10011fa2: f7fe fae1 bl 10010568 +10011fa6: 4243 negs r3, r0 +10011fa8: 2b0f cmp r3, #15 +10011faa: bf96 itet ls +10011fac: 4a0f ldrls r2, [pc, #60] ; (10011fec ) +10011fae: 2305 movhi r3, #5 +10011fb0: f852 3023 ldrls.w r3, [r2, r3, lsl #2] +10011fb4: 4a0e ldr r2, [pc, #56] ; (10011ff0 ) +10011fb6: 6123 str r3, [r4, #16] +10011fb8: 6013 str r3, [r2, #0] +10011fba: b980 cbnz r0, 10011fde +10011fbc: 9803 ldr r0, [sp, #12] +10011fbe: b005 add sp, #20 +10011fc0: bdf0 pop {r4, r5, r6, r7, pc} +10011fc2: 4b0b ldr r3, [pc, #44] ; (10011ff0 ) +10011fc4: 2209 movs r2, #9 +10011fc6: f04f 30ff mov.w r0, #4294967295 +10011fca: 601a str r2, [r3, #0] +10011fcc: b005 add sp, #20 +10011fce: bdf0 pop {r4, r5, r6, r7, pc} +10011fd0: 2400 movs r4, #0 +10011fd2: 9400 str r4, [sp, #0] +10011fd4: 9401 str r4, [sp, #4] +10011fd6: f7ff ff4d bl 10011e74 +10011fda: b005 add sp, #20 +10011fdc: bdf0 pop {r4, r5, r6, r7, pc} +10011fde: f04f 30ff mov.w r0, #4294967295 +10011fe2: b005 add sp, #20 +10011fe4: bdf0 pop {r4, r5, r6, r7, pc} +10011fe6: bf00 nop +10011fe8: 10050bb4 .word 0x10050bb4 +10011fec: 10047c40 .word 0x10047c40 +10011ff0: 1004f3e4 .word 0x1004f3e4 + +10011ff4 : +10011ff4: 2902 cmp r1, #2 +10011ff6: b538 push {r3, r4, r5, lr} +10011ff8: d030 beq.n 1001205c +10011ffa: 2903 cmp r1, #3 +10011ffc: d020 beq.n 10012040 +10011ffe: 2901 cmp r1, #1 +10012000: d005 beq.n 1001200e +10012002: 4b20 ldr r3, [pc, #128] ; (10012084 ) +10012004: 2216 movs r2, #22 +10012006: 601a str r2, [r3, #0] +10012008: f04f 30ff mov.w r0, #4294967295 +1001200c: bd38 pop {r3, r4, r5, pc} +1001200e: 2010 movs r0, #16 +10012010: 2100 movs r1, #0 +10012012: 4a1d ldr r2, [pc, #116] ; (10012088 ) +10012014: f7fe f91c bl 10010250 +10012018: 4604 mov r4, r0 +1001201a: b1c8 cbz r0, 10012050 +1001201c: f890 3028 ldrb.w r3, [r0, #40] ; 0x28 +10012020: f043 0308 orr.w r3, r3, #8 +10012024: f880 3028 strb.w r3, [r0, #40] ; 0x28 +10012028: 4620 mov r0, r4 +1001202a: 2100 movs r1, #0 +1001202c: f7ff f9e8 bl 10011400 +10012030: 1c43 adds r3, r0, #1 +10012032: 4605 mov r5, r0 +10012034: d01e beq.n 10012074 +10012036: 4b13 ldr r3, [pc, #76] ; (10012084 ) +10012038: 2200 movs r2, #0 +1001203a: 61e0 str r0, [r4, #28] +1001203c: 601a str r2, [r3, #0] +1001203e: bd38 pop {r3, r4, r5, pc} +10012040: b2d1 uxtb r1, r2 +10012042: 2040 movs r0, #64 ; 0x40 +10012044: 4a10 ldr r2, [pc, #64] ; (10012088 ) +10012046: f7fe f903 bl 10010250 +1001204a: 4604 mov r4, r0 +1001204c: 2c00 cmp r4, #0 +1001204e: d1eb bne.n 10012028 +10012050: 4b0c ldr r3, [pc, #48] ; (10012084 ) +10012052: 2269 movs r2, #105 ; 0x69 +10012054: 601a str r2, [r3, #0] +10012056: f04f 30ff mov.w r0, #4294967295 +1001205a: bd38 pop {r3, r4, r5, pc} +1001205c: 2a88 cmp r2, #136 ; 0x88 +1001205e: bf14 ite ne +10012060: 2020 movne r0, #32 +10012062: 2021 moveq r0, #33 ; 0x21 +10012064: 2100 movs r1, #0 +10012066: 4a08 ldr r2, [pc, #32] ; (10012088 ) +10012068: f7fe f8f2 bl 10010250 +1001206c: 4604 mov r4, r0 +1001206e: 2c00 cmp r4, #0 +10012070: d1da bne.n 10012028 +10012072: e7ed b.n 10012050 +10012074: 4620 mov r0, r4 +10012076: f7fe f91d bl 100102b4 +1001207a: 4b02 ldr r3, [pc, #8] ; (10012084 ) +1001207c: 2217 movs r2, #23 +1001207e: 4628 mov r0, r5 +10012080: 601a str r2, [r3, #0] +10012082: bd38 pop {r3, r4, r5, pc} +10012084: 1004f3e4 .word 0x1004f3e4 +10012088: 100115f5 .word 0x100115f5 + +1001208c : +1001208c: 2300 movs r3, #0 +1001208e: f7ff bf67 b.w 10011f60 +10012092: bf00 nop + +10012094 : +10012094: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10012098: b099 sub sp, #100 ; 0x64 +1001209a: ac0b add r4, sp, #44 ; 0x2c +1001209c: 9408 str r4, [sp, #32] +1001209e: ac0d add r4, sp, #52 ; 0x34 +100120a0: 9407 str r4, [sp, #28] +100120a2: ac0f add r4, sp, #60 ; 0x3c +100120a4: 9406 str r4, [sp, #24] +100120a6: ac0b add r4, sp, #44 ; 0x2c +100120a8: 9400 str r4, [sp, #0] +100120aa: ac0d add r4, sp, #52 ; 0x34 +100120ac: 9401 str r4, [sp, #4] +100120ae: ac0f add r4, sp, #60 ; 0x3c +100120b0: 9402 str r4, [sp, #8] +100120b2: 4606 mov r6, r0 +100120b4: 460c mov r4, r1 +100120b6: 4615 mov r5, r2 +100120b8: 461f mov r7, r3 +100120ba: f8dd 8088 ldr.w r8, [sp, #136] ; 0x88 +100120be: f7ff f9dd bl 1001147c +100120c2: 4682 mov sl, r0 +100120c4: 2800 cmp r0, #0 +100120c6: f040 80d4 bne.w 10012272 +100120ca: f1b8 0f00 cmp.w r8, #0 +100120ce: d007 beq.n 100120e0 +100120d0: f8d8 3000 ldr.w r3, [r8] +100120d4: b923 cbnz r3, 100120e0 +100120d6: f8d8 3004 ldr.w r3, [r8, #4] +100120da: 2b00 cmp r3, #0 +100120dc: f000 80c9 beq.w 10012272 +100120e0: 2300 movs r3, #0 +100120e2: aa11 add r2, sp, #68 ; 0x44 +100120e4: 4619 mov r1, r3 +100120e6: a817 add r0, sp, #92 ; 0x5c +100120e8: 9413 str r4, [sp, #76] ; 0x4c +100120ea: 9514 str r5, [sp, #80] ; 0x50 +100120ec: 9715 str r7, [sp, #84] ; 0x54 +100120ee: 9311 str r3, [sp, #68] ; 0x44 +100120f0: 9312 str r3, [sp, #72] ; 0x48 +100120f2: 9316 str r3, [sp, #88] ; 0x58 +100120f4: 9205 str r2, [sp, #20] +100120f6: f007 ff9b bl 1001a030 +100120fa: 2800 cmp r0, #0 +100120fc: f040 8105 bne.w 1001230a +10012100: f008 f834 bl 1001a16c +10012104: 498d ldr r1, [pc, #564] ; (1001233c ) +10012106: 680b ldr r3, [r1, #0] +10012108: 9311 str r3, [sp, #68] ; 0x44 +1001210a: b10b cbz r3, 10012110 +1001210c: aa11 add r2, sp, #68 ; 0x44 +1001210e: 605a str r2, [r3, #4] +10012110: 498b ldr r1, [pc, #556] ; (10012340 ) +10012112: aa11 add r2, sp, #68 ; 0x44 +10012114: 680b ldr r3, [r1, #0] +10012116: 4989 ldr r1, [pc, #548] ; (1001233c ) +10012118: 3301 adds r3, #1 +1001211a: 600a str r2, [r1, #0] +1001211c: 4a88 ldr r2, [pc, #544] ; (10012340 ) +1001211e: 6013 str r3, [r2, #0] +10012120: f008 f82a bl 1001a178 +10012124: 2e00 cmp r6, #0 +10012126: dd27 ble.n 10012178 +10012128: f8df 9220 ldr.w r9, [pc, #544] ; 1001234c +1001212c: f04f 0a00 mov.w sl, #0 +10012130: 2c00 cmp r4, #0 +10012132: f000 80b7 beq.w 100122a4 +10012136: ea4f 135a mov.w r3, sl, lsr #5 +1001213a: f854 2023 ldr.w r2, [r4, r3, lsl #2] +1001213e: f00a 031f and.w r3, sl, #31 +10012142: fa42 f303 asr.w r3, r2, r3 +10012146: 07da lsls r2, r3, #31 +10012148: f140 80ac bpl.w 100122a4 +1001214c: f1ba 0f09 cmp.w sl, #9 +10012150: bf88 it hi +10012152: f04f 0b00 movhi.w fp, #0 +10012156: f240 80e8 bls.w 1001232a +1001215a: f008 f807 bl 1001a16c +1001215e: f8db 3014 ldr.w r3, [fp, #20] +10012162: 3301 adds r3, #1 +10012164: f8cb 3014 str.w r3, [fp, #20] +10012168: f008 f806 bl 1001a178 +1001216c: f10a 0a01 add.w sl, sl, #1 +10012170: 45b2 cmp sl, r6 +10012172: f109 0918 add.w r9, r9, #24 +10012176: d1db bne.n 10012130 +10012178: ab0b add r3, sp, #44 ; 0x2c +1001217a: a90d add r1, sp, #52 ; 0x34 +1001217c: aa0f add r2, sp, #60 ; 0x3c +1001217e: 9300 str r3, [sp, #0] +10012180: 9101 str r1, [sp, #4] +10012182: 9202 str r2, [sp, #8] +10012184: 4630 mov r0, r6 +10012186: 4621 mov r1, r4 +10012188: 462a mov r2, r5 +1001218a: 463b mov r3, r7 +1001218c: f7ff f976 bl 1001147c +10012190: 4682 mov sl, r0 +10012192: b9d8 cbnz r0, 100121cc +10012194: f1b8 0f00 cmp.w r8, #0 +10012198: f000 80bd beq.w 10012316 +1001219c: f8d8 3004 ldr.w r3, [r8, #4] +100121a0: 4968 ldr r1, [pc, #416] ; (10012344 ) +100121a2: f503 73fa add.w r3, r3, #500 ; 0x1f4 +100121a6: fb81 2103 smull r2, r1, r1, r3 +100121aa: f8d8 2000 ldr.w r2, [r8] +100121ae: 17db asrs r3, r3, #31 +100121b0: ebc3 13a1 rsb r3, r3, r1, asr #6 +100121b4: f44f 717a mov.w r1, #1000 ; 0x3e8 +100121b8: fb01 3102 mla r1, r1, r2, r3 +100121bc: 2900 cmp r1, #0 +100121be: bf08 it eq +100121c0: 2101 moveq r1, #1 +100121c2: a817 add r0, sp, #92 ; 0x5c +100121c4: f007 ff54 bl 1001a070 +100121c8: 9009 str r0, [sp, #36] ; 0x24 +100121ca: e001 b.n 100121d0 +100121cc: 2300 movs r3, #0 +100121ce: 9309 str r3, [sp, #36] ; 0x24 +100121d0: 2e00 cmp r6, #0 +100121d2: dd25 ble.n 10012220 +100121d4: f8df 9174 ldr.w r9, [pc, #372] ; 1001234c +100121d8: f04f 0800 mov.w r8, #0 +100121dc: 2c00 cmp r4, #0 +100121de: d07c beq.n 100122da +100121e0: ea4f 1358 mov.w r3, r8, lsr #5 +100121e4: f854 2023 ldr.w r2, [r4, r3, lsl #2] +100121e8: f008 031f and.w r3, r8, #31 +100121ec: fa42 f303 asr.w r3, r2, r3 +100121f0: 07d9 lsls r1, r3, #31 +100121f2: d572 bpl.n 100122da +100121f4: f1b8 0f09 cmp.w r8, #9 +100121f8: bf88 it hi +100121fa: f04f 0b00 movhi.w fp, #0 +100121fe: f240 808c bls.w 1001231a +10012202: f007 ffb3 bl 1001a16c +10012206: f8db 3014 ldr.w r3, [fp, #20] +1001220a: 3b01 subs r3, #1 +1001220c: f8cb 3014 str.w r3, [fp, #20] +10012210: f007 ffb2 bl 1001a178 +10012214: f108 0801 add.w r8, r8, #1 +10012218: 45b0 cmp r8, r6 +1001221a: f109 0918 add.w r9, r9, #24 +1001221e: d1dd bne.n 100121dc +10012220: f007 ffa4 bl 1001a16c +10012224: 9b11 ldr r3, [sp, #68] ; 0x44 +10012226: b10b cbz r3, 1001222c +10012228: 9a12 ldr r2, [sp, #72] ; 0x48 +1001222a: 605a str r2, [r3, #4] +1001222c: 4943 ldr r1, [pc, #268] ; (1001233c ) +1001222e: 680a ldr r2, [r1, #0] +10012230: 468e mov lr, r1 +10012232: 9905 ldr r1, [sp, #20] +10012234: 428a cmp r2, r1 +10012236: bf16 itet ne +10012238: 9a12 ldrne r2, [sp, #72] ; 0x48 +1001223a: f8ce 3000 streq.w r3, [lr] +1001223e: 6013 strne r3, [r2, #0] +10012240: 4a3f ldr r2, [pc, #252] ; (10012340 ) +10012242: 6813 ldr r3, [r2, #0] +10012244: 3301 adds r3, #1 +10012246: 6013 str r3, [r2, #0] +10012248: f007 ff96 bl 1001a178 +1001224c: a817 add r0, sp, #92 ; 0x5c +1001224e: f007 ff35 bl 1001a0bc +10012252: 9b09 ldr r3, [sp, #36] ; 0x24 +10012254: 3301 adds r3, #1 +10012256: d00c beq.n 10012272 +10012258: a90b add r1, sp, #44 ; 0x2c +1001225a: aa0d add r2, sp, #52 ; 0x34 +1001225c: ab0f add r3, sp, #60 ; 0x3c +1001225e: 9100 str r1, [sp, #0] +10012260: 9201 str r2, [sp, #4] +10012262: 9302 str r3, [sp, #8] +10012264: 4630 mov r0, r6 +10012266: 4621 mov r1, r4 +10012268: 462a mov r2, r5 +1001226a: 463b mov r3, r7 +1001226c: f7ff f906 bl 1001147c +10012270: 4682 mov sl, r0 +10012272: 4b35 ldr r3, [pc, #212] ; (10012348 ) +10012274: 2200 movs r2, #0 +10012276: 601a str r2, [r3, #0] +10012278: b124 cbz r4, 10012284 +1001227a: 9a08 ldr r2, [sp, #32] +1001227c: e892 0003 ldmia.w r2, {r0, r1} +10012280: e884 0003 stmia.w r4, {r0, r1} +10012284: b125 cbz r5, 10012290 +10012286: 9c07 ldr r4, [sp, #28] +10012288: e894 0003 ldmia.w r4, {r0, r1} +1001228c: e885 0003 stmia.w r5, {r0, r1} +10012290: b127 cbz r7, 1001229c +10012292: 9c06 ldr r4, [sp, #24] +10012294: e894 0003 ldmia.w r4, {r0, r1} +10012298: e887 0003 stmia.w r7, {r0, r1} +1001229c: 4650 mov r0, sl +1001229e: b019 add sp, #100 ; 0x64 +100122a0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100122a4: b155 cbz r5, 100122bc +100122a6: ea4f 135a mov.w r3, sl, lsr #5 +100122aa: f855 2023 ldr.w r2, [r5, r3, lsl #2] +100122ae: f00a 031f and.w r3, sl, #31 +100122b2: fa42 f303 asr.w r3, r2, r3 +100122b6: 07db lsls r3, r3, #31 +100122b8: f53f af48 bmi.w 1001214c +100122bc: 2f00 cmp r7, #0 +100122be: f43f af55 beq.w 1001216c +100122c2: ea4f 135a mov.w r3, sl, lsr #5 +100122c6: f857 2023 ldr.w r2, [r7, r3, lsl #2] +100122ca: f00a 031f and.w r3, sl, #31 +100122ce: fa42 f303 asr.w r3, r2, r3 +100122d2: 07d8 lsls r0, r3, #31 +100122d4: f57f af4a bpl.w 1001216c +100122d8: e738 b.n 1001214c +100122da: b14d cbz r5, 100122f0 +100122dc: ea4f 1358 mov.w r3, r8, lsr #5 +100122e0: f855 2023 ldr.w r2, [r5, r3, lsl #2] +100122e4: f008 031f and.w r3, r8, #31 +100122e8: fa42 f303 asr.w r3, r2, r3 +100122ec: 07da lsls r2, r3, #31 +100122ee: d481 bmi.n 100121f4 +100122f0: 2f00 cmp r7, #0 +100122f2: d08f beq.n 10012214 +100122f4: ea4f 1358 mov.w r3, r8, lsr #5 +100122f8: f857 2023 ldr.w r2, [r7, r3, lsl #2] +100122fc: f008 031f and.w r3, r8, #31 +10012300: fa42 f303 asr.w r3, r2, r3 +10012304: 07db lsls r3, r3, #31 +10012306: d585 bpl.n 10012214 +10012308: e774 b.n 100121f4 +1001230a: 4b0f ldr r3, [pc, #60] ; (10012348 ) +1001230c: 220c movs r2, #12 +1001230e: 601a str r2, [r3, #0] +10012310: f04f 3aff mov.w sl, #4294967295 +10012314: e7c2 b.n 1001229c +10012316: 4601 mov r1, r0 +10012318: e753 b.n 100121c2 +1001231a: f8d9 3000 ldr.w r3, [r9] +1001231e: 2b00 cmp r3, #0 +10012320: bf14 ite ne +10012322: 46cb movne fp, r9 +10012324: f04f 0b00 moveq.w fp, #0 +10012328: e76b b.n 10012202 +1001232a: f8d9 3000 ldr.w r3, [r9] +1001232e: 2b00 cmp r3, #0 +10012330: bf14 ite ne +10012332: 46cb movne fp, r9 +10012334: f04f 0b00 moveq.w fp, #0 +10012338: e70f b.n 1001215a +1001233a: bf00 nop +1001233c: 10050bb0 .word 0x10050bb0 +10012340: 10050ca4 .word 0x10050ca4 +10012344: 10624dd3 .word 0x10624dd3 +10012348: 1004f3e4 .word 0x1004f3e4 +1001234c: 10050bb4 .word 0x10050bb4 + +10012350 : +10012350: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10012354: 2809 cmp r0, #9 +10012356: b088 sub sp, #32 +10012358: 4605 mov r5, r0 +1001235a: 460c mov r4, r1 +1001235c: 4616 mov r6, r2 +1001235e: d81c bhi.n 1001239a +10012360: f8df 8180 ldr.w r8, [pc, #384] ; 100124e4 +10012364: eb00 0940 add.w r9, r0, r0, lsl #1 +10012368: ea4f 09c9 mov.w r9, r9, lsl #3 +1001236c: f858 1009 ldr.w r1, [r8, r9] +10012370: eb08 0a09 add.w sl, r8, r9 +10012374: b189 cbz r1, 1001239a +10012376: 2b00 cmp r3, #0 +10012378: f000 80a5 beq.w 100124c6 +1001237c: 2c06 cmp r4, #6 +1001237e: d014 beq.n 100123aa +10012380: f640 72ff movw r2, #4095 ; 0xfff +10012384: 4294 cmp r4, r2 +10012386: d021 beq.n 100123cc +10012388: b1bc cbz r4, 100123ba +1001238a: 235c movs r3, #92 ; 0x5c +1001238c: 4a53 ldr r2, [pc, #332] ; (100124dc ) +1001238e: f8ca 3010 str.w r3, [sl, #16] +10012392: 6013 str r3, [r2, #0] +10012394: f04f 30ff mov.w r0, #4294967295 +10012398: e004 b.n 100123a4 +1001239a: 4b50 ldr r3, [pc, #320] ; (100124dc ) +1001239c: 2209 movs r2, #9 +1001239e: 601a str r2, [r3, #0] +100123a0: f04f 30ff mov.w r0, #4294967295 +100123a4: b008 add sp, #32 +100123a6: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +100123aa: 9a10 ldr r2, [sp, #64] ; 0x40 +100123ac: 2a03 cmp r2, #3 +100123ae: d930 bls.n 10012412 +100123b0: 680a ldr r2, [r1, #0] +100123b2: 2a10 cmp r2, #16 +100123b4: d07d beq.n 100124b2 +100123b6: 2000 movs r0, #0 +100123b8: e7f4 b.n 100123a4 +100123ba: 1e72 subs r2, r6, #1 +100123bc: 2a06 cmp r2, #6 +100123be: d8e4 bhi.n 1001238a +100123c0: e8df f002 tbb [pc, r2] +100123c4: 6c6c6363 .word 0x6c6c6363 +100123c8: 5829 .short 0x5829 +100123ca: 29 .byte 0x29 +100123cb: 00 .byte 0x00 +100123cc: f5b6 7f00 cmp.w r6, #512 ; 0x200 +100123d0: d01c beq.n 1001240c +100123d2: dd15 ble.n 10012400 +100123d4: f241 0205 movw r2, #4101 ; 0x1005 +100123d8: 4296 cmp r6, r2 +100123da: dbd6 blt.n 1001238a +100123dc: f241 0206 movw r2, #4102 ; 0x1006 +100123e0: 4296 cmp r6, r2 +100123e2: dd13 ble.n 1001240c +100123e4: f241 020a movw r2, #4106 ; 0x100a +100123e8: 4296 cmp r6, r2 +100123ea: d1ce bne.n 1001238a +100123ec: 9a10 ldr r2, [sp, #64] ; 0x40 +100123ee: 6808 ldr r0, [r1, #0] +100123f0: 2a04 cmp r2, #4 +100123f2: bf34 ite cc +100123f4: 2216 movcc r2, #22 +100123f6: 2200 movcs r2, #0 +100123f8: 2820 cmp r0, #32 +100123fa: d05f beq.n 100124bc +100123fc: 2361 movs r3, #97 ; 0x61 +100123fe: e7c5 b.n 1001238c +10012400: 2e08 cmp r6, #8 +10012402: d003 beq.n 1001240c +10012404: 2e20 cmp r6, #32 +10012406: d001 beq.n 1001240c +10012408: 2e04 cmp r6, #4 +1001240a: d1be bne.n 1001238a +1001240c: 9a10 ldr r2, [sp, #64] ; 0x40 +1001240e: 2a03 cmp r2, #3 +10012410: d80d bhi.n 1001242e +10012412: 2316 movs r3, #22 +10012414: e7ba b.n 1001238c +10012416: 9a10 ldr r2, [sp, #64] ; 0x40 +10012418: 6809 ldr r1, [r1, #0] +1001241a: 2a00 cmp r2, #0 +1001241c: f001 01f0 and.w r1, r1, #240 ; 0xf0 +10012420: bf0c ite eq +10012422: 2216 moveq r2, #22 +10012424: 2200 movne r2, #0 +10012426: 2920 cmp r1, #32 +10012428: d1e8 bne.n 100123fc +1001242a: 2a00 cmp r2, #0 +1001242c: d153 bne.n 100124d6 +1001242e: 2700 movs r7, #0 +10012430: a901 add r1, sp, #4 +10012432: 2201 movs r2, #1 +10012434: 9305 str r3, [sp, #20] +10012436: 482a ldr r0, [pc, #168] ; (100124e0 ) +10012438: ab10 add r3, sp, #64 ; 0x40 +1001243a: 9306 str r3, [sp, #24] +1001243c: f8cd a004 str.w sl, [sp, #4] +10012440: 9502 str r5, [sp, #8] +10012442: 9403 str r4, [sp, #12] +10012444: 9604 str r6, [sp, #16] +10012446: f88d 701c strb.w r7, [sp, #28] +1001244a: f000 f8c3 bl 100125d4 +1001244e: f858 0009 ldr.w r0, [r8, r9] +10012452: 4639 mov r1, r7 +10012454: 3010 adds r0, #16 +10012456: f007 fe0b bl 1001a070 +1001245a: f99d 301c ldrsb.w r3, [sp, #28] +1001245e: 4a1f ldr r2, [pc, #124] ; (100124dc ) +10012460: 1bd8 subs r0, r3, r7 +10012462: bf18 it ne +10012464: 2001 movne r0, #1 +10012466: 4240 negs r0, r0 +10012468: f8ca 3010 str.w r3, [sl, #16] +1001246c: 6013 str r3, [r2, #0] +1001246e: b008 add sp, #32 +10012470: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10012474: 9a10 ldr r2, [sp, #64] ; 0x40 +10012476: 6809 ldr r1, [r1, #0] +10012478: 2a04 cmp r2, #4 +1001247a: f001 01f0 and.w r1, r1, #240 ; 0xf0 +1001247e: bf34 ite cc +10012480: 2216 movcc r2, #22 +10012482: 2200 movcs r2, #0 +10012484: 2920 cmp r1, #32 +10012486: d1b9 bne.n 100123fc +10012488: e7cf b.n 1001242a +1001248a: 9a10 ldr r2, [sp, #64] ; 0x40 +1001248c: 6889 ldr r1, [r1, #8] +1001248e: 7818 ldrb r0, [r3, #0] +10012490: 2a00 cmp r2, #0 +10012492: 7248 strb r0, [r1, #9] +10012494: bf0c ite eq +10012496: 2216 moveq r2, #22 +10012498: 2200 movne r2, #0 +1001249a: e7c6 b.n 1001242a +1001249c: 9a10 ldr r2, [sp, #64] ; 0x40 +1001249e: 6809 ldr r1, [r1, #0] +100124a0: 2a08 cmp r2, #8 +100124a2: f001 01f0 and.w r1, r1, #240 ; 0xf0 +100124a6: bf34 ite cc +100124a8: 2216 movcc r2, #22 +100124aa: 2200 movcs r2, #0 +100124ac: 2920 cmp r1, #32 +100124ae: d1a5 bne.n 100123fc +100124b0: e7bb b.n 1001242a +100124b2: 1e72 subs r2, r6, #1 +100124b4: 2a04 cmp r2, #4 +100124b6: f63f af68 bhi.w 1001238a +100124ba: e7b8 b.n 1001242e +100124bc: 6889 ldr r1, [r1, #8] +100124be: 7c09 ldrb r1, [r1, #16] +100124c0: 0789 lsls r1, r1, #30 +100124c2: d49b bmi.n 100123fc +100124c4: e7b1 b.n 1001242a +100124c6: 4a05 ldr r2, [pc, #20] ; (100124dc ) +100124c8: 230e movs r3, #14 +100124ca: 6013 str r3, [r2, #0] +100124cc: f8ca 3010 str.w r3, [sl, #16] +100124d0: f04f 30ff mov.w r0, #4294967295 +100124d4: e766 b.n 100123a4 +100124d6: b253 sxtb r3, r2 +100124d8: e758 b.n 1001238c +100124da: bf00 nop +100124dc: 1004f3e4 .word 0x1004f3e4 +100124e0: 10011715 .word 0x10011715 +100124e4: 10050bb4 .word 0x10050bb4 + +100124e8 : +100124e8: b500 push {lr} +100124ea: 4b25 ldr r3, [pc, #148] ; (10012580 ) +100124ec: b083 sub sp, #12 +100124ee: 681b ldr r3, [r3, #0] +100124f0: b113 cbz r3, 100124f8 +100124f2: 4a24 ldr r2, [pc, #144] ; (10012584 ) +100124f4: 6810 ldr r0, [r2, #0] +100124f6: 4798 blx r3 +100124f8: 4823 ldr r0, [pc, #140] ; (10012588 ) +100124fa: a901 add r1, sp, #4 +100124fc: f003 f936 bl 1001576c +10012500: 9b01 ldr r3, [sp, #4] +10012502: 681a ldr r2, [r3, #0] +10012504: 2a05 cmp r2, #5 +10012506: d8f7 bhi.n 100124f8 +10012508: e8df f002 tbb [pc, r2] +1001250c: 0f182231 .word 0x0f182231 +10012510: 0307 .short 0x0307 +10012512: 689a ldr r2, [r3, #8] +10012514: 68d8 ldr r0, [r3, #12] +10012516: 4790 blx r2 +10012518: e7ee b.n 100124f8 +1001251a: 68d8 ldr r0, [r3, #12] +1001251c: 689a ldr r2, [r3, #8] +1001251e: 4790 blx r2 +10012520: 2009 movs r0, #9 +10012522: 9901 ldr r1, [sp, #4] +10012524: f003 fb32 bl 10015b8c +10012528: e7e6 b.n 100124f8 +1001252a: 68d8 ldr r0, [r3, #12] +1001252c: 6919 ldr r1, [r3, #16] +1001252e: f003 f8f9 bl 10015724 +10012532: 2009 movs r0, #9 +10012534: 9901 ldr r1, [sp, #4] +10012536: f003 fb29 bl 10015b8c +1001253a: e7dd b.n 100124f8 +1001253c: f103 0008 add.w r0, r3, #8 +10012540: c807 ldmia r0, {r0, r1, r2} +10012542: f002 ffe3 bl 1001550c +10012546: 2009 movs r0, #9 +10012548: 9901 ldr r1, [sp, #4] +1001254a: f003 fb1f bl 10015b8c +1001254e: e7d3 b.n 100124f8 +10012550: 68da ldr r2, [r3, #12] +10012552: f892 0031 ldrb.w r0, [r2, #49] ; 0x31 +10012556: 4611 mov r1, r2 +10012558: f010 0f60 tst.w r0, #96 ; 0x60 +1001255c: 6898 ldr r0, [r3, #8] +1001255e: d00b beq.n 10012578 +10012560: f007 fa50 bl 10019a04 +10012564: 200a movs r0, #10 +10012566: 9901 ldr r1, [sp, #4] +10012568: f003 fb10 bl 10015b8c +1001256c: e7c4 b.n 100124f8 +1001256e: 6898 ldr r0, [r3, #8] +10012570: 6803 ldr r3, [r0, #0] +10012572: 3004 adds r0, #4 +10012574: 4798 blx r3 +10012576: e7bf b.n 100124f8 +10012578: f000 fe34 bl 100131e4 +1001257c: e7f2 b.n 10012564 +1001257e: bf00 nop +10012580: 10050cb0 .word 0x10050cb0 +10012584: 10050cac .word 0x10050cac +10012588: 10050ca8 .word 0x10050ca8 + +1001258c : +1001258c: b570 push {r4, r5, r6, lr} +1001258e: 4606 mov r6, r0 +10012590: 480f ldr r0, [pc, #60] ; (100125d0 ) +10012592: 460d mov r5, r1 +10012594: f007 fd42 bl 1001a01c +10012598: b178 cbz r0, 100125ba +1001259a: 200a movs r0, #10 +1001259c: f003 fae0 bl 10015b60 +100125a0: 4604 mov r4, r0 +100125a2: b160 cbz r0, 100125be +100125a4: 2301 movs r3, #1 +100125a6: 6086 str r6, [r0, #8] +100125a8: 60c5 str r5, [r0, #12] +100125aa: 6003 str r3, [r0, #0] +100125ac: 4621 mov r1, r4 +100125ae: 4808 ldr r0, [pc, #32] ; (100125d0 ) +100125b0: f007 fce8 bl 10019f84 +100125b4: b928 cbnz r0, 100125c2 +100125b6: b240 sxtb r0, r0 +100125b8: bd70 pop {r4, r5, r6, pc} +100125ba: 20fa movs r0, #250 ; 0xfa +100125bc: e7fb b.n 100125b6 +100125be: 20ff movs r0, #255 ; 0xff +100125c0: e7f9 b.n 100125b6 +100125c2: 200a movs r0, #10 +100125c4: 4621 mov r1, r4 +100125c6: f003 fae1 bl 10015b8c +100125ca: 20ff movs r0, #255 ; 0xff +100125cc: e7f3 b.n 100125b6 +100125ce: bf00 nop +100125d0: 10050ca8 .word 0x10050ca8 + +100125d4 : +100125d4: b5f8 push {r3, r4, r5, r6, r7, lr} +100125d6: 4607 mov r7, r0 +100125d8: 4813 ldr r0, [pc, #76] ; (10012628 ) +100125da: 460e mov r6, r1 +100125dc: 4615 mov r5, r2 +100125de: f007 fd1d bl 1001a01c +100125e2: b1b8 cbz r0, 10012614 +100125e4: 2009 movs r0, #9 +100125e6: f003 fabb bl 10015b60 +100125ea: 4604 mov r4, r0 +100125ec: b1d0 cbz r0, 10012624 +100125ee: 2304 movs r3, #4 +100125f0: 6087 str r7, [r0, #8] +100125f2: 60c6 str r6, [r0, #12] +100125f4: 6003 str r3, [r0, #0] +100125f6: b935 cbnz r5, 10012606 +100125f8: 480b ldr r0, [pc, #44] ; (10012628 ) +100125fa: 4621 mov r1, r4 +100125fc: f007 fcc2 bl 10019f84 +10012600: b950 cbnz r0, 10012618 +10012602: b240 sxtb r0, r0 +10012604: bdf8 pop {r3, r4, r5, r6, r7, pc} +10012606: 4601 mov r1, r0 +10012608: 4807 ldr r0, [pc, #28] ; (10012628 ) +1001260a: f007 fca9 bl 10019f60 +1001260e: 2000 movs r0, #0 +10012610: b240 sxtb r0, r0 +10012612: bdf8 pop {r3, r4, r5, r6, r7, pc} +10012614: 20fa movs r0, #250 ; 0xfa +10012616: e7f4 b.n 10012602 +10012618: 2009 movs r0, #9 +1001261a: 4621 mov r1, r4 +1001261c: f003 fab6 bl 10015b8c +10012620: 20ff movs r0, #255 ; 0xff +10012622: e7ee b.n 10012602 +10012624: 20ff movs r0, #255 ; 0xff +10012626: e7ec b.n 10012602 +10012628: 10050ca8 .word 0x10050ca8 + +1001262c : +1001262c: b570 push {r4, r5, r6, lr} +1001262e: 4606 mov r6, r0 +10012630: 480c ldr r0, [pc, #48] ; (10012664 ) +10012632: 460d mov r5, r1 +10012634: 4614 mov r4, r2 +10012636: f007 fcf1 bl 1001a01c +1001263a: b178 cbz r0, 1001265c +1001263c: 2009 movs r0, #9 +1001263e: f003 fa8f bl 10015b60 +10012642: b168 cbz r0, 10012660 +10012644: 2202 movs r2, #2 +10012646: 6086 str r6, [r0, #8] +10012648: 60c5 str r5, [r0, #12] +1001264a: 6104 str r4, [r0, #16] +1001264c: 6002 str r2, [r0, #0] +1001264e: 4601 mov r1, r0 +10012650: 4804 ldr r0, [pc, #16] ; (10012664 ) +10012652: f007 fc85 bl 10019f60 +10012656: 2000 movs r0, #0 +10012658: b240 sxtb r0, r0 +1001265a: bd70 pop {r4, r5, r6, pc} +1001265c: 20fa movs r0, #250 ; 0xfa +1001265e: e7fb b.n 10012658 +10012660: 20ff movs r0, #255 ; 0xff +10012662: e7f9 b.n 10012658 +10012664: 10050ca8 .word 0x10050ca8 + +10012668 : +10012668: b570 push {r4, r5, r6, lr} +1001266a: 25fa movs r5, #250 ; 0xfa +1001266c: b086 sub sp, #24 +1001266e: 4604 mov r4, r0 +10012670: 7205 strb r5, [r0, #8] +10012672: 4812 ldr r0, [pc, #72] ; (100126bc ) +10012674: f007 fcd2 bl 1001a01c +10012678: b1f0 cbz r0, 100126b8 +1001267a: 2000 movs r0, #0 +1001267c: f009 f8fe bl 1001b87c +10012680: 2809 cmp r0, #9 +10012682: 4606 mov r6, r0 +10012684: d913 bls.n 100126ae +10012686: 2500 movs r5, #0 +10012688: 480c ldr r0, [pc, #48] ; (100126bc ) +1001268a: a901 add r1, sp, #4 +1001268c: 9403 str r4, [sp, #12] +1001268e: 9501 str r5, [sp, #4] +10012690: f007 fc66 bl 10019f60 +10012694: 6860 ldr r0, [r4, #4] +10012696: 4629 mov r1, r5 +10012698: 3010 adds r0, #16 +1001269a: f007 fce9 bl 1001a070 +1001269e: 4628 mov r0, r5 +100126a0: 4631 mov r1, r6 +100126a2: f009 f8ff bl 1001b8a4 +100126a6: 7a20 ldrb r0, [r4, #8] +100126a8: b240 sxtb r0, r0 +100126aa: b006 add sp, #24 +100126ac: bd70 pop {r4, r5, r6, pc} +100126ae: 2000 movs r0, #0 +100126b0: 210a movs r1, #10 +100126b2: f009 f8f7 bl 1001b8a4 +100126b6: e7e6 b.n 10012686 +100126b8: 4628 mov r0, r5 +100126ba: e7f5 b.n 100126a8 +100126bc: 10050ca8 .word 0x10050ca8 + +100126c0 : +100126c0: b530 push {r4, r5, lr} +100126c2: b083 sub sp, #12 +100126c4: 4605 mov r5, r0 +100126c6: 460c mov r4, r1 +100126c8: f002 ff08 bl 100154dc +100126cc: 4a09 ldr r2, [pc, #36] ; (100126f4 ) +100126ce: 4b0a ldr r3, [pc, #40] ; (100126f8 ) +100126d0: 2106 movs r1, #6 +100126d2: 480a ldr r0, [pc, #40] ; (100126fc ) +100126d4: 6015 str r5, [r2, #0] +100126d6: 601c str r4, [r3, #0] +100126d8: f007 fc28 bl 10019f2c +100126dc: 2309 movs r3, #9 +100126de: 9300 str r3, [sp, #0] +100126e0: 4907 ldr r1, [pc, #28] ; (10012700 ) +100126e2: 2200 movs r2, #0 +100126e4: f44f 737a mov.w r3, #1000 ; 0x3e8 +100126e8: 4806 ldr r0, [pc, #24] ; (10012704 ) +100126ea: f007 fd07 bl 1001a0fc +100126ee: b003 add sp, #12 +100126f0: bd30 pop {r4, r5, pc} +100126f2: bf00 nop +100126f4: 10050cb0 .word 0x10050cb0 +100126f8: 10050cac .word 0x10050cac +100126fc: 10050ca8 .word 0x10050ca8 +10012700: 100124e9 .word 0x100124e9 +10012704: 10047c80 .word 0x10047c80 + +10012708 : +10012708: b430 push {r4, r5} +1001270a: 6a43 ldr r3, [r0, #36] ; 0x24 +1001270c: 2101 movs r1, #1 +1001270e: 2200 movs r2, #0 +10012710: 7119 strb r1, [r3, #4] +10012712: 715a strb r2, [r3, #5] +10012714: f890 202e ldrb.w r2, [r0, #46] ; 0x2e +10012718: f890 1030 ldrb.w r1, [r0, #48] ; 0x30 +1001271c: 0412 lsls r2, r2, #16 +1001271e: f890 502f ldrb.w r5, [r0, #47] ; 0x2f +10012722: ea42 6201 orr.w r2, r2, r1, lsl #24 +10012726: f890 402d ldrb.w r4, [r0, #45] ; 0x2d +1001272a: 6a41 ldr r1, [r0, #36] ; 0x24 +1001272c: 432a orrs r2, r5 +1001272e: ea42 2204 orr.w r2, r2, r4, lsl #8 +10012732: b191 cbz r1, 1001275a +10012734: 7a48 ldrb r0, [r1, #9] +10012736: 490a ldr r1, [pc, #40] ; (10012760 ) +10012738: 4402 add r2, r0 +1001273a: fba1 0102 umull r0, r1, r1, r2 +1001273e: bc30 pop {r4, r5} +10012740: 08c9 lsrs r1, r1, #3 +10012742: 7a58 ldrb r0, [r3, #9] +10012744: eb01 0181 add.w r1, r1, r1, lsl #2 +10012748: eba2 0241 sub.w r2, r2, r1, lsl #1 +1001274c: 280a cmp r0, #10 +1001274e: 80da strh r2, [r3, #6] +10012750: bf84 itt hi +10012752: f44f 7216 movhi.w r2, #600 ; 0x258 +10012756: 80da strhhi r2, [r3, #6] +10012758: 4770 bx lr +1001275a: 4608 mov r0, r1 +1001275c: e7eb b.n 10012736 +1001275e: bf00 nop +10012760: cccccccd .word 0xcccccccd + +10012764 : +10012764: b510 push {r4, lr} +10012766: 6a43 ldr r3, [r0, #36] ; 0x24 +10012768: 4c07 ldr r4, [pc, #28] ; (10012788 ) +1001276a: b084 sub sp, #16 +1001276c: f100 012b add.w r1, r0, #43 ; 0x2b +10012770: 2201 movs r2, #1 +10012772: 9300 str r3, [sp, #0] +10012774: 9302 str r3, [sp, #8] +10012776: 9203 str r2, [sp, #12] +10012778: 460b mov r3, r1 +1001277a: 9401 str r4, [sp, #4] +1001277c: 4a03 ldr r2, [pc, #12] ; (1001278c ) +1001277e: f006 ff87 bl 10019690 +10012782: b004 add sp, #16 +10012784: bd10 pop {r4, pc} +10012786: bf00 nop +10012788: 10047d10 .word 0x10047d10 +1001278c: 10047d08 .word 0x10047d08 + +10012790 : +10012790: b570 push {r4, r5, r6, lr} +10012792: f890 3031 ldrb.w r3, [r0, #49] ; 0x31 +10012796: 4604 mov r4, r0 +10012798: 07db lsls r3, r3, #31 +1001279a: 6a46 ldr r6, [r0, #36] ; 0x24 +1001279c: d431 bmi.n 10012802 +1001279e: 2500 movs r5, #0 +100127a0: 6065 str r5, [r4, #4] +100127a2: 60a5 str r5, [r4, #8] +100127a4: 60e5 str r5, [r4, #12] +100127a6: b37e cbz r6, 10012808 +100127a8: 7135 strb r5, [r6, #4] +100127aa: 80f5 strh r5, [r6, #6] +100127ac: 7175 strb r5, [r6, #5] +100127ae: 6035 str r5, [r6, #0] +100127b0: 7235 strb r5, [r6, #8] +100127b2: f894 2030 ldrb.w r2, [r4, #48] ; 0x30 +100127b6: f894 302f ldrb.w r3, [r4, #47] ; 0x2f +100127ba: 481a ldr r0, [pc, #104] ; (10012824 ) +100127bc: ea43 2302 orr.w r3, r3, r2, lsl #8 +100127c0: 4418 add r0, r3 +100127c2: f001 fb2b bl 10013e1c +100127c6: f001 fb2b bl 10013e20 +100127ca: 6a63 ldr r3, [r4, #36] ; 0x24 +100127cc: 4a16 ldr r2, [pc, #88] ; (10012828 ) +100127ce: 7a5b ldrb r3, [r3, #9] +100127d0: 4418 add r0, r3 +100127d2: b280 uxth r0, r0 +100127d4: f040 4029 orr.w r0, r0, #2835349504 ; 0xa9000000 +100127d8: f440 007e orr.w r0, r0, #16646144 ; 0xfe0000 +100127dc: 4290 cmp r0, r2 +100127de: d90d bls.n 100127fc +100127e0: 4b12 ldr r3, [pc, #72] ; (1001282c ) +100127e2: 4298 cmp r0, r3 +100127e4: bf88 it hi +100127e6: f5a0 407e subhi.w r0, r0, #65024 ; 0xfe00 +100127ea: f001 fb17 bl 10013e1c +100127ee: 6030 str r0, [r6, #0] +100127f0: 4620 mov r0, r4 +100127f2: f7ff ff89 bl 10012708 +100127f6: 2000 movs r0, #0 +100127f8: b240 sxtb r0, r0 +100127fa: bd70 pop {r4, r5, r6, pc} +100127fc: f500 407e add.w r0, r0, #65024 ; 0xfe00 +10012800: e7f3 b.n 100127ea +10012802: f003 fa85 bl 10015d10 +10012806: e7ca b.n 1001279e +10012808: 200c movs r0, #12 +1001280a: f003 f8f1 bl 100159f0 +1001280e: 4606 mov r6, r0 +10012810: b128 cbz r0, 1001281e +10012812: 4629 mov r1, r5 +10012814: 220c movs r2, #12 +10012816: f02f fca9 bl 1004216c +1001281a: 6266 str r6, [r4, #36] ; 0x24 +1001281c: e7c9 b.n 100127b2 +1001281e: 20ff movs r0, #255 ; 0xff +10012820: e7ea b.n 100127f8 +10012822: bf00 nop +10012824: a9fe0100 .word 0xa9fe0100 +10012828: a9fe00ff .word 0xa9fe00ff +1001282c: a9fefeff .word 0xa9fefeff + +10012830 : +10012830: b570 push {r4, r5, r6, lr} +10012832: 4b44 ldr r3, [pc, #272] ; (10012944 ) +10012834: b086 sub sp, #24 +10012836: 681c ldr r4, [r3, #0] +10012838: b1ec cbz r4, 10012876 +1001283a: 4e43 ldr r6, [pc, #268] ; (10012948 ) +1001283c: 4d43 ldr r5, [pc, #268] ; (1001294c ) +1001283e: e007 b.n 10012850 +10012840: 2a02 cmp r2, #2 +10012842: d103 bne.n 1001284c +10012844: 88da ldrh r2, [r3, #6] +10012846: b1c2 cbz r2, 1001287a +10012848: 3a01 subs r2, #1 +1001284a: 80da strh r2, [r3, #6] +1001284c: 6824 ldr r4, [r4, #0] +1001284e: b194 cbz r4, 10012876 +10012850: 6a63 ldr r3, [r4, #36] ; 0x24 +10012852: 2b00 cmp r3, #0 +10012854: d0fa beq.n 1001284c +10012856: 7a1a ldrb r2, [r3, #8] +10012858: b112 cbz r2, 10012860 +1001285a: 3a01 subs r2, #1 +1001285c: 721a strb r2, [r3, #8] +1001285e: 6a63 ldr r3, [r4, #36] ; 0x24 +10012860: 791a ldrb r2, [r3, #4] +10012862: 2a01 cmp r2, #1 +10012864: d1ec bne.n 10012840 +10012866: 88d9 ldrh r1, [r3, #6] +10012868: 2900 cmp r1, #0 +1001286a: d02e beq.n 100128ca +1001286c: 6824 ldr r4, [r4, #0] +1001286e: 3901 subs r1, #1 +10012870: 80d9 strh r1, [r3, #6] +10012872: 2c00 cmp r4, #0 +10012874: d1ec bne.n 10012850 +10012876: b006 add sp, #24 +10012878: bd70 pop {r4, r5, r6, pc} +1001287a: 795a ldrb r2, [r3, #5] +1001287c: 2a00 cmp r2, #0 +1001287e: d12f bne.n 100128e0 +10012880: 4619 mov r1, r3 +10012882: 4620 mov r0, r4 +10012884: f64f 73ff movw r3, #65535 ; 0xffff +10012888: 9205 str r2, [sp, #20] +1001288a: 9304 str r3, [sp, #16] +1001288c: f003 f994 bl 10015bb8 +10012890: 4620 mov r0, r4 +10012892: a904 add r1, sp, #16 +10012894: f003 fa16 bl 10015cc4 +10012898: 4620 mov r0, r4 +1001289a: a905 add r1, sp, #20 +1001289c: f003 fa0e bl 10015cbc +100128a0: 4620 mov r0, r4 +100128a2: f003 fa19 bl 10015cd8 +100128a6: 6a63 ldr r3, [r4, #36] ; 0x24 +100128a8: 2114 movs r1, #20 +100128aa: 795a ldrb r2, [r3, #5] +100128ac: 80d9 strh r1, [r3, #6] +100128ae: 3201 adds r2, #1 +100128b0: 715a strb r2, [r3, #5] +100128b2: 6a63 ldr r3, [r4, #36] ; 0x24 +100128b4: 795a ldrb r2, [r3, #5] +100128b6: 2a01 cmp r2, #1 +100128b8: d9c8 bls.n 1001284c +100128ba: 2203 movs r2, #3 +100128bc: 711a strb r2, [r3, #4] +100128be: 6a62 ldr r2, [r4, #36] ; 0x24 +100128c0: 2300 movs r3, #0 +100128c2: 7153 strb r3, [r2, #5] +100128c4: 6a62 ldr r2, [r4, #36] ; 0x24 +100128c6: 80d3 strh r3, [r2, #6] +100128c8: e7c0 b.n 1001284c +100128ca: 7958 ldrb r0, [r3, #5] +100128cc: 2802 cmp r0, #2 +100128ce: d90b bls.n 100128e8 +100128d0: 2202 movs r2, #2 +100128d2: 711a strb r2, [r3, #4] +100128d4: 6a63 ldr r3, [r4, #36] ; 0x24 +100128d6: 2214 movs r2, #20 +100128d8: 7159 strb r1, [r3, #5] +100128da: 6a63 ldr r3, [r4, #36] ; 0x24 +100128dc: 80da strh r2, [r3, #6] +100128de: e7b5 b.n 1001284c +100128e0: 4620 mov r0, r4 +100128e2: f7ff ff3f bl 10012764 +100128e6: e7de b.n 100128a6 +100128e8: f104 012b add.w r1, r4, #43 ; 0x2b +100128ec: 9302 str r3, [sp, #8] +100128ee: 9203 str r2, [sp, #12] +100128f0: 460b mov r3, r1 +100128f2: 4a17 ldr r2, [pc, #92] ; (10012950 ) +100128f4: 9600 str r6, [sp, #0] +100128f6: 9501 str r5, [sp, #4] +100128f8: 4620 mov r0, r4 +100128fa: f006 fec9 bl 10019690 +100128fe: 6a63 ldr r3, [r4, #36] ; 0x24 +10012900: 795a ldrb r2, [r3, #5] +10012902: 3201 adds r2, #1 +10012904: 715a strb r2, [r3, #5] +10012906: f894 302e ldrb.w r3, [r4, #46] ; 0x2e +1001290a: f894 2030 ldrb.w r2, [r4, #48] ; 0x30 +1001290e: 041b lsls r3, r3, #16 +10012910: f894 002f ldrb.w r0, [r4, #47] ; 0x2f +10012914: ea43 6202 orr.w r2, r3, r2, lsl #24 +10012918: f894 102d ldrb.w r1, [r4, #45] ; 0x2d +1001291c: 6a63 ldr r3, [r4, #36] ; 0x24 +1001291e: 4302 orrs r2, r0 +10012920: ea42 2201 orr.w r2, r2, r1, lsl #8 +10012924: b163 cbz r3, 10012940 +10012926: 7a58 ldrb r0, [r3, #9] +10012928: 490a ldr r1, [pc, #40] ; (10012954 ) +1001292a: 4402 add r2, r0 +1001292c: fba1 0102 umull r0, r1, r1, r2 +10012930: 08c9 lsrs r1, r1, #3 +10012932: eb01 0181 add.w r1, r1, r1, lsl #2 +10012936: eba2 0241 sub.w r2, r2, r1, lsl #1 +1001293a: 320a adds r2, #10 +1001293c: 80da strh r2, [r3, #6] +1001293e: e785 b.n 1001284c +10012940: 4618 mov r0, r3 +10012942: e7f1 b.n 10012928 +10012944: 100513a4 .word 0x100513a4 +10012948: 10047c8c .word 0x10047c8c +1001294c: 10047d10 .word 0x10047d10 +10012950: 10047d08 .word 0x10047d08 +10012954: cccccccd .word 0xcccccccd + +10012958 : +10012958: b530 push {r4, r5, lr} +1001295a: 6a43 ldr r3, [r0, #36] ; 0x24 +1001295c: b085 sub sp, #20 +1001295e: 4604 mov r4, r0 +10012960: 460d mov r5, r1 +10012962: b10b cbz r3, 10012968 +10012964: 791b ldrb r3, [r3, #4] +10012966: b90b cbnz r3, 1001296c +10012968: b005 add sp, #20 +1001296a: bd30 pop {r4, r5, pc} +1001296c: f104 012b add.w r1, r4, #43 ; 0x2b +10012970: 2206 movs r2, #6 +10012972: a802 add r0, sp, #8 +10012974: f02f fbf4 bl 10042160 +10012978: f105 010e add.w r1, r5, #14 +1001297c: 2204 movs r2, #4 +1001297e: 4668 mov r0, sp +10012980: f02f fbee bl 10042160 +10012984: 2204 movs r2, #4 +10012986: a801 add r0, sp, #4 +10012988: f105 0118 add.w r1, r5, #24 +1001298c: f02f fbe8 bl 10042160 +10012990: 6a63 ldr r3, [r4, #36] ; 0x24 +10012992: 791a ldrb r2, [r3, #4] +10012994: 2a01 cmp r2, #1 +10012996: d018 beq.n 100129ca +10012998: 889a ldrh r2, [r3, #4] +1001299a: 2a02 cmp r2, #2 +1001299c: d015 beq.n 100129ca +1001299e: 681a ldr r2, [r3, #0] +100129a0: 9b00 ldr r3, [sp, #0] +100129a2: 4293 cmp r3, r2 +100129a4: d1e0 bne.n 10012968 +100129a6: a802 add r0, sp, #8 +100129a8: f105 0108 add.w r1, r5, #8 +100129ac: 2206 movs r2, #6 +100129ae: f02f fbd1 bl 10042154 +100129b2: 2800 cmp r0, #0 +100129b4: d0d8 beq.n 10012968 +100129b6: 6a63 ldr r3, [r4, #36] ; 0x24 +100129b8: 7a1a ldrb r2, [r3, #8] +100129ba: b9b2 cbnz r2, 100129ea +100129bc: 4620 mov r0, r4 +100129be: f7ff fed1 bl 10012764 +100129c2: 6a63 ldr r3, [r4, #36] ; 0x24 +100129c4: 2264 movs r2, #100 ; 0x64 +100129c6: 721a strb r2, [r3, #8] +100129c8: e7ce b.n 10012968 +100129ca: 681a ldr r2, [r3, #0] +100129cc: 9900 ldr r1, [sp, #0] +100129ce: 4291 cmp r1, r2 +100129d0: d00b beq.n 100129ea +100129d2: 9b01 ldr r3, [sp, #4] +100129d4: 429a cmp r2, r3 +100129d6: d1c7 bne.n 10012968 +100129d8: a802 add r0, sp, #8 +100129da: f105 0108 add.w r1, r5, #8 +100129de: 2206 movs r2, #6 +100129e0: f02f fbb8 bl 10042154 +100129e4: 2800 cmp r0, #0 +100129e6: d0bf beq.n 10012968 +100129e8: 6a63 ldr r3, [r4, #36] ; 0x24 +100129ea: 7a5a ldrb r2, [r3, #9] +100129ec: 4620 mov r0, r4 +100129ee: 3201 adds r2, #1 +100129f0: 725a strb r2, [r3, #9] +100129f2: f7ff fecd bl 10012790 +100129f6: e7b7 b.n 10012968 + +100129f8 : +100129f8: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +100129fc: 4607 mov r7, r0 +100129fe: b085 sub sp, #20 +10012a00: 4688 mov r8, r1 +10012a02: 4615 mov r5, r2 +10012a04: 2001 movs r0, #1 +10012a06: 2124 movs r1, #36 ; 0x24 +10012a08: 2200 movs r2, #0 +10012a0a: f003 fa63 bl 10015ed4 +10012a0e: 4606 mov r6, r0 +10012a10: b338 cbz r0, 10012a62 +10012a12: 6844 ldr r4, [r0, #4] +10012a14: f8d7 9000 ldr.w r9, [r7] +10012a18: 7065 strb r5, [r4, #1] +10012a1a: f884 8000 strb.w r8, [r4] +10012a1e: 6840 ldr r0, [r0, #4] +10012a20: 2500 movs r5, #0 +10012a22: 6839 ldr r1, [r7, #0] +10012a24: 221c movs r2, #28 +10012a26: 3008 adds r0, #8 +10012a28: 7125 strb r5, [r4, #4] +10012a2a: 7165 strb r5, [r4, #5] +10012a2c: 71a5 strb r5, [r4, #6] +10012a2e: 71e5 strb r5, [r4, #7] +10012a30: f02f fb96 bl 10042160 +10012a34: 8971 ldrh r1, [r6, #10] +10012a36: 70a5 strb r5, [r4, #2] +10012a38: 70e5 strb r5, [r4, #3] +10012a3a: 4620 mov r0, r4 +10012a3c: f000 fb7e bl 1001313c +10012a40: 8060 strh r0, [r4, #2] +10012a42: f8d9 300c ldr.w r3, [r9, #12] +10012a46: aa04 add r2, sp, #16 +10012a48: f842 3d04 str.w r3, [r2, #-4]! +10012a4c: 2301 movs r3, #1 +10012a4e: 9301 str r3, [sp, #4] +10012a50: 9500 str r5, [sp, #0] +10012a52: 4629 mov r1, r5 +10012a54: 4630 mov r0, r6 +10012a56: 23ff movs r3, #255 ; 0xff +10012a58: f000 fd8c bl 10013574 +10012a5c: 4630 mov r0, r6 +10012a5e: f003 fa03 bl 10015e68 +10012a62: b005 add sp, #20 +10012a64: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +10012a68 : +10012a68: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10012a6c: 6845 ldr r5, [r0, #4] +10012a6e: b084 sub sp, #16 +10012a70: 782e ldrb r6, [r5, #0] +10012a72: 4688 mov r8, r1 +10012a74: f006 060f and.w r6, r6, #15 +10012a78: 00b6 lsls r6, r6, #2 +10012a7a: 4277 negs r7, r6 +10012a7c: 4639 mov r1, r7 +10012a7e: 4604 mov r4, r0 +10012a80: f003 f9bc bl 10015dfc +10012a84: 2800 cmp r0, #0 +10012a86: d176 bne.n 10012b76 +10012a88: 8923 ldrh r3, [r4, #8] +10012a8a: 2b03 cmp r3, #3 +10012a8c: d973 bls.n 10012b76 +10012a8e: 6863 ldr r3, [r4, #4] +10012a90: 781b ldrb r3, [r3, #0] +10012a92: 2b08 cmp r3, #8 +10012a94: d16f bne.n 10012b76 +10012a96: f8df a0f0 ldr.w sl, [pc, #240] ; 10012b88 +10012a9a: 4641 mov r1, r8 +10012a9c: f8da 9000 ldr.w r9, [sl] +10012aa0: 4648 mov r0, r9 +10012aa2: f000 fd89 bl 100135b8 +10012aa6: 2800 cmp r0, #0 +10012aa8: d165 bne.n 10012b76 +10012aaa: f009 09f0 and.w r9, r9, #240 ; 0xf0 +10012aae: f1b9 0fe0 cmp.w r9, #224 ; 0xe0 +10012ab2: d060 beq.n 10012b76 +10012ab4: 8923 ldrh r3, [r4, #8] +10012ab6: 2b07 cmp r3, #7 +10012ab8: d95d bls.n 10012b76 +10012aba: 4620 mov r0, r4 +10012abc: f000 fb44 bl 10013148 +10012ac0: 2800 cmp r0, #0 +10012ac2: d158 bne.n 10012b76 +10012ac4: 4620 mov r0, r4 +10012ac6: 2122 movs r1, #34 ; 0x22 +10012ac8: b2b6 uxth r6, r6 +10012aca: f003 f997 bl 10015dfc +10012ace: b300 cbz r0, 10012b12 +10012ad0: b236 sxth r6, r6 +10012ad2: 4631 mov r1, r6 +10012ad4: 4620 mov r0, r4 +10012ad6: f003 f991 bl 10015dfc +10012ada: 2800 cmp r0, #0 +10012adc: d14b bne.n 10012b76 +10012ade: 4602 mov r2, r0 +10012ae0: 8921 ldrh r1, [r4, #8] +10012ae2: 2002 movs r0, #2 +10012ae4: f003 f9f6 bl 10015ed4 +10012ae8: 4681 mov r9, r0 +10012aea: 2800 cmp r0, #0 +10012aec: d043 beq.n 10012b76 +10012aee: 4621 mov r1, r4 +10012af0: f003 faea bl 100160c8 +10012af4: 2800 cmp r0, #0 +10012af6: d13e bne.n 10012b76 +10012af8: 4639 mov r1, r7 +10012afa: 4648 mov r0, r9 +10012afc: f8d9 5004 ldr.w r5, [r9, #4] +10012b00: f003 f97c bl 10015dfc +10012b04: 2800 cmp r0, #0 +10012b06: d136 bne.n 10012b76 +10012b08: 4620 mov r0, r4 +10012b0a: f003 f9ad bl 10015e68 +10012b0e: 464c mov r4, r9 +10012b10: e006 b.n 10012b20 +10012b12: 4620 mov r0, r4 +10012b14: f06f 0121 mvn.w r1, #33 ; 0x21 +10012b18: f003 f970 bl 10015dfc +10012b1c: bb58 cbnz r0, 10012b76 +10012b1e: b236 sxth r6, r6 +10012b20: 4b18 ldr r3, [pc, #96] ; (10012b84 ) +10012b22: f8da 1000 ldr.w r1, [sl] +10012b26: 681a ldr r2, [r3, #0] +10012b28: 6863 ldr r3, [r4, #4] +10012b2a: 60e9 str r1, [r5, #12] +10012b2c: 612a str r2, [r5, #16] +10012b2e: 885a ldrh r2, [r3, #2] +10012b30: f64f 71f6 movw r1, #65526 ; 0xfff6 +10012b34: 428a cmp r2, r1 +10012b36: bf8c ite hi +10012b38: 3209 addhi r2, #9 +10012b3a: 3208 addls r2, #8 +10012b3c: 805a strh r2, [r3, #2] +10012b3e: 2000 movs r0, #0 +10012b40: 2200 movs r2, #0 +10012b42: 27ff movs r7, #255 ; 0xff +10012b44: 7018 strb r0, [r3, #0] +10012b46: 2114 movs r1, #20 +10012b48: 722f strb r7, [r5, #8] +10012b4a: 72aa strb r2, [r5, #10] +10012b4c: 72ea strb r2, [r5, #11] +10012b4e: 4628 mov r0, r5 +10012b50: f000 faf4 bl 1001313c +10012b54: 4631 mov r1, r6 +10012b56: 8168 strh r0, [r5, #10] +10012b58: 4620 mov r0, r4 +10012b5a: f003 f94f bl 10015dfc +10012b5e: b950 cbnz r0, 10012b76 +10012b60: 2101 movs r1, #1 +10012b62: 9000 str r0, [sp, #0] +10012b64: 4602 mov r2, r0 +10012b66: 9101 str r1, [sp, #4] +10012b68: f8cd 8008 str.w r8, [sp, #8] +10012b6c: 463b mov r3, r7 +10012b6e: 4620 mov r0, r4 +10012b70: 4905 ldr r1, [pc, #20] ; (10012b88 ) +10012b72: f000 fced bl 10013550 +10012b76: 4620 mov r0, r4 +10012b78: b004 add sp, #16 +10012b7a: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10012b7e: f003 b973 b.w 10015e68 +10012b82: bf00 nop +10012b84: 10050cc8 .word 0x10050cc8 +10012b88: 10050ccc .word 0x10050ccc + +10012b8c : +10012b8c: b2ca uxtb r2, r1 +10012b8e: 3004 adds r0, #4 +10012b90: 2103 movs r1, #3 +10012b92: f7ff bf31 b.w 100129f8 +10012b96: bf00 nop + +10012b98 : +10012b98: b2ca uxtb r2, r1 +10012b9a: 3004 adds r0, #4 +10012b9c: 210b movs r1, #11 +10012b9e: f7ff bf2b b.w 100129f8 +10012ba2: bf00 nop + +10012ba4 : +10012ba4: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10012ba8: 4b25 ldr r3, [pc, #148] ; (10012c40 ) +10012baa: 4606 mov r6, r0 +10012bac: 681b ldr r3, [r3, #0] +10012bae: 2000 movs r0, #0 +10012bb0: b089 sub sp, #36 ; 0x24 +10012bb2: 460f mov r7, r1 +10012bb4: 4602 mov r2, r0 +10012bb6: 2108 movs r1, #8 +10012bb8: 9306 str r3, [sp, #24] +10012bba: f003 f98b bl 10015ed4 +10012bbe: 4604 mov r4, r0 +10012bc0: b150 cbz r0, 10012bd8 +10012bc2: 6873 ldr r3, [r6, #4] +10012bc4: 2f16 cmp r7, #22 +10012bc6: 685b ldr r3, [r3, #4] +10012bc8: 6845 ldr r5, [r0, #4] +10012bca: 9306 str r3, [sp, #24] +10012bcc: d007 beq.n 10012bde +10012bce: 2f17 cmp r7, #23 +10012bd0: d030 beq.n 10012c34 +10012bd2: 4620 mov r0, r4 +10012bd4: f003 f948 bl 10015e68 +10012bd8: b009 add sp, #36 ; 0x24 +10012bda: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10012bde: 68b3 ldr r3, [r6, #8] +10012be0: 2201 movs r2, #1 +10012be2: 606b str r3, [r5, #4] +10012be4: f106 0908 add.w r9, r6, #8 +10012be8: 7332 strb r2, [r6, #12] +10012bea: f04f 0800 mov.w r8, #0 +10012bee: 702f strb r7, [r5, #0] +10012bf0: f885 8001 strb.w r8, [r5, #1] +10012bf4: f885 8002 strb.w r8, [r5, #2] +10012bf8: f885 8003 strb.w r8, [r5, #3] +10012bfc: 4628 mov r0, r5 +10012bfe: 2108 movs r1, #8 +10012c00: f000 fa9c bl 1001313c +10012c04: 6877 ldr r7, [r6, #4] +10012c06: a907 add r1, sp, #28 +10012c08: 2602 movs r6, #2 +10012c0a: 2304 movs r3, #4 +10012c0c: 8068 strh r0, [r5, #2] +10012c0e: 464a mov r2, r9 +10012c10: 9103 str r1, [sp, #12] +10012c12: 9304 str r3, [sp, #16] +10012c14: f240 4594 movw r5, #1172 ; 0x494 +10012c18: f8cd 8000 str.w r8, [sp] +10012c1c: 9702 str r7, [sp, #8] +10012c1e: 9601 str r6, [sp, #4] +10012c20: 4620 mov r0, r4 +10012c22: a906 add r1, sp, #24 +10012c24: 2301 movs r3, #1 +10012c26: f8ad 801e strh.w r8, [sp, #30] +10012c2a: f8ad 501c strh.w r5, [sp, #28] +10012c2e: f000 fbbf bl 100133b0 +10012c32: e7ce b.n 10012bd2 +10012c34: 68b3 ldr r3, [r6, #8] +10012c36: f8df 900c ldr.w r9, [pc, #12] ; 10012c44 +10012c3a: 606b str r3, [r5, #4] +10012c3c: e7d5 b.n 10012bea +10012c3e: bf00 nop +10012c40: 10047c8c .word 0x10047c8c +10012c44: 10050cb8 .word 0x10050cb8 + +10012c48 : +10012c48: b538 push {r3, r4, r5, lr} +10012c4a: 7b43 ldrb r3, [r0, #13] +10012c4c: 4604 mov r4, r0 +10012c4e: 2b02 cmp r3, #2 +10012c50: d004 beq.n 10012c5c +10012c52: 2b01 cmp r3, #1 +10012c54: d000 beq.n 10012c58 +10012c56: bd38 pop {r3, r4, r5, pc} +10012c58: 89c3 ldrh r3, [r0, #14] +10012c5a: b973 cbnz r3, 10012c7a +10012c5c: b159 cbz r1, 10012c76 +10012c5e: 1e4d subs r5, r1, #1 +10012c60: f02f fbf4 bl 1004244c +10012c64: fb90 f1f5 sdiv r1, r0, r5 +10012c68: fb01 0015 mls r0, r1, r5, r0 +10012c6c: 2301 movs r3, #1 +10012c6e: 18c1 adds r1, r0, r3 +10012c70: 7363 strb r3, [r4, #13] +10012c72: 81e1 strh r1, [r4, #14] +10012c74: bd38 pop {r3, r4, r5, pc} +10012c76: 460d mov r5, r1 +10012c78: e7f2 b.n 10012c60 +10012c7a: 428b cmp r3, r1 +10012c7c: d8ee bhi.n 10012c5c +10012c7e: e7ea b.n 10012c56 + +10012c80 : +10012c80: b570 push {r4, r5, r6, lr} +10012c82: 4e11 ldr r6, [pc, #68] ; (10012cc8 ) +10012c84: 4604 mov r4, r0 +10012c86: 6833 ldr r3, [r6, #0] +10012c88: 460d mov r5, r1 +10012c8a: b913 cbnz r3, 10012c92 +10012c8c: e00a b.n 10012ca4 +10012c8e: 681b ldr r3, [r3, #0] +10012c90: b143 cbz r3, 10012ca4 +10012c92: 685a ldr r2, [r3, #4] +10012c94: 4294 cmp r4, r2 +10012c96: d1fa bne.n 10012c8e +10012c98: 6898 ldr r0, [r3, #8] +10012c9a: 682a ldr r2, [r5, #0] +10012c9c: 4290 cmp r0, r2 +10012c9e: d1f6 bne.n 10012c8e +10012ca0: 4618 mov r0, r3 +10012ca2: bd70 pop {r4, r5, r6, pc} +10012ca4: 200b movs r0, #11 +10012ca6: f002 ff5b bl 10015b60 +10012caa: b160 cbz r0, 10012cc6 +10012cac: 6044 str r4, [r0, #4] +10012cae: b105 cbz r5, 10012cb2 +10012cb0: 682d ldr r5, [r5, #0] +10012cb2: 2300 movs r3, #0 +10012cb4: 6832 ldr r2, [r6, #0] +10012cb6: 7343 strb r3, [r0, #13] +10012cb8: 7303 strb r3, [r0, #12] +10012cba: 7403 strb r3, [r0, #16] +10012cbc: 6085 str r5, [r0, #8] +10012cbe: 6002 str r2, [r0, #0] +10012cc0: 6030 str r0, [r6, #0] +10012cc2: 81c3 strh r3, [r0, #14] +10012cc4: bd70 pop {r4, r5, r6, pc} +10012cc6: bd70 pop {r4, r5, r6, pc} +10012cc8: 10050cbc .word 0x10050cbc + +10012ccc : +10012ccc: 4903 ldr r1, [pc, #12] ; (10012cdc ) +10012cce: 4804 ldr r0, [pc, #16] ; (10012ce0 ) +10012cd0: 4b04 ldr r3, [pc, #16] ; (10012ce4 ) +10012cd2: 4a05 ldr r2, [pc, #20] ; (10012ce8 ) +10012cd4: 6008 str r0, [r1, #0] +10012cd6: 601a str r2, [r3, #0] +10012cd8: 4770 bx lr +10012cda: bf00 nop +10012cdc: 10050cb4 .word 0x10050cb4 +10012ce0: 010000e0 .word 0x010000e0 +10012ce4: 10050cb8 .word 0x10050cb8 +10012ce8: 020000e0 .word 0x020000e0 + +10012cec : +10012cec: b510 push {r4, lr} +10012cee: 490c ldr r1, [pc, #48] ; (10012d20 ) +10012cf0: 4604 mov r4, r0 +10012cf2: f7ff ffc5 bl 10012c80 +10012cf6: b180 cbz r0, 10012d1a +10012cf8: 7c01 ldrb r1, [r0, #16] +10012cfa: 2202 movs r2, #2 +10012cfc: 3101 adds r1, #1 +10012cfe: 7401 strb r1, [r0, #16] +10012d00: 7342 strb r2, [r0, #13] +10012d02: 6ba3 ldr r3, [r4, #56] ; 0x38 +10012d04: b133 cbz r3, 10012d14 +10012d06: 4620 mov r0, r4 +10012d08: 4905 ldr r1, [pc, #20] ; (10012d20 ) +10012d0a: 2201 movs r2, #1 +10012d0c: 4798 blx r3 +10012d0e: 2000 movs r0, #0 +10012d10: b240 sxtb r0, r0 +10012d12: bd10 pop {r4, pc} +10012d14: 4618 mov r0, r3 +10012d16: b240 sxtb r0, r0 +10012d18: bd10 pop {r4, pc} +10012d1a: 20ff movs r0, #255 ; 0xff +10012d1c: e7f8 b.n 10012d10 +10012d1e: bf00 nop +10012d20: 10050cb4 .word 0x10050cb4 + +10012d24 : +10012d24: b538 push {r3, r4, r5, lr} +10012d26: 4b08 ldr r3, [pc, #32] ; (10012d48 ) +10012d28: 4605 mov r5, r0 +10012d2a: 681c ldr r4, [r3, #0] +10012d2c: b12c cbz r4, 10012d3a +10012d2e: 6863 ldr r3, [r4, #4] +10012d30: 42ab cmp r3, r5 +10012d32: d003 beq.n 10012d3c +10012d34: 6824 ldr r4, [r4, #0] +10012d36: 2c00 cmp r4, #0 +10012d38: d1f9 bne.n 10012d2e +10012d3a: bd38 pop {r3, r4, r5, pc} +10012d3c: 4620 mov r0, r4 +10012d3e: 2105 movs r1, #5 +10012d40: f7ff ff82 bl 10012c48 +10012d44: e7f6 b.n 10012d34 +10012d46: bf00 nop +10012d48: 10050cbc .word 0x10050cbc + +10012d4c : +10012d4c: b410 push {r4} +10012d4e: 4b07 ldr r3, [pc, #28] ; (10012d6c ) +10012d50: 681b ldr r3, [r3, #0] +10012d52: b133 cbz r3, 10012d62 +10012d54: 685a ldr r2, [r3, #4] +10012d56: 4282 cmp r2, r0 +10012d58: d1fa bne.n 10012d50 +10012d5a: 689c ldr r4, [r3, #8] +10012d5c: 680a ldr r2, [r1, #0] +10012d5e: 4294 cmp r4, r2 +10012d60: d1f6 bne.n 10012d50 +10012d62: 4618 mov r0, r3 +10012d64: f85d 4b04 ldr.w r4, [sp], #4 +10012d68: 4770 bx lr +10012d6a: bf00 nop +10012d6c: 10050cbc .word 0x10050cbc + +10012d70 : +10012d70: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10012d74: 6843 ldr r3, [r0, #4] +10012d76: 460d mov r5, r1 +10012d78: 781b ldrb r3, [r3, #0] +10012d7a: b082 sub sp, #8 +10012d7c: f003 030f and.w r3, r3, #15 +10012d80: 0099 lsls r1, r3, #2 +10012d82: 4249 negs r1, r1 +10012d84: 4606 mov r6, r0 +10012d86: 4617 mov r7, r2 +10012d88: f003 f838 bl 10015dfc +10012d8c: b910 cbnz r0, 10012d94 +10012d8e: 8971 ldrh r1, [r6, #10] +10012d90: 2907 cmp r1, #7 +10012d92: d805 bhi.n 10012da0 +10012d94: 4630 mov r0, r6 +10012d96: b002 add sp, #8 +10012d98: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +10012d9c: f003 b864 b.w 10015e68 +10012da0: f8d6 8004 ldr.w r8, [r6, #4] +10012da4: 4640 mov r0, r8 +10012da6: f000 f9c9 bl 1001313c +10012daa: 2800 cmp r0, #0 +10012dac: d1f2 bne.n 10012d94 +10012dae: 4b2a ldr r3, [pc, #168] ; (10012e58 ) +10012db0: 681a ldr r2, [r3, #0] +10012db2: 2a00 cmp r2, #0 +10012db4: d0ee beq.n 10012d94 +10012db6: 4613 mov r3, r2 +10012db8: e002 b.n 10012dc0 +10012dba: 681b ldr r3, [r3, #0] +10012dbc: 2b00 cmp r3, #0 +10012dbe: d0e9 beq.n 10012d94 +10012dc0: 685c ldr r4, [r3, #4] +10012dc2: 42a5 cmp r5, r4 +10012dc4: d1f9 bne.n 10012dba +10012dc6: 6899 ldr r1, [r3, #8] +10012dc8: 683c ldr r4, [r7, #0] +10012dca: 42a1 cmp r1, r4 +10012dcc: d1f5 bne.n 10012dba +10012dce: f898 0000 ldrb.w r0, [r8] +10012dd2: 2811 cmp r0, #17 +10012dd4: d00a beq.n 10012dec +10012dd6: 2816 cmp r0, #22 +10012dd8: d1dc bne.n 10012d94 +10012dda: 7b5a ldrb r2, [r3, #13] +10012ddc: 2a01 cmp r2, #1 +10012dde: d1d9 bne.n 10012d94 +10012de0: 2200 movs r2, #0 +10012de2: 2102 movs r1, #2 +10012de4: 81da strh r2, [r3, #14] +10012de6: 731a strb r2, [r3, #12] +10012de8: 7359 strb r1, [r3, #13] +10012dea: e7d3 b.n 10012d94 +10012dec: 4c1b ldr r4, [pc, #108] ; (10012e5c ) +10012dee: 6820 ldr r0, [r4, #0] +10012df0: 4288 cmp r0, r1 +10012df2: d009 beq.n 10012e08 +10012df4: f8d8 2004 ldr.w r2, [r8, #4] +10012df8: 2a00 cmp r2, #0 +10012dfa: d0cb beq.n 10012d94 +10012dfc: 4618 mov r0, r3 +10012dfe: f898 1001 ldrb.w r1, [r8, #1] +10012e02: f7ff ff21 bl 10012c48 +10012e06: e7c5 b.n 10012d94 +10012e08: f8d8 1004 ldr.w r1, [r8, #4] +10012e0c: b9d9 cbnz r1, 10012e46 +10012e0e: f898 3001 ldrb.w r3, [r8, #1] +10012e12: b933 cbnz r3, 10012e22 +10012e14: 230a movs r3, #10 +10012e16: f888 3001 strb.w r3, [r8, #1] +10012e1a: e002 b.n 10012e22 +10012e1c: 6812 ldr r2, [r2, #0] +10012e1e: 2a00 cmp r2, #0 +10012e20: d0b8 beq.n 10012d94 +10012e22: 6853 ldr r3, [r2, #4] +10012e24: 42ab cmp r3, r5 +10012e26: d1f9 bne.n 10012e1c +10012e28: 6891 ldr r1, [r2, #8] +10012e2a: 6823 ldr r3, [r4, #0] +10012e2c: 4610 mov r0, r2 +10012e2e: 4299 cmp r1, r3 +10012e30: d0f4 beq.n 10012e1c +10012e32: f898 1001 ldrb.w r1, [r8, #1] +10012e36: 9201 str r2, [sp, #4] +10012e38: f7ff ff06 bl 10012c48 +10012e3c: 9a01 ldr r2, [sp, #4] +10012e3e: e7ed b.n 10012e1c +10012e40: 6812 ldr r2, [r2, #0] +10012e42: 2a00 cmp r2, #0 +10012e44: d0a6 beq.n 10012d94 +10012e46: 6853 ldr r3, [r2, #4] +10012e48: 429d cmp r5, r3 +10012e4a: d1f9 bne.n 10012e40 +10012e4c: 6893 ldr r3, [r2, #8] +10012e4e: 4299 cmp r1, r3 +10012e50: d1f6 bne.n 10012e40 +10012e52: 4613 mov r3, r2 +10012e54: e7d2 b.n 10012dfc +10012e56: bf00 nop +10012e58: 10050cbc .word 0x10050cbc +10012e5c: 10050cb4 .word 0x10050cb4 + +10012e60 : +10012e60: 680b ldr r3, [r1, #0] +10012e62: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10012e66: f003 02f0 and.w r2, r3, #240 ; 0xf0 +10012e6a: 2ae0 cmp r2, #224 ; 0xe0 +10012e6c: 460f mov r7, r1 +10012e6e: 4606 mov r6, r0 +10012e70: d149 bne.n 10012f06 +10012e72: 4a27 ldr r2, [pc, #156] ; (10012f10 ) +10012e74: 6812 ldr r2, [r2, #0] +10012e76: 4293 cmp r3, r2 +10012e78: d045 beq.n 10012f06 +10012e7a: 4b26 ldr r3, [pc, #152] ; (10012f14 ) +10012e7c: 20fa movs r0, #250 ; 0xfa +10012e7e: 681c ldr r4, [r3, #0] +10012e80: 2c00 cmp r4, #0 +10012e82: d034 beq.n 10012eee +10012e84: f04f 0801 mov.w r8, #1 +10012e88: e002 b.n 10012e90 +10012e8a: 6824 ldr r4, [r4, #0] +10012e8c: 2c00 cmp r4, #0 +10012e8e: d02e beq.n 10012eee +10012e90: f994 3031 ldrsb.w r3, [r4, #49] ; 0x31 +10012e94: 2b00 cmp r3, #0 +10012e96: daf8 bge.n 10012e8a +10012e98: b126 cbz r6, 10012ea4 +10012e9a: 6833 ldr r3, [r6, #0] +10012e9c: b113 cbz r3, 10012ea4 +10012e9e: 6862 ldr r2, [r4, #4] +10012ea0: 4293 cmp r3, r2 +10012ea2: d1f2 bne.n 10012e8a +10012ea4: 4620 mov r0, r4 +10012ea6: 4639 mov r1, r7 +10012ea8: f7ff feea bl 10012c80 +10012eac: 4605 mov r5, r0 +10012eae: b330 cbz r0, 10012efe +10012eb0: 7b43 ldrb r3, [r0, #13] +10012eb2: b9ab cbnz r3, 10012ee0 +10012eb4: 7c03 ldrb r3, [r0, #16] +10012eb6: b92b cbnz r3, 10012ec4 +10012eb8: 6ba3 ldr r3, [r4, #56] ; 0x38 +10012eba: b11b cbz r3, 10012ec4 +10012ebc: 4620 mov r0, r4 +10012ebe: 4639 mov r1, r7 +10012ec0: 2201 movs r2, #1 +10012ec2: 4798 blx r3 +10012ec4: 4628 mov r0, r5 +10012ec6: 2116 movs r1, #22 +10012ec8: f7ff fe6c bl 10012ba4 +10012ecc: f02f fabe bl 1004244c +10012ed0: 4b11 ldr r3, [pc, #68] ; (10012f18 ) +10012ed2: 4003 ands r3, r0 +10012ed4: 2b00 cmp r3, #0 +10012ed6: db0d blt.n 10012ef4 +10012ed8: 3301 adds r3, #1 +10012eda: 81eb strh r3, [r5, #14] +10012edc: f885 800d strb.w r8, [r5, #13] +10012ee0: 7c2b ldrb r3, [r5, #16] +10012ee2: 2000 movs r0, #0 +10012ee4: 3301 adds r3, #1 +10012ee6: 742b strb r3, [r5, #16] +10012ee8: 6824 ldr r4, [r4, #0] +10012eea: 2c00 cmp r4, #0 +10012eec: d1d0 bne.n 10012e90 +10012eee: b240 sxtb r0, r0 +10012ef0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10012ef4: 3b01 subs r3, #1 +10012ef6: f063 0303 orn r3, r3, #3 +10012efa: 3301 adds r3, #1 +10012efc: e7ec b.n 10012ed8 +10012efe: 20ff movs r0, #255 ; 0xff +10012f00: b240 sxtb r0, r0 +10012f02: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10012f06: 20fa movs r0, #250 ; 0xfa +10012f08: b240 sxtb r0, r0 +10012f0a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10012f0e: bf00 nop +10012f10: 10050cb4 .word 0x10050cb4 +10012f14: 100513a4 .word 0x100513a4 +10012f18: 80000003 .word 0x80000003 + +10012f1c : +10012f1c: 680b ldr r3, [r1, #0] +10012f1e: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10012f22: f003 02f0 and.w r2, r3, #240 ; 0xf0 +10012f26: 2ae0 cmp r2, #224 ; 0xe0 +10012f28: 460e mov r6, r1 +10012f2a: 4607 mov r7, r0 +10012f2c: d14e bne.n 10012fcc +10012f2e: 4a32 ldr r2, [pc, #200] ; (10012ff8 ) +10012f30: 6812 ldr r2, [r2, #0] +10012f32: 4293 cmp r3, r2 +10012f34: d04a beq.n 10012fcc +10012f36: 4b31 ldr r3, [pc, #196] ; (10012ffc ) +10012f38: 681d ldr r5, [r3, #0] +10012f3a: 2d00 cmp r5, #0 +10012f3c: d046 beq.n 10012fcc +10012f3e: f8df 80c0 ldr.w r8, [pc, #192] ; 10013000 +10012f42: 20fa movs r0, #250 ; 0xfa +10012f44: e001 b.n 10012f4a +10012f46: 682d ldr r5, [r5, #0] +10012f48: b305 cbz r5, 10012f8c +10012f4a: f995 3031 ldrsb.w r3, [r5, #49] ; 0x31 +10012f4e: 2b00 cmp r3, #0 +10012f50: daf9 bge.n 10012f46 +10012f52: b127 cbz r7, 10012f5e +10012f54: 683b ldr r3, [r7, #0] +10012f56: b113 cbz r3, 10012f5e +10012f58: 686a ldr r2, [r5, #4] +10012f5a: 4293 cmp r3, r2 +10012f5c: d1f3 bne.n 10012f46 +10012f5e: f8d8 4000 ldr.w r4, [r8] +10012f62: b91c cbnz r4, 10012f6c +10012f64: e7ef b.n 10012f46 +10012f66: 6824 ldr r4, [r4, #0] +10012f68: 2c00 cmp r4, #0 +10012f6a: d0ec beq.n 10012f46 +10012f6c: 6863 ldr r3, [r4, #4] +10012f6e: 429d cmp r5, r3 +10012f70: d1f9 bne.n 10012f66 +10012f72: 68a2 ldr r2, [r4, #8] +10012f74: 6833 ldr r3, [r6, #0] +10012f76: 429a cmp r2, r3 +10012f78: d1f5 bne.n 10012f66 +10012f7a: 7c23 ldrb r3, [r4, #16] +10012f7c: 2b01 cmp r3, #1 +10012f7e: d908 bls.n 10012f92 +10012f80: 3b01 subs r3, #1 +10012f82: 7423 strb r3, [r4, #16] +10012f84: 682d ldr r5, [r5, #0] +10012f86: 2000 movs r0, #0 +10012f88: 2d00 cmp r5, #0 +10012f8a: d1de bne.n 10012f4a +10012f8c: b240 sxtb r0, r0 +10012f8e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10012f92: 7b23 ldrb r3, [r4, #12] +10012f94: bb3b cbnz r3, 10012fe6 +10012f96: 6bab ldr r3, [r5, #56] ; 0x38 +10012f98: b11b cbz r3, 10012fa2 +10012f9a: 4628 mov r0, r5 +10012f9c: 4631 mov r1, r6 +10012f9e: 2200 movs r2, #0 +10012fa0: 4798 blx r3 +10012fa2: f8d8 2000 ldr.w r2, [r8] +10012fa6: 42a2 cmp r2, r4 +10012fa8: d022 beq.n 10012ff0 +10012faa: b14a cbz r2, 10012fc0 +10012fac: 6813 ldr r3, [r2, #0] +10012fae: 42a3 cmp r3, r4 +10012fb0: d010 beq.n 10012fd4 +10012fb2: b12b cbz r3, 10012fc0 +10012fb4: 681a ldr r2, [r3, #0] +10012fb6: 42a2 cmp r2, r4 +10012fb8: d00d beq.n 10012fd6 +10012fba: 4613 mov r3, r2 +10012fbc: 2b00 cmp r3, #0 +10012fbe: d1f9 bne.n 10012fb4 +10012fc0: 200b movs r0, #11 +10012fc2: 4621 mov r1, r4 +10012fc4: f002 fde2 bl 10015b8c +10012fc8: 2000 movs r0, #0 +10012fca: e7bc b.n 10012f46 +10012fcc: 20fa movs r0, #250 ; 0xfa +10012fce: b240 sxtb r0, r0 +10012fd0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10012fd4: 4613 mov r3, r2 +10012fd6: 6822 ldr r2, [r4, #0] +10012fd8: 200b movs r0, #11 +10012fda: 601a str r2, [r3, #0] +10012fdc: 4621 mov r1, r4 +10012fde: f002 fdd5 bl 10015b8c +10012fe2: 2000 movs r0, #0 +10012fe4: e7af b.n 10012f46 +10012fe6: 4620 mov r0, r4 +10012fe8: 2117 movs r1, #23 +10012fea: f7ff fddb bl 10012ba4 +10012fee: e7d2 b.n 10012f96 +10012ff0: 6823 ldr r3, [r4, #0] +10012ff2: f8c8 3000 str.w r3, [r8] +10012ff6: e7e3 b.n 10012fc0 +10012ff8: 10050cb4 .word 0x10050cb4 +10012ffc: 100513a4 .word 0x100513a4 +10013000: 10050cbc .word 0x10050cbc + +10013004 : +10013004: 4b0a ldr r3, [pc, #40] ; (10013030 ) +10013006: b510 push {r4, lr} +10013008: 681c ldr r4, [r3, #0] +1001300a: b15c cbz r4, 10013024 +1001300c: 89e3 ldrh r3, [r4, #14] +1001300e: 1e5a subs r2, r3, #1 +10013010: b292 uxth r2, r2 +10013012: b123 cbz r3, 1001301e +10013014: 81e2 strh r2, [r4, #14] +10013016: b912 cbnz r2, 1001301e +10013018: 7b63 ldrb r3, [r4, #13] +1001301a: 2b01 cmp r3, #1 +1001301c: d003 beq.n 10013026 +1001301e: 6824 ldr r4, [r4, #0] +10013020: 2c00 cmp r4, #0 +10013022: d1f3 bne.n 1001300c +10013024: bd10 pop {r4, pc} +10013026: 4620 mov r0, r4 +10013028: 2116 movs r1, #22 +1001302a: f7ff fdbb bl 10012ba4 +1001302e: e7f6 b.n 1001301e +10013030: 10050cbc .word 0x10050cbc + +10013034 : +10013034: b470 push {r4, r5, r6} +10013036: 2200 movs r2, #0 +10013038: b083 sub sp, #12 +1001303a: f010 0601 ands.w r6, r0, #1 +1001303e: f8ad 2006 strh.w r2, [sp, #6] +10013042: d006 beq.n 10013052 +10013044: 4291 cmp r1, r2 +10013046: dd16 ble.n 10013076 +10013048: 7803 ldrb r3, [r0, #0] +1001304a: 3901 subs r1, #1 +1001304c: f88d 3007 strb.w r3, [sp, #7] +10013050: 3001 adds r0, #1 +10013052: 2901 cmp r1, #1 +10013054: dd27 ble.n 100130a6 +10013056: 4604 mov r4, r0 +10013058: 460b mov r3, r1 +1001305a: 2200 movs r2, #0 +1001305c: f834 5b02 ldrh.w r5, [r4], #2 +10013060: 3b02 subs r3, #2 +10013062: 2b01 cmp r3, #1 +10013064: 442a add r2, r5 +10013066: dcf9 bgt.n 1001305c +10013068: 3902 subs r1, #2 +1001306a: 084b lsrs r3, r1, #1 +1001306c: 1c5c adds r4, r3, #1 +1001306e: eba1 0143 sub.w r1, r1, r3, lsl #1 +10013072: eb00 0044 add.w r0, r0, r4, lsl #1 +10013076: 2901 cmp r1, #1 +10013078: bf04 itt eq +1001307a: 7803 ldrbeq r3, [r0, #0] +1001307c: f88d 3006 strbeq.w r3, [sp, #6] +10013080: f8bd 0006 ldrh.w r0, [sp, #6] +10013084: 4402 add r2, r0 +10013086: b290 uxth r0, r2 +10013088: eb00 4212 add.w r2, r0, r2, lsr #16 +1001308c: b290 uxth r0, r2 +1001308e: eb00 4012 add.w r0, r0, r2, lsr #16 +10013092: b126 cbz r6, 1001309e +10013094: 0203 lsls r3, r0, #8 +10013096: b29b uxth r3, r3 +10013098: f3c0 2007 ubfx r0, r0, #8, #8 +1001309c: 4318 orrs r0, r3 +1001309e: b280 uxth r0, r0 +100130a0: b003 add sp, #12 +100130a2: bc70 pop {r4, r5, r6} +100130a4: 4770 bx lr +100130a6: 2200 movs r2, #0 +100130a8: e7e5 b.n 10013076 +100130aa: bf00 nop + +100130ac : +100130ac: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100130b0: 4604 mov r4, r0 +100130b2: 468a mov sl, r1 +100130b4: 4691 mov r9, r2 +100130b6: 4698 mov r8, r3 +100130b8: f8bd 7020 ldrh.w r7, [sp, #32] +100130bc: 2800 cmp r0, #0 +100130be: d03b beq.n 10013138 +100130c0: 2600 movs r6, #0 +100130c2: 4635 mov r5, r6 +100130c4: 6860 ldr r0, [r4, #4] +100130c6: 8961 ldrh r1, [r4, #10] +100130c8: f7ff ffb4 bl 10013034 +100130cc: 8963 ldrh r3, [r4, #10] +100130ce: 4428 add r0, r5 +100130d0: b282 uxth r2, r0 +100130d2: 07db lsls r3, r3, #31 +100130d4: eb02 4510 add.w r5, r2, r0, lsr #16 +100130d8: d507 bpl.n 100130ea +100130da: 022b lsls r3, r5, #8 +100130dc: f1c6 0601 rsb r6, r6, #1 +100130e0: b29b uxth r3, r3 +100130e2: f3c5 2507 ubfx r5, r5, #8, #8 +100130e6: b2f6 uxtb r6, r6 +100130e8: 431d orrs r5, r3 +100130ea: 6824 ldr r4, [r4, #0] +100130ec: 2c00 cmp r4, #0 +100130ee: d1e9 bne.n 100130c4 +100130f0: b126 cbz r6, 100130fc +100130f2: 022b lsls r3, r5, #8 +100130f4: b29b uxth r3, r3 +100130f6: f3c5 2507 ubfx r5, r5, #8, #8 +100130fa: 431d orrs r5, r3 +100130fc: f8da 2000 ldr.w r2, [sl] +10013100: f8d9 3000 ldr.w r3, [r9] +10013104: b291 uxth r1, r2 +10013106: eb01 4212 add.w r2, r1, r2, lsr #16 +1001310a: b299 uxth r1, r3 +1001310c: 440a add r2, r1 +1001310e: eb02 4313 add.w r3, r2, r3, lsr #16 +10013112: 4640 mov r0, r8 +10013114: 441d add r5, r3 +10013116: f000 fe79 bl 10013e0c +1001311a: 4405 add r5, r0 +1001311c: 4638 mov r0, r7 +1001311e: f000 fe75 bl 10013e0c +10013122: 4428 add r0, r5 +10013124: b283 uxth r3, r0 +10013126: eb03 4310 add.w r3, r3, r0, lsr #16 +1001312a: b298 uxth r0, r3 +1001312c: eb00 4313 add.w r3, r0, r3, lsr #16 +10013130: 43d8 mvns r0, r3 +10013132: b280 uxth r0, r0 +10013134: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10013138: 4605 mov r5, r0 +1001313a: e7df b.n 100130fc + +1001313c : +1001313c: b508 push {r3, lr} +1001313e: f7ff ff79 bl 10013034 +10013142: 43c0 mvns r0, r0 +10013144: b280 uxth r0, r0 +10013146: bd08 pop {r3, pc} + +10013148 : +10013148: b570 push {r4, r5, r6, lr} +1001314a: 4604 mov r4, r0 +1001314c: b318 cbz r0, 10013196 +1001314e: 2600 movs r6, #0 +10013150: 4635 mov r5, r6 +10013152: 6860 ldr r0, [r4, #4] +10013154: 8961 ldrh r1, [r4, #10] +10013156: f7ff ff6d bl 10013034 +1001315a: 8963 ldrh r3, [r4, #10] +1001315c: 4428 add r0, r5 +1001315e: b285 uxth r5, r0 +10013160: 07db lsls r3, r3, #31 +10013162: eb05 4510 add.w r5, r5, r0, lsr #16 +10013166: d507 bpl.n 10013178 +10013168: 022b lsls r3, r5, #8 +1001316a: f1c6 0601 rsb r6, r6, #1 +1001316e: b29b uxth r3, r3 +10013170: f3c5 2507 ubfx r5, r5, #8, #8 +10013174: b2f6 uxtb r6, r6 +10013176: 431d orrs r5, r3 +10013178: 6824 ldr r4, [r4, #0] +1001317a: 2c00 cmp r4, #0 +1001317c: d1e9 bne.n 10013152 +1001317e: b13e cbz r6, 10013190 +10013180: 022b lsls r3, r5, #8 +10013182: b29b uxth r3, r3 +10013184: f3c5 2007 ubfx r0, r5, #8, #8 +10013188: 4318 orrs r0, r3 +1001318a: 43c0 mvns r0, r0 +1001318c: b280 uxth r0, r0 +1001318e: bd70 pop {r4, r5, r6, pc} +10013190: 43e8 mvns r0, r5 +10013192: b280 uxth r0, r0 +10013194: bd70 pop {r4, r5, r6, pc} +10013196: f64f 70ff movw r0, #65535 ; 0xffff +1001319a: bd70 pop {r4, r5, r6, pc} + +1001319c : +1001319c: b410 push {r4} +1001319e: 4b0f ldr r3, [pc, #60] ; (100131dc ) +100131a0: 681b ldr r3, [r3, #0] +100131a2: b16b cbz r3, 100131c0 +100131a4: f893 2031 ldrb.w r2, [r3, #49] ; 0x31 +100131a8: 07d2 lsls r2, r2, #31 +100131aa: d5f9 bpl.n 100131a0 +100131ac: 685c ldr r4, [r3, #4] +100131ae: 6801 ldr r1, [r0, #0] +100131b0: 689a ldr r2, [r3, #8] +100131b2: 4061 eors r1, r4 +100131b4: 4211 tst r1, r2 +100131b6: d1f3 bne.n 100131a0 +100131b8: 4618 mov r0, r3 +100131ba: f85d 4b04 ldr.w r4, [sp], #4 +100131be: 4770 bx lr +100131c0: 4b07 ldr r3, [pc, #28] ; (100131e0 ) +100131c2: 681b ldr r3, [r3, #0] +100131c4: 2b00 cmp r3, #0 +100131c6: d0f7 beq.n 100131b8 +100131c8: f893 2031 ldrb.w r2, [r3, #49] ; 0x31 +100131cc: f85d 4b04 ldr.w r4, [sp], #4 +100131d0: f012 0f01 tst.w r2, #1 +100131d4: bf14 ite ne +100131d6: 4618 movne r0, r3 +100131d8: 2000 moveq r0, #0 +100131da: 4770 bx lr +100131dc: 100513a4 .word 0x100513a4 +100131e0: 100513a8 .word 0x100513a8 + +100131e4 : +100131e4: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100131e8: 6846 ldr r6, [r0, #4] +100131ea: 4605 mov r5, r0 +100131ec: 7837 ldrb r7, [r6, #0] +100131ee: 468a mov sl, r1 +100131f0: 093b lsrs r3, r7, #4 +100131f2: 2b04 cmp r3, #4 +100131f4: d005 beq.n 10013202 +100131f6: 4628 mov r0, r5 +100131f8: f002 fe36 bl 10015e68 +100131fc: 2000 movs r0, #0 +100131fe: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10013202: 8870 ldrh r0, [r6, #2] +10013204: f000 fe06 bl 10013e14 +10013208: f007 070f and.w r7, r7, #15 +1001320c: 896b ldrh r3, [r5, #10] +1001320e: 00bf lsls r7, r7, #2 +10013210: 42bb cmp r3, r7 +10013212: 4604 mov r4, r0 +10013214: d3ef bcc.n 100131f6 +10013216: 892b ldrh r3, [r5, #8] +10013218: 4283 cmp r3, r0 +1001321a: d3ec bcc.n 100131f6 +1001321c: 4630 mov r0, r6 +1001321e: 4639 mov r1, r7 +10013220: f7ff ff8c bl 1001313c +10013224: 2800 cmp r0, #0 +10013226: d1e6 bne.n 100131f6 +10013228: 4621 mov r1, r4 +1001322a: 4628 mov r0, r5 +1001322c: f002 fee8 bl 10016000 +10013230: f8df 816c ldr.w r8, [pc, #364] ; 100133a0 +10013234: 6933 ldr r3, [r6, #16] +10013236: 4a59 ldr r2, [pc, #356] ; (1001339c ) +10013238: f8c8 3000 str.w r3, [r8] +1001323c: 68f1 ldr r1, [r6, #12] +1001323e: f003 03f0 and.w r3, r3, #240 ; 0xf0 +10013242: 2be0 cmp r3, #224 ; 0xe0 +10013244: 6011 str r1, [r2, #0] +10013246: d026 beq.n 10013296 +10013248: f8df 9160 ldr.w r9, [pc, #352] ; 100133ac +1001324c: 4654 mov r4, sl +1001324e: f04f 0b01 mov.w fp, #1 +10013252: f894 3031 ldrb.w r3, [r4, #49] ; 0x31 +10013256: 07db lsls r3, r3, #31 +10013258: d510 bpl.n 1001327c +1001325a: 6863 ldr r3, [r4, #4] +1001325c: b173 cbz r3, 1001327c +1001325e: f8d8 0000 ldr.w r0, [r8] +10013262: 4283 cmp r3, r0 +10013264: d022 beq.n 100132ac +10013266: 4621 mov r1, r4 +10013268: f000 f9a6 bl 100135b8 +1001326c: b9f0 cbnz r0, 100132ac +1001326e: 6a63 ldr r3, [r4, #36] ; 0x24 +10013270: b123 cbz r3, 1001327c +10013272: 4a4b ldr r2, [pc, #300] ; (100133a0 ) +10013274: 6819 ldr r1, [r3, #0] +10013276: 6813 ldr r3, [r2, #0] +10013278: 428b cmp r3, r1 +1001327a: d017 beq.n 100132ac +1001327c: f1bb 0f00 cmp.w fp, #0 +10013280: d05d beq.n 1001333e +10013282: f8d9 4000 ldr.w r4, [r9] +10013286: 4554 cmp r4, sl +10013288: bf08 it eq +1001328a: 6824 ldreq r4, [r4, #0] +1001328c: 2c00 cmp r4, #0 +1001328e: d079 beq.n 10013384 +10013290: f04f 0b00 mov.w fp, #0 +10013294: e7dd b.n 10013252 +10013296: f99a 3031 ldrsb.w r3, [sl, #49] ; 0x31 +1001329a: 2b00 cmp r3, #0 +1001329c: da72 bge.n 10013384 +1001329e: 4650 mov r0, sl +100132a0: 4641 mov r1, r8 +100132a2: f7ff fd53 bl 10012d4c +100132a6: 2800 cmp r0, #0 +100132a8: d06c beq.n 10013384 +100132aa: 4654 mov r4, sl +100132ac: 4b3b ldr r3, [pc, #236] ; (1001339c ) +100132ae: 6818 ldr r0, [r3, #0] +100132b0: 461f mov r7, r3 +100132b2: 2800 cmp r0, #0 +100132b4: d145 bne.n 10013342 +100132b6: 2c00 cmp r4, #0 +100132b8: d09d beq.n 100131f6 +100132ba: 88f3 ldrh r3, [r6, #6] +100132bc: f023 03c0 bic.w r3, r3, #192 ; 0xc0 +100132c0: b133 cbz r3, 100132d0 +100132c2: 4628 mov r0, r5 +100132c4: f000 fb4e bl 10013964 +100132c8: 4605 mov r5, r0 +100132ca: 2800 cmp r0, #0 +100132cc: d096 beq.n 100131fc +100132ce: 6846 ldr r6, [r0, #4] +100132d0: 4f34 ldr r7, [pc, #208] ; (100133a4 ) +100132d2: 4c35 ldr r4, [pc, #212] ; (100133a8 ) +100132d4: 4628 mov r0, r5 +100132d6: 4651 mov r1, sl +100132d8: f8c7 a000 str.w sl, [r7] +100132dc: 6026 str r6, [r4, #0] +100132de: f002 ff91 bl 10016204 +100132e2: bb20 cbnz r0, 1001332e +100132e4: 7a73 ldrb r3, [r6, #9] +100132e6: 3b01 subs r3, #1 +100132e8: 2b10 cmp r3, #16 +100132ea: d80a bhi.n 10013302 +100132ec: e8df f003 tbb [pc, r3] +100132f0: 09093f45 .word 0x09093f45 +100132f4: 09093a09 .word 0x09093a09 +100132f8: 09090909 .word 0x09090909 +100132fc: 09090909 .word 0x09090909 +10013300: 35 .byte 0x35 +10013301: 00 .byte 0x00 +10013302: 4651 mov r1, sl +10013304: f8d8 0000 ldr.w r0, [r8] +10013308: f8df 9094 ldr.w r9, [pc, #148] ; 100133a0 +1001330c: f000 f954 bl 100135b8 +10013310: b950 cbnz r0, 10013328 +10013312: f8d9 3000 ldr.w r3, [r9] +10013316: f003 03f0 and.w r3, r3, #240 ; 0xf0 +1001331a: 2be0 cmp r3, #224 ; 0xe0 +1001331c: d004 beq.n 10013328 +1001331e: 606e str r6, [r5, #4] +10013320: 4628 mov r0, r5 +10013322: 2102 movs r1, #2 +10013324: f7ff fc32 bl 10012b8c +10013328: 4628 mov r0, r5 +1001332a: f002 fd9d bl 10015e68 +1001332e: 4a1b ldr r2, [pc, #108] ; (1001339c ) +10013330: 2300 movs r3, #0 +10013332: 603b str r3, [r7, #0] +10013334: 6023 str r3, [r4, #0] +10013336: 6013 str r3, [r2, #0] +10013338: f8c8 3000 str.w r3, [r8] +1001333c: e75e b.n 100131fc +1001333e: 6824 ldr r4, [r4, #0] +10013340: e7a1 b.n 10013286 +10013342: 4651 mov r1, sl +10013344: f000 f938 bl 100135b8 +10013348: 2800 cmp r0, #0 +1001334a: f47f af54 bne.w 100131f6 +1001334e: 683b ldr r3, [r7, #0] +10013350: f003 03f0 and.w r3, r3, #240 ; 0xf0 +10013354: 2be0 cmp r3, #224 ; 0xe0 +10013356: d1ae bne.n 100132b6 +10013358: e74d b.n 100131f6 +1001335a: 4628 mov r0, r5 +1001335c: 4651 mov r1, sl +1001335e: f005 fe5b bl 10019018 +10013362: e7e4 b.n 1001332e +10013364: 4628 mov r0, r5 +10013366: 4651 mov r1, sl +10013368: f004 fbde bl 10017b28 +1001336c: e7df b.n 1001332e +1001336e: 4628 mov r0, r5 +10013370: 4651 mov r1, sl +10013372: 4a0b ldr r2, [pc, #44] ; (100133a0 ) +10013374: f7ff fcfc bl 10012d70 +10013378: e7d9 b.n 1001332e +1001337a: 4628 mov r0, r5 +1001337c: 4651 mov r1, sl +1001337e: f7ff fb73 bl 10012a68 +10013382: e7d4 b.n 1001332e +10013384: 7a73 ldrb r3, [r6, #9] +10013386: 2b11 cmp r3, #17 +10013388: d001 beq.n 1001338e +1001338a: 2400 movs r4, #0 +1001338c: e78e b.n 100132ac +1001338e: 4437 add r7, r6 +10013390: 887b ldrh r3, [r7, #2] +10013392: f5b3 4f88 cmp.w r3, #17408 ; 0x4400 +10013396: d1f8 bne.n 1001338a +10013398: 4654 mov r4, sl +1001339a: e78c b.n 100132b6 +1001339c: 10050cc8 .word 0x10050cc8 +100133a0: 10050ccc .word 0x10050ccc +100133a4: 10050cd0 .word 0x10050cd0 +100133a8: 10050cc0 .word 0x10050cc0 +100133ac: 100513a4 .word 0x100513a4 + +100133b0 : +100133b0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100133b4: b089 sub sp, #36 ; 0x24 +100133b6: 4615 mov r5, r2 +100133b8: 9105 str r1, [sp, #20] +100133ba: 461f mov r7, r3 +100133bc: 4604 mov r4, r0 +100133be: f89d 9048 ldrb.w r9, [sp, #72] ; 0x48 +100133c2: f89d 804c ldrb.w r8, [sp, #76] ; 0x4c +100133c6: f8bd 6058 ldrh.w r6, [sp, #88] ; 0x58 +100133ca: 2a00 cmp r2, #0 +100133cc: f000 80a2 beq.w 10013514 +100133d0: 2e00 cmp r6, #0 +100133d2: d170 bne.n 100134b6 +100133d4: f04f 0b14 mov.w fp, #20 +100133d8: 4620 mov r0, r4 +100133da: 2114 movs r1, #20 +100133dc: f002 fd0e bl 10015dfc +100133e0: 4602 mov r2, r0 +100133e2: 2800 cmp r0, #0 +100133e4: f040 80a5 bne.w 10013532 +100133e8: f8d4 a004 ldr.w sl, [r4, #4] +100133ec: ea4f 0e9b mov.w lr, fp, lsr #2 +100133f0: f88a 7008 strb.w r7, [sl, #8] +100133f4: f88a 8009 strb.w r8, [sl, #9] +100133f8: f04e 0e40 orr.w lr, lr, #64 ; 0x40 +100133fc: 6829 ldr r1, [r5, #0] +100133fe: fa5f fe8e uxtb.w lr, lr +10013402: f88a e000 strb.w lr, [sl] +10013406: f88a 9001 strb.w r9, [sl, #1] +1001340a: f8ca 1010 str.w r1, [sl, #16] +1001340e: 8920 ldrh r0, [r4, #8] +10013410: ea4e 2309 orr.w r3, lr, r9, lsl #8 +10013414: fa1f fc81 uxth.w ip, r1 +10013418: 0c09 lsrs r1, r1, #16 +1001341a: 9102 str r1, [sp, #8] +1001341c: 9301 str r3, [sp, #4] +1001341e: f8cd c00c str.w ip, [sp, #12] +10013422: 9204 str r2, [sp, #16] +10013424: f000 fcf2 bl 10013e0c +10013428: f8df b120 ldr.w fp, [pc, #288] ; 1001354c +1001342c: 9a04 ldr r2, [sp, #16] +1001342e: 4681 mov r9, r0 +10013430: f88a 2006 strb.w r2, [sl, #6] +10013434: f88a 2007 strb.w r2, [sl, #7] +10013438: f8aa 0002 strh.w r0, [sl, #2] +1001343c: f8bb 0000 ldrh.w r0, [fp] +10013440: f000 fce4 bl 10013e0c +10013444: f8bb 2000 ldrh.w r2, [fp] +10013448: ea47 2708 orr.w r7, r7, r8, lsl #8 +1001344c: 3201 adds r2, #1 +1001344e: f8ab 2000 strh.w r2, [fp] +10013452: 9a05 ldr r2, [sp, #20] +10013454: f8aa 0004 strh.w r0, [sl, #4] +10013458: 9902 ldr r1, [sp, #8] +1001345a: 9b01 ldr r3, [sp, #4] +1001345c: f8dd c00c ldr.w ip, [sp, #12] +10013460: 2a00 cmp r2, #0 +10013462: d050 beq.n 10013506 +10013464: 6812 ldr r2, [r2, #0] +10013466: 2a00 cmp r2, #0 +10013468: d04d beq.n 10013506 +1001346a: f8ca 200c str.w r2, [sl, #12] +1001346e: 4461 add r1, ip +10013470: 440f add r7, r1 +10013472: 443e add r6, r7 +10013474: 441e add r6, r3 +10013476: 44b1 add r9, r6 +10013478: b291 uxth r1, r2 +1001347a: 4448 add r0, r9 +1001347c: 4408 add r0, r1 +1001347e: eb00 4212 add.w r2, r0, r2, lsr #16 +10013482: b291 uxth r1, r2 +10013484: eb01 4212 add.w r2, r1, r2, lsr #16 +10013488: eb02 4212 add.w r2, r2, r2, lsr #16 +1001348c: 43d2 mvns r2, r2 +1001348e: f8aa 200a strh.w r2, [sl, #10] +10013492: 9814 ldr r0, [sp, #80] ; 0x50 +10013494: 8d03 ldrh r3, [r0, #40] ; 0x28 +10013496: b113 cbz r3, 1001349e +10013498: 8922 ldrh r2, [r4, #8] +1001349a: 429a cmp r2, r3 +1001349c: d840 bhi.n 10013520 +1001349e: f8dd e050 ldr.w lr, [sp, #80] ; 0x50 +100134a2: 4621 mov r1, r4 +100134a4: 462a mov r2, r5 +100134a6: f8de 3014 ldr.w r3, [lr, #20] +100134aa: 4670 mov r0, lr +100134ac: 4798 blx r3 +100134ae: b240 sxtb r0, r0 +100134b0: b009 add sp, #36 ; 0x24 +100134b2: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100134b6: 1cf3 adds r3, r6, #3 +100134b8: f023 0303 bic.w r3, r3, #3 +100134bc: fa1f fa83 uxth.w sl, r3 +100134c0: fa0f f18a sxth.w r1, sl +100134c4: f002 fc9a bl 10015dfc +100134c8: f10a 0b14 add.w fp, sl, #20 +100134cc: fa1f fb8b uxth.w fp, fp +100134d0: 4603 mov r3, r0 +100134d2: bb70 cbnz r0, 10013532 +100134d4: 6860 ldr r0, [r4, #4] +100134d6: 9915 ldr r1, [sp, #84] ; 0x54 +100134d8: 4632 mov r2, r6 +100134da: 9301 str r3, [sp, #4] +100134dc: f02e fe40 bl 10042160 +100134e0: 4556 cmp r6, sl +100134e2: 9b01 ldr r3, [sp, #4] +100134e4: d32a bcc.n 1001353c +100134e6: ea4f 065a mov.w r6, sl, lsr #1 +100134ea: f1ba 0f00 cmp.w sl, #0 +100134ee: f43f af73 beq.w 100133d8 +100134f2: 2300 movs r3, #0 +100134f4: 6860 ldr r0, [r4, #4] +100134f6: 0071 lsls r1, r6, #1 +100134f8: 461e mov r6, r3 +100134fa: 5ac2 ldrh r2, [r0, r3] +100134fc: 3302 adds r3, #2 +100134fe: 428b cmp r3, r1 +10013500: 4416 add r6, r2 +10013502: d1fa bne.n 100134fa +10013504: e768 b.n 100133d8 +10013506: f8dd e050 ldr.w lr, [sp, #80] ; 0x50 +1001350a: f8de 2004 ldr.w r2, [lr, #4] +1001350e: f8ca 200c str.w r2, [sl, #12] +10013512: e7ac b.n 1001346e +10013514: 6843 ldr r3, [r0, #4] +10013516: ad08 add r5, sp, #32 +10013518: 691b ldr r3, [r3, #16] +1001351a: f845 3d04 str.w r3, [r5, #-4]! +1001351e: e7b8 b.n 10013492 +10013520: 4620 mov r0, r4 +10013522: 9914 ldr r1, [sp, #80] ; 0x50 +10013524: 462a mov r2, r5 +10013526: f000 fb95 bl 10013c54 +1001352a: b240 sxtb r0, r0 +1001352c: b009 add sp, #36 ; 0x24 +1001352e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10013532: 20fe movs r0, #254 ; 0xfe +10013534: b240 sxtb r0, r0 +10013536: b009 add sp, #36 ; 0x24 +10013538: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001353c: 6860 ldr r0, [r4, #4] +1001353e: 4619 mov r1, r3 +10013540: 4430 add r0, r6 +10013542: ebc6 020a rsb r2, r6, sl +10013546: f02e fe11 bl 1004216c +1001354a: e7cc b.n 100134e6 +1001354c: 10050cc4 .word 0x10050cc4 + +10013550 : +10013550: b5f0 push {r4, r5, r6, r7, lr} +10013552: b087 sub sp, #28 +10013554: f89d 7030 ldrb.w r7, [sp, #48] ; 0x30 +10013558: f89d 6034 ldrb.w r6, [sp, #52] ; 0x34 +1001355c: 9d0e ldr r5, [sp, #56] ; 0x38 +1001355e: 2400 movs r4, #0 +10013560: 9700 str r7, [sp, #0] +10013562: 9601 str r6, [sp, #4] +10013564: 9502 str r5, [sp, #8] +10013566: 9403 str r4, [sp, #12] +10013568: 9404 str r4, [sp, #16] +1001356a: f7ff ff21 bl 100133b0 +1001356e: b007 add sp, #28 +10013570: bdf0 pop {r4, r5, r6, r7, pc} +10013572: bf00 nop + +10013574 : +10013574: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10013578: 4606 mov r6, r0 +1001357a: b086 sub sp, #24 +1001357c: 4610 mov r0, r2 +1001357e: 4688 mov r8, r1 +10013580: 461f mov r7, r3 +10013582: 4614 mov r4, r2 +10013584: f7ff fe0a bl 1001319c +10013588: f89d 1030 ldrb.w r1, [sp, #48] ; 0x30 +1001358c: f89d 3034 ldrb.w r3, [sp, #52] ; 0x34 +10013590: b178 cbz r0, 100135b2 +10013592: 2500 movs r5, #0 +10013594: e88d 000a stmia.w sp, {r1, r3} +10013598: 9002 str r0, [sp, #8] +1001359a: 4641 mov r1, r8 +1001359c: 4630 mov r0, r6 +1001359e: 4622 mov r2, r4 +100135a0: 463b mov r3, r7 +100135a2: 9503 str r5, [sp, #12] +100135a4: 9504 str r5, [sp, #16] +100135a6: f7ff ff03 bl 100133b0 +100135aa: b240 sxtb r0, r0 +100135ac: b006 add sp, #24 +100135ae: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100135b2: 20fc movs r0, #252 ; 0xfc +100135b4: e7f9 b.n 100135aa +100135b6: bf00 nop + +100135b8 : +100135b8: 1e42 subs r2, r0, #1 +100135ba: 3203 adds r2, #3 +100135bc: 4603 mov r3, r0 +100135be: d815 bhi.n 100135ec +100135c0: f891 2031 ldrb.w r2, [r1, #49] ; 0x31 +100135c4: f002 0202 and.w r2, r2, #2 +100135c8: f002 00ff and.w r0, r2, #255 ; 0xff +100135cc: b16a cbz r2, 100135ea +100135ce: 684a ldr r2, [r1, #4] +100135d0: 429a cmp r2, r3 +100135d2: d009 beq.n 100135e8 +100135d4: 6888 ldr r0, [r1, #8] +100135d6: 405a eors r2, r3 +100135d8: 4202 tst r2, r0 +100135da: d105 bne.n 100135e8 +100135dc: 43c0 mvns r0, r0 +100135de: 4003 ands r3, r0 +100135e0: 1ac3 subs r3, r0, r3 +100135e2: 4258 negs r0, r3 +100135e4: 4158 adcs r0, r3 +100135e6: 4770 bx lr +100135e8: 2000 movs r0, #0 +100135ea: 4770 bx lr +100135ec: 2001 movs r0, #1 +100135ee: 4770 bx lr + +100135f0 : +100135f0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100135f4: 7802 ldrb r2, [r0, #0] +100135f6: b087 sub sp, #28 +100135f8: f1a2 0330 sub.w r3, r2, #48 ; 0x30 +100135fc: 2b09 cmp r3, #9 +100135fe: d83c bhi.n 1001367a +10013600: f10d 0b08 add.w fp, sp, #8 +10013604: 46d9 mov r9, fp +10013606: f10d 0a14 add.w sl, sp, #20 +1001360a: b255 sxtb r5, r2 +1001360c: 2d30 cmp r5, #48 ; 0x30 +1001360e: d039 beq.n 10013684 +10013610: f04f 080a mov.w r8, #10 +10013614: 4604 mov r4, r0 +10013616: 2600 movs r6, #0 +10013618: e005 b.n 10013626 +1001361a: fb08 5606 mla r6, r8, r6, r5 +1001361e: 7862 ldrb r2, [r4, #1] +10013620: 3e30 subs r6, #48 ; 0x30 +10013622: 3401 adds r4, #1 +10013624: b255 sxtb r5, r2 +10013626: b2d3 uxtb r3, r2 +10013628: f1a3 0730 sub.w r7, r3, #48 ; 0x30 +1001362c: f023 0c20 bic.w ip, r3, #32 +10013630: f1a3 0061 sub.w r0, r3, #97 ; 0x61 +10013634: 2f09 cmp r7, #9 +10013636: f1ac 0c41 sub.w ip, ip, #65 ; 0x41 +1001363a: b2c0 uxtb r0, r0 +1001363c: d9ed bls.n 1001361a +1001363e: f1b8 0f10 cmp.w r8, #16 +10013642: d10d bne.n 10013660 +10013644: f1bc 0f05 cmp.w ip, #5 +10013648: d80a bhi.n 10013660 +1001364a: 2819 cmp r0, #25 +1001364c: f105 050a add.w r5, r5, #10 +10013650: bf8c ite hi +10013652: 2341 movhi r3, #65 ; 0x41 +10013654: 2361 movls r3, #97 ; 0x61 +10013656: 1aed subs r5, r5, r3 +10013658: ea45 1606 orr.w r6, r5, r6, lsl #4 +1001365c: 7862 ldrb r2, [r4, #1] +1001365e: e7e0 b.n 10013622 +10013660: 2d2e cmp r5, #46 ; 0x2e +10013662: d11f bne.n 100136a4 +10013664: 45d1 cmp r9, sl +10013666: d008 beq.n 1001367a +10013668: 7862 ldrb r2, [r4, #1] +1001366a: f849 6b04 str.w r6, [r9], #4 +1001366e: f1a2 0330 sub.w r3, r2, #48 ; 0x30 +10013672: 2b09 cmp r3, #9 +10013674: f104 0001 add.w r0, r4, #1 +10013678: d9c7 bls.n 1001360a +1001367a: 2300 movs r3, #0 +1001367c: 4618 mov r0, r3 +1001367e: b007 add sp, #28 +10013680: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10013684: 7842 ldrb r2, [r0, #1] +10013686: f002 03df and.w r3, r2, #223 ; 0xdf +1001368a: 2b58 cmp r3, #88 ; 0x58 +1001368c: d004 beq.n 10013698 +1001368e: 3001 adds r0, #1 +10013690: f04f 0808 mov.w r8, #8 +10013694: b255 sxtb r5, r2 +10013696: e7bd b.n 10013614 +10013698: 7882 ldrb r2, [r0, #2] +1001369a: f04f 0810 mov.w r8, #16 +1001369e: 3002 adds r0, #2 +100136a0: b255 sxtb r5, r2 +100136a2: e7b7 b.n 10013614 +100136a4: f012 0fdf tst.w r2, #223 ; 0xdf +100136a8: d004 beq.n 100136b4 +100136aa: 3b09 subs r3, #9 +100136ac: 2b04 cmp r3, #4 +100136ae: d901 bls.n 100136b4 +100136b0: 2d2c cmp r5, #44 ; 0x2c +100136b2: d1e2 bne.n 1001367a +100136b4: ebcb 0309 rsb r3, fp, r9 +100136b8: 109b asrs r3, r3, #2 +100136ba: 3301 adds r3, #1 +100136bc: 2b04 cmp r3, #4 +100136be: d818 bhi.n 100136f2 +100136c0: a201 add r2, pc, #4 ; (adr r2, 100136c8 ) +100136c2: f852 f023 ldr.w pc, [r2, r3, lsl #2] +100136c6: bf00 nop +100136c8: 1001367d .word 0x1001367d +100136cc: 100136f3 .word 0x100136f3 +100136d0: 10013719 .word 0x10013719 +100136d4: 10013705 .word 0x10013705 +100136d8: 100136dd .word 0x100136dd +100136dc: 2eff cmp r6, #255 ; 0xff +100136de: d8cc bhi.n 1001367a +100136e0: 9b02 ldr r3, [sp, #8] +100136e2: 9a03 ldr r2, [sp, #12] +100136e4: 0618 lsls r0, r3, #24 +100136e6: 9b04 ldr r3, [sp, #16] +100136e8: ea40 4202 orr.w r2, r0, r2, lsl #16 +100136ec: ea42 2303 orr.w r3, r2, r3, lsl #8 +100136f0: 431e orrs r6, r3 +100136f2: b1c1 cbz r1, 10013726 +100136f4: 4630 mov r0, r6 +100136f6: 9101 str r1, [sp, #4] +100136f8: f000 fb90 bl 10013e1c +100136fc: 9901 ldr r1, [sp, #4] +100136fe: 2301 movs r3, #1 +10013700: 6008 str r0, [r1, #0] +10013702: e7bb b.n 1001367c +10013704: f5b6 3f80 cmp.w r6, #65536 ; 0x10000 +10013708: d2b7 bcs.n 1001367a +1001370a: 9a02 ldr r2, [sp, #8] +1001370c: 9b03 ldr r3, [sp, #12] +1001370e: 0612 lsls r2, r2, #24 +10013710: ea42 4303 orr.w r3, r2, r3, lsl #16 +10013714: 431e orrs r6, r3 +10013716: e7ec b.n 100136f2 +10013718: f1b6 7f80 cmp.w r6, #16777216 ; 0x1000000 +1001371c: d2ad bcs.n 1001367a +1001371e: 9b02 ldr r3, [sp, #8] +10013720: ea46 6603 orr.w r6, r6, r3, lsl #24 +10013724: e7e5 b.n 100136f2 +10013726: 2301 movs r3, #1 +10013728: e7a8 b.n 1001367c +1001372a: bf00 nop + +1001372c : +1001372c: b500 push {lr} +1001372e: b083 sub sp, #12 +10013730: a901 add r1, sp, #4 +10013732: f7ff ff5d bl 100135f0 +10013736: b920 cbnz r0, 10013742 +10013738: f04f 30ff mov.w r0, #4294967295 +1001373c: b003 add sp, #12 +1001373e: f85d fb04 ldr.w pc, [sp], #4 +10013742: 9801 ldr r0, [sp, #4] +10013744: b003 add sp, #12 +10013746: f85d fb04 ldr.w pc, [sp], #4 +1001374a: bf00 nop + +1001374c : +1001374c: e92d 0ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp} +10013750: 6803 ldr r3, [r0, #0] +10013752: b082 sub sp, #8 +10013754: f8df c0b0 ldr.w ip, [pc, #176] ; 10013808 +10013758: 9301 str r3, [sp, #4] +1001375a: 460f mov r7, r1 +1001375c: f102 0801 add.w r8, r2, #1 +10013760: f10d 0903 add.w r9, sp, #3 +10013764: f10d 0b07 add.w fp, sp, #7 +10013768: f04f 0a00 mov.w sl, #0 +1001376c: f899 4001 ldrb.w r4, [r9, #1] +10013770: 2500 movs r5, #0 +10013772: e000 b.n 10013776 +10013774: 4635 mov r5, r6 +10013776: fbac 0304 umull r0, r3, ip, r4 +1001377a: 08db lsrs r3, r3, #3 +1001377c: eb03 0083 add.w r0, r3, r3, lsl #2 +10013780: eba4 0040 sub.w r0, r4, r0, lsl #1 +10013784: 3030 adds r0, #48 ; 0x30 +10013786: ac02 add r4, sp, #8 +10013788: 442c add r4, r5 +1001378a: f000 00ff and.w r0, r0, #255 ; 0xff +1001378e: 1c6e adds r6, r5, #1 +10013790: f804 0c08 strb.w r0, [r4, #-8] +10013794: b2f6 uxtb r6, r6 +10013796: f003 04ff and.w r4, r3, #255 ; 0xff +1001379a: 2b00 cmp r3, #0 +1001379c: d1ea bne.n 10013774 +1001379e: f809 4f01 strb.w r4, [r9, #1]! +100137a2: b376 cbz r6, 10013802 +100137a4: 4552 cmp r2, sl +100137a6: f10a 0401 add.w r4, sl, #1 +100137aa: dd23 ble.n 100137f4 +100137ac: 1e6b subs r3, r5, #1 +100137ae: b2db uxtb r3, r3 +100137b0: 4605 mov r5, r0 +100137b2: e007 b.n 100137c4 +100137b4: 3401 adds r4, #1 +100137b6: 4544 cmp r4, r8 +100137b8: d01c beq.n 100137f4 +100137ba: ad02 add r5, sp, #8 +100137bc: 442b add r3, r5 +100137be: f813 5c08 ldrb.w r5, [r3, #-8] +100137c2: 4603 mov r3, r0 +100137c4: 1e58 subs r0, r3, #1 +100137c6: 2bff cmp r3, #255 ; 0xff +100137c8: f807 5b01 strb.w r5, [r7], #1 +100137cc: b2c0 uxtb r0, r0 +100137ce: d1f1 bne.n 100137b4 +100137d0: 42a2 cmp r2, r4 +100137d2: f104 0a01 add.w sl, r4, #1 +100137d6: dd0d ble.n 100137f4 +100137d8: f04f 002e mov.w r0, #46 ; 0x2e +100137dc: 45d9 cmp r9, fp +100137de: 7038 strb r0, [r7, #0] +100137e0: f107 0301 add.w r3, r7, #1 +100137e4: d10b bne.n 100137fe +100137e6: 2300 movs r3, #0 +100137e8: 4608 mov r0, r1 +100137ea: 703b strb r3, [r7, #0] +100137ec: b002 add sp, #8 +100137ee: e8bd 0ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp} +100137f2: 4770 bx lr +100137f4: 2000 movs r0, #0 +100137f6: b002 add sp, #8 +100137f8: e8bd 0ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp} +100137fc: 4770 bx lr +100137fe: 461f mov r7, r3 +10013800: e7b4 b.n 1001376c +10013802: 4654 mov r4, sl +10013804: e7e4 b.n 100137d0 +10013806: bf00 nop +10013808: cccccccd .word 0xcccccccd + +1001380c : +1001380c: 4901 ldr r1, [pc, #4] ; (10013814 ) +1001380e: 2210 movs r2, #16 +10013810: f7ff bf9c b.w 1001374c +10013814: 10050cd4 .word 0x10050cd4 + +10013818 : +10013818: b510 push {r4, lr} +1001381a: 4604 mov r4, r0 +1001381c: 6940 ldr r0, [r0, #20] +1001381e: b108 cbz r0, 10013824 +10013820: f002 fb22 bl 10015e68 +10013824: 4621 mov r1, r4 +10013826: 2006 movs r0, #6 +10013828: e8bd 4010 ldmia.w sp!, {r4, lr} +1001382c: f002 b9ae b.w 10015b8c + +10013830 : +10013830: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10013834: 6844 ldr r4, [r0, #4] +10013836: 4607 mov r7, r0 +10013838: 6860 ldr r0, [r4, #4] +1001383a: 4688 mov r8, r1 +1001383c: 8883 ldrh r3, [r0, #4] +1001383e: b313 cbz r3, 10013886 +10013840: 2600 movs r6, #0 +10013842: e000 b.n 10013846 +10013844: 462c mov r4, r5 +10013846: 6863 ldr r3, [r4, #4] +10013848: 4620 mov r0, r4 +1001384a: 681d ldr r5, [r3, #0] +1001384c: f002 fc02 bl 10016054 +10013850: 4406 add r6, r0 +10013852: 4620 mov r0, r4 +10013854: b2b6 uxth r6, r6 +10013856: f002 fb07 bl 10015e68 +1001385a: 2d00 cmp r5, #0 +1001385c: d1f2 bne.n 10013844 +1001385e: 4b15 ldr r3, [pc, #84] ; (100138b4 ) +10013860: 4639 mov r1, r7 +10013862: 681a ldr r2, [r3, #0] +10013864: 2005 movs r0, #5 +10013866: 4297 cmp r7, r2 +10013868: bf15 itete ne +1001386a: 683b ldrne r3, [r7, #0] +1001386c: 683a ldreq r2, [r7, #0] +1001386e: f8c8 3000 strne.w r3, [r8] +10013872: 601a streq r2, [r3, #0] +10013874: f002 f98a bl 10015b8c +10013878: 4b0f ldr r3, [pc, #60] ; (100138b8 ) +1001387a: 4630 mov r0, r6 +1001387c: 881a ldrh r2, [r3, #0] +1001387e: 1b96 subs r6, r2, r6 +10013880: 801e strh r6, [r3, #0] +10013882: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10013886: 6803 ldr r3, [r0, #0] +10013888: 2214 movs r2, #20 +1001388a: 607b str r3, [r7, #4] +1001388c: f107 0108 add.w r1, r7, #8 +10013890: f02e fc66 bl 10042160 +10013894: 4620 mov r0, r4 +10013896: 2101 movs r1, #1 +10013898: f7ff f97e bl 10012b98 +1001389c: 4620 mov r0, r4 +1001389e: f002 fbd9 bl 10016054 +100138a2: 4606 mov r6, r0 +100138a4: 4620 mov r0, r4 +100138a6: f002 fadf bl 10015e68 +100138aa: 687c ldr r4, [r7, #4] +100138ac: 2c00 cmp r4, #0 +100138ae: d1ca bne.n 10013846 +100138b0: e7d5 b.n 1001385e +100138b2: bf00 nop +100138b4: 10050ce4 .word 0x10050ce4 +100138b8: 10050ce8 .word 0x10050ce8 + +100138bc : +100138bc: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +100138c0: 4e1b ldr r6, [pc, #108] ; (10013930 ) +100138c2: 4607 mov r7, r0 +100138c4: 460d mov r5, r1 +100138c6: f04f 0800 mov.w r8, #0 +100138ca: 6833 ldr r3, [r6, #0] +100138cc: b36b cbz r3, 1001392a +100138ce: 2400 movs r4, #0 +100138d0: f8d7 c00c ldr.w ip, [r7, #12] +100138d4: 4621 mov r1, r4 +100138d6: 4620 mov r0, r4 +100138d8: e00b b.n 100138f2 +100138da: 3401 adds r4, #1 +100138dc: b1c8 cbz r0, 10013912 +100138de: f893 901f ldrb.w r9, [r3, #31] +100138e2: 7fc2 ldrb r2, [r0, #31] +100138e4: 4591 cmp r9, r2 +100138e6: bf98 it ls +100138e8: 4618 movls r0, r3 +100138ea: 681a ldr r2, [r3, #0] +100138ec: b1aa cbz r2, 1001391a +100138ee: 4619 mov r1, r3 +100138f0: 4613 mov r3, r2 +100138f2: 695a ldr r2, [r3, #20] +100138f4: 4594 cmp ip, r2 +100138f6: d1f0 bne.n 100138da +100138f8: f8d7 9010 ldr.w r9, [r7, #16] +100138fc: 699a ldr r2, [r3, #24] +100138fe: 454a cmp r2, r9 +10013900: d1eb bne.n 100138da +10013902: f8b3 900c ldrh.w r9, [r3, #12] +10013906: 88ba ldrh r2, [r7, #4] +10013908: 4591 cmp r9, r2 +1001390a: d0ee beq.n 100138ea +1001390c: 3401 adds r4, #1 +1001390e: 2800 cmp r0, #0 +10013910: d1e5 bne.n 100138de +10013912: 681a ldr r2, [r3, #0] +10013914: 4618 mov r0, r3 +10013916: 2a00 cmp r2, #0 +10013918: d1e9 bne.n 100138ee +1001391a: b110 cbz r0, 10013922 +1001391c: f7ff ff88 bl 10013830 +10013920: 4480 add r8, r0 +10013922: 45a8 cmp r8, r5 +10013924: da01 bge.n 1001392a +10013926: 2c01 cmp r4, #1 +10013928: dccf bgt.n 100138ca +1001392a: 4640 mov r0, r8 +1001392c: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10013930: 10050ce4 .word 0x10050ce4 + +10013934 : +10013934: b538 push {r3, r4, r5, lr} +10013936: 4b0a ldr r3, [pc, #40] ; (10013960 ) +10013938: 6818 ldr r0, [r3, #0] +1001393a: b140 cbz r0, 1001394e +1001393c: 2400 movs r4, #0 +1001393e: 7fc3 ldrb r3, [r0, #31] +10013940: 1e5a subs r2, r3, #1 +10013942: b12b cbz r3, 10013950 +10013944: 77c2 strb r2, [r0, #31] +10013946: 4604 mov r4, r0 +10013948: 6800 ldr r0, [r0, #0] +1001394a: 2800 cmp r0, #0 +1001394c: d1f7 bne.n 1001393e +1001394e: bd38 pop {r3, r4, r5, pc} +10013950: 6805 ldr r5, [r0, #0] +10013952: 4621 mov r1, r4 +10013954: f7ff ff6c bl 10013830 +10013958: 4628 mov r0, r5 +1001395a: 2800 cmp r0, #0 +1001395c: d1ef bne.n 1001393e +1001395e: e7f6 b.n 1001394e +10013960: 10050ce4 .word 0x10050ce4 + +10013964 : +10013964: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10013968: 6846 ldr r6, [r0, #4] +1001396a: b085 sub sp, #20 +1001396c: 7833 ldrb r3, [r6, #0] +1001396e: 4607 mov r7, r0 +10013970: f003 030f and.w r3, r3, #15 +10013974: 2b05 cmp r3, #5 +10013976: f040 80e8 bne.w 10013b4a +1001397a: 88f0 ldrh r0, [r6, #6] +1001397c: f000 fa4a bl 10013e14 +10013980: 9002 str r0, [sp, #8] +10013982: 8870 ldrh r0, [r6, #2] +10013984: f000 fa46 bl 10013e14 +10013988: 7833 ldrb r3, [r6, #0] +1001398a: 4683 mov fp, r0 +1001398c: 4638 mov r0, r7 +1001398e: 9303 str r3, [sp, #12] +10013990: f002 fb60 bl 10016054 +10013994: f8df 82b8 ldr.w r8, [pc, #696] ; 10013c50 +10013998: 4682 mov sl, r0 +1001399a: f8b8 2000 ldrh.w r2, [r8] +1001399e: 4402 add r2, r0 +100139a0: 2a0a cmp r2, #10 +100139a2: f300 80c7 bgt.w 10013b34 +100139a6: f8df 92a4 ldr.w r9, [pc, #676] ; 10013c4c +100139aa: f8d9 4000 ldr.w r4, [r9] +100139ae: b324 cbz r4, 100139fa +100139b0: 68f1 ldr r1, [r6, #12] +100139b2: 2500 movs r5, #0 +100139b4: e003 b.n 100139be +100139b6: 6822 ldr r2, [r4, #0] +100139b8: 4625 mov r5, r4 +100139ba: b1f2 cbz r2, 100139fa +100139bc: 4614 mov r4, r2 +100139be: 6962 ldr r2, [r4, #20] +100139c0: 428a cmp r2, r1 +100139c2: d1f8 bne.n 100139b6 +100139c4: 6930 ldr r0, [r6, #16] +100139c6: 69a2 ldr r2, [r4, #24] +100139c8: 4282 cmp r2, r0 +100139ca: d1f4 bne.n 100139b6 +100139cc: 89a0 ldrh r0, [r4, #12] +100139ce: 88b2 ldrh r2, [r6, #4] +100139d0: 4290 cmp r0, r2 +100139d2: d1f0 bne.n 100139b6 +100139d4: 88f0 ldrh r0, [r6, #6] +100139d6: f000 fa1d bl 10013e14 +100139da: f3c0 000c ubfx r0, r0, #0, #13 +100139de: bb48 cbnz r0, 10013a34 +100139e0: 89e0 ldrh r0, [r4, #14] +100139e2: f000 fa17 bl 10013e14 +100139e6: f3c0 000c ubfx r0, r0, #0, #13 +100139ea: b318 cbz r0, 10013a34 +100139ec: f104 0008 add.w r0, r4, #8 +100139f0: 4631 mov r1, r6 +100139f2: 2214 movs r2, #20 +100139f4: f02e fbb4 bl 10042160 +100139f8: e01c b.n 10013a34 +100139fa: 2005 movs r0, #5 +100139fc: f002 f8b0 bl 10015b60 +10013a00: 4603 mov r3, r0 +10013a02: 2800 cmp r0, #0 +10013a04: f000 8109 beq.w 10013c1a +10013a08: 4618 mov r0, r3 +10013a0a: 2100 movs r1, #0 +10013a0c: 2220 movs r2, #32 +10013a0e: 9301 str r3, [sp, #4] +10013a10: f02e fbac bl 1004216c +10013a14: 9b01 ldr r3, [sp, #4] +10013a16: f8d9 2000 ldr.w r2, [r9] +10013a1a: 2103 movs r1, #3 +10013a1c: 601a str r2, [r3, #0] +10013a1e: 77d9 strb r1, [r3, #31] +10013a20: f103 0008 add.w r0, r3, #8 +10013a24: 4631 mov r1, r6 +10013a26: 2214 movs r2, #20 +10013a28: 4625 mov r5, r4 +10013a2a: f8c9 3000 str.w r3, [r9] +10013a2e: 461c mov r4, r3 +10013a30: f02e fb96 bl 10042160 +10013a34: f8b8 2000 ldrh.w r2, [r8] +10013a38: eb0a 0302 add.w r3, sl, r2 +10013a3c: f8a8 3000 strh.w r3, [r8] +10013a40: 88f3 ldrh r3, [r6, #6] +10013a42: 0699 lsls r1, r3, #26 +10013a44: d54f bpl.n 10013ae6 +10013a46: 687e ldr r6, [r7, #4] +10013a48: 8870 ldrh r0, [r6, #2] +10013a4a: f000 f9e3 bl 10013e14 +10013a4e: 7833 ldrb r3, [r6, #0] +10013a50: f003 030f and.w r3, r3, #15 +10013a54: ebc3 3383 rsb r3, r3, r3, lsl #14 +10013a58: eb00 0b83 add.w fp, r0, r3, lsl #2 +10013a5c: 88f0 ldrh r0, [r6, #6] +10013a5e: f000 f9d9 bl 10013e14 +10013a62: f8d7 a004 ldr.w sl, [r7, #4] +10013a66: 2300 movs r3, #0 +10013a68: f3c0 000c ubfx r0, r0, #0, #13 +10013a6c: 00c6 lsls r6, r0, #3 +10013a6e: fa1f fb8b uxth.w fp, fp +10013a72: f88a 3000 strb.w r3, [sl] +10013a76: f88a 3001 strb.w r3, [sl, #1] +10013a7a: f88a 3002 strb.w r3, [sl, #2] +10013a7e: f88a 3003 strb.w r3, [sl, #3] +10013a82: 6863 ldr r3, [r4, #4] +10013a84: 44b3 add fp, r6 +10013a86: fa1f fb8b uxth.w fp, fp +10013a8a: f8aa b006 strh.w fp, [sl, #6] +10013a8e: f8aa 6004 strh.w r6, [sl, #4] +10013a92: 2b00 cmp r3, #0 +10013a94: f000 80d5 beq.w 10013c42 +10013a98: 685a ldr r2, [r3, #4] +10013a9a: 8891 ldrh r1, [r2, #4] +10013a9c: 428e cmp r6, r1 +10013a9e: f0c0 80ca bcc.w 10013c36 +10013aa2: d038 beq.n 10013b16 +10013aa4: 88d3 ldrh r3, [r2, #6] +10013aa6: 42b3 cmp r3, r6 +10013aa8: d835 bhi.n 10013b16 +10013aaa: f04f 0c01 mov.w ip, #1 +10013aae: e00d b.n 10013acc +10013ab0: 684b ldr r3, [r1, #4] +10013ab2: 8898 ldrh r0, [r3, #4] +10013ab4: 4286 cmp r6, r0 +10013ab6: d327 bcc.n 10013b08 +10013ab8: d02d beq.n 10013b16 +10013aba: 88d9 ldrh r1, [r3, #6] +10013abc: 42b1 cmp r1, r6 +10013abe: d82a bhi.n 10013b16 +10013ac0: 88d1 ldrh r1, [r2, #6] +10013ac2: 461a mov r2, r3 +10013ac4: 4281 cmp r1, r0 +10013ac6: bf18 it ne +10013ac8: f04f 0c00 movne.w ip, #0 +10013acc: 6811 ldr r1, [r2, #0] +10013ace: 2900 cmp r1, #0 +10013ad0: d1ee bne.n 10013ab0 +10013ad2: 88d3 ldrh r3, [r2, #6] +10013ad4: 6017 str r7, [r2, #0] +10013ad6: 42b3 cmp r3, r6 +10013ad8: d03f beq.n 10013b5a +10013ada: 7fa3 ldrb r3, [r4, #30] +10013adc: f013 0301 ands.w r3, r3, #1 +10013ae0: d124 bne.n 10013b2c +10013ae2: 4618 mov r0, r3 +10013ae4: e023 b.n 10013b2e +10013ae6: 9a03 ldr r2, [sp, #12] +10013ae8: f002 030f and.w r3, r2, #15 +10013aec: ebc3 3383 rsb r3, r3, r3, lsl #14 +10013af0: 7fa2 ldrb r2, [r4, #30] +10013af2: eb0b 0b83 add.w fp, fp, r3, lsl #2 +10013af6: 9b02 ldr r3, [sp, #8] +10013af8: eb0b 0ac3 add.w sl, fp, r3, lsl #3 +10013afc: f042 0301 orr.w r3, r2, #1 +10013b00: f8a4 a01c strh.w sl, [r4, #28] +10013b04: 77a3 strb r3, [r4, #30] +10013b06: e79e b.n 10013a46 +10013b08: f8ca 1000 str.w r1, [sl] +10013b0c: 88d3 ldrh r3, [r2, #6] +10013b0e: 42b3 cmp r3, r6 +10013b10: d801 bhi.n 10013b16 +10013b12: 4583 cmp fp, r0 +10013b14: d920 bls.n 10013b58 +10013b16: 4638 mov r0, r7 +10013b18: f8b8 4000 ldrh.w r4, [r8] +10013b1c: f002 fa9a bl 10016054 +10013b20: 1a24 subs r4, r4, r0 +10013b22: 4638 mov r0, r7 +10013b24: f8a8 4000 strh.w r4, [r8] +10013b28: f002 f99e bl 10015e68 +10013b2c: 2000 movs r0, #0 +10013b2e: b005 add sp, #20 +10013b30: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10013b34: 4630 mov r0, r6 +10013b36: 4651 mov r1, sl +10013b38: f7ff fec0 bl 100138bc +10013b3c: b128 cbz r0, 10013b4a +10013b3e: f8b8 2000 ldrh.w r2, [r8] +10013b42: 4452 add r2, sl +10013b44: 2a0a cmp r2, #10 +10013b46: f77f af2e ble.w 100139a6 +10013b4a: 4638 mov r0, r7 +10013b4c: f002 f98c bl 10015e68 +10013b50: 2000 movs r0, #0 +10013b52: b005 add sp, #20 +10013b54: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10013b58: 6017 str r7, [r2, #0] +10013b5a: 7fa3 ldrb r3, [r4, #30] +10013b5c: 07db lsls r3, r3, #31 +10013b5e: d5e5 bpl.n 10013b2c +10013b60: f1bc 0f00 cmp.w ip, #0 +10013b64: d0e2 beq.n 10013b2c +10013b66: 6863 ldr r3, [r4, #4] +10013b68: 685f ldr r7, [r3, #4] +10013b6a: 88bb ldrh r3, [r7, #4] +10013b6c: 2b00 cmp r3, #0 +10013b6e: d1dd bne.n 10013b2c +10013b70: f8da 3000 ldr.w r3, [sl] +10013b74: b17b cbz r3, 10013b96 +10013b76: 685b ldr r3, [r3, #4] +10013b78: f8ba 1006 ldrh.w r1, [sl, #6] +10013b7c: 889a ldrh r2, [r3, #4] +10013b7e: 4291 cmp r1, r2 +10013b80: d006 beq.n 10013b90 +10013b82: e7d3 b.n 10013b2c +10013b84: 6852 ldr r2, [r2, #4] +10013b86: 88d8 ldrh r0, [r3, #6] +10013b88: 8891 ldrh r1, [r2, #4] +10013b8a: 4613 mov r3, r2 +10013b8c: 4288 cmp r0, r1 +10013b8e: d1cd bne.n 10013b2c +10013b90: 681a ldr r2, [r3, #0] +10013b92: 2a00 cmp r2, #0 +10013b94: d1f6 bne.n 10013b84 +10013b96: 8ba3 ldrh r3, [r4, #28] +10013b98: f104 0108 add.w r1, r4, #8 +10013b9c: 3314 adds r3, #20 +10013b9e: 83a3 strh r3, [r4, #28] +10013ba0: 2214 movs r2, #20 +10013ba2: 4638 mov r0, r7 +10013ba4: 683e ldr r6, [r7, #0] +10013ba6: f02e fadb bl 10042160 +10013baa: 8ba0 ldrh r0, [r4, #28] +10013bac: f000 f92e bl 10013e0c +10013bb0: 2300 movs r3, #0 +10013bb2: 8078 strh r0, [r7, #2] +10013bb4: 71bb strb r3, [r7, #6] +10013bb6: 71fb strb r3, [r7, #7] +10013bb8: 72bb strb r3, [r7, #10] +10013bba: 72fb strb r3, [r7, #11] +10013bbc: 4638 mov r0, r7 +10013bbe: 2114 movs r1, #20 +10013bc0: f7ff fabc bl 1001313c +10013bc4: f8d4 a004 ldr.w sl, [r4, #4] +10013bc8: 8178 strh r0, [r7, #10] +10013bca: b166 cbz r6, 10013be6 +10013bcc: 6877 ldr r7, [r6, #4] +10013bce: 4630 mov r0, r6 +10013bd0: f06f 0113 mvn.w r1, #19 +10013bd4: f002 f912 bl 10015dfc +10013bd8: 4631 mov r1, r6 +10013bda: 4650 mov r0, sl +10013bdc: f002 fa52 bl 10016084 +10013be0: 683e ldr r6, [r7, #0] +10013be2: 2e00 cmp r6, #0 +10013be4: d1f2 bne.n 10013bcc +10013be6: f8d9 3000 ldr.w r3, [r9] +10013bea: 4a18 ldr r2, [pc, #96] ; (10013c4c ) +10013bec: 429c cmp r4, r3 +10013bee: 6823 ldr r3, [r4, #0] +10013bf0: 4621 mov r1, r4 +10013bf2: bf18 it ne +10013bf4: 602b strne r3, [r5, #0] +10013bf6: f04f 0005 mov.w r0, #5 +10013bfa: bf08 it eq +10013bfc: 6013 streq r3, [r2, #0] +10013bfe: f001 ffc5 bl 10015b8c +10013c02: 4650 mov r0, sl +10013c04: f8b8 4000 ldrh.w r4, [r8] +10013c08: f002 fa24 bl 10016054 +10013c0c: 1a20 subs r0, r4, r0 +10013c0e: f8a8 0000 strh.w r0, [r8] +10013c12: 4650 mov r0, sl +10013c14: b005 add sp, #20 +10013c16: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10013c1a: 4630 mov r0, r6 +10013c1c: 4651 mov r1, sl +10013c1e: f7ff fe4d bl 100138bc +10013c22: 4582 cmp sl, r0 +10013c24: dc91 bgt.n 10013b4a +10013c26: 2005 movs r0, #5 +10013c28: f001 ff9a bl 10015b60 +10013c2c: 4603 mov r3, r0 +10013c2e: 2800 cmp r0, #0 +10013c30: f47f aeea bne.w 10013a08 +10013c34: e789 b.n 10013b4a +10013c36: f8ca 3000 str.w r3, [sl] +10013c3a: f04f 0c01 mov.w ip, #1 +10013c3e: 6067 str r7, [r4, #4] +10013c40: e78b b.n 10013b5a +10013c42: 7fa3 ldrb r3, [r4, #30] +10013c44: 6067 str r7, [r4, #4] +10013c46: 07da lsls r2, r3, #31 +10013c48: d48d bmi.n 10013b66 +10013c4a: e76f b.n 10013b2c +10013c4c: 10050ce4 .word 0x10050ce4 +10013c50: 10050ce8 .word 0x10050ce8 + +10013c54 : +10013c54: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10013c58: 6847 ldr r7, [r0, #4] +10013c5a: b08f sub sp, #60 ; 0x3c +10013c5c: 9708 str r7, [sp, #32] +10013c5e: 9107 str r1, [sp, #28] +10013c60: 4604 mov r4, r0 +10013c62: 88f8 ldrh r0, [r7, #6] +10013c64: 8d0d ldrh r5, [r1, #40] ; 0x28 +10013c66: 920c str r2, [sp, #48] ; 0x30 +10013c68: f000 f8d4 bl 10013e14 +10013c6c: 8922 ldrh r2, [r4, #8] +10013c6e: f400 5300 and.w r3, r0, #8192 ; 0x2000 +10013c72: 3a14 subs r2, #20 +10013c74: b29b uxth r3, r3 +10013c76: b292 uxth r2, r2 +10013c78: 9204 str r2, [sp, #16] +10013c7a: 930a str r3, [sp, #40] ; 0x28 +10013c7c: f1b5 0314 subs.w r3, r5, #20 +10013c80: bf48 it mi +10013c82: f1a5 030d submi.w r3, r5, #13 +10013c86: 9f04 ldr r7, [sp, #16] +10013c88: f3c0 000c ubfx r0, r0, #0, #13 +10013c8c: f3c3 03cf ubfx r3, r3, #3, #16 +10013c90: 9005 str r0, [sp, #20] +10013c92: 9309 str r3, [sp, #36] ; 0x24 +10013c94: 2f00 cmp r7, #0 +10013c96: f000 80b4 beq.w 10013e02 +10013c9a: 9f09 ldr r7, [sp, #36] ; 0x24 +10013c9c: 3d13 subs r5, #19 +10013c9e: 00fb lsls r3, r7, #3 +10013ca0: b29b uxth r3, r3 +10013ca2: f8df 8164 ldr.w r8, [pc, #356] ; 10013e08 +10013ca6: 950b str r5, [sp, #44] ; 0x2c +10013ca8: 930d str r3, [sp, #52] ; 0x34 +10013caa: 2500 movs r5, #0 +10013cac: 2614 movs r6, #20 +10013cae: 9f05 ldr r7, [sp, #20] +10013cb0: 9a0b ldr r2, [sp, #44] ; 0x2c +10013cb2: f3c7 0b0c ubfx fp, r7, #0, #13 +10013cb6: 9f0a ldr r7, [sp, #40] ; 0x28 +10013cb8: ea47 0b0b orr.w fp, r7, fp +10013cbc: 9f04 ldr r7, [sp, #16] +10013cbe: f8cd b018 str.w fp, [sp, #24] +10013cc2: 4297 cmp r7, r2 +10013cc4: f2c0 8082 blt.w 10013dcc +10013cc8: f44b 5700 orr.w r7, fp, #8192 ; 0x2000 +10013ccc: 9706 str r7, [sp, #24] +10013cce: 9f0d ldr r7, [sp, #52] ; 0x34 +10013cd0: 9703 str r7, [sp, #12] +10013cd2: 2002 movs r0, #2 +10013cd4: 2114 movs r1, #20 +10013cd6: 2200 movs r2, #0 +10013cd8: f002 f8fc bl 10015ed4 +10013cdc: 4607 mov r7, r0 +10013cde: 2800 cmp r0, #0 +10013ce0: f000 808d beq.w 10013dfe +10013ce4: 2214 movs r2, #20 +10013ce6: 6840 ldr r0, [r0, #4] +10013ce8: 9908 ldr r1, [sp, #32] +10013cea: f02e fa39 bl 10042160 +10013cee: 6862 ldr r2, [r4, #4] +10013cf0: 8963 ldrh r3, [r4, #10] +10013cf2: 4432 add r2, r6 +10013cf4: f8d7 9004 ldr.w r9, [r7, #4] +10013cf8: 1b9b subs r3, r3, r6 +10013cfa: 6062 str r2, [r4, #4] +10013cfc: 9a03 ldr r2, [sp, #12] +10013cfe: b29b uxth r3, r3 +10013d00: 8163 strh r3, [r4, #10] +10013d02: 2a00 cmp r2, #0 +10013d04: d031 beq.n 10013d6a +10013d06: 4616 mov r6, r2 +10013d08: 461d mov r5, r3 +10013d0a: 9702 str r7, [sp, #8] +10013d0c: e002 b.n 10013d14 +10013d0e: 6824 ldr r4, [r4, #0] +10013d10: b356 cbz r6, 10013d68 +10013d12: 8965 ldrh r5, [r4, #10] +10013d14: 42b5 cmp r5, r6 +10013d16: bf28 it cs +10013d18: 4635 movcs r5, r6 +10013d1a: b2ad uxth r5, r5 +10013d1c: 2d00 cmp r5, #0 +10013d1e: d0f6 beq.n 10013d0e +10013d20: 2006 movs r0, #6 +10013d22: f001 ff1d bl 10015b60 +10013d26: 4683 mov fp, r0 +10013d28: 4603 mov r3, r0 +10013d2a: 4629 mov r1, r5 +10013d2c: 2202 movs r2, #2 +10013d2e: 2003 movs r0, #3 +10013d30: f1bb 0f00 cmp.w fp, #0 +10013d34: d04d beq.n 10013dd2 +10013d36: 6867 ldr r7, [r4, #4] +10013d38: 9501 str r5, [sp, #4] +10013d3a: 9700 str r7, [sp, #0] +10013d3c: f002 f830 bl 10015da0 +10013d40: 4682 mov sl, r0 +10013d42: 4620 mov r0, r4 +10013d44: f1ba 0f00 cmp.w sl, #0 +10013d48: d04c beq.n 10013de4 +10013d4a: 1b76 subs r6, r6, r5 +10013d4c: f002 f98c bl 10016068 +10013d50: b2b6 uxth r6, r6 +10013d52: f8cb 4014 str.w r4, [fp, #20] +10013d56: f8cb 8010 str.w r8, [fp, #16] +10013d5a: 4651 mov r1, sl +10013d5c: 9802 ldr r0, [sp, #8] +10013d5e: f002 f991 bl 10016084 +10013d62: b10e cbz r6, 10013d68 +10013d64: 6824 ldr r4, [r4, #0] +10013d66: e7d4 b.n 10013d12 +10013d68: 9f02 ldr r7, [sp, #8] +10013d6a: 9806 ldr r0, [sp, #24] +10013d6c: f000 f84e bl 10013e0c +10013d70: 9a03 ldr r2, [sp, #12] +10013d72: f8a9 0006 strh.w r0, [r9, #6] +10013d76: f102 0314 add.w r3, r2, #20 +10013d7a: b298 uxth r0, r3 +10013d7c: f000 f846 bl 10013e0c +10013d80: 2300 movs r3, #0 +10013d82: f8a9 0002 strh.w r0, [r9, #2] +10013d86: f889 300a strb.w r3, [r9, #10] +10013d8a: f889 300b strb.w r3, [r9, #11] +10013d8e: 2114 movs r1, #20 +10013d90: 4648 mov r0, r9 +10013d92: f7ff f9d3 bl 1001313c +10013d96: 9a07 ldr r2, [sp, #28] +10013d98: 4639 mov r1, r7 +10013d9a: 6953 ldr r3, [r2, #20] +10013d9c: f8a9 000a strh.w r0, [r9, #10] +10013da0: 4610 mov r0, r2 +10013da2: 9a0c ldr r2, [sp, #48] ; 0x30 +10013da4: 4798 blx r3 +10013da6: 4638 mov r0, r7 +10013da8: f002 f85e bl 10015e68 +10013dac: 9f04 ldr r7, [sp, #16] +10013dae: 9a03 ldr r2, [sp, #12] +10013db0: 9b05 ldr r3, [sp, #20] +10013db2: ebc2 0a07 rsb sl, r2, r7 +10013db6: fa1f f78a uxth.w r7, sl +10013dba: 9704 str r7, [sp, #16] +10013dbc: 9f09 ldr r7, [sp, #36] ; 0x24 +10013dbe: 443b add r3, r7 +10013dc0: 9f04 ldr r7, [sp, #16] +10013dc2: b29b uxth r3, r3 +10013dc4: 9305 str r3, [sp, #20] +10013dc6: b1e7 cbz r7, 10013e02 +10013dc8: 462e mov r6, r5 +10013dca: e770 b.n 10013cae +10013dcc: 9f04 ldr r7, [sp, #16] +10013dce: 9703 str r7, [sp, #12] +10013dd0: e77f b.n 10013cd2 +10013dd2: 9f02 ldr r7, [sp, #8] +10013dd4: 4638 mov r0, r7 +10013dd6: f002 f847 bl 10015e68 +10013dda: 20ff movs r0, #255 ; 0xff +10013ddc: b240 sxtb r0, r0 +10013dde: b00f add sp, #60 ; 0x3c +10013de0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10013de4: 9f02 ldr r7, [sp, #8] +10013de6: 4659 mov r1, fp +10013de8: 2006 movs r0, #6 +10013dea: f001 fecf bl 10015b8c +10013dee: 4638 mov r0, r7 +10013df0: f002 f83a bl 10015e68 +10013df4: 20ff movs r0, #255 ; 0xff +10013df6: b240 sxtb r0, r0 +10013df8: b00f add sp, #60 ; 0x3c +10013dfa: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10013dfe: 20ff movs r0, #255 ; 0xff +10013e00: e7ec b.n 10013ddc +10013e02: 2000 movs r0, #0 +10013e04: e7ea b.n 10013ddc +10013e06: bf00 nop +10013e08: 10013819 .word 0x10013819 + +10013e0c : +10013e0c: ba40 rev16 r0, r0 +10013e0e: b280 uxth r0, r0 +10013e10: 4770 bx lr +10013e12: bf00 nop + +10013e14 : +10013e14: ba40 rev16 r0, r0 +10013e16: b280 uxth r0, r0 +10013e18: 4770 bx lr +10013e1a: bf00 nop + +10013e1c : +10013e1c: ba00 rev r0, r0 +10013e1e: 4770 bx lr + +10013e20 : +10013e20: ba00 rev r0, r0 +10013e22: 4770 bx lr + +10013e24 : +10013e24: b410 push {r4} +10013e26: b1a0 cbz r0, 10013e52 +10013e28: 8b03 ldrh r3, [r0, #24] +10013e2a: 6942 ldr r2, [r0, #20] +10013e2c: 1c59 adds r1, r3, #1 +10013e2e: 4413 add r3, r2 +10013e30: 22ff movs r2, #255 ; 0xff +10013e32: 8301 strh r1, [r0, #24] +10013e34: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10013e38: 8b03 ldrh r3, [r0, #24] +10013e3a: 2b43 cmp r3, #67 ; 0x43 +10013e3c: d809 bhi.n 10013e52 +10013e3e: 2400 movs r4, #0 +10013e40: 6942 ldr r2, [r0, #20] +10013e42: 1c59 adds r1, r3, #1 +10013e44: 4413 add r3, r2 +10013e46: 8301 strh r1, [r0, #24] +10013e48: f883 40f0 strb.w r4, [r3, #240] ; 0xf0 +10013e4c: 8b03 ldrh r3, [r0, #24] +10013e4e: 2b43 cmp r3, #67 ; 0x43 +10013e50: d9f6 bls.n 10013e40 +10013e52: f85d 4b04 ldr.w r4, [sp], #4 +10013e56: 4770 bx lr + +10013e58 : +10013e58: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10013e5c: 4607 mov r7, r0 +10013e5e: 460c mov r4, r1 +10013e60: 4615 mov r5, r2 +10013e62: 2800 cmp r0, #0 +10013e64: f000 80ad beq.w 10013fc2 +10013e68: 2900 cmp r1, #0 +10013e6a: f000 80a6 beq.w 10013fba +10013e6e: 2000 movs r0, #0 +10013e70: 4602 mov r2, r0 +10013e72: f44f 719a mov.w r1, #308 ; 0x134 +10013e76: f002 f82d bl 10015ed4 +10013e7a: 6120 str r0, [r4, #16] +10013e7c: 2800 cmp r0, #0 +10013e7e: f000 809e beq.w 10013fbe +10013e82: 7b63 ldrb r3, [r4, #13] +10013e84: 2b00 cmp r3, #0 +10013e86: f000 8091 beq.w 10013fac +10013e8a: 4b4f ldr r3, [pc, #316] ; (10013fc8 ) +10013e8c: 6819 ldr r1, [r3, #0] +10013e8e: 6842 ldr r2, [r0, #4] +10013e90: 2301 movs r3, #1 +10013e92: 6162 str r2, [r4, #20] +10013e94: 6021 str r1, [r4, #0] +10013e96: 7013 strb r3, [r2, #0] +10013e98: 6962 ldr r2, [r4, #20] +10013e9a: 2600 movs r6, #0 +10013e9c: 7053 strb r3, [r2, #1] +10013e9e: 6963 ldr r3, [r4, #20] +10013ea0: f897 202a ldrb.w r2, [r7, #42] ; 0x2a +10013ea4: 709a strb r2, [r3, #2] +10013ea6: 6963 ldr r3, [r4, #20] +10013ea8: 70de strb r6, [r3, #3] +10013eaa: 6820 ldr r0, [r4, #0] +10013eac: f8d4 8014 ldr.w r8, [r4, #20] +10013eb0: f7ff ffb4 bl 10013e1c +10013eb4: 6962 ldr r2, [r4, #20] +10013eb6: 2d08 cmp r5, #8 +10013eb8: f8c8 0004 str.w r0, [r8, #4] +10013ebc: 7216 strb r6, [r2, #8] +10013ebe: 7256 strb r6, [r2, #9] +10013ec0: 7296 strb r6, [r2, #10] +10013ec2: 72d6 strb r6, [r2, #11] +10013ec4: 7316 strb r6, [r2, #12] +10013ec6: 7356 strb r6, [r2, #13] +10013ec8: 7396 strb r6, [r2, #14] +10013eca: 73d6 strb r6, [r2, #15] +10013ecc: d06b beq.n 10013fa6 +10013ece: 2d04 cmp r5, #4 +10013ed0: d069 beq.n 10013fa6 +10013ed2: 2d03 cmp r5, #3 +10013ed4: d063 beq.n 10013f9e +10013ed6: 2300 movs r3, #0 +10013ed8: 7413 strb r3, [r2, #16] +10013eda: 7453 strb r3, [r2, #17] +10013edc: 7493 strb r3, [r2, #18] +10013ede: 74d3 strb r3, [r2, #19] +10013ee0: 7513 strb r3, [r2, #20] +10013ee2: 7553 strb r3, [r2, #21] +10013ee4: 7593 strb r3, [r2, #22] +10013ee6: 75d3 strb r3, [r2, #23] +10013ee8: 7613 strb r3, [r2, #24] +10013eea: 7653 strb r3, [r2, #25] +10013eec: 7693 strb r3, [r2, #26] +10013eee: 76d3 strb r3, [r2, #27] +10013ef0: e000 b.n 10013ef4 +10013ef2: 6962 ldr r2, [r4, #20] +10013ef4: f897 602a ldrb.w r6, [r7, #42] ; 0x2a +10013ef8: b299 uxth r1, r3 +10013efa: 428e cmp r6, r1 +10013efc: bf84 itt hi +10013efe: 18f9 addhi r1, r7, r3 +10013f00: f891 102b ldrbhi.w r1, [r1, #43] ; 0x2b +10013f04: 441a add r2, r3 +10013f06: f103 0301 add.w r3, r3, #1 +10013f0a: bf98 it ls +10013f0c: 2100 movls r1, #0 +10013f0e: 2b10 cmp r3, #16 +10013f10: 7711 strb r1, [r2, #28] +10013f12: d1ee bne.n 10013ef2 +10013f14: 2300 movs r3, #0 +10013f16: 4619 mov r1, r3 +10013f18: 6962 ldr r2, [r4, #20] +10013f1a: 441a add r2, r3 +10013f1c: 3301 adds r3, #1 +10013f1e: 2b40 cmp r3, #64 ; 0x40 +10013f20: f882 102c strb.w r1, [r2, #44] ; 0x2c +10013f24: d1f8 bne.n 10013f18 +10013f26: 2300 movs r3, #0 +10013f28: 4618 mov r0, r3 +10013f2a: 6961 ldr r1, [r4, #20] +10013f2c: 2200 movs r2, #0 +10013f2e: 4419 add r1, r3 +10013f30: 3301 adds r3, #1 +10013f32: 2b80 cmp r3, #128 ; 0x80 +10013f34: f881 006c strb.w r0, [r1, #108] ; 0x6c +10013f38: d1f7 bne.n 10013f2a +10013f3a: 6961 ldr r1, [r4, #20] +10013f3c: 2363 movs r3, #99 ; 0x63 +10013f3e: f06f 067d mvn.w r6, #125 ; 0x7d +10013f42: 2053 movs r0, #83 ; 0x53 +10013f44: f881 30ec strb.w r3, [r1, #236] ; 0xec +10013f48: f881 30ef strb.w r3, [r1, #239] ; 0xef +10013f4c: f881 60ed strb.w r6, [r1, #237] ; 0xed +10013f50: f881 00ee strb.w r0, [r1, #238] ; 0xee +10013f54: 4613 mov r3, r2 +10013f56: 8322 strh r2, [r4, #24] +10013f58: e000 b.n 10013f5c +10013f5a: 6961 ldr r1, [r4, #20] +10013f5c: 4419 add r1, r3 +10013f5e: f881 30f0 strb.w r3, [r1, #240] ; 0xf0 +10013f62: 3301 adds r3, #1 +10013f64: 2b44 cmp r3, #68 ; 0x44 +10013f66: d1f8 bne.n 10013f5a +10013f68: 8b23 ldrh r3, [r4, #24] +10013f6a: 6962 ldr r2, [r4, #20] +10013f6c: 1c59 adds r1, r3, #1 +10013f6e: 4413 add r3, r2 +10013f70: 2235 movs r2, #53 ; 0x35 +10013f72: 8321 strh r1, [r4, #24] +10013f74: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10013f78: 8b23 ldrh r3, [r4, #24] +10013f7a: 6962 ldr r2, [r4, #20] +10013f7c: 1c59 adds r1, r3, #1 +10013f7e: 4413 add r3, r2 +10013f80: 2201 movs r2, #1 +10013f82: 8321 strh r1, [r4, #24] +10013f84: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10013f88: 8b23 ldrh r3, [r4, #24] +10013f8a: 6962 ldr r2, [r4, #20] +10013f8c: 1c59 adds r1, r3, #1 +10013f8e: 4413 add r3, r2 +10013f90: 8321 strh r1, [r4, #24] +10013f92: 2000 movs r0, #0 +10013f94: f883 50f0 strb.w r5, [r3, #240] ; 0xf0 +10013f98: b240 sxtb r0, r0 +10013f9a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10013f9e: 7b23 ldrb r3, [r4, #12] +10013fa0: 3b04 subs r3, #4 +10013fa2: 2b01 cmp r3, #1 +10013fa4: d897 bhi.n 10013ed6 +10013fa6: 687b ldr r3, [r7, #4] +10013fa8: 60d3 str r3, [r2, #12] +10013faa: e794 b.n 10013ed6 +10013fac: f02e fa4e bl 1004244c +10013fb0: 4b05 ldr r3, [pc, #20] ; (10013fc8 ) +10013fb2: 4601 mov r1, r0 +10013fb4: 6019 str r1, [r3, #0] +10013fb6: 6920 ldr r0, [r4, #16] +10013fb8: e769 b.n 10013e8e +10013fba: 20fa movs r0, #250 ; 0xfa +10013fbc: e7ec b.n 10013f98 +10013fbe: 20ff movs r0, #255 ; 0xff +10013fc0: e7ea b.n 10013f98 +10013fc2: 20f2 movs r0, #242 ; 0xf2 +10013fc4: e7e8 b.n 10013f98 +10013fc6: bf00 nop +10013fc8: 10050d20 .word 0x10050d20 + +10013fcc : +10013fcc: b510 push {r4, lr} +10013fce: 4604 mov r4, r0 +10013fd0: b130 cbz r0, 10013fe0 +10013fd2: 6900 ldr r0, [r0, #16] +10013fd4: b108 cbz r0, 10013fda +10013fd6: f001 ff47 bl 10015e68 +10013fda: 2300 movs r3, #0 +10013fdc: 6123 str r3, [r4, #16] +10013fde: 6163 str r3, [r4, #20] +10013fe0: bd10 pop {r4, pc} +10013fe2: bf00 nop + +10013fe4 : +10013fe4: b570 push {r4, r5, r6, lr} +10013fe6: 6a04 ldr r4, [r0, #32] +10013fe8: 2300 movs r3, #0 +10013fea: 7b22 ldrb r2, [r4, #12] +10013fec: b082 sub sp, #8 +10013fee: 2a06 cmp r2, #6 +10013ff0: 4605 mov r5, r0 +10013ff2: 62e3 str r3, [r4, #44] ; 0x2c +10013ff4: d003 beq.n 10013ffe +10013ff6: 2206 movs r2, #6 +10013ff8: 7363 strb r3, [r4, #13] +10013ffa: 8363 strh r3, [r4, #26] +10013ffc: 7322 strb r2, [r4, #12] +10013ffe: 4628 mov r0, r5 +10014000: 4621 mov r1, r4 +10014002: 2201 movs r2, #1 +10014004: f7ff ff28 bl 10013e58 +10014008: 4606 mov r6, r0 +1001400a: b1d8 cbz r0, 10014044 +1001400c: 7b63 ldrb r3, [r4, #13] +1001400e: 3301 adds r3, #1 +10014010: b2db uxtb r3, r3 +10014012: 2b05 cmp r3, #5 +10014014: 7363 strb r3, [r4, #13] +10014016: d810 bhi.n 1001403a +10014018: f44f 727a mov.w r2, #1000 ; 0x3e8 +1001401c: fa02 f303 lsl.w r3, r2, r3 +10014020: 4a3a ldr r2, [pc, #232] ; (1001410c ) +10014022: f203 13f3 addw r3, r3, #499 ; 0x1f3 +10014026: fb82 1203 smull r1, r2, r2, r3 +1001402a: 17db asrs r3, r3, #31 +1001402c: ebc3 1362 rsb r3, r3, r2, asr #5 +10014030: b29b uxth r3, r3 +10014032: 4630 mov r0, r6 +10014034: 8363 strh r3, [r4, #26] +10014036: b002 add sp, #8 +10014038: bd70 pop {r4, r5, r6, pc} +1001403a: 2378 movs r3, #120 ; 0x78 +1001403c: 4630 mov r0, r6 +1001403e: 8363 strh r3, [r4, #26] +10014040: b002 add sp, #8 +10014042: bd70 pop {r4, r5, r6, pc} +10014044: 8b23 ldrh r3, [r4, #24] +10014046: 6962 ldr r2, [r4, #20] +10014048: 1c59 adds r1, r3, #1 +1001404a: 4413 add r3, r2 +1001404c: 2239 movs r2, #57 ; 0x39 +1001404e: 8321 strh r1, [r4, #24] +10014050: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014054: 8b23 ldrh r3, [r4, #24] +10014056: 6962 ldr r2, [r4, #20] +10014058: 1c59 adds r1, r3, #1 +1001405a: 4413 add r3, r2 +1001405c: 2202 movs r2, #2 +1001405e: 8321 strh r1, [r4, #24] +10014060: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014064: 8b22 ldrh r2, [r4, #24] +10014066: 8d2b ldrh r3, [r5, #40] ; 0x28 +10014068: 6961 ldr r1, [r4, #20] +1001406a: 1c50 adds r0, r2, #1 +1001406c: 440a add r2, r1 +1001406e: 0a19 lsrs r1, r3, #8 +10014070: 8320 strh r0, [r4, #24] +10014072: f882 10f0 strb.w r1, [r2, #240] ; 0xf0 +10014076: 8b22 ldrh r2, [r4, #24] +10014078: 6961 ldr r1, [r4, #20] +1001407a: 1c50 adds r0, r2, #1 +1001407c: 440a add r2, r1 +1001407e: 8320 strh r0, [r4, #24] +10014080: f882 30f0 strb.w r3, [r2, #240] ; 0xf0 +10014084: 8b23 ldrh r3, [r4, #24] +10014086: 6962 ldr r2, [r4, #20] +10014088: 1c59 adds r1, r3, #1 +1001408a: 4413 add r3, r2 +1001408c: 2237 movs r2, #55 ; 0x37 +1001408e: 8321 strh r1, [r4, #24] +10014090: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014094: 8b23 ldrh r3, [r4, #24] +10014096: 6962 ldr r2, [r4, #20] +10014098: 1c59 adds r1, r3, #1 +1001409a: 4413 add r3, r2 +1001409c: 2204 movs r2, #4 +1001409e: 8321 strh r1, [r4, #24] +100140a0: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100140a4: 8b23 ldrh r3, [r4, #24] +100140a6: 6962 ldr r2, [r4, #20] +100140a8: 1c59 adds r1, r3, #1 +100140aa: 4413 add r3, r2 +100140ac: 2201 movs r2, #1 +100140ae: 8321 strh r1, [r4, #24] +100140b0: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100140b4: 8b23 ldrh r3, [r4, #24] +100140b6: 6962 ldr r2, [r4, #20] +100140b8: 1c59 adds r1, r3, #1 +100140ba: 4413 add r3, r2 +100140bc: 2203 movs r2, #3 +100140be: 8321 strh r1, [r4, #24] +100140c0: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100140c4: 8b23 ldrh r3, [r4, #24] +100140c6: 6962 ldr r2, [r4, #20] +100140c8: 1c59 adds r1, r3, #1 +100140ca: 4413 add r3, r2 +100140cc: 221c movs r2, #28 +100140ce: 8321 strh r1, [r4, #24] +100140d0: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100140d4: 8b23 ldrh r3, [r4, #24] +100140d6: 6962 ldr r2, [r4, #20] +100140d8: 1c59 adds r1, r3, #1 +100140da: 4413 add r3, r2 +100140dc: 2206 movs r2, #6 +100140de: 8321 strh r1, [r4, #24] +100140e0: 4620 mov r0, r4 +100140e2: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100140e6: f7ff fe9d bl 10013e24 +100140ea: 8b21 ldrh r1, [r4, #24] +100140ec: 6920 ldr r0, [r4, #16] +100140ee: 31f0 adds r1, #240 ; 0xf0 +100140f0: b289 uxth r1, r1 +100140f2: f001 ff85 bl 10016000 +100140f6: 6860 ldr r0, [r4, #4] +100140f8: 6921 ldr r1, [r4, #16] +100140fa: 4a05 ldr r2, [pc, #20] ; (10014110 ) +100140fc: 9500 str r5, [sp, #0] +100140fe: 2343 movs r3, #67 ; 0x43 +10014100: f005 f8c4 bl 1001928c +10014104: 4620 mov r0, r4 +10014106: f7ff ff61 bl 10013fcc +1001410a: e77f b.n 1001400c +1001410c: 10624dd3 .word 0x10624dd3 +10014110: 10047c88 .word 0x10047c88 + +10014114 : +10014114: b570 push {r4, r5, r6, lr} +10014116: 6a04 ldr r4, [r0, #32] +10014118: b082 sub sp, #8 +1001411a: 7b23 ldrb r3, [r4, #12] +1001411c: 4605 mov r5, r0 +1001411e: 2b04 cmp r3, #4 +10014120: d004 beq.n 1001412c +10014122: 2300 movs r3, #0 +10014124: 2204 movs r2, #4 +10014126: 7322 strb r2, [r4, #12] +10014128: 7363 strb r3, [r4, #13] +1001412a: 8363 strh r3, [r4, #26] +1001412c: 4628 mov r0, r5 +1001412e: 4621 mov r1, r4 +10014130: 2203 movs r2, #3 +10014132: f7ff fe91 bl 10013e58 +10014136: 4606 mov r6, r0 +10014138: b1d0 cbz r0, 10014170 +1001413a: 7b63 ldrb r3, [r4, #13] +1001413c: 3301 adds r3, #1 +1001413e: b2db uxtb r3, r3 +10014140: 2b09 cmp r3, #9 +10014142: 7363 strb r3, [r4, #13] +10014144: d80f bhi.n 10014166 +10014146: ebc3 1243 rsb r2, r3, r3, lsl #5 +1001414a: eb03 0382 add.w r3, r3, r2, lsl #2 +1001414e: 00db lsls r3, r3, #3 +10014150: 4a21 ldr r2, [pc, #132] ; (100141d8 ) +10014152: b29b uxth r3, r3 +10014154: f203 13f3 addw r3, r3, #499 ; 0x1f3 +10014158: fb82 1303 smull r1, r3, r2, r3 +1001415c: 4630 mov r0, r6 +1001415e: 095b lsrs r3, r3, #5 +10014160: 8363 strh r3, [r4, #26] +10014162: b002 add sp, #8 +10014164: bd70 pop {r4, r5, r6, pc} +10014166: 2314 movs r3, #20 +10014168: 4630 mov r0, r6 +1001416a: 8363 strh r3, [r4, #26] +1001416c: b002 add sp, #8 +1001416e: bd70 pop {r4, r5, r6, pc} +10014170: 8b23 ldrh r3, [r4, #24] +10014172: 6962 ldr r2, [r4, #20] +10014174: 1c59 adds r1, r3, #1 +10014176: 4413 add r3, r2 +10014178: 2239 movs r2, #57 ; 0x39 +1001417a: 8321 strh r1, [r4, #24] +1001417c: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014180: 8b23 ldrh r3, [r4, #24] +10014182: 6962 ldr r2, [r4, #20] +10014184: 1c59 adds r1, r3, #1 +10014186: 4413 add r3, r2 +10014188: 2202 movs r2, #2 +1001418a: 8321 strh r1, [r4, #24] +1001418c: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014190: 8d2b ldrh r3, [r5, #40] ; 0x28 +10014192: 8b22 ldrh r2, [r4, #24] +10014194: 6961 ldr r1, [r4, #20] +10014196: 1c50 adds r0, r2, #1 +10014198: 440a add r2, r1 +1001419a: 0a19 lsrs r1, r3, #8 +1001419c: 8320 strh r0, [r4, #24] +1001419e: f882 10f0 strb.w r1, [r2, #240] ; 0xf0 +100141a2: 8b22 ldrh r2, [r4, #24] +100141a4: 6961 ldr r1, [r4, #20] +100141a6: 1c50 adds r0, r2, #1 +100141a8: 440a add r2, r1 +100141aa: 8320 strh r0, [r4, #24] +100141ac: f882 30f0 strb.w r3, [r2, #240] ; 0xf0 +100141b0: 4620 mov r0, r4 +100141b2: f7ff fe37 bl 10013e24 +100141b6: 8b21 ldrh r1, [r4, #24] +100141b8: 6920 ldr r0, [r4, #16] +100141ba: 31f0 adds r1, #240 ; 0xf0 +100141bc: b289 uxth r1, r1 +100141be: f001 ff1f bl 10016000 +100141c2: 6860 ldr r0, [r4, #4] +100141c4: 6921 ldr r1, [r4, #16] +100141c6: 4a05 ldr r2, [pc, #20] ; (100141dc ) +100141c8: 9500 str r5, [sp, #0] +100141ca: 2343 movs r3, #67 ; 0x43 +100141cc: f005 f85e bl 1001928c +100141d0: 4620 mov r0, r4 +100141d2: f7ff fefb bl 10013fcc +100141d6: e7b0 b.n 1001413a +100141d8: 10624dd3 .word 0x10624dd3 +100141dc: 10047c88 .word 0x10047c88 + +100141e0 : +100141e0: b510 push {r4, lr} +100141e2: 6a04 ldr r4, [r0, #32] +100141e4: 7b23 ldrb r3, [r4, #12] +100141e6: 2b08 cmp r3, #8 +100141e8: d004 beq.n 100141f4 +100141ea: 2300 movs r3, #0 +100141ec: 2208 movs r2, #8 +100141ee: 7322 strb r2, [r4, #12] +100141f0: 7363 strb r3, [r4, #13] +100141f2: 8363 strh r3, [r4, #26] +100141f4: 2200 movs r2, #0 +100141f6: f104 012c add.w r1, r4, #44 ; 0x2c +100141fa: f005 faeb bl 100197d4 +100141fe: 7b62 ldrb r2, [r4, #13] +10014200: 2301 movs r3, #1 +10014202: 441a add r2, r3 +10014204: 7362 strb r2, [r4, #13] +10014206: 8363 strh r3, [r4, #26] +10014208: bd10 pop {r4, pc} +1001420a: bf00 nop + +1001420c : +1001420c: b530 push {r4, r5, lr} +1001420e: 4605 mov r5, r0 +10014210: b083 sub sp, #12 +10014212: 2800 cmp r0, #0 +10014214: d05d beq.n 100142d2 +10014216: 6a04 ldr r4, [r0, #32] +10014218: 2c00 cmp r4, #0 +1001421a: d05a beq.n 100142d2 +1001421c: 6be3 ldr r3, [r4, #60] ; 0x3c +1001421e: 2200 movs r2, #0 +10014220: 1c59 adds r1, r3, #1 +10014222: 84a2 strh r2, [r4, #36] ; 0x24 +10014224: d00c beq.n 10014240 +10014226: f1a2 3277 sub.w r2, r2, #2004318071 ; 0x77777777 +1001422a: 331e adds r3, #30 +1001422c: fba2 1303 umull r1, r3, r2, r3 +10014230: 095b lsrs r3, r3, #5 +10014232: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 +10014236: d259 bcs.n 100142ec +10014238: b29b uxth r3, r3 +1001423a: b903 cbnz r3, 1001423e +1001423c: 2301 movs r3, #1 +1001423e: 84e3 strh r3, [r4, #38] ; 0x26 +10014240: 6c23 ldr r3, [r4, #64] ; 0x40 +10014242: 1c58 adds r0, r3, #1 +10014244: d00c beq.n 10014260 +10014246: 4a2f ldr r2, [pc, #188] ; (10014304 ) +10014248: 331e adds r3, #30 +1001424a: fba2 1303 umull r1, r3, r2, r3 +1001424e: 095b lsrs r3, r3, #5 +10014250: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 +10014254: d246 bcs.n 100142e4 +10014256: b29b uxth r3, r3 +10014258: b903 cbnz r3, 1001425c +1001425a: 2301 movs r3, #1 +1001425c: 83a3 strh r3, [r4, #28] +1001425e: 8423 strh r3, [r4, #32] +10014260: 6c63 ldr r3, [r4, #68] ; 0x44 +10014262: 1c59 adds r1, r3, #1 +10014264: d00c beq.n 10014280 +10014266: 4a27 ldr r2, [pc, #156] ; (10014304 ) +10014268: 331e adds r3, #30 +1001426a: fba2 1303 umull r1, r3, r2, r3 +1001426e: 095b lsrs r3, r3, #5 +10014270: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 +10014274: d232 bcs.n 100142dc +10014276: b29b uxth r3, r3 +10014278: b903 cbnz r3, 1001427c +1001427a: 2301 movs r3, #1 +1001427c: 83e3 strh r3, [r4, #30] +1001427e: 8463 strh r3, [r4, #34] ; 0x22 +10014280: 7ba3 ldrb r3, [r4, #14] +10014282: bb43 cbnz r3, 100142d6 +10014284: f894 302c ldrb.w r3, [r4, #44] ; 0x2c +10014288: 061a lsls r2, r3, #24 +1001428a: d433 bmi.n 100142f4 +1001428c: 23ff movs r3, #255 ; 0xff +1001428e: 9300 str r3, [sp, #0] +10014290: 6b63 ldr r3, [r4, #52] ; 0x34 +10014292: 9301 str r3, [sp, #4] +10014294: b92b cbnz r3, 100142a2 +10014296: 9a00 ldr r2, [sp, #0] +10014298: 6ae3 ldr r3, [r4, #44] ; 0x2c +1001429a: 4013 ands r3, r2 +1001429c: f043 7380 orr.w r3, r3, #16777216 ; 0x1000000 +100142a0: 9301 str r3, [sp, #4] +100142a2: 4628 mov r0, r5 +100142a4: f104 012c add.w r1, r4, #44 ; 0x2c +100142a8: f001 fc86 bl 10015bb8 +100142ac: 4628 mov r0, r5 +100142ae: 4669 mov r1, sp +100142b0: f001 fd08 bl 10015cc4 +100142b4: 4628 mov r0, r5 +100142b6: a901 add r1, sp, #4 +100142b8: f001 fd00 bl 10015cbc +100142bc: 4628 mov r0, r5 +100142be: f001 fd0b bl 10015cd8 +100142c2: 7b23 ldrb r3, [r4, #12] +100142c4: 2b0a cmp r3, #10 +100142c6: d004 beq.n 100142d2 +100142c8: 2300 movs r3, #0 +100142ca: 220a movs r2, #10 +100142cc: 7322 strb r2, [r4, #12] +100142ce: 7363 strb r3, [r4, #13] +100142d0: 8363 strh r3, [r4, #26] +100142d2: b003 add sp, #12 +100142d4: bd30 pop {r4, r5, pc} +100142d6: 6b23 ldr r3, [r4, #48] ; 0x30 +100142d8: 9300 str r3, [sp, #0] +100142da: e7d9 b.n 10014290 +100142dc: f64f 73ff movw r3, #65535 ; 0xffff +100142e0: 83e3 strh r3, [r4, #30] +100142e2: e7cc b.n 1001427e +100142e4: f64f 73ff movw r3, #65535 ; 0xffff +100142e8: 83a3 strh r3, [r4, #28] +100142ea: e7b8 b.n 1001425e +100142ec: f64f 73ff movw r3, #65535 ; 0xffff +100142f0: 84e3 strh r3, [r4, #38] ; 0x26 +100142f2: e7a5 b.n 10014240 +100142f4: 2bbf cmp r3, #191 ; 0xbf +100142f6: bf8c ite hi +100142f8: f06f 437f mvnhi.w r3, #4278190080 ; 0xff000000 +100142fc: f64f 73ff movwls r3, #65535 ; 0xffff +10014300: 9300 str r3, [sp, #0] +10014302: e7c5 b.n 10014290 +10014304: 88888889 .word 0x88888889 + +10014308 : +10014308: 880b ldrh r3, [r1, #0] +1001430a: b430 push {r4, r5} +1001430c: 6804 ldr r4, [r0, #0] +1001430e: 1c5d adds r5, r3, #1 +10014310: 4423 add r3, r4 +10014312: 0e14 lsrs r4, r2, #24 +10014314: 800d strh r5, [r1, #0] +10014316: f883 40f0 strb.w r4, [r3, #240] ; 0xf0 +1001431a: 880b ldrh r3, [r1, #0] +1001431c: 6804 ldr r4, [r0, #0] +1001431e: 1c5d adds r5, r3, #1 +10014320: 4423 add r3, r4 +10014322: f3c2 4407 ubfx r4, r2, #16, #8 +10014326: 800d strh r5, [r1, #0] +10014328: f883 40f0 strb.w r4, [r3, #240] ; 0xf0 +1001432c: 880b ldrh r3, [r1, #0] +1001432e: 6804 ldr r4, [r0, #0] +10014330: 1c5d adds r5, r3, #1 +10014332: 4423 add r3, r4 +10014334: f3c2 2407 ubfx r4, r2, #8, #8 +10014338: 800d strh r5, [r1, #0] +1001433a: f883 40f0 strb.w r4, [r3, #240] ; 0xf0 +1001433e: 880b ldrh r3, [r1, #0] +10014340: 6800 ldr r0, [r0, #0] +10014342: 4418 add r0, r3 +10014344: 3301 adds r3, #1 +10014346: 800b strh r3, [r1, #0] +10014348: f880 20f0 strb.w r2, [r0, #240] ; 0xf0 +1001434c: bc30 pop {r4, r5} +1001434e: 4770 bx lr + +10014350 : +10014350: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10014354: 6a04 ldr r4, [r0, #32] +10014356: b083 sub sp, #12 +10014358: 7b23 ldrb r3, [r4, #12] +1001435a: 4605 mov r5, r0 +1001435c: 2b01 cmp r3, #1 +1001435e: d004 beq.n 1001436a +10014360: 2300 movs r3, #0 +10014362: 2201 movs r2, #1 +10014364: 7322 strb r2, [r4, #12] +10014366: 7363 strb r3, [r4, #13] +10014368: 8363 strh r3, [r4, #26] +1001436a: 4628 mov r0, r5 +1001436c: 4621 mov r1, r4 +1001436e: 2203 movs r2, #3 +10014370: f7ff fd72 bl 10013e58 +10014374: 4606 mov r6, r0 +10014376: b1e8 cbz r0, 100143b4 +10014378: 7b63 ldrb r3, [r4, #13] +1001437a: 3301 adds r3, #1 +1001437c: b2db uxtb r3, r3 +1001437e: 2b05 cmp r3, #5 +10014380: 7363 strb r3, [r4, #13] +10014382: d811 bhi.n 100143a8 +10014384: f44f 727a mov.w r2, #1000 ; 0x3e8 +10014388: fa02 f303 lsl.w r3, r2, r3 +1001438c: 4a54 ldr r2, [pc, #336] ; (100144e0 ) +1001438e: f203 13f3 addw r3, r3, #499 ; 0x1f3 +10014392: fb82 1203 smull r1, r2, r2, r3 +10014396: 17db asrs r3, r3, #31 +10014398: ebc3 1362 rsb r3, r3, r2, asr #5 +1001439c: b29b uxth r3, r3 +1001439e: 4630 mov r0, r6 +100143a0: 8363 strh r3, [r4, #26] +100143a2: b003 add sp, #12 +100143a4: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100143a8: 2378 movs r3, #120 ; 0x78 +100143aa: 4630 mov r0, r6 +100143ac: 8363 strh r3, [r4, #26] +100143ae: b003 add sp, #12 +100143b0: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100143b4: 8b23 ldrh r3, [r4, #24] +100143b6: 6962 ldr r2, [r4, #20] +100143b8: 1c59 adds r1, r3, #1 +100143ba: 4413 add r3, r2 +100143bc: 2239 movs r2, #57 ; 0x39 +100143be: 8321 strh r1, [r4, #24] +100143c0: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100143c4: 8b23 ldrh r3, [r4, #24] +100143c6: 6962 ldr r2, [r4, #20] +100143c8: 1c59 adds r1, r3, #1 +100143ca: 4413 add r3, r2 +100143cc: 2202 movs r2, #2 +100143ce: 8321 strh r1, [r4, #24] +100143d0: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100143d4: 8b22 ldrh r2, [r4, #24] +100143d6: 8d2b ldrh r3, [r5, #40] ; 0x28 +100143d8: 6961 ldr r1, [r4, #20] +100143da: 1c50 adds r0, r2, #1 +100143dc: 440a add r2, r1 +100143de: 0a19 lsrs r1, r3, #8 +100143e0: 8320 strh r0, [r4, #24] +100143e2: f882 10f0 strb.w r1, [r2, #240] ; 0xf0 +100143e6: 8b22 ldrh r2, [r4, #24] +100143e8: 6961 ldr r1, [r4, #20] +100143ea: 1c50 adds r0, r2, #1 +100143ec: 440a add r2, r1 +100143ee: 8320 strh r0, [r4, #24] +100143f0: f882 30f0 strb.w r3, [r2, #240] ; 0xf0 +100143f4: 8b23 ldrh r3, [r4, #24] +100143f6: 6962 ldr r2, [r4, #20] +100143f8: 1c59 adds r1, r3, #1 +100143fa: 4413 add r3, r2 +100143fc: 2232 movs r2, #50 ; 0x32 +100143fe: 8321 strh r1, [r4, #24] +10014400: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014404: 8b23 ldrh r3, [r4, #24] +10014406: 6962 ldr r2, [r4, #20] +10014408: 1c59 adds r1, r3, #1 +1001440a: 2704 movs r7, #4 +1001440c: 4413 add r3, r2 +1001440e: 8321 strh r1, [r4, #24] +10014410: f883 70f0 strb.w r7, [r3, #240] ; 0xf0 +10014414: 6ae0 ldr r0, [r4, #44] ; 0x2c +10014416: f7ff fd03 bl 10013e20 +1001441a: f104 0914 add.w r9, r4, #20 +1001441e: f104 0818 add.w r8, r4, #24 +10014422: 4602 mov r2, r0 +10014424: 4641 mov r1, r8 +10014426: 4648 mov r0, r9 +10014428: f7ff ff6e bl 10014308 +1001442c: 8b23 ldrh r3, [r4, #24] +1001442e: 6962 ldr r2, [r4, #20] +10014430: 1c59 adds r1, r3, #1 +10014432: 4413 add r3, r2 +10014434: 2236 movs r2, #54 ; 0x36 +10014436: 8321 strh r1, [r4, #24] +10014438: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +1001443c: 8b23 ldrh r3, [r4, #24] +1001443e: 6962 ldr r2, [r4, #20] +10014440: 1c59 adds r1, r3, #1 +10014442: 4413 add r3, r2 +10014444: 8321 strh r1, [r4, #24] +10014446: f883 70f0 strb.w r7, [r3, #240] ; 0xf0 +1001444a: 6aa0 ldr r0, [r4, #40] ; 0x28 +1001444c: f7ff fce8 bl 10013e20 +10014450: 4641 mov r1, r8 +10014452: 4602 mov r2, r0 +10014454: 4648 mov r0, r9 +10014456: f7ff ff57 bl 10014308 +1001445a: 8b23 ldrh r3, [r4, #24] +1001445c: 6962 ldr r2, [r4, #20] +1001445e: 1c59 adds r1, r3, #1 +10014460: 4413 add r3, r2 +10014462: 2237 movs r2, #55 ; 0x37 +10014464: 8321 strh r1, [r4, #24] +10014466: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +1001446a: 8b23 ldrh r3, [r4, #24] +1001446c: 6962 ldr r2, [r4, #20] +1001446e: 1c59 adds r1, r3, #1 +10014470: 4413 add r3, r2 +10014472: 8321 strh r1, [r4, #24] +10014474: f883 70f0 strb.w r7, [r3, #240] ; 0xf0 +10014478: 8b23 ldrh r3, [r4, #24] +1001447a: 6962 ldr r2, [r4, #20] +1001447c: 1c59 adds r1, r3, #1 +1001447e: 4413 add r3, r2 +10014480: 2201 movs r2, #1 +10014482: 8321 strh r1, [r4, #24] +10014484: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014488: 8b23 ldrh r3, [r4, #24] +1001448a: 6962 ldr r2, [r4, #20] +1001448c: 1c59 adds r1, r3, #1 +1001448e: 4413 add r3, r2 +10014490: 2203 movs r2, #3 +10014492: 8321 strh r1, [r4, #24] +10014494: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014498: 8b23 ldrh r3, [r4, #24] +1001449a: 6962 ldr r2, [r4, #20] +1001449c: 1c59 adds r1, r3, #1 +1001449e: 4413 add r3, r2 +100144a0: 221c movs r2, #28 +100144a2: 8321 strh r1, [r4, #24] +100144a4: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100144a8: 8b23 ldrh r3, [r4, #24] +100144aa: 6962 ldr r2, [r4, #20] +100144ac: 1c59 adds r1, r3, #1 +100144ae: 4413 add r3, r2 +100144b0: 2206 movs r2, #6 +100144b2: 8321 strh r1, [r4, #24] +100144b4: 4620 mov r0, r4 +100144b6: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100144ba: f7ff fcb3 bl 10013e24 +100144be: 8b21 ldrh r1, [r4, #24] +100144c0: 6920 ldr r0, [r4, #16] +100144c2: 31f0 adds r1, #240 ; 0xf0 +100144c4: b289 uxth r1, r1 +100144c6: f001 fd9b bl 10016000 +100144ca: 6860 ldr r0, [r4, #4] +100144cc: 6921 ldr r1, [r4, #16] +100144ce: 4a05 ldr r2, [pc, #20] ; (100144e4 ) +100144d0: 9500 str r5, [sp, #0] +100144d2: 2343 movs r3, #67 ; 0x43 +100144d4: f004 feda bl 1001928c +100144d8: 4620 mov r0, r4 +100144da: f7ff fd77 bl 10013fcc +100144de: e74b b.n 10014378 +100144e0: 10624dd3 .word 0x10624dd3 +100144e4: 10047c88 .word 0x10047c88 + +100144e8 : +100144e8: b570 push {r4, r5, r6, lr} +100144ea: 6a04 ldr r4, [r0, #32] +100144ec: b082 sub sp, #8 +100144ee: 7b23 ldrb r3, [r4, #12] +100144f0: 4605 mov r5, r0 +100144f2: 2b03 cmp r3, #3 +100144f4: d004 beq.n 10014500 +100144f6: 2300 movs r3, #0 +100144f8: 2203 movs r2, #3 +100144fa: 7322 strb r2, [r4, #12] +100144fc: 7363 strb r3, [r4, #13] +100144fe: 8363 strh r3, [r4, #26] +10014500: 4628 mov r0, r5 +10014502: 4621 mov r1, r4 +10014504: 2203 movs r2, #3 +10014506: f7ff fca7 bl 10013e58 +1001450a: 4606 mov r6, r0 +1001450c: b1d0 cbz r0, 10014544 +1001450e: 7b63 ldrb r3, [r4, #13] +10014510: 3301 adds r3, #1 +10014512: b2db uxtb r3, r3 +10014514: 2b09 cmp r3, #9 +10014516: 7363 strb r3, [r4, #13] +10014518: d80f bhi.n 1001453a +1001451a: ebc3 1243 rsb r2, r3, r3, lsl #5 +1001451e: eb03 0382 add.w r3, r3, r2, lsl #2 +10014522: 00db lsls r3, r3, #3 +10014524: 4a2e ldr r2, [pc, #184] ; (100145e0 ) +10014526: b29b uxth r3, r3 +10014528: f203 13f3 addw r3, r3, #499 ; 0x1f3 +1001452c: fb82 1303 smull r1, r3, r2, r3 +10014530: 4630 mov r0, r6 +10014532: 095b lsrs r3, r3, #5 +10014534: 8363 strh r3, [r4, #26] +10014536: b002 add sp, #8 +10014538: bd70 pop {r4, r5, r6, pc} +1001453a: 2314 movs r3, #20 +1001453c: 4630 mov r0, r6 +1001453e: 8363 strh r3, [r4, #26] +10014540: b002 add sp, #8 +10014542: bd70 pop {r4, r5, r6, pc} +10014544: 8b23 ldrh r3, [r4, #24] +10014546: 6962 ldr r2, [r4, #20] +10014548: 1c59 adds r1, r3, #1 +1001454a: 4413 add r3, r2 +1001454c: 2239 movs r2, #57 ; 0x39 +1001454e: 8321 strh r1, [r4, #24] +10014550: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014554: 8b23 ldrh r3, [r4, #24] +10014556: 6962 ldr r2, [r4, #20] +10014558: 1c59 adds r1, r3, #1 +1001455a: 441a add r2, r3 +1001455c: 2302 movs r3, #2 +1001455e: 8321 strh r1, [r4, #24] +10014560: f882 30f0 strb.w r3, [r2, #240] ; 0xf0 +10014564: 8b22 ldrh r2, [r4, #24] +10014566: 6961 ldr r1, [r4, #20] +10014568: 1c50 adds r0, r2, #1 +1001456a: 440a add r2, r1 +1001456c: 8320 strh r0, [r4, #24] +1001456e: f882 30f0 strb.w r3, [r2, #240] ; 0xf0 +10014572: 8b23 ldrh r3, [r4, #24] +10014574: 6962 ldr r2, [r4, #20] +10014576: 1c59 adds r1, r3, #1 +10014578: 4413 add r3, r2 +1001457a: 2240 movs r2, #64 ; 0x40 +1001457c: 8321 strh r1, [r4, #24] +1001457e: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014582: 8b23 ldrh r3, [r4, #24] +10014584: 6962 ldr r2, [r4, #20] +10014586: 1c59 adds r1, r3, #1 +10014588: 4413 add r3, r2 +1001458a: 2232 movs r2, #50 ; 0x32 +1001458c: 8321 strh r1, [r4, #24] +1001458e: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014592: 8b23 ldrh r3, [r4, #24] +10014594: 6962 ldr r2, [r4, #20] +10014596: 1c59 adds r1, r3, #1 +10014598: 4413 add r3, r2 +1001459a: 2204 movs r2, #4 +1001459c: 8321 strh r1, [r4, #24] +1001459e: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +100145a2: 6ae0 ldr r0, [r4, #44] ; 0x2c +100145a4: f7ff fc3c bl 10013e20 +100145a8: f104 0118 add.w r1, r4, #24 +100145ac: 4602 mov r2, r0 +100145ae: f104 0014 add.w r0, r4, #20 +100145b2: f7ff fea9 bl 10014308 +100145b6: 4620 mov r0, r4 +100145b8: f7ff fc34 bl 10013e24 +100145bc: 8b21 ldrh r1, [r4, #24] +100145be: 6920 ldr r0, [r4, #16] +100145c0: 31f0 adds r1, #240 ; 0xf0 +100145c2: b289 uxth r1, r1 +100145c4: f001 fd1c bl 10016000 +100145c8: 6860 ldr r0, [r4, #4] +100145ca: 6921 ldr r1, [r4, #16] +100145cc: 4a05 ldr r2, [pc, #20] ; (100145e4 ) +100145ce: 9500 str r5, [sp, #0] +100145d0: 2343 movs r3, #67 ; 0x43 +100145d2: f004 fe5b bl 1001928c +100145d6: 4620 mov r0, r4 +100145d8: f7ff fcf8 bl 10013fcc +100145dc: e797 b.n 1001450e +100145de: bf00 nop +100145e0: 10624dd3 .word 0x10624dd3 +100145e4: 10047c88 .word 0x10047c88 + +100145e8 : +100145e8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100145ec: 8953 ldrh r3, [r2, #10] +100145ee: b08b sub sp, #44 ; 0x2c +100145f0: 2b2b cmp r3, #43 ; 0x2b +100145f2: 4614 mov r4, r2 +100145f4: 4681 mov r9, r0 +100145f6: f8d0 b020 ldr.w fp, [r0, #32] +100145fa: 6856 ldr r6, [r2, #4] +100145fc: d902 bls.n 10014604 +100145fe: 7833 ldrb r3, [r6, #0] +10014600: 2b02 cmp r3, #2 +10014602: d008 beq.n 10014616 +10014604: 2300 movs r3, #0 +10014606: 4620 mov r0, r4 +10014608: f8cb 3008 str.w r3, [fp, #8] +1001460c: f001 fc2c bl 10015e68 +10014610: b00b add sp, #44 ; 0x2c +10014612: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10014616: f890 502a ldrb.w r5, [r0, #42] ; 0x2a +1001461a: b1a5 cbz r5, 10014646 +1001461c: f890 202b ldrb.w r2, [r0, #43] ; 0x2b +10014620: 7f33 ldrb r3, [r6, #28] +10014622: 429a cmp r2, r3 +10014624: d1ee bne.n 10014604 +10014626: 3d01 subs r5, #1 +10014628: b2ed uxtb r5, r5 +1001462a: 4405 add r5, r0 +1001462c: 4603 mov r3, r0 +1001462e: 4632 mov r2, r6 +10014630: e007 b.n 10014642 +10014632: f893 002c ldrb.w r0, [r3, #44] ; 0x2c +10014636: 7f51 ldrb r1, [r2, #29] +10014638: 3301 adds r3, #1 +1001463a: 4288 cmp r0, r1 +1001463c: f102 0201 add.w r2, r2, #1 +10014640: d1e0 bne.n 10014604 +10014642: 42ab cmp r3, r5 +10014644: d1f5 bne.n 10014632 +10014646: 6870 ldr r0, [r6, #4] +10014648: f7ff fbea bl 10013e20 +1001464c: f8db 3000 ldr.w r3, [fp] +10014650: 4298 cmp r0, r3 +10014652: d1d7 bne.n 10014604 +10014654: 488c ldr r0, [pc, #560] ; (10014888 ) +10014656: 2100 movs r1, #0 +10014658: 220a movs r2, #10 +1001465a: f02d fd87 bl 1004216c +1001465e: 8963 ldrh r3, [r4, #10] +10014660: 2b2b cmp r3, #43 ; 0x2b +10014662: d9cf bls.n 10014604 +10014664: 6862 ldr r2, [r4, #4] +10014666: f04f 0af0 mov.w sl, #240 ; 0xf0 +1001466a: f8cb 2008 str.w r2, [fp, #8] +1001466e: 8922 ldrh r2, [r4, #8] +10014670: 2500 movs r5, #0 +10014672: f8df 8214 ldr.w r8, [pc, #532] ; 10014888 +10014676: f8cd b010 str.w fp, [sp, #16] +1001467a: 9506 str r5, [sp, #24] +1001467c: 46d3 mov fp, sl +1001467e: f8cd 901c str.w r9, [sp, #28] +10014682: 4692 mov sl, r2 +10014684: 9403 str r4, [sp, #12] +10014686: 9e03 ldr r6, [sp, #12] +10014688: e000 b.n 1001468c +1001468a: 8973 ldrh r3, [r6, #10] +1001468c: 455b cmp r3, fp +1001468e: d80e bhi.n 100146ae +10014690: 6836 ldr r6, [r6, #0] +10014692: ebc3 0b0b rsb fp, r3, fp +10014696: ebc3 0a0a rsb sl, r3, sl +1001469a: fa1f fb8b uxth.w fp, fp +1001469e: fa1f fa8a uxth.w sl, sl +100146a2: 2e00 cmp r6, #0 +100146a4: d1f1 bne.n 1001468a +100146a6: f8dd b010 ldr.w fp, [sp, #16] +100146aa: 9c03 ldr r4, [sp, #12] +100146ac: e7aa b.n 10014604 +100146ae: 6877 ldr r7, [r6, #4] +100146b0: 9701 str r7, [sp, #4] +100146b2: 9f01 ldr r7, [sp, #4] +100146b4: f817 200b ldrb.w r2, [r7, fp] +100146b8: 2aff cmp r2, #255 ; 0xff +100146ba: f000 80e9 beq.w 10014890 +100146be: 45d3 cmp fp, sl +100146c0: f080 80e6 bcs.w 10014890 +100146c4: 8971 ldrh r1, [r6, #10] +100146c6: f10b 0001 add.w r0, fp, #1 +100146ca: f10b 0302 add.w r3, fp, #2 +100146ce: 4288 cmp r0, r1 +100146d0: b29b uxth r3, r3 +100146d2: f280 80d0 bge.w 10014876 +100146d6: 9c01 ldr r4, [sp, #4] +100146d8: 445c add r4, fp +100146da: 7864 ldrb r4, [r4, #1] +100146dc: 2a3b cmp r2, #59 ; 0x3b +100146de: f200 80bc bhi.w 1001485a +100146e2: e8df f002 tbb [pc, r2] +100146e6: b2b8 .short 0xb2b8 +100146e8: babaabba .word 0xbabaabba +100146ec: bababa98 .word 0xbababa98 +100146f0: babababa .word 0xbabababa +100146f4: babababa .word 0xbabababa +100146f8: babababa .word 0xbabababa +100146fc: babababa .word 0xbabababa +10014700: babababa .word 0xbabababa +10014704: babababa .word 0xbabababa +10014708: babababa .word 0xbabababa +1001470c: babababa .word 0xbabababa +10014710: babababa .word 0xbabababa +10014714: babababa .word 0xbabababa +10014718: 898c92ba .word 0x898c92ba +1001471c: bababa83 .word 0xbababa83 +10014720: 1e7d .short 0x1e7d +10014722: 2c04 cmp r4, #4 +10014724: d1bf bne.n 100146a6 +10014726: 4622 mov r2, r4 +10014728: 2505 movs r5, #5 +1001472a: 441a add r2, r3 +1001472c: b292 uxth r2, r2 +1001472e: 9202 str r2, [sp, #8] +10014730: 4855 ldr r0, [pc, #340] ; (10014888 ) +10014732: 5d42 ldrb r2, [r0, r5] +10014734: 2000 movs r0, #0 +10014736: 9009 str r0, [sp, #36] ; 0x24 +10014738: 2a00 cmp r2, #0 +1001473a: d13e bne.n 100147ba +1001473c: af09 add r7, sp, #36 ; 0x24 +1001473e: 2c03 cmp r4, #3 +10014740: 9700 str r7, [sp, #0] +10014742: d926 bls.n 10014792 +10014744: f8df e144 ldr.w lr, [pc, #324] ; 1001488c +10014748: 4639 mov r1, r7 +1001474a: f105 39ff add.w r9, r5, #4294967295 +1001474e: 4630 mov r0, r6 +10014750: 2204 movs r2, #4 +10014752: eb0e 0989 add.w r9, lr, r9, lsl #2 +10014756: f8cd e014 str.w lr, [sp, #20] +1001475a: f001 fd05 bl 10016168 +1001475e: 2c04 cmp r4, #4 +10014760: f240 8162 bls.w 10014a28 +10014764: 07a3 lsls r3, r4, #30 +10014766: d19e bne.n 100146a6 +10014768: 2301 movs r3, #1 +1001476a: f805 3008 strb.w r3, [r5, r8] +1001476e: 9809 ldr r0, [sp, #36] ; 0x24 +10014770: f7ff fb54 bl 10013e1c +10014774: 3501 adds r5, #1 +10014776: f815 2008 ldrb.w r2, [r5, r8] +1001477a: 3c04 subs r4, #4 +1001477c: f10b 0c06 add.w ip, fp, #6 +10014780: f8c9 0004 str.w r0, [r9, #4] +10014784: b2e4 uxtb r4, r4 +10014786: fa1f f38c uxth.w r3, ip +1001478a: 2a00 cmp r2, #0 +1001478c: d17a bne.n 10014884 +1001478e: 2c04 cmp r4, #4 +10014790: d068 beq.n 10014864 +10014792: 9900 ldr r1, [sp, #0] +10014794: 4630 mov r0, r6 +10014796: 4622 mov r2, r4 +10014798: f001 fce6 bl 10016168 +1001479c: 2c01 cmp r4, #1 +1001479e: d182 bne.n 100146a6 +100147a0: 4f3a ldr r7, [pc, #232] ; (1001488c ) +100147a2: f89d 0024 ldrb.w r0, [sp, #36] ; 0x24 +100147a6: 9705 str r7, [sp, #20] +100147a8: 9f05 ldr r7, [sp, #20] +100147aa: f8df e0dc ldr.w lr, [pc, #220] ; 10014888 +100147ae: 2301 movs r3, #1 +100147b0: 8971 ldrh r1, [r6, #10] +100147b2: f847 0025 str.w r0, [r7, r5, lsl #2] +100147b6: f80e 3005 strb.w r3, [lr, r5] +100147ba: f8dd b008 ldr.w fp, [sp, #8] +100147be: 4559 cmp r1, fp +100147c0: f63f af77 bhi.w 100146b2 +100147c4: ebc1 0c0b rsb ip, r1, fp +100147c8: ebc1 0a0a rsb sl, r1, sl +100147cc: fa1f fb8c uxth.w fp, ip +100147d0: fa1f fa8a uxth.w sl, sl +100147d4: 45d3 cmp fp, sl +100147d6: d25b bcs.n 10014890 +100147d8: 6836 ldr r6, [r6, #0] +100147da: 6875 ldr r5, [r6, #4] +100147dc: 9501 str r5, [sp, #4] +100147de: e768 b.n 100146b2 +100147e0: 2c04 cmp r4, #4 +100147e2: f47f af60 bne.w 100146a6 +100147e6: 4622 mov r2, r4 +100147e8: 4625 mov r5, r4 +100147ea: e79e b.n 1001472a +100147ec: 2c04 cmp r4, #4 +100147ee: f47f af5a bne.w 100146a6 +100147f2: 4622 mov r2, r4 +100147f4: 2502 movs r5, #2 +100147f6: e798 b.n 1001472a +100147f8: 2c01 cmp r4, #1 +100147fa: d0f4 beq.n 100147e6 +100147fc: e753 b.n 100146a6 +100147fe: 2c01 cmp r4, #1 +10014800: f47f af51 bne.w 100146a6 +10014804: 4622 mov r2, r4 +10014806: 2500 movs r5, #0 +10014808: e78f b.n 1001472a +1001480a: 2c04 cmp r4, #4 +1001480c: f47f af4b bne.w 100146a6 +10014810: 4622 mov r2, r4 +10014812: 2503 movs r5, #3 +10014814: e789 b.n 1001472a +10014816: 07a2 lsls r2, r4, #30 +10014818: f47f af45 bne.w 100146a6 +1001481c: 2c08 cmp r4, #8 +1001481e: bf34 ite cc +10014820: 4622 movcc r2, r4 +10014822: 2208 movcs r2, #8 +10014824: b2d2 uxtb r2, r2 +10014826: 4294 cmp r4, r2 +10014828: f4ff af3d bcc.w 100146a6 +1001482c: 441c add r4, r3 +1001482e: b2a4 uxth r4, r4 +10014830: 9402 str r4, [sp, #8] +10014832: 2a00 cmp r2, #0 +10014834: d0c1 beq.n 100147ba +10014836: 4614 mov r4, r2 +10014838: 2508 movs r5, #8 +1001483a: e779 b.n 10014730 +1001483c: 2c03 cmp r4, #3 +1001483e: f67f af32 bls.w 100146a6 +10014842: 4622 mov r2, r4 +10014844: 2507 movs r5, #7 +10014846: 2404 movs r4, #4 +10014848: e76f b.n 1001472a +1001484a: 2c04 cmp r4, #4 +1001484c: f47f af2b bne.w 100146a6 +10014850: 4622 mov r2, r4 +10014852: 2506 movs r5, #6 +10014854: e769 b.n 1001472a +10014856: b283 uxth r3, r0 +10014858: 2400 movs r4, #0 +1001485a: eb04 0c03 add.w ip, r4, r3 +1001485e: fa1f fb8c uxth.w fp, ip +10014862: e7ac b.n 100147be +10014864: 9900 ldr r1, [sp, #0] +10014866: 4622 mov r2, r4 +10014868: 4630 mov r0, r6 +1001486a: f001 fc7d bl 10016168 +1001486e: 9809 ldr r0, [sp, #36] ; 0x24 +10014870: f7ff fad6 bl 10013e20 +10014874: e798 b.n 100147a8 +10014876: 6834 ldr r4, [r6, #0] +10014878: 2c00 cmp r4, #0 +1001487a: f43f af2f beq.w 100146dc +1001487e: 6864 ldr r4, [r4, #4] +10014880: 7824 ldrb r4, [r4, #0] +10014882: e72b b.n 100146dc +10014884: 8971 ldrh r1, [r6, #10] +10014886: e798 b.n 100147ba +10014888: 10050cec .word 0x10050cec +1001488c: 10050cf8 .word 0x10050cf8 +10014890: 4867 ldr r0, [pc, #412] ; (10014a30 ) +10014892: 7803 ldrb r3, [r0, #0] +10014894: 4605 mov r5, r0 +10014896: b163 cbz r3, 100148b2 +10014898: f8df e198 ldr.w lr, [pc, #408] ; 10014a34 +1001489c: 2200 movs r2, #0 +1001489e: f8de 3000 ldr.w r3, [lr] +100148a2: f888 2000 strb.w r2, [r8] +100148a6: 2b01 cmp r3, #1 +100148a8: d010 beq.n 100148cc +100148aa: 2b02 cmp r3, #2 +100148ac: d003 beq.n 100148b6 +100148ae: 2b03 cmp r3, #3 +100148b0: d00a beq.n 100148c8 +100148b2: 9f06 ldr r7, [sp, #24] +100148b4: b17f cbz r7, 100148d6 +100148b6: 2700 movs r7, #0 +100148b8: 9706 str r7, [sp, #24] +100148ba: f04f 0a6c mov.w sl, #108 ; 0x6c +100148be: f04f 0b2c mov.w fp, #44 ; 0x2c +100148c2: 9d03 ldr r5, [sp, #12] +100148c4: 896b ldrh r3, [r5, #10] +100148c6: e6de b.n 10014686 +100148c8: 2501 movs r5, #1 +100148ca: 9506 str r5, [sp, #24] +100148cc: f04f 0aec mov.w sl, #236 ; 0xec +100148d0: f04f 0b6c mov.w fp, #108 ; 0x6c +100148d4: e7f5 b.n 100148c2 +100148d6: 786b ldrb r3, [r5, #1] +100148d8: f8dd b010 ldr.w fp, [sp, #16] +100148dc: f8dd 901c ldr.w r9, [sp, #28] +100148e0: 9c03 ldr r4, [sp, #12] +100148e2: 4a53 ldr r2, [pc, #332] ; (10014a30 ) +100148e4: 2b00 cmp r3, #0 +100148e6: f43f ae8d beq.w 10014604 +100148ea: 4f52 ldr r7, [pc, #328] ; (10014a34 ) +100148ec: 793b ldrb r3, [r7, #4] +100148ee: 2b05 cmp r3, #5 +100148f0: d01d beq.n 1001492e +100148f2: 2b06 cmp r3, #6 +100148f4: d027 beq.n 10014946 +100148f6: 2b02 cmp r3, #2 +100148f8: f47f ae84 bne.w 10014604 +100148fc: f89b 300c ldrb.w r3, [fp, #12] +10014900: 2b06 cmp r3, #6 +10014902: f47f ae7f bne.w 10014604 +10014906: 9d06 ldr r5, [sp, #24] +10014908: 7893 ldrb r3, [r2, #2] +1001490a: f8ab 501a strh.w r5, [fp, #26] +1001490e: f8d9 5020 ldr.w r5, [r9, #32] +10014912: 2b00 cmp r3, #0 +10014914: f43f ae76 beq.w 10014604 +10014918: 68b8 ldr r0, [r7, #8] +1001491a: f7ff fa7f bl 10013e1c +1001491e: 68ab ldr r3, [r5, #8] +10014920: 62a8 str r0, [r5, #40] ; 0x28 +10014922: 691b ldr r3, [r3, #16] +10014924: 4648 mov r0, r9 +10014926: 62eb str r3, [r5, #44] ; 0x2c +10014928: f7ff fd12 bl 10014350 +1001492c: e66a b.n 10014604 +1001492e: f89b 300c ldrb.w r3, [fp, #12] +10014932: 2b01 cmp r3, #1 +10014934: d02c beq.n 10014990 +10014936: 3b03 subs r3, #3 +10014938: 2b02 cmp r3, #2 +1001493a: f63f ae63 bhi.w 10014604 +1001493e: 4648 mov r0, r9 +10014940: f7ff fc64 bl 1001420c +10014944: e65e b.n 10014604 +10014946: f89b 300c ldrb.w r3, [fp, #12] +1001494a: 1eda subs r2, r3, #3 +1001494c: 2a02 cmp r2, #2 +1001494e: d902 bls.n 10014956 +10014950: 2b01 cmp r3, #1 +10014952: f47f ae57 bne.w 10014604 +10014956: 4648 mov r0, r9 +10014958: f8d9 5020 ldr.w r5, [r9, #32] +1001495c: f001 f9d8 bl 10015d10 +10014960: 4648 mov r0, r9 +10014962: 4935 ldr r1, [pc, #212] ; (10014a38 ) +10014964: f001 f928 bl 10015bb8 +10014968: 4648 mov r0, r9 +1001496a: 4933 ldr r1, [pc, #204] ; (10014a38 ) +1001496c: f001 f9a6 bl 10015cbc +10014970: 4648 mov r0, r9 +10014972: 4931 ldr r1, [pc, #196] ; (10014a38 ) +10014974: f001 f9a6 bl 10015cc4 +10014978: 7b2b ldrb r3, [r5, #12] +1001497a: 2b0c cmp r3, #12 +1001497c: d004 beq.n 10014988 +1001497e: 2300 movs r3, #0 +10014980: 220c movs r2, #12 +10014982: 732a strb r2, [r5, #12] +10014984: 736b strb r3, [r5, #13] +10014986: 836b strh r3, [r5, #26] +10014988: 4648 mov r0, r9 +1001498a: f7ff fb2b bl 10013fe4 +1001498e: e639 b.n 10014604 +10014990: f8d9 6020 ldr.w r6, [r9, #32] +10014994: 9806 ldr r0, [sp, #24] +10014996: 78d3 ldrb r3, [r2, #3] +10014998: 6330 str r0, [r6, #48] ; 0x30 +1001499a: 6370 str r0, [r6, #52] ; 0x34 +1001499c: b10b cbz r3, 100149a2 +1001499e: 68fb ldr r3, [r7, #12] +100149a0: 63f3 str r3, [r6, #60] ; 0x3c +100149a2: 792b ldrb r3, [r5, #4] +100149a4: 2b00 cmp r3, #0 +100149a6: d03b beq.n 10014a20 +100149a8: 693b ldr r3, [r7, #16] +100149aa: 6433 str r3, [r6, #64] ; 0x40 +100149ac: 796b ldrb r3, [r5, #5] +100149ae: b363 cbz r3, 10014a0a +100149b0: 697b ldr r3, [r7, #20] +100149b2: 6473 str r3, [r6, #68] ; 0x44 +100149b4: 68b2 ldr r2, [r6, #8] +100149b6: 79ab ldrb r3, [r5, #6] +100149b8: 6912 ldr r2, [r2, #16] +100149ba: 62f2 str r2, [r6, #44] ; 0x2c +100149bc: b9f3 cbnz r3, 100149fc +100149be: 73b3 strb r3, [r6, #14] +100149c0: 79eb ldrb r3, [r5, #7] +100149c2: b9b3 cbnz r3, 100149f2 +100149c4: 2600 movs r6, #0 +100149c6: e008 b.n 100149da +100149c8: f857 0023 ldr.w r0, [r7, r3, lsl #2] +100149cc: f7ff fa26 bl 10013e1c +100149d0: a909 add r1, sp, #36 ; 0x24 +100149d2: 9009 str r0, [sp, #36] ; 0x24 +100149d4: 4640 mov r0, r8 +100149d6: f000 fcbb bl 10015350 +100149da: fa5f f886 uxtb.w r8, r6 +100149de: f108 0308 add.w r3, r8, #8 +100149e2: 5cea ldrb r2, [r5, r3] +100149e4: 3601 adds r6, #1 +100149e6: 2a00 cmp r2, #0 +100149e8: d1ee bne.n 100149c8 +100149ea: 4648 mov r0, r9 +100149ec: f7ff fbf8 bl 100141e0 +100149f0: e608 b.n 10014604 +100149f2: 69f8 ldr r0, [r7, #28] +100149f4: f7ff fa12 bl 10013e1c +100149f8: 6370 str r0, [r6, #52] ; 0x34 +100149fa: e7e3 b.n 100149c4 +100149fc: 69b8 ldr r0, [r7, #24] +100149fe: f7ff fa0d bl 10013e1c +10014a02: 2301 movs r3, #1 +10014a04: 6330 str r0, [r6, #48] ; 0x30 +10014a06: 73b3 strb r3, [r6, #14] +10014a08: e7da b.n 100149c0 +10014a0a: 6bf0 ldr r0, [r6, #60] ; 0x3c +10014a0c: f02e fba6 bl 1004315c <__aeabi_ui2d> +10014a10: 2200 movs r2, #0 +10014a12: 4b0a ldr r3, [pc, #40] ; (10014a3c ) +10014a14: f02e fc18 bl 10043248 <__aeabi_dmul> +10014a18: f02e fe28 bl 1004366c <__aeabi_d2uiz> +10014a1c: 6470 str r0, [r6, #68] ; 0x44 +10014a1e: e7c9 b.n 100149b4 +10014a20: 6bf3 ldr r3, [r6, #60] ; 0x3c +10014a22: 085b lsrs r3, r3, #1 +10014a24: 6433 str r3, [r6, #64] ; 0x40 +10014a26: e7c1 b.n 100149ac +10014a28: f43f af21 beq.w 1001486e +10014a2c: e6b6 b.n 1001479c +10014a2e: bf00 nop +10014a30: 10050cec .word 0x10050cec +10014a34: 10050cf8 .word 0x10050cf8 +10014a38: 10047c8c .word 0x10047c8c +10014a3c: 3fec0000 .word 0x3fec0000 + +10014a40 : +10014a40: b530 push {r4, r5, lr} +10014a42: 4605 mov r5, r0 +10014a44: b083 sub sp, #12 +10014a46: b120 cbz r0, 10014a52 +10014a48: 6a04 ldr r4, [r0, #32] +10014a4a: b114 cbz r4, 10014a52 +10014a4c: 7b23 ldrb r3, [r4, #12] +10014a4e: 2b08 cmp r3, #8 +10014a50: d001 beq.n 10014a56 +10014a52: b003 add sp, #12 +10014a54: bd30 pop {r4, r5, pc} +10014a56: 680a ldr r2, [r1, #0] +10014a58: 6ae3 ldr r3, [r4, #44] ; 0x2c +10014a5a: 429a cmp r2, r3 +10014a5c: d1f9 bne.n 10014a52 +10014a5e: 220c movs r2, #12 +10014a60: 2300 movs r3, #0 +10014a62: 7322 strb r2, [r4, #12] +10014a64: 7363 strb r3, [r4, #13] +10014a66: 8363 strh r3, [r4, #26] +10014a68: 4621 mov r1, r4 +10014a6a: 2204 movs r2, #4 +10014a6c: f7ff f9f4 bl 10013e58 +10014a70: b128 cbz r0, 10014a7e +10014a72: 7b62 ldrb r2, [r4, #13] +10014a74: 2314 movs r3, #20 +10014a76: 3201 adds r2, #1 +10014a78: 7362 strb r2, [r4, #13] +10014a7a: 8363 strh r3, [r4, #26] +10014a7c: e7e9 b.n 10014a52 +10014a7e: 8b23 ldrh r3, [r4, #24] +10014a80: 6962 ldr r2, [r4, #20] +10014a82: 1c59 adds r1, r3, #1 +10014a84: 4413 add r3, r2 +10014a86: 2232 movs r2, #50 ; 0x32 +10014a88: 8321 strh r1, [r4, #24] +10014a8a: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014a8e: 8b23 ldrh r3, [r4, #24] +10014a90: 6962 ldr r2, [r4, #20] +10014a92: 1c59 adds r1, r3, #1 +10014a94: 4413 add r3, r2 +10014a96: 2204 movs r2, #4 +10014a98: 8321 strh r1, [r4, #24] +10014a9a: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014a9e: 6ae0 ldr r0, [r4, #44] ; 0x2c +10014aa0: f7ff f9be bl 10013e20 +10014aa4: f104 0118 add.w r1, r4, #24 +10014aa8: 4602 mov r2, r0 +10014aaa: f104 0014 add.w r0, r4, #20 +10014aae: f7ff fc2b bl 10014308 +10014ab2: 4620 mov r0, r4 +10014ab4: f7ff f9b6 bl 10013e24 +10014ab8: 8b21 ldrh r1, [r4, #24] +10014aba: 6920 ldr r0, [r4, #16] +10014abc: 31f0 adds r1, #240 ; 0xf0 +10014abe: b289 uxth r1, r1 +10014ac0: f001 fa9e bl 10016000 +10014ac4: 6860 ldr r0, [r4, #4] +10014ac6: 6921 ldr r1, [r4, #16] +10014ac8: 4a04 ldr r2, [pc, #16] ; (10014adc ) +10014aca: 9500 str r5, [sp, #0] +10014acc: 2343 movs r3, #67 ; 0x43 +10014ace: f004 fbdd bl 1001928c +10014ad2: 4620 mov r0, r4 +10014ad4: f7ff fa7a bl 10013fcc +10014ad8: e7cb b.n 10014a72 +10014ada: bf00 nop +10014adc: 10047c88 .word 0x10047c88 + +10014ae0 : +10014ae0: b570 push {r4, r5, r6, lr} +10014ae2: 6a04 ldr r4, [r0, #32] +10014ae4: b082 sub sp, #8 +10014ae6: 7b23 ldrb r3, [r4, #12] +10014ae8: 4605 mov r5, r0 +10014aea: 2b05 cmp r3, #5 +10014aec: d004 beq.n 10014af8 +10014aee: 2300 movs r3, #0 +10014af0: 2205 movs r2, #5 +10014af2: 7322 strb r2, [r4, #12] +10014af4: 7363 strb r3, [r4, #13] +10014af6: 8363 strh r3, [r4, #26] +10014af8: 4628 mov r0, r5 +10014afa: 4621 mov r1, r4 +10014afc: 2203 movs r2, #3 +10014afe: f7ff f9ab bl 10013e58 +10014b02: 4606 mov r6, r0 +10014b04: b1d0 cbz r0, 10014b3c +10014b06: 7b63 ldrb r3, [r4, #13] +10014b08: 3301 adds r3, #1 +10014b0a: b2db uxtb r3, r3 +10014b0c: 2b09 cmp r3, #9 +10014b0e: 7363 strb r3, [r4, #13] +10014b10: d80f bhi.n 10014b32 +10014b12: ebc3 1243 rsb r2, r3, r3, lsl #5 +10014b16: eb03 0382 add.w r3, r3, r2, lsl #2 +10014b1a: 011b lsls r3, r3, #4 +10014b1c: 4a22 ldr r2, [pc, #136] ; (10014ba8 ) +10014b1e: b29b uxth r3, r3 +10014b20: f203 13f3 addw r3, r3, #499 ; 0x1f3 +10014b24: fb82 1303 smull r1, r3, r2, r3 +10014b28: 4630 mov r0, r6 +10014b2a: 095b lsrs r3, r3, #5 +10014b2c: 8363 strh r3, [r4, #26] +10014b2e: b002 add sp, #8 +10014b30: bd70 pop {r4, r5, r6, pc} +10014b32: 2328 movs r3, #40 ; 0x28 +10014b34: 4630 mov r0, r6 +10014b36: 8363 strh r3, [r4, #26] +10014b38: b002 add sp, #8 +10014b3a: bd70 pop {r4, r5, r6, pc} +10014b3c: 8b23 ldrh r3, [r4, #24] +10014b3e: 6962 ldr r2, [r4, #20] +10014b40: 1c59 adds r1, r3, #1 +10014b42: 4413 add r3, r2 +10014b44: 2239 movs r2, #57 ; 0x39 +10014b46: 8321 strh r1, [r4, #24] +10014b48: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014b4c: 8b23 ldrh r3, [r4, #24] +10014b4e: 6962 ldr r2, [r4, #20] +10014b50: 1c59 adds r1, r3, #1 +10014b52: 4413 add r3, r2 +10014b54: 2202 movs r2, #2 +10014b56: 8321 strh r1, [r4, #24] +10014b58: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014b5c: 8d2b ldrh r3, [r5, #40] ; 0x28 +10014b5e: 8b22 ldrh r2, [r4, #24] +10014b60: 6961 ldr r1, [r4, #20] +10014b62: 1c50 adds r0, r2, #1 +10014b64: 440a add r2, r1 +10014b66: 0a19 lsrs r1, r3, #8 +10014b68: 8320 strh r0, [r4, #24] +10014b6a: f882 10f0 strb.w r1, [r2, #240] ; 0xf0 +10014b6e: 8b22 ldrh r2, [r4, #24] +10014b70: 6961 ldr r1, [r4, #20] +10014b72: 1c50 adds r0, r2, #1 +10014b74: 440a add r2, r1 +10014b76: 8320 strh r0, [r4, #24] +10014b78: f882 30f0 strb.w r3, [r2, #240] ; 0xf0 +10014b7c: 4620 mov r0, r4 +10014b7e: f7ff f951 bl 10013e24 +10014b82: 8b21 ldrh r1, [r4, #24] +10014b84: 6920 ldr r0, [r4, #16] +10014b86: 31f0 adds r1, #240 ; 0xf0 +10014b88: b289 uxth r1, r1 +10014b8a: f001 fa39 bl 10016000 +10014b8e: 6860 ldr r0, [r4, #4] +10014b90: 6921 ldr r1, [r4, #16] +10014b92: f104 0228 add.w r2, r4, #40 ; 0x28 +10014b96: 9500 str r5, [sp, #0] +10014b98: 2343 movs r3, #67 ; 0x43 +10014b9a: f004 fb77 bl 1001928c +10014b9e: 4620 mov r0, r4 +10014ba0: f7ff fa14 bl 10013fcc +10014ba4: e7af b.n 10014b06 +10014ba6: bf00 nop +10014ba8: 10624dd3 .word 0x10624dd3 + +10014bac : +10014bac: b570 push {r4, r5, r6, lr} +10014bae: 6a04 ldr r4, [r0, #32] +10014bb0: b082 sub sp, #8 +10014bb2: 7b23 ldrb r3, [r4, #12] +10014bb4: 4605 mov r5, r0 +10014bb6: b11b cbz r3, 10014bc0 +10014bb8: 2300 movs r3, #0 +10014bba: 7323 strb r3, [r4, #12] +10014bbc: 7363 strb r3, [r4, #13] +10014bbe: 8363 strh r3, [r4, #26] +10014bc0: 2300 movs r3, #0 +10014bc2: 62a3 str r3, [r4, #40] ; 0x28 +10014bc4: 62e3 str r3, [r4, #44] ; 0x2c +10014bc6: 6323 str r3, [r4, #48] ; 0x30 +10014bc8: 6363 str r3, [r4, #52] ; 0x34 +10014bca: 6463 str r3, [r4, #68] ; 0x44 +10014bcc: 6423 str r3, [r4, #64] ; 0x40 +10014bce: 63e3 str r3, [r4, #60] ; 0x3c +10014bd0: 4628 mov r0, r5 +10014bd2: 4621 mov r1, r4 +10014bd4: 2207 movs r2, #7 +10014bd6: f7ff f93f bl 10013e58 +10014bda: 4606 mov r6, r0 +10014bdc: b330 cbz r0, 10014c2c +10014bde: 7b63 ldrb r3, [r4, #13] +10014be0: 3301 adds r3, #1 +10014be2: b2db uxtb r3, r3 +10014be4: 2b09 cmp r3, #9 +10014be6: 7363 strb r3, [r4, #13] +10014be8: d81e bhi.n 10014c28 +10014bea: ebc3 1243 rsb r2, r3, r3, lsl #5 +10014bee: eb03 0382 add.w r3, r3, r2, lsl #2 +10014bf2: 00db lsls r3, r3, #3 +10014bf4: b29b uxth r3, r3 +10014bf6: 4a18 ldr r2, [pc, #96] ; (10014c58 ) +10014bf8: f203 13f3 addw r3, r3, #499 ; 0x1f3 +10014bfc: fb82 1303 smull r1, r3, r2, r3 +10014c00: 095b lsrs r3, r3, #5 +10014c02: 8363 strh r3, [r4, #26] +10014c04: 4628 mov r0, r5 +10014c06: f001 f883 bl 10015d10 +10014c0a: 4628 mov r0, r5 +10014c0c: 4913 ldr r1, [pc, #76] ; (10014c5c ) +10014c0e: f000 ffd3 bl 10015bb8 +10014c12: 4628 mov r0, r5 +10014c14: 4911 ldr r1, [pc, #68] ; (10014c5c ) +10014c16: f001 f851 bl 10015cbc +10014c1a: 4628 mov r0, r5 +10014c1c: 490f ldr r1, [pc, #60] ; (10014c5c ) +10014c1e: f001 f851 bl 10015cc4 +10014c22: 4630 mov r0, r6 +10014c24: b002 add sp, #8 +10014c26: bd70 pop {r4, r5, r6, pc} +10014c28: 2314 movs r3, #20 +10014c2a: e7ea b.n 10014c02 +10014c2c: 4620 mov r0, r4 +10014c2e: f7ff f8f9 bl 10013e24 +10014c32: 8b21 ldrh r1, [r4, #24] +10014c34: 6920 ldr r0, [r4, #16] +10014c36: 31f0 adds r1, #240 ; 0xf0 +10014c38: b289 uxth r1, r1 +10014c3a: f001 f9e1 bl 10016000 +10014c3e: 6860 ldr r0, [r4, #4] +10014c40: 6921 ldr r1, [r4, #16] +10014c42: f104 0228 add.w r2, r4, #40 ; 0x28 +10014c46: 9500 str r5, [sp, #0] +10014c48: 2343 movs r3, #67 ; 0x43 +10014c4a: f004 fb1f bl 1001928c +10014c4e: 4620 mov r0, r4 +10014c50: f7ff f9bc bl 10013fcc +10014c54: e7c3 b.n 10014bde +10014c56: bf00 nop +10014c58: 10624dd3 .word 0x10624dd3 +10014c5c: 10047c8c .word 0x10047c8c + +10014c60 : +10014c60: b538 push {r3, r4, r5, lr} +10014c62: 4b21 ldr r3, [pc, #132] ; (10014ce8 ) +10014c64: 681d ldr r5, [r3, #0] +10014c66: b965 cbnz r5, 10014c82 +10014c68: e01e b.n 10014ca8 +10014c6a: 8c63 ldrh r3, [r4, #34] ; 0x22 +10014c6c: 1e5a subs r2, r3, #1 +10014c6e: 2b01 cmp r3, #1 +10014c70: 8462 strh r2, [r4, #34] ; 0x22 +10014c72: d01a beq.n 10014caa +10014c74: 8c23 ldrh r3, [r4, #32] +10014c76: 1e5a subs r2, r3, #1 +10014c78: 2b01 cmp r3, #1 +10014c7a: 8422 strh r2, [r4, #32] +10014c7c: d029 beq.n 10014cd2 +10014c7e: 682d ldr r5, [r5, #0] +10014c80: b195 cbz r5, 10014ca8 +10014c82: 6a2c ldr r4, [r5, #32] +10014c84: 2c00 cmp r4, #0 +10014c86: d0fa beq.n 10014c7e +10014c88: 8ca3 ldrh r3, [r4, #36] ; 0x24 +10014c8a: 8ce2 ldrh r2, [r4, #38] ; 0x26 +10014c8c: 3301 adds r3, #1 +10014c8e: b29b uxth r3, r3 +10014c90: 429a cmp r2, r3 +10014c92: 84a3 strh r3, [r4, #36] ; 0x24 +10014c94: d1e9 bne.n 10014c6a +10014c96: 4628 mov r0, r5 +10014c98: f7ff ff88 bl 10014bac +10014c9c: 4628 mov r0, r5 +10014c9e: f7ff f9a1 bl 10013fe4 +10014ca2: 682d ldr r5, [r5, #0] +10014ca4: 2d00 cmp r5, #0 +10014ca6: d1ec bne.n 10014c82 +10014ca8: bd38 pop {r3, r4, r5, pc} +10014caa: 7b23 ldrb r3, [r4, #12] +10014cac: 2b01 cmp r3, #1 +10014cae: d004 beq.n 10014cba +10014cb0: 2b0a cmp r3, #10 +10014cb2: d002 beq.n 10014cba +10014cb4: 3b04 subs r3, #4 +10014cb6: 2b01 cmp r3, #1 +10014cb8: d8e1 bhi.n 10014c7e +10014cba: 4628 mov r0, r5 +10014cbc: f7ff fa2a bl 10014114 +10014cc0: 6a2b ldr r3, [r5, #32] +10014cc2: 8ca2 ldrh r2, [r4, #36] ; 0x24 +10014cc4: 8cd9 ldrh r1, [r3, #38] ; 0x26 +10014cc6: 1a8a subs r2, r1, r2 +10014cc8: 2a01 cmp r2, #1 +10014cca: ddd8 ble.n 10014c7e +10014ccc: 1052 asrs r2, r2, #1 +10014cce: 845a strh r2, [r3, #34] ; 0x22 +10014cd0: e7d5 b.n 10014c7e +10014cd2: 7b23 ldrb r3, [r4, #12] +10014cd4: f003 02fb and.w r2, r3, #251 ; 0xfb +10014cd8: 2a01 cmp r2, #1 +10014cda: d001 beq.n 10014ce0 +10014cdc: 2b0a cmp r3, #10 +10014cde: d1ce bne.n 10014c7e +10014ce0: 4628 mov r0, r5 +10014ce2: f7ff fefd bl 10014ae0 +10014ce6: e7ca b.n 10014c7e +10014ce8: 100513a4 .word 0x100513a4 + +10014cec : +10014cec: b538 push {r3, r4, r5, lr} +10014cee: 4b26 ldr r3, [pc, #152] ; (10014d88 ) +10014cf0: 681c ldr r4, [r3, #0] +10014cf2: b31c cbz r4, 10014d3c +10014cf4: 2500 movs r5, #0 +10014cf6: e003 b.n 10014d00 +10014cf8: 3a01 subs r2, #1 +10014cfa: 835a strh r2, [r3, #26] +10014cfc: 6824 ldr r4, [r4, #0] +10014cfe: b1ec cbz r4, 10014d3c +10014d00: 6a23 ldr r3, [r4, #32] +10014d02: 2b00 cmp r3, #0 +10014d04: d0fa beq.n 10014cfc +10014d06: 8b5a ldrh r2, [r3, #26] +10014d08: 2a01 cmp r2, #1 +10014d0a: d8f5 bhi.n 10014cf8 +10014d0c: d1f6 bne.n 10014cfc +10014d0e: 7b1a ldrb r2, [r3, #12] +10014d10: 835d strh r5, [r3, #26] +10014d12: 2a0c cmp r2, #12 +10014d14: d01c beq.n 10014d50 +10014d16: 2a06 cmp r2, #6 +10014d18: d01a beq.n 10014d50 +10014d1a: 2a01 cmp r2, #1 +10014d1c: d00f beq.n 10014d3e +10014d1e: 2a08 cmp r2, #8 +10014d20: d01a beq.n 10014d58 +10014d22: 2a05 cmp r2, #5 +10014d24: d029 beq.n 10014d7a +10014d26: 2a04 cmp r2, #4 +10014d28: d01d beq.n 10014d66 +10014d2a: 2a03 cmp r2, #3 +10014d2c: d1e6 bne.n 10014cfc +10014d2e: 7b5b ldrb r3, [r3, #13] +10014d30: 4620 mov r0, r4 +10014d32: 2b01 cmp r3, #1 +10014d34: d925 bls.n 10014d82 +10014d36: f7ff f955 bl 10013fe4 +10014d3a: e7df b.n 10014cfc +10014d3c: bd38 pop {r3, r4, r5, pc} +10014d3e: 7b5b ldrb r3, [r3, #13] +10014d40: 4620 mov r0, r4 +10014d42: 2b05 cmp r3, #5 +10014d44: d802 bhi.n 10014d4c +10014d46: f7ff fb03 bl 10014350 +10014d4a: e7d7 b.n 10014cfc +10014d4c: f7ff ff2e bl 10014bac +10014d50: 4620 mov r0, r4 +10014d52: f7ff f947 bl 10013fe4 +10014d56: e7d1 b.n 10014cfc +10014d58: 7b5b ldrb r3, [r3, #13] +10014d5a: 4620 mov r0, r4 +10014d5c: 2b01 cmp r3, #1 +10014d5e: d909 bls.n 10014d74 +10014d60: f7ff fa54 bl 1001420c +10014d64: e7ca b.n 10014cfc +10014d66: 7b5b ldrb r3, [r3, #13] +10014d68: 4620 mov r0, r4 +10014d6a: 2b08 cmp r3, #8 +10014d6c: d8ee bhi.n 10014d4c +10014d6e: f7ff f9d1 bl 10014114 +10014d72: e7c3 b.n 10014cfc +10014d74: f7ff fa34 bl 100141e0 +10014d78: e7c0 b.n 10014cfc +10014d7a: 4620 mov r0, r4 +10014d7c: f7ff feb0 bl 10014ae0 +10014d80: e7bc b.n 10014cfc +10014d82: f7ff fbb1 bl 100144e8 +10014d86: e7b9 b.n 10014cfc +10014d88: 100513a4 .word 0x100513a4 + +10014d8c : +10014d8c: b570 push {r4, r5, r6, lr} +10014d8e: 6a04 ldr r4, [r0, #32] +10014d90: b082 sub sp, #8 +10014d92: 7b23 ldrb r3, [r4, #12] +10014d94: 4605 mov r5, r0 +10014d96: 2b0b cmp r3, #11 +10014d98: d079 beq.n 10014e8e +10014d9a: 2300 movs r3, #0 +10014d9c: 220b movs r2, #11 +10014d9e: 7322 strb r2, [r4, #12] +10014da0: 7363 strb r3, [r4, #13] +10014da2: 6a01 ldr r1, [r0, #32] +10014da4: 8363 strh r3, [r4, #26] +10014da6: 4628 mov r0, r5 +10014da8: 2203 movs r2, #3 +10014daa: f7ff f855 bl 10013e58 +10014dae: 4606 mov r6, r0 +10014db0: b330 cbz r0, 10014e00 +10014db2: 7b63 ldrb r3, [r4, #13] +10014db4: 3301 adds r3, #1 +10014db6: b2db uxtb r3, r3 +10014db8: 2b09 cmp r3, #9 +10014dba: 7363 strb r3, [r4, #13] +10014dbc: d81e bhi.n 10014dfc +10014dbe: ebc3 1243 rsb r2, r3, r3, lsl #5 +10014dc2: eb03 0382 add.w r3, r3, r2, lsl #2 +10014dc6: 00db lsls r3, r3, #3 +10014dc8: b29b uxth r3, r3 +10014dca: 4a32 ldr r2, [pc, #200] ; (10014e94 ) +10014dcc: f203 13f3 addw r3, r3, #499 ; 0x1f3 +10014dd0: fb82 1303 smull r1, r3, r2, r3 +10014dd4: 095b lsrs r3, r3, #5 +10014dd6: 8363 strh r3, [r4, #26] +10014dd8: 4628 mov r0, r5 +10014dda: f000 ff99 bl 10015d10 +10014dde: 4628 mov r0, r5 +10014de0: 492d ldr r1, [pc, #180] ; (10014e98 ) +10014de2: f000 fee9 bl 10015bb8 +10014de6: 4628 mov r0, r5 +10014de8: 492b ldr r1, [pc, #172] ; (10014e98 ) +10014dea: f000 ff67 bl 10015cbc +10014dee: 4628 mov r0, r5 +10014df0: 4929 ldr r1, [pc, #164] ; (10014e98 ) +10014df2: f000 ff67 bl 10015cc4 +10014df6: 4630 mov r0, r6 +10014df8: b002 add sp, #8 +10014dfa: bd70 pop {r4, r5, r6, pc} +10014dfc: 2314 movs r3, #20 +10014dfe: e7ea b.n 10014dd6 +10014e00: 8b23 ldrh r3, [r4, #24] +10014e02: 6962 ldr r2, [r4, #20] +10014e04: 1c59 adds r1, r3, #1 +10014e06: 4413 add r3, r2 +10014e08: 2235 movs r2, #53 ; 0x35 +10014e0a: 8321 strh r1, [r4, #24] +10014e0c: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014e10: 8b23 ldrh r3, [r4, #24] +10014e12: 6962 ldr r2, [r4, #20] +10014e14: 1c59 adds r1, r3, #1 +10014e16: 4413 add r3, r2 +10014e18: 2201 movs r2, #1 +10014e1a: 8321 strh r1, [r4, #24] +10014e1c: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014e20: 8b23 ldrh r3, [r4, #24] +10014e22: 6962 ldr r2, [r4, #20] +10014e24: 1c59 adds r1, r3, #1 +10014e26: 4413 add r3, r2 +10014e28: 2207 movs r2, #7 +10014e2a: 8321 strh r1, [r4, #24] +10014e2c: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014e30: 8b23 ldrh r3, [r4, #24] +10014e32: 6962 ldr r2, [r4, #20] +10014e34: 1c59 adds r1, r3, #1 +10014e36: 4413 add r3, r2 +10014e38: 2236 movs r2, #54 ; 0x36 +10014e3a: 8321 strh r1, [r4, #24] +10014e3c: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014e40: 8b23 ldrh r3, [r4, #24] +10014e42: 6962 ldr r2, [r4, #20] +10014e44: 1c59 adds r1, r3, #1 +10014e46: 4413 add r3, r2 +10014e48: 2204 movs r2, #4 +10014e4a: 8321 strh r1, [r4, #24] +10014e4c: f883 20f0 strb.w r2, [r3, #240] ; 0xf0 +10014e50: 6aa0 ldr r0, [r4, #40] ; 0x28 +10014e52: f7fe ffe5 bl 10013e20 +10014e56: f104 0118 add.w r1, r4, #24 +10014e5a: 4602 mov r2, r0 +10014e5c: f104 0014 add.w r0, r4, #20 +10014e60: f7ff fa52 bl 10014308 +10014e64: 4620 mov r0, r4 +10014e66: f7fe ffdd bl 10013e24 +10014e6a: 8b21 ldrh r1, [r4, #24] +10014e6c: 6920 ldr r0, [r4, #16] +10014e6e: 31f0 adds r1, #240 ; 0xf0 +10014e70: b289 uxth r1, r1 +10014e72: f001 f8c5 bl 10016000 +10014e76: 6860 ldr r0, [r4, #4] +10014e78: 6921 ldr r1, [r4, #16] +10014e7a: f104 0228 add.w r2, r4, #40 ; 0x28 +10014e7e: 9500 str r5, [sp, #0] +10014e80: 2343 movs r3, #67 ; 0x43 +10014e82: f004 fa03 bl 1001928c +10014e86: 6a28 ldr r0, [r5, #32] +10014e88: f7ff f8a0 bl 10013fcc +10014e8c: e791 b.n 10014db2 +10014e8e: 4621 mov r1, r4 +10014e90: e789 b.n 10014da6 +10014e92: bf00 nop +10014e94: 10624dd3 .word 0x10624dd3 +10014e98: 10047c8c .word 0x10047c8c + +10014e9c : +10014e9c: b510 push {r4, lr} +10014e9e: b198 cbz r0, 10014ec8 +10014ea0: f890 3031 ldrb.w r3, [r0, #49] ; 0x31 +10014ea4: 6a04 ldr r4, [r0, #32] +10014ea6: f023 0308 bic.w r3, r3, #8 +10014eaa: f880 3031 strb.w r3, [r0, #49] ; 0x31 +10014eae: b15c cbz r4, 10014ec8 +10014eb0: 6860 ldr r0, [r4, #4] +10014eb2: b118 cbz r0, 10014ebc +10014eb4: f004 fac6 bl 10019444 +10014eb8: 2300 movs r3, #0 +10014eba: 6063 str r3, [r4, #4] +10014ebc: 7b23 ldrb r3, [r4, #12] +10014ebe: b11b cbz r3, 10014ec8 +10014ec0: 2300 movs r3, #0 +10014ec2: 7323 strb r3, [r4, #12] +10014ec4: 7363 strb r3, [r4, #13] +10014ec6: 8363 strh r3, [r4, #26] +10014ec8: bd10 pop {r4, pc} +10014eca: bf00 nop + +10014ecc : +10014ecc: b538 push {r3, r4, r5, lr} +10014ece: 4604 mov r4, r0 +10014ed0: 2800 cmp r0, #0 +10014ed2: d046 beq.n 10014f62 +10014ed4: f890 3031 ldrb.w r3, [r0, #49] ; 0x31 +10014ed8: 6a05 ldr r5, [r0, #32] +10014eda: f023 0208 bic.w r2, r3, #8 +10014ede: 069b lsls r3, r3, #26 +10014ee0: f880 2031 strb.w r2, [r0, #49] ; 0x31 +10014ee4: d53d bpl.n 10014f62 +10014ee6: 8d03 ldrh r3, [r0, #40] ; 0x28 +10014ee8: f5b3 7f10 cmp.w r3, #576 ; 0x240 +10014eec: d32f bcc.n 10014f4e +10014eee: b385 cbz r5, 10014f52 +10014ef0: 6868 ldr r0, [r5, #4] +10014ef2: b108 cbz r0, 10014ef8 +10014ef4: f004 faa6 bl 10019444 +10014ef8: 2100 movs r1, #0 +10014efa: 2248 movs r2, #72 ; 0x48 +10014efc: 4628 mov r0, r5 +10014efe: f02d f935 bl 1004216c +10014f02: f004 fabb bl 1001947c +10014f06: 6068 str r0, [r5, #4] +10014f08: b308 cbz r0, 10014f4e +10014f0a: 7a03 ldrb r3, [r0, #8] +10014f0c: 4916 ldr r1, [pc, #88] ; (10014f68 ) +10014f0e: f043 0320 orr.w r3, r3, #32 +10014f12: 7203 strb r3, [r0, #8] +10014f14: 2244 movs r2, #68 ; 0x44 +10014f16: 6868 ldr r0, [r5, #4] +10014f18: f004 f952 bl 100191c0 +10014f1c: 4912 ldr r1, [pc, #72] ; (10014f68 ) +10014f1e: 2243 movs r2, #67 ; 0x43 +10014f20: 6868 ldr r0, [r5, #4] +10014f22: f004 fa57 bl 100193d4 +10014f26: 6868 ldr r0, [r5, #4] +10014f28: 4910 ldr r1, [pc, #64] ; (10014f6c ) +10014f2a: 4622 mov r2, r4 +10014f2c: f004 fa86 bl 1001943c +10014f30: 4620 mov r0, r4 +10014f32: f7ff f857 bl 10013fe4 +10014f36: b938 cbnz r0, 10014f48 +10014f38: f894 3031 ldrb.w r3, [r4, #49] ; 0x31 +10014f3c: f043 0308 orr.w r3, r3, #8 +10014f40: f884 3031 strb.w r3, [r4, #49] ; 0x31 +10014f44: b240 sxtb r0, r0 +10014f46: bd38 pop {r3, r4, r5, pc} +10014f48: 4620 mov r0, r4 +10014f4a: f7ff ffa7 bl 10014e9c +10014f4e: 20ff movs r0, #255 ; 0xff +10014f50: e7f8 b.n 10014f44 +10014f52: 2048 movs r0, #72 ; 0x48 +10014f54: f000 fd4c bl 100159f0 +10014f58: 4605 mov r5, r0 +10014f5a: 2800 cmp r0, #0 +10014f5c: d0f7 beq.n 10014f4e +10014f5e: 6220 str r0, [r4, #32] +10014f60: e7ca b.n 10014ef8 +10014f62: 20f2 movs r0, #242 ; 0xf2 +10014f64: e7ee b.n 10014f44 +10014f66: bf00 nop +10014f68: 10047c8c .word 0x10047c8c +10014f6c: 100145e9 .word 0x100145e9 + +10014f70 : +10014f70: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10014f74: 4614 mov r4, r2 +10014f76: 8912 ldrh r2, [r2, #8] +10014f78: b085 sub sp, #20 +10014f7a: f1a2 031a sub.w r3, r2, #26 +10014f7e: f5b3 7ff3 cmp.w r3, #486 ; 0x1e6 +10014f82: d905 bls.n 10014f90 +10014f84: 4620 mov r0, r4 +10014f86: f000 ff6f bl 10015e68 +10014f8a: b005 add sp, #20 +10014f8c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10014f90: 4d64 ldr r5, [pc, #400] ; (10015124 ) +10014f92: 2300 movs r3, #0 +10014f94: 6829 ldr r1, [r5, #0] +10014f96: 4620 mov r0, r4 +10014f98: f001 f8e6 bl 10016168 +10014f9c: 8923 ldrh r3, [r4, #8] +10014f9e: 4283 cmp r3, r0 +10014fa0: d1f0 bne.n 10014f84 +10014fa2: 682e ldr r6, [r5, #0] +10014fa4: 8830 ldrh r0, [r6, #0] +10014fa6: f7fe ff31 bl 10013e0c +10014faa: 2803 cmp r0, #3 +10014fac: d8ea bhi.n 10014f84 +10014fae: f44f 778c mov.w r7, #280 ; 0x118 +10014fb2: fb07 f700 mul.w r7, r7, r0 +10014fb6: f8df 8174 ldr.w r8, [pc, #372] ; 1001512c +10014fba: f818 3007 ldrb.w r3, [r8, r7] +10014fbe: eb08 0907 add.w r9, r8, r7 +10014fc2: 2b02 cmp r3, #2 +10014fc4: d1de bne.n 10014f84 +10014fc6: 2303 movs r3, #3 +10014fc8: f808 3007 strb.w r3, [r8, r7] +10014fcc: 78f3 ldrb r3, [r6, #3] +10014fce: f003 030f and.w r3, r3, #15 +10014fd2: f889 3005 strb.w r3, [r9, #5] +10014fd6: 88b0 ldrh r0, [r6, #4] +10014fd8: f7fe ff18 bl 10013e0c +10014fdc: 4683 mov fp, r0 +10014fde: 88f0 ldrh r0, [r6, #6] +10014fe0: f7fe ff14 bl 10013e0c +10014fe4: f996 3002 ldrsb.w r3, [r6, #2] +10014fe8: 4682 mov sl, r0 +10014fea: 2b00 cmp r3, #0 +10014fec: db0e blt.n 1001500c +10014fee: f8d9 3110 ldr.w r3, [r9, #272] ; 0x110 +10014ff2: b12b cbz r3, 10015000 +10014ff4: f109 000c add.w r0, r9, #12 +10014ff8: 2100 movs r1, #0 +10014ffa: f8d9 2114 ldr.w r2, [r9, #276] ; 0x114 +10014ffe: 4798 blx r3 +10015000: 2300 movs r3, #0 +10015002: f808 3007 strb.w r3, [r8, r7] +10015006: f8c9 3110 str.w r3, [r9, #272] ; 0x110 +1001500a: e7bb b.n 10014f84 +1001500c: f899 3005 ldrb.w r3, [r9, #5] +10015010: 2b00 cmp r3, #0 +10015012: d1ec bne.n 10014fee +10015014: f1bb 0f01 cmp.w fp, #1 +10015018: d1e9 bne.n 10014fee +1001501a: 682b ldr r3, [r5, #0] +1001501c: f109 060c add.w r6, r9, #12 +10015020: f103 0e0c add.w lr, r3, #12 +10015024: 4670 mov r0, lr +10015026: 4632 mov r2, r6 +10015028: 7803 ldrb r3, [r0, #0] +1001502a: 1c41 adds r1, r0, #1 +1001502c: f003 05c0 and.w r5, r3, #192 ; 0xc0 +10015030: 2dc0 cmp r5, #192 ; 0xc0 +10015032: d024 beq.n 1001507e +10015034: b1b3 cbz r3, 10015064 +10015036: 7815 ldrb r5, [r2, #0] +10015038: 7841 ldrb r1, [r0, #1] +1001503a: 428d cmp r5, r1 +1001503c: d1d7 bne.n 10014fee +1001503e: 3b01 subs r3, #1 +10015040: b2dd uxtb r5, r3 +10015042: 1c53 adds r3, r2, #1 +10015044: 441d add r5, r3 +10015046: 3002 adds r0, #2 +10015048: e004 b.n 10015054 +1001504a: f892 c000 ldrb.w ip, [r2] +1001504e: 780a ldrb r2, [r1, #0] +10015050: 4594 cmp ip, r2 +10015052: d1cc bne.n 10014fee +10015054: 42ab cmp r3, r5 +10015056: 4601 mov r1, r0 +10015058: 461a mov r2, r3 +1001505a: f100 0001 add.w r0, r0, #1 +1001505e: f103 0301 add.w r3, r3, #1 +10015062: d1f2 bne.n 1001504a +10015064: 780b ldrb r3, [r1, #0] +10015066: 3201 adds r2, #1 +10015068: b14b cbz r3, 1001507e +1001506a: 4608 mov r0, r1 +1001506c: e7dc b.n 10015028 +1001506e: 1e5a subs r2, r3, #1 +10015070: b2d2 uxtb r2, r2 +10015072: 3201 adds r2, #1 +10015074: b103 cbz r3, 10015078 +10015076: 4415 add r5, r2 +10015078: 782b ldrb r3, [r5, #0] +1001507a: 46ae mov lr, r5 +1001507c: b13b cbz r3, 1001508e +1001507e: f89e 3000 ldrb.w r3, [lr] +10015082: f10e 0501 add.w r5, lr, #1 +10015086: f003 02c0 and.w r2, r3, #192 ; 0xc0 +1001508a: 2ac0 cmp r2, #192 ; 0xc0 +1001508c: d1ef bne.n 1001506e +1001508e: 3505 adds r5, #5 +10015090: f1ba 0f00 cmp.w sl, #0 +10015094: d0ab beq.n 10014fee +10015096: 782b ldrb r3, [r5, #0] +10015098: e006 b.n 100150a8 +1001509a: 1e5a subs r2, r3, #1 +1001509c: b2d2 uxtb r2, r2 +1001509e: 3201 adds r2, #1 +100150a0: b103 cbz r3, 100150a4 +100150a2: 4415 add r5, r2 +100150a4: 782b ldrb r3, [r5, #0] +100150a6: b12b cbz r3, 100150b4 +100150a8: f003 02c0 and.w r2, r3, #192 ; 0xc0 +100150ac: 2ac0 cmp r2, #192 ; 0xc0 +100150ae: f105 0501 add.w r5, r5, #1 +100150b2: d1f2 bne.n 1001509a +100150b4: f105 0b01 add.w fp, r5, #1 +100150b8: 4659 mov r1, fp +100150ba: a801 add r0, sp, #4 +100150bc: 220a movs r2, #10 +100150be: f02d f84f bl 10042160 +100150c2: 9b01 ldr r3, [sp, #4] +100150c4: f8bd 000c ldrh.w r0, [sp, #12] +100150c8: f1b3 2f01 cmp.w r3, #16777472 ; 0x1000100 +100150cc: d102 bne.n 100150d4 +100150ce: f5b0 6f80 cmp.w r0, #1024 ; 0x400 +100150d2: d009 beq.n 100150e8 +100150d4: f7fe fe9a bl 10013e0c +100150d8: f10a 3aff add.w sl, sl, #4294967295 +100150dc: 300a adds r0, #10 +100150de: eb0b 0500 add.w r5, fp, r0 +100150e2: fa1f fa8a uxth.w sl, sl +100150e6: e7d3 b.n 10015090 +100150e8: 9802 ldr r0, [sp, #8] +100150ea: f7fe fe99 bl 10013e20 +100150ee: 4b0e ldr r3, [pc, #56] ; (10015128 ) +100150f0: f509 7786 add.w r7, r9, #268 ; 0x10c +100150f4: 4298 cmp r0, r3 +100150f6: f8c9 0008 str.w r0, [r9, #8] +100150fa: f105 010b add.w r1, r5, #11 +100150fe: bf88 it hi +10015100: f8c9 3008 strhi.w r3, [r9, #8] +10015104: 4638 mov r0, r7 +10015106: 2204 movs r2, #4 +10015108: f02d f82a bl 10042160 +1001510c: f8d9 3110 ldr.w r3, [r9, #272] ; 0x110 +10015110: 2b00 cmp r3, #0 +10015112: f43f af37 beq.w 10014f84 +10015116: 4630 mov r0, r6 +10015118: 4639 mov r1, r7 +1001511a: f8d9 2114 ldr.w r2, [r9, #276] ; 0x114 +1001511e: 4798 blx r3 +10015120: e730 b.n 10014f84 +10015122: bf00 nop +10015124: 10051398 .word 0x10051398 +10015128: 00093a80 .word 0x00093a80 +1001512c: 10050d28 .word 0x10050d28 + +10015130 : +10015130: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10015134: 4680 mov r8, r0 +10015136: 2000 movs r0, #0 +10015138: b083 sub sp, #12 +1001513a: 460c mov r4, r1 +1001513c: 4615 mov r5, r2 +1001513e: f44f 7188 mov.w r1, #272 ; 0x110 +10015142: 4602 mov r2, r0 +10015144: f000 fec6 bl 10015ed4 +10015148: 4681 mov r9, r0 +1001514a: 2800 cmp r0, #0 +1001514c: d06e beq.n 1001522c +1001514e: 6847 ldr r7, [r0, #4] +10015150: 220c movs r2, #12 +10015152: 2100 movs r1, #0 +10015154: 4638 mov r0, r7 +10015156: f02d f809 bl 1004216c +1001515a: 4628 mov r0, r5 +1001515c: f7fe fe56 bl 10013e0c +10015160: 2301 movs r3, #1 +10015162: 2200 movs r2, #0 +10015164: 70bb strb r3, [r7, #2] +10015166: 717b strb r3, [r7, #5] +10015168: 8038 strh r0, [r7, #0] +1001516a: 713a strb r2, [r7, #4] +1001516c: 3c01 subs r4, #1 +1001516e: 7862 ldrb r2, [r4, #1] +10015170: 370c adds r7, #12 +10015172: 2a2e cmp r2, #46 ; 0x2e +10015174: f104 0301 add.w r3, r4, #1 +10015178: f107 0501 add.w r5, r7, #1 +1001517c: d021 beq.n 100151c2 +1001517e: 2a00 cmp r2, #0 +10015180: d052 beq.n 10015228 +10015182: 1ca6 adds r6, r4, #2 +10015184: 463d mov r5, r7 +10015186: e001 b.n 1001518c +10015188: b172 cbz r2, 100151a8 +1001518a: 461d mov r5, r3 +1001518c: 462b mov r3, r5 +1001518e: f803 2f01 strb.w r2, [r3, #1]! +10015192: 7832 ldrb r2, [r6, #0] +10015194: 4634 mov r4, r6 +10015196: 2a2e cmp r2, #46 ; 0x2e +10015198: ebc7 0603 rsb r6, r7, r3 +1001519c: b2f1 uxtb r1, r6 +1001519e: f105 0502 add.w r5, r5, #2 +100151a2: f104 0601 add.w r6, r4, #1 +100151a6: d1ef bne.n 10015188 +100151a8: b2ca uxtb r2, r1 +100151aa: 703a strb r2, [r7, #0] +100151ac: f994 3000 ldrsb.w r3, [r4] +100151b0: b173 cbz r3, 100151d0 +100151b2: 7862 ldrb r2, [r4, #1] +100151b4: 462f mov r7, r5 +100151b6: 2a2e cmp r2, #46 ; 0x2e +100151b8: f104 0301 add.w r3, r4, #1 +100151bc: f107 0501 add.w r5, r7, #1 +100151c0: d1dd bne.n 1001517e +100151c2: 2200 movs r2, #0 +100151c4: 461c mov r4, r3 +100151c6: 703a strb r2, [r7, #0] +100151c8: f994 3000 ldrsb.w r3, [r4] +100151cc: 2b00 cmp r3, #0 +100151ce: d1f0 bne.n 100151b2 +100151d0: 4628 mov r0, r5 +100151d2: f800 3b01 strb.w r3, [r0], #1 +100151d6: 2204 movs r2, #4 +100151d8: f44f 7380 mov.w r3, #256 ; 0x100 +100151dc: a901 add r1, sp, #4 +100151de: f8ad 3004 strh.w r3, [sp, #4] +100151e2: f8ad 3006 strh.w r3, [sp, #6] +100151e6: f02c ffbb bl 10042160 +100151ea: f8d9 3004 ldr.w r3, [r9, #4] +100151ee: 3505 adds r5, #5 +100151f0: 1ae9 subs r1, r5, r3 +100151f2: b289 uxth r1, r1 +100151f4: 4648 mov r0, r9 +100151f6: f000 ff03 bl 10016000 +100151fa: 4b0d ldr r3, [pc, #52] ; (10015230 ) +100151fc: 4c0d ldr r4, [pc, #52] ; (10015234 ) +100151fe: eb03 0888 add.w r8, r3, r8, lsl #2 +10015202: 4641 mov r1, r8 +10015204: 6820 ldr r0, [r4, #0] +10015206: 2235 movs r2, #53 ; 0x35 +10015208: f004 f8e4 bl 100193d4 +1001520c: 6820 ldr r0, [r4, #0] +1001520e: 4642 mov r2, r8 +10015210: 4649 mov r1, r9 +10015212: 2335 movs r3, #53 ; 0x35 +10015214: f004 f8be bl 10019394 +10015218: 4604 mov r4, r0 +1001521a: 4648 mov r0, r9 +1001521c: f000 fe24 bl 10015e68 +10015220: b260 sxtb r0, r4 +10015222: b003 add sp, #12 +10015224: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10015228: 461c mov r4, r3 +1001522a: e7be b.n 100151aa +1001522c: 24ff movs r4, #255 ; 0xff +1001522e: e7f7 b.n 10015220 +10015230: 10051188 .word 0x10051188 +10015234: 10051394 .word 0x10051394 + +10015238 : +10015238: b5f8 push {r3, r4, r5, r6, r7, lr} +1001523a: f44f 758c mov.w r5, #280 ; 0x118 +1001523e: fb05 f500 mul.w r5, r5, r0 +10015242: 4e28 ldr r6, [pc, #160] ; (100152e4 ) +10015244: 5d73 ldrb r3, [r6, r5] +10015246: 1974 adds r4, r6, r5 +10015248: 2b02 cmp r3, #2 +1001524a: d01d beq.n 10015288 +1001524c: 2b03 cmp r3, #3 +1001524e: d012 beq.n 10015276 +10015250: 2b01 cmp r3, #1 +10015252: d000 beq.n 10015256 +10015254: bdf8 pop {r3, r4, r5, r6, r7, pc} +10015256: 2700 movs r7, #0 +10015258: f04f 0c02 mov.w ip, #2 +1001525c: f806 c005 strb.w ip, [r6, r5] +10015260: 70a3 strb r3, [r4, #2] +10015262: 7067 strb r7, [r4, #1] +10015264: 70e7 strb r7, [r4, #3] +10015266: 4602 mov r2, r0 +10015268: f104 010c add.w r1, r4, #12 +1001526c: 4638 mov r0, r7 +1001526e: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10015272: f7ff bf5d b.w 10015130 +10015276: 68a3 ldr r3, [r4, #8] +10015278: 3b01 subs r3, #1 +1001527a: 60a3 str r3, [r4, #8] +1001527c: 2b00 cmp r3, #0 +1001527e: d1e9 bne.n 10015254 +10015280: 5573 strb r3, [r6, r5] +10015282: f8c4 3110 str.w r3, [r4, #272] ; 0x110 +10015286: bdf8 pop {r3, r4, r5, r6, r7, pc} +10015288: 78a3 ldrb r3, [r4, #2] +1001528a: 3b01 subs r3, #1 +1001528c: b2db uxtb r3, r3 +1001528e: 70a3 strb r3, [r4, #2] +10015290: 2b00 cmp r3, #0 +10015292: d1df bne.n 10015254 +10015294: 78e3 ldrb r3, [r4, #3] +10015296: 3301 adds r3, #1 +10015298: b2db uxtb r3, r3 +1001529a: 2b04 cmp r3, #4 +1001529c: 70e3 strb r3, [r4, #3] +1001529e: d10f bne.n 100152c0 +100152a0: 7863 ldrb r3, [r4, #1] +100152a2: b1b3 cbz r3, 100152d2 +100152a4: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +100152a8: b12b cbz r3, 100152b6 +100152aa: f104 000c add.w r0, r4, #12 +100152ae: 2100 movs r1, #0 +100152b0: f8d4 2114 ldr.w r2, [r4, #276] ; 0x114 +100152b4: 4798 blx r3 +100152b6: 2300 movs r3, #0 +100152b8: 5573 strb r3, [r6, r5] +100152ba: f8c4 3110 str.w r3, [r4, #272] ; 0x110 +100152be: bdf8 pop {r3, r4, r5, r6, r7, pc} +100152c0: 70a3 strb r3, [r4, #2] +100152c2: 4602 mov r2, r0 +100152c4: f104 010c add.w r1, r4, #12 +100152c8: 7860 ldrb r0, [r4, #1] +100152ca: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +100152ce: f7ff bf2f b.w 10015130 +100152d2: 4a05 ldr r2, [pc, #20] ; (100152e8 ) +100152d4: 6852 ldr r2, [r2, #4] +100152d6: 2a00 cmp r2, #0 +100152d8: d0e4 beq.n 100152a4 +100152da: 2201 movs r2, #1 +100152dc: 70e3 strb r3, [r4, #3] +100152de: 7062 strb r2, [r4, #1] +100152e0: 70a2 strb r2, [r4, #2] +100152e2: bdf8 pop {r3, r4, r5, r6, r7, pc} +100152e4: 10050d28 .word 0x10050d28 +100152e8: 10051188 .word 0x10051188 + +100152ec : +100152ec: 4a11 ldr r2, [pc, #68] ; (10015334 ) +100152ee: 4b12 ldr r3, [pc, #72] ; (10015338 ) +100152f0: b570 push {r4, r5, r6, lr} +100152f2: f022 0203 bic.w r2, r2, #3 +100152f6: 4811 ldr r0, [pc, #68] ; (1001533c ) +100152f8: 601a str r2, [r3, #0] +100152fa: f7fe fa17 bl 1001372c +100152fe: 4c10 ldr r4, [pc, #64] ; (10015340 ) +10015300: 4606 mov r6, r0 +10015302: 6825 ldr r5, [r4, #0] +10015304: b105 cbz r5, 10015308 +10015306: bd70 pop {r4, r5, r6, pc} +10015308: f004 f8b8 bl 1001947c +1001530c: 6020 str r0, [r4, #0] +1001530e: 2800 cmp r0, #0 +10015310: d0f9 beq.n 10015306 +10015312: 490c ldr r1, [pc, #48] ; (10015344 ) +10015314: 462a mov r2, r5 +10015316: f003 ff53 bl 100191c0 +1001531a: 462a mov r2, r5 +1001531c: 6820 ldr r0, [r4, #0] +1001531e: 490a ldr r1, [pc, #40] ; (10015348 ) +10015320: f004 f88c bl 1001943c +10015324: 6823 ldr r3, [r4, #0] +10015326: 2b00 cmp r3, #0 +10015328: d0ed beq.n 10015306 +1001532a: 2e00 cmp r6, #0 +1001532c: d0eb beq.n 10015306 +1001532e: 4b07 ldr r3, [pc, #28] ; (1001534c ) +10015330: 601e str r6, [r3, #0] +10015332: e7e8 b.n 10015306 +10015334: 10051193 .word 0x10051193 +10015338: 10051398 .word 0x10051398 +1001533c: 10047c90 .word 0x10047c90 +10015340: 10051394 .word 0x10051394 +10015344: 10047c8c .word 0x10047c8c +10015348: 10014f71 .word 0x10014f71 +1001534c: 10051188 .word 0x10051188 + +10015350 : +10015350: 2801 cmp r0, #1 +10015352: d900 bls.n 10015356 +10015354: 4770 bx lr +10015356: 4b06 ldr r3, [pc, #24] ; (10015370 ) +10015358: 681b ldr r3, [r3, #0] +1001535a: 2b00 cmp r3, #0 +1001535c: d0fa beq.n 10015354 +1001535e: 2900 cmp r1, #0 +10015360: d0f8 beq.n 10015354 +10015362: 680b ldr r3, [r1, #0] +10015364: 2b00 cmp r3, #0 +10015366: d0f5 beq.n 10015354 +10015368: 4a02 ldr r2, [pc, #8] ; (10015374 ) +1001536a: f842 3020 str.w r3, [r2, r0, lsl #2] +1001536e: 4770 bx lr +10015370: 10051394 .word 0x10051394 +10015374: 10051188 .word 0x10051188 + +10015378 : +10015378: b508 push {r3, lr} +1001537a: 4b09 ldr r3, [pc, #36] ; (100153a0 ) +1001537c: 681b ldr r3, [r3, #0] +1001537e: b16b cbz r3, 1001539c +10015380: 2000 movs r0, #0 +10015382: f7ff ff59 bl 10015238 +10015386: 2001 movs r0, #1 +10015388: f7ff ff56 bl 10015238 +1001538c: 2002 movs r0, #2 +1001538e: f7ff ff53 bl 10015238 +10015392: e8bd 4008 ldmia.w sp!, {r3, lr} +10015396: 2003 movs r0, #3 +10015398: f7ff bf4e b.w 10015238 +1001539c: bd08 pop {r3, pc} +1001539e: bf00 nop +100153a0: 10051394 .word 0x10051394 + +100153a4 : +100153a4: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100153a8: 4c48 ldr r4, [pc, #288] ; (100154cc ) +100153aa: 460d mov r5, r1 +100153ac: 6821 ldr r1, [r4, #0] +100153ae: 4616 mov r6, r2 +100153b0: 461f mov r7, r3 +100153b2: 4604 mov r4, r0 +100153b4: b191 cbz r1, 100153dc +100153b6: b18d cbz r5, 100153dc +100153b8: b180 cbz r0, 100153dc +100153ba: f990 3000 ldrsb.w r3, [r0] +100153be: b16b cbz r3, 100153dc +100153c0: f02c fee6 bl 10042190 +100153c4: 28ff cmp r0, #255 ; 0xff +100153c6: d809 bhi.n 100153dc +100153c8: 4620 mov r0, r4 +100153ca: f7fe f9af bl 1001372c +100153ce: 1c42 adds r2, r0, #1 +100153d0: d008 beq.n 100153e4 +100153d2: 6028 str r0, [r5, #0] +100153d4: 2000 movs r0, #0 +100153d6: b240 sxtb r0, r0 +100153d8: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +100153dc: 20f2 movs r0, #242 ; 0xf2 +100153de: b240 sxtb r0, r0 +100153e0: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +100153e4: f8df 80f0 ldr.w r8, [pc, #240] ; 100154d8 +100153e8: f04f 0900 mov.w r9, #0 +100153ec: f818 3c0c ldrb.w r3, [r8, #-12] +100153f0: 2b03 cmp r3, #3 +100153f2: d055 beq.n 100154a0 +100153f4: f109 0901 add.w r9, r9, #1 +100153f8: f1b9 0f04 cmp.w r9, #4 +100153fc: f508 788c add.w r8, r8, #280 ; 0x118 +10015400: d1f4 bne.n 100153ec +10015402: f8df c0d0 ldr.w ip, [pc, #208] ; 100154d4 +10015406: 4a32 ldr r2, [pc, #200] ; (100154d0 ) +10015408: 2100 movs r1, #0 +1001540a: f892 b000 ldrb.w fp, [r2] +1001540e: 4d31 ldr r5, [pc, #196] ; (100154d4 ) +10015410: 4608 mov r0, r1 +10015412: 468a mov sl, r1 +10015414: 782b ldrb r3, [r5, #0] +10015416: fa5f f981 uxtb.w r9, r1 +1001541a: 46a8 mov r8, r5 +1001541c: 3101 adds r1, #1 +1001541e: b1e3 cbz r3, 1001545a +10015420: 2b03 cmp r3, #3 +10015422: d010 beq.n 10015446 +10015424: 2904 cmp r1, #4 +10015426: f505 758c add.w r5, r5, #280 ; 0x118 +1001542a: d1f3 bne.n 10015414 +1001542c: 2803 cmp r0, #3 +1001542e: d808 bhi.n 10015442 +10015430: f44f 788c mov.w r8, #280 ; 0x118 +10015434: fb08 f800 mul.w r8, r8, r0 +10015438: f81c 3008 ldrb.w r3, [ip, r8] +1001543c: 44e0 add r8, ip +1001543e: 2b03 cmp r3, #3 +10015440: d00a beq.n 10015458 +10015442: 20ff movs r0, #255 ; 0xff +10015444: e7c7 b.n 100153d6 +10015446: 792b ldrb r3, [r5, #4] +10015448: ebc3 030b rsb r3, r3, fp +1001544c: 4553 cmp r3, sl +1001544e: bfc4 itt gt +10015450: fa5f fa83 uxtbgt.w sl, r3 +10015454: 4648 movgt r0, r9 +10015456: e7e5 b.n 10015424 +10015458: 4681 mov r9, r0 +1001545a: 7813 ldrb r3, [r2, #0] +1001545c: 2101 movs r1, #1 +1001545e: 185d adds r5, r3, r1 +10015460: 4620 mov r0, r4 +10015462: f8c8 6110 str.w r6, [r8, #272] ; 0x110 +10015466: f8c8 7114 str.w r7, [r8, #276] ; 0x114 +1001546a: f888 3004 strb.w r3, [r8, #4] +1001546e: f888 1000 strb.w r1, [r8] +10015472: 7015 strb r5, [r2, #0] +10015474: f02c fe8c bl 10042190 +10015478: 28fe cmp r0, #254 ; 0xfe +1001547a: d922 bls.n 100154c2 +1001547c: 25ff movs r5, #255 ; 0xff +1001547e: 4621 mov r1, r4 +10015480: 462a mov r2, r5 +10015482: f108 000c add.w r0, r8, #12 +10015486: f02c fe6b bl 10042160 +1001548a: 44a8 add r8, r5 +1001548c: 2300 movs r3, #0 +1001548e: 4648 mov r0, r9 +10015490: f888 300c strb.w r3, [r8, #12] +10015494: f7ff fed0 bl 10015238 +10015498: 20fb movs r0, #251 ; 0xfb +1001549a: b240 sxtb r0, r0 +1001549c: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +100154a0: 4620 mov r0, r4 +100154a2: 4641 mov r1, r8 +100154a4: f02c fe68 bl 10042178 +100154a8: 2800 cmp r0, #0 +100154aa: d1a3 bne.n 100153f4 +100154ac: f8df c024 ldr.w ip, [pc, #36] ; 100154d4 +100154b0: f44f 738c mov.w r3, #280 ; 0x118 +100154b4: fb03 c909 mla r9, r3, r9, ip +100154b8: f8d9 010c ldr.w r0, [r9, #268] ; 0x10c +100154bc: 1c43 adds r3, r0, #1 +100154be: d0a2 beq.n 10015406 +100154c0: e787 b.n 100153d2 +100154c2: 4620 mov r0, r4 +100154c4: f02c fe64 bl 10042190 +100154c8: 4605 mov r5, r0 +100154ca: e7d8 b.n 1001547e +100154cc: 10051394 .word 0x10051394 +100154d0: 10050d24 .word 0x10050d24 +100154d4: 10050d28 .word 0x10050d28 +100154d8: 10050d34 .word 0x10050d34 + +100154dc : +100154dc: b508 push {r3, lr} +100154de: f004 fdfb bl 1001a0d8 +100154e2: f000 f97b bl 100157dc +100154e6: f000 faff bl 10015ae8 +100154ea: f000 fb63 bl 10015bb4 +100154ee: f7fc f9ef bl 100118d0 +100154f2: f003 fd8f bl 10019014 +100154f6: f000 ff8d bl 10016414 +100154fa: f7fd fbe7 bl 10012ccc +100154fe: f7ff fef5 bl 100152ec +10015502: e8bd 4008 ldmia.w sp!, {r3, lr} +10015506: f000 b875 b.w 100155f4 +1001550a: bf00 nop + +1001550c : +1001550c: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10015510: 4606 mov r6, r0 +10015512: 200c movs r0, #12 +10015514: 4688 mov r8, r1 +10015516: 4617 mov r7, r2 +10015518: f000 fb22 bl 10015b60 +1001551c: 4605 mov r5, r0 +1001551e: b1d0 cbz r0, 10015556 +10015520: 4815 ldr r0, [pc, #84] ; (10015578 ) +10015522: 2300 movs r3, #0 +10015524: 6804 ldr r4, [r0, #0] +10015526: f8c5 8008 str.w r8, [r5, #8] +1001552a: 60ef str r7, [r5, #12] +1001552c: e885 0048 stmia.w r5, {r3, r6} +10015530: b1fc cbz r4, 10015572 +10015532: 6861 ldr r1, [r4, #4] +10015534: 428e cmp r6, r1 +10015536: d310 bcc.n 1001555a +10015538: 4633 mov r3, r6 +1001553a: e003 b.n 10015544 +1001553c: 6851 ldr r1, [r2, #4] +1001553e: 428b cmp r3, r1 +10015540: d311 bcc.n 10015566 +10015542: 4614 mov r4, r2 +10015544: 6822 ldr r2, [r4, #0] +10015546: 1a5b subs r3, r3, r1 +10015548: 606b str r3, [r5, #4] +1001554a: 2a00 cmp r2, #0 +1001554c: d1f6 bne.n 1001553c +1001554e: 602a str r2, [r5, #0] +10015550: 6025 str r5, [r4, #0] +10015552: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10015556: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001555a: 1b89 subs r1, r1, r6 +1001555c: 6061 str r1, [r4, #4] +1001555e: 6005 str r5, [r0, #0] +10015560: 602c str r4, [r5, #0] +10015562: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10015566: 1acb subs r3, r1, r3 +10015568: 6053 str r3, [r2, #4] +1001556a: 602a str r2, [r5, #0] +1001556c: 6025 str r5, [r4, #0] +1001556e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10015572: 6005 str r5, [r0, #0] +10015574: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10015578: 100513a0 .word 0x100513a0 + +1001557c : +1001557c: 4b0b ldr r3, [pc, #44] ; (100155ac ) +1001557e: b410 push {r4} +10015580: 681a ldr r2, [r3, #0] +10015582: b97a cbnz r2, 100155a4 +10015584: 4a0a ldr r2, [pc, #40] ; (100155b0 ) +10015586: 6812 ldr r2, [r2, #0] +10015588: b142 cbz r2, 1001559c +1001558a: 2401 movs r4, #1 +1001558c: 601c str r4, [r3, #0] +1001558e: 20fa movs r0, #250 ; 0xfa +10015590: 4908 ldr r1, [pc, #32] ; (100155b4 ) +10015592: 2200 movs r2, #0 +10015594: f85d 4b04 ldr.w r4, [sp], #4 +10015598: f7ff bfb8 b.w 1001550c +1001559c: 4a06 ldr r2, [pc, #24] ; (100155b8 ) +1001559e: 6812 ldr r2, [r2, #0] +100155a0: 2a00 cmp r2, #0 +100155a2: d1f2 bne.n 1001558a +100155a4: f85d 4b04 ldr.w r4, [sp], #4 +100155a8: 4770 bx lr +100155aa: bf00 nop +100155ac: 1005139c .word 0x1005139c +100155b0: 100513c4 .word 0x100513c4 +100155b4: 100155bd .word 0x100155bd +100155b8: 100513cc .word 0x100513cc + +100155bc : +100155bc: b508 push {r3, lr} +100155be: f001 fbb9 bl 10016d34 +100155c2: 4b08 ldr r3, [pc, #32] ; (100155e4 ) +100155c4: 681b ldr r3, [r3, #0] +100155c6: b133 cbz r3, 100155d6 +100155c8: 20fa movs r0, #250 ; 0xfa +100155ca: 4907 ldr r1, [pc, #28] ; (100155e8 ) +100155cc: 2200 movs r2, #0 +100155ce: e8bd 4008 ldmia.w sp!, {r3, lr} +100155d2: f7ff bf9b b.w 1001550c +100155d6: 4b05 ldr r3, [pc, #20] ; (100155ec ) +100155d8: 681b ldr r3, [r3, #0] +100155da: 2b00 cmp r3, #0 +100155dc: d1f4 bne.n 100155c8 +100155de: 4a04 ldr r2, [pc, #16] ; (100155f0 ) +100155e0: 6013 str r3, [r2, #0] +100155e2: bd08 pop {r3, pc} +100155e4: 100513c4 .word 0x100513c4 +100155e8: 100155bd .word 0x100155bd +100155ec: 100513cc .word 0x100513cc +100155f0: 1005139c .word 0x1005139c + +100155f4 : +100155f4: b508 push {r3, lr} +100155f6: f44f 707a mov.w r0, #1000 ; 0x3e8 +100155fa: 4914 ldr r1, [pc, #80] ; (1001564c ) +100155fc: 2200 movs r2, #0 +100155fe: f7ff ff85 bl 1001550c +10015602: f241 3088 movw r0, #5000 ; 0x1388 +10015606: 4912 ldr r1, [pc, #72] ; (10015650 ) +10015608: 2200 movs r2, #0 +1001560a: f7ff ff7f bl 1001550c +1001560e: f64e 2060 movw r0, #60000 ; 0xea60 +10015612: 4910 ldr r1, [pc, #64] ; (10015654 ) +10015614: 2200 movs r2, #0 +10015616: f7ff ff79 bl 1001550c +1001561a: f44f 70fa mov.w r0, #500 ; 0x1f4 +1001561e: 490e ldr r1, [pc, #56] ; (10015658 ) +10015620: 2200 movs r2, #0 +10015622: f7ff ff73 bl 1001550c +10015626: 2064 movs r0, #100 ; 0x64 +10015628: 490c ldr r1, [pc, #48] ; (1001565c ) +1001562a: 2200 movs r2, #0 +1001562c: f7ff ff6e bl 1001550c +10015630: 2064 movs r0, #100 ; 0x64 +10015632: 490b ldr r1, [pc, #44] ; (10015660 ) +10015634: 2200 movs r2, #0 +10015636: f7ff ff69 bl 1001550c +1001563a: e8bd 4008 ldmia.w sp!, {r3, lr} +1001563e: f44f 707a mov.w r0, #1000 ; 0x3e8 +10015642: 4908 ldr r1, [pc, #32] ; (10015664 ) +10015644: 2200 movs r2, #0 +10015646: f7ff bf61 b.w 1001550c +1001564a: bf00 nop +1001564c: 10015709 .word 0x10015709 +10015650: 100156ed .word 0x100156ed +10015654: 100156d1 .word 0x100156d1 +10015658: 100156b5 .word 0x100156b5 +1001565c: 1001569d .word 0x1001569d +10015660: 10015685 .word 0x10015685 +10015664: 10015669 .word 0x10015669 + +10015668 : +10015668: b508 push {r3, lr} +1001566a: f7ff fe85 bl 10015378 +1001566e: e8bd 4008 ldmia.w sp!, {r3, lr} +10015672: f44f 707a mov.w r0, #1000 ; 0x3e8 +10015676: 4902 ldr r1, [pc, #8] ; (10015680 ) +10015678: 2200 movs r2, #0 +1001567a: f7ff bf47 b.w 1001550c +1001567e: bf00 nop +10015680: 10015669 .word 0x10015669 + +10015684 : +10015684: b508 push {r3, lr} +10015686: f7fd fcbd bl 10013004 +1001568a: e8bd 4008 ldmia.w sp!, {r3, lr} +1001568e: 2064 movs r0, #100 ; 0x64 +10015690: 4901 ldr r1, [pc, #4] ; (10015698 ) +10015692: 2200 movs r2, #0 +10015694: f7ff bf3a b.w 1001550c +10015698: 10015685 .word 0x10015685 + +1001569c : +1001569c: b508 push {r3, lr} +1001569e: f7fd f8c7 bl 10012830 +100156a2: e8bd 4008 ldmia.w sp!, {r3, lr} +100156a6: 2064 movs r0, #100 ; 0x64 +100156a8: 4901 ldr r1, [pc, #4] ; (100156b0 ) +100156aa: 2200 movs r2, #0 +100156ac: f7ff bf2e b.w 1001550c +100156b0: 1001569d .word 0x1001569d + +100156b4 : +100156b4: b508 push {r3, lr} +100156b6: f7ff fb19 bl 10014cec +100156ba: e8bd 4008 ldmia.w sp!, {r3, lr} +100156be: f44f 70fa mov.w r0, #500 ; 0x1f4 +100156c2: 4902 ldr r1, [pc, #8] ; (100156cc ) +100156c4: 2200 movs r2, #0 +100156c6: f7ff bf21 b.w 1001550c +100156ca: bf00 nop +100156cc: 100156b5 .word 0x100156b5 + +100156d0 : +100156d0: b508 push {r3, lr} +100156d2: f7ff fac5 bl 10014c60 +100156d6: e8bd 4008 ldmia.w sp!, {r3, lr} +100156da: f64e 2060 movw r0, #60000 ; 0xea60 +100156de: 4902 ldr r1, [pc, #8] ; (100156e8 ) +100156e0: 2200 movs r2, #0 +100156e2: f7ff bf13 b.w 1001550c +100156e6: bf00 nop +100156e8: 100156d1 .word 0x100156d1 + +100156ec : +100156ec: b508 push {r3, lr} +100156ee: f003 ff91 bl 10019614 +100156f2: e8bd 4008 ldmia.w sp!, {r3, lr} +100156f6: f241 3088 movw r0, #5000 ; 0x1388 +100156fa: 4902 ldr r1, [pc, #8] ; (10015704 ) +100156fc: 2200 movs r2, #0 +100156fe: f7ff bf05 b.w 1001550c +10015702: bf00 nop +10015704: 100156ed .word 0x100156ed + +10015708 : +10015708: b508 push {r3, lr} +1001570a: f7fe f913 bl 10013934 +1001570e: e8bd 4008 ldmia.w sp!, {r3, lr} +10015712: f44f 707a mov.w r0, #1000 ; 0x3e8 +10015716: 4902 ldr r1, [pc, #8] ; (10015720 ) +10015718: 2200 movs r2, #0 +1001571a: f7ff bef7 b.w 1001550c +1001571e: bf00 nop +10015720: 10015709 .word 0x10015709 + +10015724 : +10015724: b430 push {r4, r5} +10015726: 4d10 ldr r5, [pc, #64] ; (10015768 ) +10015728: 682b ldr r3, [r5, #0] +1001572a: b1cb cbz r3, 10015760 +1001572c: 2400 movs r4, #0 +1001572e: e003 b.n 10015738 +10015730: 681a ldr r2, [r3, #0] +10015732: 461c mov r4, r3 +10015734: b1a2 cbz r2, 10015760 +10015736: 4613 mov r3, r2 +10015738: 689a ldr r2, [r3, #8] +1001573a: 4282 cmp r2, r0 +1001573c: d1f8 bne.n 10015730 +1001573e: 68da ldr r2, [r3, #12] +10015740: 428a cmp r2, r1 +10015742: d1f5 bne.n 10015730 +10015744: 681a ldr r2, [r3, #0] +10015746: b16c cbz r4, 10015764 +10015748: 6022 str r2, [r4, #0] +1001574a: 681a ldr r2, [r3, #0] +1001574c: b11a cbz r2, 10015756 +1001574e: 6850 ldr r0, [r2, #4] +10015750: 6859 ldr r1, [r3, #4] +10015752: 4401 add r1, r0 +10015754: 6051 str r1, [r2, #4] +10015756: 4619 mov r1, r3 +10015758: 200c movs r0, #12 +1001575a: bc30 pop {r4, r5} +1001575c: f000 ba16 b.w 10015b8c +10015760: bc30 pop {r4, r5} +10015762: 4770 bx lr +10015764: 602a str r2, [r5, #0] +10015766: e7f1 b.n 1001574c +10015768: 100513a0 .word 0x100513a0 + +1001576c : +1001576c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10015770: 4c19 ldr r4, [pc, #100] ; (100157d8 ) +10015772: 4606 mov r6, r0 +10015774: 460d mov r5, r1 +10015776: 46a2 mov sl, r4 +10015778: e009 b.n 1001578e +1001577a: 681a ldr r2, [r3, #0] +1001577c: 689f ldr r7, [r3, #8] +1001577e: 200c movs r0, #12 +10015780: 4619 mov r1, r3 +10015782: 6022 str r2, [r4, #0] +10015784: f8d3 900c ldr.w r9, [r3, #12] +10015788: f000 fa00 bl 10015b8c +1001578c: bb0f cbnz r7, 100157d2 +1001578e: 6823 ldr r3, [r4, #0] +10015790: f8df 8044 ldr.w r8, [pc, #68] ; 100157d8 +10015794: b15b cbz r3, 100157ae +10015796: 685a ldr r2, [r3, #4] +10015798: 2a00 cmp r2, #0 +1001579a: d0ee beq.n 1001577a +1001579c: 4630 mov r0, r6 +1001579e: 4629 mov r1, r5 +100157a0: f004 fc02 bl 10019fa8 +100157a4: 1c43 adds r3, r0, #1 +100157a6: d109 bne.n 100157bc +100157a8: f8da 3000 ldr.w r3, [sl] +100157ac: e7e5 b.n 1001577a +100157ae: 4630 mov r0, r6 +100157b0: 4629 mov r1, r5 +100157b2: 461a mov r2, r3 +100157b4: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100157b8: f004 bbf6 b.w 10019fa8 +100157bc: f8d8 3000 ldr.w r3, [r8] +100157c0: 685a ldr r2, [r3, #4] +100157c2: 4282 cmp r2, r0 +100157c4: bf8c ite hi +100157c6: ebc0 0202 rsbhi r2, r0, r2 +100157ca: 2200 movls r2, #0 +100157cc: 605a str r2, [r3, #4] +100157ce: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +100157d2: 4648 mov r0, r9 +100157d4: 47b8 blx r7 +100157d6: e7da b.n 1001578e +100157d8: 100513a0 .word 0x100513a0 + +100157dc : +100157dc: e92d 01f0 stmdb sp!, {r4, r5, r6, r7, r8} +100157e0: 4b0f ldr r3, [pc, #60] ; (10015820 ) +100157e2: f44f 54a0 mov.w r4, #5120 ; 0x1400 +100157e6: f023 0303 bic.w r3, r3, #3 +100157ea: f503 52a0 add.w r2, r3, #5120 ; 0x1400 +100157ee: 2501 movs r5, #1 +100157f0: 2600 movs r6, #0 +100157f2: f8df 8038 ldr.w r8, [pc, #56] ; 1001582c +100157f6: 4f0b ldr r7, [pc, #44] ; (10015824 ) +100157f8: 801c strh r4, [r3, #0] +100157fa: 805e strh r6, [r3, #2] +100157fc: 711e strb r6, [r3, #4] +100157fe: f8df c030 ldr.w ip, [pc, #48] ; 10015830 +10015802: 7115 strb r5, [r2, #4] +10015804: 4629 mov r1, r5 +10015806: f8c8 3000 str.w r3, [r8] +1001580a: 603a str r2, [r7, #0] +1001580c: 8014 strh r4, [r2, #0] +1001580e: 8054 strh r4, [r2, #2] +10015810: 4805 ldr r0, [pc, #20] ; (10015828 ) +10015812: e8bd 01f0 ldmia.w sp!, {r4, r5, r6, r7, r8} +10015816: f8cc 3000 str.w r3, [ip] +1001581a: f004 bc09 b.w 1001a030 +1001581e: bf00 nop +10015820: 1fff0003 .word 0x1fff0003 +10015824: 1fff1418 .word 0x1fff1418 +10015828: 1fff141c .word 0x1fff141c +1001582c: 1fff1420 .word 0x1fff1420 +10015830: 1fff1414 .word 0x1fff1414 + +10015834 : +10015834: b5f8 push {r3, r4, r5, r6, r7, lr} +10015836: 4604 mov r4, r0 +10015838: 2800 cmp r0, #0 +1001583a: d04d beq.n 100158d8 +1001583c: 4d27 ldr r5, [pc, #156] ; (100158dc ) +1001583e: 682b ldr r3, [r5, #0] +10015840: 4298 cmp r0, r3 +10015842: d303 bcc.n 1001584c +10015844: 4e26 ldr r6, [pc, #152] ; (100158e0 ) +10015846: 6833 ldr r3, [r6, #0] +10015848: 4298 cmp r0, r3 +1001584a: d305 bcc.n 10015858 +1001584c: f004 fc8e bl 1001a16c +10015850: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10015854: f004 bc90 b.w 1001a178 +10015858: 2100 movs r1, #0 +1001585a: 4822 ldr r0, [pc, #136] ; (100158e4 ) +1001585c: f004 fc08 bl 1001a070 +10015860: 4821 ldr r0, [pc, #132] ; (100158e8 ) +10015862: f1a4 0208 sub.w r2, r4, #8 +10015866: 6803 ldr r3, [r0, #0] +10015868: 2100 movs r1, #0 +1001586a: 429a cmp r2, r3 +1001586c: 682b ldr r3, [r5, #0] +1001586e: f834 5c08 ldrh.w r5, [r4, #-8] +10015872: f804 1c04 strb.w r1, [r4, #-4] +10015876: eb03 0105 add.w r1, r3, r5 +1001587a: bf38 it cc +1001587c: 6002 strcc r2, [r0, #0] +1001587e: 428a cmp r2, r1 +10015880: d011 beq.n 100158a6 +10015882: 790f ldrb r7, [r1, #4] +10015884: b97f cbnz r7, 100158a6 +10015886: 6836 ldr r6, [r6, #0] +10015888: 42b1 cmp r1, r6 +1001588a: d00c beq.n 100158a6 +1001588c: 6806 ldr r6, [r0, #0] +1001588e: 4f16 ldr r7, [pc, #88] ; (100158e8 ) +10015890: 42b1 cmp r1, r6 +10015892: 5b59 ldrh r1, [r3, r5] +10015894: ebc3 0602 rsb r6, r3, r2 +10015898: f824 1c08 strh.w r1, [r4, #-8] +1001589c: 5b59 ldrh r1, [r3, r5] +1001589e: bf08 it eq +100158a0: 603a streq r2, [r7, #0] +100158a2: 4419 add r1, r3 +100158a4: 804e strh r6, [r1, #2] +100158a6: f834 5c06 ldrh.w r5, [r4, #-6] +100158aa: 1959 adds r1, r3, r5 +100158ac: 428a cmp r2, r1 +100158ae: d00e beq.n 100158ce +100158b0: 790e ldrb r6, [r1, #4] +100158b2: b966 cbnz r6, 100158ce +100158b4: 6800 ldr r0, [r0, #0] +100158b6: 4e0c ldr r6, [pc, #48] ; (100158e8 ) +100158b8: 4282 cmp r2, r0 +100158ba: f834 2c08 ldrh.w r2, [r4, #-8] +100158be: bf08 it eq +100158c0: 6031 streq r1, [r6, #0] +100158c2: 535a strh r2, [r3, r5] +100158c4: f834 2c08 ldrh.w r2, [r4, #-8] +100158c8: 1ac9 subs r1, r1, r3 +100158ca: 4413 add r3, r2 +100158cc: 8059 strh r1, [r3, #2] +100158ce: 4805 ldr r0, [pc, #20] ; (100158e4 ) +100158d0: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +100158d4: f004 bbec b.w 1001a0b0 +100158d8: bdf8 pop {r3, r4, r5, r6, r7, pc} +100158da: bf00 nop +100158dc: 1fff1420 .word 0x1fff1420 +100158e0: 1fff1418 .word 0x1fff1418 +100158e4: 1fff141c .word 0x1fff141c +100158e8: 1fff1414 .word 0x1fff1414 + +100158ec : +100158ec: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100158f0: 3103 adds r1, #3 +100158f2: f64f 74fc movw r4, #65532 ; 0xfffc +100158f6: 400c ands r4, r1 +100158f8: 2c0b cmp r4, #11 +100158fa: 4605 mov r5, r0 +100158fc: d944 bls.n 10015988 +100158fe: f5b4 5fa0 cmp.w r4, #5120 ; 0x1400 +10015902: d867 bhi.n 100159d4 +10015904: 4e36 ldr r6, [pc, #216] ; (100159e0 ) +10015906: 6833 ldr r3, [r6, #0] +10015908: 429d cmp r5, r3 +1001590a: d342 bcc.n 10015992 +1001590c: 4a35 ldr r2, [pc, #212] ; (100159e4 ) +1001590e: 6812 ldr r2, [r2, #0] +10015910: 4295 cmp r5, r2 +10015912: d23e bcs.n 10015992 +10015914: f1a5 0808 sub.w r8, r5, #8 +10015918: f835 7c08 ldrh.w r7, [r5, #-8] +1001591c: ebc3 0308 rsb r3, r3, r8 +10015920: fa1f f883 uxth.w r8, r3 +10015924: 3f08 subs r7, #8 +10015926: ebc8 0707 rsb r7, r8, r7 +1001592a: b2bf uxth r7, r7 +1001592c: 42a7 cmp r7, r4 +1001592e: d351 bcc.n 100159d4 +10015930: 42bc cmp r4, r7 +10015932: d052 beq.n 100159da +10015934: 2100 movs r1, #0 +10015936: 482c ldr r0, [pc, #176] ; (100159e8 ) +10015938: f004 fb9a bl 1001a070 +1001593c: 6833 ldr r3, [r6, #0] +1001593e: f835 2c08 ldrh.w r2, [r5, #-8] +10015942: 1899 adds r1, r3, r2 +10015944: 7908 ldrb r0, [r1, #4] +10015946: bb58 cbnz r0, 100159a0 +10015948: 4e28 ldr r6, [pc, #160] ; (100159ec ) +1001594a: f108 0708 add.w r7, r8, #8 +1001594e: 6830 ldr r0, [r6, #0] +10015950: 443c add r4, r7 +10015952: b2a4 uxth r4, r4 +10015954: 5a9f ldrh r7, [r3, r2] +10015956: 4288 cmp r0, r1 +10015958: eb03 0204 add.w r2, r3, r4 +1001595c: f04f 0100 mov.w r1, #0 +10015960: 8017 strh r7, [r2, #0] +10015962: f8a2 8002 strh.w r8, [r2, #2] +10015966: 7111 strb r1, [r2, #4] +10015968: f825 4c08 strh.w r4, [r5, #-8] +1001596c: bf08 it eq +1001596e: 6032 streq r2, [r6, #0] +10015970: 8812 ldrh r2, [r2, #0] +10015972: f5b2 5fa0 cmp.w r2, #5120 ; 0x1400 +10015976: d001 beq.n 1001597c +10015978: 4413 add r3, r2 +1001597a: 805c strh r4, [r3, #2] +1001597c: 481a ldr r0, [pc, #104] ; (100159e8 ) +1001597e: f004 fb97 bl 1001a0b0 +10015982: 4628 mov r0, r5 +10015984: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10015988: 4e15 ldr r6, [pc, #84] ; (100159e0 ) +1001598a: 240c movs r4, #12 +1001598c: 6833 ldr r3, [r6, #0] +1001598e: 429d cmp r5, r3 +10015990: d2bc bcs.n 1001590c +10015992: f004 fbeb bl 1001a16c +10015996: f004 fbef bl 1001a178 +1001599a: 4628 mov r0, r5 +1001599c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100159a0: f104 0114 add.w r1, r4, #20 +100159a4: 42b9 cmp r1, r7 +100159a6: d8e9 bhi.n 1001597c +100159a8: 4810 ldr r0, [pc, #64] ; (100159ec ) +100159aa: f108 0108 add.w r1, r8, #8 +100159ae: 440c add r4, r1 +100159b0: b2a4 uxth r4, r4 +100159b2: 6806 ldr r6, [r0, #0] +100159b4: 1919 adds r1, r3, r4 +100159b6: 42b1 cmp r1, r6 +100159b8: bf38 it cc +100159ba: 6001 strcc r1, [r0, #0] +100159bc: 2000 movs r0, #0 +100159be: 7108 strb r0, [r1, #4] +100159c0: 531a strh r2, [r3, r4] +100159c2: f8a1 8002 strh.w r8, [r1, #2] +100159c6: f825 4c08 strh.w r4, [r5, #-8] +100159ca: 5b1a ldrh r2, [r3, r4] +100159cc: f5b2 5fa0 cmp.w r2, #5120 ; 0x1400 +100159d0: d1d2 bne.n 10015978 +100159d2: e7d3 b.n 1001597c +100159d4: 2000 movs r0, #0 +100159d6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100159da: 4628 mov r0, r5 +100159dc: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100159e0: 1fff1420 .word 0x1fff1420 +100159e4: 1fff1418 .word 0x1fff1418 +100159e8: 1fff141c .word 0x1fff141c +100159ec: 1fff1414 .word 0x1fff1414 + +100159f0 : +100159f0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100159f4: b398 cbz r0, 10015a5e +100159f6: 3003 adds r0, #3 +100159f8: f64f 77fc movw r7, #65532 ; 0xfffc +100159fc: 4007 ands r7, r0 +100159fe: 2f0b cmp r7, #11 +10015a00: d92f bls.n 10015a62 +10015a02: f5b7 5fa0 cmp.w r7, #5120 ; 0x1400 +10015a06: d829 bhi.n 10015a5c +10015a08: f5c7 55a0 rsb r5, r7, #5120 ; 0x1400 +10015a0c: 4832 ldr r0, [pc, #200] ; (10015ad8 ) +10015a0e: 2100 movs r1, #0 +10015a10: f004 fb2e bl 1001a070 +10015a14: f8df 80c8 ldr.w r8, [pc, #200] ; 10015ae0 +10015a18: f8df c0c8 ldr.w ip, [pc, #200] ; 10015ae4 +10015a1c: f8d8 2000 ldr.w r2, [r8] +10015a20: f8dc e000 ldr.w lr, [ip] +10015a24: ebc2 030e rsb r3, r2, lr +10015a28: b29b uxth r3, r3 +10015a2a: 429d cmp r5, r3 +10015a2c: dc09 bgt.n 10015a42 +10015a2e: e00f b.n 10015a50 +10015a30: 5ad0 ldrh r0, [r2, r3] +10015a32: f1a0 0608 sub.w r6, r0, #8 +10015a36: 1af6 subs r6, r6, r3 +10015a38: 42be cmp r6, r7 +10015a3a: d216 bcs.n 10015a6a +10015a3c: 4603 mov r3, r0 +10015a3e: 42ab cmp r3, r5 +10015a40: da06 bge.n 10015a50 +10015a42: 18d4 adds r4, r2, r3 +10015a44: 7921 ldrb r1, [r4, #4] +10015a46: 2900 cmp r1, #0 +10015a48: d0f2 beq.n 10015a30 +10015a4a: 5ad3 ldrh r3, [r2, r3] +10015a4c: 42ab cmp r3, r5 +10015a4e: dbf8 blt.n 10015a42 +10015a50: 4821 ldr r0, [pc, #132] ; (10015ad8 ) +10015a52: f004 fb2d bl 1001a0b0 +10015a56: 2000 movs r0, #0 +10015a58: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10015a5c: 2000 movs r0, #0 +10015a5e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10015a62: f241 35f4 movw r5, #5108 ; 0x13f4 +10015a66: 270c movs r7, #12 +10015a68: e7d0 b.n 10015a0c +10015a6a: f107 0514 add.w r5, r7, #20 +10015a6e: 42b5 cmp r5, r6 +10015a70: d90a bls.n 10015a88 +10015a72: 2301 movs r3, #1 +10015a74: 7123 strb r3, [r4, #4] +10015a76: 45a6 cmp lr, r4 +10015a78: d018 beq.n 10015aac +10015a7a: 4817 ldr r0, [pc, #92] ; (10015ad8 ) +10015a7c: f004 fb18 bl 1001a0b0 +10015a80: f104 0008 add.w r0, r4, #8 +10015a84: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10015a88: f107 0508 add.w r5, r7, #8 +10015a8c: 441d add r5, r3 +10015a8e: b2ad uxth r5, r5 +10015a90: 1956 adds r6, r2, r5 +10015a92: 7131 strb r1, [r6, #4] +10015a94: 5350 strh r0, [r2, r5] +10015a96: 8073 strh r3, [r6, #2] +10015a98: 8025 strh r5, [r4, #0] +10015a9a: 5b53 ldrh r3, [r2, r5] +10015a9c: 2101 movs r1, #1 +10015a9e: f5b3 5fa0 cmp.w r3, #5120 ; 0x1400 +10015aa2: 7121 strb r1, [r4, #4] +10015aa4: d0e7 beq.n 10015a76 +10015aa6: 4413 add r3, r2 +10015aa8: 805d strh r5, [r3, #2] +10015aaa: e7e4 b.n 10015a76 +10015aac: f89e 3004 ldrb.w r3, [lr, #4] +10015ab0: b17b cbz r3, 10015ad2 +10015ab2: 4b0a ldr r3, [pc, #40] ; (10015adc ) +10015ab4: 681a ldr r2, [r3, #0] +10015ab6: 4596 cmp lr, r2 +10015ab8: d00b beq.n 10015ad2 +10015aba: f8d8 1000 ldr.w r1, [r8] +10015abe: e001 b.n 10015ac4 +10015ac0: 4596 cmp lr, r2 +10015ac2: d006 beq.n 10015ad2 +10015ac4: f8be e000 ldrh.w lr, [lr] +10015ac8: 448e add lr, r1 +10015aca: f89e 3004 ldrb.w r3, [lr, #4] +10015ace: 2b00 cmp r3, #0 +10015ad0: d1f6 bne.n 10015ac0 +10015ad2: f8cc e000 str.w lr, [ip] +10015ad6: e7d0 b.n 10015a7a +10015ad8: 1fff141c .word 0x1fff141c +10015adc: 1fff1418 .word 0x1fff1418 +10015ae0: 1fff1420 .word 0x1fff1420 +10015ae4: 1fff1414 .word 0x1fff1414 + +10015ae8 : +10015ae8: 4b19 ldr r3, [pc, #100] ; (10015b50 ) +10015aea: f8df c068 ldr.w ip, [pc, #104] ; 10015b54 +10015aee: e92d 0ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp} +10015af2: f8df b064 ldr.w fp, [pc, #100] ; 10015b58 +10015af6: f8df 9064 ldr.w r9, [pc, #100] ; 10015b5c +10015afa: 2700 movs r7, #0 +10015afc: f023 0803 bic.w r8, r3, #3 +10015b00: f10c 0a40 add.w sl, ip, #64 ; 0x40 +10015b04: f83b 6007 ldrh.w r6, [fp, r7] +10015b08: 2300 movs r3, #0 +10015b0a: f84c 3b04 str.w r3, [ip], #4 +10015b0e: b1be cbz r6, 10015b40 +10015b10: 461a mov r2, r3 +10015b12: 4618 mov r0, r3 +10015b14: f837 5009 ldrh.w r5, [r7, r9] +10015b18: 4643 mov r3, r8 +10015b1a: e001 b.n 10015b20 +10015b1c: 4618 mov r0, r3 +10015b1e: 4623 mov r3, r4 +10015b20: 3201 adds r2, #1 +10015b22: b291 uxth r1, r2 +10015b24: 428e cmp r6, r1 +10015b26: 6018 str r0, [r3, #0] +10015b28: eb03 0405 add.w r4, r3, r5 +10015b2c: d8f6 bhi.n 10015b1c +10015b2e: 3e01 subs r6, #1 +10015b30: b2b6 uxth r6, r6 +10015b32: fb06 5305 mla r3, r6, r5, r5 +10015b36: fb05 8506 mla r5, r5, r6, r8 +10015b3a: 4498 add r8, r3 +10015b3c: f84c 5c04 str.w r5, [ip, #-4] +10015b40: 45d4 cmp ip, sl +10015b42: f107 0702 add.w r7, r7, #2 +10015b46: d1dd bne.n 10015b04 +10015b48: e8bd 0ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp} +10015b4c: 4770 bx lr +10015b4e: bf00 nop +10015b50: 1fff1427 .word 0x1fff1427 +10015b54: 1fff5534 .word 0x1fff5534 +10015b58: 10047ca0 .word 0x10047ca0 +10015b5c: 10047cc0 .word 0x10047cc0 + +10015b60 : +10015b60: 280f cmp r0, #15 +10015b62: b538 push {r3, r4, r5, lr} +10015b64: 4604 mov r4, r0 +10015b66: d80c bhi.n 10015b82 +10015b68: f004 fb00 bl 1001a16c +10015b6c: 4b06 ldr r3, [pc, #24] ; (10015b88 ) +10015b6e: f853 5024 ldr.w r5, [r3, r4, lsl #2] +10015b72: b115 cbz r5, 10015b7a +10015b74: 682a ldr r2, [r5, #0] +10015b76: f843 2024 str.w r2, [r3, r4, lsl #2] +10015b7a: f004 fafd bl 1001a178 +10015b7e: 4628 mov r0, r5 +10015b80: bd38 pop {r3, r4, r5, pc} +10015b82: 2000 movs r0, #0 +10015b84: bd38 pop {r3, r4, r5, pc} +10015b86: bf00 nop +10015b88: 1fff5534 .word 0x1fff5534 + +10015b8c : +10015b8c: b538 push {r3, r4, r5, lr} +10015b8e: 460c mov r4, r1 +10015b90: 4605 mov r5, r0 +10015b92: b159 cbz r1, 10015bac +10015b94: f004 faea bl 1001a16c +10015b98: 4b05 ldr r3, [pc, #20] ; (10015bb0 ) +10015b9a: f853 2025 ldr.w r2, [r3, r5, lsl #2] +10015b9e: 6022 str r2, [r4, #0] +10015ba0: f843 4025 str.w r4, [r3, r5, lsl #2] +10015ba4: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10015ba8: f004 bae6 b.w 1001a178 +10015bac: bd38 pop {r3, r4, r5, pc} +10015bae: bf00 nop +10015bb0: 1fff5534 .word 0x1fff5534 + +10015bb4 : +10015bb4: 4770 bx lr +10015bb6: bf00 nop + +10015bb8 : +10015bb8: b5f8 push {r3, r4, r5, r6, r7, lr} +10015bba: 460e mov r6, r1 +10015bbc: 4605 mov r5, r0 +10015bbe: 2900 cmp r1, #0 +10015bc0: d02a beq.n 10015c18 +10015bc2: 680c ldr r4, [r1, #0] +10015bc4: 6842 ldr r2, [r0, #4] +10015bc6: 4294 cmp r4, r2 +10015bc8: d024 beq.n 10015c14 +10015bca: 4b15 ldr r3, [pc, #84] ; (10015c20 ) +10015bcc: 6818 ldr r0, [r3, #0] +10015bce: b1a0 cbz r0, 10015bfa +10015bd0: 6804 ldr r4, [r0, #0] +10015bd2: f64f 67a9 movw r7, #65193 ; 0xfea9 +10015bd6: 4294 cmp r4, r2 +10015bd8: d005 beq.n 10015be6 +10015bda: 68c0 ldr r0, [r0, #12] +10015bdc: b160 cbz r0, 10015bf8 +10015bde: 686a ldr r2, [r5, #4] +10015be0: 6804 ldr r4, [r0, #0] +10015be2: 4294 cmp r4, r2 +10015be4: d1f9 bne.n 10015bda +10015be6: b292 uxth r2, r2 +10015be8: 42ba cmp r2, r7 +10015bea: d0f6 beq.n 10015bda +10015bec: 68c4 ldr r4, [r0, #12] +10015bee: f001 f93b bl 10016e68 +10015bf2: 4620 mov r0, r4 +10015bf4: 2800 cmp r0, #0 +10015bf6: d1f2 bne.n 10015bde +10015bf8: 6834 ldr r4, [r6, #0] +10015bfa: 4b0a ldr r3, [pc, #40] ; (10015c24 ) +10015bfc: 681b ldr r3, [r3, #0] +10015bfe: b14b cbz r3, 10015c14 +10015c00: 681a ldr r2, [r3, #0] +10015c02: b122 cbz r2, 10015c0e +10015c04: 6868 ldr r0, [r5, #4] +10015c06: 4282 cmp r2, r0 +10015c08: bf04 itt eq +10015c0a: 601c streq r4, [r3, #0] +10015c0c: 6834 ldreq r4, [r6, #0] +10015c0e: 68db ldr r3, [r3, #12] +10015c10: 2b00 cmp r3, #0 +10015c12: d1f5 bne.n 10015c00 +10015c14: 606c str r4, [r5, #4] +10015c16: bdf8 pop {r3, r4, r5, r6, r7, pc} +10015c18: 460c mov r4, r1 +10015c1a: 606c str r4, [r5, #4] +10015c1c: bdf8 pop {r3, r4, r5, r6, r7, pc} +10015c1e: bf00 nop +10015c20: 100513c4 .word 0x100513c4 +10015c24: 100513c0 .word 0x100513c0 + +10015c28 : +10015c28: b570 push {r4, r5, r6, lr} +10015c2a: 4614 mov r4, r2 +10015c2c: 461e mov r6, r3 +10015c2e: 4605 mov r5, r0 +10015c30: f7ff ffc2 bl 10015bb8 +10015c34: b104 cbz r4, 10015c38 +10015c36: 6824 ldr r4, [r4, #0] +10015c38: 60ac str r4, [r5, #8] +10015c3a: b106 cbz r6, 10015c3e +10015c3c: 6836 ldr r6, [r6, #0] +10015c3e: 60ee str r6, [r5, #12] +10015c40: bd70 pop {r4, r5, r6, pc} +10015c42: bf00 nop + +10015c44 : +10015c44: b5f8 push {r3, r4, r5, r6, r7, lr} +10015c46: 4f1b ldr r7, [pc, #108] ; (10015cb4 ) +10015c48: 4616 mov r6, r2 +10015c4a: 9a06 ldr r2, [sp, #24] +10015c4c: f897 c000 ldrb.w ip, [r7] +10015c50: 61c2 str r2, [r0, #28] +10015c52: 9a08 ldr r2, [sp, #32] +10015c54: 2500 movs r5, #0 +10015c56: f10c 0e01 add.w lr, ip, #1 +10015c5a: 6045 str r5, [r0, #4] +10015c5c: 6085 str r5, [r0, #8] +10015c5e: 60c5 str r5, [r0, #12] +10015c60: f880 5031 strb.w r5, [r0, #49] ; 0x31 +10015c64: 6205 str r5, [r0, #32] +10015c66: 6245 str r5, [r0, #36] ; 0x24 +10015c68: 6385 str r5, [r0, #56] ; 0x38 +10015c6a: f880 c034 strb.w ip, [r0, #52] ; 0x34 +10015c6e: 6102 str r2, [r0, #16] +10015c70: f887 e000 strb.w lr, [r7] +10015c74: 4604 mov r4, r0 +10015c76: 461d mov r5, r3 +10015c78: 9f07 ldr r7, [sp, #28] +10015c7a: f7ff ff9d bl 10015bb8 +10015c7e: b18e cbz r6, 10015ca4 +10015c80: 6833 ldr r3, [r6, #0] +10015c82: 60a3 str r3, [r4, #8] +10015c84: b105 cbz r5, 10015c88 +10015c86: 682d ldr r5, [r5, #0] +10015c88: 60e5 str r5, [r4, #12] +10015c8a: 4620 mov r0, r4 +10015c8c: 47b8 blx r7 +10015c8e: b978 cbnz r0, 10015cb0 +10015c90: 4b09 ldr r3, [pc, #36] ; (10015cb8 ) +10015c92: f994 1031 ldrsb.w r1, [r4, #49] ; 0x31 +10015c96: 681a ldr r2, [r3, #0] +10015c98: 2900 cmp r1, #0 +10015c9a: 6022 str r2, [r4, #0] +10015c9c: 4620 mov r0, r4 +10015c9e: 601c str r4, [r3, #0] +10015ca0: db02 blt.n 10015ca8 +10015ca2: bdf8 pop {r3, r4, r5, r6, r7, pc} +10015ca4: 4633 mov r3, r6 +10015ca6: e7ec b.n 10015c82 +10015ca8: f7fd f820 bl 10012cec +10015cac: 4620 mov r0, r4 +10015cae: bdf8 pop {r3, r4, r5, r6, r7, pc} +10015cb0: 2000 movs r0, #0 +10015cb2: bdf8 pop {r3, r4, r5, r6, r7, pc} +10015cb4: 100513ac .word 0x100513ac +10015cb8: 100513a4 .word 0x100513a4 + +10015cbc : +10015cbc: b101 cbz r1, 10015cc0 +10015cbe: 6809 ldr r1, [r1, #0] +10015cc0: 60c1 str r1, [r0, #12] +10015cc2: 4770 bx lr + +10015cc4 : +10015cc4: b101 cbz r1, 10015cc8 +10015cc6: 6809 ldr r1, [r1, #0] +10015cc8: 6081 str r1, [r0, #8] +10015cca: 4770 bx lr + +10015ccc : +10015ccc: 4b01 ldr r3, [pc, #4] ; (10015cd4 ) +10015cce: 6018 str r0, [r3, #0] +10015cd0: 4770 bx lr +10015cd2: bf00 nop +10015cd4: 100513a8 .word 0x100513a8 + +10015cd8 : +10015cd8: b510 push {r4, lr} +10015cda: f890 3031 ldrb.w r3, [r0, #49] ; 0x31 +10015cde: 4604 mov r4, r0 +10015ce0: 07da lsls r2, r3, #31 +10015ce2: d409 bmi.n 10015cf8 +10015ce4: f043 0201 orr.w r2, r3, #1 +10015ce8: 06d9 lsls r1, r3, #27 +10015cea: f880 2031 strb.w r2, [r0, #49] ; 0x31 +10015cee: d503 bpl.n 10015cf8 +10015cf0: 0699 lsls r1, r3, #26 +10015cf2: d407 bmi.n 10015d04 +10015cf4: 0613 lsls r3, r2, #24 +10015cf6: d400 bmi.n 10015cfa +10015cf8: bd10 pop {r4, pc} +10015cfa: 4620 mov r0, r4 +10015cfc: e8bd 4010 ldmia.w sp!, {r4, lr} +10015d00: f7fd b810 b.w 10012d24 +10015d04: 1d01 adds r1, r0, #4 +10015d06: f003 fd21 bl 1001974c +10015d0a: f894 2031 ldrb.w r2, [r4, #49] ; 0x31 +10015d0e: e7f1 b.n 10015cf4 + +10015d10 : +10015d10: f890 3031 ldrb.w r3, [r0, #49] ; 0x31 +10015d14: 07d9 lsls r1, r3, #31 +10015d16: d505 bpl.n 10015d24 +10015d18: f023 0101 bic.w r1, r3, #1 +10015d1c: 069b lsls r3, r3, #26 +10015d1e: f880 1031 strb.w r1, [r0, #49] ; 0x31 +10015d22: d400 bmi.n 10015d26 +10015d24: 4770 bx lr +10015d26: f003 bc9d b.w 10019664 +10015d2a: bf00 nop + +10015d2c : +10015d2c: b510 push {r4, lr} +10015d2e: f004 fa1d bl 1001a16c +10015d32: 4b0a ldr r3, [pc, #40] ; (10015d5c ) +10015d34: 2200 movs r2, #0 +10015d36: 701a strb r2, [r3, #0] +10015d38: f004 fa1e bl 1001a178 +10015d3c: 4b08 ldr r3, [pc, #32] ; (10015d60 ) +10015d3e: 681c ldr r4, [r3, #0] +10015d40: b914 cbnz r4, 10015d48 +10015d42: e009 b.n 10015d58 +10015d44: 68e4 ldr r4, [r4, #12] +10015d46: b13c cbz r4, 10015d58 +10015d48: 6fa0 ldr r0, [r4, #120] ; 0x78 +10015d4a: 2800 cmp r0, #0 +10015d4c: d0fa beq.n 10015d44 +10015d4e: f000 fc63 bl 10016618 +10015d52: 2300 movs r3, #0 +10015d54: 67a3 str r3, [r4, #120] ; 0x78 +10015d56: bd10 pop {r4, pc} +10015d58: bd10 pop {r4, pc} +10015d5a: bf00 nop +10015d5c: 100513ad .word 0x100513ad +10015d60: 100513c4 .word 0x100513c4 + +10015d64 : +10015d64: b538 push {r3, r4, r5, lr} +10015d66: 4c0c ldr r4, [pc, #48] ; (10015d98 ) +10015d68: f004 fa00 bl 1001a16c +10015d6c: 7825 ldrb r5, [r4, #0] +10015d6e: 2301 movs r3, #1 +10015d70: b2ed uxtb r5, r5 +10015d72: 7023 strb r3, [r4, #0] +10015d74: f004 fa00 bl 1001a178 +10015d78: b105 cbz r5, 10015d7c +10015d7a: bd38 pop {r3, r4, r5, pc} +10015d7c: 4807 ldr r0, [pc, #28] ; (10015d9c ) +10015d7e: 4629 mov r1, r5 +10015d80: 462a mov r2, r5 +10015d82: f7fc fc27 bl 100125d4 +10015d86: 2800 cmp r0, #0 +10015d88: d0f7 beq.n 10015d7a +10015d8a: f004 f9ef bl 1001a16c +10015d8e: 7025 strb r5, [r4, #0] +10015d90: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10015d94: f004 b9f0 b.w 1001a178 +10015d98: 100513ad .word 0x100513ad +10015d9c: 10015d2d .word 0x10015d2d + +10015da0 : +10015da0: b470 push {r4, r5, r6} +10015da2: 9c03 ldr r4, [sp, #12] +10015da4: f8bd 5010 ldrh.w r5, [sp, #16] +10015da8: 2803 cmp r0, #3 +10015daa: d825 bhi.n 10015df8 +10015dac: e8df f000 tbb [pc, r0] +10015db0: 1c1f0219 .word 0x1c1f0219 +10015db4: 2024 movs r0, #36 ; 0x24 +10015db6: 2625 movs r6, #37 ; 0x25 +10015db8: 4408 add r0, r1 +10015dba: 42a8 cmp r0, r5 +10015dbc: f04f 0000 mov.w r0, #0 +10015dc0: dc0d bgt.n 10015dde +10015dc2: 6018 str r0, [r3, #0] +10015dc4: b1b4 cbz r4, 10015df4 +10015dc6: f026 0603 bic.w r6, r6, #3 +10015dca: 4434 add r4, r6 +10015dcc: 605c str r4, [r3, #4] +10015dce: 2001 movs r0, #1 +10015dd0: 2402 movs r4, #2 +10015dd2: 81d8 strh r0, [r3, #14] +10015dd4: 8119 strh r1, [r3, #8] +10015dd6: 8159 strh r1, [r3, #10] +10015dd8: 731a strb r2, [r3, #12] +10015dda: 735c strb r4, [r3, #13] +10015ddc: 4618 mov r0, r3 +10015dde: bc70 pop {r4, r5, r6} +10015de0: 4770 bx lr +10015de2: 2038 movs r0, #56 ; 0x38 +10015de4: 2639 movs r6, #57 ; 0x39 +10015de6: e7e7 b.n 10015db8 +10015de8: 2000 movs r0, #0 +10015dea: 2603 movs r6, #3 +10015dec: e7e4 b.n 10015db8 +10015dee: 2010 movs r0, #16 +10015df0: 2611 movs r6, #17 +10015df2: e7e1 b.n 10015db8 +10015df4: 605c str r4, [r3, #4] +10015df6: e7ea b.n 10015dce +10015df8: 2000 movs r0, #0 +10015dfa: e7f0 b.n 10015dde + +10015dfc : +10015dfc: b410 push {r4} +10015dfe: b1e1 cbz r1, 10015e3a +10015e00: b158 cbz r0, 10015e1a +10015e02: 2900 cmp r1, #0 +10015e04: db1d blt.n 10015e42 +10015e06: b28c uxth r4, r1 +10015e08: 7b03 ldrb r3, [r0, #12] +10015e0a: 6842 ldr r2, [r0, #4] +10015e0c: b143 cbz r3, 10015e20 +10015e0e: 2b03 cmp r3, #3 +10015e10: d006 beq.n 10015e20 +10015e12: 3b01 subs r3, #1 +10015e14: 2b01 cmp r3, #1 +10015e16: d91f bls.n 10015e58 +10015e18: 2001 movs r0, #1 +10015e1a: f85d 4b04 ldr.w r4, [sp], #4 +10015e1e: 4770 bx lr +10015e20: 1a53 subs r3, r2, r1 +10015e22: f100 0410 add.w r4, r0, #16 +10015e26: 42a3 cmp r3, r4 +10015e28: 6043 str r3, [r0, #4] +10015e2a: d310 bcc.n 10015e4e +10015e2c: 8943 ldrh r3, [r0, #10] +10015e2e: 8902 ldrh r2, [r0, #8] +10015e30: b289 uxth r1, r1 +10015e32: 440b add r3, r1 +10015e34: 4411 add r1, r2 +10015e36: 8143 strh r3, [r0, #10] +10015e38: 8101 strh r1, [r0, #8] +10015e3a: 2000 movs r0, #0 +10015e3c: f85d 4b04 ldr.w r4, [sp], #4 +10015e40: 4770 bx lr +10015e42: 424c negs r4, r1 +10015e44: 8943 ldrh r3, [r0, #10] +10015e46: b2a4 uxth r4, r4 +10015e48: 42a3 cmp r3, r4 +10015e4a: d2dd bcs.n 10015e08 +10015e4c: e7e4 b.n 10015e18 +10015e4e: 6042 str r2, [r0, #4] +10015e50: f85d 4b04 ldr.w r4, [sp], #4 +10015e54: 2001 movs r0, #1 +10015e56: 4770 bx lr +10015e58: 2900 cmp r1, #0 +10015e5a: dadd bge.n 10015e18 +10015e5c: 8943 ldrh r3, [r0, #10] +10015e5e: 429c cmp r4, r3 +10015e60: d8da bhi.n 10015e18 +10015e62: 1a52 subs r2, r2, r1 +10015e64: 6042 str r2, [r0, #4] +10015e66: e7e2 b.n 10015e2e + +10015e68 : +10015e68: b570 push {r4, r5, r6, lr} +10015e6a: 4604 mov r4, r0 +10015e6c: 2800 cmp r0, #0 +10015e6e: d02f beq.n 10015ed0 +10015e70: 2600 movs r6, #0 +10015e72: f004 f97b bl 1001a16c +10015e76: 89e5 ldrh r5, [r4, #14] +10015e78: 3d01 subs r5, #1 +10015e7a: b2ad uxth r5, r5 +10015e7c: 81e5 strh r5, [r4, #14] +10015e7e: f004 f97b bl 1001a178 +10015e82: b9cd cbnz r5, 10015eb8 +10015e84: 7b62 ldrb r2, [r4, #13] +10015e86: 7b23 ldrb r3, [r4, #12] +10015e88: f012 0f02 tst.w r2, #2 +10015e8c: 6825 ldr r5, [r4, #0] +10015e8e: f103 32ff add.w r2, r3, #4294967295 +10015e92: 4620 mov r0, r4 +10015e94: d10a bne.n 10015eac +10015e96: 2b03 cmp r3, #3 +10015e98: d015 beq.n 10015ec6 +10015e9a: 2a01 cmp r2, #1 +10015e9c: d90e bls.n 10015ebc +10015e9e: f7ff fcc9 bl 10015834 +10015ea2: 3601 adds r6, #1 +10015ea4: b2f6 uxtb r6, r6 +10015ea6: b13d cbz r5, 10015eb8 +10015ea8: 462c mov r4, r5 +10015eaa: e7e2 b.n 10015e72 +10015eac: 6923 ldr r3, [r4, #16] +10015eae: 3601 adds r6, #1 +10015eb0: 4798 blx r3 +10015eb2: b2f6 uxtb r6, r6 +10015eb4: 2d00 cmp r5, #0 +10015eb6: d1f7 bne.n 10015ea8 +10015eb8: 4630 mov r0, r6 +10015eba: bd70 pop {r4, r5, r6, pc} +10015ebc: 4621 mov r1, r4 +10015ebe: 200e movs r0, #14 +10015ec0: f7ff fe64 bl 10015b8c +10015ec4: e7ed b.n 10015ea2 +10015ec6: 4621 mov r1, r4 +10015ec8: 200f movs r0, #15 +10015eca: f7ff fe5f bl 10015b8c +10015ece: e7e8 b.n 10015ea2 +10015ed0: bd70 pop {r4, r5, r6, pc} +10015ed2: bf00 nop + +10015ed4 : +10015ed4: b5f0 push {r4, r5, r6, r7, lr} +10015ed6: 460c mov r4, r1 +10015ed8: b083 sub sp, #12 +10015eda: 2803 cmp r0, #3 +10015edc: f200 808a bhi.w 10015ff4 +10015ee0: e8df f000 tbb [pc, r0] +10015ee4: 84860282 .word 0x84860282 +10015ee8: 2522 movs r5, #34 ; 0x22 +10015eea: 2a03 cmp r2, #3 +10015eec: f200 8082 bhi.w 10015ff4 +10015ef0: e8df f002 tbb [pc, r2] +10015ef4: 024e4e5c .word 0x024e4e5c +10015ef8: 200f movs r0, #15 +10015efa: f7ff fe31 bl 10015b60 +10015efe: 4606 mov r6, r0 +10015f00: 2800 cmp r0, #0 +10015f02: d079 beq.n 10015ff8 +10015f04: 1ceb adds r3, r5, #3 +10015f06: f023 0303 bic.w r3, r3, #3 +10015f0a: f5c3 73fa rsb r3, r3, #500 ; 0x1f4 +10015f0e: 1947 adds r7, r0, r5 +10015f10: 42a3 cmp r3, r4 +10015f12: bfa8 it ge +10015f14: 4623 movge r3, r4 +10015f16: 2100 movs r1, #0 +10015f18: 3713 adds r7, #19 +10015f1a: 1ae5 subs r5, r4, r3 +10015f1c: f027 0703 bic.w r7, r7, #3 +10015f20: 2003 movs r0, #3 +10015f22: 2201 movs r2, #1 +10015f24: 428d cmp r5, r1 +10015f26: 8134 strh r4, [r6, #8] +10015f28: 8173 strh r3, [r6, #10] +10015f2a: 6077 str r7, [r6, #4] +10015f2c: 7330 strb r0, [r6, #12] +10015f2e: 6031 str r1, [r6, #0] +10015f30: 81f2 strh r2, [r6, #14] +10015f32: dd52 ble.n 10015fda +10015f34: 4637 mov r7, r6 +10015f36: e017 b.n 10015f68 +10015f38: f5b3 7ffa cmp.w r3, #500 ; 0x1f4 +10015f3c: bf38 it cc +10015f3e: 4619 movcc r1, r3 +10015f40: ebc1 0505 rsb r5, r1, r5 +10015f44: bf28 it cs +10015f46: 460a movcs r2, r1 +10015f48: f884 c00c strb.w ip, [r4, #12] +10015f4c: 7360 strb r0, [r4, #13] +10015f4e: 6020 str r0, [r4, #0] +10015f50: f104 0110 add.w r1, r4, #16 +10015f54: 603c str r4, [r7, #0] +10015f56: 2d00 cmp r5, #0 +10015f58: 8123 strh r3, [r4, #8] +10015f5a: f04f 0301 mov.w r3, #1 +10015f5e: 8162 strh r2, [r4, #10] +10015f60: 6061 str r1, [r4, #4] +10015f62: 81e3 strh r3, [r4, #14] +10015f64: dd39 ble.n 10015fda +10015f66: 4627 mov r7, r4 +10015f68: 200f movs r0, #15 +10015f6a: f7ff fdf9 bl 10015b60 +10015f6e: b2ab uxth r3, r5 +10015f70: 4604 mov r4, r0 +10015f72: f04f 0c03 mov.w ip, #3 +10015f76: 2000 movs r0, #0 +10015f78: f44f 71fa mov.w r1, #500 ; 0x1f4 +10015f7c: 461a mov r2, r3 +10015f7e: 2c00 cmp r4, #0 +10015f80: d1da bne.n 10015f38 +10015f82: f7ff feef bl 10015d64 +10015f86: 4630 mov r0, r6 +10015f88: f7ff ff6e bl 10015e68 +10015f8c: 4620 mov r0, r4 +10015f8e: e029 b.n 10015fe4 +10015f90: 200e movs r0, #14 +10015f92: 9201 str r2, [sp, #4] +10015f94: f7ff fde4 bl 10015b60 +10015f98: 9a01 ldr r2, [sp, #4] +10015f9a: 4606 mov r6, r0 +10015f9c: b350 cbz r0, 10015ff4 +10015f9e: 2300 movs r3, #0 +10015fa0: 8104 strh r4, [r0, #8] +10015fa2: 8144 strh r4, [r0, #10] +10015fa4: 7302 strb r2, [r0, #12] +10015fa6: 6043 str r3, [r0, #4] +10015fa8: 6003 str r3, [r0, #0] +10015faa: e016 b.n 10015fda +10015fac: f105 0013 add.w r0, r5, #19 +10015fb0: 1ce3 adds r3, r4, #3 +10015fb2: f023 0303 bic.w r3, r3, #3 +10015fb6: f020 0003 bic.w r0, r0, #3 +10015fba: 4418 add r0, r3 +10015fbc: b280 uxth r0, r0 +10015fbe: f7ff fd17 bl 100159f0 +10015fc2: 4606 mov r6, r0 +10015fc4: b1b0 cbz r0, 10015ff4 +10015fc6: 4405 add r5, r0 +10015fc8: 3513 adds r5, #19 +10015fca: 2300 movs r3, #0 +10015fcc: f025 0503 bic.w r5, r5, #3 +10015fd0: 6045 str r5, [r0, #4] +10015fd2: 8104 strh r4, [r0, #8] +10015fd4: 8144 strh r4, [r0, #10] +10015fd6: 6003 str r3, [r0, #0] +10015fd8: 7303 strb r3, [r0, #12] +10015fda: 2201 movs r2, #1 +10015fdc: 2300 movs r3, #0 +10015fde: 81f2 strh r2, [r6, #14] +10015fe0: 7373 strb r3, [r6, #13] +10015fe2: 4630 mov r0, r6 +10015fe4: b003 add sp, #12 +10015fe6: bdf0 pop {r4, r5, r6, r7, pc} +10015fe8: 2536 movs r5, #54 ; 0x36 +10015fea: e77e b.n 10015eea +10015fec: 2500 movs r5, #0 +10015fee: e77c b.n 10015eea +10015ff0: 250e movs r5, #14 +10015ff2: e77a b.n 10015eea +10015ff4: 2000 movs r0, #0 +10015ff6: e7f5 b.n 10015fe4 +10015ff8: f7ff feb4 bl 10015d64 +10015ffc: 4630 mov r0, r6 +10015ffe: e7f1 b.n 10015fe4 + +10016000 : +10016000: 8902 ldrh r2, [r0, #8] +10016002: b538 push {r3, r4, r5, lr} +10016004: 428a cmp r2, r1 +10016006: 4604 mov r4, r0 +10016008: 460d mov r5, r1 +1001600a: d922 bls.n 10016052 +1001600c: 8943 ldrh r3, [r0, #10] +1001600e: 1a89 subs r1, r1, r2 +10016010: 429d cmp r5, r3 +10016012: d90a bls.n 1001602a +10016014: b289 uxth r1, r1 +10016016: e000 b.n 1001601a +10016018: 8922 ldrh r2, [r4, #8] +1001601a: 440a add r2, r1 +1001601c: 8122 strh r2, [r4, #8] +1001601e: 6824 ldr r4, [r4, #0] +10016020: 1aed subs r5, r5, r3 +10016022: 8963 ldrh r3, [r4, #10] +10016024: b2ad uxth r5, r5 +10016026: 42ab cmp r3, r5 +10016028: d3f6 bcc.n 10016018 +1001602a: 7b22 ldrb r2, [r4, #12] +1001602c: b94a cbnz r2, 10016042 +1001602e: 429d cmp r5, r3 +10016030: d007 beq.n 10016042 +10016032: 6863 ldr r3, [r4, #4] +10016034: 4620 mov r0, r4 +10016036: 1b1b subs r3, r3, r4 +10016038: 18e9 adds r1, r5, r3 +1001603a: b289 uxth r1, r1 +1001603c: f7ff fc56 bl 100158ec +10016040: 4604 mov r4, r0 +10016042: 6820 ldr r0, [r4, #0] +10016044: 8165 strh r5, [r4, #10] +10016046: 8125 strh r5, [r4, #8] +10016048: b108 cbz r0, 1001604e +1001604a: f7ff ff0d bl 10015e68 +1001604e: 2300 movs r3, #0 +10016050: 6023 str r3, [r4, #0] +10016052: bd38 pop {r3, r4, r5, pc} + +10016054 : +10016054: 4603 mov r3, r0 +10016056: b130 cbz r0, 10016066 +10016058: 2000 movs r0, #0 +1001605a: 681b ldr r3, [r3, #0] +1001605c: 3001 adds r0, #1 +1001605e: b2c0 uxtb r0, r0 +10016060: 2b00 cmp r3, #0 +10016062: d1fa bne.n 1001605a +10016064: 4770 bx lr +10016066: 4770 bx lr + +10016068 : +10016068: b510 push {r4, lr} +1001606a: 4604 mov r4, r0 +1001606c: b140 cbz r0, 10016080 +1001606e: f004 f87d bl 1001a16c +10016072: 89e3 ldrh r3, [r4, #14] +10016074: 3301 adds r3, #1 +10016076: 81e3 strh r3, [r4, #14] +10016078: e8bd 4010 ldmia.w sp!, {r4, lr} +1001607c: f004 b87c b.w 1001a178 +10016080: bd10 pop {r4, pc} +10016082: bf00 nop + +10016084 : +10016084: b430 push {r4, r5} +10016086: b188 cbz r0, 100160ac +10016088: b181 cbz r1, 100160ac +1001608a: 6803 ldr r3, [r0, #0] +1001608c: b913 cbnz r3, 10016094 +1001608e: e00f b.n 100160b0 +10016090: 4618 mov r0, r3 +10016092: 4613 mov r3, r2 +10016094: 890d ldrh r5, [r1, #8] +10016096: 8904 ldrh r4, [r0, #8] +10016098: 681a ldr r2, [r3, #0] +1001609a: 442c add r4, r5 +1001609c: 8104 strh r4, [r0, #8] +1001609e: 2a00 cmp r2, #0 +100160a0: d1f6 bne.n 10016090 +100160a2: 8908 ldrh r0, [r1, #8] +100160a4: 891a ldrh r2, [r3, #8] +100160a6: 6019 str r1, [r3, #0] +100160a8: 4402 add r2, r0 +100160aa: 811a strh r2, [r3, #8] +100160ac: bc30 pop {r4, r5} +100160ae: 4770 bx lr +100160b0: 4603 mov r3, r0 +100160b2: e7f6 b.n 100160a2 + +100160b4 : +100160b4: b510 push {r4, lr} +100160b6: 460c mov r4, r1 +100160b8: f7ff ffe4 bl 10016084 +100160bc: 4620 mov r0, r4 +100160be: e8bd 4010 ldmia.w sp!, {r4, lr} +100160c2: f7ff bfd1 b.w 10016068 +100160c6: bf00 nop + +100160c8 : +100160c8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100160cc: 4605 mov r5, r0 +100160ce: 460c mov r4, r1 +100160d0: 2800 cmp r0, #0 +100160d2: d047 beq.n 10016164 +100160d4: 2900 cmp r1, #0 +100160d6: d045 beq.n 10016164 +100160d8: 8902 ldrh r2, [r0, #8] +100160da: 890b ldrh r3, [r1, #8] +100160dc: 429a cmp r2, r3 +100160de: d341 bcc.n 10016164 +100160e0: 2600 movs r6, #0 +100160e2: 4637 mov r7, r6 +100160e4: f8b4 800a ldrh.w r8, [r4, #10] +100160e8: 896b ldrh r3, [r5, #10] +100160ea: ebc6 0808 rsb r8, r6, r8 +100160ee: 1bdb subs r3, r3, r7 +100160f0: 4543 cmp r3, r8 +100160f2: 6861 ldr r1, [r4, #4] +100160f4: 6868 ldr r0, [r5, #4] +100160f6: bfb4 ite lt +100160f8: fa1f f883 uxthlt.w r8, r3 +100160fc: fa1f f888 uxthge.w r8, r8 +10016100: 4438 add r0, r7 +10016102: 4431 add r1, r6 +10016104: 4642 mov r2, r8 +10016106: f02c f82b bl 10042160 +1001610a: 4446 add r6, r8 +1001610c: 8963 ldrh r3, [r4, #10] +1001610e: b2b6 uxth r6, r6 +10016110: 42b3 cmp r3, r6 +10016112: 4447 add r7, r8 +10016114: 896b ldrh r3, [r5, #10] +10016116: b2bf uxth r7, r7 +10016118: bf9c itt ls +1001611a: 6824 ldrls r4, [r4, #0] +1001611c: 2600 movls r6, #0 +1001611e: 42bb cmp r3, r7 +10016120: d00b beq.n 1001613a +10016122: b11c cbz r4, 1001612c +10016124: 8962 ldrh r2, [r4, #10] +10016126: 8923 ldrh r3, [r4, #8] +10016128: 429a cmp r2, r3 +1001612a: d011 beq.n 10016150 +1001612c: 896a ldrh r2, [r5, #10] +1001612e: 892b ldrh r3, [r5, #8] +10016130: 429a cmp r2, r3 +10016132: d006 beq.n 10016142 +10016134: 2c00 cmp r4, #0 +10016136: d1d5 bne.n 100160e4 +10016138: e010 b.n 1001615c +1001613a: 682d ldr r5, [r5, #0] +1001613c: b16d cbz r5, 1001615a +1001613e: 2700 movs r7, #0 +10016140: e7ef b.n 10016122 +10016142: 682b ldr r3, [r5, #0] +10016144: 2b00 cmp r3, #0 +10016146: d0f5 beq.n 10016134 +10016148: 20fa movs r0, #250 ; 0xfa +1001614a: b240 sxtb r0, r0 +1001614c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10016150: 6823 ldr r3, [r4, #0] +10016152: 2b00 cmp r3, #0 +10016154: d0ea beq.n 1001612c +10016156: 20fa movs r0, #250 ; 0xfa +10016158: e7f7 b.n 1001614a +1001615a: b91c cbnz r4, 10016164 +1001615c: 4620 mov r0, r4 +1001615e: b240 sxtb r0, r0 +10016160: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10016164: 20f2 movs r0, #242 ; 0xf2 +10016166: e7fa b.n 1001615e + +10016168 : +10016168: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1001616c: 4604 mov r4, r0 +1001616e: 4688 mov r8, r1 +10016170: 4616 mov r6, r2 +10016172: b348 cbz r0, 100161c8 +10016174: b351 cbz r1, 100161cc +10016176: b362 cbz r2, 100161d2 +10016178: f04f 0900 mov.w r9, #0 +1001617c: 464f mov r7, r9 +1001617e: e006 b.n 1001618e +10016180: 429d cmp r5, r3 +10016182: d809 bhi.n 10016198 +10016184: 1b5b subs r3, r3, r5 +10016186: b29b uxth r3, r3 +10016188: 6824 ldr r4, [r4, #0] +1001618a: b1d6 cbz r6, 100161c2 +1001618c: b1cc cbz r4, 100161c2 +1001618e: eb08 0007 add.w r0, r8, r7 +10016192: 8965 ldrh r5, [r4, #10] +10016194: 2b00 cmp r3, #0 +10016196: d1f3 bne.n 10016180 +10016198: 1aed subs r5, r5, r3 +1001619a: b2ad uxth r5, r5 +1001619c: 42b5 cmp r5, r6 +1001619e: bf28 it cs +100161a0: 4635 movcs r5, r6 +100161a2: 6861 ldr r1, [r4, #4] +100161a4: 1b76 subs r6, r6, r5 +100161a6: 4419 add r1, r3 +100161a8: 462a mov r2, r5 +100161aa: 44a9 add r9, r5 +100161ac: 442f add r7, r5 +100161ae: b2b6 uxth r6, r6 +100161b0: f02b ffd6 bl 10042160 +100161b4: fa1f f989 uxth.w r9, r9 +100161b8: b2bf uxth r7, r7 +100161ba: 2300 movs r3, #0 +100161bc: 6824 ldr r4, [r4, #0] +100161be: 2e00 cmp r6, #0 +100161c0: d1e4 bne.n 1001618c +100161c2: 4648 mov r0, r9 +100161c4: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +100161c8: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +100161cc: 4608 mov r0, r1 +100161ce: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +100161d2: 4610 mov r0, r2 +100161d4: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +100161d8 : +100161d8: b538 push {r3, r4, r5, lr} +100161da: 6803 ldr r3, [r0, #0] +100161dc: 4604 mov r4, r0 +100161de: b173 cbz r3, 100161fe +100161e0: 4608 mov r0, r1 +100161e2: 2200 movs r2, #0 +100161e4: 8921 ldrh r1, [r4, #8] +100161e6: f7ff fe75 bl 10015ed4 +100161ea: 4605 mov r5, r0 +100161ec: b138 cbz r0, 100161fe +100161ee: 4621 mov r1, r4 +100161f0: f7ff ff6a bl 100160c8 +100161f4: 4620 mov r0, r4 +100161f6: f7ff fe37 bl 10015e68 +100161fa: 4628 mov r0, r5 +100161fc: bd38 pop {r3, r4, r5, pc} +100161fe: 4620 mov r0, r4 +10016200: bd38 pop {r3, r4, r5, pc} +10016202: bf00 nop + +10016204 : +10016204: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10016208: f8df 8068 ldr.w r8, [pc, #104] ; 10016274 +1001620c: 6843 ldr r3, [r0, #4] +1001620e: f8d8 4000 ldr.w r4, [r8] +10016212: 4682 mov sl, r0 +10016214: 7a5e ldrb r6, [r3, #9] +10016216: b33c cbz r4, 10016268 +10016218: f8df 905c ldr.w r9, [pc, #92] ; 10016278 +1001621c: 2500 movs r5, #0 +1001621e: e003 b.n 10016228 +10016220: 68e3 ldr r3, [r4, #12] +10016222: 4625 mov r5, r4 +10016224: b303 cbz r3, 10016268 +10016226: 461c mov r4, r3 +10016228: 7c23 ldrb r3, [r4, #16] +1001622a: 42b3 cmp r3, r6 +1001622c: d1f8 bne.n 10016220 +1001622e: 6820 ldr r0, [r4, #0] +10016230: 4621 mov r1, r4 +10016232: 4652 mov r2, sl +10016234: 4b0e ldr r3, [pc, #56] ; (10016270 ) +10016236: b118 cbz r0, 10016240 +10016238: f8d9 7000 ldr.w r7, [r9] +1001623c: 42b8 cmp r0, r7 +1001623e: d1ef bne.n 10016220 +10016240: f8d4 c014 ldr.w ip, [r4, #20] +10016244: f1bc 0f00 cmp.w ip, #0 +10016248: d0ea beq.n 10016220 +1001624a: 69a0 ldr r0, [r4, #24] +1001624c: 47e0 blx ip +1001624e: 2800 cmp r0, #0 +10016250: d0e6 beq.n 10016220 +10016252: b135 cbz r5, 10016262 +10016254: 68e3 ldr r3, [r4, #12] +10016256: f8d8 2000 ldr.w r2, [r8] +1001625a: 60eb str r3, [r5, #12] +1001625c: f8c8 4000 str.w r4, [r8] +10016260: 60e2 str r2, [r4, #12] +10016262: 2001 movs r0, #1 +10016264: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10016268: 2000 movs r0, #0 +1001626a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1001626e: bf00 nop +10016270: 10050cc8 .word 0x10050cc8 +10016274: 100513b0 .word 0x100513b0 +10016278: 10050ccc .word 0x10050ccc + +1001627c : +1001627c: b101 cbz r1, 10016280 +1001627e: 6809 ldr r1, [r1, #0] +10016280: 6001 str r1, [r0, #0] +10016282: 2000 movs r0, #0 +10016284: 4770 bx lr +10016286: bf00 nop + +10016288 : +10016288: b101 cbz r1, 1001628c +1001628a: 6809 ldr r1, [r1, #0] +1001628c: 6041 str r1, [r0, #4] +1001628e: 2000 movs r0, #0 +10016290: 4770 bx lr +10016292: bf00 nop + +10016294 : +10016294: 6141 str r1, [r0, #20] +10016296: 6182 str r2, [r0, #24] +10016298: 4770 bx lr +1001629a: bf00 nop + +1001629c : +1001629c: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100162a0: 460d mov r5, r1 +100162a2: b084 sub sp, #16 +100162a4: 4604 mov r4, r0 +100162a6: 2114 movs r1, #20 +100162a8: 4628 mov r0, r5 +100162aa: 4690 mov r8, r2 +100162ac: f7ff fda6 bl 10015dfc +100162b0: 2800 cmp r0, #0 +100162b2: d02b beq.n 1001630c +100162b4: 2100 movs r1, #0 +100162b6: 460a mov r2, r1 +100162b8: 2001 movs r0, #1 +100162ba: f7ff fe0b bl 10015ed4 +100162be: 4607 mov r7, r0 +100162c0: 2800 cmp r0, #0 +100162c2: d03e beq.n 10016342 +100162c4: 892b ldrh r3, [r5, #8] +100162c6: 2b00 cmp r3, #0 +100162c8: d137 bne.n 1001633a +100162ca: 4640 mov r0, r8 +100162cc: f7fc ff66 bl 1001319c +100162d0: 4606 mov r6, r0 +100162d2: b340 cbz r0, 10016326 +100162d4: 4621 mov r1, r4 +100162d6: b10c cbz r4, 100162dc +100162d8: 6823 ldr r3, [r4, #0] +100162da: b903 cbnz r3, 100162de +100162dc: 1d31 adds r1, r6, #4 +100162de: 7c20 ldrb r0, [r4, #16] +100162e0: f894 e009 ldrb.w lr, [r4, #9] +100162e4: 7aa3 ldrb r3, [r4, #10] +100162e6: 4642 mov r2, r8 +100162e8: 9001 str r0, [sp, #4] +100162ea: 9602 str r6, [sp, #8] +100162ec: f8cd e000 str.w lr, [sp] +100162f0: 4638 mov r0, r7 +100162f2: f7fd f92d bl 10013550 +100162f6: 42af cmp r7, r5 +100162f8: 4604 mov r4, r0 +100162fa: d003 beq.n 10016304 +100162fc: 4638 mov r0, r7 +100162fe: f7ff fdb3 bl 10015e68 +10016302: 4620 mov r0, r4 +10016304: b240 sxtb r0, r0 +10016306: b004 add sp, #16 +10016308: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001630c: 4628 mov r0, r5 +1001630e: f06f 0113 mvn.w r1, #19 +10016312: f7ff fd73 bl 10015dfc +10016316: b9a0 cbnz r0, 10016342 +10016318: 4640 mov r0, r8 +1001631a: f7fc ff3f bl 1001319c +1001631e: 4606 mov r6, r0 +10016320: b130 cbz r0, 10016330 +10016322: 462f mov r7, r5 +10016324: e7d6 b.n 100162d4 +10016326: 42bd cmp r5, r7 +10016328: d002 beq.n 10016330 +1001632a: 4638 mov r0, r7 +1001632c: f7ff fd9c bl 10015e68 +10016330: 20fc movs r0, #252 ; 0xfc +10016332: b240 sxtb r0, r0 +10016334: b004 add sp, #16 +10016336: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001633a: 4629 mov r1, r5 +1001633c: f7ff feba bl 100160b4 +10016340: e7c3 b.n 100162ca +10016342: 20ff movs r0, #255 ; 0xff +10016344: e7de b.n 10016304 +10016346: bf00 nop + +10016348 : +10016348: 1d02 adds r2, r0, #4 +1001634a: f7ff bfa7 b.w 1001629c +1001634e: bf00 nop + +10016350 : +10016350: 4b0c ldr r3, [pc, #48] ; (10016384 ) +10016352: 4601 mov r1, r0 +10016354: 681a ldr r2, [r3, #0] +10016356: 4282 cmp r2, r0 +10016358: d00f beq.n 1001637a +1001635a: b91a cbnz r2, 10016364 +1001635c: e005 b.n 1001636a +1001635e: 4299 cmp r1, r3 +10016360: d006 beq.n 10016370 +10016362: 461a mov r2, r3 +10016364: 68d3 ldr r3, [r2, #12] +10016366: 2b00 cmp r3, #0 +10016368: d1f9 bne.n 1001635e +1001636a: 2000 movs r0, #0 +1001636c: f7ff bc0e b.w 10015b8c +10016370: 68cb ldr r3, [r1, #12] +10016372: 60d3 str r3, [r2, #12] +10016374: 2b00 cmp r3, #0 +10016376: d1f4 bne.n 10016362 +10016378: e7f7 b.n 1001636a +1001637a: 68c2 ldr r2, [r0, #12] +1001637c: 2000 movs r0, #0 +1001637e: 601a str r2, [r3, #0] +10016380: f7ff bc04 b.w 10015b8c +10016384: 100513b0 .word 0x100513b0 + +10016388 : +10016388: b538 push {r3, r4, r5, lr} +1001638a: 4605 mov r5, r0 +1001638c: 2000 movs r0, #0 +1001638e: f7ff fbe7 bl 10015b60 +10016392: 4604 mov r4, r0 +10016394: b150 cbz r0, 100163ac +10016396: 2100 movs r1, #0 +10016398: 221c movs r2, #28 +1001639a: f02b fee7 bl 1004216c +1001639e: 4b04 ldr r3, [pc, #16] ; (100163b0 ) +100163a0: 21ff movs r1, #255 ; 0xff +100163a2: 681a ldr r2, [r3, #0] +100163a4: 7425 strb r5, [r4, #16] +100163a6: 60e2 str r2, [r4, #12] +100163a8: 601c str r4, [r3, #0] +100163aa: 72a1 strb r1, [r4, #10] +100163ac: 4620 mov r0, r4 +100163ae: bd38 pop {r3, r4, r5, pc} +100163b0: 100513b0 .word 0x100513b0 + +100163b4 : +100163b4: f06f 0009 mvn.w r0, #9 +100163b8: 4770 bx lr +100163ba: bf00 nop + +100163bc : +100163bc: b4f0 push {r4, r5, r6, r7} +100163be: 4e12 ldr r6, [pc, #72] ; (10016408 ) +100163c0: 4f12 ldr r7, [pc, #72] ; (1001640c ) +100163c2: 8830 ldrh r0, [r6, #0] +100163c4: f44f 4480 mov.w r4, #16384 ; 0x4000 +100163c8: f64f 75ff movw r5, #65535 ; 0xffff +100163cc: 42a8 cmp r0, r5 +100163ce: bf18 it ne +100163d0: 3001 addne r0, #1 +100163d2: 490f ldr r1, [pc, #60] ; (10016410 ) +100163d4: bf14 ite ne +100163d6: b280 uxthne r0, r0 +100163d8: f44f 4040 moveq.w r0, #49152 ; 0xc000 +100163dc: f851 3f04 ldr.w r3, [r1, #4]! +100163e0: 681b ldr r3, [r3, #0] +100163e2: b913 cbnz r3, 100163ea +100163e4: e00b b.n 100163fe +100163e6: 68db ldr r3, [r3, #12] +100163e8: b14b cbz r3, 100163fe +100163ea: 8bda ldrh r2, [r3, #30] +100163ec: 4282 cmp r2, r0 +100163ee: d1fa bne.n 100163e6 +100163f0: 3c01 subs r4, #1 +100163f2: b2a4 uxth r4, r4 +100163f4: 2c00 cmp r4, #0 +100163f6: d1e9 bne.n 100163cc +100163f8: 8030 strh r0, [r6, #0] +100163fa: 4620 mov r0, r4 +100163fc: e002 b.n 10016404 +100163fe: 42b9 cmp r1, r7 +10016400: d1ec bne.n 100163dc +10016402: 8030 strh r0, [r6, #0] +10016404: bcf0 pop {r4, r5, r6, r7} +10016406: 4770 bx lr +10016408: 1004d800 .word 0x1004d800 +1001640c: 10047cec .word 0x10047cec +10016410: 10047cdc .word 0x10047cdc + +10016414 : +10016414: 4770 bx lr +10016416: bf00 nop + +10016418 : +10016418: 6983 ldr r3, [r0, #24] +1001641a: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001641e: 4607 mov r7, r0 +10016420: 460e mov r6, r1 +10016422: 2b00 cmp r3, #0 +10016424: d13f bne.n 100164a6 +10016426: 7a03 ldrb r3, [r0, #8] +10016428: f013 0f04 tst.w r3, #4 +1001642c: bf14 ite ne +1001642e: f04f 0803 movne.w r8, #3 +10016432: f04f 0804 moveq.w r8, #4 +10016436: 2a00 cmp r2, #0 +10016438: d02e beq.n 10016498 +1001643a: 481c ldr r0, [pc, #112] ; (100164ac ) +1001643c: f04f 0c00 mov.w ip, #0 +10016440: f850 3f04 ldr.w r3, [r0, #4]! +10016444: 681b ldr r3, [r3, #0] +10016446: b913 cbnz r3, 1001644e +10016448: e015 b.n 10016476 +1001644a: 68db ldr r3, [r3, #12] +1001644c: b19b cbz r3, 10016476 +1001644e: 8bdc ldrh r4, [r3, #30] +10016450: 4294 cmp r4, r2 +10016452: d1fa bne.n 1001644a +10016454: 7a3c ldrb r4, [r7, #8] +10016456: 0764 lsls r4, r4, #29 +10016458: d502 bpl.n 10016460 +1001645a: 7a19 ldrb r1, [r3, #8] +1001645c: 0749 lsls r1, r1, #29 +1001645e: d4f4 bmi.n 1001644a +10016460: 681c ldr r4, [r3, #0] +10016462: b124 cbz r4, 1001646e +10016464: b11e cbz r6, 1001646e +10016466: 6835 ldr r5, [r6, #0] +10016468: b10d cbz r5, 1001646e +1001646a: 42ac cmp r4, r5 +1001646c: d1ed bne.n 1001644a +1001646e: 20f8 movs r0, #248 ; 0xf8 +10016470: b240 sxtb r0, r0 +10016472: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10016476: f10c 0c01 add.w ip, ip, #1 +1001647a: 45e0 cmp r8, ip +1001647c: dce0 bgt.n 10016440 +1001647e: b116 cbz r6, 10016486 +10016480: 6833 ldr r3, [r6, #0] +10016482: b103 cbz r3, 10016486 +10016484: 603b str r3, [r7, #0] +10016486: 4b0a ldr r3, [pc, #40] ; (100164b0 ) +10016488: 83fa strh r2, [r7, #30] +1001648a: 681a ldr r2, [r3, #0] +1001648c: 601f str r7, [r3, #0] +1001648e: 60fa str r2, [r7, #12] +10016490: f7ff f874 bl 1001557c +10016494: 2000 movs r0, #0 +10016496: e7eb b.n 10016470 +10016498: f7ff ff90 bl 100163bc +1001649c: 4602 mov r2, r0 +1001649e: 2800 cmp r0, #0 +100164a0: d1cb bne.n 1001643a +100164a2: 20fe movs r0, #254 ; 0xfe +100164a4: e7e4 b.n 10016470 +100164a6: 20fa movs r0, #250 ; 0xfa +100164a8: e7e2 b.n 10016470 +100164aa: bf00 nop +100164ac: 10047cdc .word 0x10047cdc +100164b0: 100513d4 .word 0x100513d4 + +100164b4 : +100164b4: b538 push {r3, r4, r5, lr} +100164b6: 6983 ldr r3, [r0, #24] +100164b8: 4604 mov r4, r0 +100164ba: b983 cbnz r3, 100164de +100164bc: 7a03 ldrb r3, [r0, #8] +100164be: 075b lsls r3, r3, #29 +100164c0: d50f bpl.n 100164e2 +100164c2: 4b2b ldr r3, [pc, #172] ; (10016570 ) +100164c4: 681b ldr r3, [r3, #0] +100164c6: b163 cbz r3, 100164e2 +100164c8: 8bc1 ldrh r1, [r0, #30] +100164ca: e001 b.n 100164d0 +100164cc: 68db ldr r3, [r3, #12] +100164ce: b143 cbz r3, 100164e2 +100164d0: 8bda ldrh r2, [r3, #30] +100164d2: 428a cmp r2, r1 +100164d4: d1fa bne.n 100164cc +100164d6: 6818 ldr r0, [r3, #0] +100164d8: 6822 ldr r2, [r4, #0] +100164da: 4290 cmp r0, r2 +100164dc: d1f6 bne.n 100164cc +100164de: 2000 movs r0, #0 +100164e0: bd38 pop {r3, r4, r5, pc} +100164e2: 2003 movs r0, #3 +100164e4: f7ff fb3c bl 10015b60 +100164e8: 4605 mov r5, r0 +100164ea: 2800 cmp r0, #0 +100164ec: d0f7 beq.n 100164de +100164ee: 6923 ldr r3, [r4, #16] +100164f0: 8be1 ldrh r1, [r4, #30] +100164f2: 2201 movs r2, #1 +100164f4: 6182 str r2, [r0, #24] +100164f6: 6103 str r3, [r0, #16] +100164f8: 83c1 strh r1, [r0, #30] +100164fa: 7f23 ldrb r3, [r4, #28] +100164fc: 7703 strb r3, [r0, #28] +100164fe: 7a23 ldrb r3, [r4, #8] +10016500: f043 0302 orr.w r3, r3, #2 +10016504: 7203 strb r3, [r0, #8] +10016506: 7aa3 ldrb r3, [r4, #10] +10016508: 7283 strb r3, [r0, #10] +1001650a: 7a63 ldrb r3, [r4, #9] +1001650c: 7243 strb r3, [r0, #9] +1001650e: 6823 ldr r3, [r4, #0] +10016510: 8be2 ldrh r2, [r4, #30] +10016512: 6003 str r3, [r0, #0] +10016514: b19a cbz r2, 1001653e +10016516: 4b17 ldr r3, [pc, #92] ; (10016574 ) +10016518: 681a ldr r2, [r3, #0] +1001651a: 42a2 cmp r2, r4 +1001651c: d025 beq.n 1001656a +1001651e: 4916 ldr r1, [pc, #88] ; (10016578 ) +10016520: 600a str r2, [r1, #0] +10016522: b152 cbz r2, 1001653a +10016524: 68d3 ldr r3, [r2, #12] +10016526: 42a3 cmp r3, r4 +10016528: d01d beq.n 10016566 +1001652a: b12b cbz r3, 10016538 +1001652c: 68da ldr r2, [r3, #12] +1001652e: 42a2 cmp r2, r4 +10016530: d013 beq.n 1001655a +10016532: 4613 mov r3, r2 +10016534: 2b00 cmp r3, #0 +10016536: d1f9 bne.n 1001652c +10016538: 600b str r3, [r1, #0] +1001653a: 2300 movs r3, #0 +1001653c: 60e3 str r3, [r4, #12] +1001653e: 4621 mov r1, r4 +10016540: 2002 movs r0, #2 +10016542: f7ff fb23 bl 10015b8c +10016546: 4b0a ldr r3, [pc, #40] ; (10016570 ) +10016548: 490c ldr r1, [pc, #48] ; (1001657c ) +1001654a: 681a ldr r2, [r3, #0] +1001654c: 6169 str r1, [r5, #20] +1001654e: 60ea str r2, [r5, #12] +10016550: 601d str r5, [r3, #0] +10016552: f7ff f813 bl 1001557c +10016556: 4628 mov r0, r5 +10016558: bd38 pop {r3, r4, r5, pc} +1001655a: 600b str r3, [r1, #0] +1001655c: 68e1 ldr r1, [r4, #12] +1001655e: 60d9 str r1, [r3, #12] +10016560: 2300 movs r3, #0 +10016562: 60e3 str r3, [r4, #12] +10016564: e7eb b.n 1001653e +10016566: 4613 mov r3, r2 +10016568: e7f8 b.n 1001655c +1001656a: 68e2 ldr r2, [r4, #12] +1001656c: 601a str r2, [r3, #0] +1001656e: e7e4 b.n 1001653a +10016570: 100513c0 .word 0x100513c0 +10016574: 100513d4 .word 0x100513d4 +10016578: 100513d0 .word 0x100513d0 +1001657c: 100163b5 .word 0x100163b5 + +10016580 : +10016580: b470 push {r4, r5, r6} +10016582: 8e02 ldrh r2, [r0, #48] ; 0x30 +10016584: 6b44 ldr r4, [r0, #52] ; 0x34 +10016586: 6ac1 ldr r1, [r0, #44] ; 0x2c +10016588: 8f46 ldrh r6, [r0, #58] ; 0x3a +1001658a: 4603 mov r3, r0 +1001658c: f640 3568 movw r5, #2920 ; 0xb68 +10016590: 1b10 subs r0, r2, r4 +10016592: 42ae cmp r6, r5 +10016594: bf38 it cc +10016596: 4635 movcc r5, r6 +10016598: 4408 add r0, r1 +1001659a: 1b45 subs r5, r0, r5 +1001659c: 2d00 cmp r5, #0 +1001659e: db02 blt.n 100165a6 +100165a0: bc70 pop {r4, r5, r6} +100165a2: 865a strh r2, [r3, #50] ; 0x32 +100165a4: 4770 bx lr +100165a6: 1b0a subs r2, r1, r4 +100165a8: 2a00 cmp r2, #0 +100165aa: dd03 ble.n 100165b4 +100165ac: bc70 pop {r4, r5, r6} +100165ae: 2000 movs r0, #0 +100165b0: 8658 strh r0, [r3, #50] ; 0x32 +100165b2: 4770 bx lr +100165b4: 1a61 subs r1, r4, r1 +100165b6: 2000 movs r0, #0 +100165b8: 8659 strh r1, [r3, #50] ; 0x32 +100165ba: bc70 pop {r4, r5, r6} +100165bc: 4770 bx lr +100165be: bf00 nop + +100165c0 : +100165c0: 8e02 ldrh r2, [r0, #48] ; 0x30 +100165c2: f241 63d0 movw r3, #5840 ; 0x16d0 +100165c6: 4411 add r1, r2 +100165c8: b289 uxth r1, r1 +100165ca: 4299 cmp r1, r3 +100165cc: b510 push {r4, lr} +100165ce: bf8c ite hi +100165d0: 8603 strhhi r3, [r0, #48] ; 0x30 +100165d2: 8601 strhls r1, [r0, #48] ; 0x30 +100165d4: 4604 mov r4, r0 +100165d6: f7ff ffd3 bl 10016580 +100165da: f240 53b3 movw r3, #1459 ; 0x5b3 +100165de: 4298 cmp r0, r3 +100165e0: dc00 bgt.n 100165e4 +100165e2: bd10 pop {r4, pc} +100165e4: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +100165e8: 4620 mov r0, r4 +100165ea: f043 0302 orr.w r3, r3, #2 +100165ee: f884 3022 strb.w r3, [r4, #34] ; 0x22 +100165f2: e8bd 4010 ldmia.w sp!, {r4, lr} +100165f6: f002 ba6d b.w 10018ad4 +100165fa: bf00 nop + +100165fc : +100165fc: b510 push {r4, lr} +100165fe: 4604 mov r4, r0 +10016600: b148 cbz r0, 10016616 +10016602: 6840 ldr r0, [r0, #4] +10016604: b108 cbz r0, 1001660a +10016606: f7ff fc2f bl 10015e68 +1001660a: 4621 mov r1, r4 +1001660c: 2004 movs r0, #4 +1001660e: e8bd 4010 ldmia.w sp!, {r4, lr} +10016612: f7ff babb b.w 10015b8c +10016616: bd10 pop {r4, pc} + +10016618 : +10016618: b510 push {r4, lr} +1001661a: b908 cbnz r0, 10016620 +1001661c: e005 b.n 1001662a +1001661e: 4620 mov r0, r4 +10016620: 6804 ldr r4, [r0, #0] +10016622: f7ff ffeb bl 100165fc +10016626: 2c00 cmp r4, #0 +10016628: d1f9 bne.n 1001661e +1001662a: bd10 pop {r4, pc} + +1001662c : +1001662c: b538 push {r3, r4, r5, lr} +1001662e: 4605 mov r5, r0 +10016630: 2004 movs r0, #4 +10016632: f7ff fa95 bl 10015b60 +10016636: 4604 mov r4, r0 +10016638: b130 cbz r0, 10016648 +1001663a: 4629 mov r1, r5 +1001663c: 2214 movs r2, #20 +1001663e: f02b fd8f bl 10042160 +10016642: 6860 ldr r0, [r4, #4] +10016644: f7ff fd10 bl 10016068 +10016648: 4620 mov r0, r4 +1001664a: bd38 pop {r3, r4, r5, pc} + +1001664c : +1001664c: 6101 str r1, [r0, #16] +1001664e: 4770 bx lr + +10016650 : +10016650: f8c0 1084 str.w r1, [r0, #132] ; 0x84 +10016654: 4770 bx lr +10016656: bf00 nop + +10016658 : +10016658: f8c0 1080 str.w r1, [r0, #128] ; 0x80 +1001665c: 4770 bx lr +1001665e: bf00 nop + +10016660 : +10016660: f8c0 1090 str.w r1, [r0, #144] ; 0x90 +10016664: 4770 bx lr +10016666: bf00 nop + +10016668 : +10016668: 6141 str r1, [r0, #20] +1001666a: 4770 bx lr + +1001666c : +1001666c: f8c0 108c str.w r1, [r0, #140] ; 0x8c +10016670: f880 2024 strb.w r2, [r0, #36] ; 0x24 +10016674: 4770 bx lr +10016676: bf00 nop + +10016678 : +10016678: b538 push {r3, r4, r5, lr} +1001667a: 6983 ldr r3, [r0, #24] +1001667c: 4605 mov r5, r0 +1001667e: 2b01 cmp r3, #1 +10016680: d92d bls.n 100166de +10016682: 2b0a cmp r3, #10 +10016684: d02b beq.n 100166de +10016686: 6fc0 ldr r0, [r0, #124] ; 0x7c +10016688: b118 cbz r0, 10016692 +1001668a: f7ff fbed bl 10015e68 +1001668e: 2300 movs r3, #0 +10016690: 67eb str r3, [r5, #124] ; 0x7c +10016692: 6fa8 ldr r0, [r5, #120] ; 0x78 +10016694: b908 cbnz r0, 1001669a +10016696: e005 b.n 100166a4 +10016698: 4620 mov r0, r4 +1001669a: 6804 ldr r4, [r0, #0] +1001669c: f7ff ffae bl 100165fc +100166a0: 2c00 cmp r4, #0 +100166a2: d1f9 bne.n 10016698 +100166a4: 6f28 ldr r0, [r5, #112] ; 0x70 +100166a6: 2200 movs r2, #0 +100166a8: f64f 73ff movw r3, #65535 ; 0xffff +100166ac: 67aa str r2, [r5, #120] ; 0x78 +100166ae: 872b strh r3, [r5, #56] ; 0x38 +100166b0: b908 cbnz r0, 100166b6 +100166b2: e005 b.n 100166c0 +100166b4: 4620 mov r0, r4 +100166b6: 6804 ldr r4, [r0, #0] +100166b8: f7ff ffa0 bl 100165fc +100166bc: 2c00 cmp r4, #0 +100166be: d1f9 bne.n 100166b4 +100166c0: 6f68 ldr r0, [r5, #116] ; 0x74 +100166c2: b908 cbnz r0, 100166c8 +100166c4: e005 b.n 100166d2 +100166c6: 4620 mov r0, r4 +100166c8: 6804 ldr r4, [r0, #0] +100166ca: f7ff ff97 bl 100165fc +100166ce: 2c00 cmp r4, #0 +100166d0: d1f9 bne.n 100166c6 +100166d2: 2300 movs r3, #0 +100166d4: 672b str r3, [r5, #112] ; 0x70 +100166d6: 676b str r3, [r5, #116] ; 0x74 +100166d8: f8a5 306e strh.w r3, [r5, #110] ; 0x6e +100166dc: bd38 pop {r3, r4, r5, pc} +100166de: bd38 pop {r3, r4, r5, pc} + +100166e0 : +100166e0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100166e4: 4dbd ldr r5, [pc, #756] ; (100169dc ) +100166e6: 4ebe ldr r6, [pc, #760] ; (100169e0 ) +100166e8: 682b ldr r3, [r5, #0] +100166ea: 7832 ldrb r2, [r6, #0] +100166ec: 3301 adds r3, #1 +100166ee: 3201 adds r2, #1 +100166f0: f8df 92fc ldr.w r9, [pc, #764] ; 100169f0 +100166f4: b083 sub sp, #12 +100166f6: 602b str r3, [r5, #0] +100166f8: 7032 strb r2, [r6, #0] +100166fa: 48ba ldr r0, [pc, #744] ; (100169e4 ) +100166fc: 6804 ldr r4, [r0, #0] +100166fe: 2c00 cmp r4, #0 +10016700: f000 8095 beq.w 1001682e +10016704: 7832 ldrb r2, [r6, #0] +10016706: f894 3025 ldrb.w r3, [r4, #37] ; 0x25 +1001670a: f04f 0800 mov.w r8, #0 +1001670e: 4293 cmp r3, r2 +10016710: f000 8088 beq.w 10016824 +10016714: 69a3 ldr r3, [r4, #24] +10016716: f884 2025 strb.w r2, [r4, #37] ; 0x25 +1001671a: 2b02 cmp r3, #2 +1001671c: f894 204a ldrb.w r2, [r4, #74] ; 0x4a +10016720: f000 8123 beq.w 1001696a +10016724: 2a0c cmp r2, #12 +10016726: f000 8125 beq.w 10016974 +1001672a: f894 10a1 ldrb.w r1, [r4, #161] ; 0xa1 +1001672e: 2900 cmp r1, #0 +10016730: f000 80c7 beq.w 100168c2 +10016734: 48ac ldr r0, [pc, #688] ; (100169e8 ) +10016736: f894 20a0 ldrb.w r2, [r4, #160] ; 0xa0 +1001673a: 4408 add r0, r1 +1001673c: 3201 adds r2, #1 +1001673e: f810 0c01 ldrb.w r0, [r0, #-1] +10016742: b2d2 uxtb r2, r2 +10016744: 4290 cmp r0, r2 +10016746: f884 20a0 strb.w r2, [r4, #160] ; 0xa0 +1001674a: f200 8103 bhi.w 10016954 +1001674e: 2906 cmp r1, #6 +10016750: f04f 0300 mov.w r3, #0 +10016754: bf98 it ls +10016756: 3101 addls r1, #1 +10016758: f884 30a0 strb.w r3, [r4, #160] ; 0xa0 +1001675c: bf98 it ls +1001675e: f884 10a1 strbls.w r1, [r4, #161] ; 0xa1 +10016762: 4620 mov r0, r4 +10016764: f002 fbfc bl 10018f60 +10016768: 69a3 ldr r3, [r4, #24] +1001676a: 2700 movs r7, #0 +1001676c: 2b06 cmp r3, #6 +1001676e: f000 80e3 beq.w 10016938 +10016772: 7a22 ldrb r2, [r4, #8] +10016774: f002 0208 and.w r2, r2, #8 +10016778: f002 0aff and.w sl, r2, #255 ; 0xff +1001677c: b142 cbz r2, 10016790 +1001677e: 1f1a subs r2, r3, #4 +10016780: 2a01 cmp r2, #1 +10016782: f240 80f9 bls.w 10016978 +10016786: 2b07 cmp r3, #7 +10016788: f000 80f6 beq.w 10016978 +1001678c: f04f 0a00 mov.w sl, #0 +10016790: 6fa0 ldr r0, [r4, #120] ; 0x78 +10016792: b1a0 cbz r0, 100167be +10016794: 6829 ldr r1, [r5, #0] +10016796: 6aa2 ldr r2, [r4, #40] ; 0x28 +10016798: f9b4 3048 ldrsh.w r3, [r4, #72] ; 0x48 +1001679c: 1a8a subs r2, r1, r2 +1001679e: eb03 0343 add.w r3, r3, r3, lsl #1 +100167a2: ebb2 0f43 cmp.w r2, r3, lsl #1 +100167a6: d30a bcc.n 100167be +100167a8: 46a3 mov fp, r4 +100167aa: e000 b.n 100167ae +100167ac: 4620 mov r0, r4 +100167ae: 6804 ldr r4, [r0, #0] +100167b0: f7ff ff24 bl 100165fc +100167b4: 2c00 cmp r4, #0 +100167b6: d1f9 bne.n 100167ac +100167b8: 4623 mov r3, r4 +100167ba: 465c mov r4, fp +100167bc: 67a3 str r3, [r4, #120] ; 0x78 +100167be: 69a3 ldr r3, [r4, #24] +100167c0: 2b03 cmp r3, #3 +100167c2: f000 80c9 beq.w 10016958 +100167c6: 2b09 cmp r3, #9 +100167c8: d050 beq.n 1001686c +100167ca: 2f00 cmp r7, #0 +100167cc: d153 bne.n 10016876 +100167ce: f894 3023 ldrb.w r3, [r4, #35] ; 0x23 +100167d2: f894 2024 ldrb.w r2, [r4, #36] ; 0x24 +100167d6: 3301 adds r3, #1 +100167d8: b2db uxtb r3, r3 +100167da: 429a cmp r2, r3 +100167dc: f884 3023 strb.w r3, [r4, #35] ; 0x23 +100167e0: f8d4 a00c ldr.w sl, [r4, #12] +100167e4: d813 bhi.n 1001680e +100167e6: f8d4 308c ldr.w r3, [r4, #140] ; 0x8c +100167ea: f884 7023 strb.w r7, [r4, #35] ; 0x23 +100167ee: f889 7000 strb.w r7, [r9] +100167f2: 2b00 cmp r3, #0 +100167f4: f000 80d7 beq.w 100169a6 +100167f8: 6920 ldr r0, [r4, #16] +100167fa: 4621 mov r1, r4 +100167fc: 4798 blx r3 +100167fe: f899 3000 ldrb.w r3, [r9] +10016802: 2b00 cmp r3, #0 +10016804: f47f af79 bne.w 100166fa +10016808: 2800 cmp r0, #0 +1001680a: f000 80cc beq.w 100169a6 +1001680e: 46a0 mov r8, r4 +10016810: f1ba 0f00 cmp.w sl, #0 +10016814: d00b beq.n 1001682e +10016816: 4654 mov r4, sl +10016818: 7832 ldrb r2, [r6, #0] +1001681a: f894 3025 ldrb.w r3, [r4, #37] ; 0x25 +1001681e: 4293 cmp r3, r2 +10016820: f47f af78 bne.w 10016714 +10016824: f8d4 a00c ldr.w sl, [r4, #12] +10016828: f1ba 0f00 cmp.w sl, #0 +1001682c: d1f3 bne.n 10016816 +1001682e: f8df 81c4 ldr.w r8, [pc, #452] ; 100169f4 +10016832: 2600 movs r6, #0 +10016834: f8d8 4000 ldr.w r4, [r8] +10016838: b1ac cbz r4, 10016866 +1001683a: 682a ldr r2, [r5, #0] +1001683c: 6aa3 ldr r3, [r4, #40] ; 0x28 +1001683e: 4620 mov r0, r4 +10016840: 1ad3 subs r3, r2, r3 +10016842: 2bf0 cmp r3, #240 ; 0xf0 +10016844: f240 80e8 bls.w 10016a18 +10016848: f7ff ff16 bl 10016678 +1001684c: 2e00 cmp r6, #0 +1001684e: f000 80e9 beq.w 10016a24 +10016852: 68e3 ldr r3, [r4, #12] +10016854: 60f3 str r3, [r6, #12] +10016856: 68e7 ldr r7, [r4, #12] +10016858: 4621 mov r1, r4 +1001685a: 2002 movs r0, #2 +1001685c: 463c mov r4, r7 +1001685e: f7ff f995 bl 10015b8c +10016862: 2c00 cmp r4, #0 +10016864: d1e9 bne.n 1001683a +10016866: b003 add sp, #12 +10016868: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001686c: 682a ldr r2, [r5, #0] +1001686e: 6aa3 ldr r3, [r4, #40] ; 0x28 +10016870: 1ad3 subs r3, r2, r3 +10016872: 2bf0 cmp r3, #240 ; 0xf0 +10016874: d9a9 bls.n 100167ca +10016876: 4620 mov r0, r4 +10016878: f7ff fefe bl 10016678 +1001687c: 68e3 ldr r3, [r4, #12] +1001687e: f1b8 0f00 cmp.w r8, #0 +10016882: f000 80c6 beq.w 10016a12 +10016886: f8c8 300c str.w r3, [r8, #12] +1001688a: f1ba 0f00 cmp.w sl, #0 +1001688e: f040 80b5 bne.w 100169fc +10016892: f8d4 7090 ldr.w r7, [r4, #144] ; 0x90 +10016896: 2002 movs r0, #2 +10016898: 4621 mov r1, r4 +1001689a: f8d4 b010 ldr.w fp, [r4, #16] +1001689e: f8d4 a00c ldr.w sl, [r4, #12] +100168a2: f7ff f973 bl 10015b8c +100168a6: 2300 movs r3, #0 +100168a8: f889 3000 strb.w r3, [r9] +100168ac: 2f00 cmp r7, #0 +100168ae: d0af beq.n 10016810 +100168b0: 4658 mov r0, fp +100168b2: f06f 0109 mvn.w r1, #9 +100168b6: 47b8 blx r7 +100168b8: f899 3000 ldrb.w r3, [r9] +100168bc: 2b00 cmp r3, #0 +100168be: d0a7 beq.n 10016810 +100168c0: e71b b.n 100166fa +100168c2: 8f21 ldrh r1, [r4, #56] ; 0x38 +100168c4: 6f67 ldr r7, [r4, #116] ; 0x74 +100168c6: 0408 lsls r0, r1, #16 +100168c8: bf5c itt pl +100168ca: 3101 addpl r1, #1 +100168cc: 8721 strhpl r1, [r4, #56] ; 0x38 +100168ce: 2f00 cmp r7, #0 +100168d0: f43f af4c beq.w 1001676c +100168d4: f9b4 0038 ldrsh.w r0, [r4, #56] ; 0x38 +100168d8: f9b4 1048 ldrsh.w r1, [r4, #72] ; 0x48 +100168dc: 4288 cmp r0, r1 +100168de: db39 blt.n 10016954 +100168e0: 2b02 cmp r3, #2 +100168e2: d00c beq.n 100168fe +100168e4: f8df a110 ldr.w sl, [pc, #272] ; 100169f8 +100168e8: f9b4 1044 ldrsh.w r1, [r4, #68] ; 0x44 +100168ec: f9b4 3046 ldrsh.w r3, [r4, #70] ; 0x46 +100168f0: f81a 2002 ldrb.w r2, [sl, r2] +100168f4: eb03 03e1 add.w r3, r3, r1, asr #3 +100168f8: 4093 lsls r3, r2 +100168fa: f8a4 3048 strh.w r3, [r4, #72] ; 0x48 +100168fe: f8b4 1050 ldrh.w r1, [r4, #80] ; 0x50 +10016902: f8b4 2064 ldrh.w r2, [r4, #100] ; 0x64 +10016906: 8f63 ldrh r3, [r4, #58] ; 0x3a +10016908: 4291 cmp r1, r2 +1001690a: bf38 it cc +1001690c: 460a movcc r2, r1 +1001690e: 0852 lsrs r2, r2, #1 +10016910: 0059 lsls r1, r3, #1 +10016912: 428a cmp r2, r1 +10016914: f04f 0000 mov.w r0, #0 +10016918: f8a4 2052 strh.w r2, [r4, #82] ; 0x52 +1001691c: 8720 strh r0, [r4, #56] ; 0x38 +1001691e: bfb8 it lt +10016920: f8a4 1052 strhlt.w r1, [r4, #82] ; 0x52 +10016924: f8a4 3050 strh.w r3, [r4, #80] ; 0x50 +10016928: 4620 mov r0, r4 +1001692a: f002 fa83 bl 10018e34 +1001692e: 69a3 ldr r3, [r4, #24] +10016930: 2700 movs r7, #0 +10016932: 2b06 cmp r3, #6 +10016934: f47f af1d bne.w 10016772 +10016938: f894 2022 ldrb.w r2, [r4, #34] ; 0x22 +1001693c: 06d2 lsls r2, r2, #27 +1001693e: f57f af18 bpl.w 10016772 +10016942: 6829 ldr r1, [r5, #0] +10016944: 6aa2 ldr r2, [r4, #40] ; 0x28 +10016946: 1a8a subs r2, r1, r2 +10016948: 2a28 cmp r2, #40 ; 0x28 +1001694a: f67f af12 bls.w 10016772 +1001694e: 3701 adds r7, #1 +10016950: b2ff uxtb r7, r7 +10016952: e70e b.n 10016772 +10016954: 2700 movs r7, #0 +10016956: e709 b.n 1001676c +10016958: 682a ldr r2, [r5, #0] +1001695a: 6aa3 ldr r3, [r4, #40] ; 0x28 +1001695c: 1ad3 subs r3, r2, r3 +1001695e: 2b28 cmp r3, #40 ; 0x28 +10016960: f67f af33 bls.w 100167ca +10016964: 3701 adds r7, #1 +10016966: b2ff uxtb r7, r7 +10016968: e72f b.n 100167ca +1001696a: 2a06 cmp r2, #6 +1001696c: f47f aeda bne.w 10016724 +10016970: 2701 movs r7, #1 +10016972: e6fe b.n 10016772 +10016974: 2701 movs r7, #1 +10016976: e6f9 b.n 1001676c +10016978: f8d4 2094 ldr.w r2, [r4, #148] ; 0x94 +1001697c: f8d4 1098 ldr.w r1, [r4, #152] ; 0x98 +10016980: f8d4 309c ldr.w r3, [r4, #156] ; 0x9c +10016984: f8df a064 ldr.w sl, [pc, #100] ; 100169ec +10016988: fb03 2301 mla r3, r3, r1, r2 +1001698c: fbaa ac03 umull sl, ip, sl, r3 +10016990: 6828 ldr r0, [r5, #0] +10016992: 6aa3 ldr r3, [r4, #40] ; 0x28 +10016994: 1ac3 subs r3, r0, r3 +10016996: ebb3 1f5c cmp.w r3, ip, lsr #5 +1001699a: d909 bls.n 100169b0 +1001699c: 3701 adds r7, #1 +1001699e: b2ff uxtb r7, r7 +100169a0: f04f 0a01 mov.w sl, #1 +100169a4: e6f4 b.n 10016790 +100169a6: 4620 mov r0, r4 +100169a8: f002 f894 bl 10018ad4 +100169ac: 46a0 mov r8, r4 +100169ae: e72f b.n 10016810 +100169b0: f894 00a2 ldrb.w r0, [r4, #162] ; 0xa2 +100169b4: fb01 2200 mla r2, r1, r0, r2 +100169b8: 480c ldr r0, [pc, #48] ; (100169ec ) +100169ba: fba0 0202 umull r0, r2, r0, r2 +100169be: ebb3 1f52 cmp.w r3, r2, lsr #5 +100169c2: f67f aee3 bls.w 1001678c +100169c6: 4620 mov r0, r4 +100169c8: f002 faa0 bl 10018f0c +100169cc: f894 30a2 ldrb.w r3, [r4, #162] ; 0xa2 +100169d0: f04f 0a00 mov.w sl, #0 +100169d4: 3301 adds r3, #1 +100169d6: f884 30a2 strb.w r3, [r4, #162] ; 0xa2 +100169da: e6d9 b.n 10016790 +100169dc: 100513b8 .word 0x100513b8 +100169e0: 100513c8 .word 0x100513c8 +100169e4: 100513c4 .word 0x100513c4 +100169e8: 10047d00 .word 0x10047d00 +100169ec: 10624dd3 .word 0x10624dd3 +100169f0: 100513b4 .word 0x100513b4 +100169f4: 100513cc .word 0x100513cc +100169f8: 10047cf0 .word 0x10047cf0 +100169fc: 8be3 ldrh r3, [r4, #30] +100169fe: 6d60 ldr r0, [r4, #84] ; 0x54 +10016a00: 6ae1 ldr r1, [r4, #44] ; 0x2c +10016a02: 9300 str r3, [sp, #0] +10016a04: 8c23 ldrh r3, [r4, #32] +10016a06: 4622 mov r2, r4 +10016a08: 9301 str r3, [sp, #4] +10016a0a: 1d23 adds r3, r4, #4 +10016a0c: f002 f9c4 bl 10018d98 +10016a10: e73f b.n 10016892 +10016a12: 4906 ldr r1, [pc, #24] ; (10016a2c ) +10016a14: 600b str r3, [r1, #0] +10016a16: e738 b.n 1001688a +10016a18: 4626 mov r6, r4 +10016a1a: 68e4 ldr r4, [r4, #12] +10016a1c: 2c00 cmp r4, #0 +10016a1e: f47f af0c bne.w 1001683a +10016a22: e720 b.n 10016866 +10016a24: 68e7 ldr r7, [r4, #12] +10016a26: f8c8 7000 str.w r7, [r8] +10016a2a: e715 b.n 10016858 +10016a2c: 100513c4 .word 0x100513c4 + +10016a30 : +10016a30: 6802 ldr r2, [r0, #0] +10016a32: b510 push {r4, lr} +10016a34: 428a cmp r2, r1 +10016a36: 460c mov r4, r1 +10016a38: d02c beq.n 10016a94 +10016a3a: 4919 ldr r1, [pc, #100] ; (10016aa0 ) +10016a3c: 600a str r2, [r1, #0] +10016a3e: b152 cbz r2, 10016a56 +10016a40: 68d3 ldr r3, [r2, #12] +10016a42: 42a3 cmp r3, r4 +10016a44: d029 beq.n 10016a9a +10016a46: b12b cbz r3, 10016a54 +10016a48: 68da ldr r2, [r3, #12] +10016a4a: 42a2 cmp r2, r4 +10016a4c: d01e beq.n 10016a8c +10016a4e: 4613 mov r3, r2 +10016a50: 2b00 cmp r3, #0 +10016a52: d1f9 bne.n 10016a48 +10016a54: 600b str r3, [r1, #0] +10016a56: 2300 movs r3, #0 +10016a58: 60e3 str r3, [r4, #12] +10016a5a: 4620 mov r0, r4 +10016a5c: f7ff fe0c bl 10016678 +10016a60: 69a3 ldr r3, [r4, #24] +10016a62: 2b0a cmp r3, #10 +10016a64: d005 beq.n 10016a72 +10016a66: 2b01 cmp r3, #1 +10016a68: d003 beq.n 10016a72 +10016a6a: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10016a6e: 07da lsls r2, r3, #31 +10016a70: d402 bmi.n 10016a78 +10016a72: 2300 movs r3, #0 +10016a74: 61a3 str r3, [r4, #24] +10016a76: bd10 pop {r4, pc} +10016a78: f043 0302 orr.w r3, r3, #2 +10016a7c: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10016a80: 4620 mov r0, r4 +10016a82: f002 f827 bl 10018ad4 +10016a86: 2300 movs r3, #0 +10016a88: 61a3 str r3, [r4, #24] +10016a8a: bd10 pop {r4, pc} +10016a8c: 600b str r3, [r1, #0] +10016a8e: 68e1 ldr r1, [r4, #12] +10016a90: 60d9 str r1, [r3, #12] +10016a92: e7e0 b.n 10016a56 +10016a94: 68cb ldr r3, [r1, #12] +10016a96: 6003 str r3, [r0, #0] +10016a98: e7dd b.n 10016a56 +10016a9a: 4613 mov r3, r2 +10016a9c: e7f7 b.n 10016a8e +10016a9e: bf00 nop +10016aa0: 100513d0 .word 0x100513d0 + +10016aa4 : +10016aa4: b530 push {r4, r5, lr} +10016aa6: 6983 ldr r3, [r0, #24] +10016aa8: b083 sub sp, #12 +10016aaa: 4604 mov r4, r0 +10016aac: b119 cbz r1, 10016ab6 +10016aae: 2b04 cmp r3, #4 +10016ab0: d01e beq.n 10016af0 +10016ab2: 2b07 cmp r3, #7 +10016ab4: d01c beq.n 10016af0 +10016ab6: 2b07 cmp r3, #7 +10016ab8: d80e bhi.n 10016ad8 +10016aba: e8df f003 tbb [pc, r3] +10016abe: 503b .short 0x503b +10016ac0: 0d111159 .word 0x0d111159 +10016ac4: 040d .short 0x040d +10016ac6: 4620 mov r0, r4 +10016ac8: f001 ffae bl 10018a28 +10016acc: b928 cbnz r0, 10016ada +10016ace: 2309 movs r3, #9 +10016ad0: 61a3 str r3, [r4, #24] +10016ad2: 4620 mov r0, r4 +10016ad4: f001 fffe bl 10018ad4 +10016ad8: 2000 movs r0, #0 +10016ada: b240 sxtb r0, r0 +10016adc: b003 add sp, #12 +10016ade: bd30 pop {r4, r5, pc} +10016ae0: 4620 mov r0, r4 +10016ae2: f001 ffa1 bl 10018a28 +10016ae6: 2800 cmp r0, #0 +10016ae8: d1f7 bne.n 10016ada +10016aea: 2305 movs r3, #5 +10016aec: 61a3 str r3, [r4, #24] +10016aee: e7f0 b.n 10016ad2 +10016af0: 6fe2 ldr r2, [r4, #124] ; 0x7c +10016af2: 2a00 cmp r2, #0 +10016af4: d048 beq.n 10016b88 +10016af6: 8be2 ldrh r2, [r4, #30] +10016af8: 8c23 ldrh r3, [r4, #32] +10016afa: 6d60 ldr r0, [r4, #84] ; 0x54 +10016afc: 6ae1 ldr r1, [r4, #44] ; 0x2c +10016afe: e88d 000c stmia.w sp, {r2, r3} +10016b02: 4622 mov r2, r4 +10016b04: 1d23 adds r3, r4, #4 +10016b06: f002 f947 bl 10018d98 +10016b0a: 4620 mov r0, r4 +10016b0c: f7ff fdb4 bl 10016678 +10016b10: 4b3b ldr r3, [pc, #236] ; (10016c00 ) +10016b12: 681a ldr r2, [r3, #0] +10016b14: 42a2 cmp r2, r4 +10016b16: d065 beq.n 10016be4 +10016b18: 493a ldr r1, [pc, #232] ; (10016c04 ) +10016b1a: 600a str r2, [r1, #0] +10016b1c: 2a00 cmp r2, #0 +10016b1e: d03c beq.n 10016b9a +10016b20: 68d3 ldr r3, [r2, #12] +10016b22: 42a3 cmp r3, r4 +10016b24: d061 beq.n 10016bea +10016b26: 2b00 cmp r3, #0 +10016b28: d050 beq.n 10016bcc +10016b2a: 68da ldr r2, [r3, #12] +10016b2c: 42a2 cmp r2, r4 +10016b2e: d031 beq.n 10016b94 +10016b30: 4613 mov r3, r2 +10016b32: e7f8 b.n 10016b26 +10016b34: 8be3 ldrh r3, [r4, #30] +10016b36: 2b00 cmp r3, #0 +10016b38: d043 beq.n 10016bc2 +10016b3a: 4b33 ldr r3, [pc, #204] ; (10016c08 ) +10016b3c: 681a ldr r2, [r3, #0] +10016b3e: 42a2 cmp r2, r4 +10016b40: d03b beq.n 10016bba +10016b42: 4930 ldr r1, [pc, #192] ; (10016c04 ) +10016b44: 600a str r2, [r1, #0] +10016b46: 2a00 cmp r2, #0 +10016b48: d039 beq.n 10016bbe +10016b4a: 68d3 ldr r3, [r2, #12] +10016b4c: 42a3 cmp r3, r4 +10016b4e: d04e beq.n 10016bee +10016b50: 2b00 cmp r3, #0 +10016b52: d050 beq.n 10016bf6 +10016b54: 68da ldr r2, [r3, #12] +10016b56: 42a2 cmp r2, r4 +10016b58: d04f beq.n 10016bfa +10016b5a: 4613 mov r3, r2 +10016b5c: e7f8 b.n 10016b50 +10016b5e: 4621 mov r1, r4 +10016b60: 482a ldr r0, [pc, #168] ; (10016c0c ) +10016b62: f7ff ff65 bl 10016a30 +10016b66: 4621 mov r1, r4 +10016b68: 2003 movs r0, #3 +10016b6a: f7ff f80f bl 10015b8c +10016b6e: e7b3 b.n 10016ad8 +10016b70: 4621 mov r1, r4 +10016b72: 4823 ldr r0, [pc, #140] ; (10016c00 ) +10016b74: f7ff ff5c bl 10016a30 +10016b78: 4b25 ldr r3, [pc, #148] ; (10016c10 ) +10016b7a: 2201 movs r2, #1 +10016b7c: 4621 mov r1, r4 +10016b7e: 2002 movs r0, #2 +10016b80: 701a strb r2, [r3, #0] +10016b82: f7ff f803 bl 10015b8c +10016b86: e7a7 b.n 10016ad8 +10016b88: 8e21 ldrh r1, [r4, #48] ; 0x30 +10016b8a: f241 62d0 movw r2, #5840 ; 0x16d0 +10016b8e: 4291 cmp r1, r2 +10016b90: d1b1 bne.n 10016af6 +10016b92: e790 b.n 10016ab6 +10016b94: 600b str r3, [r1, #0] +10016b96: 68e1 ldr r1, [r4, #12] +10016b98: 60d9 str r1, [r3, #12] +10016b9a: 69a3 ldr r3, [r4, #24] +10016b9c: 4a1c ldr r2, [pc, #112] ; (10016c10 ) +10016b9e: 2101 movs r1, #1 +10016ba0: 2500 movs r5, #0 +10016ba2: 2b04 cmp r3, #4 +10016ba4: 7011 strb r1, [r2, #0] +10016ba6: 60e5 str r5, [r4, #12] +10016ba8: d012 beq.n 10016bd0 +10016baa: 4621 mov r1, r4 +10016bac: 2002 movs r0, #2 +10016bae: f7fe ffed bl 10015b8c +10016bb2: 4628 mov r0, r5 +10016bb4: b240 sxtb r0, r0 +10016bb6: b003 add sp, #12 +10016bb8: bd30 pop {r4, r5, pc} +10016bba: 68e2 ldr r2, [r4, #12] +10016bbc: 601a str r2, [r3, #0] +10016bbe: 2300 movs r3, #0 +10016bc0: 60e3 str r3, [r4, #12] +10016bc2: 4621 mov r1, r4 +10016bc4: 2002 movs r0, #2 +10016bc6: f7fe ffe1 bl 10015b8c +10016bca: e785 b.n 10016ad8 +10016bcc: 600b str r3, [r1, #0] +10016bce: e7e4 b.n 10016b9a +10016bd0: 4b10 ldr r3, [pc, #64] ; (10016c14 ) +10016bd2: 210a movs r1, #10 +10016bd4: 681a ldr r2, [r3, #0] +10016bd6: 61a1 str r1, [r4, #24] +10016bd8: 60e2 str r2, [r4, #12] +10016bda: 601c str r4, [r3, #0] +10016bdc: f7fe fcce bl 1001557c +10016be0: 4628 mov r0, r5 +10016be2: e77a b.n 10016ada +10016be4: 68e2 ldr r2, [r4, #12] +10016be6: 601a str r2, [r3, #0] +10016be8: e7d7 b.n 10016b9a +10016bea: 4613 mov r3, r2 +10016bec: e7d3 b.n 10016b96 +10016bee: 4613 mov r3, r2 +10016bf0: 68e1 ldr r1, [r4, #12] +10016bf2: 60d9 str r1, [r3, #12] +10016bf4: e7e3 b.n 10016bbe +10016bf6: 600b str r3, [r1, #0] +10016bf8: e7e1 b.n 10016bbe +10016bfa: 600b str r3, [r1, #0] +10016bfc: e7f8 b.n 10016bf0 +10016bfe: bf00 nop +10016c00: 100513c4 .word 0x100513c4 +10016c04: 100513d0 .word 0x100513d0 +10016c08: 100513d4 .word 0x100513d4 +10016c0c: 100513c0 .word 0x100513c0 +10016c10: 100513b4 .word 0x100513b4 +10016c14: 100513cc .word 0x100513cc + +10016c18 : +10016c18: 6983 ldr r3, [r0, #24] +10016c1a: 2b01 cmp r3, #1 +10016c1c: d005 beq.n 10016c2a +10016c1e: f890 3022 ldrb.w r3, [r0, #34] ; 0x22 +10016c22: f043 0310 orr.w r3, r3, #16 +10016c26: f880 3022 strb.w r3, [r0, #34] ; 0x22 +10016c2a: 2101 movs r1, #1 +10016c2c: f7ff bf3a b.w 10016aa4 + +10016c30 : +10016c30: b510 push {r4, lr} +10016c32: 4614 mov r4, r2 +10016c34: b142 cbz r2, 10016c48 +10016c36: 4608 mov r0, r1 +10016c38: 8911 ldrh r1, [r2, #8] +10016c3a: f7ff fcc1 bl 100165c0 +10016c3e: 4620 mov r0, r4 +10016c40: f7ff f912 bl 10015e68 +10016c44: 2000 movs r0, #0 +10016c46: bd10 pop {r4, pc} +10016c48: 2b00 cmp r3, #0 +10016c4a: d1fb bne.n 10016c44 +10016c4c: 4608 mov r0, r1 +10016c4e: e8bd 4010 ldmia.w sp!, {r4, lr} +10016c52: f7ff bfe1 b.w 10016c18 +10016c56: bf00 nop + +10016c58 : +10016c58: b5f8 push {r3, r4, r5, r6, r7, lr} +10016c5a: 6fc5 ldr r5, [r0, #124] ; 0x7c +10016c5c: f8d0 6084 ldr.w r6, [r0, #132] ; 0x84 +10016c60: 2300 movs r3, #0 +10016c62: 7b6f ldrb r7, [r5, #13] +10016c64: 4604 mov r4, r0 +10016c66: 67c3 str r3, [r0, #124] ; 0x7c +10016c68: b30e cbz r6, 10016cae +10016c6a: 6900 ldr r0, [r0, #16] +10016c6c: 4621 mov r1, r4 +10016c6e: 462a mov r2, r5 +10016c70: 47b0 blx r6 +10016c72: b9a8 cbnz r0, 10016ca0 +10016c74: 06bb lsls r3, r7, #26 +10016c76: d511 bpl.n 10016c9c +10016c78: 8e23 ldrh r3, [r4, #48] ; 0x30 +10016c7a: f241 62d0 movw r2, #5840 ; 0x16d0 +10016c7e: 4293 cmp r3, r2 +10016c80: f8d4 5084 ldr.w r5, [r4, #132] ; 0x84 +10016c84: bf1c itt ne +10016c86: 3301 addne r3, #1 +10016c88: 8623 strhne r3, [r4, #48] ; 0x30 +10016c8a: b16d cbz r5, 10016ca8 +10016c8c: 2200 movs r2, #0 +10016c8e: 4613 mov r3, r2 +10016c90: 6920 ldr r0, [r4, #16] +10016c92: 4621 mov r1, r4 +10016c94: 47a8 blx r5 +10016c96: 300a adds r0, #10 +10016c98: d106 bne.n 10016ca8 +10016c9a: 20f6 movs r0, #246 ; 0xf6 +10016c9c: b240 sxtb r0, r0 +10016c9e: bdf8 pop {r3, r4, r5, r6, r7, pc} +10016ca0: b240 sxtb r0, r0 +10016ca2: 300a adds r0, #10 +10016ca4: d0f9 beq.n 10016c9a +10016ca6: 67e5 str r5, [r4, #124] ; 0x7c +10016ca8: 2000 movs r0, #0 +10016caa: b240 sxtb r0, r0 +10016cac: bdf8 pop {r3, r4, r5, r6, r7, pc} +10016cae: 4630 mov r0, r6 +10016cb0: 4633 mov r3, r6 +10016cb2: 4621 mov r1, r4 +10016cb4: 462a mov r2, r5 +10016cb6: f7ff ffbb bl 10016c30 +10016cba: e7da b.n 10016c72 + +10016cbc : +10016cbc: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10016cc0: 4d19 ldr r5, [pc, #100] ; (10016d28 ) +10016cc2: 4f1a ldr r7, [pc, #104] ; (10016d2c ) +10016cc4: 782b ldrb r3, [r5, #0] +10016cc6: 4e1a ldr r6, [pc, #104] ; (10016d30 ) +10016cc8: 3301 adds r3, #1 +10016cca: 702b strb r3, [r5, #0] +10016ccc: f04f 0800 mov.w r8, #0 +10016cd0: 683c ldr r4, [r7, #0] +10016cd2: b12c cbz r4, 10016ce0 +10016cd4: 782b ldrb r3, [r5, #0] +10016cd6: f894 2025 ldrb.w r2, [r4, #37] ; 0x25 +10016cda: 429a cmp r2, r3 +10016cdc: d102 bne.n 10016ce4 +10016cde: e7fe b.n 10016cde +10016ce0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10016ce4: f894 2022 ldrb.w r2, [r4, #34] ; 0x22 +10016ce8: f884 3025 strb.w r3, [r4, #37] ; 0x25 +10016cec: 07d3 lsls r3, r2, #31 +10016cee: d40c bmi.n 10016d0a +10016cf0: 6fe3 ldr r3, [r4, #124] ; 0x7c +10016cf2: 4620 mov r0, r4 +10016cf4: 68e4 ldr r4, [r4, #12] +10016cf6: 2b00 cmp r3, #0 +10016cf8: d0eb beq.n 10016cd2 +10016cfa: f886 8000 strb.w r8, [r6] +10016cfe: f7ff ffab bl 10016c58 +10016d02: 7833 ldrb r3, [r6, #0] +10016d04: 2b00 cmp r3, #0 +10016d06: d0e4 beq.n 10016cd2 +10016d08: e7e2 b.n 10016cd0 +10016d0a: f042 0202 orr.w r2, r2, #2 +10016d0e: f884 2022 strb.w r2, [r4, #34] ; 0x22 +10016d12: 4620 mov r0, r4 +10016d14: f001 fede bl 10018ad4 +10016d18: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10016d1c: f023 0303 bic.w r3, r3, #3 +10016d20: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10016d24: e7e4 b.n 10016cf0 +10016d26: bf00 nop +10016d28: 100513c8 .word 0x100513c8 +10016d2c: 100513c4 .word 0x100513c4 +10016d30: 100513b4 .word 0x100513b4 + +10016d34 : +10016d34: b508 push {r3, lr} +10016d36: f7ff ffc1 bl 10016cbc +10016d3a: 4a06 ldr r2, [pc, #24] ; (10016d54 ) +10016d3c: 7813 ldrb r3, [r2, #0] +10016d3e: 3301 adds r3, #1 +10016d40: b2db uxtb r3, r3 +10016d42: 7013 strb r3, [r2, #0] +10016d44: 07db lsls r3, r3, #31 +10016d46: d400 bmi.n 10016d4a +10016d48: bd08 pop {r3, pc} +10016d4a: e8bd 4008 ldmia.w sp!, {r3, lr} +10016d4e: f7ff bcc7 b.w 100166e0 +10016d52: bf00 nop +10016d54: 100513bc .word 0x100513bc + +10016d58 : +10016d58: b538 push {r3, r4, r5, lr} +10016d5a: 6983 ldr r3, [r0, #24] +10016d5c: 4604 mov r4, r0 +10016d5e: 2b01 cmp r3, #1 +10016d60: 4615 mov r5, r2 +10016d62: d023 beq.n 10016dac +10016d64: b171 cbz r1, 10016d84 +10016d66: f890 3022 ldrb.w r3, [r0, #34] ; 0x22 +10016d6a: f043 0310 orr.w r3, r3, #16 +10016d6e: f880 3022 strb.w r3, [r0, #34] ; 0x22 +10016d72: b9b5 cbnz r5, 10016da2 +10016d74: 6fc0 ldr r0, [r0, #124] ; 0x7c +10016d76: b110 cbz r0, 10016d7e +10016d78: f7ff f876 bl 10015e68 +10016d7c: 67e5 str r5, [r4, #124] ; 0x7c +10016d7e: 2000 movs r0, #0 +10016d80: b240 sxtb r0, r0 +10016d82: bd38 pop {r3, r4, r5, pc} +10016d84: 2d00 cmp r5, #0 +10016d86: d0fa beq.n 10016d7e +10016d88: 3b03 subs r3, #3 +10016d8a: 2b04 cmp r3, #4 +10016d8c: d80e bhi.n 10016dac +10016d8e: 2201 movs r2, #1 +10016d90: fa02 f303 lsl.w r3, r2, r3 +10016d94: f013 0f13 tst.w r3, #19 +10016d98: d008 beq.n 10016dac +10016d9a: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10016d9e: f7ff be81 b.w 10016aa4 +10016da2: 2101 movs r1, #1 +10016da4: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10016da8: f7ff be7c b.w 10016aa4 +10016dac: 20f3 movs r0, #243 ; 0xf3 +10016dae: e7e7 b.n 10016d80 + +10016db0 : +10016db0: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10016db4: 6983 ldr r3, [r0, #24] +10016db6: b082 sub sp, #8 +10016db8: 2b0a cmp r3, #10 +10016dba: 4604 mov r4, r0 +10016dbc: 460e mov r6, r1 +10016dbe: d041 beq.n 10016e44 +10016dc0: 4826 ldr r0, [pc, #152] ; (10016e5c ) +10016dc2: 4621 mov r1, r4 +10016dc4: f8d4 9054 ldr.w r9, [r4, #84] ; 0x54 +10016dc8: f8d4 802c ldr.w r8, [r4, #44] ; 0x2c +10016dcc: f8d4 5090 ldr.w r5, [r4, #144] ; 0x90 +10016dd0: f8d4 a010 ldr.w sl, [r4, #16] +10016dd4: f7ff fe2c bl 10016a30 +10016dd8: 4b21 ldr r3, [pc, #132] ; (10016e60 ) +10016dda: 6f60 ldr r0, [r4, #116] ; 0x74 +10016ddc: 2201 movs r2, #1 +10016dde: 701a strb r2, [r3, #0] +10016de0: b908 cbnz r0, 10016de6 +10016de2: e005 b.n 10016df0 +10016de4: 4638 mov r0, r7 +10016de6: 6807 ldr r7, [r0, #0] +10016de8: f7ff fc08 bl 100165fc +10016dec: 2f00 cmp r7, #0 +10016dee: d1f9 bne.n 10016de4 +10016df0: 6f20 ldr r0, [r4, #112] ; 0x70 +10016df2: b908 cbnz r0, 10016df8 +10016df4: e005 b.n 10016e02 +10016df6: 4638 mov r0, r7 +10016df8: 6807 ldr r7, [r0, #0] +10016dfa: f7ff fbff bl 100165fc +10016dfe: 2f00 cmp r7, #0 +10016e00: d1f9 bne.n 10016df6 +10016e02: 6fa0 ldr r0, [r4, #120] ; 0x78 +10016e04: b908 cbnz r0, 10016e0a +10016e06: e005 b.n 10016e14 +10016e08: 4638 mov r0, r7 +10016e0a: 6807 ldr r7, [r0, #0] +10016e0c: f7ff fbf6 bl 100165fc +10016e10: 2f00 cmp r7, #0 +10016e12: d1f9 bne.n 10016e08 +10016e14: b95e cbnz r6, 10016e2e +10016e16: 4621 mov r1, r4 +10016e18: 2002 movs r0, #2 +10016e1a: f7fe feb7 bl 10015b8c +10016e1e: b11d cbz r5, 10016e28 +10016e20: 4650 mov r0, sl +10016e22: f06f 0109 mvn.w r1, #9 +10016e26: 47a8 blx r5 +10016e28: b002 add sp, #8 +10016e2a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10016e2e: 8be2 ldrh r2, [r4, #30] +10016e30: 8c23 ldrh r3, [r4, #32] +10016e32: 4648 mov r0, r9 +10016e34: e88d 000c stmia.w sp, {r2, r3} +10016e38: 4641 mov r1, r8 +10016e3a: 4622 mov r2, r4 +10016e3c: 1d23 adds r3, r4, #4 +10016e3e: f001 ffab bl 10018d98 +10016e42: e7e8 b.n 10016e16 +10016e44: 4621 mov r1, r4 +10016e46: 4807 ldr r0, [pc, #28] ; (10016e64 ) +10016e48: f7ff fdf2 bl 10016a30 +10016e4c: 4621 mov r1, r4 +10016e4e: 2002 movs r0, #2 +10016e50: b002 add sp, #8 +10016e52: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10016e56: f7fe be99 b.w 10015b8c +10016e5a: bf00 nop +10016e5c: 100513c4 .word 0x100513c4 +10016e60: 100513b4 .word 0x100513b4 +10016e64: 100513cc .word 0x100513cc + +10016e68 : +10016e68: 2101 movs r1, #1 +10016e6a: f7ff bfa1 b.w 10016db0 +10016e6e: bf00 nop + +10016e70 : +10016e70: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10016e74: 4680 mov r8, r0 +10016e76: 2002 movs r0, #2 +10016e78: f7fe fe72 bl 10015b60 +10016e7c: 4604 mov r4, r0 +10016e7e: 2800 cmp r0, #0 +10016e80: d04d beq.n 10016f1e +10016e82: 2100 movs r1, #0 +10016e84: 22a4 movs r2, #164 ; 0xa4 +10016e86: 4620 mov r0, r4 +10016e88: f02b f970 bl 1004216c +10016e8c: 4e41 ldr r6, [pc, #260] ; (10016f94 ) +10016e8e: 4a42 ldr r2, [pc, #264] ; (10016f98 ) +10016e90: 4b42 ldr r3, [pc, #264] ; (10016f9c ) +10016e92: 6817 ldr r7, [r2, #0] +10016e94: 6832 ldr r2, [r6, #0] +10016e96: f893 b000 ldrb.w fp, [r3] +10016e9a: 443a add r2, r7 +10016e9c: 2300 movs r3, #0 +10016e9e: 4840 ldr r0, [pc, #256] ; (10016fa0 ) +10016ea0: f241 65d0 movw r5, #5840 ; 0x16d0 +10016ea4: 2106 movs r1, #6 +10016ea6: 6032 str r2, [r6, #0] +10016ea8: f641 4984 movw r9, #7300 ; 0x1c84 +10016eac: f04f 0cff mov.w ip, #255 ; 0xff +10016eb0: f64f 7aff movw sl, #65535 ; 0xffff +10016eb4: f884 801c strb.w r8, [r4, #28] +10016eb8: 62a7 str r7, [r4, #40] ; 0x28 +10016eba: f04f 0801 mov.w r8, #1 +10016ebe: f242 7710 movw r7, #10000 ; 0x2710 +10016ec2: f44f 767a mov.w r6, #1000 ; 0x3e8 +10016ec6: 65e2 str r2, [r4, #92] ; 0x5c +10016ec8: 6562 str r2, [r4, #84] ; 0x54 +10016eca: 64e2 str r2, [r4, #76] ; 0x4c +10016ecc: 6622 str r2, [r4, #96] ; 0x60 +10016ece: f8a4 306c strh.w r3, [r4, #108] ; 0x6c +10016ed2: 220a movs r2, #10 +10016ed4: 7263 strb r3, [r4, #9] +10016ed6: f8a4 3044 strh.w r3, [r4, #68] ; 0x44 +10016eda: f884 3023 strb.w r3, [r4, #35] ; 0x23 +10016ede: f884 30a2 strb.w r3, [r4, #162] ; 0xa2 +10016ee2: f44f 7306 mov.w r3, #536 ; 0x218 +10016ee6: f884 b025 strb.w fp, [r4, #37] ; 0x25 +10016eea: f8c4 0084 str.w r0, [r4, #132] ; 0x84 +10016eee: f8a4 906a strh.w r9, [r4, #106] ; 0x6a +10016ef2: 8625 strh r5, [r4, #48] ; 0x30 +10016ef4: 8665 strh r5, [r4, #50] ; 0x32 +10016ef6: f884 c00a strb.w ip, [r4, #10] +10016efa: 8763 strh r3, [r4, #58] ; 0x3a +10016efc: f8a4 1048 strh.w r1, [r4, #72] ; 0x48 +10016f00: f8a4 1046 strh.w r1, [r4, #70] ; 0x46 +10016f04: f8a4 a038 strh.w sl, [r4, #56] ; 0x38 +10016f08: f8a4 8050 strh.w r8, [r4, #80] ; 0x50 +10016f0c: f8c4 7094 str.w r7, [r4, #148] ; 0x94 +10016f10: f8c4 6098 str.w r6, [r4, #152] ; 0x98 +10016f14: f8c4 209c str.w r2, [r4, #156] ; 0x9c +10016f18: 4620 mov r0, r4 +10016f1a: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10016f1e: 4b21 ldr r3, [pc, #132] ; (10016fa4 ) +10016f20: 681b ldr r3, [r3, #0] +10016f22: b18b cbz r3, 10016f48 +10016f24: 4a1c ldr r2, [pc, #112] ; (10016f98 ) +10016f26: 6a99 ldr r1, [r3, #40] ; 0x28 +10016f28: 6814 ldr r4, [r2, #0] +10016f2a: 4618 mov r0, r3 +10016f2c: 1a61 subs r1, r4, r1 +10016f2e: e005 b.n 10016f3c +10016f30: 6a9a ldr r2, [r3, #40] ; 0x28 +10016f32: 1aa2 subs r2, r4, r2 +10016f34: 428a cmp r2, r1 +10016f36: bf24 itt cs +10016f38: 4611 movcs r1, r2 +10016f3a: 4618 movcs r0, r3 +10016f3c: 68db ldr r3, [r3, #12] +10016f3e: 2b00 cmp r3, #0 +10016f40: d1f6 bne.n 10016f30 +10016f42: 2101 movs r1, #1 +10016f44: f7ff ff34 bl 10016db0 +10016f48: 2002 movs r0, #2 +10016f4a: f7fe fe09 bl 10015b60 +10016f4e: 4604 mov r4, r0 +10016f50: 2800 cmp r0, #0 +10016f52: d196 bne.n 10016e82 +10016f54: 4b14 ldr r3, [pc, #80] ; (10016fa8 ) +10016f56: 681b ldr r3, [r3, #0] +10016f58: b1ab cbz r3, 10016f86 +10016f5a: 4a0f ldr r2, [pc, #60] ; (10016f98 ) +10016f5c: 217f movs r1, #127 ; 0x7f +10016f5e: 6816 ldr r6, [r2, #0] +10016f60: 7f1a ldrb r2, [r3, #28] +10016f62: 4590 cmp r8, r2 +10016f64: d308 bcc.n 10016f78 +10016f66: 428a cmp r2, r1 +10016f68: d806 bhi.n 10016f78 +10016f6a: 6a9d ldr r5, [r3, #40] ; 0x28 +10016f6c: 1b75 subs r5, r6, r5 +10016f6e: 42a5 cmp r5, r4 +10016f70: d302 bcc.n 10016f78 +10016f72: 4611 mov r1, r2 +10016f74: 462c mov r4, r5 +10016f76: 4618 mov r0, r3 +10016f78: 68db ldr r3, [r3, #12] +10016f7a: 2b00 cmp r3, #0 +10016f7c: d1f0 bne.n 10016f60 +10016f7e: b110 cbz r0, 10016f86 +10016f80: 2101 movs r1, #1 +10016f82: f7ff ff15 bl 10016db0 +10016f86: 2002 movs r0, #2 +10016f88: f7fe fdea bl 10015b60 +10016f8c: 4604 mov r4, r0 +10016f8e: 2800 cmp r0, #0 +10016f90: d0c2 beq.n 10016f18 +10016f92: e776 b.n 10016e82 +10016f94: 1004d804 .word 0x1004d804 +10016f98: 100513b8 .word 0x100513b8 +10016f9c: 100513c8 .word 0x100513c8 +10016fa0: 10016c31 .word 0x10016c31 +10016fa4: 100513cc .word 0x100513cc +10016fa8: 100513c4 .word 0x100513c4 + +10016fac : +10016fac: 2040 movs r0, #64 ; 0x40 +10016fae: f7ff bf5f b.w 10016e70 +10016fb2: bf00 nop + +10016fb4 : +10016fb4: b510 push {r4, lr} +10016fb6: 4604 mov r4, r0 +10016fb8: 4608 mov r0, r1 +10016fba: f7fc f8ef bl 1001319c +10016fbe: b130 cbz r0, 10016fce +10016fc0: 8d03 ldrh r3, [r0, #40] ; 0x28 +10016fc2: b123 cbz r3, 10016fce +10016fc4: 3b28 subs r3, #40 ; 0x28 +10016fc6: b29b uxth r3, r3 +10016fc8: 429c cmp r4, r3 +10016fca: bf28 it cs +10016fcc: 461c movcs r4, r3 +10016fce: 4620 mov r0, r4 +10016fd0: bd10 pop {r4, pc} +10016fd2: bf00 nop + +10016fd4 : +10016fd4: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10016fd8: 4605 mov r5, r0 +10016fda: 6980 ldr r0, [r0, #24] +10016fdc: 460e mov r6, r1 +10016fde: 4692 mov sl, r2 +10016fe0: 4699 mov r9, r3 +10016fe2: 2800 cmp r0, #0 +10016fe4: f040 809f bne.w 10017126 +10016fe8: 2900 cmp r1, #0 +10016fea: f000 809e beq.w 1001712a +10016fee: 680a ldr r2, [r1, #0] +10016ff0: 682b ldr r3, [r5, #0] +10016ff2: 606a str r2, [r5, #4] +10016ff4: f8a5 a020 strh.w sl, [r5, #32] +10016ff8: b323 cbz r3, 10017044 +10016ffa: f8b5 801e ldrh.w r8, [r5, #30] +10016ffe: f1b8 0f00 cmp.w r8, #0 +10017002: d02b beq.n 1001705c +10017004: 7a2b ldrb r3, [r5, #8] +10017006: 075b lsls r3, r3, #29 +10017008: d531 bpl.n 1001706e +1001700a: 4a4a ldr r2, [pc, #296] ; (10017134 ) +1001700c: f102 0c08 add.w ip, r2, #8 +10017010: f852 3f04 ldr.w r3, [r2, #4]! +10017014: 681c ldr r4, [r3, #0] +10017016: b344 cbz r4, 1001706a +10017018: 8be8 ldrh r0, [r5, #30] +1001701a: e001 b.n 10017020 +1001701c: 68e4 ldr r4, [r4, #12] +1001701e: b324 cbz r4, 1001706a +10017020: 8be3 ldrh r3, [r4, #30] +10017022: 4283 cmp r3, r0 +10017024: d1fa bne.n 1001701c +10017026: 8c23 ldrh r3, [r4, #32] +10017028: 4553 cmp r3, sl +1001702a: d1f7 bne.n 1001701c +1001702c: 6827 ldr r7, [r4, #0] +1001702e: 6829 ldr r1, [r5, #0] +10017030: 428f cmp r7, r1 +10017032: d1f3 bne.n 1001701c +10017034: 6861 ldr r1, [r4, #4] +10017036: 6833 ldr r3, [r6, #0] +10017038: 4299 cmp r1, r3 +1001703a: d1ef bne.n 1001701c +1001703c: 20f8 movs r0, #248 ; 0xf8 +1001703e: b240 sxtb r0, r0 +10017040: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10017044: 1d28 adds r0, r5, #4 +10017046: f7fc f8a9 bl 1001319c +1001704a: 2800 cmp r0, #0 +1001704c: d06f beq.n 1001712e +1001704e: 6843 ldr r3, [r0, #4] +10017050: f8b5 801e ldrh.w r8, [r5, #30] +10017054: 602b str r3, [r5, #0] +10017056: f1b8 0f00 cmp.w r8, #0 +1001705a: d1d3 bne.n 10017004 +1001705c: f7ff f9ae bl 100163bc +10017060: 83e8 strh r0, [r5, #30] +10017062: 2800 cmp r0, #0 +10017064: d1ce bne.n 10017004 +10017066: 20fe movs r0, #254 ; 0xfe +10017068: e7e9 b.n 1001703e +1001706a: 4562 cmp r2, ip +1001706c: d1d0 bne.n 10017010 +1001706e: 4b32 ldr r3, [pc, #200] ; (10017138 ) +10017070: 4c32 ldr r4, [pc, #200] ; (1001713c ) +10017072: 681a ldr r2, [r3, #0] +10017074: 6823 ldr r3, [r4, #0] +10017076: 2700 movs r7, #0 +10017078: 4413 add r3, r2 +1001707a: f103 3eff add.w lr, r3, #4294967295 +1001707e: f241 62d0 movw r2, #5840 ; 0x16d0 +10017082: f44f 7006 mov.w r0, #536 ; 0x218 +10017086: 4631 mov r1, r6 +10017088: 656b str r3, [r5, #84] ; 0x54 +1001708a: 862a strh r2, [r5, #48] ; 0x30 +1001708c: 866a strh r2, [r5, #50] ; 0x32 +1001708e: f8a5 2064 strh.w r2, [r5, #100] ; 0x64 +10017092: f8c5 e04c str.w lr, [r5, #76] ; 0x4c +10017096: f8c5 e060 str.w lr, [r5, #96] ; 0x60 +1001709a: 62ef str r7, [r5, #44] ; 0x2c +1001709c: 636f str r7, [r5, #52] ; 0x34 +1001709e: 8768 strh r0, [r5, #58] ; 0x3a +100170a0: 6023 str r3, [r4, #0] +100170a2: f7ff ff87 bl 10016fb4 +100170a6: eb00 0280 add.w r2, r0, r0, lsl #2 +100170aa: 0052 lsls r2, r2, #1 +100170ac: 2301 movs r3, #1 +100170ae: 8768 strh r0, [r5, #58] ; 0x3a +100170b0: f8a5 2052 strh.w r2, [r5, #82] ; 0x52 +100170b4: f8c5 9088 str.w r9, [r5, #136] ; 0x88 +100170b8: f8a5 3050 strh.w r3, [r5, #80] ; 0x50 +100170bc: 4628 mov r0, r5 +100170be: 2102 movs r1, #2 +100170c0: f001 fc54 bl 1001896c +100170c4: 2800 cmp r0, #0 +100170c6: d1ba bne.n 1001703e +100170c8: 2302 movs r3, #2 +100170ca: 61ab str r3, [r5, #24] +100170cc: f1b8 0f00 cmp.w r8, #0 +100170d0: d012 beq.n 100170f8 +100170d2: 4b1b ldr r3, [pc, #108] ; (10017140 ) +100170d4: 681a ldr r2, [r3, #0] +100170d6: 42aa cmp r2, r5 +100170d8: d020 beq.n 1001711c +100170da: 491a ldr r1, [pc, #104] ; (10017144 ) +100170dc: 600a str r2, [r1, #0] +100170de: b15a cbz r2, 100170f8 +100170e0: 68d3 ldr r3, [r2, #12] +100170e2: 42ab cmp r3, r5 +100170e4: d01d beq.n 10017122 +100170e6: b1bb cbz r3, 10017118 +100170e8: 68da ldr r2, [r3, #12] +100170ea: 42aa cmp r2, r5 +100170ec: d001 beq.n 100170f2 +100170ee: 4613 mov r3, r2 +100170f0: e7f9 b.n 100170e6 +100170f2: 600b str r3, [r1, #0] +100170f4: 68ea ldr r2, [r5, #12] +100170f6: 60da str r2, [r3, #12] +100170f8: 4b13 ldr r3, [pc, #76] ; (10017148 ) +100170fa: 681a ldr r2, [r3, #0] +100170fc: 601d str r5, [r3, #0] +100170fe: 60ea str r2, [r5, #12] +10017100: f7fe fa3c bl 1001557c +10017104: 4b11 ldr r3, [pc, #68] ; (1001714c ) +10017106: 2201 movs r2, #1 +10017108: 4628 mov r0, r5 +1001710a: 701a strb r2, [r3, #0] +1001710c: f001 fce2 bl 10018ad4 +10017110: 2000 movs r0, #0 +10017112: b240 sxtb r0, r0 +10017114: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10017118: 600b str r3, [r1, #0] +1001711a: e7ed b.n 100170f8 +1001711c: 68ea ldr r2, [r5, #12] +1001711e: 601a str r2, [r3, #0] +10017120: e7ea b.n 100170f8 +10017122: 4613 mov r3, r2 +10017124: e7e6 b.n 100170f4 +10017126: 20f7 movs r0, #247 ; 0xf7 +10017128: e789 b.n 1001703e +1001712a: 20fa movs r0, #250 ; 0xfa +1001712c: e787 b.n 1001703e +1001712e: 20fc movs r0, #252 ; 0xfc +10017130: e785 b.n 1001703e +10017132: bf00 nop +10017134: 10047ce4 .word 0x10047ce4 +10017138: 100513b8 .word 0x100513b8 +1001713c: 1004d804 .word 0x1004d804 +10017140: 100513d4 .word 0x100513d4 +10017144: 100513d0 .word 0x100513d0 +10017148: 100513c4 .word 0x100513c4 +1001714c: 100513b4 .word 0x100513b4 + +10017150 : +10017150: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10017154: 6903 ldr r3, [r0, #16] +10017156: 4606 mov r6, r0 +10017158: 8998 ldrh r0, [r3, #12] +1001715a: 460d mov r5, r1 +1001715c: f7fc fe5a bl 10013e14 +10017160: 07c2 lsls r2, r0, #31 +10017162: d443 bmi.n 100171ec +10017164: 2d00 cmp r5, #0 +10017166: d031 beq.n 100171cc +10017168: 692b ldr r3, [r5, #16] +1001716a: 4f22 ldr r7, [pc, #136] ; (100171f4 ) +1001716c: 685a ldr r2, [r3, #4] +1001716e: 8931 ldrh r1, [r6, #8] +10017170: 6838 ldr r0, [r7, #0] +10017172: 1a89 subs r1, r1, r2 +10017174: 892c ldrh r4, [r5, #8] +10017176: 4401 add r1, r0 +10017178: 1b0c subs r4, r1, r4 +1001717a: 2c00 cmp r4, #0 +1001717c: bfb8 it lt +1001717e: 462c movlt r4, r5 +10017180: da10 bge.n 100171a4 +10017182: e028 b.n 100171d6 +10017184: 682c ldr r4, [r5, #0] +10017186: 4628 mov r0, r5 +10017188: f7ff fa38 bl 100165fc +1001718c: b1f4 cbz r4, 100171cc +1001718e: 6923 ldr r3, [r4, #16] +10017190: 8931 ldrh r1, [r6, #8] +10017192: 685a ldr r2, [r3, #4] +10017194: 683d ldr r5, [r7, #0] +10017196: 1a89 subs r1, r1, r2 +10017198: 8920 ldrh r0, [r4, #8] +1001719a: 4429 add r1, r5 +1001719c: 1a08 subs r0, r1, r0 +1001719e: 2800 cmp r0, #0 +100171a0: db18 blt.n 100171d4 +100171a2: 4625 mov r5, r4 +100171a4: 8998 ldrh r0, [r3, #12] +100171a6: f7fc fe35 bl 10013e14 +100171aa: 07c3 lsls r3, r0, #31 +100171ac: d5ea bpl.n 10017184 +100171ae: 6934 ldr r4, [r6, #16] +100171b0: 2001 movs r0, #1 +100171b2: f8b4 800c ldrh.w r8, [r4, #12] +100171b6: f7fc fe29 bl 10013e0c +100171ba: ea40 0008 orr.w r0, r0, r8 +100171be: 81a0 strh r0, [r4, #12] +100171c0: 682c ldr r4, [r5, #0] +100171c2: 4628 mov r0, r5 +100171c4: f7ff fa1a bl 100165fc +100171c8: 2c00 cmp r4, #0 +100171ca: d1e0 bne.n 1001718e +100171cc: 2400 movs r4, #0 +100171ce: 6034 str r4, [r6, #0] +100171d0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100171d4: 4628 mov r0, r5 +100171d6: 2900 cmp r1, #0 +100171d8: ddf9 ble.n 100171ce +100171da: 1a12 subs r2, r2, r0 +100171dc: b291 uxth r1, r2 +100171de: 8131 strh r1, [r6, #8] +100171e0: 6870 ldr r0, [r6, #4] +100171e2: f7fe ff0d bl 10016000 +100171e6: 6034 str r4, [r6, #0] +100171e8: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100171ec: 4628 mov r0, r5 +100171ee: f7ff fa13 bl 10016618 +100171f2: e7eb b.n 100171cc +100171f4: 100513d8 .word 0x100513d8 + +100171f8 : +100171f8: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100171fc: 4bb0 ldr r3, [pc, #704] ; (100174c0 ) +100171fe: 4604 mov r4, r0 +10017200: 781b ldrb r3, [r3, #0] +10017202: f8df 82d0 ldr.w r8, [pc, #720] ; 100174d4 +10017206: 06dd lsls r5, r3, #27 +10017208: d422 bmi.n 10017250 +1001720a: f8df 92cc ldr.w r9, [pc, #716] ; 100174d8 +1001720e: f8b9 3000 ldrh.w r3, [r9] +10017212: b11b cbz r3, 1001721c +10017214: 69a2 ldr r2, [r4, #24] +10017216: 2a06 cmp r2, #6 +10017218: f240 8083 bls.w 10017322 +1001721c: f8d8 2000 ldr.w r2, [r8] +10017220: 6ae3 ldr r3, [r4, #44] ; 0x2c +10017222: 1ad1 subs r1, r2, r3 +10017224: 2900 cmp r1, #0 +10017226: db05 blt.n 10017234 +10017228: 3201 adds r2, #1 +1001722a: 8e21 ldrh r1, [r4, #48] ; 0x30 +1001722c: 1ad3 subs r3, r2, r3 +1001722e: 1a5b subs r3, r3, r1 +10017230: 2b00 cmp r3, #0 +10017232: dd0b ble.n 1001724c +10017234: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10017238: f043 0302 orr.w r3, r3, #2 +1001723c: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10017240: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10017244: 1ac3 subs r3, r0, r3 +10017246: 2b00 cmp r3, #0 +10017248: f300 81fa bgt.w 10017640 +1001724c: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10017250: 6d83 ldr r3, [r0, #88] ; 0x58 +10017252: f8d8 2000 ldr.w r2, [r8] +10017256: f8b0 5064 ldrh.w r5, [r0, #100] ; 0x64 +1001725a: 1a99 subs r1, r3, r2 +1001725c: 2900 cmp r1, #0 +1001725e: 6dc0 ldr r0, [r0, #92] ; 0x5c +10017260: 4e98 ldr r6, [pc, #608] ; (100174c4 ) +10017262: f2c0 80af blt.w 100173c4 +10017266: 4293 cmp r3, r2 +10017268: 6833 ldr r3, [r6, #0] +1001726a: f000 80a7 beq.w 100173bc +1001726e: 4298 cmp r0, r3 +10017270: f000 811e beq.w 100174b0 +10017274: 6ce1 ldr r1, [r4, #76] ; 0x4c +10017276: 1a5a subs r2, r3, r1 +10017278: 2a00 cmp r2, #0 +1001727a: f340 80fe ble.w 1001747a +1001727e: 6d61 ldr r1, [r4, #84] ; 0x54 +10017280: 1a59 subs r1, r3, r1 +10017282: 2900 cmp r1, #0 +10017284: f340 812a ble.w 100174dc +10017288: 2300 movs r3, #0 +1001728a: f8df 924c ldr.w r9, [pc, #588] ; 100174d8 +1001728e: f8a4 3068 strh.w r3, [r4, #104] ; 0x68 +10017292: 6f23 ldr r3, [r4, #112] ; 0x70 +10017294: 2b00 cmp r3, #0 +10017296: d063 beq.n 10017360 +10017298: 4f8a ldr r7, [pc, #552] ; (100174c4 ) +1001729a: e00e b.n 100172ba +1001729c: 6868 ldr r0, [r5, #4] +1001729e: f8b4 a06c ldrh.w sl, [r4, #108] ; 0x6c +100172a2: f7fe fed7 bl 10016054 +100172a6: ebc0 000a rsb r0, r0, sl +100172aa: f8a4 006c strh.w r0, [r4, #108] ; 0x6c +100172ae: 4628 mov r0, r5 +100172b0: f7ff f9a4 bl 100165fc +100172b4: 6f23 ldr r3, [r4, #112] ; 0x70 +100172b6: 2b00 cmp r3, #0 +100172b8: d052 beq.n 10017360 +100172ba: 691b ldr r3, [r3, #16] +100172bc: 6835 ldr r5, [r6, #0] +100172be: 6858 ldr r0, [r3, #4] +100172c0: f7fc fdae bl 10013e20 +100172c4: 6f22 ldr r2, [r4, #112] ; 0x70 +100172c6: 4683 mov fp, r0 +100172c8: 6913 ldr r3, [r2, #16] +100172ca: f8b2 a008 ldrh.w sl, [r2, #8] +100172ce: 8998 ldrh r0, [r3, #12] +100172d0: f7fc fda0 bl 10013e14 +100172d4: f010 0003 ands.w r0, r0, #3 +100172d8: bf18 it ne +100172da: 2001 movne r0, #1 +100172dc: ebcb 0505 rsb r5, fp, r5 +100172e0: eb0a 0300 add.w r3, sl, r0 +100172e4: 1aeb subs r3, r5, r3 +100172e6: 2b00 cmp r3, #0 +100172e8: db3a blt.n 10017360 +100172ea: 683a ldr r2, [r7, #0] +100172ec: 6d63 ldr r3, [r4, #84] ; 0x54 +100172ee: 1ad3 subs r3, r2, r3 +100172f0: 2b00 cmp r3, #0 +100172f2: dc35 bgt.n 10017360 +100172f4: 6f25 ldr r5, [r4, #112] ; 0x70 +100172f6: 682b ldr r3, [r5, #0] +100172f8: 6723 str r3, [r4, #112] ; 0x70 +100172fa: b373 cbz r3, 1001735a +100172fc: 6868 ldr r0, [r5, #4] +100172fe: f7fe fea9 bl 10016054 +10017302: f8b4 3068 ldrh.w r3, [r4, #104] ; 0x68 +10017306: 2b00 cmp r3, #0 +10017308: d0c8 beq.n 1001729c +1001730a: 692b ldr r3, [r5, #16] +1001730c: 8998 ldrh r0, [r3, #12] +1001730e: f7fc fd81 bl 10013e14 +10017312: 07c3 lsls r3, r0, #31 +10017314: d5c2 bpl.n 1001729c +10017316: f8b4 3068 ldrh.w r3, [r4, #104] ; 0x68 +1001731a: 3b01 subs r3, #1 +1001731c: f8a4 3068 strh.w r3, [r4, #104] ; 0x68 +10017320: e7bc b.n 1001729c +10017322: 6ae2 ldr r2, [r4, #44] ; 0x2c +10017324: f8d8 1000 ldr.w r1, [r8] +10017328: 1a56 subs r6, r2, r1 +1001732a: 2e01 cmp r6, #1 +1001732c: d405 bmi.n 1001733a +1001732e: 1c50 adds r0, r2, #1 +10017330: 1a40 subs r0, r0, r1 +10017332: 1ac3 subs r3, r0, r3 +10017334: 2b00 cmp r3, #0 +10017336: f340 8140 ble.w 100175ba +1001733a: 1a8b subs r3, r1, r2 +1001733c: 2b00 cmp r3, #0 +1001733e: f2c0 8095 blt.w 1001746c +10017342: 8e23 ldrh r3, [r4, #48] ; 0x30 +10017344: f1c3 0301 rsb r3, r3, #1 +10017348: 440b add r3, r1 +1001734a: 1a9b subs r3, r3, r2 +1001734c: 2b00 cmp r3, #0 +1001734e: dd54 ble.n 100173fa +10017350: 4620 mov r0, r4 +10017352: e8bd 4ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10017356: f001 bb8d b.w 10018a74 +1001735a: f8a4 306e strh.w r3, [r4, #110] ; 0x6e +1001735e: e7cd b.n 100172fc +10017360: 6be3 ldr r3, [r4, #60] ; 0x3c +10017362: 2b00 cmp r3, #0 +10017364: f43f af53 beq.w 1001720e +10017368: 6831 ldr r1, [r6, #0] +1001736a: 6c22 ldr r2, [r4, #64] ; 0x40 +1001736c: 1a52 subs r2, r2, r1 +1001736e: 2a00 cmp r2, #0 +10017370: f6bf af4d bge.w 1001720e +10017374: 4a54 ldr r2, [pc, #336] ; (100174c8 ) +10017376: f8b4 1044 ldrh.w r1, [r4, #68] ; 0x44 +1001737a: 6810 ldr r0, [r2, #0] +1001737c: f341 02cc sbfx r2, r1, #3, #13 +10017380: 1ac3 subs r3, r0, r3 +10017382: 1a9a subs r2, r3, r2 +10017384: b292 uxth r2, r2 +10017386: b293 uxth r3, r2 +10017388: 0418 lsls r0, r3, #16 +1001738a: bf48 it mi +1001738c: 4253 negmi r3, r2 +1001738e: 4411 add r1, r2 +10017390: f8b4 2046 ldrh.w r2, [r4, #70] ; 0x46 +10017394: bf48 it mi +10017396: b29b uxthmi r3, r3 +10017398: f342 008d sbfx r0, r2, #2, #14 +1001739c: 1a12 subs r2, r2, r0 +1001739e: b289 uxth r1, r1 +100173a0: 4413 add r3, r2 +100173a2: b29b uxth r3, r3 +100173a4: f8a4 1044 strh.w r1, [r4, #68] ; 0x44 +100173a8: f341 01cc sbfx r1, r1, #3, #13 +100173ac: 4419 add r1, r3 +100173ae: 2200 movs r2, #0 +100173b0: f8a4 1048 strh.w r1, [r4, #72] ; 0x48 +100173b4: f8a4 3046 strh.w r3, [r4, #70] ; 0x46 +100173b8: 63e2 str r2, [r4, #60] ; 0x3c +100173ba: e728 b.n 1001720e +100173bc: 1ac1 subs r1, r0, r3 +100173be: 2900 cmp r1, #0 +100173c0: f6bf af55 bge.w 1001726e +100173c4: 4941 ldr r1, [pc, #260] ; (100174cc ) +100173c6: 6833 ldr r3, [r6, #0] +100173c8: 6809 ldr r1, [r1, #0] +100173ca: 89c9 ldrh r1, [r1, #14] +100173cc: f8b4 7066 ldrh.w r7, [r4, #102] ; 0x66 +100173d0: 65a2 str r2, [r4, #88] ; 0x58 +100173d2: 428f cmp r7, r1 +100173d4: f8a4 1064 strh.w r1, [r4, #100] ; 0x64 +100173d8: bf38 it cc +100173da: f8a4 1066 strhcc.w r1, [r4, #102] ; 0x66 +100173de: 65e3 str r3, [r4, #92] ; 0x5c +100173e0: f894 20a1 ldrb.w r2, [r4, #161] ; 0xa1 +100173e4: 2900 cmp r1, #0 +100173e6: d15c bne.n 100174a2 +100173e8: 2a00 cmp r2, #0 +100173ea: f47f af43 bne.w 10017274 +100173ee: 2201 movs r2, #1 +100173f0: f884 10a0 strb.w r1, [r4, #160] ; 0xa0 +100173f4: f884 20a1 strb.w r2, [r4, #161] ; 0xa1 +100173f8: e73c b.n 10017274 +100173fa: 4291 cmp r1, r2 +100173fc: f000 8176 beq.w 100176ec +10017400: 4620 mov r0, r4 +10017402: f001 fb37 bl 10018a74 +10017406: 6fa5 ldr r5, [r4, #120] ; 0x78 +10017408: 2d00 cmp r5, #0 +1001740a: f000 8314 beq.w 10017a36 +1001740e: f8d8 0000 ldr.w r0, [r8] +10017412: 2600 movs r6, #0 +10017414: f100 3cff add.w ip, r0, #4294967295 +10017418: 1c47 adds r7, r0, #1 +1001741a: e00f b.n 1001743c +1001741c: 6932 ldr r2, [r6, #16] +1001741e: 6852 ldr r2, [r2, #4] +10017420: ebc2 020c rsb r2, r2, ip +10017424: 2a00 cmp r2, #0 +10017426: db03 blt.n 10017430 +10017428: f1ba 0f00 cmp.w sl, #0 +1001742c: f340 8289 ble.w 10017942 +10017430: 682a ldr r2, [r5, #0] +10017432: 462e mov r6, r5 +10017434: 2a00 cmp r2, #0 +10017436: f43f af05 beq.w 10017244 +1001743a: 4615 mov r5, r2 +1001743c: 6929 ldr r1, [r5, #16] +1001743e: 684b ldr r3, [r1, #4] +10017440: 4283 cmp r3, r0 +10017442: ebc3 0a07 rsb sl, r3, r7 +10017446: f000 825d beq.w 10017904 +1001744a: 2e00 cmp r6, #0 +1001744c: d1e6 bne.n 1001741c +1001744e: 1ac2 subs r2, r0, r3 +10017450: 2a00 cmp r2, #0 +10017452: daed bge.n 10017430 +10017454: 481e ldr r0, [pc, #120] ; (100174d0 ) +10017456: f7ff f8e9 bl 1001662c +1001745a: 2800 cmp r0, #0 +1001745c: f43f aef6 beq.w 1001724c +10017460: 67a0 str r0, [r4, #120] ; 0x78 +10017462: 4629 mov r1, r5 +10017464: e8bd 4ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10017468: f7ff be72 b.w 10017150 +1001746c: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10017470: f043 0302 orr.w r3, r3, #2 +10017474: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10017478: e76a b.n 10017350 +1001747a: f8df 905c ldr.w r9, [pc, #92] ; 100174d8 +1001747e: 2700 movs r7, #0 +10017480: f8b9 2000 ldrh.w r2, [r9] +10017484: f8a4 7068 strh.w r7, [r4, #104] ; 0x68 +10017488: b93a cbnz r2, 1001749a +1001748a: f8b4 7064 ldrh.w r7, [r4, #100] ; 0x64 +1001748e: 6de2 ldr r2, [r4, #92] ; 0x5c +10017490: 4428 add r0, r5 +10017492: 443a add r2, r7 +10017494: 4282 cmp r2, r0 +10017496: f000 80b4 beq.w 10017602 +1001749a: 2300 movs r3, #0 +1001749c: f884 304b strb.w r3, [r4, #75] ; 0x4b +100174a0: e6f7 b.n 10017292 +100174a2: 2a00 cmp r2, #0 +100174a4: f43f aee6 beq.w 10017274 +100174a8: 2200 movs r2, #0 +100174aa: f884 20a1 strb.w r2, [r4, #161] ; 0xa1 +100174ae: e6e1 b.n 10017274 +100174b0: 4b06 ldr r3, [pc, #24] ; (100174cc ) +100174b2: 681b ldr r3, [r3, #0] +100174b4: 89d9 ldrh r1, [r3, #14] +100174b6: 4603 mov r3, r0 +100174b8: 428d cmp r5, r1 +100174ba: f4bf aedb bcs.w 10017274 +100174be: e785 b.n 100173cc +100174c0: 100513e8 .word 0x100513e8 +100174c4: 100513e4 .word 0x100513e4 +100174c8: 100513b8 .word 0x100513b8 +100174cc: 100513ec .word 0x100513ec +100174d0: 100513f4 .word 0x100513f4 +100174d4: 100513d8 .word 0x100513d8 +100174d8: 100513e0 .word 0x100513e0 +100174dc: f894 1022 ldrb.w r1, [r4, #34] ; 0x22 +100174e0: 0748 lsls r0, r1, #29 +100174e2: d507 bpl.n 100174f4 +100174e4: f8b4 0052 ldrh.w r0, [r4, #82] ; 0x52 +100174e8: f021 0104 bic.w r1, r1, #4 +100174ec: f884 1022 strb.w r1, [r4, #34] ; 0x22 +100174f0: f8a4 0050 strh.w r0, [r4, #80] ; 0x50 +100174f4: f8b4 706a ldrh.w r7, [r4, #106] ; 0x6a +100174f8: f8b4 1046 ldrh.w r1, [r4, #70] ; 0x46 +100174fc: f9b4 5044 ldrsh.w r5, [r4, #68] ; 0x44 +10017500: 69a0 ldr r0, [r4, #24] +10017502: b292 uxth r2, r2 +10017504: eb01 05e5 add.w r5, r1, r5, asr #3 +10017508: 4417 add r7, r2 +1001750a: 2100 movs r1, #0 +1001750c: 2803 cmp r0, #3 +1001750e: f8a4 2068 strh.w r2, [r4, #104] ; 0x68 +10017512: 64e3 str r3, [r4, #76] ; 0x4c +10017514: f8a4 706a strh.w r7, [r4, #106] ; 0x6a +10017518: f8a4 5048 strh.w r5, [r4, #72] ; 0x48 +1001751c: f884 104a strb.w r1, [r4, #74] ; 0x4a +10017520: f884 104b strb.w r1, [r4, #75] ; 0x4b +10017524: d924 bls.n 10017570 +10017526: f8b4 2052 ldrh.w r2, [r4, #82] ; 0x52 +1001752a: f8b4 3050 ldrh.w r3, [r4, #80] ; 0x50 +1001752e: 429a cmp r2, r3 +10017530: 8f62 ldrh r2, [r4, #58] ; 0x3a +10017532: f240 81f7 bls.w 10017924 +10017536: 441a add r2, r3 +10017538: b292 uxth r2, r2 +1001753a: 4293 cmp r3, r2 +1001753c: d218 bcs.n 10017570 +1001753e: f8a4 2050 strh.w r2, [r4, #80] ; 0x50 +10017542: e015 b.n 10017570 +10017544: 692b ldr r3, [r5, #16] +10017546: 8998 ldrh r0, [r3, #12] +10017548: f7fc fc64 bl 10013e14 +1001754c: 07c2 lsls r2, r0, #31 +1001754e: d504 bpl.n 1001755a +10017550: f8b4 3068 ldrh.w r3, [r4, #104] ; 0x68 +10017554: 3b01 subs r3, #1 +10017556: f8a4 3068 strh.w r3, [r4, #104] ; 0x68 +1001755a: 6868 ldr r0, [r5, #4] +1001755c: f8b4 706c ldrh.w r7, [r4, #108] ; 0x6c +10017560: f7fe fd78 bl 10016054 +10017564: 1a38 subs r0, r7, r0 +10017566: f8a4 006c strh.w r0, [r4, #108] ; 0x6c +1001756a: 4628 mov r0, r5 +1001756c: f7ff f846 bl 100165fc +10017570: 6f63 ldr r3, [r4, #116] ; 0x74 +10017572: 2b00 cmp r3, #0 +10017574: f000 8208 beq.w 10017988 +10017578: 691b ldr r3, [r3, #16] +1001757a: 6858 ldr r0, [r3, #4] +1001757c: f7fc fc50 bl 10013e20 +10017580: 6f63 ldr r3, [r4, #116] ; 0x74 +10017582: 4605 mov r5, r0 +10017584: 691a ldr r2, [r3, #16] +10017586: 891f ldrh r7, [r3, #8] +10017588: 8990 ldrh r0, [r2, #12] +1001758a: f7fc fc43 bl 10013e14 +1001758e: 6832 ldr r2, [r6, #0] +10017590: f010 0003 ands.w r0, r0, #3 +10017594: bf18 it ne +10017596: 2001 movne r0, #1 +10017598: 183b adds r3, r7, r0 +1001759a: 1aaa subs r2, r5, r2 +1001759c: 4413 add r3, r2 +1001759e: 2b00 cmp r3, #0 +100175a0: f300 8098 bgt.w 100176d4 +100175a4: 6f65 ldr r5, [r4, #116] ; 0x74 +100175a6: 682b ldr r3, [r5, #0] +100175a8: 6868 ldr r0, [r5, #4] +100175aa: 6763 str r3, [r4, #116] ; 0x74 +100175ac: f7fe fd52 bl 10016054 +100175b0: f8b4 3068 ldrh.w r3, [r4, #104] ; 0x68 +100175b4: 2b00 cmp r3, #0 +100175b6: d0d0 beq.n 1001755a +100175b8: e7c4 b.n 10017544 +100175ba: 4d9e ldr r5, [pc, #632] ; (10017834 ) +100175bc: 4633 mov r3, r6 +100175be: 6868 ldr r0, [r5, #4] +100175c0: 8942 ldrh r2, [r0, #10] +100175c2: 4296 cmp r6, r2 +100175c4: f340 81b8 ble.w 10017938 +100175c8: 8901 ldrh r1, [r0, #8] +100175ca: 2600 movs r6, #0 +100175cc: 1ac9 subs r1, r1, r3 +100175ce: b289 uxth r1, r1 +100175d0: 8146 strh r6, [r0, #10] +100175d2: 8101 strh r1, [r0, #8] +100175d4: 6800 ldr r0, [r0, #0] +100175d6: 1a9b subs r3, r3, r2 +100175d8: 8942 ldrh r2, [r0, #10] +100175da: 429a cmp r2, r3 +100175dc: dbf8 blt.n 100175d0 +100175de: 4259 negs r1, r3 +100175e0: b209 sxth r1, r1 +100175e2: f7fe fc0b bl 10015dfc +100175e6: 8929 ldrh r1, [r5, #8] +100175e8: f8d8 2000 ldr.w r2, [r8] +100175ec: 6ae3 ldr r3, [r4, #44] ; 0x2c +100175ee: 440a add r2, r1 +100175f0: 6929 ldr r1, [r5, #16] +100175f2: 1ad0 subs r0, r2, r3 +100175f4: 8128 strh r0, [r5, #8] +100175f6: 461a mov r2, r3 +100175f8: 604b str r3, [r1, #4] +100175fa: f8c8 3000 str.w r3, [r8] +100175fe: 4619 mov r1, r3 +10017600: e69f b.n 10017342 +10017602: f9b4 2038 ldrsh.w r2, [r4, #56] ; 0x38 +10017606: 2a00 cmp r2, #0 +10017608: f6ff af47 blt.w 1001749a +1001760c: 4299 cmp r1, r3 +1001760e: f47f af44 bne.w 1001749a +10017612: f894 304b ldrb.w r3, [r4, #75] ; 0x4b +10017616: 1c5a adds r2, r3, #1 +10017618: b2d2 uxtb r2, r2 +1001761a: 4293 cmp r3, r2 +1001761c: bf3c itt cc +1001761e: 4613 movcc r3, r2 +10017620: f884 204b strbcc.w r2, [r4, #75] ; 0x4b +10017624: 2b03 cmp r3, #3 +10017626: f240 821a bls.w 10017a5e +1001762a: f8b4 2050 ldrh.w r2, [r4, #80] ; 0x50 +1001762e: 8f63 ldrh r3, [r4, #58] ; 0x3a +10017630: 4413 add r3, r2 +10017632: b29b uxth r3, r3 +10017634: 429a cmp r2, r3 +10017636: f4bf ae2c bcs.w 10017292 +1001763a: f8a4 3050 strh.w r3, [r4, #80] ; 0x50 +1001763e: e628 b.n 10017292 +10017640: 8988 ldrh r0, [r1, #12] +10017642: f7fc fbe7 bl 10013e14 +10017646: 07c2 lsls r2, r0, #31 +10017648: f53f ae00 bmi.w 1001724c +1001764c: 4879 ldr r0, [pc, #484] ; (10017834 ) +1001764e: f7fe ffed bl 1001662c +10017652: 6028 str r0, [r5, #0] +10017654: 2800 cmp r0, #0 +10017656: f43f adf9 beq.w 1001724c +1001765a: 692a ldr r2, [r5, #16] +1001765c: f8d8 3000 ldr.w r3, [r8] +10017660: 8929 ldrh r1, [r5, #8] +10017662: 6852 ldr r2, [r2, #4] +10017664: 1ac9 subs r1, r1, r3 +10017666: 4411 add r1, r2 +10017668: 2900 cmp r1, #0 +1001766a: 4e73 ldr r6, [pc, #460] ; (10017838 ) +1001766c: dd06 ble.n 1001767c +1001766e: 1a9b subs r3, r3, r2 +10017670: b299 uxth r1, r3 +10017672: 8129 strh r1, [r5, #8] +10017674: 6868 ldr r0, [r5, #4] +10017676: f7fe fcc3 bl 10016000 +1001767a: 6833 ldr r3, [r6, #0] +1001767c: f8b9 0000 ldrh.w r0, [r9] +10017680: 8e21 ldrh r1, [r4, #48] ; 0x30 +10017682: 6ae2 ldr r2, [r4, #44] ; 0x2c +10017684: 4403 add r3, r0 +10017686: 440a add r2, r1 +10017688: 4293 cmp r3, r2 +1001768a: f67f addf bls.w 1001724c +1001768e: 682b ldr r3, [r5, #0] +10017690: 691b ldr r3, [r3, #16] +10017692: 8998 ldrh r0, [r3, #12] +10017694: f7fc fbbe bl 10013e14 +10017698: 07c3 lsls r3, r0, #31 +1001769a: f100 81ec bmi.w 10017a76 +1001769e: 8e22 ldrh r2, [r4, #48] ; 0x30 +100176a0: 6ae1 ldr r1, [r4, #44] ; 0x2c +100176a2: f8d8 3000 ldr.w r3, [r8] +100176a6: 4411 add r1, r2 +100176a8: 1ac9 subs r1, r1, r3 +100176aa: 682b ldr r3, [r5, #0] +100176ac: b289 uxth r1, r1 +100176ae: 8119 strh r1, [r3, #8] +100176b0: 6858 ldr r0, [r3, #4] +100176b2: f7fe fca5 bl 10016000 +100176b6: 682b ldr r3, [r5, #0] +100176b8: 691a ldr r2, [r3, #16] +100176ba: 891c ldrh r4, [r3, #8] +100176bc: 8990 ldrh r0, [r2, #12] +100176be: f7fc fba9 bl 10013e14 +100176c2: f010 0003 ands.w r0, r0, #3 +100176c6: bf18 it ne +100176c8: 2001 movne r0, #1 +100176ca: 4420 add r0, r4 +100176cc: f8a9 0000 strh.w r0, [r9] +100176d0: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +100176d4: 6f63 ldr r3, [r4, #116] ; 0x74 +100176d6: 2b00 cmp r3, #0 +100176d8: f000 8156 beq.w 10017988 +100176dc: 2300 movs r3, #0 +100176de: 8723 strh r3, [r4, #56] ; 0x38 +100176e0: 2300 movs r3, #0 +100176e2: f884 3023 strb.w r3, [r4, #35] ; 0x23 +100176e6: f8df 915c ldr.w r9, [pc, #348] ; 10017844 +100176ea: e5d2 b.n 10017292 +100176ec: 4d51 ldr r5, [pc, #324] ; (10017834 ) +100176ee: 692b ldr r3, [r5, #16] +100176f0: 892e ldrh r6, [r5, #8] +100176f2: 8998 ldrh r0, [r3, #12] +100176f4: f7fc fb8e bl 10013e14 +100176f8: f010 0003 ands.w r0, r0, #3 +100176fc: bf18 it ne +100176fe: 2001 movne r0, #1 +10017700: 1833 adds r3, r6, r0 +10017702: 8e22 ldrh r2, [r4, #48] ; 0x30 +10017704: b29b uxth r3, r3 +10017706: 429a cmp r2, r3 +10017708: f8a9 3000 strh.w r3, [r9] +1001770c: f0c0 8140 bcc.w 10017990 +10017710: 6fa3 ldr r3, [r4, #120] ; 0x78 +10017712: 2b00 cmp r3, #0 +10017714: d05f beq.n 100177d6 +10017716: 692b ldr r3, [r5, #16] +10017718: 8998 ldrh r0, [r3, #12] +1001771a: f7fc fb7b bl 10013e14 +1001771e: 07c0 lsls r0, r0, #31 +10017720: d456 bmi.n 100177d0 +10017722: 6fa7 ldr r7, [r4, #120] ; 0x78 +10017724: 2f00 cmp r7, #0 +10017726: f000 8157 beq.w 100179d8 +1001772a: 693b ldr r3, [r7, #16] +1001772c: f8b9 2000 ldrh.w r2, [r9] +10017730: 6858 ldr r0, [r3, #4] +10017732: f8d8 6000 ldr.w r6, [r8] +10017736: 1a11 subs r1, r2, r0 +10017738: f8b7 e008 ldrh.w lr, [r7, #8] +1001773c: 4431 add r1, r6 +1001773e: ebce 0e01 rsb lr, lr, r1 +10017742: f1be 0f00 cmp.w lr, #0 +10017746: f2c0 8192 blt.w 10017a6e +1001774a: f8df a0e8 ldr.w sl, [pc, #232] ; 10017834 +1001774e: e017 b.n 10017780 +10017750: 683e ldr r6, [r7, #0] +10017752: 4638 mov r0, r7 +10017754: f7fe ff52 bl 100165fc +10017758: 2e00 cmp r6, #0 +1001775a: f000 813d beq.w 100179d8 +1001775e: 6933 ldr r3, [r6, #16] +10017760: f8b9 2000 ldrh.w r2, [r9] +10017764: 6858 ldr r0, [r3, #4] +10017766: f8d8 7000 ldr.w r7, [r8] +1001776a: 1a11 subs r1, r2, r0 +1001776c: f8b6 e008 ldrh.w lr, [r6, #8] +10017770: 4439 add r1, r7 +10017772: ebce 0e01 rsb lr, lr, r1 +10017776: f1be 0f00 cmp.w lr, #0 +1001777a: f2c0 8135 blt.w 100179e8 +1001777e: 4637 mov r7, r6 +10017780: 8998 ldrh r0, [r3, #12] +10017782: f7fc fb47 bl 10013e14 +10017786: 07c1 lsls r1, r0, #31 +10017788: d5e2 bpl.n 10017750 +1001778a: 692b ldr r3, [r5, #16] +1001778c: 8998 ldrh r0, [r3, #12] +1001778e: f7fc fb41 bl 10013e14 +10017792: 0782 lsls r2, r0, #30 +10017794: d4dc bmi.n 10017750 +10017796: f8da 6010 ldr.w r6, [sl, #16] +1001779a: 2001 movs r0, #1 +1001779c: f8b6 b00c ldrh.w fp, [r6, #12] +100177a0: f7fc fb34 bl 10013e0c +100177a4: f8da 3010 ldr.w r3, [sl, #16] +100177a8: ea40 000b orr.w r0, r0, fp +100177ac: 81b0 strh r0, [r6, #12] +100177ae: 8998 ldrh r0, [r3, #12] +100177b0: f8ba 6008 ldrh.w r6, [sl, #8] +100177b4: f7fc fb2e bl 10013e14 +100177b8: f010 0003 ands.w r0, r0, #3 +100177bc: bf18 it ne +100177be: 2001 movne r0, #1 +100177c0: 4430 add r0, r6 +100177c2: f8a9 0000 strh.w r0, [r9] +100177c6: e7c3 b.n 10017750 +100177c8: 6803 ldr r3, [r0, #0] +100177ca: 67a3 str r3, [r4, #120] ; 0x78 +100177cc: f7fe ff16 bl 100165fc +100177d0: 6fa0 ldr r0, [r4, #120] ; 0x78 +100177d2: 2800 cmp r0, #0 +100177d4: d1f8 bne.n 100177c8 +100177d6: f8b9 3000 ldrh.w r3, [r9] +100177da: f8d8 e000 ldr.w lr, [r8] +100177de: 461a mov r2, r3 +100177e0: 8e21 ldrh r1, [r4, #48] ; 0x30 +100177e2: 4472 add r2, lr +100177e4: 1acb subs r3, r1, r3 +100177e6: 62e2 str r2, [r4, #44] ; 0x2c +100177e8: 8623 strh r3, [r4, #48] ; 0x30 +100177ea: 4620 mov r0, r4 +100177ec: f7fe fec8 bl 10016580 +100177f0: 686b ldr r3, [r5, #4] +100177f2: 4910 ldr r1, [pc, #64] ; (10017834 ) +100177f4: 891a ldrh r2, [r3, #8] +100177f6: b11a cbz r2, 10017800 +100177f8: 4810 ldr r0, [pc, #64] ; (1001783c ) +100177fa: 2200 movs r2, #0 +100177fc: 6003 str r3, [r0, #0] +100177fe: 604a str r2, [r1, #4] +10017800: 692b ldr r3, [r5, #16] +10017802: 8998 ldrh r0, [r3, #12] +10017804: f7fc fb06 bl 10013e14 +10017808: 07c5 lsls r5, r0, #31 +1001780a: d504 bpl.n 10017816 +1001780c: 4b0c ldr r3, [pc, #48] ; (10017840 ) +1001780e: 781a ldrb r2, [r3, #0] +10017810: f042 0220 orr.w r2, r2, #32 +10017814: 701a strb r2, [r3, #0] +10017816: 6fa5 ldr r5, [r4, #120] ; 0x78 +10017818: 2d00 cmp r5, #0 +1001781a: d067 beq.n 100178ec +1001781c: 692a ldr r2, [r5, #16] +1001781e: 6ae3 ldr r3, [r4, #44] ; 0x2c +10017820: 6856 ldr r6, [r2, #4] +10017822: 429e cmp r6, r3 +10017824: d162 bne.n 100178ec +10017826: f8df 9014 ldr.w r9, [pc, #20] ; 1001783c +1001782a: 4f05 ldr r7, [pc, #20] ; (10017840 ) +1001782c: f04f 0a00 mov.w sl, #0 +10017830: e02b b.n 1001788a +10017832: bf00 nop +10017834: 100513f4 .word 0x100513f4 +10017838: 100513d8 .word 0x100513d8 +1001783c: 100513f0 .word 0x100513f0 +10017840: 100513e9 .word 0x100513e9 +10017844: 100513e0 .word 0x100513e0 +10017848: f7fe fc1c bl 10016084 +1001784c: f8c5 a004 str.w sl, [r5, #4] +10017850: 692b ldr r3, [r5, #16] +10017852: 8998 ldrh r0, [r3, #12] +10017854: f7fc fade bl 10013e14 +10017858: 07c1 lsls r1, r0, #31 +1001785a: d509 bpl.n 10017870 +1001785c: 69a3 ldr r3, [r4, #24] +1001785e: 783a ldrb r2, [r7, #0] +10017860: 2b04 cmp r3, #4 +10017862: f042 0220 orr.w r2, r2, #32 +10017866: bf08 it eq +10017868: 2307 moveq r3, #7 +1001786a: 703a strb r2, [r7, #0] +1001786c: bf08 it eq +1001786e: 61a3 streq r3, [r4, #24] +10017870: 682b ldr r3, [r5, #0] +10017872: 4628 mov r0, r5 +10017874: 67a3 str r3, [r4, #120] ; 0x78 +10017876: f7fe fec1 bl 100165fc +1001787a: 6fa5 ldr r5, [r4, #120] ; 0x78 +1001787c: 2d00 cmp r5, #0 +1001787e: d035 beq.n 100178ec +10017880: 692a ldr r2, [r5, #16] +10017882: 6ae3 ldr r3, [r4, #44] ; 0x2c +10017884: 6856 ldr r6, [r2, #4] +10017886: 429e cmp r6, r3 +10017888: d130 bne.n 100178ec +1001788a: f8c8 6000 str.w r6, [r8] +1001788e: 8990 ldrh r0, [r2, #12] +10017890: f8b5 b008 ldrh.w fp, [r5, #8] +10017894: f7fc fabe bl 10013e14 +10017898: f010 0003 ands.w r0, r0, #3 +1001789c: bf18 it ne +1001789e: 2001 movne r0, #1 +100178a0: 4458 add r0, fp +100178a2: 692b ldr r3, [r5, #16] +100178a4: 4406 add r6, r0 +100178a6: 62e6 str r6, [r4, #44] ; 0x2c +100178a8: 8998 ldrh r0, [r3, #12] +100178aa: f7fc fab3 bl 10013e14 +100178ae: 692b ldr r3, [r5, #16] +100178b0: f8b4 b030 ldrh.w fp, [r4, #48] ; 0x30 +100178b4: 8998 ldrh r0, [r3, #12] +100178b6: 892e ldrh r6, [r5, #8] +100178b8: f7fc faac bl 10013e14 +100178bc: f010 0003 ands.w r0, r0, #3 +100178c0: bf18 it ne +100178c2: 2001 movne r0, #1 +100178c4: ebc6 060b rsb r6, r6, fp +100178c8: 1a30 subs r0, r6, r0 +100178ca: 8620 strh r0, [r4, #48] ; 0x30 +100178cc: 4620 mov r0, r4 +100178ce: f7fe fe57 bl 10016580 +100178d2: 686b ldr r3, [r5, #4] +100178d4: 891a ldrh r2, [r3, #8] +100178d6: 2a00 cmp r2, #0 +100178d8: d0ba beq.n 10017850 +100178da: f8d9 2000 ldr.w r2, [r9] +100178de: 4619 mov r1, r3 +100178e0: 4610 mov r0, r2 +100178e2: 2a00 cmp r2, #0 +100178e4: d1b0 bne.n 10017848 +100178e6: f8c9 3000 str.w r3, [r9] +100178ea: e7af b.n 1001784c +100178ec: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +100178f0: 07d8 lsls r0, r3, #31 +100178f2: d543 bpl.n 1001797c +100178f4: f023 0301 bic.w r3, r3, #1 +100178f8: f043 0302 orr.w r3, r3, #2 +100178fc: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10017900: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10017904: 4863 ldr r0, [pc, #396] ; (10017a94 ) +10017906: 892b ldrh r3, [r5, #8] +10017908: 8902 ldrh r2, [r0, #8] +1001790a: 429a cmp r2, r3 +1001790c: f67f ac9e bls.w 1001724c +10017910: f7fe fe8c bl 1001662c +10017914: 2800 cmp r0, #0 +10017916: f43f ac99 beq.w 1001724c +1001791a: 2e00 cmp r6, #0 +1001791c: f000 80a5 beq.w 10017a6a +10017920: 6030 str r0, [r6, #0] +10017922: e59e b.n 10017462 +10017924: fb02 f202 mul.w r2, r2, r2 +10017928: fb92 f2f3 sdiv r2, r2, r3 +1001792c: 441a add r2, r3 +1001792e: b292 uxth r2, r2 +10017930: 4293 cmp r3, r2 +10017932: f4bf ae1d bcs.w 10017570 +10017936: e602 b.n 1001753e +10017938: 4271 negs r1, r6 +1001793a: b209 sxth r1, r1 +1001793c: f7fe fa5e bl 10015dfc +10017940: e651 b.n 100175e6 +10017942: 4854 ldr r0, [pc, #336] ; (10017a94 ) +10017944: f7fe fe72 bl 1001662c +10017948: 4604 mov r4, r0 +1001794a: 2800 cmp r0, #0 +1001794c: f43f ac7e beq.w 1001724c +10017950: 6933 ldr r3, [r6, #16] +10017952: f8d8 2000 ldr.w r2, [r8] +10017956: 8931 ldrh r1, [r6, #8] +10017958: 685b ldr r3, [r3, #4] +1001795a: 1a89 subs r1, r1, r2 +1001795c: 4419 add r1, r3 +1001795e: 2900 cmp r1, #0 +10017960: dd05 ble.n 1001796e +10017962: 1ad3 subs r3, r2, r3 +10017964: b299 uxth r1, r3 +10017966: 8131 strh r1, [r6, #8] +10017968: 6870 ldr r0, [r6, #4] +1001796a: f7fe fb49 bl 10016000 +1001796e: 6034 str r4, [r6, #0] +10017970: 4620 mov r0, r4 +10017972: 4629 mov r1, r5 +10017974: e8bd 4ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10017978: f7ff bbea b.w 10017150 +1001797c: f043 0301 orr.w r3, r3, #1 +10017980: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10017984: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10017988: f64f 73ff movw r3, #65535 ; 0xffff +1001798c: 8723 strh r3, [r4, #56] ; 0x38 +1001798e: e6a7 b.n 100176e0 +10017990: 692b ldr r3, [r5, #16] +10017992: 8998 ldrh r0, [r3, #12] +10017994: f7fc fa3e bl 10013e14 +10017998: 07c3 lsls r3, r0, #31 +1001799a: d452 bmi.n 10017a42 +1001799c: 8e22 ldrh r2, [r4, #48] ; 0x30 +1001799e: 692b ldr r3, [r5, #16] +100179a0: 812a strh r2, [r5, #8] +100179a2: 8998 ldrh r0, [r3, #12] +100179a4: f7fc fa36 bl 10013e14 +100179a8: 4e3a ldr r6, [pc, #232] ; (10017a94 ) +100179aa: 0787 lsls r7, r0, #30 +100179ac: 8931 ldrh r1, [r6, #8] +100179ae: 6868 ldr r0, [r5, #4] +100179b0: bf42 ittt mi +100179b2: f101 31ff addmi.w r1, r1, #4294967295 +100179b6: b289 uxthmi r1, r1 +100179b8: 8131 strhmi r1, [r6, #8] +100179ba: f7fe fb21 bl 10016000 +100179be: 692b ldr r3, [r5, #16] +100179c0: 892e ldrh r6, [r5, #8] +100179c2: 8998 ldrh r0, [r3, #12] +100179c4: f7fc fa26 bl 10013e14 +100179c8: f010 0003 ands.w r0, r0, #3 +100179cc: bf18 it ne +100179ce: 2001 movne r0, #1 +100179d0: 4430 add r0, r6 +100179d2: f8a9 0000 strh.w r0, [r9] +100179d6: e69b b.n 10017710 +100179d8: f8b9 3000 ldrh.w r3, [r9] +100179dc: f8d8 e000 ldr.w lr, [r8] +100179e0: 461a mov r2, r3 +100179e2: 2600 movs r6, #0 +100179e4: 67a6 str r6, [r4, #120] ; 0x78 +100179e6: e6fb b.n 100177e0 +100179e8: 46be mov lr, r7 +100179ea: 4613 mov r3, r2 +100179ec: 2900 cmp r1, #0 +100179ee: ddf9 ble.n 100179e4 +100179f0: ebce 0000 rsb r0, lr, r0 +100179f4: 692b ldr r3, [r5, #16] +100179f6: 8128 strh r0, [r5, #8] +100179f8: 8998 ldrh r0, [r3, #12] +100179fa: f7fc fa0b bl 10013e14 +100179fe: 4f25 ldr r7, [pc, #148] ; (10017a94 ) +10017a00: 0783 lsls r3, r0, #30 +10017a02: 8939 ldrh r1, [r7, #8] +10017a04: 6868 ldr r0, [r5, #4] +10017a06: bf42 ittt mi +10017a08: f101 31ff addmi.w r1, r1, #4294967295 +10017a0c: b289 uxthmi r1, r1 +10017a0e: 8139 strhmi r1, [r7, #8] +10017a10: f7fe faf6 bl 10016000 +10017a14: 692b ldr r3, [r5, #16] +10017a16: 892f ldrh r7, [r5, #8] +10017a18: 8998 ldrh r0, [r3, #12] +10017a1a: f7fc f9fb bl 10013e14 +10017a1e: f010 0003 ands.w r0, r0, #3 +10017a22: bf18 it ne +10017a24: 2001 movne r0, #1 +10017a26: 183b adds r3, r7, r0 +10017a28: b29b uxth r3, r3 +10017a2a: 461a mov r2, r3 +10017a2c: f8d8 e000 ldr.w lr, [r8] +10017a30: f8a9 3000 strh.w r3, [r9] +10017a34: e7d6 b.n 100179e4 +10017a36: 4817 ldr r0, [pc, #92] ; (10017a94 ) +10017a38: f7fe fdf8 bl 1001662c +10017a3c: 67a0 str r0, [r4, #120] ; 0x78 +10017a3e: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10017a42: 692e ldr r6, [r5, #16] +10017a44: 89b7 ldrh r7, [r6, #12] +10017a46: 4638 mov r0, r7 +10017a48: f7fc f9e4 bl 10013e14 +10017a4c: f000 003e and.w r0, r0, #62 ; 0x3e +10017a50: f7fc f9dc bl 10013e0c +10017a54: f427 577c bic.w r7, r7, #16128 ; 0x3f00 +10017a58: 4338 orrs r0, r7 +10017a5a: 81b0 strh r0, [r6, #12] +10017a5c: e79e b.n 1001799c +10017a5e: f47f ac18 bne.w 10017292 +10017a62: 4620 mov r0, r4 +10017a64: f001 fa2a bl 10018ebc +10017a68: e413 b.n 10017292 +10017a6a: 67a0 str r0, [r4, #120] ; 0x78 +10017a6c: e4f9 b.n 10017462 +10017a6e: 46b6 mov lr, r6 +10017a70: 4613 mov r3, r2 +10017a72: 463e mov r6, r7 +10017a74: e7ba b.n 100179ec +10017a76: 682b ldr r3, [r5, #0] +10017a78: 691e ldr r6, [r3, #16] +10017a7a: 89b7 ldrh r7, [r6, #12] +10017a7c: 4638 mov r0, r7 +10017a7e: f7fc f9c9 bl 10013e14 +10017a82: f000 003e and.w r0, r0, #62 ; 0x3e +10017a86: f7fc f9c1 bl 10013e0c +10017a8a: f427 577c bic.w r7, r7, #16128 ; 0x3f00 +10017a8e: 4338 orrs r0, r7 +10017a90: 81b0 strh r0, [r6, #12] +10017a92: e604 b.n 1001769e +10017a94: 100513f4 .word 0x100513f4 + +10017a98 : +10017a98: b5f8 push {r3, r4, r5, r6, r7, lr} +10017a9a: 4c22 ldr r4, [pc, #136] ; (10017b24 ) +10017a9c: 4606 mov r6, r0 +10017a9e: 6825 ldr r5, [r4, #0] +10017aa0: 89a8 ldrh r0, [r5, #12] +10017aa2: f7fc f9b7 bl 10013e14 +10017aa6: f3c0 300f ubfx r0, r0, #12, #16 +10017aaa: 2805 cmp r0, #5 +10017aac: d800 bhi.n 10017ab0 +10017aae: bdf8 pop {r3, r4, r5, r6, r7, pc} +10017ab0: 6823 ldr r3, [r4, #0] +10017ab2: 8998 ldrh r0, [r3, #12] +10017ab4: f7fc f9ae bl 10013e14 +10017ab8: 0b00 lsrs r0, r0, #12 +10017aba: 1f44 subs r4, r0, #5 +10017abc: 00a4 lsls r4, r4, #2 +10017abe: b2a4 uxth r4, r4 +10017ac0: 2c00 cmp r4, #0 +10017ac2: d0f4 beq.n 10017aae +10017ac4: f105 0114 add.w r1, r5, #20 +10017ac8: 2300 movs r3, #0 +10017aca: 5cca ldrb r2, [r1, r3] +10017acc: f240 55b3 movw r5, #1459 ; 0x5b3 +10017ad0: 2a01 cmp r2, #1 +10017ad2: f240 50b4 movw r0, #1460 ; 0x5b4 +10017ad6: d01a beq.n 10017b0e +10017ad8: d3e9 bcc.n 10017aae +10017ada: 2a02 cmp r2, #2 +10017adc: d11a bne.n 10017b14 +10017ade: 18ca adds r2, r1, r3 +10017ae0: 7857 ldrb r7, [r2, #1] +10017ae2: 2f04 cmp r7, #4 +10017ae4: d1e3 bne.n 10017aae +10017ae6: 1cdf adds r7, r3, #3 +10017ae8: 42a7 cmp r7, r4 +10017aea: dae0 bge.n 10017aae +10017aec: 7897 ldrb r7, [r2, #2] +10017aee: 78d2 ldrb r2, [r2, #3] +10017af0: 3304 adds r3, #4 +10017af2: ea42 2207 orr.w r2, r2, r7, lsl #8 +10017af6: 1e57 subs r7, r2, #1 +10017af8: b2bf uxth r7, r7 +10017afa: 42af cmp r7, r5 +10017afc: bf88 it hi +10017afe: 4602 movhi r2, r0 +10017b00: b29b uxth r3, r3 +10017b02: 8032 strh r2, [r6, #0] +10017b04: 429c cmp r4, r3 +10017b06: d9d2 bls.n 10017aae +10017b08: 5cca ldrb r2, [r1, r3] +10017b0a: 2a01 cmp r2, #1 +10017b0c: d1e4 bne.n 10017ad8 +10017b0e: 3301 adds r3, #1 +10017b10: b29b uxth r3, r3 +10017b12: e7f7 b.n 10017b04 +10017b14: 18ca adds r2, r1, r3 +10017b16: 7852 ldrb r2, [r2, #1] +10017b18: 2a00 cmp r2, #0 +10017b1a: d0c8 beq.n 10017aae +10017b1c: 4413 add r3, r2 +10017b1e: b29b uxth r3, r3 +10017b20: e7f0 b.n 10017b04 +10017b22: bf00 nop +10017b24: 100513ec .word 0x100513ec + +10017b28 : +10017b28: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10017b2c: 6843 ldr r3, [r0, #4] +10017b2e: 4fa8 ldr r7, [pc, #672] ; (10017dd0 ) +10017b30: 781a ldrb r2, [r3, #0] +10017b32: 4da8 ldr r5, [pc, #672] ; (10017dd4 ) +10017b34: f002 020f and.w r2, r2, #15 +10017b38: 0092 lsls r2, r2, #2 +10017b3a: b089 sub sp, #36 ; 0x24 +10017b3c: 4688 mov r8, r1 +10017b3e: 189e adds r6, r3, r2 +10017b40: 4251 negs r1, r2 +10017b42: 4604 mov r4, r0 +10017b44: 603b str r3, [r7, #0] +10017b46: 602e str r6, [r5, #0] +10017b48: f7fe f958 bl 10015dfc +10017b4c: b910 cbnz r0, 10017b54 +10017b4e: 8923 ldrh r3, [r4, #8] +10017b50: 2b13 cmp r3, #19 +10017b52: d805 bhi.n 10017b60 +10017b54: 4620 mov r0, r4 +10017b56: b009 add sp, #36 ; 0x24 +10017b58: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10017b5c: f7fe b984 b.w 10015e68 +10017b60: 4e9d ldr r6, [pc, #628] ; (10017dd8 ) +10017b62: 4641 mov r1, r8 +10017b64: 6830 ldr r0, [r6, #0] +10017b66: f7fb fd27 bl 100135b8 +10017b6a: 2800 cmp r0, #0 +10017b6c: d1f2 bne.n 10017b54 +10017b6e: 6833 ldr r3, [r6, #0] +10017b70: f003 03f0 and.w r3, r3, #240 ; 0xf0 +10017b74: 2be0 cmp r3, #224 ; 0xe0 +10017b76: d0ed beq.n 10017b54 +10017b78: 8923 ldrh r3, [r4, #8] +10017b7a: f8df 827c ldr.w r8, [pc, #636] ; 10017df8 +10017b7e: 9300 str r3, [sp, #0] +10017b80: 4641 mov r1, r8 +10017b82: 4620 mov r0, r4 +10017b84: 4632 mov r2, r6 +10017b86: 2306 movs r3, #6 +10017b88: f7fb fa90 bl 100130ac +10017b8c: 2800 cmp r0, #0 +10017b8e: d1e1 bne.n 10017b54 +10017b90: 682b ldr r3, [r5, #0] +10017b92: 8998 ldrh r0, [r3, #12] +10017b94: f7fc f93e bl 10013e14 +10017b98: 0b00 lsrs r0, r0, #12 +10017b9a: ebc0 3080 rsb r0, r0, r0, lsl #14 +10017b9e: 0081 lsls r1, r0, #2 +10017ba0: b209 sxth r1, r1 +10017ba2: 4620 mov r0, r4 +10017ba4: f7fe f92a bl 10015dfc +10017ba8: 4607 mov r7, r0 +10017baa: 2800 cmp r0, #0 +10017bac: d1d2 bne.n 10017b54 +10017bae: f8d5 9000 ldr.w r9, [r5] +10017bb2: f8b9 0000 ldrh.w r0, [r9] +10017bb6: f7fc f92d bl 10013e14 +10017bba: f8d5 a000 ldr.w sl, [r5] +10017bbe: f8a9 0000 strh.w r0, [r9] +10017bc2: f8ba 0002 ldrh.w r0, [sl, #2] +10017bc6: f7fc f925 bl 10013e14 +10017bca: f8d5 9000 ldr.w r9, [r5] +10017bce: f8aa 0002 strh.w r0, [sl, #2] +10017bd2: f8d9 0004 ldr.w r0, [r9, #4] +10017bd6: f7fc f923 bl 10013e20 +10017bda: 4980 ldr r1, [pc, #512] ; (10017ddc ) +10017bdc: f8d5 b000 ldr.w fp, [r5] +10017be0: 6008 str r0, [r1, #0] +10017be2: f8c9 0004 str.w r0, [r9, #4] +10017be6: f8db 0008 ldr.w r0, [fp, #8] +10017bea: f7fc f919 bl 10013e20 +10017bee: f8df 920c ldr.w r9, [pc, #524] ; 10017dfc +10017bf2: f8d5 a000 ldr.w sl, [r5] +10017bf6: f8cb 0008 str.w r0, [fp, #8] +10017bfa: f8c9 0000 str.w r0, [r9] +10017bfe: f8ba 000e ldrh.w r0, [sl, #14] +10017c02: f7fc f907 bl 10013e14 +10017c06: 682b ldr r3, [r5, #0] +10017c08: f8aa 000e strh.w r0, [sl, #14] +10017c0c: 8998 ldrh r0, [r3, #12] +10017c0e: f7fc f901 bl 10013e14 +10017c12: b2c0 uxtb r0, r0 +10017c14: 8922 ldrh r2, [r4, #8] +10017c16: f010 0303 ands.w r3, r0, #3 +10017c1a: bf18 it ne +10017c1c: 2301 movne r3, #1 +10017c1e: 4413 add r3, r2 +10017c20: 496f ldr r1, [pc, #444] ; (10017de0 ) +10017c22: b29b uxth r3, r3 +10017c24: 9305 str r3, [sp, #20] +10017c26: f8d1 c000 ldr.w ip, [r1] +10017c2a: 9206 str r2, [sp, #24] +10017c2c: f8df b1d0 ldr.w fp, [pc, #464] ; 10017e00 +10017c30: 9a05 ldr r2, [sp, #20] +10017c32: 496c ldr r1, [pc, #432] ; (10017de4 ) +10017c34: f000 033f and.w r3, r0, #63 ; 0x3f +10017c38: f88b 3000 strb.w r3, [fp] +10017c3c: 9003 str r0, [sp, #12] +10017c3e: 800a strh r2, [r1, #0] +10017c40: 682b ldr r3, [r5, #0] +10017c42: f1bc 0f00 cmp.w ip, #0 +10017c46: d060 beq.n 10017d0a +10017c48: f8d8 2000 ldr.w r2, [r8] +10017c4c: 4638 mov r0, r7 +10017c4e: 9204 str r2, [sp, #16] +10017c50: 6832 ldr r2, [r6, #0] +10017c52: 8819 ldrh r1, [r3, #0] +10017c54: 9207 str r2, [sp, #28] +10017c56: 4667 mov r7, ip +10017c58: 9402 str r4, [sp, #8] +10017c5a: e004 b.n 10017c66 +10017c5c: 68fa ldr r2, [r7, #12] +10017c5e: 4638 mov r0, r7 +10017c60: 2a00 cmp r2, #0 +10017c62: d051 beq.n 10017d08 +10017c64: 4617 mov r7, r2 +10017c66: 8c3a ldrh r2, [r7, #32] +10017c68: 428a cmp r2, r1 +10017c6a: d1f7 bne.n 10017c5c +10017c6c: f8b7 a01e ldrh.w sl, [r7, #30] +10017c70: 885a ldrh r2, [r3, #2] +10017c72: 4592 cmp sl, r2 +10017c74: d1f2 bne.n 10017c5c +10017c76: 687c ldr r4, [r7, #4] +10017c78: 9a04 ldr r2, [sp, #16] +10017c7a: 4294 cmp r4, r2 +10017c7c: d1ee bne.n 10017c5c +10017c7e: 683c ldr r4, [r7, #0] +10017c80: 9a07 ldr r2, [sp, #28] +10017c82: 4294 cmp r4, r2 +10017c84: d1ea bne.n 10017c5c +10017c86: 9c02 ldr r4, [sp, #8] +10017c88: b138 cbz r0, 10017c9a +10017c8a: 68fa ldr r2, [r7, #12] +10017c8c: f8df e150 ldr.w lr, [pc, #336] ; 10017de0 +10017c90: 60c2 str r2, [r0, #12] +10017c92: f8ce 7000 str.w r7, [lr] +10017c96: f8c7 c00c str.w ip, [r7, #12] +10017c9a: f8df 8154 ldr.w r8, [pc, #340] ; 10017df0 +10017c9e: f8df a164 ldr.w sl, [pc, #356] ; 10017e04 +10017ca2: 4e51 ldr r6, [pc, #324] ; (10017de8 ) +10017ca4: 2200 movs r2, #0 +10017ca6: f8c8 2000 str.w r2, [r8] +10017caa: f8ca 2000 str.w r2, [sl] +10017cae: 7032 strb r2, [r6, #0] +10017cb0: 9a03 ldr r2, [sp, #12] +10017cb2: 9906 ldr r1, [sp, #24] +10017cb4: 0710 lsls r0, r2, #28 +10017cb6: f8a8 1008 strh.w r1, [r8, #8] +10017cba: f8c8 4004 str.w r4, [r8, #4] +10017cbe: f8c8 3010 str.w r3, [r8, #16] +10017cc2: d503 bpl.n 10017ccc +10017cc4: 7b63 ldrb r3, [r4, #13] +10017cc6: f043 0301 orr.w r3, r3, #1 +10017cca: 7363 strb r3, [r4, #13] +10017ccc: 6ffb ldr r3, [r7, #124] ; 0x7c +10017cce: 2b00 cmp r3, #0 +10017cd0: d056 beq.n 10017d80 +10017cd2: 4638 mov r0, r7 +10017cd4: f7fe ffc0 bl 10016c58 +10017cd8: 300a adds r0, #10 +10017cda: d006 beq.n 10017cea +10017cdc: 6ffb ldr r3, [r7, #124] ; 0x7c +10017cde: 2b00 cmp r3, #0 +10017ce0: d04e beq.n 10017d80 +10017ce2: 4940 ldr r1, [pc, #256] ; (10017de4 ) +10017ce4: 880b ldrh r3, [r1, #0] +10017ce6: 2b00 cmp r3, #0 +10017ce8: d04a beq.n 10017d80 +10017cea: 4c40 ldr r4, [pc, #256] ; (10017dec ) +10017cec: f8d8 0004 ldr.w r0, [r8, #4] +10017cf0: 2500 movs r5, #0 +10017cf2: 6025 str r5, [r4, #0] +10017cf4: f8ca 5000 str.w r5, [sl] +10017cf8: 4c3d ldr r4, [pc, #244] ; (10017df0 ) +10017cfa: b110 cbz r0, 10017d02 +10017cfc: f7fe f8b4 bl 10015e68 +10017d00: 6065 str r5, [r4, #4] +10017d02: b009 add sp, #36 ; 0x24 +10017d04: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10017d08: 9c02 ldr r4, [sp, #8] +10017d0a: 4a3a ldr r2, [pc, #232] ; (10017df4 ) +10017d0c: 6812 ldr r2, [r2, #0] +10017d0e: 2a00 cmp r2, #0 +10017d10: f000 8097 beq.w 10017e42 +10017d14: 8818 ldrh r0, [r3, #0] +10017d16: f8d8 c000 ldr.w ip, [r8] +10017d1a: f8d6 a000 ldr.w sl, [r6] +10017d1e: e003 b.n 10017d28 +10017d20: 68d2 ldr r2, [r2, #12] +10017d22: 2a00 cmp r2, #0 +10017d24: f000 808d beq.w 10017e42 +10017d28: 8c11 ldrh r1, [r2, #32] +10017d2a: 4281 cmp r1, r0 +10017d2c: d1f8 bne.n 10017d20 +10017d2e: 8bd1 ldrh r1, [r2, #30] +10017d30: 885f ldrh r7, [r3, #2] +10017d32: 428f cmp r7, r1 +10017d34: d1f4 bne.n 10017d20 +10017d36: 6851 ldr r1, [r2, #4] +10017d38: 4561 cmp r1, ip +10017d3a: d1f1 bne.n 10017d20 +10017d3c: 6811 ldr r1, [r2, #0] +10017d3e: 4551 cmp r1, sl +10017d40: d1ee bne.n 10017d20 +10017d42: 9903 ldr r1, [sp, #12] +10017d44: 074d lsls r5, r1, #29 +10017d46: f53f af05 bmi.w 10017b54 +10017d4a: 0789 lsls r1, r1, #30 +10017d4c: f140 8280 bpl.w 10018250 +10017d50: 4b22 ldr r3, [pc, #136] ; (10017ddc ) +10017d52: 6819 ldr r1, [r3, #0] +10017d54: 6ad3 ldr r3, [r2, #44] ; 0x2c +10017d56: 1acb subs r3, r1, r3 +10017d58: d404 bmi.n 10017d64 +10017d5a: 8e15 ldrh r5, [r2, #48] ; 0x30 +10017d5c: 1b5b subs r3, r3, r5 +10017d5e: 2b00 cmp r3, #0 +10017d60: f340 8283 ble.w 1001826a +10017d64: 9b05 ldr r3, [sp, #20] +10017d66: 2b00 cmp r3, #0 +10017d68: f43f aef4 beq.w 10017b54 +10017d6c: f892 3022 ldrb.w r3, [r2, #34] ; 0x22 +10017d70: 4610 mov r0, r2 +10017d72: f043 0302 orr.w r3, r3, #2 +10017d76: f882 3022 strb.w r3, [r2, #34] ; 0x22 +10017d7a: f000 feab bl 10018ad4 +10017d7e: e6e9 b.n 10017b54 +10017d80: f89b 3000 ldrb.w r3, [fp] +10017d84: 4c19 ldr r4, [pc, #100] ; (10017dec ) +10017d86: 075a lsls r2, r3, #29 +10017d88: 6027 str r7, [r4, #0] +10017d8a: d53d bpl.n 10017e08 +10017d8c: 69bb ldr r3, [r7, #24] +10017d8e: 2b02 cmp r3, #2 +10017d90: f000 8232 beq.w 100181f8 +10017d94: 4b11 ldr r3, [pc, #68] ; (10017ddc ) +10017d96: 681a ldr r2, [r3, #0] +10017d98: 6afb ldr r3, [r7, #44] ; 0x2c +10017d9a: 1ad3 subs r3, r2, r3 +10017d9c: d404 bmi.n 10017da8 +10017d9e: 8e39 ldrh r1, [r7, #48] ; 0x30 +10017da0: 1a5b subs r3, r3, r1 +10017da2: 2b00 cmp r3, #0 +10017da4: f340 822e ble.w 10018204 +10017da8: 7833 ldrb r3, [r6, #0] +10017daa: 071a lsls r2, r3, #28 +10017dac: d539 bpl.n 10017e22 +10017dae: f8d7 3090 ldr.w r3, [r7, #144] ; 0x90 +10017db2: b11b cbz r3, 10017dbc +10017db4: 6938 ldr r0, [r7, #16] +10017db6: f06f 010a mvn.w r1, #10 +10017dba: 4798 blx r3 +10017dbc: 4639 mov r1, r7 +10017dbe: 4808 ldr r0, [pc, #32] ; (10017de0 ) +10017dc0: f7fe fe36 bl 10016a30 +10017dc4: 4639 mov r1, r7 +10017dc6: 2002 movs r0, #2 +10017dc8: f7fd fee0 bl 10015b8c +10017dcc: e78e b.n 10017cec +10017dce: bf00 nop +10017dd0: 100513dc .word 0x100513dc +10017dd4: 100513ec .word 0x100513ec +10017dd8: 10050ccc .word 0x10050ccc +10017ddc: 100513d8 .word 0x100513d8 +10017de0: 100513c4 .word 0x100513c4 +10017de4: 100513e0 .word 0x100513e0 +10017de8: 100513e9 .word 0x100513e9 +10017dec: 10051408 .word 0x10051408 +10017df0: 100513f4 .word 0x100513f4 +10017df4: 100513cc .word 0x100513cc +10017df8: 10050cc8 .word 0x10050cc8 +10017dfc: 100513e4 .word 0x100513e4 +10017e00: 100513e8 .word 0x100513e8 +10017e04: 100513f0 .word 0x100513f0 +10017e08: 079b lsls r3, r3, #30 +10017e0a: d53b bpl.n 10017e84 +10017e0c: 69bb ldr r3, [r7, #24] +10017e0e: 3b02 subs r3, #2 +10017e10: 2b01 cmp r3, #1 +10017e12: d937 bls.n 10017e84 +10017e14: f897 3022 ldrb.w r3, [r7, #34] ; 0x22 +10017e18: f043 0302 orr.w r3, r3, #2 +10017e1c: f887 3022 strb.w r3, [r7, #34] ; 0x22 +10017e20: e7c2 b.n 10017da8 +10017e22: 06db lsls r3, r3, #27 +10017e24: f140 81b2 bpl.w 1001818c +10017e28: f897 3022 ldrb.w r3, [r7, #34] ; 0x22 +10017e2c: 06de lsls r6, r3, #27 +10017e2e: d4c5 bmi.n 10017dbc +10017e30: f8d7 3090 ldr.w r3, [r7, #144] ; 0x90 +10017e34: 2b00 cmp r3, #0 +10017e36: d0c1 beq.n 10017dbc +10017e38: 6938 ldr r0, [r7, #16] +10017e3a: f06f 010b mvn.w r1, #11 +10017e3e: 4798 blx r3 +10017e40: e7bc b.n 10017dbc +10017e42: 498c ldr r1, [pc, #560] ; (10018074 ) +10017e44: 6809 ldr r1, [r1, #0] +10017e46: 9104 str r1, [sp, #16] +10017e48: 2900 cmp r1, #0 +10017e4a: f000 80fa beq.w 10018042 +10017e4e: f04f 0a00 mov.w sl, #0 +10017e52: 8858 ldrh r0, [r3, #2] +10017e54: f8d6 b000 ldr.w fp, [r6] +10017e58: 46d4 mov ip, sl +10017e5a: 4657 mov r7, sl +10017e5c: e004 b.n 10017e68 +10017e5e: 68d1 ldr r1, [r2, #12] +10017e60: 4617 mov r7, r2 +10017e62: 2900 cmp r1, #0 +10017e64: f000 80ea beq.w 1001803c +10017e68: 460a mov r2, r1 +10017e6a: 8bc9 ldrh r1, [r1, #30] +10017e6c: 4281 cmp r1, r0 +10017e6e: d1f6 bne.n 10017e5e +10017e70: 6811 ldr r1, [r2, #0] +10017e72: 4559 cmp r1, fp +10017e74: f000 810e beq.w 10018094 +10017e78: 2900 cmp r1, #0 +10017e7a: bf08 it eq +10017e7c: 4692 moveq sl, r2 +10017e7e: bf08 it eq +10017e80: 46bc moveq ip, r7 +10017e82: e7ec b.n 10017e5e +10017e84: f897 3022 ldrb.w r3, [r7, #34] ; 0x22 +10017e88: 06d8 lsls r0, r3, #27 +10017e8a: d402 bmi.n 10017e92 +10017e8c: 4b7a ldr r3, [pc, #488] ; (10018078 ) +10017e8e: 681b ldr r3, [r3, #0] +10017e90: 62bb str r3, [r7, #40] ; 0x28 +10017e92: 2300 movs r3, #0 +10017e94: f887 30a2 strb.w r3, [r7, #162] ; 0xa2 +10017e98: f107 003a add.w r0, r7, #58 ; 0x3a +10017e9c: f7ff fdfc bl 10017a98 +10017ea0: 69bb ldr r3, [r7, #24] +10017ea2: 3b02 subs r3, #2 +10017ea4: 2b07 cmp r3, #7 +10017ea6: f63f af7f bhi.w 10017da8 +10017eaa: e8df f003 tbb [pc, r3] +10017eae: 87aa .short 0x87aa +10017eb0: 773a5c77 .word 0x773a5c77 +10017eb4: 0417 .short 0x0417 +10017eb6: 4638 mov r0, r7 +10017eb8: f7ff f99e bl 100171f8 +10017ebc: f89b 3000 ldrb.w r3, [fp] +10017ec0: 06da lsls r2, r3, #27 +10017ec2: f57f af71 bpl.w 10017da8 +10017ec6: f8d9 2000 ldr.w r2, [r9] +10017eca: 6d7b ldr r3, [r7, #84] ; 0x54 +10017ecc: 4293 cmp r3, r2 +10017ece: f47f af6b bne.w 10017da8 +10017ed2: 7833 ldrb r3, [r6, #0] +10017ed4: f043 0310 orr.w r3, r3, #16 +10017ed8: 7033 strb r3, [r6, #0] +10017eda: e765 b.n 10017da8 +10017edc: 4638 mov r0, r7 +10017ede: f7ff f98b bl 100171f8 +10017ee2: f89b 3000 ldrb.w r3, [fp] +10017ee6: 06d9 lsls r1, r3, #27 +10017ee8: f57f af5e bpl.w 10017da8 +10017eec: f8d9 2000 ldr.w r2, [r9] +10017ef0: 6d7b ldr r3, [r7, #84] ; 0x54 +10017ef2: 4293 cmp r3, r2 +10017ef4: f47f af58 bne.w 10017da8 +10017ef8: 4d60 ldr r5, [pc, #384] ; (1001807c ) +10017efa: 4638 mov r0, r7 +10017efc: f7fe fbbc bl 10016678 +10017f00: 6829 ldr r1, [r5, #0] +10017f02: 462a mov r2, r5 +10017f04: 428f cmp r7, r1 +10017f06: f000 821e beq.w 10018346 +10017f0a: 4b5d ldr r3, [pc, #372] ; (10018080 ) +10017f0c: 460a mov r2, r1 +10017f0e: 6019 str r1, [r3, #0] +10017f10: 2a00 cmp r2, #0 +10017f12: f000 81f9 beq.w 10018308 +10017f16: 68d1 ldr r1, [r2, #12] +10017f18: 428f cmp r7, r1 +10017f1a: f000 81e6 beq.w 100182ea +10017f1e: 460a mov r2, r1 +10017f20: e7f6 b.n 10017f10 +10017f22: 4638 mov r0, r7 +10017f24: f7ff f968 bl 100171f8 +10017f28: 7833 ldrb r3, [r6, #0] +10017f2a: 0698 lsls r0, r3, #26 +10017f2c: f57f af3c bpl.w 10017da8 +10017f30: f897 3022 ldrb.w r3, [r7, #34] ; 0x22 +10017f34: 4638 mov r0, r7 +10017f36: f043 0302 orr.w r3, r3, #2 +10017f3a: f887 3022 strb.w r3, [r7, #34] ; 0x22 +10017f3e: f7fe fb9b bl 10016678 +10017f42: 4b4e ldr r3, [pc, #312] ; (1001807c ) +10017f44: 6819 ldr r1, [r3, #0] +10017f46: 461a mov r2, r3 +10017f48: 428f cmp r7, r1 +10017f4a: f000 81fc beq.w 10018346 +10017f4e: 4b4c ldr r3, [pc, #304] ; (10018080 ) +10017f50: 460a mov r2, r1 +10017f52: 6019 str r1, [r3, #0] +10017f54: 2a00 cmp r2, #0 +10017f56: f000 81d7 beq.w 10018308 +10017f5a: 68d1 ldr r1, [r2, #12] +10017f5c: 428f cmp r7, r1 +10017f5e: f000 81c4 beq.w 100182ea +10017f62: 460a mov r2, r1 +10017f64: e7f6 b.n 10017f54 +10017f66: 4638 mov r0, r7 +10017f68: f7ff f946 bl 100171f8 +10017f6c: 7833 ldrb r3, [r6, #0] +10017f6e: f013 0f20 tst.w r3, #32 +10017f72: f89b 3000 ldrb.w r3, [fp] +10017f76: f000 8196 beq.w 100182a6 +10017f7a: 06db lsls r3, r3, #27 +10017f7c: d505 bpl.n 10017f8a +10017f7e: f8d9 2000 ldr.w r2, [r9] +10017f82: 6d7b ldr r3, [r7, #84] ; 0x54 +10017f84: 4293 cmp r3, r2 +10017f86: f000 819a beq.w 100182be +10017f8a: f897 2022 ldrb.w r2, [r7, #34] ; 0x22 +10017f8e: 2308 movs r3, #8 +10017f90: f042 0202 orr.w r2, r2, #2 +10017f94: f887 2022 strb.w r2, [r7, #34] ; 0x22 +10017f98: 61bb str r3, [r7, #24] +10017f9a: e705 b.n 10017da8 +10017f9c: 4638 mov r0, r7 +10017f9e: f7ff f92b bl 100171f8 +10017fa2: 7833 ldrb r3, [r6, #0] +10017fa4: 069a lsls r2, r3, #26 +10017fa6: f57f aeff bpl.w 10017da8 +10017faa: f897 2022 ldrb.w r2, [r7, #34] ; 0x22 +10017fae: 2307 movs r3, #7 +10017fb0: f042 0202 orr.w r2, r2, #2 +10017fb4: f887 2022 strb.w r2, [r7, #34] ; 0x22 +10017fb8: 61bb str r3, [r7, #24] +10017fba: e6f5 b.n 10017da8 +10017fbc: f89b 3000 ldrb.w r3, [fp] +10017fc0: 06da lsls r2, r3, #27 +10017fc2: f140 81a3 bpl.w 1001830c +10017fc6: 6cfb ldr r3, [r7, #76] ; 0x4c +10017fc8: f8d9 0000 ldr.w r0, [r9] +10017fcc: 43db mvns r3, r3 +10017fce: 42c3 cmn r3, r0 +10017fd0: d404 bmi.n 10017fdc +10017fd2: 6d7b ldr r3, [r7, #84] ; 0x54 +10017fd4: 1ac3 subs r3, r0, r3 +10017fd6: 2b00 cmp r3, #0 +10017fd8: f340 81a6 ble.w 10018328 +10017fdc: 682b ldr r3, [r5, #0] +10017fde: f8df e0ac ldr.w lr, [pc, #172] ; 1001808c +10017fe2: 885d ldrh r5, [r3, #2] +10017fe4: f8be 1000 ldrh.w r1, [lr] +10017fe8: f8df e0a4 ldr.w lr, [pc, #164] ; 10018090 +10017fec: f8de 2000 ldr.w r2, [lr] +10017ff0: 9500 str r5, [sp, #0] +10017ff2: 881b ldrh r3, [r3, #0] +10017ff4: 4411 add r1, r2 +10017ff6: 9301 str r3, [sp, #4] +10017ff8: 4a22 ldr r2, [pc, #136] ; (10018084 ) +10017ffa: 4b23 ldr r3, [pc, #140] ; (10018088 ) +10017ffc: f000 fecc bl 10018d98 +10018000: e6d2 b.n 10017da8 +10018002: f89b 3000 ldrb.w r3, [fp] +10018006: f003 0312 and.w r3, r3, #18 +1001800a: 2b12 cmp r3, #18 +1001800c: f000 81b0 beq.w 10018370 +10018010: f89b 3000 ldrb.w r3, [fp] +10018014: 06d9 lsls r1, r3, #27 +10018016: f57f aec7 bpl.w 10017da8 +1001801a: 682b ldr r3, [r5, #0] +1001801c: 4a1b ldr r2, [pc, #108] ; (1001808c ) +1001801e: 8858 ldrh r0, [r3, #2] +10018020: 4d1b ldr r5, [pc, #108] ; (10018090 ) +10018022: 8811 ldrh r1, [r2, #0] +10018024: 682a ldr r2, [r5, #0] +10018026: 9000 str r0, [sp, #0] +10018028: 881b ldrh r3, [r3, #0] +1001802a: 4411 add r1, r2 +1001802c: f8d9 0000 ldr.w r0, [r9] +10018030: 4a14 ldr r2, [pc, #80] ; (10018084 ) +10018032: 9301 str r3, [sp, #4] +10018034: 4b14 ldr r3, [pc, #80] ; (10018088 ) +10018036: f000 feaf bl 10018d98 +1001803a: e6b5 b.n 10017da8 +1001803c: f1ba 0f00 cmp.w sl, #0 +10018040: d12a bne.n 10018098 +10018042: 8998 ldrh r0, [r3, #12] +10018044: f7fb fee6 bl 10013e14 +10018048: 0741 lsls r1, r0, #29 +1001804a: f53f ad83 bmi.w 10017b54 +1001804e: 682b ldr r3, [r5, #0] +10018050: f8df e038 ldr.w lr, [pc, #56] ; 1001808c +10018054: 8858 ldrh r0, [r3, #2] +10018056: 4d0e ldr r5, [pc, #56] ; (10018090 ) +10018058: f8be 1000 ldrh.w r1, [lr] +1001805c: 682a ldr r2, [r5, #0] +1001805e: 9000 str r0, [sp, #0] +10018060: 881b ldrh r3, [r3, #0] +10018062: 4411 add r1, r2 +10018064: f8d9 0000 ldr.w r0, [r9] +10018068: 4a06 ldr r2, [pc, #24] ; (10018084 ) +1001806a: 9301 str r3, [sp, #4] +1001806c: 4b06 ldr r3, [pc, #24] ; (10018088 ) +1001806e: f000 fe93 bl 10018d98 +10018072: e56f b.n 10017b54 +10018074: 100513c0 .word 0x100513c0 +10018078: 100513b8 .word 0x100513b8 +1001807c: 100513c4 .word 0x100513c4 +10018080: 100513d0 .word 0x100513d0 +10018084: 10050ccc .word 0x10050ccc +10018088: 10050cc8 .word 0x10050cc8 +1001808c: 100513e0 .word 0x100513e0 +10018090: 100513d8 .word 0x100513d8 +10018094: 4692 mov sl, r2 +10018096: 46bc mov ip, r7 +10018098: f1bc 0f00 cmp.w ip, #0 +1001809c: d009 beq.n 100180b2 +1001809e: f8da 200c ldr.w r2, [sl, #12] +100180a2: 49aa ldr r1, [pc, #680] ; (1001834c ) +100180a4: f8cc 200c str.w r2, [ip, #12] +100180a8: 9a04 ldr r2, [sp, #16] +100180aa: f8c1 a000 str.w sl, [r1] +100180ae: f8ca 200c str.w r2, [sl, #12] +100180b2: 9903 ldr r1, [sp, #12] +100180b4: 074f lsls r7, r1, #29 +100180b6: f53f ad4d bmi.w 10017b54 +100180ba: f001 0210 and.w r2, r1, #16 +100180be: f002 07ff and.w r7, r2, #255 ; 0xff +100180c2: 2a00 cmp r2, #0 +100180c4: f040 80a9 bne.w 1001821a +100180c8: 9903 ldr r1, [sp, #12] +100180ca: 0789 lsls r1, r1, #30 +100180cc: f57f ad42 bpl.w 10017b54 +100180d0: f89a 001c ldrb.w r0, [sl, #28] +100180d4: f7fe fecc bl 10016e70 +100180d8: 4681 mov r9, r0 +100180da: 2800 cmp r0, #0 +100180dc: f43f ad3a beq.w 10017b54 +100180e0: 682b ldr r3, [r5, #0] +100180e2: 4a9b ldr r2, [pc, #620] ; (10018350 ) +100180e4: 781d ldrb r5, [r3, #0] +100180e6: f893 e001 ldrb.w lr, [r3, #1] +100180ea: 6810 ldr r0, [r2, #0] +100180ec: f8ba c01e ldrh.w ip, [sl, #30] +100180f0: 6832 ldr r2, [r6, #0] +100180f2: f8d8 1000 ldr.w r1, [r8] +100180f6: ea45 2e0e orr.w lr, r5, lr, lsl #8 +100180fa: 2603 movs r6, #3 +100180fc: 1c45 adds r5, r0, #1 +100180fe: f8c9 2000 str.w r2, [r9] +10018102: f8a9 c01e strh.w ip, [r9, #30] +10018106: f8a9 e020 strh.w lr, [r9, #32] +1001810a: f8c9 1004 str.w r1, [r9, #4] +1001810e: f8c9 502c str.w r5, [r9, #44] ; 0x2c +10018112: f8c9 5034 str.w r5, [r9, #52] ; 0x34 +10018116: f8c9 6018 str.w r6, [r9, #24] +1001811a: 89db ldrh r3, [r3, #14] +1001811c: f8da 1010 ldr.w r1, [sl, #16] +10018120: f8da 2014 ldr.w r2, [sl, #20] +10018124: 3801 subs r0, #1 +10018126: f8c9 1010 str.w r1, [r9, #16] +1001812a: f8a9 3064 strh.w r3, [r9, #100] ; 0x64 +1001812e: f8a9 3066 strh.w r3, [r9, #102] ; 0x66 +10018132: f8a9 3052 strh.w r3, [r9, #82] ; 0x52 +10018136: f8c9 0058 str.w r0, [r9, #88] ; 0x58 +1001813a: f8c9 2014 str.w r2, [r9, #20] +1001813e: 4d85 ldr r5, [pc, #532] ; (10018354 ) +10018140: f89a 2008 ldrb.w r2, [sl, #8] +10018144: 682b ldr r3, [r5, #0] +10018146: f022 0273 bic.w r2, r2, #115 ; 0x73 +1001814a: f889 2008 strb.w r2, [r9, #8] +1001814e: f8c9 300c str.w r3, [r9, #12] +10018152: f8c5 9000 str.w r9, [r5] +10018156: f7fd fa11 bl 1001557c +1001815a: 4b7f ldr r3, [pc, #508] ; (10018358 ) +1001815c: 2201 movs r2, #1 +1001815e: f109 003a add.w r0, r9, #58 ; 0x3a +10018162: 701a strb r2, [r3, #0] +10018164: f7ff fc98 bl 10017a98 +10018168: f109 0104 add.w r1, r9, #4 +1001816c: f8b9 003a ldrh.w r0, [r9, #58] ; 0x3a +10018170: f7fe ff20 bl 10016fb4 +10018174: 2112 movs r1, #18 +10018176: f8a9 003a strh.w r0, [r9, #58] ; 0x3a +1001817a: 4648 mov r0, r9 +1001817c: f000 fbf6 bl 1001896c +10018180: 2800 cmp r0, #0 +10018182: d16d bne.n 10018260 +10018184: 4648 mov r0, r9 +10018186: f000 fca5 bl 10018ad4 +1001818a: e4e3 b.n 10017b54 +1001818c: f8b7 2068 ldrh.w r2, [r7, #104] ; 0x68 +10018190: b142 cbz r2, 100181a4 +10018192: f8d7 3080 ldr.w r3, [r7, #128] ; 0x80 +10018196: b12b cbz r3, 100181a4 +10018198: 6938 ldr r0, [r7, #16] +1001819a: 4639 mov r1, r7 +1001819c: 4798 blx r3 +1001819e: 300a adds r0, #10 +100181a0: f43f ada4 beq.w 10017cec +100181a4: f8da 2000 ldr.w r2, [sl] +100181a8: b1b2 cbz r2, 100181d8 +100181aa: f897 1022 ldrb.w r1, [r7, #34] ; 0x22 +100181ae: f001 0110 and.w r1, r1, #16 +100181b2: f001 03ff and.w r3, r1, #255 ; 0xff +100181b6: 2900 cmp r1, #0 +100181b8: d13d bne.n 10018236 +100181ba: f8d7 5084 ldr.w r5, [r7, #132] ; 0x84 +100181be: 2d00 cmp r5, #0 +100181c0: d040 beq.n 10018244 +100181c2: 6938 ldr r0, [r7, #16] +100181c4: 4639 mov r1, r7 +100181c6: 47a8 blx r5 +100181c8: b243 sxtb r3, r0 +100181ca: 330a adds r3, #10 +100181cc: f43f ad8e beq.w 10017cec +100181d0: b110 cbz r0, 100181d8 +100181d2: f8da 3000 ldr.w r3, [sl] +100181d6: 67fb str r3, [r7, #124] ; 0x7c +100181d8: 7833 ldrb r3, [r6, #0] +100181da: 069d lsls r5, r3, #26 +100181dc: d506 bpl.n 100181ec +100181de: 6ffb ldr r3, [r7, #124] ; 0x7c +100181e0: 2b00 cmp r3, #0 +100181e2: d04d beq.n 10018280 +100181e4: 7b5a ldrb r2, [r3, #13] +100181e6: f042 0220 orr.w r2, r2, #32 +100181ea: 735a strb r2, [r3, #13] +100181ec: 2300 movs r3, #0 +100181ee: 4638 mov r0, r7 +100181f0: 6023 str r3, [r4, #0] +100181f2: f000 fc6f bl 10018ad4 +100181f6: e579 b.n 10017cec +100181f8: f8d9 2000 ldr.w r2, [r9] +100181fc: 6d7b ldr r3, [r7, #84] ; 0x54 +100181fe: 4293 cmp r3, r2 +10018200: f47f add2 bne.w 10017da8 +10018204: 7832 ldrb r2, [r6, #0] +10018206: f897 3022 ldrb.w r3, [r7, #34] ; 0x22 +1001820a: f042 0208 orr.w r2, r2, #8 +1001820e: f023 0301 bic.w r3, r3, #1 +10018212: 7032 strb r2, [r6, #0] +10018214: f887 3022 strb.w r3, [r7, #34] ; 0x22 +10018218: e5c6 b.n 10017da8 +1001821a: 9000 str r0, [sp, #0] +1001821c: 881b ldrh r3, [r3, #0] +1001821e: 4a4c ldr r2, [pc, #304] ; (10018350 ) +10018220: 6811 ldr r1, [r2, #0] +10018222: 9301 str r3, [sp, #4] +10018224: 9b05 ldr r3, [sp, #20] +10018226: f8d9 0000 ldr.w r0, [r9] +1001822a: 4419 add r1, r3 +1001822c: 4a4b ldr r2, [pc, #300] ; (1001835c ) +1001822e: 4b4c ldr r3, [pc, #304] ; (10018360 ) +10018230: f000 fdb2 bl 10018d98 +10018234: e48e b.n 10017b54 +10018236: 4610 mov r0, r2 +10018238: f7fd fe16 bl 10015e68 +1001823c: 4638 mov r0, r7 +1001823e: f7fe fe13 bl 10016e68 +10018242: e553 b.n 10017cec +10018244: 4628 mov r0, r5 +10018246: 462b mov r3, r5 +10018248: 4639 mov r1, r7 +1001824a: f7fe fcf1 bl 10016c30 +1001824e: e7bb b.n 100181c8 +10018250: 9903 ldr r1, [sp, #12] +10018252: 07cb lsls r3, r1, #31 +10018254: f57f ad86 bpl.w 10017d64 +10018258: 4b42 ldr r3, [pc, #264] ; (10018364 ) +1001825a: 681b ldr r3, [r3, #0] +1001825c: 6293 str r3, [r2, #40] ; 0x28 +1001825e: e581 b.n 10017d64 +10018260: 4648 mov r0, r9 +10018262: 4639 mov r1, r7 +10018264: f7fe fda4 bl 10016db0 +10018268: e474 b.n 10017b54 +1001826a: 9d05 ldr r5, [sp, #20] +1001826c: 9700 str r7, [sp, #0] +1001826e: 9001 str r0, [sp, #4] +10018270: f8d9 0000 ldr.w r0, [r9] +10018274: 4429 add r1, r5 +10018276: 4a39 ldr r2, [pc, #228] ; (1001835c ) +10018278: 4b39 ldr r3, [pc, #228] ; (10018360 ) +1001827a: f000 fd8d bl 10018d98 +1001827e: e469 b.n 10017b54 +10018280: 8e3b ldrh r3, [r7, #48] ; 0x30 +10018282: f241 62d0 movw r2, #5840 ; 0x16d0 +10018286: 4293 cmp r3, r2 +10018288: f8d7 5084 ldr.w r5, [r7, #132] ; 0x84 +1001828c: bf1c itt ne +1001828e: 3301 addne r3, #1 +10018290: 863b strhne r3, [r7, #48] ; 0x30 +10018292: 2d00 cmp r5, #0 +10018294: d0aa beq.n 100181ec +10018296: 2200 movs r2, #0 +10018298: 4613 mov r3, r2 +1001829a: 6938 ldr r0, [r7, #16] +1001829c: 4639 mov r1, r7 +1001829e: 47a8 blx r5 +100182a0: 300a adds r0, #10 +100182a2: d1a3 bne.n 100181ec +100182a4: e522 b.n 10017cec +100182a6: 06dd lsls r5, r3, #27 +100182a8: f57f ad7e bpl.w 10017da8 +100182ac: f8d9 2000 ldr.w r2, [r9] +100182b0: 6d7b ldr r3, [r7, #84] ; 0x54 +100182b2: 4293 cmp r3, r2 +100182b4: f47f ad78 bne.w 10017da8 +100182b8: 2306 movs r3, #6 +100182ba: 61bb str r3, [r7, #24] +100182bc: e574 b.n 10017da8 +100182be: f897 3022 ldrb.w r3, [r7, #34] ; 0x22 +100182c2: 4638 mov r0, r7 +100182c4: f043 0302 orr.w r3, r3, #2 +100182c8: f887 3022 strb.w r3, [r7, #34] ; 0x22 +100182cc: f7fe f9d4 bl 10016678 +100182d0: 4a20 ldr r2, [pc, #128] ; (10018354 ) +100182d2: 6811 ldr r1, [r2, #0] +100182d4: 428f cmp r7, r1 +100182d6: d036 beq.n 10018346 +100182d8: 4b23 ldr r3, [pc, #140] ; (10018368 ) +100182da: 460a mov r2, r1 +100182dc: 6019 str r1, [r3, #0] +100182de: b19a cbz r2, 10018308 +100182e0: 68d1 ldr r1, [r2, #12] +100182e2: 428f cmp r7, r1 +100182e4: d001 beq.n 100182ea +100182e6: 460a mov r2, r1 +100182e8: e7f9 b.n 100182de +100182ea: 68f9 ldr r1, [r7, #12] +100182ec: 601a str r2, [r3, #0] +100182ee: 60d1 str r1, [r2, #12] +100182f0: 4b1e ldr r3, [pc, #120] ; (1001836c ) +100182f2: 4919 ldr r1, [pc, #100] ; (10018358 ) +100182f4: 681a ldr r2, [r3, #0] +100182f6: 200a movs r0, #10 +100182f8: 60fa str r2, [r7, #12] +100182fa: 61b8 str r0, [r7, #24] +100182fc: 2201 movs r2, #1 +100182fe: 601f str r7, [r3, #0] +10018300: 700a strb r2, [r1, #0] +10018302: f7fd f93b bl 1001557c +10018306: e54f b.n 10017da8 +10018308: 601a str r2, [r3, #0] +1001830a: e7f1 b.n 100182f0 +1001830c: 0799 lsls r1, r3, #30 +1001830e: f57f ad4b bpl.w 10017da8 +10018312: 490f ldr r1, [pc, #60] ; (10018350 ) +10018314: 6afb ldr r3, [r7, #44] ; 0x2c +10018316: 680a ldr r2, [r1, #0] +10018318: 3b01 subs r3, #1 +1001831a: 4293 cmp r3, r2 +1001831c: f47f ad44 bne.w 10017da8 +10018320: 4638 mov r0, r7 +10018322: f000 fda1 bl 10018e68 +10018326: e53f b.n 10017da8 +10018328: 697b ldr r3, [r7, #20] +1001832a: 2204 movs r2, #4 +1001832c: 61ba str r2, [r7, #24] +1001832e: 2b00 cmp r3, #0 +10018330: d084 beq.n 1001823c +10018332: 6938 ldr r0, [r7, #16] +10018334: 4639 mov r1, r7 +10018336: 2200 movs r2, #0 +10018338: 4798 blx r3 +1001833a: 2800 cmp r0, #0 +1001833c: d06b beq.n 10018416 +1001833e: 300a adds r0, #10 +10018340: f47f af7c bne.w 1001823c +10018344: e4d2 b.n 10017cec +10018346: 68fb ldr r3, [r7, #12] +10018348: 6013 str r3, [r2, #0] +1001834a: e7d1 b.n 100182f0 +1001834c: 100513c0 .word 0x100513c0 +10018350: 100513d8 .word 0x100513d8 +10018354: 100513c4 .word 0x100513c4 +10018358: 100513b4 .word 0x100513b4 +1001835c: 10050ccc .word 0x10050ccc +10018360: 10050cc8 .word 0x10050cc8 +10018364: 100513b8 .word 0x100513b8 +10018368: 100513d0 .word 0x100513d0 +1001836c: 100513cc .word 0x100513cc +10018370: 6f7b ldr r3, [r7, #116] ; 0x74 +10018372: 691b ldr r3, [r3, #16] +10018374: 6858 ldr r0, [r3, #4] +10018376: f7fb fd53 bl 10013e20 +1001837a: f8d9 3000 ldr.w r3, [r9] +1001837e: 3001 adds r0, #1 +10018380: 4298 cmp r0, r3 +10018382: f47f ae45 bne.w 10018010 +10018386: 4931 ldr r1, [pc, #196] ; (1001844c ) +10018388: f8b7 e06a ldrh.w lr, [r7, #106] ; 0x6a +1001838c: 680a ldr r2, [r1, #0] +1001838e: 6829 ldr r1, [r5, #0] +10018390: 1c53 adds r3, r2, #1 +10018392: f10e 0501 add.w r5, lr, #1 +10018396: 64f8 str r0, [r7, #76] ; 0x4c +10018398: 62fb str r3, [r7, #44] ; 0x2c +1001839a: 637b str r3, [r7, #52] ; 0x34 +1001839c: f8a7 506a strh.w r5, [r7, #106] ; 0x6a +100183a0: 89cb ldrh r3, [r1, #14] +100183a2: 3a01 subs r2, #1 +100183a4: 2104 movs r1, #4 +100183a6: 65ba str r2, [r7, #88] ; 0x58 +100183a8: f8a7 3064 strh.w r3, [r7, #100] ; 0x64 +100183ac: f8a7 3066 strh.w r3, [r7, #102] ; 0x66 +100183b0: 61b9 str r1, [r7, #24] +100183b2: 8f78 ldrh r0, [r7, #58] ; 0x3a +100183b4: 1879 adds r1, r7, r1 +100183b6: f7fe fdfd bl 10016fb4 +100183ba: f8b7 3050 ldrh.w r3, [r7, #80] ; 0x50 +100183be: eb00 0280 add.w r2, r0, r0, lsl #2 +100183c2: 2b01 cmp r3, #1 +100183c4: bf0c ite eq +100183c6: 0043 lsleq r3, r0, #1 +100183c8: 4603 movne r3, r0 +100183ca: 8778 strh r0, [r7, #58] ; 0x3a +100183cc: 6f78 ldr r0, [r7, #116] ; 0x74 +100183ce: f8b7 106c ldrh.w r1, [r7, #108] ; 0x6c +100183d2: ea4f 0242 mov.w r2, r2, lsl #1 +100183d6: f8a7 2052 strh.w r2, [r7, #82] ; 0x52 +100183da: 6802 ldr r2, [r0, #0] +100183dc: bf08 it eq +100183de: b29b uxtheq r3, r3 +100183e0: 3901 subs r1, #1 +100183e2: f8a7 3050 strh.w r3, [r7, #80] ; 0x50 +100183e6: 677a str r2, [r7, #116] ; 0x74 +100183e8: f8a7 106c strh.w r1, [r7, #108] ; 0x6c +100183ec: f7fe f906 bl 100165fc +100183f0: 6f7b ldr r3, [r7, #116] ; 0x74 +100183f2: b33b cbz r3, 10018444 +100183f4: 2300 movs r3, #0 +100183f6: 873b strh r3, [r7, #56] ; 0x38 +100183f8: f887 304a strb.w r3, [r7, #74] ; 0x4a +100183fc: f8d7 3088 ldr.w r3, [r7, #136] ; 0x88 +10018400: 2b00 cmp r3, #0 +10018402: f43f ad07 beq.w 10017e14 +10018406: 6938 ldr r0, [r7, #16] +10018408: 4639 mov r1, r7 +1001840a: 2200 movs r2, #0 +1001840c: 4798 blx r3 +1001840e: 300a adds r0, #10 +10018410: f47f ad00 bne.w 10017e14 +10018414: e46a b.n 10017cec +10018416: 4638 mov r0, r7 +10018418: f8b7 5050 ldrh.w r5, [r7, #80] ; 0x50 +1001841c: f7fe feec bl 100171f8 +10018420: f8b7 3068 ldrh.w r3, [r7, #104] ; 0x68 +10018424: b113 cbz r3, 1001842c +10018426: 3b01 subs r3, #1 +10018428: f8a7 3068 strh.w r3, [r7, #104] ; 0x68 +1001842c: 8f7b ldrh r3, [r7, #58] ; 0x3a +1001842e: 2d01 cmp r5, #1 +10018430: 7832 ldrb r2, [r6, #0] +10018432: bf04 itt eq +10018434: 005b lsleq r3, r3, #1 +10018436: b29b uxtheq r3, r3 +10018438: 0690 lsls r0, r2, #26 +1001843a: f8a7 3050 strh.w r3, [r7, #80] ; 0x50 +1001843e: f57f acb3 bpl.w 10017da8 +10018442: e5b2 b.n 10017faa +10018444: f64f 73ff movw r3, #65535 ; 0xffff +10018448: 873b strh r3, [r7, #56] ; 0x38 +1001844a: e7d7 b.n 100183fc +1001844c: 100513d8 .word 0x100513d8 + +10018450 : +10018450: b570 push {r4, r5, r6, lr} +10018452: 460c mov r4, r1 +10018454: 4294 cmp r4, r2 +10018456: 461d mov r5, r3 +10018458: f89d 1018 ldrb.w r1, [sp, #24] +1001845c: f89d 3014 ldrb.w r3, [sp, #20] +10018460: d20f bcs.n 10018482 +10018462: 079e lsls r6, r3, #30 +10018464: d508 bpl.n 10018478 +10018466: f204 51b7 addw r1, r4, #1463 ; 0x5b7 +1001846a: f021 0103 bic.w r1, r1, #3 +1001846e: 4291 cmp r1, r2 +10018470: bfb8 it lt +10018472: 460a movlt r2, r1 +10018474: b291 uxth r1, r2 +10018476: e005 b.n 10018484 +10018478: 9e04 ldr r6, [sp, #16] +1001847a: f896 3022 ldrb.w r3, [r6, #34] ; 0x22 +1001847e: 065b lsls r3, r3, #25 +10018480: d50a bpl.n 10018498 +10018482: 4621 mov r1, r4 +10018484: 2200 movs r2, #0 +10018486: f7fd fd25 bl 10015ed4 +1001848a: b120 cbz r0, 10018496 +1001848c: 8943 ldrh r3, [r0, #10] +1001848e: 1b1b subs r3, r3, r4 +10018490: 802b strh r3, [r5, #0] +10018492: 8104 strh r4, [r0, #8] +10018494: 8144 strh r4, [r0, #10] +10018496: bd70 pop {r4, r5, r6, pc} +10018498: 2900 cmp r1, #0 +1001849a: d0e4 beq.n 10018466 +1001849c: 6f33 ldr r3, [r6, #112] ; 0x70 +1001849e: 2b00 cmp r3, #0 +100184a0: d1e1 bne.n 10018466 +100184a2: 6f73 ldr r3, [r6, #116] ; 0x74 +100184a4: 2b00 cmp r3, #0 +100184a6: d1de bne.n 10018466 +100184a8: e7eb b.n 10018482 +100184aa: bf00 nop + +100184ac : +100184ac: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100184b0: f89d 502c ldrb.w r5, [sp, #44] ; 0x2c +100184b4: 4682 mov sl, r0 +100184b6: f015 0f01 tst.w r5, #1 +100184ba: bf0c ite eq +100184bc: 2400 moveq r4, #0 +100184be: 2404 movne r4, #4 +100184c0: 2004 movs r0, #4 +100184c2: f015 0f02 tst.w r5, #2 +100184c6: bf0c ite eq +100184c8: 2700 moveq r7, #0 +100184ca: 270c movne r7, #12 +100184cc: 4689 mov r9, r1 +100184ce: 4616 mov r6, r2 +100184d0: 4698 mov r8, r3 +100184d2: f7fd fb45 bl 10015b60 +100184d6: 4427 add r7, r4 +100184d8: 4604 mov r4, r0 +100184da: 2800 cmp r0, #0 +100184dc: d038 beq.n 10018550 +100184de: 7305 strb r5, [r0, #12] +100184e0: 8933 ldrh r3, [r6, #8] +100184e2: f04f 0b00 mov.w fp, #0 +100184e6: 1bdb subs r3, r3, r7 +100184e8: 6046 str r6, [r0, #4] +100184ea: 8103 strh r3, [r0, #8] +100184ec: 2114 movs r1, #20 +100184ee: 4630 mov r0, r6 +100184f0: f8c4 b000 str.w fp, [r4] +100184f4: f8a4 b00a strh.w fp, [r4, #10] +100184f8: f7fd fc80 bl 10015dfc +100184fc: 4605 mov r5, r0 +100184fe: bb08 cbnz r0, 10018544 +10018500: 6863 ldr r3, [r4, #4] +10018502: f8ba 0000 ldrh.w r0, [sl] +10018506: 685e ldr r6, [r3, #4] +10018508: 02bf lsls r7, r7, #10 +1001850a: 6126 str r6, [r4, #16] +1001850c: f7fb fc7e bl 10013e0c +10018510: 8030 strh r0, [r6, #0] +10018512: f8b9 0000 ldrh.w r0, [r9] +10018516: 6926 ldr r6, [r4, #16] +10018518: f7fb fc78 bl 10013e0c +1001851c: 8070 strh r0, [r6, #2] +1001851e: 980a ldr r0, [sp, #40] ; 0x28 +10018520: 6926 ldr r6, [r4, #16] +10018522: f7fb fc7b bl 10013e1c +10018526: f507 47a0 add.w r7, r7, #20480 ; 0x5000 +1001852a: 6070 str r0, [r6, #4] +1001852c: ea47 0008 orr.w r0, r7, r8 +10018530: 6926 ldr r6, [r4, #16] +10018532: f7fb fc6b bl 10013e0c +10018536: 6923 ldr r3, [r4, #16] +10018538: 81b0 strh r0, [r6, #12] +1001853a: 4620 mov r0, r4 +1001853c: 749d strb r5, [r3, #18] +1001853e: 74dd strb r5, [r3, #19] +10018540: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10018544: 4620 mov r0, r4 +10018546: f7fe f859 bl 100165fc +1001854a: 4658 mov r0, fp +1001854c: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +10018550: 4630 mov r0, r6 +10018552: f7fd fc89 bl 10015e68 +10018556: 4620 mov r0, r4 +10018558: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1001855c : +1001855c: 3114 adds r1, #20 +1001855e: b5f8 push {r3, r4, r5, r6, r7, lr} +10018560: b28c uxth r4, r1 +10018562: 4605 mov r5, r0 +10018564: 4617 mov r7, r2 +10018566: 4621 mov r1, r4 +10018568: 2001 movs r0, #1 +1001856a: 2200 movs r2, #0 +1001856c: f7fd fcb2 bl 10015ed4 +10018570: 4606 mov r6, r0 +10018572: b308 cbz r0, 100185b8 +10018574: 8be8 ldrh r0, [r5, #30] +10018576: 6874 ldr r4, [r6, #4] +10018578: f7fb fc48 bl 10013e0c +1001857c: 8020 strh r0, [r4, #0] +1001857e: 8c28 ldrh r0, [r5, #32] +10018580: f7fb fc44 bl 10013e0c +10018584: 6067 str r7, [r4, #4] +10018586: 8060 strh r0, [r4, #2] +10018588: 6ae8 ldr r0, [r5, #44] ; 0x2c +1001858a: f7fb fc47 bl 10013e1c +1001858e: 60a0 str r0, [r4, #8] +10018590: f245 0010 movw r0, #20496 ; 0x5010 +10018594: f7fb fc3a bl 10013e0c +10018598: 81a0 strh r0, [r4, #12] +1001859a: 8e68 ldrh r0, [r5, #50] ; 0x32 +1001859c: f7fb fc36 bl 10013e0c +100185a0: 8e69 ldrh r1, [r5, #50] ; 0x32 +100185a2: 6aea ldr r2, [r5, #44] ; 0x2c +100185a4: 2300 movs r3, #0 +100185a6: 440a add r2, r1 +100185a8: 81e0 strh r0, [r4, #14] +100185aa: 7423 strb r3, [r4, #16] +100185ac: 7463 strb r3, [r4, #17] +100185ae: 74a3 strb r3, [r4, #18] +100185b0: 74e3 strb r3, [r4, #19] +100185b2: 636a str r2, [r5, #52] ; 0x34 +100185b4: 4630 mov r0, r6 +100185b6: bdf8 pop {r3, r4, r5, r6, r7, pc} +100185b8: 4621 mov r1, r4 +100185ba: 2001 movs r0, #1 +100185bc: 2203 movs r2, #3 +100185be: f7fd fc89 bl 10015ed4 +100185c2: 4606 mov r6, r0 +100185c4: 2800 cmp r0, #0 +100185c6: d0f5 beq.n 100185b4 +100185c8: e7d4 b.n 10018574 +100185ca: bf00 nop + +100185cc : +100185cc: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100185d0: f8b0 4066 ldrh.w r4, [r0, #102] ; 0x66 +100185d4: 4605 mov r5, r0 +100185d6: 8f40 ldrh r0, [r0, #58] ; 0x3a +100185d8: b08f sub sp, #60 ; 0x3c +100185da: 0864 lsrs r4, r4, #1 +100185dc: 9107 str r1, [sp, #28] +100185de: 4284 cmp r4, r0 +100185e0: bf28 it cs +100185e2: 4604 movcs r4, r0 +100185e4: 9406 str r4, [sp, #24] +100185e6: 9c07 ldr r4, [sp, #28] +100185e8: 2100 movs r1, #0 +100185ea: 4692 mov sl, r2 +100185ec: 9309 str r3, [sp, #36] ; 0x24 +100185ee: f8ad 1036 strh.w r1, [sp, #54] ; 0x36 +100185f2: 2c00 cmp r4, #0 +100185f4: f000 81b8 beq.w 10018968 +100185f8: 69ab ldr r3, [r5, #24] +100185fa: 2b07 cmp r3, #7 +100185fc: d007 beq.n 1001860e +100185fe: 3b02 subs r3, #2 +10018600: 2b02 cmp r3, #2 +10018602: d904 bls.n 1001860e +10018604: 20f3 movs r0, #243 ; 0xf3 +10018606: b240 sxtb r0, r0 +10018608: b00f add sp, #60 ; 0x3c +1001860a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001860e: f1ba 0f00 cmp.w sl, #0 +10018612: f000 80f2 beq.w 100187fa +10018616: f8b5 306a ldrh.w r3, [r5, #106] ; 0x6a +1001861a: 4553 cmp r3, sl +1001861c: f0c0 818e bcc.w 1001893c +10018620: f8b5 806c ldrh.w r8, [r5, #108] ; 0x6c +10018624: f1b8 0f13 cmp.w r8, #19 +10018628: f200 8188 bhi.w 1001893c +1001862c: 6f2c ldr r4, [r5, #112] ; 0x70 +1001862e: 9408 str r4, [sp, #32] +10018630: 2c00 cmp r4, #0 +10018632: f000 80e9 beq.w 10018808 +10018636: 9b08 ldr r3, [sp, #32] +10018638: e000 b.n 1001863c +1001863a: 4633 mov r3, r6 +1001863c: 681e ldr r6, [r3, #0] +1001863e: 2e00 cmp r6, #0 +10018640: d1fb bne.n 1001863a +10018642: 9308 str r3, [sp, #32] +10018644: 9c08 ldr r4, [sp, #32] +10018646: 7b1b ldrb r3, [r3, #12] +10018648: 8921 ldrh r1, [r4, #8] +1001864a: 9c06 ldr r4, [sp, #24] +1001864c: f013 0f01 tst.w r3, #1 +10018650: bf0c ite eq +10018652: 2200 moveq r2, #0 +10018654: 2204 movne r2, #4 +10018656: 1a60 subs r0, r4, r1 +10018658: f013 0f02 tst.w r3, #2 +1001865c: ebc2 0200 rsb r2, r2, r0 +10018660: f8b5 306e ldrh.w r3, [r5, #110] ; 0x6e +10018664: bf0c ite eq +10018666: 2000 moveq r0, #0 +10018668: 200c movne r0, #12 +1001866a: 1a12 subs r2, r2, r0 +1001866c: b292 uxth r2, r2 +1001866e: 2b00 cmp r3, #0 +10018670: d17d bne.n 1001876e +10018672: 960a str r6, [sp, #40] ; 0x28 +10018674: 9c0a ldr r4, [sp, #40] ; 0x28 +10018676: f8ad 6036 strh.w r6, [sp, #54] ; 0x36 +1001867a: 4554 cmp r4, sl +1001867c: 4633 mov r3, r6 +1001867e: f080 8085 bcs.w 1001878c +10018682: 2a00 cmp r2, #0 +10018684: f040 80c9 bne.w 1001881a +10018688: 9c0a ldr r4, [sp, #40] ; 0x28 +1001868a: 920b str r2, [sp, #44] ; 0x2c +1001868c: 9809 ldr r0, [sp, #36] ; 0x24 +1001868e: 2600 movs r6, #0 +10018690: 46b4 mov ip, r6 +10018692: f000 0901 and.w r9, r0, #1 +10018696: 9605 str r6, [sp, #20] +10018698: 464e mov r6, r9 +1001869a: 46e1 mov r9, ip +1001869c: e041 b.n 10018722 +1001869e: 9905 ldr r1, [sp, #20] +100186a0: 9a09 ldr r2, [sp, #36] ; 0x24 +100186a2: f1d1 0301 rsbs r3, r1, #1 +100186a6: bf38 it cc +100186a8: 2300 movcc r3, #0 +100186aa: 9201 str r2, [sp, #4] +100186ac: 9302 str r3, [sp, #8] +100186ae: 9500 str r5, [sp, #0] +100186b0: 2000 movs r0, #0 +100186b2: 4639 mov r1, r7 +100186b4: 9a06 ldr r2, [sp, #24] +100186b6: f10d 0336 add.w r3, sp, #54 ; 0x36 +100186ba: f7ff fec9 bl 10018450 +100186be: 4683 mov fp, r0 +100186c0: 2800 cmp r0, #0 +100186c2: f000 80dc beq.w 1001887e +100186c6: 9907 ldr r1, [sp, #28] +100186c8: 6840 ldr r0, [r0, #4] +100186ca: 4421 add r1, r4 +100186cc: 463a mov r2, r7 +100186ce: f029 fd47 bl 10042160 +100186d2: 4658 mov r0, fp +100186d4: f7fd fcbe bl 10016054 +100186d8: 4440 add r0, r8 +100186da: fa1f f880 uxth.w r8, r0 +100186de: f1b8 0f14 cmp.w r8, #20 +100186e2: f200 80e6 bhi.w 100188b2 +100186e6: 6e29 ldr r1, [r5, #96] ; 0x60 +100186e8: 2300 movs r3, #0 +100186ea: 4421 add r1, r4 +100186ec: 9100 str r1, [sp, #0] +100186ee: 9301 str r3, [sp, #4] +100186f0: 465a mov r2, fp +100186f2: f105 001e add.w r0, r5, #30 +100186f6: f105 0120 add.w r1, r5, #32 +100186fa: f7ff fed7 bl 100184ac +100186fe: 2800 cmp r0, #0 +10018700: f000 80bd beq.w 1001887e +10018704: f8bd 3036 ldrh.w r3, [sp, #54] ; 0x36 +10018708: 9905 ldr r1, [sp, #20] +1001870a: 8143 strh r3, [r0, #10] +1001870c: 2900 cmp r1, #0 +1001870e: f000 80ad beq.w 1001886c +10018712: 443c add r4, r7 +10018714: b2a4 uxth r4, r4 +10018716: 45a2 cmp sl, r4 +10018718: f8c9 0000 str.w r0, [r9] +1001871c: f240 80ac bls.w 10018878 +10018720: 4681 mov r9, r0 +10018722: ebc4 070a rsb r7, r4, sl +10018726: 9806 ldr r0, [sp, #24] +10018728: b2bf uxth r7, r7 +1001872a: 4287 cmp r7, r0 +1001872c: bf28 it cs +1001872e: 4607 movcs r7, r0 +10018730: 2e00 cmp r6, #0 +10018732: d1b4 bne.n 1001869e +10018734: 4630 mov r0, r6 +10018736: 4639 mov r1, r7 +10018738: 2201 movs r2, #1 +1001873a: f7fd fbcb bl 10015ed4 +1001873e: 4684 mov ip, r0 +10018740: 2800 cmp r0, #0 +10018742: f000 809c beq.w 1001887e +10018746: 9b07 ldr r3, [sp, #28] +10018748: 4631 mov r1, r6 +1001874a: 4423 add r3, r4 +1001874c: 6043 str r3, [r0, #4] +1001874e: 4632 mov r2, r6 +10018750: 4630 mov r0, r6 +10018752: f8cd c010 str.w ip, [sp, #16] +10018756: f7fd fbbd bl 10015ed4 +1001875a: f8dd c010 ldr.w ip, [sp, #16] +1001875e: 4683 mov fp, r0 +10018760: 2800 cmp r0, #0 +10018762: f000 80ab beq.w 100188bc +10018766: 4661 mov r1, ip +10018768: f7fd fc8c bl 10016084 +1001876c: e7b1 b.n 100186d2 +1001876e: 459a cmp sl, r3 +10018770: bf34 ite cc +10018772: 4654 movcc r4, sl +10018774: 461c movcs r4, r3 +10018776: 940a str r4, [sp, #40] ; 0x28 +10018778: 1b1b subs r3, r3, r4 +1001877a: 1b12 subs r2, r2, r4 +1001877c: 9c0a ldr r4, [sp, #40] ; 0x28 +1001877e: f8ad 3036 strh.w r3, [sp, #54] ; 0x36 +10018782: 4554 cmp r4, sl +10018784: b292 uxth r2, r2 +10018786: 9b08 ldr r3, [sp, #32] +10018788: f4ff af7b bcc.w 10018682 +1001878c: 2400 movs r4, #0 +1001878e: 940b str r4, [sp, #44] ; 0x2c +10018790: 9c0a ldr r4, [sp, #40] ; 0x28 +10018792: 2c00 cmp r4, #0 +10018794: d145 bne.n 10018822 +10018796: f8bd 2036 ldrh.w r2, [sp, #54] ; 0x36 +1001879a: 9c0b ldr r4, [sp, #44] ; 0x2c +1001879c: f8a5 206e strh.w r2, [r5, #110] ; 0x6e +100187a0: 2c00 cmp r4, #0 +100187a2: f000 80d3 beq.w 1001894c +100187a6: 9c08 ldr r4, [sp, #32] +100187a8: 990b ldr r1, [sp, #44] ; 0x2c +100187aa: 6860 ldr r0, [r4, #4] +100187ac: 9304 str r3, [sp, #16] +100187ae: f7fd fc69 bl 10016084 +100187b2: 9c0b ldr r4, [sp, #44] ; 0x2c +100187b4: 9b04 ldr r3, [sp, #16] +100187b6: 8921 ldrh r1, [r4, #8] +100187b8: 9c08 ldr r4, [sp, #32] +100187ba: 8922 ldrh r2, [r4, #8] +100187bc: 440a add r2, r1 +100187be: 8122 strh r2, [r4, #8] +100187c0: 9c08 ldr r4, [sp, #32] +100187c2: 6026 str r6, [r4, #0] +100187c4: 6e2a ldr r2, [r5, #96] ; 0x60 +100187c6: f8b5 106a ldrh.w r1, [r5, #106] ; 0x6a +100187ca: 4452 add r2, sl +100187cc: ebca 0a01 rsb sl, sl, r1 +100187d0: f8a5 806c strh.w r8, [r5, #108] ; 0x6c +100187d4: 662a str r2, [r5, #96] ; 0x60 +100187d6: f8a5 a06a strh.w sl, [r5, #106] ; 0x6a +100187da: b14b cbz r3, 100187f0 +100187dc: 691c ldr r4, [r3, #16] +100187de: b13c cbz r4, 100187f0 +100187e0: 9809 ldr r0, [sp, #36] ; 0x24 +100187e2: f000 0202 and.w r2, r0, #2 +100187e6: f002 05ff and.w r5, r2, #255 ; 0xff +100187ea: 2a00 cmp r2, #0 +100187ec: f000 80b4 beq.w 10018958 +100187f0: 2000 movs r0, #0 +100187f2: b240 sxtb r0, r0 +100187f4: b00f add sp, #60 ; 0x3c +100187f6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100187fa: 6f2c ldr r4, [r5, #112] ; 0x70 +100187fc: f8b5 806c ldrh.w r8, [r5, #108] ; 0x6c +10018800: 9408 str r4, [sp, #32] +10018802: 2c00 cmp r4, #0 +10018804: f47f af17 bne.w 10018636 +10018808: 9c08 ldr r4, [sp, #32] +1001880a: 940a str r4, [sp, #40] ; 0x28 +1001880c: 940b str r4, [sp, #44] ; 0x2c +1001880e: 45a2 cmp sl, r4 +10018810: f63f af3c bhi.w 1001868c +10018814: 9b08 ldr r3, [sp, #32] +10018816: 2600 movs r6, #0 +10018818: e7ba b.n 10018790 +1001881a: 2900 cmp r1, #0 +1001881c: d153 bne.n 100188c6 +1001881e: 910b str r1, [sp, #44] ; 0x2c +10018820: e734 b.n 1001868c +10018822: 9808 ldr r0, [sp, #32] +10018824: 6844 ldr r4, [r0, #4] +10018826: b1bc cbz r4, 10018858 +10018828: 4699 mov r9, r3 +1001882a: 9f0a ldr r7, [sp, #40] ; 0x28 +1001882c: e000 b.n 10018830 +1001882e: 460c mov r4, r1 +10018830: 8920 ldrh r0, [r4, #8] +10018832: 6821 ldr r1, [r4, #0] +10018834: 4438 add r0, r7 +10018836: 8120 strh r0, [r4, #8] +10018838: 2900 cmp r1, #0 +1001883a: d1f8 bne.n 1001882e +1001883c: 6863 ldr r3, [r4, #4] +1001883e: 8960 ldrh r0, [r4, #10] +10018840: 9907 ldr r1, [sp, #28] +10018842: 4418 add r0, r3 +10018844: 463a mov r2, r7 +10018846: f029 fc8b bl 10042160 +1001884a: 8963 ldrh r3, [r4, #10] +1001884c: 6821 ldr r1, [r4, #0] +1001884e: 443b add r3, r7 +10018850: 8163 strh r3, [r4, #10] +10018852: 2900 cmp r1, #0 +10018854: d1eb bne.n 1001882e +10018856: 464b mov r3, r9 +10018858: 9c08 ldr r4, [sp, #32] +1001885a: 8921 ldrh r1, [r4, #8] +1001885c: 8962 ldrh r2, [r4, #10] +1001885e: 9c0a ldr r4, [sp, #40] ; 0x28 +10018860: 4421 add r1, r4 +10018862: 1b12 subs r2, r2, r4 +10018864: 9c08 ldr r4, [sp, #32] +10018866: 8121 strh r1, [r4, #8] +10018868: 8162 strh r2, [r4, #10] +1001886a: e794 b.n 10018796 +1001886c: 443c add r4, r7 +1001886e: b2a4 uxth r4, r4 +10018870: 45a2 cmp sl, r4 +10018872: 9005 str r0, [sp, #20] +10018874: f63f af54 bhi.w 10018720 +10018878: 9e05 ldr r6, [sp, #20] +1001887a: 4603 mov r3, r0 +1001887c: e788 b.n 10018790 +1001887e: 9e05 ldr r6, [sp, #20] +10018880: f895 3022 ldrb.w r3, [r5, #34] ; 0x22 +10018884: 9c0b ldr r4, [sp, #44] ; 0x2c +10018886: f063 037f orn r3, r3, #127 ; 0x7f +1001888a: f885 3022 strb.w r3, [r5, #34] ; 0x22 +1001888e: b114 cbz r4, 10018896 +10018890: 4620 mov r0, r4 +10018892: f7fd fae9 bl 10015e68 +10018896: b13e cbz r6, 100188a8 +10018898: 4630 mov r0, r6 +1001889a: f7fd febd bl 10016618 +1001889e: 20ff movs r0, #255 ; 0xff +100188a0: b240 sxtb r0, r0 +100188a2: b00f add sp, #60 ; 0x3c +100188a4: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100188a8: 20ff movs r0, #255 ; 0xff +100188aa: b240 sxtb r0, r0 +100188ac: b00f add sp, #60 ; 0x3c +100188ae: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100188b2: 4658 mov r0, fp +100188b4: 9e05 ldr r6, [sp, #20] +100188b6: f7fd fad7 bl 10015e68 +100188ba: e7e1 b.n 10018880 +100188bc: 4660 mov r0, ip +100188be: 9e05 ldr r6, [sp, #20] +100188c0: f7fd fad2 bl 10015e68 +100188c4: e7dc b.n 10018880 +100188c6: 990a ldr r1, [sp, #40] ; 0x28 +100188c8: 9b09 ldr r3, [sp, #36] ; 0x24 +100188ca: ebc1 040a rsb r4, r1, sl +100188ce: 4294 cmp r4, r2 +100188d0: bfa8 it ge +100188d2: 4614 movge r4, r2 +100188d4: 07db lsls r3, r3, #31 +100188d6: b2a4 uxth r4, r4 +100188d8: d415 bmi.n 10018906 +100188da: 2003 movs r0, #3 +100188dc: 4621 mov r1, r4 +100188de: 2201 movs r2, #1 +100188e0: f7fd faf8 bl 10015ed4 +100188e4: 900b str r0, [sp, #44] ; 0x2c +100188e6: b348 cbz r0, 1001893c +100188e8: 9b07 ldr r3, [sp, #28] +100188ea: 980a ldr r0, [sp, #40] ; 0x28 +100188ec: 990b ldr r1, [sp, #44] ; 0x2c +100188ee: 4403 add r3, r0 +100188f0: 604b str r3, [r1, #4] +100188f2: 9a0a ldr r2, [sp, #40] ; 0x28 +100188f4: 980b ldr r0, [sp, #44] ; 0x2c +100188f6: 4414 add r4, r2 +100188f8: f7fd fbac bl 10016054 +100188fc: 4440 add r0, r8 +100188fe: b2a4 uxth r4, r4 +10018900: fa1f f880 uxth.w r8, r0 +10018904: e783 b.n 1001880e +10018906: 9809 ldr r0, [sp, #36] ; 0x24 +10018908: 2301 movs r3, #1 +1001890a: 9001 str r0, [sp, #4] +1001890c: 9302 str r3, [sp, #8] +1001890e: 9500 str r5, [sp, #0] +10018910: 2003 movs r0, #3 +10018912: 4621 mov r1, r4 +10018914: f10d 0336 add.w r3, sp, #54 ; 0x36 +10018918: f7ff fd9a bl 10018450 +1001891c: 900b str r0, [sp, #44] ; 0x2c +1001891e: b168 cbz r0, 1001893c +10018920: 9908 ldr r1, [sp, #32] +10018922: f8bd 2036 ldrh.w r2, [sp, #54] ; 0x36 +10018926: 894b ldrh r3, [r1, #10] +10018928: 6840 ldr r0, [r0, #4] +1001892a: 4413 add r3, r2 +1001892c: 814b strh r3, [r1, #10] +1001892e: 9a0a ldr r2, [sp, #40] ; 0x28 +10018930: 9907 ldr r1, [sp, #28] +10018932: 4411 add r1, r2 +10018934: 4622 mov r2, r4 +10018936: f029 fc13 bl 10042160 +1001893a: e7da b.n 100188f2 +1001893c: f895 3022 ldrb.w r3, [r5, #34] ; 0x22 +10018940: 20ff movs r0, #255 ; 0xff +10018942: f063 037f orn r3, r3, #127 ; 0x7f +10018946: f885 3022 strb.w r3, [r5, #34] ; 0x22 +1001894a: e65c b.n 10018606 +1001894c: 9c08 ldr r4, [sp, #32] +1001894e: 2c00 cmp r4, #0 +10018950: f47f af36 bne.w 100187c0 +10018954: 672e str r6, [r5, #112] ; 0x70 +10018956: e735 b.n 100187c4 +10018958: 2008 movs r0, #8 +1001895a: 89a6 ldrh r6, [r4, #12] +1001895c: f7fb fa56 bl 10013e0c +10018960: 4330 orrs r0, r6 +10018962: 81a0 strh r0, [r4, #12] +10018964: 4628 mov r0, r5 +10018966: e64e b.n 10018606 +10018968: 20f2 movs r0, #242 ; 0xf2 +1001896a: e64c b.n 10018606 + +1001896c : +1001896c: b570 push {r4, r5, r6, lr} +1001896e: f8b0 306c ldrh.w r3, [r0, #108] ; 0x6c +10018972: b082 sub sp, #8 +10018974: 2b13 cmp r3, #19 +10018976: 4605 mov r5, r0 +10018978: 460e mov r6, r1 +1001897a: d84c bhi.n 10018a16 +1001897c: f001 0302 and.w r3, r1, #2 +10018980: f003 04ff and.w r4, r3, #255 ; 0xff +10018984: 2b00 cmp r3, #0 +10018986: d13f bne.n 10018a08 +10018988: 4621 mov r1, r4 +1001898a: f8b5 306a ldrh.w r3, [r5, #106] ; 0x6a +1001898e: 2b00 cmp r3, #0 +10018990: d03f beq.n 10018a12 +10018992: 2000 movs r0, #0 +10018994: 4602 mov r2, r0 +10018996: f7fd fa9d bl 10015ed4 +1001899a: 2800 cmp r0, #0 +1001899c: d03b beq.n 10018a16 +1001899e: 6e2b ldr r3, [r5, #96] ; 0x60 +100189a0: 4602 mov r2, r0 +100189a2: 9300 str r3, [sp, #0] +100189a4: 9401 str r4, [sp, #4] +100189a6: f105 001e add.w r0, r5, #30 +100189aa: f105 0120 add.w r1, r5, #32 +100189ae: 4633 mov r3, r6 +100189b0: f7ff fd7c bl 100184ac +100189b4: b378 cbz r0, 10018a16 +100189b6: 6f2c ldr r4, [r5, #112] ; 0x70 +100189b8: b90c cbnz r4, 100189be +100189ba: e028 b.n 10018a0e +100189bc: 4614 mov r4, r2 +100189be: 6822 ldr r2, [r4, #0] +100189c0: 2a00 cmp r2, #0 +100189c2: d1fb bne.n 100189bc +100189c4: 6020 str r0, [r4, #0] +100189c6: 2300 movs r3, #0 +100189c8: 07b2 lsls r2, r6, #30 +100189ca: f8a5 306e strh.w r3, [r5, #110] ; 0x6e +100189ce: d007 beq.n 100189e0 +100189d0: 6e2b ldr r3, [r5, #96] ; 0x60 +100189d2: f8b5 206a ldrh.w r2, [r5, #106] ; 0x6a +100189d6: 3301 adds r3, #1 +100189d8: 3a01 subs r2, #1 +100189da: 662b str r3, [r5, #96] ; 0x60 +100189dc: f8a5 206a strh.w r2, [r5, #106] ; 0x6a +100189e0: 07f3 lsls r3, r6, #31 +100189e2: d505 bpl.n 100189f0 +100189e4: f895 3022 ldrb.w r3, [r5, #34] ; 0x22 +100189e8: f043 0320 orr.w r3, r3, #32 +100189ec: f885 3022 strb.w r3, [r5, #34] ; 0x22 +100189f0: 6840 ldr r0, [r0, #4] +100189f2: f8b5 406c ldrh.w r4, [r5, #108] ; 0x6c +100189f6: f7fd fb2d bl 10016054 +100189fa: 4420 add r0, r4 +100189fc: f8a5 006c strh.w r0, [r5, #108] ; 0x6c +10018a00: 2000 movs r0, #0 +10018a02: b240 sxtb r0, r0 +10018a04: b002 add sp, #8 +10018a06: bd70 pop {r4, r5, r6, pc} +10018a08: 2401 movs r4, #1 +10018a0a: 2104 movs r1, #4 +10018a0c: e7bd b.n 1001898a +10018a0e: 6728 str r0, [r5, #112] ; 0x70 +10018a10: e7d9 b.n 100189c6 +10018a12: 20ff movs r0, #255 ; 0xff +10018a14: e7f5 b.n 10018a02 +10018a16: f895 3022 ldrb.w r3, [r5, #34] ; 0x22 +10018a1a: 20ff movs r0, #255 ; 0xff +10018a1c: f063 037f orn r3, r3, #127 ; 0x7f +10018a20: f885 3022 strb.w r3, [r5, #34] ; 0x22 +10018a24: e7ed b.n 10018a02 +10018a26: bf00 nop + +10018a28 : +10018a28: b5f8 push {r3, r4, r5, r6, r7, lr} +10018a2a: 6f04 ldr r4, [r0, #112] ; 0x70 +10018a2c: 4605 mov r5, r0 +10018a2e: b90c cbnz r4, 10018a34 +10018a30: e00a b.n 10018a48 +10018a32: 461c mov r4, r3 +10018a34: 6823 ldr r3, [r4, #0] +10018a36: 2b00 cmp r3, #0 +10018a38: d1fb bne.n 10018a32 +10018a3a: 6923 ldr r3, [r4, #16] +10018a3c: 8998 ldrh r0, [r3, #12] +10018a3e: f7fb f9e9 bl 10013e14 +10018a42: f010 0607 ands.w r6, r0, #7 +10018a46: d005 beq.n 10018a54 +10018a48: 4628 mov r0, r5 +10018a4a: 2101 movs r1, #1 +10018a4c: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10018a50: f7ff bf8c b.w 1001896c +10018a54: 6924 ldr r4, [r4, #16] +10018a56: 2001 movs r0, #1 +10018a58: 89a7 ldrh r7, [r4, #12] +10018a5a: f7fb f9d7 bl 10013e0c +10018a5e: 4338 orrs r0, r7 +10018a60: 81a0 strh r0, [r4, #12] +10018a62: f895 3022 ldrb.w r3, [r5, #34] ; 0x22 +10018a66: 4630 mov r0, r6 +10018a68: f043 0320 orr.w r3, r3, #32 +10018a6c: f885 3022 strb.w r3, [r5, #34] ; 0x22 +10018a70: bdf8 pop {r3, r4, r5, r6, r7, pc} +10018a72: bf00 nop + +10018a74 : +10018a74: b5f0 push {r4, r5, r6, r7, lr} +10018a76: 4604 mov r4, r0 +10018a78: b083 sub sp, #12 +10018a7a: 6d40 ldr r0, [r0, #84] ; 0x54 +10018a7c: f7fb f9ce bl 10013e1c +10018a80: 2100 movs r1, #0 +10018a82: 4602 mov r2, r0 +10018a84: 4620 mov r0, r4 +10018a86: f7ff fd69 bl 1001855c +10018a8a: 4605 mov r5, r0 +10018a8c: b300 cbz r0, 10018ad0 +10018a8e: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10018a92: 6847 ldr r7, [r0, #4] +10018a94: f023 0303 bic.w r3, r3, #3 +10018a98: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10018a9c: 8903 ldrh r3, [r0, #8] +10018a9e: 1d26 adds r6, r4, #4 +10018aa0: 9300 str r3, [sp, #0] +10018aa2: 4632 mov r2, r6 +10018aa4: 4621 mov r1, r4 +10018aa6: 2306 movs r3, #6 +10018aa8: f7fa fb00 bl 100130ac +10018aac: 8238 strh r0, [r7, #16] +10018aae: 7a61 ldrb r1, [r4, #9] +10018ab0: 2006 movs r0, #6 +10018ab2: 7aa3 ldrb r3, [r4, #10] +10018ab4: 4632 mov r2, r6 +10018ab6: 9100 str r1, [sp, #0] +10018ab8: 9001 str r0, [sp, #4] +10018aba: 4621 mov r1, r4 +10018abc: 4628 mov r0, r5 +10018abe: f7fa fd59 bl 10013574 +10018ac2: 4628 mov r0, r5 +10018ac4: f7fd f9d0 bl 10015e68 +10018ac8: 2000 movs r0, #0 +10018aca: b240 sxtb r0, r0 +10018acc: b003 add sp, #12 +10018ace: bdf0 pop {r4, r5, r6, r7, pc} +10018ad0: 20fe movs r0, #254 ; 0xfe +10018ad2: e7fa b.n 10018aca + +10018ad4 : +10018ad4: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10018ad8: 4bad ldr r3, [pc, #692] ; (10018d90 ) +10018ada: b083 sub sp, #12 +10018adc: 681b ldr r3, [r3, #0] +10018ade: 4604 mov r4, r0 +10018ae0: 4283 cmp r3, r0 +10018ae2: f000 80fe beq.w 10018ce2 +10018ae6: f8b0 2050 ldrh.w r2, [r0, #80] ; 0x50 +10018aea: f8b0 8064 ldrh.w r8, [r0, #100] ; 0x64 +10018aee: f890 3022 ldrb.w r3, [r0, #34] ; 0x22 +10018af2: 4590 cmp r8, r2 +10018af4: bf28 it cs +10018af6: 4690 movcs r8, r2 +10018af8: 079a lsls r2, r3, #30 +10018afa: 6f05 ldr r5, [r0, #112] ; 0x70 +10018afc: f100 8131 bmi.w 10018d62 +10018b00: 6f66 ldr r6, [r4, #116] ; 0x74 +10018b02: b90e cbnz r6, 10018b08 +10018b04: e003 b.n 10018b0e +10018b06: 461e mov r6, r3 +10018b08: 6833 ldr r3, [r6, #0] +10018b0a: 2b00 cmp r3, #0 +10018b0c: d1fb bne.n 10018b06 +10018b0e: 2d00 cmp r5, #0 +10018b10: f000 8139 beq.w 10018d86 +10018b14: 1d27 adds r7, r4, #4 +10018b16: f8df 927c ldr.w r9, [pc, #636] ; 10018d94 +10018b1a: e075 b.n 10018c08 +10018b1c: f9b4 3038 ldrsh.w r3, [r4, #56] ; 0x38 +10018b20: 3301 adds r3, #1 +10018b22: bf04 itt eq +10018b24: 2300 moveq r3, #0 +10018b26: 8723 strheq r3, [r4, #56] ; 0x38 +10018b28: 6823 ldr r3, [r4, #0] +10018b2a: b933 cbnz r3, 10018b3a +10018b2c: 4638 mov r0, r7 +10018b2e: f7fa fb35 bl 1001319c +10018b32: 2800 cmp r0, #0 +10018b34: d02c beq.n 10018b90 +10018b36: 6843 ldr r3, [r0, #4] +10018b38: 6023 str r3, [r4, #0] +10018b3a: 6be3 ldr r3, [r4, #60] ; 0x3c +10018b3c: 2b00 cmp r3, #0 +10018b3e: f000 80b9 beq.w 10018cb4 +10018b42: 6868 ldr r0, [r5, #4] +10018b44: f8d5 a010 ldr.w sl, [r5, #16] +10018b48: 6842 ldr r2, [r0, #4] +10018b4a: 8903 ldrh r3, [r0, #8] +10018b4c: ebc2 020a rsb r2, r2, sl +10018b50: 8941 ldrh r1, [r0, #10] +10018b52: b292 uxth r2, r2 +10018b54: 1a9b subs r3, r3, r2 +10018b56: 1a89 subs r1, r1, r2 +10018b58: b29b uxth r3, r3 +10018b5a: 2200 movs r2, #0 +10018b5c: 8141 strh r1, [r0, #10] +10018b5e: 8103 strh r3, [r0, #8] +10018b60: f8c0 a004 str.w sl, [r0, #4] +10018b64: 4621 mov r1, r4 +10018b66: f88a 2010 strb.w r2, [sl, #16] +10018b6a: f88a 2011 strb.w r2, [sl, #17] +10018b6e: 9300 str r3, [sp, #0] +10018b70: 463a mov r2, r7 +10018b72: 2306 movs r3, #6 +10018b74: f7fa fa9a bl 100130ac +10018b78: f8aa 0010 strh.w r0, [sl, #16] +10018b7c: 7a61 ldrb r1, [r4, #9] +10018b7e: 2206 movs r2, #6 +10018b80: 7aa3 ldrb r3, [r4, #10] +10018b82: 6868 ldr r0, [r5, #4] +10018b84: e88d 0006 stmia.w sp, {r1, r2} +10018b88: 4621 mov r1, r4 +10018b8a: 463a mov r2, r7 +10018b8c: f7fa fcf2 bl 10013574 +10018b90: 692b ldr r3, [r5, #16] +10018b92: 6858 ldr r0, [r3, #4] +10018b94: f7fb f944 bl 10013e20 +10018b98: 692a ldr r2, [r5, #16] +10018b9a: 4682 mov sl, r0 +10018b9c: 8990 ldrh r0, [r2, #12] +10018b9e: f8b5 b008 ldrh.w fp, [r5, #8] +10018ba2: f7fb f937 bl 10013e14 +10018ba6: f010 0003 ands.w r0, r0, #3 +10018baa: bf18 it ne +10018bac: 2001 movne r0, #1 +10018bae: 6d62 ldr r2, [r4, #84] ; 0x54 +10018bb0: eb0b 0300 add.w r3, fp, r0 +10018bb4: 4453 add r3, sl +10018bb6: 1ad2 subs r2, r2, r3 +10018bb8: 2a00 cmp r2, #0 +10018bba: bfb8 it lt +10018bbc: 6563 strlt r3, [r4, #84] ; 0x54 +10018bbe: 692b ldr r3, [r5, #16] +10018bc0: f8b5 a008 ldrh.w sl, [r5, #8] +10018bc4: 8998 ldrh r0, [r3, #12] +10018bc6: f7fb f925 bl 10013e14 +10018bca: f010 0003 ands.w r0, r0, #3 +10018bce: bf18 it ne +10018bd0: 2001 movne r0, #1 +10018bd2: 4450 add r0, sl +10018bd4: 2800 cmp r0, #0 +10018bd6: f000 80a5 beq.w 10018d24 +10018bda: 6f63 ldr r3, [r4, #116] ; 0x74 +10018bdc: 2200 movs r2, #0 +10018bde: 602a str r2, [r5, #0] +10018be0: 2b00 cmp r3, #0 +10018be2: d070 beq.n 10018cc6 +10018be4: 692b ldr r3, [r5, #16] +10018be6: 6858 ldr r0, [r3, #4] +10018be8: f7fb f91a bl 10013e20 +10018bec: 6933 ldr r3, [r6, #16] +10018bee: 4682 mov sl, r0 +10018bf0: 6858 ldr r0, [r3, #4] +10018bf2: f7fb f915 bl 10013e20 +10018bf6: ebc0 000a rsb r0, r0, sl +10018bfa: 2800 cmp r0, #0 +10018bfc: db75 blt.n 10018cea +10018bfe: 6035 str r5, [r6, #0] +10018c00: 462e mov r6, r5 +10018c02: 6f25 ldr r5, [r4, #112] ; 0x70 +10018c04: 2d00 cmp r5, #0 +10018c06: d063 beq.n 10018cd0 +10018c08: 692b ldr r3, [r5, #16] +10018c0a: 6858 ldr r0, [r3, #4] +10018c0c: f7fb f908 bl 10013e20 +10018c10: 892a ldrh r2, [r5, #8] +10018c12: 6ce3 ldr r3, [r4, #76] ; 0x4c +10018c14: 1ad3 subs r3, r2, r3 +10018c16: 4418 add r0, r3 +10018c18: 4580 cmp r8, r0 +10018c1a: f0c0 80b4 bcc.w 10018d86 +10018c1e: 692b ldr r3, [r5, #16] +10018c20: 8998 ldrh r0, [r3, #12] +10018c22: f7fb f8f7 bl 10013e14 +10018c26: 6f63 ldr r3, [r4, #116] ; 0x74 +10018c28: b153 cbz r3, 10018c40 +10018c2a: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10018c2e: f013 0f44 tst.w r3, #68 ; 0x44 +10018c32: d105 bne.n 10018c40 +10018c34: 6f22 ldr r2, [r4, #112] ; 0x70 +10018c36: 2a00 cmp r2, #0 +10018c38: d07c beq.n 10018d34 +10018c3a: 6811 ldr r1, [r2, #0] +10018c3c: 2900 cmp r1, #0 +10018c3e: d075 beq.n 10018d2c +10018c40: 69a3 ldr r3, [r4, #24] +10018c42: 682a ldr r2, [r5, #0] +10018c44: 2b02 cmp r3, #2 +10018c46: 6722 str r2, [r4, #112] ; 0x70 +10018c48: d010 beq.n 10018c6c +10018c4a: f8d5 a010 ldr.w sl, [r5, #16] +10018c4e: 2010 movs r0, #16 +10018c50: f8ba b00c ldrh.w fp, [sl, #12] +10018c54: f7fb f8da bl 10013e0c +10018c58: ea40 000b orr.w r0, r0, fp +10018c5c: f8aa 000c strh.w r0, [sl, #12] +10018c60: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10018c64: f023 0303 bic.w r3, r3, #3 +10018c68: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10018c6c: 6ae0 ldr r0, [r4, #44] ; 0x2c +10018c6e: f8d5 a010 ldr.w sl, [r5, #16] +10018c72: f7fb f8d3 bl 10013e1c +10018c76: f8ca 0008 str.w r0, [sl, #8] +10018c7a: 8e60 ldrh r0, [r4, #50] ; 0x32 +10018c7c: f8d5 a010 ldr.w sl, [r5, #16] +10018c80: f7fb f8c4 bl 10013e0c +10018c84: 8e62 ldrh r2, [r4, #50] ; 0x32 +10018c86: 6ae3 ldr r3, [r4, #44] ; 0x2c +10018c88: f8aa 000e strh.w r0, [sl, #14] +10018c8c: 4413 add r3, r2 +10018c8e: 6363 str r3, [r4, #52] ; 0x34 +10018c90: 7b2b ldrb r3, [r5, #12] +10018c92: f8d5 a010 ldr.w sl, [r5, #16] +10018c96: 07db lsls r3, r3, #31 +10018c98: f57f af40 bpl.w 10018b1c +10018c9c: 4639 mov r1, r7 +10018c9e: f240 50b4 movw r0, #1460 ; 0x5b4 +10018ca2: f7fe f987 bl 10016fb4 +10018ca6: f040 7001 orr.w r0, r0, #33816576 ; 0x2040000 +10018caa: f7fb f8b7 bl 10013e1c +10018cae: f8ca 0014 str.w r0, [sl, #20] +10018cb2: e733 b.n 10018b1c +10018cb4: f8d9 3000 ldr.w r3, [r9] +10018cb8: 692a ldr r2, [r5, #16] +10018cba: 63e3 str r3, [r4, #60] ; 0x3c +10018cbc: 6850 ldr r0, [r2, #4] +10018cbe: f7fb f8af bl 10013e20 +10018cc2: 6420 str r0, [r4, #64] ; 0x40 +10018cc4: e73d b.n 10018b42 +10018cc6: 6765 str r5, [r4, #116] ; 0x74 +10018cc8: 462e mov r6, r5 +10018cca: 6f25 ldr r5, [r4, #112] ; 0x70 +10018ccc: 2d00 cmp r5, #0 +10018cce: d19b bne.n 10018c08 +10018cd0: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10018cd4: 2200 movs r2, #0 +10018cd6: f003 037f and.w r3, r3, #127 ; 0x7f +10018cda: f8a4 206e strh.w r2, [r4, #110] ; 0x6e +10018cde: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10018ce2: 2000 movs r0, #0 +10018ce4: b003 add sp, #12 +10018ce6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10018cea: 6f63 ldr r3, [r4, #116] ; 0x74 +10018cec: f104 0a74 add.w sl, r4, #116 ; 0x74 +10018cf0: b92b cbnz r3, 10018cfe +10018cf2: e013 b.n 10018d1c +10018cf4: f8da a000 ldr.w sl, [sl] +10018cf8: f8da 3000 ldr.w r3, [sl] +10018cfc: b173 cbz r3, 10018d1c +10018cfe: 691b ldr r3, [r3, #16] +10018d00: 6858 ldr r0, [r3, #4] +10018d02: f7fb f88d bl 10013e20 +10018d06: 692b ldr r3, [r5, #16] +10018d08: 4683 mov fp, r0 +10018d0a: 6858 ldr r0, [r3, #4] +10018d0c: f7fb f888 bl 10013e20 +10018d10: ebc0 000b rsb r0, r0, fp +10018d14: 2800 cmp r0, #0 +10018d16: dbed blt.n 10018cf4 +10018d18: f8da 3000 ldr.w r3, [sl] +10018d1c: 602b str r3, [r5, #0] +10018d1e: f8ca 5000 str.w r5, [sl] +10018d22: e76e b.n 10018c02 +10018d24: 4628 mov r0, r5 +10018d26: f7fd fc69 bl 100165fc +10018d2a: e76a b.n 10018c02 +10018d2c: 8910 ldrh r0, [r2, #8] +10018d2e: 8f61 ldrh r1, [r4, #58] ; 0x3a +10018d30: 4288 cmp r0, r1 +10018d32: d285 bcs.n 10018c40 +10018d34: f8b4 106a ldrh.w r1, [r4, #106] ; 0x6a +10018d38: 2900 cmp r1, #0 +10018d3a: d081 beq.n 10018c40 +10018d3c: f8b4 106c ldrh.w r1, [r4, #108] ; 0x6c +10018d40: 2913 cmp r1, #19 +10018d42: f63f af7d bhi.w 10018c40 +10018d46: f013 0fa0 tst.w r3, #160 ; 0xa0 +10018d4a: f47f af79 bne.w 10018c40 +10018d4e: 2a00 cmp r2, #0 +10018d50: d0c0 beq.n 10018cd4 +10018d52: f003 037f and.w r3, r3, #127 ; 0x7f +10018d56: 2000 movs r0, #0 +10018d58: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10018d5c: b003 add sp, #12 +10018d5e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10018d62: b155 cbz r5, 10018d7a +10018d64: 692b ldr r3, [r5, #16] +10018d66: 6858 ldr r0, [r3, #4] +10018d68: f7fb f85a bl 10013e20 +10018d6c: 892a ldrh r2, [r5, #8] +10018d6e: 6ce3 ldr r3, [r4, #76] ; 0x4c +10018d70: 1ad3 subs r3, r2, r3 +10018d72: 4418 add r0, r3 +10018d74: 4580 cmp r8, r0 +10018d76: f4bf aec3 bcs.w 10018b00 +10018d7a: 4620 mov r0, r4 +10018d7c: b003 add sp, #12 +10018d7e: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10018d82: f7ff be77 b.w 10018a74 +10018d86: 6f22 ldr r2, [r4, #112] ; 0x70 +10018d88: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +10018d8c: e7df b.n 10018d4e +10018d8e: bf00 nop +10018d90: 10051408 .word 0x10051408 +10018d94: 100513b8 .word 0x100513b8 + +10018d98 : +10018d98: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10018d9c: 4681 mov r9, r0 +10018d9e: b082 sub sp, #8 +10018da0: 460e mov r6, r1 +10018da2: 4690 mov r8, r2 +10018da4: 2001 movs r0, #1 +10018da6: 2114 movs r1, #20 +10018da8: 2200 movs r2, #0 +10018daa: 461f mov r7, r3 +10018dac: f8bd 4028 ldrh.w r4, [sp, #40] ; 0x28 +10018db0: f8bd a02c ldrh.w sl, [sp, #44] ; 0x2c +10018db4: f7fd f88e bl 10015ed4 +10018db8: 4605 mov r5, r0 +10018dba: 2800 cmp r0, #0 +10018dbc: d037 beq.n 10018e2e +10018dbe: 4620 mov r0, r4 +10018dc0: 686c ldr r4, [r5, #4] +10018dc2: f7fb f823 bl 10013e0c +10018dc6: 8020 strh r0, [r4, #0] +10018dc8: 4650 mov r0, sl +10018dca: f7fb f81f bl 10013e0c +10018dce: 8060 strh r0, [r4, #2] +10018dd0: 4648 mov r0, r9 +10018dd2: f7fb f823 bl 10013e1c +10018dd6: 6060 str r0, [r4, #4] +10018dd8: 4630 mov r0, r6 +10018dda: f7fb f81f bl 10013e1c +10018dde: 60a0 str r0, [r4, #8] +10018de0: f245 0014 movw r0, #20500 ; 0x5014 +10018de4: f7fb f812 bl 10013e0c +10018de8: 892b ldrh r3, [r5, #8] +10018dea: 2600 movs r6, #0 +10018dec: 2116 movs r1, #22 +10018dee: f06f 022f mvn.w r2, #47 ; 0x2f +10018df2: 81a0 strh r0, [r4, #12] +10018df4: 73a1 strb r1, [r4, #14] +10018df6: 73e2 strb r2, [r4, #15] +10018df8: 7426 strb r6, [r4, #16] +10018dfa: 7466 strb r6, [r4, #17] +10018dfc: 74a6 strb r6, [r4, #18] +10018dfe: 74e6 strb r6, [r4, #19] +10018e00: 4641 mov r1, r8 +10018e02: 9300 str r3, [sp, #0] +10018e04: 463a mov r2, r7 +10018e06: 4628 mov r0, r5 +10018e08: 2306 movs r3, #6 +10018e0a: f7fa f94f bl 100130ac +10018e0e: 2306 movs r3, #6 +10018e10: 8220 strh r0, [r4, #16] +10018e12: 4641 mov r1, r8 +10018e14: 9301 str r3, [sp, #4] +10018e16: 9600 str r6, [sp, #0] +10018e18: 463a mov r2, r7 +10018e1a: 4628 mov r0, r5 +10018e1c: 23ff movs r3, #255 ; 0xff +10018e1e: f7fa fba9 bl 10013574 +10018e22: 4628 mov r0, r5 +10018e24: b002 add sp, #8 +10018e26: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10018e2a: f7fd b81d b.w 10015e68 +10018e2e: b002 add sp, #8 +10018e30: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +10018e34 : +10018e34: b430 push {r4, r5} +10018e36: 6f44 ldr r4, [r0, #116] ; 0x74 +10018e38: 4601 mov r1, r0 +10018e3a: b19c cbz r4, 10018e64 +10018e3c: 4622 mov r2, r4 +10018e3e: e000 b.n 10018e42 +10018e40: 461a mov r2, r3 +10018e42: 6813 ldr r3, [r2, #0] +10018e44: 2b00 cmp r3, #0 +10018e46: d1fb bne.n 10018e40 +10018e48: 6f0d ldr r5, [r1, #112] ; 0x70 +10018e4a: 4608 mov r0, r1 +10018e4c: 6015 str r5, [r2, #0] +10018e4e: f891 204a ldrb.w r2, [r1, #74] ; 0x4a +10018e52: 670c str r4, [r1, #112] ; 0x70 +10018e54: 3201 adds r2, #1 +10018e56: f881 204a strb.w r2, [r1, #74] ; 0x4a +10018e5a: 674b str r3, [r1, #116] ; 0x74 +10018e5c: 63cb str r3, [r1, #60] ; 0x3c +10018e5e: bc30 pop {r4, r5} +10018e60: f7ff be38 b.w 10018ad4 +10018e64: bc30 pop {r4, r5} +10018e66: 4770 bx lr + +10018e68 : +10018e68: b5f8 push {r3, r4, r5, r6, r7, lr} +10018e6a: 6f46 ldr r6, [r0, #116] ; 0x74 +10018e6c: 4607 mov r7, r0 +10018e6e: b30e cbz r6, 10018eb4 +10018e70: 6832 ldr r2, [r6, #0] +10018e72: 6f03 ldr r3, [r0, #112] ; 0x70 +10018e74: 6742 str r2, [r0, #116] ; 0x74 +10018e76: f100 0470 add.w r4, r0, #112 ; 0x70 +10018e7a: b91b cbnz r3, 10018e84 +10018e7c: e00f b.n 10018e9e +10018e7e: 6824 ldr r4, [r4, #0] +10018e80: 6823 ldr r3, [r4, #0] +10018e82: b163 cbz r3, 10018e9e +10018e84: 691b ldr r3, [r3, #16] +10018e86: 6858 ldr r0, [r3, #4] +10018e88: f7fa ffca bl 10013e20 +10018e8c: 6933 ldr r3, [r6, #16] +10018e8e: 4605 mov r5, r0 +10018e90: 6858 ldr r0, [r3, #4] +10018e92: f7fa ffc5 bl 10013e20 +10018e96: 1a28 subs r0, r5, r0 +10018e98: 2800 cmp r0, #0 +10018e9a: dbf0 blt.n 10018e7e +10018e9c: 6823 ldr r3, [r4, #0] +10018e9e: 6033 str r3, [r6, #0] +10018ea0: 6026 str r6, [r4, #0] +10018ea2: 6833 ldr r3, [r6, #0] +10018ea4: b13b cbz r3, 10018eb6 +10018ea6: f897 204a ldrb.w r2, [r7, #74] ; 0x4a +10018eaa: 2300 movs r3, #0 +10018eac: 3201 adds r2, #1 +10018eae: f887 204a strb.w r2, [r7, #74] ; 0x4a +10018eb2: 63fb str r3, [r7, #60] ; 0x3c +10018eb4: bdf8 pop {r3, r4, r5, r6, r7, pc} +10018eb6: f8a7 306e strh.w r3, [r7, #110] ; 0x6e +10018eba: e7f4 b.n 10018ea6 + +10018ebc : +10018ebc: 6f43 ldr r3, [r0, #116] ; 0x74 +10018ebe: b510 push {r4, lr} +10018ec0: 4604 mov r4, r0 +10018ec2: b30b cbz r3, 10018f08 +10018ec4: f890 3022 ldrb.w r3, [r0, #34] ; 0x22 +10018ec8: 075b lsls r3, r3, #29 +10018eca: d41d bmi.n 10018f08 +10018ecc: f7ff ffcc bl 10018e68 +10018ed0: f8b4 3050 ldrh.w r3, [r4, #80] ; 0x50 +10018ed4: f8b4 2064 ldrh.w r2, [r4, #100] ; 0x64 +10018ed8: 8f61 ldrh r1, [r4, #58] ; 0x3a +10018eda: 4293 cmp r3, r2 +10018edc: bf8c ite hi +10018ede: 0853 lsrhi r3, r2, #1 +10018ee0: 085b lsrls r3, r3, #1 +10018ee2: 004a lsls r2, r1, #1 +10018ee4: 4293 cmp r3, r2 +10018ee6: f894 0022 ldrb.w r0, [r4, #34] ; 0x22 +10018eea: f8a4 3052 strh.w r3, [r4, #82] ; 0x52 +10018eee: bfb8 it lt +10018ef0: b293 uxthlt r3, r2 +10018ef2: 440a add r2, r1 +10018ef4: bfb8 it lt +10018ef6: f8a4 3052 strhlt.w r3, [r4, #82] ; 0x52 +10018efa: f040 0004 orr.w r0, r0, #4 +10018efe: 4413 add r3, r2 +10018f00: f8a4 3050 strh.w r3, [r4, #80] ; 0x50 +10018f04: f884 0022 strb.w r0, [r4, #34] ; 0x22 +10018f08: bd10 pop {r4, pc} +10018f0a: bf00 nop + +10018f0c : +10018f0c: b5f0 push {r4, r5, r6, r7, lr} +10018f0e: 4604 mov r4, r0 +10018f10: 6d40 ldr r0, [r0, #84] ; 0x54 +10018f12: b083 sub sp, #12 +10018f14: 3801 subs r0, #1 +10018f16: f7fa ff81 bl 10013e1c +10018f1a: 2100 movs r1, #0 +10018f1c: 4602 mov r2, r0 +10018f1e: 4620 mov r0, r4 +10018f20: f7ff fb1c bl 1001855c +10018f24: 4605 mov r5, r0 +10018f26: b1c8 cbz r0, 10018f5c +10018f28: 8903 ldrh r3, [r0, #8] +10018f2a: 1d26 adds r6, r4, #4 +10018f2c: 6847 ldr r7, [r0, #4] +10018f2e: 4632 mov r2, r6 +10018f30: 9300 str r3, [sp, #0] +10018f32: 4621 mov r1, r4 +10018f34: 2306 movs r3, #6 +10018f36: f7fa f8b9 bl 100130ac +10018f3a: 8238 strh r0, [r7, #16] +10018f3c: 2700 movs r7, #0 +10018f3e: 2006 movs r0, #6 +10018f40: 7aa3 ldrb r3, [r4, #10] +10018f42: 4632 mov r2, r6 +10018f44: 9001 str r0, [sp, #4] +10018f46: 4621 mov r1, r4 +10018f48: 9700 str r7, [sp, #0] +10018f4a: 4628 mov r0, r5 +10018f4c: f7fa fb12 bl 10013574 +10018f50: 4628 mov r0, r5 +10018f52: b003 add sp, #12 +10018f54: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +10018f58: f7fc bf86 b.w 10015e68 +10018f5c: b003 add sp, #12 +10018f5e: bdf0 pop {r4, r5, r6, r7, pc} + +10018f60 : +10018f60: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10018f64: 6f46 ldr r6, [r0, #116] ; 0x74 +10018f66: b082 sub sp, #8 +10018f68: 4604 mov r4, r0 +10018f6a: 2e00 cmp r6, #0 +10018f6c: d047 beq.n 10018ffe +10018f6e: 6933 ldr r3, [r6, #16] +10018f70: 8998 ldrh r0, [r3, #12] +10018f72: f7fa ff4f bl 10013e14 +10018f76: f010 0001 ands.w r0, r0, #1 +10018f7a: d130 bne.n 10018fde +10018f7c: 4680 mov r8, r0 +10018f7e: 2101 movs r1, #1 +10018f80: 6933 ldr r3, [r6, #16] +10018f82: 4620 mov r0, r4 +10018f84: 685a ldr r2, [r3, #4] +10018f86: f7ff fae9 bl 1001855c +10018f8a: 4605 mov r5, r0 +10018f8c: 2800 cmp r0, #0 +10018f8e: d039 beq.n 10019004 +10018f90: 6847 ldr r7, [r0, #4] +10018f92: f1b8 0f00 cmp.w r8, #0 +10018f96: d027 beq.n 10018fe8 +10018f98: 2011 movs r0, #17 +10018f9a: 89be ldrh r6, [r7, #12] +10018f9c: f7fa ff36 bl 10013e0c +10018fa0: f426 567c bic.w r6, r6, #16128 ; 0x3f00 +10018fa4: b2b6 uxth r6, r6 +10018fa6: 4330 orrs r0, r6 +10018fa8: 81b8 strh r0, [r7, #12] +10018faa: 892b ldrh r3, [r5, #8] +10018fac: 1d26 adds r6, r4, #4 +10018fae: 9300 str r3, [sp, #0] +10018fb0: 4632 mov r2, r6 +10018fb2: 4621 mov r1, r4 +10018fb4: 4628 mov r0, r5 +10018fb6: 2306 movs r3, #6 +10018fb8: f7fa f878 bl 100130ac +10018fbc: 8238 strh r0, [r7, #16] +10018fbe: 2700 movs r7, #0 +10018fc0: 2006 movs r0, #6 +10018fc2: 7aa3 ldrb r3, [r4, #10] +10018fc4: 4632 mov r2, r6 +10018fc6: 9001 str r0, [sp, #4] +10018fc8: 4621 mov r1, r4 +10018fca: 9700 str r7, [sp, #0] +10018fcc: 4628 mov r0, r5 +10018fce: f7fa fad1 bl 10013574 +10018fd2: 4628 mov r0, r5 +10018fd4: b002 add sp, #8 +10018fd6: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +10018fda: f7fc bf45 b.w 10015e68 +10018fde: 8931 ldrh r1, [r6, #8] +10018fe0: b999 cbnz r1, 1001900a +10018fe2: f04f 0801 mov.w r8, #1 +10018fe6: e7cb b.n 10018f80 +10018fe8: 6870 ldr r0, [r6, #4] +10018fea: 8933 ldrh r3, [r6, #8] +10018fec: 8902 ldrh r2, [r0, #8] +10018fee: f107 0114 add.w r1, r7, #20 +10018ff2: 1ad3 subs r3, r2, r3 +10018ff4: b29b uxth r3, r3 +10018ff6: 2201 movs r2, #1 +10018ff8: f7fd f8b6 bl 10016168 +10018ffc: e7d5 b.n 10018faa +10018ffe: 6f06 ldr r6, [r0, #112] ; 0x70 +10019000: 2e00 cmp r6, #0 +10019002: d1b4 bne.n 10018f6e +10019004: b002 add sp, #8 +10019006: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001900a: 2101 movs r1, #1 +1001900c: f04f 0800 mov.w r8, #0 +10019010: e7b6 b.n 10018f80 +10019012: bf00 nop + +10019014 : +10019014: 4770 bx lr +10019016: bf00 nop + +10019018 : +10019018: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001901c: f8d0 9004 ldr.w r9, [r0, #4] +10019020: 8902 ldrh r2, [r0, #8] +10019022: f899 3000 ldrb.w r3, [r9] +10019026: 468a mov sl, r1 +10019028: f003 030f and.w r3, r3, #15 +1001902c: 1c99 adds r1, r3, #2 +1001902e: ebb2 0f81 cmp.w r2, r1, lsl #2 +10019032: b087 sub sp, #28 +10019034: 4606 mov r6, r0 +10019036: db05 blt.n 10019044 +10019038: 0099 lsls r1, r3, #2 +1001903a: 4249 negs r1, r1 +1001903c: f7fc fede bl 10015dfc +10019040: 4607 mov r7, r0 +10019042: b128 cbz r0, 10019050 +10019044: 4630 mov r0, r6 +10019046: b007 add sp, #28 +10019048: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001904c: f7fc bf0c b.w 10015e68 +10019050: 4b58 ldr r3, [pc, #352] ; (100191b4 ) +10019052: 6872 ldr r2, [r6, #4] +10019054: 6818 ldr r0, [r3, #0] +10019056: 4651 mov r1, sl +10019058: 9204 str r2, [sp, #16] +1001905a: f7fa faad bl 100135b8 +1001905e: 9a04 ldr r2, [sp, #16] +10019060: 4680 mov r8, r0 +10019062: 8810 ldrh r0, [r2, #0] +10019064: f7fa fed6 bl 10013e14 +10019068: 9b04 ldr r3, [sp, #16] +1001906a: 4683 mov fp, r0 +1001906c: 8858 ldrh r0, [r3, #2] +1001906e: f7fa fed1 bl 10013e14 +10019072: 2844 cmp r0, #68 ; 0x44 +10019074: 4604 mov r4, r0 +10019076: d03c beq.n 100190f2 +10019078: 494f ldr r1, [pc, #316] ; (100191b8 ) +1001907a: 6809 ldr r1, [r1, #0] +1001907c: 9105 str r1, [sp, #20] +1001907e: 2900 cmp r1, #0 +10019080: d03a beq.n 100190f8 +10019082: 4b4e ldr r3, [pc, #312] ; (100191bc ) +10019084: 4a4b ldr r2, [pc, #300] ; (100191b4 ) +10019086: 463d mov r5, r7 +10019088: f8d2 c000 ldr.w ip, [r2] +1001908c: 681a ldr r2, [r3, #0] +1001908e: f00c 00f0 and.w r0, ip, #240 ; 0xf0 +10019092: 460b mov r3, r1 +10019094: 9603 str r6, [sp, #12] +10019096: 4641 mov r1, r8 +10019098: 4690 mov r8, r2 +1001909a: e004 b.n 100190a6 +1001909c: 68da ldr r2, [r3, #12] +1001909e: 2a00 cmp r2, #0 +100190a0: d038 beq.n 10019114 +100190a2: 461d mov r5, r3 +100190a4: 4613 mov r3, r2 +100190a6: 8a5a ldrh r2, [r3, #18] +100190a8: 42a2 cmp r2, r4 +100190aa: d1f7 bne.n 1001909c +100190ac: 681a ldr r2, [r3, #0] +100190ae: b901 cbnz r1, 100190b2 +100190b0: b162 cbz r2, 100190cc +100190b2: 4594 cmp ip, r2 +100190b4: d00a beq.n 100190cc +100190b6: 28e0 cmp r0, #224 ; 0xe0 +100190b8: d008 beq.n 100190cc +100190ba: 2900 cmp r1, #0 +100190bc: d0ee beq.n 1001909c +100190be: b12a cbz r2, 100190cc +100190c0: f8da 6008 ldr.w r6, [sl, #8] +100190c4: ea82 020c eor.w r2, r2, ip +100190c8: 4232 tst r2, r6 +100190ca: d1e7 bne.n 1001909c +100190cc: b1e7 cbz r7, 10019108 +100190ce: 8a9a ldrh r2, [r3, #20] +100190d0: 455a cmp r2, fp +100190d2: d1e3 bne.n 1001909c +100190d4: 685a ldr r2, [r3, #4] +100190d6: b10a cbz r2, 100190dc +100190d8: 4542 cmp r2, r8 +100190da: d1df bne.n 1001909c +100190dc: 4688 mov r8, r1 +100190de: 9e03 ldr r6, [sp, #12] +100190e0: b12d cbz r5, 100190ee +100190e2: 68da ldr r2, [r3, #12] +100190e4: 4934 ldr r1, [pc, #208] ; (100191b8 ) +100190e6: 60ea str r2, [r5, #12] +100190e8: 9a05 ldr r2, [sp, #20] +100190ea: 600b str r3, [r1, #0] +100190ec: 60da str r2, [r3, #12] +100190ee: 461f mov r7, r3 +100190f0: e014 b.n 1001911c +100190f2: f1bb 0f43 cmp.w fp, #67 ; 0x43 +100190f6: d035 beq.n 10019164 +100190f8: 492e ldr r1, [pc, #184] ; (100191b4 ) +100190fa: f8da 2004 ldr.w r2, [sl, #4] +100190fe: 680b ldr r3, [r1, #0] +10019100: 429a cmp r2, r3 +10019102: d19f bne.n 10019044 +10019104: 2700 movs r7, #0 +10019106: e009 b.n 1001911c +10019108: 7c1a ldrb r2, [r3, #16] +1001910a: f012 0f04 tst.w r2, #4 +1001910e: bf08 it eq +10019110: 461f moveq r7, r3 +10019112: e7dc b.n 100190ce +10019114: 4688 mov r8, r1 +10019116: 9e03 ldr r6, [sp, #12] +10019118: 2f00 cmp r7, #0 +1001911a: d0ed beq.n 100190f8 +1001911c: 9a04 ldr r2, [sp, #16] +1001911e: 88d3 ldrh r3, [r2, #6] +10019120: b14b cbz r3, 10019136 +10019122: 8933 ldrh r3, [r6, #8] +10019124: 4630 mov r0, r6 +10019126: 9300 str r3, [sp, #0] +10019128: 4924 ldr r1, [pc, #144] ; (100191bc ) +1001912a: 4a22 ldr r2, [pc, #136] ; (100191b4 ) +1001912c: 2311 movs r3, #17 +1001912e: f7f9 ffbd bl 100130ac +10019132: 2800 cmp r0, #0 +10019134: d186 bne.n 10019044 +10019136: 4630 mov r0, r6 +10019138: f06f 0107 mvn.w r1, #7 +1001913c: f7fc fe5e bl 10015dfc +10019140: 2800 cmp r0, #0 +10019142: f47f af7f bne.w 10019044 +10019146: b1e7 cbz r7, 10019182 +10019148: 69fc ldr r4, [r7, #28] +1001914a: 2c00 cmp r4, #0 +1001914c: f43f af7a beq.w 10019044 +10019150: 6a38 ldr r0, [r7, #32] +10019152: 4632 mov r2, r6 +10019154: f8cd b000 str.w fp, [sp] +10019158: 4639 mov r1, r7 +1001915a: 4b18 ldr r3, [pc, #96] ; (100191bc ) +1001915c: 47a0 blx r4 +1001915e: b007 add sp, #28 +10019160: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10019164: f8da 3020 ldr.w r3, [sl, #32] +10019168: 2b00 cmp r3, #0 +1001916a: d0c5 beq.n 100190f8 +1001916c: 685f ldr r7, [r3, #4] +1001916e: 2f00 cmp r7, #0 +10019170: d0c2 beq.n 100190f8 +10019172: 687b ldr r3, [r7, #4] +10019174: 2b00 cmp r3, #0 +10019176: d0d1 beq.n 1001911c +10019178: 4a10 ldr r2, [pc, #64] ; (100191bc ) +1001917a: 6812 ldr r2, [r2, #0] +1001917c: 4293 cmp r3, r2 +1001917e: d1bb bne.n 100190f8 +10019180: e7cc b.n 1001911c +10019182: f1b8 0f00 cmp.w r8, #0 +10019186: f47f af5d bne.w 10019044 +1001918a: 490a ldr r1, [pc, #40] ; (100191b4 ) +1001918c: 680b ldr r3, [r1, #0] +1001918e: f003 03f0 and.w r3, r3, #240 ; 0xf0 +10019192: 2be0 cmp r3, #224 ; 0xe0 +10019194: f43f af56 beq.w 10019044 +10019198: f899 1000 ldrb.w r1, [r9] +1001919c: 4630 mov r0, r6 +1001919e: f001 010f and.w r1, r1, #15 +100191a2: 3102 adds r1, #2 +100191a4: 0089 lsls r1, r1, #2 +100191a6: f7fc fe29 bl 10015dfc +100191aa: 4630 mov r0, r6 +100191ac: 2103 movs r1, #3 +100191ae: f7f9 fced bl 10012b8c +100191b2: e747 b.n 10019044 +100191b4: 10050ccc .word 0x10050ccc +100191b8: 1005140c .word 0x1005140c +100191bc: 10050cc8 .word 0x10050cc8 + +100191c0 : +100191c0: e92d 01f0 stmdb sp!, {r4, r5, r6, r7, r8} +100191c4: 4e2f ldr r6, [pc, #188] ; (10019284 ) +100191c6: 6837 ldr r7, [r6, #0] +100191c8: 2f00 cmp r7, #0 +100191ca: d059 beq.n 10019280 +100191cc: 463b mov r3, r7 +100191ce: 2500 movs r5, #0 +100191d0: e00a b.n 100191e8 +100191d2: 7a04 ldrb r4, [r0, #8] +100191d4: 0764 lsls r4, r4, #29 +100191d6: d405 bmi.n 100191e4 +100191d8: 7a1c ldrb r4, [r3, #8] +100191da: 0764 lsls r4, r4, #29 +100191dc: d402 bmi.n 100191e4 +100191de: 8a5c ldrh r4, [r3, #18] +100191e0: 4294 cmp r4, r2 +100191e2: d014 beq.n 1001920e +100191e4: 68db ldr r3, [r3, #12] +100191e6: b12b cbz r3, 100191f4 +100191e8: 4298 cmp r0, r3 +100191ea: d1f2 bne.n 100191d2 +100191ec: 68db ldr r3, [r3, #12] +100191ee: 2501 movs r5, #1 +100191f0: 2b00 cmp r3, #0 +100191f2: d1f9 bne.n 100191e8 +100191f4: b101 cbz r1, 100191f8 +100191f6: 6809 ldr r1, [r1, #0] +100191f8: 6001 str r1, [r0, #0] +100191fa: b1e2 cbz r2, 10019236 +100191fc: 8242 strh r2, [r0, #18] +100191fe: b9ad cbnz r5, 1001922c +10019200: 60c7 str r7, [r0, #12] +10019202: 6030 str r0, [r6, #0] +10019204: 4628 mov r0, r5 +10019206: b240 sxtb r0, r0 +10019208: e8bd 01f0 ldmia.w sp!, {r4, r5, r6, r7, r8} +1001920c: 4770 bx lr +1001920e: 681c ldr r4, [r3, #0] +10019210: b13c cbz r4, 10019222 +10019212: b131 cbz r1, 10019222 +10019214: f8d1 c000 ldr.w ip, [r1] +10019218: f1bc 0f00 cmp.w ip, #0 +1001921c: d001 beq.n 10019222 +1001921e: 4564 cmp r4, ip +10019220: d1e0 bne.n 100191e4 +10019222: 20f8 movs r0, #248 ; 0xf8 +10019224: b240 sxtb r0, r0 +10019226: e8bd 01f0 ldmia.w sp!, {r4, r5, r6, r7, r8} +1001922a: 4770 bx lr +1001922c: 2000 movs r0, #0 +1001922e: b240 sxtb r0, r0 +10019230: e8bd 01f0 ldmia.w sp!, {r4, r5, r6, r7, r8} +10019234: 4770 bx lr +10019236: f8df c050 ldr.w ip, [pc, #80] ; 10019288 +1001923a: f44f 4480 mov.w r4, #16384 ; 0x4000 +1001923e: f8bc 2000 ldrh.w r2, [ip] +10019242: f64f 78ff movw r8, #65535 ; 0xffff +10019246: 4542 cmp r2, r8 +10019248: bf1a itte ne +1001924a: 3201 addne r2, #1 +1001924c: b292 uxthne r2, r2 +1001924e: f44f 4240 moveq.w r2, #49152 ; 0xc000 +10019252: b15f cbz r7, 1001926c +10019254: 8a7b ldrh r3, [r7, #18] +10019256: 4293 cmp r3, r2 +10019258: bf18 it ne +1001925a: 463b movne r3, r7 +1001925c: d103 bne.n 10019266 +1001925e: e008 b.n 10019272 +10019260: 8a59 ldrh r1, [r3, #18] +10019262: 4291 cmp r1, r2 +10019264: d005 beq.n 10019272 +10019266: 68db ldr r3, [r3, #12] +10019268: 2b00 cmp r3, #0 +1001926a: d1f9 bne.n 10019260 +1001926c: f8ac 2000 strh.w r2, [ip] +10019270: e7c4 b.n 100191fc +10019272: 3c01 subs r4, #1 +10019274: b2a4 uxth r4, r4 +10019276: 2c00 cmp r4, #0 +10019278: d1e5 bne.n 10019246 +1001927a: f8ac 2000 strh.w r2, [ip] +1001927e: e7d0 b.n 10019222 +10019280: 463d mov r5, r7 +10019282: e7b7 b.n 100191f4 +10019284: 1005140c .word 0x1005140c +10019288: 1004d808 .word 0x1004d808 + +1001928c : +1001928c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10019290: 8a45 ldrh r5, [r0, #18] +10019292: b084 sub sp, #16 +10019294: 4604 mov r4, r0 +10019296: 460f mov r7, r1 +10019298: 4690 mov r8, r2 +1001929a: 469a mov sl, r3 +1001929c: f8dd 9030 ldr.w r9, [sp, #48] ; 0x30 +100192a0: b925 cbnz r5, 100192ac +100192a2: 462a mov r2, r5 +100192a4: 4601 mov r1, r0 +100192a6: f7ff ff8b bl 100191c0 +100192aa: bb18 cbnz r0, 100192f4 +100192ac: 4638 mov r0, r7 +100192ae: 2108 movs r1, #8 +100192b0: f7fc fda4 bl 10015dfc +100192b4: bb10 cbnz r0, 100192fc +100192b6: 463e mov r6, r7 +100192b8: 8a60 ldrh r0, [r4, #18] +100192ba: 6875 ldr r5, [r6, #4] +100192bc: f7fa fda6 bl 10013e0c +100192c0: 8028 strh r0, [r5, #0] +100192c2: 4650 mov r0, sl +100192c4: f7fa fda2 bl 10013e0c +100192c8: f8d8 2000 ldr.w r2, [r8] +100192cc: 2300 movs r3, #0 +100192ce: f002 02f0 and.w r2, r2, #240 ; 0xf0 +100192d2: 2ae0 cmp r2, #224 ; 0xe0 +100192d4: 8068 strh r0, [r5, #2] +100192d6: 71ab strb r3, [r5, #6] +100192d8: 71eb strb r3, [r5, #7] +100192da: d03e beq.n 1001935a +100192dc: 6823 ldr r3, [r4, #0] +100192de: b1e3 cbz r3, 1001931a +100192e0: f8d9 2004 ldr.w r2, [r9, #4] +100192e4: 4293 cmp r3, r2 +100192e6: d051 beq.n 1001938c +100192e8: 42be cmp r6, r7 +100192ea: d03e beq.n 1001936a +100192ec: 4630 mov r0, r6 +100192ee: f7fc fdbb bl 10015e68 +100192f2: 20fa movs r0, #250 ; 0xfa +100192f4: b240 sxtb r0, r0 +100192f6: b004 add sp, #16 +100192f8: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +100192fc: 2001 movs r0, #1 +100192fe: 2108 movs r1, #8 +10019300: 2200 movs r2, #0 +10019302: f7fc fde7 bl 10015ed4 +10019306: 4606 mov r6, r0 +10019308: 2800 cmp r0, #0 +1001930a: d041 beq.n 10019390 +1001930c: 893b ldrh r3, [r7, #8] +1001930e: 2b00 cmp r3, #0 +10019310: d0d2 beq.n 100192b8 +10019312: 4639 mov r1, r7 +10019314: f7fc fece bl 100160b4 +10019318: e7ce b.n 100192b8 +1001931a: f109 0a04 add.w sl, r9, #4 +1001931e: 8930 ldrh r0, [r6, #8] +10019320: f7fa fd74 bl 10013e0c +10019324: 80a8 strh r0, [r5, #4] +10019326: 7c23 ldrb r3, [r4, #16] +10019328: 07db lsls r3, r3, #31 +1001932a: d520 bpl.n 1001936e +1001932c: 7aa3 ldrb r3, [r4, #10] +1001932e: 7a64 ldrb r4, [r4, #9] +10019330: 2011 movs r0, #17 +10019332: 9400 str r4, [sp, #0] +10019334: 9001 str r0, [sp, #4] +10019336: f8cd 9008 str.w r9, [sp, #8] +1001933a: 4651 mov r1, sl +1001933c: 4642 mov r2, r8 +1001933e: 4630 mov r0, r6 +10019340: f7fa f906 bl 10013550 +10019344: 42be cmp r6, r7 +10019346: 4604 mov r4, r0 +10019348: d0d4 beq.n 100192f4 +1001934a: 4630 mov r0, r6 +1001934c: f7fc fd8c bl 10015e68 +10019350: 4620 mov r0, r4 +10019352: b240 sxtb r0, r0 +10019354: b004 add sp, #16 +10019356: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1001935a: 7c23 ldrb r3, [r4, #16] +1001935c: 071a lsls r2, r3, #28 +1001935e: d5bd bpl.n 100192dc +10019360: 7b73 ldrb r3, [r6, #13] +10019362: f043 0304 orr.w r3, r3, #4 +10019366: 7373 strb r3, [r6, #13] +10019368: e7b8 b.n 100192dc +1001936a: 20fa movs r0, #250 ; 0xfa +1001936c: e7c2 b.n 100192f4 +1001936e: 8933 ldrh r3, [r6, #8] +10019370: 4630 mov r0, r6 +10019372: 9300 str r3, [sp, #0] +10019374: 4651 mov r1, sl +10019376: 2311 movs r3, #17 +10019378: 4642 mov r2, r8 +1001937a: f7f9 fe97 bl 100130ac +1001937e: f64f 73ff movw r3, #65535 ; 0xffff +10019382: 2800 cmp r0, #0 +10019384: bf08 it eq +10019386: 4618 moveq r0, r3 +10019388: 80e8 strh r0, [r5, #6] +1001938a: e7cf b.n 1001932c +1001938c: 46a2 mov sl, r4 +1001938e: e7c6 b.n 1001931e +10019390: 20ff movs r0, #255 ; 0xff +10019392: e7af b.n 100192f4 + +10019394 : +10019394: b5f0 push {r4, r5, r6, r7, lr} +10019396: 4614 mov r4, r2 +10019398: 6812 ldr r2, [r2, #0] +1001939a: 4605 mov r5, r0 +1001939c: f002 02f0 and.w r2, r2, #240 ; 0xf0 +100193a0: 2ae0 cmp r2, #224 ; 0xe0 +100193a2: b083 sub sp, #12 +100193a4: bf0c ite eq +100193a6: 3018 addeq r0, #24 +100193a8: 4620 movne r0, r4 +100193aa: 460f mov r7, r1 +100193ac: 461e mov r6, r3 +100193ae: f7f9 fef5 bl 1001319c +100193b2: b148 cbz r0, 100193c8 +100193b4: 9000 str r0, [sp, #0] +100193b6: 4639 mov r1, r7 +100193b8: 4628 mov r0, r5 +100193ba: 4622 mov r2, r4 +100193bc: 4633 mov r3, r6 +100193be: f7ff ff65 bl 1001928c +100193c2: b240 sxtb r0, r0 +100193c4: b003 add sp, #12 +100193c6: bdf0 pop {r4, r5, r6, r7, pc} +100193c8: 20fc movs r0, #252 ; 0xfc +100193ca: e7fa b.n 100193c2 + +100193cc : +100193cc: 1d02 adds r2, r0, #4 +100193ce: 8a83 ldrh r3, [r0, #20] +100193d0: f7ff bfe0 b.w 10019394 + +100193d4 : +100193d4: 8a43 ldrh r3, [r0, #18] +100193d6: b570 push {r4, r5, r6, lr} +100193d8: 4604 mov r4, r0 +100193da: 460d mov r5, r1 +100193dc: 4616 mov r6, r2 +100193de: b1c3 cbz r3, 10019412 +100193e0: b105 cbz r5, 100193e4 +100193e2: 682d ldr r5, [r5, #0] +100193e4: 4910 ldr r1, [pc, #64] ; (10019428 ) +100193e6: 7c23 ldrb r3, [r4, #16] +100193e8: 6808 ldr r0, [r1, #0] +100193ea: f043 0304 orr.w r3, r3, #4 +100193ee: 6065 str r5, [r4, #4] +100193f0: 82a6 strh r6, [r4, #20] +100193f2: 7423 strb r3, [r4, #16] +100193f4: b140 cbz r0, 10019408 +100193f6: 4284 cmp r4, r0 +100193f8: d013 beq.n 10019422 +100193fa: 4603 mov r3, r0 +100193fc: e001 b.n 10019402 +100193fe: 429c cmp r4, r3 +10019400: d00f beq.n 10019422 +10019402: 68db ldr r3, [r3, #12] +10019404: 2b00 cmp r3, #0 +10019406: d1fa bne.n 100193fe +10019408: 60e0 str r0, [r4, #12] +1001940a: 2000 movs r0, #0 +1001940c: 600c str r4, [r1, #0] +1001940e: b240 sxtb r0, r0 +10019410: bd70 pop {r4, r5, r6, pc} +10019412: 461a mov r2, r3 +10019414: 4601 mov r1, r0 +10019416: f7ff fed3 bl 100191c0 +1001941a: 2800 cmp r0, #0 +1001941c: d0e0 beq.n 100193e0 +1001941e: b240 sxtb r0, r0 +10019420: bd70 pop {r4, r5, r6, pc} +10019422: 2000 movs r0, #0 +10019424: b240 sxtb r0, r0 +10019426: bd70 pop {r4, r5, r6, pc} +10019428: 1005140c .word 0x1005140c + +1001942c : +1001942c: 7c02 ldrb r2, [r0, #16] +1001942e: 2300 movs r3, #0 +10019430: f022 0204 bic.w r2, r2, #4 +10019434: 7402 strb r2, [r0, #16] +10019436: 6043 str r3, [r0, #4] +10019438: 8283 strh r3, [r0, #20] +1001943a: 4770 bx lr + +1001943c : +1001943c: 61c1 str r1, [r0, #28] +1001943e: 6202 str r2, [r0, #32] +10019440: 4770 bx lr +10019442: bf00 nop + +10019444 : +10019444: 4b0c ldr r3, [pc, #48] ; (10019478 ) +10019446: 4601 mov r1, r0 +10019448: 681a ldr r2, [r3, #0] +1001944a: 4282 cmp r2, r0 +1001944c: d00f beq.n 1001946e +1001944e: b91a cbnz r2, 10019458 +10019450: e005 b.n 1001945e +10019452: 4299 cmp r1, r3 +10019454: d006 beq.n 10019464 +10019456: 461a mov r2, r3 +10019458: 68d3 ldr r3, [r2, #12] +1001945a: 2b00 cmp r3, #0 +1001945c: d1f9 bne.n 10019452 +1001945e: 2001 movs r0, #1 +10019460: f7fc bb94 b.w 10015b8c +10019464: 68cb ldr r3, [r1, #12] +10019466: 60d3 str r3, [r2, #12] +10019468: 2b00 cmp r3, #0 +1001946a: d1f4 bne.n 10019456 +1001946c: e7f7 b.n 1001945e +1001946e: 68c2 ldr r2, [r0, #12] +10019470: 2001 movs r0, #1 +10019472: 601a str r2, [r3, #0] +10019474: f7fc bb8a b.w 10015b8c +10019478: 1005140c .word 0x1005140c + +1001947c : +1001947c: b510 push {r4, lr} +1001947e: 2001 movs r0, #1 +10019480: f7fc fb6e bl 10015b60 +10019484: 4604 mov r4, r0 +10019486: b128 cbz r0, 10019494 +10019488: 2100 movs r1, #0 +1001948a: 2224 movs r2, #36 ; 0x24 +1001948c: f028 fe6e bl 1004216c +10019490: 23ff movs r3, #255 ; 0xff +10019492: 72a3 strb r3, [r4, #10] +10019494: 4620 mov r0, r4 +10019496: bd10 pop {r4, pc} + +10019498 : +10019498: b5f8 push {r3, r4, r5, r6, r7, lr} +1001949a: 0086 lsls r6, r0, #2 +1001949c: 1837 adds r7, r6, r0 +1001949e: 4d0c ldr r5, [pc, #48] ; (100194d0 ) +100194a0: 00bf lsls r7, r7, #2 +100194a2: 4604 mov r4, r0 +100194a4: 59e8 ldr r0, [r5, r7] +100194a6: b118 cbz r0, 100194b0 +100194a8: f7fc fcde bl 10015e68 +100194ac: 2300 movs r3, #0 +100194ae: 51eb str r3, [r5, r7] +100194b0: 1930 adds r0, r6, r4 +100194b2: eb05 0080 add.w r0, r5, r0, lsl #2 +100194b6: 2300 movs r3, #0 +100194b8: 7483 strb r3, [r0, #18] +100194ba: 74c3 strb r3, [r0, #19] +100194bc: 7303 strb r3, [r0, #12] +100194be: 7343 strb r3, [r0, #13] +100194c0: 7383 strb r3, [r0, #14] +100194c2: 73c3 strb r3, [r0, #15] +100194c4: 7403 strb r3, [r0, #16] +100194c6: 7443 strb r3, [r0, #17] +100194c8: 6083 str r3, [r0, #8] +100194ca: 6043 str r3, [r0, #4] +100194cc: bdf8 pop {r3, r4, r5, r6, r7, pc} +100194ce: bf00 nop +100194d0: 10051414 .word 0x10051414 + +100194d4 : +100194d4: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100194d8: 4c41 ldr r4, [pc, #260] ; (100195e0 ) +100194da: b085 sub sp, #20 +100194dc: 2300 movs r3, #0 +100194de: f04f 0c0a mov.w ip, #10 +100194e2: f1a4 0812 sub.w r8, r4, #18 +100194e6: 9102 str r1, [sp, #8] +100194e8: 4606 mov r6, r0 +100194ea: 4642 mov r2, r8 +100194ec: 4699 mov r9, r3 +100194ee: 9303 str r3, [sp, #12] +100194f0: 4661 mov r1, ip +100194f2: 46e2 mov sl, ip +100194f4: 46e3 mov fp, ip +100194f6: 9301 str r3, [sp, #4] +100194f8: e006 b.n 10019508 +100194fa: 3301 adds r3, #1 +100194fc: 2b0a cmp r3, #10 +100194fe: f104 0414 add.w r4, r4, #20 +10019502: f102 0214 add.w r2, r2, #20 +10019506: d01b beq.n 10019540 +10019508: b2d8 uxtb r0, r3 +1001950a: 290a cmp r1, #10 +1001950c: 9000 str r0, [sp, #0] +1001950e: 7c90 ldrb r0, [r2, #18] +10019510: d02f beq.n 10019572 +10019512: 2800 cmp r0, #0 +10019514: d0f1 beq.n 100194fa +10019516: b126 cbz r6, 10019522 +10019518: 6835 ldr r5, [r6, #0] +1001951a: f854 7c0e ldr.w r7, [r4, #-14] +1001951e: 42bd cmp r5, r7 +10019520: d056 beq.n 100195d0 +10019522: 2801 cmp r0, #1 +10019524: d029 beq.n 1001957a +10019526: 7cd0 ldrb r0, [r2, #19] +10019528: 3301 adds r3, #1 +1001952a: 4548 cmp r0, r9 +1001952c: bf24 itt cs +1001952e: f8dd a000 ldrcs.w sl, [sp] +10019532: 4681 movcs r9, r0 +10019534: 2b0a cmp r3, #10 +10019536: f104 0414 add.w r4, r4, #20 +1001953a: f102 0214 add.w r2, r2, #20 +1001953e: d1e3 bne.n 10019508 +10019540: 9802 ldr r0, [sp, #8] +10019542: 0782 lsls r2, r0, #30 +10019544: d44a bmi.n 100195dc +10019546: b24c sxtb r4, r1 +10019548: 2c0a cmp r4, #10 +1001954a: d021 beq.n 10019590 +1001954c: b2cd uxtb r5, r1 +1001954e: 00a3 lsls r3, r4, #2 +10019550: b126 cbz r6, 1001955c +10019552: 6831 ldr r1, [r6, #0] +10019554: 191a adds r2, r3, r4 +10019556: eb08 0282 add.w r2, r8, r2, lsl #2 +1001955a: 6051 str r1, [r2, #4] +1001955c: 441c add r4, r3 +1001955e: eb08 0884 add.w r8, r8, r4, lsl #2 +10019562: 2300 movs r3, #0 +10019564: b2e8 uxtb r0, r5 +10019566: f888 3013 strb.w r3, [r8, #19] +1001956a: b240 sxtb r0, r0 +1001956c: b005 add sp, #20 +1001956e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10019572: 2800 cmp r0, #0 +10019574: d1cf bne.n 10019516 +10019576: 9900 ldr r1, [sp, #0] +10019578: e7bf b.n 100194fa +1001957a: f854 0c12 ldr.w r0, [r4, #-18] +1001957e: b1f8 cbz r0, 100195c0 +10019580: 7cd0 ldrb r0, [r2, #19] +10019582: 9d01 ldr r5, [sp, #4] +10019584: 42a8 cmp r0, r5 +10019586: d3b8 bcc.n 100194fa +10019588: f8dd c000 ldr.w ip, [sp] +1001958c: 9001 str r0, [sp, #4] +1001958e: e7b4 b.n 100194fa +10019590: 07c3 lsls r3, r0, #31 +10019592: d523 bpl.n 100195dc +10019594: f1ba 0f0a cmp.w sl, #10 +10019598: d006 beq.n 100195a8 +1001959a: fa5f f58a uxtb.w r5, sl +1001959e: 4628 mov r0, r5 +100195a0: 462c mov r4, r5 +100195a2: f7ff ff79 bl 10019498 +100195a6: e7d2 b.n 1001954e +100195a8: f1bb 0f0a cmp.w fp, #10 +100195ac: d105 bne.n 100195ba +100195ae: f1bc 0f0a cmp.w ip, #10 +100195b2: d013 beq.n 100195dc +100195b4: fa5f f58c uxtb.w r5, ip +100195b8: e7f1 b.n 1001959e +100195ba: fa5f f58b uxtb.w r5, fp +100195be: e7ee b.n 1001959e +100195c0: 7cd0 ldrb r0, [r2, #19] +100195c2: 9f03 ldr r7, [sp, #12] +100195c4: 42b8 cmp r0, r7 +100195c6: d398 bcc.n 100194fa +100195c8: f8dd b000 ldr.w fp, [sp] +100195cc: 9003 str r0, [sp, #12] +100195ce: e794 b.n 100194fa +100195d0: 9d00 ldr r5, [sp, #0] +100195d2: b2e8 uxtb r0, r5 +100195d4: b240 sxtb r0, r0 +100195d6: b005 add sp, #20 +100195d8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100195dc: 20ff movs r0, #255 ; 0xff +100195de: e7c4 b.n 1001956a +100195e0: 10051426 .word 0x10051426 + +100195e4 : +100195e4: b5f8 push {r3, r4, r5, r6, r7, lr} +100195e6: 684c ldr r4, [r1, #4] +100195e8: 4605 mov r5, r0 +100195ea: 460e mov r6, r1 +100195ec: 4617 mov r7, r2 +100195ee: 4619 mov r1, r3 +100195f0: 4620 mov r0, r4 +100195f2: 2206 movs r2, #6 +100195f4: f028 fdb4 bl 10042160 +100195f8: 4639 mov r1, r7 +100195fa: 1da0 adds r0, r4, #6 +100195fc: 2206 movs r2, #6 +100195fe: f028 fdaf bl 10042160 +10019602: 2208 movs r2, #8 +10019604: 2300 movs r3, #0 +10019606: 7363 strb r3, [r4, #13] +10019608: 4631 mov r1, r6 +1001960a: 7322 strb r2, [r4, #12] +1001960c: 69ab ldr r3, [r5, #24] +1001960e: 4628 mov r0, r5 +10019610: 4798 blx r3 +10019612: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10019614 : +10019614: b570 push {r4, r5, r6, lr} +10019616: 4c12 ldr r4, [pc, #72] ; (10019660 ) +10019618: 2500 movs r5, #0 +1001961a: 2602 movs r6, #2 +1001961c: e009 b.n 10019632 +1001961e: 2b01 cmp r3, #1 +10019620: d019 beq.n 10019656 +10019622: 2b03 cmp r3, #3 +10019624: bf08 it eq +10019626: 74a6 strbeq r6, [r4, #18] +10019628: 3501 adds r5, #1 +1001962a: 2d0a cmp r5, #10 +1001962c: f104 0414 add.w r4, r4, #20 +10019630: d010 beq.n 10019654 +10019632: 7ca3 ldrb r3, [r4, #18] +10019634: 2b00 cmp r3, #0 +10019636: d0f7 beq.n 10019628 +10019638: 7ce2 ldrb r2, [r4, #19] +1001963a: 4628 mov r0, r5 +1001963c: 3201 adds r2, #1 +1001963e: b2d2 uxtb r2, r2 +10019640: 2aef cmp r2, #239 ; 0xef +10019642: 74e2 strb r2, [r4, #19] +10019644: d9eb bls.n 1001961e +10019646: f7ff ff27 bl 10019498 +1001964a: 3501 adds r5, #1 +1001964c: 2d0a cmp r5, #10 +1001964e: f104 0414 add.w r4, r4, #20 +10019652: d1ee bne.n 10019632 +10019654: bd70 pop {r4, r5, r6, pc} +10019656: 2a01 cmp r2, #1 +10019658: d9e6 bls.n 10019628 +1001965a: f7ff ff1d bl 10019498 +1001965e: e7f4 b.n 1001964a +10019660: 10051414 .word 0x10051414 + +10019664 : +10019664: b570 push {r4, r5, r6, lr} +10019666: 4c09 ldr r4, [pc, #36] ; (1001968c ) +10019668: 4606 mov r6, r0 +1001966a: 2500 movs r5, #0 +1001966c: 7ca3 ldrb r3, [r4, #18] +1001966e: b113 cbz r3, 10019676 +10019670: 68a3 ldr r3, [r4, #8] +10019672: 42b3 cmp r3, r6 +10019674: d005 beq.n 10019682 +10019676: 3501 adds r5, #1 +10019678: 2d0a cmp r5, #10 +1001967a: f104 0414 add.w r4, r4, #20 +1001967e: d1f5 bne.n 1001966c +10019680: bd70 pop {r4, r5, r6, pc} +10019682: 4628 mov r0, r5 +10019684: f7ff ff08 bl 10019498 +10019688: e7f5 b.n 10019676 +1001968a: bf00 nop +1001968c: 10051414 .word 0x10051414 + +10019690 : +10019690: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10019694: 4606 mov r6, r0 +10019696: 4688 mov r8, r1 +10019698: 4691 mov r9, r2 +1001969a: 2003 movs r0, #3 +1001969c: 212a movs r1, #42 ; 0x2a +1001969e: 2200 movs r2, #0 +100196a0: 469a mov sl, r3 +100196a2: 9f08 ldr r7, [sp, #32] +100196a4: f8bd 402c ldrh.w r4, [sp, #44] ; 0x2c +100196a8: f7fc fc14 bl 10015ed4 +100196ac: 4605 mov r5, r0 +100196ae: 2800 cmp r0, #0 +100196b0: d047 beq.n 10019742 +100196b2: 4620 mov r0, r4 +100196b4: 686c ldr r4, [r5, #4] +100196b6: f7fa fba9 bl 10013e0c +100196ba: f8b7 c000 ldrh.w ip, [r7] +100196be: 4b22 ldr r3, [pc, #136] ; (10019748 ) +100196c0: f64f 6ea9 movw lr, #65193 ; 0xfea9 +100196c4: 82a0 strh r0, [r4, #20] +100196c6: 4651 mov r1, sl +100196c8: f104 0016 add.w r0, r4, #22 +100196cc: 2206 movs r2, #6 +100196ce: 45f4 cmp ip, lr +100196d0: bf08 it eq +100196d2: 4699 moveq r9, r3 +100196d4: f028 fd44 bl 10042160 +100196d8: f104 0020 add.w r0, r4, #32 +100196dc: 9909 ldr r1, [sp, #36] ; 0x24 +100196de: 2206 movs r2, #6 +100196e0: f028 fd3e bl 10042160 +100196e4: 4620 mov r0, r4 +100196e6: 4649 mov r1, r9 +100196e8: 2206 movs r2, #6 +100196ea: f028 fd39 bl 10042160 +100196ee: 4641 mov r1, r8 +100196f0: 1da0 adds r0, r4, #6 +100196f2: 2206 movs r2, #6 +100196f4: f028 fd34 bl 10042160 +100196f8: 4639 mov r1, r7 +100196fa: f104 001c add.w r0, r4, #28 +100196fe: 2204 movs r2, #4 +10019700: f028 fd2e bl 10042160 +10019704: f104 0026 add.w r0, r4, #38 ; 0x26 +10019708: 990a ldr r1, [sp, #40] ; 0x28 +1001970a: 2204 movs r2, #4 +1001970c: f028 fd28 bl 10042160 +10019710: 2106 movs r1, #6 +10019712: 2304 movs r3, #4 +10019714: 74e3 strb r3, [r4, #19] +10019716: 74a1 strb r1, [r4, #18] +10019718: 2200 movs r2, #0 +1001971a: 2308 movs r3, #8 +1001971c: 2001 movs r0, #1 +1001971e: 69b7 ldr r7, [r6, #24] +10019720: 73e0 strb r0, [r4, #15] +10019722: 7361 strb r1, [r4, #13] +10019724: 73a2 strb r2, [r4, #14] +10019726: 7462 strb r2, [r4, #17] +10019728: 7423 strb r3, [r4, #16] +1001972a: 7323 strb r3, [r4, #12] +1001972c: 4629 mov r1, r5 +1001972e: 4630 mov r0, r6 +10019730: 47b8 blx r7 +10019732: 4604 mov r4, r0 +10019734: 4628 mov r0, r5 +10019736: f7fc fb97 bl 10015e68 +1001973a: 4620 mov r0, r4 +1001973c: b240 sxtb r0, r0 +1001973e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10019742: 20ff movs r0, #255 ; 0xff +10019744: e7fa b.n 1001973c +10019746: bf00 nop +10019748: 10047d08 .word 0x10047d08 + +1001974c : +1001974c: b510 push {r4, lr} +1001974e: f100 022b add.w r2, r0, #43 ; 0x2b +10019752: b084 sub sp, #16 +10019754: 4c06 ldr r4, [pc, #24] ; (10019770 ) +10019756: 9102 str r1, [sp, #8] +10019758: 1d03 adds r3, r0, #4 +1001975a: 4611 mov r1, r2 +1001975c: 2201 movs r2, #1 +1001975e: 9300 str r3, [sp, #0] +10019760: 9203 str r2, [sp, #12] +10019762: 460b mov r3, r1 +10019764: 9401 str r4, [sp, #4] +10019766: 4a03 ldr r2, [pc, #12] ; (10019774 ) +10019768: f7ff ff92 bl 10019690 +1001976c: b004 add sp, #16 +1001976e: bd10 pop {r4, pc} +10019770: 10047d10 .word 0x10047d10 +10019774: 10047d08 .word 0x10047d08 + +10019778 : +10019778: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001977c: 0095 lsls r5, r2, #2 +1001977e: 4c14 ldr r4, [pc, #80] ; (100197d0 ) +10019780: 18ab adds r3, r5, r2 +10019782: eb04 0383 add.w r3, r4, r3, lsl #2 +10019786: f893 c012 ldrb.w ip, [r3, #18] +1001978a: b082 sub sp, #8 +1001978c: f1bc 0f02 cmp.w ip, #2 +10019790: f103 0610 add.w r6, r3, #16 +10019794: 460f mov r7, r1 +10019796: 4680 mov r8, r0 +10019798: d00c beq.n 100197b4 +1001979a: 442a add r2, r5 +1001979c: eb04 0382 add.w r3, r4, r2, lsl #2 +100197a0: 4640 mov r0, r8 +100197a2: 330c adds r3, #12 +100197a4: 4639 mov r1, r7 +100197a6: f108 022b add.w r2, r8, #43 ; 0x2b +100197aa: b002 add sp, #8 +100197ac: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +100197b0: f7ff bf18 b.w 100195e4 +100197b4: 7cd9 ldrb r1, [r3, #19] +100197b6: 29e3 cmp r1, #227 ; 0xe3 +100197b8: d9ef bls.n 1001979a +100197ba: 1d19 adds r1, r3, #4 +100197bc: 9201 str r2, [sp, #4] +100197be: f7ff ffc5 bl 1001974c +100197c2: 9a01 ldr r2, [sp, #4] +100197c4: 2800 cmp r0, #0 +100197c6: d1e8 bne.n 1001979a +100197c8: 2303 movs r3, #3 +100197ca: 70b3 strb r3, [r6, #2] +100197cc: e7e5 b.n 1001979a +100197ce: bf00 nop +100197d0: 10051414 .word 0x10051414 + +100197d4 : +100197d4: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100197d8: 4680 mov r8, r0 +100197da: 460c mov r4, r1 +100197dc: 6808 ldr r0, [r1, #0] +100197de: 4641 mov r1, r8 +100197e0: 4691 mov r9, r2 +100197e2: f7f9 fee9 bl 100135b8 +100197e6: 2800 cmp r0, #0 +100197e8: d158 bne.n 1001989c +100197ea: 6823 ldr r3, [r4, #0] +100197ec: f003 02f0 and.w r2, r3, #240 ; 0xf0 +100197f0: 2ae0 cmp r2, #224 ; 0xe0 +100197f2: d053 beq.n 1001989c +100197f4: 2b00 cmp r3, #0 +100197f6: d051 beq.n 1001989c +100197f8: 4620 mov r0, r4 +100197fa: 2101 movs r1, #1 +100197fc: f7ff fe6a bl 100194d4 +10019800: 1e05 subs r5, r0, #0 +10019802: db34 blt.n 1001986e +10019804: 00ae lsls r6, r5, #2 +10019806: 4f33 ldr r7, [pc, #204] ; (100198d4 ) +10019808: 1972 adds r2, r6, r5 +1001980a: eb07 0282 add.w r2, r7, r2, lsl #2 +1001980e: 7c93 ldrb r3, [r2, #18] +10019810: 3210 adds r2, #16 +10019812: b37b cbz r3, 10019874 +10019814: 2b01 cmp r3, #1 +10019816: d02f beq.n 10019878 +10019818: f1b9 0f00 cmp.w r9, #0 +1001981c: d042 beq.n 100198a4 +1001981e: 4c2e ldr r4, [pc, #184] ; (100198d8 ) +10019820: 442e add r6, r5 +10019822: eb07 0386 add.w r3, r7, r6, lsl #2 +10019826: 7025 strb r5, [r4, #0] +10019828: 4640 mov r0, r8 +1001982a: 4649 mov r1, r9 +1001982c: f108 022b add.w r2, r8, #43 ; 0x2b +10019830: 330c adds r3, #12 +10019832: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10019836: f7ff bed5 b.w 100195e4 +1001983a: f899 300c ldrb.w r3, [r9, #12] +1001983e: 464c mov r4, r9 +10019840: 2b01 cmp r3, #1 +10019842: d003 beq.n 1001984c +10019844: e034 b.n 100198b0 +10019846: 7b23 ldrb r3, [r4, #12] +10019848: 2b01 cmp r3, #1 +1001984a: d131 bne.n 100198b0 +1001984c: 6824 ldr r4, [r4, #0] +1001984e: 2c00 cmp r4, #0 +10019850: d1f9 bne.n 10019846 +10019852: 4648 mov r0, r9 +10019854: f7fc fc08 bl 10016068 +10019858: 464c mov r4, r9 +1001985a: 1973 adds r3, r6, r5 +1001985c: f857 0023 ldr.w r0, [r7, r3, lsl #2] +10019860: b108 cbz r0, 10019866 +10019862: f7fc fb01 bl 10015e68 +10019866: 4435 add r5, r6 +10019868: f847 4025 str.w r4, [r7, r5, lsl #2] +1001986c: 2500 movs r5, #0 +1001986e: b268 sxtb r0, r5 +10019870: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10019874: 2301 movs r3, #1 +10019876: 7093 strb r3, [r2, #2] +10019878: 4621 mov r1, r4 +1001987a: 4640 mov r0, r8 +1001987c: f7ff ff66 bl 1001974c +10019880: f1b9 0f00 cmp.w r9, #0 +10019884: d006 beq.n 10019894 +10019886: 1973 adds r3, r6, r5 +10019888: eb07 0383 add.w r3, r7, r3, lsl #2 +1001988c: 7c9b ldrb r3, [r3, #18] +1001988e: 2b01 cmp r3, #1 +10019890: d8c5 bhi.n 1001981e +10019892: d0d2 beq.n 1001983a +10019894: 4605 mov r5, r0 +10019896: b268 sxtb r0, r5 +10019898: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1001989c: 25f2 movs r5, #242 ; 0xf2 +1001989e: b268 sxtb r0, r5 +100198a0: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +100198a4: 4640 mov r0, r8 +100198a6: 4621 mov r1, r4 +100198a8: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100198ac: f7ff bf4e b.w 1001974c +100198b0: 8921 ldrh r1, [r4, #8] +100198b2: 2003 movs r0, #3 +100198b4: 2200 movs r2, #0 +100198b6: f7fc fb0d bl 10015ed4 +100198ba: 4604 mov r4, r0 +100198bc: b138 cbz r0, 100198ce +100198be: 4649 mov r1, r9 +100198c0: f7fc fc02 bl 100160c8 +100198c4: 2800 cmp r0, #0 +100198c6: d0c8 beq.n 1001985a +100198c8: 4620 mov r0, r4 +100198ca: f7fc facd bl 10015e68 +100198ce: 25ff movs r5, #255 ; 0xff +100198d0: e7cd b.n 1001986e +100198d2: bf00 nop +100198d4: 10051414 .word 0x10051414 +100198d8: 10051410 .word 0x10051410 + +100198dc : +100198dc: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +100198e0: 4689 mov r9, r1 +100198e2: b083 sub sp, #12 +100198e4: 4680 mov r8, r0 +100198e6: 210e movs r1, #14 +100198e8: 4648 mov r0, r9 +100198ea: 4616 mov r6, r2 +100198ec: f7fc fa86 bl 10015dfc +100198f0: 2800 cmp r0, #0 +100198f2: d176 bne.n 100199e2 +100198f4: 6830 ldr r0, [r6, #0] +100198f6: 4641 mov r1, r8 +100198f8: f7f9 fe5e bl 100135b8 +100198fc: 2800 cmp r0, #0 +100198fe: d145 bne.n 1001998c +10019900: 6833 ldr r3, [r6, #0] +10019902: f003 02f0 and.w r2, r3, #240 ; 0xf0 +10019906: 2ae0 cmp r2, #224 ; 0xe0 +10019908: d04b beq.n 100199a2 +1001990a: f8d8 1004 ldr.w r1, [r8, #4] +1001990e: f8d8 2008 ldr.w r2, [r8, #8] +10019912: 4059 eors r1, r3 +10019914: 4211 tst r1, r2 +10019916: d011 beq.n 1001993c +10019918: b29b uxth r3, r3 +1001991a: f64f 62a9 movw r2, #65193 ; 0xfea9 +1001991e: 4293 cmp r3, r2 +10019920: d00c beq.n 1001993c +10019922: f8d9 3004 ldr.w r3, [r9, #4] +10019926: f8d3 301a ldr.w r3, [r3, #26] +1001992a: b29b uxth r3, r3 +1001992c: 4293 cmp r3, r2 +1001992e: d005 beq.n 1001993c +10019930: f8d8 300c ldr.w r3, [r8, #12] +10019934: f108 060c add.w r6, r8, #12 +10019938: 2b00 cmp r3, #0 +1001993a: d054 beq.n 100199e6 +1001993c: 4f2d ldr r7, [pc, #180] ; (100199f4 ) +1001993e: 4b2e ldr r3, [pc, #184] ; (100199f8 ) +10019940: 783a ldrb r2, [r7, #0] +10019942: eb02 0182 add.w r1, r2, r2, lsl #2 +10019946: eb03 0381 add.w r3, r3, r1, lsl #2 +1001994a: 7c99 ldrb r1, [r3, #18] +1001994c: 2901 cmp r1, #1 +1001994e: d903 bls.n 10019958 +10019950: 6859 ldr r1, [r3, #4] +10019952: 6833 ldr r3, [r6, #0] +10019954: 428b cmp r3, r1 +10019956: d048 beq.n 100199ea +10019958: 4c28 ldr r4, [pc, #160] ; (100199fc ) +1001995a: 2300 movs r3, #0 +1001995c: 7825 ldrb r5, [r4, #0] +1001995e: b2da uxtb r2, r3 +10019960: 2d01 cmp r5, #1 +10019962: f103 0301 add.w r3, r3, #1 +10019966: d904 bls.n 10019972 +10019968: 6831 ldr r1, [r6, #0] +1001996a: f854 5c0e ldr.w r5, [r4, #-14] +1001996e: 42a9 cmp r1, r5 +10019970: d02c beq.n 100199cc +10019972: 2b0a cmp r3, #10 +10019974: f104 0414 add.w r4, r4, #20 +10019978: d1f0 bne.n 1001995c +1001997a: 4640 mov r0, r8 +1001997c: 4631 mov r1, r6 +1001997e: 464a mov r2, r9 +10019980: f7ff ff28 bl 100197d4 +10019984: b240 sxtb r0, r0 +10019986: b003 add sp, #12 +10019988: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001998c: 4b1c ldr r3, [pc, #112] ; (10019a00 ) +1001998e: 4640 mov r0, r8 +10019990: 4649 mov r1, r9 +10019992: f108 022b add.w r2, r8, #43 ; 0x2b +10019996: f7ff fe25 bl 100195e4 +1001999a: b240 sxtb r0, r0 +1001999c: b003 add sp, #12 +1001999e: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100199a2: 7875 ldrb r5, [r6, #1] +100199a4: 78b4 ldrb r4, [r6, #2] +100199a6: 78f1 ldrb r1, [r6, #3] +100199a8: 235e movs r3, #94 ; 0x5e +100199aa: f005 057f and.w r5, r5, #127 ; 0x7f +100199ae: 2201 movs r2, #1 +100199b0: f88d 3002 strb.w r3, [sp, #2] +100199b4: f88d 0001 strb.w r0, [sp, #1] +100199b8: f88d 5003 strb.w r5, [sp, #3] +100199bc: f88d 4004 strb.w r4, [sp, #4] +100199c0: f88d 1005 strb.w r1, [sp, #5] +100199c4: f88d 2000 strb.w r2, [sp] +100199c8: 466b mov r3, sp +100199ca: e7e0 b.n 1001998e +100199cc: b2d3 uxtb r3, r2 +100199ce: 461a mov r2, r3 +100199d0: 4640 mov r0, r8 +100199d2: 4649 mov r1, r9 +100199d4: 703b strb r3, [r7, #0] +100199d6: f7ff fecf bl 10019778 +100199da: b240 sxtb r0, r0 +100199dc: b003 add sp, #12 +100199de: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100199e2: 20fe movs r0, #254 ; 0xfe +100199e4: e7ce b.n 10019984 +100199e6: 20fc movs r0, #252 ; 0xfc +100199e8: e7cc b.n 10019984 +100199ea: 4640 mov r0, r8 +100199ec: 4649 mov r1, r9 +100199ee: f7ff fec3 bl 10019778 +100199f2: e7c7 b.n 10019984 +100199f4: 10051410 .word 0x10051410 +100199f8: 10051414 .word 0x10051414 +100199fc: 10051426 .word 0x10051426 +10019a00: 10047d08 .word 0x10047d08 + +10019a04 : +10019a04: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10019a08: 8943 ldrh r3, [r0, #10] +10019a0a: b089 sub sp, #36 ; 0x24 +10019a0c: 2b0e cmp r3, #14 +10019a0e: 4604 mov r4, r0 +10019a10: 460d mov r5, r1 +10019a12: d918 bls.n 10019a46 +10019a14: 6840 ldr r0, [r0, #4] +10019a16: 7803 ldrb r3, [r0, #0] +10019a18: 8986 ldrh r6, [r0, #12] +10019a1a: 07d9 lsls r1, r3, #31 +10019a1c: d50a bpl.n 10019a34 +10019a1e: 2b01 cmp r3, #1 +10019a20: d028 beq.n 10019a74 +10019a22: 497a ldr r1, [pc, #488] ; (10019c0c ) +10019a24: 2206 movs r2, #6 +10019a26: f028 fb95 bl 10042154 +10019a2a: b918 cbnz r0, 10019a34 +10019a2c: 7b63 ldrb r3, [r4, #13] +10019a2e: f043 0308 orr.w r3, r3, #8 +10019a32: 7363 strb r3, [r4, #13] +10019a34: 2e08 cmp r6, #8 +10019a36: d00d beq.n 10019a54 +10019a38: f5b6 6fc1 cmp.w r6, #1544 ; 0x608 +10019a3c: d103 bne.n 10019a46 +10019a3e: f895 3031 ldrb.w r3, [r5, #49] ; 0x31 +10019a42: 069b lsls r3, r3, #26 +10019a44: d421 bmi.n 10019a8a +10019a46: 4620 mov r0, r4 +10019a48: f7fc fa0e bl 10015e68 +10019a4c: 2000 movs r0, #0 +10019a4e: b009 add sp, #36 ; 0x24 +10019a50: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10019a54: f895 3031 ldrb.w r3, [r5, #49] ; 0x31 +10019a58: 069a lsls r2, r3, #26 +10019a5a: d5f4 bpl.n 10019a46 +10019a5c: 4620 mov r0, r4 +10019a5e: f06f 010d mvn.w r1, #13 +10019a62: f7fc f9cb bl 10015dfc +10019a66: 2800 cmp r0, #0 +10019a68: d1ed bne.n 10019a46 +10019a6a: 4620 mov r0, r4 +10019a6c: 4629 mov r1, r5 +10019a6e: f7f9 fbb9 bl 100131e4 +10019a72: e7eb b.n 10019a4c +10019a74: 7843 ldrb r3, [r0, #1] +10019a76: 2b00 cmp r3, #0 +10019a78: d1dc bne.n 10019a34 +10019a7a: 7883 ldrb r3, [r0, #2] +10019a7c: 2b5e cmp r3, #94 ; 0x5e +10019a7e: d1d9 bne.n 10019a34 +10019a80: 7b63 ldrb r3, [r4, #13] +10019a82: f043 0310 orr.w r3, r3, #16 +10019a86: 7363 strb r3, [r4, #13] +10019a88: e7d4 b.n 10019a34 +10019a8a: 8963 ldrh r3, [r4, #10] +10019a8c: 2b29 cmp r3, #41 ; 0x29 +10019a8e: d9da bls.n 10019a46 +10019a90: 6866 ldr r6, [r4, #4] +10019a92: 89f3 ldrh r3, [r6, #14] +10019a94: f5b3 7f80 cmp.w r3, #256 ; 0x100 +10019a98: d1d5 bne.n 10019a46 +10019a9a: 7cb3 ldrb r3, [r6, #18] +10019a9c: 2b06 cmp r3, #6 +10019a9e: d1d2 bne.n 10019a46 +10019aa0: 7cf7 ldrb r7, [r6, #19] +10019aa2: 2f04 cmp r7, #4 +10019aa4: d1cf bne.n 10019a46 +10019aa6: 8a33 ldrh r3, [r6, #16] +10019aa8: 2b08 cmp r3, #8 +10019aaa: d1cc bne.n 10019a46 +10019aac: 4628 mov r0, r5 +10019aae: f106 010e add.w r1, r6, #14 +10019ab2: f7f8 ff51 bl 10012958 +10019ab6: f106 0b1c add.w fp, r6, #28 +10019aba: f106 0226 add.w r2, r6, #38 ; 0x26 +10019abe: 9205 str r2, [sp, #20] +10019ac0: 4659 mov r1, fp +10019ac2: 463a mov r2, r7 +10019ac4: a806 add r0, sp, #24 +10019ac6: f028 fb4b bl 10042160 +10019aca: 463a mov r2, r7 +10019acc: 9905 ldr r1, [sp, #20] +10019ace: a807 add r0, sp, #28 +10019ad0: f028 fb46 bl 10042160 +10019ad4: 686b ldr r3, [r5, #4] +10019ad6: 2b00 cmp r3, #0 +10019ad8: d05c beq.n 10019b94 +10019ada: 9a07 ldr r2, [sp, #28] +10019adc: f106 0716 add.w r7, r6, #22 +10019ae0: 4293 cmp r3, r2 +10019ae2: bf07 ittee eq +10019ae4: f04f 0801 moveq.w r8, #1 +10019ae8: 46c1 moveq r9, r8 +10019aea: f04f 0800 movne.w r8, #0 +10019aee: f04f 0902 movne.w r9, #2 +10019af2: 9806 ldr r0, [sp, #24] +10019af4: f105 0a2b add.w sl, r5, #43 ; 0x2b +10019af8: 2800 cmp r0, #0 +10019afa: d03e beq.n 10019b7a +10019afc: 4629 mov r1, r5 +10019afe: f7f9 fd5b bl 100135b8 +10019b02: 9004 str r0, [sp, #16] +10019b04: 2800 cmp r0, #0 +10019b06: d138 bne.n 10019b7a +10019b08: 9a06 ldr r2, [sp, #24] +10019b0a: f002 02f0 and.w r2, r2, #240 ; 0xf0 +10019b0e: 2ae0 cmp r2, #224 ; 0xe0 +10019b10: d033 beq.n 10019b7a +10019b12: 4649 mov r1, r9 +10019b14: a806 add r0, sp, #24 +10019b16: f7ff fcdd bl 100194d4 +10019b1a: 2800 cmp r0, #0 +10019b1c: db2d blt.n 10019b7a +10019b1e: f04f 0914 mov.w r9, #20 +10019b22: fb09 f900 mul.w r9, r9, r0 +10019b26: 4b3a ldr r3, [pc, #232] ; (10019c10 ) +10019b28: 2202 movs r2, #2 +10019b2a: eb03 0e09 add.w lr, r3, r9 +10019b2e: f88e 2012 strb.w r2, [lr, #18] +10019b32: f10e 0c10 add.w ip, lr, #16 +10019b36: f8ce 5008 str.w r5, [lr, #8] +10019b3a: 2206 movs r2, #6 +10019b3c: f10e 000c add.w r0, lr, #12 +10019b40: 4639 mov r1, r7 +10019b42: 9302 str r3, [sp, #8] +10019b44: f8cd c004 str.w ip, [sp, #4] +10019b48: f028 fb0a bl 10042160 +10019b4c: 9b02 ldr r3, [sp, #8] +10019b4e: f8dd c004 ldr.w ip, [sp, #4] +10019b52: f853 2009 ldr.w r2, [r3, r9] +10019b56: 9203 str r2, [sp, #12] +10019b58: 9a04 ldr r2, [sp, #16] +10019b5a: f88c 2003 strb.w r2, [ip, #3] +10019b5e: 9a03 ldr r2, [sp, #12] +10019b60: b15a cbz r2, 10019b7a +10019b62: 4611 mov r1, r2 +10019b64: 9a04 ldr r2, [sp, #16] +10019b66: 4628 mov r0, r5 +10019b68: f843 2009 str.w r2, [r3, r9] +10019b6c: 4652 mov r2, sl +10019b6e: 463b mov r3, r7 +10019b70: f7ff fd38 bl 100195e4 +10019b74: 9803 ldr r0, [sp, #12] +10019b76: f7fc f977 bl 10015e68 +10019b7a: 8ab3 ldrh r3, [r6, #20] +10019b7c: f5b3 7f80 cmp.w r3, #256 ; 0x100 +10019b80: d00e beq.n 10019ba0 +10019b82: f5b3 7f00 cmp.w r3, #512 ; 0x200 +10019b86: f47f af5e bne.w 10019a46 +10019b8a: 4628 mov r0, r5 +10019b8c: a906 add r1, sp, #24 +10019b8e: f7fa ff57 bl 10014a40 +10019b92: e758 b.n 10019a46 +10019b94: 4698 mov r8, r3 +10019b96: f106 0716 add.w r7, r6, #22 +10019b9a: f04f 0902 mov.w r9, #2 +10019b9e: e7a8 b.n 10019af2 +10019ba0: f1b8 0f00 cmp.w r8, #0 +10019ba4: f43f af4f beq.w 10019a46 +10019ba8: 2002 movs r0, #2 +10019baa: f7fa f92f bl 10013e0c +10019bae: 4659 mov r1, fp +10019bb0: 82b0 strh r0, [r6, #20] +10019bb2: 2204 movs r2, #4 +10019bb4: 9805 ldr r0, [sp, #20] +10019bb6: f028 fad3 bl 10042160 +10019bba: 1d29 adds r1, r5, #4 +10019bbc: 4658 mov r0, fp +10019bbe: 2204 movs r2, #4 +10019bc0: f028 face bl 10042160 +10019bc4: 4b11 ldr r3, [pc, #68] ; (10019c0c ) +10019bc6: f8b5 8004 ldrh.w r8, [r5, #4] +10019bca: f64f 62a9 movw r2, #65193 ; 0xfea9 +10019bce: 4590 cmp r8, r2 +10019bd0: bf14 ite ne +10019bd2: 46b8 movne r8, r7 +10019bd4: 4698 moveq r8, r3 +10019bd6: 4639 mov r1, r7 +10019bd8: f106 0020 add.w r0, r6, #32 +10019bdc: 2206 movs r2, #6 +10019bde: f028 fabf bl 10042160 +10019be2: 4641 mov r1, r8 +10019be4: 4630 mov r0, r6 +10019be6: 2206 movs r2, #6 +10019be8: f028 faba bl 10042160 +10019bec: 4651 mov r1, sl +10019bee: 4638 mov r0, r7 +10019bf0: 2206 movs r2, #6 +10019bf2: f028 fab5 bl 10042160 +10019bf6: 4651 mov r1, sl +10019bf8: 1db0 adds r0, r6, #6 +10019bfa: 2206 movs r2, #6 +10019bfc: f028 fab0 bl 10042160 +10019c00: 69ab ldr r3, [r5, #24] +10019c02: 4628 mov r0, r5 +10019c04: 4621 mov r1, r4 +10019c06: 4798 blx r3 +10019c08: e71d b.n 10019a46 +10019c0a: bf00 nop +10019c0c: 10047d08 .word 0x10047d08 +10019c10: 10051414 .word 0x10051414 + +10019c14 : +10019c14: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10019c18: b0c1 sub sp, #260 ; 0x104 +10019c1a: 4689 mov r9, r1 +10019c1c: 4680 mov r8, r0 +10019c1e: f000 f967 bl 10019ef0 +10019c22: b2c0 uxtb r0, r0 +10019c24: f022 f842 bl 1003bcac +10019c28: b328 cbz r0, 10019c76 +10019c2a: f1b9 0f00 cmp.w r9, #0 +10019c2e: d01b beq.n 10019c68 +10019c30: 2400 movs r4, #0 +10019c32: 4625 mov r5, r4 +10019c34: 464b mov r3, r9 +10019c36: e001 b.n 10019c3c +10019c38: 2d20 cmp r5, #32 +10019c3a: d00b beq.n 10019c54 +10019c3c: 685a ldr r2, [r3, #4] +10019c3e: 895e ldrh r6, [r3, #10] +10019c40: af00 add r7, sp, #0 +10019c42: 681b ldr r3, [r3, #0] +10019c44: 4427 add r7, r4 +10019c46: f84d 2004 str.w r2, [sp, r4] +10019c4a: 3501 adds r5, #1 +10019c4c: 607e str r6, [r7, #4] +10019c4e: 3408 adds r4, #8 +10019c50: 2b00 cmp r3, #0 +10019c52: d1f1 bne.n 10019c38 +10019c54: 4640 mov r0, r8 +10019c56: f000 f94b bl 10019ef0 +10019c5a: 4669 mov r1, sp +10019c5c: 462a mov r2, r5 +10019c5e: f8b9 3008 ldrh.w r3, [r9, #8] +10019c62: f000 f899 bl 10019d98 +10019c66: b920 cbnz r0, 10019c72 +10019c68: 2000 movs r0, #0 +10019c6a: b240 sxtb r0, r0 +10019c6c: b041 add sp, #260 ; 0x104 +10019c6e: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10019c72: 20fe movs r0, #254 ; 0xfe +10019c74: e7f9 b.n 10019c6a +10019c76: 20f1 movs r0, #241 ; 0xf1 +10019c78: e7f7 b.n 10019c6a +10019c7a: bf00 nop + +10019c7c : +10019c7c: b508 push {r3, lr} +10019c7e: f7ff fcc9 bl 10019614 +10019c82: e8bd 4008 ldmia.w sp!, {r3, lr} +10019c86: f241 3088 movw r0, #5000 ; 0x1388 +10019c8a: 4902 ldr r1, [pc, #8] ; (10019c94 ) +10019c8c: 2200 movs r2, #0 +10019c8e: f7fb bc3d b.w 1001550c +10019c92: bf00 nop +10019c94: 10019c7d .word 0x10019c7d + +10019c98 : +10019c98: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10019c9c: b0c0 sub sp, #256 ; 0x100 +10019c9e: 460c mov r4, r1 +10019ca0: 4680 mov r8, r0 +10019ca2: f000 f925 bl 10019ef0 +10019ca6: b2c0 uxtb r0, r0 +10019ca8: f022 f800 bl 1003bcac +10019cac: 2800 cmp r0, #0 +10019cae: d02c beq.n 10019d0a +10019cb0: f240 6104 movw r1, #1540 ; 0x604 +10019cb4: 428c cmp r4, r1 +10019cb6: f04f 0003 mov.w r0, #3 +10019cba: bf98 it ls +10019cbc: b2a1 uxthls r1, r4 +10019cbe: 4602 mov r2, r0 +10019cc0: f7fc f908 bl 10015ed4 +10019cc4: 4607 mov r7, r0 +10019cc6: b348 cbz r0, 10019d1c +10019cc8: 6842 ldr r2, [r0, #4] +10019cca: 6803 ldr r3, [r0, #0] +10019ccc: 8941 ldrh r1, [r0, #10] +10019cce: 9200 str r2, [sp, #0] +10019cd0: 9101 str r1, [sp, #4] +10019cd2: b33b cbz r3, 10019d24 +10019cd4: 466c mov r4, sp +10019cd6: 2501 movs r5, #1 +10019cd8: e001 b.n 10019cde +10019cda: 2d20 cmp r5, #32 +10019cdc: d008 beq.n 10019cf0 +10019cde: 685a ldr r2, [r3, #4] +10019ce0: 895e ldrh r6, [r3, #10] +10019ce2: 681b ldr r3, [r3, #0] +10019ce4: 3501 adds r5, #1 +10019ce6: 60a2 str r2, [r4, #8] +10019ce8: 60e6 str r6, [r4, #12] +10019cea: 3408 adds r4, #8 +10019cec: 2b00 cmp r3, #0 +10019cee: d1f4 bne.n 10019cda +10019cf0: 4640 mov r0, r8 +10019cf2: f000 f8fd bl 10019ef0 +10019cf6: 4669 mov r1, sp +10019cf8: 462a mov r2, r5 +10019cfa: f000 f89f bl 10019e3c +10019cfe: f8d8 3010 ldr.w r3, [r8, #16] +10019d02: 4641 mov r1, r8 +10019d04: 4638 mov r0, r7 +10019d06: 4798 blx r3 +10019d08: b910 cbnz r0, 10019d10 +10019d0a: b040 add sp, #256 ; 0x100 +10019d0c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10019d10: 4638 mov r0, r7 +10019d12: f7fc f8a9 bl 10015e68 +10019d16: b040 add sp, #256 ; 0x100 +10019d18: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10019d1c: 4802 ldr r0, [pc, #8] ; (10019d28 ) +10019d1e: f028 f9f3 bl 10042108 +10019d22: e7f2 b.n 10019d0a +10019d24: 2501 movs r5, #1 +10019d26: e7e3 b.n 10019cf0 +10019d28: 10047d18 .word 0x10047d18 + +10019d2c : +10019d2c: b430 push {r4, r5} +10019d2e: 4a08 ldr r2, [pc, #32] ; (10019d50 ) +10019d30: 2506 movs r5, #6 +10019d32: 4b08 ldr r3, [pc, #32] ; (10019d54 ) +10019d34: 2122 movs r1, #34 ; 0x22 +10019d36: f240 54dc movw r4, #1500 ; 0x5dc +10019d3a: f880 502a strb.w r5, [r0, #42] ; 0x2a +10019d3e: f880 1031 strb.w r1, [r0, #49] ; 0x31 +10019d42: 8504 strh r4, [r0, #40] ; 0x28 +10019d44: 6142 str r2, [r0, #20] +10019d46: 6183 str r3, [r0, #24] +10019d48: bc30 pop {r4, r5} +10019d4a: 2000 movs r0, #0 +10019d4c: 4770 bx lr +10019d4e: bf00 nop +10019d50: 100198dd .word 0x100198dd +10019d54: 10019c15 .word 0x10019c15 + +10019d58 : +10019d58: 4b04 ldr r3, [pc, #16] ; (10019d6c ) +10019d5a: 681b ldr r3, [r3, #0] +10019d5c: b903 cbnz r3, 10019d60 +10019d5e: 4770 bx lr +10019d60: f241 3088 movw r0, #5000 ; 0x1388 +10019d64: 4902 ldr r1, [pc, #8] ; (10019d70 ) +10019d66: 2200 movs r2, #0 +10019d68: f7f8 bc60 b.w 1001262c +10019d6c: 100514dc .word 0x100514dc +10019d70: 10019c7d .word 0x10019c7d + +10019d74 : +10019d74: b570 push {r4, r5, r6, lr} +10019d76: ebc0 1000 rsb r0, r0, r0, lsl #4 +10019d7a: 4d06 ldr r5, [pc, #24] ; (10019d94 ) +10019d7c: 0084 lsls r4, r0, #2 +10019d7e: 1928 adds r0, r5, r4 +10019d80: 460e mov r6, r1 +10019d82: 302b adds r0, #43 ; 0x2b +10019d84: 4611 mov r1, r2 +10019d86: 442c add r4, r5 +10019d88: 2206 movs r2, #6 +10019d8a: f003 f80f bl 1001cdac +10019d8e: 61e6 str r6, [r4, #28] +10019d90: bd70 pop {r4, r5, r6, pc} +10019d92: bf00 nop +10019d94: 10050ae4 .word 0x10050ae4 + +10019d98 : +10019d98: b5f8 push {r3, r4, r5, r6, r7, lr} +10019d9a: 461d mov r5, r3 +10019d9c: 1c43 adds r3, r0, #1 +10019d9e: 4607 mov r7, r0 +10019da0: 460c mov r4, r1 +10019da2: 4616 mov r6, r2 +10019da4: d03f beq.n 10019e26 +10019da6: f002 ff23 bl 1001cbf0 +10019daa: 4638 mov r0, r7 +10019dac: f021 fe7e bl 1003baac +10019db0: b380 cbz r0, 10019e14 +10019db2: 4638 mov r0, r7 +10019db4: f021 fe82 bl 1003babc +10019db8: f002 ff1c bl 1001cbf4 +10019dbc: 4628 mov r0, r5 +10019dbe: f021 fe99 bl 1003baf4 +10019dc2: 4605 mov r5, r0 +10019dc4: b318 cbz r0, 10019e0e +10019dc6: eb04 06c6 add.w r6, r4, r6, lsl #3 +10019dca: 42b4 cmp r4, r6 +10019dcc: bf38 it cc +10019dce: 3408 addcc r4, #8 +10019dd0: d301 bcc.n 10019dd6 +10019dd2: e00e b.n 10019df2 +10019dd4: 461c mov r4, r3 +10019dd6: e914 0006 ldmdb r4, {r1, r2} +10019dda: 6968 ldr r0, [r5, #20] +10019ddc: f002 ffe6 bl 1001cdac +10019de0: 4628 mov r0, r5 +10019de2: f854 1c04 ldr.w r1, [r4, #-4] +10019de6: f021 fac5 bl 1003b374 +10019dea: 42a6 cmp r6, r4 +10019dec: f104 0308 add.w r3, r4, #8 +10019df0: d8f0 bhi.n 10019dd4 +10019df2: 4629 mov r1, r5 +10019df4: 4638 mov r0, r7 +10019df6: f021 fe9d bl 1003bb34 +10019dfa: 2400 movs r4, #0 +10019dfc: f002 fef8 bl 1001cbf0 +10019e00: 4638 mov r0, r7 +10019e02: f021 fe65 bl 1003bad0 +10019e06: f002 fef5 bl 1001cbf4 +10019e0a: 4620 mov r0, r4 +10019e0c: bdf8 pop {r3, r4, r5, r6, r7, pc} +10019e0e: f04f 34ff mov.w r4, #4294967295 +10019e12: e7f3 b.n 10019dfc +10019e14: 4907 ldr r1, [pc, #28] ; (10019e34 ) +10019e16: 4808 ldr r0, [pc, #32] ; (10019e38 ) +10019e18: f028 f976 bl 10042108 +10019e1c: f002 feea bl 1001cbf4 +10019e20: f04f 30ff mov.w r0, #4294967295 +10019e24: bdf8 pop {r3, r4, r5, r6, r7, pc} +10019e26: 4903 ldr r1, [pc, #12] ; (10019e34 ) +10019e28: 4803 ldr r0, [pc, #12] ; (10019e38 ) +10019e2a: f028 f96d bl 10042108 +10019e2e: 4638 mov r0, r7 +10019e30: bdf8 pop {r3, r4, r5, r6, r7, pc} +10019e32: bf00 nop +10019e34: 10047d44 .word 0x10047d44 +10019e38: 10047d54 .word 0x10047d54 + +10019e3c : +10019e3c: 1c43 adds r3, r0, #1 +10019e3e: b570 push {r4, r5, r6, lr} +10019e40: 460c mov r4, r1 +10019e42: 4615 mov r5, r2 +10019e44: d021 beq.n 10019e8a +10019e46: f021 fe4d bl 1003bae4 +10019e4a: 4606 mov r6, r0 +10019e4c: b318 cbz r0, 10019e96 +10019e4e: eb04 05c5 add.w r5, r4, r5, lsl #3 +10019e52: 42ac cmp r4, r5 +10019e54: d218 bcs.n 10019e88 +10019e56: 3408 adds r4, #8 +10019e58: e004 b.n 10019e64 +10019e5a: 42a5 cmp r5, r4 +10019e5c: f104 0308 add.w r3, r4, #8 +10019e60: d912 bls.n 10019e88 +10019e62: 461c mov r4, r3 +10019e64: f854 0c08 ldr.w r0, [r4, #-8] +10019e68: 2800 cmp r0, #0 +10019e6a: d0f6 beq.n 10019e5a +10019e6c: 6931 ldr r1, [r6, #16] +10019e6e: f854 2c04 ldr.w r2, [r4, #-4] +10019e72: f002 ff9b bl 1001cdac +10019e76: 4630 mov r0, r6 +10019e78: f854 1c04 ldr.w r1, [r4, #-4] +10019e7c: f021 faaf bl 1003b3de +10019e80: 42a5 cmp r5, r4 +10019e82: f104 0308 add.w r3, r4, #8 +10019e86: d8ec bhi.n 10019e62 +10019e88: bd70 pop {r4, r5, r6, pc} +10019e8a: 4806 ldr r0, [pc, #24] ; (10019ea4 ) +10019e8c: 4906 ldr r1, [pc, #24] ; (10019ea8 ) +10019e8e: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10019e92: f028 b939 b.w 10042108 +10019e96: 4905 ldr r1, [pc, #20] ; (10019eac ) +10019e98: 227d movs r2, #125 ; 0x7d +10019e9a: 4b05 ldr r3, [pc, #20] ; (10019eb0 ) +10019e9c: 4805 ldr r0, [pc, #20] ; (10019eb4 ) +10019e9e: f028 f933 bl 10042108 +10019ea2: e7d4 b.n 10019e4e +10019ea4: 10047d6c .word 0x10047d6c +10019ea8: 10047e0c .word 0x10047e0c +10019eac: 10047db0 .word 0x10047db0 +10019eb0: 10047dc4 .word 0x10047dc4 +10019eb4: 10047d80 .word 0x10047d80 + +10019eb8 : +10019eb8: b538 push {r3, r4, r5, lr} +10019eba: 4b0c ldr r3, [pc, #48] ; (10019eec ) +10019ebc: ebc0 1000 rsb r0, r0, r0, lsl #4 +10019ec0: eb03 0480 add.w r4, r3, r0, lsl #2 +10019ec4: 6863 ldr r3, [r4, #4] +10019ec6: 680d ldr r5, [r1, #0] +10019ec8: b16b cbz r3, 10019ee6 +10019eca: f005 03f0 and.w r3, r5, #240 ; 0xf0 +10019ece: 2be0 cmp r3, #224 ; 0xe0 +10019ed0: d009 beq.n 10019ee6 +10019ed2: 4628 mov r0, r5 +10019ed4: 4621 mov r1, r4 +10019ed6: f7f9 fb6f bl 100135b8 +10019eda: b920 cbnz r0, 10019ee6 +10019edc: 6860 ldr r0, [r4, #4] +10019ede: 1a2b subs r3, r5, r0 +10019ee0: 4258 negs r0, r3 +10019ee2: 4158 adcs r0, r3 +10019ee4: bd38 pop {r3, r4, r5, pc} +10019ee6: 2001 movs r0, #1 +10019ee8: bd38 pop {r3, r4, r5, pc} +10019eea: bf00 nop +10019eec: 10050ae4 .word 0x10050ae4 + +10019ef0 : +10019ef0: 4a06 ldr r2, [pc, #24] ; (10019f0c ) +10019ef2: 4b07 ldr r3, [pc, #28] ; (10019f10 ) +10019ef4: 1a80 subs r0, r0, r2 +10019ef6: 1080 asrs r0, r0, #2 +10019ef8: fb03 f000 mul.w r0, r3, r0 +10019efc: b120 cbz r0, 10019f08 +10019efe: 2801 cmp r0, #1 +10019f00: bf0c ite eq +10019f02: 2001 moveq r0, #1 +10019f04: f04f 30ff movne.w r0, #4294967295 +10019f08: 4770 bx lr +10019f0a: bf00 nop +10019f0c: 10050ae4 .word 0x10050ae4 +10019f10: eeeeeeef .word 0xeeeeeeef + +10019f14 : +10019f14: 4b03 ldr r3, [pc, #12] ; (10019f24 ) +10019f16: ebc0 1000 rsb r0, r0, r0, lsl #4 +10019f1a: eb03 0080 add.w r0, r3, r0, lsl #2 +10019f1e: f7ff bebb b.w 10019c98 +10019f22: bf00 nop +10019f24: 10050ae4 .word 0x10050ae4 + +10019f28 : +10019f28: f7ff bf16 b.w 10019d58 + +10019f2c : +10019f2c: b510 push {r4, lr} +10019f2e: 2200 movs r2, #0 +10019f30: 4604 mov r4, r0 +10019f32: 4608 mov r0, r1 +10019f34: 2104 movs r1, #4 +10019f36: f001 f943 bl 1001b1c0 +10019f3a: 4603 mov r3, r0 +10019f3c: f1d0 0001 rsbs r0, r0, #1 +10019f40: bf38 it cc +10019f42: 2000 movcc r0, #0 +10019f44: 6023 str r3, [r4, #0] +10019f46: 4240 negs r0, r0 +10019f48: bd10 pop {r4, pc} +10019f4a: bf00 nop + +10019f4c : +10019f4c: b510 push {r4, lr} +10019f4e: 4604 mov r4, r0 +10019f50: 6800 ldr r0, [r0, #0] +10019f52: f001 facd bl 1001b4f0 +10019f56: 6820 ldr r0, [r4, #0] +10019f58: e8bd 4010 ldmia.w sp!, {r4, lr} +10019f5c: f001 bad2 b.w 1001b504 + +10019f60 : +10019f60: b530 push {r4, r5, lr} +10019f62: b083 sub sp, #12 +10019f64: ac02 add r4, sp, #8 +10019f66: 4605 mov r5, r0 +10019f68: f844 1d04 str.w r1, [r4, #-4]! +10019f6c: 6828 ldr r0, [r5, #0] +10019f6e: 4621 mov r1, r4 +10019f70: f04f 32ff mov.w r2, #4294967295 +10019f74: 2300 movs r3, #0 +10019f76: f001 f94f bl 1001b218 +10019f7a: 2801 cmp r0, #1 +10019f7c: d1f6 bne.n 10019f6c +10019f7e: b003 add sp, #12 +10019f80: bd30 pop {r4, r5, pc} +10019f82: bf00 nop + +10019f84 : +10019f84: b500 push {lr} +10019f86: b083 sub sp, #12 +10019f88: ab02 add r3, sp, #8 +10019f8a: f843 1d04 str.w r1, [r3, #-4]! +10019f8e: 2200 movs r2, #0 +10019f90: 4619 mov r1, r3 +10019f92: 6800 ldr r0, [r0, #0] +10019f94: 4613 mov r3, r2 +10019f96: f001 f93f bl 1001b218 +10019f9a: 3801 subs r0, #1 +10019f9c: bf18 it ne +10019f9e: f06f 0000 mvnne.w r0, #0 +10019fa2: b003 add sp, #12 +10019fa4: f85d fb04 ldr.w pc, [sp], #4 + +10019fa8 : +10019fa8: b5f0 push {r4, r5, r6, r7, lr} +10019faa: b083 sub sp, #12 +10019fac: 460c mov r4, r1 +10019fae: 4605 mov r5, r0 +10019fb0: 4616 mov r6, r2 +10019fb2: f001 fd0d bl 1001b9d0 +10019fb6: 4607 mov r7, r0 +10019fb8: b1e4 cbz r4, 10019ff4 +10019fba: b96e cbnz r6, 10019fd8 +10019fbc: 6828 ldr r0, [r5, #0] +10019fbe: 4621 mov r1, r4 +10019fc0: f04f 32ff mov.w r2, #4294967295 +10019fc4: 2300 movs r3, #0 +10019fc6: f001 fa01 bl 1001b3cc +10019fca: 2801 cmp r0, #1 +10019fcc: d1f6 bne.n 10019fbc +10019fce: f001 fcff bl 1001b9d0 +10019fd2: 1bc0 subs r0, r0, r7 +10019fd4: b003 add sp, #12 +10019fd6: bdf0 pop {r4, r5, r6, r7, pc} +10019fd8: 6828 ldr r0, [r5, #0] +10019fda: 4632 mov r2, r6 +10019fdc: 4621 mov r1, r4 +10019fde: 2300 movs r3, #0 +10019fe0: f001 f9f4 bl 1001b3cc +10019fe4: 2801 cmp r0, #1 +10019fe6: d0f2 beq.n 10019fce +10019fe8: 2300 movs r3, #0 +10019fea: f04f 30ff mov.w r0, #4294967295 +10019fee: 6023 str r3, [r4, #0] +10019ff0: b003 add sp, #12 +10019ff2: bdf0 pop {r4, r5, r6, r7, pc} +10019ff4: ac01 add r4, sp, #4 +10019ff6: e7e0 b.n 10019fba + +10019ff8 : +10019ff8: b500 push {lr} +10019ffa: b083 sub sp, #12 +10019ffc: b159 cbz r1, 1001a016 +10019ffe: 2200 movs r2, #0 +1001a000: 4613 mov r3, r2 +1001a002: 6800 ldr r0, [r0, #0] +1001a004: f001 f9e2 bl 1001b3cc +1001a008: 3801 subs r0, #1 +1001a00a: bf18 it ne +1001a00c: f06f 0000 mvnne.w r0, #0 +1001a010: b003 add sp, #12 +1001a012: f85d fb04 ldr.w pc, [sp], #4 +1001a016: a901 add r1, sp, #4 +1001a018: e7f1 b.n 10019ffe +1001a01a: bf00 nop + +1001a01c : +1001a01c: 6800 ldr r0, [r0, #0] +1001a01e: 3000 adds r0, #0 +1001a020: bf18 it ne +1001a022: 2001 movne r0, #1 +1001a024: 4770 bx lr +1001a026: bf00 nop + +1001a028 : +1001a028: 2300 movs r3, #0 +1001a02a: 6003 str r3, [r0, #0] +1001a02c: 4770 bx lr +1001a02e: bf00 nop + +1001a030 : +1001a030: b538 push {r3, r4, r5, lr} +1001a032: 2203 movs r2, #3 +1001a034: 4605 mov r5, r0 +1001a036: 460c mov r4, r1 +1001a038: 2001 movs r0, #1 +1001a03a: 2100 movs r1, #0 +1001a03c: f001 f8c0 bl 1001b1c0 +1001a040: 6028 str r0, [r5, #0] +1001a042: b190 cbz r0, 1001a06a +1001a044: 2100 movs r1, #0 +1001a046: 460a mov r2, r1 +1001a048: 460b mov r3, r1 +1001a04a: f001 f8e5 bl 1001b218 +1001a04e: 6828 ldr r0, [r5, #0] +1001a050: b158 cbz r0, 1001a06a +1001a052: b114 cbz r4, 1001a05a +1001a054: 2000 movs r0, #0 +1001a056: b240 sxtb r0, r0 +1001a058: bd38 pop {r3, r4, r5, pc} +1001a05a: 4621 mov r1, r4 +1001a05c: 2201 movs r2, #1 +1001a05e: 4623 mov r3, r4 +1001a060: f001 f9b4 bl 1001b3cc +1001a064: 4620 mov r0, r4 +1001a066: b240 sxtb r0, r0 +1001a068: bd38 pop {r3, r4, r5, pc} +1001a06a: 20ff movs r0, #255 ; 0xff +1001a06c: b240 sxtb r0, r0 +1001a06e: bd38 pop {r3, r4, r5, pc} + +1001a070 : +1001a070: b570 push {r4, r5, r6, lr} +1001a072: 460d mov r5, r1 +1001a074: 4604 mov r4, r0 +1001a076: f001 fcab bl 1001b9d0 +1001a07a: 4606 mov r6, r0 +1001a07c: b965 cbnz r5, 1001a098 +1001a07e: 2100 movs r1, #0 +1001a080: 460b mov r3, r1 +1001a082: 6820 ldr r0, [r4, #0] +1001a084: f04f 32ff mov.w r2, #4294967295 +1001a088: f001 f9a0 bl 1001b3cc +1001a08c: 2801 cmp r0, #1 +1001a08e: d1f6 bne.n 1001a07e +1001a090: f001 fc9e bl 1001b9d0 +1001a094: 1b80 subs r0, r0, r6 +1001a096: bd70 pop {r4, r5, r6, pc} +1001a098: 2100 movs r1, #0 +1001a09a: 6820 ldr r0, [r4, #0] +1001a09c: 462a mov r2, r5 +1001a09e: 460b mov r3, r1 +1001a0a0: f001 f994 bl 1001b3cc +1001a0a4: 2801 cmp r0, #1 +1001a0a6: d0f3 beq.n 1001a090 +1001a0a8: f04f 30ff mov.w r0, #4294967295 +1001a0ac: bd70 pop {r4, r5, r6, pc} +1001a0ae: bf00 nop + +1001a0b0 : +1001a0b0: 2100 movs r1, #0 +1001a0b2: 6800 ldr r0, [r0, #0] +1001a0b4: 460a mov r2, r1 +1001a0b6: 460b mov r3, r1 +1001a0b8: f001 b8ae b.w 1001b218 + +1001a0bc : +1001a0bc: 6800 ldr r0, [r0, #0] +1001a0be: f001 ba21 b.w 1001b504 +1001a0c2: bf00 nop + +1001a0c4 : +1001a0c4: 6800 ldr r0, [r0, #0] +1001a0c6: 3000 adds r0, #0 +1001a0c8: bf18 it ne +1001a0ca: 2001 movne r0, #1 +1001a0cc: 4770 bx lr +1001a0ce: bf00 nop + +1001a0d0 : +1001a0d0: 2300 movs r3, #0 +1001a0d2: 6003 str r3, [r0, #0] +1001a0d4: 4770 bx lr +1001a0d6: bf00 nop + +1001a0d8 : +1001a0d8: 2300 movs r3, #0 +1001a0da: 4906 ldr r1, [pc, #24] ; (1001a0f4 ) +1001a0dc: 461a mov r2, r3 +1001a0de: 18c8 adds r0, r1, r3 +1001a0e0: 6042 str r2, [r0, #4] +1001a0e2: 50ca str r2, [r1, r3] +1001a0e4: 3308 adds r3, #8 +1001a0e6: 2b30 cmp r3, #48 ; 0x30 +1001a0e8: f04f 0000 mov.w r0, #0 +1001a0ec: d1f7 bne.n 1001a0de +1001a0ee: 4b02 ldr r3, [pc, #8] ; (1001a0f8 ) +1001a0f0: 8018 strh r0, [r3, #0] +1001a0f2: 4770 bx lr +1001a0f4: 100514e0 .word 0x100514e0 +1001a0f8: 10051510 .word 0x10051510 + +1001a0fc : +1001a0fc: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1001a100: 4c18 ldr r4, [pc, #96] ; (1001a164 ) +1001a102: b087 sub sp, #28 +1001a104: 8826 ldrh r6, [r4, #0] +1001a106: 4680 mov r8, r0 +1001a108: 2e05 cmp r6, #5 +1001a10a: 4689 mov r9, r1 +1001a10c: 4617 mov r7, r2 +1001a10e: 461d mov r5, r3 +1001a110: d824 bhi.n 1001a15c +1001a112: f000 fded bl 1001acf0 +1001a116: 00a8 lsls r0, r5, #2 +1001a118: f003 f960 bl 1001d3dc +1001a11c: 9b0e ldr r3, [sp, #56] ; 0x38 +1001a11e: f10d 0e14 add.w lr, sp, #20 +1001a122: 2600 movs r6, #0 +1001a124: b2aa uxth r2, r5 +1001a126: 9002 str r0, [sp, #8] +1001a128: 9300 str r3, [sp, #0] +1001a12a: 4641 mov r1, r8 +1001a12c: 463b mov r3, r7 +1001a12e: f8cd e004 str.w lr, [sp, #4] +1001a132: 4648 mov r0, r9 +1001a134: 9603 str r6, [sp, #12] +1001a136: f001 fa65 bl 1001b604 +1001a13a: 8823 ldrh r3, [r4, #0] +1001a13c: 4605 mov r5, r0 +1001a13e: 480a ldr r0, [pc, #40] ; (1001a168 ) +1001a140: 9a05 ldr r2, [sp, #20] +1001a142: 1c59 adds r1, r3, #1 +1001a144: eb00 03c3 add.w r3, r0, r3, lsl #3 +1001a148: 605a str r2, [r3, #4] +1001a14a: 8021 strh r1, [r4, #0] +1001a14c: f000 fde2 bl 1001ad14 +1001a150: 2d01 cmp r5, #1 +1001a152: d103 bne.n 1001a15c +1001a154: 9805 ldr r0, [sp, #20] +1001a156: b007 add sp, #28 +1001a158: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001a15c: 2000 movs r0, #0 +1001a15e: b007 add sp, #28 +1001a160: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001a164: 10051510 .word 0x10051510 +1001a168: 100514e0 .word 0x100514e0 + +1001a16c : +1001a16c: b508 push {r3, lr} +1001a16e: f000 fdbf bl 1001acf0 +1001a172: 2001 movs r0, #1 +1001a174: bd08 pop {r3, pc} +1001a176: bf00 nop + +1001a178 : +1001a178: f000 bdcc b.w 1001ad14 + +1001a17c : +1001a17c: f001 bc28 b.w 1001b9d0 + +1001a180 : +1001a180: b570 push {r4, r5, r6, lr} +1001a182: 4d3b ldr r5, [pc, #236] ; (1001a270 ) +1001a184: 2100 movs r1, #0 +1001a186: 4604 mov r4, r0 +1001a188: 460b mov r3, r1 +1001a18a: f04f 32ff mov.w r2, #4294967295 +1001a18e: 6828 ldr r0, [r5, #0] +1001a190: f001 f91c bl 1001b3cc +1001a194: 1e63 subs r3, r4, #1 +1001a196: b2da uxtb r2, r3 +1001a198: 2a1f cmp r2, #31 +1001a19a: d937 bls.n 1001a20c +1001a19c: f1a4 0221 sub.w r2, r4, #33 ; 0x21 +1001a1a0: b2d1 uxtb r1, r2 +1001a1a2: 291f cmp r1, #31 +1001a1a4: d923 bls.n 1001a1ee +1001a1a6: f1a4 0241 sub.w r2, r4, #65 ; 0x41 +1001a1aa: b2d1 uxtb r1, r2 +1001a1ac: 291f cmp r1, #31 +1001a1ae: d93d bls.n 1001a22c +1001a1b0: f1a4 0261 sub.w r2, r4, #97 ; 0x61 +1001a1b4: b2d1 uxtb r1, r2 +1001a1b6: 291f cmp r1, #31 +1001a1b8: d930 bls.n 1001a21c +1001a1ba: f104 027f add.w r2, r4, #127 ; 0x7f +1001a1be: b2d2 uxtb r2, r2 +1001a1c0: 2a1f cmp r2, #31 +1001a1c2: d93b bls.n 1001a23c +1001a1c4: f104 035f add.w r3, r4, #95 ; 0x5f +1001a1c8: b2db uxtb r3, r3 +1001a1ca: 2b1f cmp r3, #31 +1001a1cc: d947 bls.n 1001a25e +1001a1ce: f104 033f add.w r3, r4, #63 ; 0x3f +1001a1d2: b2db uxtb r3, r3 +1001a1d4: 2b1f cmp r3, #31 +1001a1d6: d939 bls.n 1001a24c +1001a1d8: 2ce0 cmp r4, #224 ; 0xe0 +1001a1da: d90f bls.n 1001a1fc +1001a1dc: 2201 movs r2, #1 +1001a1de: 3ce1 subs r4, #225 ; 0xe1 +1001a1e0: fa02 f404 lsl.w r4, r2, r4 +1001a1e4: 4b23 ldr r3, [pc, #140] ; (1001a274 ) +1001a1e6: 69da ldr r2, [r3, #28] +1001a1e8: 4322 orrs r2, r4 +1001a1ea: 61da str r2, [r3, #28] +1001a1ec: e006 b.n 1001a1fc +1001a1ee: 2101 movs r1, #1 +1001a1f0: fa01 f202 lsl.w r2, r1, r2 +1001a1f4: 4b1f ldr r3, [pc, #124] ; (1001a274 ) +1001a1f6: 6859 ldr r1, [r3, #4] +1001a1f8: 4311 orrs r1, r2 +1001a1fa: 6059 str r1, [r3, #4] +1001a1fc: 2100 movs r1, #0 +1001a1fe: 6828 ldr r0, [r5, #0] +1001a200: 460a mov r2, r1 +1001a202: 460b mov r3, r1 +1001a204: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1001a208: f001 b806 b.w 1001b218 +1001a20c: 2101 movs r1, #1 +1001a20e: fa01 f303 lsl.w r3, r1, r3 +1001a212: 4a18 ldr r2, [pc, #96] ; (1001a274 ) +1001a214: 6811 ldr r1, [r2, #0] +1001a216: 4319 orrs r1, r3 +1001a218: 6011 str r1, [r2, #0] +1001a21a: e7ef b.n 1001a1fc +1001a21c: 2101 movs r1, #1 +1001a21e: fa01 f202 lsl.w r2, r1, r2 +1001a222: 4b14 ldr r3, [pc, #80] ; (1001a274 ) +1001a224: 68d9 ldr r1, [r3, #12] +1001a226: 4311 orrs r1, r2 +1001a228: 60d9 str r1, [r3, #12] +1001a22a: e7e7 b.n 1001a1fc +1001a22c: 2101 movs r1, #1 +1001a22e: fa01 f202 lsl.w r2, r1, r2 +1001a232: 4b10 ldr r3, [pc, #64] ; (1001a274 ) +1001a234: 6899 ldr r1, [r3, #8] +1001a236: 4311 orrs r1, r2 +1001a238: 6099 str r1, [r3, #8] +1001a23a: e7df b.n 1001a1fc +1001a23c: 2101 movs r1, #1 +1001a23e: fa01 f303 lsl.w r3, r1, r3 +1001a242: 4a0c ldr r2, [pc, #48] ; (1001a274 ) +1001a244: 6911 ldr r1, [r2, #16] +1001a246: 4319 orrs r1, r3 +1001a248: 6111 str r1, [r2, #16] +1001a24a: e7d7 b.n 1001a1fc +1001a24c: 2201 movs r2, #1 +1001a24e: 3cc1 subs r4, #193 ; 0xc1 +1001a250: fa02 f404 lsl.w r4, r2, r4 +1001a254: 4b07 ldr r3, [pc, #28] ; (1001a274 ) +1001a256: 699a ldr r2, [r3, #24] +1001a258: 4322 orrs r2, r4 +1001a25a: 619a str r2, [r3, #24] +1001a25c: e7ce b.n 1001a1fc +1001a25e: 2201 movs r2, #1 +1001a260: 3ca1 subs r4, #161 ; 0xa1 +1001a262: fa02 f404 lsl.w r4, r2, r4 +1001a266: 4b03 ldr r3, [pc, #12] ; (1001a274 ) +1001a268: 695a ldr r2, [r3, #20] +1001a26a: 4322 orrs r2, r4 +1001a26c: 615a str r2, [r3, #20] +1001a26e: e7c5 b.n 1001a1fc +1001a270: 10051518 .word 0x10051518 +1001a274: 10051570 .word 0x10051570 + +1001a278 : +1001a278: b570 push {r4, r5, r6, lr} +1001a27a: b082 sub sp, #8 +1001a27c: 4604 mov r4, r0 +1001a27e: 2306 movs r3, #6 +1001a280: 2500 movs r5, #0 +1001a282: ae02 add r6, sp, #8 +1001a284: 2002 movs r0, #2 +1001a286: 2201 movs r2, #1 +1001a288: 70a3 strb r3, [r4, #2] +1001a28a: 7020 strb r0, [r4, #0] +1001a28c: 7062 strb r2, [r4, #1] +1001a28e: 70e5 strb r5, [r4, #3] +1001a290: f846 1d04 str.w r1, [r6, #-4]! +1001a294: 2204 movs r2, #4 +1001a296: 1d21 adds r1, r4, #4 +1001a298: 4820 ldr r0, [pc, #128] ; (1001a31c ) +1001a29a: f027 ff61 bl 10042160 +1001a29e: 8125 strh r5, [r4, #8] +1001a2a0: f44f 4000 mov.w r0, #32768 ; 0x8000 +1001a2a4: f7f9 fdb2 bl 10013e0c +1001a2a8: 4631 mov r1, r6 +1001a2aa: 8160 strh r0, [r4, #10] +1001a2ac: 2204 movs r2, #4 +1001a2ae: f104 0010 add.w r0, r4, #16 +1001a2b2: f027 ff55 bl 10042160 +1001a2b6: 4629 mov r1, r5 +1001a2b8: f104 000c add.w r0, r4, #12 +1001a2bc: 2204 movs r2, #4 +1001a2be: f027 ff55 bl 1004216c +1001a2c2: 4629 mov r1, r5 +1001a2c4: f104 0014 add.w r0, r4, #20 +1001a2c8: 2204 movs r2, #4 +1001a2ca: f027 ff4f bl 1004216c +1001a2ce: 4629 mov r1, r5 +1001a2d0: f104 0018 add.w r0, r4, #24 +1001a2d4: 2204 movs r2, #4 +1001a2d6: f027 ff49 bl 1004216c +1001a2da: f104 001c add.w r0, r4, #28 +1001a2de: 4910 ldr r1, [pc, #64] ; (1001a320 ) +1001a2e0: 2210 movs r2, #16 +1001a2e2: f027 ff3d bl 10042160 +1001a2e6: 4629 mov r1, r5 +1001a2e8: f104 002c add.w r0, r4, #44 ; 0x2c +1001a2ec: 2240 movs r2, #64 ; 0x40 +1001a2ee: f027 ff3d bl 1004216c +1001a2f2: 4629 mov r1, r5 +1001a2f4: f104 006c add.w r0, r4, #108 ; 0x6c +1001a2f8: 2280 movs r2, #128 ; 0x80 +1001a2fa: f027 ff37 bl 1004216c +1001a2fe: 4b09 ldr r3, [pc, #36] ; (1001a324 ) +1001a300: 34ec adds r4, #236 ; 0xec +1001a302: 681a ldr r2, [r3, #0] +1001a304: 4629 mov r1, r5 +1001a306: 4620 mov r0, r4 +1001a308: f027 ff30 bl 1004216c +1001a30c: 4620 mov r0, r4 +1001a30e: 4906 ldr r1, [pc, #24] ; (1001a328 ) +1001a310: 2204 movs r2, #4 +1001a312: f027 ff25 bl 10042160 +1001a316: b002 add sp, #8 +1001a318: bd70 pop {r4, r5, r6, pc} +1001a31a: bf00 nop +1001a31c: 1004d80c .word 0x1004d80c +1001a320: 10051548 .word 0x10051548 +1001a324: 1005153c .word 0x1005153c +1001a328: 10047e1c .word 0x10047e1c + +1001a32c : +1001a32c: b5f8 push {r3, r4, r5, r6, r7, lr} +1001a32e: 2504 movs r5, #4 +1001a330: 2701 movs r7, #1 +1001a332: 4604 mov r4, r0 +1001a334: 4e27 ldr r6, [pc, #156] ; (1001a3d4 ) +1001a336: 7007 strb r7, [r0, #0] +1001a338: 7045 strb r5, [r0, #1] +1001a33a: 462a mov r2, r5 +1001a33c: 4926 ldr r1, [pc, #152] ; (1001a3d8 ) +1001a33e: 3002 adds r0, #2 +1001a340: f027 ff0e bl 10042160 +1001a344: 2303 movs r3, #3 +1001a346: 71a3 strb r3, [r4, #6] +1001a348: 462a mov r2, r5 +1001a34a: 4631 mov r1, r6 +1001a34c: 71e5 strb r5, [r4, #7] +1001a34e: f104 0008 add.w r0, r4, #8 +1001a352: f027 ff05 bl 10042160 +1001a356: 2306 movs r3, #6 +1001a358: 7323 strb r3, [r4, #12] +1001a35a: 4631 mov r1, r6 +1001a35c: 462a mov r2, r5 +1001a35e: 7365 strb r5, [r4, #13] +1001a360: f104 000e add.w r0, r4, #14 +1001a364: f027 fefc bl 10042160 +1001a368: 2333 movs r3, #51 ; 0x33 +1001a36a: 74a3 strb r3, [r4, #18] +1001a36c: 462a mov r2, r5 +1001a36e: 491b ldr r1, [pc, #108] ; (1001a3dc ) +1001a370: 74e5 strb r5, [r4, #19] +1001a372: f104 0014 add.w r0, r4, #20 +1001a376: f027 fef3 bl 10042160 +1001a37a: 2336 movs r3, #54 ; 0x36 +1001a37c: 4631 mov r1, r6 +1001a37e: 7623 strb r3, [r4, #24] +1001a380: 462a mov r2, r5 +1001a382: 7665 strb r5, [r4, #25] +1001a384: f104 001a add.w r0, r4, #26 +1001a388: f027 feea bl 10042160 +1001a38c: 231c movs r3, #28 +1001a38e: 462a mov r2, r5 +1001a390: 77a3 strb r3, [r4, #30] +1001a392: 4913 ldr r1, [pc, #76] ; (1001a3e0 ) +1001a394: 77e5 strb r5, [r4, #31] +1001a396: f104 0020 add.w r0, r4, #32 +1001a39a: f027 fee1 bl 10042160 +1001a39e: 231a movs r3, #26 +1001a3a0: 2202 movs r2, #2 +1001a3a2: f884 3024 strb.w r3, [r4, #36] ; 0x24 +1001a3a6: f884 2025 strb.w r2, [r4, #37] ; 0x25 +1001a3aa: 490e ldr r1, [pc, #56] ; (1001a3e4 ) +1001a3ac: f104 0026 add.w r0, r4, #38 ; 0x26 +1001a3b0: f027 fed6 bl 10042160 +1001a3b4: 231f movs r3, #31 +1001a3b6: f884 3028 strb.w r3, [r4, #40] ; 0x28 +1001a3ba: f884 7029 strb.w r7, [r4, #41] ; 0x29 +1001a3be: 463a mov r2, r7 +1001a3c0: f104 002a add.w r0, r4, #42 ; 0x2a +1001a3c4: 2100 movs r1, #0 +1001a3c6: f027 fecb bl 10042160 +1001a3ca: 23ff movs r3, #255 ; 0xff +1001a3cc: f884 302b strb.w r3, [r4, #43] ; 0x2b +1001a3d0: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001a3d2: bf00 nop +1001a3d4: 10051544 .word 0x10051544 +1001a3d8: 10051540 .word 0x10051540 +1001a3dc: 10047e20 .word 0x10047e20 +1001a3e0: 10051564 .word 0x10051564 +1001a3e4: 10047e58 .word 0x10047e58 + +1001a3e8 : +1001a3e8: 3801 subs r0, #1 +1001a3ea: b5f8 push {r3, r4, r5, r6, r7, lr} +1001a3ec: 2806 cmp r0, #6 +1001a3ee: d819 bhi.n 1001a424 +1001a3f0: e8df f000 tbb [pc, r0] +1001a3f4: 04081811 .word 0x04081811 +1001a3f8: 1818 .short 0x1818 +1001a3fa: 04 .byte 0x04 +1001a3fb: 00 .byte 0x00 +1001a3fc: 4b30 ldr r3, [pc, #192] ; (1001a4c0 ) +1001a3fe: 2005 movs r0, #5 +1001a400: 7018 strb r0, [r3, #0] +1001a402: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001a404: 4c2e ldr r4, [pc, #184] ; (1001a4c0 ) +1001a406: 7823 ldrb r3, [r4, #0] +1001a408: 2b01 cmp r3, #1 +1001a40a: d00e beq.n 1001a42a +1001a40c: 2b05 cmp r3, #5 +1001a40e: d019 beq.n 1001a444 +1001a410: 2004 movs r0, #4 +1001a412: 7020 strb r0, [r4, #0] +1001a414: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001a416: 4b2a ldr r3, [pc, #168] ; (1001a4c0 ) +1001a418: 7818 ldrb r0, [r3, #0] +1001a41a: 2805 cmp r0, #5 +1001a41c: d1f1 bne.n 1001a402 +1001a41e: 2001 movs r0, #1 +1001a420: 7018 strb r0, [r3, #0] +1001a422: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001a424: 4b26 ldr r3, [pc, #152] ; (1001a4c0 ) +1001a426: 7818 ldrb r0, [r3, #0] +1001a428: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001a42a: 4826 ldr r0, [pc, #152] ; (1001a4c4 ) +1001a42c: 78c3 ldrb r3, [r0, #3] +1001a42e: 2b00 cmp r3, #0 +1001a430: d0ee beq.n 1001a410 +1001a432: 4925 ldr r1, [pc, #148] ; (1001a4c8 ) +1001a434: 2204 movs r2, #4 +1001a436: f027 fe8d bl 10042154 +1001a43a: 2800 cmp r0, #0 +1001a43c: d1e8 bne.n 1001a410 +1001a43e: 2003 movs r0, #3 +1001a440: 7020 strb r0, [r4, #0] +1001a442: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001a444: 4d1f ldr r5, [pc, #124] ; (1001a4c4 ) +1001a446: 78eb ldrb r3, [r5, #3] +1001a448: bb5b cbnz r3, 1001a4a2 +1001a44a: 4b1f ldr r3, [pc, #124] ; (1001a4c8 ) +1001a44c: 4a1f ldr r2, [pc, #124] ; (1001a4cc ) +1001a44e: 7818 ldrb r0, [r3, #0] +1001a450: 7811 ldrb r1, [r2, #0] +1001a452: 4281 cmp r1, r0 +1001a454: d1dc bne.n 1001a410 +1001a456: 785e ldrb r6, [r3, #1] +1001a458: 7850 ldrb r0, [r2, #1] +1001a45a: 42b0 cmp r0, r6 +1001a45c: d1d8 bne.n 1001a410 +1001a45e: 7892 ldrb r2, [r2, #2] +1001a460: 789e ldrb r6, [r3, #2] +1001a462: 42b2 cmp r2, r6 +1001a464: d1d4 bne.n 1001a410 +1001a466: 78db ldrb r3, [r3, #3] +1001a468: 2b00 cmp r3, #0 +1001a46a: d0d1 beq.n 1001a410 +1001a46c: 2b80 cmp r3, #128 ; 0x80 +1001a46e: dccf bgt.n 1001a410 +1001a470: 1e5e subs r6, r3, #1 +1001a472: 4f17 ldr r7, [pc, #92] ; (1001a4d0 ) +1001a474: ea4f 1c66 mov.w ip, r6, asr #5 +1001a478: f857 702c ldr.w r7, [r7, ip, lsl #2] +1001a47c: f006 061f and.w r6, r6, #31 +1001a480: fa27 f606 lsr.w r6, r7, r6 +1001a484: 07f6 lsls r6, r6, #31 +1001a486: d4c3 bmi.n 1001a410 +1001a488: 0412 lsls r2, r2, #16 +1001a48a: ea42 6303 orr.w r3, r2, r3, lsl #24 +1001a48e: 430b orrs r3, r1 +1001a490: ea43 2300 orr.w r3, r3, r0, lsl #8 +1001a494: 490f ldr r1, [pc, #60] ; (1001a4d4 ) +1001a496: 2210 movs r2, #16 +1001a498: 480f ldr r0, [pc, #60] ; (1001a4d8 ) +1001a49a: 602b str r3, [r5, #0] +1001a49c: f027 fe60 bl 10042160 +1001a4a0: e7cd b.n 1001a43e +1001a4a2: 4628 mov r0, r5 +1001a4a4: 4908 ldr r1, [pc, #32] ; (1001a4c8 ) +1001a4a6: 2204 movs r2, #4 +1001a4a8: f027 fe54 bl 10042154 +1001a4ac: 2800 cmp r0, #0 +1001a4ae: d1cc bne.n 1001a44a +1001a4b0: 4809 ldr r0, [pc, #36] ; (1001a4d8 ) +1001a4b2: 4908 ldr r1, [pc, #32] ; (1001a4d4 ) +1001a4b4: 2210 movs r2, #16 +1001a4b6: f027 fe4d bl 10042154 +1001a4ba: 2800 cmp r0, #0 +1001a4bc: d1c5 bne.n 1001a44a +1001a4be: e7be b.n 1001a43e +1001a4c0: 1004d810 .word 0x1004d810 +1001a4c4: 1005156c .word 0x1005156c +1001a4c8: 1005152c .word 0x1005152c +1001a4cc: 10051514 .word 0x10051514 +1001a4d0: 10051570 .word 0x10051570 +1001a4d4: 10051548 .word 0x10051548 +1001a4d8: 1005151c .word 0x1005151c + +1001a4dc : +1001a4dc: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001a4e0: b087 sub sp, #28 +1001a4e2: 6853 ldr r3, [r2, #4] +1001a4e4: 4614 mov r4, r2 +1001a4e6: f8bd 2040 ldrh.w r2, [sp, #64] ; 0x40 +1001a4ea: 4db7 ldr r5, [pc, #732] ; (1001a7c8 ) +1001a4ec: 2a44 cmp r2, #68 ; 0x44 +1001a4ee: 460e mov r6, r1 +1001a4f0: 602b str r3, [r5, #0] +1001a4f2: d008 beq.n 1001a506 +1001a4f4: 4608 mov r0, r1 +1001a4f6: f7fe ff99 bl 1001942c +1001a4fa: 4620 mov r0, r4 +1001a4fc: b007 add sp, #28 +1001a4fe: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001a502: f7fb bcb1 b.w 10015e68 +1001a506: 6827 ldr r7, [r4, #0] +1001a508: f8b4 8008 ldrh.w r8, [r4, #8] +1001a50c: b157 cbz r7, 1001a524 +1001a50e: 4620 mov r0, r4 +1001a510: 2100 movs r1, #0 +1001a512: f7fb fe61 bl 100161d8 +1001a516: 8903 ldrh r3, [r0, #8] +1001a518: fa0f f888 sxth.w r8, r8 +1001a51c: 4543 cmp r3, r8 +1001a51e: 4607 mov r7, r0 +1001a520: d1eb bne.n 1001a4fa +1001a522: 6863 ldr r3, [r4, #4] +1001a524: f103 011c add.w r1, r3, #28 +1001a528: 2210 movs r2, #16 +1001a52a: 48a8 ldr r0, [pc, #672] ; (1001a7cc ) +1001a52c: 602b str r3, [r5, #0] +1001a52e: f027 fe17 bl 10042160 +1001a532: 6828 ldr r0, [r5, #0] +1001a534: 6863 ldr r3, [r4, #4] +1001a536: 8962 ldrh r2, [r4, #10] +1001a538: 30ec adds r0, #236 ; 0xec +1001a53a: 1ac3 subs r3, r0, r3 +1001a53c: f8df 92c4 ldr.w r9, [pc, #708] ; 1001a804 +1001a540: 1ad3 subs r3, r2, r3 +1001a542: 49a3 ldr r1, [pc, #652] ; (1001a7d0 ) +1001a544: 2204 movs r2, #4 +1001a546: f8c9 3000 str.w r3, [r9] +1001a54a: f027 fe03 bl 10042154 +1001a54e: 4b9e ldr r3, [pc, #632] ; (1001a7c8 ) +1001a550: 4680 mov r8, r0 +1001a552: b150 cbz r0, 1001a56a +1001a554: 4630 mov r0, r6 +1001a556: f7fe ff69 bl 1001942c +1001a55a: 2f00 cmp r7, #0 +1001a55c: d0cd beq.n 1001a4fa +1001a55e: 4638 mov r0, r7 +1001a560: b007 add sp, #28 +1001a562: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001a566: f7fb bc7f b.w 10015e68 +1001a56a: f8d9 2000 ldr.w r2, [r9] +1001a56e: 681b ldr r3, [r3, #0] +1001a570: f1a2 0b04 sub.w fp, r2, #4 +1001a574: f103 09f0 add.w r9, r3, #240 ; 0xf0 +1001a578: fa0f fb8b sxth.w fp, fp +1001a57c: 44cb add fp, r9 +1001a57e: 45d9 cmp r9, fp +1001a580: d21d bcs.n 1001a5be +1001a582: 4682 mov sl, r0 +1001a584: e009 b.n 1001a59a +1001a586: 2b35 cmp r3, #53 ; 0x35 +1001a588: d101 bne.n 1001a58e +1001a58a: f899 a002 ldrb.w sl, [r9, #2] +1001a58e: f899 3001 ldrb.w r3, [r9, #1] +1001a592: 3302 adds r3, #2 +1001a594: 4499 add r9, r3 +1001a596: 45cb cmp fp, r9 +1001a598: d90f bls.n 1001a5ba +1001a59a: f899 3000 ldrb.w r3, [r9] +1001a59e: 2b32 cmp r3, #50 ; 0x32 +1001a5a0: d1f1 bne.n 1001a586 +1001a5a2: f109 0102 add.w r1, r9, #2 +1001a5a6: 488b ldr r0, [pc, #556] ; (1001a7d4 ) +1001a5a8: 2204 movs r2, #4 +1001a5aa: f027 fdd9 bl 10042160 +1001a5ae: f899 3001 ldrb.w r3, [r9, #1] +1001a5b2: 3302 adds r3, #2 +1001a5b4: 4499 add r9, r3 +1001a5b6: 45cb cmp fp, r9 +1001a5b8: d8ef bhi.n 1001a59a +1001a5ba: fa5f f08a uxtb.w r0, sl +1001a5be: f7ff ff13 bl 1001a3e8 +1001a5c2: 2803 cmp r0, #3 +1001a5c4: f000 80b5 beq.w 1001a732 +1001a5c8: 2804 cmp r0, #4 +1001a5ca: f000 808f beq.w 1001a6ec +1001a5ce: 2801 cmp r0, #1 +1001a5d0: d1c0 bne.n 1001a554 +1001a5d2: f8df b234 ldr.w fp, [pc, #564] ; 1001a808 +1001a5d6: 6863 ldr r3, [r4, #4] +1001a5d8: f89b 2003 ldrb.w r2, [fp, #3] +1001a5dc: 602b str r3, [r5, #0] +1001a5de: f8df 91f4 ldr.w r9, [pc, #500] ; 1001a7d4 +1001a5e2: 2a00 cmp r2, #0 +1001a5e4: f040 80d0 bne.w 1001a788 +1001a5e8: f8df a220 ldr.w sl, [pc, #544] ; 1001a80c +1001a5ec: f899 2000 ldrb.w r2, [r9] +1001a5f0: f89a 3000 ldrb.w r3, [sl] +1001a5f4: 4977 ldr r1, [pc, #476] ; (1001a7d4 ) +1001a5f6: 429a cmp r2, r3 +1001a5f8: f000 80de beq.w 1001a7b8 +1001a5fc: 4976 ldr r1, [pc, #472] ; (1001a7d8 ) +1001a5fe: 9104 str r1, [sp, #16] +1001a600: 4b76 ldr r3, [pc, #472] ; (1001a7dc ) +1001a602: 681b ldr r3, [r3, #0] +1001a604: 2b00 cmp r3, #0 +1001a606: f000 80bb beq.w 1001a780 +1001a60a: 4a75 ldr r2, [pc, #468] ; (1001a7e0 ) +1001a60c: 4b75 ldr r3, [pc, #468] ; (1001a7e4 ) +1001a60e: f892 9003 ldrb.w r9, [r2, #3] +1001a612: f893 c003 ldrb.w ip, [r3, #3] +1001a616: 4a74 ldr r2, [pc, #464] ; (1001a7e8 ) +1001a618: 2100 movs r1, #0 +1001a61a: 6810 ldr r0, [r2, #0] +1001a61c: 460b mov r3, r1 +1001a61e: f04f 32ff mov.w r2, #4294967295 +1001a622: f8cd c00c str.w ip, [sp, #12] +1001a626: f000 fed1 bl 1001b3cc +1001a62a: f8dd c00c ldr.w ip, [sp, #12] +1001a62e: f04f 0e01 mov.w lr, #1 +1001a632: f10e 33ff add.w r3, lr, #4294967295 +1001a636: b2db uxtb r3, r3 +1001a638: 9305 str r3, [sp, #20] +1001a63a: 9b04 ldr r3, [sp, #16] +1001a63c: ea4f 1048 mov.w r0, r8, lsl #5 +1001a640: f853 1028 ldr.w r1, [r3, r8, lsl #2] +1001a644: 3001 adds r0, #1 +1001a646: 2300 movs r3, #0 +1001a648: fa21 f203 lsr.w r2, r1, r3 +1001a64c: f012 0201 ands.w r2, r2, #1 +1001a650: fa5f f883 uxtb.w r8, r3 +1001a654: f103 0301 add.w r3, r3, #1 +1001a658: d104 bne.n 1001a664 +1001a65a: 4581 cmp r9, r0 +1001a65c: dc02 bgt.n 1001a664 +1001a65e: 4584 cmp ip, r0 +1001a660: f280 80d6 bge.w 1001a810 +1001a664: 2b20 cmp r3, #32 +1001a666: f100 0001 add.w r0, r0, #1 +1001a66a: d1ed bne.n 1001a648 +1001a66c: 46f0 mov r8, lr +1001a66e: f10e 0e01 add.w lr, lr, #1 +1001a672: f1be 0f09 cmp.w lr, #9 +1001a676: d1dc bne.n 1001a632 +1001a678: 4a5b ldr r2, [pc, #364] ; (1001a7e8 ) +1001a67a: 2100 movs r1, #0 +1001a67c: 6810 ldr r0, [r2, #0] +1001a67e: 460b mov r3, r1 +1001a680: 460a mov r2, r1 +1001a682: f000 fdc9 bl 1001b218 +1001a686: 4859 ldr r0, [pc, #356] ; (1001a7ec ) +1001a688: f027 fd3e bl 10042108 +1001a68c: 2300 movs r3, #0 +1001a68e: f89a 2001 ldrb.w r2, [sl, #1] +1001a692: f89a 0002 ldrb.w r0, [sl, #2] +1001a696: f89a 1000 ldrb.w r1, [sl] +1001a69a: 0212 lsls r2, r2, #8 +1001a69c: ea42 4200 orr.w r2, r2, r0, lsl #16 +1001a6a0: 430a orrs r2, r1 +1001a6a2: 4313 orrs r3, r2 +1001a6a4: 4949 ldr r1, [pc, #292] ; (1001a7cc ) +1001a6a6: 2210 movs r2, #16 +1001a6a8: 4851 ldr r0, [pc, #324] ; (1001a7f0 ) +1001a6aa: f8cb 3000 str.w r3, [fp] +1001a6ae: f027 fd57 bl 10042160 +1001a6b2: f8db 1000 ldr.w r1, [fp] +1001a6b6: 6828 ldr r0, [r5, #0] +1001a6b8: f7ff fdde bl 1001a278 +1001a6bc: 6828 ldr r0, [r5, #0] +1001a6be: 2135 movs r1, #53 ; 0x35 +1001a6c0: 2201 movs r2, #1 +1001a6c2: 2302 movs r3, #2 +1001a6c4: f880 10f0 strb.w r1, [r0, #240] ; 0xf0 +1001a6c8: f880 20f1 strb.w r2, [r0, #241] ; 0xf1 +1001a6cc: f880 30f2 strb.w r3, [r0, #242] ; 0xf2 +1001a6d0: 30f3 adds r0, #243 ; 0xf3 +1001a6d2: f7ff fe2b bl 1001a32c +1001a6d6: 4b47 ldr r3, [pc, #284] ; (1001a7f4 ) +1001a6d8: 4a47 ldr r2, [pc, #284] ; (1001a7f8 ) +1001a6da: 681b ldr r3, [r3, #0] +1001a6dc: 6810 ldr r0, [r2, #0] +1001a6de: 4621 mov r1, r4 +1001a6e0: 9300 str r3, [sp, #0] +1001a6e2: 4a46 ldr r2, [pc, #280] ; (1001a7fc ) +1001a6e4: 2344 movs r3, #68 ; 0x44 +1001a6e6: f7fe fdd1 bl 1001928c +1001a6ea: e733 b.n 1001a554 +1001a6ec: 6863 ldr r3, [r4, #4] +1001a6ee: 2100 movs r1, #0 +1001a6f0: 4618 mov r0, r3 +1001a6f2: 602b str r3, [r5, #0] +1001a6f4: f7ff fdc0 bl 1001a278 +1001a6f8: 4a3e ldr r2, [pc, #248] ; (1001a7f4 ) +1001a6fa: 493f ldr r1, [pc, #252] ; (1001a7f8 ) +1001a6fc: 682b ldr r3, [r5, #0] +1001a6fe: 6812 ldr r2, [r2, #0] +1001a700: 6808 ldr r0, [r1, #0] +1001a702: f04f 0c35 mov.w ip, #53 ; 0x35 +1001a706: f04f 0e01 mov.w lr, #1 +1001a70a: 21ff movs r1, #255 ; 0xff +1001a70c: 2506 movs r5, #6 +1001a70e: f883 10f3 strb.w r1, [r3, #243] ; 0xf3 +1001a712: f883 c0f0 strb.w ip, [r3, #240] ; 0xf0 +1001a716: f883 e0f1 strb.w lr, [r3, #241] ; 0xf1 +1001a71a: f883 50f2 strb.w r5, [r3, #242] ; 0xf2 +1001a71e: 4621 mov r1, r4 +1001a720: 9200 str r2, [sp, #0] +1001a722: 2344 movs r3, #68 ; 0x44 +1001a724: 4a35 ldr r2, [pc, #212] ; (1001a7fc ) +1001a726: f7fe fdb1 bl 1001928c +1001a72a: 4b35 ldr r3, [pc, #212] ; (1001a800 ) +1001a72c: 2205 movs r2, #5 +1001a72e: 701a strb r2, [r3, #0] +1001a730: e710 b.n 1001a554 +1001a732: 6863 ldr r3, [r4, #4] +1001a734: f8df 80d0 ldr.w r8, [pc, #208] ; 1001a808 +1001a738: 4618 mov r0, r3 +1001a73a: f8d8 1000 ldr.w r1, [r8] +1001a73e: 602b str r3, [r5, #0] +1001a740: f7ff fd9a bl 1001a278 +1001a744: 6828 ldr r0, [r5, #0] +1001a746: 2235 movs r2, #53 ; 0x35 +1001a748: 2301 movs r3, #1 +1001a74a: 2505 movs r5, #5 +1001a74c: f880 20f0 strb.w r2, [r0, #240] ; 0xf0 +1001a750: f880 30f1 strb.w r3, [r0, #241] ; 0xf1 +1001a754: f880 50f2 strb.w r5, [r0, #242] ; 0xf2 +1001a758: 30f3 adds r0, #243 ; 0xf3 +1001a75a: f7ff fde7 bl 1001a32c +1001a75e: 4b25 ldr r3, [pc, #148] ; (1001a7f4 ) +1001a760: 4a25 ldr r2, [pc, #148] ; (1001a7f8 ) +1001a762: 681b ldr r3, [r3, #0] +1001a764: 6810 ldr r0, [r2, #0] +1001a766: 4621 mov r1, r4 +1001a768: 9300 str r3, [sp, #0] +1001a76a: 4a24 ldr r2, [pc, #144] ; (1001a7fc ) +1001a76c: 2344 movs r3, #68 ; 0x44 +1001a76e: f7fe fd8d bl 1001928c +1001a772: f898 0003 ldrb.w r0, [r8, #3] +1001a776: f7ff fd03 bl 1001a180 +1001a77a: 4b21 ldr r3, [pc, #132] ; (1001a800 ) +1001a77c: 701d strb r5, [r3, #0] +1001a77e: e6e9 b.n 1001a554 +1001a780: 4699 mov r9, r3 +1001a782: f04f 0cff mov.w ip, #255 ; 0xff +1001a786: e746 b.n 1001a616 +1001a788: 4658 mov r0, fp +1001a78a: 4649 mov r1, r9 +1001a78c: 2204 movs r2, #4 +1001a78e: f027 fce1 bl 10042154 +1001a792: 2800 cmp r0, #0 +1001a794: f47f af28 bne.w 1001a5e8 +1001a798: 4815 ldr r0, [pc, #84] ; (1001a7f0 ) +1001a79a: 490c ldr r1, [pc, #48] ; (1001a7cc ) +1001a79c: 2210 movs r2, #16 +1001a79e: f027 fcd9 bl 10042154 +1001a7a2: 2800 cmp r0, #0 +1001a7a4: f47f af20 bne.w 1001a5e8 +1001a7a8: f899 3003 ldrb.w r3, [r9, #3] +1001a7ac: f8df a05c ldr.w sl, [pc, #92] ; 1001a80c +1001a7b0: 2b00 cmp r3, #0 +1001a7b2: d058 beq.n 1001a866 +1001a7b4: 061b lsls r3, r3, #24 +1001a7b6: e76a b.n 1001a68e +1001a7b8: 784a ldrb r2, [r1, #1] +1001a7ba: f89a 3001 ldrb.w r3, [sl, #1] +1001a7be: 429a cmp r2, r3 +1001a7c0: d037 beq.n 1001a832 +1001a7c2: 4a05 ldr r2, [pc, #20] ; (1001a7d8 ) +1001a7c4: 9204 str r2, [sp, #16] +1001a7c6: e71b b.n 1001a600 +1001a7c8: 10051538 .word 0x10051538 +1001a7cc: 10051548 .word 0x10051548 +1001a7d0: 10047e1c .word 0x10047e1c +1001a7d4: 1005152c .word 0x1005152c +1001a7d8: 10051570 .word 0x10051570 +1001a7dc: 1005155c .word 0x1005155c +1001a7e0: 10051568 .word 0x10051568 +1001a7e4: 10051590 .word 0x10051590 +1001a7e8: 10051518 .word 0x10051518 +1001a7ec: 10047e24 .word 0x10047e24 +1001a7f0: 1005151c .word 0x1005151c +1001a7f4: 10051558 .word 0x10051558 +1001a7f8: 10051560 .word 0x10051560 +1001a7fc: 10051534 .word 0x10051534 +1001a800: 1004d810 .word 0x1004d810 +1001a804: 1005153c .word 0x1005153c +1001a808: 1005156c .word 0x1005156c +1001a80c: 10051514 .word 0x10051514 +1001a810: 4611 mov r1, r2 +1001a812: 4a16 ldr r2, [pc, #88] ; (1001a86c ) +1001a814: 460b mov r3, r1 +1001a816: 6810 ldr r0, [r2, #0] +1001a818: 460a mov r2, r1 +1001a81a: f000 fcfd bl 1001b218 +1001a81e: 9805 ldr r0, [sp, #20] +1001a820: f108 0301 add.w r3, r8, #1 +1001a824: eb03 1340 add.w r3, r3, r0, lsl #5 +1001a828: f013 03ff ands.w r3, r3, #255 ; 0xff +1001a82c: f43f af2b beq.w 1001a686 +1001a830: e7c0 b.n 1001a7b4 +1001a832: 788a ldrb r2, [r1, #2] +1001a834: f89a 3002 ldrb.w r3, [sl, #2] +1001a838: 429a cmp r2, r3 +1001a83a: d002 beq.n 1001a842 +1001a83c: 4b0c ldr r3, [pc, #48] ; (1001a870 ) +1001a83e: 9304 str r3, [sp, #16] +1001a840: e6de b.n 1001a600 +1001a842: 78cb ldrb r3, [r1, #3] +1001a844: b17b cbz r3, 1001a866 +1001a846: 2b80 cmp r3, #128 ; 0x80 +1001a848: f73f aed8 bgt.w 1001a5fc +1001a84c: 1e5a subs r2, r3, #1 +1001a84e: 4808 ldr r0, [pc, #32] ; (1001a870 ) +1001a850: 1151 asrs r1, r2, #5 +1001a852: f850 1021 ldr.w r1, [r0, r1, lsl #2] +1001a856: f002 021f and.w r2, r2, #31 +1001a85a: fa21 f202 lsr.w r2, r1, r2 +1001a85e: 07d2 lsls r2, r2, #31 +1001a860: 9004 str r0, [sp, #16] +1001a862: d5a7 bpl.n 1001a7b4 +1001a864: e6cc b.n 1001a600 +1001a866: 4802 ldr r0, [pc, #8] ; (1001a870 ) +1001a868: 9004 str r0, [sp, #16] +1001a86a: e6c9 b.n 1001a600 +1001a86c: 10051518 .word 0x10051518 +1001a870: 10051570 .word 0x10051570 + +1001a874 : +1001a874: b538 push {r3, r4, r5, lr} +1001a876: 4614 mov r4, r2 +1001a878: 4b08 ldr r3, [pc, #32] ; (1001a89c ) +1001a87a: b908 cbnz r0, 1001a880 +1001a87c: 6018 str r0, [r3, #0] +1001a87e: bd38 pop {r3, r4, r5, pc} +1001a880: 2501 movs r5, #1 +1001a882: 2204 movs r2, #4 +1001a884: 4806 ldr r0, [pc, #24] ; (1001a8a0 ) +1001a886: 601d str r5, [r3, #0] +1001a888: f027 fc6a bl 10042160 +1001a88c: 4621 mov r1, r4 +1001a88e: 4805 ldr r0, [pc, #20] ; (1001a8a4 ) +1001a890: 2204 movs r2, #4 +1001a892: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001a896: f027 bc63 b.w 10042160 +1001a89a: bf00 nop +1001a89c: 1005155c .word 0x1005155c +1001a8a0: 10051568 .word 0x10051568 +1001a8a4: 10051590 .word 0x10051590 + +1001a8a8 : +1001a8a8: b570 push {r4, r5, r6, lr} +1001a8aa: 4d30 ldr r5, [pc, #192] ; (1001a96c ) +1001a8ac: 4a30 ldr r2, [pc, #192] ; (1001a970 ) +1001a8ae: 682b ldr r3, [r5, #0] +1001a8b0: 4604 mov r4, r0 +1001a8b2: 6010 str r0, [r2, #0] +1001a8b4: b123 cbz r3, 1001a8c0 +1001a8b6: 4618 mov r0, r3 +1001a8b8: f7fe fdc4 bl 10019444 +1001a8bc: 2300 movs r3, #0 +1001a8be: 602b str r3, [r5, #0] +1001a8c0: f7fe fddc bl 1001947c +1001a8c4: 6028 str r0, [r5, #0] +1001a8c6: 2800 cmp r0, #0 +1001a8c8: d04b beq.n 1001a962 +1001a8ca: 4b2a ldr r3, [pc, #168] ; (1001a974 ) +1001a8cc: 1d21 adds r1, r4, #4 +1001a8ce: f04f 36ff mov.w r6, #4294967295 +1001a8d2: 2204 movs r2, #4 +1001a8d4: 4828 ldr r0, [pc, #160] ; (1001a978 ) +1001a8d6: 601e str r6, [r3, #0] +1001a8d8: f027 fc42 bl 10042160 +1001a8dc: f104 0108 add.w r1, r4, #8 +1001a8e0: 2204 movs r2, #4 +1001a8e2: 4826 ldr r0, [pc, #152] ; (1001a97c ) +1001a8e4: f027 fc3c bl 10042160 +1001a8e8: f104 010c add.w r1, r4, #12 +1001a8ec: 2204 movs r2, #4 +1001a8ee: 4824 ldr r0, [pc, #144] ; (1001a980 ) +1001a8f0: f027 fc36 bl 10042160 +1001a8f4: 4e23 ldr r6, [pc, #140] ; (1001a984 ) +1001a8f6: 68a2 ldr r2, [r4, #8] +1001a8f8: 6863 ldr r3, [r4, #4] +1001a8fa: 4923 ldr r1, [pc, #140] ; (1001a988 ) +1001a8fc: 4013 ands r3, r2 +1001a8fe: 4c23 ldr r4, [pc, #140] ; (1001a98c ) +1001a900: 6830 ldr r0, [r6, #0] +1001a902: ea63 0202 orn r2, r3, r2 +1001a906: 6022 str r2, [r4, #0] +1001a908: 600b str r3, [r1, #0] +1001a90a: b118 cbz r0, 1001a914 +1001a90c: f000 fdfa bl 1001b504 +1001a910: 2300 movs r3, #0 +1001a912: 6033 str r3, [r6, #0] +1001a914: 2001 movs r0, #1 +1001a916: f000 fcf7 bl 1001b308 +1001a91a: 2100 movs r1, #0 +1001a91c: 6030 str r0, [r6, #0] +1001a91e: 2220 movs r2, #32 +1001a920: 481b ldr r0, [pc, #108] ; (1001a990 ) +1001a922: f027 fc23 bl 1004216c +1001a926: 2100 movs r1, #0 +1001a928: 2204 movs r2, #4 +1001a92a: 481a ldr r0, [pc, #104] ; (1001a994 ) +1001a92c: f027 fc1e bl 1004216c +1001a930: 2100 movs r1, #0 +1001a932: 2210 movs r2, #16 +1001a934: 4818 ldr r0, [pc, #96] ; (1001a998 ) +1001a936: f027 fc19 bl 1004216c +1001a93a: 4b0f ldr r3, [pc, #60] ; (1001a978 ) +1001a93c: 78d8 ldrb r0, [r3, #3] +1001a93e: f7ff fc1f bl 1001a180 +1001a942: 4b0f ldr r3, [pc, #60] ; (1001a980 ) +1001a944: 78d8 ldrb r0, [r3, #3] +1001a946: f7ff fc1b bl 1001a180 +1001a94a: 6828 ldr r0, [r5, #0] +1001a94c: 4913 ldr r1, [pc, #76] ; (1001a99c ) +1001a94e: 2243 movs r2, #67 ; 0x43 +1001a950: f7fe fc36 bl 100191c0 +1001a954: 6828 ldr r0, [r5, #0] +1001a956: 4912 ldr r1, [pc, #72] ; (1001a9a0 ) +1001a958: 2200 movs r2, #0 +1001a95a: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1001a95e: f7fe bd6d b.w 1001943c +1001a962: 4810 ldr r0, [pc, #64] ; (1001a9a4 ) +1001a964: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1001a968: f027 bbce b.w 10042108 +1001a96c: 10051560 .word 0x10051560 +1001a970: 10051558 .word 0x10051558 +1001a974: 10051534 .word 0x10051534 +1001a978: 10051544 .word 0x10051544 +1001a97c: 10051540 .word 0x10051540 +1001a980: 10051530 .word 0x10051530 +1001a984: 10051518 .word 0x10051518 +1001a988: 10051514 .word 0x10051514 +1001a98c: 10051564 .word 0x10051564 +1001a990: 10051570 .word 0x10051570 +1001a994: 1005156c .word 0x1005156c +1001a998: 1005151c .word 0x1005151c +1001a99c: 10047c8c .word 0x10047c8c +1001a9a0: 1001a4dd .word 0x1001a4dd +1001a9a4: 10047e3c .word 0x10047e3c + +1001a9a8 : +1001a9a8: b510 push {r4, lr} +1001a9aa: 4c07 ldr r4, [pc, #28] ; (1001a9c8 ) +1001a9ac: 6820 ldr r0, [r4, #0] +1001a9ae: b118 cbz r0, 1001a9b8 +1001a9b0: f7fe fd48 bl 10019444 +1001a9b4: 2300 movs r3, #0 +1001a9b6: 6023 str r3, [r4, #0] +1001a9b8: 4c04 ldr r4, [pc, #16] ; (1001a9cc ) +1001a9ba: 6820 ldr r0, [r4, #0] +1001a9bc: b118 cbz r0, 1001a9c6 +1001a9be: f000 fda1 bl 1001b504 +1001a9c2: 2300 movs r3, #0 +1001a9c4: 6023 str r3, [r4, #0] +1001a9c6: bd10 pop {r4, pc} +1001a9c8: 10051560 .word 0x10051560 +1001a9cc: 10051518 .word 0x10051518 + +1001a9d0 : +1001a9d0: b410 push {r4} +1001a9d2: 4a15 ldr r2, [pc, #84] ; (1001aa28 ) +1001a9d4: e000 b.n 1001a9d8 +1001a9d6: 461a mov r2, r3 +1001a9d8: 6813 ldr r3, [r2, #0] +1001a9da: 4283 cmp r3, r0 +1001a9dc: d3fb bcc.n 1001a9d6 +1001a9de: 6851 ldr r1, [r2, #4] +1001a9e0: 1854 adds r4, r2, r1 +1001a9e2: 4284 cmp r4, r0 +1001a9e4: d00a beq.n 1001a9fc +1001a9e6: 6841 ldr r1, [r0, #4] +1001a9e8: 1844 adds r4, r0, r1 +1001a9ea: 42a3 cmp r3, r4 +1001a9ec: d00d beq.n 1001aa0a +1001a9ee: 4290 cmp r0, r2 +1001a9f0: 6003 str r3, [r0, #0] +1001a9f2: f85d 4b04 ldr.w r4, [sp], #4 +1001a9f6: bf18 it ne +1001a9f8: 6010 strne r0, [r2, #0] +1001a9fa: 4770 bx lr +1001a9fc: 6844 ldr r4, [r0, #4] +1001a9fe: 4610 mov r0, r2 +1001aa00: 4421 add r1, r4 +1001aa02: 1844 adds r4, r0, r1 +1001aa04: 42a3 cmp r3, r4 +1001aa06: 6051 str r1, [r2, #4] +1001aa08: d1f1 bne.n 1001a9ee +1001aa0a: 4c08 ldr r4, [pc, #32] ; (1001aa2c ) +1001aa0c: 6824 ldr r4, [r4, #0] +1001aa0e: 42a3 cmp r3, r4 +1001aa10: d0ed beq.n 1001a9ee +1001aa12: cb18 ldmia r3, {r3, r4} +1001aa14: 4290 cmp r0, r2 +1001aa16: 4421 add r1, r4 +1001aa18: 6041 str r1, [r0, #4] +1001aa1a: 6003 str r3, [r0, #0] +1001aa1c: f85d 4b04 ldr.w r4, [sp], #4 +1001aa20: bf18 it ne +1001aa22: 6010 strne r0, [r2, #0] +1001aa24: 4770 bx lr +1001aa26: bf00 nop +1001aa28: 100515a8 .word 0x100515a8 +1001aa2c: 100515a4 .word 0x100515a4 + +1001aa30 <__vPortFree>: +1001aa30: b500 push {lr} +1001aa32: b083 sub sp, #12 +1001aa34: b140 cbz r0, 1001aa48 <__vPortFree+0x18> +1001aa36: 4a11 ldr r2, [pc, #68] ; (1001aa7c <__vPortFree+0x4c>) +1001aa38: f850 3c04 ldr.w r3, [r0, #-4] +1001aa3c: 6812 ldr r2, [r2, #0] +1001aa3e: 421a tst r2, r3 +1001aa40: d002 beq.n 1001aa48 <__vPortFree+0x18> +1001aa42: f850 1c08 ldr.w r1, [r0, #-8] +1001aa46: b111 cbz r1, 1001aa4e <__vPortFree+0x1e> +1001aa48: b003 add sp, #12 +1001aa4a: f85d fb04 ldr.w pc, [sp], #4 +1001aa4e: ea23 0302 bic.w r3, r3, r2 +1001aa52: f840 3c04 str.w r3, [r0, #-4] +1001aa56: 9001 str r0, [sp, #4] +1001aa58: f000 ffb2 bl 1001b9c0 +1001aa5c: 9801 ldr r0, [sp, #4] +1001aa5e: 4b08 ldr r3, [pc, #32] ; (1001aa80 <__vPortFree+0x50>) +1001aa60: f850 1c04 ldr.w r1, [r0, #-4] +1001aa64: 681a ldr r2, [r3, #0] +1001aa66: 3808 subs r0, #8 +1001aa68: 440a add r2, r1 +1001aa6a: 601a str r2, [r3, #0] +1001aa6c: f7ff ffb0 bl 1001a9d0 +1001aa70: b003 add sp, #12 +1001aa72: f85d eb04 ldr.w lr, [sp], #4 +1001aa76: f001 b86b b.w 1001bb50 +1001aa7a: bf00 nop +1001aa7c: 100515b4 .word 0x100515b4 +1001aa80: 10051598 .word 0x10051598 + +1001aa84 : +1001aa84: b430 push {r4, r5} +1001aa86: 4b04 ldr r3, [pc, #16] ; (1001aa98 ) +1001aa88: 4d04 ldr r5, [pc, #16] ; (1001aa9c ) +1001aa8a: 4c05 ldr r4, [pc, #20] ; (1001aaa0 ) +1001aa8c: 6028 str r0, [r5, #0] +1001aa8e: 6021 str r1, [r4, #0] +1001aa90: 601a str r2, [r3, #0] +1001aa92: bc30 pop {r4, r5} +1001aa94: 4770 bx lr +1001aa96: bf00 nop +1001aa98: 100515a0 .word 0x100515a0 +1001aa9c: 1005159c .word 0x1005159c +1001aaa0: 10051594 .word 0x10051594 + +1001aaa4 : +1001aaa4: 4a0a ldr r2, [pc, #40] ; (1001aad0 ) +1001aaa6: b508 push {r3, lr} +1001aaa8: 6812 ldr r2, [r2, #0] +1001aaaa: 4603 mov r3, r0 +1001aaac: 4290 cmp r0, r2 +1001aaae: d308 bcc.n 1001aac2 +1001aab0: 4a08 ldr r2, [pc, #32] ; (1001aad4 ) +1001aab2: 6812 ldr r2, [r2, #0] +1001aab4: 4290 cmp r0, r2 +1001aab6: d204 bcs.n 1001aac2 +1001aab8: 4b07 ldr r3, [pc, #28] ; (1001aad8 ) +1001aaba: 681b ldr r3, [r3, #0] +1001aabc: b133 cbz r3, 1001aacc +1001aabe: 4798 blx r3 +1001aac0: bd08 pop {r3, pc} +1001aac2: 4618 mov r0, r3 +1001aac4: e8bd 4008 ldmia.w sp!, {r3, lr} +1001aac8: f7ff bfb2 b.w 1001aa30 <__vPortFree> +1001aacc: bd08 pop {r3, pc} +1001aace: bf00 nop +1001aad0: 100515a0 .word 0x100515a0 +1001aad4: 10051594 .word 0x10051594 +1001aad8: 1005159c .word 0x1005159c + +1001aadc : +1001aadc: 4b01 ldr r3, [pc, #4] ; (1001aae4 ) +1001aade: 6818 ldr r0, [r3, #0] +1001aae0: 4770 bx lr +1001aae2: bf00 nop +1001aae4: 10051598 .word 0x10051598 + +1001aae8 : +1001aae8: 6841 ldr r1, [r0, #4] +1001aaea: e92d 07f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl} +1001aaee: 2900 cmp r1, #0 +1001aaf0: d03b beq.n 1001ab6a +1001aaf2: f8df a088 ldr.w sl, [pc, #136] ; 1001ab7c +1001aaf6: 2500 movs r5, #0 +1001aaf8: f8da 7000 ldr.w r7, [sl] +1001aafc: f8df 9080 ldr.w r9, [pc, #128] ; 1001ab80 +1001ab00: 46ac mov ip, r5 +1001ab02: 46a8 mov r8, r5 +1001ab04: f100 0408 add.w r4, r0, #8 +1001ab08: 6803 ldr r3, [r0, #0] +1001ab0a: 4620 mov r0, r4 +1001ab0c: 075a lsls r2, r3, #29 +1001ab0e: d005 beq.n 1001ab1c +1001ab10: 1dda adds r2, r3, #7 +1001ab12: f022 0207 bic.w r2, r2, #7 +1001ab16: 1a9b subs r3, r3, r2 +1001ab18: 4419 add r1, r3 +1001ab1a: 4613 mov r3, r2 +1001ab1c: 18ca adds r2, r1, r3 +1001ab1e: 3a08 subs r2, #8 +1001ab20: f022 0207 bic.w r2, r2, #7 +1001ab24: 3408 adds r4, #8 +1001ab26: 1ad6 subs r6, r2, r3 +1001ab28: b90d cbnz r5, 1001ab2e +1001ab2a: e889 0028 stmia.w r9, {r3, r5} +1001ab2e: f8c2 8004 str.w r8, [r2, #4] +1001ab32: f8c2 8000 str.w r8, [r2] +1001ab36: e883 0044 stmia.w r3, {r2, r6} +1001ab3a: b107 cbz r7, 1001ab3e +1001ab3c: 603b str r3, [r7, #0] +1001ab3e: f854 1c04 ldr.w r1, [r4, #-4] +1001ab42: 4617 mov r7, r2 +1001ab44: 44b4 add ip, r6 +1001ab46: 3501 adds r5, #1 +1001ab48: 2900 cmp r1, #0 +1001ab4a: d1dd bne.n 1001ab08 +1001ab4c: f8ca 2000 str.w r2, [sl] +1001ab50: 4807 ldr r0, [pc, #28] ; (1001ab70 ) +1001ab52: 4908 ldr r1, [pc, #32] ; (1001ab74 ) +1001ab54: 4b08 ldr r3, [pc, #32] ; (1001ab78 ) +1001ab56: f04f 4200 mov.w r2, #2147483648 ; 0x80000000 +1001ab5a: f8c0 c000 str.w ip, [r0] +1001ab5e: f8c1 c000 str.w ip, [r1] +1001ab62: 601a str r2, [r3, #0] +1001ab64: e8bd 07f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl} +1001ab68: 4770 bx lr +1001ab6a: 468c mov ip, r1 +1001ab6c: e7f0 b.n 1001ab50 +1001ab6e: bf00 nop +1001ab70: 100515b0 .word 0x100515b0 +1001ab74: 10051598 .word 0x10051598 +1001ab78: 100515b4 .word 0x100515b4 +1001ab7c: 100515a4 .word 0x100515a4 +1001ab80: 100515a8 .word 0x100515a8 + +1001ab84 : +1001ab84: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1001ab88: 4e2d ldr r6, [pc, #180] ; (1001ac40 ) +1001ab8a: 4604 mov r4, r0 +1001ab8c: 6833 ldr r3, [r6, #0] +1001ab8e: 2b00 cmp r3, #0 +1001ab90: d050 beq.n 1001ac34 +1001ab92: f000 ff15 bl 1001b9c0 +1001ab96: 4b2b ldr r3, [pc, #172] ; (1001ac44 ) +1001ab98: 681f ldr r7, [r3, #0] +1001ab9a: 423c tst r4, r7 +1001ab9c: d144 bne.n 1001ac28 +1001ab9e: 2c00 cmp r4, #0 +1001aba0: d035 beq.n 1001ac0e +1001aba2: f104 0108 add.w r1, r4, #8 +1001aba6: 074b lsls r3, r1, #29 +1001aba8: bf1c itt ne +1001abaa: f021 0107 bicne.w r1, r1, #7 +1001abae: 3108 addne r1, #8 +1001abb0: 2900 cmp r1, #0 +1001abb2: d043 beq.n 1001ac3c +1001abb4: f8df 809c ldr.w r8, [pc, #156] ; 1001ac54 +1001abb8: f8d8 9000 ldr.w r9, [r8] +1001abbc: 4549 cmp r1, r9 +1001abbe: d833 bhi.n 1001ac28 +1001abc0: 4d21 ldr r5, [pc, #132] ; (1001ac48 ) +1001abc2: 682c ldr r4, [r5, #0] +1001abc4: e003 b.n 1001abce +1001abc6: 6823 ldr r3, [r4, #0] +1001abc8: b123 cbz r3, 1001abd4 +1001abca: 4625 mov r5, r4 +1001abcc: 461c mov r4, r3 +1001abce: 6862 ldr r2, [r4, #4] +1001abd0: 4291 cmp r1, r2 +1001abd2: d8f8 bhi.n 1001abc6 +1001abd4: 6833 ldr r3, [r6, #0] +1001abd6: 429c cmp r4, r3 +1001abd8: d026 beq.n 1001ac28 +1001abda: 682e ldr r6, [r5, #0] +1001abdc: 6820 ldr r0, [r4, #0] +1001abde: 1a53 subs r3, r2, r1 +1001abe0: 2b10 cmp r3, #16 +1001abe2: f106 0608 add.w r6, r6, #8 +1001abe6: 6028 str r0, [r5, #0] +1001abe8: d817 bhi.n 1001ac1a +1001abea: 4918 ldr r1, [pc, #96] ; (1001ac4c ) +1001abec: ebc2 0309 rsb r3, r2, r9 +1001abf0: 6808 ldr r0, [r1, #0] +1001abf2: f8c8 3000 str.w r3, [r8] +1001abf6: 4283 cmp r3, r0 +1001abf8: bf38 it cc +1001abfa: 600b strcc r3, [r1, #0] +1001abfc: 433a orrs r2, r7 +1001abfe: 2300 movs r3, #0 +1001ac00: 6062 str r2, [r4, #4] +1001ac02: 6023 str r3, [r4, #0] +1001ac04: f000 ffa4 bl 1001bb50 +1001ac08: 4630 mov r0, r6 +1001ac0a: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1001ac0e: 4626 mov r6, r4 +1001ac10: f000 ff9e bl 1001bb50 +1001ac14: 4630 mov r0, r6 +1001ac16: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1001ac1a: 1860 adds r0, r4, r1 +1001ac1c: 6043 str r3, [r0, #4] +1001ac1e: 6061 str r1, [r4, #4] +1001ac20: f7ff fed6 bl 1001a9d0 +1001ac24: 6862 ldr r2, [r4, #4] +1001ac26: e7e0 b.n 1001abea +1001ac28: 2600 movs r6, #0 +1001ac2a: f000 ff91 bl 1001bb50 +1001ac2e: 4630 mov r0, r6 +1001ac30: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1001ac34: 4806 ldr r0, [pc, #24] ; (1001ac50 ) +1001ac36: f7ff ff57 bl 1001aae8 +1001ac3a: e7aa b.n 1001ab92 +1001ac3c: 460e mov r6, r1 +1001ac3e: e7e7 b.n 1001ac10 +1001ac40: 100515a4 .word 0x100515a4 +1001ac44: 100515b4 .word 0x100515b4 +1001ac48: 100515a8 .word 0x100515a8 +1001ac4c: 100515b0 .word 0x100515b0 +1001ac50: 1004d814 .word 0x1004d814 +1001ac54: 10051598 .word 0x10051598 + +1001ac58 : +1001ac58: 4806 ldr r0, [pc, #24] ; (1001ac74 ) +1001ac5a: 6800 ldr r0, [r0, #0] +1001ac5c: 6800 ldr r0, [r0, #0] +1001ac5e: f380 8808 msr MSP, r0 +1001ac62: b662 cpsie i +1001ac64: b661 cpsie f +1001ac66: f3bf 8f4f dsb sy +1001ac6a: f3bf 8f6f isb sy +1001ac6e: df00 svc 0 +1001ac70: bf00 nop +1001ac72: 0000 .short 0x0000 +1001ac74: e000ed08 .word 0xe000ed08 + +1001ac78 : +1001ac78: 4b07 ldr r3, [pc, #28] ; (1001ac98 ) +1001ac7a: b410 push {r4} +1001ac7c: f04f 7480 mov.w r4, #16777216 ; 0x1000000 +1001ac80: f840 4c04 str.w r4, [r0, #-4] +1001ac84: f840 1c08 str.w r1, [r0, #-8] +1001ac88: f840 2c20 str.w r2, [r0, #-32] +1001ac8c: f840 3c0c str.w r3, [r0, #-12] +1001ac90: f85d 4b04 ldr.w r4, [sp], #4 +1001ac94: 3840 subs r0, #64 ; 0x40 +1001ac96: 4770 bx lr +1001ac98: 1001ace9 .word 0x1001ace9 + +1001ac9c : +1001ac9c: 4b07 ldr r3, [pc, #28] ; (1001acbc ) +1001ac9e: 6819 ldr r1, [r3, #0] +1001aca0: 6808 ldr r0, [r1, #0] +1001aca2: e8b0 0ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp} +1001aca6: f380 8809 msr PSP, r0 +1001acaa: f3bf 8f6f isb sy +1001acae: f04f 0000 mov.w r0, #0 +1001acb2: f380 8811 msr BASEPRI, r0 +1001acb6: f04e 0e0d orr.w lr, lr, #13 +1001acba: 4770 bx lr + +1001acbc : +1001acbc: 100516f0 .word 0x100516f0 + +1001acc0 : +1001acc0: 4b04 ldr r3, [pc, #16] ; (1001acd4 ) +1001acc2: f04f 5280 mov.w r2, #268435456 ; 0x10000000 +1001acc6: 601a str r2, [r3, #0] +1001acc8: f3bf 8f4f dsb sy +1001accc: f3bf 8f6f isb sy +1001acd0: 4770 bx lr +1001acd2: bf00 nop +1001acd4: e000ed04 .word 0xe000ed04 + +1001acd8 : +1001acd8: f3ef 8011 mrs r0, BASEPRI +1001acdc: f04f 0150 mov.w r1, #80 ; 0x50 +1001ace0: f381 8811 msr BASEPRI, r1 +1001ace4: 4770 bx lr +1001ace6: 2000 movs r0, #0 + +1001ace8 : +1001ace8: b508 push {r3, lr} +1001acea: f7ff fff5 bl 1001acd8 +1001acee: e7fe b.n 1001acee + +1001acf0 : +1001acf0: b508 push {r3, lr} +1001acf2: f7ff fff1 bl 1001acd8 +1001acf6: 4b04 ldr r3, [pc, #16] ; (1001ad08 ) +1001acf8: 681a ldr r2, [r3, #0] +1001acfa: 3201 adds r2, #1 +1001acfc: 601a str r2, [r3, #0] +1001acfe: f3bf 8f4f dsb sy +1001ad02: f3bf 8f6f isb sy +1001ad06: bd08 pop {r3, pc} +1001ad08: 1004d82c .word 0x1004d82c + +1001ad0c : +1001ad0c: f380 8811 msr BASEPRI, r0 +1001ad10: 4770 bx lr +1001ad12: bf00 nop + +1001ad14 : +1001ad14: 4b03 ldr r3, [pc, #12] ; (1001ad24 ) +1001ad16: 6818 ldr r0, [r3, #0] +1001ad18: 3801 subs r0, #1 +1001ad1a: 6018 str r0, [r3, #0] +1001ad1c: b100 cbz r0, 1001ad20 +1001ad1e: 4770 bx lr +1001ad20: f7ff bff4 b.w 1001ad0c +1001ad24: 1004d82c .word 0x1004d82c + +1001ad28 : +1001ad28: f3ef 8009 mrs r0, PSP +1001ad2c: f3bf 8f6f isb sy +1001ad30: 4b0d ldr r3, [pc, #52] ; (1001ad68 ) +1001ad32: 681a ldr r2, [r3, #0] +1001ad34: e920 0ff0 stmdb r0!, {r4, r5, r6, r7, r8, r9, sl, fp} +1001ad38: 6010 str r0, [r2, #0] +1001ad3a: e92d 4008 stmdb sp!, {r3, lr} +1001ad3e: f04f 0050 mov.w r0, #80 ; 0x50 +1001ad42: f380 8811 msr BASEPRI, r0 +1001ad46: f000 ffed bl 1001bd24 +1001ad4a: f04f 0000 mov.w r0, #0 +1001ad4e: f380 8811 msr BASEPRI, r0 +1001ad52: e8bd 4008 ldmia.w sp!, {r3, lr} +1001ad56: 6819 ldr r1, [r3, #0] +1001ad58: 6808 ldr r0, [r1, #0] +1001ad5a: e8b0 0ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp} +1001ad5e: f380 8809 msr PSP, r0 +1001ad62: f3bf 8f6f isb sy +1001ad66: 4770 bx lr + +1001ad68 : +1001ad68: 100516f0 .word 0x100516f0 + +1001ad6c : +1001ad6c: b508 push {r3, lr} +1001ad6e: f7ff ffb3 bl 1001acd8 +1001ad72: f000 fe57 bl 1001ba24 +1001ad76: b118 cbz r0, 1001ad80 +1001ad78: 4b04 ldr r3, [pc, #16] ; (1001ad8c ) +1001ad7a: f04f 5280 mov.w r2, #268435456 ; 0x10000000 +1001ad7e: 601a str r2, [r3, #0] +1001ad80: 2000 movs r0, #0 +1001ad82: e8bd 4008 ldmia.w sp!, {r3, lr} +1001ad86: f7ff bfc1 b.w 1001ad0c +1001ad8a: bf00 nop +1001ad8c: e000ed04 .word 0xe000ed04 + +1001ad90 : +1001ad90: b570 push {r4, r5, r6, lr} +1001ad92: 4b45 ldr r3, [pc, #276] ; (1001aea8 ) +1001ad94: b084 sub sp, #16 +1001ad96: 681b ldr r3, [r3, #0] +1001ad98: 9001 str r0, [sp, #4] +1001ad9a: 4298 cmp r0, r3 +1001ad9c: bf88 it hi +1001ad9e: 9301 strhi r3, [sp, #4] +1001ada0: 4b42 ldr r3, [pc, #264] ; (1001aeac ) +1001ada2: 4d43 ldr r5, [pc, #268] ; (1001aeb0 ) +1001ada4: 681a ldr r2, [r3, #0] +1001ada6: 4943 ldr r1, [pc, #268] ; (1001aeb4 ) +1001ada8: f022 0201 bic.w r2, r2, #1 +1001adac: 601a str r2, [r3, #0] +1001adae: 9a01 ldr r2, [sp, #4] +1001adb0: 682b ldr r3, [r5, #0] +1001adb2: 6809 ldr r1, [r1, #0] +1001adb4: 1e54 subs r4, r2, #1 +1001adb6: fb03 1404 mla r4, r3, r4, r1 +1001adba: 4e3f ldr r6, [pc, #252] ; (1001aeb8 ) +1001adbc: 6833 ldr r3, [r6, #0] +1001adbe: 429c cmp r4, r3 +1001adc0: bf88 it hi +1001adc2: ebc3 0404 rsbhi r4, r3, r4 +1001adc6: b672 cpsid i +1001adc8: f001 f8c6 bl 1001bf58 +1001adcc: b978 cbnz r0, 1001adee +1001adce: 4a39 ldr r2, [pc, #228] ; (1001aeb4 ) +1001add0: 4b3a ldr r3, [pc, #232] ; (1001aebc ) +1001add2: 6811 ldr r1, [r2, #0] +1001add4: 6019 str r1, [r3, #0] +1001add6: f852 1c08 ldr.w r1, [r2, #-8] +1001adda: f041 0101 orr.w r1, r1, #1 +1001adde: f842 1c08 str.w r1, [r2, #-8] +1001ade2: 682a ldr r2, [r5, #0] +1001ade4: 3a01 subs r2, #1 +1001ade6: 601a str r2, [r3, #0] +1001ade8: b662 cpsie i +1001adea: b004 add sp, #16 +1001adec: bd70 pop {r4, r5, r6, pc} +1001adee: 4833 ldr r0, [pc, #204] ; (1001aebc ) +1001adf0: 4a30 ldr r2, [pc, #192] ; (1001aeb4 ) +1001adf2: 4b2e ldr r3, [pc, #184] ; (1001aeac ) +1001adf4: 2100 movs r1, #0 +1001adf6: 6004 str r4, [r0, #0] +1001adf8: 6011 str r1, [r2, #0] +1001adfa: 681a ldr r2, [r3, #0] +1001adfc: a804 add r0, sp, #16 +1001adfe: f042 0201 orr.w r2, r2, #1 +1001ae02: 601a str r2, [r3, #0] +1001ae04: 9b01 ldr r3, [sp, #4] +1001ae06: f840 3d04 str.w r3, [r0, #-4]! +1001ae0a: f003 fa95 bl 1001e338 +1001ae0e: 9b03 ldr r3, [sp, #12] +1001ae10: b123 cbz r3, 1001ae1c +1001ae12: f3bf 8f4f dsb sy +1001ae16: bf30 wfi +1001ae18: f3bf 8f6f isb sy +1001ae1c: a801 add r0, sp, #4 +1001ae1e: f003 fae7 bl 1001e3f0 +1001ae22: 4a22 ldr r2, [pc, #136] ; (1001aeac ) +1001ae24: 6813 ldr r3, [r2, #0] +1001ae26: f023 0101 bic.w r1, r3, #1 +1001ae2a: 6011 str r1, [r2, #0] +1001ae2c: b662 cpsie i +1001ae2e: f413 3f80 tst.w r3, #65536 ; 0x10000 +1001ae32: 682b ldr r3, [r5, #0] +1001ae34: d00e beq.n 1001ae54 +1001ae36: 6891 ldr r1, [r2, #8] +1001ae38: 6832 ldr r2, [r6, #0] +1001ae3a: 4419 add r1, r3 +1001ae3c: 3901 subs r1, #1 +1001ae3e: 1b0c subs r4, r1, r4 +1001ae40: 4294 cmp r4, r2 +1001ae42: d301 bcc.n 1001ae48 +1001ae44: 42a3 cmp r3, r4 +1001ae46: d200 bcs.n 1001ae4a +1001ae48: 1e5c subs r4, r3, #1 +1001ae4a: 4b1c ldr r3, [pc, #112] ; (1001aebc ) +1001ae4c: 601c str r4, [r3, #0] +1001ae4e: 9c01 ldr r4, [sp, #4] +1001ae50: 3c01 subs r4, #1 +1001ae52: e00c b.n 1001ae6e +1001ae54: 9a01 ldr r2, [sp, #4] +1001ae56: 4917 ldr r1, [pc, #92] ; (1001aeb4 ) +1001ae58: fb02 f203 mul.w r2, r2, r3 +1001ae5c: 6808 ldr r0, [r1, #0] +1001ae5e: 1a12 subs r2, r2, r0 +1001ae60: fbb2 f4f3 udiv r4, r2, r3 +1001ae64: fb04 3303 mla r3, r4, r3, r3 +1001ae68: 1a9a subs r2, r3, r2 +1001ae6a: f841 2c04 str.w r2, [r1, #-4] +1001ae6e: 4b11 ldr r3, [pc, #68] ; (1001aeb4 ) +1001ae70: 2200 movs r2, #0 +1001ae72: 601a str r2, [r3, #0] +1001ae74: f7ff ff30 bl 1001acd8 +1001ae78: 4b11 ldr r3, [pc, #68] ; (1001aec0 ) +1001ae7a: 681a ldr r2, [r3, #0] +1001ae7c: 3201 adds r2, #1 +1001ae7e: 601a str r2, [r3, #0] +1001ae80: f3bf 8f4f dsb sy +1001ae84: f3bf 8f6f isb sy +1001ae88: 4b08 ldr r3, [pc, #32] ; (1001aeac ) +1001ae8a: 4620 mov r0, r4 +1001ae8c: 681a ldr r2, [r3, #0] +1001ae8e: f042 0201 orr.w r2, r2, #1 +1001ae92: 601a str r2, [r3, #0] +1001ae94: f000 fdbe bl 1001ba14 +1001ae98: 682a ldr r2, [r5, #0] +1001ae9a: 4b08 ldr r3, [pc, #32] ; (1001aebc ) +1001ae9c: 3a01 subs r2, #1 +1001ae9e: 601a str r2, [r3, #0] +1001aea0: f7ff ff38 bl 1001ad14 +1001aea4: b004 add sp, #16 +1001aea6: bd70 pop {r4, r5, r6, pc} +1001aea8: 100515c0 .word 0x100515c0 +1001aeac: e000e010 .word 0xe000e010 +1001aeb0: 100515b8 .word 0x100515b8 +1001aeb4: e000e018 .word 0xe000e018 +1001aeb8: 100515bc .word 0x100515bc +1001aebc: e000e014 .word 0xe000e014 +1001aec0: 1004d82c .word 0x1004d82c + +1001aec4 : +1001aec4: 4a11 ldr r2, [pc, #68] ; (1001af0c ) +1001aec6: 4b12 ldr r3, [pc, #72] ; (1001af10 ) +1001aec8: 6812 ldr r2, [r2, #0] +1001aeca: e92d 01f0 stmdb sp!, {r4, r5, r6, r7, r8} +1001aece: fba3 1302 umull r1, r3, r3, r2 +1001aed2: fbb2 f0f2 udiv r0, r2, r2 +1001aed6: 099b lsrs r3, r3, #6 +1001aed8: f8df 8048 ldr.w r8, [pc, #72] ; 1001af24 +1001aedc: 4e0d ldr r6, [pc, #52] ; (1001af14 ) +1001aede: 4c0e ldr r4, [pc, #56] ; (1001af18 ) +1001aee0: f04f 0c2d mov.w ip, #45 ; 0x2d +1001aee4: 4a0d ldr r2, [pc, #52] ; (1001af1c ) +1001aee6: f06f 477f mvn.w r7, #4278190080 ; 0xff000000 +1001aeea: 490d ldr r1, [pc, #52] ; (1001af20 ) +1001aeec: fbbc fcf0 udiv ip, ip, r0 +1001aef0: fbb7 f7f3 udiv r7, r7, r3 +1001aef4: 1e5d subs r5, r3, #1 +1001aef6: 2007 movs r0, #7 +1001aef8: f8c8 3000 str.w r3, [r8] +1001aefc: 6037 str r7, [r6, #0] +1001aefe: f8c2 c000 str.w ip, [r2] +1001af02: 6025 str r5, [r4, #0] +1001af04: 6008 str r0, [r1, #0] +1001af06: e8bd 01f0 ldmia.w sp!, {r4, r5, r6, r7, r8} +1001af0a: 4770 bx lr +1001af0c: 1004d55c .word 0x1004d55c +1001af10: 10624dd3 .word 0x10624dd3 +1001af14: 100515c0 .word 0x100515c0 +1001af18: e000e014 .word 0xe000e014 +1001af1c: 100515bc .word 0x100515bc +1001af20: e000e010 .word 0xe000e010 +1001af24: 100515b8 .word 0x100515b8 + +1001af28 : +1001af28: b508 push {r3, lr} +1001af2a: 4b09 ldr r3, [pc, #36] ; (1001af50 ) +1001af2c: 681a ldr r2, [r3, #0] +1001af2e: f442 0270 orr.w r2, r2, #15728640 ; 0xf00000 +1001af32: 601a str r2, [r3, #0] +1001af34: 681a ldr r2, [r3, #0] +1001af36: f042 4270 orr.w r2, r2, #4026531840 ; 0xf0000000 +1001af3a: 601a str r2, [r3, #0] +1001af3c: f7ff ffc2 bl 1001aec4 +1001af40: 4b04 ldr r3, [pc, #16] ; (1001af54 ) +1001af42: 2200 movs r2, #0 +1001af44: 601a str r2, [r3, #0] +1001af46: f7ff fe87 bl 1001ac58 +1001af4a: f7ff fec5 bl 1001acd8 +1001af4e: e7fe b.n 1001af4e +1001af50: e000ed20 .word 0xe000ed20 +1001af54: 1004d82c .word 0x1004d82c + +1001af58 : +1001af58: 4770 bx lr +1001af5a: bf00 nop + +1001af5c : +1001af5c: b508 push {r3, lr} +1001af5e: 460a mov r2, r1 +1001af60: 4802 ldr r0, [pc, #8] ; (1001af6c ) +1001af62: 4903 ldr r1, [pc, #12] ; (1001af70 ) +1001af64: 4b03 ldr r3, [pc, #12] ; (1001af74 ) +1001af66: 4798 blx r3 +1001af68: e7fe b.n 1001af68 +1001af6a: bf00 nop +1001af6c: 10047e7c .word 0x10047e7c +1001af70: 10047e5c .word 0x10047e5c +1001af74: 0000f39d .word 0x0000f39d + +1001af78 : +1001af78: b508 push {r3, lr} +1001af7a: f44f 737a mov.w r3, #1000 ; 0x3e8 +1001af7e: fb03 f000 mul.w r0, r3, r0 +1001af82: 4a05 ldr r2, [pc, #20] ; (1001af98 ) +1001af84: fba2 3000 umull r3, r0, r2, r0 +1001af88: 0980 lsrs r0, r0, #6 +1001af8a: bf08 it eq +1001af8c: 2001 moveq r0, #1 +1001af8e: f000 fe4b bl 1001bc28 +1001af92: 2000 movs r0, #0 +1001af94: bd08 pop {r3, pc} +1001af96: bf00 nop +1001af98: 10624dd3 .word 0x10624dd3 + +1001af9c : +1001af9c: f100 0308 add.w r3, r0, #8 +1001afa0: f04f 31ff mov.w r1, #4294967295 +1001afa4: 2200 movs r2, #0 +1001afa6: 6081 str r1, [r0, #8] +1001afa8: e880 000c stmia.w r0, {r2, r3} +1001afac: 60c3 str r3, [r0, #12] +1001afae: 6103 str r3, [r0, #16] +1001afb0: 4770 bx lr +1001afb2: bf00 nop + +1001afb4 : +1001afb4: 2300 movs r3, #0 +1001afb6: 6103 str r3, [r0, #16] +1001afb8: 4770 bx lr +1001afba: bf00 nop + +1001afbc : +1001afbc: 6843 ldr r3, [r0, #4] +1001afbe: b430 push {r4, r5} +1001afc0: 689a ldr r2, [r3, #8] +1001afc2: 6805 ldr r5, [r0, #0] +1001afc4: 608a str r2, [r1, #8] +1001afc6: 689c ldr r4, [r3, #8] +1001afc8: 1c6a adds r2, r5, #1 +1001afca: 604b str r3, [r1, #4] +1001afcc: 6061 str r1, [r4, #4] +1001afce: 6099 str r1, [r3, #8] +1001afd0: bc30 pop {r4, r5} +1001afd2: 6108 str r0, [r1, #16] +1001afd4: 6002 str r2, [r0, #0] +1001afd6: 4770 bx lr + +1001afd8 : +1001afd8: b430 push {r4, r5} +1001afda: 680d ldr r5, [r1, #0] +1001afdc: 1c6b adds r3, r5, #1 +1001afde: d011 beq.n 1001b004 +1001afe0: f100 0208 add.w r2, r0, #8 +1001afe4: e000 b.n 1001afe8 +1001afe6: 461a mov r2, r3 +1001afe8: 6853 ldr r3, [r2, #4] +1001afea: 681c ldr r4, [r3, #0] +1001afec: 42a5 cmp r5, r4 +1001afee: d2fa bcs.n 1001afe6 +1001aff0: 6804 ldr r4, [r0, #0] +1001aff2: 604b str r3, [r1, #4] +1001aff4: 3401 adds r4, #1 +1001aff6: 6099 str r1, [r3, #8] +1001aff8: 608a str r2, [r1, #8] +1001affa: 6051 str r1, [r2, #4] +1001affc: 6108 str r0, [r1, #16] +1001affe: 6004 str r4, [r0, #0] +1001b000: bc30 pop {r4, r5} +1001b002: 4770 bx lr +1001b004: 6902 ldr r2, [r0, #16] +1001b006: 6853 ldr r3, [r2, #4] +1001b008: e7f2 b.n 1001aff0 +1001b00a: bf00 nop + +1001b00c : +1001b00c: 6842 ldr r2, [r0, #4] +1001b00e: 6881 ldr r1, [r0, #8] +1001b010: 6903 ldr r3, [r0, #16] +1001b012: b410 push {r4} +1001b014: 6091 str r1, [r2, #8] +1001b016: 6881 ldr r1, [r0, #8] +1001b018: 685c ldr r4, [r3, #4] +1001b01a: 604a str r2, [r1, #4] +1001b01c: 681a ldr r2, [r3, #0] +1001b01e: 4284 cmp r4, r0 +1001b020: bf08 it eq +1001b022: 6059 streq r1, [r3, #4] +1001b024: 3a01 subs r2, #1 +1001b026: 2100 movs r1, #0 +1001b028: 6101 str r1, [r0, #16] +1001b02a: f85d 4b04 ldr.w r4, [sp], #4 +1001b02e: 4610 mov r0, r2 +1001b030: 601a str r2, [r3, #0] +1001b032: 4770 bx lr + +1001b034 : +1001b034: b538 push {r3, r4, r5, lr} +1001b036: 6c03 ldr r3, [r0, #64] ; 0x40 +1001b038: 4604 mov r4, r0 +1001b03a: 4615 mov r5, r2 +1001b03c: b93b cbnz r3, 1001b04e +1001b03e: 6805 ldr r5, [r0, #0] +1001b040: 2d00 cmp r5, #0 +1001b042: d02f beq.n 1001b0a4 +1001b044: 2000 movs r0, #0 +1001b046: 6ba3 ldr r3, [r4, #56] ; 0x38 +1001b048: 3301 adds r3, #1 +1001b04a: 63a3 str r3, [r4, #56] ; 0x38 +1001b04c: bd38 pop {r3, r4, r5, pc} +1001b04e: 461a mov r2, r3 +1001b050: b985 cbnz r5, 1001b074 +1001b052: 6880 ldr r0, [r0, #8] +1001b054: f027 f884 bl 10042160 +1001b058: 68a1 ldr r1, [r4, #8] +1001b05a: 6c23 ldr r3, [r4, #64] ; 0x40 +1001b05c: 6862 ldr r2, [r4, #4] +1001b05e: 440b add r3, r1 +1001b060: 4293 cmp r3, r2 +1001b062: 60a3 str r3, [r4, #8] +1001b064: d3ee bcc.n 1001b044 +1001b066: 6823 ldr r3, [r4, #0] +1001b068: 4628 mov r0, r5 +1001b06a: 60a3 str r3, [r4, #8] +1001b06c: 6ba3 ldr r3, [r4, #56] ; 0x38 +1001b06e: 3301 adds r3, #1 +1001b070: 63a3 str r3, [r4, #56] ; 0x38 +1001b072: bd38 pop {r3, r4, r5, pc} +1001b074: 68c0 ldr r0, [r0, #12] +1001b076: f027 f873 bl 10042160 +1001b07a: 6c22 ldr r2, [r4, #64] ; 0x40 +1001b07c: 68e3 ldr r3, [r4, #12] +1001b07e: 4252 negs r2, r2 +1001b080: 6821 ldr r1, [r4, #0] +1001b082: 4413 add r3, r2 +1001b084: 428b cmp r3, r1 +1001b086: 60e3 str r3, [r4, #12] +1001b088: d202 bcs.n 1001b090 +1001b08a: 6863 ldr r3, [r4, #4] +1001b08c: 441a add r2, r3 +1001b08e: 60e2 str r2, [r4, #12] +1001b090: 2d02 cmp r5, #2 +1001b092: d1d7 bne.n 1001b044 +1001b094: 6ba3 ldr r3, [r4, #56] ; 0x38 +1001b096: 2b00 cmp r3, #0 +1001b098: d0d4 beq.n 1001b044 +1001b09a: 6ba3 ldr r3, [r4, #56] ; 0x38 +1001b09c: 2000 movs r0, #0 +1001b09e: 3b01 subs r3, #1 +1001b0a0: 63a3 str r3, [r4, #56] ; 0x38 +1001b0a2: e7d0 b.n 1001b046 +1001b0a4: 6840 ldr r0, [r0, #4] +1001b0a6: f000 ffc3 bl 1001c030 +1001b0aa: 6065 str r5, [r4, #4] +1001b0ac: e7cb b.n 1001b046 +1001b0ae: bf00 nop + +1001b0b0 : +1001b0b0: 6c02 ldr r2, [r0, #64] ; 0x40 +1001b0b2: b410 push {r4} +1001b0b4: b16a cbz r2, 1001b0d2 +1001b0b6: 68c3 ldr r3, [r0, #12] +1001b0b8: 6844 ldr r4, [r0, #4] +1001b0ba: 4413 add r3, r2 +1001b0bc: 42a3 cmp r3, r4 +1001b0be: 60c3 str r3, [r0, #12] +1001b0c0: bf24 itt cs +1001b0c2: 6803 ldrcs r3, [r0, #0] +1001b0c4: 60c3 strcs r3, [r0, #12] +1001b0c6: f85d 4b04 ldr.w r4, [sp], #4 +1001b0ca: 4608 mov r0, r1 +1001b0cc: 4619 mov r1, r3 +1001b0ce: f027 b847 b.w 10042160 +1001b0d2: f85d 4b04 ldr.w r4, [sp], #4 +1001b0d6: 4770 bx lr + +1001b0d8 : +1001b0d8: b538 push {r3, r4, r5, lr} +1001b0da: 4604 mov r4, r0 +1001b0dc: f7ff fe08 bl 1001acf0 +1001b0e0: 6ca3 ldr r3, [r4, #72] ; 0x48 +1001b0e2: 2b00 cmp r3, #0 +1001b0e4: dd14 ble.n 1001b110 +1001b0e6: 6a63 ldr r3, [r4, #36] ; 0x24 +1001b0e8: b193 cbz r3, 1001b110 +1001b0ea: f104 0524 add.w r5, r4, #36 ; 0x24 +1001b0ee: e007 b.n 1001b100 +1001b0f0: 6ca3 ldr r3, [r4, #72] ; 0x48 +1001b0f2: 3b01 subs r3, #1 +1001b0f4: 64a3 str r3, [r4, #72] ; 0x48 +1001b0f6: 6ca3 ldr r3, [r4, #72] ; 0x48 +1001b0f8: 2b00 cmp r3, #0 +1001b0fa: dd09 ble.n 1001b110 +1001b0fc: 6a63 ldr r3, [r4, #36] ; 0x24 +1001b0fe: b13b cbz r3, 1001b110 +1001b100: 4628 mov r0, r5 +1001b102: f000 feab bl 1001be5c +1001b106: 2800 cmp r0, #0 +1001b108: d0f2 beq.n 1001b0f0 +1001b10a: f000 ff1f bl 1001bf4c +1001b10e: e7ef b.n 1001b0f0 +1001b110: f04f 33ff mov.w r3, #4294967295 +1001b114: 64a3 str r3, [r4, #72] ; 0x48 +1001b116: f7ff fdfd bl 1001ad14 +1001b11a: f7ff fde9 bl 1001acf0 +1001b11e: 6c63 ldr r3, [r4, #68] ; 0x44 +1001b120: 2b00 cmp r3, #0 +1001b122: dd14 ble.n 1001b14e +1001b124: 6923 ldr r3, [r4, #16] +1001b126: b193 cbz r3, 1001b14e +1001b128: f104 0510 add.w r5, r4, #16 +1001b12c: e007 b.n 1001b13e +1001b12e: 6c63 ldr r3, [r4, #68] ; 0x44 +1001b130: 3b01 subs r3, #1 +1001b132: 6463 str r3, [r4, #68] ; 0x44 +1001b134: 6c63 ldr r3, [r4, #68] ; 0x44 +1001b136: 2b00 cmp r3, #0 +1001b138: dd09 ble.n 1001b14e +1001b13a: 6923 ldr r3, [r4, #16] +1001b13c: b13b cbz r3, 1001b14e +1001b13e: 4628 mov r0, r5 +1001b140: f000 fe8c bl 1001be5c +1001b144: 2800 cmp r0, #0 +1001b146: d0f2 beq.n 1001b12e +1001b148: f000 ff00 bl 1001bf4c +1001b14c: e7ef b.n 1001b12e +1001b14e: f04f 33ff mov.w r3, #4294967295 +1001b152: 6463 str r3, [r4, #68] ; 0x44 +1001b154: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001b158: f7ff bddc b.w 1001ad14 + +1001b15c : +1001b15c: b570 push {r4, r5, r6, lr} +1001b15e: 4604 mov r4, r0 +1001b160: 460d mov r5, r1 +1001b162: f7ff fdc5 bl 1001acf0 +1001b166: 6c20 ldr r0, [r4, #64] ; 0x40 +1001b168: 6be2 ldr r2, [r4, #60] ; 0x3c +1001b16a: 6823 ldr r3, [r4, #0] +1001b16c: fb02 f200 mul.w r2, r2, r0 +1001b170: 1a10 subs r0, r2, r0 +1001b172: 1899 adds r1, r3, r2 +1001b174: 2600 movs r6, #0 +1001b176: f04f 32ff mov.w r2, #4294967295 +1001b17a: 4418 add r0, r3 +1001b17c: 63a6 str r6, [r4, #56] ; 0x38 +1001b17e: 6061 str r1, [r4, #4] +1001b180: 6462 str r2, [r4, #68] ; 0x44 +1001b182: 60e0 str r0, [r4, #12] +1001b184: 60a3 str r3, [r4, #8] +1001b186: 64a2 str r2, [r4, #72] ; 0x48 +1001b188: b975 cbnz r5, 1001b1a8 +1001b18a: 6923 ldr r3, [r4, #16] +1001b18c: b91b cbnz r3, 1001b196 +1001b18e: f7ff fdc1 bl 1001ad14 +1001b192: 2001 movs r0, #1 +1001b194: bd70 pop {r4, r5, r6, pc} +1001b196: f104 0010 add.w r0, r4, #16 +1001b19a: f000 fe5f bl 1001be5c +1001b19e: 2801 cmp r0, #1 +1001b1a0: d1f5 bne.n 1001b18e +1001b1a2: f7ff fd8d bl 1001acc0 +1001b1a6: e7f2 b.n 1001b18e +1001b1a8: f104 0010 add.w r0, r4, #16 +1001b1ac: f7ff fef6 bl 1001af9c +1001b1b0: f104 0024 add.w r0, r4, #36 ; 0x24 +1001b1b4: f7ff fef2 bl 1001af9c +1001b1b8: f7ff fdac bl 1001ad14 +1001b1bc: 2001 movs r0, #1 +1001b1be: bd70 pop {r4, r5, r6, pc} + +1001b1c0 : +1001b1c0: b5f8 push {r3, r4, r5, r6, r7, lr} +1001b1c2: 4605 mov r5, r0 +1001b1c4: 460e mov r6, r1 +1001b1c6: b1a0 cbz r0, 1001b1f2 +1001b1c8: 204c movs r0, #76 ; 0x4c +1001b1ca: f7ff fcdb bl 1001ab84 +1001b1ce: 4604 mov r4, r0 +1001b1d0: b178 cbz r0, 1001b1f2 +1001b1d2: fb06 f005 mul.w r0, r6, r5 +1001b1d6: 3001 adds r0, #1 +1001b1d8: f7ff fcd4 bl 1001ab84 +1001b1dc: 4607 mov r7, r0 +1001b1de: 6020 str r0, [r4, #0] +1001b1e0: b150 cbz r0, 1001b1f8 +1001b1e2: 63e5 str r5, [r4, #60] ; 0x3c +1001b1e4: 6426 str r6, [r4, #64] ; 0x40 +1001b1e6: 4620 mov r0, r4 +1001b1e8: 2101 movs r1, #1 +1001b1ea: f7ff ffb7 bl 1001b15c +1001b1ee: 4620 mov r0, r4 +1001b1f0: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001b1f2: 2400 movs r4, #0 +1001b1f4: 4620 mov r0, r4 +1001b1f6: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001b1f8: 4620 mov r0, r4 +1001b1fa: f7ff fc53 bl 1001aaa4 +1001b1fe: 463c mov r4, r7 +1001b200: e7f5 b.n 1001b1ee +1001b202: bf00 nop + +1001b204 : +1001b204: b510 push {r4, lr} +1001b206: 2202 movs r2, #2 +1001b208: 460c mov r4, r1 +1001b20a: 2100 movs r1, #0 +1001b20c: f7ff ffd8 bl 1001b1c0 +1001b210: b100 cbz r0, 1001b214 +1001b212: 6384 str r4, [r0, #56] ; 0x38 +1001b214: bd10 pop {r4, pc} +1001b216: bf00 nop + +1001b218 : +1001b218: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1001b21c: 2500 movs r5, #0 +1001b21e: b085 sub sp, #20 +1001b220: 4604 mov r4, r0 +1001b222: 4689 mov r9, r1 +1001b224: 9201 str r2, [sp, #4] +1001b226: 461f mov r7, r3 +1001b228: 46a8 mov r8, r5 +1001b22a: e025 b.n 1001b278 +1001b22c: f7ff fd72 bl 1001ad14 +1001b230: f000 fbc6 bl 1001b9c0 +1001b234: f7ff fd5c bl 1001acf0 +1001b238: 6c63 ldr r3, [r4, #68] ; 0x44 +1001b23a: 3301 adds r3, #1 +1001b23c: bf08 it eq +1001b23e: f8c4 8044 streq.w r8, [r4, #68] ; 0x44 +1001b242: 6ca3 ldr r3, [r4, #72] ; 0x48 +1001b244: 3301 adds r3, #1 +1001b246: bf08 it eq +1001b248: f8c4 8048 streq.w r8, [r4, #72] ; 0x48 +1001b24c: f7ff fd62 bl 1001ad14 +1001b250: a802 add r0, sp, #8 +1001b252: a901 add r1, sp, #4 +1001b254: f000 fe4a bl 1001beec +1001b258: 2800 cmp r0, #0 +1001b25a: d142 bne.n 1001b2e2 +1001b25c: f7ff fd48 bl 1001acf0 +1001b260: 6ba2 ldr r2, [r4, #56] ; 0x38 +1001b262: 6be3 ldr r3, [r4, #60] ; 0x3c +1001b264: 429a cmp r2, r3 +1001b266: d017 beq.n 1001b298 +1001b268: f7ff fd54 bl 1001ad14 +1001b26c: 4620 mov r0, r4 +1001b26e: f7ff ff33 bl 1001b0d8 +1001b272: f000 fc6d bl 1001bb50 +1001b276: 2501 movs r5, #1 +1001b278: f7ff fd3a bl 1001acf0 +1001b27c: 6ba6 ldr r6, [r4, #56] ; 0x38 +1001b27e: 6be0 ldr r0, [r4, #60] ; 0x3c +1001b280: 4286 cmp r6, r0 +1001b282: d31a bcc.n 1001b2ba +1001b284: 2f02 cmp r7, #2 +1001b286: d018 beq.n 1001b2ba +1001b288: 9e01 ldr r6, [sp, #4] +1001b28a: b326 cbz r6, 1001b2d6 +1001b28c: 2d00 cmp r5, #0 +1001b28e: d1cd bne.n 1001b22c +1001b290: a802 add r0, sp, #8 +1001b292: f000 fe1f bl 1001bed4 +1001b296: e7c9 b.n 1001b22c +1001b298: f7ff fd3c bl 1001ad14 +1001b29c: f104 0010 add.w r0, r4, #16 +1001b2a0: 9901 ldr r1, [sp, #4] +1001b2a2: f000 fd89 bl 1001bdb8 +1001b2a6: 4620 mov r0, r4 +1001b2a8: f7ff ff16 bl 1001b0d8 +1001b2ac: f000 fc50 bl 1001bb50 +1001b2b0: 2800 cmp r0, #0 +1001b2b2: d1e0 bne.n 1001b276 +1001b2b4: f7ff fd04 bl 1001acc0 +1001b2b8: e7dd b.n 1001b276 +1001b2ba: 4649 mov r1, r9 +1001b2bc: 463a mov r2, r7 +1001b2be: 4620 mov r0, r4 +1001b2c0: f7ff feb8 bl 1001b034 +1001b2c4: 6a63 ldr r3, [r4, #36] ; 0x24 +1001b2c6: b9ab cbnz r3, 1001b2f4 +1001b2c8: b9d0 cbnz r0, 1001b300 +1001b2ca: f7ff fd23 bl 1001ad14 +1001b2ce: 2001 movs r0, #1 +1001b2d0: b005 add sp, #20 +1001b2d2: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001b2d6: f7ff fd1d bl 1001ad14 +1001b2da: 4630 mov r0, r6 +1001b2dc: b005 add sp, #20 +1001b2de: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001b2e2: 4620 mov r0, r4 +1001b2e4: f7ff fef8 bl 1001b0d8 +1001b2e8: f000 fc32 bl 1001bb50 +1001b2ec: 2000 movs r0, #0 +1001b2ee: b005 add sp, #20 +1001b2f0: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001b2f4: f104 0024 add.w r0, r4, #36 ; 0x24 +1001b2f8: f000 fdb0 bl 1001be5c +1001b2fc: 2801 cmp r0, #1 +1001b2fe: d1e4 bne.n 1001b2ca +1001b300: f7ff fcde bl 1001acc0 +1001b304: e7e1 b.n 1001b2ca +1001b306: bf00 nop + +1001b308 : +1001b308: b538 push {r3, r4, r5, lr} +1001b30a: 204c movs r0, #76 ; 0x4c +1001b30c: f7ff fc3a bl 1001ab84 +1001b310: 4604 mov r4, r0 +1001b312: b1c8 cbz r0, 1001b348 +1001b314: 2500 movs r5, #0 +1001b316: f04f 33ff mov.w r3, #4294967295 +1001b31a: 2201 movs r2, #1 +1001b31c: 6385 str r5, [r0, #56] ; 0x38 +1001b31e: 63c2 str r2, [r0, #60] ; 0x3c +1001b320: 6443 str r3, [r0, #68] ; 0x44 +1001b322: 6045 str r5, [r0, #4] +1001b324: 6483 str r3, [r0, #72] ; 0x48 +1001b326: 6005 str r5, [r0, #0] +1001b328: 6085 str r5, [r0, #8] +1001b32a: 60c5 str r5, [r0, #12] +1001b32c: 6405 str r5, [r0, #64] ; 0x40 +1001b32e: 3010 adds r0, #16 +1001b330: f7ff fe34 bl 1001af9c +1001b334: f104 0024 add.w r0, r4, #36 ; 0x24 +1001b338: f7ff fe30 bl 1001af9c +1001b33c: 4620 mov r0, r4 +1001b33e: 4629 mov r1, r5 +1001b340: 462a mov r2, r5 +1001b342: 462b mov r3, r5 +1001b344: f7ff ff68 bl 1001b218 +1001b348: 4620 mov r0, r4 +1001b34a: bd38 pop {r3, r4, r5, pc} + +1001b34c : +1001b34c: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001b350: 4604 mov r4, r0 +1001b352: 461d mov r5, r3 +1001b354: 4688 mov r8, r1 +1001b356: 4617 mov r7, r2 +1001b358: f7ff fcbe bl 1001acd8 +1001b35c: 6be3 ldr r3, [r4, #60] ; 0x3c +1001b35e: 4606 mov r6, r0 +1001b360: 6ba0 ldr r0, [r4, #56] ; 0x38 +1001b362: 4298 cmp r0, r3 +1001b364: d308 bcc.n 1001b378 +1001b366: 2d02 cmp r5, #2 +1001b368: d006 beq.n 1001b378 +1001b36a: 2500 movs r5, #0 +1001b36c: 4630 mov r0, r6 +1001b36e: f7ff fccd bl 1001ad0c +1001b372: 4628 mov r0, r5 +1001b374: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001b378: 4641 mov r1, r8 +1001b37a: 462a mov r2, r5 +1001b37c: 4620 mov r0, r4 +1001b37e: f7ff fe59 bl 1001b034 +1001b382: b110 cbz r0, 1001b38a +1001b384: b10f cbz r7, 1001b38a +1001b386: 2301 movs r3, #1 +1001b388: 603b str r3, [r7, #0] +1001b38a: 6ca3 ldr r3, [r4, #72] ; 0x48 +1001b38c: 3301 adds r3, #1 +1001b38e: d009 beq.n 1001b3a4 +1001b390: 6ca3 ldr r3, [r4, #72] ; 0x48 +1001b392: 2501 movs r5, #1 +1001b394: 442b add r3, r5 +1001b396: 4630 mov r0, r6 +1001b398: 64a3 str r3, [r4, #72] ; 0x48 +1001b39a: f7ff fcb7 bl 1001ad0c +1001b39e: 4628 mov r0, r5 +1001b3a0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001b3a4: 6a63 ldr r3, [r4, #36] ; 0x24 +1001b3a6: b933 cbnz r3, 1001b3b6 +1001b3a8: 4630 mov r0, r6 +1001b3aa: 2501 movs r5, #1 +1001b3ac: f7ff fcae bl 1001ad0c +1001b3b0: 4628 mov r0, r5 +1001b3b2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001b3b6: f104 0024 add.w r0, r4, #36 ; 0x24 +1001b3ba: f000 fd4f bl 1001be5c +1001b3be: 2800 cmp r0, #0 +1001b3c0: d0f2 beq.n 1001b3a8 +1001b3c2: 2f00 cmp r7, #0 +1001b3c4: d0f0 beq.n 1001b3a8 +1001b3c6: 2501 movs r5, #1 +1001b3c8: 603d str r5, [r7, #0] +1001b3ca: e7cf b.n 1001b36c + +1001b3cc : +1001b3cc: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1001b3d0: 2500 movs r5, #0 +1001b3d2: b085 sub sp, #20 +1001b3d4: 4604 mov r4, r0 +1001b3d6: 4689 mov r9, r1 +1001b3d8: 9201 str r2, [sp, #4] +1001b3da: 4698 mov r8, r3 +1001b3dc: 462f mov r7, r5 +1001b3de: e011 b.n 1001b404 +1001b3e0: f7ff fc98 bl 1001ad14 +1001b3e4: 6823 ldr r3, [r4, #0] +1001b3e6: 2b00 cmp r3, #0 +1001b3e8: d03f beq.n 1001b46a +1001b3ea: f104 0024 add.w r0, r4, #36 ; 0x24 +1001b3ee: 9901 ldr r1, [sp, #4] +1001b3f0: f000 fce2 bl 1001bdb8 +1001b3f4: 4620 mov r0, r4 +1001b3f6: f7ff fe6f bl 1001b0d8 +1001b3fa: f000 fba9 bl 1001bb50 +1001b3fe: 2800 cmp r0, #0 +1001b400: d030 beq.n 1001b464 +1001b402: 2501 movs r5, #1 +1001b404: f7ff fc74 bl 1001acf0 +1001b408: 6ba2 ldr r2, [r4, #56] ; 0x38 +1001b40a: 2a00 cmp r2, #0 +1001b40c: d135 bne.n 1001b47a +1001b40e: 9e01 ldr r6, [sp, #4] +1001b410: 2e00 cmp r6, #0 +1001b412: d04a beq.n 1001b4aa +1001b414: b315 cbz r5, 1001b45c +1001b416: f7ff fc7d bl 1001ad14 +1001b41a: f000 fad1 bl 1001b9c0 +1001b41e: f7ff fc67 bl 1001acf0 +1001b422: 6c63 ldr r3, [r4, #68] ; 0x44 +1001b424: 3301 adds r3, #1 +1001b426: bf08 it eq +1001b428: 6467 streq r7, [r4, #68] ; 0x44 +1001b42a: 6ca2 ldr r2, [r4, #72] ; 0x48 +1001b42c: 3201 adds r2, #1 +1001b42e: bf08 it eq +1001b430: 64a7 streq r7, [r4, #72] ; 0x48 +1001b432: f7ff fc6f bl 1001ad14 +1001b436: a802 add r0, sp, #8 +1001b438: a901 add r1, sp, #4 +1001b43a: f000 fd57 bl 1001beec +1001b43e: 2800 cmp r0, #0 +1001b440: d139 bne.n 1001b4b6 +1001b442: f7ff fc55 bl 1001acf0 +1001b446: 6ba3 ldr r3, [r4, #56] ; 0x38 +1001b448: 2b00 cmp r3, #0 +1001b44a: d0c9 beq.n 1001b3e0 +1001b44c: f7ff fc62 bl 1001ad14 +1001b450: 4620 mov r0, r4 +1001b452: f7ff fe41 bl 1001b0d8 +1001b456: f000 fb7b bl 1001bb50 +1001b45a: e7d2 b.n 1001b402 +1001b45c: a802 add r0, sp, #8 +1001b45e: f000 fd39 bl 1001bed4 +1001b462: e7d8 b.n 1001b416 +1001b464: f7ff fc2c bl 1001acc0 +1001b468: e7cb b.n 1001b402 +1001b46a: f7ff fc41 bl 1001acf0 +1001b46e: 6860 ldr r0, [r4, #4] +1001b470: f000 fd92 bl 1001bf98 +1001b474: f7ff fc4e bl 1001ad14 +1001b478: e7b7 b.n 1001b3ea +1001b47a: 4649 mov r1, r9 +1001b47c: 4620 mov r0, r4 +1001b47e: 68e5 ldr r5, [r4, #12] +1001b480: f7ff fe16 bl 1001b0b0 +1001b484: f1b8 0f00 cmp.w r8, #0 +1001b488: d11e bne.n 1001b4c8 +1001b48a: 6ba2 ldr r2, [r4, #56] ; 0x38 +1001b48c: 6823 ldr r3, [r4, #0] +1001b48e: 3a01 subs r2, #1 +1001b490: 63a2 str r2, [r4, #56] ; 0x38 +1001b492: b34b cbz r3, 1001b4e8 +1001b494: 6923 ldr r3, [r4, #16] +1001b496: b1d3 cbz r3, 1001b4ce +1001b498: f104 0010 add.w r0, r4, #16 +1001b49c: f000 fcde bl 1001be5c +1001b4a0: 2801 cmp r0, #1 +1001b4a2: d114 bne.n 1001b4ce +1001b4a4: f7ff fc0c bl 1001acc0 +1001b4a8: e011 b.n 1001b4ce +1001b4aa: f7ff fc33 bl 1001ad14 +1001b4ae: 4630 mov r0, r6 +1001b4b0: b005 add sp, #20 +1001b4b2: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001b4b6: 4620 mov r0, r4 +1001b4b8: f7ff fe0e bl 1001b0d8 +1001b4bc: f000 fb48 bl 1001bb50 +1001b4c0: 2000 movs r0, #0 +1001b4c2: b005 add sp, #20 +1001b4c4: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001b4c8: 6a63 ldr r3, [r4, #36] ; 0x24 +1001b4ca: 60e5 str r5, [r4, #12] +1001b4cc: b92b cbnz r3, 1001b4da +1001b4ce: f7ff fc21 bl 1001ad14 +1001b4d2: 2001 movs r0, #1 +1001b4d4: b005 add sp, #20 +1001b4d6: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001b4da: f104 0024 add.w r0, r4, #36 ; 0x24 +1001b4de: f000 fcbd bl 1001be5c +1001b4e2: 2800 cmp r0, #0 +1001b4e4: d0f3 beq.n 1001b4ce +1001b4e6: e7dd b.n 1001b4a4 +1001b4e8: f000 fde6 bl 1001c0b8 +1001b4ec: 6060 str r0, [r4, #4] +1001b4ee: e7d1 b.n 1001b494 + +1001b4f0 : +1001b4f0: b510 push {r4, lr} +1001b4f2: 4604 mov r4, r0 +1001b4f4: f7ff fbfc bl 1001acf0 +1001b4f8: 6ba4 ldr r4, [r4, #56] ; 0x38 +1001b4fa: f7ff fc0b bl 1001ad14 +1001b4fe: 4620 mov r0, r4 +1001b500: bd10 pop {r4, pc} +1001b502: bf00 nop + +1001b504 : +1001b504: b510 push {r4, lr} +1001b506: 4604 mov r4, r0 +1001b508: 6800 ldr r0, [r0, #0] +1001b50a: b108 cbz r0, 1001b510 +1001b50c: f7ff faca bl 1001aaa4 +1001b510: 4620 mov r0, r4 +1001b512: e8bd 4010 ldmia.w sp!, {r4, lr} +1001b516: f7ff bac5 b.w 1001aaa4 +1001b51a: bf00 nop + +1001b51c : +1001b51c: b538 push {r3, r4, r5, lr} +1001b51e: 4604 mov r4, r0 +1001b520: 460d mov r5, r1 +1001b522: f7ff fbe5 bl 1001acf0 +1001b526: 6c63 ldr r3, [r4, #68] ; 0x44 +1001b528: 3301 adds r3, #1 +1001b52a: bf04 itt eq +1001b52c: 2300 moveq r3, #0 +1001b52e: 6463 streq r3, [r4, #68] ; 0x44 +1001b530: 6ca3 ldr r3, [r4, #72] ; 0x48 +1001b532: 3301 adds r3, #1 +1001b534: bf04 itt eq +1001b536: 2300 moveq r3, #0 +1001b538: 64a3 streq r3, [r4, #72] ; 0x48 +1001b53a: f7ff fbeb bl 1001ad14 +1001b53e: 6ba3 ldr r3, [r4, #56] ; 0x38 +1001b540: b923 cbnz r3, 1001b54c +1001b542: 4629 mov r1, r5 +1001b544: f104 0024 add.w r0, r4, #36 ; 0x24 +1001b548: f000 fc64 bl 1001be14 +1001b54c: 4620 mov r0, r4 +1001b54e: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001b552: f7ff bdc1 b.w 1001b0d8 +1001b556: bf00 nop + +1001b558 : +1001b558: 4b08 ldr r3, [pc, #32] ; (1001b57c ) +1001b55a: 681b ldr r3, [r3, #0] +1001b55c: 6ad8 ldr r0, [r3, #44] ; 0x2c +1001b55e: b950 cbnz r0, 1001b576 +1001b560: 4b07 ldr r3, [pc, #28] ; (1001b580 ) +1001b562: 681b ldr r3, [r3, #0] +1001b564: 2b01 cmp r3, #1 +1001b566: d900 bls.n 1001b56a +1001b568: 4770 bx lr +1001b56a: 4a06 ldr r2, [pc, #24] ; (1001b584 ) +1001b56c: 4b06 ldr r3, [pc, #24] ; (1001b588 ) +1001b56e: 6810 ldr r0, [r2, #0] +1001b570: 681b ldr r3, [r3, #0] +1001b572: 1ac0 subs r0, r0, r3 +1001b574: 4770 bx lr +1001b576: 2000 movs r0, #0 +1001b578: 4770 bx lr +1001b57a: bf00 nop +1001b57c: 100516f0 .word 0x100516f0 +1001b580: 10051610 .word 0x10051610 +1001b584: 1004d830 .word 0x1004d830 +1001b588: 1005170c .word 0x1005170c + +1001b58c : +1001b58c: 4b07 ldr r3, [pc, #28] ; (1001b5ac ) +1001b58e: 681a ldr r2, [r3, #0] +1001b590: 6812 ldr r2, [r2, #0] +1001b592: b922 cbnz r2, 1001b59e +1001b594: 4b06 ldr r3, [pc, #24] ; (1001b5b0 ) +1001b596: f04f 32ff mov.w r2, #4294967295 +1001b59a: 601a str r2, [r3, #0] +1001b59c: 4770 bx lr +1001b59e: 681a ldr r2, [r3, #0] +1001b5a0: 4b03 ldr r3, [pc, #12] ; (1001b5b0 ) +1001b5a2: 68d2 ldr r2, [r2, #12] +1001b5a4: 68d2 ldr r2, [r2, #12] +1001b5a6: 6852 ldr r2, [r2, #4] +1001b5a8: 601a str r2, [r3, #0] +1001b5aa: 4770 bx lr +1001b5ac: 100515d8 .word 0x100515d8 +1001b5b0: 1004d830 .word 0x1004d830 + +1001b5b4 : +1001b5b4: 4b0e ldr r3, [pc, #56] ; (1001b5f0 ) +1001b5b6: 4a0f ldr r2, [pc, #60] ; (1001b5f4 ) +1001b5b8: 6819 ldr r1, [r3, #0] +1001b5ba: 6812 ldr r2, [r2, #0] +1001b5bc: b510 push {r4, lr} +1001b5be: 4290 cmp r0, r2 +1001b5c0: 4604 mov r4, r0 +1001b5c2: 6048 str r0, [r1, #4] +1001b5c4: d30b bcc.n 1001b5de +1001b5c6: 4a0c ldr r2, [pc, #48] ; (1001b5f8 ) +1001b5c8: 6810 ldr r0, [r2, #0] +1001b5ca: 6819 ldr r1, [r3, #0] +1001b5cc: 3104 adds r1, #4 +1001b5ce: f7ff fd03 bl 1001afd8 +1001b5d2: 4b0a ldr r3, [pc, #40] ; (1001b5fc ) +1001b5d4: 681a ldr r2, [r3, #0] +1001b5d6: 4294 cmp r4, r2 +1001b5d8: bf38 it cc +1001b5da: 601c strcc r4, [r3, #0] +1001b5dc: bd10 pop {r4, pc} +1001b5de: 4a08 ldr r2, [pc, #32] ; (1001b600 ) +1001b5e0: e8bd 4010 ldmia.w sp!, {r4, lr} +1001b5e4: 6810 ldr r0, [r2, #0] +1001b5e6: 6819 ldr r1, [r3, #0] +1001b5e8: 3104 adds r1, #4 +1001b5ea: f7ff bcf5 b.w 1001afd8 +1001b5ee: bf00 nop +1001b5f0: 100516f0 .word 0x100516f0 +1001b5f4: 1005170c .word 0x1005170c +1001b5f8: 100515d8 .word 0x100515d8 +1001b5fc: 1004d830 .word 0x1004d830 +1001b600: 10051710 .word 0x10051710 + +1001b604 : +1001b604: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001b608: 4681 mov r9, r0 +1001b60a: b083 sub sp, #12 +1001b60c: 2048 movs r0, #72 ; 0x48 +1001b60e: 460e mov r6, r1 +1001b610: 4693 mov fp, r2 +1001b612: 469a mov sl, r3 +1001b614: f8dd 8030 ldr.w r8, [sp, #48] ; 0x30 +1001b618: 9f0d ldr r7, [sp, #52] ; 0x34 +1001b61a: 9c0e ldr r4, [sp, #56] ; 0x38 +1001b61c: f7ff fab2 bl 1001ab84 +1001b620: 4605 mov r5, r0 +1001b622: 2800 cmp r0, #0 +1001b624: f000 8094 beq.w 1001b750 +1001b628: 2c00 cmp r4, #0 +1001b62a: f000 8083 beq.w 1001b734 +1001b62e: 6304 str r4, [r0, #48] ; 0x30 +1001b630: ea4f 028b mov.w r2, fp, lsl #2 +1001b634: 4620 mov r0, r4 +1001b636: 21a5 movs r1, #165 ; 0xa5 +1001b638: f026 fd98 bl 1004216c +1001b63c: f10b 4b80 add.w fp, fp, #1073741824 ; 0x40000000 +1001b640: 6b2b ldr r3, [r5, #48] ; 0x30 +1001b642: f10b 3bff add.w fp, fp, #4294967295 +1001b646: eb03 0b8b add.w fp, r3, fp, lsl #2 +1001b64a: f02b 0b07 bic.w fp, fp, #7 +1001b64e: 2400 movs r4, #0 +1001b650: 5d32 ldrb r2, [r6, r4] +1001b652: 192b adds r3, r5, r4 +1001b654: f883 2034 strb.w r2, [r3, #52] ; 0x34 +1001b658: 5733 ldrsb r3, [r6, r4] +1001b65a: 3401 adds r4, #1 +1001b65c: b10b cbz r3, 1001b662 +1001b65e: 2c0a cmp r4, #10 +1001b660: d1f6 bne.n 1001b650 +1001b662: 2300 movs r3, #0 +1001b664: f1b8 0f0a cmp.w r8, #10 +1001b668: bf34 ite cc +1001b66a: 4644 movcc r4, r8 +1001b66c: 240a movcs r4, #10 +1001b66e: 1d2e adds r6, r5, #4 +1001b670: f885 303d strb.w r3, [r5, #61] ; 0x3d +1001b674: 646b str r3, [r5, #68] ; 0x44 +1001b676: 62ec str r4, [r5, #44] ; 0x2c +1001b678: 642c str r4, [r5, #64] ; 0x40 +1001b67a: 4630 mov r0, r6 +1001b67c: f7ff fc9a bl 1001afb4 +1001b680: f1c4 040b rsb r4, r4, #11 +1001b684: f105 0018 add.w r0, r5, #24 +1001b688: f7ff fc94 bl 1001afb4 +1001b68c: 61ac str r4, [r5, #24] +1001b68e: 612d str r5, [r5, #16] +1001b690: 626d str r5, [r5, #36] ; 0x24 +1001b692: 4658 mov r0, fp +1001b694: 4649 mov r1, r9 +1001b696: 4652 mov r2, sl +1001b698: f7ff faee bl 1001ac78 +1001b69c: 6028 str r0, [r5, #0] +1001b69e: b107 cbz r7, 1001b6a2 +1001b6a0: 603d str r5, [r7, #0] +1001b6a2: f7ff fb25 bl 1001acf0 +1001b6a6: 4b3e ldr r3, [pc, #248] ; (1001b7a0 ) +1001b6a8: 4c3e ldr r4, [pc, #248] ; (1001b7a4 ) +1001b6aa: 681a ldr r2, [r3, #0] +1001b6ac: 3201 adds r2, #1 +1001b6ae: 601a str r2, [r3, #0] +1001b6b0: 6822 ldr r2, [r4, #0] +1001b6b2: 2a00 cmp r2, #0 +1001b6b4: d035 beq.n 1001b722 +1001b6b6: f8df 9110 ldr.w r9, [pc, #272] ; 1001b7c8 +1001b6ba: f8d9 3000 ldr.w r3, [r9] +1001b6be: b323 cbz r3, 1001b70a +1001b6c0: f8df b108 ldr.w fp, [pc, #264] ; 1001b7cc +1001b6c4: 6aeb ldr r3, [r5, #44] ; 0x2c +1001b6c6: f04f 0a01 mov.w sl, #1 +1001b6ca: fa0a fc03 lsl.w ip, sl, r3 +1001b6ce: 4a36 ldr r2, [pc, #216] ; (1001b7a8 ) +1001b6d0: 4f36 ldr r7, [pc, #216] ; (1001b7ac ) +1001b6d2: 4631 mov r1, r6 +1001b6d4: 683d ldr r5, [r7, #0] +1001b6d6: 6816 ldr r6, [r2, #0] +1001b6d8: eb03 0083 add.w r0, r3, r3, lsl #2 +1001b6dc: eb0b 0080 add.w r0, fp, r0, lsl #2 +1001b6e0: ea4c 0305 orr.w r3, ip, r5 +1001b6e4: eb06 050a add.w r5, r6, sl +1001b6e8: 603b str r3, [r7, #0] +1001b6ea: 6015 str r5, [r2, #0] +1001b6ec: f7ff fc66 bl 1001afbc +1001b6f0: f7ff fb10 bl 1001ad14 +1001b6f4: f8d9 3000 ldr.w r3, [r9] +1001b6f8: b11b cbz r3, 1001b702 +1001b6fa: 6823 ldr r3, [r4, #0] +1001b6fc: 6adb ldr r3, [r3, #44] ; 0x2c +1001b6fe: 4598 cmp r8, r3 +1001b700: d80b bhi.n 1001b71a +1001b702: 4650 mov r0, sl +1001b704: b003 add sp, #12 +1001b706: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001b70a: 6823 ldr r3, [r4, #0] +1001b70c: f8df b0bc ldr.w fp, [pc, #188] ; 1001b7cc +1001b710: 6adb ldr r3, [r3, #44] ; 0x2c +1001b712: 4598 cmp r8, r3 +1001b714: bf28 it cs +1001b716: 6025 strcs r5, [r4, #0] +1001b718: e7d4 b.n 1001b6c4 +1001b71a: f7ff fad1 bl 1001acc0 +1001b71e: 4650 mov r0, sl +1001b720: e7f0 b.n 1001b704 +1001b722: 6025 str r5, [r4, #0] +1001b724: 681b ldr r3, [r3, #0] +1001b726: f8df b0a4 ldr.w fp, [pc, #164] ; 1001b7cc +1001b72a: 2b01 cmp r3, #1 +1001b72c: d015 beq.n 1001b75a +1001b72e: f8df 9098 ldr.w r9, [pc, #152] ; 1001b7c8 +1001b732: e7c7 b.n 1001b6c4 +1001b734: ea4f 028b mov.w r2, fp, lsl #2 +1001b738: 4610 mov r0, r2 +1001b73a: 9201 str r2, [sp, #4] +1001b73c: f7ff fa22 bl 1001ab84 +1001b740: 9a01 ldr r2, [sp, #4] +1001b742: 6328 str r0, [r5, #48] ; 0x30 +1001b744: 2800 cmp r0, #0 +1001b746: f47f af76 bne.w 1001b636 +1001b74a: 4628 mov r0, r5 +1001b74c: f7ff f9aa bl 1001aaa4 +1001b750: f04f 30ff mov.w r0, #4294967295 +1001b754: b003 add sp, #12 +1001b756: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001b75a: 465f mov r7, fp +1001b75c: f10b 09dc add.w r9, fp, #220 ; 0xdc +1001b760: 4638 mov r0, r7 +1001b762: 3714 adds r7, #20 +1001b764: f7ff fc1a bl 1001af9c +1001b768: 454f cmp r7, r9 +1001b76a: d1f9 bne.n 1001b760 +1001b76c: f8df 9060 ldr.w r9, [pc, #96] ; 1001b7d0 +1001b770: 4f0f ldr r7, [pc, #60] ; (1001b7b0 ) +1001b772: 4648 mov r0, r9 +1001b774: f7ff fc12 bl 1001af9c +1001b778: 4638 mov r0, r7 +1001b77a: f7ff fc0f bl 1001af9c +1001b77e: 480d ldr r0, [pc, #52] ; (1001b7b4 ) +1001b780: f7ff fc0c bl 1001af9c +1001b784: 480c ldr r0, [pc, #48] ; (1001b7b8 ) +1001b786: f7ff fc09 bl 1001af9c +1001b78a: 480c ldr r0, [pc, #48] ; (1001b7bc ) +1001b78c: f7ff fc06 bl 1001af9c +1001b790: 4a0b ldr r2, [pc, #44] ; (1001b7c0 ) +1001b792: 4b0c ldr r3, [pc, #48] ; (1001b7c4 ) +1001b794: f8c2 9000 str.w r9, [r2] +1001b798: f8df 902c ldr.w r9, [pc, #44] ; 1001b7c8 +1001b79c: 601f str r7, [r3, #0] +1001b79e: e791 b.n 1001b6c4 +1001b7a0: 1005172c .word 0x1005172c +1001b7a4: 100516f0 .word 0x100516f0 +1001b7a8: 10051714 .word 0x10051714 +1001b7ac: 10051730 .word 0x10051730 +1001b7b0: 100515f8 .word 0x100515f8 +1001b7b4: 100516f4 .word 0x100516f4 +1001b7b8: 100515e4 .word 0x100515e4 +1001b7bc: 100515c4 .word 0x100515c4 +1001b7c0: 100515d8 .word 0x100515d8 +1001b7c4: 10051710 .word 0x10051710 +1001b7c8: 100515dc .word 0x100515dc +1001b7cc: 10051610 .word 0x10051610 +1001b7d0: 10051718 .word 0x10051718 + +1001b7d4 : +1001b7d4: b538 push {r3, r4, r5, lr} +1001b7d6: 4604 mov r4, r0 +1001b7d8: f7ff fa8a bl 1001acf0 +1001b7dc: 2c00 cmp r4, #0 +1001b7de: d038 beq.n 1001b852 +1001b7e0: 1d25 adds r5, r4, #4 +1001b7e2: 4628 mov r0, r5 +1001b7e4: f7ff fc12 bl 1001b00c +1001b7e8: b930 cbnz r0, 1001b7f8 +1001b7ea: 6ae3 ldr r3, [r4, #44] ; 0x2c +1001b7ec: 4a1c ldr r2, [pc, #112] ; (1001b860 ) +1001b7ee: eb03 0183 add.w r1, r3, r3, lsl #2 +1001b7f2: f852 2021 ldr.w r2, [r2, r1, lsl #2] +1001b7f6: b312 cbz r2, 1001b83e +1001b7f8: 6aa3 ldr r3, [r4, #40] ; 0x28 +1001b7fa: b11b cbz r3, 1001b804 +1001b7fc: f104 0018 add.w r0, r4, #24 +1001b800: f7ff fc04 bl 1001b00c +1001b804: 4629 mov r1, r5 +1001b806: 4817 ldr r0, [pc, #92] ; (1001b864 ) +1001b808: f7ff fbd8 bl 1001afbc +1001b80c: 4b16 ldr r3, [pc, #88] ; (1001b868 ) +1001b80e: 4a17 ldr r2, [pc, #92] ; (1001b86c ) +1001b810: 6819 ldr r1, [r3, #0] +1001b812: 6810 ldr r0, [r2, #0] +1001b814: 3101 adds r1, #1 +1001b816: 3001 adds r0, #1 +1001b818: 6019 str r1, [r3, #0] +1001b81a: 6010 str r0, [r2, #0] +1001b81c: f7ff fa7a bl 1001ad14 +1001b820: 4b13 ldr r3, [pc, #76] ; (1001b870 ) +1001b822: 681b ldr r3, [r3, #0] +1001b824: b1a3 cbz r3, 1001b850 +1001b826: 4b13 ldr r3, [pc, #76] ; (1001b874 ) +1001b828: 681b ldr r3, [r3, #0] +1001b82a: 429c cmp r4, r3 +1001b82c: d014 beq.n 1001b858 +1001b82e: f7ff fa5f bl 1001acf0 +1001b832: f7ff feab bl 1001b58c +1001b836: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001b83a: f7ff ba6b b.w 1001ad14 +1001b83e: 2201 movs r2, #1 +1001b840: fa02 f303 lsl.w r3, r2, r3 +1001b844: 4a0c ldr r2, [pc, #48] ; (1001b878 ) +1001b846: 6811 ldr r1, [r2, #0] +1001b848: ea21 0303 bic.w r3, r1, r3 +1001b84c: 6013 str r3, [r2, #0] +1001b84e: e7d3 b.n 1001b7f8 +1001b850: bd38 pop {r3, r4, r5, pc} +1001b852: 4b08 ldr r3, [pc, #32] ; (1001b874 ) +1001b854: 681c ldr r4, [r3, #0] +1001b856: e7c3 b.n 1001b7e0 +1001b858: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001b85c: f7ff ba30 b.w 1001acc0 +1001b860: 10051610 .word 0x10051610 +1001b864: 100515e4 .word 0x100515e4 +1001b868: 10051714 .word 0x10051714 +1001b86c: 100515e0 .word 0x100515e0 +1001b870: 100515dc .word 0x100515dc +1001b874: 100516f0 .word 0x100516f0 +1001b878: 10051730 .word 0x10051730 + +1001b87c : +1001b87c: b510 push {r4, lr} +1001b87e: 4604 mov r4, r0 +1001b880: f7ff fa36 bl 1001acf0 +1001b884: b124 cbz r4, 1001b890 +1001b886: 6ae4 ldr r4, [r4, #44] ; 0x2c +1001b888: f7ff fa44 bl 1001ad14 +1001b88c: 4620 mov r0, r4 +1001b88e: bd10 pop {r4, pc} +1001b890: 4b03 ldr r3, [pc, #12] ; (1001b8a0 ) +1001b892: 681c ldr r4, [r3, #0] +1001b894: 6ae4 ldr r4, [r4, #44] ; 0x2c +1001b896: f7ff fa3d bl 1001ad14 +1001b89a: 4620 mov r0, r4 +1001b89c: bd10 pop {r4, pc} +1001b89e: bf00 nop +1001b8a0: 100516f0 .word 0x100516f0 + +1001b8a4 : +1001b8a4: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001b8a8: 4604 mov r4, r0 +1001b8aa: 290a cmp r1, #10 +1001b8ac: bf34 ite cc +1001b8ae: 460d movcc r5, r1 +1001b8b0: 250a movcs r5, #10 +1001b8b2: f7ff fa1d bl 1001acf0 +1001b8b6: 2c00 cmp r4, #0 +1001b8b8: d041 beq.n 1001b93e +1001b8ba: 6c23 ldr r3, [r4, #64] ; 0x40 +1001b8bc: 42ab cmp r3, r5 +1001b8be: d03a beq.n 1001b936 +1001b8c0: 4a26 ldr r2, [pc, #152] ; (1001b95c ) +1001b8c2: d209 bcs.n 1001b8d8 +1001b8c4: 6811 ldr r1, [r2, #0] +1001b8c6: 428c cmp r4, r1 +1001b8c8: d045 beq.n 1001b956 +1001b8ca: 6812 ldr r2, [r2, #0] +1001b8cc: 6ad7 ldr r7, [r2, #44] ; 0x2c +1001b8ce: 42af cmp r7, r5 +1001b8d0: bf8c ite hi +1001b8d2: 2700 movhi r7, #0 +1001b8d4: 2701 movls r7, #1 +1001b8d6: e003 b.n 1001b8e0 +1001b8d8: 6817 ldr r7, [r2, #0] +1001b8da: 1be2 subs r2, r4, r7 +1001b8dc: 4257 negs r7, r2 +1001b8de: 4157 adcs r7, r2 +1001b8e0: 6ae6 ldr r6, [r4, #44] ; 0x2c +1001b8e2: 6425 str r5, [r4, #64] ; 0x40 +1001b8e4: 42b3 cmp r3, r6 +1001b8e6: 69a3 ldr r3, [r4, #24] +1001b8e8: bf08 it eq +1001b8ea: 62e5 streq r5, [r4, #44] ; 0x2c +1001b8ec: 2b00 cmp r3, #0 +1001b8ee: bfa4 itt ge +1001b8f0: f1c5 050b rsbge r5, r5, #11 +1001b8f4: 61a5 strge r5, [r4, #24] +1001b8f6: 4d1a ldr r5, [pc, #104] ; (1001b960 ) +1001b8f8: eb06 0286 add.w r2, r6, r6, lsl #2 +1001b8fc: 6963 ldr r3, [r4, #20] +1001b8fe: eb05 0282 add.w r2, r5, r2, lsl #2 +1001b902: 4293 cmp r3, r2 +1001b904: d114 bne.n 1001b930 +1001b906: f104 0804 add.w r8, r4, #4 +1001b90a: 4640 mov r0, r8 +1001b90c: f7ff fb7e bl 1001b00c +1001b910: b1c0 cbz r0, 1001b944 +1001b912: 4a14 ldr r2, [pc, #80] ; (1001b964 ) +1001b914: 6ae3 ldr r3, [r4, #44] ; 0x2c +1001b916: 2601 movs r6, #1 +1001b918: 409e lsls r6, r3 +1001b91a: 6814 ldr r4, [r2, #0] +1001b91c: eb03 0083 add.w r0, r3, r3, lsl #2 +1001b920: 4641 mov r1, r8 +1001b922: ea46 0304 orr.w r3, r6, r4 +1001b926: eb05 0080 add.w r0, r5, r0, lsl #2 +1001b92a: 6013 str r3, [r2, #0] +1001b92c: f7ff fb46 bl 1001afbc +1001b930: b10f cbz r7, 1001b936 +1001b932: f7ff f9c5 bl 1001acc0 +1001b936: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1001b93a: f7ff b9eb b.w 1001ad14 +1001b93e: 4b07 ldr r3, [pc, #28] ; (1001b95c ) +1001b940: 681c ldr r4, [r3, #0] +1001b942: e7ba b.n 1001b8ba +1001b944: 2301 movs r3, #1 +1001b946: fa03 f606 lsl.w r6, r3, r6 +1001b94a: 4a06 ldr r2, [pc, #24] ; (1001b964 ) +1001b94c: 6813 ldr r3, [r2, #0] +1001b94e: ea23 0606 bic.w r6, r3, r6 +1001b952: 6016 str r6, [r2, #0] +1001b954: e7de b.n 1001b914 +1001b956: 2700 movs r7, #0 +1001b958: e7c2 b.n 1001b8e0 +1001b95a: bf00 nop +1001b95c: 100516f0 .word 0x100516f0 +1001b960: 10051610 .word 0x10051610 +1001b964: 10051730 .word 0x10051730 + +1001b968 : +1001b968: b530 push {r4, r5, lr} +1001b96a: 4b10 ldr r3, [pc, #64] ; (1001b9ac ) +1001b96c: b085 sub sp, #20 +1001b96e: 2400 movs r4, #0 +1001b970: 9302 str r3, [sp, #8] +1001b972: 9400 str r4, [sp, #0] +1001b974: 9401 str r4, [sp, #4] +1001b976: 9403 str r4, [sp, #12] +1001b978: 4623 mov r3, r4 +1001b97a: 480d ldr r0, [pc, #52] ; (1001b9b0 ) +1001b97c: 490d ldr r1, [pc, #52] ; (1001b9b4 ) +1001b97e: 2246 movs r2, #70 ; 0x46 +1001b980: f7ff fe40 bl 1001b604 +1001b984: 2801 cmp r0, #1 +1001b986: d001 beq.n 1001b98c +1001b988: b005 add sp, #20 +1001b98a: bd30 pop {r4, r5, pc} +1001b98c: f000 fbf4 bl 1001c178 +1001b990: 2801 cmp r0, #1 +1001b992: 4605 mov r5, r0 +1001b994: d1f8 bne.n 1001b988 +1001b996: f7ff f99f bl 1001acd8 +1001b99a: 4a07 ldr r2, [pc, #28] ; (1001b9b8 ) +1001b99c: 4b07 ldr r3, [pc, #28] ; (1001b9bc ) +1001b99e: 6015 str r5, [r2, #0] +1001b9a0: 601c str r4, [r3, #0] +1001b9a2: b005 add sp, #20 +1001b9a4: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1001b9a8: f7ff babe b.w 1001af28 +1001b9ac: 100679c4 .word 0x100679c4 +1001b9b0: 1001bc85 .word 0x1001bc85 +1001b9b4: 10047eb8 .word 0x10047eb8 +1001b9b8: 100515dc .word 0x100515dc +1001b9bc: 1005170c .word 0x1005170c + +1001b9c0 : +1001b9c0: 4b02 ldr r3, [pc, #8] ; (1001b9cc ) +1001b9c2: 681a ldr r2, [r3, #0] +1001b9c4: 3201 adds r2, #1 +1001b9c6: 601a str r2, [r3, #0] +1001b9c8: 4770 bx lr +1001b9ca: bf00 nop +1001b9cc: 100516ec .word 0x100516ec + +1001b9d0 : +1001b9d0: b510 push {r4, lr} +1001b9d2: f7ff f98d bl 1001acf0 +1001b9d6: 4b03 ldr r3, [pc, #12] ; (1001b9e4 ) +1001b9d8: 681c ldr r4, [r3, #0] +1001b9da: f7ff f99b bl 1001ad14 +1001b9de: 4620 mov r0, r4 +1001b9e0: bd10 pop {r4, pc} +1001b9e2: bf00 nop +1001b9e4: 1005170c .word 0x1005170c + +1001b9e8 : +1001b9e8: b510 push {r4, lr} +1001b9ea: f7ff f975 bl 1001acd8 +1001b9ee: 4b03 ldr r3, [pc, #12] ; (1001b9fc ) +1001b9f0: 681c ldr r4, [r3, #0] +1001b9f2: f7ff f98b bl 1001ad0c +1001b9f6: 4620 mov r0, r4 +1001b9f8: bd10 pop {r4, pc} +1001b9fa: bf00 nop +1001b9fc: 1005170c .word 0x1005170c + +1001ba00 : +1001ba00: b108 cbz r0, 1001ba06 +1001ba02: 3034 adds r0, #52 ; 0x34 +1001ba04: 4770 bx lr +1001ba06: 4b02 ldr r3, [pc, #8] ; (1001ba10 ) +1001ba08: 6818 ldr r0, [r3, #0] +1001ba0a: 3034 adds r0, #52 ; 0x34 +1001ba0c: 4770 bx lr +1001ba0e: bf00 nop +1001ba10: 100516f0 .word 0x100516f0 + +1001ba14 : +1001ba14: 4b02 ldr r3, [pc, #8] ; (1001ba20 ) +1001ba16: 681a ldr r2, [r3, #0] +1001ba18: 4410 add r0, r2 +1001ba1a: 6018 str r0, [r3, #0] +1001ba1c: 4770 bx lr +1001ba1e: bf00 nop +1001ba20: 1005170c .word 0x1005170c + +1001ba24 : +1001ba24: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001ba28: 4b3e ldr r3, [pc, #248] ; (1001bb24 ) +1001ba2a: 681b ldr r3, [r3, #0] +1001ba2c: 2b00 cmp r3, #0 +1001ba2e: d148 bne.n 1001bac2 +1001ba30: 4b3d ldr r3, [pc, #244] ; (1001bb28 ) +1001ba32: 681a ldr r2, [r3, #0] +1001ba34: 3201 adds r2, #1 +1001ba36: 601a str r2, [r3, #0] +1001ba38: 681e ldr r6, [r3, #0] +1001ba3a: 2e00 cmp r6, #0 +1001ba3c: d05e beq.n 1001bafc +1001ba3e: 4a3b ldr r2, [pc, #236] ; (1001bb2c ) +1001ba40: 6813 ldr r3, [r2, #0] +1001ba42: 429e cmp r6, r3 +1001ba44: d34a bcc.n 1001badc +1001ba46: 4f3a ldr r7, [pc, #232] ; (1001bb30 ) +1001ba48: f8df 90fc ldr.w r9, [pc, #252] ; 1001bb48 +1001ba4c: f8df 80fc ldr.w r8, [pc, #252] ; 1001bb4c +1001ba50: 4d38 ldr r5, [pc, #224] ; (1001bb34 ) +1001ba52: 2400 movs r4, #0 +1001ba54: e02c b.n 1001bab0 +1001ba56: 4a36 ldr r2, [pc, #216] ; (1001bb30 ) +1001ba58: 6813 ldr r3, [r2, #0] +1001ba5a: 68db ldr r3, [r3, #12] +1001ba5c: f8d3 a00c ldr.w sl, [r3, #12] +1001ba60: f8da 2004 ldr.w r2, [sl, #4] +1001ba64: f10a 0b04 add.w fp, sl, #4 +1001ba68: 4296 cmp r6, r2 +1001ba6a: d358 bcc.n 1001bb1e +1001ba6c: 4658 mov r0, fp +1001ba6e: f7ff facd bl 1001b00c +1001ba72: f8da 2028 ldr.w r2, [sl, #40] ; 0x28 +1001ba76: f10a 0018 add.w r0, sl, #24 +1001ba7a: b10a cbz r2, 1001ba80 +1001ba7c: f7ff fac6 bl 1001b00c +1001ba80: f8da 002c ldr.w r0, [sl, #44] ; 0x2c +1001ba84: 2301 movs r3, #1 +1001ba86: fa03 fe00 lsl.w lr, r3, r0 +1001ba8a: 682a ldr r2, [r5, #0] +1001ba8c: eb00 0080 add.w r0, r0, r0, lsl #2 +1001ba90: ea4e 0202 orr.w r2, lr, r2 +1001ba94: 4659 mov r1, fp +1001ba96: eb09 0080 add.w r0, r9, r0, lsl #2 +1001ba9a: 602a str r2, [r5, #0] +1001ba9c: f7ff fa8e bl 1001afbc +1001baa0: f8d8 1000 ldr.w r1, [r8] +1001baa4: f8da 202c ldr.w r2, [sl, #44] ; 0x2c +1001baa8: 6acb ldr r3, [r1, #44] ; 0x2c +1001baaa: 429a cmp r2, r3 +1001baac: bf28 it cs +1001baae: 2401 movcs r4, #1 +1001bab0: 683b ldr r3, [r7, #0] +1001bab2: 681b ldr r3, [r3, #0] +1001bab4: 2b00 cmp r3, #0 +1001bab6: d1ce bne.n 1001ba56 +1001bab8: 4a1c ldr r2, [pc, #112] ; (1001bb2c ) +1001baba: f04f 33ff mov.w r3, #4294967295 +1001babe: 6013 str r3, [r2, #0] +1001bac0: e011 b.n 1001bae6 +1001bac2: 4b1d ldr r3, [pc, #116] ; (1001bb38 ) +1001bac4: 2400 movs r4, #0 +1001bac6: 681a ldr r2, [r3, #0] +1001bac8: 3201 adds r2, #1 +1001baca: 601a str r2, [r3, #0] +1001bacc: 4b1b ldr r3, [pc, #108] ; (1001bb3c ) +1001bace: 681b ldr r3, [r3, #0] +1001bad0: 2b00 cmp r3, #0 +1001bad2: bf18 it ne +1001bad4: 2401 movne r4, #1 +1001bad6: 4620 mov r0, r4 +1001bad8: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001badc: f8df 9068 ldr.w r9, [pc, #104] ; 1001bb48 +1001bae0: f8df 8068 ldr.w r8, [pc, #104] ; 1001bb4c +1001bae4: 2400 movs r4, #0 +1001bae6: f8d8 3000 ldr.w r3, [r8] +1001baea: 6adb ldr r3, [r3, #44] ; 0x2c +1001baec: eb03 0383 add.w r3, r3, r3, lsl #2 +1001baf0: f859 3023 ldr.w r3, [r9, r3, lsl #2] +1001baf4: 2b02 cmp r3, #2 +1001baf6: bf28 it cs +1001baf8: 2401 movcs r4, #1 +1001bafa: e7e7 b.n 1001bacc +1001bafc: 4a10 ldr r2, [pc, #64] ; (1001bb40 ) +1001bafe: 4f0c ldr r7, [pc, #48] ; (1001bb30 ) +1001bb00: 4b10 ldr r3, [pc, #64] ; (1001bb44 ) +1001bb02: 6839 ldr r1, [r7, #0] +1001bb04: 6810 ldr r0, [r2, #0] +1001bb06: 6038 str r0, [r7, #0] +1001bb08: 6011 str r1, [r2, #0] +1001bb0a: 681a ldr r2, [r3, #0] +1001bb0c: 3201 adds r2, #1 +1001bb0e: 601a str r2, [r3, #0] +1001bb10: f7ff fd3c bl 1001b58c +1001bb14: 4a05 ldr r2, [pc, #20] ; (1001bb2c ) +1001bb16: 6813 ldr r3, [r2, #0] +1001bb18: 429e cmp r6, r3 +1001bb1a: d3df bcc.n 1001badc +1001bb1c: e793 b.n 1001ba46 +1001bb1e: 4b03 ldr r3, [pc, #12] ; (1001bb2c ) +1001bb20: 601a str r2, [r3, #0] +1001bb22: e7e0 b.n 1001bae6 +1001bb24: 100516ec .word 0x100516ec +1001bb28: 1005170c .word 0x1005170c +1001bb2c: 1004d830 .word 0x1004d830 +1001bb30: 100515d8 .word 0x100515d8 +1001bb34: 10051730 .word 0x10051730 +1001bb38: 1005160c .word 0x1005160c +1001bb3c: 10051734 .word 0x10051734 +1001bb40: 10051710 .word 0x10051710 +1001bb44: 10051708 .word 0x10051708 +1001bb48: 10051610 .word 0x10051610 +1001bb4c: 100516f0 .word 0x100516f0 + +1001bb50 : +1001bb50: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001bb54: f7ff f8cc bl 1001acf0 +1001bb58: 4b2b ldr r3, [pc, #172] ; (1001bc08 ) +1001bb5a: 681a ldr r2, [r3, #0] +1001bb5c: 3a01 subs r2, #1 +1001bb5e: 601a str r2, [r3, #0] +1001bb60: 681b ldr r3, [r3, #0] +1001bb62: 2b00 cmp r3, #0 +1001bb64: d147 bne.n 1001bbf6 +1001bb66: 4b29 ldr r3, [pc, #164] ; (1001bc0c ) +1001bb68: 681b ldr r3, [r3, #0] +1001bb6a: 2b00 cmp r3, #0 +1001bb6c: d043 beq.n 1001bbf6 +1001bb6e: f8df b0ac ldr.w fp, [pc, #172] ; 1001bc1c +1001bb72: 4f27 ldr r7, [pc, #156] ; (1001bc10 ) +1001bb74: 46da mov sl, fp +1001bb76: f8df 90a8 ldr.w r9, [pc, #168] ; 1001bc20 +1001bb7a: f8df 80a8 ldr.w r8, [pc, #168] ; 1001bc24 +1001bb7e: e020 b.n 1001bbc2 +1001bb80: f8da 300c ldr.w r3, [sl, #12] +1001bb84: 68dc ldr r4, [r3, #12] +1001bb86: 1d25 adds r5, r4, #4 +1001bb88: f104 0018 add.w r0, r4, #24 +1001bb8c: f7ff fa3e bl 1001b00c +1001bb90: 4628 mov r0, r5 +1001bb92: f7ff fa3b bl 1001b00c +1001bb96: 6ae3 ldr r3, [r4, #44] ; 0x2c +1001bb98: 683a ldr r2, [r7, #0] +1001bb9a: fa06 fc03 lsl.w ip, r6, r3 +1001bb9e: eb03 0083 add.w r0, r3, r3, lsl #2 +1001bba2: 4629 mov r1, r5 +1001bba4: ea4c 0302 orr.w r3, ip, r2 +1001bba8: eb09 0080 add.w r0, r9, r0, lsl #2 +1001bbac: 603b str r3, [r7, #0] +1001bbae: f7ff fa05 bl 1001afbc +1001bbb2: f8d8 3000 ldr.w r3, [r8] +1001bbb6: 6ae1 ldr r1, [r4, #44] ; 0x2c +1001bbb8: 6adb ldr r3, [r3, #44] ; 0x2c +1001bbba: 4299 cmp r1, r3 +1001bbbc: bf24 itt cs +1001bbbe: 4b15 ldrcs r3, [pc, #84] ; (1001bc14 ) +1001bbc0: 601e strcs r6, [r3, #0] +1001bbc2: f8db 3000 ldr.w r3, [fp] +1001bbc6: 2601 movs r6, #1 +1001bbc8: 2b00 cmp r3, #0 +1001bbca: d1d9 bne.n 1001bb80 +1001bbcc: 4c12 ldr r4, [pc, #72] ; (1001bc18 ) +1001bbce: 6823 ldr r3, [r4, #0] +1001bbd0: b16b cbz r3, 1001bbee +1001bbd2: 6823 ldr r3, [r4, #0] +1001bbd4: b15b cbz r3, 1001bbee +1001bbd6: 2501 movs r5, #1 +1001bbd8: f7ff ff24 bl 1001ba24 +1001bbdc: b108 cbz r0, 1001bbe2 +1001bbde: 4b0d ldr r3, [pc, #52] ; (1001bc14 ) +1001bbe0: 601d str r5, [r3, #0] +1001bbe2: 6823 ldr r3, [r4, #0] +1001bbe4: 3b01 subs r3, #1 +1001bbe6: 6023 str r3, [r4, #0] +1001bbe8: 6823 ldr r3, [r4, #0] +1001bbea: 2b00 cmp r3, #0 +1001bbec: d1f4 bne.n 1001bbd8 +1001bbee: 4b09 ldr r3, [pc, #36] ; (1001bc14 ) +1001bbf0: 681c ldr r4, [r3, #0] +1001bbf2: 2c01 cmp r4, #1 +1001bbf4: d005 beq.n 1001bc02 +1001bbf6: 2400 movs r4, #0 +1001bbf8: f7ff f88c bl 1001ad14 +1001bbfc: 4620 mov r0, r4 +1001bbfe: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001bc02: f7ff f85d bl 1001acc0 +1001bc06: e7f7 b.n 1001bbf8 +1001bc08: 100516ec .word 0x100516ec +1001bc0c: 1005172c .word 0x1005172c +1001bc10: 10051730 .word 0x10051730 +1001bc14: 10051734 .word 0x10051734 +1001bc18: 1005160c .word 0x1005160c +1001bc1c: 100516f4 .word 0x100516f4 +1001bc20: 10051610 .word 0x10051610 +1001bc24: 100516f0 .word 0x100516f0 + +1001bc28 : +1001bc28: b538 push {r3, r4, r5, lr} +1001bc2a: b918 cbnz r0, 1001bc34 +1001bc2c: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001bc30: f7ff b846 b.w 1001acc0 +1001bc34: 4b0f ldr r3, [pc, #60] ; (1001bc74 ) +1001bc36: 4a10 ldr r2, [pc, #64] ; (1001bc78 ) +1001bc38: 6819 ldr r1, [r3, #0] +1001bc3a: 4c10 ldr r4, [pc, #64] ; (1001bc7c ) +1001bc3c: 3101 adds r1, #1 +1001bc3e: 6019 str r1, [r3, #0] +1001bc40: 6815 ldr r5, [r2, #0] +1001bc42: 6823 ldr r3, [r4, #0] +1001bc44: 4405 add r5, r0 +1001bc46: 1d18 adds r0, r3, #4 +1001bc48: f7ff f9e0 bl 1001b00c +1001bc4c: b138 cbz r0, 1001bc5e +1001bc4e: 4628 mov r0, r5 +1001bc50: f7ff fcb0 bl 1001b5b4 +1001bc54: f7ff ff7c bl 1001bb50 +1001bc58: 2800 cmp r0, #0 +1001bc5a: d0e7 beq.n 1001bc2c +1001bc5c: bd38 pop {r3, r4, r5, pc} +1001bc5e: 6823 ldr r3, [r4, #0] +1001bc60: 2101 movs r1, #1 +1001bc62: 6ada ldr r2, [r3, #44] ; 0x2c +1001bc64: 4b06 ldr r3, [pc, #24] ; (1001bc80 ) +1001bc66: fa01 f202 lsl.w r2, r1, r2 +1001bc6a: 6819 ldr r1, [r3, #0] +1001bc6c: ea21 0202 bic.w r2, r1, r2 +1001bc70: 601a str r2, [r3, #0] +1001bc72: e7ec b.n 1001bc4e +1001bc74: 100516ec .word 0x100516ec +1001bc78: 1005170c .word 0x1005170c +1001bc7c: 100516f0 .word 0x100516f0 +1001bc80: 10051730 .word 0x10051730 + +1001bc84 : +1001bc84: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1001bc88: 4e22 ldr r6, [pc, #136] ; (1001bd14 ) +1001bc8a: 4f23 ldr r7, [pc, #140] ; (1001bd18 ) +1001bc8c: 4c23 ldr r4, [pc, #140] ; (1001bd1c ) +1001bc8e: f8df 9090 ldr.w r9, [pc, #144] ; 1001bd20 +1001bc92: 46b0 mov r8, r6 +1001bc94: 46ba mov sl, r7 +1001bc96: e006 b.n 1001bca6 +1001bc98: 6823 ldr r3, [r4, #0] +1001bc9a: 683d ldr r5, [r7, #0] +1001bc9c: 3301 adds r3, #1 +1001bc9e: 6023 str r3, [r4, #0] +1001bca0: f7ff ff56 bl 1001bb50 +1001bca4: b9b5 cbnz r5, 1001bcd4 +1001bca6: 6833 ldr r3, [r6, #0] +1001bca8: 2b00 cmp r3, #0 +1001bcaa: d1f5 bne.n 1001bc98 +1001bcac: f7ff f954 bl 1001af58 +1001bcb0: f7ff fc52 bl 1001b558 +1001bcb4: 2801 cmp r0, #1 +1001bcb6: d9f6 bls.n 1001bca6 +1001bcb8: 6823 ldr r3, [r4, #0] +1001bcba: 3301 adds r3, #1 +1001bcbc: 6023 str r3, [r4, #0] +1001bcbe: f7ff fc4b bl 1001b558 +1001bcc2: 2801 cmp r0, #1 +1001bcc4: 4605 mov r5, r0 +1001bcc6: d902 bls.n 1001bcce +1001bcc8: f002 fb2c bl 1001e324 +1001bccc: b9e8 cbnz r0, 1001bd0a +1001bcce: f7ff ff3f bl 1001bb50 +1001bcd2: e7e8 b.n 1001bca6 +1001bcd4: f7ff f80c bl 1001acf0 +1001bcd8: f8da 300c ldr.w r3, [sl, #12] +1001bcdc: 68dd ldr r5, [r3, #12] +1001bcde: 1d28 adds r0, r5, #4 +1001bce0: f7ff f994 bl 1001b00c +1001bce4: f8d9 3000 ldr.w r3, [r9] +1001bce8: 3b01 subs r3, #1 +1001bcea: f8c9 3000 str.w r3, [r9] +1001bcee: f8d8 3000 ldr.w r3, [r8] +1001bcf2: 3b01 subs r3, #1 +1001bcf4: f8c8 3000 str.w r3, [r8] +1001bcf8: f7ff f80c bl 1001ad14 +1001bcfc: 6b28 ldr r0, [r5, #48] ; 0x30 +1001bcfe: f7fe fed1 bl 1001aaa4 +1001bd02: 4628 mov r0, r5 +1001bd04: f7fe fece bl 1001aaa4 +1001bd08: e7cd b.n 1001bca6 +1001bd0a: 4628 mov r0, r5 +1001bd0c: f7ff f840 bl 1001ad90 +1001bd10: e7dd b.n 1001bcce +1001bd12: bf00 nop +1001bd14: 100515e0 .word 0x100515e0 +1001bd18: 100515e4 .word 0x100515e4 +1001bd1c: 100516ec .word 0x100516ec +1001bd20: 1005172c .word 0x1005172c + +1001bd24 : +1001bd24: b538 push {r3, r4, r5, lr} +1001bd26: 4b1e ldr r3, [pc, #120] ; (1001bda0 ) +1001bd28: 681b ldr r3, [r3, #0] +1001bd2a: 2b00 cmp r3, #0 +1001bd2c: d128 bne.n 1001bd80 +1001bd2e: 4a1d ldr r2, [pc, #116] ; (1001bda4 ) +1001bd30: 4c1d ldr r4, [pc, #116] ; (1001bda8 ) +1001bd32: 6013 str r3, [r2, #0] +1001bd34: 6822 ldr r2, [r4, #0] +1001bd36: 6823 ldr r3, [r4, #0] +1001bd38: 6812 ldr r2, [r2, #0] +1001bd3a: 6b1b ldr r3, [r3, #48] ; 0x30 +1001bd3c: 429a cmp r2, r3 +1001bd3e: d929 bls.n 1001bd94 +1001bd40: 6823 ldr r3, [r4, #0] +1001bd42: 491a ldr r1, [pc, #104] ; (1001bdac ) +1001bd44: 6b18 ldr r0, [r3, #48] ; 0x30 +1001bd46: 2214 movs r2, #20 +1001bd48: 4d17 ldr r5, [pc, #92] ; (1001bda8 ) +1001bd4a: f026 fa03 bl 10042154 +1001bd4e: b9d8 cbnz r0, 1001bd88 +1001bd50: 4b17 ldr r3, [pc, #92] ; (1001bdb0 ) +1001bd52: 681b ldr r3, [r3, #0] +1001bd54: fab3 f383 clz r3, r3 +1001bd58: b2db uxtb r3, r3 +1001bd5a: 4916 ldr r1, [pc, #88] ; (1001bdb4 ) +1001bd5c: f1c3 031f rsb r3, r3, #31 +1001bd60: eb03 0383 add.w r3, r3, r3, lsl #2 +1001bd64: eb01 0283 add.w r2, r1, r3, lsl #2 +1001bd68: 6853 ldr r3, [r2, #4] +1001bd6a: f102 0108 add.w r1, r2, #8 +1001bd6e: 685b ldr r3, [r3, #4] +1001bd70: 428b cmp r3, r1 +1001bd72: 6053 str r3, [r2, #4] +1001bd74: bf04 itt eq +1001bd76: 685b ldreq r3, [r3, #4] +1001bd78: 6053 streq r3, [r2, #4] +1001bd7a: 68db ldr r3, [r3, #12] +1001bd7c: 6023 str r3, [r4, #0] +1001bd7e: bd38 pop {r3, r4, r5, pc} +1001bd80: 4b08 ldr r3, [pc, #32] ; (1001bda4 ) +1001bd82: 2201 movs r2, #1 +1001bd84: 601a str r2, [r3, #0] +1001bd86: bd38 pop {r3, r4, r5, pc} +1001bd88: 6828 ldr r0, [r5, #0] +1001bd8a: 6829 ldr r1, [r5, #0] +1001bd8c: 3134 adds r1, #52 ; 0x34 +1001bd8e: f7ff f8e5 bl 1001af5c +1001bd92: e7dd b.n 1001bd50 +1001bd94: 6820 ldr r0, [r4, #0] +1001bd96: 6821 ldr r1, [r4, #0] +1001bd98: 3134 adds r1, #52 ; 0x34 +1001bd9a: f7ff f8df bl 1001af5c +1001bd9e: e7cf b.n 1001bd40 +1001bda0: 100516ec .word 0x100516ec +1001bda4: 10051734 .word 0x10051734 +1001bda8: 100516f0 .word 0x100516f0 +1001bdac: 10047ea4 .word 0x10047ea4 +1001bdb0: 10051730 .word 0x10051730 +1001bdb4: 10051610 .word 0x10051610 + +1001bdb8 : +1001bdb8: b538 push {r3, r4, r5, lr} +1001bdba: 4c12 ldr r4, [pc, #72] ; (1001be04 ) +1001bdbc: 460d mov r5, r1 +1001bdbe: 6821 ldr r1, [r4, #0] +1001bdc0: 3118 adds r1, #24 +1001bdc2: f7ff f909 bl 1001afd8 +1001bdc6: 6820 ldr r0, [r4, #0] +1001bdc8: 3004 adds r0, #4 +1001bdca: f7ff f91f bl 1001b00c +1001bdce: b948 cbnz r0, 1001bde4 +1001bdd0: 6823 ldr r3, [r4, #0] +1001bdd2: 2101 movs r1, #1 +1001bdd4: 6ada ldr r2, [r3, #44] ; 0x2c +1001bdd6: 4b0c ldr r3, [pc, #48] ; (1001be08 ) +1001bdd8: fa01 f202 lsl.w r2, r1, r2 +1001bddc: 6819 ldr r1, [r3, #0] +1001bdde: ea21 0202 bic.w r2, r1, r2 +1001bde2: 601a str r2, [r3, #0] +1001bde4: 1c6b adds r3, r5, #1 +1001bde6: d006 beq.n 1001bdf6 +1001bde8: 4b08 ldr r3, [pc, #32] ; (1001be0c ) +1001bdea: 6818 ldr r0, [r3, #0] +1001bdec: 4428 add r0, r5 +1001bdee: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001bdf2: f7ff bbdf b.w 1001b5b4 +1001bdf6: 6821 ldr r1, [r4, #0] +1001bdf8: 4805 ldr r0, [pc, #20] ; (1001be10 ) +1001bdfa: 3104 adds r1, #4 +1001bdfc: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001be00: f7ff b8dc b.w 1001afbc +1001be04: 100516f0 .word 0x100516f0 +1001be08: 10051730 .word 0x10051730 +1001be0c: 1005170c .word 0x1005170c +1001be10: 100515c4 .word 0x100515c4 + +1001be14 : +1001be14: b538 push {r3, r4, r5, lr} +1001be16: 4c0e ldr r4, [pc, #56] ; (1001be50 ) +1001be18: 460d mov r5, r1 +1001be1a: 6821 ldr r1, [r4, #0] +1001be1c: 3118 adds r1, #24 +1001be1e: f7ff f8cd bl 1001afbc +1001be22: 6820 ldr r0, [r4, #0] +1001be24: 3004 adds r0, #4 +1001be26: f7ff f8f1 bl 1001b00c +1001be2a: b948 cbnz r0, 1001be40 +1001be2c: 6823 ldr r3, [r4, #0] +1001be2e: 2101 movs r1, #1 +1001be30: 6ada ldr r2, [r3, #44] ; 0x2c +1001be32: 4b08 ldr r3, [pc, #32] ; (1001be54 ) +1001be34: fa01 f202 lsl.w r2, r1, r2 +1001be38: 6819 ldr r1, [r3, #0] +1001be3a: ea21 0202 bic.w r2, r1, r2 +1001be3e: 601a str r2, [r3, #0] +1001be40: 4b05 ldr r3, [pc, #20] ; (1001be58 ) +1001be42: 6818 ldr r0, [r3, #0] +1001be44: 4428 add r0, r5 +1001be46: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001be4a: f7ff bbb3 b.w 1001b5b4 +1001be4e: bf00 nop +1001be50: 100516f0 .word 0x100516f0 +1001be54: 10051730 .word 0x10051730 +1001be58: 1005170c .word 0x1005170c + +1001be5c : +1001be5c: b5f8 push {r3, r4, r5, r6, r7, lr} +1001be5e: 68c3 ldr r3, [r0, #12] +1001be60: 68dc ldr r4, [r3, #12] +1001be62: f104 0518 add.w r5, r4, #24 +1001be66: 4628 mov r0, r5 +1001be68: f7ff f8d0 bl 1001b00c +1001be6c: 4b13 ldr r3, [pc, #76] ; (1001bebc ) +1001be6e: 681b ldr r3, [r3, #0] +1001be70: b9f3 cbnz r3, 1001beb0 +1001be72: 1d25 adds r5, r4, #4 +1001be74: 4628 mov r0, r5 +1001be76: f7ff f8c9 bl 1001b00c +1001be7a: 6ae3 ldr r3, [r4, #44] ; 0x2c +1001be7c: 2701 movs r7, #1 +1001be7e: 409f lsls r7, r3 +1001be80: 4a0f ldr r2, [pc, #60] ; (1001bec0 ) +1001be82: 4810 ldr r0, [pc, #64] ; (1001bec4 ) +1001be84: 6816 ldr r6, [r2, #0] +1001be86: eb03 0383 add.w r3, r3, r3, lsl #2 +1001be8a: 4629 mov r1, r5 +1001be8c: eb00 0083 add.w r0, r0, r3, lsl #2 +1001be90: ea47 0506 orr.w r5, r7, r6 +1001be94: 6015 str r5, [r2, #0] +1001be96: f7ff f891 bl 1001afbc +1001be9a: 4b0b ldr r3, [pc, #44] ; (1001bec8 ) +1001be9c: 6ae2 ldr r2, [r4, #44] ; 0x2c +1001be9e: 681b ldr r3, [r3, #0] +1001bea0: 6adb ldr r3, [r3, #44] ; 0x2c +1001bea2: 429a cmp r2, r3 +1001bea4: bf83 ittte hi +1001bea6: 4b09 ldrhi r3, [pc, #36] ; (1001becc ) +1001bea8: 2001 movhi r0, #1 +1001beaa: 6018 strhi r0, [r3, #0] +1001beac: 2000 movls r0, #0 +1001beae: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001beb0: 4629 mov r1, r5 +1001beb2: 4807 ldr r0, [pc, #28] ; (1001bed0 ) +1001beb4: f7ff f882 bl 1001afbc +1001beb8: e7ef b.n 1001be9a +1001beba: bf00 nop +1001bebc: 100516ec .word 0x100516ec +1001bec0: 10051730 .word 0x10051730 +1001bec4: 10051610 .word 0x10051610 +1001bec8: 100516f0 .word 0x100516f0 +1001becc: 10051734 .word 0x10051734 +1001bed0: 100516f4 .word 0x100516f4 + +1001bed4 : +1001bed4: 4a03 ldr r2, [pc, #12] ; (1001bee4 ) +1001bed6: 4b04 ldr r3, [pc, #16] ; (1001bee8 ) +1001bed8: 6812 ldr r2, [r2, #0] +1001beda: 681b ldr r3, [r3, #0] +1001bedc: e880 000c stmia.w r0, {r2, r3} +1001bee0: 4770 bx lr +1001bee2: bf00 nop +1001bee4: 10051708 .word 0x10051708 +1001bee8: 1005170c .word 0x1005170c + +1001beec : +1001beec: b5f8 push {r3, r4, r5, r6, r7, lr} +1001beee: 460d mov r5, r1 +1001bef0: 4604 mov r4, r0 +1001bef2: f7fe fefd bl 1001acf0 +1001bef6: 682b ldr r3, [r5, #0] +1001bef8: 4912 ldr r1, [pc, #72] ; (1001bf44 ) +1001befa: 1c58 adds r0, r3, #1 +1001befc: 680a ldr r2, [r1, #0] +1001befe: d01b beq.n 1001bf38 +1001bf00: 4e11 ldr r6, [pc, #68] ; (1001bf48 ) +1001bf02: 6820 ldr r0, [r4, #0] +1001bf04: 6837 ldr r7, [r6, #0] +1001bf06: 42b8 cmp r0, r7 +1001bf08: 6860 ldr r0, [r4, #4] +1001bf0a: d001 beq.n 1001bf10 +1001bf0c: 4282 cmp r2, r0 +1001bf0e: d20e bcs.n 1001bf2e +1001bf10: 1a17 subs r7, r2, r0 +1001bf12: 42bb cmp r3, r7 +1001bf14: d90b bls.n 1001bf2e +1001bf16: 6836 ldr r6, [r6, #0] +1001bf18: 1a9b subs r3, r3, r2 +1001bf1a: 6809 ldr r1, [r1, #0] +1001bf1c: 4418 add r0, r3 +1001bf1e: 6028 str r0, [r5, #0] +1001bf20: 2500 movs r5, #0 +1001bf22: 6026 str r6, [r4, #0] +1001bf24: 6061 str r1, [r4, #4] +1001bf26: f7fe fef5 bl 1001ad14 +1001bf2a: 4628 mov r0, r5 +1001bf2c: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001bf2e: 2501 movs r5, #1 +1001bf30: f7fe fef0 bl 1001ad14 +1001bf34: 4628 mov r0, r5 +1001bf36: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001bf38: 2500 movs r5, #0 +1001bf3a: f7fe feeb bl 1001ad14 +1001bf3e: 4628 mov r0, r5 +1001bf40: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001bf42: bf00 nop +1001bf44: 1005170c .word 0x1005170c +1001bf48: 10051708 .word 0x10051708 + +1001bf4c : +1001bf4c: 4b01 ldr r3, [pc, #4] ; (1001bf54 ) +1001bf4e: 2201 movs r2, #1 +1001bf50: 601a str r2, [r3, #0] +1001bf52: 4770 bx lr +1001bf54: 10051734 .word 0x10051734 + +1001bf58 : +1001bf58: 4b05 ldr r3, [pc, #20] ; (1001bf70 ) +1001bf5a: 681b ldr r3, [r3, #0] +1001bf5c: b933 cbnz r3, 1001bf6c +1001bf5e: 4b05 ldr r3, [pc, #20] ; (1001bf74 ) +1001bf60: 6818 ldr r0, [r3, #0] +1001bf62: f1d0 0001 rsbs r0, r0, #1 +1001bf66: bf38 it cc +1001bf68: 2000 movcc r0, #0 +1001bf6a: 4770 bx lr +1001bf6c: 2000 movs r0, #0 +1001bf6e: 4770 bx lr +1001bf70: 100516f4 .word 0x100516f4 +1001bf74: 10051734 .word 0x10051734 + +1001bf78 : +1001bf78: 4b05 ldr r3, [pc, #20] ; (1001bf90 ) +1001bf7a: 681b ldr r3, [r3, #0] +1001bf7c: b133 cbz r3, 1001bf8c +1001bf7e: 4b05 ldr r3, [pc, #20] ; (1001bf94 ) +1001bf80: 681b ldr r3, [r3, #0] +1001bf82: 2b00 cmp r3, #0 +1001bf84: bf14 ite ne +1001bf86: 2000 movne r0, #0 +1001bf88: 2002 moveq r0, #2 +1001bf8a: 4770 bx lr +1001bf8c: 2001 movs r0, #1 +1001bf8e: 4770 bx lr +1001bf90: 100515dc .word 0x100515dc +1001bf94: 100516ec .word 0x100516ec + +1001bf98 : +1001bf98: b5f8 push {r3, r4, r5, r6, r7, lr} +1001bf9a: 4604 mov r4, r0 +1001bf9c: b1c0 cbz r0, 1001bfd0 +1001bf9e: 4d21 ldr r5, [pc, #132] ; (1001c024 ) +1001bfa0: 6ac3 ldr r3, [r0, #44] ; 0x2c +1001bfa2: 682a ldr r2, [r5, #0] +1001bfa4: 6ad2 ldr r2, [r2, #44] ; 0x2c +1001bfa6: 4293 cmp r3, r2 +1001bfa8: d212 bcs.n 1001bfd0 +1001bfaa: 6982 ldr r2, [r0, #24] +1001bfac: 2a00 cmp r2, #0 +1001bfae: db04 blt.n 1001bfba +1001bfb0: 682a ldr r2, [r5, #0] +1001bfb2: 6ad2 ldr r2, [r2, #44] ; 0x2c +1001bfb4: f1c2 020b rsb r2, r2, #11 +1001bfb8: 6182 str r2, [r0, #24] +1001bfba: 4e1b ldr r6, [pc, #108] ; (1001c028 ) +1001bfbc: eb03 0383 add.w r3, r3, r3, lsl #2 +1001bfc0: 6962 ldr r2, [r4, #20] +1001bfc2: eb06 0383 add.w r3, r6, r3, lsl #2 +1001bfc6: 429a cmp r2, r3 +1001bfc8: d003 beq.n 1001bfd2 +1001bfca: 682b ldr r3, [r5, #0] +1001bfcc: 6adb ldr r3, [r3, #44] ; 0x2c +1001bfce: 62e3 str r3, [r4, #44] ; 0x2c +1001bfd0: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001bfd2: 1d27 adds r7, r4, #4 +1001bfd4: 4638 mov r0, r7 +1001bfd6: f7ff f819 bl 1001b00c +1001bfda: bb08 cbnz r0, 1001c020 +1001bfdc: 6ae3 ldr r3, [r4, #44] ; 0x2c +1001bfde: eb03 0283 add.w r2, r3, r3, lsl #2 +1001bfe2: f856 2022 ldr.w r2, [r6, r2, lsl #2] +1001bfe6: b9da cbnz r2, 1001c020 +1001bfe8: 2201 movs r2, #1 +1001bfea: fa02 f303 lsl.w r3, r2, r3 +1001bfee: 4a0f ldr r2, [pc, #60] ; (1001c02c ) +1001bff0: 6811 ldr r1, [r2, #0] +1001bff2: ea21 0303 bic.w r3, r1, r3 +1001bff6: 6013 str r3, [r2, #0] +1001bff8: 682b ldr r3, [r5, #0] +1001bffa: f04f 0c01 mov.w ip, #1 +1001bffe: 6adb ldr r3, [r3, #44] ; 0x2c +1001c000: 6815 ldr r5, [r2, #0] +1001c002: fa0c fc03 lsl.w ip, ip, r3 +1001c006: eb03 0083 add.w r0, r3, r3, lsl #2 +1001c00a: 62e3 str r3, [r4, #44] ; 0x2c +1001c00c: ea4c 0305 orr.w r3, ip, r5 +1001c010: 4639 mov r1, r7 +1001c012: eb06 0080 add.w r0, r6, r0, lsl #2 +1001c016: 6013 str r3, [r2, #0] +1001c018: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +1001c01c: f7fe bfce b.w 1001afbc +1001c020: 4a02 ldr r2, [pc, #8] ; (1001c02c ) +1001c022: e7e9 b.n 1001bff8 +1001c024: 100516f0 .word 0x100516f0 +1001c028: 10051610 .word 0x10051610 +1001c02c: 10051730 .word 0x10051730 + +1001c030 : +1001c030: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001c034: 4604 mov r4, r0 +1001c036: b138 cbz r0, 1001c048 +1001c038: 6c43 ldr r3, [r0, #68] ; 0x44 +1001c03a: 6ac1 ldr r1, [r0, #44] ; 0x2c +1001c03c: 6c02 ldr r2, [r0, #64] ; 0x40 +1001c03e: 3b01 subs r3, #1 +1001c040: 4291 cmp r1, r2 +1001c042: 6443 str r3, [r0, #68] ; 0x44 +1001c044: d000 beq.n 1001c048 +1001c046: b113 cbz r3, 1001c04e +1001c048: 2000 movs r0, #0 +1001c04a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001c04e: 1d06 adds r6, r0, #4 +1001c050: 4630 mov r0, r6 +1001c052: f7fe ffdb bl 1001b00c +1001c056: b940 cbnz r0, 1001c06a +1001c058: 6ae3 ldr r3, [r4, #44] ; 0x2c +1001c05a: 4815 ldr r0, [pc, #84] ; (1001c0b0 ) +1001c05c: eb03 0283 add.w r2, r3, r3, lsl #2 +1001c060: f850 2022 ldr.w r2, [r0, r2, lsl #2] +1001c064: b1da cbz r2, 1001c09e +1001c066: 4a13 ldr r2, [pc, #76] ; (1001c0b4 ) +1001c068: e001 b.n 1001c06e +1001c06a: 4811 ldr r0, [pc, #68] ; (1001c0b0 ) +1001c06c: 4a11 ldr r2, [pc, #68] ; (1001c0b4 ) +1001c06e: 6c23 ldr r3, [r4, #64] ; 0x40 +1001c070: 2501 movs r5, #1 +1001c072: fa05 f803 lsl.w r8, r5, r3 +1001c076: f8d2 c000 ldr.w ip, [r2] +1001c07a: f1c3 0e0b rsb lr, r3, #11 +1001c07e: eb03 0783 add.w r7, r3, r3, lsl #2 +1001c082: 62e3 str r3, [r4, #44] ; 0x2c +1001c084: eb00 0087 add.w r0, r0, r7, lsl #2 +1001c088: ea48 030c orr.w r3, r8, ip +1001c08c: 4631 mov r1, r6 +1001c08e: f8c4 e018 str.w lr, [r4, #24] +1001c092: 6013 str r3, [r2, #0] +1001c094: f7fe ff92 bl 1001afbc +1001c098: 4628 mov r0, r5 +1001c09a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001c09e: 2201 movs r2, #1 +1001c0a0: fa02 f303 lsl.w r3, r2, r3 +1001c0a4: 4a03 ldr r2, [pc, #12] ; (1001c0b4 ) +1001c0a6: 6811 ldr r1, [r2, #0] +1001c0a8: ea21 0303 bic.w r3, r1, r3 +1001c0ac: 6013 str r3, [r2, #0] +1001c0ae: e7de b.n 1001c06e +1001c0b0: 10051610 .word 0x10051610 +1001c0b4: 10051730 .word 0x10051730 + +1001c0b8 : +1001c0b8: 4b04 ldr r3, [pc, #16] ; (1001c0cc ) +1001c0ba: 681a ldr r2, [r3, #0] +1001c0bc: b11a cbz r2, 1001c0c6 +1001c0be: 681a ldr r2, [r3, #0] +1001c0c0: 6c51 ldr r1, [r2, #68] ; 0x44 +1001c0c2: 3101 adds r1, #1 +1001c0c4: 6451 str r1, [r2, #68] ; 0x44 +1001c0c6: 6818 ldr r0, [r3, #0] +1001c0c8: 4770 bx lr +1001c0ca: bf00 nop +1001c0cc: 100516f0 .word 0x100516f0 + +1001c0d0 : +1001c0d0: 4b01 ldr r3, [pc, #4] ; (1001c0d8 ) +1001c0d2: 6818 ldr r0, [r3, #0] +1001c0d4: 4770 bx lr +1001c0d6: bf00 nop +1001c0d8: 100516f0 .word 0x100516f0 + +1001c0dc : +1001c0dc: b5f8 push {r3, r4, r5, r6, r7, lr} +1001c0de: 4c10 ldr r4, [pc, #64] ; (1001c120 ) +1001c0e0: f7fe fe06 bl 1001acf0 +1001c0e4: 6825 ldr r5, [r4, #0] +1001c0e6: b11d cbz r5, 1001c0f0 +1001c0e8: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +1001c0ec: f7fe be12 b.w 1001ad14 +1001c0f0: 4f0c ldr r7, [pc, #48] ; (1001c124 ) +1001c0f2: 4e0d ldr r6, [pc, #52] ; (1001c128 ) +1001c0f4: 4638 mov r0, r7 +1001c0f6: f7fe ff51 bl 1001af9c +1001c0fa: 4630 mov r0, r6 +1001c0fc: f7fe ff4e bl 1001af9c +1001c100: f8df e02c ldr.w lr, [pc, #44] ; 1001c130 +1001c104: 4b09 ldr r3, [pc, #36] ; (1001c12c ) +1001c106: 462a mov r2, r5 +1001c108: 200a movs r0, #10 +1001c10a: 2110 movs r1, #16 +1001c10c: f8ce 7000 str.w r7, [lr] +1001c110: 601e str r6, [r3, #0] +1001c112: f7ff f855 bl 1001b1c0 +1001c116: 6020 str r0, [r4, #0] +1001c118: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +1001c11c: f7fe bdfa b.w 1001ad14 +1001c120: 10051764 .word 0x10051764 +1001c124: 1005173c .word 0x1005173c +1001c128: 10051750 .word 0x10051750 +1001c12c: 1005176c .word 0x1005176c +1001c130: 10051738 .word 0x10051738 + +1001c134 : +1001c134: 4291 cmp r1, r2 +1001c136: b508 push {r3, lr} +1001c138: 6100 str r0, [r0, #16] +1001c13a: 6041 str r1, [r0, #4] +1001c13c: d805 bhi.n 1001c14a +1001c13e: 6981 ldr r1, [r0, #24] +1001c140: 1ad2 subs r2, r2, r3 +1001c142: 428a cmp r2, r1 +1001c144: d30c bcc.n 1001c160 +1001c146: 2001 movs r0, #1 +1001c148: bd08 pop {r3, pc} +1001c14a: 429a cmp r2, r3 +1001c14c: d201 bcs.n 1001c152 +1001c14e: 4299 cmp r1, r3 +1001c150: d2f9 bcs.n 1001c146 +1001c152: 4b07 ldr r3, [pc, #28] ; (1001c170 ) +1001c154: 1d01 adds r1, r0, #4 +1001c156: 6818 ldr r0, [r3, #0] +1001c158: f7fe ff3e bl 1001afd8 +1001c15c: 2000 movs r0, #0 +1001c15e: bd08 pop {r3, pc} +1001c160: 4b04 ldr r3, [pc, #16] ; (1001c174 ) +1001c162: 1d01 adds r1, r0, #4 +1001c164: 6818 ldr r0, [r3, #0] +1001c166: f7fe ff37 bl 1001afd8 +1001c16a: 2000 movs r0, #0 +1001c16c: bd08 pop {r3, pc} +1001c16e: bf00 nop +1001c170: 10051738 .word 0x10051738 +1001c174: 1005176c .word 0x1005176c + +1001c178 : +1001c178: b500 push {lr} +1001c17a: b085 sub sp, #20 +1001c17c: f7ff ffae bl 1001c0dc +1001c180: 4b09 ldr r3, [pc, #36] ; (1001c1a8 ) +1001c182: 6818 ldr r0, [r3, #0] +1001c184: b160 cbz r0, 1001c1a0 +1001c186: 4909 ldr r1, [pc, #36] ; (1001c1ac ) +1001c188: 2205 movs r2, #5 +1001c18a: 2300 movs r3, #0 +1001c18c: 9101 str r1, [sp, #4] +1001c18e: 9200 str r2, [sp, #0] +1001c190: 9302 str r3, [sp, #8] +1001c192: 9303 str r3, [sp, #12] +1001c194: 4806 ldr r0, [pc, #24] ; (1001c1b0 ) +1001c196: 4907 ldr r1, [pc, #28] ; (1001c1b4 ) +1001c198: f44f 7200 mov.w r2, #512 ; 0x200 +1001c19c: f7ff fa32 bl 1001b604 +1001c1a0: b005 add sp, #20 +1001c1a2: f85d fb04 ldr.w pc, [sp], #4 +1001c1a6: bf00 nop +1001c1a8: 10051764 .word 0x10051764 +1001c1ac: 10051770 .word 0x10051770 +1001c1b0: 1001c321 .word 0x1001c321 +1001c1b4: 10047ec0 .word 0x10047ec0 + +1001c1b8 : +1001c1b8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001c1bc: 460d mov r5, r1 +1001c1be: 4680 mov r8, r0 +1001c1c0: 4617 mov r7, r2 +1001c1c2: 461e mov r6, r3 +1001c1c4: b199 cbz r1, 1001c1ee +1001c1c6: 2028 movs r0, #40 ; 0x28 +1001c1c8: f7fe fcdc bl 1001ab84 +1001c1cc: 4604 mov r4, r0 +1001c1ce: b158 cbz r0, 1001c1e8 +1001c1d0: f7ff ff84 bl 1001c0dc +1001c1d4: 9b06 ldr r3, [sp, #24] +1001c1d6: f8c4 8000 str.w r8, [r4] +1001c1da: 61a5 str r5, [r4, #24] +1001c1dc: 61e7 str r7, [r4, #28] +1001c1de: 6226 str r6, [r4, #32] +1001c1e0: 6263 str r3, [r4, #36] ; 0x24 +1001c1e2: 1d20 adds r0, r4, #4 +1001c1e4: f7fe fee6 bl 1001afb4 +1001c1e8: 4620 mov r0, r4 +1001c1ea: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001c1ee: 460c mov r4, r1 +1001c1f0: 4620 mov r0, r4 +1001c1f2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001c1f6: bf00 nop + +1001c1f8 : +1001c1f8: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1001c1fc: b085 sub sp, #20 +1001c1fe: 4607 mov r7, r0 +1001c200: 460c mov r4, r1 +1001c202: 4690 mov r8, r2 +1001c204: 4699 mov r9, r3 +1001c206: f7ff ff63 bl 1001c0d0 +1001c20a: 4d25 ldr r5, [pc, #148] ; (1001c2a0 ) +1001c20c: 682d ldr r5, [r5, #0] +1001c20e: 4285 cmp r5, r0 +1001c210: d01c beq.n 1001c24c +1001c212: 4e24 ldr r6, [pc, #144] ; (1001c2a4 ) +1001c214: 6830 ldr r0, [r6, #0] +1001c216: b170 cbz r0, 1001c236 +1001c218: 2c05 cmp r4, #5 +1001c21a: e88d 0110 stmia.w sp, {r4, r8} +1001c21e: 9702 str r7, [sp, #8] +1001c220: dc0c bgt.n 1001c23c +1001c222: f7ff fea9 bl 1001bf78 +1001c226: 2802 cmp r0, #2 +1001c228: d024 beq.n 1001c274 +1001c22a: 2200 movs r2, #0 +1001c22c: 6830 ldr r0, [r6, #0] +1001c22e: 4613 mov r3, r2 +1001c230: 4669 mov r1, sp +1001c232: f7fe fff1 bl 1001b218 +1001c236: b005 add sp, #20 +1001c238: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001c23c: 464a mov r2, r9 +1001c23e: 4669 mov r1, sp +1001c240: 2300 movs r3, #0 +1001c242: f7ff f883 bl 1001b34c +1001c246: b005 add sp, #20 +1001c248: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001c24c: 1ee3 subs r3, r4, #3 +1001c24e: 2b02 cmp r3, #2 +1001c250: d8df bhi.n 1001c212 +1001c252: f7ff fbbd bl 1001b9d0 +1001c256: 697b ldr r3, [r7, #20] +1001c258: 4605 mov r5, r0 +1001c25a: b113 cbz r3, 1001c262 +1001c25c: 1d38 adds r0, r7, #4 +1001c25e: f7fe fed5 bl 1001b00c +1001c262: 2c04 cmp r4, #4 +1001c264: d00f beq.n 1001c286 +1001c266: 2c05 cmp r4, #5 +1001c268: d118 bne.n 1001c29c +1001c26a: 4638 mov r0, r7 +1001c26c: f7fe fc1a bl 1001aaa4 +1001c270: 2001 movs r0, #1 +1001c272: e7e0 b.n 1001c236 +1001c274: 6830 ldr r0, [r6, #0] +1001c276: 4669 mov r1, sp +1001c278: 9a0c ldr r2, [sp, #48] ; 0x30 +1001c27a: 2300 movs r3, #0 +1001c27c: f7fe ffcc bl 1001b218 +1001c280: b005 add sp, #20 +1001c282: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001c286: 462a mov r2, r5 +1001c288: f8c7 8018 str.w r8, [r7, #24] +1001c28c: 4638 mov r0, r7 +1001c28e: eb05 0108 add.w r1, r5, r8 +1001c292: 462b mov r3, r5 +1001c294: f7ff ff4e bl 1001c134 +1001c298: 2001 movs r0, #1 +1001c29a: e7cc b.n 1001c236 +1001c29c: 2001 movs r0, #1 +1001c29e: e7ca b.n 1001c236 +1001c2a0: 10051770 .word 0x10051770 +1001c2a4: 10051764 .word 0x10051764 + +1001c2a8 : +1001c2a8: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1001c2ac: 4e1a ldr r6, [pc, #104] ; (1001c318 ) +1001c2ae: b083 sub sp, #12 +1001c2b0: f04f 0800 mov.w r8, #0 +1001c2b4: 46b1 mov r9, r6 +1001c2b6: e00c b.n 1001c2d2 +1001c2b8: 68db ldr r3, [r3, #12] +1001c2ba: 68dc ldr r4, [r3, #12] +1001c2bc: 681f ldr r7, [r3, #0] +1001c2be: 1d25 adds r5, r4, #4 +1001c2c0: 4628 mov r0, r5 +1001c2c2: f7fe fea3 bl 1001b00c +1001c2c6: 6a63 ldr r3, [r4, #36] ; 0x24 +1001c2c8: 4620 mov r0, r4 +1001c2ca: 4798 blx r3 +1001c2cc: 69e3 ldr r3, [r4, #28] +1001c2ce: 2b01 cmp r3, #1 +1001c2d0: d00b beq.n 1001c2ea +1001c2d2: 6833 ldr r3, [r6, #0] +1001c2d4: 4910 ldr r1, [pc, #64] ; (1001c318 ) +1001c2d6: 681a ldr r2, [r3, #0] +1001c2d8: 2a00 cmp r2, #0 +1001c2da: d1ed bne.n 1001c2b8 +1001c2dc: 4a0f ldr r2, [pc, #60] ; (1001c31c ) +1001c2de: 6810 ldr r0, [r2, #0] +1001c2e0: 6013 str r3, [r2, #0] +1001c2e2: 6008 str r0, [r1, #0] +1001c2e4: b003 add sp, #12 +1001c2e6: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001c2ea: 69a3 ldr r3, [r4, #24] +1001c2ec: 2100 movs r1, #0 +1001c2ee: eb07 0e03 add.w lr, r7, r3 +1001c2f2: 45be cmp lr, r7 +1001c2f4: 4620 mov r0, r4 +1001c2f6: 463a mov r2, r7 +1001c2f8: 460b mov r3, r1 +1001c2fa: d908 bls.n 1001c30e +1001c2fc: f8c4 e004 str.w lr, [r4, #4] +1001c300: 6124 str r4, [r4, #16] +1001c302: 4629 mov r1, r5 +1001c304: f8d9 0000 ldr.w r0, [r9] +1001c308: f7fe fe66 bl 1001afd8 +1001c30c: e7e1 b.n 1001c2d2 +1001c30e: f8cd 8000 str.w r8, [sp] +1001c312: f7ff ff71 bl 1001c1f8 +1001c316: e7dc b.n 1001c2d2 +1001c318: 10051738 .word 0x10051738 +1001c31c: 1005176c .word 0x1005176c + +1001c320 : +1001c320: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1001c324: f8df 8170 ldr.w r8, [pc, #368] ; 1001c498 +1001c328: 4e59 ldr r6, [pc, #356] ; (1001c490 ) +1001c32a: 4d5a ldr r5, [pc, #360] ; (1001c494 ) +1001c32c: b088 sub sp, #32 +1001c32e: f8d8 3000 ldr.w r3, [r8] +1001c332: 681f ldr r7, [r3, #0] +1001c334: f1d7 0701 rsbs r7, r7, #1 +1001c338: bf38 it cc +1001c33a: 2700 movcc r7, #0 +1001c33c: 2f00 cmp r7, #0 +1001c33e: d14b bne.n 1001c3d8 +1001c340: 68db ldr r3, [r3, #12] +1001c342: f8d3 9000 ldr.w r9, [r3] +1001c346: f7ff fb3b bl 1001b9c0 +1001c34a: f7ff fb41 bl 1001b9d0 +1001c34e: 6833 ldr r3, [r6, #0] +1001c350: 4604 mov r4, r0 +1001c352: 4298 cmp r0, r3 +1001c354: f8df a138 ldr.w sl, [pc, #312] ; 1001c490 +1001c358: d341 bcc.n 1001c3de +1001c35a: f8ca 0000 str.w r0, [sl] +1001c35e: b90f cbnz r7, 1001c364 +1001c360: 45a1 cmp r9, r4 +1001c362: d94b bls.n 1001c3fc +1001c364: ebc4 0109 rsb r1, r4, r9 +1001c368: 6828 ldr r0, [r5, #0] +1001c36a: f7ff f8d7 bl 1001b51c +1001c36e: f7ff fbef bl 1001bb50 +1001c372: 2800 cmp r0, #0 +1001c374: d03f beq.n 1001c3f6 +1001c376: 2701 movs r7, #1 +1001c378: 2200 movs r2, #0 +1001c37a: 4613 mov r3, r2 +1001c37c: 6828 ldr r0, [r5, #0] +1001c37e: a904 add r1, sp, #16 +1001c380: f7ff f824 bl 1001b3cc +1001c384: 2800 cmp r0, #0 +1001c386: d0d2 beq.n 1001c32e +1001c388: 9b04 ldr r3, [sp, #16] +1001c38a: 2b00 cmp r3, #0 +1001c38c: db1c blt.n 1001c3c8 +1001c38e: 9c06 ldr r4, [sp, #24] +1001c390: 6963 ldr r3, [r4, #20] +1001c392: b113 cbz r3, 1001c39a +1001c394: 1d20 adds r0, r4, #4 +1001c396: f7fe fe39 bl 1001b00c +1001c39a: f7ff fb19 bl 1001b9d0 +1001c39e: 6833 ldr r3, [r6, #0] +1001c3a0: 4298 cmp r0, r3 +1001c3a2: d323 bcc.n 1001c3ec +1001c3a4: 9b04 ldr r3, [sp, #16] +1001c3a6: 6030 str r0, [r6, #0] +1001c3a8: 2b09 cmp r3, #9 +1001c3aa: d8e5 bhi.n 1001c378 +1001c3ac: fa07 f303 lsl.w r3, r7, r3 +1001c3b0: f413 7904 ands.w r9, r3, #528 ; 0x210 +1001c3b4: d162 bne.n 1001c47c +1001c3b6: f013 0fc7 tst.w r3, #199 ; 0xc7 +1001c3ba: d145 bne.n 1001c448 +1001c3bc: 069b lsls r3, r3, #26 +1001c3be: d5db bpl.n 1001c378 +1001c3c0: 4620 mov r0, r4 +1001c3c2: f7fe fb6f bl 1001aaa4 +1001c3c6: e7d7 b.n 1001c378 +1001c3c8: 9b05 ldr r3, [sp, #20] +1001c3ca: 9806 ldr r0, [sp, #24] +1001c3cc: 9907 ldr r1, [sp, #28] +1001c3ce: 4798 blx r3 +1001c3d0: 9b04 ldr r3, [sp, #16] +1001c3d2: 2b00 cmp r3, #0 +1001c3d4: dbd0 blt.n 1001c378 +1001c3d6: e7da b.n 1001c38e +1001c3d8: f04f 0900 mov.w r9, #0 +1001c3dc: e7b3 b.n 1001c346 +1001c3de: f7ff ff63 bl 1001c2a8 +1001c3e2: f8ca 4000 str.w r4, [sl] +1001c3e6: f7ff fbb3 bl 1001bb50 +1001c3ea: e7c4 b.n 1001c376 +1001c3ec: 9003 str r0, [sp, #12] +1001c3ee: f7ff ff5b bl 1001c2a8 +1001c3f2: 9803 ldr r0, [sp, #12] +1001c3f4: e7d6 b.n 1001c3a4 +1001c3f6: f7fe fc63 bl 1001acc0 +1001c3fa: e7bc b.n 1001c376 +1001c3fc: f7ff fba8 bl 1001bb50 +1001c400: f8d8 3000 ldr.w r3, [r8] +1001c404: 68db ldr r3, [r3, #12] +1001c406: f8d3 a00c ldr.w sl, [r3, #12] +1001c40a: f10a 0004 add.w r0, sl, #4 +1001c40e: f7fe fdfd bl 1001b00c +1001c412: f8da 301c ldr.w r3, [sl, #28] +1001c416: 2b01 cmp r3, #1 +1001c418: d004 beq.n 1001c424 +1001c41a: f8da 3024 ldr.w r3, [sl, #36] ; 0x24 +1001c41e: 4650 mov r0, sl +1001c420: 4798 blx r3 +1001c422: e7a8 b.n 1001c376 +1001c424: f8da 1018 ldr.w r1, [sl, #24] +1001c428: 4622 mov r2, r4 +1001c42a: 4449 add r1, r9 +1001c42c: 4650 mov r0, sl +1001c42e: 464b mov r3, r9 +1001c430: f7ff fe80 bl 1001c134 +1001c434: 2801 cmp r0, #1 +1001c436: d1f0 bne.n 1001c41a +1001c438: 4639 mov r1, r7 +1001c43a: 9700 str r7, [sp, #0] +1001c43c: 464a mov r2, r9 +1001c43e: 463b mov r3, r7 +1001c440: 4650 mov r0, sl +1001c442: f7ff fed9 bl 1001c1f8 +1001c446: e7e8 b.n 1001c41a +1001c448: 9b05 ldr r3, [sp, #20] +1001c44a: 69a1 ldr r1, [r4, #24] +1001c44c: 4602 mov r2, r0 +1001c44e: 4419 add r1, r3 +1001c450: 4620 mov r0, r4 +1001c452: f7ff fe6f bl 1001c134 +1001c456: 2801 cmp r0, #1 +1001c458: d18e bne.n 1001c378 +1001c45a: 6a63 ldr r3, [r4, #36] ; 0x24 +1001c45c: 4620 mov r0, r4 +1001c45e: 4798 blx r3 +1001c460: 69e3 ldr r3, [r4, #28] +1001c462: 2b01 cmp r3, #1 +1001c464: d188 bne.n 1001c378 +1001c466: 69a2 ldr r2, [r4, #24] +1001c468: 9b05 ldr r3, [sp, #20] +1001c46a: 4649 mov r1, r9 +1001c46c: 441a add r2, r3 +1001c46e: f8cd 9000 str.w r9, [sp] +1001c472: 4620 mov r0, r4 +1001c474: 464b mov r3, r9 +1001c476: f7ff febf bl 1001c1f8 +1001c47a: e77d b.n 1001c378 +1001c47c: 9905 ldr r1, [sp, #20] +1001c47e: 4602 mov r2, r0 +1001c480: 61a1 str r1, [r4, #24] +1001c482: 4613 mov r3, r2 +1001c484: 4401 add r1, r0 +1001c486: 4620 mov r0, r4 +1001c488: f7ff fe54 bl 1001c134 +1001c48c: e774 b.n 1001c378 +1001c48e: bf00 nop +1001c490: 10051768 .word 0x10051768 +1001c494: 10051764 .word 0x10051764 +1001c498: 10051738 .word 0x10051738 + +1001c49c : +1001c49c: b510 push {r4, lr} +1001c49e: 4604 mov r4, r0 +1001c4a0: f7fe fc26 bl 1001acf0 +1001c4a4: 6964 ldr r4, [r4, #20] +1001c4a6: 3400 adds r4, #0 +1001c4a8: bf18 it ne +1001c4aa: 2401 movne r4, #1 +1001c4ac: f7fe fc32 bl 1001ad14 +1001c4b0: 4620 mov r0, r4 +1001c4b2: bd10 pop {r4, pc} + +1001c4b4 : +1001c4b4: b570 push {r4, r5, r6, lr} +1001c4b6: 2501 movs r5, #1 +1001c4b8: 4085 lsls r5, r0 +1001c4ba: 4c0f ldr r4, [pc, #60] ; (1001c4f8 ) +1001c4bc: b082 sub sp, #8 +1001c4be: 6823 ldr r3, [r4, #0] +1001c4c0: 4606 mov r6, r0 +1001c4c2: 421d tst r5, r3 +1001c4c4: d001 beq.n 1001c4ca +1001c4c6: b002 add sp, #8 +1001c4c8: bd70 pop {r4, r5, r6, pc} +1001c4ca: 4668 mov r0, sp +1001c4cc: a901 add r1, sp, #4 +1001c4ce: f000 fd03 bl 1001ced8 +1001c4d2: 6823 ldr r3, [r4, #0] +1001c4d4: 421d tst r5, r3 +1001c4d6: d005 beq.n 1001c4e4 +1001c4d8: 4668 mov r0, sp +1001c4da: a901 add r1, sp, #4 +1001c4dc: f000 fd04 bl 1001cee8 +1001c4e0: b002 add sp, #8 +1001c4e2: bd70 pop {r4, r5, r6, pc} +1001c4e4: 4805 ldr r0, [pc, #20] ; (1001c4fc ) +1001c4e6: eb00 0086 add.w r0, r0, r6, lsl #2 +1001c4ea: f000 fcd1 bl 1001ce90 +1001c4ee: 6823 ldr r3, [r4, #0] +1001c4f0: 431d orrs r5, r3 +1001c4f2: 6025 str r5, [r4, #0] +1001c4f4: e7f0 b.n 1001c4d8 +1001c4f6: bf00 nop +1001c4f8: 1005177c .word 0x1005177c +1001c4fc: 10051774 .word 0x10051774 + +1001c500 : +1001c500: b538 push {r3, r4, r5, lr} +1001c502: 4d09 ldr r5, [pc, #36] ; (1001c528 ) +1001c504: 4604 mov r4, r0 +1001c506: eb05 0584 add.w r5, r5, r4, lsl #2 +1001c50a: f7ff ffd3 bl 1001c4b4 +1001c50e: e001 b.n 1001c514 +1001c510: f025 fdfa bl 10042108 +1001c514: f242 7110 movw r1, #10000 ; 0x2710 +1001c518: 4628 mov r0, r5 +1001c51a: f000 fcd1 bl 1001cec0 +1001c51e: 2800 cmp r0, #0 +1001c520: 4621 mov r1, r4 +1001c522: 4802 ldr r0, [pc, #8] ; (1001c52c ) +1001c524: dbf4 blt.n 1001c510 +1001c526: bd38 pop {r3, r4, r5, pc} +1001c528: 10051774 .word 0x10051774 +1001c52c: 10047ec8 .word 0x10047ec8 + +1001c530 : +1001c530: b510 push {r4, lr} +1001c532: 4604 mov r4, r0 +1001c534: f7ff ffbe bl 1001c4b4 +1001c538: 4803 ldr r0, [pc, #12] ; (1001c548 ) +1001c53a: eb00 0084 add.w r0, r0, r4, lsl #2 +1001c53e: e8bd 4010 ldmia.w sp!, {r4, lr} +1001c542: f000 bcb5 b.w 1001ceb0 +1001c546: bf00 nop +1001c548: 10051774 .word 0x10051774 + +1001c54c <_freertos_systime_to_ms>: +1001c54c: 4770 bx lr +1001c54e: bf00 nop + +1001c550 <_freertos_systime_to_sec>: +1001c550: 4b02 ldr r3, [pc, #8] ; (1001c55c <_freertos_systime_to_sec+0xc>) +1001c552: fba3 2000 umull r2, r0, r3, r0 +1001c556: 0980 lsrs r0, r0, #6 +1001c558: 4770 bx lr +1001c55a: bf00 nop +1001c55c: 10624dd3 .word 0x10624dd3 + +1001c560 <_freertos_ms_to_systime>: +1001c560: 4770 bx lr +1001c562: bf00 nop + +1001c564 <_freertos_sec_to_systime>: +1001c564: f44f 737a mov.w r3, #1000 ; 0x3e8 +1001c568: fb03 f000 mul.w r0, r3, r0 +1001c56c: 4770 bx lr +1001c56e: bf00 nop + +1001c570 <_freertos_usleep_os>: +1001c570: 4770 bx lr +1001c572: bf00 nop + +1001c574 <_freertos_ATOMIC_SET>: +1001c574: 6001 str r1, [r0, #0] +1001c576: 4770 bx lr + +1001c578 <_freertos_ATOMIC_READ>: +1001c578: 6800 ldr r0, [r0, #0] +1001c57a: 4770 bx lr + +1001c57c <_freertos_modular64>: +1001c57c: e92d 03f0 stmdb sp!, {r4, r5, r6, r7, r8, r9} +1001c580: 460e mov r6, r1 +1001c582: 2700 movs r7, #0 +1001c584: ea56 0407 orrs.w r4, r6, r7 +1001c588: d107 bne.n 1001c59a <_freertos_modular64+0x1e> +1001c58a: e8bd 03f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9} +1001c58e: fbb0 f3f2 udiv r3, r0, r2 +1001c592: fb03 0012 mls r0, r3, r2, r0 +1001c596: 2100 movs r1, #0 +1001c598: 4770 bx lr +1001c59a: 428a cmp r2, r1 +1001c59c: 4614 mov r4, r2 +1001c59e: f04f 0500 mov.w r5, #0 +1001c5a2: d928 bls.n 1001c5f6 <_freertos_modular64+0x7a> +1001c5a4: ea54 0305 orrs.w r3, r4, r5 +1001c5a8: f04f 0601 mov.w r6, #1 +1001c5ac: f04f 0700 mov.w r7, #0 +1001c5b0: d109 bne.n 1001c5c6 <_freertos_modular64+0x4a> +1001c5b2: e00c b.n 1001c5ce <_freertos_modular64+0x52> +1001c5b4: 1924 adds r4, r4, r4 +1001c5b6: eb45 0505 adc.w r5, r5, r5 +1001c5ba: 19b6 adds r6, r6, r6 +1001c5bc: eb47 0707 adc.w r7, r7, r7 +1001c5c0: ea54 0305 orrs.w r3, r4, r5 +1001c5c4: d003 beq.n 1001c5ce <_freertos_modular64+0x52> +1001c5c6: 428d cmp r5, r1 +1001c5c8: bf08 it eq +1001c5ca: 4284 cmpeq r4, r0 +1001c5cc: d3f2 bcc.n 1001c5b4 <_freertos_modular64+0x38> +1001c5ce: 42a9 cmp r1, r5 +1001c5d0: bf08 it eq +1001c5d2: 42a0 cmpeq r0, r4 +1001c5d4: d302 bcc.n 1001c5dc <_freertos_modular64+0x60> +1001c5d6: 1b00 subs r0, r0, r4 +1001c5d8: eb61 0105 sbc.w r1, r1, r5 +1001c5dc: 087f lsrs r7, r7, #1 +1001c5de: ea4f 0636 mov.w r6, r6, rrx +1001c5e2: 086d lsrs r5, r5, #1 +1001c5e4: ea4f 0434 mov.w r4, r4, rrx +1001c5e8: ea56 0307 orrs.w r3, r6, r7 +1001c5ec: d1ef bne.n 1001c5ce <_freertos_modular64+0x52> +1001c5ee: 2100 movs r1, #0 +1001c5f0: e8bd 03f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9} +1001c5f4: 4770 bx lr +1001c5f6: fbb1 f3f2 udiv r3, r1, r2 +1001c5fa: fb03 f902 mul.w r9, r3, r2 +1001c5fe: 46b8 mov r8, r7 +1001c600: ebb0 0008 subs.w r0, r0, r8 +1001c604: eb61 0109 sbc.w r1, r1, r9 +1001c608: e7cc b.n 1001c5a4 <_freertos_modular64+0x28> +1001c60a: bf00 nop + +1001c60c <_freertos_thread_enter>: +1001c60c: 4770 bx lr +1001c60e: bf00 nop + +1001c610 <_freertos_enter_critical>: +1001c610: f7fe bb6e b.w 1001acf0 + +1001c614 <_freertos_exit_critical>: +1001c614: f7fe bb7e b.w 1001ad14 + +1001c618 <_freertos_ATOMIC_SUB_RETURN>: +1001c618: b538 push {r3, r4, r5, lr} +1001c61a: 4604 mov r4, r0 +1001c61c: 460d mov r5, r1 +1001c61e: f7fe fb67 bl 1001acf0 +1001c622: 6823 ldr r3, [r4, #0] +1001c624: 1b5d subs r5, r3, r5 +1001c626: 6025 str r5, [r4, #0] +1001c628: f7fe fb74 bl 1001ad14 +1001c62c: 4628 mov r0, r5 +1001c62e: bd38 pop {r3, r4, r5, pc} + +1001c630 <_freertos_ATOMIC_DEC_RETURN>: +1001c630: b538 push {r3, r4, r5, lr} +1001c632: 4605 mov r5, r0 +1001c634: f7fe fb5c bl 1001acf0 +1001c638: 682c ldr r4, [r5, #0] +1001c63a: 3c01 subs r4, #1 +1001c63c: 602c str r4, [r5, #0] +1001c63e: f7fe fb69 bl 1001ad14 +1001c642: 4620 mov r0, r4 +1001c644: bd38 pop {r3, r4, r5, pc} +1001c646: bf00 nop + +1001c648 <_freertos_ATOMIC_ADD_RETURN>: +1001c648: b538 push {r3, r4, r5, lr} +1001c64a: 4604 mov r4, r0 +1001c64c: 460d mov r5, r1 +1001c64e: f7fe fb4f bl 1001acf0 +1001c652: 6823 ldr r3, [r4, #0] +1001c654: 441d add r5, r3 +1001c656: 6025 str r5, [r4, #0] +1001c658: f7fe fb5c bl 1001ad14 +1001c65c: 4628 mov r0, r5 +1001c65e: bd38 pop {r3, r4, r5, pc} + +1001c660 <_freertos_ATOMIC_INC_RETURN>: +1001c660: b538 push {r3, r4, r5, lr} +1001c662: 4605 mov r5, r0 +1001c664: f7fe fb44 bl 1001acf0 +1001c668: 682c ldr r4, [r5, #0] +1001c66a: 3401 adds r4, #1 +1001c66c: 602c str r4, [r5, #0] +1001c66e: f7fe fb51 bl 1001ad14 +1001c672: 4620 mov r0, r4 +1001c674: bd38 pop {r3, r4, r5, pc} +1001c676: bf00 nop + +1001c678 <_freertos_ATOMIC_SUB>: +1001c678: b538 push {r3, r4, r5, lr} +1001c67a: 4604 mov r4, r0 +1001c67c: 460d mov r5, r1 +1001c67e: f7fe fb37 bl 1001acf0 +1001c682: 6821 ldr r1, [r4, #0] +1001c684: 1b49 subs r1, r1, r5 +1001c686: 6021 str r1, [r4, #0] +1001c688: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001c68c: f7fe bb42 b.w 1001ad14 + +1001c690 <_freertos_ATOMIC_DEC>: +1001c690: b510 push {r4, lr} +1001c692: 4604 mov r4, r0 +1001c694: f7fe fb2c bl 1001acf0 +1001c698: 6823 ldr r3, [r4, #0] +1001c69a: 3b01 subs r3, #1 +1001c69c: 6023 str r3, [r4, #0] +1001c69e: e8bd 4010 ldmia.w sp!, {r4, lr} +1001c6a2: f7fe bb37 b.w 1001ad14 +1001c6a6: bf00 nop + +1001c6a8 <_freertos_ATOMIC_ADD>: +1001c6a8: b538 push {r3, r4, r5, lr} +1001c6aa: 4604 mov r4, r0 +1001c6ac: 460d mov r5, r1 +1001c6ae: f7fe fb1f bl 1001acf0 +1001c6b2: 6821 ldr r1, [r4, #0] +1001c6b4: 4429 add r1, r5 +1001c6b6: 6021 str r1, [r4, #0] +1001c6b8: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001c6bc: f7fe bb2a b.w 1001ad14 + +1001c6c0 <_freertos_ATOMIC_INC>: +1001c6c0: b510 push {r4, lr} +1001c6c2: 4604 mov r4, r0 +1001c6c4: f7fe fb14 bl 1001acf0 +1001c6c8: 6823 ldr r3, [r4, #0] +1001c6ca: 3301 adds r3, #1 +1001c6cc: 6023 str r3, [r4, #0] +1001c6ce: e8bd 4010 ldmia.w sp!, {r4, lr} +1001c6d2: f7fe bb1f b.w 1001ad14 +1001c6d6: bf00 nop + +1001c6d8 <_freertos_enter_critical_from_isr>: +1001c6d8: b508 push {r3, lr} +1001c6da: f7fe fafd bl 1001acd8 +1001c6de: 4b01 ldr r3, [pc, #4] ; (1001c6e4 <_freertos_enter_critical_from_isr+0xc>) +1001c6e0: 6018 str r0, [r3, #0] +1001c6e2: bd08 pop {r3, pc} +1001c6e4: 10051780 .word 0x10051780 + +1001c6e8 <_freertos_malloc>: +1001c6e8: f7fe ba4c b.w 1001ab84 + +1001c6ec <_freertos_zmalloc>: +1001c6ec: b538 push {r3, r4, r5, lr} +1001c6ee: 4605 mov r5, r0 +1001c6f0: f7fe fa48 bl 1001ab84 +1001c6f4: 4604 mov r4, r0 +1001c6f6: b118 cbz r0, 1001c700 <_freertos_zmalloc+0x14> +1001c6f8: 462a mov r2, r5 +1001c6fa: 2100 movs r1, #0 +1001c6fc: f025 fd36 bl 1004216c +1001c700: 4620 mov r0, r4 +1001c702: bd38 pop {r3, r4, r5, pc} + +1001c704 <_freertos_memset>: +1001c704: f025 bd32 b.w 1004216c + +1001c708 <_freertos_mfree>: +1001c708: f7fe b9cc b.w 1001aaa4 + +1001c70c <_freertos_up_sema>: +1001c70c: 2100 movs r1, #0 +1001c70e: 6800 ldr r0, [r0, #0] +1001c710: 460a mov r2, r1 +1001c712: 460b mov r3, r1 +1001c714: f7fe bd80 b.w 1001b218 + +1001c718 <_freertos_wakeup_task>: +1001c718: 2100 movs r1, #0 +1001c71a: 6880 ldr r0, [r0, #8] +1001c71c: 460a mov r2, r1 +1001c71e: 460b mov r3, r1 +1001c720: f7fe bd7a b.w 1001b218 + +1001c724 <_freertos_spinunlock_irqsave>: +1001c724: b508 push {r3, lr} +1001c726: 2100 movs r1, #0 +1001c728: 460b mov r3, r1 +1001c72a: 6800 ldr r0, [r0, #0] +1001c72c: 460a mov r2, r1 +1001c72e: f7fe fd73 bl 1001b218 +1001c732: e8bd 4008 ldmia.w sp!, {r3, lr} +1001c736: f7fe baed b.w 1001ad14 +1001c73a: bf00 nop + +1001c73c <_freertos_spinunlock>: +1001c73c: 2100 movs r1, #0 +1001c73e: 6800 ldr r0, [r0, #0] +1001c740: 460a mov r2, r1 +1001c742: 460b mov r3, r1 +1001c744: f7fe bd68 b.w 1001b218 + +1001c748 <_freertos_exit_critical_mutex>: +1001c748: 2100 movs r1, #0 +1001c74a: 6800 ldr r0, [r0, #0] +1001c74c: 460a mov r2, r1 +1001c74e: 460b mov r3, r1 +1001c750: f7fe bd62 b.w 1001b218 + +1001c754 <_freertos_mutex_put>: +1001c754: 2100 movs r1, #0 +1001c756: 6800 ldr r0, [r0, #0] +1001c758: 460a mov r2, r1 +1001c75a: 460b mov r3, r1 +1001c75c: f7fe bd5c b.w 1001b218 + +1001c760 <_freertos_timerCreate>: +1001c760: f7ff bd2a b.w 1001c1b8 + +1001c764 <_freertos_timerDelete>: +1001c764: b500 push {lr} +1001c766: 2200 movs r2, #0 +1001c768: b083 sub sp, #12 +1001c76a: 9100 str r1, [sp, #0] +1001c76c: 4613 mov r3, r2 +1001c76e: 2105 movs r1, #5 +1001c770: f7ff fd42 bl 1001c1f8 +1001c774: b003 add sp, #12 +1001c776: f85d fb04 ldr.w pc, [sp], #4 +1001c77a: bf00 nop + +1001c77c <_freertos_timerStop>: +1001c77c: b500 push {lr} +1001c77e: 2200 movs r2, #0 +1001c780: b083 sub sp, #12 +1001c782: 9100 str r1, [sp, #0] +1001c784: 4613 mov r3, r2 +1001c786: 2103 movs r1, #3 +1001c788: f7ff fd36 bl 1001c1f8 +1001c78c: b003 add sp, #12 +1001c78e: f85d fb04 ldr.w pc, [sp], #4 +1001c792: bf00 nop + +1001c794 <_freertos_timerChangePeriod>: +1001c794: b500 push {lr} +1001c796: 2900 cmp r1, #0 +1001c798: bf14 ite ne +1001c79a: 460b movne r3, r1 +1001c79c: 2301 moveq r3, #1 +1001c79e: b083 sub sp, #12 +1001c7a0: 9200 str r2, [sp, #0] +1001c7a2: 2104 movs r1, #4 +1001c7a4: 461a mov r2, r3 +1001c7a6: 2300 movs r3, #0 +1001c7a8: f7ff fd26 bl 1001c1f8 +1001c7ac: b003 add sp, #12 +1001c7ae: f85d fb04 ldr.w pc, [sp], #4 +1001c7b2: bf00 nop + +1001c7b4 <_freertos_timerIsTimerActive>: +1001c7b4: f7ff be72 b.w 1001c49c + +1001c7b8 <_freertos_acquire_wakelock>: +1001c7b8: 2002 movs r0, #2 +1001c7ba: f001 be2f b.w 1001e41c +1001c7be: bf00 nop + +1001c7c0 <_freertos_release_wakelock>: +1001c7c0: 2002 movs r0, #2 +1001c7c2: f001 be33 b.w 1001e42c +1001c7c6: bf00 nop + +1001c7c8 <_freertos_get_scheduler_state>: +1001c7c8: b508 push {r3, lr} +1001c7ca: f7ff fbd5 bl 1001bf78 +1001c7ce: b2c0 uxtb r0, r0 +1001c7d0: 2801 cmp r0, #1 +1001c7d2: d005 beq.n 1001c7e0 <_freertos_get_scheduler_state+0x18> +1001c7d4: 2802 cmp r0, #2 +1001c7d6: d005 beq.n 1001c7e4 <_freertos_get_scheduler_state+0x1c> +1001c7d8: 2800 cmp r0, #0 +1001c7da: bf08 it eq +1001c7dc: 2002 moveq r0, #2 +1001c7de: bd08 pop {r3, pc} +1001c7e0: 2000 movs r0, #0 +1001c7e2: bd08 pop {r3, pc} +1001c7e4: 2001 movs r0, #1 +1001c7e6: bd08 pop {r3, pc} + +1001c7e8 <_freertos_thread_exit>: +1001c7e8: 2000 movs r0, #0 +1001c7ea: f7fe bff3 b.w 1001b7d4 +1001c7ee: bf00 nop + +1001c7f0 <_freertos_GetFreeHeapSize>: +1001c7f0: f7fe b974 b.w 1001aadc + +1001c7f4 <_freertos_arc4random>: +1001c7f4: b510 push {r4, lr} +1001c7f6: f7ff f8eb bl 1001b9d0 +1001c7fa: 4908 ldr r1, [pc, #32] ; (1001c81c <_freertos_arc4random+0x28>) +1001c7fc: 4b08 ldr r3, [pc, #32] ; (1001c820 <_freertos_arc4random+0x2c>) +1001c7fe: 680c ldr r4, [r1, #0] +1001c800: f004 12ff and.w r2, r4, #16711935 ; 0xff00ff +1001c804: f422 0200 bic.w r2, r2, #8388608 ; 0x800000 +1001c808: 01d2 lsls r2, r2, #7 +1001c80a: 4023 ands r3, r4 +1001c80c: ea82 2313 eor.w r3, r2, r3, lsr #8 +1001c810: ea83 3340 eor.w r3, r3, r0, lsl #13 +1001c814: ea83 2050 eor.w r0, r3, r0, lsr #9 +1001c818: 6008 str r0, [r1, #0] +1001c81a: bd10 pop {r4, pc} +1001c81c: 1004d834 .word 0x1004d834 +1001c820: 0f80ff00 .word 0x0f80ff00 + +1001c824 <_freertos_get_current_time>: +1001c824: f7ff b8d4 b.w 1001b9d0 + +1001c828 <_freertos_yield_os>: +1001c828: f7fe ba4a b.w 1001acc0 + +1001c82c <_freertos_udelay_os>: +1001c82c: f000 ba18 b.w 1001cc60 + +1001c830 <_freertos_mdelay_os>: +1001c830: f7ff b9fa b.w 1001bc28 + +1001c834 <_freertos_msleep_os>: +1001c834: f7ff b9f8 b.w 1001bc28 + +1001c838 <_freertos_deinit_xqueue>: +1001c838: b538 push {r3, r4, r5, lr} +1001c83a: 4605 mov r5, r0 +1001c83c: f7fe fe58 bl 1001b4f0 +1001c840: 4604 mov r4, r0 +1001c842: 6828 ldr r0, [r5, #0] +1001c844: f7fe fe5e bl 1001b504 +1001c848: 1c20 adds r0, r4, #0 +1001c84a: bf18 it ne +1001c84c: 2001 movne r0, #1 +1001c84e: 4240 negs r0, r0 +1001c850: bd38 pop {r3, r4, r5, pc} +1001c852: bf00 nop + +1001c854 <_freertos_spinlock_free>: +1001c854: b510 push {r4, lr} +1001c856: 4604 mov r4, r0 +1001c858: 6800 ldr r0, [r0, #0] +1001c85a: b108 cbz r0, 1001c860 <_freertos_spinlock_free+0xc> +1001c85c: f7fe fe52 bl 1001b504 +1001c860: 2300 movs r3, #0 +1001c862: 6023 str r3, [r4, #0] +1001c864: bd10 pop {r4, pc} +1001c866: bf00 nop + +1001c868 <_freertos_mutex_free>: +1001c868: b510 push {r4, lr} +1001c86a: 4604 mov r4, r0 +1001c86c: 6800 ldr r0, [r0, #0] +1001c86e: b108 cbz r0, 1001c874 <_freertos_mutex_free+0xc> +1001c870: f7fe fe48 bl 1001b504 +1001c874: 2300 movs r3, #0 +1001c876: 6023 str r3, [r4, #0] +1001c878: bd10 pop {r4, pc} +1001c87a: bf00 nop + +1001c87c <_freertos_free_sema>: +1001c87c: b510 push {r4, lr} +1001c87e: 4604 mov r4, r0 +1001c880: 6800 ldr r0, [r0, #0] +1001c882: b108 cbz r0, 1001c888 <_freertos_free_sema+0xc> +1001c884: f7fe fe3e bl 1001b504 +1001c888: 2300 movs r3, #0 +1001c88a: 6023 str r3, [r4, #0] +1001c88c: bd10 pop {r4, pc} +1001c88e: bf00 nop + +1001c890 <_freertos_push_to_xqueue>: +1001c890: b538 push {r3, r4, r5, lr} +1001c892: 1c53 adds r3, r2, #1 +1001c894: 4604 mov r4, r0 +1001c896: 460d mov r5, r1 +1001c898: d003 beq.n 1001c8a2 <_freertos_push_to_xqueue+0x12> +1001c89a: 4610 mov r0, r2 +1001c89c: f000 fba6 bl 1001cfec +1001c8a0: 4602 mov r2, r0 +1001c8a2: 6820 ldr r0, [r4, #0] +1001c8a4: 4629 mov r1, r5 +1001c8a6: 2300 movs r3, #0 +1001c8a8: f7fe fcb6 bl 1001b218 +1001c8ac: 3801 subs r0, #1 +1001c8ae: bf18 it ne +1001c8b0: f06f 0000 mvnne.w r0, #0 +1001c8b4: bd38 pop {r3, r4, r5, pc} +1001c8b6: bf00 nop + +1001c8b8 <_freertos_pop_from_xqueue>: +1001c8b8: b538 push {r3, r4, r5, lr} +1001c8ba: 1c53 adds r3, r2, #1 +1001c8bc: 4604 mov r4, r0 +1001c8be: 460d mov r5, r1 +1001c8c0: d003 beq.n 1001c8ca <_freertos_pop_from_xqueue+0x12> +1001c8c2: 4610 mov r0, r2 +1001c8c4: f000 fb92 bl 1001cfec +1001c8c8: 4602 mov r2, r0 +1001c8ca: 6820 ldr r0, [r4, #0] +1001c8cc: 4629 mov r1, r5 +1001c8ce: 2300 movs r3, #0 +1001c8d0: f7fe fd7c bl 1001b3cc +1001c8d4: 3801 subs r0, #1 +1001c8d6: bf18 it ne +1001c8d8: f06f 0000 mvnne.w r0, #0 +1001c8dc: bd38 pop {r3, r4, r5, pc} +1001c8de: bf00 nop + +1001c8e0 <_freertos_down_sema>: +1001c8e0: 460a mov r2, r1 +1001c8e2: 3101 adds r1, #1 +1001c8e4: b510 push {r4, lr} +1001c8e6: 4604 mov r4, r0 +1001c8e8: d003 beq.n 1001c8f2 <_freertos_down_sema+0x12> +1001c8ea: 4610 mov r0, r2 +1001c8ec: f000 fb7e bl 1001cfec +1001c8f0: 4602 mov r2, r0 +1001c8f2: 2100 movs r1, #0 +1001c8f4: 460b mov r3, r1 +1001c8f6: 6820 ldr r0, [r4, #0] +1001c8f8: f7fe fd68 bl 1001b3cc +1001c8fc: 1e43 subs r3, r0, #1 +1001c8fe: 4258 negs r0, r3 +1001c900: 4158 adcs r0, r3 +1001c902: bd10 pop {r4, pc} + +1001c904 <_freertos_init_xqueue>: +1001c904: b510 push {r4, lr} +1001c906: 4611 mov r1, r2 +1001c908: 4604 mov r4, r0 +1001c90a: 2200 movs r2, #0 +1001c90c: 4618 mov r0, r3 +1001c90e: f7fe fc57 bl 1001b1c0 +1001c912: 4603 mov r3, r0 +1001c914: f1d0 0001 rsbs r0, r0, #1 +1001c918: bf38 it cc +1001c91a: 2000 movcc r0, #0 +1001c91c: 6023 str r3, [r4, #0] +1001c91e: 4240 negs r0, r0 +1001c920: bd10 pop {r4, pc} +1001c922: bf00 nop + +1001c924 <_freertos_spinlock_irqsave>: +1001c924: b510 push {r4, lr} +1001c926: b082 sub sp, #8 +1001c928: 4604 mov r4, r0 +1001c92a: f7fe f9e1 bl 1001acf0 +1001c92e: e008 b.n 1001c942 <_freertos_spinlock_irqsave+0x1e> +1001c930: f7ff f866 bl 1001ba00 +1001c934: 4909 ldr r1, [pc, #36] ; (1001c95c <_freertos_spinlock_irqsave+0x38>) +1001c936: 4602 mov r2, r0 +1001c938: 9400 str r4, [sp, #0] +1001c93a: 460b mov r3, r1 +1001c93c: 4808 ldr r0, [pc, #32] ; (1001c960 <_freertos_spinlock_irqsave+0x3c>) +1001c93e: f025 fbe3 bl 10042108 +1001c942: 2100 movs r1, #0 +1001c944: 460b mov r3, r1 +1001c946: 6820 ldr r0, [r4, #0] +1001c948: f64e 2260 movw r2, #60000 ; 0xea60 +1001c94c: f7fe fd3e bl 1001b3cc +1001c950: 2801 cmp r0, #1 +1001c952: f04f 0000 mov.w r0, #0 +1001c956: d1eb bne.n 1001c930 <_freertos_spinlock_irqsave+0xc> +1001c958: b002 add sp, #8 +1001c95a: bd10 pop {r4, pc} +1001c95c: 1004804c .word 0x1004804c +1001c960: 10048068 .word 0x10048068 + +1001c964 <_freertos_spinlock>: +1001c964: b510 push {r4, lr} +1001c966: 4604 mov r4, r0 +1001c968: b082 sub sp, #8 +1001c96a: e008 b.n 1001c97e <_freertos_spinlock+0x1a> +1001c96c: f7ff f848 bl 1001ba00 +1001c970: 4909 ldr r1, [pc, #36] ; (1001c998 <_freertos_spinlock+0x34>) +1001c972: 4602 mov r2, r0 +1001c974: 9400 str r4, [sp, #0] +1001c976: 460b mov r3, r1 +1001c978: 4808 ldr r0, [pc, #32] ; (1001c99c <_freertos_spinlock+0x38>) +1001c97a: f025 fbc5 bl 10042108 +1001c97e: 2100 movs r1, #0 +1001c980: 460b mov r3, r1 +1001c982: 6820 ldr r0, [r4, #0] +1001c984: f64e 2260 movw r2, #60000 ; 0xea60 +1001c988: f7fe fd20 bl 1001b3cc +1001c98c: 2801 cmp r0, #1 +1001c98e: f04f 0000 mov.w r0, #0 +1001c992: d1eb bne.n 1001c96c <_freertos_spinlock+0x8> +1001c994: b002 add sp, #8 +1001c996: bd10 pop {r4, pc} +1001c998: 10047ef8 .word 0x10047ef8 +1001c99c: 10048068 .word 0x10048068 + +1001c9a0 <_freertos_enter_critical_mutex>: +1001c9a0: b510 push {r4, lr} +1001c9a2: 4604 mov r4, r0 +1001c9a4: e007 b.n 1001c9b6 <_freertos_enter_critical_mutex+0x16> +1001c9a6: f7ff f82b bl 1001ba00 +1001c9aa: 4a09 ldr r2, [pc, #36] ; (1001c9d0 <_freertos_enter_critical_mutex+0x30>) +1001c9ac: 4601 mov r1, r0 +1001c9ae: 4623 mov r3, r4 +1001c9b0: 4808 ldr r0, [pc, #32] ; (1001c9d4 <_freertos_enter_critical_mutex+0x34>) +1001c9b2: f025 fba9 bl 10042108 +1001c9b6: 2100 movs r1, #0 +1001c9b8: 460b mov r3, r1 +1001c9ba: 6820 ldr r0, [r4, #0] +1001c9bc: f64e 2260 movw r2, #60000 ; 0xea60 +1001c9c0: f7fe fd04 bl 1001b3cc +1001c9c4: 2801 cmp r0, #1 +1001c9c6: f04f 0000 mov.w r0, #0 +1001c9ca: d1ec bne.n 1001c9a6 <_freertos_enter_critical_mutex+0x6> +1001c9cc: bd10 pop {r4, pc} +1001c9ce: bf00 nop +1001c9d0: 1004811c .word 0x1004811c +1001c9d4: 1004808c .word 0x1004808c + +1001c9d8 <_freertos_mutex_get>: +1001c9d8: b510 push {r4, lr} +1001c9da: 4604 mov r4, r0 +1001c9dc: b082 sub sp, #8 +1001c9de: e008 b.n 1001c9f2 <_freertos_mutex_get+0x1a> +1001c9e0: f7ff f80e bl 1001ba00 +1001c9e4: 4909 ldr r1, [pc, #36] ; (1001ca0c <_freertos_mutex_get+0x34>) +1001c9e6: 4602 mov r2, r0 +1001c9e8: 9400 str r4, [sp, #0] +1001c9ea: 460b mov r3, r1 +1001c9ec: 4808 ldr r0, [pc, #32] ; (1001ca10 <_freertos_mutex_get+0x38>) +1001c9ee: f025 fb8b bl 10042108 +1001c9f2: 2100 movs r1, #0 +1001c9f4: 460b mov r3, r1 +1001c9f6: 6820 ldr r0, [r4, #0] +1001c9f8: f64e 2260 movw r2, #60000 ; 0xea60 +1001c9fc: f7fe fce6 bl 1001b3cc +1001ca00: 2801 cmp r0, #1 +1001ca02: f04f 0000 mov.w r0, #0 +1001ca06: d1eb bne.n 1001c9e0 <_freertos_mutex_get+0x8> +1001ca08: b002 add sp, #8 +1001ca0a: bd10 pop {r4, pc} +1001ca0c: 10047ee4 .word 0x10047ee4 +1001ca10: 10048068 .word 0x10048068 + +1001ca14 <_freertos_spinlock_init>: +1001ca14: b510 push {r4, lr} +1001ca16: 4604 mov r4, r0 +1001ca18: 2001 movs r0, #1 +1001ca1a: f7fe fc75 bl 1001b308 +1001ca1e: 6020 str r0, [r4, #0] +1001ca20: bd10 pop {r4, pc} +1001ca22: bf00 nop + +1001ca24 <_freertos_mutex_init>: +1001ca24: b510 push {r4, lr} +1001ca26: 4604 mov r4, r0 +1001ca28: 2001 movs r0, #1 +1001ca2a: f7fe fc6d bl 1001b308 +1001ca2e: 6020 str r0, [r4, #0] +1001ca30: bd10 pop {r4, pc} +1001ca32: bf00 nop + +1001ca34 <_freertos_exit_critical_from_isr>: +1001ca34: 4b01 ldr r3, [pc, #4] ; (1001ca3c <_freertos_exit_critical_from_isr+0x8>) +1001ca36: 6818 ldr r0, [r3, #0] +1001ca38: f7fe b968 b.w 1001ad0c +1001ca3c: 10051780 .word 0x10051780 + +1001ca40 <_freertos_up_sema_from_isr>: +1001ca40: b500 push {lr} +1001ca42: b083 sub sp, #12 +1001ca44: 2100 movs r1, #0 +1001ca46: aa02 add r2, sp, #8 +1001ca48: 460b mov r3, r1 +1001ca4a: f842 1d04 str.w r1, [r2, #-4]! +1001ca4e: 6800 ldr r0, [r0, #0] +1001ca50: f7fe fc7c bl 1001b34c +1001ca54: 9b01 ldr r3, [sp, #4] +1001ca56: b11b cbz r3, 1001ca60 <_freertos_up_sema_from_isr+0x20> +1001ca58: 4b03 ldr r3, [pc, #12] ; (1001ca68 <_freertos_up_sema_from_isr+0x28>) +1001ca5a: f04f 5280 mov.w r2, #268435456 ; 0x10000000 +1001ca5e: 601a str r2, [r3, #0] +1001ca60: b003 add sp, #12 +1001ca62: f85d fb04 ldr.w pc, [sp], #4 +1001ca66: bf00 nop +1001ca68: e000ed04 .word 0xe000ed04 + +1001ca6c <_freertos_init_sema>: +1001ca6c: b510 push {r4, lr} +1001ca6e: 4604 mov r4, r0 +1001ca70: f04f 30ff mov.w r0, #4294967295 +1001ca74: f7fe fbc6 bl 1001b204 +1001ca78: 6020 str r0, [r4, #0] +1001ca7a: bd10 pop {r4, pc} + +1001ca7c <_freertos_create_task>: +1001ca7c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1001ca80: 2500 movs r5, #0 +1001ca82: 4604 mov r4, r0 +1001ca84: b084 sub sp, #16 +1001ca86: 6021 str r1, [r4, #0] +1001ca88: 4689 mov r9, r1 +1001ca8a: 6105 str r5, [r0, #16] +1001ca8c: 6145 str r5, [r0, #20] +1001ca8e: 4629 mov r1, r5 +1001ca90: f04f 30ff mov.w r0, #4294967295 +1001ca94: 4617 mov r7, r2 +1001ca96: 469a mov sl, r3 +1001ca98: f8dd 8030 ldr.w r8, [sp, #48] ; 0x30 +1001ca9c: 9e0d ldr r6, [sp, #52] ; 0x34 +1001ca9e: f7fe fbb1 bl 1001b204 +1001caa2: 4629 mov r1, r5 +1001caa4: 60a0 str r0, [r4, #8] +1001caa6: f04f 30ff mov.w r0, #4294967295 +1001caaa: f7fe fbab bl 1001b204 +1001caae: 45a8 cmp r8, r5 +1001cab0: 60e0 str r0, [r4, #12] +1001cab2: ea4f 0087 mov.w r0, r7, lsl #2 +1001cab6: bf08 it eq +1001cab8: 462e moveq r6, r5 +1001caba: f000 fc8f bl 1001d3dc +1001cabe: f10a 0204 add.w r2, sl, #4 +1001cac2: f104 0e04 add.w lr, r4, #4 +1001cac6: 9503 str r5, [sp, #12] +1001cac8: 9002 str r0, [sp, #8] +1001caca: 9200 str r2, [sp, #0] +1001cacc: 4633 mov r3, r6 +1001cace: 4640 mov r0, r8 +1001cad0: 4649 mov r1, r9 +1001cad2: b2ba uxth r2, r7 +1001cad4: f8cd e004 str.w lr, [sp, #4] +1001cad8: f7fe fd94 bl 1001b604 +1001cadc: 2801 cmp r0, #1 +1001cade: 4605 mov r5, r0 +1001cae0: d005 beq.n 1001caee <_freertos_create_task+0x72> +1001cae2: 6822 ldr r2, [r4, #0] +1001cae4: 4804 ldr r0, [pc, #16] ; (1001caf8 <_freertos_create_task+0x7c>) +1001cae6: 4905 ldr r1, [pc, #20] ; (1001cafc <_freertos_create_task+0x80>) +1001cae8: 462b mov r3, r5 +1001caea: f025 fb0d bl 10042108 +1001caee: 4628 mov r0, r5 +1001caf0: b004 add sp, #16 +1001caf2: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1001caf6: bf00 nop +1001caf8: 100480ac .word 0x100480ac +1001cafc: 10048104 .word 0x10048104 + +1001cb00 <_freertos_memcmp>: +1001cb00: b508 push {r3, lr} +1001cb02: f025 fb27 bl 10042154 +1001cb06: f1d0 0001 rsbs r0, r0, #1 +1001cb0a: bf38 it cc +1001cb0c: 2000 movcc r0, #0 +1001cb0e: bd08 pop {r3, pc} + +1001cb10 <_freertos_memcpy>: +1001cb10: f025 bb26 b.w 10042160 + +1001cb14 <_freertos_get_random_bytes>: +1001cb14: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001cb18: 088e lsrs r6, r1, #2 +1001cb1a: b082 sub sp, #8 +1001cb1c: 460f mov r7, r1 +1001cb1e: 4680 mov r8, r0 +1001cb20: d019 beq.n 1001cb56 <_freertos_get_random_bytes+0x42> +1001cb22: 1f05 subs r5, r0, #4 +1001cb24: 2400 movs r4, #0 +1001cb26: f7ff fe65 bl 1001c7f4 <_freertos_arc4random> +1001cb2a: 3401 adds r4, #1 +1001cb2c: 42a6 cmp r6, r4 +1001cb2e: f845 0f04 str.w r0, [r5, #4]! +1001cb32: d1f8 bne.n 1001cb26 <_freertos_get_random_bytes+0x12> +1001cb34: eba7 0786 sub.w r7, r7, r6, lsl #2 +1001cb38: b14f cbz r7, 1001cb4e <_freertos_get_random_bytes+0x3a> +1001cb3a: f7ff fe5b bl 1001c7f4 <_freertos_arc4random> +1001cb3e: a902 add r1, sp, #8 +1001cb40: f841 0d04 str.w r0, [r1, #-4]! +1001cb44: 463a mov r2, r7 +1001cb46: eb08 0086 add.w r0, r8, r6, lsl #2 +1001cb4a: f025 fb09 bl 10042160 +1001cb4e: 2000 movs r0, #0 +1001cb50: b002 add sp, #8 +1001cb52: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001cb56: 2600 movs r6, #0 +1001cb58: e7ee b.n 1001cb38 <_freertos_get_random_bytes+0x24> +1001cb5a: bf00 nop + +1001cb5c <_freertos_delete_task>: +1001cb5c: 6843 ldr r3, [r0, #4] +1001cb5e: b510 push {r4, lr} +1001cb60: 4604 mov r4, r0 +1001cb62: b1db cbz r3, 1001cb9c <_freertos_delete_task+0x40> +1001cb64: 2100 movs r1, #0 +1001cb66: 2301 movs r3, #1 +1001cb68: 6103 str r3, [r0, #16] +1001cb6a: 460a mov r2, r1 +1001cb6c: 460b mov r3, r1 +1001cb6e: 6880 ldr r0, [r0, #8] +1001cb70: f7fe fb52 bl 1001b218 +1001cb74: f104 000c add.w r0, r4, #12 +1001cb78: f04f 31ff mov.w r1, #4294967295 +1001cb7c: f7ff feb0 bl 1001c8e0 <_freertos_down_sema> +1001cb80: 68a0 ldr r0, [r4, #8] +1001cb82: b108 cbz r0, 1001cb88 <_freertos_delete_task+0x2c> +1001cb84: f7fe fcbe bl 1001b504 +1001cb88: 68e0 ldr r0, [r4, #12] +1001cb8a: 2300 movs r3, #0 +1001cb8c: 60a3 str r3, [r4, #8] +1001cb8e: b108 cbz r0, 1001cb94 <_freertos_delete_task+0x38> +1001cb90: f7fe fcb8 bl 1001b504 +1001cb94: 2300 movs r3, #0 +1001cb96: 60e3 str r3, [r4, #12] +1001cb98: 6063 str r3, [r4, #4] +1001cb9a: bd10 pop {r4, pc} +1001cb9c: 4802 ldr r0, [pc, #8] ; (1001cba8 <_freertos_delete_task+0x4c>) +1001cb9e: 4903 ldr r1, [pc, #12] ; (1001cbac <_freertos_delete_task+0x50>) +1001cba0: e8bd 4010 ldmia.w sp!, {r4, lr} +1001cba4: f025 bab0 b.w 10042108 +1001cba8: 100480d4 .word 0x100480d4 +1001cbac: 1004813c .word 0x1004813c + +1001cbb0 <_freertos_mutex_get_timeout>: +1001cbb0: b510 push {r4, lr} +1001cbb2: 460a mov r2, r1 +1001cbb4: 2100 movs r1, #0 +1001cbb6: b082 sub sp, #8 +1001cbb8: 4604 mov r4, r0 +1001cbba: 460b mov r3, r1 +1001cbbc: 6800 ldr r0, [r0, #0] +1001cbbe: f7fe fc05 bl 1001b3cc +1001cbc2: 2801 cmp r0, #1 +1001cbc4: f04f 0000 mov.w r0, #0 +1001cbc8: d101 bne.n 1001cbce <_freertos_mutex_get_timeout+0x1e> +1001cbca: b002 add sp, #8 +1001cbcc: bd10 pop {r4, pc} +1001cbce: f7fe ff17 bl 1001ba00 +1001cbd2: 4905 ldr r1, [pc, #20] ; (1001cbe8 <_freertos_mutex_get_timeout+0x38>) +1001cbd4: 4602 mov r2, r0 +1001cbd6: 9400 str r4, [sp, #0] +1001cbd8: 460b mov r3, r1 +1001cbda: 4804 ldr r0, [pc, #16] ; (1001cbec <_freertos_mutex_get_timeout+0x3c>) +1001cbdc: f025 fa94 bl 10042108 +1001cbe0: f04f 30ff mov.w r0, #4294967295 +1001cbe4: e7f1 b.n 1001cbca <_freertos_mutex_get_timeout+0x1a> +1001cbe6: bf00 nop +1001cbe8: 10048030 .word 0x10048030 +1001cbec: 10048068 .word 0x10048068 + +1001cbf0 : +1001cbf0: f7fe b87e b.w 1001acf0 + +1001cbf4 : +1001cbf4: f7fe b88e b.w 1001ad14 + +1001cbf8 : +1001cbf8: f7fe b86e b.w 1001acd8 + +1001cbfc : +1001cbfc: b510 push {r4, lr} +1001cbfe: 4604 mov r4, r0 +1001cc00: 2020 movs r0, #32 +1001cc02: f7fe faff bl 1001b204 +1001cc06: 6020 str r0, [r4, #0] +1001cc08: bd10 pop {r4, pc} +1001cc0a: bf00 nop + +1001cc0c : +1001cc0c: 6800 ldr r0, [r0, #0] +1001cc0e: f7fe bc79 b.w 1001b504 +1001cc12: bf00 nop + +1001cc14 : +1001cc14: 2100 movs r1, #0 +1001cc16: 6800 ldr r0, [r0, #0] +1001cc18: 460a mov r2, r1 +1001cc1a: 460b mov r3, r1 +1001cc1c: f7fe bafc b.w 1001b218 + +1001cc20 : +1001cc20: b500 push {lr} +1001cc22: b083 sub sp, #12 +1001cc24: 2100 movs r1, #0 +1001cc26: aa02 add r2, sp, #8 +1001cc28: 460b mov r3, r1 +1001cc2a: f842 1d04 str.w r1, [r2, #-4]! +1001cc2e: 6800 ldr r0, [r0, #0] +1001cc30: f7fe fb8c bl 1001b34c +1001cc34: 9b01 ldr r3, [sp, #4] +1001cc36: b10b cbz r3, 1001cc3c +1001cc38: f7fe f842 bl 1001acc0 +1001cc3c: b003 add sp, #12 +1001cc3e: f85d fb04 ldr.w pc, [sp], #4 +1001cc42: bf00 nop + +1001cc44 : +1001cc44: b508 push {r3, lr} +1001cc46: 2100 movs r1, #0 +1001cc48: 460b mov r3, r1 +1001cc4a: f04f 32ff mov.w r2, #4294967295 +1001cc4e: 6800 ldr r0, [r0, #0] +1001cc50: f7fe fbbc bl 1001b3cc +1001cc54: 2001 movs r0, #1 +1001cc56: bd08 pop {r3, pc} + +1001cc58 : +1001cc58: b900 cbnz r0, 1001cc5c +1001cc5a: 2001 movs r0, #1 +1001cc5c: f7fe bfe4 b.w 1001bc28 + +1001cc60 : +1001cc60: f026 be16 b.w 10043890 <__HalDelayUs_veneer> + +1001cc64 <_htons>: +1001cc64: ba40 rev16 r0, r0 +1001cc66: b280 uxth r0, r0 +1001cc68: 4770 bx lr +1001cc6a: bf00 nop + +1001cc6c <_ntohs>: +1001cc6c: ba40 rev16 r0, r0 +1001cc6e: b280 uxth r0, r0 +1001cc70: 4770 bx lr +1001cc72: bf00 nop + +1001cc74 <_rtw_zvmalloc>: +1001cc74: b510 push {r4, lr} +1001cc76: 4604 mov r4, r0 +1001cc78: f000 fbba bl 1001d3f0 +1001cc7c: b100 cbz r0, 1001cc80 <_rtw_zvmalloc+0xc> +1001cc7e: bd10 pop {r4, pc} +1001cc80: 4b03 ldr r3, [pc, #12] ; (1001cc90 <_rtw_zvmalloc+0x1c>) +1001cc82: 685b ldr r3, [r3, #4] +1001cc84: 2b00 cmp r3, #0 +1001cc86: d0fa beq.n 1001cc7e <_rtw_zvmalloc+0xa> +1001cc88: 4620 mov r0, r4 +1001cc8a: 4798 blx r3 +1001cc8c: bd10 pop {r4, pc} +1001cc8e: bf00 nop +1001cc90: 10047f0c .word 0x10047f0c + +1001cc94 <_rtw_vmfree>: +1001cc94: b508 push {r3, lr} +1001cc96: 4b07 ldr r3, [pc, #28] ; (1001ccb4 <_rtw_vmfree+0x20>) +1001cc98: f64f 72fe movw r2, #65534 ; 0xfffe +1001cc9c: 4403 add r3, r0 +1001cc9e: 4293 cmp r3, r2 +1001cca0: d904 bls.n 1001ccac <_rtw_vmfree+0x18> +1001cca2: 4b05 ldr r3, [pc, #20] ; (1001ccb8 <_rtw_vmfree+0x24>) +1001cca4: 689b ldr r3, [r3, #8] +1001cca6: b103 cbz r3, 1001ccaa <_rtw_vmfree+0x16> +1001cca8: 4798 blx r3 +1001ccaa: bd08 pop {r3, pc} +1001ccac: e8bd 4008 ldmia.w sp!, {r3, lr} +1001ccb0: f000 bb8c b.w 1001d3cc +1001ccb4: e000ffff .word 0xe000ffff +1001ccb8: 10047f0c .word 0x10047f0c + +1001ccbc : +1001ccbc: b508 push {r3, lr} +1001ccbe: 4b04 ldr r3, [pc, #16] ; (1001ccd0 ) +1001ccc0: f8d3 00ec ldr.w r0, [r3, #236] ; 0xec +1001ccc4: b100 cbz r0, 1001ccc8 +1001ccc6: 4780 blx r0 +1001ccc8: 4b02 ldr r3, [pc, #8] ; (1001ccd4 ) +1001ccca: 6018 str r0, [r3, #0] +1001cccc: bd08 pop {r3, pc} +1001ccce: bf00 nop +1001ccd0: 10047f0c .word 0x10047f0c +1001ccd4: 10051784 .word 0x10051784 + +1001ccd8 : +1001ccd8: 4770 bx lr +1001ccda: bf00 nop + +1001ccdc : +1001ccdc: 4b0b ldr r3, [pc, #44] ; (1001cd0c ) +1001ccde: b570 push {r4, r5, r6, lr} +1001cce0: f8d3 00ec ldr.w r0, [r3, #236] ; 0xec +1001cce4: 460c mov r4, r1 +1001cce6: 4615 mov r5, r2 +1001cce8: b100 cbz r0, 1001ccec +1001ccea: 4780 blx r0 +1001ccec: b12c cbz r4, 1001ccfa +1001ccee: 4b08 ldr r3, [pc, #32] ; (1001cd10 ) +1001ccf0: 681a ldr r2, [r3, #0] +1001ccf2: 4282 cmp r2, r0 +1001ccf4: bfc8 it gt +1001ccf6: 6018 strgt r0, [r3, #0] +1001ccf8: bd70 pop {r4, r5, r6, pc} +1001ccfa: 462a mov r2, r5 +1001ccfc: 4603 mov r3, r0 +1001ccfe: 4905 ldr r1, [pc, #20] ; (1001cd14 ) +1001cd00: 4805 ldr r0, [pc, #20] ; (1001cd18 ) +1001cd02: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1001cd06: f025 b9ff b.w 10042108 +1001cd0a: bf00 nop +1001cd0c: 10047f0c .word 0x10047f0c +1001cd10: 10051784 .word 0x10051784 +1001cd14: 10048154 .word 0x10048154 +1001cd18: 10048164 .word 0x10048164 + +1001cd1c : +1001cd1c: b530 push {r4, r5, lr} +1001cd1e: b083 sub sp, #12 +1001cd20: 4605 mov r5, r0 +1001cd22: f7ff ffa7 bl 1001cc74 <_rtw_zvmalloc> +1001cd26: 2301 movs r3, #1 +1001cd28: 4604 mov r4, r0 +1001cd2a: 2000 movs r0, #0 +1001cd2c: 9300 str r3, [sp, #0] +1001cd2e: 462a mov r2, r5 +1001cd30: 4603 mov r3, r0 +1001cd32: 4621 mov r1, r4 +1001cd34: f7ff ffd2 bl 1001ccdc +1001cd38: 4620 mov r0, r4 +1001cd3a: b003 add sp, #12 +1001cd3c: bd30 pop {r4, r5, pc} +1001cd3e: bf00 nop + +1001cd40 : +1001cd40: f7ff bfa8 b.w 1001cc94 <_rtw_vmfree> + +1001cd44 : +1001cd44: b530 push {r4, r5, lr} +1001cd46: 4b09 ldr r3, [pc, #36] ; (1001cd6c ) +1001cd48: b083 sub sp, #12 +1001cd4a: 68dc ldr r4, [r3, #12] +1001cd4c: 4605 mov r5, r0 +1001cd4e: b10c cbz r4, 1001cd54 +1001cd50: 47a0 blx r4 +1001cd52: 4604 mov r4, r0 +1001cd54: 2000 movs r0, #0 +1001cd56: 2301 movs r3, #1 +1001cd58: 9300 str r3, [sp, #0] +1001cd5a: 462a mov r2, r5 +1001cd5c: 4603 mov r3, r0 +1001cd5e: 4621 mov r1, r4 +1001cd60: f7ff ffbc bl 1001ccdc +1001cd64: 4620 mov r0, r4 +1001cd66: b003 add sp, #12 +1001cd68: bd30 pop {r4, r5, pc} +1001cd6a: bf00 nop +1001cd6c: 10047f0c .word 0x10047f0c + +1001cd70 : +1001cd70: b530 push {r4, r5, lr} +1001cd72: 4b09 ldr r3, [pc, #36] ; (1001cd98 ) +1001cd74: b083 sub sp, #12 +1001cd76: 691c ldr r4, [r3, #16] +1001cd78: 4605 mov r5, r0 +1001cd7a: b10c cbz r4, 1001cd80 +1001cd7c: 47a0 blx r4 +1001cd7e: 4604 mov r4, r0 +1001cd80: 2000 movs r0, #0 +1001cd82: 2301 movs r3, #1 +1001cd84: 9300 str r3, [sp, #0] +1001cd86: 462a mov r2, r5 +1001cd88: 4603 mov r3, r0 +1001cd8a: 4621 mov r1, r4 +1001cd8c: f7ff ffa6 bl 1001ccdc +1001cd90: 4620 mov r0, r4 +1001cd92: b003 add sp, #12 +1001cd94: bd30 pop {r4, r5, pc} +1001cd96: bf00 nop +1001cd98: 10047f0c .word 0x10047f0c + +1001cd9c : +1001cd9c: b508 push {r3, lr} +1001cd9e: 4b02 ldr r3, [pc, #8] ; (1001cda8 ) +1001cda0: 695b ldr r3, [r3, #20] +1001cda2: b103 cbz r3, 1001cda6 +1001cda4: 4798 blx r3 +1001cda6: bd08 pop {r3, pc} +1001cda8: 10047f0c .word 0x10047f0c + +1001cdac : +1001cdac: b508 push {r3, lr} +1001cdae: 4b02 ldr r3, [pc, #8] ; (1001cdb8 ) +1001cdb0: 699b ldr r3, [r3, #24] +1001cdb2: b103 cbz r3, 1001cdb6 +1001cdb4: 4798 blx r3 +1001cdb6: bd08 pop {r3, pc} +1001cdb8: 10047f0c .word 0x10047f0c + +1001cdbc : +1001cdbc: b508 push {r3, lr} +1001cdbe: 4b03 ldr r3, [pc, #12] ; (1001cdcc ) +1001cdc0: 69db ldr r3, [r3, #28] +1001cdc2: b10b cbz r3, 1001cdc8 +1001cdc4: 4798 blx r3 +1001cdc6: bd08 pop {r3, pc} +1001cdc8: 4618 mov r0, r3 +1001cdca: bd08 pop {r3, pc} +1001cdcc: 10047f0c .word 0x10047f0c + +1001cdd0 : +1001cdd0: b508 push {r3, lr} +1001cdd2: 4b02 ldr r3, [pc, #8] ; (1001cddc ) +1001cdd4: 6a1b ldr r3, [r3, #32] +1001cdd6: b103 cbz r3, 1001cdda +1001cdd8: 4798 blx r3 +1001cdda: bd08 pop {r3, pc} +1001cddc: 10047f0c .word 0x10047f0c + +1001cde0 : +1001cde0: 6000 str r0, [r0, #0] +1001cde2: 6040 str r0, [r0, #4] +1001cde4: 4770 bx lr +1001cde6: bf00 nop + +1001cde8 : +1001cde8: 6803 ldr r3, [r0, #0] +1001cdea: 1a1b subs r3, r3, r0 +1001cdec: 4258 negs r0, r3 +1001cdee: 4158 adcs r0, r3 +1001cdf0: 4770 bx lr +1001cdf2: bf00 nop + +1001cdf4 : +1001cdf4: 680b ldr r3, [r1, #0] +1001cdf6: 6058 str r0, [r3, #4] +1001cdf8: 6003 str r3, [r0, #0] +1001cdfa: 6041 str r1, [r0, #4] +1001cdfc: 6008 str r0, [r1, #0] +1001cdfe: 4770 bx lr + +1001ce00 : +1001ce00: 684b ldr r3, [r1, #4] +1001ce02: 6048 str r0, [r1, #4] +1001ce04: e880 000a stmia.w r0, {r1, r3} +1001ce08: 6018 str r0, [r3, #0] +1001ce0a: 4770 bx lr + +1001ce0c : +1001ce0c: e890 000c ldmia.w r0, {r2, r3} +1001ce10: 6053 str r3, [r2, #4] +1001ce12: 601a str r2, [r3, #0] +1001ce14: 6000 str r0, [r0, #0] +1001ce16: 6040 str r0, [r0, #4] +1001ce18: 4770 bx lr +1001ce1a: bf00 nop + +1001ce1c : +1001ce1c: b508 push {r3, lr} +1001ce1e: 4b02 ldr r3, [pc, #8] ; (1001ce28 ) +1001ce20: 6a5b ldr r3, [r3, #36] ; 0x24 +1001ce22: b103 cbz r3, 1001ce26 +1001ce24: 4798 blx r3 +1001ce26: bd08 pop {r3, pc} +1001ce28: 10047f0c .word 0x10047f0c + +1001ce2c : +1001ce2c: b508 push {r3, lr} +1001ce2e: 4b02 ldr r3, [pc, #8] ; (1001ce38 ) +1001ce30: 6a9b ldr r3, [r3, #40] ; 0x28 +1001ce32: b103 cbz r3, 1001ce36 +1001ce34: 4798 blx r3 +1001ce36: bd08 pop {r3, pc} +1001ce38: 10047f0c .word 0x10047f0c + +1001ce3c : +1001ce3c: b508 push {r3, lr} +1001ce3e: 4b02 ldr r3, [pc, #8] ; (1001ce48 ) +1001ce40: 6adb ldr r3, [r3, #44] ; 0x2c +1001ce42: b103 cbz r3, 1001ce46 +1001ce44: 4798 blx r3 +1001ce46: bd08 pop {r3, pc} +1001ce48: 10047f0c .word 0x10047f0c + +1001ce4c : +1001ce4c: b508 push {r3, lr} +1001ce4e: 4b02 ldr r3, [pc, #8] ; (1001ce58 ) +1001ce50: 6b1b ldr r3, [r3, #48] ; 0x30 +1001ce52: b103 cbz r3, 1001ce56 +1001ce54: 4798 blx r3 +1001ce56: bd08 pop {r3, pc} +1001ce58: 10047f0c .word 0x10047f0c + +1001ce5c : +1001ce5c: b508 push {r3, lr} +1001ce5e: 4b03 ldr r3, [pc, #12] ; (1001ce6c ) +1001ce60: 6b5b ldr r3, [r3, #52] ; 0x34 +1001ce62: b10b cbz r3, 1001ce68 +1001ce64: 4798 blx r3 +1001ce66: bd08 pop {r3, pc} +1001ce68: 4618 mov r0, r3 +1001ce6a: bd08 pop {r3, pc} +1001ce6c: 10047f0c .word 0x10047f0c + +1001ce70 : +1001ce70: b538 push {r3, r4, r5, lr} +1001ce72: 4d06 ldr r5, [pc, #24] ; (1001ce8c ) +1001ce74: 4604 mov r4, r0 +1001ce76: 6b6b ldr r3, [r5, #52] ; 0x34 +1001ce78: 4620 mov r0, r4 +1001ce7a: f04f 31ff mov.w r1, #4294967295 +1001ce7e: b11b cbz r3, 1001ce88 +1001ce80: 4798 blx r3 +1001ce82: 2801 cmp r0, #1 +1001ce84: d1f7 bne.n 1001ce76 +1001ce86: bd38 pop {r3, r4, r5, pc} +1001ce88: e7fe b.n 1001ce88 +1001ce8a: bf00 nop +1001ce8c: 10047f0c .word 0x10047f0c + +1001ce90 : +1001ce90: b508 push {r3, lr} +1001ce92: 4b02 ldr r3, [pc, #8] ; (1001ce9c ) +1001ce94: 6b9b ldr r3, [r3, #56] ; 0x38 +1001ce96: b103 cbz r3, 1001ce9a +1001ce98: 4798 blx r3 +1001ce9a: bd08 pop {r3, pc} +1001ce9c: 10047f0c .word 0x10047f0c + +1001cea0 : +1001cea0: b508 push {r3, lr} +1001cea2: 4b02 ldr r3, [pc, #8] ; (1001ceac ) +1001cea4: 6bdb ldr r3, [r3, #60] ; 0x3c +1001cea6: b103 cbz r3, 1001ceaa +1001cea8: 4798 blx r3 +1001ceaa: bd08 pop {r3, pc} +1001ceac: 10047f0c .word 0x10047f0c + +1001ceb0 : +1001ceb0: b508 push {r3, lr} +1001ceb2: 4b02 ldr r3, [pc, #8] ; (1001cebc ) +1001ceb4: 6c9b ldr r3, [r3, #72] ; 0x48 +1001ceb6: b103 cbz r3, 1001ceba +1001ceb8: 4798 blx r3 +1001ceba: bd08 pop {r3, pc} +1001cebc: 10047f0c .word 0x10047f0c + +1001cec0 : +1001cec0: b508 push {r3, lr} +1001cec2: 4b04 ldr r3, [pc, #16] ; (1001ced4 ) +1001cec4: 6c5b ldr r3, [r3, #68] ; 0x44 +1001cec6: b10b cbz r3, 1001cecc +1001cec8: 4798 blx r3 +1001ceca: bd08 pop {r3, pc} +1001cecc: f04f 30ff mov.w r0, #4294967295 +1001ced0: bd08 pop {r3, pc} +1001ced2: bf00 nop +1001ced4: 10047f0c .word 0x10047f0c + +1001ced8 : +1001ced8: b508 push {r3, lr} +1001ceda: 4b02 ldr r3, [pc, #8] ; (1001cee4 ) +1001cedc: 6cdb ldr r3, [r3, #76] ; 0x4c +1001cede: b103 cbz r3, 1001cee2 +1001cee0: 4798 blx r3 +1001cee2: bd08 pop {r3, pc} +1001cee4: 10047f0c .word 0x10047f0c + +1001cee8 : +1001cee8: b508 push {r3, lr} +1001ceea: 4b02 ldr r3, [pc, #8] ; (1001cef4 ) +1001ceec: 6d1b ldr r3, [r3, #80] ; 0x50 +1001ceee: b103 cbz r3, 1001cef2 +1001cef0: 4798 blx r3 +1001cef2: bd08 pop {r3, pc} +1001cef4: 10047f0c .word 0x10047f0c + +1001cef8 : +1001cef8: b508 push {r3, lr} +1001cefa: 4b02 ldr r3, [pc, #8] ; (1001cf04 ) +1001cefc: 6f5b ldr r3, [r3, #116] ; 0x74 +1001cefe: b103 cbz r3, 1001cf02 +1001cf00: 4798 blx r3 +1001cf02: bd08 pop {r3, pc} +1001cf04: 10047f0c .word 0x10047f0c + +1001cf08 : +1001cf08: b508 push {r3, lr} +1001cf0a: 4b02 ldr r3, [pc, #8] ; (1001cf14 ) +1001cf0c: 6f9b ldr r3, [r3, #120] ; 0x78 +1001cf0e: b103 cbz r3, 1001cf12 +1001cf10: 4798 blx r3 +1001cf12: bd08 pop {r3, pc} +1001cf14: 10047f0c .word 0x10047f0c + +1001cf18 : +1001cf18: b508 push {r3, lr} +1001cf1a: 4b03 ldr r3, [pc, #12] ; (1001cf28 ) +1001cf1c: 6e5b ldr r3, [r3, #100] ; 0x64 +1001cf1e: b10b cbz r3, 1001cf24 +1001cf20: 4798 blx r3 +1001cf22: bd08 pop {r3, pc} +1001cf24: 4618 mov r0, r3 +1001cf26: bd08 pop {r3, pc} +1001cf28: 10047f0c .word 0x10047f0c + +1001cf2c : +1001cf2c: b508 push {r3, lr} +1001cf2e: 4b02 ldr r3, [pc, #8] ; (1001cf38 ) +1001cf30: 6e9b ldr r3, [r3, #104] ; 0x68 +1001cf32: b103 cbz r3, 1001cf36 +1001cf34: 4798 blx r3 +1001cf36: bd08 pop {r3, pc} +1001cf38: 10047f0c .word 0x10047f0c + +1001cf3c : +1001cf3c: b508 push {r3, lr} +1001cf3e: 4b04 ldr r3, [pc, #16] ; (1001cf50 ) +1001cf40: 6edb ldr r3, [r3, #108] ; 0x6c +1001cf42: 6000 str r0, [r0, #0] +1001cf44: 6040 str r0, [r0, #4] +1001cf46: 3008 adds r0, #8 +1001cf48: b103 cbz r3, 1001cf4c +1001cf4a: 4798 blx r3 +1001cf4c: bd08 pop {r3, pc} +1001cf4e: bf00 nop +1001cf50: 10047f0c .word 0x10047f0c + +1001cf54 : +1001cf54: 6803 ldr r3, [r0, #0] +1001cf56: 1a1b subs r3, r3, r0 +1001cf58: 4258 negs r0, r3 +1001cf5a: 4158 adcs r0, r3 +1001cf5c: 4770 bx lr +1001cf5e: bf00 nop + +1001cf60 : +1001cf60: 1a0b subs r3, r1, r0 +1001cf62: 4258 negs r0, r3 +1001cf64: 4158 adcs r0, r3 +1001cf66: 4770 bx lr + +1001cf68 : +1001cf68: b508 push {r3, lr} +1001cf6a: 4b02 ldr r3, [pc, #8] ; (1001cf74 ) +1001cf6c: 6edb ldr r3, [r3, #108] ; 0x6c +1001cf6e: b103 cbz r3, 1001cf72 +1001cf70: 4798 blx r3 +1001cf72: bd08 pop {r3, pc} +1001cf74: 10047f0c .word 0x10047f0c + +1001cf78 : +1001cf78: b508 push {r3, lr} +1001cf7a: 4b02 ldr r3, [pc, #8] ; (1001cf84 ) +1001cf7c: 6f1b ldr r3, [r3, #112] ; 0x70 +1001cf7e: b103 cbz r3, 1001cf82 +1001cf80: 4798 blx r3 +1001cf82: bd08 pop {r3, pc} +1001cf84: 10047f0c .word 0x10047f0c + +1001cf88 : +1001cf88: b508 push {r3, lr} +1001cf8a: 4b02 ldr r3, [pc, #8] ; (1001cf94 ) +1001cf8c: 6f5b ldr r3, [r3, #116] ; 0x74 +1001cf8e: b103 cbz r3, 1001cf92 +1001cf90: 4798 blx r3 +1001cf92: bd08 pop {r3, pc} +1001cf94: 10047f0c .word 0x10047f0c + +1001cf98 : +1001cf98: b508 push {r3, lr} +1001cf9a: 4b02 ldr r3, [pc, #8] ; (1001cfa4 ) +1001cf9c: 6f9b ldr r3, [r3, #120] ; 0x78 +1001cf9e: b103 cbz r3, 1001cfa2 +1001cfa0: 4798 blx r3 +1001cfa2: bd08 pop {r3, pc} +1001cfa4: 10047f0c .word 0x10047f0c + +1001cfa8 : +1001cfa8: b508 push {r3, lr} +1001cfaa: 4b03 ldr r3, [pc, #12] ; (1001cfb8 ) +1001cfac: f8d3 0094 ldr.w r0, [r3, #148] ; 0x94 +1001cfb0: b100 cbz r0, 1001cfb4 +1001cfb2: 4780 blx r0 +1001cfb4: bd08 pop {r3, pc} +1001cfb6: bf00 nop +1001cfb8: 10047f0c .word 0x10047f0c + +1001cfbc : +1001cfbc: b508 push {r3, lr} +1001cfbe: 4b04 ldr r3, [pc, #16] ; (1001cfd0 ) +1001cfc0: f8d3 3098 ldr.w r3, [r3, #152] ; 0x98 +1001cfc4: b10b cbz r3, 1001cfca +1001cfc6: 4798 blx r3 +1001cfc8: bd08 pop {r3, pc} +1001cfca: 4618 mov r0, r3 +1001cfcc: bd08 pop {r3, pc} +1001cfce: bf00 nop +1001cfd0: 10047f0c .word 0x10047f0c + +1001cfd4 : +1001cfd4: b508 push {r3, lr} +1001cfd6: 4b04 ldr r3, [pc, #16] ; (1001cfe8 ) +1001cfd8: f8d3 309c ldr.w r3, [r3, #156] ; 0x9c +1001cfdc: b10b cbz r3, 1001cfe2 +1001cfde: 4798 blx r3 +1001cfe0: bd08 pop {r3, pc} +1001cfe2: 4618 mov r0, r3 +1001cfe4: bd08 pop {r3, pc} +1001cfe6: bf00 nop +1001cfe8: 10047f0c .word 0x10047f0c + +1001cfec : +1001cfec: b508 push {r3, lr} +1001cfee: 4b04 ldr r3, [pc, #16] ; (1001d000 ) +1001cff0: f8d3 30a0 ldr.w r3, [r3, #160] ; 0xa0 +1001cff4: b10b cbz r3, 1001cffa +1001cff6: 4798 blx r3 +1001cff8: bd08 pop {r3, pc} +1001cffa: 4618 mov r0, r3 +1001cffc: bd08 pop {r3, pc} +1001cffe: bf00 nop +1001d000: 10047f0c .word 0x10047f0c + +1001d004 : +1001d004: b508 push {r3, lr} +1001d006: 4b04 ldr r3, [pc, #16] ; (1001d018 ) +1001d008: f8d3 30a4 ldr.w r3, [r3, #164] ; 0xa4 +1001d00c: b10b cbz r3, 1001d012 +1001d00e: 4798 blx r3 +1001d010: bd08 pop {r3, pc} +1001d012: 4618 mov r0, r3 +1001d014: bd08 pop {r3, pc} +1001d016: bf00 nop +1001d018: 10047f0c .word 0x10047f0c + +1001d01c : +1001d01c: b538 push {r3, r4, r5, lr} +1001d01e: 4c0a ldr r4, [pc, #40] ; (1001d048 ) +1001d020: 4605 mov r5, r0 +1001d022: f8d4 3094 ldr.w r3, [r4, #148] ; 0x94 +1001d026: b133 cbz r3, 1001d036 +1001d028: 4798 blx r3 +1001d02a: f8d4 3098 ldr.w r3, [r4, #152] ; 0x98 +1001d02e: 1b40 subs r0, r0, r5 +1001d030: b13b cbz r3, 1001d042 +1001d032: 4798 blx r3 +1001d034: bd38 pop {r3, r4, r5, pc} +1001d036: 4618 mov r0, r3 +1001d038: f8d4 3098 ldr.w r3, [r4, #152] ; 0x98 +1001d03c: 1b40 subs r0, r0, r5 +1001d03e: 2b00 cmp r3, #0 +1001d040: d1f7 bne.n 1001d032 +1001d042: 4618 mov r0, r3 +1001d044: bd38 pop {r3, r4, r5, pc} +1001d046: bf00 nop +1001d048: 10047f0c .word 0x10047f0c + +1001d04c : +1001d04c: b508 push {r3, lr} +1001d04e: 4b03 ldr r3, [pc, #12] ; (1001d05c ) +1001d050: f8d3 30a8 ldr.w r3, [r3, #168] ; 0xa8 +1001d054: b103 cbz r3, 1001d058 +1001d056: 4798 blx r3 +1001d058: bd08 pop {r3, pc} +1001d05a: bf00 nop +1001d05c: 10047f0c .word 0x10047f0c + +1001d060 : +1001d060: b508 push {r3, lr} +1001d062: 4b03 ldr r3, [pc, #12] ; (1001d070 ) +1001d064: f8d3 30ac ldr.w r3, [r3, #172] ; 0xac +1001d068: b103 cbz r3, 1001d06c +1001d06a: 4798 blx r3 +1001d06c: bd08 pop {r3, pc} +1001d06e: bf00 nop +1001d070: 10047f0c .word 0x10047f0c + +1001d074 : +1001d074: b508 push {r3, lr} +1001d076: 4b03 ldr r3, [pc, #12] ; (1001d084 ) +1001d078: f8d3 30b0 ldr.w r3, [r3, #176] ; 0xb0 +1001d07c: b103 cbz r3, 1001d080 +1001d07e: 4798 blx r3 +1001d080: bd08 pop {r3, pc} +1001d082: bf00 nop +1001d084: 10047f0c .word 0x10047f0c + +1001d088 : +1001d088: b508 push {r3, lr} +1001d08a: 4b03 ldr r3, [pc, #12] ; (1001d098 ) +1001d08c: f8d3 30b4 ldr.w r3, [r3, #180] ; 0xb4 +1001d090: b103 cbz r3, 1001d094 +1001d092: 4798 blx r3 +1001d094: bd08 pop {r3, pc} +1001d096: bf00 nop +1001d098: 10047f0c .word 0x10047f0c + +1001d09c : +1001d09c: b508 push {r3, lr} +1001d09e: 4b03 ldr r3, [pc, #12] ; (1001d0ac ) +1001d0a0: f8d3 30bc ldr.w r3, [r3, #188] ; 0xbc +1001d0a4: b103 cbz r3, 1001d0a8 +1001d0a6: 4798 blx r3 +1001d0a8: bd08 pop {r3, pc} +1001d0aa: bf00 nop +1001d0ac: 10047f0c .word 0x10047f0c + +1001d0b0 : +1001d0b0: b508 push {r3, lr} +1001d0b2: 4b03 ldr r3, [pc, #12] ; (1001d0c0 ) +1001d0b4: f8d3 30cc ldr.w r3, [r3, #204] ; 0xcc +1001d0b8: b103 cbz r3, 1001d0bc +1001d0ba: 4798 blx r3 +1001d0bc: bd08 pop {r3, pc} +1001d0be: bf00 nop +1001d0c0: 10047f0c .word 0x10047f0c + +1001d0c4 : +1001d0c4: b508 push {r3, lr} +1001d0c6: 4b04 ldr r3, [pc, #16] ; (1001d0d8 ) +1001d0c8: f8d3 30dc ldr.w r3, [r3, #220] ; 0xdc +1001d0cc: b10b cbz r3, 1001d0d2 +1001d0ce: 4798 blx r3 +1001d0d0: bd08 pop {r3, pc} +1001d0d2: 4618 mov r0, r3 +1001d0d4: bd08 pop {r3, pc} +1001d0d6: bf00 nop +1001d0d8: 10047f0c .word 0x10047f0c + +1001d0dc : +1001d0dc: b508 push {r3, lr} +1001d0de: 4b06 ldr r3, [pc, #24] ; (1001d0f8 ) +1001d0e0: f8d3 30e0 ldr.w r3, [r3, #224] ; 0xe0 +1001d0e4: b12b cbz r3, 1001d0f2 +1001d0e6: 4798 blx r3 +1001d0e8: f1d0 0001 rsbs r0, r0, #1 +1001d0ec: bf38 it cc +1001d0ee: 2000 movcc r0, #0 +1001d0f0: bd08 pop {r3, pc} +1001d0f2: 2001 movs r0, #1 +1001d0f4: bd08 pop {r3, pc} +1001d0f6: bf00 nop +1001d0f8: 10047f0c .word 0x10047f0c + +1001d0fc : +1001d0fc: b510 push {r4, lr} +1001d0fe: 4c04 ldr r4, [pc, #16] ; (1001d110 ) +1001d100: f8d4 40e4 ldr.w r4, [r4, #228] ; 0xe4 +1001d104: b10c cbz r4, 1001d10a +1001d106: 47a0 blx r4 +1001d108: bd10 pop {r4, pc} +1001d10a: 2000 movs r0, #0 +1001d10c: 2100 movs r1, #0 +1001d10e: bd10 pop {r4, pc} +1001d110: 10047f0c .word 0x10047f0c + +1001d114 : +1001d114: b508 push {r3, lr} +1001d116: 4b04 ldr r3, [pc, #16] ; (1001d128 ) +1001d118: f8d3 30e8 ldr.w r3, [r3, #232] ; 0xe8 +1001d11c: b10b cbz r3, 1001d122 +1001d11e: 4798 blx r3 +1001d120: bd08 pop {r3, pc} +1001d122: 4618 mov r0, r3 +1001d124: bd08 pop {r3, pc} +1001d126: bf00 nop +1001d128: 10047f0c .word 0x10047f0c + +1001d12c : +1001d12c: b508 push {r3, lr} +1001d12e: 4b03 ldr r3, [pc, #12] ; (1001d13c ) +1001d130: f8d3 00ec ldr.w r0, [r3, #236] ; 0xec +1001d134: b100 cbz r0, 1001d138 +1001d136: 4780 blx r0 +1001d138: bd08 pop {r3, pc} +1001d13a: bf00 nop +1001d13c: 10047f0c .word 0x10047f0c + +1001d140 : +1001d140: 2000 movs r0, #0 +1001d142: 4770 bx lr + +1001d144 : +1001d144: 4770 bx lr +1001d146: bf00 nop + +1001d148 : +1001d148: 4770 bx lr +1001d14a: bf00 nop + +1001d14c : +1001d14c: 4770 bx lr +1001d14e: bf00 nop + +1001d150 : +1001d150: 4770 bx lr +1001d152: bf00 nop + +1001d154 : +1001d154: b508 push {r3, lr} +1001d156: 4b03 ldr r3, [pc, #12] ; (1001d164 ) +1001d158: f8d3 3118 ldr.w r3, [r3, #280] ; 0x118 +1001d15c: b103 cbz r3, 1001d160 +1001d15e: 4798 blx r3 +1001d160: bd08 pop {r3, pc} +1001d162: bf00 nop +1001d164: 10047f0c .word 0x10047f0c + +1001d168 : +1001d168: b508 push {r3, lr} +1001d16a: 4b03 ldr r3, [pc, #12] ; (1001d178 ) +1001d16c: f8d3 311c ldr.w r3, [r3, #284] ; 0x11c +1001d170: b103 cbz r3, 1001d174 +1001d172: 4798 blx r3 +1001d174: bd08 pop {r3, pc} +1001d176: bf00 nop +1001d178: 10047f0c .word 0x10047f0c + +1001d17c : +1001d17c: b530 push {r4, r5, lr} +1001d17e: 4c07 ldr r4, [pc, #28] ; (1001d19c ) +1001d180: b083 sub sp, #12 +1001d182: f8d4 40f0 ldr.w r4, [r4, #240] ; 0xf0 +1001d186: b134 cbz r4, 1001d196 +1001d188: 9d06 ldr r5, [sp, #24] +1001d18a: 9500 str r5, [sp, #0] +1001d18c: 9d07 ldr r5, [sp, #28] +1001d18e: 9501 str r5, [sp, #4] +1001d190: 47a0 blx r4 +1001d192: b003 add sp, #12 +1001d194: bd30 pop {r4, r5, pc} +1001d196: 2001 movs r0, #1 +1001d198: b003 add sp, #12 +1001d19a: bd30 pop {r4, r5, pc} +1001d19c: 10047f0c .word 0x10047f0c + +1001d1a0 : +1001d1a0: b508 push {r3, lr} +1001d1a2: 4b03 ldr r3, [pc, #12] ; (1001d1b0 ) +1001d1a4: f8d3 30f4 ldr.w r3, [r3, #244] ; 0xf4 +1001d1a8: b103 cbz r3, 1001d1ac +1001d1aa: 4798 blx r3 +1001d1ac: bd08 pop {r3, pc} +1001d1ae: bf00 nop +1001d1b0: 10047f0c .word 0x10047f0c + +1001d1b4 : +1001d1b4: b508 push {r3, lr} +1001d1b6: 4b03 ldr r3, [pc, #12] ; (1001d1c4 ) +1001d1b8: f8d3 30f8 ldr.w r3, [r3, #248] ; 0xf8 +1001d1bc: b103 cbz r3, 1001d1c0 +1001d1be: 4798 blx r3 +1001d1c0: bd08 pop {r3, pc} +1001d1c2: bf00 nop +1001d1c4: 10047f0c .word 0x10047f0c + +1001d1c8 : +1001d1c8: b530 push {r4, r5, lr} +1001d1ca: 4c06 ldr r4, [pc, #24] ; (1001d1e4 ) +1001d1cc: b083 sub sp, #12 +1001d1ce: f8d4 4104 ldr.w r4, [r4, #260] ; 0x104 +1001d1d2: b124 cbz r4, 1001d1de +1001d1d4: 9d06 ldr r5, [sp, #24] +1001d1d6: 9500 str r5, [sp, #0] +1001d1d8: 47a0 blx r4 +1001d1da: b003 add sp, #12 +1001d1dc: bd30 pop {r4, r5, pc} +1001d1de: 4620 mov r0, r4 +1001d1e0: e7fb b.n 1001d1da +1001d1e2: bf00 nop +1001d1e4: 10047f0c .word 0x10047f0c + +1001d1e8 : +1001d1e8: b508 push {r3, lr} +1001d1ea: 4b04 ldr r3, [pc, #16] ; (1001d1fc ) +1001d1ec: f8d3 3108 ldr.w r3, [r3, #264] ; 0x108 +1001d1f0: b10b cbz r3, 1001d1f6 +1001d1f2: 4798 blx r3 +1001d1f4: bd08 pop {r3, pc} +1001d1f6: 4618 mov r0, r3 +1001d1f8: bd08 pop {r3, pc} +1001d1fa: bf00 nop +1001d1fc: 10047f0c .word 0x10047f0c + +1001d200 : +1001d200: b508 push {r3, lr} +1001d202: 4b04 ldr r3, [pc, #16] ; (1001d214 ) +1001d204: f8d3 310c ldr.w r3, [r3, #268] ; 0x10c +1001d208: b10b cbz r3, 1001d20e +1001d20a: 4798 blx r3 +1001d20c: bd08 pop {r3, pc} +1001d20e: 4618 mov r0, r3 +1001d210: bd08 pop {r3, pc} +1001d212: bf00 nop +1001d214: 10047f0c .word 0x10047f0c + +1001d218 : +1001d218: b508 push {r3, lr} +1001d21a: 4b04 ldr r3, [pc, #16] ; (1001d22c ) +1001d21c: f8d3 3110 ldr.w r3, [r3, #272] ; 0x110 +1001d220: b10b cbz r3, 1001d226 +1001d222: 4798 blx r3 +1001d224: bd08 pop {r3, pc} +1001d226: 4618 mov r0, r3 +1001d228: bd08 pop {r3, pc} +1001d22a: bf00 nop +1001d22c: 10047f0c .word 0x10047f0c + +1001d230 : +1001d230: b508 push {r3, lr} +1001d232: 4b04 ldr r3, [pc, #16] ; (1001d244 ) +1001d234: f8d3 3114 ldr.w r3, [r3, #276] ; 0x114 +1001d238: b10b cbz r3, 1001d23e +1001d23a: 4798 blx r3 +1001d23c: bd08 pop {r3, pc} +1001d23e: 4618 mov r0, r3 +1001d240: bd08 pop {r3, pc} +1001d242: bf00 nop +1001d244: 10047f0c .word 0x10047f0c + +1001d248 : +1001d248: b508 push {r3, lr} +1001d24a: 4b03 ldr r3, [pc, #12] ; (1001d258 ) +1001d24c: f8d3 30fc ldr.w r3, [r3, #252] ; 0xfc +1001d250: b103 cbz r3, 1001d254 +1001d252: 4798 blx r3 +1001d254: bd08 pop {r3, pc} +1001d256: bf00 nop +1001d258: 10047f0c .word 0x10047f0c + +1001d25c : +1001d25c: b508 push {r3, lr} +1001d25e: 4b03 ldr r3, [pc, #12] ; (1001d26c ) +1001d260: f8d3 3100 ldr.w r3, [r3, #256] ; 0x100 +1001d264: b103 cbz r3, 1001d268 +1001d266: 4798 blx r3 +1001d268: bd08 pop {r3, pc} +1001d26a: bf00 nop +1001d26c: 10047f0c .word 0x10047f0c + +1001d270 : +1001d270: b570 push {r4, r5, r6, lr} +1001d272: 4b0b ldr r3, [pc, #44] ; (1001d2a0 ) +1001d274: 4a0b ldr r2, [pc, #44] ; (1001d2a4 ) +1001d276: 4e0c ldr r6, [pc, #48] ; (1001d2a8 ) +1001d278: 2500 movs r5, #0 +1001d27a: f44f 4420 mov.w r4, #40960 ; 0xa000 +1001d27e: 2101 movs r1, #1 +1001d280: 480a ldr r0, [pc, #40] ; (1001d2ac ) +1001d282: 601d str r5, [r3, #0] +1001d284: 605c str r4, [r3, #4] +1001d286: 6011 str r1, [r2, #0] +1001d288: 6033 str r3, [r6, #0] +1001d28a: f7ff fe6d bl 1001cf68 +1001d28e: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1001d292: 4807 ldr r0, [pc, #28] ; (1001d2b0 ) +1001d294: f04f 5100 mov.w r1, #536870912 ; 0x20000000 +1001d298: 4a06 ldr r2, [pc, #24] ; (1001d2b4 ) +1001d29a: f7fd bbf3 b.w 1001aa84 +1001d29e: bf00 nop +1001d2a0: 1fff5574 .word 0x1fff5574 +1001d2a4: 10051788 .word 0x10051788 +1001d2a8: 10051790 .word 0x10051790 +1001d2ac: 1005178c .word 0x1005178c +1001d2b0: 1001d3cd .word 0x1001d3cd +1001d2b4: 1fff0000 .word 0x1fff0000 + +1001d2b8 : +1001d2b8: b530 push {r4, r5, lr} +1001d2ba: b083 sub sp, #12 +1001d2bc: 4604 mov r4, r0 +1001d2be: a901 add r1, sp, #4 +1001d2c0: 481c ldr r0, [pc, #112] ; (1001d334 ) +1001d2c2: f7ff fe09 bl 1001ced8 +1001d2c6: 4b1c ldr r3, [pc, #112] ; (1001d338 ) +1001d2c8: 681b ldr r3, [r3, #0] +1001d2ca: b33b cbz r3, 1001d31c +1001d2cc: 4d1b ldr r5, [pc, #108] ; (1001d33c ) +1001d2ce: 1de1 adds r1, r4, #7 +1001d2d0: 682b ldr r3, [r5, #0] +1001d2d2: f031 0107 bics.w r1, r1, #7 +1001d2d6: bf08 it eq +1001d2d8: 2108 moveq r1, #8 +1001d2da: b153 cbz r3, 1001d2f2 +1001d2dc: 685a ldr r2, [r3, #4] +1001d2de: 4291 cmp r1, r2 +1001d2e0: dc04 bgt.n 1001d2ec +1001d2e2: e00d b.n 1001d300 +1001d2e4: 6862 ldr r2, [r4, #4] +1001d2e6: 4291 cmp r1, r2 +1001d2e8: dd0c ble.n 1001d304 +1001d2ea: 4623 mov r3, r4 +1001d2ec: 681c ldr r4, [r3, #0] +1001d2ee: 2c00 cmp r4, #0 +1001d2f0: d1f8 bne.n 1001d2e4 +1001d2f2: a901 add r1, sp, #4 +1001d2f4: 480f ldr r0, [pc, #60] ; (1001d334 ) +1001d2f6: f7ff fdf7 bl 1001cee8 +1001d2fa: 2000 movs r0, #0 +1001d2fc: b003 add sp, #12 +1001d2fe: bd30 pop {r4, r5, pc} +1001d300: 461c mov r4, r3 +1001d302: 462b mov r3, r5 +1001d304: 4291 cmp r1, r2 +1001d306: d00c beq.n 1001d322 +1001d308: 1a52 subs r2, r2, r1 +1001d30a: 6062 str r2, [r4, #4] +1001d30c: a901 add r1, sp, #4 +1001d30e: 4809 ldr r0, [pc, #36] ; (1001d334 ) +1001d310: f7ff fdea bl 1001cee8 +1001d314: 6860 ldr r0, [r4, #4] +1001d316: 4420 add r0, r4 +1001d318: b003 add sp, #12 +1001d31a: bd30 pop {r4, r5, pc} +1001d31c: f7ff ffa8 bl 1001d270 +1001d320: e7d4 b.n 1001d2cc +1001d322: 6822 ldr r2, [r4, #0] +1001d324: a901 add r1, sp, #4 +1001d326: 601a str r2, [r3, #0] +1001d328: 4802 ldr r0, [pc, #8] ; (1001d334 ) +1001d32a: f7ff fddd bl 1001cee8 +1001d32e: 4620 mov r0, r4 +1001d330: b003 add sp, #12 +1001d332: bd30 pop {r4, r5, pc} +1001d334: 1005178c .word 0x1005178c +1001d338: 10051788 .word 0x10051788 +1001d33c: 10051790 .word 0x10051790 + +1001d340 : +1001d340: b530 push {r4, r5, lr} +1001d342: b083 sub sp, #12 +1001d344: 4604 mov r4, r0 +1001d346: 460d mov r5, r1 +1001d348: 481d ldr r0, [pc, #116] ; (1001d3c0 ) +1001d34a: a901 add r1, sp, #4 +1001d34c: f7ff fdc4 bl 1001ced8 +1001d350: 4b1c ldr r3, [pc, #112] ; (1001d3c4 ) +1001d352: 681b ldr r3, [r3, #0] +1001d354: 2b00 cmp r3, #0 +1001d356: d02c beq.n 1001d3b2 +1001d358: 4b1b ldr r3, [pc, #108] ; (1001d3c8 ) +1001d35a: 1de9 adds r1, r5, #7 +1001d35c: 681a ldr r2, [r3, #0] +1001d35e: f031 0107 bics.w r1, r1, #7 +1001d362: bf08 it eq +1001d364: 2108 moveq r1, #8 +1001d366: 42a2 cmp r2, r4 +1001d368: d800 bhi.n 1001d36c +1001d36a: b972 cbnz r2, 1001d38a +1001d36c: 6022 str r2, [r4, #0] +1001d36e: 6061 str r1, [r4, #4] +1001d370: 601c str r4, [r3, #0] +1001d372: 4613 mov r3, r2 +1001d374: 1862 adds r2, r4, r1 +1001d376: 429a cmp r2, r3 +1001d378: d015 beq.n 1001d3a6 +1001d37a: a901 add r1, sp, #4 +1001d37c: 4810 ldr r0, [pc, #64] ; (1001d3c0 ) +1001d37e: f7ff fdb3 bl 1001cee8 +1001d382: b003 add sp, #12 +1001d384: bd30 pop {r4, r5, pc} +1001d386: b11b cbz r3, 1001d390 +1001d388: 461a mov r2, r3 +1001d38a: 6813 ldr r3, [r2, #0] +1001d38c: 429c cmp r4, r3 +1001d38e: d8fa bhi.n 1001d386 +1001d390: 6850 ldr r0, [r2, #4] +1001d392: 1815 adds r5, r2, r0 +1001d394: 42ac cmp r4, r5 +1001d396: d00f beq.n 1001d3b8 +1001d398: 6023 str r3, [r4, #0] +1001d39a: 6061 str r1, [r4, #4] +1001d39c: 6014 str r4, [r2, #0] +1001d39e: 6823 ldr r3, [r4, #0] +1001d3a0: 1862 adds r2, r4, r1 +1001d3a2: 429a cmp r2, r3 +1001d3a4: d1e9 bne.n 1001d37a +1001d3a6: 685a ldr r2, [r3, #4] +1001d3a8: 681b ldr r3, [r3, #0] +1001d3aa: 4411 add r1, r2 +1001d3ac: 6061 str r1, [r4, #4] +1001d3ae: 6023 str r3, [r4, #0] +1001d3b0: e7e3 b.n 1001d37a +1001d3b2: f7ff ff5d bl 1001d270 +1001d3b6: e7cf b.n 1001d358 +1001d3b8: 4401 add r1, r0 +1001d3ba: 6051 str r1, [r2, #4] +1001d3bc: 4614 mov r4, r2 +1001d3be: e7d9 b.n 1001d374 +1001d3c0: 1005178c .word 0x1005178c +1001d3c4: 10051788 .word 0x10051788 +1001d3c8: 10051790 .word 0x10051790 + +1001d3cc : +1001d3cc: 4603 mov r3, r0 +1001d3ce: b120 cbz r0, 1001d3da +1001d3d0: 3804 subs r0, #4 +1001d3d2: f853 1c04 ldr.w r1, [r3, #-4] +1001d3d6: f7ff bfb3 b.w 1001d340 +1001d3da: 4770 bx lr + +1001d3dc : +1001d3dc: b510 push {r4, lr} +1001d3de: 1d04 adds r4, r0, #4 +1001d3e0: 4620 mov r0, r4 +1001d3e2: f7ff ff69 bl 1001d2b8 +1001d3e6: b108 cbz r0, 1001d3ec +1001d3e8: 6004 str r4, [r0, #0] +1001d3ea: 3004 adds r0, #4 +1001d3ec: bd10 pop {r4, pc} +1001d3ee: bf00 nop + +1001d3f0 : +1001d3f0: b538 push {r3, r4, r5, lr} +1001d3f2: 1d04 adds r4, r0, #4 +1001d3f4: 4605 mov r5, r0 +1001d3f6: 4620 mov r0, r4 +1001d3f8: f7ff ff5e bl 1001d2b8 +1001d3fc: b148 cbz r0, 1001d412 +1001d3fe: 6004 str r4, [r0, #0] +1001d400: 1d04 adds r4, r0, #4 +1001d402: d004 beq.n 1001d40e +1001d404: 462a mov r2, r5 +1001d406: 4620 mov r0, r4 +1001d408: 2100 movs r1, #0 +1001d40a: f024 feaf bl 1004216c +1001d40e: 4620 mov r0, r4 +1001d410: bd38 pop {r3, r4, r5, pc} +1001d412: 4604 mov r4, r0 +1001d414: 4620 mov r0, r4 +1001d416: bd38 pop {r3, r4, r5, pc} + +1001d418 : +1001d418: b508 push {r3, lr} +1001d41a: 2000 movs r0, #0 +1001d41c: f7ea f85e bl 100074dc +1001d420: b968 cbnz r0, 1001d43e +1001d422: 4b0b ldr r3, [pc, #44] ; (1001d450 ) +1001d424: 681b ldr r3, [r3, #0] +1001d426: 005b lsls r3, r3, #1 +1001d428: d40d bmi.n 1001d446 +1001d42a: 4b0a ldr r3, [pc, #40] ; (1001d454 ) +1001d42c: 681a ldr r2, [r3, #0] +1001d42e: f042 020f orr.w r2, r2, #15 +1001d432: 601a str r2, [r3, #0] +1001d434: 4a08 ldr r2, [pc, #32] ; (1001d458 ) +1001d436: 4b09 ldr r3, [pc, #36] ; (1001d45c ) +1001d438: 79d2 ldrb r2, [r2, #7] +1001d43a: 71da strb r2, [r3, #7] +1001d43c: bd08 pop {r3, pc} +1001d43e: 4b08 ldr r3, [pc, #32] ; (1001d460 ) +1001d440: 2201 movs r2, #1 +1001d442: 601a str r2, [r3, #0] +1001d444: e7f6 b.n 1001d434 +1001d446: 4b07 ldr r3, [pc, #28] ; (1001d464 ) +1001d448: 4807 ldr r0, [pc, #28] ; (1001d468 ) +1001d44a: 4798 blx r3 +1001d44c: e7ed b.n 1001d42a +1001d44e: bf00 nop +1001d450: 10000314 .word 0x10000314 +1001d454: 400000fc .word 0x400000fc +1001d458: 1004f19c .word 0x1004f19c +1001d45c: 10051794 .word 0x10051794 +1001d460: 100517a0 .word 0x100517a0 +1001d464: 0000f39d .word 0x0000f39d +1001d468: 100481d0 .word 0x100481d0 + +1001d46c : +1001d46c: 4b0a ldr r3, [pc, #40] ; (1001d498 ) +1001d46e: b510 push {r4, lr} +1001d470: 6818 ldr r0, [r3, #0] +1001d472: 4a0a ldr r2, [pc, #40] ; (1001d49c ) +1001d474: f040 0001 orr.w r0, r0, #1 +1001d478: 6018 str r0, [r3, #0] +1001d47a: 460c mov r4, r1 +1001d47c: 4790 blx r2 +1001d47e: 4b08 ldr r3, [pc, #32] ; (1001d4a0 ) +1001d480: 681b ldr r3, [r3, #0] +1001d482: b90b cbnz r3, 1001d488 +1001d484: f7ff ffc8 bl 1001d418 +1001d488: f104 4018 add.w r0, r4, #2550136832 ; 0x98000000 +1001d48c: f7e9 fd67 bl 10006f5e +1001d490: e8bd 4010 ldmia.w sp!, {r4, lr} +1001d494: f7e9 bdae b.w 10006ff4 +1001d498: 400002c0 .word 0x400002c0 +1001d49c: 00002ea5 .word 0x00002ea5 +1001d4a0: 100517a0 .word 0x100517a0 + +1001d4a4 : +1001d4a4: b538 push {r3, r4, r5, lr} +1001d4a6: 4b0d ldr r3, [pc, #52] ; (1001d4dc ) +1001d4a8: 480d ldr r0, [pc, #52] ; (1001d4e0 ) +1001d4aa: 681c ldr r4, [r3, #0] +1001d4ac: 460d mov r5, r1 +1001d4ae: f044 0401 orr.w r4, r4, #1 +1001d4b2: 601c str r4, [r3, #0] +1001d4b4: 4614 mov r4, r2 +1001d4b6: 4780 blx r0 +1001d4b8: 4b0a ldr r3, [pc, #40] ; (1001d4e4 ) +1001d4ba: 681b ldr r3, [r3, #0] +1001d4bc: b90b cbnz r3, 1001d4c2 +1001d4be: f7ff ffab bl 1001d418 +1001d4c2: 4b09 ldr r3, [pc, #36] ; (1001d4e8 ) +1001d4c4: f105 4518 add.w r5, r5, #2550136832 ; 0x98000000 +1001d4c8: e893 0003 ldmia.w r3, {r0, r1} +1001d4cc: f7e9 fa82 bl 100069d4 +1001d4d0: 682b ldr r3, [r5, #0] +1001d4d2: 6023 str r3, [r4, #0] +1001d4d4: f7e9 fd8e bl 10006ff4 +1001d4d8: 2001 movs r0, #1 +1001d4da: bd38 pop {r3, r4, r5, pc} +1001d4dc: 400002c0 .word 0x400002c0 +1001d4e0: 00002ea5 .word 0x00002ea5 +1001d4e4: 100517a0 .word 0x100517a0 +1001d4e8: 10051794 .word 0x10051794 + +1001d4ec : +1001d4ec: 4b15 ldr r3, [pc, #84] ; (1001d544 ) +1001d4ee: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001d4f2: 6818 ldr r0, [r3, #0] +1001d4f4: 4d14 ldr r5, [pc, #80] ; (1001d548 ) +1001d4f6: f040 0001 orr.w r0, r0, #1 +1001d4fa: 6018 str r0, [r3, #0] +1001d4fc: 460f mov r7, r1 +1001d4fe: 4616 mov r6, r2 +1001d500: 47a8 blx r5 +1001d502: 4b12 ldr r3, [pc, #72] ; (1001d54c ) +1001d504: 681b ldr r3, [r3, #0] +1001d506: b193 cbz r3, 1001d52e +1001d508: 4c11 ldr r4, [pc, #68] ; (1001d550 ) +1001d50a: f107 4718 add.w r7, r7, #2550136832 ; 0x98000000 +1001d50e: f894 8007 ldrb.w r8, [r4, #7] +1001d512: 603e str r6, [r7, #0] +1001d514: 47a8 blx r5 +1001d516: e894 0003 ldmia.w r4, {r0, r1} +1001d51a: f1b8 0f04 cmp.w r8, #4 +1001d51e: d009 beq.n 1001d534 +1001d520: f7e9 fa58 bl 100069d4 +1001d524: f7e9 fd66 bl 10006ff4 +1001d528: 2001 movs r0, #1 +1001d52a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001d52e: f7ff ff73 bl 1001d418 +1001d532: e7e9 b.n 1001d508 +1001d534: f7e9 fb1c bl 10006b70 +1001d538: f7e9 fd5c bl 10006ff4 +1001d53c: 2001 movs r0, #1 +1001d53e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001d542: bf00 nop +1001d544: 400002c0 .word 0x400002c0 +1001d548: 00002ea5 .word 0x00002ea5 +1001d54c: 100517a0 .word 0x100517a0 +1001d550: 10051794 .word 0x10051794 + +1001d554 : +1001d554: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1001d558: 484a ldr r0, [pc, #296] ; (1001d684 ) +1001d55a: b083 sub sp, #12 +1001d55c: 6804 ldr r4, [r0, #0] +1001d55e: 4e4a ldr r6, [pc, #296] ; (1001d688 ) +1001d560: f044 0401 orr.w r4, r4, #1 +1001d564: 6004 str r4, [r0, #0] +1001d566: 460f mov r7, r1 +1001d568: 461c mov r4, r3 +1001d56a: 4615 mov r5, r2 +1001d56c: 47b0 blx r6 +1001d56e: 4b47 ldr r3, [pc, #284] ; (1001d68c ) +1001d570: 681b ldr r3, [r3, #0] +1001d572: 2b00 cmp r3, #0 +1001d574: f000 8083 beq.w 1001d67e +1001d578: 4b45 ldr r3, [pc, #276] ; (1001d690 ) +1001d57a: e893 0003 ldmia.w r3, {r0, r1} +1001d57e: f7e9 fa29 bl 100069d4 +1001d582: f017 0e03 ands.w lr, r7, #3 +1001d586: d01a beq.n 1001d5be +1001d588: f107 4318 add.w r3, r7, #2550136832 ; 0x98000000 +1001d58c: ebce 0303 rsb r3, lr, r3 +1001d590: 6819 ldr r1, [r3, #0] +1001d592: aa02 add r2, sp, #8 +1001d594: 1e6b subs r3, r5, #1 +1001d596: f842 1d04 str.w r1, [r2, #-4]! +1001d59a: eb02 010e add.w r1, r2, lr +1001d59e: 461e mov r6, r3 +1001d5a0: f1ce 0e04 rsb lr, lr, #4 +1001d5a4: 2000 movs r0, #0 +1001d5a6: e000 b.n 1001d5aa +1001d5a8: 3b01 subs r3, #1 +1001d5aa: 5c0a ldrb r2, [r1, r0] +1001d5ac: 42b0 cmp r0, r6 +1001d5ae: 461d mov r5, r3 +1001d5b0: f804 2b01 strb.w r2, [r4], #1 +1001d5b4: f100 0001 add.w r0, r0, #1 +1001d5b8: d02f beq.n 1001d61a +1001d5ba: 4586 cmp lr, r0 +1001d5bc: d8f4 bhi.n 1001d5a8 +1001d5be: f107 3cff add.w ip, r7, #4294967295 +1001d5c2: f02c 0c03 bic.w ip, ip, #3 +1001d5c6: 07a3 lsls r3, r4, #30 +1001d5c8: f10c 0c04 add.w ip, ip, #4 +1001d5cc: d12b bne.n 1001d626 +1001d5ce: 2d03 cmp r5, #3 +1001d5d0: d915 bls.n 1001d5fe +1001d5d2: f10c 4018 add.w r0, ip, #2550136832 ; 0x98000000 +1001d5d6: 1b00 subs r0, r0, r4 +1001d5d8: 4622 mov r2, r4 +1001d5da: 462b mov r3, r5 +1001d5dc: 5811 ldr r1, [r2, r0] +1001d5de: 3b04 subs r3, #4 +1001d5e0: 2b03 cmp r3, #3 +1001d5e2: f842 1b04 str.w r1, [r2], #4 +1001d5e6: d8f9 bhi.n 1001d5dc +1001d5e8: 1f2b subs r3, r5, #4 +1001d5ea: 089b lsrs r3, r3, #2 +1001d5ec: f10c 0c04 add.w ip, ip, #4 +1001d5f0: 1c5a adds r2, r3, #1 +1001d5f2: eb0c 0c83 add.w ip, ip, r3, lsl #2 +1001d5f6: eb04 0482 add.w r4, r4, r2, lsl #2 +1001d5fa: f005 0503 and.w r5, r5, #3 +1001d5fe: b165 cbz r5, 1001d61a +1001d600: f10c 4c18 add.w ip, ip, #2550136832 ; 0x98000000 +1001d604: f8dc 3000 ldr.w r3, [ip] +1001d608: aa02 add r2, sp, #8 +1001d60a: f842 3d04 str.w r3, [r2, #-4]! +1001d60e: 2100 movs r1, #0 +1001d610: 5c53 ldrb r3, [r2, r1] +1001d612: 5463 strb r3, [r4, r1] +1001d614: 3101 adds r1, #1 +1001d616: 42a9 cmp r1, r5 +1001d618: d1fa bne.n 1001d610 +1001d61a: f7e9 fceb bl 10006ff4 +1001d61e: 2001 movs r0, #1 +1001d620: b003 add sp, #12 +1001d622: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1001d626: 2d03 cmp r5, #3 +1001d628: d9e9 bls.n 1001d5fe +1001d62a: f1a5 0904 sub.w r9, r5, #4 +1001d62e: ea4f 0999 mov.w r9, r9, lsr #2 +1001d632: f10c 4718 add.w r7, ip, #2550136832 ; 0x98000000 +1001d636: ea4f 0889 mov.w r8, r9, lsl #2 +1001d63a: f104 0e08 add.w lr, r4, #8 +1001d63e: 3f04 subs r7, #4 +1001d640: 44c6 add lr, r8 +1001d642: 1b3f subs r7, r7, r4 +1001d644: 1d21 adds r1, r4, #4 +1001d646: 5878 ldr r0, [r7, r1] +1001d648: 3104 adds r1, #4 +1001d64a: f3c0 2607 ubfx r6, r0, #8, #8 +1001d64e: f3c0 4207 ubfx r2, r0, #16, #8 +1001d652: 0e03 lsrs r3, r0, #24 +1001d654: f801 0c08 strb.w r0, [r1, #-8] +1001d658: f801 6c07 strb.w r6, [r1, #-7] +1001d65c: f801 2c06 strb.w r2, [r1, #-6] +1001d660: f801 3c05 strb.w r3, [r1, #-5] +1001d664: 4571 cmp r1, lr +1001d666: 9001 str r0, [sp, #4] +1001d668: d1ed bne.n 1001d646 +1001d66a: f109 0901 add.w r9, r9, #1 +1001d66e: f10c 0c04 add.w ip, ip, #4 +1001d672: eb04 0489 add.w r4, r4, r9, lsl #2 +1001d676: 44c4 add ip, r8 +1001d678: f005 0503 and.w r5, r5, #3 +1001d67c: e7bf b.n 1001d5fe +1001d67e: f7ff fecb bl 1001d418 +1001d682: e779 b.n 1001d578 +1001d684: 400002c0 .word 0x400002c0 +1001d688: 00002ea5 .word 0x00002ea5 +1001d68c: 100517a0 .word 0x100517a0 +1001d690: 10051794 .word 0x10051794 + +1001d694 : +1001d694: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001d698: 4868 ldr r0, [pc, #416] ; (1001d83c ) +1001d69a: b085 sub sp, #20 +1001d69c: 6804 ldr r4, [r0, #0] +1001d69e: f8df 91a8 ldr.w r9, [pc, #424] ; 1001d848 +1001d6a2: f044 0401 orr.w r4, r4, #1 +1001d6a6: 6004 str r4, [r0, #0] +1001d6a8: 461e mov r6, r3 +1001d6aa: 460f mov r7, r1 +1001d6ac: 4615 mov r5, r2 +1001d6ae: 47c8 blx r9 +1001d6b0: 4b63 ldr r3, [pc, #396] ; (1001d840 ) +1001d6b2: 681b ldr r3, [r3, #0] +1001d6b4: 2b00 cmp r3, #0 +1001d6b6: f000 80b0 beq.w 1001d81a +1001d6ba: 4c62 ldr r4, [pc, #392] ; (1001d844 ) +1001d6bc: f017 0b03 ands.w fp, r7, #3 +1001d6c0: f894 a007 ldrb.w sl, [r4, #7] +1001d6c4: d02b beq.n 1001d71e +1001d6c6: f107 4818 add.w r8, r7, #2550136832 ; 0x98000000 +1001d6ca: ebcb 0808 rsb r8, fp, r8 +1001d6ce: f8d8 3000 ldr.w r3, [r8] +1001d6d2: a804 add r0, sp, #16 +1001d6d4: f840 3d04 str.w r3, [r0, #-4]! +1001d6d8: 1e69 subs r1, r5, #1 +1001d6da: eb00 0c0b add.w ip, r0, fp +1001d6de: 4632 mov r2, r6 +1001d6e0: f1cb 0b04 rsb fp, fp, #4 +1001d6e4: 468e mov lr, r1 +1001d6e6: 2300 movs r3, #0 +1001d6e8: e000 b.n 1001d6ec +1001d6ea: 3901 subs r1, #1 +1001d6ec: f812 0b01 ldrb.w r0, [r2], #1 +1001d6f0: 4573 cmp r3, lr +1001d6f2: f80c 0003 strb.w r0, [ip, r3] +1001d6f6: 460d mov r5, r1 +1001d6f8: 4616 mov r6, r2 +1001d6fa: f103 0301 add.w r3, r3, #1 +1001d6fe: f000 808f beq.w 1001d820 +1001d702: 459b cmp fp, r3 +1001d704: d8f1 bhi.n 1001d6ea +1001d706: 9b03 ldr r3, [sp, #12] +1001d708: f8c8 3000 str.w r3, [r8] +1001d70c: 47c8 blx r9 +1001d70e: e894 0003 ldmia.w r4, {r0, r1} +1001d712: f1ba 0f04 cmp.w sl, #4 +1001d716: f000 8085 beq.w 1001d824 +1001d71a: f7e9 f95b bl 100069d4 +1001d71e: 3f01 subs r7, #1 +1001d720: f027 0703 bic.w r7, r7, #3 +1001d724: 3704 adds r7, #4 +1001d726: 07b3 lsls r3, r6, #30 +1001d728: 9701 str r7, [sp, #4] +1001d72a: d14b bne.n 1001d7c4 +1001d72c: 2d03 cmp r5, #3 +1001d72e: d92b bls.n 1001d788 +1001d730: 9b01 ldr r3, [sp, #4] +1001d732: f1a6 0804 sub.w r8, r6, #4 +1001d736: f103 4b18 add.w fp, r3, #2550136832 ; 0x98000000 +1001d73a: f10b 0b04 add.w fp, fp, #4 +1001d73e: ebc6 0b0b rsb fp, r6, fp +1001d742: 462f mov r7, r5 +1001d744: e004 b.n 1001d750 +1001d746: 3f04 subs r7, #4 +1001d748: f7e9 f944 bl 100069d4 +1001d74c: 2f03 cmp r7, #3 +1001d74e: d90f bls.n 1001d770 +1001d750: eb0b 0308 add.w r3, fp, r8 +1001d754: f858 2f04 ldr.w r2, [r8, #4]! +1001d758: 601a str r2, [r3, #0] +1001d75a: 47c8 blx r9 +1001d75c: e894 0003 ldmia.w r4, {r0, r1} +1001d760: f1ba 0f04 cmp.w sl, #4 +1001d764: d1ef bne.n 1001d746 +1001d766: 3f04 subs r7, #4 +1001d768: f7e9 fa02 bl 10006b70 +1001d76c: 2f03 cmp r7, #3 +1001d76e: d8ef bhi.n 1001d750 +1001d770: 9a01 ldr r2, [sp, #4] +1001d772: 1f2b subs r3, r5, #4 +1001d774: 089b lsrs r3, r3, #2 +1001d776: 1d11 adds r1, r2, #4 +1001d778: 1c5a adds r2, r3, #1 +1001d77a: eb01 0383 add.w r3, r1, r3, lsl #2 +1001d77e: 9301 str r3, [sp, #4] +1001d780: eb06 0682 add.w r6, r6, r2, lsl #2 +1001d784: f005 0503 and.w r5, r5, #3 +1001d788: b1b5 cbz r5, 1001d7b8 +1001d78a: 9b01 ldr r3, [sp, #4] +1001d78c: a804 add r0, sp, #16 +1001d78e: f103 4118 add.w r1, r3, #2550136832 ; 0x98000000 +1001d792: 680b ldr r3, [r1, #0] +1001d794: f840 3d04 str.w r3, [r0, #-4]! +1001d798: 2300 movs r3, #0 +1001d79a: 5cf2 ldrb r2, [r6, r3] +1001d79c: 54c2 strb r2, [r0, r3] +1001d79e: 3301 adds r3, #1 +1001d7a0: 42ab cmp r3, r5 +1001d7a2: d1fa bne.n 1001d79a +1001d7a4: 9b03 ldr r3, [sp, #12] +1001d7a6: 600b str r3, [r1, #0] +1001d7a8: 47c8 blx r9 +1001d7aa: e894 0003 ldmia.w r4, {r0, r1} +1001d7ae: f1ba 0f04 cmp.w sl, #4 +1001d7b2: d03a beq.n 1001d82a +1001d7b4: f7e9 f90e bl 100069d4 +1001d7b8: f7e9 fc1c bl 10006ff4 +1001d7bc: 2001 movs r0, #1 +1001d7be: b005 add sp, #20 +1001d7c0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001d7c4: 2d03 cmp r5, #3 +1001d7c6: d9df bls.n 1001d788 +1001d7c8: 9a01 ldr r2, [sp, #4] +1001d7ca: 46b3 mov fp, r6 +1001d7cc: f102 4818 add.w r8, r2, #2550136832 ; 0x98000000 +1001d7d0: ebc6 0808 rsb r8, r6, r8 +1001d7d4: 462f mov r7, r5 +1001d7d6: e006 b.n 1001d7e6 +1001d7d8: f7e9 f8fc bl 100069d4 +1001d7dc: 3f04 subs r7, #4 +1001d7de: 2f03 cmp r7, #3 +1001d7e0: f10b 0b04 add.w fp, fp, #4 +1001d7e4: d9c4 bls.n 1001d770 +1001d7e6: f89b 3002 ldrb.w r3, [fp, #2] +1001d7ea: f89b 2001 ldrb.w r2, [fp, #1] +1001d7ee: f89b 1000 ldrb.w r1, [fp] +1001d7f2: 041b lsls r3, r3, #16 +1001d7f4: ea43 2302 orr.w r3, r3, r2, lsl #8 +1001d7f8: f89b 2003 ldrb.w r2, [fp, #3] +1001d7fc: 430b orrs r3, r1 +1001d7fe: ea43 6302 orr.w r3, r3, r2, lsl #24 +1001d802: f84b 3008 str.w r3, [fp, r8] +1001d806: 9303 str r3, [sp, #12] +1001d808: 47c8 blx r9 +1001d80a: e894 0003 ldmia.w r4, {r0, r1} +1001d80e: f1ba 0f04 cmp.w sl, #4 +1001d812: d1e1 bne.n 1001d7d8 +1001d814: f7e9 f9ac bl 10006b70 +1001d818: e7e0 b.n 1001d7dc +1001d81a: f7ff fdfd bl 1001d418 +1001d81e: e74c b.n 1001d6ba +1001d820: 2500 movs r5, #0 +1001d822: e770 b.n 1001d706 +1001d824: f7e9 f9a4 bl 10006b70 +1001d828: e779 b.n 1001d71e +1001d82a: f7e9 f9a1 bl 10006b70 +1001d82e: f7e9 fbe1 bl 10006ff4 +1001d832: 2001 movs r0, #1 +1001d834: b005 add sp, #20 +1001d836: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001d83a: bf00 nop +1001d83c: 400002c0 .word 0x400002c0 +1001d840: 100517a0 .word 0x100517a0 +1001d844: 10051794 .word 0x10051794 +1001d848: 00002ea5 .word 0x00002ea5 + +1001d84c : +1001d84c: b538 push {r3, r4, r5, lr} +1001d84e: 1c43 adds r3, r0, #1 +1001d850: 4604 mov r4, r0 +1001d852: d008 beq.n 1001d866 +1001d854: 4620 mov r0, r4 +1001d856: 2100 movs r1, #0 +1001d858: f000 f8f4 bl 1001da44 +1001d85c: 4620 mov r0, r4 +1001d85e: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001d862: f000 bbad b.w 1001dfc0 +1001d866: 4903 ldr r1, [pc, #12] ; (1001d874 ) +1001d868: 4a03 ldr r2, [pc, #12] ; (1001d878 ) +1001d86a: 236e movs r3, #110 ; 0x6e +1001d86c: 4d03 ldr r5, [pc, #12] ; (1001d87c ) +1001d86e: 4804 ldr r0, [pc, #16] ; (1001d880 ) +1001d870: 47a8 blx r5 +1001d872: e7ef b.n 1001d854 +1001d874: 10048264 .word 0x10048264 +1001d878: 10048240 .word 0x10048240 +1001d87c: 0000f39d .word 0x0000f39d +1001d880: 1004824c .word 0x1004824c + +1001d884 : +1001d884: b538 push {r3, r4, r5, lr} +1001d886: 1c4b adds r3, r1, #1 +1001d888: 4604 mov r4, r0 +1001d88a: d014 beq.n 1001d8b6 +1001d88c: 2500 movs r5, #0 +1001d88e: 6001 str r1, [r0, #0] +1001d890: 6065 str r5, [r4, #4] +1001d892: 60a5 str r5, [r4, #8] +1001d894: 4608 mov r0, r1 +1001d896: f7ff ffd9 bl 1001d84c +1001d89a: f000 031f and.w r3, r0, #31 +1001d89e: f3c0 1241 ubfx r2, r0, #5, #2 +1001d8a2: 7522 strb r2, [r4, #20] +1001d8a4: 7563 strb r3, [r4, #21] +1001d8a6: 6120 str r0, [r4, #16] +1001d8a8: 60e5 str r5, [r4, #12] +1001d8aa: f104 000c add.w r0, r4, #12 +1001d8ae: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001d8b2: f000 bb9b b.w 1001dfec +1001d8b6: bd38 pop {r3, r4, r5, pc} + +1001d8b8 : +1001d8b8: 6883 ldr r3, [r0, #8] +1001d8ba: 6041 str r1, [r0, #4] +1001d8bc: 2b01 cmp r3, #1 +1001d8be: d008 beq.n 1001d8d2 +1001d8c0: 2903 cmp r1, #3 +1001d8c2: bf96 itet ls +1001d8c4: 4b07 ldrls r3, [pc, #28] ; (1001d8e4 ) +1001d8c6: 2300 movhi r3, #0 +1001d8c8: 5c5b ldrbls r3, [r3, r1] +1001d8ca: 300c adds r0, #12 +1001d8cc: 6003 str r3, [r0, #0] +1001d8ce: f000 bb8d b.w 1001dfec +1001d8d2: 2903 cmp r1, #3 +1001d8d4: bf0c ite eq +1001d8d6: 2304 moveq r3, #4 +1001d8d8: 2303 movne r3, #3 +1001d8da: 60c3 str r3, [r0, #12] +1001d8dc: 300c adds r0, #12 +1001d8de: f000 bb85 b.w 1001dfec +1001d8e2: bf00 nop +1001d8e4: 1004823c .word 0x1004823c + +1001d8e8 : +1001d8e8: 2901 cmp r1, #1 +1001d8ea: 6081 str r1, [r0, #8] +1001d8ec: 6843 ldr r3, [r0, #4] +1001d8ee: d008 beq.n 1001d902 +1001d8f0: 2b03 cmp r3, #3 +1001d8f2: bf96 itet ls +1001d8f4: 4a07 ldrls r2, [pc, #28] ; (1001d914 ) +1001d8f6: 2300 movhi r3, #0 +1001d8f8: 5cd3 ldrbls r3, [r2, r3] +1001d8fa: 300c adds r0, #12 +1001d8fc: 6003 str r3, [r0, #0] +1001d8fe: f000 bb75 b.w 1001dfec +1001d902: 2b03 cmp r3, #3 +1001d904: bf0c ite eq +1001d906: 2304 moveq r3, #4 +1001d908: 2303 movne r3, #3 +1001d90a: 60c3 str r3, [r0, #12] +1001d90c: 300c adds r0, #12 +1001d90e: f000 bb6d b.w 1001dfec +1001d912: bf00 nop +1001d914: 1004823c .word 0x1004823c + +1001d918 : +1001d918: b510 push {r4, lr} +1001d91a: 68c2 ldr r2, [r0, #12] +1001d91c: b082 sub sp, #8 +1001d91e: 2a04 cmp r2, #4 +1001d920: d019 beq.n 1001d956 +1001d922: 7d43 ldrb r3, [r0, #21] +1001d924: 2201 movs r2, #1 +1001d926: 409a lsls r2, r3 +1001d928: f001 0401 and.w r4, r1, #1 +1001d92c: 409c lsls r4, r3 +1001d92e: 490c ldr r1, [pc, #48] ; (1001d960 ) +1001d930: 7d03 ldrb r3, [r0, #20] +1001d932: 5ccb ldrb r3, [r1, r3] +1001d934: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 +1001d938: f503 5380 add.w r3, r3, #4096 ; 0x1000 +1001d93c: 6819 ldr r1, [r3, #0] +1001d93e: 9101 str r1, [sp, #4] +1001d940: 9901 ldr r1, [sp, #4] +1001d942: ea21 0202 bic.w r2, r1, r2 +1001d946: 9201 str r2, [sp, #4] +1001d948: 9a01 ldr r2, [sp, #4] +1001d94a: 4314 orrs r4, r2 +1001d94c: 9401 str r4, [sp, #4] +1001d94e: 9a01 ldr r2, [sp, #4] +1001d950: 601a str r2, [r3, #0] +1001d952: b002 add sp, #8 +1001d954: bd10 pop {r4, pc} +1001d956: 4b03 ldr r3, [pc, #12] ; (1001d964 ) +1001d958: 300c adds r0, #12 +1001d95a: 4798 blx r3 +1001d95c: b002 add sp, #8 +1001d95e: bd10 pop {r4, pc} +1001d960: 100482a4 .word 0x100482a4 +1001d964: 0000dc91 .word 0x0000dc91 + +1001d968 : +1001d968: 7d03 ldrb r3, [r0, #20] +1001d96a: 490b ldr r1, [pc, #44] ; (1001d998 ) +1001d96c: b082 sub sp, #8 +1001d96e: 5ccb ldrb r3, [r1, r3] +1001d970: 68c2 ldr r2, [r0, #12] +1001d972: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 +1001d976: f503 5380 add.w r3, r3, #4096 ; 0x1000 +1001d97a: 681b ldr r3, [r3, #0] +1001d97c: 7d41 ldrb r1, [r0, #21] +1001d97e: 9301 str r3, [sp, #4] +1001d980: 9801 ldr r0, [sp, #4] +1001d982: 2a04 cmp r2, #4 +1001d984: fa20 f001 lsr.w r0, r0, r1 +1001d988: f000 0001 and.w r0, r0, #1 +1001d98c: bf08 it eq +1001d98e: f080 0001 eoreq.w r0, r0, #1 +1001d992: b002 add sp, #8 +1001d994: 4770 bx lr +1001d996: bf00 nop +1001d998: 100482a8 .word 0x100482a8 + +1001d99c : +1001d99c: e92d 41d8 stmdb sp!, {r3, r4, r6, r7, r8, lr} +1001d9a0: 461f mov r7, r3 +1001d9a2: 1c4b adds r3, r1, #1 +1001d9a4: 4604 mov r4, r0 +1001d9a6: 4690 mov r8, r2 +1001d9a8: d019 beq.n 1001d9de +1001d9aa: 6001 str r1, [r0, #0] +1001d9ac: 4608 mov r0, r1 +1001d9ae: f000 fb07 bl 1001dfc0 +1001d9b2: f104 0608 add.w r6, r4, #8 +1001d9b6: f3c0 1141 ubfx r1, r0, #5, #2 +1001d9ba: f000 021f and.w r2, r0, #31 +1001d9be: 2387 movs r3, #135 ; 0x87 +1001d9c0: 60e0 str r0, [r4, #12] +1001d9c2: 7421 strb r1, [r4, #16] +1001d9c4: 7462 strb r2, [r4, #17] +1001d9c6: 60a3 str r3, [r4, #8] +1001d9c8: 4630 mov r0, r6 +1001d9ca: f000 fb4b bl 1001e064 +1001d9ce: 4630 mov r0, r6 +1001d9d0: 4641 mov r1, r8 +1001d9d2: 463a mov r2, r7 +1001d9d4: 4b03 ldr r3, [pc, #12] ; (1001d9e4 ) +1001d9d6: 4798 blx r3 +1001d9d8: 2000 movs r0, #0 +1001d9da: e8bd 81d8 ldmia.w sp!, {r3, r4, r6, r7, r8, pc} +1001d9de: 4608 mov r0, r1 +1001d9e0: e8bd 81d8 ldmia.w sp!, {r3, r4, r6, r7, r8, pc} +1001d9e4: 0000de15 .word 0x0000de15 + +1001d9e8 : +1001d9e8: 3901 subs r1, #1 +1001d9ea: b538 push {r3, r4, r5, lr} +1001d9ec: 4615 mov r5, r2 +1001d9ee: 2903 cmp r1, #3 +1001d9f0: d805 bhi.n 1001d9fe +1001d9f2: e8df f001 tbb [pc, r1] +1001d9f6: 1102 .short 0x1102 +1001d9f8: 140e .short 0x140e +1001d9fa: 2388 movs r3, #136 ; 0x88 +1001d9fc: 6083 str r3, [r0, #8] +1001d9fe: f100 0408 add.w r4, r0, #8 +1001da02: 4620 mov r0, r4 +1001da04: 4b07 ldr r3, [pc, #28] ; (1001da24 ) +1001da06: 4798 blx r3 +1001da08: 4620 mov r0, r4 +1001da0a: 4629 mov r1, r5 +1001da0c: 4b06 ldr r3, [pc, #24] ; (1001da28 ) +1001da0e: 4798 blx r3 +1001da10: bd38 pop {r3, r4, r5, pc} +1001da12: 2385 movs r3, #133 ; 0x85 +1001da14: 6083 str r3, [r0, #8] +1001da16: e7f2 b.n 1001d9fe +1001da18: 2387 movs r3, #135 ; 0x87 +1001da1a: 6083 str r3, [r0, #8] +1001da1c: e7ef b.n 1001d9fe +1001da1e: 2386 movs r3, #134 ; 0x86 +1001da20: 6083 str r3, [r0, #8] +1001da22: e7ec b.n 1001d9fe +1001da24: 0000d805 .word 0x0000d805 +1001da28: 0000d6cd .word 0x0000d6cd + +1001da2c : +1001da2c: b510 push {r4, lr} +1001da2e: f100 0408 add.w r4, r0, #8 +1001da32: 4620 mov r0, r4 +1001da34: f000 fec4 bl 1001e7c0 +1001da38: 4620 mov r0, r4 +1001da3a: 4b01 ldr r3, [pc, #4] ; (1001da40 ) +1001da3c: 4798 blx r3 +1001da3e: bd10 pop {r4, pc} +1001da40: 0000e061 .word 0x0000e061 + +1001da44 : +1001da44: 4770 bx lr +1001da46: bf00 nop + +1001da48 : +1001da48: f000 bac0 b.w 1001dfcc + +1001da4c : +1001da4c: 4288 cmp r0, r1 +1001da4e: b508 push {r3, lr} +1001da50: d010 beq.n 1001da74 +1001da52: 1c42 adds r2, r0, #1 +1001da54: d00f beq.n 1001da76 +1001da56: 3101 adds r1, #1 +1001da58: d00c beq.n 1001da74 +1001da5a: 4b08 ldr r3, [pc, #32] ; (1001da7c ) +1001da5c: 681b ldr r3, [r3, #0] +1001da5e: 075b lsls r3, r3, #29 +1001da60: d506 bpl.n 1001da70 +1001da62: 4907 ldr r1, [pc, #28] ; (1001da80 ) +1001da64: 4b07 ldr r3, [pc, #28] ; (1001da84 ) +1001da66: 4808 ldr r0, [pc, #32] ; (1001da88 ) +1001da68: 4798 blx r3 +1001da6a: f04f 30ff mov.w r0, #4294967295 +1001da6e: bd08 pop {r3, pc} +1001da70: f04f 30ff mov.w r0, #4294967295 +1001da74: bd08 pop {r3, pc} +1001da76: 4608 mov r0, r1 +1001da78: bd08 pop {r3, pc} +1001da7a: bf00 nop +1001da7c: 10000314 .word 0x10000314 +1001da80: 100482ac .word 0x100482ac +1001da84: 0000f39d .word 0x0000f39d +1001da88: 100482d0 .word 0x100482d0 + +1001da8c : +1001da8c: 680b ldr r3, [r1, #0] +1001da8e: 1c5a adds r2, r3, #1 +1001da90: d104 bne.n 1001da9c +1001da92: e007 b.n 1001daa4 +1001da94: f851 3f0c ldr.w r3, [r1, #12]! +1001da98: 1c5a adds r2, r3, #1 +1001da9a: d003 beq.n 1001daa4 +1001da9c: 4283 cmp r3, r0 +1001da9e: d1f9 bne.n 1001da94 +1001daa0: 6848 ldr r0, [r1, #4] +1001daa2: 4770 bx lr +1001daa4: 4618 mov r0, r3 +1001daa6: 4770 bx lr + +1001daa8 : +1001daa8: b510 push {r4, lr} +1001daaa: 1c44 adds r4, r0, #1 +1001daac: d102 bne.n 1001dab4 +1001daae: f04f 30ff mov.w r0, #4294967295 +1001dab2: bd10 pop {r4, pc} +1001dab4: f7ff ffea bl 1001da8c +1001dab8: 1c42 adds r2, r0, #1 +1001daba: 4604 mov r4, r0 +1001dabc: d000 beq.n 1001dac0 +1001dabe: bd10 pop {r4, pc} +1001dac0: 4b04 ldr r3, [pc, #16] ; (1001dad4 ) +1001dac2: 681b ldr r3, [r3, #0] +1001dac4: 075b lsls r3, r3, #29 +1001dac6: d5f2 bpl.n 1001daae +1001dac8: 4903 ldr r1, [pc, #12] ; (1001dad8 ) +1001daca: 4b04 ldr r3, [pc, #16] ; (1001dadc ) +1001dacc: 4804 ldr r0, [pc, #16] ; (1001dae0 ) +1001dace: 4798 blx r3 +1001dad0: 4620 mov r0, r4 +1001dad2: bd10 pop {r4, pc} +1001dad4: 10000314 .word 0x10000314 +1001dad8: 100482bc .word 0x100482bc +1001dadc: 0000f39d .word 0x0000f39d +1001dae0: 100482f4 .word 0x100482f4 + +1001dae4 : +1001dae4: b508 push {r3, lr} +1001dae6: 4b06 ldr r3, [pc, #24] ; (1001db00 ) +1001dae8: f890 2026 ldrb.w r2, [r0, #38] ; 0x26 +1001daec: f853 3022 ldr.w r3, [r3, r2, lsl #2] +1001daf0: b123 cbz r3, 1001dafc +1001daf2: 4804 ldr r0, [pc, #16] ; (1001db04 ) +1001daf4: 2100 movs r1, #0 +1001daf6: f850 0022 ldr.w r0, [r0, r2, lsl #2] +1001dafa: 4798 blx r3 +1001dafc: bd08 pop {r3, pc} +1001dafe: bf00 nop +1001db00: 100517b0 .word 0x100517b0 +1001db04: 100517a4 .word 0x100517a4 + +1001db08 : +1001db08: b510 push {r4, lr} +1001db0a: 68c2 ldr r2, [r0, #12] +1001db0c: 4908 ldr r1, [pc, #32] ; (1001db30 ) +1001db0e: f022 0202 bic.w r2, r2, #2 +1001db12: 60c2 str r2, [r0, #12] +1001db14: f890 4026 ldrb.w r4, [r0, #38] ; 0x26 +1001db18: 4788 blx r1 +1001db1a: 4b06 ldr r3, [pc, #24] ; (1001db34 ) +1001db1c: f853 3024 ldr.w r3, [r3, r4, lsl #2] +1001db20: b123 cbz r3, 1001db2c +1001db22: 4a05 ldr r2, [pc, #20] ; (1001db38 ) +1001db24: 2101 movs r1, #1 +1001db26: f852 0024 ldr.w r0, [r2, r4, lsl #2] +1001db2a: 4798 blx r3 +1001db2c: bd10 pop {r4, pc} +1001db2e: bf00 nop +1001db30: 0000442d .word 0x0000442d +1001db34: 100517b0 .word 0x100517b0 +1001db38: 100517a4 .word 0x100517a4 + +1001db3c : +1001db3c: b5f8 push {r3, r4, r5, r6, r7, lr} +1001db3e: 4604 mov r4, r0 +1001db40: 4608 mov r0, r1 +1001db42: 4936 ldr r1, [pc, #216] ; (1001dc1c ) +1001db44: 4616 mov r6, r2 +1001db46: f7ff ffaf bl 1001daa8 +1001db4a: 4935 ldr r1, [pc, #212] ; (1001dc20 ) +1001db4c: 4605 mov r5, r0 +1001db4e: 4630 mov r0, r6 +1001db50: f7ff ffaa bl 1001daa8 +1001db54: 4601 mov r1, r0 +1001db56: 4628 mov r0, r5 +1001db58: f7ff ff78 bl 1001da4c +1001db5c: f104 0560 add.w r5, r4, #96 ; 0x60 +1001db60: 4607 mov r7, r0 +1001db62: 2c00 cmp r4, #0 +1001db64: d051 beq.n 1001dc0a +1001db66: 2d00 cmp r5, #0 +1001db68: d04f beq.n 1001dc0a +1001db6a: 4e2e ldr r6, [pc, #184] ; (1001dc24 ) +1001db6c: 4620 mov r0, r4 +1001db6e: f000 faf5 bl 1001e15c +1001db72: 4630 mov r0, r6 +1001db74: f000 f9f0 bl 1001df58 +1001db78: f204 4394 addw r3, r4, #1172 ; 0x494 +1001db7c: f504 70a2 add.w r0, r4, #324 ; 0x144 +1001db80: f504 71d6 add.w r1, r4, #428 ; 0x1ac +1001db84: f504 7205 add.w r2, r4, #532 ; 0x214 +1001db88: f8c4 313c str.w r3, [r4, #316] ; 0x13c +1001db8c: f8c4 610c str.w r6, [r4, #268] ; 0x10c +1001db90: f8c4 1114 str.w r1, [r4, #276] ; 0x114 +1001db94: 4e24 ldr r6, [pc, #144] ; (1001dc28 ) +1001db96: f8c4 2138 str.w r2, [r4, #312] ; 0x138 +1001db9a: 2100 movs r1, #0 +1001db9c: 2268 movs r2, #104 ; 0x68 +1001db9e: f8c4 0110 str.w r0, [r4, #272] ; 0x110 +1001dba2: 47b0 blx r6 +1001dba4: 2100 movs r1, #0 +1001dba6: 2268 movs r2, #104 ; 0x68 +1001dba8: f8d4 0114 ldr.w r0, [r4, #276] ; 0x114 +1001dbac: 47b0 blx r6 +1001dbae: 2100 movs r1, #0 +1001dbb0: f44f 7220 mov.w r2, #640 ; 0x280 +1001dbb4: f8d4 0138 ldr.w r0, [r4, #312] ; 0x138 +1001dbb8: 47b0 blx r6 +1001dbba: f44f 7220 mov.w r2, #640 ; 0x280 +1001dbbe: 2100 movs r1, #0 +1001dbc0: f8d4 013c ldr.w r0, [r4, #316] ; 0x13c +1001dbc4: 47b0 blx r6 +1001dbc6: 6823 ldr r3, [r4, #0] +1001dbc8: 4628 mov r0, r5 +1001dbca: f3c7 1103 ubfx r1, r7, #4, #4 +1001dbce: 4798 blx r3 +1001dbd0: f007 070f and.w r7, r7, #15 +1001dbd4: f44f 5216 mov.w r2, #9600 ; 0x2580 +1001dbd8: 2306 movs r3, #6 +1001dbda: f884 708f strb.w r7, [r4, #143] ; 0x8f +1001dbde: 6622 str r2, [r4, #96] ; 0x60 +1001dbe0: f8c4 30a0 str.w r3, [r4, #160] ; 0xa0 +1001dbe4: 4628 mov r0, r5 +1001dbe6: f000 fb35 bl 1001e254 +1001dbea: b138 cbz r0, 1001dbfc +1001dbec: 4b0f ldr r3, [pc, #60] ; (1001dc2c ) +1001dbee: 681b ldr r3, [r3, #0] +1001dbf0: 045b lsls r3, r3, #17 +1001dbf2: d509 bpl.n 1001dc08 +1001dbf4: 4b0e ldr r3, [pc, #56] ; (1001dc30 ) +1001dbf6: 480f ldr r0, [pc, #60] ; (1001dc34 ) +1001dbf8: 4798 blx r3 +1001dbfa: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001dbfc: 6d63 ldr r3, [r4, #84] ; 0x54 +1001dbfe: 4628 mov r0, r5 +1001dc00: 4798 blx r3 +1001dc02: 6da3 ldr r3, [r4, #88] ; 0x58 +1001dc04: 4628 mov r0, r5 +1001dc06: 4798 blx r3 +1001dc08: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001dc0a: 4b08 ldr r3, [pc, #32] ; (1001dc2c ) +1001dc0c: 681b ldr r3, [r3, #0] +1001dc0e: 045a lsls r2, r3, #17 +1001dc10: d5fa bpl.n 1001dc08 +1001dc12: 4909 ldr r1, [pc, #36] ; (1001dc38 ) +1001dc14: 4b06 ldr r3, [pc, #24] ; (1001dc30 ) +1001dc16: 4809 ldr r0, [pc, #36] ; (1001dc3c ) +1001dc18: 4798 blx r3 +1001dc1a: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001dc1c: 100483e4 .word 0x100483e4 +1001dc20: 10048324 .word 0x10048324 +1001dc24: 100517bc .word 0x100517bc +1001dc28: 0000f511 .word 0x0000f511 +1001dc2c: 10000314 .word 0x10000314 +1001dc30: 0000f39d .word 0x0000f39d +1001dc34: 100483c4 .word 0x100483c4 +1001dc38: 1004845c .word 0x1004845c +1001dc3c: 1004839c .word 0x1004839c + +1001dc40 : +1001dc40: f840 1f60 str.w r1, [r0, #96]! +1001dc44: f000 bb04 b.w 1001e250 + +1001dc48 : +1001dc48: 2908 cmp r1, #8 +1001dc4a: bf0c ite eq +1001dc4c: 2101 moveq r1, #1 +1001dc4e: 2100 movne r1, #0 +1001dc50: 3a01 subs r2, #1 +1001dc52: b410 push {r4} +1001dc54: f100 0460 add.w r4, r0, #96 ; 0x60 +1001dc58: f880 1087 strb.w r1, [r0, #135] ; 0x87 +1001dc5c: 2a03 cmp r2, #3 +1001dc5e: d81a bhi.n 1001dc96 +1001dc60: e8df f002 tbb [pc, r2] +1001dc64: 12020212 .word 0x12020212 +1001dc68: 2201 movs r2, #1 +1001dc6a: f880 2089 strb.w r2, [r0, #137] ; 0x89 +1001dc6e: f880 208a strb.w r2, [r0, #138] ; 0x8a +1001dc72: 2b02 cmp r3, #2 +1001dc74: bf0c ite eq +1001dc76: 2301 moveq r3, #1 +1001dc78: 2300 movne r3, #0 +1001dc7a: f880 3088 strb.w r3, [r0, #136] ; 0x88 +1001dc7e: 4620 mov r0, r4 +1001dc80: f85d 4b04 ldr.w r4, [sp], #4 +1001dc84: f000 bae6 b.w 1001e254 +1001dc88: 2101 movs r1, #1 +1001dc8a: 2200 movs r2, #0 +1001dc8c: f880 1089 strb.w r1, [r0, #137] ; 0x89 +1001dc90: f880 208a strb.w r2, [r0, #138] ; 0x8a +1001dc94: e7ed b.n 1001dc72 +1001dc96: 2200 movs r2, #0 +1001dc98: f880 2089 strb.w r2, [r0, #137] ; 0x89 +1001dc9c: e7e9 b.n 1001dc72 +1001dc9e: bf00 nop + +1001dca0 : +1001dca0: b4f0 push {r4, r5, r6, r7} +1001dca2: f8df c038 ldr.w ip, [pc, #56] ; 1001dcdc +1001dca6: f890 4086 ldrb.w r4, [r0, #134] ; 0x86 +1001dcaa: 4f09 ldr r7, [pc, #36] ; (1001dcd0 ) +1001dcac: 4e09 ldr r6, [pc, #36] ; (1001dcd4 ) +1001dcae: 4d0a ldr r5, [pc, #40] ; (1001dcd8 ) +1001dcb0: f100 0360 add.w r3, r0, #96 ; 0x60 +1001dcb4: f8c0 70b0 str.w r7, [r0, #176] ; 0xb0 +1001dcb8: f846 1024 str.w r1, [r6, r4, lsl #2] +1001dcbc: f845 2024 str.w r2, [r5, r4, lsl #2] +1001dcc0: f8c0 c0ac str.w ip, [r0, #172] ; 0xac +1001dcc4: f8c0 30bc str.w r3, [r0, #188] ; 0xbc +1001dcc8: f8c0 30c0 str.w r3, [r0, #192] ; 0xc0 +1001dccc: bcf0 pop {r4, r5, r6, r7} +1001dcce: 4770 bx lr +1001dcd0: 1001dae5 .word 0x1001dae5 +1001dcd4: 100517b0 .word 0x100517b0 +1001dcd8: 100517a4 .word 0x100517a4 +1001dcdc: 1001db09 .word 0x1001db09 + +1001dce0 : +1001dce0: b570 push {r4, r5, r6, lr} +1001dce2: 4604 mov r4, r0 +1001dce4: f100 0560 add.w r5, r0, #96 ; 0x60 +1001dce8: f890 3086 ldrb.w r3, [r0, #134] ; 0x86 +1001dcec: b17a cbz r2, 1001dd0e +1001dcee: 4a20 ldr r2, [pc, #128] ; (1001dd70 ) +1001dcf0: 2900 cmp r1, #0 +1001dcf2: d02f beq.n 1001dd54 +1001dcf4: f852 1023 ldr.w r1, [r2, r3, lsl #2] +1001dcf8: f041 0101 orr.w r1, r1, #1 +1001dcfc: f842 1023 str.w r1, [r2, r3, lsl #2] +1001dd00: 6d63 ldr r3, [r4, #84] ; 0x54 +1001dd02: 4628 mov r0, r5 +1001dd04: 4798 blx r3 +1001dd06: 6da3 ldr r3, [r4, #88] ; 0x58 +1001dd08: 4628 mov r0, r5 +1001dd0a: 4798 blx r3 +1001dd0c: bd70 pop {r4, r5, r6, pc} +1001dd0e: 4a18 ldr r2, [pc, #96] ; (1001dd70 ) +1001dd10: 6ec0 ldr r0, [r0, #108] ; 0x6c +1001dd12: b1a9 cbz r1, 1001dd40 +1001dd14: f852 1023 ldr.w r1, [r2, r3, lsl #2] +1001dd18: f020 0002 bic.w r0, r0, #2 +1001dd1c: f021 0101 bic.w r1, r1, #1 +1001dd20: f842 1023 str.w r1, [r2, r3, lsl #2] +1001dd24: 66e0 str r0, [r4, #108] ; 0x6c +1001dd26: 4b13 ldr r3, [pc, #76] ; (1001dd74 ) +1001dd28: 4628 mov r0, r5 +1001dd2a: 4798 blx r3 +1001dd2c: 6ee3 ldr r3, [r4, #108] ; 0x6c +1001dd2e: b933 cbnz r3, 1001dd3e +1001dd30: 3494 adds r4, #148 ; 0x94 +1001dd32: 4b11 ldr r3, [pc, #68] ; (1001dd78 ) +1001dd34: 4620 mov r0, r4 +1001dd36: 4798 blx r3 +1001dd38: 4620 mov r0, r4 +1001dd3a: 4b10 ldr r3, [pc, #64] ; (1001dd7c ) +1001dd3c: 4798 blx r3 +1001dd3e: bd70 pop {r4, r5, r6, pc} +1001dd40: f852 1023 ldr.w r1, [r2, r3, lsl #2] +1001dd44: f020 0005 bic.w r0, r0, #5 +1001dd48: f021 0102 bic.w r1, r1, #2 +1001dd4c: f842 1023 str.w r1, [r2, r3, lsl #2] +1001dd50: 66e0 str r0, [r4, #108] ; 0x6c +1001dd52: e7e8 b.n 1001dd26 +1001dd54: 6ec0 ldr r0, [r0, #108] ; 0x6c +1001dd56: f852 1023 ldr.w r1, [r2, r3, lsl #2] +1001dd5a: f040 0005 orr.w r0, r0, #5 +1001dd5e: f041 0102 orr.w r1, r1, #2 +1001dd62: 66e0 str r0, [r4, #108] ; 0x6c +1001dd64: 4e03 ldr r6, [pc, #12] ; (1001dd74 ) +1001dd66: 4628 mov r0, r5 +1001dd68: f842 1023 str.w r1, [r2, r3, lsl #2] +1001dd6c: 47b0 blx r6 +1001dd6e: e7c7 b.n 1001dd00 +1001dd70: 100517e4 .word 0x100517e4 +1001dd74: 0000442d .word 0x0000442d +1001dd78: 00004091 .word 0x00004091 +1001dd7c: 0000418d .word 0x0000418d + +1001dd80 : +1001dd80: f890 3086 ldrb.w r3, [r0, #134] ; 0x86 +1001dd84: f503 1380 add.w r3, r3, #1048576 ; 0x100000 +1001dd88: f503 7380 add.w r3, r3, #256 ; 0x100 +1001dd8c: 0299 lsls r1, r3, #10 +1001dd8e: f101 0214 add.w r2, r1, #20 +1001dd92: 6813 ldr r3, [r2, #0] +1001dd94: 07db lsls r3, r3, #31 +1001dd96: d5fc bpl.n 1001dd92 +1001dd98: 6a48 ldr r0, [r1, #36] ; 0x24 +1001dd9a: b2c0 uxtb r0, r0 +1001dd9c: 4770 bx lr +1001dd9e: bf00 nop + +1001dda0 : +1001dda0: b538 push {r3, r4, r5, lr} +1001dda2: 4604 mov r4, r0 +1001dda4: f890 0086 ldrb.w r0, [r0, #134] ; 0x86 +1001dda8: f500 1380 add.w r3, r0, #1048576 ; 0x100000 +1001ddac: f503 7380 add.w r3, r3, #256 ; 0x100 +1001ddb0: 029d lsls r5, r3, #10 +1001ddb2: f105 0214 add.w r2, r5, #20 +1001ddb6: 6813 ldr r3, [r2, #0] +1001ddb8: 069b lsls r3, r3, #26 +1001ddba: d5fc bpl.n 1001ddb6 +1001ddbc: 4b08 ldr r3, [pc, #32] ; (1001dde0 ) +1001ddbe: b2c9 uxtb r1, r1 +1001ddc0: f853 3020 ldr.w r3, [r3, r0, lsl #2] +1001ddc4: 6269 str r1, [r5, #36] ; 0x24 +1001ddc6: 07db lsls r3, r3, #31 +1001ddc8: d400 bmi.n 1001ddcc +1001ddca: bd38 pop {r3, r4, r5, pc} +1001ddcc: 6ee3 ldr r3, [r4, #108] ; 0x6c +1001ddce: f104 0060 add.w r0, r4, #96 ; 0x60 +1001ddd2: f043 0302 orr.w r3, r3, #2 +1001ddd6: 66e3 str r3, [r4, #108] ; 0x6c +1001ddd8: 4b02 ldr r3, [pc, #8] ; (1001dde4 ) +1001ddda: 4798 blx r3 +1001dddc: bd38 pop {r3, r4, r5, pc} +1001ddde: bf00 nop +1001dde0: 100517e4 .word 0x100517e4 +1001dde4: 0000442d .word 0x0000442d + +1001dde8 : +1001dde8: 2902 cmp r1, #2 +1001ddea: 4603 mov r3, r0 +1001ddec: f100 0060 add.w r0, r0, #96 ; 0x60 +1001ddf0: d00a beq.n 1001de08 +1001ddf2: 2903 cmp r1, #3 +1001ddf4: d008 beq.n 1001de08 +1001ddf6: 2901 cmp r1, #1 +1001ddf8: d00c beq.n 1001de14 +1001ddfa: 2100 movs r1, #0 +1001ddfc: 2201 movs r2, #1 +1001ddfe: 6659 str r1, [r3, #100] ; 0x64 +1001de00: f883 2106 strb.w r2, [r3, #262] ; 0x106 +1001de04: f000 ba82 b.w 1001e30c +1001de08: 2201 movs r2, #1 +1001de0a: 665a str r2, [r3, #100] ; 0x64 +1001de0c: f883 2106 strb.w r2, [r3, #262] ; 0x106 +1001de10: f000 ba7c b.w 1001e30c +1001de14: 6659 str r1, [r3, #100] ; 0x64 +1001de16: f883 1106 strb.w r1, [r3, #262] ; 0x106 +1001de1a: f000 ba77 b.w 1001e30c +1001de1e: bf00 nop + +1001de20 : +1001de20: f890 3086 ldrb.w r3, [r0, #134] ; 0x86 +1001de24: b2c9 uxtb r1, r1 +1001de26: f503 1380 add.w r3, r3, #1048576 ; 0x100000 +1001de2a: 018a lsls r2, r1, #6 +1001de2c: f503 7380 add.w r3, r3, #256 ; 0x100 +1001de30: f042 0209 orr.w r2, r2, #9 +1001de34: 029b lsls r3, r3, #10 +1001de36: b2d2 uxtb r2, r2 +1001de38: 721a strb r2, [r3, #8] +1001de3a: 4770 bx lr + +1001de3c : +1001de3c: b2c0 uxtb r0, r0 +1001de3e: b909 cbnz r1, 1001de44 +1001de40: f000 00fe and.w r0, r0, #254 ; 0xfe +1001de44: b900 cbnz r0, 1001de48 +1001de46: 4770 bx lr +1001de48: b2d2 uxtb r2, r2 +1001de4a: b2db uxtb r3, r3 +1001de4c: f002 bb12 b.w 10020474 + +1001de50 : +1001de50: b508 push {r3, lr} +1001de52: 4b07 ldr r3, [pc, #28] ; (1001de70 ) +1001de54: 2221 movs r2, #33 ; 0x21 +1001de56: 601a str r2, [r3, #0] +1001de58: 4806 ldr r0, [pc, #24] ; (1001de74 ) +1001de5a: 4b07 ldr r3, [pc, #28] ; (1001de78 ) +1001de5c: 4798 blx r3 +1001de5e: 4a07 ldr r2, [pc, #28] ; (1001de7c ) +1001de60: 4b07 ldr r3, [pc, #28] ; (1001de80 ) +1001de62: 6811 ldr r1, [r2, #0] +1001de64: f401 61e0 and.w r1, r1, #1792 ; 0x700 +1001de68: 430b orrs r3, r1 +1001de6a: 6013 str r3, [r2, #0] +1001de6c: bd08 pop {r3, pc} +1001de6e: bf00 nop +1001de70: 40000014 .word 0x40000014 +1001de74: 000186a0 .word 0x000186a0 +1001de78: 00000899 .word 0x00000899 +1001de7c: e000ed0c .word 0xe000ed0c +1001de80: 05fa0004 .word 0x05fa0004 + +1001de84 : +1001de84: 2000 movs r0, #0 +1001de86: 4770 bx lr + +1001de88 : +1001de88: b508 push {r3, lr} +1001de8a: 4b08 ldr r3, [pc, #32] ; (1001deac ) +1001de8c: 2001 movs r0, #1 +1001de8e: 689b ldr r3, [r3, #8] +1001de90: 4798 blx r3 +1001de92: 43c0 mvns r0, r0 +1001de94: 0b03 lsrs r3, r0, #12 +1001de96: 4906 ldr r1, [pc, #24] ; (1001deb0 ) +1001de98: 4a06 ldr r2, [pc, #24] ; (1001deb4 ) +1001de9a: eba0 3003 sub.w r0, r0, r3, lsl #12 +1001de9e: fb01 f000 mul.w r0, r1, r0 +1001dea2: fb02 f303 mul.w r3, r2, r3 +1001dea6: eb03 30d0 add.w r0, r3, r0, lsr #15 +1001deaa: bd08 pop {r3, pc} +1001deac: 10000318 .word 0x10000318 +1001deb0: 000f4240 .word 0x000f4240 +1001deb4: 0001e848 .word 0x0001e848 + +1001deb8 : +1001deb8: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1001debc: 4e1c ldr r6, [pc, #112] ; (1001df30 ) +1001debe: 4b1d ldr r3, [pc, #116] ; (1001df34 ) +1001dec0: f04f 0900 mov.w r9, #0 +1001dec4: 4d1c ldr r5, [pc, #112] ; (1001df38 ) +1001dec6: f8c6 9000 str.w r9, [r6] +1001deca: 2028 movs r0, #40 ; 0x28 +1001decc: 6033 str r3, [r6, #0] +1001dece: 47a8 blx r5 +1001ded0: 4b1a ldr r3, [pc, #104] ; (1001df3c ) +1001ded2: f8c6 9000 str.w r9, [r6] +1001ded6: 2028 movs r0, #40 ; 0x28 +1001ded8: 6033 str r3, [r6, #0] +1001deda: 47a8 blx r5 +1001dedc: 4b18 ldr r3, [pc, #96] ; (1001df40 ) +1001dede: f8c6 9000 str.w r9, [r6] +1001dee2: 2028 movs r0, #40 ; 0x28 +1001dee4: 6033 str r3, [r6, #0] +1001dee6: 47a8 blx r5 +1001dee8: 4b16 ldr r3, [pc, #88] ; (1001df44 ) +1001deea: f8c6 9000 str.w r9, [r6] +1001deee: 2028 movs r0, #40 ; 0x28 +1001def0: 6033 str r3, [r6, #0] +1001def2: 47a8 blx r5 +1001def4: 4637 mov r7, r6 +1001def6: f8c6 9000 str.w r9, [r6] +1001defa: 4c13 ldr r4, [pc, #76] ; (1001df48 ) +1001defc: f8df 8054 ldr.w r8, [pc, #84] ; 1001df54 +1001df00: 46a9 mov r9, r5 +1001df02: f44f 1688 mov.w r6, #1114112 ; 0x110000 +1001df06: e002 b.n 1001df0e +1001df08: 47c8 blx r9 +1001df0a: 3c01 subs r4, #1 +1001df0c: d00a beq.n 1001df24 +1001df0e: 603e str r6, [r7, #0] +1001df10: 2028 movs r0, #40 ; 0x28 +1001df12: 47a8 blx r5 +1001df14: f8d8 3000 ldr.w r3, [r8] +1001df18: 201e movs r0, #30 +1001df1a: f413 5f40 tst.w r3, #12288 ; 0x3000 +1001df1e: d0f3 beq.n 1001df08 +1001df20: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1001df24: 4908 ldr r1, [pc, #32] ; (1001df48 ) +1001df26: 4b09 ldr r3, [pc, #36] ; (1001df4c ) +1001df28: 4809 ldr r0, [pc, #36] ; (1001df50 ) +1001df2a: 4798 blx r3 +1001df2c: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1001df30: 40000274 .word 0x40000274 +1001df34: 00811500 .word 0x00811500 +1001df38: 00000899 .word 0x00000899 +1001df3c: 008201c0 .word 0x008201c0 +1001df40: 00840100 .word 0x00840100 +1001df44: 0080f980 .word 0x0080f980 +1001df48: 000186a1 .word 0x000186a1 +1001df4c: 0000f39d .word 0x0000f39d +1001df50: 10048468 .word 0x10048468 +1001df54: 40000278 .word 0x40000278 + +1001df58 : +1001df58: e92d 03f0 stmdb sp!, {r4, r5, r6, r7, r8, r9} +1001df5c: f8df c054 ldr.w ip, [pc, #84] ; 1001dfb4 +1001df60: f8df 9054 ldr.w r9, [pc, #84] ; 1001dfb8 +1001df64: f8df 8054 ldr.w r8, [pc, #84] ; 1001dfbc +1001df68: 4f0b ldr r7, [pc, #44] ; (1001df98 ) +1001df6a: 4e0c ldr r6, [pc, #48] ; (1001df9c ) +1001df6c: 4d0c ldr r5, [pc, #48] ; (1001dfa0 ) +1001df6e: 4c0d ldr r4, [pc, #52] ; (1001dfa4 ) +1001df70: 490d ldr r1, [pc, #52] ; (1001dfa8 ) +1001df72: 4a0e ldr r2, [pc, #56] ; (1001dfac ) +1001df74: 4b0e ldr r3, [pc, #56] ; (1001dfb0 ) +1001df76: f8c0 9000 str.w r9, [r0] +1001df7a: f8c0 8004 str.w r8, [r0, #4] +1001df7e: 6147 str r7, [r0, #20] +1001df80: 6086 str r6, [r0, #8] +1001df82: 60c5 str r5, [r0, #12] +1001df84: 6184 str r4, [r0, #24] +1001df86: f8c0 c010 str.w ip, [r0, #16] +1001df8a: 61c1 str r1, [r0, #28] +1001df8c: 6202 str r2, [r0, #32] +1001df8e: 6243 str r3, [r0, #36] ; 0x24 +1001df90: e8bd 03f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9} +1001df94: 4770 bx lr +1001df96: bf00 nop +1001df98: 00005e51 .word 0x00005e51 +1001df9c: 00005ebd .word 0x00005ebd +1001dfa0: 1001e449 .word 0x1001e449 +1001dfa4: 00005e0d .word 0x00005e0d +1001dfa8: 00006419 .word 0x00006419 +1001dfac: 000064a1 .word 0x000064a1 +1001dfb0: 00006501 .word 0x00006501 +1001dfb4: 00005e6d .word 0x00005e6d +1001dfb8: 00005df1 .word 0x00005df1 +1001dfbc: 00005e91 .word 0x00005e91 + +1001dfc0 : +1001dfc0: b508 push {r3, lr} +1001dfc2: 4b01 ldr r3, [pc, #4] ; (1001dfc8 ) +1001dfc4: 4798 blx r3 +1001dfc6: bd08 pop {r3, pc} +1001dfc8: 0000e1c1 .word 0x0000e1c1 + +1001dfcc : +1001dfcc: 2901 cmp r1, #1 +1001dfce: b508 push {r3, lr} +1001dfd0: d005 beq.n 1001dfde +1001dfd2: 1e8b subs r3, r1, #2 +1001dfd4: 4259 negs r1, r3 +1001dfd6: 4159 adcs r1, r3 +1001dfd8: 4b03 ldr r3, [pc, #12] ; (1001dfe8 ) +1001dfda: 4798 blx r3 +1001dfdc: bd08 pop {r3, pc} +1001dfde: 2102 movs r1, #2 +1001dfe0: 4b01 ldr r3, [pc, #4] ; (1001dfe8 ) +1001dfe2: 4798 blx r3 +1001dfe4: bd08 pop {r3, pc} +1001dfe6: bf00 nop +1001dfe8: 0000d39d .word 0x0000d39d + +1001dfec : +1001dfec: b538 push {r3, r4, r5, lr} +1001dfee: 4b15 ldr r3, [pc, #84] ; (1001e044 ) +1001dff0: 4604 mov r4, r0 +1001dff2: 681a ldr r2, [r3, #0] +1001dff4: b31a cbz r2, 1001e03e +1001dff6: 6861 ldr r1, [r4, #4] +1001dff8: 4b13 ldr r3, [pc, #76] ; (1001e048 ) +1001dffa: f3c1 1041 ubfx r0, r1, #5, #2 +1001dffe: f001 011f and.w r1, r1, #31 +1001e002: 4798 blx r3 +1001e004: 2101 movs r1, #1 +1001e006: 4605 mov r5, r0 +1001e008: f001 fed4 bl 1001fdb4 +1001e00c: b940 cbnz r0, 1001e020 +1001e00e: 4b0f ldr r3, [pc, #60] ; (1001e04c ) +1001e010: 681b ldr r3, [r3, #0] +1001e012: 075b lsls r3, r3, #29 +1001e014: d50c bpl.n 1001e030 +1001e016: 4629 mov r1, r5 +1001e018: 4b0d ldr r3, [pc, #52] ; (1001e050 ) +1001e01a: 480e ldr r0, [pc, #56] ; (1001e054 ) +1001e01c: 4798 blx r3 +1001e01e: bd38 pop {r3, r4, r5, pc} +1001e020: 4628 mov r0, r5 +1001e022: 4b0d ldr r3, [pc, #52] ; (1001e058 ) +1001e024: 2100 movs r1, #0 +1001e026: 4798 blx r3 +1001e028: 4620 mov r0, r4 +1001e02a: 4b0c ldr r3, [pc, #48] ; (1001e05c ) +1001e02c: 4798 blx r3 +1001e02e: b900 cbnz r0, 1001e032 +1001e030: bd38 pop {r3, r4, r5, pc} +1001e032: 4628 mov r0, r5 +1001e034: 2100 movs r1, #0 +1001e036: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001e03a: f001 bebb b.w 1001fdb4 +1001e03e: 4a08 ldr r2, [pc, #32] ; (1001e060 ) +1001e040: 601a str r2, [r3, #0] +1001e042: e7d8 b.n 1001dff6 +1001e044: 10000354 .word 0x10000354 +1001e048: 0000d331 .word 0x0000d331 +1001e04c: 10000314 .word 0x10000314 +1001e050: 0000f39d .word 0x0000f39d +1001e054: 100484c4 .word 0x100484c4 +1001e058: 0000d39d .word 0x0000d39d +1001e05c: 0000d805 .word 0x0000d805 +1001e060: 100517f0 .word 0x100517f0 + +1001e064 : +1001e064: b538 push {r3, r4, r5, lr} +1001e066: 4d20 ldr r5, [pc, #128] ; (1001e0e8 ) +1001e068: 4604 mov r4, r0 +1001e06a: 6828 ldr r0, [r5, #0] +1001e06c: 2800 cmp r0, #0 +1001e06e: d02e beq.n 1001e0ce +1001e070: 6803 ldr r3, [r0, #0] +1001e072: 2b00 cmp r3, #0 +1001e074: d02e beq.n 1001e0d4 +1001e076: 6861 ldr r1, [r4, #4] +1001e078: 4b1c ldr r3, [pc, #112] ; (1001e0ec ) +1001e07a: f3c1 1041 ubfx r0, r1, #5, #2 +1001e07e: f001 011f and.w r1, r1, #31 +1001e082: 4798 blx r3 +1001e084: 2101 movs r1, #1 +1001e086: 4605 mov r5, r0 +1001e088: f001 fe94 bl 1001fdb4 +1001e08c: b940 cbnz r0, 1001e0a0 +1001e08e: 4b18 ldr r3, [pc, #96] ; (1001e0f0 ) +1001e090: 681b ldr r3, [r3, #0] +1001e092: 075a lsls r2, r3, #29 +1001e094: d514 bpl.n 1001e0c0 +1001e096: 4629 mov r1, r5 +1001e098: 4b16 ldr r3, [pc, #88] ; (1001e0f4 ) +1001e09a: 4817 ldr r0, [pc, #92] ; (1001e0f8 ) +1001e09c: 4798 blx r3 +1001e09e: bd38 pop {r3, r4, r5, pc} +1001e0a0: 4b16 ldr r3, [pc, #88] ; (1001e0fc ) +1001e0a2: 681b ldr r3, [r3, #0] +1001e0a4: 075b lsls r3, r3, #29 +1001e0a6: d504 bpl.n 1001e0b2 +1001e0a8: 4815 ldr r0, [pc, #84] ; (1001e100 ) +1001e0aa: 6861 ldr r1, [r4, #4] +1001e0ac: 6822 ldr r2, [r4, #0] +1001e0ae: 4b11 ldr r3, [pc, #68] ; (1001e0f4 ) +1001e0b0: 4798 blx r3 +1001e0b2: 4b14 ldr r3, [pc, #80] ; (1001e104 ) +1001e0b4: 4620 mov r0, r4 +1001e0b6: 4798 blx r3 +1001e0b8: 4620 mov r0, r4 +1001e0ba: 4b13 ldr r3, [pc, #76] ; (1001e108 ) +1001e0bc: 4798 blx r3 +1001e0be: b900 cbnz r0, 1001e0c2 +1001e0c0: bd38 pop {r3, r4, r5, pc} +1001e0c2: 4628 mov r0, r5 +1001e0c4: 2100 movs r1, #0 +1001e0c6: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1001e0ca: f001 be73 b.w 1001fdb4 +1001e0ce: 480f ldr r0, [pc, #60] ; (1001e10c ) +1001e0d0: 6028 str r0, [r5, #0] +1001e0d2: e7cd b.n 1001e070 +1001e0d4: 4a0e ldr r2, [pc, #56] ; (1001e110 ) +1001e0d6: 2306 movs r3, #6 +1001e0d8: 6002 str r2, [r0, #0] +1001e0da: 60c3 str r3, [r0, #12] +1001e0dc: 4b0d ldr r3, [pc, #52] ; (1001e114 ) +1001e0de: 4798 blx r3 +1001e0e0: 6828 ldr r0, [r5, #0] +1001e0e2: 4b0d ldr r3, [pc, #52] ; (1001e118 ) +1001e0e4: 4798 blx r3 +1001e0e6: e7c6 b.n 1001e076 +1001e0e8: 10000354 .word 0x10000354 +1001e0ec: 0000d331 .word 0x0000d331 +1001e0f0: 10000314 .word 0x10000314 +1001e0f4: 0000f39d .word 0x0000f39d +1001e0f8: 100484fc .word 0x100484fc +1001e0fc: 10000310 .word 0x10000310 +1001e100: 10048538 .word 0x10048538 +1001e104: 0000dfc1 .word 0x0000dfc1 +1001e108: 0000d805 .word 0x0000d805 +1001e10c: 100517f0 .word 0x100517f0 +1001e110: 0000d645 .word 0x0000d645 +1001e114: 0000ddad .word 0x0000ddad +1001e118: 000040f1 .word 0x000040f1 + +1001e11c : +1001e11c: b4f0 push {r4, r5, r6, r7} +1001e11e: 4908 ldr r1, [pc, #32] ; (1001e140 ) +1001e120: 4f08 ldr r7, [pc, #32] ; (1001e144 ) +1001e122: 4e09 ldr r6, [pc, #36] ; (1001e148 ) +1001e124: 4d09 ldr r5, [pc, #36] ; (1001e14c ) +1001e126: 4c0a ldr r4, [pc, #40] ; (1001e150 ) +1001e128: 4a0a ldr r2, [pc, #40] ; (1001e154 ) +1001e12a: 4b0b ldr r3, [pc, #44] ; (1001e158 ) +1001e12c: 6007 str r7, [r0, #0] +1001e12e: 6046 str r6, [r0, #4] +1001e130: 6085 str r5, [r0, #8] +1001e132: 60c4 str r4, [r0, #12] +1001e134: 6101 str r1, [r0, #16] +1001e136: 6142 str r2, [r0, #20] +1001e138: 6183 str r3, [r0, #24] +1001e13a: bcf0 pop {r4, r5, r6, r7} +1001e13c: 4770 bx lr +1001e13e: bf00 nop +1001e140: 1001ebc9 .word 0x1001ebc9 +1001e144: 0000ef09 .word 0x0000ef09 +1001e148: 1001e961 .word 0x1001e961 +1001e14c: 1001eb41 .word 0x1001eb41 +1001e150: 0000f0bd .word 0x0000f0bd +1001e154: 1001ebb1 .word 0x1001ebb1 +1001e158: 0000f0d1 .word 0x0000f0d1 + +1001e15c : +1001e15c: e92d 0ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp} +1001e160: f8df c0c4 ldr.w ip, [pc, #196] ; 1001e228 +1001e164: f8df b0c4 ldr.w fp, [pc, #196] ; 1001e22c +1001e168: f8df a0c4 ldr.w sl, [pc, #196] ; 1001e230 +1001e16c: f8df 90c4 ldr.w r9, [pc, #196] ; 1001e234 +1001e170: f8df 80c4 ldr.w r8, [pc, #196] ; 1001e238 +1001e174: 4f1e ldr r7, [pc, #120] ; (1001e1f0 ) +1001e176: 4e1f ldr r6, [pc, #124] ; (1001e1f4 ) +1001e178: 4d1f ldr r5, [pc, #124] ; (1001e1f8 ) +1001e17a: 4c20 ldr r4, [pc, #128] ; (1001e1fc ) +1001e17c: 4920 ldr r1, [pc, #128] ; (1001e200 ) +1001e17e: 4a21 ldr r2, [pc, #132] ; (1001e204 ) +1001e180: 4b21 ldr r3, [pc, #132] ; (1001e208 ) +1001e182: f8c0 b000 str.w fp, [r0] +1001e186: f8c0 a004 str.w sl, [r0, #4] +1001e18a: f8df b0b0 ldr.w fp, [pc, #176] ; 1001e23c +1001e18e: f8df a0b0 ldr.w sl, [pc, #176] ; 1001e240 +1001e192: f8c0 9008 str.w r9, [r0, #8] +1001e196: f8c0 800c str.w r8, [r0, #12] +1001e19a: f8df 90a8 ldr.w r9, [pc, #168] ; 1001e244 +1001e19e: f8df 80a8 ldr.w r8, [pc, #168] ; 1001e248 +1001e1a2: f8c0 c010 str.w ip, [r0, #16] +1001e1a6: 6147 str r7, [r0, #20] +1001e1a8: f8df c0a0 ldr.w ip, [pc, #160] ; 1001e24c +1001e1ac: 4f17 ldr r7, [pc, #92] ; (1001e20c ) +1001e1ae: 6186 str r6, [r0, #24] +1001e1b0: 61c5 str r5, [r0, #28] +1001e1b2: 4e17 ldr r6, [pc, #92] ; (1001e210 ) +1001e1b4: 4d17 ldr r5, [pc, #92] ; (1001e214 ) +1001e1b6: 6204 str r4, [r0, #32] +1001e1b8: 6241 str r1, [r0, #36] ; 0x24 +1001e1ba: 4c17 ldr r4, [pc, #92] ; (1001e218 ) +1001e1bc: 4917 ldr r1, [pc, #92] ; (1001e21c ) +1001e1be: 6282 str r2, [r0, #40] ; 0x28 +1001e1c0: 62c3 str r3, [r0, #44] ; 0x2c +1001e1c2: 4a17 ldr r2, [pc, #92] ; (1001e220 ) +1001e1c4: 4b17 ldr r3, [pc, #92] ; (1001e224 ) +1001e1c6: f8c0 b030 str.w fp, [r0, #48] ; 0x30 +1001e1ca: f8c0 a034 str.w sl, [r0, #52] ; 0x34 +1001e1ce: f8c0 9038 str.w r9, [r0, #56] ; 0x38 +1001e1d2: f8c0 803c str.w r8, [r0, #60] ; 0x3c +1001e1d6: 6447 str r7, [r0, #68] ; 0x44 +1001e1d8: 6486 str r6, [r0, #72] ; 0x48 +1001e1da: 64c5 str r5, [r0, #76] ; 0x4c +1001e1dc: 6504 str r4, [r0, #80] ; 0x50 +1001e1de: f8c0 c040 str.w ip, [r0, #64] ; 0x40 +1001e1e2: 6541 str r1, [r0, #84] ; 0x54 +1001e1e4: 6582 str r2, [r0, #88] ; 0x58 +1001e1e6: 65c3 str r3, [r0, #92] ; 0x5c +1001e1e8: e8bd 0ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp} +1001e1ec: 4770 bx lr +1001e1ee: bf00 nop +1001e1f0: 00004855 .word 0x00004855 +1001e1f4: 00004281 .word 0x00004281 +1001e1f8: 000053b1 .word 0x000053b1 +1001e1fc: 00004d09 .word 0x00004d09 +1001e200: 1001f305 .word 0x1001f305 +1001e204: 1001f4b9 .word 0x1001f4b9 +1001e208: 0000429d .word 0x0000429d +1001e20c: 0000442d .word 0x0000442d +1001e210: 000042e1 .word 0x000042e1 +1001e214: 00004681 .word 0x00004681 +1001e218: 000042bd .word 0x000042bd +1001e21c: 000049d1 .word 0x000049d1 +1001e220: 00004985 .word 0x00004985 +1001e224: 00004845 .word 0x00004845 +1001e228: 1001f08d .word 0x1001f08d +1001e22c: 00004a4d .word 0x00004a4d +1001e230: 00004add .word 0x00004add +1001e234: 00004bc9 .word 0x00004bc9 +1001e238: 1001ebf1 .word 0x1001ebf1 +1001e23c: 00005599 .word 0x00005599 +1001e240: 0000504d .word 0x0000504d +1001e244: 000051ad .word 0x000051ad +1001e248: 1001f3e5 .word 0x1001f3e5 +1001e24c: 000043e1 .word 0x000043e1 + +1001e250 : +1001e250: f000 bde8 b.w 1001ee24 + +1001e254 : +1001e254: b530 push {r4, r5, lr} +1001e256: 4b1f ldr r3, [pc, #124] ; (1001e2d4 ) +1001e258: b083 sub sp, #12 +1001e25a: 6743 str r3, [r0, #116] ; 0x74 +1001e25c: 4604 mov r4, r0 +1001e25e: f000 fcbf bl 1001ebe0 +1001e262: 2801 cmp r0, #1 +1001e264: d91f bls.n 1001e2a6 +1001e266: 4d1c ldr r5, [pc, #112] ; (1001e2d8 ) +1001e268: 481c ldr r0, [pc, #112] ; (1001e2dc ) +1001e26a: 491d ldr r1, [pc, #116] ; (1001e2e0 ) +1001e26c: 4a1d ldr r2, [pc, #116] ; (1001e2e4 ) +1001e26e: 4b1e ldr r3, [pc, #120] ; (1001e2e8 ) +1001e270: f8c4 1080 str.w r1, [r4, #128] ; 0x80 +1001e274: f8c4 2084 str.w r2, [r4, #132] ; 0x84 +1001e278: 491c ldr r1, [pc, #112] ; (1001e2ec ) +1001e27a: f8c4 3088 str.w r3, [r4, #136] ; 0x88 +1001e27e: 4a1c ldr r2, [pc, #112] ; (1001e2f0 ) +1001e280: 4b1c ldr r3, [pc, #112] ; (1001e2f4 ) +1001e282: 67e0 str r0, [r4, #124] ; 0x7c +1001e284: f8c4 108c str.w r1, [r4, #140] ; 0x8c +1001e288: 67a5 str r5, [r4, #120] ; 0x78 +1001e28a: f8c4 2090 str.w r2, [r4, #144] ; 0x90 +1001e28e: f8c4 3094 str.w r3, [r4, #148] ; 0x94 +1001e292: f894 0026 ldrb.w r0, [r4, #38] ; 0x26 +1001e296: f894 102f ldrb.w r1, [r4, #47] ; 0x2f +1001e29a: f001 fdcd bl 1001fe38 +1001e29e: b940 cbnz r0, 1001e2b2 +1001e2a0: 2005 movs r0, #5 +1001e2a2: b003 add sp, #12 +1001e2a4: bd30 pop {r4, r5, pc} +1001e2a6: 4d14 ldr r5, [pc, #80] ; (1001e2f8 ) +1001e2a8: 4814 ldr r0, [pc, #80] ; (1001e2fc ) +1001e2aa: 4915 ldr r1, [pc, #84] ; (1001e300 ) +1001e2ac: 4a15 ldr r2, [pc, #84] ; (1001e304 ) +1001e2ae: 4b16 ldr r3, [pc, #88] ; (1001e308 ) +1001e2b0: e7de b.n 1001e270 +1001e2b2: 4620 mov r0, r4 +1001e2b4: f000 feea bl 1001f08c +1001e2b8: 4605 mov r5, r0 +1001e2ba: 2800 cmp r0, #0 +1001e2bc: d1f1 bne.n 1001e2a2 +1001e2be: f894 3026 ldrb.w r3, [r4, #38] ; 0x26 +1001e2c2: f88d 0005 strb.w r0, [sp, #5] +1001e2c6: f88d 3004 strb.w r3, [sp, #4] +1001e2ca: 9801 ldr r0, [sp, #4] +1001e2cc: f002 f882 bl 100203d4 +1001e2d0: 4628 mov r0, r5 +1001e2d2: e7e6 b.n 1001e2a2 +1001e2d4: 100487f8 .word 0x100487f8 +1001e2d8: 10048774 .word 0x10048774 +1001e2dc: 100489a8 .word 0x100489a8 +1001e2e0: 10048958 .word 0x10048958 +1001e2e4: 100488a8 .word 0x100488a8 +1001e2e8: 100487a0 .word 0x100487a0 +1001e2ec: 10048984 .word 0x10048984 +1001e2f0: 10048708 .word 0x10048708 +1001e2f4: 10048998 .word 0x10048998 +1001e2f8: 1004871c .word 0x1004871c +1001e2fc: 10048900 .word 0x10048900 +1001e300: 10048748 .word 0x10048748 +1001e304: 100488d4 .word 0x100488d4 +1001e308: 100487cc .word 0x100487cc + +1001e30c : +1001e30c: b538 push {r3, r4, r5, lr} +1001e30e: 4605 mov r5, r0 +1001e310: f000 ffe4 bl 1001f2dc +1001e314: f895 10a6 ldrb.w r1, [r5, #166] ; 0xa6 +1001e318: 4604 mov r4, r0 +1001e31a: 4628 mov r0, r5 +1001e31c: f025 fa68 bl 100437f0 <__HalRuartRTSCtrlRtl8195a_veneer> +1001e320: 4620 mov r0, r4 +1001e322: bd38 pop {r3, r4, r5, pc} + +1001e324 : +1001e324: 4b03 ldr r3, [pc, #12] ; (1001e334 ) +1001e326: 6818 ldr r0, [r3, #0] +1001e328: f1d0 0001 rsbs r0, r0, #1 +1001e32c: bf38 it cc +1001e32e: 2000 movcc r0, #0 +1001e330: 4770 bx lr +1001e332: bf00 nop +1001e334: 1004d83c .word 0x1004d83c + +1001e338 : +1001e338: b5f8 push {r3, r4, r5, r6, r7, lr} +1001e33a: 4c26 ldr r4, [pc, #152] ; (1001e3d4 ) +1001e33c: 2300 movs r3, #0 +1001e33e: 6805 ldr r5, [r0, #0] +1001e340: f104 0680 add.w r6, r4, #128 ; 0x80 +1001e344: 6003 str r3, [r0, #0] +1001e346: f854 3f04 ldr.w r3, [r4, #4]! +1001e34a: 4628 mov r0, r5 +1001e34c: b103 cbz r3, 1001e350 +1001e34e: 4798 blx r3 +1001e350: 42b4 cmp r4, r6 +1001e352: d1f8 bne.n 1001e346 +1001e354: f7ff fd98 bl 1001de88 +1001e358: 4604 mov r4, r0 +1001e35a: f7ff fd93 bl 1001de84 +1001e35e: 4e1e ldr r6, [pc, #120] ; (1001e3d8 ) +1001e360: 491e ldr r1, [pc, #120] ; (1001e3dc ) +1001e362: 4a1f ldr r2, [pc, #124] ; (1001e3e0 ) +1001e364: 1c03 adds r3, r0, #0 +1001e366: 6837 ldr r7, [r6, #0] +1001e368: bf18 it ne +1001e36a: 2301 movne r3, #1 +1001e36c: 6808 ldr r0, [r1, #0] +1001e36e: 7812 ldrb r2, [r2, #0] +1001e370: 4629 mov r1, r5 +1001e372: f7ff fd63 bl 1001de3c +1001e376: 6037 str r7, [r6, #0] +1001e378: f7ff fd86 bl 1001de88 +1001e37c: f44f 767a mov.w r6, #1000 ; 0x3e8 +1001e380: 4a18 ldr r2, [pc, #96] ; (1001e3e4 ) +1001e382: fb06 f105 mul.w r1, r6, r5 +1001e386: 4284 cmp r4, r0 +1001e388: 6813 ldr r3, [r2, #0] +1001e38a: ebc4 0000 rsb r0, r4, r0 +1001e38e: bf28 it cs +1001e390: f100 30ff addcs.w r0, r0, #4294967295 +1001e394: 4403 add r3, r0 +1001e396: 428b cmp r3, r1 +1001e398: d913 bls.n 1001e3c2 +1001e39a: 1a5b subs r3, r3, r1 +1001e39c: 6013 str r3, [r2, #0] +1001e39e: 460b mov r3, r1 +1001e3a0: 4a11 ldr r2, [pc, #68] ; (1001e3e8 ) +1001e3a2: 4c12 ldr r4, [pc, #72] ; (1001e3ec ) +1001e3a4: fba2 1003 umull r1, r0, r2, r3 +1001e3a8: 0980 lsrs r0, r0, #6 +1001e3aa: f7fd fb33 bl 1001ba14 +1001e3ae: f104 0680 add.w r6, r4, #128 ; 0x80 +1001e3b2: f854 3f04 ldr.w r3, [r4, #4]! +1001e3b6: 4628 mov r0, r5 +1001e3b8: b103 cbz r3, 1001e3bc +1001e3ba: 4798 blx r3 +1001e3bc: 42b4 cmp r4, r6 +1001e3be: d1f8 bne.n 1001e3b2 +1001e3c0: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001e3c2: 4909 ldr r1, [pc, #36] ; (1001e3e8 ) +1001e3c4: fba1 0103 umull r0, r1, r1, r3 +1001e3c8: 0989 lsrs r1, r1, #6 +1001e3ca: fb06 3611 mls r6, r6, r1, r3 +1001e3ce: 6016 str r6, [r2, #0] +1001e3d0: e7e6 b.n 1001e3a0 +1001e3d2: bf00 nop +1001e3d4: 10051998 .word 0x10051998 +1001e3d8: e000e018 .word 0xe000e018 +1001e3dc: 1004d838 .word 0x1004d838 +1001e3e0: 1004d840 .word 0x1004d840 +1001e3e4: 10051a1c .word 0x10051a1c +1001e3e8: 10624dd3 .word 0x10624dd3 +1001e3ec: 10051918 .word 0x10051918 + +1001e3f0 : +1001e3f0: 4a07 ldr r2, [pc, #28] ; (1001e410 ) +1001e3f2: 4b08 ldr r3, [pc, #32] ; (1001e414 ) +1001e3f4: 6811 ldr r1, [r2, #0] +1001e3f6: b410 push {r4} +1001e3f8: fba3 4301 umull r4, r3, r3, r1 +1001e3fc: 4a06 ldr r2, [pc, #24] ; (1001e418 ) +1001e3fe: 099b lsrs r3, r3, #6 +1001e400: 6812 ldr r2, [r2, #0] +1001e402: f85d 4b04 ldr.w r4, [sp], #4 +1001e406: fbb2 f3f3 udiv r3, r2, r3 +1001e40a: 3301 adds r3, #1 +1001e40c: 6003 str r3, [r0, #0] +1001e40e: 4770 bx lr +1001e410: 1004d55c .word 0x1004d55c +1001e414: 10624dd3 .word 0x10624dd3 +1001e418: e000e018 .word 0xe000e018 + +1001e41c : +1001e41c: 4b02 ldr r3, [pc, #8] ; (1001e428 ) +1001e41e: 681a ldr r2, [r3, #0] +1001e420: 4310 orrs r0, r2 +1001e422: 6018 str r0, [r3, #0] +1001e424: 4770 bx lr +1001e426: bf00 nop +1001e428: 1004d83c .word 0x1004d83c + +1001e42c : +1001e42c: 4b02 ldr r3, [pc, #8] ; (1001e438 ) +1001e42e: 681a ldr r2, [r3, #0] +1001e430: ea22 0000 bic.w r0, r2, r0 +1001e434: 6018 str r0, [r3, #0] +1001e436: 4770 bx lr +1001e438: 1004d83c .word 0x1004d83c + +1001e43c : +1001e43c: 4b01 ldr r3, [pc, #4] ; (1001e444 ) +1001e43e: 6818 ldr r0, [r3, #0] +1001e440: 4770 bx lr +1001e442: bf00 nop +1001e444: 1004d83c .word 0x1004d83c + +1001e448 : +1001e448: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001e44c: f890 7062 ldrb.w r7, [r0, #98] ; 0x62 +1001e450: 6d03 ldr r3, [r0, #80] ; 0x50 +1001e452: f507 2780 add.w r7, r7, #262144 ; 0x40000 +1001e456: 3760 adds r7, #96 ; 0x60 +1001e458: 033f lsls r7, r7, #12 +1001e45a: f8d7 23a0 ldr.w r2, [r7, #928] ; 0x3a0 +1001e45e: f8d0 8008 ldr.w r8, [r0, #8] +1001e462: 6819 ldr r1, [r3, #0] +1001e464: 685d ldr r5, [r3, #4] +1001e466: 6d43 ldr r3, [r0, #84] ; 0x54 +1001e468: b08b sub sp, #44 ; 0x2c +1001e46a: ea12 0f08 tst.w r2, r8 +1001e46e: 4604 mov r4, r0 +1001e470: 9107 str r1, [sp, #28] +1001e472: 6cc6 ldr r6, [r0, #76] ; 0x4c +1001e474: f890 9061 ldrb.w r9, [r0, #97] ; 0x61 +1001e478: 9309 str r3, [sp, #36] ; 0x24 +1001e47a: d007 beq.n 1001e48c +1001e47c: 4bb1 ldr r3, [pc, #708] ; (1001e744 ) +1001e47e: 681b ldr r3, [r3, #0] +1001e480: 0798 lsls r0, r3, #30 +1001e482: f100 814c bmi.w 1001e71e +1001e486: 4620 mov r0, r4 +1001e488: f025 faaa bl 100439e0 <__HalGdmaChDisRtl8195a_veneer> +1001e48c: fa5f f188 uxtb.w r1, r8 +1001e490: 2300 movs r3, #0 +1001e492: f507 7830 add.w r8, r7, #704 ; 0x2c0 +1001e496: f507 7c3a add.w ip, r7, #744 ; 0x2e8 +1001e49a: f507 7a4e add.w sl, r7, #824 ; 0x338 +1001e49e: f858 0003 ldr.w r0, [r8, r3] +1001e4a2: f85c 2003 ldr.w r2, [ip, r3] +1001e4a6: 4310 orrs r0, r2 +1001e4a8: 4208 tst r0, r1 +1001e4aa: ea02 0201 and.w r2, r2, r1 +1001e4ae: bf18 it ne +1001e4b0: f84a 2003 strne.w r2, [sl, r3] +1001e4b4: 3308 adds r3, #8 +1001e4b6: 2b28 cmp r3, #40 ; 0x28 +1001e4b8: d1f1 bne.n 1001e49e +1001e4ba: 2358 movs r3, #88 ; 0x58 +1001e4bc: fb03 f309 mul.w r3, r3, r9 +1001e4c0: 9305 str r3, [sp, #20] +1001e4c2: f8dd 8014 ldr.w r8, [sp, #20] +1001e4c6: 6823 ldr r3, [r4, #0] +1001e4c8: 6960 ldr r0, [r4, #20] +1001e4ca: f847 3008 str.w r3, [r7, r8] +1001e4ce: 6863 ldr r3, [r4, #4] +1001e4d0: f108 0208 add.w r2, r8, #8 +1001e4d4: 50bb str r3, [r7, r2] +1001e4d6: 6922 ldr r2, [r4, #16] +1001e4d8: f894 3028 ldrb.w r3, [r4, #40] ; 0x28 +1001e4dc: f000 0007 and.w r0, r0, #7 +1001e4e0: 69a1 ldr r1, [r4, #24] +1001e4e2: 0100 lsls r0, r0, #4 +1001e4e4: f002 0207 and.w r2, r2, #7 +1001e4e8: f003 0c01 and.w ip, r3, #1 +1001e4ec: ea40 0242 orr.w r2, r0, r2, lsl #1 +1001e4f0: ea42 020c orr.w r2, r2, ip +1001e4f4: f001 0103 and.w r1, r1, #3 +1001e4f8: ea42 11c1 orr.w r1, r2, r1, lsl #7 +1001e4fc: 69e2 ldr r2, [r4, #28] +1001e4fe: f108 0c18 add.w ip, r8, #24 +1001e502: f002 0003 and.w r0, r2, #3 +1001e506: ea41 2040 orr.w r0, r1, r0, lsl #9 +1001e50a: 6a21 ldr r1, [r4, #32] +1001e50c: 68e2 ldr r2, [r4, #12] +1001e50e: f001 0907 and.w r9, r1, #7 +1001e512: 6a61 ldr r1, [r4, #36] ; 0x24 +1001e514: ea40 29c9 orr.w r9, r0, r9, lsl #11 +1001e518: f001 0007 and.w r0, r1, #7 +1001e51c: ea49 3980 orr.w r9, r9, r0, lsl #14 +1001e520: 9809 ldr r0, [sp, #36] ; 0x24 +1001e522: f002 0207 and.w r2, r2, #7 +1001e526: 6800 ldr r0, [r0, #0] +1001e528: f3c3 0ac0 ubfx sl, r3, #3, #1 +1001e52c: ea49 5902 orr.w r9, r9, r2, lsl #20 +1001e530: f108 011c add.w r1, r8, #28 +1001e534: 9004 str r0, [sp, #16] +1001e536: f857 800c ldr.w r8, [r7, ip] +1001e53a: ea49 69ca orr.w r9, r9, sl, lsl #27 +1001e53e: 4a82 ldr r2, [pc, #520] ; (1001e748 ) +1001e540: f3c3 1a00 ubfx sl, r3, #4, #1 +1001e544: f3c3 1340 ubfx r3, r3, #5, #1 +1001e548: 5878 ldr r0, [r7, r1] +1001e54a: 9306 str r3, [sp, #24] +1001e54c: 9b04 ldr r3, [sp, #16] +1001e54e: ea08 0202 and.w r2, r8, r2 +1001e552: f8dd 8018 ldr.w r8, [sp, #24] +1001e556: f420 5bff bic.w fp, r0, #8160 ; 0x1fe0 +1001e55a: f3c3 000b ubfx r0, r3, #0, #12 +1001e55e: ea49 790a orr.w r9, r9, sl, lsl #28 +1001e562: ea40 3308 orr.w r3, r0, r8, lsl #12 +1001e566: f02b 0b1f bic.w fp, fp, #31 +1001e56a: 6ae0 ldr r0, [r4, #44] ; 0x2c +1001e56c: f8d4 8030 ldr.w r8, [r4, #48] ; 0x30 +1001e570: ea49 0202 orr.w r2, r9, r2 +1001e574: ea43 030b orr.w r3, r3, fp +1001e578: f8d4 9034 ldr.w r9, [r4, #52] ; 0x34 +1001e57c: f847 200c str.w r2, [r7, ip] +1001e580: 507b str r3, [r7, r1] +1001e582: ea4f 1c40 mov.w ip, r0, lsl #5 +1001e586: f009 0903 and.w r9, r9, #3 +1001e58a: f894 003c ldrb.w r0, [r4, #60] ; 0x3c +1001e58e: fa5f fc8c uxtb.w ip, ip +1001e592: ea4f 3888 mov.w r8, r8, lsl #14 +1001e596: ea4c 3c09 orr.w ip, ip, r9, lsl #12 +1001e59a: fa1f f888 uxth.w r8, r8 +1001e59e: f000 0a01 and.w sl, r0, #1 +1001e5a2: ea4c 0c08 orr.w ip, ip, r8 +1001e5a6: ea4c 2c0a orr.w ip, ip, sl, lsl #8 +1001e5aa: f3c0 0880 ubfx r8, r0, #2, #1 +1001e5ae: ea4c 2c88 orr.w ip, ip, r8, lsl #10 +1001e5b2: f3c0 08c0 ubfx r8, r0, #3, #1 +1001e5b6: ea4c 2cc8 orr.w ip, ip, r8, lsl #11 +1001e5ba: f8dd 8014 ldr.w r8, [sp, #20] +1001e5be: f3c0 1900 ubfx r9, r0, #4, #1 +1001e5c2: f108 0840 add.w r8, r8, #64 ; 0x40 +1001e5c6: f8cd 8018 str.w r8, [sp, #24] +1001e5ca: f894 803a ldrb.w r8, [r4, #58] ; 0x3a +1001e5ce: f894 103d ldrb.w r1, [r4, #61] ; 0x3d +1001e5d2: f8cd 8004 str.w r8, [sp, #4] +1001e5d6: f8dd 8014 ldr.w r8, [sp, #20] +1001e5da: ea4c 4c09 orr.w ip, ip, r9, lsl #16 +1001e5de: f108 0b44 add.w fp, r8, #68 ; 0x44 +1001e5e2: f3c0 1840 ubfx r8, r0, #5, #1 +1001e5e6: 9806 ldr r0, [sp, #24] +1001e5e8: f3c1 0a80 ubfx sl, r1, #2, #1 +1001e5ec: 5838 ldr r0, [r7, r0] +1001e5ee: ea4f 0a4a mov.w sl, sl, lsl #1 +1001e5f2: 9008 str r0, [sp, #32] +1001e5f4: ea4c 4048 orr.w r0, ip, r8, lsl #17 +1001e5f8: f3c1 0cc0 ubfx ip, r1, #3, #1 +1001e5fc: ea4a 1a4c orr.w sl, sl, ip, lsl #5 +1001e600: f8dd 9004 ldr.w r9, [sp, #4] +1001e604: f001 0c01 and.w ip, r1, #1 +1001e608: ea40 708c orr.w r0, r0, ip, lsl #30 +1001e60c: f3c1 0c40 ubfx ip, r1, #1, #1 +1001e610: f3c1 1100 ubfx r1, r1, #4, #1 +1001e614: f009 080f and.w r8, r9, #15 +1001e618: ea4a 1181 orr.w r1, sl, r1, lsl #6 +1001e61c: f857 900b ldr.w r9, [r7, fp] +1001e620: ea41 1ac8 orr.w sl, r1, r8, lsl #7 +1001e624: f894 803b ldrb.w r8, [r4, #59] ; 0x3b +1001e628: ea40 7ccc orr.w ip, r0, ip, lsl #31 +1001e62c: 9908 ldr r1, [sp, #32] +1001e62e: f429 49ff bic.w r9, r9, #32640 ; 0x7f80 +1001e632: 4846 ldr r0, [pc, #280] ; (1001e74c ) +1001e634: f008 080f and.w r8, r8, #15 +1001e638: ea4a 28c8 orr.w r8, sl, r8, lsl #11 +1001e63c: f029 0962 bic.w r9, r9, #98 ; 0x62 +1001e640: 4008 ands r0, r1 +1001e642: ea48 0109 orr.w r1, r8, r9 +1001e646: f8dd 8018 ldr.w r8, [sp, #24] +1001e64a: ea4c 0000 orr.w r0, ip, r0 +1001e64e: f847 0008 str.w r0, [r7, r8] +1001e652: f847 100b str.w r1, [r7, fp] +1001e656: 9907 ldr r1, [sp, #28] +1001e658: 0789 lsls r1, r1, #30 +1001e65a: d007 beq.n 1001e66c +1001e65c: 4b39 ldr r3, [pc, #228] ; (1001e744 ) +1001e65e: 681b ldr r3, [r3, #0] +1001e660: 0798 lsls r0, r3, #30 +1001e662: d469 bmi.n 1001e738 +1001e664: 2000 movs r0, #0 +1001e666: b00b add sp, #44 ; 0x2c +1001e668: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001e66c: f8dd 8014 ldr.w r8, [sp, #20] +1001e670: 9807 ldr r0, [sp, #28] +1001e672: f108 0110 add.w r1, r8, #16 +1001e676: f8df 80f0 ldr.w r8, [pc, #240] ; 1001e768 +1001e67a: 5078 str r0, [r7, r1] +1001e67c: f8d8 1000 ldr.w r1, [r8] +1001e680: 6828 ldr r0, [r5, #0] +1001e682: 9f07 ldr r7, [sp, #28] +1001e684: 0789 lsls r1, r1, #30 +1001e686: 60fa str r2, [r7, #12] +1001e688: 613b str r3, [r7, #16] +1001e68a: 60b8 str r0, [r7, #8] +1001e68c: d44b bmi.n 1001e726 +1001e68e: f8dd 9024 ldr.w r9, [sp, #36] ; 0x24 +1001e692: 2e01 cmp r6, #1 +1001e694: f8d9 a004 ldr.w sl, [r9, #4] +1001e698: d937 bls.n 1001e70a +1001e69a: 46a1 mov r9, r4 +1001e69c: f8df b0b4 ldr.w fp, [pc, #180] ; 1001e754 +1001e6a0: 4654 mov r4, sl +1001e6a2: e00a b.n 1001e6ba +1001e6a4: 2e01 cmp r6, #1 +1001e6a6: d01b beq.n 1001e6e0 +1001e6a8: 686d ldr r5, [r5, #4] +1001e6aa: 6820 ldr r0, [r4, #0] +1001e6ac: 6829 ldr r1, [r5, #0] +1001e6ae: f360 030b bfi r3, r0, #0, #12 +1001e6b2: 6864 ldr r4, [r4, #4] +1001e6b4: 60b9 str r1, [r7, #8] +1001e6b6: 613b str r3, [r7, #16] +1001e6b8: 60fa str r2, [r7, #12] +1001e6ba: f8d8 1000 ldr.w r1, [r8] +1001e6be: 3e01 subs r6, #1 +1001e6c0: 078f lsls r7, r1, #30 +1001e6c2: d424 bmi.n 1001e70e +1001e6c4: 682f ldr r7, [r5, #0] +1001e6c6: 2f00 cmp r7, #0 +1001e6c8: d1ec bne.n 1001e6a4 +1001e6ca: 4b21 ldr r3, [pc, #132] ; (1001e750 ) +1001e6cc: 681b ldr r3, [r3, #0] +1001e6ce: 0798 lsls r0, r3, #30 +1001e6d0: d5c8 bpl.n 1001e664 +1001e6d2: 4b20 ldr r3, [pc, #128] ; (1001e754 ) +1001e6d4: 4820 ldr r0, [pc, #128] ; (1001e758 ) +1001e6d6: 4798 blx r3 +1001e6d8: 4638 mov r0, r7 +1001e6da: b00b add sp, #44 ; 0x2c +1001e6dc: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001e6e0: f899 1063 ldrb.w r1, [r9, #99] ; 0x63 +1001e6e4: 46a2 mov sl, r4 +1001e6e6: 06c9 lsls r1, r1, #27 +1001e6e8: d501 bpl.n 1001e6ee +1001e6ea: f022 52c0 bic.w r2, r2, #402653184 ; 0x18000000 +1001e6ee: f8da 0000 ldr.w r0, [sl] +1001e6f2: 6869 ldr r1, [r5, #4] +1001e6f4: f423 637f bic.w r3, r3, #4080 ; 0xff0 +1001e6f8: 6809 ldr r1, [r1, #0] +1001e6fa: f3c0 000b ubfx r0, r0, #0, #12 +1001e6fe: f023 030f bic.w r3, r3, #15 +1001e702: 4303 orrs r3, r0 +1001e704: 613b str r3, [r7, #16] +1001e706: 60b9 str r1, [r7, #8] +1001e708: 60fa str r2, [r7, #12] +1001e70a: 2001 movs r0, #1 +1001e70c: e7ab b.n 1001e666 +1001e70e: 9203 str r2, [sp, #12] +1001e710: 9302 str r3, [sp, #8] +1001e712: 4812 ldr r0, [pc, #72] ; (1001e75c ) +1001e714: 4631 mov r1, r6 +1001e716: 47d8 blx fp +1001e718: 9b02 ldr r3, [sp, #8] +1001e71a: 9a03 ldr r2, [sp, #12] +1001e71c: e7d2 b.n 1001e6c4 +1001e71e: 4b0d ldr r3, [pc, #52] ; (1001e754 ) +1001e720: 480f ldr r0, [pc, #60] ; (1001e760 ) +1001e722: 4798 blx r3 +1001e724: e6af b.n 1001e486 +1001e726: 9203 str r2, [sp, #12] +1001e728: 9302 str r3, [sp, #8] +1001e72a: 480c ldr r0, [pc, #48] ; (1001e75c ) +1001e72c: 4631 mov r1, r6 +1001e72e: 4f09 ldr r7, [pc, #36] ; (1001e754 ) +1001e730: 47b8 blx r7 +1001e732: 9b02 ldr r3, [sp, #8] +1001e734: 9a03 ldr r2, [sp, #12] +1001e736: e7aa b.n 1001e68e +1001e738: 6da1 ldr r1, [r4, #88] ; 0x58 +1001e73a: 4b06 ldr r3, [pc, #24] ; (1001e754 ) +1001e73c: 4809 ldr r0, [pc, #36] ; (1001e764 ) +1001e73e: 4798 blx r3 +1001e740: e790 b.n 1001e664 +1001e742: bf00 nop +1001e744: 1000030c .word 0x1000030c +1001e748: e78e0000 .word 0xe78e0000 +1001e74c: 3ffc021f .word 0x3ffc021f +1001e750: 10000314 .word 0x10000314 +1001e754: 0000f39d .word 0x0000f39d +1001e758: 10048a88 .word 0x10048a88 +1001e75c: 10048a6c .word 0x10048a6c +1001e760: 10048a00 .word 0x10048a00 +1001e764: 10048a34 .word 0x10048a34 +1001e768: 10000310 .word 0x10000310 + +1001e76c : +1001e76c: f890 2061 ldrb.w r2, [r0, #97] ; 0x61 +1001e770: 2158 movs r1, #88 ; 0x58 +1001e772: f890 3062 ldrb.w r3, [r0, #98] ; 0x62 +1001e776: fb01 f202 mul.w r2, r1, r2 +1001e77a: f503 2380 add.w r3, r3, #262144 ; 0x40000 +1001e77e: 3360 adds r3, #96 ; 0x60 +1001e780: 031b lsls r3, r3, #12 +1001e782: 3208 adds r2, #8 +1001e784: 5898 ldr r0, [r3, r2] +1001e786: 4770 bx lr + +1001e788 : +1001e788: f890 2061 ldrb.w r2, [r0, #97] ; 0x61 +1001e78c: f890 3062 ldrb.w r3, [r0, #98] ; 0x62 +1001e790: 2158 movs r1, #88 ; 0x58 +1001e792: fb01 f202 mul.w r2, r1, r2 +1001e796: f503 2380 add.w r3, r3, #262144 ; 0x40000 +1001e79a: 3360 adds r3, #96 ; 0x60 +1001e79c: 031b lsls r3, r3, #12 +1001e79e: 5898 ldr r0, [r3, r2] +1001e7a0: 4770 bx lr +1001e7a2: bf00 nop + +1001e7a4 : +1001e7a4: f890 3062 ldrb.w r3, [r0, #98] ; 0x62 +1001e7a8: 6882 ldr r2, [r0, #8] +1001e7aa: f503 2380 add.w r3, r3, #262144 ; 0x40000 +1001e7ae: 3360 adds r3, #96 ; 0x60 +1001e7b0: 031b lsls r3, r3, #12 +1001e7b2: f8d3 33a0 ldr.w r3, [r3, #928] ; 0x3a0 +1001e7b6: 4213 tst r3, r2 +1001e7b8: bf0c ite eq +1001e7ba: 2000 moveq r0, #0 +1001e7bc: 2001 movne r0, #1 +1001e7be: 4770 bx lr + +1001e7c0 : +1001e7c0: b570 push {r4, r5, r6, lr} +1001e7c2: e890 0014 ldmia.w r0, {r2, r4} +1001e7c6: 0611 lsls r1, r2, #24 +1001e7c8: d502 bpl.n 1001e7d0 +1001e7ca: f014 0f60 tst.w r4, #96 ; 0x60 +1001e7ce: d005 beq.n 1001e7dc +1001e7d0: 4b1d ldr r3, [pc, #116] ; (1001e848 ) +1001e7d2: 681b ldr r3, [r3, #0] +1001e7d4: 075b lsls r3, r3, #29 +1001e7d6: d431 bmi.n 1001e83c +1001e7d8: 2003 movs r0, #3 +1001e7da: bd70 pop {r4, r5, r6, pc} +1001e7dc: 4d1b ldr r5, [pc, #108] ; (1001e84c ) +1001e7de: 682b ldr r3, [r5, #0] +1001e7e0: f8d3 2114 ldr.w r2, [r3, #276] ; 0x114 +1001e7e4: b10a cbz r2, 1001e7ea +1001e7e6: 4790 blx r2 +1001e7e8: 682b ldr r3, [r5, #0] +1001e7ea: f893 2129 ldrb.w r2, [r3, #297] ; 0x129 +1001e7ee: b952 cbnz r2, 1001e806 +1001e7f0: 2101 movs r1, #1 +1001e7f2: 4616 mov r6, r2 +1001e7f4: f883 1129 strb.w r1, [r3, #297] ; 0x129 +1001e7f8: f8d3 3118 ldr.w r3, [r3, #280] ; 0x118 +1001e7fc: b103 cbz r3, 1001e800 +1001e7fe: 4798 blx r3 +1001e800: b11e cbz r6, 1001e80a +1001e802: 2001 movs r0, #1 +1001e804: bd70 pop {r4, r5, r6, pc} +1001e806: 2601 movs r6, #1 +1001e808: e7f6 b.n 1001e7f8 +1001e80a: 2301 movs r3, #1 +1001e80c: f004 041f and.w r4, r4, #31 +1001e810: fa03 f404 lsl.w r4, r3, r4 +1001e814: 682a ldr r2, [r5, #0] +1001e816: 4b0e ldr r3, [pc, #56] ; (1001e850 ) +1001e818: 4e0c ldr r6, [pc, #48] ; (1001e84c ) +1001e81a: 601c str r4, [r3, #0] +1001e81c: f8d2 3114 ldr.w r3, [r2, #276] ; 0x114 +1001e820: b10b cbz r3, 1001e826 +1001e822: 4798 blx r3 +1001e824: 6832 ldr r2, [r6, #0] +1001e826: f8d2 3118 ldr.w r3, [r2, #280] ; 0x118 +1001e82a: 2400 movs r4, #0 +1001e82c: f882 4129 strb.w r4, [r2, #297] ; 0x129 +1001e830: b113 cbz r3, 1001e838 +1001e832: 4798 blx r3 +1001e834: 4620 mov r0, r4 +1001e836: bd70 pop {r4, r5, r6, pc} +1001e838: 4618 mov r0, r3 +1001e83a: bd70 pop {r4, r5, r6, pc} +1001e83c: 4621 mov r1, r4 +1001e83e: 4b05 ldr r3, [pc, #20] ; (1001e854 ) +1001e840: 4805 ldr r0, [pc, #20] ; (1001e858 ) +1001e842: 4798 blx r3 +1001e844: 2003 movs r0, #3 +1001e846: bd70 pop {r4, r5, r6, pc} +1001e848: 1000030c .word 0x1000030c +1001e84c: 10000354 .word 0x10000354 +1001e850: 4000104c .word 0x4000104c +1001e854: 0000f39d .word 0x0000f39d +1001e858: 10048aac .word 0x10048aac + +1001e85c : +1001e85c: 4b17 ldr r3, [pc, #92] ; (1001e8bc ) +1001e85e: 4a18 ldr r2, [pc, #96] ; (1001e8c0 ) +1001e860: 681b ldr r3, [r3, #0] +1001e862: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1001e866: 6817 ldr r7, [r2, #0] +1001e868: 071a lsls r2, r3, #28 +1001e86a: d420 bmi.n 1001e8ae +1001e86c: 4d15 ldr r5, [pc, #84] ; (1001e8c4 ) +1001e86e: f8df a064 ldr.w sl, [pc, #100] ; 1001e8d4 +1001e872: f8df 9064 ldr.w r9, [pc, #100] ; 1001e8d8 +1001e876: 2600 movs r6, #0 +1001e878: 2402 movs r4, #2 +1001e87a: f04f 0801 mov.w r8, #1 +1001e87e: fa08 f304 lsl.w r3, r8, r4 +1001e882: 423b tst r3, r7 +1001e884: f104 0401 add.w r4, r4, #1 +1001e888: d009 beq.n 1001e89e +1001e88a: 682b ldr r3, [r5, #0] +1001e88c: 07db lsls r3, r3, #31 +1001e88e: d506 bpl.n 1001e89e +1001e890: f856 300a ldr.w r3, [r6, sl] +1001e894: b113 cbz r3, 1001e89c +1001e896: f859 0006 ldr.w r0, [r9, r6] +1001e89a: 4798 blx r3 +1001e89c: 686b ldr r3, [r5, #4] +1001e89e: 2c08 cmp r4, #8 +1001e8a0: f105 0514 add.w r5, r5, #20 +1001e8a4: f106 0604 add.w r6, r6, #4 +1001e8a8: d1e9 bne.n 1001e87e +1001e8aa: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1001e8ae: 4906 ldr r1, [pc, #24] ; (1001e8c8 ) +1001e8b0: 463a mov r2, r7 +1001e8b2: 4b06 ldr r3, [pc, #24] ; (1001e8cc ) +1001e8b4: 4806 ldr r0, [pc, #24] ; (1001e8d0 ) +1001e8b6: 4798 blx r3 +1001e8b8: e7d8 b.n 1001e86c +1001e8ba: bf00 nop +1001e8bc: 10000310 .word 0x10000310 +1001e8c0: 400020a0 .word 0x400020a0 +1001e8c4: 40002030 .word 0x40002030 +1001e8c8: 10048af8 .word 0x10048af8 +1001e8cc: 0000f39d .word 0x0000f39d +1001e8d0: 10048b78 .word 0x10048b78 +1001e8d4: 10000358 .word 0x10000358 +1001e8d8: 10051a20 .word 0x10051a20 + +1001e8dc : +1001e8dc: b5f0 push {r4, r5, r6, r7, lr} +1001e8de: 7f02 ldrb r2, [r0, #28] +1001e8e0: b085 sub sp, #20 +1001e8e2: 2a07 cmp r2, #7 +1001e8e4: 4603 mov r3, r0 +1001e8e6: d90a bls.n 1001e8fe +1001e8e8: 4b15 ldr r3, [pc, #84] ; (1001e940 ) +1001e8ea: 681b ldr r3, [r3, #0] +1001e8ec: 071b lsls r3, r3, #28 +1001e8ee: d524 bpl.n 1001e93a +1001e8f0: 4814 ldr r0, [pc, #80] ; (1001e944 ) +1001e8f2: 4915 ldr r1, [pc, #84] ; (1001e948 ) +1001e8f4: 4b15 ldr r3, [pc, #84] ; (1001e94c ) +1001e8f6: 4798 blx r3 +1001e8f8: 2003 movs r0, #3 +1001e8fa: b005 add sp, #20 +1001e8fc: bdf0 pop {r4, r5, r6, r7, pc} +1001e8fe: 2a01 cmp r2, #1 +1001e900: d913 bls.n 1001e92a +1001e902: 68c1 ldr r1, [r0, #12] +1001e904: 6946 ldr r6, [r0, #20] +1001e906: 4f12 ldr r7, [pc, #72] ; (1001e950 ) +1001e908: 4d12 ldr r5, [pc, #72] ; (1001e954 ) +1001e90a: 4c13 ldr r4, [pc, #76] ; (1001e958 ) +1001e90c: 3a02 subs r2, #2 +1001e90e: 2005 movs r0, #5 +1001e910: f847 1022 str.w r1, [r7, r2, lsl #2] +1001e914: f845 6022 str.w r6, [r5, r2, lsl #2] +1001e918: 9400 str r4, [sp, #0] +1001e91a: 9001 str r0, [sp, #4] +1001e91c: 4668 mov r0, sp +1001e91e: 4a0f ldr r2, [pc, #60] ; (1001e95c ) +1001e920: 9302 str r3, [sp, #8] +1001e922: 4790 blx r2 +1001e924: 2000 movs r0, #0 +1001e926: b005 add sp, #20 +1001e928: bdf0 pop {r4, r5, r6, r7, pc} +1001e92a: 2a00 cmp r2, #0 +1001e92c: 68c2 ldr r2, [r0, #12] +1001e92e: bf0c ite eq +1001e930: 2102 moveq r1, #2 +1001e932: 2103 movne r1, #3 +1001e934: 9101 str r1, [sp, #4] +1001e936: 9200 str r2, [sp, #0] +1001e938: e7f0 b.n 1001e91c +1001e93a: 2003 movs r0, #3 +1001e93c: e7dd b.n 1001e8fa +1001e93e: bf00 nop +1001e940: 10000314 .word 0x10000314 +1001e944: 10048b9c .word 0x10048b9c +1001e948: 10048b14 .word 0x10048b14 +1001e94c: 0000f39d .word 0x0000f39d +1001e950: 10000358 .word 0x10000358 +1001e954: 10051a20 .word 0x10051a20 +1001e958: 1001e85d .word 0x1001e85d +1001e95c: 00004029 .word 0x00004029 + +1001e960 : +1001e960: b570 push {r4, r5, r6, lr} +1001e962: 7f02 ldrb r2, [r0, #28] +1001e964: 2601 movs r6, #1 +1001e966: fa06 f102 lsl.w r1, r6, r2 +1001e96a: 4d3a ldr r5, [pc, #232] ; (1001ea54 ) +1001e96c: 4604 mov r4, r0 +1001e96e: 682b ldr r3, [r5, #0] +1001e970: 4219 tst r1, r3 +1001e972: d009 beq.n 1001e988 +1001e974: 4b38 ldr r3, [pc, #224] ; (1001ea58 ) +1001e976: 681b ldr r3, [r3, #0] +1001e978: 0719 lsls r1, r3, #28 +1001e97a: d566 bpl.n 1001ea4a +1001e97c: 4937 ldr r1, [pc, #220] ; (1001ea5c ) +1001e97e: 4b38 ldr r3, [pc, #224] ; (1001ea60 ) +1001e980: 4838 ldr r0, [pc, #224] ; (1001ea64 ) +1001e982: 4798 blx r3 +1001e984: 4630 mov r0, r6 +1001e986: bd70 pop {r4, r5, r6, pc} +1001e988: 6883 ldr r3, [r0, #8] +1001e98a: 7f46 ldrb r6, [r0, #29] +1001e98c: eb02 0282 add.w r2, r2, r2, lsl #2 +1001e990: 0058 lsls r0, r3, #1 +1001e992: 4935 ldr r1, [pc, #212] ; (1001ea68 ) +1001e994: 0092 lsls r2, r2, #2 +1001e996: ea40 0086 orr.w r0, r0, r6, lsl #2 +1001e99a: 5050 str r0, [r2, r1] +1001e99c: bb0b cbnz r3, 1001e9e2 +1001e99e: 7f23 ldrb r3, [r4, #28] +1001e9a0: f04f 32ff mov.w r2, #4294967295 +1001e9a4: eb03 0383 add.w r3, r3, r3, lsl #2 +1001e9a8: 009b lsls r3, r3, #2 +1001e9aa: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 +1001e9ae: f503 5300 add.w r3, r3, #8192 ; 0x2000 +1001e9b2: 601a str r2, [r3, #0] +1001e9b4: 7f63 ldrb r3, [r4, #29] +1001e9b6: 2b00 cmp r3, #0 +1001e9b8: d12f bne.n 1001ea1a +1001e9ba: 68e3 ldr r3, [r4, #12] +1001e9bc: 2b00 cmp r3, #0 +1001e9be: d034 beq.n 1001ea2a +1001e9c0: 4620 mov r0, r4 +1001e9c2: f7ff ff8b bl 1001e8dc +1001e9c6: 4606 mov r6, r0 +1001e9c8: 2800 cmp r0, #0 +1001e9ca: d039 beq.n 1001ea40 +1001e9cc: 4b22 ldr r3, [pc, #136] ; (1001ea58 ) +1001e9ce: 681b ldr r3, [r3, #0] +1001e9d0: 071a lsls r2, r3, #28 +1001e9d2: d53a bpl.n 1001ea4a +1001e9d4: 7f22 ldrb r2, [r4, #28] +1001e9d6: 4921 ldr r1, [pc, #132] ; (1001ea5c ) +1001e9d8: 4b21 ldr r3, [pc, #132] ; (1001ea60 ) +1001e9da: 4824 ldr r0, [pc, #144] ; (1001ea6c ) +1001e9dc: 4798 blx r3 +1001e9de: 4630 mov r0, r6 +1001e9e0: bd70 pop {r4, r5, r6, pc} +1001e9e2: 6820 ldr r0, [r4, #0] +1001e9e4: 4b22 ldr r3, [pc, #136] ; (1001ea70 ) +1001e9e6: 4a23 ldr r2, [pc, #140] ; (1001ea74 ) +1001e9e8: fba3 6100 umull r6, r1, r3, r0 +1001e9ec: 0bc9 lsrs r1, r1, #15 +1001e9ee: fb02 0211 mls r2, r2, r1, r0 +1001e9f2: 03d2 lsls r2, r2, #15 +1001e9f4: fba3 0202 umull r0, r2, r3, r2 +1001e9f8: 7f23 ldrb r3, [r4, #28] +1001e9fa: 0c92 lsrs r2, r2, #18 +1001e9fc: eb03 0383 add.w r3, r3, r3, lsl #2 +1001ea00: 009b lsls r3, r3, #2 +1001ea02: eb12 3201 adds.w r2, r2, r1, lsl #12 +1001ea06: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 +1001ea0a: f503 5300 add.w r3, r3, #8192 ; 0x2000 +1001ea0e: bf08 it eq +1001ea10: 2201 moveq r2, #1 +1001ea12: 601a str r2, [r3, #0] +1001ea14: 7f63 ldrb r3, [r4, #29] +1001ea16: 2b00 cmp r3, #0 +1001ea18: d0cf beq.n 1001e9ba +1001ea1a: 7f23 ldrb r3, [r4, #28] +1001ea1c: 2201 movs r2, #1 +1001ea1e: 409a lsls r2, r3 +1001ea20: 682b ldr r3, [r5, #0] +1001ea22: 2000 movs r0, #0 +1001ea24: 4313 orrs r3, r2 +1001ea26: 602b str r3, [r5, #0] +1001ea28: bd70 pop {r4, r5, r6, pc} +1001ea2a: 4b0b ldr r3, [pc, #44] ; (1001ea58 ) +1001ea2c: 681b ldr r3, [r3, #0] +1001ea2e: 071b lsls r3, r3, #28 +1001ea30: d50d bpl.n 1001ea4e +1001ea32: 7f22 ldrb r2, [r4, #28] +1001ea34: 4909 ldr r1, [pc, #36] ; (1001ea5c ) +1001ea36: 4b0a ldr r3, [pc, #40] ; (1001ea60 ) +1001ea38: 480f ldr r0, [pc, #60] ; (1001ea78 ) +1001ea3a: 4798 blx r3 +1001ea3c: 2003 movs r0, #3 +1001ea3e: bd70 pop {r4, r5, r6, pc} +1001ea40: f104 000c add.w r0, r4, #12 +1001ea44: 4b0d ldr r3, [pc, #52] ; (1001ea7c ) +1001ea46: 4798 blx r3 +1001ea48: e7e7 b.n 1001ea1a +1001ea4a: 4630 mov r0, r6 +1001ea4c: bd70 pop {r4, r5, r6, pc} +1001ea4e: 2003 movs r0, #3 +1001ea50: bd70 pop {r4, r5, r6, pc} +1001ea52: bf00 nop +1001ea54: 1000034c .word 0x1000034c +1001ea58: 10000314 .word 0x10000314 +1001ea5c: 10048b38 .word 0x10048b38 +1001ea60: 0000f39d .word 0x0000f39d +1001ea64: 10048bc8 .word 0x10048bc8 +1001ea68: 40002008 .word 0x40002008 +1001ea6c: 10048bf8 .word 0x10048bf8 +1001ea70: 431bde83 .word 0x431bde83 +1001ea74: 0001e848 .word 0x0001e848 +1001ea78: 10048c24 .word 0x10048c24 +1001ea7c: 000040f1 .word 0x000040f1 + +1001ea80 : +1001ea80: b538 push {r3, r4, r5, lr} +1001ea82: 7f02 ldrb r2, [r0, #28] +1001ea84: 4603 mov r3, r0 +1001ea86: 2a07 cmp r2, #7 +1001ea88: d909 bls.n 1001ea9e +1001ea8a: 4b19 ldr r3, [pc, #100] ; (1001eaf0 ) +1001ea8c: 681b ldr r3, [r3, #0] +1001ea8e: 071b lsls r3, r3, #28 +1001ea90: d52c bpl.n 1001eaec +1001ea92: 4918 ldr r1, [pc, #96] ; (1001eaf4 ) +1001ea94: 4b18 ldr r3, [pc, #96] ; (1001eaf8 ) +1001ea96: 4819 ldr r0, [pc, #100] ; (1001eafc ) +1001ea98: 4798 blx r3 +1001ea9a: 2003 movs r0, #3 +1001ea9c: bd38 pop {r3, r4, r5, pc} +1001ea9e: 2a01 cmp r2, #1 +1001eaa0: f100 050c add.w r5, r0, #12 +1001eaa4: d916 bls.n 1001ead4 +1001eaa6: 4916 ldr r1, [pc, #88] ; (1001eb00 ) +1001eaa8: 3a02 subs r2, #2 +1001eaaa: 2405 movs r4, #5 +1001eaac: 2000 movs r0, #0 +1001eaae: 611c str r4, [r3, #16] +1001eab0: f841 0022 str.w r0, [r1, r2, lsl #2] +1001eab4: 1f0b subs r3, r1, #4 +1001eab6: f101 0214 add.w r2, r1, #20 +1001eaba: f853 4f04 ldr.w r4, [r3, #4]! +1001eabe: b99c cbnz r4, 1001eae8 +1001eac0: 4293 cmp r3, r2 +1001eac2: d1fa bne.n 1001eaba +1001eac4: 4628 mov r0, r5 +1001eac6: 4b0f ldr r3, [pc, #60] ; (1001eb04 ) +1001eac8: 4798 blx r3 +1001eaca: 4628 mov r0, r5 +1001eacc: 4b0e ldr r3, [pc, #56] ; (1001eb08 ) +1001eace: 4798 blx r3 +1001ead0: 4620 mov r0, r4 +1001ead2: bd38 pop {r3, r4, r5, pc} +1001ead4: 2a00 cmp r2, #0 +1001ead6: bf0c ite eq +1001ead8: 2202 moveq r2, #2 +1001eada: 2203 movne r2, #3 +1001eadc: 611a str r2, [r3, #16] +1001eade: 4628 mov r0, r5 +1001eae0: 4b09 ldr r3, [pc, #36] ; (1001eb08 ) +1001eae2: 4798 blx r3 +1001eae4: 2000 movs r0, #0 +1001eae6: bd38 pop {r3, r4, r5, pc} +1001eae8: 2000 movs r0, #0 +1001eaea: bd38 pop {r3, r4, r5, pc} +1001eaec: 2003 movs r0, #3 +1001eaee: bd38 pop {r3, r4, r5, pc} +1001eaf0: 10000314 .word 0x10000314 +1001eaf4: 10048b54 .word 0x10048b54 +1001eaf8: 0000f39d .word 0x0000f39d +1001eafc: 10048c54 .word 0x10048c54 +1001eb00: 10000358 .word 0x10000358 +1001eb04: 0000418d .word 0x0000418d +1001eb08: 00004091 .word 0x00004091 + +1001eb0c : +1001eb0c: b510 push {r4, lr} +1001eb0e: 4b0a ldr r3, [pc, #40] ; (1001eb38 ) +1001eb10: 4604 mov r4, r0 +1001eb12: 7f00 ldrb r0, [r0, #28] +1001eb14: 4798 blx r3 +1001eb16: 7f63 ldrb r3, [r4, #29] +1001eb18: b923 cbnz r3, 1001eb24 +1001eb1a: 68e3 ldr r3, [r4, #12] +1001eb1c: b113 cbz r3, 1001eb24 +1001eb1e: 4620 mov r0, r4 +1001eb20: f7ff ffae bl 1001ea80 +1001eb24: 7f23 ldrb r3, [r4, #28] +1001eb26: 2101 movs r1, #1 +1001eb28: 4099 lsls r1, r3 +1001eb2a: 4b04 ldr r3, [pc, #16] ; (1001eb3c ) +1001eb2c: 681a ldr r2, [r3, #0] +1001eb2e: ea22 0201 bic.w r2, r2, r1 +1001eb32: 601a str r2, [r3, #0] +1001eb34: bd10 pop {r4, pc} +1001eb36: bf00 nop +1001eb38: 0000f069 .word 0x0000f069 +1001eb3c: 1000034c .word 0x1000034c + +1001eb40 : +1001eb40: 4b04 ldr r3, [pc, #16] ; (1001eb54 ) +1001eb42: eb00 0080 add.w r0, r0, r0, lsl #2 +1001eb46: 0082 lsls r2, r0, #2 +1001eb48: 58d0 ldr r0, [r2, r3] +1001eb4a: 58d1 ldr r1, [r2, r3] +1001eb4c: 4288 cmp r0, r1 +1001eb4e: bf18 it ne +1001eb50: 58d0 ldrne r0, [r2, r3] +1001eb52: 4770 bx lr +1001eb54: 40002004 .word 0x40002004 + +1001eb58 : +1001eb58: 4a0d ldr r2, [pc, #52] ; (1001eb90 ) +1001eb5a: b410 push {r4} +1001eb5c: fba2 4301 umull r4, r3, r2, r1 +1001eb60: 4c0c ldr r4, [pc, #48] ; (1001eb94 ) +1001eb62: 0bdb lsrs r3, r3, #15 +1001eb64: fb04 1113 mls r1, r4, r3, r1 +1001eb68: 03c9 lsls r1, r1, #15 +1001eb6a: fba2 4201 umull r4, r2, r2, r1 +1001eb6e: eb00 0080 add.w r0, r0, r0, lsl #2 +1001eb72: 0080 lsls r0, r0, #2 +1001eb74: 0c92 lsrs r2, r2, #18 +1001eb76: f100 4080 add.w r0, r0, #1073741824 ; 0x40000000 +1001eb7a: eb12 3303 adds.w r3, r2, r3, lsl #12 +1001eb7e: f500 5000 add.w r0, r0, #8192 ; 0x2000 +1001eb82: bf08 it eq +1001eb84: 2301 moveq r3, #1 +1001eb86: 6003 str r3, [r0, #0] +1001eb88: f85d 4b04 ldr.w r4, [sp], #4 +1001eb8c: 4770 bx lr +1001eb8e: bf00 nop +1001eb90: 431bde83 .word 0x431bde83 +1001eb94: 0001e848 .word 0x0001e848 + +1001eb98 : +1001eb98: 4b04 ldr r3, [pc, #16] ; (1001ebac ) +1001eb9a: eb00 0080 add.w r0, r0, r0, lsl #2 +1001eb9e: 0080 lsls r0, r0, #2 +1001eba0: 58c2 ldr r2, [r0, r3] +1001eba2: f022 0204 bic.w r2, r2, #4 +1001eba6: 50c2 str r2, [r0, r3] +1001eba8: 4770 bx lr +1001ebaa: bf00 nop +1001ebac: 40002008 .word 0x40002008 + +1001ebb0 : +1001ebb0: 4b04 ldr r3, [pc, #16] ; (1001ebc4 ) +1001ebb2: eb00 0080 add.w r0, r0, r0, lsl #2 +1001ebb6: 0080 lsls r0, r0, #2 +1001ebb8: 58c2 ldr r2, [r0, r3] +1001ebba: f042 0201 orr.w r2, r2, #1 +1001ebbe: 50c2 str r2, [r0, r3] +1001ebc0: 4770 bx lr +1001ebc2: bf00 nop +1001ebc4: 40002008 .word 0x40002008 + +1001ebc8 : +1001ebc8: 4b04 ldr r3, [pc, #16] ; (1001ebdc ) +1001ebca: eb00 0080 add.w r0, r0, r0, lsl #2 +1001ebce: 0080 lsls r0, r0, #2 +1001ebd0: 58c2 ldr r2, [r0, r3] +1001ebd2: f022 0201 bic.w r2, r2, #1 +1001ebd6: 50c2 str r2, [r0, r3] +1001ebd8: 4770 bx lr +1001ebda: bf00 nop +1001ebdc: 40002008 .word 0x40002008 + +1001ebe0 : +1001ebe0: 4b02 ldr r3, [pc, #8] ; (1001ebec ) +1001ebe2: 6818 ldr r0, [r3, #0] +1001ebe4: f3c0 1003 ubfx r0, r0, #4, #4 +1001ebe8: 4770 bx lr +1001ebea: bf00 nop +1001ebec: 400001f0 .word 0x400001f0 + +1001ebf0 : +1001ebf0: f890 3026 ldrb.w r3, [r0, #38] ; 0x26 +1001ebf4: b082 sub sp, #8 +1001ebf6: f503 1380 add.w r3, r3, #1048576 ; 0x100000 +1001ebfa: f503 7380 add.w r3, r3, #256 ; 0x100 +1001ebfe: 029b lsls r3, r3, #10 +1001ec00: 6a1a ldr r2, [r3, #32] +1001ec02: 210b movs r1, #11 +1001ec04: 9201 str r2, [sp, #4] +1001ec06: 9a01 ldr r2, [sp, #4] +1001ec08: 2000 movs r0, #0 +1001ec0a: f042 0208 orr.w r2, r2, #8 +1001ec0e: 9201 str r2, [sp, #4] +1001ec10: 9a01 ldr r2, [sp, #4] +1001ec12: 621a str r2, [r3, #32] +1001ec14: 689a ldr r2, [r3, #8] +1001ec16: 9101 str r1, [sp, #4] +1001ec18: 9901 ldr r1, [sp, #4] +1001ec1a: f002 02c0 and.w r2, r2, #192 ; 0xc0 +1001ec1e: 430a orrs r2, r1 +1001ec20: 9201 str r2, [sp, #4] +1001ec22: 9a01 ldr r2, [sp, #4] +1001ec24: 609a str r2, [r3, #8] +1001ec26: 6a1a ldr r2, [r3, #32] +1001ec28: 9201 str r2, [sp, #4] +1001ec2a: 9a01 ldr r2, [sp, #4] +1001ec2c: f022 0208 bic.w r2, r2, #8 +1001ec30: 9201 str r2, [sp, #4] +1001ec32: 9a01 ldr r2, [sp, #4] +1001ec34: 621a str r2, [r3, #32] +1001ec36: b002 add sp, #8 +1001ec38: 4770 bx lr +1001ec3a: bf00 nop + +1001ec3c : +1001ec3c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001ec40: 4b70 ldr r3, [pc, #448] ; (1001ee04 ) +1001ec42: 6807 ldr r7, [r0, #0] +1001ec44: b089 sub sp, #36 ; 0x24 +1001ec46: 429f cmp r7, r3 +1001ec48: 4680 mov r8, r0 +1001ec4a: f240 80bb bls.w 1001edc4 +1001ec4e: 4b6e ldr r3, [pc, #440] ; (1001ee08 ) +1001ec50: 6ac0 ldr r0, [r0, #44] ; 0x2c +1001ec52: fba3 2707 umull r2, r7, r3, r7 +1001ec56: 9003 str r0, [sp, #12] +1001ec58: 097f lsrs r7, r7, #5 +1001ec5a: f8d8 3018 ldr.w r3, [r8, #24] +1001ec5e: f8d8 1024 ldr.w r1, [r8, #36] ; 0x24 +1001ec62: 9307 str r3, [sp, #28] +1001ec64: 3301 adds r3, #1 +1001ec66: f000 80b7 beq.w 1001edd8 +1001ec6a: 2900 cmp r1, #0 +1001ec6c: f000 80b4 beq.w 1001edd8 +1001ec70: f8d8 6020 ldr.w r6, [r8, #32] +1001ec74: 9803 ldr r0, [sp, #12] +1001ec76: 2300 movs r3, #0 +1001ec78: f8d8 401c ldr.w r4, [r8, #28] +1001ec7c: 9604 str r6, [sp, #16] +1001ec7e: fbb0 f5f7 udiv r5, r0, r7 +1001ec82: f04f 3aff mov.w sl, #4294967295 +1001ec86: 9305 str r3, [sp, #20] +1001ec88: 9e04 ldr r6, [sp, #16] +1001ec8a: 42a6 cmp r6, r4 +1001ec8c: d356 bcc.n 1001ed3c +1001ec8e: 4633 mov r3, r6 +1001ec90: e019 b.n 1001ecc6 +1001ec92: ebc7 0c0c rsb ip, r7, ip +1001ec96: f44f 7b7a mov.w fp, #1000 ; 0x3e8 +1001ec9a: fb0b fc0c mul.w ip, fp, ip +1001ec9e: fbbc fcf7 udiv ip, ip, r7 +1001eca2: 45d4 cmp ip, sl +1001eca4: d234 bcs.n 1001ed10 +1001eca6: f8df b160 ldr.w fp, [pc, #352] ; 1001ee08 +1001ecaa: 46e2 mov sl, ip +1001ecac: fbab b903 umull fp, r9, fp, r3 +1001ecb0: f04f 0c64 mov.w ip, #100 ; 0x64 +1001ecb4: ea4f 1959 mov.w r9, r9, lsr #5 +1001ecb8: fb0c 3919 mls r9, ip, r9, r3 +1001ecbc: 9606 str r6, [sp, #24] +1001ecbe: 9205 str r2, [sp, #20] +1001ecc0: 1a5b subs r3, r3, r1 +1001ecc2: 42a3 cmp r3, r4 +1001ecc4: d33a bcc.n 1001ed3c +1001ecc6: fbb5 f2f3 udiv r2, r5, r3 +1001ecca: 2a00 cmp r2, #0 +1001eccc: d0f8 beq.n 1001ecc0 +1001ecce: f8df b150 ldr.w fp, [pc, #336] ; 1001ee20 +1001ecd2: f8d8 6028 ldr.w r6, [r8, #40] ; 0x28 +1001ecd6: fbbb fcf3 udiv ip, fp, r3 +1001ecda: 45b4 cmp ip, r6 +1001ecdc: d2f0 bcs.n 1001ecc0 +1001ecde: f8df c128 ldr.w ip, [pc, #296] ; 1001ee08 +1001ece2: 2064 movs r0, #100 ; 0x64 +1001ece4: fbac c603 umull ip, r6, ip, r3 +1001ece8: 0976 lsrs r6, r6, #5 +1001ecea: fb00 fc06 mul.w ip, r0, r6 +1001ecee: 9803 ldr r0, [sp, #12] +1001ecf0: fbb0 fbf2 udiv fp, r0, r2 +1001ecf4: fbbb fcfc udiv ip, fp, ip +1001ecf8: 4567 cmp r7, ip +1001ecfa: d3ca bcc.n 1001ec92 +1001ecfc: ebcc 0c07 rsb ip, ip, r7 +1001ed00: f44f 707a mov.w r0, #1000 ; 0x3e8 +1001ed04: fb00 fc0c mul.w ip, r0, ip +1001ed08: fbbc fcf7 udiv ip, ip, r7 +1001ed0c: 45d4 cmp ip, sl +1001ed0e: d3ca bcc.n 1001eca6 +1001ed10: d1d6 bne.n 1001ecc0 +1001ed12: f8dd b018 ldr.w fp, [sp, #24] +1001ed16: 455e cmp r6, fp +1001ed18: d3d2 bcc.n 1001ecc0 +1001ed1a: 483b ldr r0, [pc, #236] ; (1001ee08 ) +1001ed1c: f04f 0b64 mov.w fp, #100 ; 0x64 +1001ed20: fba0 0c03 umull r0, ip, r0, r3 +1001ed24: ea4f 1c5c mov.w ip, ip, lsr #5 +1001ed28: fb0b 3c1c mls ip, fp, ip, r3 +1001ed2c: 45cc cmp ip, r9 +1001ed2e: d2c7 bcs.n 1001ecc0 +1001ed30: 1a5b subs r3, r3, r1 +1001ed32: 42a3 cmp r3, r4 +1001ed34: 46e1 mov r9, ip +1001ed36: 9606 str r6, [sp, #24] +1001ed38: 9205 str r2, [sp, #20] +1001ed3a: d2c4 bcs.n 1001ecc6 +1001ed3c: 9807 ldr r0, [sp, #28] +1001ed3e: 0849 lsrs r1, r1, #1 +1001ed40: 4582 cmp sl, r0 +1001ed42: d901 bls.n 1001ed48 +1001ed44: 2900 cmp r1, #0 +1001ed46: d19f bne.n 1001ec88 +1001ed48: 9b05 ldr r3, [sp, #20] +1001ed4a: 2b00 cmp r3, #0 +1001ed4c: bf08 it eq +1001ed4e: 2301 moveq r3, #1 +1001ed50: 9305 str r3, [sp, #20] +1001ed52: 9e05 ldr r6, [sp, #20] +1001ed54: 492c ldr r1, [pc, #176] ; (1001ee08 ) +1001ed56: fbb5 f3f6 udiv r3, r5, r6 +1001ed5a: fba1 b403 umull fp, r4, r1, r3 +1001ed5e: 2264 movs r2, #100 ; 0x64 +1001ed60: 0964 lsrs r4, r4, #5 +1001ed62: fb02 3314 mls r3, r2, r4, r3 +1001ed66: b1c3 cbz r3, 1001ed9a +1001ed68: f898 0010 ldrb.w r0, [r8, #16] +1001ed6c: fb00 f503 mul.w r5, r0, r3 +1001ed70: fba1 c105 umull ip, r1, r1, r5 +1001ed74: 0949 lsrs r1, r1, #5 +1001ed76: fb02 f201 mul.w r2, r2, r1 +1001ed7a: fbb2 f2f0 udiv r2, r2, r0 +1001ed7e: 1a9b subs r3, r3, r2 +1001ed80: 2b04 cmp r3, #4 +1001ed82: bf88 it hi +1001ed84: 3101 addhi r1, #1 +1001ed86: 1e43 subs r3, r0, #1 +1001ed88: 4299 cmp r1, r3 +1001ed8a: d922 bls.n 1001edd2 +1001ed8c: 4a1f ldr r2, [pc, #124] ; (1001ee0c ) +1001ed8e: 6812 ldr r2, [r2, #0] +1001ed90: 0452 lsls r2, r2, #17 +1001ed92: d427 bmi.n 1001ede4 +1001ed94: 0058 lsls r0, r3, #1 +1001ed96: b2db uxtb r3, r3 +1001ed98: e000 b.n 1001ed9c +1001ed9a: 4618 mov r0, r3 +1001ed9c: 491c ldr r1, [pc, #112] ; (1001ee10 ) +1001ed9e: f8d8 2014 ldr.w r2, [r8, #20] +1001eda2: 6809 ldr r1, [r1, #0] +1001eda4: 5a12 ldrh r2, [r2, r0] +1001eda6: 9e05 ldr r6, [sp, #20] +1001eda8: f888 3011 strb.w r3, [r8, #17] +1001edac: 044b lsls r3, r1, #17 +1001edae: f8c8 200c str.w r2, [r8, #12] +1001edb2: f8c8 4004 str.w r4, [r8, #4] +1001edb6: f8c8 6008 str.w r6, [r8, #8] +1001edba: d41a bmi.n 1001edf2 +1001edbc: 2000 movs r0, #0 +1001edbe: b009 add sp, #36 ; 0x24 +1001edc0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001edc4: 6ac3 ldr r3, [r0, #44] ; 0x2c +1001edc6: 2232 movs r2, #50 ; 0x32 +1001edc8: fb02 f203 mul.w r2, r2, r3 +1001edcc: 087f lsrs r7, r7, #1 +1001edce: 9203 str r2, [sp, #12] +1001edd0: e743 b.n 1001ec5a +1001edd2: 0048 lsls r0, r1, #1 +1001edd4: b2cb uxtb r3, r1 +1001edd6: e7e1 b.n 1001ed9c +1001edd8: 9e03 ldr r6, [sp, #12] +1001edda: 2301 movs r3, #1 +1001eddc: fbb6 f5f7 udiv r5, r6, r7 +1001ede0: 9305 str r3, [sp, #20] +1001ede2: e7b6 b.n 1001ed52 +1001ede4: 4b0b ldr r3, [pc, #44] ; (1001ee14 ) +1001ede6: 480c ldr r0, [pc, #48] ; (1001ee18 ) +1001ede8: 4798 blx r3 +1001edea: f898 3010 ldrb.w r3, [r8, #16] +1001edee: 3b01 subs r3, #1 +1001edf0: e7d0 b.n 1001ed94 +1001edf2: f8d8 1000 ldr.w r1, [r8] +1001edf6: 4633 mov r3, r6 +1001edf8: 9200 str r2, [sp, #0] +1001edfa: 4808 ldr r0, [pc, #32] ; (1001ee1c ) +1001edfc: 4622 mov r2, r4 +1001edfe: 4c05 ldr r4, [pc, #20] ; (1001ee14 ) +1001ee00: 47a0 blx r4 +1001ee02: e7db b.n 1001edbc +1001ee04: 000f423f .word 0x000f423f +1001ee08: 51eb851f .word 0x51eb851f +1001ee0c: 1000030c .word 0x1000030c +1001ee10: 10000310 .word 0x10000310 +1001ee14: 0000f39d .word 0x0000f39d +1001ee18: 10048c80 .word 0x10048c80 +1001ee1c: 10048cb8 .word 0x10048cb8 +1001ee20: 000186a0 .word 0x000186a0 + +1001ee24 : +1001ee24: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1001ee28: f890 1027 ldrb.w r1, [r0, #39] ; 0x27 +1001ee2c: f890 3029 ldrb.w r3, [r0, #41] ; 0x29 +1001ee30: 2901 cmp r1, #1 +1001ee32: 4604 mov r4, r0 +1001ee34: 4a8a ldr r2, [pc, #552] ; (1001f060 ) +1001ee36: 6f40 ldr r0, [r0, #116] ; 0x74 +1001ee38: bf14 ite ne +1001ee3a: 2508 movne r5, #8 +1001ee3c: 2509 moveq r5, #9 +1001ee3e: 2b01 cmp r3, #1 +1001ee40: b08e sub sp, #56 ; 0x38 +1001ee42: 6816 ldr r6, [r2, #0] +1001ee44: bf08 it eq +1001ee46: 3501 addeq r5, #1 +1001ee48: 2800 cmp r0, #0 +1001ee4a: f000 80d6 beq.w 1001effa +1001ee4e: 6803 ldr r3, [r0, #0] +1001ee50: 1c5a adds r2, r3, #1 +1001ee52: f000 80d2 beq.w 1001effa +1001ee56: 6821 ldr r1, [r4, #0] +1001ee58: 428b cmp r3, r1 +1001ee5a: bf18 it ne +1001ee5c: 2200 movne r2, #0 +1001ee5e: d102 bne.n 1001ee66 +1001ee60: e0e4 b.n 1001f02c +1001ee62: 428b cmp r3, r1 +1001ee64: d079 beq.n 1001ef5a +1001ee66: f850 3f04 ldr.w r3, [r0, #4]! +1001ee6a: 3201 adds r2, #1 +1001ee6c: 1c5f adds r7, r3, #1 +1001ee6e: d1f8 bne.n 1001ee62 +1001ee70: 2d09 cmp r5, #9 +1001ee72: f000 80c6 beq.w 1001f002 +1001ee76: 2d0a cmp r5, #10 +1001ee78: f000 80a0 beq.w 1001efbc +1001ee7c: f8d4 3094 ldr.w r3, [r4, #148] ; 0x94 +1001ee80: 2508 movs r5, #8 +1001ee82: 9307 str r3, [sp, #28] +1001ee84: f8df a200 ldr.w sl, [pc, #512] ; 1001f088 +1001ee88: f8da 3000 ldr.w r3, [sl] +1001ee8c: 0458 lsls r0, r3, #17 +1001ee8e: f100 80e1 bmi.w 1001f054 +1001ee92: f8df c1d4 ldr.w ip, [pc, #468] ; 1001f068 +1001ee96: f3c6 1603 ubfx r6, r6, #4, #4 +1001ee9a: f04f 0e03 mov.w lr, #3 +1001ee9e: f44f 777a mov.w r7, #1000 ; 0x3e8 +1001eea2: f640 002a movw r0, #2090 ; 0x82a +1001eea6: 220a movs r2, #10 +1001eea8: 2364 movs r3, #100 ; 0x64 +1001eeaa: 2e01 cmp r6, #1 +1001eeac: f88d 5018 strb.w r5, [sp, #24] +1001eeb0: f8cd c034 str.w ip, [sp, #52] ; 0x34 +1001eeb4: f8cd e020 str.w lr, [sp, #32] +1001eeb8: 9709 str r7, [sp, #36] ; 0x24 +1001eeba: 900a str r0, [sp, #40] ; 0x28 +1001eebc: 920b str r2, [sp, #44] ; 0x2c +1001eebe: 930c str r3, [sp, #48] ; 0x30 +1001eec0: f240 80a3 bls.w 1001f00a +1001eec4: 9102 str r1, [sp, #8] +1001eec6: a802 add r0, sp, #8 +1001eec8: f7ff feb8 bl 1001ec3c +1001eecc: 2800 cmp r0, #0 +1001eece: f040 8081 bne.w 1001efd4 +1001eed2: 9b03 ldr r3, [sp, #12] +1001eed4: 9a05 ldr r2, [sp, #20] +1001eed6: f8dd 8010 ldr.w r8, [sp, #16] +1001eeda: 1f5e subs r6, r3, #5 +1001eedc: 4d61 ldr r5, [pc, #388] ; (1001f064 ) +1001eede: 0136 lsls r6, r6, #4 +1001eee0: 0411 lsls r1, r2, #16 +1001eee2: b2f6 uxtb r6, r6 +1001eee4: 400d ands r5, r1 +1001eee6: fa5f f788 uxtb.w r7, r8 +1001eeea: f3c8 2907 ubfx r9, r8, #8, #8 +1001eeee: f8da 1000 ldr.w r1, [sl] +1001eef2: f894 a026 ldrb.w sl, [r4, #38] ; 0x26 +1001eef6: 0449 lsls r1, r1, #17 +1001eef8: f100 80a4 bmi.w 1001f044 +1001eefc: f50a 1380 add.w r3, sl, #1048576 ; 0x100000 +1001ef00: f503 7380 add.w r3, r3, #256 ; 0x100 +1001ef04: 029b lsls r3, r3, #10 +1001ef06: 68da ldr r2, [r3, #12] +1001ef08: 2000 movs r0, #0 +1001ef0a: f042 0280 orr.w r2, r2, #128 ; 0x80 +1001ef0e: 60da str r2, [r3, #12] +1001ef10: 601f str r7, [r3, #0] +1001ef12: f8c3 9004 str.w r9, [r3, #4] +1001ef16: 69da ldr r2, [r3, #28] +1001ef18: f042 0280 orr.w r2, r2, #128 ; 0x80 +1001ef1c: 61da str r2, [r3, #28] +1001ef1e: 6a1a ldr r2, [r3, #32] +1001ef20: f022 02f0 bic.w r2, r2, #240 ; 0xf0 +1001ef24: 4316 orrs r6, r2 +1001ef26: 621e str r6, [r3, #32] +1001ef28: 69da ldr r2, [r3, #28] +1001ef2a: f022 62ff bic.w r2, r2, #133693440 ; 0x7f80000 +1001ef2e: f422 22e0 bic.w r2, r2, #458752 ; 0x70000 +1001ef32: 432a orrs r2, r5 +1001ef34: 61da str r2, [r3, #28] +1001ef36: 68da ldr r2, [r3, #12] +1001ef38: f022 0280 bic.w r2, r2, #128 ; 0x80 +1001ef3c: 60da str r2, [r3, #12] +1001ef3e: 6823 ldr r3, [r4, #0] +1001ef40: f894 1027 ldrb.w r1, [r4, #39] ; 0x27 +1001ef44: f894 2029 ldrb.w r2, [r4, #41] ; 0x29 +1001ef48: f8c4 30a0 str.w r3, [r4, #160] ; 0xa0 +1001ef4c: f884 10a4 strb.w r1, [r4, #164] ; 0xa4 +1001ef50: f884 20a5 strb.w r2, [r4, #165] ; 0xa5 +1001ef54: b00e add sp, #56 ; 0x38 +1001ef56: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1001ef5a: 0053 lsls r3, r2, #1 +1001ef5c: 6fe7 ldr r7, [r4, #124] ; 0x7c +1001ef5e: 6fa0 ldr r0, [r4, #120] ; 0x78 +1001ef60: f837 c003 ldrh.w ip, [r7, r3] +1001ef64: 2d09 cmp r5, #9 +1001ef66: 5c83 ldrb r3, [r0, r2] +1001ef68: 46e0 mov r8, ip +1001ef6a: d057 beq.n 1001f01c +1001ef6c: 2d0a cmp r5, #10 +1001ef6e: d029 beq.n 1001efc4 +1001ef70: f8d4 7088 ldr.w r7, [r4, #136] ; 0x88 +1001ef74: f8d4 0094 ldr.w r0, [r4, #148] ; 0x94 +1001ef78: 5cba ldrb r2, [r7, r2] +1001ef7a: f830 2012 ldrh.w r2, [r0, r2, lsl #1] +1001ef7e: 483a ldr r0, [pc, #232] ; (1001f068 ) +1001ef80: 4f3a ldr r7, [pc, #232] ; (1001f06c ) +1001ef82: fbb0 f0f3 udiv r0, r0, r3 +1001ef86: fba7 9701 umull r9, r7, r7, r1 +1001ef8a: fbb0 f0fc udiv r0, r0, ip +1001ef8e: 4288 cmp r0, r1 +1001ef90: bf8c ite hi +1001ef92: ebc1 0000 rsbhi r0, r1, r0 +1001ef96: ebc0 0001 rsbls r0, r0, r1 +1001ef9a: ebb0 0fd7 cmp.w r0, r7, lsr #3 +1001ef9e: f4bf af67 bcs.w 1001ee70 +1001efa2: 1f5e subs r6, r3, #5 +1001efa4: 4d2f ldr r5, [pc, #188] ; (1001f064 ) +1001efa6: 0136 lsls r6, r6, #4 +1001efa8: 0411 lsls r1, r2, #16 +1001efaa: b2f6 uxtb r6, r6 +1001efac: 400d ands r5, r1 +1001efae: fa5f f78c uxtb.w r7, ip +1001efb2: ea4f 291c mov.w r9, ip, lsr #8 +1001efb6: f8df a0d0 ldr.w sl, [pc, #208] ; 1001f088 +1001efba: e798 b.n 1001eeee +1001efbc: f8d4 308c ldr.w r3, [r4, #140] ; 0x8c +1001efc0: 9307 str r3, [sp, #28] +1001efc2: e75f b.n 1001ee84 +1001efc4: f8d4 7080 ldr.w r7, [r4, #128] ; 0x80 +1001efc8: f8d4 008c ldr.w r0, [r4, #140] ; 0x8c +1001efcc: 5cba ldrb r2, [r7, r2] +1001efce: f830 2012 ldrh.w r2, [r0, r2, lsl #1] +1001efd2: e7d4 b.n 1001ef7e +1001efd4: 4b26 ldr r3, [pc, #152] ; (1001f070 ) +1001efd6: 681d ldr r5, [r3, #0] +1001efd8: f415 4580 ands.w r5, r5, #16384 ; 0x4000 +1001efdc: d029 beq.n 1001f032 +1001efde: 4b25 ldr r3, [pc, #148] ; (1001f074 ) +1001efe0: 4825 ldr r0, [pc, #148] ; (1001f078 ) +1001efe2: 6821 ldr r1, [r4, #0] +1001efe4: 2500 movs r5, #0 +1001efe6: 4798 blx r3 +1001efe8: 26f0 movs r6, #240 ; 0xf0 +1001efea: 462a mov r2, r5 +1001efec: f04f 0901 mov.w r9, #1 +1001eff0: 27b2 movs r7, #178 ; 0xb2 +1001eff2: 2314 movs r3, #20 +1001eff4: f44f 78d9 mov.w r8, #434 ; 0x1b2 +1001eff8: e779 b.n 1001eeee +1001effa: 2d09 cmp r5, #9 +1001effc: 6821 ldr r1, [r4, #0] +1001effe: f47f af3a bne.w 1001ee76 +1001f002: f8d4 3090 ldr.w r3, [r4, #144] ; 0x90 +1001f006: 9307 str r3, [sp, #28] +1001f008: e73c b.n 1001ee84 +1001f00a: 2366 movs r3, #102 ; 0x66 +1001f00c: fb03 f101 mul.w r1, r3, r1 +1001f010: 4b1a ldr r3, [pc, #104] ; (1001f07c ) +1001f012: fba3 2301 umull r2, r3, r3, r1 +1001f016: 095b lsrs r3, r3, #5 +1001f018: 9302 str r3, [sp, #8] +1001f01a: e754 b.n 1001eec6 +1001f01c: f8d4 7084 ldr.w r7, [r4, #132] ; 0x84 +1001f020: f8d4 0090 ldr.w r0, [r4, #144] ; 0x90 +1001f024: 5cba ldrb r2, [r7, r2] +1001f026: f830 2012 ldrh.w r2, [r0, r2, lsl #1] +1001f02a: e7a8 b.n 1001ef7e +1001f02c: 2300 movs r3, #0 +1001f02e: 461a mov r2, r3 +1001f030: e794 b.n 1001ef5c +1001f032: 462a mov r2, r5 +1001f034: 26f0 movs r6, #240 ; 0xf0 +1001f036: f04f 0901 mov.w r9, #1 +1001f03a: 27b2 movs r7, #178 ; 0xb2 +1001f03c: 2314 movs r3, #20 +1001f03e: f44f 78d9 mov.w r8, #434 ; 0x1b2 +1001f042: e754 b.n 1001eeee +1001f044: 9200 str r2, [sp, #0] +1001f046: 6821 ldr r1, [r4, #0] +1001f048: 4642 mov r2, r8 +1001f04a: f8df c028 ldr.w ip, [pc, #40] ; 1001f074 +1001f04e: 480c ldr r0, [pc, #48] ; (1001f080 ) +1001f050: 47e0 blx ip +1001f052: e753 b.n 1001eefc +1001f054: 480b ldr r0, [pc, #44] ; (1001f084 ) +1001f056: 4b07 ldr r3, [pc, #28] ; (1001f074 ) +1001f058: 4798 blx r3 +1001f05a: 6821 ldr r1, [r4, #0] +1001f05c: e719 b.n 1001ee92 +1001f05e: bf00 nop +1001f060: 400001f0 .word 0x400001f0 +1001f064: 07ff0000 .word 0x07ff0000 +1001f068: 04f790d5 .word 0x04f790d5 +1001f06c: cccccccd .word 0xcccccccd +1001f070: 10000314 .word 0x10000314 +1001f074: 0000f39d .word 0x0000f39d +1001f078: 10048db0 .word 0x10048db0 +1001f07c: 51eb851f .word 0x51eb851f +1001f080: 10048dec .word 0x10048dec +1001f084: 10048d7c .word 0x10048d7c +1001f088: 10000310 .word 0x10000310 + +1001f08c : +1001f08c: b5f8 push {r3, r4, r5, r6, r7, lr} +1001f08e: f890 5026 ldrb.w r5, [r0, #38] ; 0x26 +1001f092: 4604 mov r4, r0 +1001f094: 2d02 cmp r5, #2 +1001f096: f890 602f ldrb.w r6, [r0, #47] ; 0x2f +1001f09a: d909 bls.n 1001f0b0 +1001f09c: 4b7f ldr r3, [pc, #508] ; (1001f29c ) +1001f09e: 681b ldr r3, [r3, #0] +1001f0a0: 0458 lsls r0, r3, #17 +1001f0a2: f140 80e0 bpl.w 1001f266 +1001f0a6: 4b7e ldr r3, [pc, #504] ; (1001f2a0 ) +1001f0a8: 487e ldr r0, [pc, #504] ; (1001f2a4 ) +1001f0aa: 4798 blx r3 +1001f0ac: 2003 movs r0, #3 +1001f0ae: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001f0b0: 4f7d ldr r7, [pc, #500] ; (1001f2a8 ) +1001f0b2: 683b ldr r3, [r7, #0] +1001f0b4: 0459 lsls r1, r3, #17 +1001f0b6: f100 80d0 bmi.w 1001f25a +1001f0ba: 2e01 cmp r6, #1 +1001f0bc: d031 beq.n 1001f122 +1001f0be: 2e00 cmp r6, #0 +1001f0c0: d12a bne.n 1001f118 +1001f0c2: 2d00 cmp r5, #0 +1001f0c4: d128 bne.n 1001f118 +1001f0c6: 4b79 ldr r3, [pc, #484] ; (1001f2ac ) +1001f0c8: 681b ldr r3, [r3, #0] +1001f0ca: 06db lsls r3, r3, #27 +1001f0cc: d504 bpl.n 1001f0d8 +1001f0ce: 4b78 ldr r3, [pc, #480] ; (1001f2b0 ) +1001f0d0: 681b ldr r3, [r3, #0] +1001f0d2: 0458 lsls r0, r3, #17 +1001f0d4: f100 80dd bmi.w 1001f292 +1001f0d8: 4b76 ldr r3, [pc, #472] ; (1001f2b4 ) +1001f0da: 4631 mov r1, r6 +1001f0dc: 681a ldr r2, [r3, #0] +1001f0de: 2000 movs r0, #0 +1001f0e0: f042 0201 orr.w r2, r2, #1 +1001f0e4: 601a str r2, [r3, #0] +1001f0e6: 681e ldr r6, [r3, #0] +1001f0e8: 2201 movs r2, #1 +1001f0ea: f046 0602 orr.w r6, r6, #2 +1001f0ee: 601e str r6, [r3, #0] +1001f0f0: 4b71 ldr r3, [pc, #452] ; (1001f2b8 ) +1001f0f2: 4798 blx r3 +1001f0f4: 4a71 ldr r2, [pc, #452] ; (1001f2bc ) +1001f0f6: 4b72 ldr r3, [pc, #456] ; (1001f2c0 ) +1001f0f8: 6811 ldr r1, [r2, #0] +1001f0fa: f041 0101 orr.w r1, r1, #1 +1001f0fe: 6011 str r1, [r2, #0] +1001f100: 681a ldr r2, [r3, #0] +1001f102: f042 0201 orr.w r2, r2, #1 +1001f106: 601a str r2, [r3, #0] +1001f108: e025 b.n 1001f156 +1001f10a: 4b69 ldr r3, [pc, #420] ; (1001f2b0 ) +1001f10c: 681b ldr r3, [r3, #0] +1001f10e: 045a lsls r2, r3, #17 +1001f110: d502 bpl.n 1001f118 +1001f112: 486c ldr r0, [pc, #432] ; (1001f2c4 ) +1001f114: 4b62 ldr r3, [pc, #392] ; (1001f2a0 ) +1001f116: 4798 blx r3 +1001f118: 2d01 cmp r5, #1 +1001f11a: d075 beq.n 1001f208 +1001f11c: 2d02 cmp r5, #2 +1001f11e: d002 beq.n 1001f126 +1001f120: e7da b.n 1001f0d8 +1001f122: 2d02 cmp r5, #2 +1001f124: d1f1 bne.n 1001f10a +1001f126: 4b63 ldr r3, [pc, #396] ; (1001f2b4 ) +1001f128: 4631 mov r1, r6 +1001f12a: 681a ldr r2, [r3, #0] +1001f12c: 2002 movs r0, #2 +1001f12e: f042 0210 orr.w r2, r2, #16 +1001f132: 601a str r2, [r3, #0] +1001f134: 681e ldr r6, [r3, #0] +1001f136: 2201 movs r2, #1 +1001f138: f046 0620 orr.w r6, r6, #32 +1001f13c: 601e str r6, [r3, #0] +1001f13e: 4b5e ldr r3, [pc, #376] ; (1001f2b8 ) +1001f140: 4798 blx r3 +1001f142: 4a5e ldr r2, [pc, #376] ; (1001f2bc ) +1001f144: 4b5e ldr r3, [pc, #376] ; (1001f2c0 ) +1001f146: 6811 ldr r1, [r2, #0] +1001f148: f041 0104 orr.w r1, r1, #4 +1001f14c: 6011 str r1, [r2, #0] +1001f14e: 681a ldr r2, [r3, #0] +1001f150: f042 0204 orr.w r2, r2, #4 +1001f154: 601a str r2, [r3, #0] +1001f156: 4620 mov r0, r4 +1001f158: f024 fc02 bl 10043960 <__HalRuartResetRxFifoRtl8195a_veneer> +1001f15c: 683b ldr r3, [r7, #0] +1001f15e: 0459 lsls r1, r3, #17 +1001f160: f100 8092 bmi.w 1001f288 +1001f164: f505 1680 add.w r6, r5, #1048576 ; 0x100000 +1001f168: f506 7680 add.w r6, r6, #256 ; 0x100 +1001f16c: 2300 movs r3, #0 +1001f16e: 02b6 lsls r6, r6, #10 +1001f170: 6073 str r3, [r6, #4] +1001f172: f8d4 20a0 ldr.w r2, [r4, #160] ; 0xa0 +1001f176: 6823 ldr r3, [r4, #0] +1001f178: 429a cmp r2, r3 +1001f17a: d105 bne.n 1001f188 +1001f17c: f894 20a4 ldrb.w r2, [r4, #164] ; 0xa4 +1001f180: f894 3027 ldrb.w r3, [r4, #39] ; 0x27 +1001f184: 429a cmp r2, r3 +1001f186: d061 beq.n 1001f24c +1001f188: 4620 mov r0, r4 +1001f18a: f7ff fe4b bl 1001ee24 +1001f18e: 69f3 ldr r3, [r6, #28] +1001f190: f043 0380 orr.w r3, r3, #128 ; 0x80 +1001f194: 61f3 str r3, [r6, #28] +1001f196: 7b23 ldrb r3, [r4, #12] +1001f198: 6073 str r3, [r6, #4] +1001f19a: 6863 ldr r3, [r4, #4] +1001f19c: 2b01 cmp r3, #1 +1001f19e: d04c beq.n 1001f23a +1001f1a0: 683b ldr r3, [r7, #0] +1001f1a2: 045a lsls r2, r3, #17 +1001f1a4: d468 bmi.n 1001f278 +1001f1a6: 68f1 ldr r1, [r6, #12] +1001f1a8: f894 2027 ldrb.w r2, [r4, #39] ; 0x27 +1001f1ac: f894 3028 ldrb.w r3, [r4, #40] ; 0x28 +1001f1b0: f021 0105 bic.w r1, r1, #5 +1001f1b4: f002 0201 and.w r2, r2, #1 +1001f1b8: 430a orrs r2, r1 +1001f1ba: f003 0301 and.w r3, r3, #1 +1001f1be: f894 1029 ldrb.w r1, [r4, #41] ; 0x29 +1001f1c2: ea42 0383 orr.w r3, r2, r3, lsl #2 +1001f1c6: f023 0308 bic.w r3, r3, #8 +1001f1ca: f894 202a ldrb.w r2, [r4, #42] ; 0x2a +1001f1ce: f001 0101 and.w r1, r1, #1 +1001f1d2: ea43 01c1 orr.w r1, r3, r1, lsl #3 +1001f1d6: f021 0110 bic.w r1, r1, #16 +1001f1da: f894 302b ldrb.w r3, [r4, #43] ; 0x2b +1001f1de: f002 0201 and.w r2, r2, #1 +1001f1e2: ea41 1202 orr.w r2, r1, r2, lsl #4 +1001f1e6: f022 0220 bic.w r2, r2, #32 +1001f1ea: f003 0301 and.w r3, r3, #1 +1001f1ee: ea42 1343 orr.w r3, r2, r3, lsl #5 +1001f1f2: 60f3 str r3, [r6, #12] +1001f1f4: 683b ldr r3, [r7, #0] +1001f1f6: 045b lsls r3, r3, #17 +1001f1f8: d437 bmi.n 1001f26a +1001f1fa: 6861 ldr r1, [r4, #4] +1001f1fc: 2901 cmp r1, #1 +1001f1fe: d021 beq.n 1001f244 +1001f200: 2310 movs r3, #16 +1001f202: 6223 str r3, [r4, #32] +1001f204: 2000 movs r0, #0 +1001f206: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001f208: 4b2a ldr r3, [pc, #168] ; (1001f2b4 ) +1001f20a: 4631 mov r1, r6 +1001f20c: 681a ldr r2, [r3, #0] +1001f20e: 4628 mov r0, r5 +1001f210: f042 0204 orr.w r2, r2, #4 +1001f214: 601a str r2, [r3, #0] +1001f216: 681e ldr r6, [r3, #0] +1001f218: 462a mov r2, r5 +1001f21a: f046 0608 orr.w r6, r6, #8 +1001f21e: 601e str r6, [r3, #0] +1001f220: 4b25 ldr r3, [pc, #148] ; (1001f2b8 ) +1001f222: 4798 blx r3 +1001f224: 4a25 ldr r2, [pc, #148] ; (1001f2bc ) +1001f226: 4b26 ldr r3, [pc, #152] ; (1001f2c0 ) +1001f228: 6811 ldr r1, [r2, #0] +1001f22a: f041 0102 orr.w r1, r1, #2 +1001f22e: 6011 str r1, [r2, #0] +1001f230: 681a ldr r2, [r3, #0] +1001f232: f042 0202 orr.w r2, r2, #2 +1001f236: 601a str r2, [r3, #0] +1001f238: e78d b.n 1001f156 +1001f23a: 6933 ldr r3, [r6, #16] +1001f23c: f043 0320 orr.w r3, r3, #32 +1001f240: 6133 str r3, [r6, #16] +1001f242: e7ad b.n 1001f1a0 +1001f244: 4620 mov r0, r4 +1001f246: f024 fad3 bl 100437f0 <__HalRuartRTSCtrlRtl8195a_veneer> +1001f24a: e7d9 b.n 1001f200 +1001f24c: f894 20a5 ldrb.w r2, [r4, #165] ; 0xa5 +1001f250: f894 3029 ldrb.w r3, [r4, #41] ; 0x29 +1001f254: 429a cmp r2, r3 +1001f256: d197 bne.n 1001f188 +1001f258: e799 b.n 1001f18e +1001f25a: 4629 mov r1, r5 +1001f25c: 4632 mov r2, r6 +1001f25e: 4b10 ldr r3, [pc, #64] ; (1001f2a0 ) +1001f260: 4819 ldr r0, [pc, #100] ; (1001f2c8 ) +1001f262: 4798 blx r3 +1001f264: e729 b.n 1001f0ba +1001f266: 2003 movs r0, #3 +1001f268: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001f26a: 4629 mov r1, r5 +1001f26c: 68f3 ldr r3, [r6, #12] +1001f26e: 220c movs r2, #12 +1001f270: 4d0b ldr r5, [pc, #44] ; (1001f2a0 ) +1001f272: 4816 ldr r0, [pc, #88] ; (1001f2cc ) +1001f274: 47a8 blx r5 +1001f276: e7c0 b.n 1001f1fa +1001f278: 68f3 ldr r3, [r6, #12] +1001f27a: 4629 mov r1, r5 +1001f27c: 220c movs r2, #12 +1001f27e: f8df c020 ldr.w ip, [pc, #32] ; 1001f2a0 +1001f282: 4813 ldr r0, [pc, #76] ; (1001f2d0 ) +1001f284: 47e0 blx ip +1001f286: e78e b.n 1001f1a6 +1001f288: 4629 mov r1, r5 +1001f28a: 4b05 ldr r3, [pc, #20] ; (1001f2a0 ) +1001f28c: 4811 ldr r0, [pc, #68] ; (1001f2d4 ) +1001f28e: 4798 blx r3 +1001f290: e768 b.n 1001f164 +1001f292: 4b03 ldr r3, [pc, #12] ; (1001f2a0 ) +1001f294: 4810 ldr r0, [pc, #64] ; (1001f2d8 ) +1001f296: 4798 blx r3 +1001f298: e71e b.n 1001f0d8 +1001f29a: bf00 nop +1001f29c: 10000314 .word 0x10000314 +1001f2a0: 0000f39d .word 0x0000f39d +1001f2a4: 10048e44 .word 0x10048e44 +1001f2a8: 10000310 .word 0x10000310 +1001f2ac: 400000a4 .word 0x400000a4 +1001f2b0: 1000030c .word 0x1000030c +1001f2b4: 40000234 .word 0x40000234 +1001f2b8: 00002b39 .word 0x00002b39 +1001f2bc: 40000218 .word 0x40000218 +1001f2c0: 40000220 .word 0x40000220 +1001f2c4: 10048ebc .word 0x10048ebc +1001f2c8: 10048e84 .word 0x10048e84 +1001f2cc: 10048f78 .word 0x10048f78 +1001f2d0: 10048f50 .word 0x10048f50 +1001f2d4: 10048f24 .word 0x10048f24 +1001f2d8: 10048ef4 .word 0x10048ef4 + +1001f2dc : +1001f2dc: f890 3026 ldrb.w r3, [r0, #38] ; 0x26 +1001f2e0: 6841 ldr r1, [r0, #4] +1001f2e2: f503 1380 add.w r3, r3, #1048576 ; 0x100000 +1001f2e6: f503 7380 add.w r3, r3, #256 ; 0x100 +1001f2ea: 029b lsls r3, r3, #10 +1001f2ec: 691a ldr r2, [r3, #16] +1001f2ee: b121 cbz r1, 1001f2fa +1001f2f0: f042 0220 orr.w r2, r2, #32 +1001f2f4: 611a str r2, [r3, #16] +1001f2f6: 2000 movs r0, #0 +1001f2f8: 4770 bx lr +1001f2fa: f022 0220 bic.w r2, r2, #32 +1001f2fe: 611a str r2, [r3, #16] +1001f300: 2000 movs r0, #0 +1001f302: 4770 bx lr + +1001f304 : +1001f304: 6a03 ldr r3, [r0, #32] +1001f306: b570 push {r4, r5, r6, lr} +1001f308: 2b10 cmp r3, #16 +1001f30a: d007 beq.n 1001f31c +1001f30c: 2b22 cmp r3, #34 ; 0x22 +1001f30e: d005 beq.n 1001f31c +1001f310: 4a2f ldr r2, [pc, #188] ; (1001f3d0 ) +1001f312: 6812 ldr r2, [r2, #0] +1001f314: 0452 lsls r2, r2, #17 +1001f316: d454 bmi.n 1001f3c2 +1001f318: 2001 movs r0, #1 +1001f31a: bd70 pop {r4, r5, r6, pc} +1001f31c: 2900 cmp r1, #0 +1001f31e: d03d beq.n 1001f39c +1001f320: 2a00 cmp r2, #0 +1001f322: d03b beq.n 1001f39c +1001f324: 2b10 cmp r3, #16 +1001f326: bf0c ite eq +1001f328: 2321 moveq r3, #33 ; 0x21 +1001f32a: 2323 movne r3, #35 ; 0x23 +1001f32c: 6c45 ldr r5, [r0, #68] ; 0x44 +1001f32e: 6203 str r3, [r0, #32] +1001f330: 2600 movs r6, #0 +1001f332: ea41 0302 orr.w r3, r1, r2 +1001f336: f880 6024 strb.w r6, [r0, #36] ; 0x24 +1001f33a: f013 0303 ands.w r3, r3, #3 +1001f33e: 68ac ldr r4, [r5, #8] +1001f340: 6181 str r1, [r0, #24] +1001f342: 6102 str r2, [r0, #16] +1001f344: 686d ldr r5, [r5, #4] +1001f346: d035 beq.n 1001f3b4 +1001f348: b292 uxth r2, r2 +1001f34a: 2301 movs r3, #1 +1001f34c: 8562 strh r2, [r4, #42] ; 0x2a +1001f34e: 6166 str r6, [r4, #20] +1001f350: 6263 str r3, [r4, #36] ; 0x24 +1001f352: f5b2 5f80 cmp.w r2, #4096 ; 0x1000 +1001f356: d22b bcs.n 1001f3b0 +1001f358: f894 2063 ldrb.w r2, [r4, #99] ; 0x63 +1001f35c: 2600 movs r6, #0 +1001f35e: f894 3028 ldrb.w r3, [r4, #40] ; 0x28 +1001f362: f002 020f and.w r2, r2, #15 +1001f366: 6981 ldr r1, [r0, #24] +1001f368: f366 0282 bfi r2, r6, #2, #1 +1001f36c: f366 1304 bfi r3, r6, #4, #1 +1001f370: f884 2063 strb.w r2, [r4, #99] ; 0x63 +1001f374: 2001 movs r0, #1 +1001f376: 682a ldr r2, [r5, #0] +1001f378: 6021 str r1, [r4, #0] +1001f37a: f884 3028 strb.w r3, [r4, #40] ; 0x28 +1001f37e: 64e0 str r0, [r4, #76] ; 0x4c +1001f380: 64a6 str r6, [r4, #72] ; 0x48 +1001f382: 4620 mov r0, r4 +1001f384: 4790 blx r2 +1001f386: 69ab ldr r3, [r5, #24] +1001f388: 4620 mov r0, r4 +1001f38a: 4798 blx r3 +1001f38c: 68ab ldr r3, [r5, #8] +1001f38e: 4620 mov r0, r4 +1001f390: 4798 blx r3 +1001f392: 4620 mov r0, r4 +1001f394: 696b ldr r3, [r5, #20] +1001f396: 4798 blx r3 +1001f398: 4630 mov r0, r6 +1001f39a: bd70 pop {r4, r5, r6, pc} +1001f39c: 4b0d ldr r3, [pc, #52] ; (1001f3d4 ) +1001f39e: 2420 movs r4, #32 +1001f3a0: 681b ldr r3, [r3, #0] +1001f3a2: f880 4024 strb.w r4, [r0, #36] ; 0x24 +1001f3a6: 045b lsls r3, r3, #17 +1001f3a8: d502 bpl.n 1001f3b0 +1001f3aa: 480b ldr r0, [pc, #44] ; (1001f3d8 ) +1001f3ac: 4b0b ldr r3, [pc, #44] ; (1001f3dc ) +1001f3ae: 4798 blx r3 +1001f3b0: 2003 movs r0, #3 +1001f3b2: bd70 pop {r4, r5, r6, pc} +1001f3b4: f3c2 028f ubfx r2, r2, #2, #16 +1001f3b8: 2102 movs r1, #2 +1001f3ba: 8562 strh r2, [r4, #42] ; 0x2a +1001f3bc: 6263 str r3, [r4, #36] ; 0x24 +1001f3be: 6161 str r1, [r4, #20] +1001f3c0: e7c7 b.n 1001f352 +1001f3c2: 4619 mov r1, r3 +1001f3c4: 4806 ldr r0, [pc, #24] ; (1001f3e0 ) +1001f3c6: 4b05 ldr r3, [pc, #20] ; (1001f3dc ) +1001f3c8: 4798 blx r3 +1001f3ca: 2001 movs r0, #1 +1001f3cc: bd70 pop {r4, r5, r6, pc} +1001f3ce: bf00 nop +1001f3d0: 1000030c .word 0x1000030c +1001f3d4: 10000314 .word 0x10000314 +1001f3d8: 10048ffc .word 0x10048ffc +1001f3dc: 0000f39d .word 0x0000f39d +1001f3e0: 10048fc4 .word 0x10048fc4 + +1001f3e4 : +1001f3e4: b5f8 push {r3, r4, r5, r6, r7, lr} +1001f3e6: 6a06 ldr r6, [r0, #32] +1001f3e8: 4604 mov r4, r0 +1001f3ea: f1a6 0322 sub.w r3, r6, #34 ; 0x22 +1001f3ee: 2b01 cmp r3, #1 +1001f3f0: d906 bls.n 1001f400 +1001f3f2: 4b2c ldr r3, [pc, #176] ; (1001f4a4 ) +1001f3f4: 6818 ldr r0, [r3, #0] +1001f3f6: f410 4580 ands.w r5, r0, #16384 ; 0x4000 +1001f3fa: d14d bne.n 1001f498 +1001f3fc: 4628 mov r0, r5 +1001f3fe: bdf8 pop {r3, r4, r5, r6, r7, pc} +1001f400: f024 fafe bl 10043a00 <__RuartLock_veneer> +1001f404: 4605 mov r5, r0 +1001f406: b158 cbz r0, 1001f420 +1001f408: 4b26 ldr r3, [pc, #152] ; (1001f4a4 ) +1001f40a: 681b ldr r3, [r3, #0] +1001f40c: 045b lsls r3, r3, #17 +1001f40e: bf58 it pl +1001f410: 2501 movpl r5, #1 +1001f412: d5f3 bpl.n 1001f3fc +1001f414: 4631 mov r1, r6 +1001f416: 4824 ldr r0, [pc, #144] ; (1001f4a8 ) +1001f418: 4b24 ldr r3, [pc, #144] ; (1001f4ac ) +1001f41a: 4798 blx r3 +1001f41c: 2501 movs r5, #1 +1001f41e: e7ed b.n 1001f3fc +1001f420: 68e3 ldr r3, [r4, #12] +1001f422: 4620 mov r0, r4 +1001f424: f023 0305 bic.w r3, r3, #5 +1001f428: 60e3 str r3, [r4, #12] +1001f42a: 4b21 ldr r3, [pc, #132] ; (1001f4b0 ) +1001f42c: 4798 blx r3 +1001f42e: 6c63 ldr r3, [r4, #68] ; 0x44 +1001f430: b13b cbz r3, 1001f442 +1001f432: 68de ldr r6, [r3, #12] +1001f434: 685f ldr r7, [r3, #4] +1001f436: b126 cbz r6, 1001f442 +1001f438: b11f cbz r7, 1001f442 +1001f43a: 4630 mov r0, r6 +1001f43c: f7ff f9b2 bl 1001e7a4 +1001f440: b9b0 cbnz r0, 1001f470 +1001f442: 69e1 ldr r1, [r4, #28] +1001f444: e005 b.n 1001f452 +1001f446: 6963 ldr r3, [r4, #20] +1001f448: 69e1 ldr r1, [r4, #28] +1001f44a: 3b01 subs r3, #1 +1001f44c: 3101 adds r1, #1 +1001f44e: 6163 str r3, [r4, #20] +1001f450: 61e1 str r1, [r4, #28] +1001f452: 4620 mov r0, r4 +1001f454: f024 fa7c bl 10043950 <__HalRuartGetCRtl8195a_veneer> +1001f458: 2800 cmp r0, #0 +1001f45a: d0f4 beq.n 1001f446 +1001f45c: 6a23 ldr r3, [r4, #32] +1001f45e: 4620 mov r0, r4 +1001f460: 2b22 cmp r3, #34 ; 0x22 +1001f462: bf0c ite eq +1001f464: 2310 moveq r3, #16 +1001f466: 2321 movne r3, #33 ; 0x21 +1001f468: 6223 str r3, [r4, #32] +1001f46a: f024 fad9 bl 10043a20 <__RuartUnLock_veneer> +1001f46e: e7c5 b.n 1001f3fc +1001f470: 6a7b ldr r3, [r7, #36] ; 0x24 +1001f472: 4630 mov r0, r6 +1001f474: 4798 blx r3 +1001f476: 69fb ldr r3, [r7, #28] +1001f478: 4630 mov r0, r6 +1001f47a: 4798 blx r3 +1001f47c: 693b ldr r3, [r7, #16] +1001f47e: 4630 mov r0, r6 +1001f480: 4798 blx r3 +1001f482: 4630 mov r0, r6 +1001f484: f7ff f972 bl 1001e76c +1001f488: 69e1 ldr r1, [r4, #28] +1001f48a: 6963 ldr r3, [r4, #20] +1001f48c: 1a40 subs r0, r0, r1 +1001f48e: 4401 add r1, r0 +1001f490: 1a1b subs r3, r3, r0 +1001f492: 61e1 str r1, [r4, #28] +1001f494: 6163 str r3, [r4, #20] +1001f496: e7dc b.n 1001f452 +1001f498: 4631 mov r1, r6 +1001f49a: 4806 ldr r0, [pc, #24] ; (1001f4b4 ) +1001f49c: 4b03 ldr r3, [pc, #12] ; (1001f4ac ) +1001f49e: 4798 blx r3 +1001f4a0: 2500 movs r5, #0 +1001f4a2: e7ab b.n 1001f3fc +1001f4a4: 1000030c .word 0x1000030c +1001f4a8: 10049240 .word 0x10049240 +1001f4ac: 0000f39d .word 0x0000f39d +1001f4b0: 0000442d .word 0x0000442d +1001f4b4: 10049200 .word 0x10049200 + +1001f4b8 : +1001f4b8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001f4bc: 6a06 ldr r6, [r0, #32] +1001f4be: 4604 mov r4, r0 +1001f4c0: f026 0302 bic.w r3, r6, #2 +1001f4c4: 2b21 cmp r3, #33 ; 0x21 +1001f4c6: d007 beq.n 1001f4d8 +1001f4c8: 4b29 ldr r3, [pc, #164] ; (1001f570 ) +1001f4ca: 681d ldr r5, [r3, #0] +1001f4cc: f415 4580 ands.w r5, r5, #16384 ; 0x4000 +1001f4d0: d148 bne.n 1001f564 +1001f4d2: 4628 mov r0, r5 +1001f4d4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001f4d8: f024 fa92 bl 10043a00 <__RuartLock_veneer> +1001f4dc: 4605 mov r5, r0 +1001f4de: b158 cbz r0, 1001f4f8 +1001f4e0: 4b23 ldr r3, [pc, #140] ; (1001f570 ) +1001f4e2: 681b ldr r3, [r3, #0] +1001f4e4: 045b lsls r3, r3, #17 +1001f4e6: bf58 it pl +1001f4e8: 2501 movpl r5, #1 +1001f4ea: d5f2 bpl.n 1001f4d2 +1001f4ec: 4631 mov r1, r6 +1001f4ee: 4821 ldr r0, [pc, #132] ; (1001f574 ) +1001f4f0: 4b21 ldr r3, [pc, #132] ; (1001f578 ) +1001f4f2: 4798 blx r3 +1001f4f4: 2501 movs r5, #1 +1001f4f6: e7ec b.n 1001f4d2 +1001f4f8: 68e3 ldr r3, [r4, #12] +1001f4fa: 4620 mov r0, r4 +1001f4fc: f023 0302 bic.w r3, r3, #2 +1001f500: 60e3 str r3, [r4, #12] +1001f502: 4b1e ldr r3, [pc, #120] ; (1001f57c ) +1001f504: 4798 blx r3 +1001f506: 6c63 ldr r3, [r4, #68] ; 0x44 +1001f508: b153 cbz r3, 1001f520 +1001f50a: 689f ldr r7, [r3, #8] +1001f50c: f8d3 8004 ldr.w r8, [r3, #4] +1001f510: b137 cbz r7, 1001f520 +1001f512: f1b8 0f00 cmp.w r8, #0 +1001f516: d003 beq.n 1001f520 +1001f518: 4638 mov r0, r7 +1001f51a: f7ff f943 bl 1001e7a4 +1001f51e: b950 cbnz r0, 1001f536 +1001f520: 2e21 cmp r6, #33 ; 0x21 +1001f522: bf0c ite eq +1001f524: 2310 moveq r3, #16 +1001f526: 2322 movne r3, #34 ; 0x22 +1001f528: 4620 mov r0, r4 +1001f52a: 6223 str r3, [r4, #32] +1001f52c: f024 fa78 bl 10043a20 <__RuartUnLock_veneer> +1001f530: 4628 mov r0, r5 +1001f532: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001f536: f8d8 3024 ldr.w r3, [r8, #36] ; 0x24 +1001f53a: 4638 mov r0, r7 +1001f53c: 4798 blx r3 +1001f53e: f8d8 301c ldr.w r3, [r8, #28] +1001f542: 4638 mov r0, r7 +1001f544: 4798 blx r3 +1001f546: f8d8 3010 ldr.w r3, [r8, #16] +1001f54a: 4638 mov r0, r7 +1001f54c: 4798 blx r3 +1001f54e: 4638 mov r0, r7 +1001f550: f7ff f91a bl 1001e788 +1001f554: 69a3 ldr r3, [r4, #24] +1001f556: 6922 ldr r2, [r4, #16] +1001f558: 1ac0 subs r0, r0, r3 +1001f55a: 4403 add r3, r0 +1001f55c: 1a12 subs r2, r2, r0 +1001f55e: 61a3 str r3, [r4, #24] +1001f560: 6122 str r2, [r4, #16] +1001f562: e7dd b.n 1001f520 +1001f564: 4631 mov r1, r6 +1001f566: 4806 ldr r0, [pc, #24] ; (1001f580 ) +1001f568: 4b03 ldr r3, [pc, #12] ; (1001f578 ) +1001f56a: 4798 blx r3 +1001f56c: 2500 movs r5, #0 +1001f56e: e7b0 b.n 1001f4d2 +1001f570: 1000030c .word 0x1000030c +1001f574: 100492c0 .word 0x100492c0 +1001f578: 0000f39d .word 0x0000f39d +1001f57c: 0000442d .word 0x0000442d +1001f580: 10049280 .word 0x10049280 + +1001f584 : +1001f584: 4770 bx lr +1001f586: bf00 nop + +1001f588 : +1001f588: f000 bb74 b.w 1001fc74 + +1001f58c : +1001f58c: 4770 bx lr +1001f58e: bf00 nop + +1001f590 : +1001f590: b500 push {lr} +1001f592: 2300 movs r3, #0 +1001f594: b085 sub sp, #20 +1001f596: 2201 movs r2, #1 +1001f598: e88d 000c stmia.w sp, {r2, r3} +1001f59c: 9302 str r3, [sp, #8] +1001f59e: 9303 str r3, [sp, #12] +1001f5a0: 4807 ldr r0, [pc, #28] ; (1001f5c0 ) +1001f5a2: 4908 ldr r1, [pc, #32] ; (1001f5c4 ) +1001f5a4: f44f 6280 mov.w r2, #1024 ; 0x400 +1001f5a8: f7fc f82c bl 1001b604 +1001f5ac: 2801 cmp r0, #1 +1001f5ae: d003 beq.n 1001f5b8 +1001f5b0: 4805 ldr r0, [pc, #20] ; (1001f5c8 ) +1001f5b2: 4906 ldr r1, [pc, #24] ; (1001f5cc ) +1001f5b4: f022 fda8 bl 10042108 +1001f5b8: 2000 movs r0, #0 +1001f5ba: b005 add sp, #20 +1001f5bc: f85d fb04 ldr.w pc, [sp], #4 +1001f5c0: 1001fbd9 .word 0x1001fbd9 +1001f5c4: 10049334 .word 0x10049334 +1001f5c8: 10049348 .word 0x10049348 +1001f5cc: 1004931c .word 0x1004931c + +1001f5d0 : +1001f5d0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1001f5d4: 460d mov r5, r1 +1001f5d6: b084 sub sp, #16 +1001f5d8: 4616 mov r6, r2 +1001f5da: 461f mov r7, r3 +1001f5dc: 2803 cmp r0, #3 +1001f5de: d872 bhi.n 1001f6c6 +1001f5e0: e8df f000 tbb [pc, r0] +1001f5e4: 02176d1b .word 0x02176d1b +1001f5e8: f44f 7490 mov.w r4, #288 ; 0x120 +1001f5ec: f04f 082c mov.w r8, #44 ; 0x2c +1001f5f0: 2001 movs r0, #1 +1001f5f2: f7fc ff85 bl 1001c500 +1001f5f6: b9d5 cbnz r5, 1001f62e +1001f5f8: f504 217c add.w r1, r4, #1032192 ; 0xfc000 +1001f5fc: 463a mov r2, r7 +1001f5fe: 4633 mov r3, r6 +1001f600: a801 add r0, sp, #4 +1001f602: f7fd ffa7 bl 1001d554 +1001f606: 2001 movs r0, #1 +1001f608: f7fc ff92 bl 1001c530 +1001f60c: b004 add sp, #16 +1001f60e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001f612: 2408 movs r4, #8 +1001f614: f44f 788c mov.w r8, #280 ; 0x118 +1001f618: e7ea b.n 1001f5f0 +1001f61a: 2001 movs r0, #1 +1001f61c: f7fc ff70 bl 1001c500 +1001f620: 2d02 cmp r5, #2 +1001f622: d05e beq.n 1001f6e2 +1001f624: 2400 movs r4, #0 +1001f626: f44f 5880 mov.w r8, #4096 ; 0x1000 +1001f62a: 2d00 cmp r5, #0 +1001f62c: d0e4 beq.n 1001f5f8 +1001f62e: a801 add r0, sp, #4 +1001f630: f44f 4100 mov.w r1, #32768 ; 0x8000 +1001f634: f7fd ff1a bl 1001d46c +1001f638: 2d01 cmp r5, #1 +1001f63a: d04a beq.n 1001f6d2 +1001f63c: b17c cbz r4, 1001f65e +1001f63e: 2600 movs r6, #0 +1001f640: f506 217c add.w r1, r6, #1032192 ; 0xfc000 +1001f644: 466a mov r2, sp +1001f646: a801 add r0, sp, #4 +1001f648: f7fd ff2c bl 1001d4a4 +1001f64c: f506 4100 add.w r1, r6, #32768 ; 0x8000 +1001f650: a801 add r0, sp, #4 +1001f652: 9a00 ldr r2, [sp, #0] +1001f654: 3604 adds r6, #4 +1001f656: f7fd ff49 bl 1001d4ec +1001f65a: 42b4 cmp r4, r6 +1001f65c: dcf0 bgt.n 1001f640 +1001f65e: 4444 add r4, r8 +1001f660: f5b4 5f80 cmp.w r4, #4096 ; 0x1000 +1001f664: da0f bge.n 1001f686 +1001f666: f504 217c add.w r1, r4, #1032192 ; 0xfc000 +1001f66a: 466a mov r2, sp +1001f66c: a801 add r0, sp, #4 +1001f66e: f7fd ff19 bl 1001d4a4 +1001f672: f504 4100 add.w r1, r4, #32768 ; 0x8000 +1001f676: a801 add r0, sp, #4 +1001f678: 9a00 ldr r2, [sp, #0] +1001f67a: 3404 adds r4, #4 +1001f67c: f7fd ff36 bl 1001d4ec +1001f680: f5b4 5f80 cmp.w r4, #4096 ; 0x1000 +1001f684: dbef blt.n 1001f666 +1001f686: a801 add r0, sp, #4 +1001f688: f44f 217c mov.w r1, #1032192 ; 0xfc000 +1001f68c: f7fd feee bl 1001d46c +1001f690: f44f 4400 mov.w r4, #32768 ; 0x8000 +1001f694: 4621 mov r1, r4 +1001f696: 466a mov r2, sp +1001f698: a801 add r0, sp, #4 +1001f69a: f7fd ff03 bl 1001d4a4 +1001f69e: f504 2174 add.w r1, r4, #999424 ; 0xf4000 +1001f6a2: a801 add r0, sp, #4 +1001f6a4: 9a00 ldr r2, [sp, #0] +1001f6a6: 3404 adds r4, #4 +1001f6a8: f7fd ff20 bl 1001d4ec +1001f6ac: f5b4 4f10 cmp.w r4, #36864 ; 0x9000 +1001f6b0: d1f0 bne.n 1001f694 +1001f6b2: a801 add r0, sp, #4 +1001f6b4: f44f 4100 mov.w r1, #32768 ; 0x8000 +1001f6b8: f7fd fed8 bl 1001d46c +1001f6bc: e7a3 b.n 1001f606 +1001f6be: 2400 movs r4, #0 +1001f6c0: f04f 0808 mov.w r8, #8 +1001f6c4: e794 b.n 1001f5f0 +1001f6c6: 480a ldr r0, [pc, #40] ; (1001f6f0 ) +1001f6c8: f022 fd1e bl 10042108 +1001f6cc: b004 add sp, #16 +1001f6ce: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1001f6d2: 463a mov r2, r7 +1001f6d4: 4633 mov r3, r6 +1001f6d6: a801 add r0, sp, #4 +1001f6d8: f504 4100 add.w r1, r4, #32768 ; 0x8000 +1001f6dc: f7fd ffda bl 1001d694 +1001f6e0: e7ac b.n 1001f63c +1001f6e2: a801 add r0, sp, #4 +1001f6e4: f44f 217c mov.w r1, #1032192 ; 0xfc000 +1001f6e8: f7fd fec0 bl 1001d46c +1001f6ec: e78b b.n 1001f606 +1001f6ee: bf00 nop +1001f6f0: 10049374 .word 0x10049374 + +1001f6f4 : +1001f6f4: b530 push {r4, r5, lr} +1001f6f6: b085 sub sp, #20 +1001f6f8: 4604 mov r4, r0 +1001f6fa: 2100 movs r1, #0 +1001f6fc: 2001 movs r0, #1 +1001f6fe: aa02 add r2, sp, #8 +1001f700: 2308 movs r3, #8 +1001f702: f7ff ff65 bl 1001f5d0 +1001f706: f89d 500f ldrb.w r5, [sp, #15] +1001f70a: 2d01 cmp r5, #1 +1001f70c: d912 bls.n 1001f734 +1001f70e: 2000 movs r0, #0 +1001f710: f44f 4116 mov.w r1, #38400 ; 0x9600 +1001f714: 2208 movs r2, #8 +1001f716: 2301 movs r3, #1 +1001f718: 4605 mov r5, r0 +1001f71a: 71a0 strb r0, [r4, #6] +1001f71c: 71e0 strb r0, [r4, #7] +1001f71e: 6021 str r1, [r4, #0] +1001f720: 7122 strb r2, [r4, #4] +1001f722: 7163 strb r3, [r4, #5] +1001f724: e88d 0021 stmia.w sp, {r0, r5} +1001f728: 480d ldr r0, [pc, #52] ; (1001f760 ) +1001f72a: f022 fced bl 10042108 +1001f72e: 2000 movs r0, #0 +1001f730: b005 add sp, #20 +1001f732: bd30 pop {r4, r5, pc} +1001f734: f89d 200c ldrb.w r2, [sp, #12] +1001f738: 1f53 subs r3, r2, #5 +1001f73a: 2b03 cmp r3, #3 +1001f73c: d8e7 bhi.n 1001f70e +1001f73e: f89d 000e ldrb.w r0, [sp, #14] +1001f742: 2802 cmp r0, #2 +1001f744: d8e3 bhi.n 1001f70e +1001f746: f89d 300d ldrb.w r3, [sp, #13] +1001f74a: 1e59 subs r1, r3, #1 +1001f74c: 2901 cmp r1, #1 +1001f74e: d8de bhi.n 1001f70e +1001f750: 9902 ldr r1, [sp, #8] +1001f752: 7122 strb r2, [r4, #4] +1001f754: 71a0 strb r0, [r4, #6] +1001f756: 7163 strb r3, [r4, #5] +1001f758: 71e5 strb r5, [r4, #7] +1001f75a: 6021 str r1, [r4, #0] +1001f75c: e7e2 b.n 1001f724 +1001f75e: bf00 nop +1001f760: 10049390 .word 0x10049390 + +1001f764 : +1001f764: b508 push {r3, lr} +1001f766: 4602 mov r2, r0 +1001f768: 2001 movs r0, #1 +1001f76a: 4601 mov r1, r0 +1001f76c: 2308 movs r3, #8 +1001f76e: f7ff ff2f bl 1001f5d0 +1001f772: 2000 movs r0, #0 +1001f774: bd08 pop {r3, pc} +1001f776: bf00 nop + +1001f778 : +1001f778: b508 push {r3, lr} +1001f77a: 2000 movs r0, #0 +1001f77c: 4602 mov r2, r0 +1001f77e: 4603 mov r3, r0 +1001f780: 2102 movs r1, #2 +1001f782: f7ff ff25 bl 1001f5d0 +1001f786: 2000 movs r0, #0 +1001f788: bd08 pop {r3, pc} +1001f78a: bf00 nop + +1001f78c : +1001f78c: b500 push {lr} +1001f78e: 2100 movs r1, #0 +1001f790: b087 sub sp, #28 +1001f792: 460b mov r3, r1 +1001f794: a801 add r0, sp, #4 +1001f796: 4a07 ldr r2, [pc, #28] ; (1001f7b4 ) +1001f798: f7fe f900 bl 1001d99c +1001f79c: a801 add r0, sp, #4 +1001f79e: 2102 movs r1, #2 +1001f7a0: 2201 movs r2, #1 +1001f7a2: f7fe f921 bl 1001d9e8 +1001f7a6: a801 add r0, sp, #4 +1001f7a8: f7fe f940 bl 1001da2c +1001f7ac: b007 add sp, #28 +1001f7ae: f85d fb04 ldr.w pc, [sp], #4 +1001f7b2: bf00 nop +1001f7b4: 1001f58d .word 0x1001f58d + +1001f7b8 : +1001f7b8: b510 push {r4, lr} +1001f7ba: 6801 ldr r1, [r0, #0] +1001f7bc: 4604 mov r4, r0 +1001f7be: 480f ldr r0, [pc, #60] ; (1001f7fc ) +1001f7c0: f7fe fa3e bl 1001dc40 +1001f7c4: 7921 ldrb r1, [r4, #4] +1001f7c6: 79a2 ldrb r2, [r4, #6] +1001f7c8: 7963 ldrb r3, [r4, #5] +1001f7ca: 480c ldr r0, [pc, #48] ; (1001f7fc ) +1001f7cc: f7fe fa3c bl 1001dc48 +1001f7d0: 79e1 ldrb r1, [r4, #7] +1001f7d2: b931 cbnz r1, 1001f7e2 +1001f7d4: 4809 ldr r0, [pc, #36] ; (1001f7fc ) +1001f7d6: 2202 movs r2, #2 +1001f7d8: 2301 movs r3, #1 +1001f7da: e8bd 4010 ldmia.w sp!, {r4, lr} +1001f7de: f7fe bb03 b.w 1001dde8 +1001f7e2: 2001 movs r0, #1 +1001f7e4: 2102 movs r1, #2 +1001f7e6: f7fe f92f bl 1001da48 +1001f7ea: e8bd 4010 ldmia.w sp!, {r4, lr} +1001f7ee: 4803 ldr r0, [pc, #12] ; (1001f7fc ) +1001f7f0: 2103 movs r1, #3 +1001f7f2: 2202 movs r2, #2 +1001f7f4: 2301 movs r3, #1 +1001f7f6: f7fe baf7 b.w 1001dde8 +1001f7fa: bf00 nop +1001f7fc: 100526c0 .word 0x100526c0 + +1001f800 : +1001f800: b510 push {r4, lr} +1001f802: 7801 ldrb r1, [r0, #0] +1001f804: b141 cbz r1, 1001f818 +1001f806: 4604 mov r4, r0 +1001f808: b249 sxtb r1, r1 +1001f80a: 4804 ldr r0, [pc, #16] ; (1001f81c ) +1001f80c: f7fe fac8 bl 1001dda0 +1001f810: f814 1f01 ldrb.w r1, [r4, #1]! +1001f814: 2900 cmp r1, #0 +1001f816: d1f7 bne.n 1001f808 +1001f818: bd10 pop {r4, pc} +1001f81a: bf00 nop +1001f81c: 100526c0 .word 0x100526c0 + +1001f820 : +1001f820: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1001f824: 4604 mov r4, r0 +1001f826: b087 sub sp, #28 +1001f828: b111 cbz r1, 1001f830 +1001f82a: b007 add sp, #28 +1001f82c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1001f830: f7fe faa6 bl 1001dd80 +1001f834: 4606 mov r6, r0 +1001f836: f7ea f847 bl 100098c8 +1001f83a: 2800 cmp r0, #0 +1001f83c: d170 bne.n 1001f920 +1001f83e: 4fa9 ldr r7, [pc, #676] ; (1001fae4 ) +1001f840: 683a ldr r2, [r7, #0] +1001f842: 2a04 cmp r2, #4 +1001f844: f000 8090 beq.w 1001f968 +1001f848: 2a04 cmp r2, #4 +1001f84a: b2f5 uxtb r5, r6 +1001f84c: d825 bhi.n 1001f89a +1001f84e: 2d1b cmp r5, #27 +1001f850: d078 beq.n 1001f944 +1001f852: 4aa5 ldr r2, [pc, #660] ; (1001fae8 ) +1001f854: 7813 ldrb r3, [r2, #0] +1001f856: 2b01 cmp r3, #1 +1001f858: d05d beq.n 1001f916 +1001f85a: 2b02 cmp r3, #2 +1001f85c: d05d beq.n 1001f91a +1001f85e: 2d0d cmp r5, #13 +1001f860: 683b ldr r3, [r7, #0] +1001f862: f000 808b beq.w 1001f97c +1001f866: 2d08 cmp r5, #8 +1001f868: f000 80a9 beq.w 1001f9be +1001f86c: 2b00 cmp r3, #0 +1001f86e: d06d beq.n 1001f94c +1001f870: f240 623e movw r2, #1598 ; 0x63e +1001f874: 4293 cmp r3, r2 +1001f876: f240 80bd bls.w 1001f9f4 +1001f87a: f240 623f movw r2, #1599 ; 0x63f +1001f87e: 4293 cmp r3, r2 +1001f880: d1d3 bne.n 1001f82a +1001f882: 4b9a ldr r3, [pc, #616] ; (1001faec ) +1001f884: 4a9a ldr r2, [pc, #616] ; (1001faf0 ) +1001f886: 781b ldrb r3, [r3, #0] +1001f888: 2100 movs r1, #0 +1001f88a: 2b01 cmp r3, #1 +1001f88c: f882 163f strb.w r1, [r2, #1599] ; 0x63f +1001f890: d1cb bne.n 1001f82a +1001f892: 4898 ldr r0, [pc, #608] ; (1001faf4 ) +1001f894: f7ff ffb4 bl 1001f800 +1001f898: e7c7 b.n 1001f82a +1001f89a: f8df 8280 ldr.w r8, [pc, #640] ; 1001fb1c +1001f89e: f898 3000 ldrb.w r3, [r8] +1001f8a2: 2b01 cmp r3, #1 +1001f8a4: d1d3 bne.n 1001f84e +1001f8a6: f8df 9250 ldr.w r9, [pc, #592] ; 1001faf8 +1001f8aa: f8d9 3000 ldr.w r3, [r9] +1001f8ae: 2b00 cmp r3, #0 +1001f8b0: f000 80ae beq.w 1001fa10 +1001f8b4: f8df a234 ldr.w sl, [pc, #564] ; 1001faec +1001f8b8: f89a 3000 ldrb.w r3, [sl] +1001f8bc: 2b00 cmp r3, #0 +1001f8be: f000 80ea beq.w 1001fa96 +1001f8c2: f8df b25c ldr.w fp, [pc, #604] ; 1001fb20 +1001f8c6: f7fc f88f bl 1001b9e8 +1001f8ca: 683b ldr r3, [r7, #0] +1001f8cc: f89a 1000 ldrb.w r1, [sl] +1001f8d0: f8df a234 ldr.w sl, [pc, #564] ; 1001fb08 +1001f8d4: 1c5a adds r2, r3, #1 +1001f8d6: 2901 cmp r1, #1 +1001f8d8: f80a 6003 strb.w r6, [sl, r3] +1001f8dc: f8cb 0000 str.w r0, [fp] +1001f8e0: 603a str r2, [r7, #0] +1001f8e2: 4e80 ldr r6, [pc, #512] ; (1001fae4 ) +1001f8e4: f000 80f8 beq.w 1001fad8 +1001f8e8: f8d9 3000 ldr.w r3, [r9] +1001f8ec: 4982 ldr r1, [pc, #520] ; (1001faf8 ) +1001f8ee: 4293 cmp r3, r2 +1001f8f0: d89b bhi.n 1001f82a +1001f8f2: 4c82 ldr r4, [pc, #520] ; (1001fafc ) +1001f8f4: 3b01 subs r3, #1 +1001f8f6: 6820 ldr r0, [r4, #0] +1001f8f8: 2200 movs r2, #0 +1001f8fa: 1a1b subs r3, r3, r0 +1001f8fc: 4880 ldr r0, [pc, #512] ; (1001fb00 ) +1001f8fe: f80a 2003 strb.w r2, [sl, r3] +1001f902: f888 2000 strb.w r2, [r8] +1001f906: 6022 str r2, [r4, #0] +1001f908: 600a str r2, [r1, #0] +1001f90a: 603a str r2, [r7, #0] +1001f90c: f8cb 2000 str.w r2, [fp] +1001f910: f7fd f986 bl 1001cc20 +1001f914: e789 b.n 1001f82a +1001f916: 2d5b cmp r5, #91 ; 0x5b +1001f918: d023 beq.n 1001f962 +1001f91a: 2300 movs r3, #0 +1001f91c: 7013 strb r3, [r2, #0] +1001f91e: e784 b.n 1001f82a +1001f920: 4c78 ldr r4, [pc, #480] ; (1001fb04 ) +1001f922: 4a79 ldr r2, [pc, #484] ; (1001fb08 ) +1001f924: 6823 ldr r3, [r4, #0] +1001f926: 1c59 adds r1, r3, #1 +1001f928: 54d6 strb r6, [r2, r3] +1001f92a: 6021 str r1, [r4, #0] +1001f92c: f7fc f85c bl 1001b9e8 +1001f930: 4b76 ldr r3, [pc, #472] ; (1001fb0c ) +1001f932: 6018 str r0, [r3, #0] +1001f934: 6823 ldr r3, [r4, #0] +1001f936: 2b01 cmp r3, #1 +1001f938: f47f af77 bne.w 1001f82a +1001f93c: 4874 ldr r0, [pc, #464] ; (1001fb10 ) +1001f93e: f7fd f96f bl 1001cc20 +1001f942: e772 b.n 1001f82a +1001f944: 4b68 ldr r3, [pc, #416] ; (1001fae8 ) +1001f946: 2201 movs r2, #1 +1001f948: 701a strb r2, [r3, #0] +1001f94a: e76e b.n 1001f82a +1001f94c: 2d41 cmp r5, #65 ; 0x41 +1001f94e: d051 beq.n 1001f9f4 +1001f950: 4b66 ldr r3, [pc, #408] ; (1001faec ) +1001f952: 781b ldrb r3, [r3, #0] +1001f954: 2b01 cmp r3, #1 +1001f956: f47f af68 bne.w 1001f82a +1001f95a: 486e ldr r0, [pc, #440] ; (1001fb14 ) +1001f95c: f7ff ff50 bl 1001f800 +1001f960: e763 b.n 1001f82a +1001f962: 2302 movs r3, #2 +1001f964: 7013 strb r3, [r2, #0] +1001f966: e760 b.n 1001f82a +1001f968: 4861 ldr r0, [pc, #388] ; (1001faf0 ) +1001f96a: 496b ldr r1, [pc, #428] ; (1001fb18 ) +1001f96c: f022 fc16 bl 1004219c +1001f970: b910 cbnz r0, 1001f978 +1001f972: 4b6a ldr r3, [pc, #424] ; (1001fb1c ) +1001f974: 2201 movs r2, #1 +1001f976: 701a strb r2, [r3, #0] +1001f978: 683a ldr r2, [r7, #0] +1001f97a: e765 b.n 1001f848 +1001f97c: 4c59 ldr r4, [pc, #356] ; (1001fae4 ) +1001f97e: 2b00 cmp r3, #0 +1001f980: d066 beq.n 1001fa50 +1001f982: 2100 movs r1, #0 +1001f984: f44f 62c8 mov.w r2, #1600 ; 0x640 +1001f988: 485f ldr r0, [pc, #380] ; (1001fb08 ) +1001f98a: f022 fbef bl 1004216c +1001f98e: 4958 ldr r1, [pc, #352] ; (1001faf0 ) +1001f990: 6822 ldr r2, [r4, #0] +1001f992: 485d ldr r0, [pc, #372] ; (1001fb08 ) +1001f994: f022 fc08 bl 100421a8 +1001f998: 4859 ldr r0, [pc, #356] ; (1001fb00 ) +1001f99a: f7fd f941 bl 1001cc20 +1001f99e: 2100 movs r1, #0 +1001f9a0: 6822 ldr r2, [r4, #0] +1001f9a2: 4853 ldr r0, [pc, #332] ; (1001faf0 ) +1001f9a4: f022 fbe2 bl 1004216c +1001f9a8: 4d5c ldr r5, [pc, #368] ; (1001fb1c ) +1001f9aa: 4854 ldr r0, [pc, #336] ; (1001fafc ) +1001f9ac: 4952 ldr r1, [pc, #328] ; (1001faf8 ) +1001f9ae: 4a5c ldr r2, [pc, #368] ; (1001fb20 ) +1001f9b0: 2300 movs r3, #0 +1001f9b2: 702b strb r3, [r5, #0] +1001f9b4: 6023 str r3, [r4, #0] +1001f9b6: 6003 str r3, [r0, #0] +1001f9b8: 600b str r3, [r1, #0] +1001f9ba: 6013 str r3, [r2, #0] +1001f9bc: e735 b.n 1001f82a +1001f9be: 4a49 ldr r2, [pc, #292] ; (1001fae4 ) +1001f9c0: 2b00 cmp r3, #0 +1001f9c2: f43f af32 beq.w 1001f82a +1001f9c6: 4949 ldr r1, [pc, #292] ; (1001faec ) +1001f9c8: 4849 ldr r0, [pc, #292] ; (1001faf0 ) +1001f9ca: 7809 ldrb r1, [r1, #0] +1001f9cc: 3b01 subs r3, #1 +1001f9ce: 2600 movs r6, #0 +1001f9d0: 2901 cmp r1, #1 +1001f9d2: 6013 str r3, [r2, #0] +1001f9d4: 54c6 strb r6, [r0, r3] +1001f9d6: f47f af28 bne.w 1001f82a +1001f9da: 4620 mov r0, r4 +1001f9dc: 4629 mov r1, r5 +1001f9de: f7fe f9df bl 1001dda0 +1001f9e2: 4620 mov r0, r4 +1001f9e4: 2120 movs r1, #32 +1001f9e6: f7fe f9db bl 1001dda0 +1001f9ea: 4620 mov r0, r4 +1001f9ec: 4629 mov r1, r5 +1001f9ee: f7fe f9d7 bl 1001dda0 +1001f9f2: e71a b.n 1001f82a +1001f9f4: 4a3d ldr r2, [pc, #244] ; (1001faec ) +1001f9f6: 483e ldr r0, [pc, #248] ; (1001faf0 ) +1001f9f8: 7812 ldrb r2, [r2, #0] +1001f9fa: 1c59 adds r1, r3, #1 +1001f9fc: 2a01 cmp r2, #1 +1001f9fe: 54c5 strb r5, [r0, r3] +1001fa00: 6039 str r1, [r7, #0] +1001fa02: f47f af12 bne.w 1001f82a +1001fa06: 4620 mov r0, r4 +1001fa08: 4629 mov r1, r5 +1001fa0a: f7fe f9c9 bl 1001dda0 +1001fa0e: e70c b.n 1001f82a +1001fa10: f8df a0e8 ldr.w sl, [pc, #232] ; 1001fafc +1001fa14: f8da c000 ldr.w ip, [sl] +1001fa18: f1bc 0f00 cmp.w ip, #0 +1001fa1c: d11c bne.n 1001fa58 +1001fa1e: 2d2c cmp r5, #44 ; 0x2c +1001fa20: f47f af15 bne.w 1001f84e +1001fa24: 3a05 subs r2, #5 +1001fa26: 493f ldr r1, [pc, #252] ; (1001fb24 ) +1001fa28: a803 add r0, sp, #12 +1001fa2a: f8cd c00c str.w ip, [sp, #12] +1001fa2e: f8cd c010 str.w ip, [sp, #16] +1001fa32: f8ad c014 strh.w ip, [sp, #20] +1001fa36: f022 fb93 bl 10042160 +1001fa3a: 4b3b ldr r3, [pc, #236] ; (1001fb28 ) +1001fa3c: a803 add r0, sp, #12 +1001fa3e: 4798 blx r3 +1001fa40: f8d9 3000 ldr.w r3, [r9] +1001fa44: f8ca 0000 str.w r0, [sl] +1001fa48: 2b00 cmp r3, #0 +1001fa4a: f43f af00 beq.w 1001f84e +1001fa4e: e731 b.n 1001f8b4 +1001fa50: 4836 ldr r0, [pc, #216] ; (1001fb2c ) +1001fa52: f7ff fed5 bl 1001f800 +1001fa56: e6e8 b.n 1001f82a +1001fa58: 2d3a cmp r5, #58 ; 0x3a +1001fa5a: f47f aef8 bne.w 1001f84e +1001fa5e: 4924 ldr r1, [pc, #144] ; (1001faf0 ) +1001fa60: 4829 ldr r0, [pc, #164] ; (1001fb08 ) +1001fa62: 9301 str r3, [sp, #4] +1001fa64: f022 fba0 bl 100421a8 +1001fa68: 9b01 ldr r3, [sp, #4] +1001fa6a: 683a ldr r2, [r7, #0] +1001fa6c: 4619 mov r1, r3 +1001fa6e: 4820 ldr r0, [pc, #128] ; (1001faf0 ) +1001fa70: f022 fb7c bl 1004216c +1001fa74: f7fb ffb8 bl 1001b9e8 +1001fa78: f8da 2000 ldr.w r2, [sl] +1001fa7c: 683b ldr r3, [r7, #0] +1001fa7e: f8df b0a0 ldr.w fp, [pc, #160] ; 1001fb20 +1001fa82: 4413 add r3, r2 +1001fa84: 3301 adds r3, #1 +1001fa86: f8c9 3000 str.w r3, [r9] +1001fa8a: f8cb 0000 str.w r0, [fp] +1001fa8e: 2b00 cmp r3, #0 +1001fa90: f43f aedd beq.w 1001f84e +1001fa94: e70e b.n 1001f8b4 +1001fa96: 9301 str r3, [sp, #4] +1001fa98: f7fb ffa6 bl 1001b9e8 +1001fa9c: f8df b080 ldr.w fp, [pc, #128] ; 1001fb20 +1001faa0: f8db 2000 ldr.w r2, [fp] +1001faa4: 1a80 subs r0, r0, r2 +1001faa6: f7fd fa89 bl 1001cfbc +1001faaa: 2814 cmp r0, #20 +1001faac: f67f af0b bls.w 1001f8c6 +1001fab0: 481f ldr r0, [pc, #124] ; (1001fb30 ) +1001fab2: f7ff fea5 bl 1001f800 +1001fab6: 9b01 ldr r3, [sp, #4] +1001fab8: 683a ldr r2, [r7, #0] +1001faba: 4619 mov r1, r3 +1001fabc: 4812 ldr r0, [pc, #72] ; (1001fb08 ) +1001fabe: f022 fb55 bl 1004216c +1001fac2: 9b01 ldr r3, [sp, #4] +1001fac4: 4a0d ldr r2, [pc, #52] ; (1001fafc ) +1001fac6: f888 3000 strb.w r3, [r8] +1001faca: f8c9 3000 str.w r3, [r9] +1001face: 603b str r3, [r7, #0] +1001fad0: f8cb 3000 str.w r3, [fp] +1001fad4: 6013 str r3, [r2, #0] +1001fad6: e6a8 b.n 1001f82a +1001fad8: 4620 mov r0, r4 +1001fada: 4629 mov r1, r5 +1001fadc: f7fe f960 bl 1001dda0 +1001fae0: 6832 ldr r2, [r6, #0] +1001fae2: e701 b.n 1001f8e8 +1001fae4: 10052de0 .word 0x10052de0 +1001fae8: 10052de4 .word 0x10052de4 +1001faec: 1004d841 .word 0x1004d841 +1001faf0: 10051a3c .word 0x10051a3c +1001faf4: 100493fc .word 0x100493fc +1001faf8: 10052ddc .word 0x10052ddc +1001fafc: 10051a38 .word 0x10051a38 +1001fb00: 10050748 .word 0x10050748 +1001fb04: 10050074 .word 0x10050074 +1001fb08: 10050100 .word 0x10050100 +1001fb0c: 10050070 .word 0x10050070 +1001fb10: 10050080 .word 0x10050080 +1001fb14: 100493d0 .word 0x100493d0 +1001fb18: 10044b98 .word 0x10044b98 +1001fb1c: 10052de5 .word 0x10052de5 +1001fb20: 100526bc .word 0x100526bc +1001fb24: 10051a41 .word 0x10051a41 +1001fb28: 0000f769 .word 0x0000f769 +1001fb2c: 100493c8 .word 0x100493c8 +1001fb30: 100493b4 .word 0x100493b4 + +1001fb34 : +1001fb34: b538 push {r3, r4, r5, lr} +1001fb36: 460c mov r4, r1 +1001fb38: 4605 mov r5, r0 +1001fb3a: b139 cbz r1, 1001fb4c +1001fb3c: b130 cbz r0, 1001fb4c +1001fb3e: 4804 ldr r0, [pc, #16] ; (1001fb50 ) +1001fb40: f815 1b01 ldrb.w r1, [r5], #1 +1001fb44: f7fe f92c bl 1001dda0 +1001fb48: 3c01 subs r4, #1 +1001fb4a: d1f8 bne.n 1001fb3e +1001fb4c: bd38 pop {r3, r4, r5, pc} +1001fb4e: bf00 nop +1001fb50: 100526c0 .word 0x100526c0 + +1001fb54 : +1001fb54: b500 push {lr} +1001fb56: b083 sub sp, #12 +1001fb58: 4668 mov r0, sp +1001fb5a: f7ff fdcb bl 1001f6f4 +1001fb5e: 2200 movs r2, #0 +1001fb60: 481b ldr r0, [pc, #108] ; (1001fbd0 ) +1001fb62: 2104 movs r1, #4 +1001fb64: f7fd ffea bl 1001db3c +1001fb68: 4819 ldr r0, [pc, #100] ; (1001fbd0 ) +1001fb6a: 9900 ldr r1, [sp, #0] +1001fb6c: f7fe f868 bl 1001dc40 +1001fb70: 4817 ldr r0, [pc, #92] ; (1001fbd0 ) +1001fb72: f89d 1004 ldrb.w r1, [sp, #4] +1001fb76: f89d 2006 ldrb.w r2, [sp, #6] +1001fb7a: f89d 3005 ldrb.w r3, [sp, #5] +1001fb7e: f7fe f863 bl 1001dc48 +1001fb82: 2102 movs r1, #2 +1001fb84: 4812 ldr r0, [pc, #72] ; (1001fbd0 ) +1001fb86: f7fe f94b bl 1001de20 +1001fb8a: f89d 1007 ldrb.w r1, [sp, #7] +1001fb8e: b999 cbnz r1, 1001fbb8 +1001fb90: 480f ldr r0, [pc, #60] ; (1001fbd0 ) +1001fb92: 2202 movs r2, #2 +1001fb94: 2301 movs r3, #1 +1001fb96: f7fe f927 bl 1001dde8 +1001fb9a: 480d ldr r0, [pc, #52] ; (1001fbd0 ) +1001fb9c: 490d ldr r1, [pc, #52] ; (1001fbd4 ) +1001fb9e: 4602 mov r2, r0 +1001fba0: f7fe f87e bl 1001dca0 +1001fba4: 480a ldr r0, [pc, #40] ; (1001fbd0 ) +1001fba6: 2100 movs r1, #0 +1001fba8: 2201 movs r2, #1 +1001fbaa: f7fe f899 bl 1001dce0 +1001fbae: f7ff fded bl 1001f78c +1001fbb2: b003 add sp, #12 +1001fbb4: f85d fb04 ldr.w pc, [sp], #4 +1001fbb8: 2001 movs r0, #1 +1001fbba: 2102 movs r1, #2 +1001fbbc: f7fd ff44 bl 1001da48 +1001fbc0: 4803 ldr r0, [pc, #12] ; (1001fbd0 ) +1001fbc2: 2103 movs r1, #3 +1001fbc4: 2202 movs r2, #2 +1001fbc6: 2301 movs r3, #1 +1001fbc8: f7fe f90e bl 1001dde8 +1001fbcc: e7e5 b.n 1001fb9a +1001fbce: bf00 nop +1001fbd0: 100526c0 .word 0x100526c0 +1001fbd4: 1001f821 .word 0x1001f821 + +1001fbd8 : +1001fbd8: b508 push {r3, lr} +1001fbda: 4b1f ldr r3, [pc, #124] ; (1001fc58 ) +1001fbdc: 2200 movs r2, #0 +1001fbde: 601a str r2, [r3, #0] +1001fbe0: f7eb ff7c bl 1000badc +1001fbe4: f7ea f962 bl 10009eac +1001fbe8: 2014 movs r0, #20 +1001fbea: f7fd fa2f bl 1001d04c +1001fbee: f7ff ffb1 bl 1001fb54 +1001fbf2: f44f 61c8 mov.w r1, #1600 ; 0x640 +1001fbf6: 4a19 ldr r2, [pc, #100] ; (1001fc5c ) +1001fbf8: 4819 ldr r0, [pc, #100] ; (1001fc60 ) +1001fbfa: f022 fa15 bl 10042028 +1001fbfe: 4818 ldr r0, [pc, #96] ; (1001fc60 ) +1001fc00: f7ff fdfe bl 1001f800 +1001fc04: f7e9 fe60 bl 100098c8 +1001fc08: b1a0 cbz r0, 1001fc34 +1001fc0a: 4815 ldr r0, [pc, #84] ; (1001fc60 ) +1001fc0c: f44f 61c8 mov.w r1, #1600 ; 0x640 +1001fc10: 4a14 ldr r2, [pc, #80] ; (1001fc64 ) +1001fc12: f022 fa09 bl 10042028 +1001fc16: 4812 ldr r0, [pc, #72] ; (1001fc60 ) +1001fc18: f7ff fdf2 bl 1001f800 +1001fc1c: 4b12 ldr r3, [pc, #72] ; (1001fc68 ) +1001fc1e: 681b ldr r3, [r3, #0] +1001fc20: 05db lsls r3, r3, #23 +1001fc22: d502 bpl.n 1001fc2a +1001fc24: 4b11 ldr r3, [pc, #68] ; (1001fc6c ) +1001fc26: 781b ldrb r3, [r3, #0] +1001fc28: b973 cbnz r3, 1001fc48 +1001fc2a: 2000 movs r0, #0 +1001fc2c: e8bd 4008 ldmia.w sp!, {r3, lr} +1001fc30: f7fb bdd0 b.w 1001b7d4 +1001fc34: f44f 61c8 mov.w r1, #1600 ; 0x640 +1001fc38: 4a0d ldr r2, [pc, #52] ; (1001fc70 ) +1001fc3a: 4809 ldr r0, [pc, #36] ; (1001fc60 ) +1001fc3c: f022 f9f4 bl 10042028 +1001fc40: 4807 ldr r0, [pc, #28] ; (1001fc60 ) +1001fc42: f7ff fddd bl 1001f800 +1001fc46: e7e9 b.n 1001fc1c +1001fc48: 4809 ldr r0, [pc, #36] ; (1001fc70 ) +1001fc4a: f022 fa5d bl 10042108 +1001fc4e: e8bd 4008 ldmia.w sp!, {r3, lr} +1001fc52: 2000 movs r0, #0 +1001fc54: f7fb bdbe b.w 1001b7d4 +1001fc58: 1005533c .word 0x1005533c +1001fc5c: 1004941c .word 0x1004941c +1001fc60: 1005207c .word 0x1005207c +1001fc64: 10045f88 .word 0x10045f88 +1001fc68: 1004d7e8 .word 0x1004d7e8 +1001fc6c: 1004d7f8 .word 0x1004d7f8 +1001fc70: 100493c8 .word 0x100493c8 + +1001fc74 : +1001fc74: 4b01 ldr r3, [pc, #4] ; (1001fc7c ) +1001fc76: 4a02 ldr r2, [pc, #8] ; (1001fc80 ) +1001fc78: 601a str r2, [r3, #0] +1001fc7a: 4770 bx lr +1001fc7c: 1005533c .word 0x1005533c +1001fc80: 1001f591 .word 0x1001f591 + +1001fc84
: +1001fc84: b508 push {r3, lr} +1001fc86: f7ec fb57 bl 1000c338 +1001fc8a: f7ff fc7b bl 1001f584 +1001fc8e: f7f0 fa4d bl 1001012c +1001fc92: f7ff fc79 bl 1001f588 +1001fc96: e8bd 4008 ldmia.w sp!, {r3, lr} +1001fc9a: f7fb be65 b.w 1001b968 +1001fc9e: bf00 nop + +1001fca0 : +1001fca0: b508 push {r3, lr} +1001fca2: 4b08 ldr r3, [pc, #32] ; (1001fcc4 ) +1001fca4: 681a ldr r2, [r3, #0] +1001fca6: 4b08 ldr r3, [pc, #32] ; (1001fcc8 ) +1001fca8: 4013 ands r3, r2 +1001fcaa: b11b cbz r3, 1001fcb4 +1001fcac: 4807 ldr r0, [pc, #28] ; (1001fccc ) +1001fcae: 4908 ldr r1, [pc, #32] ; (1001fcd0 ) +1001fcb0: 4b08 ldr r3, [pc, #32] ; (1001fcd4 ) +1001fcb2: 4798 blx r3 +1001fcb4: 4b08 ldr r3, [pc, #32] ; (1001fcd8 ) +1001fcb6: 681b ldr r3, [r3, #0] +1001fcb8: 2b00 cmp r3, #0 +1001fcba: da01 bge.n 1001fcc0 +1001fcbc: 4b07 ldr r3, [pc, #28] ; (1001fcdc ) +1001fcbe: 4798 blx r3 +1001fcc0: bd08 pop {r3, pc} +1001fcc2: bf00 nop +1001fcc4: 10000314 .word 0x10000314 +1001fcc8: 40002000 .word 0x40002000 +1001fccc: 10049430 .word 0x10049430 +1001fcd0: 100496fa .word 0x100496fa +1001fcd4: 0000f39d .word 0x0000f39d +1001fcd8: 40002800 .word 0x40002800 +1001fcdc: 00003485 .word 0x00003485 + +1001fce0 : +1001fce0: 4b0b ldr r3, [pc, #44] ; (1001fd10 ) +1001fce2: 681a ldr r2, [r3, #0] +1001fce4: f022 0201 bic.w r2, r2, #1 +1001fce8: 601a str r2, [r3, #0] +1001fcea: 4a0a ldr r2, [pc, #40] ; (1001fd14 ) +1001fcec: 6813 ldr r3, [r2, #0] +1001fcee: 4b0a ldr r3, [pc, #40] ; (1001fd18 ) +1001fcf0: 6819 ldr r1, [r3, #0] +1001fcf2: f021 0101 bic.w r1, r1, #1 +1001fcf6: 6019 str r1, [r3, #0] +1001fcf8: 6812 ldr r2, [r2, #0] +1001fcfa: 681a ldr r2, [r3, #0] +1001fcfc: f022 0202 bic.w r2, r2, #2 +1001fd00: 601a str r2, [r3, #0] +1001fd02: f8d3 208c ldr.w r2, [r3, #140] ; 0x8c +1001fd06: f022 0201 bic.w r2, r2, #1 +1001fd0a: f8c3 208c str.w r2, [r3, #140] ; 0x8c +1001fd0e: 4770 bx lr +1001fd10: 40000240 .word 0x40000240 +1001fd14: 40050000 .word 0x40050000 +1001fd18: 40000214 .word 0x40000214 + +1001fd1c : +1001fd1c: b508 push {r3, lr} +1001fd1e: 4802 ldr r0, [pc, #8] ; (1001fd28 ) +1001fd20: f7fe f9fc bl 1001e11c +1001fd24: 2000 movs r0, #0 +1001fd26: bd08 pop {r3, pc} +1001fd28: 10000318 .word 0x10000318 + +1001fd2c : +1001fd2c: b538 push {r3, r4, r5, lr} +1001fd2e: f1a1 05a0 sub.w r5, r1, #160 ; 0xa0 +1001fd32: 2d33 cmp r5, #51 ; 0x33 +1001fd34: d803 bhi.n 1001fd3e +1001fd36: 23ff movs r3, #255 ; 0xff +1001fd38: 7013 strb r3, [r2, #0] +1001fd3a: 2001 movs r0, #1 +1001fd3c: bd38 pop {r3, r4, r5, pc} +1001fd3e: 4c01 ldr r4, [pc, #4] ; (1001fd44 ) +1001fd40: 47a0 blx r4 +1001fd42: bd38 pop {r3, r4, r5, pc} +1001fd44: 000065f9 .word 0x000065f9 + +1001fd48 : +1001fd48: b510 push {r4, lr} +1001fd4a: f1a1 047f sub.w r4, r1, #127 ; 0x7f +1001fd4e: 2c54 cmp r4, #84 ; 0x54 +1001fd50: d902 bls.n 1001fd58 +1001fd52: 4c02 ldr r4, [pc, #8] ; (1001fd5c ) +1001fd54: 47a0 blx r4 +1001fd56: bd10 pop {r4, pc} +1001fd58: 2001 movs r0, #1 +1001fd5a: bd10 pop {r4, pc} +1001fd5c: 00006699 .word 0x00006699 + +1001fd60 : +1001fd60: b513 push {r0, r1, r4, lr} +1001fd62: 4b13 ldr r3, [pc, #76] ; (1001fdb0 ) +1001fd64: 4604 mov r4, r0 +1001fd66: 21f8 movs r1, #248 ; 0xf8 +1001fd68: 6818 ldr r0, [r3, #0] +1001fd6a: f10d 0207 add.w r2, sp, #7 +1001fd6e: 2307 movs r3, #7 +1001fd70: f7ff ffdc bl 1001fd2c +1001fd74: f89d 3007 ldrb.w r3, [sp, #7] +1001fd78: 3308 adds r3, #8 +1001fd7a: b2db uxtb r3, r3 +1001fd7c: 2b07 cmp r3, #7 +1001fd7e: d810 bhi.n 1001fda2 +1001fd80: 2201 movs r2, #1 +1001fd82: fa02 f303 lsl.w r3, r2, r3 +1001fd86: f013 01ef ands.w r1, r3, #239 ; 0xef +1001fd8a: d10c bne.n 1001fda6 +1001fd8c: f013 0010 ands.w r0, r3, #16 +1001fd90: d00c beq.n 1001fdac +1001fd92: 1e63 subs r3, r4, #1 +1001fd94: 2b02 cmp r3, #2 +1001fd96: d908 bls.n 1001fdaa +1001fd98: f1b4 0025 subs.w r0, r4, #37 ; 0x25 +1001fd9c: bf18 it ne +1001fd9e: 2001 movne r0, #1 +1001fda0: e004 b.n 1001fdac +1001fda2: 2000 movs r0, #0 +1001fda4: e002 b.n 1001fdac +1001fda6: 4610 mov r0, r2 +1001fda8: e000 b.n 1001fdac +1001fdaa: 4608 mov r0, r1 +1001fdac: b002 add sp, #8 +1001fdae: bd10 pop {r4, pc} +1001fdb0: 400000e8 .word 0x400000e8 + +1001fdb4 : +1001fdb4: b538 push {r3, r4, r5, lr} +1001fdb6: 4604 mov r4, r0 +1001fdb8: 460d mov r5, r1 +1001fdba: f7ff ffd1 bl 1001fd60 +1001fdbe: b1b8 cbz r0, 1001fdf0 +1001fdc0: f3c4 1203 ubfx r2, r4, #4, #4 +1001fdc4: 2001 movs r0, #1 +1001fdc6: f004 040f and.w r4, r4, #15 +1001fdca: fa00 f404 lsl.w r4, r0, r4 +1001fdce: 4b09 ldr r3, [pc, #36] ; (1001fdf4 ) +1001fdd0: b135 cbz r5, 1001fde0 +1001fdd2: f833 1012 ldrh.w r1, [r3, r2, lsl #1] +1001fdd6: b2a4 uxth r4, r4 +1001fdd8: 4221 tst r1, r4 +1001fdda: d108 bne.n 1001fdee +1001fddc: 430c orrs r4, r1 +1001fdde: e003 b.n 1001fde8 +1001fde0: f833 1012 ldrh.w r1, [r3, r2, lsl #1] +1001fde4: ea21 0404 bic.w r4, r1, r4 +1001fde8: f823 4012 strh.w r4, [r3, r2, lsl #1] +1001fdec: bd38 pop {r3, r4, r5, pc} +1001fdee: 2000 movs r0, #0 +1001fdf0: bd38 pop {r3, r4, r5, pc} +1001fdf2: bf00 nop +1001fdf4: 10000334 .word 0x10000334 + +1001fdf8 : +1001fdf8: 280f cmp r0, #15 +1001fdfa: d012 beq.n 1001fe22 +1001fdfc: d805 bhi.n 1001fe0a +1001fdfe: 2802 cmp r0, #2 +1001fe00: d013 beq.n 1001fe2a +1001fe02: 2808 cmp r0, #8 +1001fe04: d00d beq.n 1001fe22 +1001fe06: b9a8 cbnz r0, 1001fe34 +1001fe08: e00f b.n 1001fe2a +1001fe0a: 2819 cmp r0, #25 +1001fe0c: d00d beq.n 1001fe2a +1001fe0e: d802 bhi.n 1001fe16 +1001fe10: 2813 cmp r0, #19 +1001fe12: d00a beq.n 1001fe2a +1001fe14: e00e b.n 1001fe34 +1001fe16: 28d8 cmp r0, #216 ; 0xd8 +1001fe18: d001 beq.n 1001fe1e +1001fe1a: 28dc cmp r0, #220 ; 0xdc +1001fe1c: d10a bne.n 1001fe34 +1001fe1e: 2001 movs r0, #1 +1001fe20: 4770 bx lr +1001fe22: 1e4b subs r3, r1, #1 +1001fe24: 4258 negs r0, r3 +1001fe26: 4158 adcs r0, r3 +1001fe28: 4770 bx lr +1001fe2a: f1d1 0001 rsbs r0, r1, #1 +1001fe2e: bf38 it cc +1001fe30: 2000 movcc r0, #0 +1001fe32: 4770 bx lr +1001fe34: 2000 movs r0, #0 +1001fe36: 4770 bx lr + +1001fe38 : +1001fe38: b537 push {r0, r1, r2, r4, r5, lr} +1001fe3a: 4b12 ldr r3, [pc, #72] ; (1001fe84 ) +1001fe3c: 4605 mov r5, r0 +1001fe3e: 460c mov r4, r1 +1001fe40: 6818 ldr r0, [r3, #0] +1001fe42: 21f8 movs r1, #248 ; 0xf8 +1001fe44: 2307 movs r3, #7 +1001fe46: f10d 0207 add.w r2, sp, #7 +1001fe4a: f7ff ff6f bl 1001fd2c +1001fe4e: f89d 3007 ldrb.w r3, [sp, #7] +1001fe52: 3308 adds r3, #8 +1001fe54: b2db uxtb r3, r3 +1001fe56: 2b07 cmp r3, #7 +1001fe58: d80f bhi.n 1001fe7a +1001fe5a: 2201 movs r2, #1 +1001fe5c: fa02 f303 lsl.w r3, r2, r3 +1001fe60: f013 0fef tst.w r3, #239 ; 0xef +1001fe64: d10b bne.n 1001fe7e +1001fe66: f013 0010 ands.w r0, r3, #16 +1001fe6a: d009 beq.n 1001fe80 +1001fe6c: 4628 mov r0, r5 +1001fe6e: 4621 mov r1, r4 +1001fe70: b003 add sp, #12 +1001fe72: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1001fe76: f7ff bfbf b.w 1001fdf8 +1001fe7a: 2000 movs r0, #0 +1001fe7c: e000 b.n 1001fe80 +1001fe7e: 4610 mov r0, r2 +1001fe80: b003 add sp, #12 +1001fe82: bd30 pop {r4, r5, pc} +1001fe84: 400000e8 .word 0x400000e8 + +1001fe88 : +1001fe88: 4b06 ldr r3, [pc, #24] ; (1001fea4 ) +1001fe8a: f8d3 3280 ldr.w r3, [r3, #640] ; 0x280 + +1001fe8e : +1001fe8e: 4618 mov r0, r3 +1001fe90: c8f0 ldmia r0!, {r4, r5, r6, r7} +1001fe92: e8b0 0f00 ldmia.w r0!, {r8, r9, sl, fp} +1001fe96: f380 8809 msr PSP, r0 +1001fe9a: f04e 0e0d orr.w lr, lr, #13 +1001fe9e: 4770 bx lr +1001fea0: 4770 bx lr +1001fea2: bf00 nop +1001fea4: 10052de8 .word 0x10052de8 + +1001fea8 : +1001fea8: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +1001feaa: ac04 add r4, sp, #16 +1001feac: e904 000f stmdb r4, {r0, r1, r2, r3} +1001feb0: 4e21 ldr r6, [pc, #132] ; (1001ff38 ) +1001feb2: 4d22 ldr r5, [pc, #136] ; (1001ff3c ) +1001feb4: 2300 movs r3, #0 +1001feb6: 9c02 ldr r4, [sp, #8] +1001feb8: 6033 str r3, [r6, #0] +1001feba: 2380 movs r3, #128 ; 0x80 +1001febc: 602b str r3, [r5, #0] +1001febe: 4b20 ldr r3, [pc, #128] ; (1001ff40 ) +1001fec0: 4798 blx r3 +1001fec2: 9900 ldr r1, [sp, #0] +1001fec4: 0880 lsrs r0, r0, #2 +1001fec6: 0109 lsls r1, r1, #4 +1001fec8: 220a movs r2, #10 +1001feca: fbb0 f3f1 udiv r3, r0, r1 +1001fece: 4350 muls r0, r2 +1001fed0: fbb0 f1f1 udiv r1, r0, r1 +1001fed4: fb02 1213 mls r2, r2, r3, r1 +1001fed8: 2a04 cmp r2, #4 +1001feda: bf88 it hi +1001fedc: 3301 addhi r3, #1 +1001fede: 4a19 ldr r2, [pc, #100] ; (1001ff44 ) +1001fee0: b2d9 uxtb r1, r3 +1001fee2: f3c3 2307 ubfx r3, r3, #8, #8 +1001fee6: 6011 str r1, [r2, #0] +1001fee8: 6033 str r3, [r6, #0] +1001feea: 2300 movs r3, #0 +1001feec: 602b str r3, [r5, #0] +1001feee: f89d 200d ldrb.w r2, [sp, #13] +1001fef2: f89d 300c ldrb.w r3, [sp, #12] +1001fef6: 4313 orrs r3, r2 +1001fef8: f89d 200e ldrb.w r2, [sp, #14] +1001fefc: 4313 orrs r3, r2 +1001fefe: 602b str r3, [r5, #0] +1001ff00: 9b01 ldr r3, [sp, #4] +1001ff02: 4a11 ldr r2, [pc, #68] ; (1001ff48 ) +1001ff04: 6013 str r3, [r2, #0] +1001ff06: 6034 str r4, [r6, #0] +1001ff08: b194 cbz r4, 1001ff30 +1001ff0a: 4b10 ldr r3, [pc, #64] ; (1001ff4c ) +1001ff0c: f04f 7280 mov.w r2, #16777216 ; 0x1000000 +1001ff10: 490f ldr r1, [pc, #60] ; (1001ff50 ) +1001ff12: 601a str r2, [r3, #0] +1001ff14: 68cb ldr r3, [r1, #12] +1001ff16: f64f 02ff movw r2, #63743 ; 0xf8ff +1001ff1a: 401a ands r2, r3 +1001ff1c: 4b0d ldr r3, [pc, #52] ; (1001ff54 ) +1001ff1e: 4313 orrs r3, r2 +1001ff20: 60cb str r3, [r1, #12] +1001ff22: 4b0d ldr r3, [pc, #52] ; (1001ff58 ) +1001ff24: 22e0 movs r2, #224 ; 0xe0 +1001ff26: f883 2313 strb.w r2, [r3, #787] ; 0x313 +1001ff2a: f44f 2200 mov.w r2, #524288 ; 0x80000 +1001ff2e: 601a str r2, [r3, #0] +1001ff30: 2000 movs r0, #0 +1001ff32: b004 add sp, #16 +1001ff34: bd70 pop {r4, r5, r6, pc} +1001ff36: bf00 nop +1001ff38: 40003004 .word 0x40003004 +1001ff3c: 4000300c .word 0x4000300c +1001ff40: 00000355 .word 0x00000355 +1001ff44: 40003000 .word 0x40003000 +1001ff48: 40003008 .word 0x40003008 +1001ff4c: 4000280c .word 0x4000280c +1001ff50: e000ed00 .word 0xe000ed00 +1001ff54: 05fa0300 .word 0x05fa0300 +1001ff58: e000e100 .word 0xe000e100 + +1001ff5c : +1001ff5c: 4b1c ldr r3, [pc, #112] ; (1001ffd0 ) +1001ff5e: b510 push {r4, lr} +1001ff60: 681b ldr r3, [r3, #0] +1001ff62: 4b1c ldr r3, [pc, #112] ; (1001ffd4 ) +1001ff64: b088 sub sp, #32 +1001ff66: 681a ldr r2, [r3, #0] +1001ff68: 2100 movs r1, #0 +1001ff6a: f422 5280 bic.w r2, r2, #4096 ; 0x1000 +1001ff6e: 601a str r2, [r3, #0] +1001ff70: 681a ldr r2, [r3, #0] +1001ff72: 20dc movs r0, #220 ; 0xdc +1001ff74: f442 5280 orr.w r2, r2, #4096 ; 0x1000 +1001ff78: 601a str r2, [r3, #0] +1001ff7a: 6a1a ldr r2, [r3, #32] +1001ff7c: ac04 add r4, sp, #16 +1001ff7e: f442 5280 orr.w r2, r2, #4096 ; 0x1000 +1001ff82: 621a str r2, [r3, #32] +1001ff84: 2201 movs r2, #1 +1001ff86: 4b14 ldr r3, [pc, #80] ; (1001ffd8 ) +1001ff88: 4798 blx r3 +1001ff8a: 2258 movs r2, #88 ; 0x58 +1001ff8c: 9201 str r2, [sp, #4] +1001ff8e: 4a13 ldr r2, [pc, #76] ; (1001ffdc ) +1001ff90: 2300 movs r3, #0 +1001ff92: 9200 str r2, [sp, #0] +1001ff94: f44f 4216 mov.w r2, #38400 ; 0x9600 +1001ff98: 9204 str r2, [sp, #16] +1001ff9a: 2203 movs r2, #3 +1001ff9c: f88d 201e strb.w r2, [sp, #30] +1001ffa0: 22c1 movs r2, #193 ; 0xc1 +1001ffa2: 9205 str r2, [sp, #20] +1001ffa4: 9306 str r3, [sp, #24] +1001ffa6: f88d 301c strb.w r3, [sp, #28] +1001ffaa: f88d 301d strb.w r3, [sp, #29] +1001ffae: 9302 str r3, [sp, #8] +1001ffb0: 9303 str r3, [sp, #12] +1001ffb2: e894 000f ldmia.w r4, {r0, r1, r2, r3} +1001ffb6: f7ff ff77 bl 1001fea8 +1001ffba: 4668 mov r0, sp +1001ffbc: 4b08 ldr r3, [pc, #32] ; (1001ffe0 ) +1001ffbe: 4798 blx r3 +1001ffc0: 2305 movs r3, #5 +1001ffc2: 9306 str r3, [sp, #24] +1001ffc4: e894 000f ldmia.w r4, {r0, r1, r2, r3} +1001ffc8: f7ff ff6e bl 1001fea8 +1001ffcc: b008 add sp, #32 +1001ffce: bd10 pop {r4, pc} +1001ffd0: 40003000 .word 0x40003000 +1001ffd4: 40000210 .word 0x40000210 +1001ffd8: 00002b39 .word 0x00002b39 +1001ffdc: 10006119 .word 0x10006119 +1001ffe0: 00004029 .word 0x00004029 + +1001ffe4 : +1001ffe4: b508 push {r3, lr} +1001ffe6: 4b0c ldr r3, [pc, #48] ; (10020018 ) +1001ffe8: 200a movs r0, #10 +1001ffea: 681a ldr r2, [r3, #0] +1001ffec: f442 6280 orr.w r2, r2, #1024 ; 0x400 +1001fff0: 601a str r2, [r3, #0] +1001fff2: f8d3 2090 ldr.w r2, [r3, #144] ; 0x90 +1001fff6: f042 0210 orr.w r2, r2, #16 +1001fffa: f8c3 2090 str.w r2, [r3, #144] ; 0x90 +1001fffe: 4b07 ldr r3, [pc, #28] ; (1002001c ) +10020000: 4798 blx r3 +10020002: 4b07 ldr r3, [pc, #28] ; (10020020 ) +10020004: 2203 movs r2, #3 +10020006: 601a str r2, [r3, #0] +10020008: f853 2c24 ldr.w r2, [r3, #-36] +1002000c: f022 5280 bic.w r2, r2, #268435456 ; 0x10000000 +10020010: f843 2c24 str.w r2, [r3, #-36] +10020014: bd08 pop {r3, pc} +10020016: bf00 nop +10020018: 40000230 .word 0x40000230 +1002001c: 00000899 .word 0x00000899 +10020020: 40005034 .word 0x40005034 + +10020024 : +10020024: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10020028: 4b2e ldr r3, [pc, #184] ; (100200e4 ) +1002002a: b087 sub sp, #28 +1002002c: aa02 add r2, sp, #8 +1002002e: f103 0508 add.w r5, r3, #8 +10020032: 4690 mov r8, r2 +10020034: 6818 ldr r0, [r3, #0] +10020036: 6859 ldr r1, [r3, #4] +10020038: 4614 mov r4, r2 +1002003a: c403 stmia r4!, {r0, r1} +1002003c: 3308 adds r3, #8 +1002003e: 42ab cmp r3, r5 +10020040: 4622 mov r2, r4 +10020042: d1f7 bne.n 10020034 +10020044: 6818 ldr r0, [r3, #0] +10020046: 889b ldrh r3, [r3, #4] +10020048: 6020 str r0, [r4, #0] +1002004a: 80a3 strh r3, [r4, #4] +1002004c: 4b26 ldr r3, [pc, #152] ; (100200e8 ) +1002004e: 681a ldr r2, [r3, #0] +10020050: f042 5280 orr.w r2, r2, #268435456 ; 0x10000000 +10020054: 601a str r2, [r3, #0] +10020056: 4b25 ldr r3, [pc, #148] ; (100200ec ) +10020058: 681a ldr r2, [r3, #0] +1002005a: f422 6280 bic.w r2, r2, #1024 ; 0x400 +1002005e: 601a str r2, [r3, #0] +10020060: 4b23 ldr r3, [pc, #140] ; (100200f0 ) +10020062: 681a ldr r2, [r3, #0] +10020064: b90a cbnz r2, 1002006a +10020066: 4a23 ldr r2, [pc, #140] ; (100200f4 ) +10020068: 601a str r2, [r3, #0] +1002006a: 2303 movs r3, #3 +1002006c: 9300 str r3, [sp, #0] +1002006e: 2400 movs r4, #0 +10020070: f818 5004 ldrb.w r5, [r8, r4] +10020074: 4b20 ldr r3, [pc, #128] ; (100200f8 ) +10020076: 2dff cmp r5, #255 ; 0xff +10020078: f8df 908c ldr.w r9, [pc, #140] ; 10020108 +1002007c: 4f1f ldr r7, [pc, #124] ; (100200fc ) +1002007e: 4e20 ldr r6, [pc, #128] ; (10020100 ) +10020080: d018 beq.n 100200b4 +10020082: 4628 mov r0, r5 +10020084: 4798 blx r3 +10020086: 9001 str r0, [sp, #4] +10020088: 4668 mov r0, sp +1002008a: 47c8 blx r9 +1002008c: eb08 0304 add.w r3, r8, r4 +10020090: f893 9001 ldrb.w r9, [r3, #1] +10020094: 4628 mov r0, r5 +10020096: f1b9 0f00 cmp.w r9, #0 +1002009a: d104 bne.n 100200a6 +1002009c: 2101 movs r1, #1 +1002009e: 47b8 blx r7 +100200a0: 4668 mov r0, sp +100200a2: 4649 mov r1, r9 +100200a4: e003 b.n 100200ae +100200a6: 2102 movs r1, #2 +100200a8: 47b8 blx r7 +100200aa: 4668 mov r0, sp +100200ac: 2101 movs r1, #1 +100200ae: 47b0 blx r6 +100200b0: 3402 adds r4, #2 +100200b2: e7dd b.n 10020070 +100200b4: 4a13 ldr r2, [pc, #76] ; (10020104 ) +100200b6: 2401 movs r4, #1 +100200b8: 6811 ldr r1, [r2, #0] +100200ba: 2091 movs r0, #145 ; 0x91 +100200bc: f021 0110 bic.w r1, r1, #16 +100200c0: 6011 str r1, [r2, #0] +100200c2: f502 429a add.w r2, r2, #19712 ; 0x4d00 +100200c6: 3274 adds r2, #116 ; 0x74 +100200c8: 6014 str r4, [r2, #0] +100200ca: 4798 blx r3 +100200cc: 9001 str r0, [sp, #4] +100200ce: 4668 mov r0, sp +100200d0: 47c8 blx r9 +100200d2: 2091 movs r0, #145 ; 0x91 +100200d4: 2102 movs r1, #2 +100200d6: 47b8 blx r7 +100200d8: 4668 mov r0, sp +100200da: 4621 mov r1, r4 +100200dc: 47b0 blx r6 +100200de: b007 add sp, #28 +100200e0: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100200e4: 1004971e .word 0x1004971e +100200e8: 40005010 .word 0x40005010 +100200ec: 40000230 .word 0x40000230 +100200f0: 10000354 .word 0x10000354 +100200f4: 100517f0 .word 0x100517f0 +100200f8: 0000e1c1 .word 0x0000e1c1 +100200fc: 0000d39d .word 0x0000d39d +10020100: 0000dc91 .word 0x0000dc91 +10020104: 400002c0 .word 0x400002c0 +10020108: 0000d805 .word 0x0000d805 + +1002010c : +1002010c: b51f push {r0, r1, r2, r3, r4, lr} +1002010e: 4b09 ldr r3, [pc, #36] ; (10020134 ) +10020110: 2400 movs r4, #0 +10020112: 9302 str r3, [sp, #8] +10020114: 4b08 ldr r3, [pc, #32] ; (10020138 ) +10020116: 4668 mov r0, sp +10020118: 9300 str r3, [sp, #0] +1002011a: 4b08 ldr r3, [pc, #32] ; (1002013c ) +1002011c: 9401 str r4, [sp, #4] +1002011e: 9403 str r4, [sp, #12] +10020120: 4798 blx r3 +10020122: 4668 mov r0, sp +10020124: 4b06 ldr r3, [pc, #24] ; (10020140 ) +10020126: 4798 blx r3 +10020128: 4b06 ldr r3, [pc, #24] ; (10020144 ) +1002012a: f8c3 4284 str.w r4, [r3, #644] ; 0x284 +1002012e: b004 add sp, #16 +10020130: bd10 pop {r4, pc} +10020132: bf00 nop +10020134: 10052de6 .word 0x10052de6 +10020138: 10020219 .word 0x10020219 +1002013c: 00004029 .word 0x00004029 +10020140: 000040f1 .word 0x000040f1 +10020144: 10052de8 .word 0x10052de8 + +10020148 : +10020148: f242 03a3 movw r3, #8355 ; 0x20a3 +1002014c: 4298 cmp r0, r3 +1002014e: bf38 it cc +10020150: 4603 movcc r3, r0 +10020152: 207d movs r0, #125 ; 0x7d +10020154: 4343 muls r3, r0 +10020156: b510 push {r4, lr} +10020158: 091b lsrs r3, r3, #4 +1002015a: 2018 movs r0, #24 +1002015c: f023 04ff bic.w r4, r3, #255 ; 0xff +10020160: b144 cbz r4, 10020174 +10020162: 680c ldr r4, [r1, #0] +10020164: 3801 subs r0, #1 +10020166: 3401 adds r4, #1 +10020168: f010 00ff ands.w r0, r0, #255 ; 0xff +1002016c: 600c str r4, [r1, #0] +1002016e: ea4f 0353 mov.w r3, r3, lsr #1 +10020172: d1f3 bne.n 1002015c +10020174: 6808 ldr r0, [r1, #0] +10020176: 0200 lsls r0, r0, #8 +10020178: 6008 str r0, [r1, #0] +1002017a: 6013 str r3, [r2, #0] +1002017c: bd10 pop {r4, pc} + ... + +10020180 : +10020180: 4b11 ldr r3, [pc, #68] ; (100201c8 ) +10020182: 4a12 ldr r2, [pc, #72] ; (100201cc ) +10020184: 681b ldr r3, [r3, #0] +10020186: 2800 cmp r0, #0 +10020188: bf14 ite ne +1002018a: f44f 0101 movne.w r1, #8454144 ; 0x810000 +1002018e: f44f 0100 moveq.w r1, #8388608 ; 0x800000 +10020192: b510 push {r4, lr} +10020194: f3c3 1302 ubfx r3, r3, #4, #3 +10020198: 6011 str r1, [r2, #0] +1002019a: 6811 ldr r1, [r2, #0] +1002019c: 0209 lsls r1, r1, #8 +1002019e: d4fc bmi.n 1002019a +100201a0: 4a0a ldr r2, [pc, #40] ; (100201cc ) +100201a2: 6814 ldr r4, [r2, #0] +100201a4: f3c4 040d ubfx r4, r4, #0, #14 +100201a8: 3401 adds r4, #1 +100201aa: b928 cbnz r0, 100201b8 +100201ac: f640 0255 movw r2, #2133 ; 0x855 +100201b0: fbb2 f4f4 udiv r4, r2, r4 +100201b4: 40dc lsrs r4, r3 +100201b6: 3c01 subs r4, #1 +100201b8: 2b05 cmp r3, #5 +100201ba: d102 bne.n 100201c2 +100201bc: 4804 ldr r0, [pc, #16] ; (100201d0 ) +100201be: 4b05 ldr r3, [pc, #20] ; (100201d4 ) +100201c0: 4798 blx r3 +100201c2: 4620 mov r0, r4 +100201c4: bd10 pop {r4, pc} +100201c6: bf00 nop +100201c8: 40000014 .word 0x40000014 +100201cc: 400028a0 .word 0x400028a0 +100201d0: 1004972c .word 0x1004972c +100201d4: 0000f39d .word 0x0000f39d + +100201d8 : +100201d8: 4b05 ldr r3, [pc, #20] ; (100201f0 ) +100201da: 4906 ldr r1, [pc, #24] ; (100201f4 ) +100201dc: 681a ldr r2, [r3, #0] +100201de: 6809 ldr r1, [r1, #0] +100201e0: f022 020f bic.w r2, r2, #15 +100201e4: f3c1 1102 ubfx r1, r1, #4, #3 +100201e8: 430a orrs r2, r1 +100201ea: 601a str r2, [r3, #0] +100201ec: 4770 bx lr +100201ee: bf00 nop +100201f0: 400000f0 .word 0x400000f0 +100201f4: 40000014 .word 0x40000014 + +100201f8 : +100201f8: 4b06 ldr r3, [pc, #24] ; (10020214 ) +100201fa: 6819 ldr r1, [r3, #0] +100201fc: f853 2cdc ldr.w r2, [r3, #-220] +10020200: f001 010f and.w r1, r1, #15 +10020204: f022 0270 bic.w r2, r2, #112 ; 0x70 +10020208: ea42 1201 orr.w r2, r2, r1, lsl #4 +1002020c: f843 2cdc str.w r2, [r3, #-220] +10020210: 4770 bx lr +10020212: bf00 nop +10020214: 400000f0 .word 0x400000f0 + +10020218 : +10020218: b510 push {r4, lr} +1002021a: f7ff ffed bl 100201f8 +1002021e: 4b0c ldr r3, [pc, #48] ; (10020250 ) +10020220: 2064 movs r0, #100 ; 0x64 +10020222: 4798 blx r3 +10020224: 4b0b ldr r3, [pc, #44] ; (10020254 ) +10020226: 681a ldr r2, [r3, #0] +10020228: f042 4280 orr.w r2, r2, #1073741824 ; 0x40000000 +1002022c: 601a str r2, [r3, #0] +1002022e: 4b0a ldr r3, [pc, #40] ; (10020258 ) +10020230: 7d9a ldrb r2, [r3, #22] +10020232: 461c mov r4, r3 +10020234: b10a cbz r2, 1002023a +10020236: f7ff fed5 bl 1001ffe4 +1002023a: 4a08 ldr r2, [pc, #32] ; (1002025c ) +1002023c: 2300 movs r3, #0 +1002023e: 6013 str r3, [r2, #0] +10020240: 6713 str r3, [r2, #112] ; 0x70 +10020242: 4b07 ldr r3, [pc, #28] ; (10020260 ) +10020244: 681a ldr r2, [r3, #0] +10020246: 601a str r2, [r3, #0] +10020248: 2301 movs r3, #1 +1002024a: f8c4 3284 str.w r3, [r4, #644] ; 0x284 +1002024e: bd10 pop {r4, pc} +10020250: 00000899 .word 0x00000899 +10020254: 40000008 .word 0x40000008 +10020258: 10052de8 .word 0x10052de8 +1002025c: 40000090 .word 0x40000090 +10020260: 40000108 .word 0x40000108 + +10020264 : +10020264: b508 push {r3, lr} +10020266: 4b42 ldr r3, [pc, #264] ; (10020370 ) +10020268: f240 72ff movw r2, #2047 ; 0x7ff +1002026c: 601a str r2, [r3, #0] +1002026e: 4a41 ldr r2, [pc, #260] ; (10020374 ) +10020270: 619a str r2, [r3, #24] +10020272: f7ff ffc1 bl 100201f8 +10020276: 4840 ldr r0, [pc, #256] ; (10020378 ) +10020278: 4b40 ldr r3, [pc, #256] ; (1002037c ) +1002027a: 4798 blx r3 +1002027c: 4a40 ldr r2, [pc, #256] ; (10020380 ) +1002027e: 4b41 ldr r3, [pc, #260] ; (10020384 ) +10020280: 601a str r2, [r3, #0] +10020282: f7ff fe6b bl 1001ff5c +10020286: 4840 ldr r0, [pc, #256] ; (10020388 ) +10020288: 4940 ldr r1, [pc, #256] ; (1002038c ) +1002028a: 4a41 ldr r2, [pc, #260] ; (10020390 ) +1002028c: 4b41 ldr r3, [pc, #260] ; (10020394 ) +1002028e: 4798 blx r3 +10020290: 4b41 ldr r3, [pc, #260] ; (10020398 ) +10020292: f8d3 225c ldr.w r2, [r3, #604] ; 0x25c +10020296: f8d3 1250 ldr.w r1, [r3, #592] ; 0x250 +1002029a: f042 7280 orr.w r2, r2, #16777216 ; 0x1000000 +1002029e: f8c3 225c str.w r2, [r3, #604] ; 0x25c +100202a2: f841 2c04 str.w r2, [r1, #-4] +100202a6: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +100202aa: f8d3 1258 ldr.w r1, [r3, #600] ; 0x258 +100202ae: f842 1c08 str.w r1, [r2, #-8] +100202b2: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +100202b6: f8d3 1254 ldr.w r1, [r3, #596] ; 0x254 +100202ba: f842 1c0c str.w r1, [r2, #-12] +100202be: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +100202c2: f8d3 124c ldr.w r1, [r3, #588] ; 0x24c +100202c6: f842 1c10 str.w r1, [r2, #-16] +100202ca: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +100202ce: f8d3 1228 ldr.w r1, [r3, #552] ; 0x228 +100202d2: f842 1c14 str.w r1, [r2, #-20] +100202d6: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +100202da: f8d3 1224 ldr.w r1, [r3, #548] ; 0x224 +100202de: f842 1c18 str.w r1, [r2, #-24] +100202e2: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +100202e6: f8d3 1220 ldr.w r1, [r3, #544] ; 0x220 +100202ea: f842 1c1c str.w r1, [r2, #-28] +100202ee: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +100202f2: f8d3 121c ldr.w r1, [r3, #540] ; 0x21c +100202f6: f842 1c20 str.w r1, [r2, #-32] +100202fa: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +100202fe: f8d3 1248 ldr.w r1, [r3, #584] ; 0x248 +10020302: f842 1c24 str.w r1, [r2, #-36] +10020306: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +1002030a: f8d3 1244 ldr.w r1, [r3, #580] ; 0x244 +1002030e: f842 1c28 str.w r1, [r2, #-40] +10020312: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +10020316: f8d3 1240 ldr.w r1, [r3, #576] ; 0x240 +1002031a: f842 1c2c str.w r1, [r2, #-44] +1002031e: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +10020322: f8d3 123c ldr.w r1, [r3, #572] ; 0x23c +10020326: f842 1c30 str.w r1, [r2, #-48] +1002032a: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +1002032e: f8d3 1238 ldr.w r1, [r3, #568] ; 0x238 +10020332: f842 1c34 str.w r1, [r2, #-52] +10020336: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +1002033a: f8d3 1234 ldr.w r1, [r3, #564] ; 0x234 +1002033e: f842 1c38 str.w r1, [r2, #-56] +10020342: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +10020346: f8d3 1230 ldr.w r1, [r3, #560] ; 0x230 +1002034a: f842 1c3c str.w r1, [r2, #-60] +1002034e: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +10020352: f8d3 122c ldr.w r1, [r3, #556] ; 0x22c +10020356: f842 1c40 str.w r1, [r2, #-64] +1002035a: f8d3 2250 ldr.w r2, [r3, #592] ; 0x250 +1002035e: 3a40 subs r2, #64 ; 0x40 +10020360: f8c3 2250 str.w r2, [r3, #592] ; 0x250 +10020364: f8c3 2280 str.w r2, [r3, #640] ; 0x280 +10020368: b662 cpsie i +1002036a: df00 svc 0 +1002036c: bf00 nop +1002036e: bd08 pop {r3, pc} +10020370: 40000320 .word 0x40000320 +10020374: 05555556 .word 0x05555556 +10020378: 1ffffffc .word 0x1ffffffc +1002037c: 00003de5 .word 0x00003de5 +10020380: f0f00000 .word 0xf0f00000 +10020384: e000ed20 .word 0xe000ed20 +10020388: 1001fe89 .word 0x1001fe89 +1002038c: 1001ad29 .word 0x1001ad29 +10020390: 1001ad6d .word 0x1001ad6d +10020394: 00004019 .word 0x00004019 +10020398: 10052de8 .word 0x10052de8 + +1002039c : +1002039c: 4a0a ldr r2, [pc, #40] ; (100203c8 ) +1002039e: b508 push {r3, lr} +100203a0: 2300 movs r3, #0 +100203a2: 7013 strb r3, [r2, #0] +100203a4: 7553 strb r3, [r2, #21] +100203a6: 18d1 adds r1, r2, r3 +100203a8: 3302 adds r3, #2 +100203aa: 20ff movs r0, #255 ; 0xff +100203ac: 2b12 cmp r3, #18 +100203ae: 7048 strb r0, [r1, #1] +100203b0: 7088 strb r0, [r1, #2] +100203b2: d1f8 bne.n 100203a6 +100203b4: 4b04 ldr r3, [pc, #16] ; (100203c8 ) +100203b6: 2200 movs r2, #0 +100203b8: 759a strb r2, [r3, #22] +100203ba: f7ff fea7 bl 1002010c +100203be: 4a03 ldr r2, [pc, #12] ; (100203cc ) +100203c0: 4b03 ldr r3, [pc, #12] ; (100203d0 ) +100203c2: 605a str r2, [r3, #4] +100203c4: bd08 pop {r3, pc} +100203c6: bf00 nop +100203c8: 10052de8 .word 0x10052de8 +100203cc: 10020265 .word 0x10020265 +100203d0: 1fff0000 .word 0x1fff0000 + +100203d4 : +100203d4: b573 push {r0, r1, r4, r5, r6, lr} +100203d6: 4b19 ldr r3, [pc, #100] ; (1002043c ) +100203d8: b2c5 uxtb r5, r0 +100203da: 7819 ldrb r1, [r3, #0] +100203dc: f3c0 2007 ubfx r0, r0, #8, #8 +100203e0: 2400 movs r4, #0 +100203e2: b2e2 uxtb r2, r4 +100203e4: 428a cmp r2, r1 +100203e6: d208 bcs.n 100203fa +100203e8: 3401 adds r4, #1 +100203ea: eb03 0644 add.w r6, r3, r4, lsl #1 +100203ee: f816 6c01 ldrb.w r6, [r6, #-1] +100203f2: 42ae cmp r6, r5 +100203f4: d1f5 bne.n 100203e2 +100203f6: 2401 movs r4, #1 +100203f8: e001 b.n 100203fe +100203fa: 2400 movs r4, #0 +100203fc: 4622 mov r2, r4 +100203fe: 2808 cmp r0, #8 +10020400: d10f bne.n 10020422 +10020402: b1cc cbz r4, 10020438 +10020404: 428a cmp r2, r1 +10020406: d20a bcs.n 1002041e +10020408: 1c50 adds r0, r2, #1 +1002040a: eb03 0440 add.w r4, r3, r0, lsl #1 +1002040e: 7865 ldrb r5, [r4, #1] +10020410: 78a4 ldrb r4, [r4, #2] +10020412: eb03 0242 add.w r2, r3, r2, lsl #1 +10020416: 7055 strb r5, [r2, #1] +10020418: 7094 strb r4, [r2, #2] +1002041a: b2c2 uxtb r2, r0 +1002041c: e7f2 b.n 10020404 +1002041e: 3901 subs r1, #1 +10020420: e009 b.n 10020436 +10020422: b11c cbz r4, 1002042c +10020424: eb03 0342 add.w r3, r3, r2, lsl #1 +10020428: 7098 strb r0, [r3, #2] +1002042a: e005 b.n 10020438 +1002042c: eb03 0241 add.w r2, r3, r1, lsl #1 +10020430: 7055 strb r5, [r2, #1] +10020432: 7090 strb r0, [r2, #2] +10020434: 3101 adds r1, #1 +10020436: 7019 strb r1, [r3, #0] +10020438: b002 add sp, #8 +1002043a: bd70 pop {r4, r5, r6, pc} +1002043c: 10052de8 .word 0x10052de8 + +10020440 : +10020440: b573 push {r0, r1, r4, r5, r6, lr} +10020442: 4c0b ldr r4, [pc, #44] ; (10020470 ) +10020444: 4606 mov r6, r0 +10020446: 2000 movs r0, #0 +10020448: 9000 str r0, [sp, #0] +1002044a: 9001 str r0, [sp, #4] +1002044c: 6020 str r0, [r4, #0] +1002044e: f7ff fe97 bl 10020180 +10020452: aa01 add r2, sp, #4 +10020454: 4605 mov r5, r0 +10020456: 4669 mov r1, sp +10020458: 4630 mov r0, r6 +1002045a: f7ff fe75 bl 10020148 +1002045e: e89d 000c ldmia.w sp, {r2, r3} +10020462: 4313 orrs r3, r2 +10020464: ea43 4505 orr.w r5, r3, r5, lsl #16 +10020468: 6025 str r5, [r4, #0] +1002046a: b002 add sp, #8 +1002046c: bd70 pop {r4, r5, r6, pc} +1002046e: bf00 nop +10020470: 40000090 .word 0x40000090 + +10020474 : +10020474: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10020478: 461e mov r6, r3 +1002047a: 4b32 ldr r3, [pc, #200] ; (10020544 ) +1002047c: 4692 mov sl, r2 +1002047e: 681c ldr r4, [r3, #0] +10020480: 4b31 ldr r3, [pc, #196] ; (10020548 ) +10020482: f04f 32ff mov.w r2, #4294967295 +10020486: 681f ldr r7, [r3, #0] +10020488: f8c3 2080 str.w r2, [r3, #128] ; 0x80 +1002048c: 4605 mov r5, r0 +1002048e: 4689 mov r9, r1 +10020490: f7ff fea2 bl 100201d8 +10020494: 4b2d ldr r3, [pc, #180] ; (1002054c ) +10020496: 2200 movs r2, #0 +10020498: 492d ldr r1, [pc, #180] ; (10020550 ) +1002049a: f8c3 2284 str.w r2, [r3, #644] ; 0x284 +1002049e: 680a ldr r2, [r1, #0] +100204a0: 4698 mov r8, r3 +100204a2: 600a str r2, [r1, #0] +100204a4: 4b2b ldr r3, [pc, #172] ; (10020554 ) +100204a6: 4a2c ldr r2, [pc, #176] ; (10020558 ) +100204a8: f1ba 0f00 cmp.w sl, #0 +100204ac: bf18 it ne +100204ae: 461a movne r2, r3 +100204b0: 4b2a ldr r3, [pc, #168] ; (1002055c ) +100204b2: 07e8 lsls r0, r5, #31 +100204b4: 601a str r2, [r3, #0] +100204b6: 685a ldr r2, [r3, #4] +100204b8: f022 02ff bic.w r2, r2, #255 ; 0xff +100204bc: f042 0202 orr.w r2, r2, #2 +100204c0: 605a str r2, [r3, #4] +100204c2: d509 bpl.n 100204d8 +100204c4: 4648 mov r0, r9 +100204c6: f7ff ffbb bl 10020440 +100204ca: 4b25 ldr r3, [pc, #148] ; (10020560 ) +100204cc: f044 0401 orr.w r4, r4, #1 +100204d0: 681a ldr r2, [r3, #0] +100204d2: f442 4200 orr.w r2, r2, #32768 ; 0x8000 +100204d6: 601a str r2, [r3, #0] +100204d8: 07a9 lsls r1, r5, #30 +100204da: bf48 it mi +100204dc: f044 0402 orrmi.w r4, r4, #2 +100204e0: 076a lsls r2, r5, #29 +100204e2: bf48 it mi +100204e4: f044 0410 orrmi.w r4, r4, #16 +100204e8: 072b lsls r3, r5, #28 +100204ea: bf48 it mi +100204ec: f444 7480 orrmi.w r4, r4, #256 ; 0x100 +100204f0: 06e8 lsls r0, r5, #27 +100204f2: bf48 it mi +100204f4: f044 5480 orrmi.w r4, r4, #268435456 ; 0x10000000 +100204f8: 06a9 lsls r1, r5, #26 +100204fa: bf48 it mi +100204fc: f444 4480 orrmi.w r4, r4, #16384 ; 0x4000 +10020500: 062a lsls r2, r5, #24 +10020502: bf48 it mi +10020504: f044 5480 orrmi.w r4, r4, #268435456 ; 0x10000000 +10020508: 2064 movs r0, #100 ; 0x64 +1002050a: 4d16 ldr r5, [pc, #88] ; (10020564 ) +1002050c: 47a8 blx r5 +1002050e: 4b16 ldr r3, [pc, #88] ; (10020568 ) +10020510: 781b ldrb r3, [r3, #0] +10020512: 065b lsls r3, r3, #25 +10020514: d5f8 bpl.n 10020508 +10020516: 4b0b ldr r3, [pc, #44] ; (10020544 ) +10020518: 601c str r4, [r3, #0] +1002051a: f898 3284 ldrb.w r3, [r8, #644] ; 0x284 +1002051e: 2b01 cmp r3, #1 +10020520: d00d beq.n 1002053e +10020522: 4b0a ldr r3, [pc, #40] ; (1002054c ) +10020524: 759e strb r6, [r3, #22] +10020526: b10e cbz r6, 1002052c +10020528: f7ff fd7c bl 10020024 +1002052c: 4b0f ldr r3, [pc, #60] ; (1002056c ) +1002052e: 2204 movs r2, #4 +10020530: 601a str r2, [r3, #0] +10020532: f44f 7096 mov.w r0, #300 ; 0x12c +10020536: 681b ldr r3, [r3, #0] +10020538: 47a8 blx r5 +1002053a: 4b03 ldr r3, [pc, #12] ; (10020548 ) +1002053c: 601f str r7, [r3, #0] +1002053e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10020542: bf00 nop +10020544: 40000100 .word 0x40000100 +10020548: e000e100 .word 0xe000e100 +1002054c: 10052de8 .word 0x10052de8 +10020550: 40000108 .word 0x40000108 +10020554: 74003b00 .word 0x74003b00 +10020558: 74000900 .word 0x74000900 +1002055c: 40000120 .word 0x40000120 +10020560: 40000090 .word 0x40000090 +10020564: 00000899 .word 0x00000899 +10020568: 40003014 .word 0x40003014 +1002056c: 40000118 .word 0x40000118 + +10020570 : +10020570: 4770 bx lr + +10020572 <__low_level_init>: +10020572: 4770 bx lr + +10020574 <_AppStart>: +10020574: b508 push {r3, lr} +10020576: 4b0b ldr r3, [pc, #44] ; (100205a4 <_AppStart+0x30>) +10020578: 681a ldr r2, [r3, #0] +1002057a: f422 5280 bic.w r2, r2, #4096 ; 0x1000 +1002057e: 601a str r2, [r3, #0] +10020580: f7ff fff7 bl 10020572 <__low_level_init> +10020584: 4808 ldr r0, [pc, #32] ; (100205a8 <_AppStart+0x34>) +10020586: 4a09 ldr r2, [pc, #36] ; (100205ac <_AppStart+0x38>) +10020588: 1a12 subs r2, r2, r0 +1002058a: 2a00 cmp r2, #0 +1002058c: dd02 ble.n 10020594 <_AppStart+0x20> +1002058e: 2100 movs r1, #0 +10020590: f021 febb bl 1004230a +10020594: 4668 mov r0, sp +10020596: f020 0007 bic.w r0, r0, #7 +1002059a: 4685 mov sp, r0 +1002059c: f7ff fb72 bl 1001fc84
+100205a0: bd08 pop {r3, pc} +100205a2: bf00 nop +100205a4: 10000310 .word 0x10000310 +100205a8: 30000000 .word 0x30000000 +100205ac: 30000000 .word 0x30000000 + +100205b0 : +100205b0: b510 push {r4, lr} +100205b2: 2300 movs r3, #0 +100205b4: 4293 cmp r3, r2 +100205b6: d003 beq.n 100205c0 +100205b8: 5cc4 ldrb r4, [r0, r3] +100205ba: 54cc strb r4, [r1, r3] +100205bc: 3301 adds r3, #1 +100205be: e7f9 b.n 100205b4 +100205c0: 2000 movs r0, #0 +100205c2: bd10 pop {r4, pc} + +100205c4 : +100205c4: b510 push {r4, lr} +100205c6: 4b08 ldr r3, [pc, #32] ; (100205e8 ) +100205c8: 681b ldr r3, [r3, #0] +100205ca: f893 28f5 ldrb.w r2, [r3, #2293] ; 0x8f5 +100205ce: eb03 0182 add.w r1, r3, r2, lsl #2 +100205d2: f8d1 48e1 ldr.w r4, [r1, #2273] ; 0x8e1 +100205d6: b90c cbnz r4, 100205dc +100205d8: f8c1 08e1 str.w r0, [r1, #2273] ; 0x8e1 +100205dc: 3201 adds r2, #1 +100205de: f883 28f5 strb.w r2, [r3, #2293] ; 0x8f5 +100205e2: 2000 movs r0, #0 +100205e4: bd10 pop {r4, pc} +100205e6: bf00 nop +100205e8: 100530d0 .word 0x100530d0 + +100205ec : +100205ec: b508 push {r3, lr} +100205ee: 6b03 ldr r3, [r0, #48] ; 0x30 +100205f0: b10b cbz r3, 100205f6 +100205f2: 4798 blx r3 +100205f4: bd08 pop {r3, pc} +100205f6: 4618 mov r0, r3 +100205f8: bd08 pop {r3, pc} + +100205fa : +100205fa: b508 push {r3, lr} +100205fc: 6b43 ldr r3, [r0, #52] ; 0x34 +100205fe: b10b cbz r3, 10020604 +10020600: 4798 blx r3 +10020602: bd08 pop {r3, pc} +10020604: 4618 mov r0, r3 +10020606: bd08 pop {r3, pc} + +10020608 : +10020608: b508 push {r3, lr} +1002060a: 6b83 ldr r3, [r0, #56] ; 0x38 +1002060c: b10b cbz r3, 10020612 +1002060e: 4798 blx r3 +10020610: bd08 pop {r3, pc} +10020612: 4618 mov r0, r3 +10020614: bd08 pop {r3, pc} + +10020616 : +10020616: b510 push {r4, lr} +10020618: f8d1 26ad ldr.w r2, [r1, #1709] ; 0x6ad +1002061c: 2300 movs r3, #0 +1002061e: 4293 cmp r3, r2 +10020620: d009 beq.n 10020636 +10020622: 2006 movs r0, #6 +10020624: fb00 1003 mla r0, r0, r3, r1 +10020628: f890 40b2 ldrb.w r4, [r0, #178] ; 0xb2 +1002062c: 18c8 adds r0, r1, r3 +1002062e: f880 47d9 strb.w r4, [r0, #2009] ; 0x7d9 +10020632: 3301 adds r3, #1 +10020634: e7f3 b.n 1002061e +10020636: f8c1 38d9 str.w r3, [r1, #2265] ; 0x8d9 +1002063a: 2000 movs r0, #0 +1002063c: bd10 pop {r4, pc} + ... + +10020640 : +10020640: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10020644: f891 2088 ldrb.w r2, [r1, #136] ; 0x88 +10020648: f891 3082 ldrb.w r3, [r1, #130] ; 0x82 +1002064c: 460c mov r4, r1 +1002064e: f891 107c ldrb.w r1, [r1, #124] ; 0x7c +10020652: eb02 2303 add.w r3, r2, r3, lsl #8 +10020656: eb03 4301 add.w r3, r3, r1, lsl #16 +1002065a: 2b02 cmp r3, #2 +1002065c: 4d4a ldr r5, [pc, #296] ; (10020788 ) +1002065e: d12d bne.n 100206bc +10020660: 494a ldr r1, [pc, #296] ; (1002078c ) +10020662: 680e ldr r6, [r1, #0] +10020664: b136 cbz r6, 10020674 +10020666: 4b4a ldr r3, [pc, #296] ; (10020790 ) +10020668: f04f 34ff mov.w r4, #4294967295 +1002066c: 601c str r4, [r3, #0] +1002066e: 4849 ldr r0, [pc, #292] ; (10020794 ) +10020670: 682b ldr r3, [r5, #0] +10020672: e080 b.n 10020776 +10020674: f894 007a ldrb.w r0, [r4, #122] ; 0x7a +10020678: f894 108e ldrb.w r1, [r4, #142] ; 0x8e +1002067c: 4402 add r2, r0 +1002067e: f894 0081 ldrb.w r0, [r4, #129] ; 0x81 +10020682: 4402 add r2, r0 +10020684: 440a add r2, r1 +10020686: f894 0094 ldrb.w r0, [r4, #148] ; 0x94 +1002068a: b2d2 uxtb r2, r2 +1002068c: 4290 cmp r0, r2 +1002068e: d14d bne.n 1002072c +10020690: 7023 strb r3, [r4, #0] +10020692: 3909 subs r1, #9 +10020694: 68eb ldr r3, [r5, #12] +10020696: f8c4 16ad str.w r1, [r4, #1709] ; 0x6ad +1002069a: 483f ldr r0, [pc, #252] ; (10020798 ) +1002069c: 68af ldr r7, [r5, #8] +1002069e: 4798 blx r3 +100206a0: 493d ldr r1, [pc, #244] ; (10020798 ) +100206a2: 4602 mov r2, r0 +100206a4: f604 1037 addw r0, r4, #2359 ; 0x937 +100206a8: 47b8 blx r7 +100206aa: 68eb ldr r3, [r5, #12] +100206ac: 483a ldr r0, [pc, #232] ; (10020798 ) +100206ae: 4798 blx r3 +100206b0: 4b3a ldr r3, [pc, #232] ; (1002079c ) +100206b2: 6018 str r0, [r3, #0] +100206b4: 4420 add r0, r4 +100206b6: f880 6937 strb.w r6, [r0, #2359] ; 0x937 +100206ba: e037 b.n 1002072c +100206bc: 2b03 cmp r3, #3 +100206be: d158 bne.n 10020772 +100206c0: f894 007a ldrb.w r0, [r4, #122] ; 0x7a +100206c4: f894 108e ldrb.w r1, [r4, #142] ; 0x8e +100206c8: 4402 add r2, r0 +100206ca: f894 0081 ldrb.w r0, [r4, #129] ; 0x81 +100206ce: 4402 add r2, r0 +100206d0: 440a add r2, r1 +100206d2: f894 0094 ldrb.w r0, [r4, #148] ; 0x94 +100206d6: b2d2 uxtb r2, r2 +100206d8: 4290 cmp r0, r2 +100206da: d127 bne.n 1002072c +100206dc: 4e2b ldr r6, [pc, #172] ; (1002078c ) +100206de: 3909 subs r1, #9 +100206e0: 6830 ldr r0, [r6, #0] +100206e2: 7023 strb r3, [r4, #0] +100206e4: f8c4 16ad str.w r1, [r4, #1709] ; 0x6ad +100206e8: b188 cbz r0, 1002070e +100206ea: 68eb ldr r3, [r5, #12] +100206ec: 4798 blx r3 +100206ee: 4b2b ldr r3, [pc, #172] ; (1002079c ) +100206f0: 6018 str r0, [r3, #0] +100206f2: 461f mov r7, r3 +100206f4: b190 cbz r0, 1002071c +100206f6: 6836 ldr r6, [r6, #0] +100206f8: 68ea ldr r2, [r5, #12] +100206fa: 4630 mov r0, r6 +100206fc: f8d5 8008 ldr.w r8, [r5, #8] +10020700: 4790 blx r2 +10020702: 4631 mov r1, r6 +10020704: 4602 mov r2, r0 +10020706: f604 00f6 addw r0, r4, #2294 ; 0x8f6 +1002070a: 47c0 blx r8 +1002070c: e006 b.n 1002071c +1002070e: 4b20 ldr r3, [pc, #128] ; (10020790 ) +10020710: f04f 34ff mov.w r4, #4294967295 +10020714: 601c str r4, [r3, #0] +10020716: 4822 ldr r0, [pc, #136] ; (100207a0 ) +10020718: 682b ldr r3, [r5, #0] +1002071a: e02c b.n 10020776 +1002071c: 2301 movs r3, #1 +1002071e: f884 3978 strb.w r3, [r4, #2424] ; 0x978 +10020722: 683b ldr r3, [r7, #0] +10020724: 2200 movs r2, #0 +10020726: 4423 add r3, r4 +10020728: f883 28f6 strb.w r2, [r3, #2294] ; 0x8f6 +1002072c: 4b1d ldr r3, [pc, #116] ; (100207a4 ) +1002072e: f894 209a ldrb.w r2, [r4, #154] ; 0x9a +10020732: 2600 movs r6, #0 +10020734: 701a strb r2, [r3, #0] +10020736: f894 20a0 ldrb.w r2, [r4, #160] ; 0xa0 +1002073a: f884 697a strb.w r6, [r4, #2426] ; 0x97a +1002073e: 705a strb r2, [r3, #1] +10020740: f894 20a6 ldrb.w r2, [r4, #166] ; 0xa6 +10020744: 4918 ldr r1, [pc, #96] ; (100207a8 ) +10020746: 709a strb r2, [r3, #2] +10020748: f894 20ac ldrb.w r2, [r4, #172] ; 0xac +1002074c: f604 147b addw r4, r4, #2427 ; 0x97b +10020750: 70da strb r2, [r3, #3] +10020752: 2301 movs r3, #1 +10020754: f804 3c02 strb.w r3, [r4, #-2] +10020758: 692b ldr r3, [r5, #16] +1002075a: 4620 mov r0, r4 +1002075c: 4798 blx r3 +1002075e: 682b ldr r3, [r5, #0] +10020760: 4621 mov r1, r4 +10020762: 4812 ldr r0, [pc, #72] ; (100207ac ) +10020764: 4798 blx r3 +10020766: 682b ldr r3, [r5, #0] +10020768: 4811 ldr r0, [pc, #68] ; (100207b0 ) +1002076a: 4798 blx r3 +1002076c: 4630 mov r0, r6 +1002076e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10020772: 682b ldr r3, [r5, #0] +10020774: 480f ldr r0, [pc, #60] ; (100207b4 ) +10020776: 4798 blx r3 +10020778: 682b ldr r3, [r5, #0] +1002077a: 480d ldr r0, [pc, #52] ; (100207b0 ) +1002077c: 4798 blx r3 +1002077e: f04f 30ff mov.w r0, #4294967295 +10020782: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10020786: bf00 nop +10020788: 10053094 .word 0x10053094 +1002078c: 10053084 .word 0x10053084 +10020790: 1005307c .word 0x1005307c +10020794: 10049c96 .word 0x10049c96 +10020798: 1004a0e0 .word 0x1004a0e0 +1002079c: 100530c4 .word 0x100530c4 +100207a0: 10049cb1 .word 0x10049cb1 +100207a4: 10053089 .word 0x10053089 +100207a8: 1004a0e9 .word 0x1004a0e9 +100207ac: 10049ccf .word 0x10049ccf +100207b0: 1004bbea .word 0x1004bbea +100207b4: 10049ce4 .word 0x10049ce4 + +100207b8 : +100207b8: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +100207bc: f8df 80b0 ldr.w r8, [pc, #176] ; 10020870 +100207c0: 2305 movs r3, #5 +100207c2: f8d8 0000 ldr.w r0, [r8] +100207c6: 4d25 ldr r5, [pc, #148] ; (1002085c ) +100207c8: 1c06 adds r6, r0, #0 +100207ca: 700b strb r3, [r1, #0] +100207cc: bf18 it ne +100207ce: 2601 movne r6, #1 +100207d0: f881 6978 strb.w r6, [r1, #2424] ; 0x978 +100207d4: 68eb ldr r3, [r5, #12] +100207d6: 460c mov r4, r1 +100207d8: 4798 blx r3 +100207da: 4f21 ldr r7, [pc, #132] ; (10020860 ) +100207dc: 4602 mov r2, r0 +100207de: 6038 str r0, [r7, #0] +100207e0: f604 09f6 addw r9, r4, #2294 ; 0x8f6 +100207e4: b9d6 cbnz r6, 1002081c +100207e6: 68eb ldr r3, [r5, #12] +100207e8: 481e ldr r0, [pc, #120] ; (10020864 ) +100207ea: f8d5 8008 ldr.w r8, [r5, #8] +100207ee: 4798 blx r3 +100207f0: 491c ldr r1, [pc, #112] ; (10020864 ) +100207f2: 4602 mov r2, r0 +100207f4: 4648 mov r0, r9 +100207f6: 47c0 blx r8 +100207f8: 68eb ldr r3, [r5, #12] +100207fa: 481a ldr r0, [pc, #104] ; (10020864 ) +100207fc: f8d5 8008 ldr.w r8, [r5, #8] +10020800: 4798 blx r3 +10020802: 4918 ldr r1, [pc, #96] ; (10020864 ) +10020804: 4602 mov r2, r0 +10020806: f604 1037 addw r0, r4, #2359 ; 0x937 +1002080a: 47c0 blx r8 +1002080c: 68eb ldr r3, [r5, #12] +1002080e: 4815 ldr r0, [pc, #84] ; (10020864 ) +10020810: 4798 blx r3 +10020812: 6038 str r0, [r7, #0] +10020814: 4420 add r0, r4 +10020816: f880 6937 strb.w r6, [r0, #2359] ; 0x937 +1002081a: e004 b.n 10020826 +1002081c: 68ab ldr r3, [r5, #8] +1002081e: 4648 mov r0, r9 +10020820: f8d8 1000 ldr.w r1, [r8] +10020824: 4798 blx r3 +10020826: 683b ldr r3, [r7, #0] +10020828: 2600 movs r6, #0 +1002082a: 4423 add r3, r4 +1002082c: f883 68f6 strb.w r6, [r3, #2294] ; 0x8f6 +10020830: 4b0d ldr r3, [pc, #52] ; (10020868 ) +10020832: 2232 movs r2, #50 ; 0x32 +10020834: 701a strb r2, [r3, #0] +10020836: 2233 movs r2, #51 ; 0x33 +10020838: 705a strb r2, [r3, #1] +1002083a: 2234 movs r2, #52 ; 0x34 +1002083c: 709a strb r2, [r3, #2] +1002083e: 2235 movs r2, #53 ; 0x35 +10020840: 70da strb r2, [r3, #3] +10020842: 2301 movs r3, #1 +10020844: f884 3979 strb.w r3, [r4, #2425] ; 0x979 +10020848: f884 697a strb.w r6, [r4, #2426] ; 0x97a +1002084c: 692b ldr r3, [r5, #16] +1002084e: f604 107b addw r0, r4, #2427 ; 0x97b +10020852: 4906 ldr r1, [pc, #24] ; (1002086c ) +10020854: 4798 blx r3 +10020856: 4630 mov r0, r6 +10020858: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002085c: 10053094 .word 0x10053094 +10020860: 100530c4 .word 0x100530c4 +10020864: 1004a0e0 .word 0x1004a0e0 +10020868: 10053089 .word 0x10053089 +1002086c: 1004a0e9 .word 0x1004a0e9 +10020870: 10053084 .word 0x10053084 + +10020874 : +10020874: b538 push {r3, r4, r5, lr} +10020876: 4b16 ldr r3, [pc, #88] ; (100208d0 ) +10020878: 460c mov r4, r1 +1002087a: 685b ldr r3, [r3, #4] +1002087c: f201 70d9 addw r0, r1, #2009 ; 0x7d9 +10020880: f8d4 26ad ldr.w r2, [r4, #1709] ; 0x6ad +10020884: 2100 movs r1, #0 +10020886: 4798 blx r3 +10020888: f8d4 06ad ldr.w r0, [r4, #1709] ; 0x6ad +1002088c: 2300 movs r3, #0 +1002088e: 4283 cmp r3, r0 +10020890: d018 beq.n 100208c4 +10020892: 105a asrs r2, r3, #1 +10020894: f013 0f01 tst.w r3, #1 +10020898: eb04 0103 add.w r1, r4, r3 +1002089c: 4422 add r2, r4 +1002089e: d007 beq.n 100208b0 +100208a0: f891 19bb ldrb.w r1, [r1, #2491] ; 0x9bb +100208a4: f892 57d9 ldrb.w r5, [r2, #2009] ; 0x7d9 +100208a8: f001 010f and.w r1, r1, #15 +100208ac: 4329 orrs r1, r5 +100208ae: e005 b.n 100208bc +100208b0: f891 59bb ldrb.w r5, [r1, #2491] ; 0x9bb +100208b4: f892 17d9 ldrb.w r1, [r2, #2009] ; 0x7d9 +100208b8: ea41 1105 orr.w r1, r1, r5, lsl #4 +100208bc: f882 17d9 strb.w r1, [r2, #2009] ; 0x7d9 +100208c0: 3301 adds r3, #1 +100208c2: e7e4 b.n 1002088e +100208c4: 085b lsrs r3, r3, #1 +100208c6: f8c4 38d9 str.w r3, [r4, #2265] ; 0x8d9 +100208ca: 2000 movs r0, #0 +100208cc: bd38 pop {r3, r4, r5, pc} +100208ce: bf00 nop +100208d0: 10053094 .word 0x10053094 + +100208d4 : +100208d4: 4b0e ldr r3, [pc, #56] ; (10020910 ) +100208d6: b510 push {r4, lr} +100208d8: 2400 movs r4, #0 +100208da: 701c strb r4, [r3, #0] +100208dc: 4b0d ldr r3, [pc, #52] ; (10020914 ) +100208de: 4a0e ldr r2, [pc, #56] ; (10020918 ) +100208e0: 601c str r4, [r3, #0] +100208e2: 4b0e ldr r3, [pc, #56] ; (1002091c ) +100208e4: 4621 mov r1, r4 +100208e6: 601c str r4, [r3, #0] +100208e8: 4b0d ldr r3, [pc, #52] ; (10020920 ) +100208ea: 6810 ldr r0, [r2, #0] +100208ec: 685b ldr r3, [r3, #4] +100208ee: f640 22bb movw r2, #2747 ; 0xabb +100208f2: 4798 blx r3 +100208f4: 480b ldr r0, [pc, #44] ; (10020924 ) +100208f6: f7ff fe65 bl 100205c4 +100208fa: 480b ldr r0, [pc, #44] ; (10020928 ) +100208fc: f7ff fe62 bl 100205c4 +10020900: 480a ldr r0, [pc, #40] ; (1002092c ) +10020902: f7ff fe5f bl 100205c4 +10020906: 480a ldr r0, [pc, #40] ; (10020930 ) +10020908: f7ff fe5c bl 100205c4 +1002090c: 4620 mov r0, r4 +1002090e: bd10 pop {r4, pc} +10020910: 100530c0 .word 0x100530c0 +10020914: 100530cc .word 0x100530cc +10020918: 100530d0 .word 0x100530d0 +1002091c: 10053090 .word 0x10053090 +10020920: 10053094 .word 0x10053094 +10020924: 1004d8fd .word 0x1004d8fd +10020928: 1004d884 .word 0x1004d884 +1002092c: 1004d842 .word 0x1004d842 +10020930: 1004d8c0 .word 0x1004d8c0 + +10020934 : +10020934: b513 push {r0, r1, r4, lr} +10020936: 460c mov r4, r1 +10020938: f204 62b1 addw r2, r4, #1713 ; 0x6b1 +1002093c: f8d1 18d9 ldr.w r1, [r1, #2265] ; 0x8d9 +10020940: f8d4 37d5 ldr.w r3, [r4, #2005] ; 0x7d5 +10020944: 9200 str r2, [sp, #0] +10020946: f204 70d9 addw r0, r4, #2009 ; 0x7d9 +1002094a: f204 72b5 addw r2, r4, #1973 ; 0x7b5 +1002094e: f022 fecf bl 100436f0 <__AES_UnWRAP_veneer> +10020952: f8d4 38d9 ldr.w r3, [r4, #2265] ; 0x8d9 +10020956: 2000 movs r0, #0 +10020958: f8c4 37b1 str.w r3, [r4, #1969] ; 0x7b1 +1002095c: b002 add sp, #8 +1002095e: bd10 pop {r4, pc} + +10020960 : +10020960: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10020964: 4c3c ldr r4, [pc, #240] ; (10020a58 ) +10020966: b0dd sub sp, #372 ; 0x174 +10020968: 6863 ldr r3, [r4, #4] +1002096a: 4607 mov r7, r0 +1002096c: 460d mov r5, r1 +1002096e: a81c add r0, sp, #112 ; 0x70 +10020970: 2100 movs r1, #0 +10020972: f44f 7280 mov.w r2, #256 ; 0x100 +10020976: 4798 blx r3 +10020978: 4b38 ldr r3, [pc, #224] ; (10020a5c ) +1002097a: 781b ldrb r3, [r3, #0] +1002097c: b11b cbz r3, 10020986 +1002097e: 68a3 ldr r3, [r4, #8] +10020980: a81c add r0, sp, #112 ; 0x70 +10020982: 4937 ldr r1, [pc, #220] ; (10020a60 ) +10020984: e002 b.n 1002098c +10020986: 68a3 ldr r3, [r4, #8] +10020988: a81c add r0, sp, #112 ; 0x70 +1002098a: 1c69 adds r1, r5, #1 +1002098c: 2206 movs r2, #6 +1002098e: 4798 blx r3 +10020990: f895 3978 ldrb.w r3, [r5, #2424] ; 0x978 +10020994: 4e33 ldr r6, [pc, #204] ; (10020a64 ) +10020996: b163 cbz r3, 100209b2 +10020998: f605 08f6 addw r8, r5, #2294 ; 0x8f6 +1002099c: 68e3 ldr r3, [r4, #12] +1002099e: 4640 mov r0, r8 +100209a0: f8d4 9008 ldr.w r9, [r4, #8] +100209a4: 4798 blx r3 +100209a6: 4641 mov r1, r8 +100209a8: 4602 mov r2, r0 +100209aa: f10d 0076 add.w r0, sp, #118 ; 0x76 +100209ae: 47c8 blx r9 +100209b0: e006 b.n 100209c0 +100209b2: 68a3 ldr r3, [r4, #8] +100209b4: f10d 0076 add.w r0, sp, #118 ; 0x76 +100209b8: f605 1137 addw r1, r5, #2359 ; 0x937 +100209bc: 6832 ldr r2, [r6, #0] +100209be: 4798 blx r3 +100209c0: 68e3 ldr r3, [r4, #12] +100209c2: 4829 ldr r0, [pc, #164] ; (10020a68 ) +100209c4: f8d4 8008 ldr.w r8, [r4, #8] +100209c8: 6836 ldr r6, [r6, #0] +100209ca: 4798 blx r3 +100209cc: 3606 adds r6, #6 +100209ce: 4602 mov r2, r0 +100209d0: a81c add r0, sp, #112 ; 0x70 +100209d2: 4925 ldr r1, [pc, #148] ; (10020a68 ) +100209d4: 4430 add r0, r6 +100209d6: 47c0 blx r8 +100209d8: 68e3 ldr r3, [r4, #12] +100209da: 4823 ldr r0, [pc, #140] ; (10020a68 ) +100209dc: 4798 blx r3 +100209de: 68e3 ldr r3, [r4, #12] +100209e0: 4406 add r6, r0 +100209e2: 4822 ldr r0, [pc, #136] ; (10020a6c ) +100209e4: f8d4 8008 ldr.w r8, [r4, #8] +100209e8: 4798 blx r3 +100209ea: 4602 mov r2, r0 +100209ec: a81c add r0, sp, #112 ; 0x70 +100209ee: 491f ldr r1, [pc, #124] ; (10020a6c ) +100209f0: 4430 add r0, r6 +100209f2: 47c0 blx r8 +100209f4: 3604 adds r6, #4 +100209f6: a806 add r0, sp, #24 +100209f8: f022 fef2 bl 100437e0 <__rt_md5_init_veneer> +100209fc: 4632 mov r2, r6 +100209fe: a806 add r0, sp, #24 +10020a00: a91c add r1, sp, #112 ; 0x70 +10020a02: f022 fed5 bl 100437b0 <__rt_md5_append_veneer> +10020a06: 3708 adds r7, #8 +10020a08: a906 add r1, sp, #24 +10020a0a: a802 add r0, sp, #8 +10020a0c: f022 fe68 bl 100436e0 <__rt_md5_final_veneer> +10020a10: 68e3 ldr r3, [r4, #12] +10020a12: 4638 mov r0, r7 +10020a14: f8d4 8008 ldr.w r8, [r4, #8] +10020a18: 4798 blx r3 +10020a1a: 4602 mov r2, r0 +10020a1c: a81c add r0, sp, #112 ; 0x70 +10020a1e: 4639 mov r1, r7 +10020a20: 4430 add r0, r6 +10020a22: 47c0 blx r8 +10020a24: 68e3 ldr r3, [r4, #12] +10020a26: 4638 mov r0, r7 +10020a28: 4798 blx r3 +10020a2a: f205 73b5 addw r3, r5, #1973 ; 0x7b5 +10020a2e: 1831 adds r1, r6, r0 +10020a30: 9300 str r3, [sp, #0] +10020a32: a81c add r0, sp, #112 ; 0x70 +10020a34: aa02 add r2, sp, #8 +10020a36: 2310 movs r3, #16 +10020a38: f022 feb2 bl 100437a0 <__rt_hmac_sha1_veneer> +10020a3c: 2000 movs r0, #0 +10020a3e: 2310 movs r3, #16 +10020a40: f885 37d5 strb.w r3, [r5, #2005] ; 0x7d5 +10020a44: f885 07d6 strb.w r0, [r5, #2006] ; 0x7d6 +10020a48: f885 07d7 strb.w r0, [r5, #2007] ; 0x7d7 +10020a4c: f885 07d8 strb.w r0, [r5, #2008] ; 0x7d8 +10020a50: b05d add sp, #372 ; 0x174 +10020a52: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10020a56: bf00 nop +10020a58: 10053094 .word 0x10053094 +10020a5c: 10053080 .word 0x10053080 +10020a60: 1004d87e .word 0x1004d87e +10020a64: 100530c4 .word 0x100530c4 +10020a68: 1004a0fe .word 0x1004a0fe +10020a6c: 10053089 .word 0x10053089 + +10020a70 : +10020a70: b510 push {r4, lr} +10020a72: 2300 movs r3, #0 +10020a74: 461a mov r2, r3 +10020a76: 5c84 ldrb r4, [r0, r2] +10020a78: 3201 adds r2, #1 +10020a7a: 4423 add r3, r4 +10020a7c: 2a06 cmp r2, #6 +10020a7e: b2db uxtb r3, r3 +10020a80: d1f9 bne.n 10020a76 +10020a82: b94b cbnz r3, 10020a98 +10020a84: 78c0 ldrb r0, [r0, #3] +10020a86: f100 032a add.w r3, r0, #42 ; 0x2a +10020a8a: 4299 cmp r1, r3 +10020a8c: d006 beq.n 10020a9c +10020a8e: 3026 adds r0, #38 ; 0x26 +10020a90: 1a0b subs r3, r1, r0 +10020a92: 4258 negs r0, r3 +10020a94: 4158 adcs r0, r3 +10020a96: bd10 pop {r4, pc} +10020a98: 2000 movs r0, #0 +10020a9a: bd10 pop {r4, pc} +10020a9c: 2001 movs r0, #1 +10020a9e: bd10 pop {r4, pc} + +10020aa0 : +10020aa0: 4770 bx lr + +10020aa2 : +10020aa2: 4770 bx lr + +10020aa4 : +10020aa4: b530 push {r4, r5, lr} +10020aa6: 4c05 ldr r4, [pc, #20] ; (10020abc ) +10020aa8: 4605 mov r5, r0 +10020aaa: cd0f ldmia r5!, {r0, r1, r2, r3} +10020aac: c40f stmia r4!, {r0, r1, r2, r3} +10020aae: cd0f ldmia r5!, {r0, r1, r2, r3} +10020ab0: c40f stmia r4!, {r0, r1, r2, r3} +10020ab2: e895 0007 ldmia.w r5, {r0, r1, r2} +10020ab6: e884 0007 stmia.w r4, {r0, r1, r2} +10020aba: bd30 pop {r4, r5, pc} +10020abc: 10053094 .word 0x10053094 + +10020ac0 : +10020ac0: b508 push {r3, lr} +10020ac2: 4803 ldr r0, [pc, #12] ; (10020ad0 ) +10020ac4: 2100 movs r1, #0 +10020ac6: 6843 ldr r3, [r0, #4] +10020ac8: 222c movs r2, #44 ; 0x2c +10020aca: 4798 blx r3 +10020acc: bd08 pop {r3, pc} +10020ace: bf00 nop +10020ad0: 10053094 .word 0x10053094 + +10020ad4 : +10020ad4: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10020ad8: 2500 movs r5, #0 +10020ada: b085 sub sp, #20 +10020adc: 4607 mov r7, r0 +10020ade: 9103 str r1, [sp, #12] +10020ae0: 4690 mov r8, r2 +10020ae2: 468b mov fp, r1 +10020ae4: 46aa mov sl, r5 +10020ae6: 9501 str r5, [sp, #4] +10020ae8: 462c mov r4, r5 +10020aea: 4544 cmp r4, r8 +10020aec: da5d bge.n 10020baa +10020aee: f89b 3000 ldrb.w r3, [fp] +10020af2: f003 0603 and.w r6, r3, #3 +10020af6: 2e01 cmp r6, #1 +10020af8: d122 bne.n 10020b40 +10020afa: 9a01 ldr r2, [sp, #4] +10020afc: b112 cbz r2, 10020b04 +10020afe: f04f 30ff mov.w r0, #4294967295 +10020b02: e063 b.n 10020bcc +10020b04: ea4f 0993 mov.w r9, r3, lsr #2 +10020b08: f1b9 0f20 cmp.w r9, #32 +10020b0c: dcf7 bgt.n 10020afe +10020b0e: f10b 0b01 add.w fp, fp, #1 +10020b12: 4a30 ldr r2, [pc, #192] ; (10020bd4 ) +10020b14: f8cd b008 str.w fp, [sp, #8] +10020b18: f107 0b13 add.w fp, r7, #19 +10020b1c: 6853 ldr r3, [r2, #4] +10020b1e: 4658 mov r0, fp +10020b20: 9901 ldr r1, [sp, #4] +10020b22: 2220 movs r2, #32 +10020b24: 4798 blx r3 +10020b26: 4659 mov r1, fp +10020b28: 9802 ldr r0, [sp, #8] +10020b2a: 464a mov r2, r9 +10020b2c: f7ff fd40 bl 100205b0 +10020b30: f8dd b008 ldr.w fp, [sp, #8] +10020b34: f109 0301 add.w r3, r9, #1 +10020b38: 44cb add fp, r9 +10020b3a: 441c add r4, r3 +10020b3c: 9601 str r6, [sp, #4] +10020b3e: e031 b.n 10020ba4 +10020b40: 2e02 cmp r6, #2 +10020b42: d11e bne.n 10020b82 +10020b44: f1ba 0f00 cmp.w sl, #0 +10020b48: d1d9 bne.n 10020afe +10020b4a: 4a22 ldr r2, [pc, #136] ; (10020bd4 ) +10020b4c: 089e lsrs r6, r3, #2 +10020b4e: f107 0333 add.w r3, r7, #51 ; 0x33 +10020b52: f8d2 c004 ldr.w ip, [r2, #4] +10020b56: 4651 mov r1, sl +10020b58: 4618 mov r0, r3 +10020b5a: f04f 0240 mov.w r2, #64 ; 0x40 +10020b5e: 9300 str r3, [sp, #0] +10020b60: bf08 it eq +10020b62: 2640 moveq r6, #64 ; 0x40 +10020b64: 47e0 blx ip +10020b66: 9b00 ldr r3, [sp, #0] +10020b68: f10b 0b01 add.w fp, fp, #1 +10020b6c: 4658 mov r0, fp +10020b6e: 4632 mov r2, r6 +10020b70: 4619 mov r1, r3 +10020b72: 44b3 add fp, r6 +10020b74: 3601 adds r6, #1 +10020b76: f7ff fd1b bl 100205b0 +10020b7a: 4434 add r4, r6 +10020b7c: f04f 0a01 mov.w sl, #1 +10020b80: e010 b.n 10020ba4 +10020b82: 2e03 cmp r6, #3 +10020b84: d118 bne.n 10020bb8 +10020b86: 2d00 cmp r5, #0 +10020b88: d1b9 bne.n 10020afe +10020b8a: 089a lsrs r2, r3, #2 +10020b8c: 2a04 cmp r2, #4 +10020b8e: d1b6 bne.n 10020afe +10020b90: f10b 0001 add.w r0, fp, #1 +10020b94: f107 0173 add.w r1, r7, #115 ; 0x73 +10020b98: f7ff fd0a bl 100205b0 +10020b9c: f10b 0b05 add.w fp, fp, #5 +10020ba0: 3405 adds r4, #5 +10020ba2: 2501 movs r5, #1 +10020ba4: 4544 cmp r4, r8 +10020ba6: dda0 ble.n 10020aea +10020ba8: e7a9 b.n 10020afe +10020baa: 4544 cmp r4, r8 +10020bac: da07 bge.n 10020bbe +10020bae: 9b03 ldr r3, [sp, #12] +10020bb0: 3401 adds r4, #1 +10020bb2: 4423 add r3, r4 +10020bb4: f813 3c01 ldrb.w r3, [r3, #-1] +10020bb8: 2b00 cmp r3, #0 +10020bba: d0f6 beq.n 10020baa +10020bbc: e79f b.n 10020afe +10020bbe: f8d7 0073 ldr.w r0, [r7, #115] ; 0x73 +10020bc2: f1d0 0001 rsbs r0, r0, #1 +10020bc6: bf38 it cc +10020bc8: 2000 movcc r0, #0 +10020bca: 4240 negs r0, r0 +10020bcc: b005 add sp, #20 +10020bce: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10020bd2: bf00 nop +10020bd4: 10053094 .word 0x10053094 + +10020bd8 : +10020bd8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10020bdc: 4d40 ldr r5, [pc, #256] ; (10020ce0 ) +10020bde: f8d1 87b1 ldr.w r8, [r1, #1969] ; 0x7b1 +10020be2: b086 sub sp, #24 +10020be4: 460c mov r4, r1 +10020be6: f201 67b1 addw r7, r1, #1713 ; 0x6b1 +10020bea: 6a2b ldr r3, [r5, #32] +10020bec: 3008 adds r0, #8 +10020bee: 493d ldr r1, [pc, #244] ; (10020ce4 ) +10020bf0: 220c movs r2, #12 +10020bf2: 4798 blx r3 +10020bf4: 462e mov r6, r5 +10020bf6: 2800 cmp r0, #0 +10020bf8: d162 bne.n 10020cc0 +10020bfa: 6a2b ldr r3, [r5, #32] +10020bfc: 4638 mov r0, r7 +10020bfe: 493a ldr r1, [pc, #232] ; (10020ce8 ) +10020c00: 2208 movs r2, #8 +10020c02: 4798 blx r3 +10020c04: b1c0 cbz r0, 10020c38 +10020c06: f894 06b4 ldrb.w r0, [r4, #1716] ; 0x6b4 +10020c0a: f894 16b1 ldrb.w r1, [r4, #1713] ; 0x6b1 +10020c0e: f894 26b2 ldrb.w r2, [r4, #1714] ; 0x6b2 +10020c12: f894 36b3 ldrb.w r3, [r4, #1715] ; 0x6b3 +10020c16: 9000 str r0, [sp, #0] +10020c18: f894 06b5 ldrb.w r0, [r4, #1717] ; 0x6b5 +10020c1c: 9001 str r0, [sp, #4] +10020c1e: f894 06b6 ldrb.w r0, [r4, #1718] ; 0x6b6 +10020c22: 9002 str r0, [sp, #8] +10020c24: f894 06b7 ldrb.w r0, [r4, #1719] ; 0x6b7 +10020c28: 9003 str r0, [sp, #12] +10020c2a: f894 06b8 ldrb.w r0, [r4, #1720] ; 0x6b8 +10020c2e: 9004 str r0, [sp, #16] +10020c30: 682c ldr r4, [r5, #0] +10020c32: 482e ldr r0, [pc, #184] ; (10020cec ) +10020c34: 47a0 blx r4 +10020c36: e040 b.n 10020cba +10020c38: f204 65b9 addw r5, r4, #1721 ; 0x6b9 +10020c3c: f1a8 0308 sub.w r3, r8, #8 +10020c40: b2db uxtb r3, r3 +10020c42: 4298 cmp r0, r3 +10020c44: da2f bge.n 10020ca6 +10020c46: 7829 ldrb r1, [r5, #0] +10020c48: 2901 cmp r1, #1 +10020c4a: d105 bne.n 10020c58 +10020c4c: 786f ldrb r7, [r5, #1] +10020c4e: 3502 adds r5, #2 +10020c50: 4628 mov r0, r5 +10020c52: f104 0113 add.w r1, r4, #19 +10020c56: e00e b.n 10020c76 +10020c58: 2902 cmp r1, #2 +10020c5a: d105 bne.n 10020c68 +10020c5c: 786f ldrb r7, [r5, #1] +10020c5e: 3502 adds r5, #2 +10020c60: 4628 mov r0, r5 +10020c62: f104 0133 add.w r1, r4, #51 ; 0x33 +10020c66: e006 b.n 10020c76 +10020c68: 2903 cmp r1, #3 +10020c6a: d10a bne.n 10020c82 +10020c6c: 786f ldrb r7, [r5, #1] +10020c6e: 3502 adds r5, #2 +10020c70: 4628 mov r0, r5 +10020c72: f104 0173 add.w r1, r4, #115 ; 0x73 +10020c76: 463a mov r2, r7 +10020c78: f7ff fc9a bl 100205b0 +10020c7c: 443d add r5, r7 +10020c7e: 1cb8 adds r0, r7, #2 +10020c80: e7dc b.n 10020c3c +10020c82: 6833 ldr r3, [r6, #0] +10020c84: b929 cbnz r1, 10020c92 +10020c86: 481a ldr r0, [pc, #104] ; (10020cf0 ) +10020c88: 4798 blx r3 +10020c8a: 6833 ldr r3, [r6, #0] +10020c8c: 4819 ldr r0, [pc, #100] ; (10020cf4 ) +10020c8e: 4798 blx r3 +10020c90: e009 b.n 10020ca6 +10020c92: 4819 ldr r0, [pc, #100] ; (10020cf8 ) +10020c94: 4798 blx r3 +10020c96: 6833 ldr r3, [r6, #0] +10020c98: 4816 ldr r0, [pc, #88] ; (10020cf4 ) +10020c9a: 4798 blx r3 +10020c9c: 7868 ldrb r0, [r5, #1] +10020c9e: 3502 adds r5, #2 +10020ca0: 4405 add r5, r0 +10020ca2: 3002 adds r0, #2 +10020ca4: e7ca b.n 10020c3c +10020ca6: f8d4 3073 ldr.w r3, [r4, #115] ; 0x73 +10020caa: 2000 movs r0, #0 +10020cac: b9ab cbnz r3, 10020cda +10020cae: 6833 ldr r3, [r6, #0] +10020cb0: 4812 ldr r0, [pc, #72] ; (10020cfc ) +10020cb2: 4798 blx r3 +10020cb4: 6833 ldr r3, [r6, #0] +10020cb6: 480f ldr r0, [pc, #60] ; (10020cf4 ) +10020cb8: 4798 blx r3 +10020cba: f04f 30ff mov.w r0, #4294967295 +10020cbe: e00c b.n 10020cda +10020cc0: f8d4 27b1 ldr.w r2, [r4, #1969] ; 0x7b1 +10020cc4: 4620 mov r0, r4 +10020cc6: 4639 mov r1, r7 +10020cc8: b2d2 uxtb r2, r2 +10020cca: f7ff ff03 bl 10020ad4 +10020cce: 1e04 subs r4, r0, #0 +10020cd0: da02 bge.n 10020cd8 +10020cd2: 682b ldr r3, [r5, #0] +10020cd4: 480a ldr r0, [pc, #40] ; (10020d00 ) +10020cd6: 4798 blx r3 +10020cd8: 4620 mov r0, r4 +10020cda: b006 add sp, #24 +10020cdc: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10020ce0: 10053094 .word 0x10053094 +10020ce4: 10049d04 .word 0x10049d04 +10020ce8: 10049c8e .word 0x10049c8e +10020cec: 10049d11 .word 0x10049d11 +10020cf0: 10049d4e .word 0x10049d4e +10020cf4: 1004bbea .word 0x1004bbea +10020cf8: 10049d62 .word 0x10049d62 +10020cfc: 10049d7b .word 0x10049d7b +10020d00: 10049d97 .word 0x10049d97 + +10020d04 : +10020d04: b510 push {r4, lr} +10020d06: 4c09 ldr r4, [pc, #36] ; (10020d2c ) +10020d08: f7ff fde4 bl 100208d4 +10020d0c: 6863 ldr r3, [r4, #4] +10020d0e: 2100 movs r1, #0 +10020d10: 2206 movs r2, #6 +10020d12: 4807 ldr r0, [pc, #28] ; (10020d30 ) +10020d14: 4798 blx r3 +10020d16: 4b07 ldr r3, [pc, #28] ; (10020d34 ) +10020d18: 2200 movs r2, #0 +10020d1a: 701a strb r2, [r3, #0] +10020d1c: 4a06 ldr r2, [pc, #24] ; (10020d38 ) +10020d1e: 2301 movs r3, #1 +10020d20: 6013 str r3, [r2, #0] +10020d22: 6aa2 ldr r2, [r4, #40] ; 0x28 +10020d24: 6013 str r3, [r2, #0] +10020d26: f7ff febc bl 10020aa2 +10020d2a: bd10 pop {r4, pc} +10020d2c: 10053094 .word 0x10053094 +10020d30: 10053074 .word 0x10053074 +10020d34: 10053088 .word 0x10053088 +10020d38: 1005307c .word 0x1005307c + +10020d3c : +10020d3c: b508 push {r3, lr} +10020d3e: f7ff fdc9 bl 100208d4 +10020d42: 4b02 ldr r3, [pc, #8] ; (10020d4c ) +10020d44: 2200 movs r2, #0 +10020d46: 601a str r2, [r3, #0] +10020d48: bd08 pop {r3, pc} +10020d4a: bf00 nop +10020d4c: 1005307c .word 0x1005307c + +10020d50 : +10020d50: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10020d54: 4f55 ldr r7, [pc, #340] ; (10020eac ) +10020d56: 4604 mov r4, r0 +10020d58: 4608 mov r0, r1 +10020d5a: f7ff fea3 bl 10020aa4 +10020d5e: 6838 ldr r0, [r7, #0] +10020d60: 4d53 ldr r5, [pc, #332] ; (10020eb0 ) +10020d62: b150 cbz r0, 10020d7a +10020d64: 696b ldr r3, [r5, #20] +10020d66: 2100 movs r1, #0 +10020d68: 4798 blx r3 +10020d6a: 2300 movs r3, #0 +10020d6c: 603b str r3, [r7, #0] +10020d6e: 4851 ldr r0, [pc, #324] ; (10020eb4 ) +10020d70: 682b ldr r3, [r5, #0] +10020d72: 4798 blx r3 +10020d74: 682b ldr r3, [r5, #0] +10020d76: 4850 ldr r0, [pc, #320] ; (10020eb8 ) +10020d78: 4798 blx r3 +10020d7a: 69ab ldr r3, [r5, #24] +10020d7c: f640 20bb movw r0, #2747 ; 0xabb +10020d80: 4798 blx r3 +10020d82: 4e4b ldr r6, [pc, #300] ; (10020eb0 ) +10020d84: 6038 str r0, [r7, #0] +10020d86: b948 cbnz r0, 10020d9c +10020d88: 6833 ldr r3, [r6, #0] +10020d8a: 484c ldr r0, [pc, #304] ; (10020ebc ) +10020d8c: 4798 blx r3 +10020d8e: 6833 ldr r3, [r6, #0] +10020d90: 4849 ldr r0, [pc, #292] ; (10020eb8 ) +10020d92: 4798 blx r3 +10020d94: f04f 30ff mov.w r0, #4294967295 +10020d98: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10020d9c: 4f48 ldr r7, [pc, #288] ; (10020ec0 ) +10020d9e: 6838 ldr r0, [r7, #0] +10020da0: b150 cbz r0, 10020db8 +10020da2: 6973 ldr r3, [r6, #20] +10020da4: 2100 movs r1, #0 +10020da6: 4798 blx r3 +10020da8: 2300 movs r3, #0 +10020daa: 603b str r3, [r7, #0] +10020dac: 4845 ldr r0, [pc, #276] ; (10020ec4 ) +10020dae: 6833 ldr r3, [r6, #0] +10020db0: 4798 blx r3 +10020db2: 6833 ldr r3, [r6, #0] +10020db4: 4840 ldr r0, [pc, #256] ; (10020eb8 ) +10020db6: 4798 blx r3 +10020db8: 2c00 cmp r4, #0 +10020dba: d068 beq.n 10020e8e +10020dbc: 68eb ldr r3, [r5, #12] +10020dbe: 4620 mov r0, r4 +10020dc0: 4798 blx r3 +10020dc2: 2807 cmp r0, #7 +10020dc4: 4e3a ldr r6, [pc, #232] ; (10020eb0 ) +10020dc6: d821 bhi.n 10020e0c +10020dc8: 69f3 ldr r3, [r6, #28] +10020dca: 2009 movs r0, #9 +10020dcc: 4798 blx r3 +10020dce: 68f3 ldr r3, [r6, #12] +10020dd0: 4680 mov r8, r0 +10020dd2: 6038 str r0, [r7, #0] +10020dd4: 4620 mov r0, r4 +10020dd6: f8d6 9008 ldr.w r9, [r6, #8] +10020dda: 4798 blx r3 +10020ddc: 4621 mov r1, r4 +10020dde: 4602 mov r2, r0 +10020de0: 4640 mov r0, r8 +10020de2: 47c8 blx r9 +10020de4: 68f3 ldr r3, [r6, #12] +10020de6: 4620 mov r0, r4 +10020de8: 4798 blx r3 +10020dea: 683b ldr r3, [r7, #0] +10020dec: 2807 cmp r0, #7 +10020dee: dc03 bgt.n 10020df8 +10020df0: 2230 movs r2, #48 ; 0x30 +10020df2: 541a strb r2, [r3, r0] +10020df4: 3001 adds r0, #1 +10020df6: e7f9 b.n 10020dec +10020df8: 683b ldr r3, [r7, #0] +10020dfa: 2200 movs r2, #0 +10020dfc: 721a strb r2, [r3, #8] +10020dfe: 68eb ldr r3, [r5, #12] +10020e00: 4620 mov r0, r4 +10020e02: 682e ldr r6, [r5, #0] +10020e04: 4798 blx r3 +10020e06: 4601 mov r1, r0 +10020e08: 482f ldr r0, [pc, #188] ; (10020ec8 ) +10020e0a: e03c b.n 10020e86 +10020e0c: 68f3 ldr r3, [r6, #12] +10020e0e: 4620 mov r0, r4 +10020e10: 4798 blx r3 +10020e12: 2807 cmp r0, #7 +10020e14: d925 bls.n 10020e62 +10020e16: 68f3 ldr r3, [r6, #12] +10020e18: 4620 mov r0, r4 +10020e1a: 4798 blx r3 +10020e1c: 2840 cmp r0, #64 ; 0x40 +10020e1e: d820 bhi.n 10020e62 +10020e20: 68f3 ldr r3, [r6, #12] +10020e22: 4620 mov r0, r4 +10020e24: f8d6 801c ldr.w r8, [r6, #28] +10020e28: 4798 blx r3 +10020e2a: 3001 adds r0, #1 +10020e2c: 47c0 blx r8 +10020e2e: 68f3 ldr r3, [r6, #12] +10020e30: 6038 str r0, [r7, #0] +10020e32: 4680 mov r8, r0 +10020e34: 4620 mov r0, r4 +10020e36: f8d6 9008 ldr.w r9, [r6, #8] +10020e3a: 4798 blx r3 +10020e3c: 4621 mov r1, r4 +10020e3e: 4602 mov r2, r0 +10020e40: 4640 mov r0, r8 +10020e42: 47c8 blx r9 +10020e44: 68f3 ldr r3, [r6, #12] +10020e46: 4620 mov r0, r4 +10020e48: 683f ldr r7, [r7, #0] +10020e4a: 4798 blx r3 +10020e4c: 2300 movs r3, #0 +10020e4e: 543b strb r3, [r7, r0] +10020e50: 68f3 ldr r3, [r6, #12] +10020e52: 4620 mov r0, r4 +10020e54: 6837 ldr r7, [r6, #0] +10020e56: 4798 blx r3 +10020e58: 4601 mov r1, r0 +10020e5a: 481c ldr r0, [pc, #112] ; (10020ecc ) +10020e5c: 47b8 blx r7 +10020e5e: 6833 ldr r3, [r6, #0] +10020e60: e013 b.n 10020e8a +10020e62: 69eb ldr r3, [r5, #28] +10020e64: 2041 movs r0, #65 ; 0x41 +10020e66: 4798 blx r3 +10020e68: 4621 mov r1, r4 +10020e6a: 68ab ldr r3, [r5, #8] +10020e6c: 2241 movs r2, #65 ; 0x41 +10020e6e: 6038 str r0, [r7, #0] +10020e70: 4798 blx r3 +10020e72: 683b ldr r3, [r7, #0] +10020e74: 2200 movs r2, #0 +10020e76: f883 2040 strb.w r2, [r3, #64] ; 0x40 +10020e7a: 4620 mov r0, r4 +10020e7c: 68eb ldr r3, [r5, #12] +10020e7e: 682e ldr r6, [r5, #0] +10020e80: 4798 blx r3 +10020e82: 4601 mov r1, r0 +10020e84: 4812 ldr r0, [pc, #72] ; (10020ed0 ) +10020e86: 47b0 blx r6 +10020e88: 682b ldr r3, [r5, #0] +10020e8a: 480b ldr r0, [pc, #44] ; (10020eb8 ) +10020e8c: 4798 blx r3 +10020e8e: f7ff fd21 bl 100208d4 +10020e92: 686b ldr r3, [r5, #4] +10020e94: 2100 movs r1, #0 +10020e96: 2206 movs r2, #6 +10020e98: 480e ldr r0, [pc, #56] ; (10020ed4 ) +10020e9a: 4798 blx r3 +10020e9c: 4b0e ldr r3, [pc, #56] ; (10020ed8 ) +10020e9e: 2000 movs r0, #0 +10020ea0: 7018 strb r0, [r3, #0] +10020ea2: 4b0e ldr r3, [pc, #56] ; (10020edc ) +10020ea4: 2201 movs r2, #1 +10020ea6: 601a str r2, [r3, #0] +10020ea8: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10020eac: 100530d0 .word 0x100530d0 +10020eb0: 10053094 .word 0x10053094 +10020eb4: 10049da6 .word 0x10049da6 +10020eb8: 1004bbea .word 0x1004bbea +10020ebc: 10049dbb .word 0x10049dbb +10020ec0: 10053084 .word 0x10053084 +10020ec4: 10049dd6 .word 0x10049dd6 +10020ec8: 10049deb .word 0x10049deb +10020ecc: 10049e1a .word 0x10049e1a +10020ed0: 10049e37 .word 0x10049e37 +10020ed4: 10053074 .word 0x10053074 +10020ed8: 10053088 .word 0x10053088 +10020edc: 1005307c .word 0x1005307c + +10020ee0 : +10020ee0: b510 push {r4, lr} +10020ee2: 4c0b ldr r4, [pc, #44] ; (10020f10 ) +10020ee4: 6820 ldr r0, [r4, #0] +10020ee6: b128 cbz r0, 10020ef4 +10020ee8: 4b0a ldr r3, [pc, #40] ; (10020f14 ) +10020eea: 2100 movs r1, #0 +10020eec: 695b ldr r3, [r3, #20] +10020eee: 4798 blx r3 +10020ef0: 2300 movs r3, #0 +10020ef2: 6023 str r3, [r4, #0] +10020ef4: 4c08 ldr r4, [pc, #32] ; (10020f18 ) +10020ef6: 6820 ldr r0, [r4, #0] +10020ef8: b128 cbz r0, 10020f06 +10020efa: 4b06 ldr r3, [pc, #24] ; (10020f14 ) +10020efc: 2100 movs r1, #0 +10020efe: 695b ldr r3, [r3, #20] +10020f00: 4798 blx r3 +10020f02: 2300 movs r3, #0 +10020f04: 6023 str r3, [r4, #0] +10020f06: e8bd 4010 ldmia.w sp!, {r4, lr} +10020f0a: f7ff bdd9 b.w 10020ac0 +10020f0e: bf00 nop +10020f10: 10053084 .word 0x10053084 +10020f14: 10053094 .word 0x10053094 +10020f18: 100530d0 .word 0x100530d0 + +10020f1c : +10020f1c: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10020f20: 469a mov sl, r3 +10020f22: 7803 ldrb r3, [r0, #0] +10020f24: 4688 mov r8, r1 +10020f26: 2b01 cmp r3, #1 +10020f28: 4605 mov r5, r0 +10020f2a: 4611 mov r1, r2 +10020f2c: f8dd 9028 ldr.w r9, [sp, #40] ; 0x28 +10020f30: d001 beq.n 10020f36 +10020f32: 2400 movs r4, #0 +10020f34: e152 b.n 100211dc +10020f36: 7844 ldrb r4, [r0, #1] +10020f38: 2c00 cmp r4, #0 +10020f3a: d1fa bne.n 10020f32 +10020f3c: 7883 ldrb r3, [r0, #2] +10020f3e: 2b5e cmp r3, #94 ; 0x5e +10020f40: d1f7 bne.n 10020f32 +10020f42: 4ea8 ldr r6, [pc, #672] ; (100211e4 ) +10020f44: 6833 ldr r3, [r6, #0] +10020f46: 1e5a subs r2, r3, #1 +10020f48: 2a01 cmp r2, #1 +10020f4a: f200 8098 bhi.w 1002107e +10020f4e: f7ff fd8f bl 10020a70 +10020f52: 2800 cmp r0, #0 +10020f54: d0ed beq.n 10020f32 +10020f56: 4fa4 ldr r7, [pc, #656] ; (100211e8 ) +10020f58: 783b ldrb r3, [r7, #0] +10020f5a: 2b01 cmp r3, #1 +10020f5c: d16d bne.n 1002103a +10020f5e: f8df 929c ldr.w r9, [pc, #668] ; 100211fc +10020f62: 4ba2 ldr r3, [pc, #648] ; (100211ec ) +10020f64: f8d9 0000 ldr.w r0, [r9] +10020f68: 6a1b ldr r3, [r3, #32] +10020f6a: 3001 adds r0, #1 +10020f6c: 4641 mov r1, r8 +10020f6e: 2206 movs r2, #6 +10020f70: 4798 blx r3 +10020f72: 4604 mov r4, r0 +10020f74: 2800 cmp r0, #0 +10020f76: d160 bne.n 1002103a +10020f78: 78ea ldrb r2, [r5, #3] +10020f7a: f8d9 3000 ldr.w r3, [r9] +10020f7e: 2006 movs r0, #6 +10020f80: fb00 3102 mla r1, r0, r2, r3 +10020f84: f891 c077 ldrb.w ip, [r1, #119] ; 0x77 +10020f88: f1bc 0f00 cmp.w ip, #0 +10020f8c: d1d1 bne.n 10020f32 +10020f8e: 2a08 cmp r2, #8 +10020f90: dd14 ble.n 10020fbc +10020f92: 3a09 subs r2, #9 +10020f94: fb00 3002 mla r0, r0, r2, r3 +10020f98: f890 10ad ldrb.w r1, [r0, #173] ; 0xad +10020f9c: 2900 cmp r1, #0 +10020f9e: d1c8 bne.n 10020f32 +10020fa0: 4602 mov r2, r0 +10020fa2: 2300 movs r3, #0 +10020fa4: 5ce8 ldrb r0, [r5, r3] +10020fa6: 18d1 adds r1, r2, r3 +10020fa8: 3301 adds r3, #1 +10020faa: 2b06 cmp r3, #6 +10020fac: f881 00ad strb.w r0, [r1, #173] ; 0xad +10020fb0: d1f8 bne.n 10020fa4 +10020fb2: 4b8f ldr r3, [pc, #572] ; (100211f0 ) +10020fb4: 681a ldr r2, [r3, #0] +10020fb6: 3201 adds r2, #1 +10020fb8: 601a str r2, [r3, #0] +10020fba: e00f b.n 10020fdc +10020fbc: 4623 mov r3, r4 +10020fbe: f815 c003 ldrb.w ip, [r5, r3] +10020fc2: 18c8 adds r0, r1, r3 +10020fc4: 3301 adds r3, #1 +10020fc6: 2b06 cmp r3, #6 +10020fc8: f880 c077 strb.w ip, [r0, #119] ; 0x77 +10020fcc: d1f7 bne.n 10020fbe +10020fce: 2101 movs r1, #1 +10020fd0: fa01 f202 lsl.w r2, r1, r2 +10020fd4: 4b87 ldr r3, [pc, #540] ; (100211f4 ) +10020fd6: 6819 ldr r1, [r3, #0] +10020fd8: 4311 orrs r1, r2 +10020fda: 6019 str r1, [r3, #0] +10020fdc: 4b85 ldr r3, [pc, #532] ; (100211f4 ) +10020fde: f240 11ff movw r1, #511 ; 0x1ff +10020fe2: 681a ldr r2, [r3, #0] +10020fe4: 4698 mov r8, r3 +10020fe6: f3c2 0208 ubfx r2, r2, #0, #9 +10020fea: 428a cmp r2, r1 +10020fec: d1a1 bne.n 10020f32 +10020fee: 2500 movs r5, #0 +10020ff0: f8d9 1000 ldr.w r1, [r9] +10020ff4: f891 38f5 ldrb.w r3, [r1, #2293] ; 0x8f5 +10020ff8: 429d cmp r5, r3 +10020ffa: da1b bge.n 10021034 +10020ffc: f505 730e add.w r3, r5, #568 ; 0x238 +10021000: eb01 0383 add.w r3, r1, r3, lsl #2 +10021004: f8d3 0001 ldr.w r0, [r3, #1] +10021008: 4b7b ldr r3, [pc, #492] ; (100211f8 ) +1002100a: 6018 str r0, [r3, #0] +1002100c: b180 cbz r0, 10021030 +1002100e: 6843 ldr r3, [r0, #4] +10021010: 079b lsls r3, r3, #30 +10021012: d50d bpl.n 10021030 +10021014: 6a83 ldr r3, [r0, #40] ; 0x28 +10021016: b92b cbnz r3, 10021024 +10021018: 2303 movs r3, #3 +1002101a: 6033 str r3, [r6, #0] +1002101c: 2300 movs r3, #0 +1002101e: f8c8 3000 str.w r3, [r8] +10021022: e0db b.n 100211dc +10021024: 4798 blx r3 +10021026: 2800 cmp r0, #0 +10021028: d0f6 beq.n 10021018 +1002102a: 1c42 adds r2, r0, #1 +1002102c: f000 80d5 beq.w 100211da +10021030: 3501 adds r5, #1 +10021032: e7dd b.n 10020ff0 +10021034: 2300 movs r3, #0 +10021036: 703b strb r3, [r7, #0] +10021038: e0cc b.n 100211d4 +1002103a: 783c ldrb r4, [r7, #0] +1002103c: 2c00 cmp r4, #0 +1002103e: f47f af78 bne.w 10020f32 +10021042: 4b6e ldr r3, [pc, #440] ; (100211fc ) +10021044: 4d69 ldr r5, [pc, #420] ; (100211ec ) +10021046: 6818 ldr r0, [r3, #0] +10021048: 4641 mov r1, r8 +1002104a: 68ab ldr r3, [r5, #8] +1002104c: 2206 movs r2, #6 +1002104e: 3001 adds r0, #1 +10021050: 4798 blx r3 +10021052: 68ab ldr r3, [r5, #8] +10021054: f10a 0118 add.w r1, sl, #24 +10021058: 2206 movs r2, #6 +1002105a: 4869 ldr r0, [pc, #420] ; (10021200 ) +1002105c: 4798 blx r3 +1002105e: 4a69 ldr r2, [pc, #420] ; (10021204 ) +10021060: 2301 movs r3, #1 +10021062: 7013 strb r3, [r2, #0] +10021064: f89a 101e ldrb.w r1, [sl, #30] +10021068: 4a67 ldr r2, [pc, #412] ; (10021208 ) +1002106a: 7011 strb r1, [r2, #0] +1002106c: 2202 movs r2, #2 +1002106e: 6032 str r2, [r6, #0] +10021070: 4a60 ldr r2, [pc, #384] ; (100211f4 ) +10021072: 6014 str r4, [r2, #0] +10021074: 4a5c ldr r2, [pc, #368] ; (100211e8 ) +10021076: 7013 strb r3, [r2, #0] +10021078: f7ff fd12 bl 10020aa0 +1002107c: e0ae b.n 100211dc +1002107e: 2b03 cmp r3, #3 +10021080: f040 80a0 bne.w 100211c4 +10021084: f7ff fcf4 bl 10020a70 +10021088: 2800 cmp r0, #0 +1002108a: f43f af52 beq.w 10020f32 +1002108e: 4f5b ldr r7, [pc, #364] ; (100211fc ) +10021090: 4e56 ldr r6, [pc, #344] ; (100211ec ) +10021092: 6838 ldr r0, [r7, #0] +10021094: 6a33 ldr r3, [r6, #32] +10021096: 3001 adds r0, #1 +10021098: 4641 mov r1, r8 +1002109a: 2206 movs r2, #6 +1002109c: 4798 blx r3 +1002109e: 2800 cmp r0, #0 +100210a0: f47f af47 bne.w 10020f32 +100210a4: 78eb ldrb r3, [r5, #3] +100210a6: 2b08 cmp r3, #8 +100210a8: f77f af43 ble.w 10020f32 +100210ac: 4c50 ldr r4, [pc, #320] ; (100211f0 ) +100210ae: 6839 ldr r1, [r7, #0] +100210b0: 6820 ldr r0, [r4, #0] +100210b2: f8d1 26ad ldr.w r2, [r1, #1709] ; 0x6ad +100210b6: 46a0 mov r8, r4 +100210b8: 4290 cmp r0, r2 +100210ba: d018 beq.n 100210ee +100210bc: 3b09 subs r3, #9 +100210be: 2406 movs r4, #6 +100210c0: fb04 1c03 mla ip, r4, r3, r1 +100210c4: f89c c0ad ldrb.w ip, [ip, #173] ; 0xad +100210c8: f1bc 0f00 cmp.w ip, #0 +100210cc: f47f af31 bne.w 10020f32 +100210d0: fb04 1a03 mla sl, r4, r3, r1 +100210d4: 2300 movs r3, #0 +100210d6: f815 c003 ldrb.w ip, [r5, r3] +100210da: eb0a 0403 add.w r4, sl, r3 +100210de: 3301 adds r3, #1 +100210e0: 2b06 cmp r3, #6 +100210e2: f884 c0ad strb.w ip, [r4, #173] ; 0xad +100210e6: d1f6 bne.n 100210d6 +100210e8: 3001 adds r0, #1 +100210ea: f8c8 0000 str.w r0, [r8] +100210ee: f8d8 3000 ldr.w r3, [r8] +100210f2: 4293 cmp r3, r2 +100210f4: f47f af1d bne.w 10020f32 +100210f8: 4c3f ldr r4, [pc, #252] ; (100211f8 ) +100210fa: 4d44 ldr r5, [pc, #272] ; (1002120c ) +100210fc: 2300 movs r3, #0 +100210fe: 6820 ldr r0, [r4, #0] +10021100: 702b strb r3, [r5, #0] +10021102: 6ac3 ldr r3, [r0, #44] ; 0x2c +10021104: b103 cbz r3, 10021108 +10021106: 4798 blx r3 +10021108: 6820 ldr r0, [r4, #0] +1002110a: 6839 ldr r1, [r7, #0] +1002110c: f8df b0e8 ldr.w fp, [pc, #232] ; 100211f8 +10021110: f8df a0e8 ldr.w sl, [pc, #232] ; 100211fc +10021114: f7ff fa6a bl 100205ec +10021118: b968 cbnz r0, 10021136 +1002111a: f8db 0000 ldr.w r0, [fp] +1002111e: f8da 1000 ldr.w r1, [sl] +10021122: f7ff fa6a bl 100205fa +10021126: b930 cbnz r0, 10021136 +10021128: f8db 0000 ldr.w r0, [fp] +1002112c: f8da 1000 ldr.w r1, [sl] +10021130: f7ff fa6a bl 10020608 +10021134: b1e8 cbz r0, 10021172 +10021136: 2301 movs r3, #1 +10021138: 6820 ldr r0, [r4, #0] +1002113a: 6839 ldr r1, [r7, #0] +1002113c: 702b strb r3, [r5, #0] +1002113e: f7ff fa55 bl 100205ec +10021142: f8df b0b4 ldr.w fp, [pc, #180] ; 100211f8 +10021146: f8df a0b4 ldr.w sl, [pc, #180] ; 100211fc +1002114a: 4604 mov r4, r0 +1002114c: b970 cbnz r0, 1002116c +1002114e: f8db 0000 ldr.w r0, [fp] +10021152: f8da 1000 ldr.w r1, [sl] +10021156: f7ff fa50 bl 100205fa +1002115a: 4604 mov r4, r0 +1002115c: b930 cbnz r0, 1002116c +1002115e: f8db 0000 ldr.w r0, [fp] +10021162: f8da 1000 ldr.w r1, [sl] +10021166: f7ff fa4f bl 10020608 +1002116a: 4604 mov r4, r0 +1002116c: 2300 movs r3, #0 +1002116e: 702b strb r3, [r5, #0] +10021170: b994 cbnz r4, 10021198 +10021172: 6839 ldr r1, [r7, #0] +10021174: 68b3 ldr r3, [r6, #8] +10021176: 3113 adds r1, #19 +10021178: 2220 movs r2, #32 +1002117a: 4648 mov r0, r9 +1002117c: 4798 blx r3 +1002117e: 6839 ldr r1, [r7, #0] +10021180: 68b3 ldr r3, [r6, #8] +10021182: f109 0020 add.w r0, r9, #32 +10021186: 3133 adds r1, #51 ; 0x33 +10021188: 2240 movs r2, #64 ; 0x40 +1002118a: 4798 blx r3 +1002118c: 683b ldr r3, [r7, #0] +1002118e: 2400 movs r4, #0 +10021190: f8d3 3073 ldr.w r3, [r3, #115] ; 0x73 +10021194: f8c9 3061 str.w r3, [r9, #97] ; 0x61 +10021198: 2500 movs r5, #0 +1002119a: f8c8 5000 str.w r5, [r8] +1002119e: f7ff fdcd bl 10020d3c +100211a2: 1c63 adds r3, r4, #1 +100211a4: d10a bne.n 100211bc +100211a6: 6833 ldr r3, [r6, #0] +100211a8: 4819 ldr r0, [pc, #100] ; (10021210 ) +100211aa: 4798 blx r3 +100211ac: 6833 ldr r3, [r6, #0] +100211ae: 4819 ldr r0, [pc, #100] ; (10021214 ) +100211b0: 4798 blx r3 +100211b2: 6833 ldr r3, [r6, #0] +100211b4: 4918 ldr r1, [pc, #96] ; (10021218 ) +100211b6: 4819 ldr r0, [pc, #100] ; (1002121c ) +100211b8: 4798 blx r3 +100211ba: e00f b.n 100211dc +100211bc: 6ab3 ldr r3, [r6, #40] ; 0x28 +100211be: 2401 movs r4, #1 +100211c0: 601d str r5, [r3, #0] +100211c2: e00b b.n 100211dc +100211c4: 4d09 ldr r5, [pc, #36] ; (100211ec ) +100211c6: 4619 mov r1, r3 +100211c8: 682a ldr r2, [r5, #0] +100211ca: 4815 ldr r0, [pc, #84] ; (10021220 ) +100211cc: 4790 blx r2 +100211ce: 682b ldr r3, [r5, #0] +100211d0: 4810 ldr r0, [pc, #64] ; (10021214 ) +100211d2: 4798 blx r3 +100211d4: f7ff fd96 bl 10020d04 +100211d8: e000 b.n 100211dc +100211da: 4604 mov r4, r0 +100211dc: 4620 mov r0, r4 +100211de: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +100211e2: bf00 nop +100211e4: 1005307c .word 0x1005307c +100211e8: 100530c0 .word 0x100530c0 +100211ec: 10053094 .word 0x10053094 +100211f0: 10053090 .word 0x10053090 +100211f4: 100530cc .word 0x100530cc +100211f8: 100530c8 .word 0x100530c8 +100211fc: 100530d0 .word 0x100530d0 +10021200: 10053074 .word 0x10053074 +10021204: 10053088 .word 0x10053088 +10021208: 1004d8fc .word 0x1004d8fc +1002120c: 10053080 .word 0x10053080 +10021210: 1004a054 .word 0x1004a054 +10021214: 1004bbea .word 0x1004bbea +10021218: 1004a07f .word 0x1004a07f +1002121c: 10049ce1 .word 0x10049ce1 +10021220: 1004a0c6 .word 0x1004a0c6 + +10021224 : +10021224: f8d0 3454 ldr.w r3, [r0, #1108] ; 0x454 +10021228: b510 push {r4, lr} +1002122a: 2b01 cmp r3, #1 +1002122c: d04f beq.n 100212ce +1002122e: f8b0 24c0 ldrh.w r2, [r0, #1216] ; 0x4c0 +10021232: f8b0 34ba ldrh.w r3, [r0, #1210] ; 0x4ba +10021236: f012 0f04 tst.w r2, #4 +1002123a: d103 bne.n 10021244 +1002123c: b153 cbz r3, 10021254 +1002123e: f042 0204 orr.w r2, r2, #4 +10021242: e002 b.n 1002124a +10021244: b92b cbnz r3, 10021252 +10021246: f022 0204 bic.w r2, r2, #4 +1002124a: f8a0 24c0 strh.w r2, [r0, #1216] ; 0x4c0 +1002124e: 2301 movs r3, #1 +10021250: e000 b.n 10021254 +10021252: 2300 movs r3, #0 +10021254: f8b0 14c0 ldrh.w r1, [r0, #1216] ; 0x4c0 +10021258: f8b0 2450 ldrh.w r2, [r0, #1104] ; 0x450 +1002125c: f011 0f10 tst.w r1, #16 +10021260: d109 bne.n 10021276 +10021262: b912 cbnz r2, 1002126a +10021264: f890 44be ldrb.w r4, [r0, #1214] ; 0x4be +10021268: b184 cbz r4, 1002128c +1002126a: f041 0110 orr.w r1, r1, #16 +1002126e: f8a0 14c0 strh.w r1, [r0, #1216] ; 0x4c0 +10021272: 3301 adds r3, #1 +10021274: e009 b.n 1002128a +10021276: b942 cbnz r2, 1002128a +10021278: f890 24be ldrb.w r2, [r0, #1214] ; 0x4be +1002127c: b932 cbnz r2, 1002128c +1002127e: f021 0110 bic.w r1, r1, #16 +10021282: f8a0 14c0 strh.w r1, [r0, #1216] ; 0x4c0 +10021286: 3301 adds r3, #1 +10021288: e000 b.n 1002128c +1002128a: b982 cbnz r2, 100212ae +1002128c: f8b0 24c0 ldrh.w r2, [r0, #1216] ; 0x4c0 +10021290: 0751 lsls r1, r2, #29 +10021292: d40c bmi.n 100212ae +10021294: f8b0 2462 ldrh.w r2, [r0, #1122] ; 0x462 +10021298: 0792 lsls r2, r2, #30 +1002129a: d502 bpl.n 100212a2 +1002129c: f8b0 24bc ldrh.w r2, [r0, #1212] ; 0x4bc +100212a0: b93a cbnz r2, 100212b2 +100212a2: f890 24be ldrb.w r2, [r0, #1214] ; 0x4be +100212a6: 3200 adds r2, #0 +100212a8: bf18 it ne +100212aa: 2201 movne r2, #1 +100212ac: e002 b.n 100212b4 +100212ae: 2203 movs r2, #3 +100212b0: e000 b.n 100212b4 +100212b2: 2202 movs r2, #2 +100212b4: f8b0 14c0 ldrh.w r1, [r0, #1216] ; 0x4c0 +100212b8: f001 0403 and.w r4, r1, #3 +100212bc: 4294 cmp r4, r2 +100212be: d008 beq.n 100212d2 +100212c0: f021 0103 bic.w r1, r1, #3 +100212c4: 430a orrs r2, r1 +100212c6: f8a0 24c0 strh.w r2, [r0, #1216] ; 0x4c0 +100212ca: 1c58 adds r0, r3, #1 +100212cc: bd10 pop {r4, pc} +100212ce: 2000 movs r0, #0 +100212d0: bd10 pop {r4, pc} +100212d2: 4618 mov r0, r3 +100212d4: bd10 pop {r4, pc} + +100212d6 : +100212d6: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +100212d8: f600 4644 addw r6, r0, #3140 ; 0xc44 +100212dc: 4604 mov r4, r0 +100212de: a901 add r1, sp, #4 +100212e0: 4630 mov r0, r6 +100212e2: f7fb fe09 bl 1001cef8 +100212e6: f8d4 5c34 ldr.w r5, [r4, #3124] ; 0xc34 +100212ea: f604 4734 addw r7, r4, #3124 ; 0xc34 +100212ee: 4638 mov r0, r7 +100212f0: 4629 mov r1, r5 +100212f2: f7fb fe35 bl 1001cf60 +100212f6: b930 cbnz r0, 10021306 +100212f8: f5a5 7107 sub.w r1, r5, #540 ; 0x21c +100212fc: 4620 mov r0, r4 +100212fe: 682d ldr r5, [r5, #0] +10021300: f00c ff86 bl 1002e210 +10021304: e7f3 b.n 100212ee +10021306: 4630 mov r0, r6 +10021308: a901 add r1, sp, #4 +1002130a: f7fb fdfd bl 1001cf08 +1002130e: b003 add sp, #12 +10021310: bdf0 pop {r4, r5, r6, r7, pc} + +10021312 : +10021312: b570 push {r4, r5, r6, lr} +10021314: f500 73c8 add.w r3, r0, #400 ; 0x190 +10021318: 4606 mov r6, r0 +1002131a: e9f6 456a ldrd r4, r5, [r6, #424]! ; 0x1a8 +1002131e: e9d3 2300 ldrd r2, r3, [r3] +10021322: f500 71cc add.w r1, r0, #408 ; 0x198 +10021326: 429d cmp r5, r3 +10021328: bf08 it eq +1002132a: 4294 cmpeq r4, r2 +1002132c: f500 74c0 add.w r4, r0, #384 ; 0x180 +10021330: cc30 ldmia r4, {r4, r5} +10021332: e9c1 4500 strd r4, r5, [r1] +10021336: f500 74d0 add.w r4, r0, #416 ; 0x1a0 +1002133a: f500 70c4 add.w r0, r0, #392 ; 0x188 +1002133e: c803 ldmia r0, {r0, r1} +10021340: e9c4 0100 strd r0, r1, [r4] +10021344: e9c6 2300 strd r2, r3, [r6] +10021348: bf0c ite eq +1002134a: 2000 moveq r0, #0 +1002134c: 2001 movne r0, #1 +1002134e: bd70 pop {r4, r5, r6, pc} + +10021350 : +10021350: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +10021354: 4606 mov r6, r0 +10021356: 4690 mov r8, r2 +10021358: 460c mov r4, r1 +1002135a: 2900 cmp r1, #0 +1002135c: d076 beq.n 1002144c +1002135e: f8d1 30f8 ldr.w r3, [r1, #248] ; 0xf8 +10021362: 07d9 lsls r1, r3, #31 +10021364: d572 bpl.n 1002144c +10021366: 2500 movs r5, #0 +10021368: 462f mov r7, r5 +1002136a: 19e3 adds r3, r4, r7 +1002136c: f893 0158 ldrb.w r0, [r3, #344] ; 0x158 +10021370: b120 cbz r0, 1002137c +10021372: f000 007f and.w r0, r0, #127 ; 0x7f +10021376: f022 fa23 bl 100437c0 <__rtw_get_bit_value_from_ieee_value_veneer> +1002137a: 4305 orrs r5, r0 +1002137c: 3701 adds r7, #1 +1002137e: 2f10 cmp r7, #16 +10021380: d1f3 bne.n 1002136a +10021382: f8d4 71f4 ldr.w r7, [r4, #500] ; 0x1f4 +10021386: b317 cbz r7, 100213ce +10021388: 2116 movs r1, #22 +1002138a: 4630 mov r0, r6 +1002138c: f10d 0207 add.w r2, sp, #7 +10021390: f016 fad2 bl 10037938 +10021394: f89d 3007 ldrb.w r3, [sp, #7] +10021398: 2100 movs r1, #0 +1002139a: 2b02 cmp r3, #2 +1002139c: bf14 ite ne +1002139e: 2308 movne r3, #8 +100213a0: 2310 moveq r3, #16 +100213a2: 4299 cmp r1, r3 +100213a4: da11 bge.n 100213ca +100213a6: eb04 02e1 add.w r2, r4, r1, asr #3 +100213aa: f892 0205 ldrb.w r0, [r2, #517] ; 0x205 +100213ae: f001 0207 and.w r2, r1, #7 +100213b2: fa20 f202 lsr.w r2, r0, r2 +100213b6: 07d2 lsls r2, r2, #31 +100213b8: d505 bpl.n 100213c6 +100213ba: f101 020c add.w r2, r1, #12 +100213be: 2001 movs r0, #1 +100213c0: fa00 f202 lsl.w r2, r0, r2 +100213c4: 4315 orrs r5, r2 +100213c6: 3101 adds r1, #1 +100213c8: e7eb b.n 100213a2 +100213ca: f894 71fe ldrb.w r7, [r4, #510] ; 0x1fe +100213ce: f8d6 30e4 ldr.w r3, [r6, #228] ; 0xe4 +100213d2: 4920 ldr r1, [pc, #128] ; (10021454 ) +100213d4: 2b0e cmp r3, #14 +100213d6: ea05 0101 and.w r1, r5, r1 +100213da: d904 bls.n 100213e6 +100213dc: 2900 cmp r1, #0 +100213de: bf0c ite eq +100213e0: 2104 moveq r1, #4 +100213e2: 2114 movne r1, #20 +100213e4: e007 b.n 100213f6 +100213e6: b929 cbnz r1, 100213f4 +100213e8: f415 6f7f tst.w r5, #4080 ; 0xff0 +100213ec: bf0c ite eq +100213ee: 2101 moveq r1, #1 +100213f0: 2103 movne r1, #3 +100213f2: e000 b.n 100213f6 +100213f4: 210b movs r1, #11 +100213f6: f884 117c strb.w r1, [r4, #380] ; 0x17c +100213fa: 4630 mov r0, r6 +100213fc: f00c fb97 bl 1002db2e +10021400: 4681 mov r9, r0 +10021402: f025 4070 bic.w r0, r5, #4026531840 ; 0xf0000000 +10021406: f00d f91a bl 1002e63e +1002140a: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002140e: 2b04 cmp r3, #4 +10021410: d81c bhi.n 1002144c +10021412: f8d4 3100 ldr.w r3, [r4, #256] ; 0x100 +10021416: 2f01 cmp r7, #1 +10021418: f003 031f and.w r3, r3, #31 +1002141c: bf14 ite ne +1002141e: f063 037f ornne r3, r3, #127 ; 0x7f +10021422: f063 035f orneq r3, r3, #95 ; 0x5f +10021426: f000 0a3f and.w sl, r0, #63 ; 0x3f +1002142a: f88d 3004 strb.w r3, [sp, #4] +1002142e: 4630 mov r0, r6 +10021430: ea45 7109 orr.w r1, r5, r9, lsl #28 +10021434: aa01 add r2, sp, #4 +10021436: 4643 mov r3, r8 +10021438: f016 fb19 bl 10037a6e +1002143c: 2f01 cmp r7, #1 +1002143e: bf08 it eq +10021440: f04a 0a40 orreq.w sl, sl, #64 ; 0x40 +10021444: f884 9176 strb.w r9, [r4, #374] ; 0x176 +10021448: f884 a177 strb.w sl, [r4, #375] ; 0x177 +1002144c: b002 add sp, #8 +1002144e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10021452: bf00 nop +10021454: 0ffff000 .word 0x0ffff000 + +10021458 : +10021458: f8d1 30fc ldr.w r3, [r1, #252] ; 0xfc +1002145c: b537 push {r0, r1, r2, r4, r5, lr} +1002145e: 3301 adds r3, #1 +10021460: 460c mov r4, r1 +10021462: 4605 mov r5, r0 +10021464: f8c1 3100 str.w r3, [r1, #256] ; 0x100 +10021468: 4622 mov r2, r4 +1002146a: 2100 movs r1, #0 +1002146c: 2301 movs r3, #1 +1002146e: f016 fa7c bl 1003796a +10021472: f8d5 3c78 ldr.w r3, [r5, #3192] ; 0xc78 +10021476: 4628 mov r0, r5 +10021478: 2b02 cmp r3, #2 +1002147a: bf0c ite eq +1002147c: 2301 moveq r3, #1 +1002147e: 2300 movne r3, #0 +10021480: f8c4 3110 str.w r3, [r4, #272] ; 0x110 +10021484: 4621 mov r1, r4 +10021486: f00c fec3 bl 1002e210 +1002148a: f8d4 31f4 ldr.w r3, [r4, #500] ; 0x1f4 +1002148e: b1e3 cbz r3, 100214ca +10021490: f8d5 3458 ldr.w r3, [r5, #1112] ; 0x458 +10021494: f8b5 2462 ldrh.w r2, [r5, #1122] ; 0x462 +10021498: f8c4 31f8 str.w r3, [r4, #504] ; 0x1f8 +1002149c: f8b4 3202 ldrh.w r3, [r4, #514] ; 0x202 +100214a0: 4013 ands r3, r2 +100214a2: f013 0f60 tst.w r3, #96 ; 0x60 +100214a6: bf1c itt ne +100214a8: 2201 movne r2, #1 +100214aa: f884 21fe strbne.w r2, [r4, #510] ; 0x1fe +100214ae: 079b lsls r3, r3, #30 +100214b0: d507 bpl.n 100214c2 +100214b2: f895 34f7 ldrb.w r3, [r5, #1271] ; 0x4f7 +100214b6: f884 31fc strb.w r3, [r4, #508] ; 0x1fc +100214ba: f895 34f8 ldrb.w r3, [r5, #1272] ; 0x4f8 +100214be: f884 31fd strb.w r3, [r4, #509] ; 0x1fd +100214c2: 2301 movs r3, #1 +100214c4: f8c4 3104 str.w r3, [r4, #260] ; 0x104 +100214c8: e007 b.n 100214da +100214ca: f8c4 31f8 str.w r3, [r4, #504] ; 0x1f8 +100214ce: f884 31fe strb.w r3, [r4, #510] ; 0x1fe +100214d2: f884 31fc strb.w r3, [r4, #508] ; 0x1fc +100214d6: f884 31fd strb.w r3, [r4, #509] ; 0x1fd +100214da: 2100 movs r1, #0 +100214dc: 2248 movs r2, #72 ; 0x48 +100214de: f884 11ff strb.w r1, [r4, #511] ; 0x1ff +100214e2: f884 1200 strb.w r1, [r4, #512] ; 0x200 +100214e6: f504 70c0 add.w r0, r4, #384 ; 0x180 +100214ea: f7fb fc71 bl 1001cdd0 +100214ee: 4620 mov r0, r4 +100214f0: a901 add r1, sp, #4 +100214f2: f7fb fd01 bl 1001cef8 +100214f6: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +100214fa: 4620 mov r0, r4 +100214fc: f043 0301 orr.w r3, r3, #1 +10021500: f8c4 30f8 str.w r3, [r4, #248] ; 0xf8 +10021504: a901 add r1, sp, #4 +10021506: f7fb fcff bl 1001cf08 +1002150a: b003 add sp, #12 +1002150c: bd30 pop {r4, r5, pc} + ... + +10021510 : +10021510: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10021514: 460d mov r5, r1 +10021516: b087 sub sp, #28 +10021518: 4616 mov r6, r2 +1002151a: 4604 mov r4, r0 +1002151c: 2800 cmp r0, #0 +1002151e: f000 814c beq.w 100217ba +10021522: f890 37d0 ldrb.w r3, [r0, #2000] ; 0x7d0 +10021526: 2b00 cmp r3, #0 +10021528: f000 8147 beq.w 100217ba +1002152c: f200 48dc addw r8, r0, #1244 ; 0x4dc +10021530: 4640 mov r0, r8 +10021532: a903 add r1, sp, #12 +10021534: f7fb fce0 bl 1001cef8 +10021538: 2d2a cmp r5, #42 ; 0x2a +1002153a: f000 808a beq.w 10021652 +1002153e: 2ddd cmp r5, #221 ; 0xdd +10021540: f000 80b7 beq.w 100216b2 +10021544: 2d05 cmp r5, #5 +10021546: f040 8131 bne.w 100217ac +1002154a: f8b4 3c6e ldrh.w r3, [r4, #3182] ; 0xc6e +1002154e: f504 7790 add.w r7, r4, #288 ; 0x120 +10021552: f8ad 300a strh.w r3, [sp, #10] +10021556: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +1002155a: 4629 mov r1, r5 +1002155c: 3b0c subs r3, #12 +1002155e: 4638 mov r0, r7 +10021560: aa05 add r2, sp, #20 +10021562: f022 f9c5 bl 100438f0 <__rtw_get_ie_veneer> +10021566: f504 7a8a add.w sl, r4, #276 ; 0x114 +1002156a: 4605 mov r5, r0 +1002156c: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021570: b148 cbz r0, 10021586 +10021572: 9a05 ldr r2, [sp, #20] +10021574: b13a cbz r2, 10021586 +10021576: ebca 0600 rsb r6, sl, r0 +1002157a: 3202 adds r2, #2 +1002157c: 1b9e subs r6, r3, r6 +1002157e: 9205 str r2, [sp, #20] +10021580: 1887 adds r7, r0, r2 +10021582: 1ab6 subs r6, r6, r2 +10021584: e017 b.n 100215b6 +10021586: 2200 movs r2, #0 +10021588: 9205 str r2, [sp, #20] +1002158a: f8d4 50a4 ldr.w r5, [r4, #164] ; 0xa4 +1002158e: 4638 mov r0, r7 +10021590: 2101 movs r1, #1 +10021592: aa04 add r2, sp, #16 +10021594: 3b0c subs r3, #12 +10021596: 350e adds r5, #14 +10021598: f022 f9aa bl 100438f0 <__rtw_get_ie_veneer> +1002159c: b110 cbz r0, 100215a4 +1002159e: 9b04 ldr r3, [sp, #16] +100215a0: 3302 adds r3, #2 +100215a2: 441d add r5, r3 +100215a4: f8d4 6110 ldr.w r6, [r4, #272] ; 0x110 +100215a8: 3503 adds r5, #3 +100215aa: 9b05 ldr r3, [sp, #20] +100215ac: eb0a 0705 add.w r7, sl, r5 +100215b0: 1b75 subs r5, r6, r5 +100215b2: 1aee subs r6, r5, r3 +100215b4: 463d mov r5, r7 +100215b6: b916 cbnz r6, 100215be +100215b8: f04f 0b00 mov.w fp, #0 +100215bc: e00a b.n 100215d4 +100215be: 4630 mov r0, r6 +100215c0: f7fb fbc0 bl 1001cd44 +100215c4: 4683 mov fp, r0 +100215c6: 2800 cmp r0, #0 +100215c8: d0f6 beq.n 100215b8 +100215ca: b11f cbz r7, 100215d4 +100215cc: 4639 mov r1, r7 +100215ce: 4632 mov r2, r6 +100215d0: f7fb fbec bl 1001cdac +100215d4: 2305 movs r3, #5 +100215d6: 702b strb r3, [r5, #0] +100215d8: f8b4 2c6e ldrh.w r2, [r4, #3182] ; 0xc6e +100215dc: f412 4f7f tst.w r2, #65280 ; 0xff00 +100215e0: d002 beq.n 100215e8 +100215e2: f012 0ffc tst.w r2, #252 ; 0xfc +100215e6: d100 bne.n 100215ea +100215e8: 2304 movs r3, #4 +100215ea: 9305 str r3, [sp, #20] +100215ec: 9b05 ldr r3, [sp, #20] +100215ee: 1d6f adds r7, r5, #5 +100215f0: 706b strb r3, [r5, #1] +100215f2: 2300 movs r3, #0 +100215f4: 70ab strb r3, [r5, #2] +100215f6: 2301 movs r3, #1 +100215f8: 70eb strb r3, [r5, #3] +100215fa: f8b4 2c6e ldrh.w r2, [r4, #3182] ; 0xc6e +100215fe: 46b9 mov r9, r7 +10021600: 401a ands r2, r3 +10021602: bf14 ite ne +10021604: 712b strbne r3, [r5, #4] +10021606: 712a strbeq r2, [r5, #4] +10021608: 9b05 ldr r3, [sp, #20] +1002160a: 2b04 cmp r3, #4 +1002160c: d105 bne.n 1002161a +1002160e: f89d 300a ldrb.w r3, [sp, #10] +10021612: f107 0901 add.w r9, r7, #1 +10021616: 703b strb r3, [r7, #0] +10021618: e009 b.n 1002162e +1002161a: 2b05 cmp r3, #5 +1002161c: d107 bne.n 1002162e +1002161e: 4638 mov r0, r7 +10021620: f10d 010a add.w r1, sp, #10 +10021624: 2202 movs r2, #2 +10021626: f7fb fbc1 bl 1001cdac +1002162a: f107 0902 add.w r9, r7, #2 +1002162e: f1bb 0f00 cmp.w fp, #0 +10021632: d008 beq.n 10021646 +10021634: 4648 mov r0, r9 +10021636: 4659 mov r1, fp +10021638: 4632 mov r2, r6 +1002163a: f7fb fbb7 bl 1001cdac +1002163e: 4658 mov r0, fp +10021640: 4631 mov r1, r6 +10021642: f7fb fbab bl 1001cd9c +10021646: ebca 0909 rsb r9, sl, r9 +1002164a: 444e add r6, r9 +1002164c: f8c4 6110 str.w r6, [r4, #272] ; 0x110 +10021650: e0ac b.n 100217ac +10021652: 2300 movs r3, #0 +10021654: 9305 str r3, [sp, #20] +10021656: f894 36aa ldrb.w r3, [r4, #1706] ; 0x6aa +1002165a: 2b00 cmp r3, #0 +1002165c: f000 80a6 beq.w 100217ac +10021660: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021664: 4629 mov r1, r5 +10021666: f504 7090 add.w r0, r4, #288 ; 0x120 +1002166a: aa05 add r2, sp, #20 +1002166c: 3b0c subs r3, #12 +1002166e: f022 f93f bl 100438f0 <__rtw_get_ie_veneer> +10021672: 4601 mov r1, r0 +10021674: 2800 cmp r0, #0 +10021676: f000 8099 beq.w 100217ac +1002167a: 9b05 ldr r3, [sp, #20] +1002167c: 2b00 cmp r3, #0 +1002167e: f000 8095 beq.w 100217ac +10021682: f8b4 34b4 ldrh.w r3, [r4, #1204] ; 0x4b4 +10021686: 2b01 cmp r3, #1 +10021688: 7883 ldrb r3, [r0, #2] +1002168a: bf0c ite eq +1002168c: f043 0303 orreq.w r3, r3, #3 +10021690: f023 0303 bicne.w r3, r3, #3 +10021694: 7083 strb r3, [r0, #2] +10021696: f8b4 24b8 ldrh.w r2, [r4, #1208] ; 0x4b8 +1002169a: 7883 ldrb r3, [r0, #2] +1002169c: b112 cbz r2, 100216a4 +1002169e: f043 0304 orr.w r3, r3, #4 +100216a2: e001 b.n 100216a8 +100216a4: f023 0304 bic.w r3, r3, #4 +100216a8: 708b strb r3, [r1, #2] +100216aa: 4620 mov r0, r4 +100216ac: f00c fda2 bl 1002e1f4 +100216b0: e07c b.n 100217ac +100216b2: 4843 ldr r0, [pc, #268] ; (100217c0 ) +100216b4: 4631 mov r1, r6 +100216b6: 2204 movs r2, #4 +100216b8: f7fb fb80 bl 1001cdbc +100216bc: 2800 cmp r0, #0 +100216be: d175 bne.n 100217ac +100216c0: 4840 ldr r0, [pc, #256] ; (100217c4 ) +100216c2: 4631 mov r1, r6 +100216c4: 2204 movs r2, #4 +100216c6: f7fb fb79 bl 1001cdbc +100216ca: 4607 mov r7, r0 +100216cc: 2800 cmp r0, #0 +100216ce: d16d bne.n 100217ac +100216d0: 483d ldr r0, [pc, #244] ; (100217c8 ) +100216d2: 4631 mov r1, r6 +100216d4: 2204 movs r2, #4 +100216d6: f7fb fb71 bl 1001cdbc +100216da: 2800 cmp r0, #0 +100216dc: d061 beq.n 100217a2 +100216de: ab06 add r3, sp, #24 +100216e0: f843 7d04 str.w r7, [r3, #-4]! +100216e4: f8d4 5110 ldr.w r5, [r4, #272] ; 0x110 +100216e8: f504 7090 add.w r0, r4, #288 ; 0x120 +100216ec: f1a5 010c sub.w r1, r5, #12 +100216f0: 463a mov r2, r7 +100216f2: f022 f815 bl 10043720 <__rtw_get_wps_ie_veneer> +100216f6: 4681 mov r9, r0 +100216f8: 2800 cmp r0, #0 +100216fa: d057 beq.n 100217ac +100216fc: 9e05 ldr r6, [sp, #20] +100216fe: 2e00 cmp r6, #0 +10021700: d054 beq.n 100217ac +10021702: f504 7a8a add.w sl, r4, #276 ; 0x114 +10021706: ebca 0a00 rsb sl, sl, r0 +1002170a: ebca 0505 rsb r5, sl, r5 +1002170e: 1bad subs r5, r5, r6 +10021710: d00a beq.n 10021728 +10021712: 4628 mov r0, r5 +10021714: f7fb fb16 bl 1001cd44 +10021718: 4607 mov r7, r0 +1002171a: b130 cbz r0, 1002172a +1002171c: eb09 0106 add.w r1, r9, r6 +10021720: 462a mov r2, r5 +10021722: f7fb fb43 bl 1001cdac +10021726: e000 b.n 1002172a +10021728: 2700 movs r7, #0 +1002172a: f8d4 64c4 ldr.w r6, [r4, #1220] ; 0x4c4 +1002172e: 2e00 cmp r6, #0 +10021730: d03c beq.n 100217ac +10021732: 7872 ldrb r2, [r6, #1] +10021734: 9205 str r2, [sp, #20] +10021736: 3202 adds r2, #2 +10021738: eb0a 0302 add.w r3, sl, r2 +1002173c: 442b add r3, r5 +1002173e: f5b3 7f40 cmp.w r3, #768 ; 0x300 +10021742: d812 bhi.n 1002176a +10021744: 4648 mov r0, r9 +10021746: 4631 mov r1, r6 +10021748: f7fb fb30 bl 1001cdac +1002174c: 9b05 ldr r3, [sp, #20] +1002174e: 3302 adds r3, #2 +10021750: eb09 0003 add.w r0, r9, r3 +10021754: b11f cbz r7, 1002175e +10021756: 4639 mov r1, r7 +10021758: 462a mov r2, r5 +1002175a: f7fb fb27 bl 1001cdac +1002175e: 9b05 ldr r3, [sp, #20] +10021760: 3302 adds r3, #2 +10021762: 449a add sl, r3 +10021764: 44aa add sl, r5 +10021766: f8c4 a110 str.w sl, [r4, #272] ; 0x110 +1002176a: b11f cbz r7, 10021774 +1002176c: 4638 mov r0, r7 +1002176e: 4629 mov r1, r5 +10021770: f7fb fb14 bl 1001cd9c +10021774: 2200 movs r2, #0 +10021776: ab06 add r3, sp, #24 +10021778: f803 2d08 strb.w r2, [r3, #-8]! +1002177c: 7871 ldrb r1, [r6, #1] +1002177e: 4630 mov r0, r6 +10021780: 9200 str r2, [sp, #0] +10021782: 3102 adds r1, #2 +10021784: f241 0241 movw r2, #4161 ; 0x1041 +10021788: f021 ffea bl 10043760 <__rtw_get_wps_attr_content_veneer> +1002178c: f89d 2010 ldrb.w r2, [sp, #16] +10021790: 6923 ldr r3, [r4, #16] +10021792: b112 cbz r2, 1002179a +10021794: f443 7380 orr.w r3, r3, #256 ; 0x100 +10021798: e001 b.n 1002179e +1002179a: f423 7380 bic.w r3, r3, #256 ; 0x100 +1002179e: 6123 str r3, [r4, #16] +100217a0: e004 b.n 100217ac +100217a2: 480a ldr r0, [pc, #40] ; (100217cc ) +100217a4: 4631 mov r1, r6 +100217a6: 2204 movs r2, #4 +100217a8: f7fb fb08 bl 1001cdbc +100217ac: 2301 movs r3, #1 +100217ae: f884 34e0 strb.w r3, [r4, #1248] ; 0x4e0 +100217b2: 4640 mov r0, r8 +100217b4: a903 add r1, sp, #12 +100217b6: f7fb fba7 bl 1001cf08 +100217ba: b007 add sp, #28 +100217bc: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100217c0: 1004a710 .word 0x1004a710 +100217c4: 1004a738 .word 0x1004a738 +100217c8: 1004a6c6 .word 0x1004a6c6 +100217cc: 1004a6de .word 0x1004a6de + +100217d0 : +100217d0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100217d4: 4b66 ldr r3, [pc, #408] ; (10021970 ) +100217d6: 4604 mov r4, r0 +100217d8: 6818 ldr r0, [r3, #0] +100217da: 6923 ldr r3, [r4, #16] +100217dc: b091 sub sp, #68 ; 0x44 +100217de: 2600 movs r6, #0 +100217e0: 9008 str r0, [sp, #32] +100217e2: 06d8 lsls r0, r3, #27 +100217e4: 460f mov r7, r1 +100217e6: 9605 str r6, [sp, #20] +100217e8: d401 bmi.n 100217ee +100217ea: 2000 movs r0, #0 +100217ec: e36c b.n 10021ec8 +100217ee: f5b2 7f40 cmp.w r2, #768 ; 0x300 +100217f2: dcfa bgt.n 100217ea +100217f4: f504 758a add.w r5, r4, #276 ; 0x114 +100217f8: f8c4 2110 str.w r2, [r4, #272] ; 0x110 +100217fc: 4628 mov r0, r5 +100217fe: 4631 mov r1, r6 +10021800: f44f 7240 mov.w r2, #768 ; 0x300 +10021804: f7fb fae4 bl 1001cdd0 +10021808: 4628 mov r0, r5 +1002180a: 4639 mov r1, r7 +1002180c: f8d4 2110 ldr.w r2, [r4, #272] ; 0x110 +10021810: f7fb facc bl 1001cdac +10021814: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +10021818: 2b04 cmp r3, #4 +1002181a: d1e6 bne.n 100217ea +1002181c: f104 099c add.w r9, r4, #156 ; 0x9c +10021820: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10021824: 3109 adds r1, #9 +10021826: 2206 movs r2, #6 +10021828: 4648 mov r0, r9 +1002182a: f884 60d0 strb.w r6, [r4, #208] ; 0xd0 +1002182e: f884 60d1 strb.w r6, [r4, #209] ; 0xd1 +10021832: f884 60d2 strb.w r6, [r4, #210] ; 0xd2 +10021836: f884 60d3 strb.w r6, [r4, #211] ; 0xd3 +1002183a: f7fb fab7 bl 1001cdac +1002183e: 4628 mov r0, r5 +10021840: f002 f873 bl 1002392a +10021844: 7842 ldrb r2, [r0, #1] +10021846: 7803 ldrb r3, [r0, #0] +10021848: 4628 mov r0, r5 +1002184a: ea43 2302 orr.w r3, r3, r2, lsl #8 +1002184e: f8c4 30dc str.w r3, [r4, #220] ; 0xdc +10021852: f002 f85b bl 1002390c +10021856: 7803 ldrb r3, [r0, #0] +10021858: 7847 ldrb r7, [r0, #1] +1002185a: f504 7590 add.w r5, r4, #288 ; 0x120 +1002185e: ea43 2707 orr.w r7, r3, r7, lsl #8 +10021862: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021866: 4628 mov r0, r5 +10021868: 4631 mov r1, r6 +1002186a: aa05 add r2, sp, #20 +1002186c: 3b0c subs r3, #12 +1002186e: f022 f83f bl 100438f0 <__rtw_get_ie_veneer> +10021872: 4680 mov r8, r0 +10021874: b188 cbz r0, 1002189a +10021876: 9b05 ldr r3, [sp, #20] +10021878: b17b cbz r3, 1002189a +1002187a: f104 00a4 add.w r0, r4, #164 ; 0xa4 +1002187e: 4631 mov r1, r6 +10021880: 2228 movs r2, #40 ; 0x28 +10021882: f7fb faa5 bl 1001cdd0 +10021886: f104 00a8 add.w r0, r4, #168 ; 0xa8 +1002188a: f108 0102 add.w r1, r8, #2 +1002188e: 9a05 ldr r2, [sp, #20] +10021890: f7fb fa8c bl 1001cdac +10021894: 9b05 ldr r3, [sp, #20] +10021896: f8c4 30a4 str.w r3, [r4, #164] ; 0xa4 +1002189a: 2300 movs r3, #0 +1002189c: f884 30d8 strb.w r3, [r4, #216] ; 0xd8 +100218a0: f884 30d9 strb.w r3, [r4, #217] ; 0xd9 +100218a4: f884 30da strb.w r3, [r4, #218] ; 0xda +100218a8: f884 30db strb.w r3, [r4, #219] ; 0xdb +100218ac: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +100218b0: 4628 mov r0, r5 +100218b2: 2103 movs r1, #3 +100218b4: aa05 add r2, sp, #20 +100218b6: 3b0c subs r3, #12 +100218b8: f022 f81a bl 100438f0 <__rtw_get_ie_veneer> +100218bc: b120 cbz r0, 100218c8 +100218be: 9b05 ldr r3, [sp, #20] +100218c0: b123 cbz r3, 100218cc +100218c2: f890 8002 ldrb.w r8, [r0, #2] +100218c6: e002 b.n 100218ce +100218c8: 4680 mov r8, r0 +100218ca: e000 b.n 100218ce +100218cc: 4698 mov r8, r3 +100218ce: a80c add r0, sp, #48 ; 0x30 +100218d0: 2100 movs r1, #0 +100218d2: 2210 movs r2, #16 +100218d4: f8c4 80e4 str.w r8, [r4, #228] ; 0xe4 +100218d8: f7fb fa7a bl 1001cdd0 +100218dc: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +100218e0: 2101 movs r1, #1 +100218e2: 4628 mov r0, r5 +100218e4: aa05 add r2, sp, #20 +100218e6: 3b0c subs r3, #12 +100218e8: f022 f802 bl 100438f0 <__rtw_get_ie_veneer> +100218ec: 4601 mov r1, r0 +100218ee: b130 cbz r0, 100218fe +100218f0: a80c add r0, sp, #48 ; 0x30 +100218f2: 3102 adds r1, #2 +100218f4: 9a05 ldr r2, [sp, #20] +100218f6: f7fb fa59 bl 1001cdac +100218fa: 9e05 ldr r6, [sp, #20] +100218fc: e000 b.n 10021900 +100218fe: 4606 mov r6, r0 +10021900: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021904: 2132 movs r1, #50 ; 0x32 +10021906: 4628 mov r0, r5 +10021908: aa05 add r2, sp, #20 +1002190a: 3b0c subs r3, #12 +1002190c: f021 fff0 bl 100438f0 <__rtw_get_ie_veneer> +10021910: 4601 mov r1, r0 +10021912: b138 cbz r0, 10021924 +10021914: a80c add r0, sp, #48 ; 0x30 +10021916: 4430 add r0, r6 +10021918: 3102 adds r1, #2 +1002191a: 9a05 ldr r2, [sp, #20] +1002191c: f7fb fa46 bl 1001cdac +10021920: 9b05 ldr r3, [sp, #20] +10021922: 441e add r6, r3 +10021924: 4642 mov r2, r8 +10021926: 4631 mov r1, r6 +10021928: a80c add r0, sp, #48 ; 0x30 +1002192a: f021 ff91 bl 10043850 <__rtw_check_network_type_veneer> +1002192e: f104 08fc add.w r8, r4, #252 ; 0xfc +10021932: fa5f fa80 uxtb.w sl, r0 +10021936: 4651 mov r1, sl +10021938: 4640 mov r0, r8 +1002193a: f021 ffc9 bl 100438d0 <__rtw_set_supported_rate_veneer> +1002193e: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021942: 212a movs r1, #42 ; 0x2a +10021944: 4628 mov r0, r5 +10021946: aa05 add r2, sp, #20 +10021948: 3b0c subs r3, #12 +1002194a: f021 ffd1 bl 100438f0 <__rtw_get_ie_veneer> +1002194e: 4601 mov r1, r0 +10021950: b120 cbz r0, 1002195c +10021952: 9b05 ldr r3, [sp, #20] +10021954: b113 cbz r3, 1002195c +10021956: 4620 mov r0, r4 +10021958: f00c fc4c bl 1002e1f4 +1002195c: f007 0310 and.w r3, r7, #16 +10021960: b29b uxth r3, r3 +10021962: b13b cbz r3, 10021974 +10021964: 2201 movs r2, #1 +10021966: 2300 movs r3, #0 +10021968: f884 20cc strb.w r2, [r4, #204] ; 0xcc +1002196c: e004 b.n 10021978 +1002196e: bf00 nop +10021970: 1004a13f .word 0x1004a13f +10021974: f884 30cc strb.w r3, [r4, #204] ; 0xcc +10021978: f884 30cd strb.w r3, [r4, #205] ; 0xcd +1002197c: f884 30ce strb.w r3, [r4, #206] ; 0xce +10021980: f884 30cf strb.w r3, [r4, #207] ; 0xcf +10021984: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021988: 2600 movs r6, #0 +1002198a: f8c4 6db4 str.w r6, [r4, #3508] ; 0xdb4 +1002198e: f8c4 6dbc str.w r6, [r4, #3516] ; 0xdbc +10021992: f8c4 6dc4 str.w r6, [r4, #3524] ; 0xdc4 +10021996: 4628 mov r0, r5 +10021998: 2130 movs r1, #48 ; 0x30 +1002199a: aa05 add r2, sp, #20 +1002199c: 3b0c subs r3, #12 +1002199e: 9606 str r6, [sp, #24] +100219a0: 9607 str r6, [sp, #28] +100219a2: f021 ffa5 bl 100438f0 <__rtw_get_ie_veneer> +100219a6: b1d0 cbz r0, 100219de +100219a8: 9905 ldr r1, [sp, #20] +100219aa: b1c1 cbz r1, 100219de +100219ac: 9600 str r6, [sp, #0] +100219ae: 3102 adds r1, #2 +100219b0: aa06 add r2, sp, #24 +100219b2: ab07 add r3, sp, #28 +100219b4: f021 fe7c bl 100436b0 <__rtw_parse_wpa2_ie_veneer> +100219b8: 2801 cmp r0, #1 +100219ba: d110 bne.n 100219de +100219bc: 2302 movs r3, #2 +100219be: f8c4 3c78 str.w r3, [r4, #3192] ; 0xc78 +100219c2: f8d4 3db4 ldr.w r3, [r4, #3508] ; 0xdb4 +100219c6: f8c4 0db0 str.w r0, [r4, #3504] ; 0xdb0 +100219ca: f043 0302 orr.w r3, r3, #2 +100219ce: f8c4 3db4 str.w r3, [r4, #3508] ; 0xdb4 +100219d2: 9b06 ldr r3, [sp, #24] +100219d4: f8c4 3dbc str.w r3, [r4, #3516] ; 0xdbc +100219d8: 9b07 ldr r3, [sp, #28] +100219da: f8c4 3dc4 str.w r3, [r4, #3524] ; 0xdc4 +100219de: 2300 movs r3, #0 +100219e0: 9305 str r3, [sp, #20] +100219e2: 9306 str r3, [sp, #24] +100219e4: 9307 str r3, [sp, #28] +100219e6: f8c4 3db8 str.w r3, [r4, #3512] ; 0xdb8 +100219ea: f8c4 3dc0 str.w r3, [r4, #3520] ; 0xdc0 +100219ee: 4628 mov r0, r5 +100219f0: f8d4 6110 ldr.w r6, [r4, #272] ; 0x110 +100219f4: 9b05 ldr r3, [sp, #20] +100219f6: 3e0e subs r6, #14 +100219f8: 1af3 subs r3, r6, r3 +100219fa: 21dd movs r1, #221 ; 0xdd +100219fc: aa05 add r2, sp, #20 +100219fe: f021 ff77 bl 100438f0 <__rtw_get_ie_veneer> +10021a02: 4606 mov r6, r0 +10021a04: b318 cbz r0, 10021a4e +10021a06: a908 add r1, sp, #32 +10021a08: 3002 adds r0, #2 +10021a0a: 2204 movs r2, #4 +10021a0c: f7fb f9d6 bl 1001cdbc +10021a10: 9905 ldr r1, [sp, #20] +10021a12: 2800 cmp r0, #0 +10021a14: f000 824b beq.w 10021eae +10021a18: 2300 movs r3, #0 +10021a1a: 9300 str r3, [sp, #0] +10021a1c: 4630 mov r0, r6 +10021a1e: 3102 adds r1, #2 +10021a20: aa06 add r2, sp, #24 +10021a22: ab07 add r3, sp, #28 +10021a24: f021 feac bl 10043780 <__rtw_parse_wpa_ie_veneer> +10021a28: 2801 cmp r0, #1 +10021a2a: d110 bne.n 10021a4e +10021a2c: 2302 movs r3, #2 +10021a2e: f8c4 3c78 str.w r3, [r4, #3192] ; 0xc78 +10021a32: f8d4 3db4 ldr.w r3, [r4, #3508] ; 0xdb4 +10021a36: f8c4 0db0 str.w r0, [r4, #3504] ; 0xdb0 +10021a3a: f043 0301 orr.w r3, r3, #1 +10021a3e: f8c4 3db4 str.w r3, [r4, #3508] ; 0xdb4 +10021a42: 9b06 ldr r3, [sp, #24] +10021a44: f8c4 3db8 str.w r3, [r4, #3512] ; 0xdb8 +10021a48: 9b07 ldr r3, [sp, #28] +10021a4a: f8c4 3dc0 str.w r3, [r4, #3520] ; 0xdc0 +10021a4e: 2300 movs r3, #0 +10021a50: f504 5b97 add.w fp, r4, #4832 ; 0x12e0 +10021a54: f8c4 344c str.w r3, [r4, #1100] ; 0x44c +10021a58: f10b 0b18 add.w fp, fp, #24 +10021a5c: 9305 str r3, [sp, #20] +10021a5e: f89b 303d ldrb.w r3, [fp, #61] ; 0x3d +10021a62: b1d3 cbz r3, 10021a9a +10021a64: 4628 mov r0, r5 +10021a66: f8d4 6110 ldr.w r6, [r4, #272] ; 0x110 +10021a6a: 9b05 ldr r3, [sp, #20] +10021a6c: 3e0e subs r6, #14 +10021a6e: 1af3 subs r3, r6, r3 +10021a70: 21dd movs r1, #221 ; 0xdd +10021a72: aa05 add r2, sp, #20 +10021a74: f021 ff3c bl 100438f0 <__rtw_get_ie_veneer> +10021a78: 4606 mov r6, r0 +10021a7a: b170 cbz r0, 10021a9a +10021a7c: 3002 adds r0, #2 +10021a7e: 49a1 ldr r1, [pc, #644] ; (10021d04 ) +10021a80: 2206 movs r2, #6 +10021a82: f7fb f99b bl 1001cdbc +10021a86: 2800 cmp r0, #0 +10021a88: f000 8217 beq.w 10021eba +10021a8c: 2301 movs r3, #1 +10021a8e: f8c4 344c str.w r3, [r4, #1100] ; 0x44c +10021a92: 7a33 ldrb r3, [r6, #8] +10021a94: f063 037f orn r3, r3, #127 ; 0x7f +10021a98: 7233 strb r3, [r6, #8] +10021a9a: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021a9e: 4628 mov r0, r5 +10021aa0: 212d movs r1, #45 ; 0x2d +10021aa2: aa05 add r2, sp, #20 +10021aa4: 3b0c subs r3, #12 +10021aa6: f021 ff23 bl 100438f0 <__rtw_get_ie_veneer> +10021aaa: 4606 mov r6, r0 +10021aac: b320 cbz r0, 10021af8 +10021aae: 9f05 ldr r7, [sp, #20] +10021ab0: b327 cbz r7, 10021afc +10021ab2: 2116 movs r1, #22 +10021ab4: 4620 mov r0, r4 +10021ab6: aa0b add r2, sp, #44 ; 0x2c +10021ab8: f015 ff3e bl 10037938 +10021abc: f8d4 3dc0 ldr.w r3, [r4, #3520] ; 0xdc0 +10021ac0: f04a 0a08 orr.w sl, sl, #8 +10021ac4: 06d9 lsls r1, r3, #27 +10021ac6: d403 bmi.n 10021ad0 +10021ac8: f8d4 3dc4 ldr.w r3, [r4, #3524] ; 0xdc4 +10021acc: 06da lsls r2, r3, #27 +10021ace: d503 bpl.n 10021ad8 +10021ad0: 7933 ldrb r3, [r6, #4] +10021ad2: f043 031c orr.w r3, r3, #28 +10021ad6: 7133 strb r3, [r6, #4] +10021ad8: f89d 302c ldrb.w r3, [sp, #44] ; 0x2c +10021adc: 2b03 cmp r3, #3 +10021ade: d103 bne.n 10021ae8 +10021ae0: 23ff movs r3, #255 ; 0xff +10021ae2: 7173 strb r3, [r6, #5] +10021ae4: 2300 movs r3, #0 +10021ae6: 71b3 strb r3, [r6, #6] +10021ae8: f204 4062 addw r0, r4, #1122 ; 0x462 +10021aec: 1cb1 adds r1, r6, #2 +10021aee: 9a05 ldr r2, [sp, #20] +10021af0: f7fb f95c bl 1001cdac +10021af4: 2701 movs r7, #1 +10021af6: e002 b.n 10021afe +10021af8: 4607 mov r7, r0 +10021afa: e000 b.n 10021afe +10021afc: 463e mov r6, r7 +10021afe: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021b02: aa05 add r2, sp, #20 +10021b04: 4628 mov r0, r5 +10021b06: 213d movs r1, #61 ; 0x3d +10021b08: 3b0c subs r3, #12 +10021b0a: f021 fef1 bl 100438f0 <__rtw_get_ie_veneer> +10021b0e: 4602 mov r2, r0 +10021b10: b118 cbz r0, 10021b1a +10021b12: 9b05 ldr r3, [sp, #20] +10021b14: 2b00 cmp r3, #0 +10021b16: bf08 it eq +10021b18: 2200 moveq r2, #0 +10021b1a: f10a 31ff add.w r1, sl, #4294967295 +10021b1e: b2c9 uxtb r1, r1 +10021b20: 290a cmp r1, #10 +10021b22: d817 bhi.n 10021b54 +10021b24: f04f 0e01 mov.w lr, #1 +10021b28: fa0e f101 lsl.w r1, lr, r1 +10021b2c: f240 6306 movw r3, #1542 ; 0x606 +10021b30: 400b ands r3, r1 +10021b32: b97b cbnz r3, 10021b54 +10021b34: f011 0008 ands.w r0, r1, #8 +10021b38: d10a bne.n 10021b50 +10021b3a: 07cb lsls r3, r1, #31 +10021b3c: d50a bpl.n 10021b54 +10021b3e: f884 e0d4 strb.w lr, [r4, #212] ; 0xd4 +10021b42: f884 00d5 strb.w r0, [r4, #213] ; 0xd5 +10021b46: f884 00d6 strb.w r0, [r4, #214] ; 0xd6 +10021b4a: f884 00d7 strb.w r0, [r4, #215] ; 0xd7 +10021b4e: e00b b.n 10021b68 +10021b50: 2102 movs r1, #2 +10021b52: e001 b.n 10021b58 +10021b54: 2300 movs r3, #0 +10021b56: 2103 movs r1, #3 +10021b58: f884 10d4 strb.w r1, [r4, #212] ; 0xd4 +10021b5c: f884 30d5 strb.w r3, [r4, #213] ; 0xd5 +10021b60: f884 30d6 strb.w r3, [r4, #214] ; 0xd6 +10021b64: f884 30d7 strb.w r3, [r4, #215] ; 0xd7 +10021b68: 2300 movs r3, #0 +10021b6a: f8c4 a084 str.w sl, [r4, #132] ; 0x84 +10021b6e: f8c4 3454 str.w r3, [r4, #1108] ; 0x454 +10021b72: f89b 3044 ldrb.w r3, [fp, #68] ; 0x44 +10021b76: b1ab cbz r3, 10021ba4 +10021b78: 2f01 cmp r7, #1 +10021b7a: d113 bne.n 10021ba4 +10021b7c: f8c4 7454 str.w r7, [r4, #1108] ; 0x454 +10021b80: f8c4 744c str.w r7, [r4, #1100] ; 0x44c +10021b84: f89b 3045 ldrb.w r3, [fp, #69] ; 0x45 +10021b88: 4620 mov r0, r4 +10021b8a: 2b01 cmp r3, #1 +10021b8c: 4631 mov r1, r6 +10021b8e: bf08 it eq +10021b90: f8c4 7458 streq.w r7, [r4, #1112] ; 0x458 +10021b94: 9203 str r2, [sp, #12] +10021b96: f00c faaf bl 1002e0f8 +10021b9a: 9a03 ldr r2, [sp, #12] +10021b9c: 4620 mov r0, r4 +10021b9e: 4611 mov r1, r2 +10021ba0: f00c fafa bl 1002e198 +10021ba4: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021ba8: 46a2 mov sl, r4 +10021baa: 337c adds r3, #124 ; 0x7c +10021bac: f84a 3f98 str.w r3, [sl, #152]! +10021bb0: f8d4 30dc ldr.w r3, [r4, #220] ; 0xdc +10021bb4: f8d4 60e4 ldr.w r6, [r4, #228] ; 0xe4 +10021bb8: f8ad 3012 strh.w r3, [sp, #18] +10021bbc: f894 37d0 ldrb.w r3, [r4, #2000] ; 0x7d0 +10021bc0: b2f6 uxtb r6, r6 +10021bc2: 2b01 cmp r3, #1 +10021bc4: f8d4 344c ldr.w r3, [r4, #1100] ; 0x44c +10021bc8: bf1a itte ne +10021bca: f04f 0b01 movne.w fp, #1 +10021bce: f884 b7d0 strbne.w fp, [r4, #2000] ; 0x7d0 +10021bd2: f04f 0b00 moveq.w fp, #0 +10021bd6: b113 cbz r3, 10021bde +10021bd8: 2301 movs r3, #1 +10021bda: f884 36a9 strb.w r3, [r4, #1705] ; 0x6a9 +10021bde: f8d4 3454 ldr.w r3, [r4, #1108] ; 0x454 +10021be2: b1ab cbz r3, 10021c10 +10021be4: 2301 movs r3, #1 +10021be6: f884 36a9 strb.w r3, [r4, #1705] ; 0x6a9 +10021bea: f884 36ac strb.w r3, [r4, #1708] ; 0x6ac +10021bee: f894 36d4 ldrb.w r3, [r4, #1748] ; 0x6d4 +10021bf2: aa10 add r2, sp, #64 ; 0x40 +10021bf4: f3c3 0382 ubfx r3, r3, #2, #3 +10021bf8: f802 3d14 strb.w r3, [r2, #-20]! +10021bfc: 4620 mov r0, r4 +10021bfe: 2124 movs r1, #36 ; 0x24 +10021c00: f015 fe93 bl 1003792a +10021c04: f8b4 36d2 ldrh.w r3, [r4, #1746] ; 0x6d2 +10021c08: f3c3 0381 ubfx r3, r3, #2, #2 +10021c0c: f884 36b2 strb.w r3, [r4, #1714] ; 0x6b2 +10021c10: f8d4 3094 ldr.w r3, [r4, #148] ; 0x94 +10021c14: 2b01 cmp r3, #1 +10021c16: d002 beq.n 10021c1e +10021c18: 4620 mov r0, r4 +10021c1a: f00c f9c4 bl 1002dfa6 +10021c1e: 4620 mov r0, r4 +10021c20: 2103 movs r1, #3 +10021c22: f00c f889 bl 1002dd38 +10021c26: 4620 mov r0, r4 +10021c28: 2104 movs r1, #4 +10021c2a: 464a mov r2, r9 +10021c2c: f015 fe7d bl 1003792a +10021c30: 4b35 ldr r3, [pc, #212] ; (10021d08 ) +10021c32: af10 add r7, sp, #64 ; 0x40 +10021c34: f847 3d1c str.w r3, [r7, #-28]! +10021c38: 4620 mov r0, r4 +10021c3a: 211f movs r1, #31 +10021c3c: 463a mov r2, r7 +10021c3e: 9303 str r3, [sp, #12] +10021c40: f015 fe73 bl 1003792a +10021c44: 4a31 ldr r2, [pc, #196] ; (10021d0c ) +10021c46: 4620 mov r0, r4 +10021c48: 9209 str r2, [sp, #36] ; 0x24 +10021c4a: 2120 movs r1, #32 +10021c4c: 463a mov r2, r7 +10021c4e: f015 fe6c bl 1003792a +10021c52: 9b03 ldr r3, [sp, #12] +10021c54: 4620 mov r0, r4 +10021c56: 2121 movs r1, #33 ; 0x21 +10021c58: 463a mov r2, r7 +10021c5a: 9309 str r3, [sp, #36] ; 0x24 +10021c5c: f015 fe65 bl 1003792a +10021c60: f24a 4344 movw r3, #42052 ; 0xa444 +10021c64: 4620 mov r0, r4 +10021c66: 2122 movs r1, #34 ; 0x22 +10021c68: 463a mov r2, r7 +10021c6a: 9309 str r3, [sp, #36] ; 0x24 +10021c6c: f015 fe5d bl 1003792a +10021c70: f8d4 3c78 ldr.w r3, [r4, #3192] ; 0xc78 +10021c74: 4620 mov r0, r4 +10021c76: 2b02 cmp r3, #2 +10021c78: bf14 ite ne +10021c7a: 23cf movne r3, #207 ; 0xcf +10021c7c: 23cc moveq r3, #204 ; 0xcc +10021c7e: f88d 3011 strb.w r3, [sp, #17] +10021c82: 6863 ldr r3, [r4, #4] +10021c84: 2114 movs r1, #20 +10021c86: 2b03 cmp r3, #3 +10021c88: bf08 it eq +10021c8a: 232c moveq r3, #44 ; 0x2c +10021c8c: f10d 0211 add.w r2, sp, #17 +10021c90: bf08 it eq +10021c92: f88d 3011 strbeq.w r3, [sp, #17] +10021c96: f015 fe48 bl 1003792a +10021c9a: f10d 0212 add.w r2, sp, #18 +10021c9e: 4620 mov r0, r4 +10021ca0: 2110 movs r1, #16 +10021ca2: f015 fe42 bl 1003792a +10021ca6: 4620 mov r0, r4 +10021ca8: 4641 mov r1, r8 +10021caa: f00b ffee bl 1002dc8a +10021cae: 4620 mov r0, r4 +10021cb0: 2106 movs r1, #6 +10021cb2: 4642 mov r2, r8 +10021cb4: f015 fe39 bl 1003792a +10021cb8: f8d4 3094 ldr.w r3, [r4, #148] ; 0x94 +10021cbc: 2b01 cmp r3, #1 +10021cbe: d005 beq.n 10021ccc +10021cc0: 4620 mov r0, r4 +10021cc2: f06f 4170 mvn.w r1, #4026531840 ; 0xf0000000 +10021cc6: 2201 movs r2, #1 +10021cc8: f00c f828 bl 1002dd1c +10021ccc: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021cd0: 4628 mov r0, r5 +10021cd2: 213d movs r1, #61 ; 0x3d +10021cd4: aa0a add r2, sp, #40 ; 0x28 +10021cd6: 3b0c subs r3, #12 +10021cd8: f021 fe0a bl 100438f0 <__rtw_get_ie_veneer> +10021cdc: b118 cbz r0, 10021ce6 +10021cde: 9f0a ldr r7, [sp, #40] ; 0x28 +10021ce0: b117 cbz r7, 10021ce8 +10021ce2: 1c87 adds r7, r0, #2 +10021ce4: e000 b.n 10021ce8 +10021ce6: 4607 mov r7, r0 +10021ce8: 4620 mov r0, r4 +10021cea: f640 0181 movw r1, #2177 ; 0x881 +10021cee: f002 fdae bl 1002484e +10021cf2: 4602 mov r2, r0 +10021cf4: 4620 mov r0, r4 +10021cf6: b95a cbnz r2, 10021d10 +10021cf8: 4631 mov r1, r6 +10021cfa: 4613 mov r3, r2 +10021cfc: f00c f888 bl 1002de10 +10021d00: e020 b.n 10021d44 +10021d02: bf00 nop +10021d04: 1004a714 .word 0x1004a714 +10021d08: 005ea42b .word 0x005ea42b +10021d0c: 005e4317 .word 0x005e4317 +10021d10: 2101 movs r1, #1 +10021d12: f002 fd9c bl 1002484e +10021d16: 2801 cmp r0, #1 +10021d18: d114 bne.n 10021d44 +10021d1a: f241 73a8 movw r3, #6056 ; 0x17a8 +10021d1e: 58e3 ldr r3, [r4, r3] +10021d20: 4628 mov r0, r5 +10021d22: f893 64f6 ldrb.w r6, [r3, #1270] ; 0x4f6 +10021d26: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10021d2a: f8c4 60e4 str.w r6, [r4, #228] ; 0xe4 +10021d2e: 2103 movs r1, #3 +10021d30: aa0a add r2, sp, #40 ; 0x28 +10021d32: 3b0c subs r3, #12 +10021d34: f021 fddc bl 100438f0 <__rtw_get_ie_veneer> +10021d38: b110 cbz r0, 10021d40 +10021d3a: 9b0a ldr r3, [sp, #40] ; 0x28 +10021d3c: b103 cbz r3, 10021d40 +10021d3e: 7086 strb r6, [r0, #2] +10021d40: b107 cbz r7, 10021d44 +10021d42: 703e strb r6, [r7, #0] +10021d44: f8d4 3084 ldr.w r3, [r4, #132] ; 0x84 +10021d48: 2500 movs r5, #0 +10021d4a: f884 34f9 strb.w r3, [r4, #1273] ; 0x4f9 +10021d4e: 4620 mov r0, r4 +10021d50: f884 64f6 strb.w r6, [r4, #1270] ; 0x4f6 +10021d54: f884 54f7 strb.w r5, [r4, #1271] ; 0x4f7 +10021d58: f884 54f8 strb.w r5, [r4, #1272] ; 0x4f8 +10021d5c: f00c fd98 bl 1002e890 +10021d60: 4650 mov r0, sl +10021d62: f001 fdd5 bl 10023910 +10021d66: 4601 mov r1, r0 +10021d68: 4620 mov r0, r4 +10021d6a: f00c fd52 bl 1002e812 +10021d6e: f1bb 0f00 cmp.w fp, #0 +10021d72: d005 beq.n 10021d80 +10021d74: 4620 mov r0, r4 +10021d76: 2105 movs r1, #5 +10021d78: 462a mov r2, r5 +10021d7a: 462b mov r3, r5 +10021d7c: f7ff fbc8 bl 10021510 +10021d80: 4620 mov r0, r4 +10021d82: f00b fe6d bl 1002da60 +10021d86: 4605 mov r5, r0 +10021d88: 2800 cmp r0, #0 +10021d8a: d069 beq.n 10021e60 +10021d8c: 2600 movs r6, #0 +10021d8e: f04f 0a01 mov.w sl, #1 +10021d92: f8c0 60fc str.w r6, [r0, #252] ; 0xfc +10021d96: f8c0 a100 str.w sl, [r0, #256] ; 0x100 +10021d9a: f8c0 6104 str.w r6, [r0, #260] ; 0x104 +10021d9e: f8c0 61f4 str.w r6, [r0, #500] ; 0x1f4 +10021da2: f8c0 6110 str.w r6, [r0, #272] ; 0x110 +10021da6: 4631 mov r1, r6 +10021da8: 2248 movs r2, #72 ; 0x48 +10021daa: f500 70c0 add.w r0, r0, #384 ; 0x180 +10021dae: f7fb f80f bl 1001cdd0 +10021db2: 4640 mov r0, r8 +10021db4: f021 fcbc bl 10043730 <__rtw_get_rateset_len_veneer> +10021db8: 4607 mov r7, r0 +10021dba: 4639 mov r1, r7 +10021dbc: 4652 mov r2, sl +10021dbe: 4640 mov r0, r8 +10021dc0: f021 fd46 bl 10043850 <__rtw_check_network_type_veneer> +10021dc4: f505 70ac add.w r0, r5, #344 ; 0x158 +10021dc8: 4641 mov r1, r8 +10021dca: 463a mov r2, r7 +10021dcc: f7fa ffee bl 1001cdac +10021dd0: f8c5 7168 str.w r7, [r5, #360] ; 0x168 +10021dd4: 42be cmp r6, r7 +10021dd6: da09 bge.n 10021dec +10021dd8: 19ab adds r3, r5, r6 +10021dda: f893 0158 ldrb.w r0, [r3, #344] ; 0x158 +10021dde: b118 cbz r0, 10021de8 +10021de0: f000 007f and.w r0, r0, #127 ; 0x7f +10021de4: f021 fcec bl 100437c0 <__rtw_get_bit_value_from_ieee_value_veneer> +10021de8: 3601 adds r6, #1 +10021dea: e7f3 b.n 10021dd4 +10021dec: f8d4 30e4 ldr.w r3, [r4, #228] ; 0xe4 +10021df0: 4620 mov r0, r4 +10021df2: 2b0f cmp r3, #15 +10021df4: bf34 ite cc +10021df6: 2101 movcc r1, #1 +10021df8: 2104 movcs r1, #4 +10021dfa: bf34 ite cc +10021dfc: f04f 080f movcc.w r8, #15 +10021e00: f44f 78a8 movcs.w r8, #336 ; 0x150 +10021e04: f00b fe93 bl 1002db2e +10021e08: 4607 mov r7, r0 +10021e0a: 4640 mov r0, r8 +10021e0c: f00c fc17 bl 1002e63e +10021e10: 2100 movs r1, #0 +10021e12: 4682 mov sl, r0 +10021e14: 462a mov r2, r5 +10021e16: 4620 mov r0, r4 +10021e18: 2301 movs r3, #1 +10021e1a: f015 fda6 bl 1003796a +10021e1e: f8d5 3100 ldr.w r3, [r5, #256] ; 0x100 +10021e22: ae10 add r6, sp, #64 ; 0x40 +10021e24: f003 031f and.w r3, r3, #31 +10021e28: f063 037f orn r3, r3, #127 ; 0x7f +10021e2c: f806 3d14 strb.w r3, [r6, #-20]! +10021e30: 4620 mov r0, r4 +10021e32: 2300 movs r3, #0 +10021e34: ea48 7107 orr.w r1, r8, r7, lsl #28 +10021e38: 4632 mov r2, r6 +10021e3a: f00a 0a3f and.w sl, sl, #63 ; 0x3f +10021e3e: f015 fe16 bl 10037a6e +10021e42: 4628 mov r0, r5 +10021e44: 4631 mov r1, r6 +10021e46: f885 7176 strb.w r7, [r5, #374] ; 0x176 +10021e4a: f885 a177 strb.w sl, [r5, #375] ; 0x177 +10021e4e: f7fb f853 bl 1001cef8 +10021e52: 2301 movs r3, #1 +10021e54: f8c5 30f8 str.w r3, [r5, #248] ; 0xf8 +10021e58: 4628 mov r0, r5 +10021e5a: 4631 mov r1, r6 +10021e5c: f7fb f854 bl 1001cf08 +10021e60: 6863 ldr r3, [r4, #4] +10021e62: 2b03 cmp r3, #3 +10021e64: d108 bne.n 10021e78 +10021e66: 4620 mov r0, r4 +10021e68: f005 ff98 bl 10027d9c +10021e6c: b120 cbz r0, 10021e78 +10021e6e: 4620 mov r0, r4 +10021e70: 2147 movs r1, #71 ; 0x47 +10021e72: 2200 movs r2, #0 +10021e74: f015 fd59 bl 1003792a +10021e78: f504 653d add.w r5, r4, #3024 ; 0xbd0 +10021e7c: 4628 mov r0, r5 +10021e7e: 4649 mov r1, r9 +10021e80: f00b fd98 bl 1002d9b4 +10021e84: b930 cbnz r0, 10021e94 +10021e86: 4628 mov r0, r5 +10021e88: 4649 mov r1, r9 +10021e8a: f00b fc5d bl 1002d748 +10021e8e: 2800 cmp r0, #0 +10021e90: f43f acab beq.w 100217ea +10021e94: f8d0 30f8 ldr.w r3, [r0, #248] ; 0xf8 +10021e98: f043 0310 orr.w r3, r3, #16 +10021e9c: f8c0 30f8 str.w r3, [r0, #248] ; 0xf8 +10021ea0: 4620 mov r0, r4 +10021ea2: f001 ff42 bl 10023d2a +10021ea6: 2001 movs r0, #1 +10021ea8: f8c4 0094 str.w r0, [r4, #148] ; 0x94 +10021eac: e00c b.n 10021ec8 +10021eae: 2900 cmp r1, #0 +10021eb0: f43f adcd beq.w 10021a4e +10021eb4: 3102 adds r1, #2 +10021eb6: 1870 adds r0, r6, r1 +10021eb8: e59a b.n 100219f0 +10021eba: 9805 ldr r0, [sp, #20] +10021ebc: 2800 cmp r0, #0 +10021ebe: f43f adec beq.w 10021a9a +10021ec2: 3002 adds r0, #2 +10021ec4: 4430 add r0, r6 +10021ec6: e5ce b.n 10021a66 +10021ec8: b011 add sp, #68 ; 0x44 +10021eca: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10021ece: bf00 nop + +10021ed0 : +10021ed0: 2901 cmp r1, #1 +10021ed2: d101 bne.n 10021ed8 +10021ed4: f7ff b9ff b.w 100212d6 +10021ed8: 4770 bx lr + +10021eda : +10021eda: b570 push {r4, r5, r6, lr} +10021edc: f8d1 32bc ldr.w r3, [r1, #700] ; 0x2bc +10021ee0: 4604 mov r4, r0 +10021ee2: f013 0f80 tst.w r3, #128 ; 0x80 +10021ee6: 460d mov r5, r1 +10021ee8: f891 32fb ldrb.w r3, [r1, #763] ; 0x2fb +10021eec: d119 bne.n 10021f22 +10021eee: b10b cbz r3, 10021ef4 +10021ef0: 2600 movs r6, #0 +10021ef2: e028 b.n 10021f46 +10021ef4: 2301 movs r3, #1 +10021ef6: f881 32fb strb.w r3, [r1, #763] ; 0x2fb +10021efa: f8b0 34b8 ldrh.w r3, [r0, #1208] ; 0x4b8 +10021efe: f890 24f9 ldrb.w r2, [r0, #1273] ; 0x4f9 +10021f02: 3301 adds r3, #1 +10021f04: b29b uxth r3, r3 +10021f06: 2a01 cmp r2, #1 +10021f08: f8a0 34b8 strh.w r3, [r0, #1208] ; 0x4b8 +10021f0c: d9f0 bls.n 10021ef0 +10021f0e: 2b01 cmp r3, #1 +10021f10: d1ee bne.n 10021ef0 +10021f12: 4620 mov r0, r4 +10021f14: 21ff movs r1, #255 ; 0xff +10021f16: 2200 movs r2, #0 +10021f18: 2301 movs r3, #1 +10021f1a: f7ff faf9 bl 10021510 +10021f1e: 2601 movs r6, #1 +10021f20: e011 b.n 10021f46 +10021f22: 2b00 cmp r3, #0 +10021f24: d0e4 beq.n 10021ef0 +10021f26: 2300 movs r3, #0 +10021f28: f881 32fb strb.w r3, [r1, #763] ; 0x2fb +10021f2c: f8b0 34b8 ldrh.w r3, [r0, #1208] ; 0x4b8 +10021f30: f890 24f9 ldrb.w r2, [r0, #1273] ; 0x4f9 +10021f34: 3b01 subs r3, #1 +10021f36: b29b uxth r3, r3 +10021f38: 2a01 cmp r2, #1 +10021f3a: f8a0 34b8 strh.w r3, [r0, #1208] ; 0x4b8 +10021f3e: d9d7 bls.n 10021ef0 +10021f40: 2b00 cmp r3, #0 +10021f42: d1d5 bne.n 10021ef0 +10021f44: e7e5 b.n 10021f12 +10021f46: f8d5 32bc ldr.w r3, [r5, #700] ; 0x2bc +10021f4a: 2b00 cmp r3, #0 +10021f4c: f895 32f9 ldrb.w r3, [r5, #761] ; 0x2f9 +10021f50: da13 bge.n 10021f7a +10021f52: b9f3 cbnz r3, 10021f92 +10021f54: 2301 movs r3, #1 +10021f56: f885 32f9 strb.w r3, [r5, #761] ; 0x2f9 +10021f5a: f8b4 34b4 ldrh.w r3, [r4, #1204] ; 0x4b4 +10021f5e: 3301 adds r3, #1 +10021f60: b29b uxth r3, r3 +10021f62: 2b01 cmp r3, #1 +10021f64: f8a4 34b4 strh.w r3, [r4, #1204] ; 0x4b4 +10021f68: d113 bne.n 10021f92 +10021f6a: 4620 mov r0, r4 +10021f6c: 212a movs r1, #42 ; 0x2a +10021f6e: 2200 movs r2, #0 +10021f70: 2301 movs r3, #1 +10021f72: f7ff facd bl 10021510 +10021f76: 2601 movs r6, #1 +10021f78: e00b b.n 10021f92 +10021f7a: b153 cbz r3, 10021f92 +10021f7c: 2300 movs r3, #0 +10021f7e: f885 32f9 strb.w r3, [r5, #761] ; 0x2f9 +10021f82: f8b4 34b4 ldrh.w r3, [r4, #1204] ; 0x4b4 +10021f86: 3b01 subs r3, #1 +10021f88: b29b uxth r3, r3 +10021f8a: f8a4 34b4 strh.w r3, [r4, #1204] ; 0x4b4 +10021f8e: 2b00 cmp r3, #0 +10021f90: d0eb beq.n 10021f6a +10021f92: f8b5 32b8 ldrh.w r3, [r5, #696] ; 0x2b8 +10021f96: f413 6f80 tst.w r3, #1024 ; 0x400 +10021f9a: f895 32fa ldrb.w r3, [r5, #762] ; 0x2fa +10021f9e: d117 bne.n 10021fd0 +10021fa0: bb33 cbnz r3, 10021ff0 +10021fa2: 2301 movs r3, #1 +10021fa4: f885 32fa strb.w r3, [r5, #762] ; 0x2fa +10021fa8: f8b4 34b6 ldrh.w r3, [r4, #1206] ; 0x4b6 +10021fac: f894 24f9 ldrb.w r2, [r4, #1273] ; 0x4f9 +10021fb0: 3301 adds r3, #1 +10021fb2: b29b uxth r3, r3 +10021fb4: 2a01 cmp r2, #1 +10021fb6: f8a4 34b6 strh.w r3, [r4, #1206] ; 0x4b6 +10021fba: d919 bls.n 10021ff0 +10021fbc: 2b01 cmp r3, #1 +10021fbe: d117 bne.n 10021ff0 +10021fc0: 4620 mov r0, r4 +10021fc2: 21ff movs r1, #255 ; 0xff +10021fc4: 2200 movs r2, #0 +10021fc6: 2301 movs r3, #1 +10021fc8: f7ff faa2 bl 10021510 +10021fcc: 2601 movs r6, #1 +10021fce: e00f b.n 10021ff0 +10021fd0: b173 cbz r3, 10021ff0 +10021fd2: 2300 movs r3, #0 +10021fd4: f885 32fa strb.w r3, [r5, #762] ; 0x2fa +10021fd8: f8b4 34b6 ldrh.w r3, [r4, #1206] ; 0x4b6 +10021fdc: f894 24f9 ldrb.w r2, [r4, #1273] ; 0x4f9 +10021fe0: 3b01 subs r3, #1 +10021fe2: b29b uxth r3, r3 +10021fe4: 2a01 cmp r2, #1 +10021fe6: f8a4 34b6 strh.w r3, [r4, #1206] ; 0x4b6 +10021fea: d901 bls.n 10021ff0 +10021fec: 2b00 cmp r3, #0 +10021fee: d0e7 beq.n 10021fc0 +10021ff0: f8d5 32bc ldr.w r3, [r5, #700] ; 0x2bc +10021ff4: f413 6f00 tst.w r3, #2048 ; 0x800 +10021ff8: f895 32fd ldrb.w r3, [r5, #765] ; 0x2fd +10021ffc: d025 beq.n 1002204a +10021ffe: f8b5 2202 ldrh.w r2, [r5, #514] ; 0x202 +10022002: b13b cbz r3, 10022014 +10022004: 2300 movs r3, #0 +10022006: f885 32fd strb.w r3, [r5, #765] ; 0x2fd +1002200a: f8b4 3450 ldrh.w r3, [r4, #1104] ; 0x450 +1002200e: 3b01 subs r3, #1 +10022010: f8a4 3450 strh.w r3, [r4, #1104] ; 0x450 +10022014: 06d1 lsls r1, r2, #27 +10022016: d40a bmi.n 1002202e +10022018: f895 32fc ldrb.w r3, [r5, #764] ; 0x2fc +1002201c: b93b cbnz r3, 1002202e +1002201e: 2301 movs r3, #1 +10022020: f885 32fc strb.w r3, [r5, #764] ; 0x2fc +10022024: f8b4 34ba ldrh.w r3, [r4, #1210] ; 0x4ba +10022028: 3301 adds r3, #1 +1002202a: f8a4 34ba strh.w r3, [r4, #1210] ; 0x4ba +1002202e: 0793 lsls r3, r2, #30 +10022030: d414 bmi.n 1002205c +10022032: f895 32fe ldrb.w r3, [r5, #766] ; 0x2fe +10022036: b98b cbnz r3, 1002205c +10022038: 2301 movs r3, #1 +1002203a: f885 32fe strb.w r3, [r5, #766] ; 0x2fe +1002203e: f8b4 34bc ldrh.w r3, [r4, #1212] ; 0x4bc +10022042: 3301 adds r3, #1 +10022044: f8a4 34bc strh.w r3, [r4, #1212] ; 0x4bc +10022048: e008 b.n 1002205c +1002204a: b93b cbnz r3, 1002205c +1002204c: 2301 movs r3, #1 +1002204e: f885 32fd strb.w r3, [r5, #765] ; 0x2fd +10022052: f8b4 3450 ldrh.w r3, [r4, #1104] ; 0x450 +10022056: 3301 adds r3, #1 +10022058: f8a4 3450 strh.w r3, [r4, #1104] ; 0x450 +1002205c: 4620 mov r0, r4 +1002205e: f7ff f8e1 bl 10021224 +10022062: 2800 cmp r0, #0 +10022064: dd0b ble.n 1002207e +10022066: 2200 movs r2, #0 +10022068: 4613 mov r3, r2 +1002206a: 4620 mov r0, r4 +1002206c: 212d movs r1, #45 ; 0x2d +1002206e: f7ff fa4f bl 10021510 +10022072: 4620 mov r0, r4 +10022074: 213d movs r1, #61 ; 0x3d +10022076: 2200 movs r2, #0 +10022078: 2301 movs r3, #1 +1002207a: f7ff fa49 bl 10021510 +1002207e: 4620 mov r0, r4 +10022080: 4631 mov r1, r6 +10022082: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10022086: f7ff bf23 b.w 10021ed0 + +1002208a : +1002208a: b570 push {r4, r5, r6, lr} +1002208c: 4604 mov r4, r0 +1002208e: 460d mov r5, r1 +10022090: 2900 cmp r1, #0 +10022092: d075 beq.n 10022180 +10022094: f891 32fb ldrb.w r3, [r1, #763] ; 0x2fb +10022098: b90b cbnz r3, 1002209e +1002209a: 2600 movs r6, #0 +1002209c: e013 b.n 100220c6 +1002209e: 2300 movs r3, #0 +100220a0: f881 32fb strb.w r3, [r1, #763] ; 0x2fb +100220a4: f8b0 24b8 ldrh.w r2, [r0, #1208] ; 0x4b8 +100220a8: f890 34f9 ldrb.w r3, [r0, #1273] ; 0x4f9 +100220ac: 3a01 subs r2, #1 +100220ae: b292 uxth r2, r2 +100220b0: 2b01 cmp r3, #1 +100220b2: f8a0 24b8 strh.w r2, [r0, #1208] ; 0x4b8 +100220b6: d9f0 bls.n 1002209a +100220b8: 2a00 cmp r2, #0 +100220ba: d1ee bne.n 1002209a +100220bc: 21ff movs r1, #255 ; 0xff +100220be: 2301 movs r3, #1 +100220c0: f7ff fa26 bl 10021510 +100220c4: 2601 movs r6, #1 +100220c6: f895 32f9 ldrb.w r3, [r5, #761] ; 0x2f9 +100220ca: b17b cbz r3, 100220ec +100220cc: 2300 movs r3, #0 +100220ce: f885 32f9 strb.w r3, [r5, #761] ; 0x2f9 +100220d2: f8b4 24b4 ldrh.w r2, [r4, #1204] ; 0x4b4 +100220d6: 3a01 subs r2, #1 +100220d8: b292 uxth r2, r2 +100220da: f8a4 24b4 strh.w r2, [r4, #1204] ; 0x4b4 +100220de: b92a cbnz r2, 100220ec +100220e0: 4620 mov r0, r4 +100220e2: 212a movs r1, #42 ; 0x2a +100220e4: 2301 movs r3, #1 +100220e6: f7ff fa13 bl 10021510 +100220ea: 2601 movs r6, #1 +100220ec: f895 32fa ldrb.w r3, [r5, #762] ; 0x2fa +100220f0: b19b cbz r3, 1002211a +100220f2: 2300 movs r3, #0 +100220f4: f885 32fa strb.w r3, [r5, #762] ; 0x2fa +100220f8: f8b4 24b6 ldrh.w r2, [r4, #1206] ; 0x4b6 +100220fc: f894 34f9 ldrb.w r3, [r4, #1273] ; 0x4f9 +10022100: 3a01 subs r2, #1 +10022102: b292 uxth r2, r2 +10022104: 2b01 cmp r3, #1 +10022106: f8a4 24b6 strh.w r2, [r4, #1206] ; 0x4b6 +1002210a: d906 bls.n 1002211a +1002210c: b92a cbnz r2, 1002211a +1002210e: 4620 mov r0, r4 +10022110: 21ff movs r1, #255 ; 0xff +10022112: 2301 movs r3, #1 +10022114: f7ff f9fc bl 10021510 +10022118: 2601 movs r6, #1 +1002211a: f895 32fc ldrb.w r3, [r5, #764] ; 0x2fc +1002211e: b13b cbz r3, 10022130 +10022120: 2300 movs r3, #0 +10022122: f885 32fc strb.w r3, [r5, #764] ; 0x2fc +10022126: f8b4 34ba ldrh.w r3, [r4, #1210] ; 0x4ba +1002212a: 3b01 subs r3, #1 +1002212c: f8a4 34ba strh.w r3, [r4, #1210] ; 0x4ba +10022130: f895 32fd ldrb.w r3, [r5, #765] ; 0x2fd +10022134: b13b cbz r3, 10022146 +10022136: 2300 movs r3, #0 +10022138: f885 32fd strb.w r3, [r5, #765] ; 0x2fd +1002213c: f8b4 3450 ldrh.w r3, [r4, #1104] ; 0x450 +10022140: 3b01 subs r3, #1 +10022142: f8a4 3450 strh.w r3, [r4, #1104] ; 0x450 +10022146: f895 32fe ldrb.w r3, [r5, #766] ; 0x2fe +1002214a: b13b cbz r3, 1002215c +1002214c: 2300 movs r3, #0 +1002214e: f885 32fe strb.w r3, [r5, #766] ; 0x2fe +10022152: f8b4 34bc ldrh.w r3, [r4, #1212] ; 0x4bc +10022156: 3b01 subs r3, #1 +10022158: f8a4 34bc strh.w r3, [r4, #1212] ; 0x4bc +1002215c: 4620 mov r0, r4 +1002215e: f7ff f861 bl 10021224 +10022162: 2800 cmp r0, #0 +10022164: dd0d ble.n 10022182 +10022166: 2200 movs r2, #0 +10022168: 4620 mov r0, r4 +1002216a: 4613 mov r3, r2 +1002216c: 212d movs r1, #45 ; 0x2d +1002216e: f7ff f9cf bl 10021510 +10022172: 4620 mov r0, r4 +10022174: 213d movs r1, #61 ; 0x3d +10022176: 2200 movs r2, #0 +10022178: 2301 movs r3, #1 +1002217a: f7ff f9c9 bl 10021510 +1002217e: e000 b.n 10022182 +10022180: 460e mov r6, r1 +10022182: 4630 mov r0, r6 +10022184: bd70 pop {r4, r5, r6, pc} + +10022186 : +10022186: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10022188: 2300 movs r3, #0 +1002218a: 4605 mov r5, r0 +1002218c: 4617 mov r7, r2 +1002218e: 460c mov r4, r1 +10022190: 2900 cmp r1, #0 +10022192: d046 beq.n 10022222 +10022194: f881 31ff strb.w r3, [r1, #511] ; 0x1ff +10022198: f881 3200 strb.w r3, [r1, #512] ; 0x200 +1002219c: 6903 ldr r3, [r0, #16] +1002219e: f501 7684 add.w r6, r1, #264 ; 0x108 +100221a2: f413 7f80 tst.w r3, #256 ; 0x100 +100221a6: d107 bne.n 100221b8 +100221a8: f890 3875 ldrb.w r3, [r0, #2165] ; 0x875 +100221ac: 2b00 cmp r3, #0 +100221ae: d03a beq.n 10022226 +100221b0: f895 3876 ldrb.w r3, [r5, #2166] ; 0x876 +100221b4: 2b00 cmp r3, #0 +100221b6: d036 beq.n 10022226 +100221b8: f8d4 2100 ldr.w r2, [r4, #256] ; 0x100 +100221bc: 2301 movs r3, #1 +100221be: 3203 adds r2, #3 +100221c0: b2d2 uxtb r2, r2 +100221c2: 4621 mov r1, r4 +100221c4: 4628 mov r0, r5 +100221c6: f000 ff13 bl 10022ff0 +100221ca: 4620 mov r0, r4 +100221cc: a901 add r1, sp, #4 +100221ce: f7fa fe93 bl 1001cef8 +100221d2: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +100221d6: 4620 mov r0, r4 +100221d8: f023 0301 bic.w r3, r3, #1 +100221dc: f8c4 30f8 str.w r3, [r4, #248] ; 0xf8 +100221e0: a901 add r1, sp, #4 +100221e2: f7fa fe91 bl 1001cf08 +100221e6: 4631 mov r1, r6 +100221e8: 4628 mov r0, r5 +100221ea: f016 fe95 bl 10038f18 +100221ee: 463a mov r2, r7 +100221f0: 4631 mov r1, r6 +100221f2: 4628 mov r0, r5 +100221f4: f005 f804 bl 10027200 +100221f8: 4621 mov r1, r4 +100221fa: 4628 mov r0, r5 +100221fc: f7ff ff45 bl 1002208a +10022200: f605 36e8 addw r6, r5, #3048 ; 0xbe8 +10022204: 4607 mov r7, r0 +10022206: a901 add r1, sp, #4 +10022208: 4630 mov r0, r6 +1002220a: f7fa fe75 bl 1001cef8 +1002220e: 4621 mov r1, r4 +10022210: 4628 mov r0, r5 +10022212: f00b fafe bl 1002d812 +10022216: 4630 mov r0, r6 +10022218: a901 add r1, sp, #4 +1002221a: f7fa fe75 bl 1001cf08 +1002221e: 4638 mov r0, r7 +10022220: e007 b.n 10022232 +10022222: 4608 mov r0, r1 +10022224: e005 b.n 10022232 +10022226: 4628 mov r0, r5 +10022228: 4631 mov r1, r6 +1002222a: 463a mov r2, r7 +1002222c: f003 fff8 bl 10026220 +10022230: e7c2 b.n 100221b8 +10022232: b003 add sp, #12 +10022234: bdf0 pop {r4, r5, r6, r7, pc} + ... + +10022238 : +10022238: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1002223c: f600 4648 addw r6, r0, #3144 ; 0xc48 +10022240: b086 sub sp, #24 +10022242: 4605 mov r5, r0 +10022244: a905 add r1, sp, #20 +10022246: 4630 mov r0, r6 +10022248: f7fa fe56 bl 1001cef8 +1002224c: f8d5 4c3c ldr.w r4, [r5, #3132] ; 0xc3c +10022250: f605 483c addw r8, r5, #3132 ; 0xc3c +10022254: 4640 mov r0, r8 +10022256: 4621 mov r1, r4 +10022258: f7fa fe82 bl 1001cf60 +1002225c: bb18 cbnz r0, 100222a6 +1002225e: 68a3 ldr r3, [r4, #8] +10022260: f8d4 9000 ldr.w r9, [r4] +10022264: f5a4 7709 sub.w r7, r4, #548 ; 0x224 +10022268: b1db cbz r3, 100222a2 +1002226a: 3b01 subs r3, #1 +1002226c: 60a3 str r3, [r4, #8] +1002226e: b9c3 cbnz r3, 100222a2 +10022270: 4620 mov r0, r4 +10022272: f7fa fdcb bl 1001ce0c +10022276: f605 34e8 addw r4, r5, #3048 ; 0xbe8 +1002227a: 4630 mov r0, r6 +1002227c: a905 add r1, sp, #20 +1002227e: f7fa fe43 bl 1001cf08 +10022282: 4620 mov r0, r4 +10022284: a905 add r1, sp, #20 +10022286: f7fa fe37 bl 1001cef8 +1002228a: 4639 mov r1, r7 +1002228c: 4628 mov r0, r5 +1002228e: f00b fac0 bl 1002d812 +10022292: 4620 mov r0, r4 +10022294: a905 add r1, sp, #20 +10022296: f7fa fe37 bl 1001cf08 +1002229a: 4630 mov r0, r6 +1002229c: a905 add r1, sp, #20 +1002229e: f7fa fe2b bl 1001cef8 +100222a2: 464c mov r4, r9 +100222a4: e7d6 b.n 10022254 +100222a6: 4630 mov r0, r6 +100222a8: a905 add r1, sp, #20 +100222aa: f605 4844 addw r8, r5, #3140 ; 0xc44 +100222ae: f7fa fe2b bl 1001cf08 +100222b2: 4640 mov r0, r8 +100222b4: a905 add r1, sp, #20 +100222b6: f7fa fe1f bl 1001cef8 +100222ba: f8d5 6c34 ldr.w r6, [r5, #3124] ; 0xc34 +100222be: f605 4934 addw r9, r5, #3124 ; 0xc34 +100222c2: 2700 movs r7, #0 +100222c4: 4648 mov r0, r9 +100222c6: 4631 mov r1, r6 +100222c8: f7fa fe4a bl 1001cf60 +100222cc: 2800 cmp r0, #0 +100222ce: d140 bne.n 10022352 +100222d0: f5a6 7407 sub.w r4, r6, #540 ; 0x21c +100222d4: 4620 mov r0, r4 +100222d6: f8d6 a000 ldr.w sl, [r6] +100222da: f7ff f81a bl 10021312 +100222de: b118 cbz r0, 100222e8 +100222e0: f8d5 3c54 ldr.w r3, [r5, #3156] ; 0xc54 +100222e4: f8c4 322c str.w r3, [r4, #556] ; 0x22c +100222e8: f8d4 322c ldr.w r3, [r4, #556] ; 0x22c +100222ec: b37b cbz r3, 1002234e +100222ee: 3b01 subs r3, #1 +100222f0: f8c4 322c str.w r3, [r4, #556] ; 0x22c +100222f4: bb03 cbnz r3, 10022338 +100222f6: 4630 mov r0, r6 +100222f8: f7fa fd88 bl 1001ce0c +100222fc: 481a ldr r0, [pc, #104] ; (10022368 ) +100222fe: f01f ff03 bl 10042108 +10022302: f894 010b ldrb.w r0, [r4, #267] ; 0x10b +10022306: f894 1108 ldrb.w r1, [r4, #264] ; 0x108 +1002230a: f894 2109 ldrb.w r2, [r4, #265] ; 0x109 +1002230e: f894 310a ldrb.w r3, [r4, #266] ; 0x10a +10022312: 9000 str r0, [sp, #0] +10022314: f894 010c ldrb.w r0, [r4, #268] ; 0x10c +10022318: 9001 str r0, [sp, #4] +1002231a: f894 010d ldrb.w r0, [r4, #269] ; 0x10d +1002231e: 9002 str r0, [sp, #8] +10022320: 4812 ldr r0, [pc, #72] ; (1002236c ) +10022322: f8d0 0138 ldr.w r0, [r0, #312] ; 0x138 +10022326: f01f feef bl 10042108 +1002232a: 4628 mov r0, r5 +1002232c: 4621 mov r1, r4 +1002232e: 2203 movs r2, #3 +10022330: f7ff ff29 bl 10022186 +10022334: 4607 mov r7, r0 +10022336: e00a b.n 1002234e +10022338: 4b0d ldr r3, [pc, #52] ; (10022370 ) +1002233a: 681a ldr r2, [r3, #0] +1002233c: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +10022340: ebb3 0f52 cmp.w r3, r2, lsr #1 +10022344: d903 bls.n 1002234e +10022346: 4628 mov r0, r5 +10022348: 4621 mov r1, r4 +1002234a: f00d fa54 bl 1002f7f6 +1002234e: 4656 mov r6, sl +10022350: e7b8 b.n 100222c4 +10022352: 4640 mov r0, r8 +10022354: a905 add r1, sp, #20 +10022356: f7fa fdd7 bl 1001cf08 +1002235a: 4628 mov r0, r5 +1002235c: 4639 mov r1, r7 +1002235e: f7ff fdb7 bl 10021ed0 +10022362: b006 add sp, #24 +10022364: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10022368: 1004b9eb .word 0x1004b9eb +1002236c: 1004da10 .word 0x1004da10 +10022370: 1004d9b8 .word 0x1004d9b8 + +10022374 : +10022374: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10022378: 4b1e ldr r3, [pc, #120] ; (100223f4 ) +1002237a: 4604 mov r4, r0 +1002237c: 6818 ldr r0, [r3, #0] +1002237e: 889b ldrh r3, [r3, #4] +10022380: b085 sub sp, #20 +10022382: f8ad 300c strh.w r3, [sp, #12] +10022386: 6923 ldr r3, [r4, #16] +10022388: 9002 str r0, [sp, #8] +1002238a: 06db lsls r3, r3, #27 +1002238c: d52e bpl.n 100223ec +1002238e: f604 4644 addw r6, r4, #3140 ; 0xc44 +10022392: 4630 mov r0, r6 +10022394: a901 add r1, sp, #4 +10022396: f7fa fdaf bl 1001cef8 +1002239a: f8d4 5c34 ldr.w r5, [r4, #3124] ; 0xc34 +1002239e: f604 4734 addw r7, r4, #3124 ; 0xc34 +100223a2: 4638 mov r0, r7 +100223a4: 4629 mov r1, r5 +100223a6: f7fa fddb bl 1001cf60 +100223aa: b968 cbnz r0, 100223c8 +100223ac: 4628 mov r0, r5 +100223ae: f8d5 8000 ldr.w r8, [r5] +100223b2: f5a5 7907 sub.w r9, r5, #540 ; 0x21c +100223b6: f7fa fd29 bl 1001ce0c +100223ba: 4620 mov r0, r4 +100223bc: 4649 mov r1, r9 +100223be: 2203 movs r2, #3 +100223c0: f7ff fee1 bl 10022186 +100223c4: 4645 mov r5, r8 +100223c6: e7ec b.n 100223a2 +100223c8: 4630 mov r0, r6 +100223ca: a901 add r1, sp, #4 +100223cc: f7fa fd9c bl 1001cf08 +100223d0: f894 3875 ldrb.w r3, [r4, #2165] ; 0x875 +100223d4: b113 cbz r3, 100223dc +100223d6: f894 3876 ldrb.w r3, [r4, #2166] ; 0x876 +100223da: b923 cbnz r3, 100223e6 +100223dc: 4620 mov r0, r4 +100223de: a902 add r1, sp, #8 +100223e0: 2203 movs r2, #3 +100223e2: f003 ff1d bl 10026220 +100223e6: 4620 mov r0, r4 +100223e8: f7fe ff75 bl 100212d6 +100223ec: 2000 movs r0, #0 +100223ee: b005 add sp, #20 +100223f0: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100223f4: 1004a143 .word 0x1004a143 + +100223f8 : +100223f8: b573 push {r0, r1, r4, r5, r6, lr} +100223fa: 2500 movs r5, #0 +100223fc: 4604 mov r4, r0 +100223fe: f880 54e0 strb.w r5, [r0, #1248] ; 0x4e0 +10022402: f880 57d0 strb.w r5, [r0, #2000] ; 0x7d0 +10022406: f7ff ffb5 bl 10022374 +1002240a: f8c4 55f8 str.w r5, [r4, #1528] ; 0x5f8 +1002240e: 4620 mov r0, r4 +10022410: f00b fb38 bl 1002da84 +10022414: 4620 mov r0, r4 +10022416: f00b fb23 bl 1002da60 +1002241a: f604 35e8 addw r5, r4, #3048 ; 0xbe8 +1002241e: 4606 mov r6, r0 +10022420: a901 add r1, sp, #4 +10022422: 4628 mov r0, r5 +10022424: f7fa fd68 bl 1001cef8 +10022428: 4631 mov r1, r6 +1002242a: 4620 mov r0, r4 +1002242c: f00b f9f1 bl 1002d812 +10022430: 4628 mov r0, r5 +10022432: a901 add r1, sp, #4 +10022434: f7fa fd68 bl 1001cf08 +10022438: f204 40dc addw r0, r4, #1244 ; 0x4dc +1002243c: f7fa fd9c bl 1001cf78 +10022440: b002 add sp, #8 +10022442: bd70 pop {r4, r5, r6, pc} + +10022444 : +10022444: f8d1 32bc ldr.w r3, [r1, #700] ; 0x2bc +10022448: f413 7200 ands.w r2, r3, #512 ; 0x200 +1002244c: bf18 it ne +1002244e: 2201 movne r2, #1 +10022450: f8c1 2104 str.w r2, [r1, #260] ; 0x104 +10022454: f8d0 244c ldr.w r2, [r0, #1100] ; 0x44c +10022458: b90a cbnz r2, 1002245e +1002245a: f8c1 2104 str.w r2, [r1, #260] ; 0x104 +1002245e: f413 6300 ands.w r3, r3, #2048 ; 0x800 +10022462: bf1d ittte ne +10022464: 2301 movne r3, #1 +10022466: f8c1 31f4 strne.w r3, [r1, #500] ; 0x1f4 +1002246a: f8c1 3104 strne.w r3, [r1, #260] ; 0x104 +1002246e: f8c1 31f4 streq.w r3, [r1, #500] ; 0x1f4 +10022472: f8d0 3454 ldr.w r3, [r0, #1108] ; 0x454 +10022476: b90b cbnz r3, 1002247c +10022478: f8c1 31f4 str.w r3, [r1, #500] ; 0x1f4 +1002247c: f7fe bfec b.w 10021458 + +10022480 : +10022480: b538 push {r3, r4, r5, lr} +10022482: f8d1 30f8 ldr.w r3, [r1, #248] ; 0xf8 +10022486: 4605 mov r5, r0 +10022488: 07db lsls r3, r3, #31 +1002248a: 460c mov r4, r1 +1002248c: d50f bpl.n 100224ae +1002248e: f8d1 3100 ldr.w r3, [r1, #256] ; 0x100 +10022492: 2200 movs r2, #0 +10022494: eb00 1343 add.w r3, r0, r3, lsl #5 +10022498: f8c3 1708 str.w r1, [r3, #1800] ; 0x708 +1002249c: f7fe ff58 bl 10021350 +100224a0: 4628 mov r0, r5 +100224a2: f8d4 1100 ldr.w r1, [r4, #256] ; 0x100 +100224a6: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +100224aa: f015 bb7c b.w 10037ba6 +100224ae: bd38 pop {r3, r4, r5, pc} + +100224b0 : +100224b0: 2300 movs r3, #0 +100224b2: f880 34e0 strb.w r3, [r0, #1248] ; 0x4e0 +100224b6: f880 37d0 strb.w r3, [r0, #2000] ; 0x7d0 +100224ba: f8a0 34b4 strh.w r3, [r0, #1204] ; 0x4b4 +100224be: f8a0 34b6 strh.w r3, [r0, #1206] ; 0x4b6 +100224c2: f8a0 34b8 strh.w r3, [r0, #1208] ; 0x4b8 +100224c6: f8a0 34ba strh.w r3, [r0, #1210] ; 0x4ba +100224ca: f8a0 3450 strh.w r3, [r0, #1104] ; 0x450 +100224ce: f8a0 34bc strh.w r3, [r0, #1212] ; 0x4bc +100224d2: f880 34be strb.w r3, [r0, #1214] ; 0x4be +100224d6: f8a0 34c0 strh.w r3, [r0, #1216] ; 0x4c0 +100224da: f8c0 3c58 str.w r3, [r0, #3160] ; 0xc58 +100224de: f8c0 3c5c str.w r3, [r0, #3164] ; 0xc5c +100224e2: f8c0 3c60 str.w r3, [r0, #3168] ; 0xc60 +100224e6: f8c0 3c64 str.w r3, [r0, #3172] ; 0xc64 +100224ea: f8c0 3c68 str.w r3, [r0, #3176] ; 0xc68 +100224ee: 4770 bx lr + +100224f0 : +100224f0: b510 push {r4, lr} +100224f2: 4604 mov r4, r0 +100224f4: f200 40dc addw r0, r0, #1244 ; 0x4dc +100224f8: f7fa fd36 bl 1001cf68 +100224fc: 4620 mov r0, r4 +100224fe: e8bd 4010 ldmia.w sp!, {r4, lr} +10022502: f7ff bfd5 b.w 100224b0 + +10022506 : +10022506: 2300 movs r3, #0 +10022508: b573 push {r0, r1, r4, r5, r6, lr} +1002250a: f880 34e0 strb.w r3, [r0, #1248] ; 0x4e0 +1002250e: f880 37d0 strb.w r3, [r0, #2000] ; 0x7d0 +10022512: 4604 mov r4, r0 +10022514: f7ff ff2e bl 10022374 +10022518: 4620 mov r0, r4 +1002251a: f00b fab3 bl 1002da84 +1002251e: 4620 mov r0, r4 +10022520: f00b fa9e bl 1002da60 +10022524: f604 35e8 addw r5, r4, #3048 ; 0xbe8 +10022528: 4606 mov r6, r0 +1002252a: a901 add r1, sp, #4 +1002252c: 4628 mov r0, r5 +1002252e: f7fa fce3 bl 1001cef8 +10022532: 4631 mov r1, r6 +10022534: 4620 mov r0, r4 +10022536: f00b f96c bl 1002d812 +1002253a: a901 add r1, sp, #4 +1002253c: 4628 mov r0, r5 +1002253e: f7fa fce3 bl 1001cf08 +10022542: 4620 mov r0, r4 +10022544: f00b fa74 bl 1002da30 +10022548: f104 000c add.w r0, r4, #12 +1002254c: f001 f8f1 bl 10023732 +10022550: b002 add sp, #8 +10022552: bd70 pop {r4, r5, r6, pc} + +10022554 : +10022554: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10022558: 4605 mov r5, r0 +1002255a: f505 5997 add.w r9, r5, #4832 ; 0x12e0 +1002255e: f109 0918 add.w r9, r9, #24 +10022562: f8d9 4040 ldr.w r4, [r9, #64] ; 0x40 +10022566: b091 sub sp, #68 ; 0x44 +10022568: 811c strh r4, [r3, #8] +1002256a: f8d5 4c7c ldr.w r4, [r5, #3196] ; 0xc7c +1002256e: 4618 mov r0, r3 +10022570: 2c00 cmp r4, #0 +10022572: bf0c ite eq +10022574: 2321 moveq r3, #33 ; 0x21 +10022576: 2331 movne r3, #49 ; 0x31 +10022578: 8143 strh r3, [r0, #10] +1002257a: af10 add r7, sp, #64 ; 0x40 +1002257c: 230c movs r3, #12 +1002257e: f847 3d38 str.w r3, [r7, #-56]! +10022582: 460e mov r6, r1 +10022584: 4418 add r0, r3 +10022586: 2100 movs r1, #0 +10022588: 9700 str r7, [sp, #0] +1002258a: 4633 mov r3, r6 +1002258c: f021 f8e0 bl 10043750 <__rtw_set_ie_veneer> +10022590: f899 102d ldrb.w r1, [r9, #45] ; 0x2d +10022594: 4604 mov r4, r0 +10022596: 291f cmp r1, #31 +10022598: d105 bne.n 100225a6 +1002259a: f895 34f6 ldrb.w r3, [r5, #1270] ; 0x4f6 +1002259e: 2b0f cmp r3, #15 +100225a0: bf34 ite cc +100225a2: 210b movcc r1, #11 +100225a4: 2114 movcs r1, #20 +100225a6: a805 add r0, sp, #20 +100225a8: f021 f992 bl 100438d0 <__rtw_set_supported_rate_veneer> +100225ac: a805 add r0, sp, #20 +100225ae: f021 f8bf bl 10043730 <__rtw_get_rateset_len_veneer> +100225b2: 4680 mov r8, r0 +100225b4: f1b8 0f08 cmp.w r8, #8 +100225b8: bf8c ite hi +100225ba: 2208 movhi r2, #8 +100225bc: 4642 movls r2, r8 +100225be: 4620 mov r0, r4 +100225c0: 2101 movs r1, #1 +100225c2: ab05 add r3, sp, #20 +100225c4: 9700 str r7, [sp, #0] +100225c6: f021 f8c3 bl 10043750 <__rtw_set_ie_veneer> +100225ca: 2103 movs r1, #3 +100225cc: 2201 movs r2, #1 +100225ce: f205 43f6 addw r3, r5, #1270 ; 0x4f6 +100225d2: 9700 str r7, [sp, #0] +100225d4: f021 f8bc bl 10043750 <__rtw_set_ie_veneer> +100225d8: ae10 add r6, sp, #64 ; 0x40 +100225da: 2300 movs r3, #0 +100225dc: f806 3d1c strb.w r3, [r6, #-28]! +100225e0: 4633 mov r3, r6 +100225e2: 9700 str r7, [sp, #0] +100225e4: 212a movs r1, #42 ; 0x2a +100225e6: 2201 movs r2, #1 +100225e8: f021 f8b2 bl 10043750 <__rtw_set_ie_veneer> +100225ec: f8d5 3fdc ldr.w r3, [r5, #4060] ; 0xfdc +100225f0: 4604 mov r4, r0 +100225f2: 2b07 cmp r3, #7 +100225f4: d132 bne.n 1002265c +100225f6: 2330 movs r3, #48 ; 0x30 +100225f8: 7003 strb r3, [r0, #0] +100225fa: 2314 movs r3, #20 +100225fc: 7043 strb r3, [r0, #1] +100225fe: 2301 movs r3, #1 +10022600: 7083 strb r3, [r0, #2] +10022602: f8d5 2cd4 ldr.w r2, [r5, #3284] ; 0xcd4 +10022606: 3004 adds r0, #4 +10022608: 2a04 cmp r2, #4 +1002260a: d101 bne.n 10022610 +1002260c: 4992 ldr r1, [pc, #584] ; (10022858 ) +1002260e: e003 b.n 10022618 +10022610: 2a02 cmp r2, #2 +10022612: d103 bne.n 1002261c +10022614: 4991 ldr r1, [pc, #580] ; (1002285c ) +10022616: 2204 movs r2, #4 +10022618: f7fa fbc8 bl 1001cdac +1002261c: 2301 movs r3, #1 +1002261e: 7223 strb r3, [r4, #8] +10022620: f8d5 2c7c ldr.w r2, [r5, #3196] ; 0xc7c +10022624: f104 000a add.w r0, r4, #10 +10022628: 2a04 cmp r2, #4 +1002262a: d101 bne.n 10022630 +1002262c: 498a ldr r1, [pc, #552] ; (10022858 ) +1002262e: e005 b.n 1002263c +10022630: f8d5 3cd4 ldr.w r3, [r5, #3284] ; 0xcd4 +10022634: 2b02 cmp r3, #2 +10022636: d103 bne.n 10022640 +10022638: 4988 ldr r1, [pc, #544] ; (1002285c ) +1002263a: 2204 movs r2, #4 +1002263c: f7fa fbb6 bl 1001cdac +10022640: 2301 movs r3, #1 +10022642: 73a3 strb r3, [r4, #14] +10022644: f104 0010 add.w r0, r4, #16 +10022648: 4985 ldr r1, [pc, #532] ; (10022860 ) +1002264a: 2204 movs r2, #4 +1002264c: f7fa fbae bl 1001cdac +10022650: 2300 movs r3, #0 +10022652: 7523 strb r3, [r4, #20] +10022654: 9b02 ldr r3, [sp, #8] +10022656: 3416 adds r4, #22 +10022658: 3316 adds r3, #22 +1002265a: 9302 str r3, [sp, #8] +1002265c: f1b8 0f08 cmp.w r8, #8 +10022660: d908 bls.n 10022674 +10022662: 4620 mov r0, r4 +10022664: 9700 str r7, [sp, #0] +10022666: 2132 movs r1, #50 ; 0x32 +10022668: f1a8 0208 sub.w r2, r8, #8 +1002266c: ab07 add r3, sp, #28 +1002266e: f021 f86f bl 10043750 <__rtw_set_ie_veneer> +10022672: 4604 mov r4, r0 +10022674: f899 3044 ldrb.w r3, [r9, #68] ; 0x44 +10022678: 2b00 cmp r3, #0 +1002267a: d032 beq.n 100226e2 +1002267c: 4630 mov r0, r6 +1002267e: 2100 movs r1, #0 +10022680: 221a movs r2, #26 +10022682: f7fa fba5 bl 1001cdd0 +10022686: 2320 movs r3, #32 +10022688: 210d movs r1, #13 +1002268a: aa03 add r2, sp, #12 +1002268c: 4628 mov r0, r5 +1002268e: f8ad 3024 strh.w r3, [sp, #36] ; 0x24 +10022692: f015 f961 bl 10037958 +10022696: f8d5 2c7c ldr.w r2, [r5, #3196] ; 0xc7c +1002269a: 9b03 ldr r3, [sp, #12] +1002269c: 2a04 cmp r2, #4 +1002269e: f003 0303 and.w r3, r3, #3 +100226a2: f88d 3026 strb.w r3, [sp, #38] ; 0x26 +100226a6: bf04 itt eq +100226a8: f043 031c orreq.w r3, r3, #28 +100226ac: f88d 3026 strbeq.w r3, [sp, #38] ; 0x26 +100226b0: 4620 mov r0, r4 +100226b2: 4633 mov r3, r6 +100226b4: 212d movs r1, #45 ; 0x2d +100226b6: 221a movs r2, #26 +100226b8: 9700 str r7, [sp, #0] +100226ba: f021 f849 bl 10043750 <__rtw_set_ie_veneer> +100226be: 2100 movs r1, #0 +100226c0: 4604 mov r4, r0 +100226c2: 2216 movs r2, #22 +100226c4: 4630 mov r0, r6 +100226c6: f7fa fb83 bl 1001cdd0 +100226ca: f895 34f6 ldrb.w r3, [r5, #1270] ; 0x4f6 +100226ce: 4620 mov r0, r4 +100226d0: f88d 3024 strb.w r3, [sp, #36] ; 0x24 +100226d4: 9700 str r7, [sp, #0] +100226d6: 213d movs r1, #61 ; 0x3d +100226d8: 2216 movs r2, #22 +100226da: 4633 mov r3, r6 +100226dc: f021 f838 bl 10043750 <__rtw_set_ie_veneer> +100226e0: 4604 mov r4, r0 +100226e2: f8d5 afdc ldr.w sl, [r5, #4060] ; 0xfdc +100226e6: 23dd movs r3, #221 ; 0xdd +100226e8: f1ba 0f04 cmp.w sl, #4 +100226ec: f104 0002 add.w r0, r4, #2 +100226f0: d131 bne.n 10022756 +100226f2: 7023 strb r3, [r4, #0] +100226f4: 2316 movs r3, #22 +100226f6: 7063 strb r3, [r4, #1] +100226f8: 495a ldr r1, [pc, #360] ; (10022864 ) +100226fa: 4652 mov r2, sl +100226fc: f04f 0b01 mov.w fp, #1 +10022700: f7fa fb54 bl 1001cdac +10022704: f884 b006 strb.w fp, [r4, #6] +10022708: f8d5 3cd4 ldr.w r3, [r5, #3284] ; 0xcd4 +1002270c: f104 0808 add.w r8, r4, #8 +10022710: 2b02 cmp r3, #2 +10022712: d108 bne.n 10022726 +10022714: 4640 mov r0, r8 +10022716: 4954 ldr r1, [pc, #336] ; (10022868 ) +10022718: 4652 mov r2, sl +1002271a: f7fa fb47 bl 1001cdac +1002271e: f104 080e add.w r8, r4, #14 +10022722: f884 b00c strb.w fp, [r4, #12] +10022726: f8d5 3c7c ldr.w r3, [r5, #3196] ; 0xc7c +1002272a: 2b02 cmp r3, #2 +1002272c: d109 bne.n 10022742 +1002272e: 4640 mov r0, r8 +10022730: 494d ldr r1, [pc, #308] ; (10022868 ) +10022732: 2204 movs r2, #4 +10022734: f7fa fb3a bl 1001cdac +10022738: 2301 movs r3, #1 +1002273a: f888 3004 strb.w r3, [r8, #4] +1002273e: f108 0806 add.w r8, r8, #6 +10022742: 4640 mov r0, r8 +10022744: 4948 ldr r1, [pc, #288] ; (10022868 ) +10022746: 2204 movs r2, #4 +10022748: f7fa fb30 bl 1001cdac +1002274c: 9b02 ldr r3, [sp, #8] +1002274e: f108 0404 add.w r4, r8, #4 +10022752: 3318 adds r3, #24 +10022754: e00d b.n 10022772 +10022756: f8d5 2fe0 ldr.w r2, [r5, #4064] ; 0xfe0 +1002275a: b95a cbnz r2, 10022774 +1002275c: 2505 movs r5, #5 +1002275e: 7023 strb r3, [r4, #0] +10022760: 7065 strb r5, [r4, #1] +10022762: 4940 ldr r1, [pc, #256] ; (10022864 ) +10022764: 2204 movs r2, #4 +10022766: f7fa fb21 bl 1001cdac +1002276a: 9b02 ldr r3, [sp, #8] +1002276c: 7165 strb r5, [r4, #5] +1002276e: 3307 adds r3, #7 +10022770: 3407 adds r4, #7 +10022772: 9302 str r3, [sp, #8] +10022774: f899 303d ldrb.w r3, [r9, #61] ; 0x3d +10022778: b3c3 cbz r3, 100227ec +1002277a: 23dd movs r3, #221 ; 0xdd +1002277c: 7023 strb r3, [r4, #0] +1002277e: 2318 movs r3, #24 +10022780: 7063 strb r3, [r4, #1] +10022782: 1ca0 adds r0, r4, #2 +10022784: 4939 ldr r1, [pc, #228] ; (1002286c ) +10022786: 2206 movs r2, #6 +10022788: f7fa fb10 bl 1001cdac +1002278c: 2300 movs r3, #0 +1002278e: f88d 3025 strb.w r3, [sp, #37] ; 0x25 +10022792: f8ad 3028 strh.w r3, [sp, #40] ; 0x28 +10022796: f8ad 302c strh.w r3, [sp, #44] ; 0x2c +1002279a: 2342 movs r3, #66 ; 0x42 +1002279c: f88d 302e strb.w r3, [sp, #46] ; 0x2e +100227a0: 2343 movs r3, #67 ; 0x43 +100227a2: f88d 302f strb.w r3, [sp, #47] ; 0x2f +100227a6: 235e movs r3, #94 ; 0x5e +100227a8: 2203 movs r2, #3 +100227aa: f8ad 3030 strh.w r3, [sp, #48] ; 0x30 +100227ae: 2362 movs r3, #98 ; 0x62 +100227b0: f88d 2024 strb.w r2, [sp, #36] ; 0x24 +100227b4: f88d 2026 strb.w r2, [sp, #38] ; 0x26 +100227b8: 2127 movs r1, #39 ; 0x27 +100227ba: 22a4 movs r2, #164 ; 0xa4 +100227bc: f88d 3032 strb.w r3, [sp, #50] ; 0x32 +100227c0: 2332 movs r3, #50 ; 0x32 +100227c2: f88d 2027 strb.w r2, [sp, #39] ; 0x27 +100227c6: f88d 102a strb.w r1, [sp, #42] ; 0x2a +100227ca: f88d 202b strb.w r2, [sp, #43] ; 0x2b +100227ce: f88d 3033 strb.w r3, [sp, #51] ; 0x33 +100227d2: f104 0008 add.w r0, r4, #8 +100227d6: 232f movs r3, #47 ; 0x2f +100227d8: 4631 mov r1, r6 +100227da: 2212 movs r2, #18 +100227dc: f8ad 3034 strh.w r3, [sp, #52] ; 0x34 +100227e0: f7fa fae4 bl 1001cdac +100227e4: 9b02 ldr r3, [sp, #8] +100227e6: 341a adds r4, #26 +100227e8: 331a adds r3, #26 +100227ea: 9302 str r3, [sp, #8] +100227ec: 4d20 ldr r5, [pc, #128] ; (10022870 ) +100227ee: f04f 08dd mov.w r8, #221 ; 0xdd +100227f2: 792b ldrb r3, [r5, #4] +100227f4: 6828 ldr r0, [r5, #0] +100227f6: f88d 3010 strb.w r3, [sp, #16] +100227fa: 462b mov r3, r5 +100227fc: 9003 str r0, [sp, #12] +100227fe: f853 0f05 ldr.w r0, [r3, #5]! +10022802: 491c ldr r1, [pc, #112] ; (10022874 ) +10022804: 791b ldrb r3, [r3, #4] +10022806: 9009 str r0, [sp, #36] ; 0x24 +10022808: 7133 strb r3, [r6, #4] +1002280a: 230e movs r3, #14 +1002280c: 7063 strb r3, [r4, #1] +1002280e: 1ca0 adds r0, r4, #2 +10022810: f884 8000 strb.w r8, [r4] +10022814: 2204 movs r2, #4 +10022816: f7fa fac9 bl 1001cdac +1002281a: 1da0 adds r0, r4, #6 +1002281c: a903 add r1, sp, #12 +1002281e: 2205 movs r2, #5 +10022820: f7fa fac4 bl 1001cdac +10022824: f104 000b add.w r0, r4, #11 +10022828: 4631 mov r1, r6 +1002282a: 2205 movs r2, #5 +1002282c: f7fa fabe bl 1001cdac +10022830: 9b02 ldr r3, [sp, #8] +10022832: f855 0f0a ldr.w r0, [r5, #10]! +10022836: 3310 adds r3, #16 +10022838: 9302 str r3, [sp, #8] +1002283a: 88ab ldrh r3, [r5, #4] +1002283c: 9009 str r0, [sp, #36] ; 0x24 +1002283e: 80b3 strh r3, [r6, #4] +10022840: f104 0010 add.w r0, r4, #16 +10022844: 9700 str r7, [sp, #0] +10022846: 4641 mov r1, r8 +10022848: 2206 movs r2, #6 +1002284a: 4633 mov r3, r6 +1002284c: f020 ff80 bl 10043750 <__rtw_set_ie_veneer> +10022850: 9802 ldr r0, [sp, #8] +10022852: b011 add sp, #68 ; 0x44 +10022854: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10022858: 00035430 .word 0x00035430 +1002285c: 0003542c .word 0x0003542c +10022860: 00035444 .word 0x00035444 +10022864: 0003540c .word 0x0003540c +10022868: 00035418 .word 0x00035418 +1002286c: 1004a714 .word 0x1004a714 +10022870: 1004a149 .word 0x1004a149 +10022874: 1004a6c6 .word 0x1004a6c6 + +10022878 : +10022878: b510 push {r4, lr} +1002287a: 2205 movs r2, #5 +1002287c: 460c mov r4, r1 +1002287e: 4910 ldr r1, [pc, #64] ; (100228c0 ) +10022880: f01f fc68 bl 10042154 +10022884: 4b0f ldr r3, [pc, #60] ; (100228c4 ) +10022886: 2800 cmp r0, #0 +10022888: bf14 ite ne +1002288a: 2018 movne r0, #24 +1002288c: 2000 moveq r0, #0 +1002288e: 581b ldr r3, [r3, r0] +10022890: b923 cbnz r3, 1002289c +10022892: 490d ldr r1, [pc, #52] ; (100228c8 ) +10022894: 480d ldr r0, [pc, #52] ; (100228cc ) +10022896: f01f fc37 bl 10042108 +1002289a: e004 b.n 100228a6 +1002289c: 691b ldr r3, [r3, #16] +1002289e: 681b ldr r3, [r3, #0] +100228a0: 691a ldr r2, [r3, #16] +100228a2: 06d2 lsls r2, r2, #27 +100228a4: d402 bmi.n 100228ac +100228a6: f04f 30ff mov.w r0, #4294967295 +100228aa: bd10 pop {r4, pc} +100228ac: 1e62 subs r2, r4, #1 +100228ae: b2d2 uxtb r2, r2 +100228b0: 2a02 cmp r2, #2 +100228b2: bf28 it cs +100228b4: 2400 movcs r4, #0 +100228b6: f883 46b8 strb.w r4, [r3, #1720] ; 0x6b8 +100228ba: 2000 movs r0, #0 +100228bc: bd10 pop {r4, pc} +100228be: bf00 nop +100228c0: 1004a159 .word 0x1004a159 +100228c4: 10055548 .word 0x10055548 +100228c8: 1004a174 .word 0x1004a174 +100228cc: 1004a15f .word 0x1004a15f + +100228d0 <_rtw_init_evt_priv>: +100228d0: b510 push {r4, lr} +100228d2: 2100 movs r1, #0 +100228d4: 4604 mov r4, r0 +100228d6: f7fa fbe1 bl 1001d09c +100228da: 2300 movs r3, #0 +100228dc: 60e3 str r3, [r4, #12] +100228de: 2001 movs r0, #1 +100228e0: bd10 pop {r4, pc} + +100228e2 <_rtw_free_cmd_priv>: +100228e2: b110 cbz r0, 100228ea <_rtw_free_cmd_priv+0x8> +100228e4: 3008 adds r0, #8 +100228e6: f7fa bb47 b.w 1001cf78 +100228ea: 4770 bx lr + +100228ec <_rtw_enqueue_cmd>: +100228ec: b573 push {r0, r1, r4, r5, r6, lr} +100228ee: 4605 mov r5, r0 +100228f0: 460e mov r6, r1 +100228f2: b171 cbz r1, 10022912 <_rtw_enqueue_cmd+0x26> +100228f4: f100 0408 add.w r4, r0, #8 +100228f8: 4620 mov r0, r4 +100228fa: a901 add r1, sp, #4 +100228fc: f7fa faec bl 1001ced8 +10022900: f106 0018 add.w r0, r6, #24 +10022904: 4629 mov r1, r5 +10022906: f7fa fa7b bl 1001ce00 +1002290a: 4620 mov r0, r4 +1002290c: a901 add r1, sp, #4 +1002290e: f7fa faeb bl 1001cee8 +10022912: 2001 movs r0, #1 +10022914: b002 add sp, #8 +10022916: bd70 pop {r4, r5, r6, pc} + +10022918 <_rtw_dequeue_cmd>: +10022918: b537 push {r0, r1, r2, r4, r5, lr} +1002291a: f100 0508 add.w r5, r0, #8 +1002291e: 4604 mov r4, r0 +10022920: a901 add r1, sp, #4 +10022922: 4628 mov r0, r5 +10022924: f7fa fad8 bl 1001ced8 +10022928: 4620 mov r0, r4 +1002292a: f7fa fa5d bl 1001cde8 +1002292e: b928 cbnz r0, 1002293c <_rtw_dequeue_cmd+0x24> +10022930: 6820 ldr r0, [r4, #0] +10022932: f1a0 0418 sub.w r4, r0, #24 +10022936: f7fa fa69 bl 1001ce0c +1002293a: e000 b.n 1002293e <_rtw_dequeue_cmd+0x26> +1002293c: 2400 movs r4, #0 +1002293e: 4628 mov r0, r5 +10022940: a901 add r1, sp, #4 +10022942: f7fa fad1 bl 1001cee8 +10022946: 4620 mov r0, r4 +10022948: b003 add sp, #12 +1002294a: bd30 pop {r4, r5, pc} + +1002294c <_rtw_observequeue_cmd>: +1002294c: b510 push {r4, lr} +1002294e: 4604 mov r4, r0 +10022950: f7fa fa4a bl 1001cde8 +10022954: b910 cbnz r0, 1002295c <_rtw_observequeue_cmd+0x10> +10022956: 6820 ldr r0, [r4, #0] +10022958: 3818 subs r0, #24 +1002295a: bd10 pop {r4, pc} +1002295c: 2000 movs r0, #0 +1002295e: bd10 pop {r4, pc} + +10022960 : +10022960: b508 push {r3, lr} +10022962: f7fa faeb bl 1001cf3c +10022966: 2001 movs r0, #1 +10022968: bd08 pop {r3, pc} + +1002296a : +1002296a: f7ff bfb1 b.w 100228d0 <_rtw_init_evt_priv> + +1002296e : +1002296e: 4770 bx lr + +10022970 : +10022970: f7ff bfb7 b.w 100228e2 <_rtw_free_cmd_priv> + +10022974 : +10022974: 6903 ldr r3, [r0, #16] +10022976: 888a ldrh r2, [r1, #4] +10022978: f241 7111 movw r1, #5905 ; 0x1711 +1002297c: 5c5b ldrb r3, [r3, r1] +1002297e: b90b cbnz r3, 10022984 +10022980: 2a3b cmp r2, #59 ; 0x3b +10022982: d104 bne.n 1002298e +10022984: 7b00 ldrb r0, [r0, #12] +10022986: 3000 adds r0, #0 +10022988: bf18 it ne +1002298a: 2001 movne r0, #1 +1002298c: 4770 bx lr +1002298e: 4618 mov r0, r3 +10022990: 4770 bx lr + +10022992 : +10022992: 8883 ldrh r3, [r0, #4] +10022994: b510 push {r4, lr} +10022996: 2b10 cmp r3, #16 +10022998: 4604 mov r4, r0 +1002299a: d003 beq.n 100229a4 +1002299c: 6880 ldr r0, [r0, #8] +1002299e: 68e1 ldr r1, [r4, #12] +100229a0: f7fa f9fc bl 1001cd9c +100229a4: 6920 ldr r0, [r4, #16] +100229a6: b118 cbz r0, 100229b0 +100229a8: 6961 ldr r1, [r4, #20] +100229aa: b109 cbz r1, 100229b0 +100229ac: f7fa f9f6 bl 1001cd9c +100229b0: 4620 mov r0, r4 +100229b2: 2120 movs r1, #32 +100229b4: e8bd 4010 ldmia.w sp!, {r4, lr} +100229b8: f7fa b9f0 b.w 1001cd9c + +100229bc : +100229bc: b5f8 push {r3, r4, r5, r6, r7, lr} +100229be: 4607 mov r7, r0 +100229c0: 6905 ldr r5, [r0, #16] +100229c2: 460c mov r4, r1 +100229c4: b311 cbz r1, 10022a0c +100229c6: 600d str r5, [r1, #0] +100229c8: f241 73b1 movw r3, #6065 ; 0x17b1 +100229cc: 5ceb ldrb r3, [r5, r3] +100229ce: b133 cbz r3, 100229de +100229d0: f241 73a8 movw r3, #6056 ; 0x17a8 +100229d4: 58eb ldr r3, [r5, r3] +100229d6: b113 cbz r3, 100229de +100229d8: f603 0778 addw r7, r3, #2168 ; 0x878 +100229dc: 461d mov r5, r3 +100229de: 4638 mov r0, r7 +100229e0: 4621 mov r1, r4 +100229e2: f7ff ffc7 bl 10022974 +100229e6: 4606 mov r6, r0 +100229e8: b918 cbnz r0, 100229f2 +100229ea: 4620 mov r0, r4 +100229ec: f7ff ffd1 bl 10022992 +100229f0: e00d b.n 10022a0e +100229f2: 4638 mov r0, r7 +100229f4: 4621 mov r1, r4 +100229f6: f7ff ff79 bl 100228ec <_rtw_enqueue_cmd> +100229fa: 2801 cmp r0, #1 +100229fc: 4606 mov r6, r0 +100229fe: d106 bne.n 10022a0e +10022a00: f505 50b9 add.w r0, r5, #5920 ; 0x1720 +10022a04: 3010 adds r0, #16 +10022a06: f7fa fbd5 bl 1001d1b4 +10022a0a: e000 b.n 10022a0e +10022a0c: 460e mov r6, r1 +10022a0e: 4630 mov r0, r6 +10022a10: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10022a12 : +10022a12: b510 push {r4, lr} +10022a14: 798b ldrb r3, [r1, #6] +10022a16: 460c mov r4, r1 +10022a18: b913 cbnz r3, 10022a20 +10022a1a: 6889 ldr r1, [r1, #8] +10022a1c: f006 fafe bl 1002901c +10022a20: 4620 mov r0, r4 +10022a22: e8bd 4010 ldmia.w sp!, {r4, lr} +10022a26: f7ff bfb4 b.w 10022992 + +10022a2a : +10022a2a: b510 push {r4, lr} +10022a2c: 798b ldrb r3, [r1, #6] +10022a2e: 460c mov r4, r1 +10022a30: b123 cbz r3, 10022a3c +10022a32: f200 403c addw r0, r0, #1084 ; 0x43c +10022a36: 2101 movs r1, #1 +10022a38: f018 ff66 bl 1003b908 +10022a3c: 4620 mov r0, r4 +10022a3e: e8bd 4010 ldmia.w sp!, {r4, lr} +10022a42: f7ff bfa6 b.w 10022992 + +10022a46 : +10022a46: b537 push {r0, r1, r2, r4, r5, lr} +10022a48: 798b ldrb r3, [r1, #6] +10022a4a: 4604 mov r4, r0 +10022a4c: b173 cbz r3, 10022a6c +10022a4e: f100 050c add.w r5, r0, #12 +10022a52: 4628 mov r0, r5 +10022a54: a901 add r1, sp, #4 +10022a56: f7fa fa4f bl 1001cef8 +10022a5a: 6923 ldr r3, [r4, #16] +10022a5c: 4628 mov r0, r5 +10022a5e: f043 0301 orr.w r3, r3, #1 +10022a62: 6123 str r3, [r4, #16] +10022a64: a901 add r1, sp, #4 +10022a66: f7fa fa4f bl 1001cf08 +10022a6a: e002 b.n 10022a72 +10022a6c: 4608 mov r0, r1 +10022a6e: f7ff ff90 bl 10022992 +10022a72: b003 add sp, #12 +10022a74: bd30 pop {r4, r5, pc} + +10022a76 : +10022a76: b510 push {r4, lr} +10022a78: 798b ldrb r3, [r1, #6] +10022a7a: 460c mov r4, r1 +10022a7c: b123 cbz r3, 10022a88 +10022a7e: f200 402c addw r0, r0, #1068 ; 0x42c +10022a82: 2101 movs r1, #1 +10022a84: f018 ff40 bl 1003b908 +10022a88: 4620 mov r0, r4 +10022a8a: e8bd 4010 ldmia.w sp!, {r4, lr} +10022a8e: f7ff bf80 b.w 10022992 + +10022a92 : +10022a92: b510 push {r4, lr} +10022a94: f500 603d add.w r0, r0, #3024 ; 0xbd0 +10022a98: 460c mov r4, r1 +10022a9a: 6909 ldr r1, [r1, #16] +10022a9c: f00a ff8a bl 1002d9b4 +10022aa0: 4620 mov r0, r4 +10022aa2: e8bd 4010 ldmia.w sp!, {r4, lr} +10022aa6: f7ff bf74 b.w 10022992 + ... + +10022aac : +10022aac: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10022ab0: 4605 mov r5, r0 +10022ab2: f505 56b9 add.w r6, r5, #5920 ; 0x1720 +10022ab6: f600 0778 addw r7, r0, #2168 ; 0x878 +10022aba: 3610 adds r6, #16 +10022abc: 484f ldr r0, [pc, #316] ; (10022bfc ) +10022abe: f7fa fbc3 bl 1001d248 +10022ac2: f106 0a0c add.w sl, r6, #12 +10022ac6: 2301 movs r3, #1 +10022ac8: f885 3884 strb.w r3, [r5, #2180] ; 0x884 +10022acc: 4650 mov r0, sl +10022ace: f7fa f9b5 bl 1001ce3c +10022ad2: f505 53bd add.w r3, r5, #6048 ; 0x17a0 +10022ad6: 3308 adds r3, #8 +10022ad8: 681b ldr r3, [r3, #0] +10022ada: b11b cbz r3, 10022ae4 +10022adc: f503 53ba add.w r3, r3, #5952 ; 0x1740 +10022ae0: 2200 movs r2, #0 +10022ae2: 605a str r2, [r3, #4] +10022ae4: 2300 movs r3, #0 +10022ae6: 6173 str r3, [r6, #20] +10022ae8: f106 0008 add.w r0, r6, #8 +10022aec: f7fa f9c0 bl 1001ce70 +10022af0: 2800 cmp r0, #0 +10022af2: d068 beq.n 10022bc6 +10022af4: 6933 ldr r3, [r6, #16] +10022af6: 2b00 cmp r3, #0 +10022af8: d165 bne.n 10022bc6 +10022afa: f505 58b7 add.w r8, r5, #5856 ; 0x16e0 +10022afe: f108 0818 add.w r8, r8, #24 +10022b02: f8d8 3000 ldr.w r3, [r8] +10022b06: 2b01 cmp r3, #1 +10022b08: d05d beq.n 10022bc6 +10022b0a: f505 59b7 add.w r9, r5, #5856 ; 0x16e0 +10022b0e: f109 091c add.w r9, r9, #28 +10022b12: f8d9 3000 ldr.w r3, [r9] +10022b16: 2b01 cmp r3, #1 +10022b18: d055 beq.n 10022bc6 +10022b1a: 6933 ldr r3, [r6, #16] +10022b1c: 2b00 cmp r3, #0 +10022b1e: d152 bne.n 10022bc6 +10022b20: f8d8 3000 ldr.w r3, [r8] +10022b24: 2b01 cmp r3, #1 +10022b26: d04e beq.n 10022bc6 +10022b28: f8d9 3000 ldr.w r3, [r9] +10022b2c: 2b01 cmp r3, #1 +10022b2e: d04a beq.n 10022bc6 +10022b30: 4638 mov r0, r7 +10022b32: f7ff ff0b bl 1002294c <_rtw_observequeue_cmd> +10022b36: b120 cbz r0, 10022b42 +10022b38: 6803 ldr r3, [r0, #0] +10022b3a: 2201 movs r2, #1 +10022b3c: f503 53ba add.w r3, r3, #5952 ; 0x1740 +10022b40: 605a str r2, [r3, #4] +10022b42: 4638 mov r0, r7 +10022b44: f7ff fee8 bl 10022918 <_rtw_dequeue_cmd> +10022b48: 4604 mov r4, r0 +10022b4a: 2800 cmp r0, #0 +10022b4c: d0c1 beq.n 10022ad2 +10022b4e: f8d0 b000 ldr.w fp, [r0] +10022b52: f8d5 3888 ldr.w r3, [r5, #2184] ; 0x888 +10022b56: 459b cmp fp, r3 +10022b58: d004 beq.n 10022b64 +10022b5a: f503 53bd add.w r3, r3, #6048 ; 0x17a0 +10022b5e: 3308 adds r3, #8 +10022b60: 681b ldr r3, [r3, #0] +10022b62: b35b cbz r3, 10022bbc +10022b64: 4638 mov r0, r7 +10022b66: 4621 mov r1, r4 +10022b68: f7ff ff04 bl 10022974 +10022b6c: b908 cbnz r0, 10022b72 +10022b6e: 2303 movs r3, #3 +10022b70: e016 b.n 10022ba0 +10022b72: 68e2 ldr r2, [r4, #12] +10022b74: f012 0303 ands.w r3, r2, #3 +10022b78: bf18 it ne +10022b7a: 2301 movne r3, #1 +10022b7c: eb03 0392 add.w r3, r3, r2, lsr #2 +10022b80: 009b lsls r3, r3, #2 +10022b82: 60e3 str r3, [r4, #12] +10022b84: 88a3 ldrh r3, [r4, #4] +10022b86: 2b3f cmp r3, #63 ; 0x3f +10022b88: d809 bhi.n 10022b9e +10022b8a: 4a1d ldr r2, [pc, #116] ; (10022c00 ) +10022b8c: eb02 03c3 add.w r3, r2, r3, lsl #3 +10022b90: 685b ldr r3, [r3, #4] +10022b92: b133 cbz r3, 10022ba2 +10022b94: 4658 mov r0, fp +10022b96: 68a1 ldr r1, [r4, #8] +10022b98: 4798 blx r3 +10022b9a: 71a0 strb r0, [r4, #6] +10022b9c: e001 b.n 10022ba2 +10022b9e: 2304 movs r3, #4 +10022ba0: 71a3 strb r3, [r4, #6] +10022ba2: 88a3 ldrh r3, [r4, #4] +10022ba4: 2b3f cmp r3, #63 ; 0x3f +10022ba6: d808 bhi.n 10022bba +10022ba8: 4a16 ldr r2, [pc, #88] ; (10022c04 ) +10022baa: eb02 03c3 add.w r3, r2, r3, lsl #3 +10022bae: 685b ldr r3, [r3, #4] +10022bb0: b11b cbz r3, 10022bba +10022bb2: 6820 ldr r0, [r4, #0] +10022bb4: 4621 mov r1, r4 +10022bb6: 4798 blx r3 +10022bb8: e002 b.n 10022bc0 +10022bba: 4620 mov r0, r4 +10022bbc: f7ff fee9 bl 10022992 +10022bc0: f7fa fac6 bl 1001d150 +10022bc4: e7a9 b.n 10022b1a +10022bc6: 2300 movs r3, #0 +10022bc8: f885 3884 strb.w r3, [r5, #2180] ; 0x884 +10022bcc: 4638 mov r0, r7 +10022bce: f7ff fea3 bl 10022918 <_rtw_dequeue_cmd> +10022bd2: b110 cbz r0, 10022bda +10022bd4: f7ff fedd bl 10022992 +10022bd8: e7f8 b.n 10022bcc +10022bda: f241 73a8 movw r3, #6056 ; 0x17a8 +10022bde: 58eb ldr r3, [r5, r3] +10022be0: b113 cbz r3, 10022be8 +10022be2: f241 7144 movw r1, #5956 ; 0x1744 +10022be6: 5058 str r0, [r3, r1] +10022be8: 2300 movs r3, #0 +10022bea: 6173 str r3, [r6, #20] +10022bec: 4650 mov r0, sl +10022bee: f7fa f925 bl 1001ce3c +10022bf2: e8bd 4ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10022bf6: f7fa bb31 b.w 1001d25c +10022bfa: bf00 nop +10022bfc: 1004a184 .word 0x1004a184 +10022c00: 1004a194 .word 0x1004a194 +10022c04: 1004a38c .word 0x1004a38c + +10022c08 : +10022c08: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10022c0c: f8d0 3fdc ldr.w r3, [r0, #4060] ; 0xfdc +10022c10: b085 sub sp, #20 +10022c12: 2b04 cmp r3, #4 +10022c14: 4604 mov r4, r0 +10022c16: 460d mov r5, r1 +10022c18: f8d1 807c ldr.w r8, [r1, #124] ; 0x7c +10022c1c: d001 beq.n 10022c22 +10022c1e: 2b07 cmp r3, #7 +10022c20: d14e bne.n 10022cc0 +10022c22: 2300 movs r3, #0 +10022c24: f10d 0910 add.w r9, sp, #16 +10022c28: f829 3d02 strh.w r3, [r9, #-2]! +10022c2c: f504 5680 add.w r6, r4, #4096 ; 0x1000 +10022c30: f105 0a98 add.w sl, r5, #152 ; 0x98 +10022c34: af03 add r7, sp, #12 +10022c36: f8ad 300c strh.w r3, [sp, #12] +10022c3a: 9300 str r3, [sp, #0] +10022c3c: 9701 str r7, [sp, #4] +10022c3e: 4650 mov r0, sl +10022c40: f8d5 1094 ldr.w r1, [r5, #148] ; 0x94 +10022c44: 4632 mov r2, r6 +10022c46: 464b mov r3, r9 +10022c48: f020 feaa bl 100439a0 <__rtw_get_sec_ie_veneer> +10022c4c: 2800 cmp r0, #0 +10022c4e: d037 beq.n 10022cc0 +10022c50: f8bd 200e ldrh.w r2, [sp, #14] +10022c54: b17a cbz r2, 10022c76 +10022c56: 4611 mov r1, r2 +10022c58: 4630 mov r0, r6 +10022c5a: f008 fc55 bl 1002b508 +10022c5e: 4631 mov r1, r6 +10022c60: 4602 mov r2, r0 +10022c62: f8ad 000e strh.w r0, [sp, #14] +10022c66: 4620 mov r0, r4 +10022c68: f016 f9b3 bl 10038fd2 +10022c6c: 4620 mov r0, r4 +10022c6e: 4631 mov r1, r6 +10022c70: f8bd 200e ldrh.w r2, [sp, #14] +10022c74: e01a b.n 10022cac +10022c76: f8bd 300c ldrh.w r3, [sp, #12] +10022c7a: b1cb cbz r3, 10022cb0 +10022c7c: 464b mov r3, r9 +10022c7e: f8d5 1094 ldr.w r1, [r5, #148] ; 0x94 +10022c82: e88d 00c0 stmia.w sp, {r6, r7} +10022c86: 4650 mov r0, sl +10022c88: f020 fe8a bl 100439a0 <__rtw_get_sec_ie_veneer> +10022c8c: f8bd 100c ldrh.w r1, [sp, #12] +10022c90: 4630 mov r0, r6 +10022c92: f008 fc79 bl 1002b588 +10022c96: 4631 mov r1, r6 +10022c98: 4602 mov r2, r0 +10022c9a: f8ad 000c strh.w r0, [sp, #12] +10022c9e: 4620 mov r0, r4 +10022ca0: f016 f997 bl 10038fd2 +10022ca4: f8bd 200c ldrh.w r2, [sp, #12] +10022ca8: 4620 mov r0, r4 +10022caa: 4631 mov r1, r6 +10022cac: f008 fbb4 bl 1002b418 +10022cb0: f504 5195 add.w r1, r4, #4768 ; 0x12a0 +10022cb4: 4620 mov r0, r4 +10022cb6: 3114 adds r1, #20 +10022cb8: f105 022c add.w r2, r5, #44 ; 0x2c +10022cbc: f008 fb52 bl 1002b364 +10022cc0: f7e9 fb56 bl 1000c370 +10022cc4: 2800 cmp r0, #0 +10022cc6: d051 beq.n 10022d6c +10022cc8: 2300 movs r3, #0 +10022cca: f10d 0910 add.w r9, sp, #16 +10022cce: f829 3d02 strh.w r3, [r9, #-2]! +10022cd2: f504 5680 add.w r6, r4, #4096 ; 0x1000 +10022cd6: f105 0a98 add.w sl, r5, #152 ; 0x98 +10022cda: af03 add r7, sp, #12 +10022cdc: f8ad 300c strh.w r3, [sp, #12] +10022ce0: 9300 str r3, [sp, #0] +10022ce2: 9701 str r7, [sp, #4] +10022ce4: 4650 mov r0, sl +10022ce6: f8d5 1094 ldr.w r1, [r5, #148] ; 0x94 +10022cea: 4632 mov r2, r6 +10022cec: 464b mov r3, r9 +10022cee: f020 fe57 bl 100439a0 <__rtw_get_sec_ie_veneer> +10022cf2: 2800 cmp r0, #0 +10022cf4: d03a beq.n 10022d6c +10022cf6: f8bd 200e ldrh.w r2, [sp, #14] +10022cfa: b17a cbz r2, 10022d1c +10022cfc: 4611 mov r1, r2 +10022cfe: 4630 mov r0, r6 +10022d00: f008 fc02 bl 1002b508 +10022d04: 4631 mov r1, r6 +10022d06: 4602 mov r2, r0 +10022d08: f8ad 000e strh.w r0, [sp, #14] +10022d0c: 4620 mov r0, r4 +10022d0e: f016 f960 bl 10038fd2 +10022d12: 4620 mov r0, r4 +10022d14: 4631 mov r1, r6 +10022d16: f8bd 200e ldrh.w r2, [sp, #14] +10022d1a: e01a b.n 10022d52 +10022d1c: f8bd 300c ldrh.w r3, [sp, #12] +10022d20: b1cb cbz r3, 10022d56 +10022d22: 464b mov r3, r9 +10022d24: f8d5 1094 ldr.w r1, [r5, #148] ; 0x94 +10022d28: e88d 00c0 stmia.w sp, {r6, r7} +10022d2c: 4650 mov r0, sl +10022d2e: f020 fe37 bl 100439a0 <__rtw_get_sec_ie_veneer> +10022d32: f8bd 100c ldrh.w r1, [sp, #12] +10022d36: 4630 mov r0, r6 +10022d38: f008 fc26 bl 1002b588 +10022d3c: 4631 mov r1, r6 +10022d3e: 4602 mov r2, r0 +10022d40: f8ad 000c strh.w r0, [sp, #12] +10022d44: 4620 mov r0, r4 +10022d46: f016 f944 bl 10038fd2 +10022d4a: f8bd 200c ldrh.w r2, [sp, #12] +10022d4e: 4620 mov r0, r4 +10022d50: 4631 mov r1, r6 +10022d52: f008 fb61 bl 1002b418 +10022d56: f8d4 3fdc ldr.w r3, [r4, #4060] ; 0xfdc +10022d5a: 2b04 cmp r3, #4 +10022d5c: d101 bne.n 10022d62 +10022d5e: 2303 movs r3, #3 +10022d60: e002 b.n 10022d68 +10022d62: 2b07 cmp r3, #7 +10022d64: d102 bne.n 10022d6c +10022d66: 2306 movs r3, #6 +10022d68: f8c4 3fdc str.w r3, [r4, #4060] ; 0xfdc +10022d6c: 2020 movs r0, #32 +10022d6e: f7f9 ffff bl 1001cd70 +10022d72: 4607 mov r7, r0 +10022d74: 2800 cmp r0, #0 +10022d76: f000 8091 beq.w 10022e9c +10022d7a: 6923 ldr r3, [r4, #16] +10022d7c: f013 0f28 tst.w r3, #40 ; 0x28 +10022d80: d106 bne.n 10022d90 +10022d82: f1b8 0f00 cmp.w r8, #0 +10022d86: f040 808a bne.w 10022e9e +10022d8a: f043 0320 orr.w r3, r3, #32 +10022d8e: 6123 str r3, [r4, #16] +10022d90: f44f 705f mov.w r0, #892 ; 0x37c +10022d94: f7f9 ffec bl 1001cd70 +10022d98: 4606 mov r6, r0 +10022d9a: b928 cbnz r0, 10022da8 +10022d9c: 4638 mov r0, r7 +10022d9e: 2120 movs r1, #32 +10022da0: f7f9 fffc bl 1001cd9c +10022da4: 4630 mov r0, r6 +10022da6: e081 b.n 10022eac +10022da8: 2100 movs r1, #0 +10022daa: f44f 725f mov.w r2, #892 ; 0x37c +10022dae: f7fa f80f bl 1001cdd0 +10022db2: f8d5 2094 ldr.w r2, [r5, #148] ; 0x94 +10022db6: 4630 mov r0, r6 +10022db8: f105 011c add.w r1, r5, #28 +10022dbc: 327c adds r2, #124 ; 0x7c +10022dbe: f7f9 fff5 bl 1001cdac +10022dc2: 2300 movs r3, #0 +10022dc4: f886 3078 strb.w r3, [r6, #120] ; 0x78 +10022dc8: f886 3079 strb.w r3, [r6, #121] ; 0x79 +10022dcc: f886 307a strb.w r3, [r6, #122] ; 0x7a +10022dd0: f886 307b strb.w r3, [r6, #123] ; 0x7b +10022dd4: f894 3438 ldrb.w r3, [r4, #1080] ; 0x438 +10022dd8: b933 cbnz r3, 10022de8 +10022dda: f104 0074 add.w r0, r4, #116 ; 0x74 +10022dde: f105 0120 add.w r1, r5, #32 +10022de2: 2206 movs r2, #6 +10022de4: f7f9 ffe2 bl 1001cdac +10022de8: f105 0898 add.w r8, r5, #152 ; 0x98 +10022dec: f106 0a7c add.w sl, r6, #124 ; 0x7c +10022df0: f8d5 3094 ldr.w r3, [r5, #148] ; 0x94 +10022df4: 4620 mov r0, r4 +10022df6: 4641 mov r1, r8 +10022df8: 4652 mov r2, sl +10022dfa: f001 faf5 bl 100243e8 +10022dfe: f504 5997 add.w r9, r4, #4832 ; 0x12e0 +10022e02: f04f 0b00 mov.w fp, #0 +10022e06: 67b0 str r0, [r6, #120] ; 0x78 +10022e08: f109 0918 add.w r9, r9, #24 +10022e0c: f8c4 b44c str.w fp, [r4, #1100] ; 0x44c +10022e10: f899 303d ldrb.w r3, [r9, #61] ; 0x3d +10022e14: b183 cbz r3, 10022e38 +10022e16: 9000 str r0, [sp, #0] +10022e18: f8d5 3094 ldr.w r3, [r5, #148] ; 0x94 +10022e1c: 4620 mov r0, r4 +10022e1e: 4641 mov r1, r8 +10022e20: 4652 mov r2, sl +10022e22: f001 faae bl 10024382 +10022e26: 6fb3 ldr r3, [r6, #120] ; 0x78 +10022e28: 4283 cmp r3, r0 +10022e2a: bf1b ittet ne +10022e2c: 2301 movne r3, #1 +10022e2e: 67b0 strne r0, [r6, #120] ; 0x78 +10022e30: f8c4 b44c streq.w fp, [r4, #1100] ; 0x44c +10022e34: f8c4 344c strne.w r3, [r4, #1100] ; 0x44c +10022e38: 2300 movs r3, #0 +10022e3a: f8c4 3454 str.w r3, [r4, #1108] ; 0x454 +10022e3e: f899 3044 ldrb.w r3, [r9, #68] ; 0x44 +10022e42: b183 cbz r3, 10022e66 +10022e44: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +10022e48: 1e5a subs r2, r3, #1 +10022e4a: 2a01 cmp r2, #1 +10022e4c: d90b bls.n 10022e66 +10022e4e: 2b05 cmp r3, #5 +10022e50: d009 beq.n 10022e66 +10022e52: f106 0378 add.w r3, r6, #120 ; 0x78 +10022e56: 9300 str r3, [sp, #0] +10022e58: 4620 mov r0, r4 +10022e5a: 4641 mov r1, r8 +10022e5c: 4652 mov r2, sl +10022e5e: f8d5 3094 ldr.w r3, [r5, #148] ; 0x94 +10022e62: f001 faff bl 10024464 +10022e66: f8d5 1094 ldr.w r1, [r5, #148] ; 0x94 +10022e6a: 4640 mov r0, r8 +10022e6c: f00b fc28 bl 1002e6c0 +10022e70: f884 06a6 strb.w r0, [r4, #1702] ; 0x6a6 +10022e74: 6fb3 ldr r3, [r6, #120] ; 0x78 +10022e76: f107 0018 add.w r0, r7, #24 +10022e7a: 337c adds r3, #124 ; 0x7c +10022e7c: 60fb str r3, [r7, #12] +10022e7e: f7f9 ffaf bl 1001cde0 +10022e82: 230e movs r3, #14 +10022e84: 80bb strh r3, [r7, #4] +10022e86: 2300 movs r3, #0 +10022e88: 60be str r6, [r7, #8] +10022e8a: 613b str r3, [r7, #16] +10022e8c: 617b str r3, [r7, #20] +10022e8e: f604 0078 addw r0, r4, #2168 ; 0x878 +10022e92: 4639 mov r1, r7 +10022e94: f7ff fd92 bl 100229bc +10022e98: b2c0 uxtb r0, r0 +10022e9a: e007 b.n 10022eac +10022e9c: e006 b.n 10022eac +10022e9e: f1b8 0f01 cmp.w r8, #1 +10022ea2: f47f af75 bne.w 10022d90 +10022ea6: f043 0308 orr.w r3, r3, #8 +10022eaa: e770 b.n 10022d8e +10022eac: b005 add sp, #20 +10022eae: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +10022eb2 : +10022eb2: b570 push {r4, r5, r6, lr} +10022eb4: 4606 mov r6, r0 +10022eb6: 2020 movs r0, #32 +10022eb8: f7f9 ff5a bl 1001cd70 +10022ebc: 4604 mov r4, r0 +10022ebe: b1e8 cbz r0, 10022efc +10022ec0: 2004 movs r0, #4 +10022ec2: f7f9 ff55 bl 1001cd70 +10022ec6: 4605 mov r5, r0 +10022ec8: b928 cbnz r0, 10022ed6 +10022eca: 4620 mov r0, r4 +10022ecc: 2120 movs r1, #32 +10022ece: f7f9 ff65 bl 1001cd9c +10022ed2: 4628 mov r0, r5 +10022ed4: bd70 pop {r4, r5, r6, pc} +10022ed6: f104 0018 add.w r0, r4, #24 +10022eda: f7f9 ff81 bl 1001cde0 +10022ede: 230f movs r3, #15 +10022ee0: 80a3 strh r3, [r4, #4] +10022ee2: 2304 movs r3, #4 +10022ee4: 60e3 str r3, [r4, #12] +10022ee6: 2300 movs r3, #0 +10022ee8: 60a5 str r5, [r4, #8] +10022eea: 6123 str r3, [r4, #16] +10022eec: 6163 str r3, [r4, #20] +10022eee: f606 0078 addw r0, r6, #2168 ; 0x878 +10022ef2: 4621 mov r1, r4 +10022ef4: f7ff fd62 bl 100229bc +10022ef8: b2c0 uxtb r0, r0 +10022efa: bd70 pop {r4, r5, r6, pc} +10022efc: bd70 pop {r4, r5, r6, pc} + ... + +10022f00 : +10022f00: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10022f04: 4606 mov r6, r0 +10022f06: 2020 movs r0, #32 +10022f08: 4688 mov r8, r1 +10022f0a: 4691 mov r9, r2 +10022f0c: f7f9 ff30 bl 1001cd70 +10022f10: 4604 mov r4, r0 +10022f12: 2800 cmp r0, #0 +10022f14: d055 beq.n 10022fc2 +10022f16: 2018 movs r0, #24 +10022f18: f7f9 ff2a bl 1001cd70 +10022f1c: 4605 mov r5, r0 +10022f1e: b930 cbnz r0, 10022f2e +10022f20: 4620 mov r0, r4 +10022f22: 2120 movs r1, #32 +10022f24: f7f9 ff3a bl 1001cd9c +10022f28: 4628 mov r0, r5 +10022f2a: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10022f2e: 2008 movs r0, #8 +10022f30: f7f9 ff1e bl 1001cd70 +10022f34: 4607 mov r7, r0 +10022f36: b950 cbnz r0, 10022f4e +10022f38: 4620 mov r0, r4 +10022f3a: 2120 movs r1, #32 +10022f3c: f7f9 ff2e bl 1001cd9c +10022f40: 4628 mov r0, r5 +10022f42: 2118 movs r1, #24 +10022f44: f7f9 ff2a bl 1001cd9c +10022f48: 4638 mov r0, r7 +10022f4a: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10022f4e: f104 0018 add.w r0, r4, #24 +10022f52: f7f9 ff45 bl 1001cde0 +10022f56: 2315 movs r3, #21 +10022f58: 80a3 strh r3, [r4, #4] +10022f5a: 2318 movs r3, #24 +10022f5c: 60e3 str r3, [r4, #12] +10022f5e: 2308 movs r3, #8 +10022f60: 6163 str r3, [r4, #20] +10022f62: f508 7384 add.w r3, r8, #264 ; 0x108 +10022f66: 4619 mov r1, r3 +10022f68: 4638 mov r0, r7 +10022f6a: 6127 str r7, [r4, #16] +10022f6c: 2206 movs r2, #6 +10022f6e: 461f mov r7, r3 +10022f70: 60a5 str r5, [r4, #8] +10022f72: f7f9 ff1b bl 1001cdac +10022f76: 4628 mov r0, r5 +10022f78: 4639 mov r1, r7 +10022f7a: 2206 movs r2, #6 +10022f7c: f7f9 ff16 bl 1001cdac +10022f80: 6933 ldr r3, [r6, #16] +10022f82: 071b lsls r3, r3, #28 +10022f84: d51f bpl.n 10022fc6 +10022f86: f8d6 3c7c ldr.w r3, [r6, #3196] ; 0xc7c +10022f8a: 71ab strb r3, [r5, #6] +10022f8c: f1b9 0f01 cmp.w r9, #1 +10022f90: bf17 itett ne +10022f92: f8d6 1cd8 ldrne.w r1, [r6, #3288] ; 0xcd8 +10022f96: f508 719c addeq.w r1, r8, #312 ; 0x138 +10022f9a: eb06 1101 addne.w r1, r6, r1, lsl #4 +10022f9e: f601 41dc addwne r1, r1, #3292 ; 0xcdc +10022fa2: f105 0008 add.w r0, r5, #8 +10022fa6: 2210 movs r2, #16 +10022fa8: f7f9 ff00 bl 1001cdac +10022fac: 2301 movs r3, #1 +10022fae: f886 3fcd strb.w r3, [r6, #4045] ; 0xfcd +10022fb2: f606 0078 addw r0, r6, #2168 ; 0x878 +10022fb6: 4621 mov r1, r4 +10022fb8: f7ff fd00 bl 100229bc +10022fbc: b2c0 uxtb r0, r0 +10022fbe: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10022fc2: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10022fc6: f8d6 3c78 ldr.w r3, [r6, #3192] ; 0xc78 +10022fca: 2b04 cmp r3, #4 +10022fcc: d8de bhi.n 10022f8c +10022fce: a201 add r2, pc, #4 ; (adr r2, 10022fd4 ) +10022fd0: f852 f023 ldr.w pc, [r2, r3, lsl #2] +10022fd4: 10022f87 .word 0x10022f87 +10022fd8: 10022f87 .word 0x10022f87 +10022fdc: 10022fe9 .word 0x10022fe9 +10022fe0: 10022f87 .word 0x10022f87 +10022fe4: 10022f87 .word 0x10022f87 +10022fe8: f8d8 3114 ldr.w r3, [r8, #276] ; 0x114 +10022fec: e7cd b.n 10022f8a +10022fee: bf00 nop + +10022ff0 : +10022ff0: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10022ff4: 4681 mov r9, r0 +10022ff6: 4688 mov r8, r1 +10022ff8: 4617 mov r7, r2 +10022ffa: b92b cbnz r3, 10023008 +10022ffc: 4611 mov r1, r2 +10022ffe: f00a ffbb bl 1002df78 +10023002: 2001 movs r0, #1 +10023004: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10023008: 2020 movs r0, #32 +1002300a: f7f9 feb1 bl 1001cd70 +1002300e: 4604 mov r4, r0 +10023010: 2800 cmp r0, #0 +10023012: d03b beq.n 1002308c +10023014: 2018 movs r0, #24 +10023016: f7f9 feab bl 1001cd70 +1002301a: 4605 mov r5, r0 +1002301c: b930 cbnz r0, 1002302c +1002301e: 4620 mov r0, r4 +10023020: 2120 movs r1, #32 +10023022: f7f9 febb bl 1001cd9c +10023026: 4628 mov r0, r5 +10023028: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002302c: 2008 movs r0, #8 +1002302e: f7f9 fe9f bl 1001cd70 +10023032: 4606 mov r6, r0 +10023034: b950 cbnz r0, 1002304c +10023036: 4620 mov r0, r4 +10023038: 2120 movs r1, #32 +1002303a: f7f9 feaf bl 1001cd9c +1002303e: 4628 mov r0, r5 +10023040: 2118 movs r1, #24 +10023042: f7f9 feab bl 1001cd9c +10023046: 4630 mov r0, r6 +10023048: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002304c: f104 0018 add.w r0, r4, #24 +10023050: f7f9 fec6 bl 1001cde0 +10023054: 2315 movs r3, #21 +10023056: 80a3 strh r3, [r4, #4] +10023058: 2318 movs r3, #24 +1002305a: 60e3 str r3, [r4, #12] +1002305c: 2308 movs r3, #8 +1002305e: 60a5 str r5, [r4, #8] +10023060: 6126 str r6, [r4, #16] +10023062: 6163 str r3, [r4, #20] +10023064: f1b8 0f00 cmp.w r8, #0 +10023068: d005 beq.n 10023076 +1002306a: 4628 mov r0, r5 +1002306c: f508 7184 add.w r1, r8, #264 ; 0x108 +10023070: 2206 movs r2, #6 +10023072: f7f9 fe9b bl 1001cdac +10023076: 2300 movs r3, #0 +10023078: 71ab strb r3, [r5, #6] +1002307a: 71ef strb r7, [r5, #7] +1002307c: f609 0078 addw r0, r9, #2168 ; 0x878 +10023080: 4621 mov r1, r4 +10023082: f7ff fc9b bl 100229bc +10023086: b2c0 uxtb r0, r0 +10023088: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002308c: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +10023090 : +10023090: b5f8 push {r3, r4, r5, r6, r7, lr} +10023092: 4607 mov r7, r0 +10023094: 2020 movs r0, #32 +10023096: f7f9 fe6b bl 1001cd70 +1002309a: 4604 mov r4, r0 +1002309c: b300 cbz r0, 100230e0 +1002309e: 200c movs r0, #12 +100230a0: f7f9 fe66 bl 1001cd70 +100230a4: 2600 movs r6, #0 +100230a6: 4605 mov r5, r0 +100230a8: b928 cbnz r0, 100230b6 +100230aa: 4620 mov r0, r4 +100230ac: 2120 movs r1, #32 +100230ae: f7f9 fe75 bl 1001cd9c +100230b2: 4628 mov r0, r5 +100230b4: bdf8 pop {r3, r4, r5, r6, r7, pc} +100230b6: 2301 movs r3, #1 +100230b8: e880 00c8 stmia.w r0, {r3, r6, r7} +100230bc: f104 0018 add.w r0, r4, #24 +100230c0: f7f9 fe8e bl 1001cde0 +100230c4: 2339 movs r3, #57 ; 0x39 +100230c6: 80a3 strh r3, [r4, #4] +100230c8: 230c movs r3, #12 +100230ca: 60a5 str r5, [r4, #8] +100230cc: 60e3 str r3, [r4, #12] +100230ce: 6126 str r6, [r4, #16] +100230d0: 6166 str r6, [r4, #20] +100230d2: f607 0078 addw r0, r7, #2168 ; 0x878 +100230d6: 4621 mov r1, r4 +100230d8: f7ff fc70 bl 100229bc +100230dc: b2c0 uxtb r0, r0 +100230de: bdf8 pop {r3, r4, r5, r6, r7, pc} +100230e0: bdf8 pop {r3, r4, r5, r6, r7, pc} + +100230e2 : +100230e2: 2958 cmp r1, #88 ; 0x58 +100230e4: b5f8 push {r3, r4, r5, r6, r7, lr} +100230e6: 4607 mov r7, r0 +100230e8: 460e mov r6, r1 +100230ea: 4614 mov r4, r2 +100230ec: d903 bls.n 100230f6 +100230ee: 297f cmp r1, #127 ; 0x7f +100230f0: d001 beq.n 100230f6 +100230f2: 2400 movs r4, #0 +100230f4: e033 b.n 1002315e +100230f6: 2001 movs r0, #1 +100230f8: f7f9 fe3a bl 1001cd70 +100230fc: 4605 mov r5, r0 +100230fe: 2800 cmp r0, #0 +10023100: d0f7 beq.n 100230f2 +10023102: 7006 strb r6, [r0, #0] +10023104: b1dc cbz r4, 1002313e +10023106: 2020 movs r0, #32 +10023108: f7f9 fe32 bl 1001cd70 +1002310c: 4604 mov r4, r0 +1002310e: b920 cbnz r0, 1002311a +10023110: 4628 mov r0, r5 +10023112: 2101 movs r1, #1 +10023114: f7f9 fe42 bl 1001cd9c +10023118: e021 b.n 1002315e +1002311a: 3018 adds r0, #24 +1002311c: f7f9 fe60 bl 1001cde0 +10023120: 233b movs r3, #59 ; 0x3b +10023122: 80a3 strh r3, [r4, #4] +10023124: 2301 movs r3, #1 +10023126: 60e3 str r3, [r4, #12] +10023128: 2300 movs r3, #0 +1002312a: 60a5 str r5, [r4, #8] +1002312c: 6123 str r3, [r4, #16] +1002312e: 6163 str r3, [r4, #20] +10023130: 4621 mov r1, r4 +10023132: f607 0078 addw r0, r7, #2168 ; 0x878 +10023136: f7ff fc41 bl 100229bc +1002313a: b2c4 uxtb r4, r0 +1002313c: e00b b.n 10023156 +1002313e: 4629 mov r1, r5 +10023140: 4638 mov r0, r7 +10023142: f005 ff6b bl 1002901c +10023146: 2101 movs r1, #1 +10023148: f1d0 0401 rsbs r4, r0, #1 +1002314c: 4628 mov r0, r5 +1002314e: bf38 it cc +10023150: 2400 movcc r4, #0 +10023152: f7f9 fe23 bl 1001cd9c +10023156: 2c01 cmp r4, #1 +10023158: bf08 it eq +1002315a: f887 649e strbeq.w r6, [r7, #1182] ; 0x49e +1002315e: 4620 mov r0, r4 +10023160: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10023162 : +10023162: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10023166: 4608 mov r0, r1 +10023168: 460c mov r4, r1 +1002316a: f004 fed9 bl 10027f20 <_linked_info_dump> +1002316e: 4620 mov r0, r4 +10023170: f004 ff24 bl 10027fbc +10023174: 6925 ldr r5, [r4, #16] +10023176: f015 0501 ands.w r5, r5, #1 +1002317a: d11f bne.n 100231bc +1002317c: 4620 mov r0, r4 +1002317e: f008 fcfd bl 1002bb7c +10023182: 462e mov r6, r5 +10023184: 46a8 mov r8, r5 +10023186: 462f mov r7, r5 +10023188: 46aa mov sl, r5 +1002318a: 46a9 mov r9, r5 +1002318c: 2300 movs r3, #0 +1002318e: f8c4 3480 str.w r3, [r4, #1152] ; 0x480 +10023192: f8c4 347c str.w r3, [r4, #1148] ; 0x47c +10023196: f8c4 3484 str.w r3, [r4, #1156] ; 0x484 +1002319a: f884 9488 strb.w r9, [r4, #1160] ; 0x488 +1002319e: f884 a489 strb.w sl, [r4, #1161] ; 0x489 +100231a2: f884 748a strb.w r7, [r4, #1162] ; 0x48a +100231a6: f884 848b strb.w r8, [r4, #1163] ; 0x48b +100231aa: f884 648c strb.w r6, [r4, #1164] ; 0x48c +100231ae: f884 548d strb.w r5, [r4, #1165] ; 0x48d +100231b2: 4620 mov r0, r4 +100231b4: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100231b8: f014 bcda b.w 10037b70 +100231bc: f8d4 2480 ldr.w r2, [r4, #1152] ; 0x480 +100231c0: f8d4 347c ldr.w r3, [r4, #1148] ; 0x47c +100231c4: 2a64 cmp r2, #100 ; 0x64 +100231c6: d801 bhi.n 100231cc +100231c8: 2b64 cmp r3, #100 ; 0x64 +100231ca: d90e bls.n 100231ea +100231cc: 429a cmp r2, r3 +100231ce: bf94 ite ls +100231d0: 2700 movls r7, #0 +100231d2: 2701 movhi r7, #1 +100231d4: bf94 ite ls +100231d6: f04f 0a01 movls.w sl, #1 +100231da: f04f 0a00 movhi.w sl, #0 +100231de: f5b2 6f7a cmp.w r2, #4000 ; 0xfa0 +100231e2: f04f 0901 mov.w r9, #1 +100231e6: d806 bhi.n 100231f6 +100231e8: e002 b.n 100231f0 +100231ea: 2700 movs r7, #0 +100231ec: 46ba mov sl, r7 +100231ee: 46b9 mov r9, r7 +100231f0: f5b3 6f7a cmp.w r3, #4000 ; 0xfa0 +100231f4: d905 bls.n 10023202 +100231f6: 429a cmp r2, r3 +100231f8: d905 bls.n 10023206 +100231fa: 2601 movs r6, #1 +100231fc: 2500 movs r5, #0 +100231fe: 46b0 mov r8, r6 +10023200: e004 b.n 1002320c +10023202: 2500 movs r5, #0 +10023204: e000 b.n 10023208 +10023206: 2501 movs r5, #1 +10023208: 2600 movs r6, #0 +1002320a: 46a8 mov r8, r5 +1002320c: f8d4 2484 ldr.w r2, [r4, #1156] ; 0x484 +10023210: 4413 add r3, r2 +10023212: 2b08 cmp r3, #8 +10023214: d805 bhi.n 10023222 +10023216: 2a02 cmp r2, #2 +10023218: d803 bhi.n 10023222 +1002321a: 4620 mov r0, r4 +1002321c: f008 fc77 bl 1002bb0e +10023220: e7b4 b.n 1002318c +10023222: 4620 mov r0, r4 +10023224: f008 fcaa bl 1002bb7c +10023228: e7b0 b.n 1002318c + +1002322a : +1002322a: b537 push {r0, r1, r2, r4, r5, lr} +1002322c: 6903 ldr r3, [r0, #16] +1002322e: 4604 mov r4, r0 +10023230: f013 0f60 tst.w r3, #96 ; 0x60 +10023234: d129 bne.n 1002328a +10023236: 2905 cmp r1, #5 +10023238: d827 bhi.n 1002328a +1002323a: e8df f001 tbb [pc, r1] +1002323e: 2303 .short 0x2303 +10023240: 231e1106 .word 0x231e1106 +10023244: 07db lsls r3, r3, #31 +10023246: d41d bmi.n 10023284 +10023248: e01f b.n 1002328a +1002324a: 2301 movs r3, #1 +1002324c: aa02 add r2, sp, #8 +1002324e: 2100 movs r1, #0 +10023250: f802 3d01 strb.w r3, [r2, #-1]! +10023254: f241 33b2 movw r3, #5042 ; 0x13b2 +10023258: 54e1 strb r1, [r4, r3] +1002325a: 4620 mov r0, r4 +1002325c: 212c movs r1, #44 ; 0x2c +1002325e: e009 b.n 10023274 +10023260: ad02 add r5, sp, #8 +10023262: 2300 movs r3, #0 +10023264: f805 3d01 strb.w r3, [r5, #-1]! +10023268: 4620 mov r0, r4 +1002326a: f008 fc87 bl 1002bb7c +1002326e: 4620 mov r0, r4 +10023270: 212c movs r1, #44 ; 0x2c +10023272: 462a mov r2, r5 +10023274: f014 fb59 bl 1003792a +10023278: e007 b.n 1002328a +1002327a: f7f9 fe95 bl 1001cfa8 +1002327e: f504 539b add.w r3, r4, #4960 ; 0x1360 +10023282: 6598 str r0, [r3, #88] ; 0x58 +10023284: 4620 mov r0, r4 +10023286: f008 fc79 bl 1002bb7c +1002328a: b003 add sp, #12 +1002328c: bd30 pop {r4, r5, pc} + +1002328e : +1002328e: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10023292: 4607 mov r7, r0 +10023294: 4688 mov r8, r1 +10023296: b342 cbz r2, 100232ea +10023298: 2020 movs r0, #32 +1002329a: f7f9 fd69 bl 1001cd70 +1002329e: 4604 mov r4, r0 +100232a0: b340 cbz r0, 100232f4 +100232a2: 200c movs r0, #12 +100232a4: f7f9 fd64 bl 1001cd70 +100232a8: 2600 movs r6, #0 +100232aa: 4605 mov r5, r0 +100232ac: b930 cbnz r0, 100232bc +100232ae: 4620 mov r0, r4 +100232b0: 2120 movs r1, #32 +100232b2: f7f9 fd73 bl 1001cd9c +100232b6: 4628 mov r0, r5 +100232b8: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100232bc: 2305 movs r3, #5 +100232be: e880 0108 stmia.w r0, {r3, r8} +100232c2: 6086 str r6, [r0, #8] +100232c4: f104 0018 add.w r0, r4, #24 +100232c8: f7f9 fd8a bl 1001cde0 +100232cc: 2339 movs r3, #57 ; 0x39 +100232ce: 80a3 strh r3, [r4, #4] +100232d0: 230c movs r3, #12 +100232d2: 60a5 str r5, [r4, #8] +100232d4: 60e3 str r3, [r4, #12] +100232d6: 6126 str r6, [r4, #16] +100232d8: 6166 str r6, [r4, #20] +100232da: f607 0078 addw r0, r7, #2168 ; 0x878 +100232de: 4621 mov r1, r4 +100232e0: f7ff fb6c bl 100229bc +100232e4: b2c0 uxtb r0, r0 +100232e6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100232ea: f7ff ff9e bl 1002322a +100232ee: 2001 movs r0, #1 +100232f0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100232f4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +100232f8 : +100232f8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100232fc: 460f mov r7, r1 +100232fe: 4690 mov r8, r2 +10023300: 2100 movs r1, #0 +10023302: 2201 movs r2, #1 +10023304: 4604 mov r4, r0 +10023306: f7ff ffc2 bl 1002328e +1002330a: 2020 movs r0, #32 +1002330c: f7f9 fd30 bl 1001cd70 +10023310: 4605 mov r5, r0 +10023312: 2800 cmp r0, #0 +10023314: d051 beq.n 100233ba +10023316: 2030 movs r0, #48 ; 0x30 +10023318: f7f9 fd2a bl 1001cd70 +1002331c: 4606 mov r6, r0 +1002331e: b930 cbnz r0, 1002332e +10023320: 4628 mov r0, r5 +10023322: 2120 movs r1, #32 +10023324: f7f9 fd3a bl 1001cd9c +10023328: 4630 mov r0, r6 +1002332a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002332e: 2100 movs r1, #0 +10023330: 4620 mov r0, r4 +10023332: f000 fb0a bl 1002394a +10023336: f105 0018 add.w r0, r5, #24 +1002333a: f7f9 fd51 bl 1001cde0 +1002333e: 2312 movs r3, #18 +10023340: 80ab strh r3, [r5, #4] +10023342: 2100 movs r1, #0 +10023344: 2330 movs r3, #48 ; 0x30 +10023346: 60eb str r3, [r5, #12] +10023348: 60ae str r6, [r5, #8] +1002334a: 6129 str r1, [r5, #16] +1002334c: 6169 str r1, [r5, #20] +1002334e: 6073 str r3, [r6, #4] +10023350: f8d4 34a0 ldr.w r3, [r4, #1184] ; 0x4a0 +10023354: 2228 movs r2, #40 ; 0x28 +10023356: f846 3b08 str.w r3, [r6], #8 +1002335a: 4630 mov r0, r6 +1002335c: f7f9 fd38 bl 1001cdd0 +10023360: b14f cbz r7, 10023376 +10023362: f1b8 0f00 cmp.w r8, #0 +10023366: dd06 ble.n 10023376 +10023368: 683b ldr r3, [r7, #0] +1002336a: b123 cbz r3, 10023376 +1002336c: 4630 mov r0, r6 +1002336e: 4639 mov r1, r7 +10023370: 2228 movs r2, #40 ; 0x28 +10023372: f7f9 fd1b bl 1001cdac +10023376: 6923 ldr r3, [r4, #16] +10023378: 4629 mov r1, r5 +1002337a: f443 6300 orr.w r3, r3, #2048 ; 0x800 +1002337e: 6123 str r3, [r4, #16] +10023380: 2301 movs r3, #1 +10023382: 7523 strb r3, [r4, #20] +10023384: f604 0078 addw r0, r4, #2168 ; 0x878 +10023388: f7ff fb18 bl 100229bc +1002338c: b2c5 uxtb r5, r0 +1002338e: 2d01 cmp r5, #1 +10023390: d10d bne.n 100233ae +10023392: f7f9 fe09 bl 1001cfa8 +10023396: f44f 51fa mov.w r1, #8000 ; 0x1f40 +1002339a: f8c4 0448 str.w r0, [r4, #1096] ; 0x448 +1002339e: f204 403c addw r0, r4, #1084 ; 0x43c +100233a2: f018 fab1 bl 1003b908 +100233a6: 231e movs r3, #30 +100233a8: f8c4 3428 str.w r3, [r4, #1064] ; 0x428 +100233ac: e005 b.n 100233ba +100233ae: 6923 ldr r3, [r4, #16] +100233b0: f423 6300 bic.w r3, r3, #2048 ; 0x800 +100233b4: 6123 str r3, [r4, #16] +100233b6: 2300 movs r3, #0 +100233b8: 7523 strb r3, [r4, #20] +100233ba: 4628 mov r0, r5 +100233bc: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +100233c0 : +100233c0: b507 push {r0, r1, r2, lr} +100233c2: aa02 add r2, sp, #8 +100233c4: f822 1d02 strh.w r1, [r2, #-2]! +100233c8: 2142 movs r1, #66 ; 0x42 +100233ca: f014 faae bl 1003792a +100233ce: b003 add sp, #12 +100233d0: f85d fb04 ldr.w pc, [sp], #4 + +100233d4 : +100233d4: b5f8 push {r3, r4, r5, r6, r7, lr} +100233d6: f241 73b1 movw r3, #6065 ; 0x17b1 +100233da: 5cc6 ldrb r6, [r0, r3] +100233dc: 4607 mov r7, r0 +100233de: bb26 cbnz r6, 1002342a +100233e0: 2020 movs r0, #32 +100233e2: f7f9 fcc5 bl 1001cd70 +100233e6: 4604 mov r4, r0 +100233e8: b308 cbz r0, 1002342e +100233ea: 200c movs r0, #12 +100233ec: f7f9 fcc0 bl 1001cd70 +100233f0: 4605 mov r5, r0 +100233f2: b928 cbnz r0, 10023400 +100233f4: 4620 mov r0, r4 +100233f6: 2120 movs r1, #32 +100233f8: f7f9 fcd0 bl 1001cd9c +100233fc: 4628 mov r0, r5 +100233fe: bdf8 pop {r3, r4, r5, r6, r7, pc} +10023400: 2304 movs r3, #4 +10023402: 6003 str r3, [r0, #0] +10023404: 6086 str r6, [r0, #8] +10023406: f104 0018 add.w r0, r4, #24 +1002340a: f7f9 fce9 bl 1001cde0 +1002340e: 2339 movs r3, #57 ; 0x39 +10023410: 80a3 strh r3, [r4, #4] +10023412: 230c movs r3, #12 +10023414: 60a5 str r5, [r4, #8] +10023416: 60e3 str r3, [r4, #12] +10023418: 6126 str r6, [r4, #16] +1002341a: 6166 str r6, [r4, #20] +1002341c: f607 0078 addw r0, r7, #2168 ; 0x878 +10023420: 4621 mov r1, r4 +10023422: f7ff facb bl 100229bc +10023426: b2c0 uxtb r0, r0 +10023428: bdf8 pop {r3, r4, r5, r6, r7, pc} +1002342a: 2001 movs r0, #1 +1002342c: bdf8 pop {r3, r4, r5, r6, r7, pc} +1002342e: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10023430 : +10023430: b5f8 push {r3, r4, r5, r6, r7, lr} +10023432: 4607 mov r7, r0 +10023434: 2020 movs r0, #32 +10023436: f7f9 fc9b bl 1001cd70 +1002343a: 4604 mov r4, r0 +1002343c: b308 cbz r0, 10023482 +1002343e: 200c movs r0, #12 +10023440: f7f9 fc96 bl 1001cd70 +10023444: 2600 movs r6, #0 +10023446: 4605 mov r5, r0 +10023448: b928 cbnz r0, 10023456 +1002344a: 4620 mov r0, r4 +1002344c: 2120 movs r1, #32 +1002344e: f7f9 fca5 bl 1001cd9c +10023452: 4628 mov r0, r5 +10023454: bdf8 pop {r3, r4, r5, r6, r7, pc} +10023456: 2308 movs r3, #8 +10023458: e880 0048 stmia.w r0, {r3, r6} +1002345c: 6086 str r6, [r0, #8] +1002345e: f104 0018 add.w r0, r4, #24 +10023462: f7f9 fcbd bl 1001cde0 +10023466: 2339 movs r3, #57 ; 0x39 +10023468: 80a3 strh r3, [r4, #4] +1002346a: 230c movs r3, #12 +1002346c: 60a5 str r5, [r4, #8] +1002346e: 60e3 str r3, [r4, #12] +10023470: 6126 str r6, [r4, #16] +10023472: 6166 str r6, [r4, #20] +10023474: f607 0078 addw r0, r7, #2168 ; 0x878 +10023478: 4621 mov r1, r4 +1002347a: f7ff fa9f bl 100229bc +1002347e: b2c0 uxtb r0, r0 +10023480: bdf8 pop {r3, r4, r5, r6, r7, pc} +10023482: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10023484 : +10023484: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +10023488: 4604 mov r4, r0 +1002348a: 460d mov r5, r1 +1002348c: 2900 cmp r1, #0 +1002348e: d047 beq.n 10023520 +10023490: 680b ldr r3, [r1, #0] +10023492: 3b01 subs r3, #1 +10023494: 2b0a cmp r3, #10 +10023496: d83b bhi.n 10023510 +10023498: e8df f003 tbb [pc, r3] +1002349c: 0b3a3a06 .word 0x0b3a3a06 +100234a0: 163a3a0e .word 0x163a3a0e +100234a4: 363a .short 0x363a +100234a6: 12 .byte 0x12 +100234a7: 00 .byte 0x00 +100234a8: 6889 ldr r1, [r1, #8] +100234aa: 686a ldr r2, [r5, #4] +100234ac: f7ff fe59 bl 10023162 +100234b0: e02e b.n 10023510 +100234b2: f008 fa6a bl 1002b98a +100234b6: e02b b.n 10023510 +100234b8: 7909 ldrb r1, [r1, #4] +100234ba: f7ff feb6 bl 1002322a +100234be: e027 b.n 10023510 +100234c0: 8889 ldrh r1, [r1, #4] +100234c2: f7ff ff7d bl 100233c0 +100234c6: e023 b.n 10023510 +100234c8: f00a faca bl 1002da60 +100234cc: 4607 mov r7, r0 +100234ce: b1f8 cbz r0, 10023510 +100234d0: f8d0 30f4 ldr.w r3, [r0, #244] ; 0xf4 +100234d4: b9e3 cbnz r3, 10023510 +100234d6: ae02 add r6, sp, #8 +100234d8: f806 3d01 strb.w r3, [r6, #-1]! +100234dc: 4620 mov r0, r4 +100234de: 2145 movs r1, #69 ; 0x45 +100234e0: 4632 mov r2, r6 +100234e2: f014 fa29 bl 10037938 +100234e6: f04f 080b mov.w r8, #11 +100234ea: f89d 3007 ldrb.w r3, [sp, #7] +100234ee: b9db cbnz r3, 10023528 +100234f0: 2064 movs r0, #100 ; 0x64 +100234f2: f7f9 fdab bl 1001d04c +100234f6: f1b8 0801 subs.w r8, r8, #1 +100234fa: 4620 mov r0, r4 +100234fc: d02a beq.n 10023554 +100234fe: 2145 movs r1, #69 ; 0x45 +10023500: 4632 mov r2, r6 +10023502: f014 fa19 bl 10037938 +10023506: e7f0 b.n 100234ea +10023508: 2141 movs r1, #65 ; 0x41 +1002350a: 2200 movs r2, #0 +1002350c: f014 fa0d bl 1003792a +10023510: 68a8 ldr r0, [r5, #8] +10023512: b310 cbz r0, 1002355a +10023514: 6869 ldr r1, [r5, #4] +10023516: 2900 cmp r1, #0 +10023518: dd04 ble.n 10023524 +1002351a: f7f9 fc3f bl 1001cd9c +1002351e: e001 b.n 10023524 +10023520: 2004 movs r0, #4 +10023522: e01a b.n 1002355a +10023524: 2000 movs r0, #0 +10023526: e018 b.n 1002355a +10023528: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 +1002352c: b95b cbnz r3, 10023546 +1002352e: f8b4 3c6e ldrh.w r3, [r4, #3182] ; 0xc6e +10023532: f023 0301 bic.w r3, r3, #1 +10023536: f8a4 3c6e strh.w r3, [r4, #3182] ; 0xc6e +1002353a: f8b4 3c6c ldrh.w r3, [r4, #3180] ; 0xc6c +1002353e: f023 0301 bic.w r3, r3, #1 +10023542: f8a4 3c6c strh.w r3, [r4, #3180] ; 0xc6c +10023546: 2200 movs r2, #0 +10023548: 4620 mov r0, r4 +1002354a: 2105 movs r1, #5 +1002354c: 4613 mov r3, r2 +1002354e: f7fd ffdf bl 10021510 +10023552: e7dd b.n 10023510 +10023554: f7ff ff6c bl 10023430 +10023558: e7da b.n 10023510 +1002355a: b002 add sp, #8 +1002355c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10023560 : +10023560: b538 push {r3, r4, r5, lr} +10023562: 4604 mov r4, r0 +10023564: 6800 ldr r0, [r0, #0] +10023566: 460d mov r5, r1 +10023568: b128 cbz r0, 10023576 +1002356a: 6809 ldr r1, [r1, #0] +1002356c: f7f9 fc16 bl 1001cd9c +10023570: 2300 movs r3, #0 +10023572: 602b str r3, [r5, #0] +10023574: 6023 str r3, [r4, #0] +10023576: bd38 pop {r3, r4, r5, pc} + +10023578 : +10023578: b537 push {r0, r1, r2, r4, r5, lr} +1002357a: 4b10 ldr r3, [pc, #64] ; (100235bc ) +1002357c: 4604 mov r4, r0 +1002357e: f500 55bc add.w r5, r0, #6016 ; 0x1780 +10023582: 9300 str r3, [sp, #0] +10023584: 6829 ldr r1, [r5, #0] +10023586: 4623 mov r3, r4 +10023588: f200 402c addw r0, r0, #1068 ; 0x42c +1002358c: 4a0c ldr r2, [pc, #48] ; (100235c0 ) +1002358e: f018 f9b7 bl 1003b900 +10023592: 4b0c ldr r3, [pc, #48] ; (100235c4 ) +10023594: f204 403c addw r0, r4, #1084 ; 0x43c +10023598: 9300 str r3, [sp, #0] +1002359a: 6829 ldr r1, [r5, #0] +1002359c: 4623 mov r3, r4 +1002359e: 4a0a ldr r2, [pc, #40] ; (100235c8 ) +100235a0: f018 f9ae bl 1003b900 +100235a4: 4b09 ldr r3, [pc, #36] ; (100235cc ) +100235a6: f504 6092 add.w r0, r4, #1168 ; 0x490 +100235aa: 9300 str r3, [sp, #0] +100235ac: 6829 ldr r1, [r5, #0] +100235ae: 4a08 ldr r2, [pc, #32] ; (100235d0 ) +100235b0: 4623 mov r3, r4 +100235b2: f018 f9a5 bl 1003b900 +100235b6: b003 add sp, #12 +100235b8: bd30 pop {r4, r5, pc} +100235ba: bf00 nop +100235bc: 1004a58b .word 0x1004a58b +100235c0: 10023f5d .word 0x10023f5d +100235c4: 1004a597 .word 0x1004a597 +100235c8: 10023fe5 .word 0x10023fe5 +100235cc: 1004a5a5 .word 0x1004a5a5 +100235d0: 10024041 .word 0x10024041 + +100235d4 : +100235d4: b510 push {r4, lr} +100235d6: 4604 mov r4, r0 +100235d8: f500 6084 add.w r0, r0, #1056 ; 0x420 +100235dc: f018 f99b bl 1003b916 +100235e0: f504 6086 add.w r0, r4, #1072 ; 0x430 +100235e4: f018 f997 bl 1003b916 +100235e8: f204 4084 addw r0, r4, #1156 ; 0x484 +100235ec: e8bd 4010 ldmia.w sp!, {r4, lr} +100235f0: f018 b991 b.w 1003b916 + +100235f4 : +100235f4: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +100235f8: 6903 ldr r3, [r0, #16] +100235fa: 4604 mov r4, r0 +100235fc: 07db lsls r3, r3, #31 +100235fe: f890 77e6 ldrb.w r7, [r0, #2022] ; 0x7e6 +10023602: d404 bmi.n 1002360e +10023604: e009 b.n 1002361a +10023606: 4b1f ldr r3, [pc, #124] ; (10023684 ) +10023608: 681a ldr r2, [r3, #0] +1002360a: 4699 mov r9, r3 +1002360c: b99a cbnz r2, 10023636 +1002360e: 4b1e ldr r3, [pc, #120] ; (10023688 ) +10023610: 2200 movs r2, #0 +10023612: 701a strb r2, [r3, #0] +10023614: b003 add sp, #12 +10023616: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1002361a: f890 586c ldrb.w r5, [r0, #2156] ; 0x86c +1002361e: 2d00 cmp r5, #0 +10023620: d0f1 beq.n 10023606 +10023622: 481a ldr r0, [pc, #104] ; (1002368c ) +10023624: f01e fd70 bl 10042108 +10023628: f894 086c ldrb.w r0, [r4, #2156] ; 0x86c +1002362c: b003 add sp, #12 +1002362e: e8bd 43f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, lr} +10023632: f7e8 bea9 b.w 1000c388 +10023636: 2f01 cmp r7, #1 +10023638: d106 bne.n 10023648 +1002363a: f604 0608 addw r6, r4, #2056 ; 0x808 +1002363e: f8b4 8828 ldrh.w r8, [r4, #2088] ; 0x828 +10023642: f894 582a ldrb.w r5, [r4, #2090] ; 0x82a +10023646: e00c b.n 10023662 +10023648: 2f03 cmp r7, #3 +1002364a: d107 bne.n 1002365c +1002364c: f604 062b addw r6, r4, #2091 ; 0x82b +10023650: 4630 mov r0, r6 +10023652: f01e fd9d bl 10042190 +10023656: 4f0e ldr r7, [pc, #56] ; (10023690 ) +10023658: 4680 mov r8, r0 +1002365a: e002 b.n 10023662 +1002365c: 46a8 mov r8, r5 +1002365e: 462e mov r6, r5 +10023660: 462f mov r7, r5 +10023662: f204 74e7 addw r4, r4, #2023 ; 0x7e7 +10023666: 4620 mov r0, r4 +10023668: f8d9 9000 ldr.w r9, [r9] +1002366c: f01e fd90 bl 10042190 +10023670: f8cd 8000 str.w r8, [sp] +10023674: 4602 mov r2, r0 +10023676: 9501 str r5, [sp, #4] +10023678: 4638 mov r0, r7 +1002367a: 4621 mov r1, r4 +1002367c: 4633 mov r3, r6 +1002367e: 47c8 blx r9 +10023680: e7c5 b.n 1002360e +10023682: bf00 nop +10023684: 100530d8 .word 0x100530d8 +10023688: 100530d4 .word 0x100530d4 +1002368c: 1004a5b7 .word 0x1004a5b7 +10023690: 00400004 .word 0x00400004 + +10023694 <_rtw_init_mlme_priv>: +10023694: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10023696: 2302 movs r3, #2 +10023698: 4604 mov r4, r0 +1002369a: 61a0 str r0, [r4, #24] +1002369c: 2500 movs r5, #0 +1002369e: f8c0 30f8 str.w r3, [r0, #248] ; 0xf8 +100236a2: f100 060c add.w r6, r0, #12 +100236a6: 2301 movs r3, #1 +100236a8: f8c0 34a0 str.w r3, [r0, #1184] ; 0x4a0 +100236ac: 61c5 str r5, [r0, #28] +100236ae: 6105 str r5, [r0, #16] +100236b0: f104 0720 add.w r7, r4, #32 +100236b4: 4630 mov r0, r6 +100236b6: f7f9 fc57 bl 1001cf68 +100236ba: 4638 mov r0, r7 +100236bc: f7f9 fc3e bl 1001cf3c +100236c0: f104 002c add.w r0, r4, #44 ; 0x2c +100236c4: f7f9 fc3a bl 1001cf3c +100236c8: 4630 mov r0, r6 +100236ca: a901 add r1, sp, #4 +100236cc: f7f9 fc14 bl 1001cef8 +100236d0: 4630 mov r0, r6 +100236d2: a901 add r1, sp, #4 +100236d4: 87a5 strh r5, [r4, #60] ; 0x3c +100236d6: f7f9 fc17 bl 1001cf08 +100236da: f104 004c add.w r0, r4, #76 ; 0x4c +100236de: 4629 mov r1, r5 +100236e0: 2228 movs r2, #40 ; 0x28 +100236e2: f7f9 fb75 bl 1001cdd0 +100236e6: f241 73b1 movw r3, #6065 ; 0x17b1 +100236ea: 5ce3 ldrb r3, [r4, r3] +100236ec: b963 cbnz r3, 10023708 <_rtw_init_mlme_priv+0x74> +100236ee: f44f 706b mov.w r0, #940 ; 0x3ac +100236f2: f7f9 fb13 bl 1001cd1c +100236f6: 4605 mov r5, r0 +100236f8: b158 cbz r0, 10023712 <_rtw_init_mlme_priv+0x7e> +100236fa: 63a0 str r0, [r4, #56] ; 0x38 +100236fc: f7f9 fb70 bl 1001cde0 +10023700: 4628 mov r0, r5 +10023702: 4639 mov r1, r7 +10023704: f7f9 fb7c bl 1001ce00 +10023708: 4620 mov r0, r4 +1002370a: f7ff ff35 bl 10023578 +1002370e: 2001 movs r0, #1 +10023710: e7ff b.n 10023712 <_rtw_init_mlme_priv+0x7e> +10023712: b003 add sp, #12 +10023714: bdf0 pop {r4, r5, r6, r7, pc} + +10023716 : +10023716: b510 push {r4, lr} +10023718: 4604 mov r4, r0 +1002371a: f7f9 fc2d bl 1001cf78 +1002371e: f104 001c add.w r0, r4, #28 +10023722: f7f9 fc29 bl 1001cf78 +10023726: f104 0028 add.w r0, r4, #40 ; 0x28 +1002372a: e8bd 4010 ldmia.w sp!, {r4, lr} +1002372e: f7f9 bc23 b.w 1001cf78 + +10023732 : +10023732: b510 push {r4, lr} +10023734: 4604 mov r4, r0 +10023736: f204 41c4 addw r1, r4, #1220 ; 0x4c4 +1002373a: f500 6097 add.w r0, r0, #1208 ; 0x4b8 +1002373e: f7ff ff0f bl 10023560 +10023742: f504 6093 add.w r0, r4, #1176 ; 0x498 +10023746: f204 419c addw r1, r4, #1180 ; 0x49c +1002374a: f7ff ff09 bl 10023560 +1002374e: f204 40bc addw r0, r4, #1212 ; 0x4bc +10023752: f504 6199 add.w r1, r4, #1224 ; 0x4c8 +10023756: f7ff ff03 bl 10023560 +1002375a: f504 6098 add.w r0, r4, #1216 ; 0x4c0 +1002375e: f204 41cc addw r1, r4, #1228 ; 0x4cc +10023762: e8bd 4010 ldmia.w sp!, {r4, lr} +10023766: f7ff befb b.w 10023560 + +1002376a <_rtw_free_mlme_priv>: +1002376a: b510 push {r4, lr} +1002376c: 4604 mov r4, r0 +1002376e: f7ff ffe0 bl 10023732 +10023772: b16c cbz r4, 10023790 <_rtw_free_mlme_priv+0x26> +10023774: 4620 mov r0, r4 +10023776: f7ff ffce bl 10023716 +1002377a: 6ae0 ldr r0, [r4, #44] ; 0x2c +1002377c: b118 cbz r0, 10023786 <_rtw_free_mlme_priv+0x1c> +1002377e: f44f 716b mov.w r1, #940 ; 0x3ac +10023782: f7f9 fadd bl 1001cd40 +10023786: 4620 mov r0, r4 +10023788: e8bd 4010 ldmia.w sp!, {r4, lr} +1002378c: f7ff bf22 b.w 100235d4 +10023790: bd10 pop {r4, pc} + +10023792 <_rtw_alloc_network>: +10023792: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10023794: f100 071c add.w r7, r0, #28 +10023798: f100 0414 add.w r4, r0, #20 +1002379c: a901 add r1, sp, #4 +1002379e: 4605 mov r5, r0 +100237a0: 4638 mov r0, r7 +100237a2: f7f9 fba9 bl 1001cef8 +100237a6: 4620 mov r0, r4 +100237a8: f7f9 fbd4 bl 1001cf54 +100237ac: 2801 cmp r0, #1 +100237ae: f04f 0600 mov.w r6, #0 +100237b2: d00e beq.n 100237d2 <_rtw_alloc_network+0x40> +100237b4: 696c ldr r4, [r5, #20] +100237b6: 4620 mov r0, r4 +100237b8: f7f9 fb28 bl 1001ce0c +100237bc: 60a6 str r6, [r4, #8] +100237be: 60e6 str r6, [r4, #12] +100237c0: f7f9 fbf2 bl 1001cfa8 +100237c4: 8e2b ldrh r3, [r5, #48] ; 0x30 +100237c6: 6120 str r0, [r4, #16] +100237c8: 3301 adds r3, #1 +100237ca: 6166 str r6, [r4, #20] +100237cc: 61a6 str r6, [r4, #24] +100237ce: 862b strh r3, [r5, #48] ; 0x30 +100237d0: e000 b.n 100237d4 <_rtw_alloc_network+0x42> +100237d2: 4634 mov r4, r6 +100237d4: 4638 mov r0, r7 +100237d6: a901 add r1, sp, #4 +100237d8: f7f9 fb96 bl 1001cf08 +100237dc: 4620 mov r0, r4 +100237de: b003 add sp, #12 +100237e0: bdf0 pop {r4, r5, r6, r7, pc} + +100237e2 <_rtw_free_network>: +100237e2: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +100237e4: 4605 mov r5, r0 +100237e6: 4616 mov r6, r2 +100237e8: 460c mov r4, r1 +100237ea: b341 cbz r1, 1002383e <_rtw_free_network+0x5c> +100237ec: 68cb ldr r3, [r1, #12] +100237ee: 2b01 cmp r3, #1 +100237f0: d025 beq.n 1002383e <_rtw_free_network+0x5c> +100237f2: f7f9 fbd9 bl 1001cfa8 +100237f6: 686b ldr r3, [r5, #4] +100237f8: f013 0f60 tst.w r3, #96 ; 0x60 +100237fc: bf0c ite eq +100237fe: 2714 moveq r7, #20 +10023800: 2701 movne r7, #1 +10023802: b1b6 cbz r6, 10023832 <_rtw_free_network+0x50> +10023804: f105 061c add.w r6, r5, #28 +10023808: a901 add r1, sp, #4 +1002380a: 4630 mov r0, r6 +1002380c: f7f9 fb74 bl 1001cef8 +10023810: f105 0714 add.w r7, r5, #20 +10023814: 4620 mov r0, r4 +10023816: f7f9 faf9 bl 1001ce0c +1002381a: 4620 mov r0, r4 +1002381c: 4639 mov r1, r7 +1002381e: f7f9 faef bl 1001ce00 +10023822: 8e2b ldrh r3, [r5, #48] ; 0x30 +10023824: 4630 mov r0, r6 +10023826: 3b01 subs r3, #1 +10023828: 862b strh r3, [r5, #48] ; 0x30 +1002382a: a901 add r1, sp, #4 +1002382c: f7f9 fb6c bl 1001cf08 +10023830: e005 b.n 1002383e <_rtw_free_network+0x5c> +10023832: 6923 ldr r3, [r4, #16] +10023834: 1ac0 subs r0, r0, r3 +10023836: f7f9 fbcd bl 1001cfd4 +1002383a: 42b8 cmp r0, r7 +1002383c: d2e2 bcs.n 10023804 <_rtw_free_network+0x22> +1002383e: b003 add sp, #12 +10023840: bdf0 pop {r4, r5, r6, r7, pc} + +10023842 <_rtw_free_network_nolock>: +10023842: b538 push {r3, r4, r5, lr} +10023844: 4605 mov r5, r0 +10023846: 460c mov r4, r1 +10023848: b169 cbz r1, 10023866 <_rtw_free_network_nolock+0x24> +1002384a: 68cb ldr r3, [r1, #12] +1002384c: 2b01 cmp r3, #1 +1002384e: d00a beq.n 10023866 <_rtw_free_network_nolock+0x24> +10023850: 4608 mov r0, r1 +10023852: f7f9 fadb bl 1001ce0c +10023856: 4620 mov r0, r4 +10023858: f105 0114 add.w r1, r5, #20 +1002385c: f7f9 fad0 bl 1001ce00 +10023860: 8e2b ldrh r3, [r5, #48] ; 0x30 +10023862: 3b01 subs r3, #1 +10023864: 862b strh r3, [r5, #48] ; 0x30 +10023866: bd38 pop {r3, r4, r5, pc} + +10023868 <_rtw_find_network>: +10023868: b573 push {r0, r1, r4, r5, r6, lr} +1002386a: 2300 movs r3, #0 +1002386c: 4605 mov r5, r0 +1002386e: 2206 movs r2, #6 +10023870: 4668 mov r0, sp +10023872: 460e mov r6, r1 +10023874: 9300 str r3, [sp, #0] +10023876: f8ad 3004 strh.w r3, [sp, #4] +1002387a: f7f9 fa9f bl 1001cdbc +1002387e: b108 cbz r0, 10023884 <_rtw_find_network+0x1c> +10023880: 2400 movs r4, #0 +10023882: e00c b.n 1002389e <_rtw_find_network+0x36> +10023884: 682c ldr r4, [r5, #0] +10023886: 42ac cmp r4, r5 +10023888: d0fa beq.n 10023880 <_rtw_find_network+0x18> +1002388a: 4630 mov r0, r6 +1002388c: f104 0120 add.w r1, r4, #32 +10023890: 2206 movs r2, #6 +10023892: f7f9 fa93 bl 1001cdbc +10023896: 2801 cmp r0, #1 +10023898: d001 beq.n 1002389e <_rtw_find_network+0x36> +1002389a: 6824 ldr r4, [r4, #0] +1002389c: e7f3 b.n 10023886 <_rtw_find_network+0x1e> +1002389e: 4620 mov r0, r4 +100238a0: b002 add sp, #8 +100238a2: bd70 pop {r4, r5, r6, pc} + +100238a4 <_rtw_free_network_queue>: +100238a4: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +100238a8: f100 0534 add.w r5, r0, #52 ; 0x34 +100238ac: 4604 mov r4, r0 +100238ae: 4688 mov r8, r1 +100238b0: f100 070c add.w r7, r0, #12 +100238b4: f100 062c add.w r6, r0, #44 ; 0x2c +100238b8: a901 add r1, sp, #4 +100238ba: 4628 mov r0, r5 +100238bc: f7f9 fb1c bl 1001cef8 +100238c0: 6ae4 ldr r4, [r4, #44] ; 0x2c +100238c2: 4630 mov r0, r6 +100238c4: 4621 mov r1, r4 +100238c6: f7f9 fb4b bl 1001cf60 +100238ca: b940 cbnz r0, 100238de <_rtw_free_network_queue+0x3a> +100238cc: f8d4 9000 ldr.w r9, [r4] +100238d0: 4621 mov r1, r4 +100238d2: 4638 mov r0, r7 +100238d4: 4642 mov r2, r8 +100238d6: f7ff ff84 bl 100237e2 <_rtw_free_network> +100238da: 464c mov r4, r9 +100238dc: e7f1 b.n 100238c2 <_rtw_free_network_queue+0x1e> +100238de: 4628 mov r0, r5 +100238e0: a901 add r1, sp, #4 +100238e2: f7f9 fb11 bl 1001cf08 +100238e6: b003 add sp, #12 +100238e8: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +100238ec : +100238ec: f241 63f8 movw r3, #5880 ; 0x16f8 +100238f0: 58c3 ldr r3, [r0, r3] +100238f2: b93b cbnz r3, 10023904 +100238f4: f241 62fc movw r2, #5884 ; 0x16fc +100238f8: 5882 ldr r2, [r0, r2] +100238fa: b92a cbnz r2, 10023908 +100238fc: 6900 ldr r0, [r0, #16] +100238fe: f000 0001 and.w r0, r0, #1 +10023902: 4770 bx lr +10023904: 2000 movs r0, #0 +10023906: 4770 bx lr +10023908: 4618 mov r0, r3 +1002390a: 4770 bx lr + +1002390c : +1002390c: 300a adds r0, #10 +1002390e: 4770 bx lr + +10023910 : +10023910: b507 push {r0, r1, r2, lr} +10023912: f100 0186 add.w r1, r0, #134 ; 0x86 +10023916: 2202 movs r2, #2 +10023918: f10d 0006 add.w r0, sp, #6 +1002391c: f7f9 fa46 bl 1001cdac +10023920: f8bd 0006 ldrh.w r0, [sp, #6] +10023924: b003 add sp, #12 +10023926: f85d fb04 ldr.w pc, [sp], #4 + +1002392a : +1002392a: 3008 adds r0, #8 +1002392c: 4770 bx lr + +1002392e : +1002392e: b538 push {r3, r4, r5, lr} +10023930: 4605 mov r5, r0 +10023932: f7ff feaf bl 10023694 <_rtw_init_mlme_priv> +10023936: 4604 mov r4, r0 +10023938: b918 cbnz r0, 10023942 +1002393a: f105 000c add.w r0, r5, #12 +1002393e: f7ff ff14 bl 1002376a <_rtw_free_mlme_priv> +10023942: 4620 mov r0, r4 +10023944: bd38 pop {r3, r4, r5, pc} + +10023946 : +10023946: f7ff bf10 b.w 1002376a <_rtw_free_mlme_priv> + +1002394a : +1002394a: f7ff bfab b.w 100238a4 <_rtw_free_network_queue> + +1002394e : +1002394e: f8d0 3c7c ldr.w r3, [r0, #3196] ; 0xc7c +10023952: 6d08 ldr r0, [r1, #80] ; 0x50 +10023954: b10b cbz r3, 1002395a +10023956: 3000 adds r0, #0 +10023958: e001 b.n 1002395e +1002395a: f110 30ff adds.w r0, r0, #4294967295 +1002395e: bf18 it ne +10023960: 2001 movne r0, #1 +10023962: 4770 bx lr + +10023964 : +10023964: b537 push {r0, r1, r2, r4, r5, lr} +10023966: 4604 mov r4, r0 +10023968: 460d mov r5, r1 +1002396a: a801 add r0, sp, #4 +1002396c: f104 0186 add.w r1, r4, #134 ; 0x86 +10023970: 2202 movs r2, #2 +10023972: f7f9 fa1b bl 1001cdac +10023976: 2202 movs r2, #2 +10023978: f10d 0006 add.w r0, sp, #6 +1002397c: f105 0186 add.w r1, r5, #134 ; 0x86 +10023980: f7f9 fa14 bl 1001cdac +10023984: 68e2 ldr r2, [r4, #12] +10023986: 68eb ldr r3, [r5, #12] +10023988: 429a cmp r2, r3 +1002398a: d001 beq.n 10023990 +1002398c: 2000 movs r0, #0 +1002398e: e019 b.n 100239c4 +10023990: 1d20 adds r0, r4, #4 +10023992: 1d29 adds r1, r5, #4 +10023994: 2206 movs r2, #6 +10023996: f7f9 fa11 bl 1001cdbc +1002399a: 2801 cmp r0, #1 +1002399c: d1f6 bne.n 1002398c +1002399e: f104 0010 add.w r0, r4, #16 +100239a2: f105 0110 add.w r1, r5, #16 +100239a6: 68e2 ldr r2, [r4, #12] +100239a8: f7f9 fa08 bl 1001cdbc +100239ac: 2801 cmp r0, #1 +100239ae: d1ed bne.n 1002398c +100239b0: f8bd 2006 ldrh.w r2, [sp, #6] +100239b4: f8bd 3004 ldrh.w r3, [sp, #4] +100239b8: 4053 eors r3, r2 +100239ba: f013 0f03 tst.w r3, #3 +100239be: bf14 ite ne +100239c0: 2000 movne r0, #0 +100239c2: 2001 moveq r0, #1 +100239c4: b003 add sp, #12 +100239c6: bd30 pop {r4, r5, pc} + +100239c8 : +100239c8: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100239cc: 469a mov sl, r3 +100239ce: 6913 ldr r3, [r2, #16] +100239d0: 4604 mov r4, r0 +100239d2: 07db lsls r3, r3, #31 +100239d4: 460d mov r5, r1 +100239d6: 4616 mov r6, r2 +100239d8: 6b87 ldr r7, [r0, #56] ; 0x38 +100239da: f891 9075 ldrb.w r9, [r1, #117] ; 0x75 +100239de: d504 bpl.n 100239ea +100239e0: f102 0098 add.w r0, r2, #152 ; 0x98 +100239e4: f7ff ffbe bl 10023964 +100239e8: bb60 cbnz r0, 10023a44 +100239ea: f1b9 0f65 cmp.w r9, #101 ; 0x65 +100239ee: 6ba7 ldr r7, [r4, #56] ; 0x38 +100239f0: f894 8074 ldrb.w r8, [r4, #116] ; 0x74 +100239f4: f894 6075 ldrb.w r6, [r4, #117] ; 0x75 +100239f8: d014 beq.n 10023a24 +100239fa: f895 3074 ldrb.w r3, [r5, #116] ; 0x74 +100239fe: 2205 movs r2, #5 +10023a00: eb03 0888 add.w r8, r3, r8, lsl #2 +10023a04: f895 3075 ldrb.w r3, [r5, #117] ; 0x75 +10023a08: fbb8 f8f2 udiv r8, r8, r2 +10023a0c: eb03 0686 add.w r6, r3, r6, lsl #2 +10023a10: 6bab ldr r3, [r5, #56] ; 0x38 +10023a12: fbb6 f6f2 udiv r6, r6, r2 +10023a16: eb03 0787 add.w r7, r3, r7, lsl #2 +10023a1a: fa5f f888 uxtb.w r8, r8 +10023a1e: b2f6 uxtb r6, r6 +10023a20: fb97 f7f2 sdiv r7, r7, r2 +10023a24: f1ba 0f00 cmp.w sl, #0 +10023a28: d005 beq.n 10023a36 +10023a2a: 6faa ldr r2, [r5, #120] ; 0x78 +10023a2c: 4620 mov r0, r4 +10023a2e: 4629 mov r1, r5 +10023a30: 327c adds r2, #124 ; 0x7c +10023a32: f7f9 f9bb bl 1001cdac +10023a36: f884 8074 strb.w r8, [r4, #116] ; 0x74 +10023a3a: f884 6075 strb.w r6, [r4, #117] ; 0x75 +10023a3e: 63a7 str r7, [r4, #56] ; 0x38 +10023a40: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10023a44: f1b9 0f65 cmp.w r9, #101 ; 0x65 +10023a48: f896 8b76 ldrb.w r8, [r6, #2934] ; 0xb76 +10023a4c: f896 6b77 ldrb.w r6, [r6, #2935] ; 0xb77 +10023a50: d0e8 beq.n 10023a24 +10023a52: 6bab ldr r3, [r5, #56] ; 0x38 +10023a54: 6ba7 ldr r7, [r4, #56] ; 0x38 +10023a56: eb03 0787 add.w r7, r3, r7, lsl #2 +10023a5a: 2305 movs r3, #5 +10023a5c: fb97 f7f3 sdiv r7, r7, r3 +10023a60: e7e0 b.n 10023a24 + +10023a62 : +10023a62: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +10023a66: f100 0934 add.w r9, r0, #52 ; 0x34 +10023a6a: 4607 mov r7, r0 +10023a6c: 460d mov r5, r1 +10023a6e: f100 0a2c add.w sl, r0, #44 ; 0x2c +10023a72: a901 add r1, sp, #4 +10023a74: 4648 mov r0, r9 +10023a76: f7f9 fa3f bl 1001cef8 +10023a7a: 2400 movs r4, #0 +10023a7c: 6afe ldr r6, [r7, #44] ; 0x2c +10023a7e: 46a0 mov r8, r4 +10023a80: 4650 mov r0, sl +10023a82: 4631 mov r1, r6 +10023a84: f7f9 fa6c bl 1001cf60 +10023a88: 2801 cmp r0, #1 +10023a8a: d013 beq.n 10023ab4 +10023a8c: f106 001c add.w r0, r6, #28 +10023a90: 4629 mov r1, r5 +10023a92: f7ff ff67 bl 10023964 +10023a96: b960 cbnz r0, 10023ab2 +10023a98: b13c cbz r4, 10023aaa +10023a9a: 6923 ldr r3, [r4, #16] +10023a9c: 6932 ldr r2, [r6, #16] +10023a9e: 1ad3 subs r3, r2, r3 +10023aa0: ea34 0423 bics.w r4, r4, r3, asr #32 +10023aa4: bf28 it cs +10023aa6: 4634 movcs r4, r6 +10023aa8: e000 b.n 10023aac +10023aaa: 4634 mov r4, r6 +10023aac: 46b0 mov r8, r6 +10023aae: 6836 ldr r6, [r6, #0] +10023ab0: e7e6 b.n 10023a80 +10023ab2: 46b0 mov r8, r6 +10023ab4: 4650 mov r0, sl +10023ab6: 4631 mov r1, r6 +10023ab8: f7f9 fa52 bl 1001cf60 +10023abc: 2801 cmp r0, #1 +10023abe: d13c bne.n 10023b3a +10023ac0: f107 0020 add.w r0, r7, #32 +10023ac4: f7f9 fa46 bl 1001cf54 +10023ac8: 2801 cmp r0, #1 +10023aca: f107 060c add.w r6, r7, #12 +10023ace: d119 bne.n 10023b04 +10023ad0: 6baa ldr r2, [r5, #56] ; 0x38 +10023ad2: 6d63 ldr r3, [r4, #84] ; 0x54 +10023ad4: 4293 cmp r3, r2 +10023ad6: da46 bge.n 10023b66 +10023ad8: 6faa ldr r2, [r5, #120] ; 0x78 +10023ada: 4629 mov r1, r5 +10023adc: f104 001c add.w r0, r4, #28 +10023ae0: 2500 movs r5, #0 +10023ae2: 327c adds r2, #124 ; 0x7c +10023ae4: f7f9 f962 bl 1001cdac +10023ae8: 60e5 str r5, [r4, #12] +10023aea: f7f9 fa5d bl 1001cfa8 +10023aee: f894 3091 ldrb.w r3, [r4, #145] ; 0x91 +10023af2: 6120 str r0, [r4, #16] +10023af4: 2b65 cmp r3, #101 ; 0x65 +10023af6: 60a5 str r5, [r4, #8] +10023af8: 6165 str r5, [r4, #20] +10023afa: 61a5 str r5, [r4, #24] +10023afc: d133 bne.n 10023b66 +10023afe: f884 5091 strb.w r5, [r4, #145] ; 0x91 +10023b02: e030 b.n 10023b66 +10023b04: 4630 mov r0, r6 +10023b06: f7ff fe44 bl 10023792 <_rtw_alloc_network> +10023b0a: 4604 mov r4, r0 +10023b0c: b358 cbz r0, 10023b66 +10023b0e: 6faa ldr r2, [r5, #120] ; 0x78 +10023b10: 4629 mov r1, r5 +10023b12: 327c adds r2, #124 ; 0x7c +10023b14: 602a str r2, [r5, #0] +10023b16: 301c adds r0, #28 +10023b18: f7f9 f948 bl 1001cdac +10023b1c: f7f9 fa44 bl 1001cfa8 +10023b20: f894 3091 ldrb.w r3, [r4, #145] ; 0x91 +10023b24: 6120 str r0, [r4, #16] +10023b26: 2b65 cmp r3, #101 ; 0x65 +10023b28: bf04 itt eq +10023b2a: 2300 moveq r3, #0 +10023b2c: f884 3091 strbeq.w r3, [r4, #145] ; 0x91 +10023b30: 4620 mov r0, r4 +10023b32: 4651 mov r1, sl +10023b34: f7f9 f964 bl 1001ce00 +10023b38: e015 b.n 10023b66 +10023b3a: f7f9 fa35 bl 1001cfa8 +10023b3e: f8c8 0010 str.w r0, [r8, #16] +10023b42: 6faa ldr r2, [r5, #120] ; 0x78 +10023b44: f8d8 3094 ldr.w r3, [r8, #148] ; 0x94 +10023b48: 4293 cmp r3, r2 +10023b4a: d905 bls.n 10023b58 +10023b4c: 7aab ldrb r3, [r5, #10] +10023b4e: f113 33ff adds.w r3, r3, #4294967295 +10023b52: bf18 it ne +10023b54: 2301 movne r3, #1 +10023b56: e000 b.n 10023b5a +10023b58: 2301 movs r3, #1 +10023b5a: f108 001c add.w r0, r8, #28 +10023b5e: 4629 mov r1, r5 +10023b60: 463a mov r2, r7 +10023b62: f7ff ff31 bl 100239c8 +10023b66: 4648 mov r0, r9 +10023b68: a901 add r1, sp, #4 +10023b6a: f7f9 f9cd bl 1001cf08 +10023b6e: b002 add sp, #8 +10023b70: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +10023b74 : +10023b74: b570 push {r4, r5, r6, lr} +10023b76: 6903 ldr r3, [r0, #16] +10023b78: 4604 mov r4, r0 +10023b7a: 07db lsls r3, r3, #31 +10023b7c: 460d mov r5, r1 +10023b7e: d512 bpl.n 10023ba6 +10023b80: f100 0698 add.w r6, r0, #152 ; 0x98 +10023b84: 4630 mov r0, r6 +10023b86: f7ff feed bl 10023964 +10023b8a: b160 cbz r0, 10023ba6 +10023b8c: 4630 mov r0, r6 +10023b8e: 4629 mov r1, r5 +10023b90: 4622 mov r2, r4 +10023b92: 2301 movs r3, #1 +10023b94: f7ff ff18 bl 100239c8 +10023b98: 4620 mov r0, r4 +10023b9a: f504 7190 add.w r1, r4, #288 ; 0x120 +10023b9e: f8d4 2110 ldr.w r2, [r4, #272] ; 0x110 +10023ba2: f00b f9df bl 1002ef64 +10023ba6: 4620 mov r0, r4 +10023ba8: 4629 mov r1, r5 +10023baa: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10023bae: f7ff bf58 b.w 10023a62 + +10023bb2 : +10023bb2: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +10023bb6: 6f8b ldr r3, [r1, #120] ; 0x78 +10023bb8: 4605 mov r5, r0 +10023bba: 337c adds r3, #124 ; 0x7c +10023bbc: f5b3 7f5f cmp.w r3, #892 ; 0x37c +10023bc0: 460c mov r4, r1 +10023bc2: d849 bhi.n 10023c58 +10023bc4: f100 070c add.w r7, r0, #12 +10023bc8: 4638 mov r0, r7 +10023bca: 4669 mov r1, sp +10023bcc: f7f9 f994 bl 1001cef8 +10023bd0: 692b ldr r3, [r5, #16] +10023bd2: 065a lsls r2, r3, #25 +10023bd4: d408 bmi.n 10023be8 +10023bd6: e003 b.n 10023be0 +10023bd8: 4630 mov r0, r6 +10023bda: a901 add r1, sp, #4 +10023bdc: f7f9 f994 bl 1001cf08 +10023be0: 692b ldr r3, [r5, #16] +10023be2: 061b lsls r3, r3, #24 +10023be4: d428 bmi.n 10023c38 +10023be6: e02c b.n 10023c42 +10023be8: f104 0804 add.w r8, r4, #4 +10023bec: f105 009c add.w r0, r5, #156 ; 0x9c +10023bf0: 4641 mov r1, r8 +10023bf2: 2206 movs r2, #6 +10023bf4: f7f9 f8e2 bl 1001cdbc +10023bf8: 2800 cmp r0, #0 +10023bfa: d0f1 beq.n 10023be0 +10023bfc: f104 097c add.w r9, r4, #124 ; 0x7c +10023c00: f505 708a add.w r0, r5, #276 ; 0x114 +10023c04: 4649 mov r1, r9 +10023c06: 2208 movs r2, #8 +10023c08: f105 0634 add.w r6, r5, #52 ; 0x34 +10023c0c: f7f9 f8ce bl 1001cdac +10023c10: 4630 mov r0, r6 +10023c12: a901 add r1, sp, #4 +10023c14: f7f9 f970 bl 1001cef8 +10023c18: f105 002c add.w r0, r5, #44 ; 0x2c +10023c1c: 4641 mov r1, r8 +10023c1e: f7ff fe23 bl 10023868 <_rtw_find_network> +10023c22: 2800 cmp r0, #0 +10023c24: d0d8 beq.n 10023bd8 +10023c26: 3098 adds r0, #152 ; 0x98 +10023c28: 4649 mov r1, r9 +10023c2a: 2208 movs r2, #8 +10023c2c: f7f9 f8be bl 1001cdac +10023c30: 4630 mov r0, r6 +10023c32: a901 add r1, sp, #4 +10023c34: f7f9 f968 bl 1001cf08 +10023c38: 4638 mov r0, r7 +10023c3a: 4669 mov r1, sp +10023c3c: f7f9 f964 bl 1001cf08 +10023c40: e00a b.n 10023c58 +10023c42: 7c23 ldrb r3, [r4, #16] +10023c44: b91b cbnz r3, 10023c4e +10023c46: 7323 strb r3, [r4, #12] +10023c48: 7363 strb r3, [r4, #13] +10023c4a: 73a3 strb r3, [r4, #14] +10023c4c: 73e3 strb r3, [r4, #15] +10023c4e: 4628 mov r0, r5 +10023c50: 4621 mov r1, r4 +10023c52: f7ff ff8f bl 10023b74 +10023c56: e7ef b.n 10023c38 +10023c58: b003 add sp, #12 +10023c5a: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +10023c5e : +10023c5e: 4770 bx lr + +10023c60 : +10023c60: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +10023c64: 6903 ldr r3, [r0, #16] +10023c66: 4604 mov r4, r0 +10023c68: f013 0f18 tst.w r3, #24 +10023c6c: 460d mov r5, r1 +10023c6e: f100 069c add.w r6, r0, #156 ; 0x9c +10023c72: d127 bne.n 10023cc4 +10023c74: 6923 ldr r3, [r4, #16] +10023c76: f013 0f70 tst.w r3, #112 ; 0x70 +10023c7a: d138 bne.n 10023cee +10023c7c: b125 cbz r5, 10023c88 +10023c7e: f104 0034 add.w r0, r4, #52 ; 0x34 +10023c82: a901 add r1, sp, #4 +10023c84: f7f9 f938 bl 1001cef8 +10023c88: 4631 mov r1, r6 +10023c8a: f104 002c add.w r0, r4, #44 ; 0x2c +10023c8e: f7ff fdeb bl 10023868 <_rtw_find_network> +10023c92: 4601 mov r1, r0 +10023c94: b108 cbz r0, 10023c9a +10023c96: 2200 movs r2, #0 +10023c98: 60c2 str r2, [r0, #12] +10023c9a: 6922 ldr r2, [r4, #16] +10023c9c: 0650 lsls r0, r2, #25 +10023c9e: d43f bmi.n 10023d20 +10023ca0: 0713 lsls r3, r2, #28 +10023ca2: d503 bpl.n 10023cac +10023ca4: f104 000c add.w r0, r4, #12 +10023ca8: f7ff fdcb bl 10023842 <_rtw_free_network_nolock> +10023cac: b125 cbz r5, 10023cb8 +10023cae: f104 0034 add.w r0, r4, #52 ; 0x34 +10023cb2: a901 add r1, sp, #4 +10023cb4: f7f9 f928 bl 1001cf08 +10023cb8: 2300 movs r3, #0 +10023cba: f884 349c strb.w r3, [r4, #1180] ; 0x49c +10023cbe: b002 add sp, #8 +10023cc0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10023cc4: 4631 mov r1, r6 +10023cc6: f500 603d add.w r0, r0, #3024 ; 0xbd0 +10023cca: f009 fe73 bl 1002d9b4 +10023cce: f604 37e8 addw r7, r4, #3048 ; 0xbe8 +10023cd2: 4680 mov r8, r0 +10023cd4: a901 add r1, sp, #4 +10023cd6: 4638 mov r0, r7 +10023cd8: f7f9 f90e bl 1001cef8 +10023cdc: 4641 mov r1, r8 +10023cde: 4620 mov r0, r4 +10023ce0: f009 fd97 bl 1002d812 +10023ce4: 4638 mov r0, r7 +10023ce6: a901 add r1, sp, #4 +10023ce8: f7f9 f90e bl 1001cf08 +10023cec: e7c2 b.n 10023c74 +10023cee: 4620 mov r0, r4 +10023cf0: f009 fec8 bl 1002da84 +10023cf4: 4620 mov r0, r4 +10023cf6: f009 feb3 bl 1002da60 +10023cfa: f604 37e8 addw r7, r4, #3048 ; 0xbe8 +10023cfe: 4680 mov r8, r0 +10023d00: a901 add r1, sp, #4 +10023d02: 4638 mov r0, r7 +10023d04: f7f9 f8f8 bl 1001cef8 +10023d08: 4641 mov r1, r8 +10023d0a: 4620 mov r0, r4 +10023d0c: f009 fd81 bl 1002d812 +10023d10: 4638 mov r0, r7 +10023d12: a901 add r1, sp, #4 +10023d14: f7f9 f8f8 bl 1001cf08 +10023d18: 4620 mov r0, r4 +10023d1a: f009 fe89 bl 1002da30 +10023d1e: e7ad b.n 10023c7c +10023d20: f8d4 3c14 ldr.w r3, [r4, #3092] ; 0xc14 +10023d24: 2b01 cmp r3, #1 +10023d26: d1bb bne.n 10023ca0 +10023d28: e7bc b.n 10023ca4 + +10023d2a : +10023d2a: 2200 movs r2, #0 +10023d2c: 7542 strb r2, [r0, #21] +10023d2e: 6902 ldr r2, [r0, #16] +10023d30: f042 0201 orr.w r2, r2, #1 +10023d34: 6102 str r2, [r0, #16] +10023d36: f013 bffc b.w 10037d32 + +10023d3a : +10023d3a: b510 push {r4, lr} +10023d3c: 6903 ldr r3, [r0, #16] +10023d3e: 4604 mov r4, r0 +10023d40: f423 73c0 bic.w r3, r3, #384 ; 0x180 +10023d44: f023 0301 bic.w r3, r3, #1 +10023d48: 6103 str r3, [r0, #16] +10023d4a: f014 f870 bl 10037e2e +10023d4e: 4620 mov r0, r4 +10023d50: 2103 movs r1, #3 +10023d52: 2201 movs r2, #1 +10023d54: e8bd 4010 ldmia.w sp!, {r4, lr} +10023d58: f7ff ba99 b.w 1002328e + +10023d5c : +10023d5c: f013 bfeb b.w 10037d36 + +10023d60 : +10023d60: b510 push {r4, lr} +10023d62: 6809 ldr r1, [r1, #0] +10023d64: 4604 mov r4, r0 +10023d66: f005 f8bb bl 10028ee0 +10023d6a: 4620 mov r0, r4 +10023d6c: f017 fb91 bl 1003b492 +10023d70: f241 73a8 movw r3, #6056 ; 0x17a8 +10023d74: 58e0 ldr r0, [r4, r3] +10023d76: e8bd 4010 ldmia.w sp!, {r4, lr} +10023d7a: f017 bb8a b.w 1003b492 + +10023d7e : +10023d7e: 6903 ldr r3, [r0, #16] +10023d80: 06db lsls r3, r3, #27 +10023d82: d412 bmi.n 10023daa +10023d84: f8d0 378c ldr.w r3, [r0, #1932] ; 0x78c +10023d88: 2b01 cmp r3, #1 +10023d8a: d00a beq.n 10023da2 +10023d8c: f8d0 376c ldr.w r3, [r0, #1900] ; 0x76c +10023d90: 2b01 cmp r3, #1 +10023d92: d008 beq.n 10023da6 +10023d94: f8d0 374c ldr.w r3, [r0, #1868] ; 0x74c +10023d98: 2b01 cmp r3, #1 +10023d9a: bf14 ite ne +10023d9c: 2001 movne r0, #1 +10023d9e: 2002 moveq r0, #2 +10023da0: 4770 bx lr +10023da2: 2004 movs r0, #4 +10023da4: 4770 bx lr +10023da6: 2003 movs r0, #3 +10023da8: 4770 bx lr +10023daa: f890 3c70 ldrb.w r3, [r0, #3184] ; 0xc70 +10023dae: b13b cbz r3, 10023dc0 +10023db0: eb00 0283 add.w r2, r0, r3, lsl #2 +10023db4: f8d2 2c54 ldr.w r2, [r2, #3156] ; 0xc54 +10023db8: b912 cbnz r2, 10023dc0 +10023dba: 3b01 subs r3, #1 +10023dbc: b2db uxtb r3, r3 +10023dbe: e7f6 b.n 10023dae +10023dc0: 3301 adds r3, #1 +10023dc2: b2d8 uxtb r0, r3 +10023dc4: 4770 bx lr + +10023dc6 : +10023dc6: b573 push {r0, r1, r4, r5, r6, lr} +10023dc8: 4605 mov r5, r0 +10023dca: 460e mov r6, r1 +10023dcc: b1a9 cbz r1, 10023dfa +10023dce: f7ff ffd6 bl 10023d7e +10023dd2: ac02 add r4, sp, #8 +10023dd4: f804 0d02 strb.w r0, [r4, #-2]! +10023dd8: 2143 movs r1, #67 ; 0x43 +10023dda: 4628 mov r0, r5 +10023ddc: 4622 mov r2, r4 +10023dde: f013 fda4 bl 1003792a +10023de2: f8d6 3100 ldr.w r3, [r6, #256] ; 0x100 +10023de6: 4628 mov r0, r5 +10023de8: 021b lsls r3, r3, #8 +10023dea: f043 0301 orr.w r3, r3, #1 +10023dee: 2144 movs r1, #68 ; 0x44 +10023df0: 4622 mov r2, r4 +10023df2: f8ad 3006 strh.w r3, [sp, #6] +10023df6: f013 fd98 bl 1003792a +10023dfa: b002 add sp, #8 +10023dfc: bd70 pop {r4, r5, r6, pc} + +10023dfe : +10023dfe: b538 push {r3, r4, r5, lr} +10023e00: 6903 ldr r3, [r0, #16] +10023e02: 4604 mov r4, r0 +10023e04: 06db lsls r3, r3, #27 +10023e06: d400 bmi.n 10023e0a +10023e08: bd38 pop {r3, r4, r5, pc} +10023e0a: f500 603d add.w r0, r0, #3024 ; 0xbd0 +10023e0e: f009 fdd1 bl 1002d9b4 +10023e12: 4605 mov r5, r0 +10023e14: b148 cbz r0, 10023e2a +10023e16: 4620 mov r0, r4 +10023e18: 4629 mov r1, r5 +10023e1a: f7fe fb31 bl 10022480 +10023e1e: 4620 mov r0, r4 +10023e20: 4629 mov r1, r5 +10023e22: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10023e26: f7ff bfce b.w 10023dc6 +10023e2a: bd38 pop {r3, r4, r5, pc} + +10023e2c : +10023e2c: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +10023e30: 4604 mov r4, r0 +10023e32: f500 603d add.w r0, r0, #3024 ; 0xbd0 +10023e36: 460d mov r5, r1 +10023e38: f009 fdbc bl 1002d9b4 +10023e3c: b110 cbz r0, 10023e44 +10023e3e: f8d0 3100 ldr.w r3, [r0, #256] ; 0x100 +10023e42: e000 b.n 10023e46 +10023e44: 68ab ldr r3, [r5, #8] +10023e46: 021b lsls r3, r3, #8 +10023e48: ad02 add r5, sp, #8 +10023e4a: f825 3d04 strh.w r3, [r5, #-4]! +10023e4e: 4620 mov r0, r4 +10023e50: 2144 movs r1, #68 ; 0x44 +10023e52: 462a mov r2, r5 +10023e54: f013 fd69 bl 1003792a +10023e58: 6923 ldr r3, [r4, #16] +10023e5a: f013 0810 ands.w r8, r3, #16 +10023e5e: d135 bne.n 10023ecc +10023e60: 4620 mov r0, r4 +10023e62: f104 060c add.w r6, r4, #12 +10023e66: f004 f81b bl 10027ea0 +10023e6a: 4630 mov r0, r6 +10023e6c: 4629 mov r1, r5 +10023e6e: f7f9 f843 bl 1001cef8 +10023e72: 6923 ldr r3, [r4, #16] +10023e74: 071b lsls r3, r3, #28 +10023e76: d404 bmi.n 10023e82 +10023e78: 4630 mov r0, r6 +10023e7a: 4629 mov r1, r5 +10023e7c: f7f9 f844 bl 1001cf08 +10023e80: e024 b.n 10023ecc +10023e82: 4620 mov r0, r4 +10023e84: f008 f991 bl 1002c1aa +10023e88: 4620 mov r0, r4 +10023e8a: f008 f9ba bl 1002c202 +10023e8e: 2101 movs r1, #1 +10023e90: 4620 mov r0, r4 +10023e92: f7ff fee5 bl 10023c60 +10023e96: f104 0734 add.w r7, r4, #52 ; 0x34 +10023e9a: 4620 mov r0, r4 +10023e9c: f7ff ff4d bl 10023d3a +10023ea0: 4638 mov r0, r7 +10023ea2: 4669 mov r1, sp +10023ea4: f7f9 f828 bl 1001cef8 +10023ea8: f104 019c add.w r1, r4, #156 ; 0x9c +10023eac: f104 002c add.w r0, r4, #44 ; 0x2c +10023eb0: f7ff fcda bl 10023868 <_rtw_find_network> +10023eb4: 4601 mov r1, r0 +10023eb6: b120 cbz r0, 10023ec2 +10023eb8: f8c1 800c str.w r8, [r1, #12] +10023ebc: 4630 mov r0, r6 +10023ebe: f7ff fcc0 bl 10023842 <_rtw_free_network_nolock> +10023ec2: 4638 mov r0, r7 +10023ec4: 4669 mov r1, sp +10023ec6: f7f9 f81f bl 1001cf08 +10023eca: e7d5 b.n 10023e78 +10023ecc: b002 add sp, #8 +10023ece: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10023ed2 <_rtw_join_timeout_handler>: +10023ed2: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} +10023ed6: f241 63f8 movw r3, #5880 ; 0x16f8 +10023eda: 58c3 ldr r3, [r0, r3] +10023edc: 4604 mov r4, r0 +10023ede: 2b00 cmp r3, #0 +10023ee0: d139 bne.n 10023f56 <_rtw_join_timeout_handler+0x84> +10023ee2: f241 63fc movw r3, #5884 ; 0x16fc +10023ee6: 58c3 ldr r3, [r0, r3] +10023ee8: 2b00 cmp r3, #0 +10023eea: d134 bne.n 10023f56 <_rtw_join_timeout_handler+0x84> +10023eec: f100 060c add.w r6, r0, #12 +10023ef0: a901 add r1, sp, #4 +10023ef2: 4630 mov r0, r6 +10023ef4: f7f9 f800 bl 1001cef8 +10023ef8: f104 0734 add.w r7, r4, #52 ; 0x34 +10023efc: 4620 mov r0, r4 +10023efe: f7ff ff1c bl 10023d3a +10023f02: f104 0828 add.w r8, r4, #40 ; 0x28 +10023f06: 4638 mov r0, r7 +10023f08: a903 add r1, sp, #12 +10023f0a: f7f8 fff5 bl 1001cef8 +10023f0e: 4640 mov r0, r8 +10023f10: a902 add r1, sp, #8 +10023f12: f7f8 fff1 bl 1001cef8 +10023f16: 6ae5 ldr r5, [r4, #44] ; 0x2c +10023f18: f104 092c add.w r9, r4, #44 ; 0x2c +10023f1c: 454d cmp r5, r9 +10023f1e: d00e beq.n 10023f3e <_rtw_join_timeout_handler+0x6c> +10023f20: 4628 mov r0, r5 +10023f22: f8d5 a000 ldr.w sl, [r5] +10023f26: f7f8 ff71 bl 1001ce0c +10023f2a: 4628 mov r0, r5 +10023f2c: f104 0120 add.w r1, r4, #32 +10023f30: f7f8 ff66 bl 1001ce00 +10023f34: 8fa3 ldrh r3, [r4, #60] ; 0x3c +10023f36: 4655 mov r5, sl +10023f38: 3b01 subs r3, #1 +10023f3a: 87a3 strh r3, [r4, #60] ; 0x3c +10023f3c: e7ee b.n 10023f1c <_rtw_join_timeout_handler+0x4a> +10023f3e: 4640 mov r0, r8 +10023f40: a902 add r1, sp, #8 +10023f42: f7f8 ffe1 bl 1001cf08 +10023f46: 4638 mov r0, r7 +10023f48: a903 add r1, sp, #12 +10023f4a: f7f8 ffdd bl 1001cf08 +10023f4e: 4630 mov r0, r6 +10023f50: a901 add r1, sp, #4 +10023f52: f7f8 ffd9 bl 1001cf08 +10023f56: b004 add sp, #16 +10023f58: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +10023f5c : +10023f5c: b510 push {r4, lr} +10023f5e: 4604 mov r4, r0 +10023f60: f7ff ffb7 bl 10023ed2 <_rtw_join_timeout_handler> +10023f64: f894 386d ldrb.w r3, [r4, #2157] ; 0x86d +10023f68: b1fb cbz r3, 10023faa +10023f6a: f894 27e2 ldrb.w r2, [r4, #2018] ; 0x7e2 +10023f6e: f894 37e1 ldrb.w r3, [r4, #2017] ; 0x7e1 +10023f72: 429a cmp r2, r3 +10023f74: d213 bcs.n 10023f9e +10023f76: 4b0d ldr r3, [pc, #52] ; (10023fac ) +10023f78: 781a ldrb r2, [r3, #0] +10023f7a: b9b2 cbnz r2, 10023faa +10023f7c: 2201 movs r2, #1 +10023f7e: 701a strb r2, [r3, #0] +10023f80: f8b4 37e4 ldrh.w r3, [r4, #2020] ; 0x7e4 +10023f84: f44f 717a mov.w r1, #1000 ; 0x3e8 +10023f88: 4359 muls r1, r3 +10023f8a: f204 70d4 addw r0, r4, #2004 ; 0x7d4 +10023f8e: f017 fcbb bl 1003b908 +10023f92: f894 37e2 ldrb.w r3, [r4, #2018] ; 0x7e2 +10023f96: 3301 adds r3, #1 +10023f98: f884 37e2 strb.w r3, [r4, #2018] ; 0x7e2 +10023f9c: bd10 pop {r4, pc} +10023f9e: 4620 mov r0, r4 +10023fa0: 4903 ldr r1, [pc, #12] ; (10023fb0 ) +10023fa2: e8bd 4010 ldmia.w sp!, {r4, lr} +10023fa6: f014 bf38 b.w 10038e1a +10023faa: bd10 pop {r4, pc} +10023fac: 100530d4 .word 0x100530d4 +10023fb0: 1004a5cd .word 0x1004a5cd + +10023fb4 : +10023fb4: b537 push {r0, r1, r2, r4, r5, lr} +10023fb6: f100 050c add.w r5, r0, #12 +10023fba: 4604 mov r4, r0 +10023fbc: a901 add r1, sp, #4 +10023fbe: 4628 mov r0, r5 +10023fc0: f7f8 ff9a bl 1001cef8 +10023fc4: 6923 ldr r3, [r4, #16] +10023fc6: 4628 mov r0, r5 +10023fc8: f423 6300 bic.w r3, r3, #2048 ; 0x800 +10023fcc: 6123 str r3, [r4, #16] +10023fce: 2300 movs r3, #0 +10023fd0: 7523 strb r3, [r4, #20] +10023fd2: a901 add r1, sp, #4 +10023fd4: f7f8 ff98 bl 1001cf08 +10023fd8: 4620 mov r0, r4 +10023fda: 2101 movs r1, #1 +10023fdc: f013 feab bl 10037d36 +10023fe0: b003 add sp, #12 +10023fe2: bd30 pop {r4, r5, pc} + +10023fe4 <_rtw_scan_timeout_handler>: +10023fe4: f7ff bfe6 b.w 10023fb4 + +10023fe8 : +10023fe8: b510 push {r4, lr} +10023fea: f241 73a8 movw r3, #6056 ; 0x17a8 +10023fee: 58c2 ldr r2, [r0, r3] +10023ff0: f241 7311 movw r3, #5905 ; 0x1711 +10023ff4: 5cc3 ldrb r3, [r0, r3] +10023ff6: 4604 mov r4, r0 +10023ff8: b30b cbz r3, 1002403e +10023ffa: f241 63f8 movw r3, #5880 ; 0x16f8 +10023ffe: 58c3 ldr r3, [r0, r3] +10024000: 2b01 cmp r3, #1 +10024002: d01c beq.n 1002403e +10024004: f241 63fc movw r3, #5884 ; 0x16fc +10024008: 58c3 ldr r3, [r0, r3] +1002400a: 2b01 cmp r3, #1 +1002400c: d017 beq.n 1002403e +1002400e: f241 73a4 movw r3, #6052 ; 0x17a4 +10024012: b132 cbz r2, 10024022 +10024014: 5cc1 ldrb r1, [r0, r3] +10024016: 2901 cmp r1, #1 +10024018: d106 bne.n 10024028 +1002401a: 5cd3 ldrb r3, [r2, r3] +1002401c: 2b01 cmp r3, #1 +1002401e: d103 bne.n 10024028 +10024020: bd10 pop {r4, pc} +10024022: 5cc3 ldrb r3, [r0, r3] +10024024: 2b01 cmp r3, #1 +10024026: d00a beq.n 1002403e +10024028: 4620 mov r0, r4 +1002402a: f7ff f831 bl 10023090 +1002402e: 6923 ldr r3, [r4, #16] +10024030: 06db lsls r3, r3, #27 +10024032: d504 bpl.n 1002403e +10024034: 4620 mov r0, r4 +10024036: e8bd 4010 ldmia.w sp!, {r4, lr} +1002403a: f7fe b8fd b.w 10022238 +1002403e: bd10 pop {r4, pc} + +10024040 <_dynamic_check_timer_handlder>: +10024040: b538 push {r3, r4, r5, lr} +10024042: 4604 mov r4, r0 +10024044: f017 f87a bl 1003b13c +10024048: 4605 mov r5, r0 +1002404a: b130 cbz r0, 1002405a <_dynamic_check_timer_handlder+0x1a> +1002404c: 480b ldr r0, [pc, #44] ; (1002407c <_dynamic_check_timer_handlder+0x3c>) +1002404e: f01e f85b bl 10042108 +10024052: 480b ldr r0, [pc, #44] ; (10024080 <_dynamic_check_timer_handlder+0x40>) +10024054: 4629 mov r1, r5 +10024056: f01e f857 bl 10042108 +1002405a: f241 73a8 movw r3, #6056 ; 0x17a8 +1002405e: 58e0 ldr r0, [r4, r3] +10024060: b108 cbz r0, 10024066 <_dynamic_check_timer_handlder+0x26> +10024062: f7ff ffc1 bl 10023fe8 +10024066: 4620 mov r0, r4 +10024068: f7ff ffbe bl 10023fe8 +1002406c: f504 6092 add.w r0, r4, #1168 ; 0x490 +10024070: f44f 61fa mov.w r1, #2000 ; 0x7d0 +10024074: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10024078: f017 bc46 b.w 1003b908 +1002407c: 1004b9eb .word 0x1004b9eb +10024080: 1004a5e2 .word 0x1004a5e2 + +10024084 : +10024084: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +10024088: f100 0828 add.w r8, r0, #40 ; 0x28 +1002408c: 4604 mov r4, r0 +1002408e: a901 add r1, sp, #4 +10024090: 4640 mov r0, r8 +10024092: f7f8 ff31 bl 1001cef8 +10024096: 6a23 ldr r3, [r4, #32] +10024098: 68e7 ldr r7, [r4, #12] +1002409a: f104 0920 add.w r9, r4, #32 +1002409e: 6123 str r3, [r4, #16] +100240a0: 2600 movs r6, #0 +100240a2: 4648 mov r0, r9 +100240a4: 6921 ldr r1, [r4, #16] +100240a6: f7f8 ff5b bl 1001cf60 +100240aa: 4602 mov r2, r0 +100240ac: 2800 cmp r0, #0 +100240ae: d130 bne.n 10024112 +100240b0: 6925 ldr r5, [r4, #16] +100240b2: 2d00 cmp r5, #0 +100240b4: d048 beq.n 10024148 +100240b6: 682b ldr r3, [r5, #0] +100240b8: f504 609e add.w r0, r4, #1264 ; 0x4f0 +100240bc: 6123 str r3, [r4, #16] +100240be: 6ea9 ldr r1, [r5, #104] ; 0x68 +100240c0: f000 fc2a bl 10024918 +100240c4: 2800 cmp r0, #0 +100240c6: d0ec beq.n 100240a2 +100240c8: f894 342c ldrb.w r3, [r4, #1068] ; 0x42c +100240cc: 2b01 cmp r3, #1 +100240ce: d002 beq.n 100240d6 +100240d0: 6c23 ldr r3, [r4, #64] ; 0x40 +100240d2: b953 cbnz r3, 100240ea +100240d4: e014 b.n 10024100 +100240d6: f105 0020 add.w r0, r5, #32 +100240da: f104 0168 add.w r1, r4, #104 ; 0x68 +100240de: 2206 movs r2, #6 +100240e0: f7f8 fe6c bl 1001cdbc +100240e4: 2800 cmp r0, #0 +100240e6: d1f3 bne.n 100240d0 +100240e8: e7db b.n 100240a2 +100240ea: 6aaa ldr r2, [r5, #40] ; 0x28 +100240ec: 429a cmp r2, r3 +100240ee: d1d8 bne.n 100240a2 +100240f0: f105 002c add.w r0, r5, #44 ; 0x2c +100240f4: f104 0144 add.w r1, r4, #68 ; 0x44 +100240f8: f7f8 fe60 bl 1001cdbc +100240fc: 2800 cmp r0, #0 +100240fe: d0d0 beq.n 100240a2 +10024100: b12e cbz r6, 1002410e +10024102: 6d72 ldr r2, [r6, #84] ; 0x54 +10024104: 6d6b ldr r3, [r5, #84] ; 0x54 +10024106: 429a cmp r2, r3 +10024108: bfb8 it lt +1002410a: 462e movlt r6, r5 +1002410c: e7c9 b.n 100240a2 +1002410e: 462e mov r6, r5 +10024110: e7c7 b.n 100240a2 +10024112: b146 cbz r6, 10024126 +10024114: 6863 ldr r3, [r4, #4] +10024116: 07db lsls r3, r3, #31 +10024118: d407 bmi.n 1002412a +1002411a: 4638 mov r0, r7 +1002411c: 4631 mov r1, r6 +1002411e: f7fe fd73 bl 10022c08 +10024122: 4605 mov r5, r0 +10024124: e010 b.n 10024148 +10024126: 4635 mov r5, r6 +10024128: e00e b.n 10024148 +1002412a: 4638 mov r0, r7 +1002412c: f7fe fec1 bl 10022eb2 +10024130: 4638 mov r0, r7 +10024132: f7ff fe02 bl 10023d3a +10024136: 4638 mov r0, r7 +10024138: 2100 movs r1, #0 +1002413a: f7ff fd91 bl 10023c60 +1002413e: 6863 ldr r3, [r4, #4] +10024140: f043 0380 orr.w r3, r3, #128 ; 0x80 +10024144: 6063 str r3, [r4, #4] +10024146: e7e8 b.n 1002411a +10024148: 4640 mov r0, r8 +1002414a: a901 add r1, sp, #4 +1002414c: f7f8 fedc bl 1001cf08 +10024150: 4628 mov r0, r5 +10024152: b003 add sp, #12 +10024154: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +10024158 : +10024158: b573 push {r0, r1, r4, r5, r6, lr} +1002415a: f100 050c add.w r5, r0, #12 +1002415e: 4604 mov r4, r0 +10024160: a901 add r1, sp, #4 +10024162: 4628 mov r0, r5 +10024164: f7f8 fec8 bl 1001cef8 +10024168: f8d4 04a4 ldr.w r0, [r4, #1188] ; 0x4a4 +1002416c: b140 cbz r0, 10024180 +1002416e: 2600 movs r6, #0 +10024170: f8d4 14a8 ldr.w r1, [r4, #1192] ; 0x4a8 +10024174: f8c4 64a8 str.w r6, [r4, #1192] ; 0x4a8 +10024178: f7f8 fe10 bl 1001cd9c +1002417c: f8c4 64a4 str.w r6, [r4, #1188] ; 0x4a4 +10024180: 6923 ldr r3, [r4, #16] +10024182: 051b lsls r3, r3, #20 +10024184: d42d bmi.n 100241e2 +10024186: f604 308c addw r0, r4, #2956 ; 0xb8c +1002418a: f8d4 1b98 ldr.w r1, [r4, #2968] ; 0xb98 +1002418e: f017 fbbb bl 1003b908 +10024192: 7d66 ldrb r6, [r4, #21] +10024194: 2e01 cmp r6, #1 +10024196: d112 bne.n 100241be +10024198: 6923 ldr r3, [r4, #16] +1002419a: f013 0220 ands.w r2, r3, #32 +1002419e: d10e bne.n 100241be +100241a0: f043 0380 orr.w r3, r3, #128 ; 0x80 +100241a4: 6123 str r3, [r4, #16] +100241a6: 7562 strb r2, [r4, #21] +100241a8: 4628 mov r0, r5 +100241aa: f7ff ff6b bl 10024084 +100241ae: 2801 cmp r0, #1 +100241b0: d122 bne.n 100241f8 +100241b2: f204 402c addw r0, r4, #1068 ; 0x42c +100241b6: f641 1164 movw r1, #6500 ; 0x1964 +100241ba: f017 fba5 bl 1003b908 +100241be: 4620 mov r0, r4 +100241c0: 2100 movs r1, #0 +100241c2: f013 fdb8 bl 10037d36 +100241c6: a901 add r1, sp, #4 +100241c8: 4628 mov r0, r5 +100241ca: f7f8 fe9d bl 1001cf08 +100241ce: 4620 mov r0, r4 +100241d0: f017 f95f bl 1003b492 +100241d4: f241 73a8 movw r3, #6056 ; 0x17a8 +100241d8: 58e0 ldr r0, [r4, r3] +100241da: f017 f95a bl 1003b492 +100241de: b002 add sp, #8 +100241e0: bd70 pop {r4, r5, r6, pc} +100241e2: f204 403c addw r0, r4, #1084 ; 0x43c +100241e6: f017 fb91 bl 1003b90c +100241ea: 6923 ldr r3, [r4, #16] +100241ec: f423 6300 bic.w r3, r3, #2048 ; 0x800 +100241f0: 6123 str r3, [r4, #16] +100241f2: 2300 movs r3, #0 +100241f4: 7523 strb r3, [r4, #20] +100241f6: e7c6 b.n 10024186 +100241f8: 2802 cmp r0, #2 +100241fa: d107 bne.n 1002420c +100241fc: 6923 ldr r3, [r4, #16] +100241fe: 4620 mov r0, r4 +10024200: f023 0380 bic.w r3, r3, #128 ; 0x80 +10024204: 6123 str r3, [r4, #16] +10024206: f7ff fd90 bl 10023d2a +1002420a: e7d8 b.n 100241be +1002420c: 4620 mov r0, r4 +1002420e: 4915 ldr r1, [pc, #84] ; (10024264 ) +10024210: f014 fe03 bl 10038e1a +10024214: 4620 mov r0, r4 +10024216: f013 fe0a bl 10037e2e +1002421a: f894 386d ldrb.w r3, [r4, #2157] ; 0x86d +1002421e: b1e3 cbz r3, 1002425a +10024220: f894 27e2 ldrb.w r2, [r4, #2018] ; 0x7e2 +10024224: f894 37e1 ldrb.w r3, [r4, #2017] ; 0x7e1 +10024228: 429a cmp r2, r3 +1002422a: d212 bcs.n 10024252 +1002422c: 4b0e ldr r3, [pc, #56] ; (10024268 ) +1002422e: 781a ldrb r2, [r3, #0] +10024230: b99a cbnz r2, 1002425a +10024232: 701e strb r6, [r3, #0] +10024234: f8b4 37e4 ldrh.w r3, [r4, #2020] ; 0x7e4 +10024238: f44f 717a mov.w r1, #1000 ; 0x3e8 +1002423c: 4359 muls r1, r3 +1002423e: f204 70d4 addw r0, r4, #2004 ; 0x7d4 +10024242: f017 fb61 bl 1003b908 +10024246: f894 37e2 ldrb.w r3, [r4, #2018] ; 0x7e2 +1002424a: 3301 adds r3, #1 +1002424c: f884 37e2 strb.w r3, [r4, #2018] ; 0x7e2 +10024250: e003 b.n 1002425a +10024252: 4620 mov r0, r4 +10024254: 4905 ldr r1, [pc, #20] ; (1002426c ) +10024256: f014 fde0 bl 10038e1a +1002425a: 6923 ldr r3, [r4, #16] +1002425c: f023 0380 bic.w r3, r3, #128 ; 0x80 +10024260: 6123 str r3, [r4, #16] +10024262: e7ac b.n 100241be +10024264: 1004a61a .word 0x1004a61a +10024268: 100530d4 .word 0x100530d4 +1002426c: 1004a5cd .word 0x1004a5cd + +10024270 : +10024270: b570 push {r4, r5, r6, lr} +10024272: 4605 mov r5, r0 +10024274: 2020 movs r0, #32 +10024276: 460e mov r6, r1 +10024278: f7f8 fd7a bl 1001cd70 +1002427c: 4604 mov r4, r0 +1002427e: b1e8 cbz r0, 100242bc +10024280: 2004 movs r0, #4 +10024282: f7f8 fd75 bl 1001cd70 +10024286: b920 cbnz r0, 10024292 +10024288: 4620 mov r0, r4 +1002428a: 2120 movs r1, #32 +1002428c: f7f8 fd86 bl 1001cd9c +10024290: e014 b.n 100242bc +10024292: 6832 ldr r2, [r6, #0] +10024294: 2304 movs r3, #4 +10024296: 7002 strb r2, [r0, #0] +10024298: 60e3 str r3, [r4, #12] +1002429a: 2213 movs r2, #19 +1002429c: 2300 movs r3, #0 +1002429e: 60a0 str r0, [r4, #8] +100242a0: 80a2 strh r2, [r4, #4] +100242a2: f104 0018 add.w r0, r4, #24 +100242a6: 6123 str r3, [r4, #16] +100242a8: 6163 str r3, [r4, #20] +100242aa: f7f8 fd99 bl 1001cde0 +100242ae: f605 0078 addw r0, r5, #2168 ; 0x878 +100242b2: 4621 mov r1, r4 +100242b4: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +100242b8: f7fe bb80 b.w 100229bc +100242bc: 2000 movs r0, #0 +100242be: bd70 pop {r4, r5, r6, pc} + +100242c0 : +100242c0: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +100242c4: 4680 mov r8, r0 +100242c6: 2020 movs r0, #32 +100242c8: 460e mov r6, r1 +100242ca: 4617 mov r7, r2 +100242cc: 4699 mov r9, r3 +100242ce: f7f8 fd4f bl 1001cd70 +100242d2: 4605 mov r5, r0 +100242d4: 2800 cmp r0, #0 +100242d6: d051 beq.n 1002437c +100242d8: 2014 movs r0, #20 +100242da: f7f8 fd49 bl 1001cd70 +100242de: 4604 mov r4, r0 +100242e0: b920 cbnz r0, 100242ec +100242e2: 4628 mov r0, r5 +100242e4: 2120 movs r1, #32 +100242e6: f7f8 fd59 bl 1001cd9c +100242ea: e047 b.n 1002437c +100242ec: 2214 movs r2, #20 +100242ee: 2100 movs r1, #0 +100242f0: f7f8 fd6e bl 1001cdd0 +100242f4: 6833 ldr r3, [r6, #0] +100242f6: 2201 movs r2, #1 +100242f8: 2b02 cmp r3, #2 +100242fa: bf0c ite eq +100242fc: 6df3 ldreq r3, [r6, #92] ; 0x5c +100242fe: 6873 ldrne r3, [r6, #4] +10024300: 7067 strb r7, [r4, #1] +10024302: 7023 strb r3, [r4, #0] +10024304: b2fb uxtb r3, r7 +10024306: fa02 f303 lsl.w r3, r2, r3 +1002430a: f884 9003 strb.w r9, [r4, #3] +1002430e: f898 249c ldrb.w r2, [r8, #1180] ; 0x49c +10024312: 4313 orrs r3, r2 +10024314: f888 349c strb.w r3, [r8, #1180] ; 0x49c +10024318: 7823 ldrb r3, [r4, #0] +1002431a: 3b01 subs r3, #1 +1002431c: 2b04 cmp r3, #4 +1002431e: d82d bhi.n 1002437c +10024320: e8df f003 tbb [pc, r3] +10024324: 112c1103 .word 0x112c1103 +10024328: 09 .byte 0x09 +10024329: 00 .byte 0x00 +1002432a: eb06 1107 add.w r1, r6, r7, lsl #4 +1002432e: 1d20 adds r0, r4, #4 +10024330: 310c adds r1, #12 +10024332: 2205 movs r2, #5 +10024334: e004 b.n 10024340 +10024336: eb06 1107 add.w r1, r6, r7, lsl #4 +1002433a: 1d20 adds r0, r4, #4 +1002433c: 310c adds r1, #12 +1002433e: 220d movs r2, #13 +10024340: f7f8 fd34 bl 1001cdac +10024344: e008 b.n 10024358 +10024346: eb06 1107 add.w r1, r6, r7, lsl #4 +1002434a: 1d20 adds r0, r4, #4 +1002434c: 3164 adds r1, #100 ; 0x64 +1002434e: 2210 movs r2, #16 +10024350: f7f8 fd2c bl 1001cdac +10024354: 2301 movs r3, #1 +10024356: 70a3 strb r3, [r4, #2] +10024358: 2314 movs r3, #20 +1002435a: 80ab strh r3, [r5, #4] +1002435c: 60eb str r3, [r5, #12] +1002435e: 2300 movs r3, #0 +10024360: f105 0018 add.w r0, r5, #24 +10024364: 60ac str r4, [r5, #8] +10024366: 612b str r3, [r5, #16] +10024368: 616b str r3, [r5, #20] +1002436a: f7f8 fd39 bl 1001cde0 +1002436e: f608 0078 addw r0, r8, #2168 ; 0x878 +10024372: 4629 mov r1, r5 +10024374: e8bd 43f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10024378: f7fe bb20 b.w 100229bc +1002437c: 2000 movs r0, #0 +1002437e: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +10024382 : +10024382: b5f0 push {r4, r5, r6, r7, lr} +10024384: 9d05 ldr r5, [sp, #20] +10024386: 240c movs r4, #12 +10024388: 2000 movs r0, #0 +1002438a: 429c cmp r4, r3 +1002438c: d22b bcs.n 100243e6 +1002438e: 5d08 ldrb r0, [r1, r4] +10024390: 28dd cmp r0, #221 ; 0xdd +10024392: eb01 0004 add.w r0, r1, r4 +10024396: d121 bne.n 100243dc +10024398: 7886 ldrb r6, [r0, #2] +1002439a: b9fe cbnz r6, 100243dc +1002439c: 78c6 ldrb r6, [r0, #3] +1002439e: 2e50 cmp r6, #80 ; 0x50 +100243a0: d11c bne.n 100243dc +100243a2: 7906 ldrb r6, [r0, #4] +100243a4: 2ef2 cmp r6, #242 ; 0xf2 +100243a6: d119 bne.n 100243dc +100243a8: 1d66 adds r6, r4, #5 +100243aa: 5d8f ldrb r7, [r1, r6] +100243ac: 2f02 cmp r7, #2 +100243ae: d115 bne.n 100243dc +100243b0: 429e cmp r6, r3 +100243b2: d213 bcs.n 100243dc +100243b4: 4623 mov r3, r4 +100243b6: f103 0709 add.w r7, r3, #9 +100243ba: 1aee subs r6, r5, r3 +100243bc: 42bc cmp r4, r7 +100243be: eb06 0004 add.w r0, r6, r4 +100243c2: d204 bcs.n 100243ce +100243c4: 5d08 ldrb r0, [r1, r4] +100243c6: 4416 add r6, r2 +100243c8: 5530 strb r0, [r6, r4] +100243ca: 3401 adds r4, #1 +100243cc: e7f3 b.n 100243b6 +100243ce: 4415 add r5, r2 +100243d0: 2307 movs r3, #7 +100243d2: 706b strb r3, [r5, #1] +100243d4: 2300 movs r3, #0 +100243d6: 71ab strb r3, [r5, #6] +100243d8: 722b strb r3, [r5, #8] +100243da: bdf0 pop {r4, r5, r6, r7, pc} +100243dc: 7840 ldrb r0, [r0, #1] +100243de: 3002 adds r0, #2 +100243e0: 4404 add r4, r0 +100243e2: 4628 mov r0, r5 +100243e4: e7d1 b.n 1002438a +100243e6: bdf0 pop {r4, r5, r6, r7, pc} + +100243e8 : +100243e8: b5f8 push {r3, r4, r5, r6, r7, lr} +100243ea: f8d0 7fdc ldr.w r7, [r0, #4060] ; 0xfdc +100243ee: 4604 mov r4, r0 +100243f0: 4616 mov r6, r2 +100243f2: 4610 mov r0, r2 +100243f4: 220c movs r2, #12 +100243f6: f7f8 fcd9 bl 1001cdac +100243fa: 1efb subs r3, r7, #3 +100243fc: 2b02 cmp r3, #2 +100243fe: f1a7 0706 sub.w r7, r7, #6 +10024402: 6923 ldr r3, [r4, #16] +10024404: bf34 ite cc +10024406: 25dd movcc r5, #221 ; 0xdd +10024408: 2500 movcs r5, #0 +1002440a: 2f01 cmp r7, #1 +1002440c: bf98 it ls +1002440e: 2530 movls r5, #48 ; 0x30 +10024410: 05db lsls r3, r3, #23 +10024412: d50b bpl.n 1002442c +10024414: f106 000c add.w r0, r6, #12 +10024418: f604 51c8 addw r1, r4, #3528 ; 0xdc8 +1002441c: f8d4 2fc8 ldr.w r2, [r4, #4040] ; 0xfc8 +10024420: f7f8 fcc4 bl 1001cdac +10024424: f8d4 0fc8 ldr.w r0, [r4, #4040] ; 0xfc8 +10024428: 300c adds r0, #12 +1002442a: bdf8 pop {r3, r4, r5, r6, r7, pc} +1002442c: 2ddd cmp r5, #221 ; 0xdd +1002442e: d001 beq.n 10024434 +10024430: 2d30 cmp r5, #48 ; 0x30 +10024432: d10d bne.n 10024450 +10024434: f241 0701 movw r7, #4097 ; 0x1001 +10024438: 5de2 ldrb r2, [r4, r7] +1002443a: f106 000c add.w r0, r6, #12 +1002443e: f504 5180 add.w r1, r4, #4096 ; 0x1000 +10024442: 3202 adds r2, #2 +10024444: f7f8 fcb2 bl 1001cdac +10024448: 7335 strb r5, [r6, #12] +1002444a: 5de0 ldrb r0, [r4, r7] +1002444c: 300e adds r0, #14 +1002444e: bdf8 pop {r3, r4, r5, r6, r7, pc} +10024450: 200c movs r0, #12 +10024452: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10024454 : +10024454: 2300 movs r3, #0 +10024456: f8a0 3452 strh.w r3, [r0, #1106] ; 0x452 +1002445a: f8a0 3450 strh.w r3, [r0, #1104] ; 0x450 +1002445e: f8c0 3458 str.w r3, [r0, #1112] ; 0x458 +10024462: 4770 bx lr + +10024464 : +10024464: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10024468: 4616 mov r6, r2 +1002446a: 4a35 ldr r2, [pc, #212] ; (10024540 ) +1002446c: 4604 mov r4, r0 +1002446e: 6810 ldr r0, [r2, #0] +10024470: b08f sub sp, #60 ; 0x3c +10024472: 9005 str r0, [sp, #20] +10024474: 8890 ldrh r0, [r2, #4] +10024476: 7992 ldrb r2, [r2, #6] +10024478: f101 080c add.w r8, r1, #12 +1002447c: f88d 201a strb.w r2, [sp, #26] +10024480: f1a3 070c sub.w r7, r3, #12 +10024484: 2200 movs r2, #0 +10024486: f8ad 0018 strh.w r0, [sp, #24] +1002448a: f8c4 2454 str.w r2, [r4, #1108] ; 0x454 +1002448e: 4640 mov r0, r8 +10024490: 212d movs r1, #45 ; 0x2d +10024492: aa03 add r2, sp, #12 +10024494: 463b mov r3, r7 +10024496: 9d16 ldr r5, [sp, #88] ; 0x58 +10024498: f01f fa2a bl 100438f0 <__rtw_get_ie_veneer> +1002449c: 2800 cmp r0, #0 +1002449e: d04a beq.n 10024536 +100244a0: 9b03 ldr r3, [sp, #12] +100244a2: 2b00 cmp r3, #0 +100244a4: d047 beq.n 10024536 +100244a6: f8d4 344c ldr.w r3, [r4, #1100] ; 0x44c +100244aa: b953 cbnz r3, 100244c2 +100244ac: 6828 ldr r0, [r5, #0] +100244ae: ab05 add r3, sp, #20 +100244b0: 9500 str r5, [sp, #0] +100244b2: 4430 add r0, r6 +100244b4: 21dd movs r1, #221 ; 0xdd +100244b6: 2207 movs r2, #7 +100244b8: f01f f94a bl 10043750 <__rtw_set_ie_veneer> +100244bc: 2301 movs r3, #1 +100244be: f8c4 344c str.w r3, [r4, #1100] ; 0x44c +100244c2: a807 add r0, sp, #28 +100244c4: 2100 movs r1, #0 +100244c6: 221a movs r2, #26 +100244c8: f8d5 9000 ldr.w r9, [r5] +100244cc: f7f8 fc80 bl 1001cdd0 +100244d0: f241 0362 movw r3, #4194 ; 0x1062 +100244d4: 210d movs r1, #13 +100244d6: aa04 add r2, sp, #16 +100244d8: 4620 mov r0, r4 +100244da: f8ad 301c strh.w r3, [sp, #28] +100244de: f013 fa3b bl 10037958 +100244e2: f8d4 2c7c ldr.w r2, [r4, #3196] ; 0xc7c +100244e6: 9b04 ldr r3, [sp, #16] +100244e8: 2a04 cmp r2, #4 +100244ea: f003 0303 and.w r3, r3, #3 +100244ee: f88d 301e strb.w r3, [sp, #30] +100244f2: bf04 itt eq +100244f4: f043 031c orreq.w r3, r3, #28 +100244f8: f88d 301e strbeq.w r3, [sp, #30] +100244fc: 212d movs r1, #45 ; 0x2d +100244fe: 221a movs r2, #26 +10024500: ab07 add r3, sp, #28 +10024502: 9500 str r5, [sp, #0] +10024504: eb06 0009 add.w r0, r6, r9 +10024508: f01f f922 bl 10043750 <__rtw_set_ie_veneer> +1002450c: 2301 movs r3, #1 +1002450e: f8c4 3454 str.w r3, [r4, #1108] ; 0x454 +10024512: 4640 mov r0, r8 +10024514: 463b mov r3, r7 +10024516: 213d movs r1, #61 ; 0x3d +10024518: aa03 add r2, sp, #12 +1002451a: f01f f9e9 bl 100438f0 <__rtw_get_ie_veneer> +1002451e: 4603 mov r3, r0 +10024520: b148 cbz r0, 10024536 +10024522: 9a03 ldr r2, [sp, #12] +10024524: 2a16 cmp r2, #22 +10024526: d106 bne.n 10024536 +10024528: 6828 ldr r0, [r5, #0] +1002452a: 213d movs r1, #61 ; 0x3d +1002452c: 9500 str r5, [sp, #0] +1002452e: 4430 add r0, r6 +10024530: 3302 adds r3, #2 +10024532: f01f f90d bl 10043750 <__rtw_set_ie_veneer> +10024536: f8d4 0454 ldr.w r0, [r4, #1108] ; 0x454 +1002453a: b00f add sp, #60 ; 0x3c +1002453c: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10024540: 1004a584 .word 0x1004a584 + +10024544 : +10024544: f8d0 3454 ldr.w r3, [r0, #1108] ; 0x454 +10024548: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002454c: 4604 mov r4, r0 +1002454e: 2b00 cmp r3, #0 +10024550: d03a beq.n 100245c8 +10024552: f890 36ae ldrb.w r3, [r0, #1710] ; 0x6ae +10024556: b3bb cbz r3, 100245c8 +10024558: f890 36ad ldrb.w r3, [r0, #1709] ; 0x6ad +1002455c: b3a3 cbz r3, 100245c8 +1002455e: f8d0 3458 ldr.w r3, [r0, #1112] ; 0x458 +10024562: f500 5597 add.w r5, r0, #4832 ; 0x12e0 +10024566: 3518 adds r5, #24 +10024568: b93b cbnz r3, 1002457a +1002456a: f895 3045 ldrb.w r3, [r5, #69] ; 0x45 +1002456e: 2b01 cmp r3, #1 +10024570: d103 bne.n 1002457a +10024572: 2301 movs r3, #1 +10024574: f8c4 3458 str.w r3, [r4, #1112] ; 0x458 +10024578: e003 b.n 10024582 +1002457a: f895 3045 ldrb.w r3, [r5, #69] ; 0x45 +1002457e: 2b02 cmp r3, #2 +10024580: d0f7 beq.n 10024572 +10024582: ad02 add r5, sp, #8 +10024584: f04f 0800 mov.w r8, #0 +10024588: f845 8d04 str.w r8, [r5, #-4]! +1002458c: f101 070c add.w r7, r1, #12 +10024590: f1a2 060c sub.w r6, r2, #12 +10024594: 212d movs r1, #45 ; 0x2d +10024596: 462a mov r2, r5 +10024598: 4633 mov r3, r6 +1002459a: 4638 mov r0, r7 +1002459c: f01f f9a8 bl 100438f0 <__rtw_get_ie_veneer> +100245a0: 4633 mov r3, r6 +100245a2: 4638 mov r0, r7 +100245a4: 213d movs r1, #61 ; 0x3d +100245a6: 462a mov r2, r5 +100245a8: f8cd 8004 str.w r8, [sp, #4] +100245ac: f01f f9a0 bl 100438f0 <__rtw_get_ie_veneer> +100245b0: f8b4 36d2 ldrh.w r3, [r4, #1746] ; 0x6d2 +100245b4: f3c3 0381 ubfx r3, r3, #2, #2 +100245b8: f884 36b2 strb.w r3, [r4, #1714] ; 0x6b2 +100245bc: f894 36f4 ldrb.w r3, [r4, #1780] ; 0x6f4 +100245c0: f003 0303 and.w r3, r3, #3 +100245c4: f884 36af strb.w r3, [r4, #1711] ; 0x6af +100245c8: b002 add sp, #8 +100245ca: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +100245ce : +100245ce: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100245d2: f8d1 3094 ldr.w r3, [r1, #148] ; 0x94 +100245d6: 4604 mov r4, r0 +100245d8: 337c adds r3, #124 ; 0x7c +100245da: f5b3 7f5f cmp.w r3, #892 ; 0x37c +100245de: 460e mov r6, r1 +100245e0: 61cb str r3, [r1, #28] +100245e2: f100 090c add.w r9, r0, #12 +100245e6: d827 bhi.n 10024638 +100245e8: 4648 mov r0, r9 +100245ea: a901 add r1, sp, #4 +100245ec: f7f8 fc84 bl 1001cef8 +100245f0: 69b3 ldr r3, [r6, #24] +100245f2: 2b00 cmp r3, #0 +100245f4: dd09 ble.n 1002460a +100245f6: f104 0734 add.w r7, r4, #52 ; 0x34 +100245fa: 4638 mov r0, r7 +100245fc: a901 add r1, sp, #4 +100245fe: f7f8 fc7b bl 1001cef8 +10024602: 6923 ldr r3, [r4, #16] +10024604: 061d lsls r5, r3, #24 +10024606: d41e bmi.n 10024646 +10024608: e0ee b.n 100247e8 +1002460a: 3304 adds r3, #4 +1002460c: f204 452c addw r5, r4, #1068 ; 0x42c +10024610: d10a bne.n 10024628 +10024612: 4620 mov r0, r4 +10024614: f013 fb91 bl 10037d3a +10024618: 4628 mov r0, r5 +1002461a: 2101 movs r1, #1 +1002461c: f017 f974 bl 1003b908 +10024620: 6923 ldr r3, [r4, #16] +10024622: 061a lsls r2, r3, #24 +10024624: d405 bmi.n 10024632 +10024626: e007 b.n 10024638 +10024628: 4628 mov r0, r5 +1002462a: 2101 movs r1, #1 +1002462c: f017 f96c bl 1003b908 +10024630: 6923 ldr r3, [r4, #16] +10024632: f023 0380 bic.w r3, r3, #128 ; 0x80 +10024636: 6123 str r3, [r4, #16] +10024638: 4648 mov r0, r9 +1002463a: a901 add r1, sp, #4 +1002463c: f7f8 fc64 bl 1001cf08 +10024640: b003 add sp, #12 +10024642: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10024646: f106 0820 add.w r8, r6, #32 +1002464a: f104 002c add.w r0, r4, #44 ; 0x2c +1002464e: 4641 mov r1, r8 +10024650: f7ff f90a bl 10023868 <_rtw_find_network> +10024654: 6923 ldr r3, [r4, #16] +10024656: 4605 mov r5, r0 +10024658: 071b lsls r3, r3, #28 +1002465a: f100 80c1 bmi.w 100247e0 +1002465e: 2d00 cmp r5, #0 +10024660: f000 80c2 beq.w 100247e8 +10024664: f104 0098 add.w r0, r4, #152 ; 0x98 +10024668: f105 011c add.w r1, r5, #28 +1002466c: 69ea ldr r2, [r5, #28] +1002466e: f7f8 fb9d bl 1001cdac +10024672: f8d5 3094 ldr.w r3, [r5, #148] ; 0x94 +10024676: f504 7a8a add.w sl, r4, #276 ; 0x114 +1002467a: f44f 7240 mov.w r2, #768 ; 0x300 +1002467e: f8c4 3110 str.w r3, [r4, #272] ; 0x110 +10024682: 4650 mov r0, sl +10024684: f105 0198 add.w r1, r5, #152 ; 0x98 +10024688: f7f8 fb90 bl 1001cdac +1002468c: 69b3 ldr r3, [r6, #24] +1002468e: f604 3b8c addw fp, r4, #2956 ; 0xb8c +10024692: f8c4 3090 str.w r3, [r4, #144] ; 0x90 +10024696: 4658 mov r0, fp +10024698: f8d4 1b98 ldr.w r1, [r4, #2968] ; 0xb98 +1002469c: f017 f934 bl 1003b908 +100246a0: f895 3090 ldrb.w r3, [r5, #144] ; 0x90 +100246a4: 4658 mov r0, fp +100246a6: f884 3b76 strb.w r3, [r4, #2934] ; 0xb76 +100246aa: f895 3091 ldrb.w r3, [r5, #145] ; 0x91 +100246ae: f8d4 1b98 ldr.w r1, [r4, #2968] ; 0xb98 +100246b2: f884 3b77 strb.w r3, [r4, #2935] ; 0xb77 +100246b6: f895 3090 ldrb.w r3, [r5, #144] ; 0x90 +100246ba: 3b64 subs r3, #100 ; 0x64 +100246bc: f884 3b74 strb.w r3, [r4, #2932] ; 0xb74 +100246c0: f017 f922 bl 1003b908 +100246c4: 6ff3 ldr r3, [r6, #124] ; 0x7c +100246c6: b11b cbz r3, 100246d0 +100246c8: 2b01 cmp r3, #1 +100246ca: d103 bne.n 100246d4 +100246cc: 2308 movs r3, #8 +100246ce: e002 b.n 100246d6 +100246d0: 2320 movs r3, #32 +100246d2: e000 b.n 100246d6 +100246d4: 2300 movs r3, #0 +100246d6: 6123 str r3, [r4, #16] +100246d8: 4620 mov r0, r4 +100246da: f504 7190 add.w r1, r4, #288 ; 0x120 +100246de: f8d4 2110 ldr.w r2, [r4, #272] ; 0x110 +100246e2: f00a fc3f bl 1002ef64 +100246e6: 4620 mov r0, r4 +100246e8: 4651 mov r1, sl +100246ea: f8d4 2110 ldr.w r2, [r4, #272] ; 0x110 +100246ee: f7ff ff29 bl 10024544 +100246f2: 4620 mov r0, r4 +100246f4: f104 01fc add.w r1, r4, #252 ; 0xfc +100246f8: f009 fac7 bl 1002dc8a +100246fc: 6923 ldr r3, [r4, #16] +100246fe: 0718 lsls r0, r3, #28 +10024700: d55e bpl.n 100247c0 +10024702: f504 6a3d add.w sl, r4, #3024 ; 0xbd0 +10024706: 4650 mov r0, sl +10024708: 4641 mov r1, r8 +1002470a: f009 f953 bl 1002d9b4 +1002470e: 4605 mov r5, r0 +10024710: b930 cbnz r0, 10024720 +10024712: 4650 mov r0, sl +10024714: 4641 mov r1, r8 +10024716: f009 f817 bl 1002d748 +1002471a: 4605 mov r5, r0 +1002471c: 2800 cmp r0, #0 +1002471e: d063 beq.n 100247e8 +10024720: 69b3 ldr r3, [r6, #24] +10024722: f8c5 30fc str.w r3, [r5, #252] ; 0xfc +10024726: f241 73b1 movw r3, #6065 ; 0x17b1 +1002472a: 5ce3 ldrb r3, [r4, r3] +1002472c: b103 cbz r3, 10024730 +1002472e: 2302 movs r3, #2 +10024730: f8c5 3100 str.w r3, [r5, #256] ; 0x100 +10024734: 4620 mov r0, r4 +10024736: 2301 movs r3, #1 +10024738: 2100 movs r1, #0 +1002473a: 462a mov r2, r5 +1002473c: f013 f915 bl 1003796a +10024740: f8d4 3c78 ldr.w r3, [r4, #3192] ; 0xc78 +10024744: 2b02 cmp r3, #2 +10024746: d12e bne.n 100247a6 +10024748: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +1002474c: 2600 movs r6, #0 +1002474e: f04f 0801 mov.w r8, #1 +10024752: f884 6fcc strb.w r6, [r4, #4044] ; 0xfcc +10024756: f884 6fcd strb.w r6, [r4, #4045] ; 0xfcd +1002475a: f884 6fcf strb.w r6, [r4, #4047] ; 0xfcf +1002475e: f505 709c add.w r0, r5, #312 ; 0x138 +10024762: f8c5 3114 str.w r3, [r5, #276] ; 0x114 +10024766: 4631 mov r1, r6 +10024768: 2210 movs r2, #16 +1002476a: f8c5 8110 str.w r8, [r5, #272] ; 0x110 +1002476e: f7f8 fb2f bl 1001cdd0 +10024772: f505 7094 add.w r0, r5, #296 ; 0x128 +10024776: 4631 mov r1, r6 +10024778: 2210 movs r2, #16 +1002477a: f7f8 fb29 bl 1001cdd0 +1002477e: f505 708c add.w r0, r5, #280 ; 0x118 +10024782: 4631 mov r1, r6 +10024784: 2210 movs r2, #16 +10024786: f7f8 fb23 bl 1001cdd0 +1002478a: f505 70a4 add.w r0, r5, #328 ; 0x148 +1002478e: 4631 mov r1, r6 +10024790: 2208 movs r2, #8 +10024792: f7f8 fb1d bl 1001cdd0 +10024796: f505 70a8 add.w r0, r5, #336 ; 0x150 +1002479a: 4631 mov r1, r6 +1002479c: 2208 movs r2, #8 +1002479e: f7f8 fb17 bl 1001cdd0 +100247a2: f885 8148 strb.w r8, [r5, #328] ; 0x148 +100247a6: f8d4 3fc8 ldr.w r3, [r4, #4040] ; 0xfc8 +100247aa: b12b cbz r3, 100247b8 +100247ac: 2301 movs r3, #1 +100247ae: f8c5 3110 str.w r3, [r5, #272] ; 0x110 +100247b2: 2300 movs r3, #0 +100247b4: f8c4 3fc8 str.w r3, [r4, #4040] ; 0xfc8 +100247b8: 4620 mov r0, r4 +100247ba: 4629 mov r1, r5 +100247bc: f003 fb30 bl 10027e20 +100247c0: 6923 ldr r3, [r4, #16] +100247c2: 0719 lsls r1, r3, #28 +100247c4: d415 bmi.n 100247f2 +100247c6: f204 402c addw r0, r4, #1068 ; 0x42c +100247ca: f017 f89f bl 1003b90c +100247ce: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +100247d2: b94b cbnz r3, 100247e8 +100247d4: f894 286d ldrb.w r2, [r4, #2157] ; 0x86d +100247d8: b132 cbz r2, 100247e8 +100247da: f884 37e2 strb.w r3, [r4, #2018] ; 0x7e2 +100247de: e003 b.n 100247e8 +100247e0: b110 cbz r0, 100247e8 +100247e2: 2301 movs r3, #1 +100247e4: 60eb str r3, [r5, #12] +100247e6: e73d b.n 10024664 +100247e8: 4638 mov r0, r7 +100247ea: a901 add r1, sp, #4 +100247ec: f7f8 fb8c bl 1001cf08 +100247f0: e722 b.n 10024638 +100247f2: 4620 mov r0, r4 +100247f4: f7ff fa99 bl 10023d2a +100247f8: e7e5 b.n 100247c6 + +100247fa : +100247fa: 6903 ldr r3, [r0, #16] +100247fc: f013 0f70 tst.w r3, #112 ; 0x70 +10024800: d006 beq.n 10024810 +10024802: f8d0 0c14 ldr.w r0, [r0, #3092] ; 0xc14 +10024806: 2802 cmp r0, #2 +10024808: bfd4 ite le +1002480a: 2000 movle r0, #0 +1002480c: 2001 movgt r0, #1 +1002480e: 4770 bx lr +10024810: f003 0001 and.w r0, r3, #1 +10024814: 4770 bx lr + +10024816 : +10024816: b1c8 cbz r0, 1002484c +10024818: f241 73a8 movw r3, #6056 ; 0x17a8 +1002481c: 58c3 ldr r3, [r0, r3] +1002481e: b193 cbz r3, 10024846 +10024820: f241 62f8 movw r2, #5880 ; 0x16f8 +10024824: 5898 ldr r0, [r3, r2] +10024826: b980 cbnz r0, 1002484a +10024828: f241 62fc movw r2, #5884 ; 0x16fc +1002482c: 589a ldr r2, [r3, r2] +1002482e: b96a cbnz r2, 1002484c +10024830: f241 7284 movw r2, #6020 ; 0x1784 +10024834: 5898 ldr r0, [r3, r2] +10024836: b148 cbz r0, 1002484c +10024838: f241 7211 movw r2, #5905 ; 0x1711 +1002483c: 5c98 ldrb r0, [r3, r2] +1002483e: 3000 adds r0, #0 +10024840: bf18 it ne +10024842: 2001 movne r0, #1 +10024844: 4770 bx lr +10024846: 4618 mov r0, r3 +10024848: 4770 bx lr +1002484a: 2000 movs r0, #0 +1002484c: 4770 bx lr + +1002484e : +1002484e: b160 cbz r0, 1002486a +10024850: f241 73a8 movw r3, #6056 ; 0x17a8 +10024854: 58c0 ldr r0, [r0, r3] +10024856: b140 cbz r0, 1002486a +10024858: 6903 ldr r3, [r0, #16] +1002485a: b901 cbnz r1, 1002485e +1002485c: b123 cbz r3, 10024868 +1002485e: 4219 tst r1, r3 +10024860: bf0c ite eq +10024862: 2000 moveq r0, #0 +10024864: 2001 movne r0, #1 +10024866: 4770 bx lr +10024868: 2001 movs r0, #1 +1002486a: 4770 bx lr + +1002486c : +1002486c: 8803 ldrh r3, [r0, #0] +1002486e: f413 7f80 tst.w r3, #256 ; 0x100 +10024872: bf0c ite eq +10024874: 2200 moveq r2, #0 +10024876: 2202 movne r2, #2 +10024878: f3c3 2340 ubfx r3, r3, #9, #1 +1002487c: 4313 orrs r3, r2 +1002487e: 2b01 cmp r3, #1 +10024880: d002 beq.n 10024888 +10024882: d301 bcc.n 10024888 +10024884: 3010 adds r0, #16 +10024886: 4770 bx lr +10024888: 3004 adds r0, #4 +1002488a: 4770 bx lr + +1002488c : +1002488c: 8802 ldrh r2, [r0, #0] +1002488e: f412 7f80 tst.w r2, #256 ; 0x100 +10024892: bf0c ite eq +10024894: 2300 moveq r3, #0 +10024896: 2302 movne r3, #2 +10024898: f3c2 2240 ubfx r2, r2, #9, #1 +1002489c: 4313 orrs r3, r2 +1002489e: 2b01 cmp r3, #1 +100248a0: d003 beq.n 100248aa +100248a2: d304 bcc.n 100248ae +100248a4: 2b02 cmp r3, #2 +100248a6: d002 beq.n 100248ae +100248a8: e003 b.n 100248b2 +100248aa: 3010 adds r0, #16 +100248ac: 4770 bx lr +100248ae: 300a adds r0, #10 +100248b0: 4770 bx lr +100248b2: 3018 adds r0, #24 +100248b4: 4770 bx lr + +100248b6 : +100248b6: b508 push {r3, lr} +100248b8: 6f8b ldr r3, [r1, #120] ; 0x78 +100248ba: 7e1b ldrb r3, [r3, #24] +100248bc: 2b03 cmp r3, #3 +100248be: d101 bne.n 100248c4 +100248c0: f001 fe60 bl 10026584 +100248c4: 2001 movs r0, #1 +100248c6: bd08 pop {r3, pc} + +100248c8 : +100248c8: 2001 movs r0, #1 +100248ca: 4770 bx lr + +100248cc <_mgt_dispatcher.isra.2>: +100248cc: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +100248ce: 4b11 ldr r3, [pc, #68] ; (10024914 <_mgt_dispatcher.isra.2+0x48>) +100248d0: 4604 mov r4, r0 +100248d2: 6818 ldr r0, [r3, #0] +100248d4: 889b ldrh r3, [r3, #4] +100248d6: 460e mov r6, r1 +100248d8: f8ad 3004 strh.w r3, [sp, #4] +100248dc: 680b ldr r3, [r1, #0] +100248de: 4615 mov r5, r2 +100248e0: 9000 str r0, [sp, #0] +100248e2: 6f97 ldr r7, [r2, #120] ; 0x78 +100248e4: b1a3 cbz r3, 10024910 <_mgt_dispatcher.isra.2+0x44> +100248e6: 3704 adds r7, #4 +100248e8: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +100248ec: 4638 mov r0, r7 +100248ee: 3109 adds r1, #9 +100248f0: 2206 movs r2, #6 +100248f2: f7f8 fa63 bl 1001cdbc +100248f6: b120 cbz r0, 10024902 <_mgt_dispatcher.isra.2+0x36> +100248f8: 6833 ldr r3, [r6, #0] +100248fa: 4620 mov r0, r4 +100248fc: 4629 mov r1, r5 +100248fe: 4798 blx r3 +10024900: e006 b.n 10024910 <_mgt_dispatcher.isra.2+0x44> +10024902: 4638 mov r0, r7 +10024904: 4669 mov r1, sp +10024906: 2206 movs r2, #6 +10024908: f7f8 fa58 bl 1001cdbc +1002490c: 2800 cmp r0, #0 +1002490e: d1f3 bne.n 100248f8 <_mgt_dispatcher.isra.2+0x2c> +10024910: b003 add sp, #12 +10024912: bdf0 pop {r4, r5, r6, r7, pc} +10024914: 1004a63b .word 0x1004a63b + +10024918 : +10024918: b510 push {r4, lr} +1002491a: 2300 movs r3, #0 +1002491c: 240c movs r4, #12 +1002491e: 435c muls r4, r3 +10024920: 5d04 ldrb r4, [r0, r4] +10024922: b134 cbz r4, 10024932 +10024924: 42a1 cmp r1, r4 +10024926: d102 bne.n 1002492e +10024928: b12a cbz r2, 10024936 +1002492a: 6013 str r3, [r2, #0] +1002492c: e003 b.n 10024936 +1002492e: 3301 adds r3, #1 +10024930: e7f4 b.n 1002491c +10024932: 4620 mov r0, r4 +10024934: bd10 pop {r4, pc} +10024936: 2001 movs r0, #1 +10024938: bd10 pop {r4, pc} + +1002493a : +1002493a: b508 push {r3, lr} +1002493c: f890 14f6 ldrb.w r1, [r0, #1270] ; 0x4f6 +10024940: f890 24f8 ldrb.w r2, [r0, #1272] ; 0x4f8 +10024944: f890 34f7 ldrb.w r3, [r0, #1271] ; 0x4f7 +10024948: f009 fa62 bl 1002de10 +1002494c: 2001 movs r0, #1 +1002494e: bd08 pop {r3, pc} + +10024950 : +10024950: b5f8 push {r3, r4, r5, r6, r7, lr} +10024952: f241 6318 movw r3, #5656 ; 0x1618 +10024956: 460c mov r4, r1 +10024958: 58c6 ldr r6, [r0, r3] +1002495a: 4607 mov r7, r0 +1002495c: 4615 mov r5, r2 +1002495e: 4610 mov r0, r2 +10024960: 2100 movs r1, #0 +10024962: 22a8 movs r2, #168 ; 0xa8 +10024964: f7f8 fa34 bl 1001cdd0 +10024968: 2c58 cmp r4, #88 ; 0x58 +1002496a: d903 bls.n 10024974 +1002496c: 2c7f cmp r4, #127 ; 0x7f +1002496e: d001 beq.n 10024974 +10024970: 2000 movs r0, #0 +10024972: bdf8 pop {r3, r4, r5, r6, r7, pc} +10024974: f241 3325 movw r3, #4901 ; 0x1325 +10024978: 5cf8 ldrb r0, [r7, r3] +1002497a: 2303 movs r3, #3 +1002497c: f886 3045 strb.w r3, [r6, #69] ; 0x45 +10024980: f000 000b and.w r0, r0, #11 +10024984: 2300 movs r3, #0 +10024986: 4916 ldr r1, [pc, #88] ; (100249e0 ) +10024988: eb03 0243 add.w r2, r3, r3, lsl #1 +1002498c: 5c57 ldrb r7, [r2, r1] +1002498e: 42a7 cmp r7, r4 +10024990: d105 bne.n 1002499e +10024992: 440a add r2, r1 +10024994: 7853 ldrb r3, [r2, #1] +10024996: 7892 ldrb r2, [r2, #2] +10024998: f886 2045 strb.w r2, [r6, #69] ; 0x45 +1002499c: e003 b.n 100249a6 +1002499e: 3301 adds r3, #1 +100249a0: 2b08 cmp r3, #8 +100249a2: d1f0 bne.n 10024986 +100249a4: 2303 movs r3, #3 +100249a6: 2800 cmp r0, #0 +100249a8: d0e2 beq.n 10024970 +100249aa: 4e0e ldr r6, [pc, #56] ; (100249e4 ) +100249ac: ebc3 1203 rsb r2, r3, r3, lsl #4 +100249b0: 4416 add r6, r2 +100249b2: 2100 movs r1, #0 +100249b4: 7bb0 ldrb r0, [r6, #14] +100249b6: 460c mov r4, r1 +100249b8: b2e2 uxtb r2, r4 +100249ba: 4282 cmp r2, r0 +100249bc: d20e bcs.n 100249dc +100249be: 5d37 ldrb r7, [r6, r4] +100249c0: 186a adds r2, r5, r1 +100249c2: 546f strb r7, [r5, r1] +100249c4: b10b cbz r3, 100249ca +100249c6: 2b07 cmp r3, #7 +100249c8: d103 bne.n 100249d2 +100249ca: 2f0b cmp r7, #11 +100249cc: d901 bls.n 100249d2 +100249ce: 2700 movs r7, #0 +100249d0: e000 b.n 100249d4 +100249d2: 2701 movs r7, #1 +100249d4: 6057 str r7, [r2, #4] +100249d6: 3401 adds r4, #1 +100249d8: 310c adds r1, #12 +100249da: e7ed b.n 100249b8 +100249dc: bdf8 pop {r3, r4, r5, r6, r7, pc} +100249de: bf00 nop +100249e0: 1004a71a .word 0x1004a71a +100249e4: 1004a64e .word 0x1004a64e + +100249e8 : +100249e8: 6803 ldr r3, [r0, #0] +100249ea: b510 push {r4, lr} +100249ec: 4604 mov r4, r0 +100249ee: b173 cbz r3, 10024a0e +100249f0: f241 62f8 movw r2, #5880 ; 0x16f8 +100249f4: 589b ldr r3, [r3, r2] +100249f6: 2b01 cmp r3, #1 +100249f8: d109 bne.n 10024a0e +100249fa: f500 7030 add.w r0, r0, #704 ; 0x2c0 +100249fe: f016 ff8a bl 1003b916 +10024a02: f504 7033 add.w r0, r4, #716 ; 0x2cc +10024a06: e8bd 4010 ldmia.w sp!, {r4, lr} +10024a0a: f016 bf84 b.w 1003b916 +10024a0e: bd10 pop {r4, pc} + +10024a10 : +10024a10: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10024a12: 4b1d ldr r3, [pc, #116] ; (10024a88 ) +10024a14: 4604 mov r4, r0 +10024a16: 6818 ldr r0, [r3, #0] +10024a18: 889b ldrh r3, [r3, #4] +10024a1a: 6f8e ldr r6, [r1, #120] ; 0x78 +10024a1c: 9000 str r0, [sp, #0] +10024a1e: f8ad 3004 strh.w r3, [sp, #4] +10024a22: 8833 ldrh r3, [r6, #0] +10024a24: 460d mov r5, r1 +10024a26: f003 030c and.w r3, r3, #12 +10024a2a: bb5b cbnz r3, 10024a84 +10024a2c: 1d37 adds r7, r6, #4 +10024a2e: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10024a32: 4638 mov r0, r7 +10024a34: 3109 adds r1, #9 +10024a36: 2206 movs r2, #6 +10024a38: f7f8 f9c0 bl 1001cdbc +10024a3c: b130 cbz r0, 10024a4c +10024a3e: 8833 ldrh r3, [r6, #0] +10024a40: f003 03fc and.w r3, r3, #252 ; 0xfc +10024a44: 091a lsrs r2, r3, #4 +10024a46: 2a0d cmp r2, #13 +10024a48: dc1c bgt.n 10024a84 +10024a4a: e006 b.n 10024a5a +10024a4c: 4638 mov r0, r7 +10024a4e: 4669 mov r1, sp +10024a50: 2206 movs r2, #6 +10024a52: f7f8 f9b3 bl 1001cdbc +10024a56: b1a8 cbz r0, 10024a84 +10024a58: e7f1 b.n 10024a3e +10024a5a: 490c ldr r1, [pc, #48] ; (10024a8c ) +10024a5c: 2b40 cmp r3, #64 ; 0x40 +10024a5e: eb01 02c2 add.w r2, r1, r2, lsl #3 +10024a62: f102 0104 add.w r1, r2, #4 +10024a66: d009 beq.n 10024a7c +10024a68: d908 bls.n 10024a7c +10024a6a: 2bb0 cmp r3, #176 ; 0xb0 +10024a6c: d106 bne.n 10024a7c +10024a6e: 6923 ldr r3, [r4, #16] +10024a70: 06db lsls r3, r3, #27 +10024a72: d501 bpl.n 10024a78 +10024a74: 4b06 ldr r3, [pc, #24] ; (10024a90 ) +10024a76: e000 b.n 10024a7a +10024a78: 4b06 ldr r3, [pc, #24] ; (10024a94 ) +10024a7a: 6053 str r3, [r2, #4] +10024a7c: 4620 mov r0, r4 +10024a7e: 462a mov r2, r5 +10024a80: f7ff ff24 bl 100248cc <_mgt_dispatcher.isra.2> +10024a84: b003 add sp, #12 +10024a86: bdf0 pop {r4, r5, r6, r7, pc} +10024a88: 1004a63b .word 0x1004a63b +10024a8c: 1004d93c .word 0x1004d93c +10024a90: 100257b1 .word 0x100257b1 +10024a94: 10026949 .word 0x10026949 + +10024a98 : +10024a98: b570 push {r4, r5, r6, lr} +10024a9a: 4606 mov r6, r0 +10024a9c: f00a face bl 1002f03c +10024aa0: 4604 mov r4, r0 +10024aa2: b198 cbz r0, 10024acc +10024aa4: 4630 mov r0, r6 +10024aa6: 2100 movs r1, #0 +10024aa8: f00b fa6d bl 1002ff86 +10024aac: 4605 mov r5, r0 +10024aae: b928 cbnz r0, 10024abc +10024ab0: 4630 mov r0, r6 +10024ab2: 4621 mov r1, r4 +10024ab4: f00a faee bl 1002f094 +10024ab8: 4628 mov r0, r5 +10024aba: bd70 pop {r4, r5, r6, pc} +10024abc: 2303 movs r3, #3 +10024abe: 67a3 str r3, [r4, #120] ; 0x78 +10024ac0: 6903 ldr r3, [r0, #16] +10024ac2: f8c4 0084 str.w r0, [r4, #132] ; 0x84 +10024ac6: f8c4 3080 str.w r3, [r4, #128] ; 0x80 +10024aca: 6144 str r4, [r0, #20] +10024acc: 4620 mov r0, r4 +10024ace: bd70 pop {r4, r5, r6, pc} + +10024ad0 : +10024ad0: f880 17c3 strb.w r1, [r0, #1987] ; 0x7c3 +10024ad4: 4770 bx lr + +10024ad6 : +10024ad6: b538 push {r3, r4, r5, lr} +10024ad8: 226c movs r2, #108 ; 0x6c +10024ada: 460c mov r4, r1 +10024adc: 4605 mov r5, r0 +10024ade: 4608 mov r0, r1 +10024ae0: 2100 movs r1, #0 +10024ae2: f7f8 f975 bl 1001cdd0 +10024ae6: 2318 movs r3, #24 +10024ae8: 2207 movs r2, #7 +10024aea: 8163 strh r3, [r4, #10] +10024aec: 2112 movs r1, #18 +10024aee: 2300 movs r3, #0 +10024af0: f884 2039 strb.w r2, [r4, #57] ; 0x39 +10024af4: f884 303b strb.w r3, [r4, #59] ; 0x3b +10024af8: f884 1060 strb.w r1, [r4, #96] ; 0x60 +10024afc: 60e3 str r3, [r4, #12] +10024afe: f895 14f9 ldrb.w r1, [r5, #1273] ; 0x4f9 +10024b02: 7523 strb r3, [r4, #20] +10024b04: 07c9 lsls r1, r1, #31 +10024b06: bf48 it mi +10024b08: 2208 movmi r2, #8 +10024b0a: f884 2058 strb.w r2, [r4, #88] ; 0x58 +10024b0e: 70a3 strb r3, [r4, #2] +10024b10: f884 3056 strb.w r3, [r4, #86] ; 0x56 +10024b14: f884 3057 strb.w r3, [r4, #87] ; 0x57 +10024b18: f884 3059 strb.w r3, [r4, #89] ; 0x59 +10024b1c: f884 305a strb.w r3, [r4, #90] ; 0x5a +10024b20: f884 305b strb.w r3, [r4, #91] ; 0x5b +10024b24: f8b5 34f4 ldrh.w r3, [r5, #1268] ; 0x4f4 +10024b28: 80e3 strh r3, [r4, #6] +10024b2a: 2301 movs r3, #1 +10024b2c: f884 3064 strb.w r3, [r4, #100] ; 0x64 +10024b30: bd38 pop {r3, r4, r5, pc} + +10024b32 : +10024b32: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10024b36: 4606 mov r6, r0 +10024b38: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +10024b3c: 4688 mov r8, r1 +10024b3e: 4615 mov r5, r2 +10024b40: f7ff ffaa bl 10024a98 +10024b44: 4604 mov r4, r0 +10024b46: b1e0 cbz r0, 10024b82 +10024b48: 4630 mov r0, r6 +10024b4a: f104 0108 add.w r1, r4, #8 +10024b4e: f7ff ffc2 bl 10024ad6 +10024b52: 2100 movs r1, #0 +10024b54: f884 106c strb.w r1, [r4, #108] ; 0x6c +10024b58: f8d4 0080 ldr.w r0, [r4, #128] ; 0x80 +10024b5c: 2268 movs r2, #104 ; 0x68 +10024b5e: f7f8 f937 bl 1001cdd0 +10024b62: f8d4 7080 ldr.w r7, [r4, #128] ; 0x80 +10024b66: 4641 mov r1, r8 +10024b68: 3728 adds r7, #40 ; 0x28 +10024b6a: 4638 mov r0, r7 +10024b6c: 462a mov r2, r5 +10024b6e: f7f8 f91d bl 1001cdac +10024b72: 8afb ldrh r3, [r7, #22] +10024b74: 6165 str r5, [r4, #20] +10024b76: 091b lsrs r3, r3, #4 +10024b78: 81e3 strh r3, [r4, #14] +10024b7a: 3301 adds r3, #1 +10024b7c: f8a6 34f4 strh.w r3, [r6, #1268] ; 0x4f4 +10024b80: 61a5 str r5, [r4, #24] +10024b82: 4620 mov r0, r4 +10024b84: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10024b88 : +10024b88: f241 62fc movw r2, #5884 ; 0x16fc +10024b8c: 5882 ldr r2, [r0, r2] +10024b8e: 2a01 cmp r2, #1 +10024b90: d006 beq.n 10024ba0 +10024b92: f241 62f8 movw r2, #5880 ; 0x16f8 +10024b96: 5883 ldr r3, [r0, r2] +10024b98: 2b01 cmp r3, #1 +10024b9a: d001 beq.n 10024ba0 +10024b9c: f00a bff0 b.w 1002fb80 +10024ba0: 4770 bx lr + +10024ba2 : +10024ba2: b510 push {r4, lr} +10024ba4: 4604 mov r4, r0 +10024ba6: f7ff ffc4 bl 10024b32 +10024baa: 4601 mov r1, r0 +10024bac: b120 cbz r0, 10024bb8 +10024bae: 4620 mov r0, r4 +10024bb0: f7ff ffea bl 10024b88 +10024bb4: 2000 movs r0, #0 +10024bb6: bd10 pop {r4, pc} +10024bb8: f04f 30ff mov.w r0, #4294967295 +10024bbc: bd10 pop {r4, pc} + ... + +10024bc0 : +10024bc0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10024bc4: b0ab sub sp, #172 ; 0xac +10024bc6: 4604 mov r4, r0 +10024bc8: 2100 movs r1, #0 +10024bca: a808 add r0, sp, #32 +10024bcc: 2210 movs r2, #16 +10024bce: f01d fb9c bl 1004230a +10024bd2: f8b4 3452 ldrh.w r3, [r4, #1106] ; 0x452 +10024bd6: 2b00 cmp r3, #0 +10024bd8: f000 80f0 beq.w 10024dbc +10024bdc: f8b4 3450 ldrh.w r3, [r4, #1104] ; 0x450 +10024be0: 2b00 cmp r3, #0 +10024be2: f000 80eb beq.w 10024dbc +10024be6: f894 36b7 ldrb.w r3, [r4, #1719] ; 0x6b7 +10024bea: 2b01 cmp r3, #1 +10024bec: f000 80e6 beq.w 10024dbc +10024bf0: f04f 0a04 mov.w sl, #4 +10024bf4: 2700 movs r7, #0 +10024bf6: f604 00c8 addw r0, r4, #2248 ; 0x8c8 +10024bfa: f88d a016 strb.w sl, [sp, #22] +10024bfe: f88d 7017 strb.w r7, [sp, #23] +10024c02: f7ff ff49 bl 10024a98 +10024c06: 4606 mov r6, r0 +10024c08: 2800 cmp r0, #0 +10024c0a: f000 80d7 beq.w 10024dbc +10024c0e: 4620 mov r0, r4 +10024c10: f106 0108 add.w r1, r6, #8 +10024c14: f7ff ff5f bl 10024ad6 +10024c18: 4639 mov r1, r7 +10024c1a: 2268 movs r2, #104 ; 0x68 +10024c1c: f8d6 0080 ldr.w r0, [r6, #128] ; 0x80 +10024c20: f7f8 f8d6 bl 1001cdd0 +10024c24: f8d6 5080 ldr.w r5, [r6, #128] ; 0x80 +10024c28: f104 0898 add.w r8, r4, #152 ; 0x98 +10024c2c: f885 7028 strb.w r7, [r5, #40] ; 0x28 +10024c30: f885 7029 strb.w r7, [r5, #41] ; 0x29 +10024c34: 4640 mov r0, r8 +10024c36: f009 f916 bl 1002de66 +10024c3a: 2206 movs r2, #6 +10024c3c: 4601 mov r1, r0 +10024c3e: f105 002c add.w r0, r5, #44 ; 0x2c +10024c42: f7f8 f8b3 bl 1001cdac +10024c46: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10024c4a: 3109 adds r1, #9 +10024c4c: 2206 movs r2, #6 +10024c4e: f105 0032 add.w r0, r5, #50 ; 0x32 +10024c52: f7f8 f8ab bl 1001cdac +10024c56: 4640 mov r0, r8 +10024c58: f009 f905 bl 1002de66 +10024c5c: 2206 movs r2, #6 +10024c5e: 4601 mov r1, r0 +10024c60: f105 0038 add.w r0, r5, #56 ; 0x38 +10024c64: f7f8 f8a2 bl 1001cdac +10024c68: 8feb ldrh r3, [r5, #62] ; 0x3e +10024c6a: f8b4 24f4 ldrh.w r2, [r4, #1268] ; 0x4f4 +10024c6e: f003 030f and.w r3, r3, #15 +10024c72: ea43 1302 orr.w r3, r3, r2, lsl #4 +10024c76: 87eb strh r3, [r5, #62] ; 0x3e +10024c78: f8b4 34f4 ldrh.w r3, [r4, #1268] ; 0x4f4 +10024c7c: 4637 mov r7, r6 +10024c7e: 3301 adds r3, #1 +10024c80: f8a4 34f4 strh.w r3, [r4, #1268] ; 0x4f4 +10024c84: 8d2b ldrh r3, [r5, #40] ; 0x28 +10024c86: 2101 movs r1, #1 +10024c88: f023 03fc bic.w r3, r3, #252 ; 0xfc +10024c8c: f043 03d0 orr.w r3, r3, #208 ; 0xd0 +10024c90: 852b strh r3, [r5, #40] ; 0x28 +10024c92: 2318 movs r3, #24 +10024c94: f847 3f14 str.w r3, [r7, #20]! +10024c98: f10d 0216 add.w r2, sp, #22 +10024c9c: 463b mov r3, r7 +10024c9e: f105 0040 add.w r0, r5, #64 ; 0x40 +10024ca2: f01e fdc5 bl 10043830 <__rtw_set_fixed_ie_veneer> +10024ca6: 463b mov r3, r7 +10024ca8: 2101 movs r1, #1 +10024caa: f10d 0217 add.w r2, sp, #23 +10024cae: f01e fdbf bl 10043830 <__rtw_set_fixed_ie_veneer> +10024cb2: f8b4 3452 ldrh.w r3, [r4, #1106] ; 0x452 +10024cb6: 4681 mov r9, r0 +10024cb8: f10d 0830 add.w r8, sp, #48 ; 0x30 +10024cbc: b143 cbz r3, 10024cd0 +10024cbe: 9700 str r7, [sp, #0] +10024cc0: 2148 movs r1, #72 ; 0x48 +10024cc2: 2201 movs r2, #1 +10024cc4: 4643 mov r3, r8 +10024cc6: f88d a030 strb.w sl, [sp, #48] ; 0x30 +10024cca: f01e fd41 bl 10043750 <__rtw_set_ie_veneer> +10024cce: 4681 mov r9, r0 +10024cd0: 4640 mov r0, r8 +10024cd2: 2100 movs r1, #0 +10024cd4: 2278 movs r2, #120 ; 0x78 +10024cd6: f7f8 f87b bl 1001cdd0 +10024cda: f8b4 3450 ldrh.w r3, [r4, #1104] ; 0x450 +10024cde: b97b cbnz r3, 10024d00 +10024ce0: 6973 ldr r3, [r6, #20] +10024ce2: f240 6252 movw r2, #1618 ; 0x652 +10024ce6: 61b3 str r3, [r6, #24] +10024ce8: 3328 adds r3, #40 ; 0x28 +10024cea: 4293 cmp r3, r2 +10024cec: d962 bls.n 10024db4 +10024cee: 4835 ldr r0, [pc, #212] ; (10024dc4 ) +10024cf0: f01d fa0a bl 10042108 +10024cf4: 4b34 ldr r3, [pc, #208] ; (10024dc8 ) +10024cf6: f8d3 0198 ldr.w r0, [r3, #408] ; 0x198 +10024cfa: f01d fa05 bl 10042108 +10024cfe: e059 b.n 10024db4 +10024d00: f104 0534 add.w r5, r4, #52 ; 0x34 +10024d04: 4628 mov r0, r5 +10024d06: a906 add r1, sp, #24 +10024d08: f7f8 f8f6 bl 1001cef8 +10024d0c: f8d4 b02c ldr.w fp, [r4, #44] ; 0x2c +10024d10: f104 0a2c add.w sl, r4, #44 ; 0x2c +10024d14: 4650 mov r0, sl +10024d16: 4659 mov r1, fp +10024d18: f7f8 f922 bl 1001cf60 +10024d1c: 2801 cmp r0, #1 +10024d1e: d021 beq.n 10024d64 +10024d20: 4658 mov r0, fp +10024d22: f850 3ba4 ldr.w r3, [r0], #164 +10024d26: 212d movs r1, #45 ; 0x2d +10024d28: 9303 str r3, [sp, #12] +10024d2a: f8db 3094 ldr.w r3, [fp, #148] ; 0x94 +10024d2e: aa07 add r2, sp, #28 +10024d30: 3b0c subs r3, #12 +10024d32: f01e fddd bl 100438f0 <__rtw_get_ie_veneer> +10024d36: b120 cbz r0, 10024d42 +10024d38: 9b07 ldr r3, [sp, #28] +10024d3a: b113 cbz r3, 10024d42 +10024d3c: f8dd b00c ldr.w fp, [sp, #12] +10024d40: e7e8 b.n 10024d14 +10024d42: f8db 3068 ldr.w r3, [fp, #104] ; 0x68 +10024d46: 1e5a subs r2, r3, #1 +10024d48: 2a0d cmp r2, #13 +10024d4a: d8f7 bhi.n 10024d3c +10024d4c: aa2a add r2, sp, #168 ; 0xa8 +10024d4e: 441a add r2, r3 +10024d50: 2301 movs r3, #1 +10024d52: f802 3c78 strb.w r3, [r2, #-120] +10024d56: f89d 2030 ldrb.w r2, [sp, #48] ; 0x30 +10024d5a: 2a00 cmp r2, #0 +10024d5c: d1ee bne.n 10024d3c +10024d5e: f88d 3030 strb.w r3, [sp, #48] ; 0x30 +10024d62: e7eb b.n 10024d3c +10024d64: 4628 mov r0, r5 +10024d66: a906 add r1, sp, #24 +10024d68: f7f8 f8ce bl 1001cf08 +10024d6c: 2500 movs r5, #0 +10024d6e: ebc5 1305 rsb r3, r5, r5, lsl #4 +10024d72: f818 2003 ldrb.w r2, [r8, r3] +10024d76: 2a01 cmp r2, #1 +10024d78: d118 bne.n 10024dac +10024d7a: eb08 0103 add.w r1, r8, r3 +10024d7e: f88d 5020 strb.w r5, [sp, #32] +10024d82: 4613 mov r3, r2 +10024d84: 5cc8 ldrb r0, [r1, r3] +10024d86: 2801 cmp r0, #1 +10024d88: d106 bne.n 10024d98 +10024d8a: 2a0f cmp r2, #15 +10024d8c: dc04 bgt.n 10024d98 +10024d8e: a82a add r0, sp, #168 ; 0xa8 +10024d90: 4410 add r0, r2 +10024d92: f800 3c88 strb.w r3, [r0, #-136] +10024d96: 3201 adds r2, #1 +10024d98: 3301 adds r3, #1 +10024d9a: 2b0f cmp r3, #15 +10024d9c: d1f2 bne.n 10024d84 +10024d9e: 4648 mov r0, r9 +10024da0: 9700 str r7, [sp, #0] +10024da2: 2149 movs r1, #73 ; 0x49 +10024da4: ab08 add r3, sp, #32 +10024da6: f01e fcd3 bl 10043750 <__rtw_set_ie_veneer> +10024daa: 4681 mov r9, r0 +10024dac: 3501 adds r5, #1 +10024dae: 2d08 cmp r5, #8 +10024db0: d1dd bne.n 10024d6e +10024db2: e795 b.n 10024ce0 +10024db4: 4620 mov r0, r4 +10024db6: 4631 mov r1, r6 +10024db8: f7ff fee6 bl 10024b88 +10024dbc: b02b add sp, #172 ; 0xac +10024dbe: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10024dc2: bf00 nop +10024dc4: 1004b9eb .word 0x1004b9eb +10024dc8: 1004da10 .word 0x1004da10 + +10024dcc : +10024dcc: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +10024dd0: 460e mov r6, r1 +10024dd2: 4617 mov r7, r2 +10024dd4: 2100 movs r1, #0 +10024dd6: aa01 add r2, sp, #4 +10024dd8: 4633 mov r3, r6 +10024dda: 4680 mov r8, r0 +10024ddc: f01e fd88 bl 100438f0 <__rtw_get_ie_veneer> +10024de0: b1d8 cbz r0, 10024e1a +10024de2: 9a01 ldr r2, [sp, #4] +10024de4: b1b2 cbz r2, 10024e14 +10024de6: 2f01 cmp r7, #1 +10024de8: f04f 0400 mov.w r4, #0 +10024dec: d006 beq.n 10024dfc +10024dee: 2f02 cmp r7, #2 +10024df0: d112 bne.n 10024e18 +10024df2: 3002 adds r0, #2 +10024df4: 4621 mov r1, r4 +10024df6: f7f7 ffeb bl 1001cdd0 +10024dfa: e00d b.n 10024e18 +10024dfc: 1c95 adds r5, r2, #2 +10024dfe: 1941 adds r1, r0, r5 +10024e00: ebc1 0208 rsb r2, r1, r8 +10024e04: 7044 strb r4, [r0, #1] +10024e06: 4432 add r2, r6 +10024e08: 3002 adds r0, #2 +10024e0a: f7f7 ffcf bl 1001cdac +10024e0e: 9801 ldr r0, [sp, #4] +10024e10: 4240 negs r0, r0 +10024e12: e002 b.n 10024e1a +10024e14: 4610 mov r0, r2 +10024e16: e000 b.n 10024e1a +10024e18: 4620 mov r0, r4 +10024e1a: b002 add sp, #8 +10024e1c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10024e20 : +10024e20: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10024e24: 4b81 ldr r3, [pc, #516] ; (1002502c ) +10024e26: 4604 mov r4, r0 +10024e28: 6818 ldr r0, [r3, #0] +10024e2a: b089 sub sp, #36 ; 0x24 +10024e2c: 889b ldrh r3, [r3, #4] +10024e2e: 9006 str r0, [sp, #24] +10024e30: f604 00c8 addw r0, r4, #2248 ; 0x8c8 +10024e34: f8ad 301c strh.w r3, [sp, #28] +10024e38: f7ff fe2e bl 10024a98 +10024e3c: 4605 mov r5, r0 +10024e3e: 2800 cmp r0, #0 +10024e40: f000 80f0 beq.w 10025024 +10024e44: f204 49dc addw r9, r4, #1244 ; 0x4dc +10024e48: 4648 mov r0, r9 +10024e4a: a904 add r1, sp, #16 +10024e4c: f7f8 f854 bl 1001cef8 +10024e50: 4620 mov r0, r4 +10024e52: f105 0108 add.w r1, r5, #8 +10024e56: f7ff fe3e bl 10024ad6 +10024e5a: 2310 movs r3, #16 +10024e5c: f885 3068 strb.w r3, [r5, #104] ; 0x68 +10024e60: f8d5 0080 ldr.w r0, [r5, #128] ; 0x80 +10024e64: 2100 movs r1, #0 +10024e66: 2268 movs r2, #104 ; 0x68 +10024e68: f7f7 ffb2 bl 1001cdd0 +10024e6c: f8d5 6080 ldr.w r6, [r5, #128] ; 0x80 +10024e70: 2700 movs r7, #0 +10024e72: f106 002c add.w r0, r6, #44 ; 0x2c +10024e76: a906 add r1, sp, #24 +10024e78: 2206 movs r2, #6 +10024e7a: f886 7028 strb.w r7, [r6, #40] ; 0x28 +10024e7e: f886 7029 strb.w r7, [r6, #41] ; 0x29 +10024e82: f7f7 ff93 bl 1001cdac +10024e86: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10024e8a: 3109 adds r1, #9 +10024e8c: 2206 movs r2, #6 +10024e8e: f106 0032 add.w r0, r6, #50 ; 0x32 +10024e92: f7f7 ff8b bl 1001cdac +10024e96: f104 0098 add.w r0, r4, #152 ; 0x98 +10024e9a: f008 ffe4 bl 1002de66 +10024e9e: 2206 movs r2, #6 +10024ea0: 4601 mov r1, r0 +10024ea2: f106 0038 add.w r0, r6, #56 ; 0x38 +10024ea6: f7f7 ff81 bl 1001cdac +10024eaa: 8ff3 ldrh r3, [r6, #62] ; 0x3e +10024eac: f504 788a add.w r8, r4, #276 ; 0x114 +10024eb0: f003 030f and.w r3, r3, #15 +10024eb4: 87f3 strh r3, [r6, #62] ; 0x3e +10024eb6: 8d33 ldrh r3, [r6, #40] ; 0x28 +10024eb8: f106 0a4c add.w sl, r6, #76 ; 0x4c +10024ebc: f023 03fc bic.w r3, r3, #252 ; 0xfc +10024ec0: f043 0380 orr.w r3, r3, #128 ; 0x80 +10024ec4: 8533 strh r3, [r6, #40] ; 0x28 +10024ec6: 2318 movs r3, #24 +10024ec8: 616b str r3, [r5, #20] +10024eca: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +10024ece: f003 0303 and.w r3, r3, #3 +10024ed2: 2b03 cmp r3, #3 +10024ed4: d130 bne.n 10024f38 +10024ed6: 3640 adds r6, #64 ; 0x40 +10024ed8: 4630 mov r0, r6 +10024eda: 4641 mov r1, r8 +10024edc: f8d4 2110 ldr.w r2, [r4, #272] ; 0x110 +10024ee0: f7f7 ff64 bl 1001cdac +10024ee4: f8d4 1110 ldr.w r1, [r4, #272] ; 0x110 +10024ee8: 4650 mov r0, sl +10024eea: 390c subs r1, #12 +10024eec: f894 26b8 ldrb.w r2, [r4, #1720] ; 0x6b8 +10024ef0: f7ff ff6c bl 10024dcc +10024ef4: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10024ef8: 4418 add r0, r3 +10024efa: 696b ldr r3, [r5, #20] +10024efc: 4403 add r3, r0 +10024efe: 616b str r3, [r5, #20] +10024f00: f894 3874 ldrb.w r3, [r4, #2164] ; 0x874 +10024f04: 2b00 cmp r3, #0 +10024f06: d071 beq.n 10024fec +10024f08: 4430 add r0, r6 +10024f0a: f894 3874 ldrb.w r3, [r4, #2164] ; 0x874 +10024f0e: 429f cmp r7, r3 +10024f10: dc6c bgt.n 10024fec +10024f12: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +10024f16: eb03 02c7 add.w r2, r3, r7, lsl #3 +10024f1a: 7912 ldrb r2, [r2, #4] +10024f1c: 0752 lsls r2, r2, #29 +10024f1e: d509 bpl.n 10024f34 +10024f20: f853 3037 ldr.w r3, [r3, r7, lsl #3] +10024f24: f105 0614 add.w r6, r5, #20 +10024f28: 7819 ldrb r1, [r3, #0] +10024f2a: 785a ldrb r2, [r3, #1] +10024f2c: 9600 str r6, [sp, #0] +10024f2e: 3302 adds r3, #2 +10024f30: f01e fc0e bl 10043750 <__rtw_set_ie_veneer> +10024f34: 3701 adds r7, #1 +10024f36: e7e8 b.n 10024f0a +10024f38: 2320 movs r3, #32 +10024f3a: 616b str r3, [r5, #20] +10024f3c: 4640 mov r0, r8 +10024f3e: f7fe fcf4 bl 1002392a +10024f42: 2202 movs r2, #2 +10024f44: 4601 mov r1, r0 +10024f46: f106 0048 add.w r0, r6, #72 ; 0x48 +10024f4a: f7f7 ff2f bl 1001cdac +10024f4e: 696b ldr r3, [r5, #20] +10024f50: 4640 mov r0, r8 +10024f52: 3302 adds r3, #2 +10024f54: 616b str r3, [r5, #20] +10024f56: f7fe fcd9 bl 1002390c +10024f5a: 2202 movs r2, #2 +10024f5c: 4601 mov r1, r0 +10024f5e: f106 004a add.w r0, r6, #74 ; 0x4a +10024f62: f7f7 ff23 bl 1001cdac +10024f66: 696b ldr r3, [r5, #20] +10024f68: 462e mov r6, r5 +10024f6a: 3302 adds r3, #2 +10024f6c: f846 3f14 str.w r3, [r6, #20]! +10024f70: f8d4 20a4 ldr.w r2, [r4, #164] ; 0xa4 +10024f74: 4639 mov r1, r7 +10024f76: f104 03a8 add.w r3, r4, #168 ; 0xa8 +10024f7a: 4650 mov r0, sl +10024f7c: 9600 str r6, [sp, #0] +10024f7e: f01e fbe7 bl 10043750 <__rtw_set_ie_veneer> +10024f82: f104 0afc add.w sl, r4, #252 ; 0xfc +10024f86: 4683 mov fp, r0 +10024f88: 4650 mov r0, sl +10024f8a: f01e fbd1 bl 10043730 <__rtw_get_rateset_len_veneer> +10024f8e: 4680 mov r8, r0 +10024f90: f1b8 0f08 cmp.w r8, #8 +10024f94: bf34 ite cc +10024f96: 4642 movcc r2, r8 +10024f98: 2208 movcs r2, #8 +10024f9a: 2101 movs r1, #1 +10024f9c: 4653 mov r3, sl +10024f9e: 9600 str r6, [sp, #0] +10024fa0: 4658 mov r0, fp +10024fa2: f01e fbd5 bl 10043750 <__rtw_set_ie_veneer> +10024fa6: 2103 movs r1, #3 +10024fa8: 2201 movs r2, #1 +10024faa: f104 03e4 add.w r3, r4, #228 ; 0xe4 +10024fae: 9600 str r6, [sp, #0] +10024fb0: f01e fbce bl 10043750 <__rtw_set_ie_veneer> +10024fb4: ab08 add r3, sp, #32 +10024fb6: f843 7d0c str.w r7, [r3, #-12]! +10024fba: 2106 movs r1, #6 +10024fbc: 2202 movs r2, #2 +10024fbe: 9600 str r6, [sp, #0] +10024fc0: f88d 700f strb.w r7, [sp, #15] +10024fc4: f01e fbc4 bl 10043750 <__rtw_set_ie_veneer> +10024fc8: 9600 str r6, [sp, #0] +10024fca: 212a movs r1, #42 ; 0x2a +10024fcc: 2201 movs r2, #1 +10024fce: f10d 030f add.w r3, sp, #15 +10024fd2: f01e fbbd bl 10043750 <__rtw_set_ie_veneer> +10024fd6: f1b8 0f08 cmp.w r8, #8 +10024fda: d907 bls.n 10024fec +10024fdc: 9600 str r6, [sp, #0] +10024fde: 2132 movs r1, #50 ; 0x32 +10024fe0: f1a8 0208 sub.w r2, r8, #8 +10024fe4: f504 7382 add.w r3, r4, #260 ; 0x104 +10024fe8: f01e fbb2 bl 10043750 <__rtw_set_ie_veneer> +10024fec: 2300 movs r3, #0 +10024fee: f884 34e0 strb.w r3, [r4, #1248] ; 0x4e0 +10024ff2: a904 add r1, sp, #16 +10024ff4: 4648 mov r0, r9 +10024ff6: f7f7 ff87 bl 1001cf08 +10024ffa: 696b ldr r3, [r5, #20] +10024ffc: f240 6252 movw r2, #1618 ; 0x652 +10025000: f103 0128 add.w r1, r3, #40 ; 0x28 +10025004: 4291 cmp r1, r2 +10025006: d908 bls.n 1002501a +10025008: 4809 ldr r0, [pc, #36] ; (10025030 ) +1002500a: f01d f87d bl 10042108 +1002500e: 4b09 ldr r3, [pc, #36] ; (10025034 ) +10025010: f8d3 0170 ldr.w r0, [r3, #368] ; 0x170 +10025014: f01d f878 bl 10042108 +10025018: e004 b.n 10025024 +1002501a: 61ab str r3, [r5, #24] +1002501c: 4620 mov r0, r4 +1002501e: 4629 mov r1, r5 +10025020: f7ff fdb2 bl 10024b88 +10025024: b009 add sp, #36 ; 0x24 +10025026: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1002502a: bf00 nop +1002502c: 1004a63b .word 0x1004a63b +10025030: 1004b9eb .word 0x1004b9eb +10025034: 1004da10 .word 0x1004da10 + +10025038 : +10025038: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002503c: 4604 mov r4, r0 +1002503e: b085 sub sp, #20 +10025040: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +10025044: 460f mov r7, r1 +10025046: f7ff fd27 bl 10024a98 +1002504a: 4605 mov r5, r0 +1002504c: 2800 cmp r0, #0 +1002504e: f000 8133 beq.w 100252b8 +10025052: 4620 mov r0, r4 +10025054: f105 0108 add.w r1, r5, #8 +10025058: f7ff fd3d bl 10024ad6 +1002505c: f8d5 0080 ldr.w r0, [r5, #128] ; 0x80 +10025060: 2100 movs r1, #0 +10025062: 2268 movs r2, #104 ; 0x68 +10025064: f7f7 feb4 bl 1001cdd0 +10025068: f8d5 6080 ldr.w r6, [r5, #128] ; 0x80 +1002506c: f04f 0800 mov.w r8, #0 +10025070: f106 002c add.w r0, r6, #44 ; 0x2c +10025074: 4639 mov r1, r7 +10025076: 2206 movs r2, #6 +10025078: f886 8028 strb.w r8, [r6, #40] ; 0x28 +1002507c: f886 8029 strb.w r8, [r6, #41] ; 0x29 +10025080: f7f7 fe94 bl 1001cdac +10025084: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10025088: f106 0032 add.w r0, r6, #50 ; 0x32 +1002508c: 3109 adds r1, #9 +1002508e: 2206 movs r2, #6 +10025090: f7f7 fe8c bl 1001cdac +10025094: f104 019c add.w r1, r4, #156 ; 0x9c +10025098: 2206 movs r2, #6 +1002509a: f106 0038 add.w r0, r6, #56 ; 0x38 +1002509e: f7f7 fe85 bl 1001cdac +100250a2: 8ff3 ldrh r3, [r6, #62] ; 0x3e +100250a4: f8b4 24f4 ldrh.w r2, [r4, #1268] ; 0x4f4 +100250a8: f003 030f and.w r3, r3, #15 +100250ac: ea43 1302 orr.w r3, r3, r2, lsl #4 +100250b0: 87f3 strh r3, [r6, #62] ; 0x3e +100250b2: f8b4 34f4 ldrh.w r3, [r4, #1268] ; 0x4f4 +100250b6: 3301 adds r3, #1 +100250b8: f8a4 34f4 strh.w r3, [r4, #1268] ; 0x4f4 +100250bc: 8d33 ldrh r3, [r6, #40] ; 0x28 +100250be: f023 03fc bic.w r3, r3, #252 ; 0xfc +100250c2: f043 0350 orr.w r3, r3, #80 ; 0x50 +100250c6: 8533 strh r3, [r6, #40] ; 0x28 +100250c8: 2318 movs r3, #24 +100250ca: 826b strh r3, [r5, #18] +100250cc: 616b str r3, [r5, #20] +100250ce: f8d4 1110 ldr.w r1, [r4, #272] ; 0x110 +100250d2: f5b1 7f40 cmp.w r1, #768 ; 0x300 +100250d6: f200 80ef bhi.w 100252b8 +100250da: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +100250de: f504 798a add.w r9, r4, #276 ; 0x114 +100250e2: f003 0303 and.w r3, r3, #3 +100250e6: 2b03 cmp r3, #3 +100250e8: d170 bne.n 100251cc +100250ea: 4642 mov r2, r8 +100250ec: ab03 add r3, sp, #12 +100250ee: f504 7090 add.w r0, r4, #288 ; 0x120 +100250f2: 390c subs r1, #12 +100250f4: f01e fb14 bl 10043720 <__rtw_get_wps_ie_veneer> +100250f8: f8d4 34c8 ldr.w r3, [r4, #1224] ; 0x4c8 +100250fc: 3640 adds r6, #64 ; 0x40 +100250fe: 4683 mov fp, r0 +10025100: f8d4 2110 ldr.w r2, [r4, #272] ; 0x110 +10025104: 2b00 cmp r3, #0 +10025106: d039 beq.n 1002517c +10025108: 2800 cmp r0, #0 +1002510a: d037 beq.n 1002517c +1002510c: f8dd a00c ldr.w sl, [sp, #12] +10025110: f1ba 0f00 cmp.w sl, #0 +10025114: d032 beq.n 1002517c +10025116: ebc9 0700 rsb r7, r9, r0 +1002511a: ebc7 0802 rsb r8, r7, r2 +1002511e: 4630 mov r0, r6 +10025120: 4649 mov r1, r9 +10025122: 463a mov r2, r7 +10025124: f7f7 fe42 bl 1001cdac +10025128: 696b ldr r3, [r5, #20] +1002512a: f8d4 14c8 ldr.w r1, [r4, #1224] ; 0x4c8 +1002512e: 443b add r3, r7 +10025130: 616b str r3, [r5, #20] +10025132: 784a ldrb r2, [r1, #1] +10025134: ebca 0808 rsb r8, sl, r8 +10025138: 9203 str r2, [sp, #12] +1002513a: 3202 adds r2, #2 +1002513c: 18bb adds r3, r7, r2 +1002513e: f5b3 7f40 cmp.w r3, #768 ; 0x300 +10025142: 443e add r6, r7 +10025144: d809 bhi.n 1002515a +10025146: 4630 mov r0, r6 +10025148: f7f7 fe30 bl 1001cdac +1002514c: 9b03 ldr r3, [sp, #12] +1002514e: 1c9a adds r2, r3, #2 +10025150: 4416 add r6, r2 +10025152: 696a ldr r2, [r5, #20] +10025154: 4413 add r3, r2 +10025156: 3302 adds r3, #2 +10025158: 616b str r3, [r5, #20] +1002515a: 9b03 ldr r3, [sp, #12] +1002515c: 3302 adds r3, #2 +1002515e: 441f add r7, r3 +10025160: 4447 add r7, r8 +10025162: f5b7 7f40 cmp.w r7, #768 ; 0x300 +10025166: d813 bhi.n 10025190 +10025168: 4630 mov r0, r6 +1002516a: eb0b 010a add.w r1, fp, sl +1002516e: 4642 mov r2, r8 +10025170: f7f7 fe1c bl 1001cdac +10025174: 696b ldr r3, [r5, #20] +10025176: 4446 add r6, r8 +10025178: 4443 add r3, r8 +1002517a: e008 b.n 1002518e +1002517c: 4630 mov r0, r6 +1002517e: 4649 mov r1, r9 +10025180: f7f7 fe14 bl 1001cdac +10025184: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10025188: 696a ldr r2, [r5, #20] +1002518a: 441e add r6, r3 +1002518c: 4413 add r3, r2 +1002518e: 616b str r3, [r5, #20] +10025190: f894 3874 ldrb.w r3, [r4, #2164] ; 0x874 +10025194: 2b00 cmp r3, #0 +10025196: d07c beq.n 10025292 +10025198: 2700 movs r7, #0 +1002519a: f894 3874 ldrb.w r3, [r4, #2164] ; 0x874 +1002519e: 429f cmp r7, r3 +100251a0: dc77 bgt.n 10025292 +100251a2: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +100251a6: eb03 02c7 add.w r2, r3, r7, lsl #3 +100251aa: 7912 ldrb r2, [r2, #4] +100251ac: 0792 lsls r2, r2, #30 +100251ae: d50b bpl.n 100251c8 +100251b0: f853 3037 ldr.w r3, [r3, r7, lsl #3] +100251b4: f105 0014 add.w r0, r5, #20 +100251b8: 7819 ldrb r1, [r3, #0] +100251ba: 785a ldrb r2, [r3, #1] +100251bc: 9000 str r0, [sp, #0] +100251be: 3302 adds r3, #2 +100251c0: 4630 mov r0, r6 +100251c2: f01e fac5 bl 10043750 <__rtw_set_ie_veneer> +100251c6: 4606 mov r6, r0 +100251c8: 3701 adds r7, #1 +100251ca: e7e6 b.n 1002519a +100251cc: 2320 movs r3, #32 +100251ce: 616b str r3, [r5, #20] +100251d0: 4648 mov r0, r9 +100251d2: f7fe fbaa bl 1002392a +100251d6: 2202 movs r2, #2 +100251d8: 4601 mov r1, r0 +100251da: f106 0048 add.w r0, r6, #72 ; 0x48 +100251de: f7f7 fde5 bl 1001cdac +100251e2: 696b ldr r3, [r5, #20] +100251e4: 4648 mov r0, r9 +100251e6: 3302 adds r3, #2 +100251e8: 616b str r3, [r5, #20] +100251ea: f7fe fb8f bl 1002390c +100251ee: 2202 movs r2, #2 +100251f0: 4601 mov r1, r0 +100251f2: f106 004a add.w r0, r6, #74 ; 0x4a +100251f6: f7f7 fdd9 bl 1001cdac +100251fa: 696b ldr r3, [r5, #20] +100251fc: 462f mov r7, r5 +100251fe: 3302 adds r3, #2 +10025200: f847 3f14 str.w r3, [r7, #20]! +10025204: f8d4 20a4 ldr.w r2, [r4, #164] ; 0xa4 +10025208: 4641 mov r1, r8 +1002520a: f104 03a8 add.w r3, r4, #168 ; 0xa8 +1002520e: f106 004c add.w r0, r6, #76 ; 0x4c +10025212: 9700 str r7, [sp, #0] +10025214: f01e fa9c bl 10043750 <__rtw_set_ie_veneer> +10025218: f104 09fc add.w r9, r4, #252 ; 0xfc +1002521c: 4682 mov sl, r0 +1002521e: 4648 mov r0, r9 +10025220: f01e fa86 bl 10043730 <__rtw_get_rateset_len_veneer> +10025224: 4606 mov r6, r0 +10025226: 2e08 cmp r6, #8 +10025228: bf34 ite cc +1002522a: 4632 movcc r2, r6 +1002522c: 2208 movcs r2, #8 +1002522e: 464b mov r3, r9 +10025230: 2101 movs r1, #1 +10025232: 9700 str r7, [sp, #0] +10025234: 4650 mov r0, sl +10025236: f01e fa8b bl 10043750 <__rtw_set_ie_veneer> +1002523a: 2201 movs r2, #1 +1002523c: f104 03e4 add.w r3, r4, #228 ; 0xe4 +10025240: 9700 str r7, [sp, #0] +10025242: 2103 movs r1, #3 +10025244: f01e fa84 bl 10043750 <__rtw_set_ie_veneer> +10025248: f8d4 25f8 ldr.w r2, [r4, #1528] ; 0x5f8 +1002524c: 4603 mov r3, r0 +1002524e: f002 0903 and.w r9, r2, #3 +10025252: f1b9 0f01 cmp.w r9, #1 +10025256: d111 bne.n 1002527c +10025258: ab04 add r3, sp, #16 +1002525a: f843 8d04 str.w r8, [r3, #-4]! +1002525e: 2106 movs r1, #6 +10025260: 2202 movs r2, #2 +10025262: 9700 str r7, [sp, #0] +10025264: f88d 800b strb.w r8, [sp, #11] +10025268: f01e fa72 bl 10043750 <__rtw_set_ie_veneer> +1002526c: f10d 030b add.w r3, sp, #11 +10025270: 9700 str r7, [sp, #0] +10025272: 212a movs r1, #42 ; 0x2a +10025274: 464a mov r2, r9 +10025276: f01e fa6b bl 10043750 <__rtw_set_ie_veneer> +1002527a: 4603 mov r3, r0 +1002527c: 2e08 cmp r6, #8 +1002527e: d908 bls.n 10025292 +10025280: 4618 mov r0, r3 +10025282: 9700 str r7, [sp, #0] +10025284: 2132 movs r1, #50 ; 0x32 +10025286: f1a6 0208 sub.w r2, r6, #8 +1002528a: f504 7382 add.w r3, r4, #260 ; 0x104 +1002528e: f01e fa5f bl 10043750 <__rtw_set_ie_veneer> +10025292: 696b ldr r3, [r5, #20] +10025294: f240 6252 movw r2, #1618 ; 0x652 +10025298: 61ab str r3, [r5, #24] +1002529a: 3328 adds r3, #40 ; 0x28 +1002529c: 4293 cmp r3, r2 +1002529e: d907 bls.n 100252b0 +100252a0: 4807 ldr r0, [pc, #28] ; (100252c0 ) +100252a2: f01c ff31 bl 10042108 +100252a6: 4b07 ldr r3, [pc, #28] ; (100252c4 ) +100252a8: f8d3 0174 ldr.w r0, [r3, #372] ; 0x174 +100252ac: f01c ff2c bl 10042108 +100252b0: 4620 mov r0, r4 +100252b2: 4629 mov r1, r5 +100252b4: f7ff fc68 bl 10024b88 +100252b8: b005 add sp, #20 +100252ba: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100252be: bf00 nop +100252c0: 1004b9eb .word 0x1004b9eb +100252c4: 1004da10 .word 0x1004da10 + +100252c8 : +100252c8: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +100252cc: 4b2e ldr r3, [pc, #184] ; (10025388 ) +100252ce: 4604 mov r4, r0 +100252d0: 681b ldr r3, [r3, #0] +100252d2: 460e mov r6, r1 +100252d4: 6f8d ldr r5, [r1, #120] ; 0x78 +100252d6: 6f0f ldr r7, [r1, #112] ; 0x70 +100252d8: b133 cbz r3, 100252e8 +100252da: f1a7 0118 sub.w r1, r7, #24 +100252de: f105 0018 add.w r0, r5, #24 +100252e2: b289 uxth r1, r1 +100252e4: 2240 movs r2, #64 ; 0x40 +100252e6: 4798 blx r3 +100252e8: 6923 ldr r3, [r4, #16] +100252ea: 071a lsls r2, r3, #28 +100252ec: d447 bmi.n 1002537e +100252ee: f013 0f51 tst.w r3, #81 ; 0x51 +100252f2: d044 beq.n 1002537e +100252f4: 4b25 ldr r3, [pc, #148] ; (1002538c ) +100252f6: f8d3 8000 ldr.w r8, [r3] +100252fa: f1b8 0f00 cmp.w r8, #0 +100252fe: d005 beq.n 1002530c +10025300: 4628 mov r0, r5 +10025302: f7ff fac3 bl 1002488c +10025306: f996 106c ldrsb.w r1, [r6, #108] ; 0x6c +1002530a: 47c0 blx r8 +1002530c: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +10025310: f003 0303 and.w r3, r3, #3 +10025314: 2b03 cmp r3, #3 +10025316: d009 beq.n 1002532c +10025318: f105 0018 add.w r0, r5, #24 +1002531c: 2100 movs r1, #0 +1002531e: aa01 add r2, sp, #4 +10025320: f1a7 0318 sub.w r3, r7, #24 +10025324: f01e fae4 bl 100438f0 <__rtw_get_ie_veneer> +10025328: b940 cbnz r0, 1002533c +1002532a: e028 b.n 1002537e +1002532c: 4620 mov r0, r4 +1002532e: f44f 6108 mov.w r1, #2176 ; 0x880 +10025332: f7ff fa8c bl 1002484e +10025336: 2800 cmp r0, #0 +10025338: d0ee beq.n 10025318 +1002533a: e020 b.n 1002537e +1002533c: 9b01 ldr r3, [sp, #4] +1002533e: b913 cbnz r3, 10025346 +10025340: 9b01 ldr r3, [sp, #4] +10025342: b153 cbz r3, 1002535a +10025344: e00c b.n 10025360 +10025346: 3002 adds r0, #2 +10025348: f104 01a8 add.w r1, r4, #168 ; 0xa8 +1002534c: f8d4 20a4 ldr.w r2, [r4, #164] ; 0xa4 +10025350: f7f7 fd34 bl 1001cdbc +10025354: 2800 cmp r0, #0 +10025356: d1f3 bne.n 10025340 +10025358: e011 b.n 1002537e +1002535a: f894 36b8 ldrb.w r3, [r4, #1720] ; 0x6b8 +1002535e: b973 cbnz r3, 1002537e +10025360: 6923 ldr r3, [r4, #16] +10025362: 07db lsls r3, r3, #31 +10025364: d50b bpl.n 1002537e +10025366: f8d4 3094 ldr.w r3, [r4, #148] ; 0x94 +1002536a: 2b01 cmp r3, #1 +1002536c: d107 bne.n 1002537e +1002536e: 4628 mov r0, r5 +10025370: f7ff fa8c bl 1002488c +10025374: 2200 movs r2, #0 +10025376: 4601 mov r1, r0 +10025378: 4620 mov r0, r4 +1002537a: f7ff fe5d bl 10025038 +1002537e: 2001 movs r0, #1 +10025380: b002 add sp, #8 +10025382: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10025386: bf00 nop +10025388: 1005534c .word 0x1005534c +1002538c: 100530dc .word 0x100530dc + +10025390 : +10025390: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10025394: 4b69 ldr r3, [pc, #420] ; (1002553c ) +10025396: 4604 mov r4, r0 +10025398: 6818 ldr r0, [r3, #0] +1002539a: b08d sub sp, #52 ; 0x34 +1002539c: 889b ldrh r3, [r3, #4] +1002539e: 9006 str r0, [sp, #24] +100253a0: 2700 movs r7, #0 +100253a2: f604 00c8 addw r0, r4, #2248 ; 0x8c8 +100253a6: 4688 mov r8, r1 +100253a8: 4693 mov fp, r2 +100253aa: 9705 str r7, [sp, #20] +100253ac: f8ad 301c strh.w r3, [sp, #28] +100253b0: f7ff fb72 bl 10024a98 +100253b4: 4605 mov r5, r0 +100253b6: 2800 cmp r0, #0 +100253b8: f000 80bd beq.w 10025536 +100253bc: 4620 mov r0, r4 +100253be: f105 0108 add.w r1, r5, #8 +100253c2: f7ff fb88 bl 10024ad6 +100253c6: 4639 mov r1, r7 +100253c8: f8d5 0080 ldr.w r0, [r5, #128] ; 0x80 +100253cc: 2268 movs r2, #104 ; 0x68 +100253ce: f7f7 fcff bl 1001cdd0 +100253d2: f8d5 6080 ldr.w r6, [r5, #128] ; 0x80 +100253d6: f504 59a0 add.w r9, r4, #5120 ; 0x1400 +100253da: f886 7028 strb.w r7, [r6, #40] ; 0x28 +100253de: f886 7029 strb.w r7, [r6, #41] ; 0x29 +100253e2: f106 0a28 add.w sl, r6, #40 ; 0x28 +100253e6: f109 0909 add.w r9, r9, #9 +100253ea: f106 032c add.w r3, r6, #44 ; 0x2c +100253ee: f106 0738 add.w r7, r6, #56 ; 0x38 +100253f2: f1bb 0f00 cmp.w fp, #0 +100253f6: d111 bne.n 1002541c +100253f8: f104 0b98 add.w fp, r4, #152 ; 0x98 +100253fc: 4658 mov r0, fp +100253fe: 9303 str r3, [sp, #12] +10025400: f008 fd31 bl 1002de66 +10025404: 9b03 ldr r3, [sp, #12] +10025406: 4601 mov r1, r0 +10025408: 2206 movs r2, #6 +1002540a: 4618 mov r0, r3 +1002540c: f7f7 fcce bl 1001cdac +10025410: 4658 mov r0, fp +10025412: f008 fd28 bl 1002de66 +10025416: 4601 mov r1, r0 +10025418: 4638 mov r0, r7 +1002541a: e006 b.n 1002542a +1002541c: 4618 mov r0, r3 +1002541e: a906 add r1, sp, #24 +10025420: 2206 movs r2, #6 +10025422: f7f7 fcc3 bl 1001cdac +10025426: 4638 mov r0, r7 +10025428: a906 add r1, sp, #24 +1002542a: 2206 movs r2, #6 +1002542c: f7f7 fcbe bl 1001cdac +10025430: f106 0032 add.w r0, r6, #50 ; 0x32 +10025434: 2206 movs r2, #6 +10025436: 4649 mov r1, r9 +10025438: f7f7 fcb8 bl 1001cdac +1002543c: f8ba 3016 ldrh.w r3, [sl, #22] +10025440: f8b4 24f4 ldrh.w r2, [r4, #1268] ; 0x4f4 +10025444: f003 030f and.w r3, r3, #15 +10025448: ea43 1302 orr.w r3, r3, r2, lsl #4 +1002544c: f8aa 3016 strh.w r3, [sl, #22] +10025450: f8b4 34f4 ldrh.w r3, [r4, #1268] ; 0x4f4 +10025454: 462f mov r7, r5 +10025456: 3301 adds r3, #1 +10025458: f8a4 34f4 strh.w r3, [r4, #1268] ; 0x4f4 +1002545c: 8d33 ldrh r3, [r6, #40] ; 0x28 +1002545e: f106 0040 add.w r0, r6, #64 ; 0x40 +10025462: f023 03fc bic.w r3, r3, #252 ; 0xfc +10025466: f043 0340 orr.w r3, r3, #64 ; 0x40 +1002546a: 8533 strh r3, [r6, #40] ; 0x28 +1002546c: 2318 movs r3, #24 +1002546e: f847 3f14 str.w r3, [r7, #20]! +10025472: 9700 str r7, [sp, #0] +10025474: f1b8 0f00 cmp.w r8, #0 +10025478: d005 beq.n 10025486 +1002547a: 2100 movs r1, #0 +1002547c: f8d8 2000 ldr.w r2, [r8] +10025480: f108 0304 add.w r3, r8, #4 +10025484: e002 b.n 1002548c +10025486: 4641 mov r1, r8 +10025488: 4642 mov r2, r8 +1002548a: 4643 mov r3, r8 +1002548c: f01e f960 bl 10043750 <__rtw_set_ie_veneer> +10025490: a908 add r1, sp, #32 +10025492: 4606 mov r6, r0 +10025494: aa05 add r2, sp, #20 +10025496: 4620 mov r0, r4 +10025498: f008 fbe2 bl 1002dc60 +1002549c: 9a05 ldr r2, [sp, #20] +1002549e: 9700 str r7, [sp, #0] +100254a0: 2a08 cmp r2, #8 +100254a2: 4630 mov r0, r6 +100254a4: f04f 0101 mov.w r1, #1 +100254a8: dd09 ble.n 100254be +100254aa: 2208 movs r2, #8 +100254ac: ab08 add r3, sp, #32 +100254ae: f01e f94f bl 10043750 <__rtw_set_ie_veneer> +100254b2: 9a05 ldr r2, [sp, #20] +100254b4: 9700 str r7, [sp, #0] +100254b6: 2132 movs r1, #50 ; 0x32 +100254b8: 3a08 subs r2, #8 +100254ba: ab0a add r3, sp, #40 ; 0x28 +100254bc: e000 b.n 100254c0 +100254be: ab08 add r3, sp, #32 +100254c0: f01e f946 bl 10043750 <__rtw_set_ie_veneer> +100254c4: f894 3874 ldrb.w r3, [r4, #2164] ; 0x874 +100254c8: b1ab cbz r3, 100254f6 +100254ca: 2600 movs r6, #0 +100254cc: f894 3874 ldrb.w r3, [r4, #2164] ; 0x874 +100254d0: 429e cmp r6, r3 +100254d2: dc10 bgt.n 100254f6 +100254d4: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +100254d8: eb03 02c6 add.w r2, r3, r6, lsl #3 +100254dc: 7912 ldrb r2, [r2, #4] +100254de: 07d2 lsls r2, r2, #31 +100254e0: d507 bpl.n 100254f2 +100254e2: f853 3036 ldr.w r3, [r3, r6, lsl #3] +100254e6: 7819 ldrb r1, [r3, #0] +100254e8: 785a ldrb r2, [r3, #1] +100254ea: 9700 str r7, [sp, #0] +100254ec: 3302 adds r3, #2 +100254ee: f01e f92f bl 10043750 <__rtw_set_ie_veneer> +100254f2: 3601 adds r6, #1 +100254f4: e7ea b.n 100254cc +100254f6: f8d4 24a8 ldr.w r2, [r4, #1192] ; 0x4a8 +100254fa: b14a cbz r2, 10025510 +100254fc: f8d4 14a4 ldr.w r1, [r4, #1188] ; 0x4a4 +10025500: b131 cbz r1, 10025510 +10025502: f7f7 fc53 bl 1001cdac +10025506: 696a ldr r2, [r5, #20] +10025508: f8d4 34a8 ldr.w r3, [r4, #1192] ; 0x4a8 +1002550c: 4413 add r3, r2 +1002550e: 616b str r3, [r5, #20] +10025510: 696b ldr r3, [r5, #20] +10025512: f240 6252 movw r2, #1618 ; 0x652 +10025516: 61ab str r3, [r5, #24] +10025518: 3328 adds r3, #40 ; 0x28 +1002551a: 4293 cmp r3, r2 +1002551c: d907 bls.n 1002552e +1002551e: 4808 ldr r0, [pc, #32] ; (10025540 ) +10025520: f01c fdf2 bl 10042108 +10025524: 4b07 ldr r3, [pc, #28] ; (10025544 ) +10025526: f8d3 0178 ldr.w r0, [r3, #376] ; 0x178 +1002552a: f01c fded bl 10042108 +1002552e: 4620 mov r0, r4 +10025530: 4629 mov r1, r5 +10025532: f7ff fb29 bl 10024b88 +10025536: b00d add sp, #52 ; 0x34 +10025538: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1002553c: 1004a63b .word 0x1004a63b +10025540: 1004b9eb .word 0x1004b9eb +10025544: 1004da10 .word 0x1004da10 + +10025548 : +10025548: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002554c: 4604 mov r4, r0 +1002554e: b089 sub sp, #36 ; 0x24 +10025550: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +10025554: 4688 mov r8, r1 +10025556: 4691 mov r9, r2 +10025558: f7ff fa9e bl 10024a98 +1002555c: 4605 mov r5, r0 +1002555e: 2800 cmp r0, #0 +10025560: f000 811e beq.w 100257a0 +10025564: 4620 mov r0, r4 +10025566: f105 0108 add.w r1, r5, #8 +1002556a: f7ff fab4 bl 10024ad6 +1002556e: 2268 movs r2, #104 ; 0x68 +10025570: f8d5 0080 ldr.w r0, [r5, #128] ; 0x80 +10025574: 2100 movs r1, #0 +10025576: f7f7 fc2b bl 1001cdd0 +1002557a: f8d5 6080 ldr.w r6, [r5, #128] ; 0x80 +1002557e: 2300 movs r3, #0 +10025580: f886 3028 strb.w r3, [r6, #40] ; 0x28 +10025584: f886 3029 strb.w r3, [r6, #41] ; 0x29 +10025588: 8ff3 ldrh r3, [r6, #62] ; 0x3e +1002558a: f8b4 24f4 ldrh.w r2, [r4, #1268] ; 0x4f4 +1002558e: f003 030f and.w r3, r3, #15 +10025592: ea43 1302 orr.w r3, r3, r2, lsl #4 +10025596: 87f3 strh r3, [r6, #62] ; 0x3e +10025598: f8b4 34f4 ldrh.w r3, [r4, #1268] ; 0x4f4 +1002559c: 2218 movs r2, #24 +1002559e: 3301 adds r3, #1 +100255a0: f8a4 34f4 strh.w r3, [r4, #1268] ; 0x4f4 +100255a4: 8d33 ldrh r3, [r6, #40] ; 0x28 +100255a6: 462f mov r7, r5 +100255a8: f023 03fc bic.w r3, r3, #252 ; 0xfc +100255ac: f043 03b0 orr.w r3, r3, #176 ; 0xb0 +100255b0: 8533 strh r3, [r6, #40] ; 0x28 +100255b2: f106 0332 add.w r3, r6, #50 ; 0x32 +100255b6: f504 5aa0 add.w sl, r4, #5120 ; 0x1400 +100255ba: 9304 str r3, [sp, #16] +100255bc: f106 0338 add.w r3, r6, #56 ; 0x38 +100255c0: f847 2f14 str.w r2, [r7, #20]! +100255c4: f106 0b40 add.w fp, r6, #64 ; 0x40 +100255c8: f106 022c add.w r2, r6, #44 ; 0x2c +100255cc: f10a 0a08 add.w sl, sl, #8 +100255d0: 9305 str r3, [sp, #20] +100255d2: f1b8 0f00 cmp.w r8, #0 +100255d6: d048 beq.n 1002566a +100255d8: f10a 0601 add.w r6, sl, #1 +100255dc: 4610 mov r0, r2 +100255de: f508 7184 add.w r1, r8, #264 ; 0x108 +100255e2: 2206 movs r2, #6 +100255e4: f7f7 fbe2 bl 1001cdac +100255e8: 4631 mov r1, r6 +100255ea: 9804 ldr r0, [sp, #16] +100255ec: 2206 movs r2, #6 +100255ee: f7f7 fbdd bl 1001cdac +100255f2: 4631 mov r1, r6 +100255f4: 9805 ldr r0, [sp, #20] +100255f6: 2206 movs r2, #6 +100255f8: f7f7 fbd8 bl 1001cdac +100255fc: f8d8 2234 ldr.w r2, [r8, #564] ; 0x234 +10025600: f1b9 0f00 cmp.w r9, #0 +10025604: bf18 it ne +10025606: 2200 movne r2, #0 +10025608: ae08 add r6, sp, #32 +1002560a: f826 2d06 strh.w r2, [r6, #-6]! +1002560e: 2102 movs r1, #2 +10025610: 463b mov r3, r7 +10025612: fa1f fa82 uxth.w sl, r2 +10025616: 4658 mov r0, fp +10025618: 4632 mov r2, r6 +1002561a: f01e f909 bl 10043830 <__rtw_set_fixed_ie_veneer> +1002561e: f8d8 3230 ldr.w r3, [r8, #560] ; 0x230 +10025622: 2102 movs r1, #2 +10025624: f8ad 301a strh.w r3, [sp, #26] +10025628: 4632 mov r2, r6 +1002562a: 463b mov r3, r7 +1002562c: f01e f900 bl 10043830 <__rtw_set_fixed_ie_veneer> +10025630: 463b mov r3, r7 +10025632: 2102 movs r1, #2 +10025634: 4632 mov r2, r6 +10025636: f8ad 901a strh.w r9, [sp, #26] +1002563a: f01e f8f9 bl 10043830 <__rtw_set_fixed_ie_veneer> +1002563e: f8d8 3230 ldr.w r3, [r8, #560] ; 0x230 +10025642: 2b02 cmp r3, #2 +10025644: f040 808b bne.w 1002575e +10025648: f8d8 30f8 ldr.w r3, [r8, #248] ; 0xf8 +1002564c: 059e lsls r6, r3, #22 +1002564e: f140 8086 bpl.w 1002575e +10025652: f1ba 0f00 cmp.w sl, #0 +10025656: f000 8082 beq.w 1002575e +1002565a: 9700 str r7, [sp, #0] +1002565c: 2110 movs r1, #16 +1002565e: 2280 movs r2, #128 ; 0x80 +10025660: f508 730e add.w r3, r8, #568 ; 0x238 +10025664: f01e f874 bl 10043750 <__rtw_set_ie_veneer> +10025668: e079 b.n 1002575e +1002566a: f104 0898 add.w r8, r4, #152 ; 0x98 +1002566e: 4640 mov r0, r8 +10025670: 9203 str r2, [sp, #12] +10025672: f008 fbf8 bl 1002de66 +10025676: 9a03 ldr r2, [sp, #12] +10025678: 4601 mov r1, r0 +1002567a: 4610 mov r0, r2 +1002567c: 2206 movs r2, #6 +1002567e: f7f7 fb95 bl 1001cdac +10025682: f10a 0101 add.w r1, sl, #1 +10025686: 2206 movs r2, #6 +10025688: 9804 ldr r0, [sp, #16] +1002568a: f7f7 fb8f bl 1001cdac +1002568e: 4640 mov r0, r8 +10025690: f008 fbe9 bl 1002de66 +10025694: 2206 movs r2, #6 +10025696: 4601 mov r1, r0 +10025698: 9805 ldr r0, [sp, #20] +1002569a: f7f7 fb87 bl 1001cdac +1002569e: f8d4 260c ldr.w r2, [r4, #1548] ; 0x60c +100256a2: 1e51 subs r1, r2, #1 +100256a4: f8d4 2608 ldr.w r2, [r4, #1544] ; 0x608 +100256a8: f1d1 0800 rsbs r8, r1, #0 +100256ac: eb58 0801 adcs.w r8, r8, r1 +100256b0: 2a03 cmp r2, #3 +100256b2: f8ad 801a strh.w r8, [sp, #26] +100256b6: d11a bne.n 100256ee +100256b8: f8d4 25f8 ldr.w r2, [r4, #1528] ; 0x5f8 +100256bc: 0592 lsls r2, r2, #22 +100256be: d516 bpl.n 100256ee +100256c0: f1b8 0f00 cmp.w r8, #0 +100256c4: d013 beq.n 100256ee +100256c6: f8d4 261c ldr.w r2, [r4, #1564] ; 0x61c +100256ca: 4658 mov r0, fp +100256cc: 1c51 adds r1, r2, #1 +100256ce: f8c4 161c str.w r1, [r4, #1564] ; 0x61c +100256d2: f8d4 1618 ldr.w r1, [r4, #1560] ; 0x618 +100256d6: 463b mov r3, r7 +100256d8: ea42 7181 orr.w r1, r2, r1, lsl #30 +100256dc: aa08 add r2, sp, #32 +100256de: f842 1d04 str.w r1, [r2, #-4]! +100256e2: 2104 movs r1, #4 +100256e4: f01e f8a4 bl 10043830 <__rtw_set_fixed_ie_veneer> +100256e8: 2204 movs r2, #4 +100256ea: 4683 mov fp, r0 +100256ec: 776a strb r2, [r5, #29] +100256ee: 2102 movs r1, #2 +100256f0: f10d 021a add.w r2, sp, #26 +100256f4: 463b mov r3, r7 +100256f6: 4658 mov r0, fp +100256f8: f01e f89a bl 10043830 <__rtw_set_fixed_ie_veneer> +100256fc: f8d4 3608 ldr.w r3, [r4, #1544] ; 0x608 +10025700: 2102 movs r1, #2 +10025702: f8ad 301a strh.w r3, [sp, #26] +10025706: f10d 021a add.w r2, sp, #26 +1002570a: 463b mov r3, r7 +1002570c: f01e f890 bl 10043830 <__rtw_set_fixed_ie_veneer> +10025710: 463b mov r3, r7 +10025712: 2102 movs r1, #2 +10025714: f10d 021a add.w r2, sp, #26 +10025718: f8ad 901a strh.w r9, [sp, #26] +1002571c: f01e f888 bl 10043830 <__rtw_set_fixed_ie_veneer> +10025720: f8d4 3608 ldr.w r3, [r4, #1544] ; 0x608 +10025724: 2b03 cmp r3, #3 +10025726: d11a bne.n 1002575e +10025728: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +1002572c: 059b lsls r3, r3, #22 +1002572e: d516 bpl.n 1002575e +10025730: f1b8 0f00 cmp.w r8, #0 +10025734: d013 beq.n 1002575e +10025736: f504 63c4 add.w r3, r4, #1568 ; 0x620 +1002573a: 9700 str r7, [sp, #0] +1002573c: 2110 movs r1, #16 +1002573e: 2280 movs r2, #128 ; 0x80 +10025740: f01e f806 bl 10043750 <__rtw_set_ie_veneer> +10025744: 8d33 ldrh r3, [r6, #40] ; 0x28 +10025746: f443 4380 orr.w r3, r3, #16384 ; 0x4000 +1002574a: 8533 strh r3, [r6, #40] ; 0x28 +1002574c: 2318 movs r3, #24 +1002574e: 826b strh r3, [r5, #18] +10025750: 2304 movs r3, #4 +10025752: 77ab strb r3, [r5, #30] +10025754: 696b ldr r3, [r5, #20] +10025756: f885 801c strb.w r8, [r5, #28] +1002575a: 3304 adds r3, #4 +1002575c: 616b str r3, [r5, #20] +1002575e: 696b ldr r3, [r5, #20] +10025760: f240 6252 movw r2, #1618 ; 0x652 +10025764: 61ab str r3, [r5, #24] +10025766: 3328 adds r3, #40 ; 0x28 +10025768: 4293 cmp r3, r2 +1002576a: d907 bls.n 1002577c +1002576c: 480e ldr r0, [pc, #56] ; (100257a8 ) +1002576e: f01c fccb bl 10042108 +10025772: 4b0e ldr r3, [pc, #56] ; (100257ac ) +10025774: f8d3 017c ldr.w r0, [r3, #380] ; 0x17c +10025778: f01c fcc6 bl 10042108 +1002577c: 4620 mov r0, r4 +1002577e: 4629 mov r1, r5 +10025780: f007 fd4c bl 1002d21c +10025784: f8d4 30d0 ldr.w r3, [r4, #208] ; 0xd0 +10025788: aa08 add r2, sp, #32 +1002578a: 336e adds r3, #110 ; 0x6e +1002578c: 4620 mov r0, r4 +1002578e: 2133 movs r1, #51 ; 0x33 +10025790: f802 3d07 strb.w r3, [r2, #-7]! +10025794: f012 f8c9 bl 1003792a +10025798: 4620 mov r0, r4 +1002579a: 4629 mov r1, r5 +1002579c: f7ff f9f4 bl 10024b88 +100257a0: b009 add sp, #36 ; 0x24 +100257a2: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100257a6: bf00 nop +100257a8: 1004b9eb .word 0x1004b9eb +100257ac: 1004da10 .word 0x1004da10 + +100257b0 : +100257b0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100257b4: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +100257b8: f8d1 b078 ldr.w fp, [r1, #120] ; 0x78 +100257bc: f003 0303 and.w r3, r3, #3 +100257c0: 6f09 ldr r1, [r1, #112] ; 0x70 +100257c2: b089 sub sp, #36 ; 0x24 +100257c4: 2b03 cmp r3, #3 +100257c6: 4604 mov r4, r0 +100257c8: 9105 str r1, [sp, #20] +100257ca: d007 beq.n 100257dc +100257cc: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +100257d0: f003 0303 and.w r3, r3, #3 +100257d4: 2b03 cmp r3, #3 +100257d6: f040 812b bne.w 10025a30 +100257da: e006 b.n 100257ea +100257dc: f44f 6108 mov.w r1, #2176 ; 0x880 +100257e0: f7ff f835 bl 1002484e +100257e4: 2800 cmp r0, #0 +100257e6: d0f1 beq.n 100257cc +100257e8: e103 b.n 100259f2 +100257ea: 4a96 ldr r2, [pc, #600] ; (10025a44 ) +100257ec: f10b 050a add.w r5, fp, #10 +100257f0: 6813 ldr r3, [r2, #0] +100257f2: 4617 mov r7, r2 +100257f4: b9d3 cbnz r3, 1002582c +100257f6: 4894 ldr r0, [pc, #592] ; (10025a48 ) +100257f8: f01c fc86 bl 10042108 +100257fc: 78e8 ldrb r0, [r5, #3] +100257fe: f89b 100a ldrb.w r1, [fp, #10] +10025802: 786a ldrb r2, [r5, #1] +10025804: 78ab ldrb r3, [r5, #2] +10025806: 9000 str r0, [sp, #0] +10025808: 7928 ldrb r0, [r5, #4] +1002580a: 4f90 ldr r7, [pc, #576] ; (10025a4c ) +1002580c: 9001 str r0, [sp, #4] +1002580e: 7968 ldrb r0, [r5, #5] +10025810: 9002 str r0, [sp, #8] +10025812: f8d7 014c ldr.w r0, [r7, #332] ; 0x14c +10025816: f01c fc77 bl 10042108 +1002581a: f8d4 6c78 ldr.w r6, [r4, #3192] ; 0xc78 +1002581e: f8bb a01a ldrh.w sl, [fp, #26] +10025822: 2e02 cmp r6, #2 +10025824: f8bb 8018 ldrh.w r8, [fp, #24] +10025828: d11a bne.n 10025860 +1002582a: e00e b.n 1002584a +1002582c: 681e ldr r6, [r3, #0] +1002582e: 683b ldr r3, [r7, #0] +10025830: 429e cmp r6, r3 +10025832: d0e0 beq.n 100257f6 +10025834: f106 0008 add.w r0, r6, #8 +10025838: 4629 mov r1, r5 +1002583a: 2206 movs r2, #6 +1002583c: f01c fc8a bl 10042154 +10025840: 2800 cmp r0, #0 +10025842: f000 80f7 beq.w 10025a34 +10025846: 6836 ldr r6, [r6, #0] +10025848: e7f1 b.n 1002582e +1002584a: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +1002584e: f023 0304 bic.w r3, r3, #4 +10025852: 2b01 cmp r3, #1 +10025854: bf18 it ne +10025856: 2600 movne r6, #0 +10025858: f1b8 0f00 cmp.w r8, #0 +1002585c: d103 bne.n 10025866 +1002585e: e009 b.n 10025874 +10025860: f1b8 0f00 cmp.w r8, #0 +10025864: d003 beq.n 1002586e +10025866: 2e00 cmp r6, #0 +10025868: f000 80e6 beq.w 10025a38 +1002586c: e002 b.n 10025874 +1002586e: 2e01 cmp r6, #1 +10025870: f000 80e2 beq.w 10025a38 +10025874: 4a76 ldr r2, [pc, #472] ; (10025a50 ) +10025876: f504 693d add.w r9, r4, #3024 ; 0xbd0 +1002587a: 7811 ldrb r1, [r2, #0] +1002587c: f8d4 2c14 ldr.w r2, [r4, #3092] ; 0xc14 +10025880: 428a cmp r2, r1 +10025882: da06 bge.n 10025892 +10025884: 4648 mov r0, r9 +10025886: 4629 mov r1, r5 +10025888: f008 f894 bl 1002d9b4 +1002588c: 4607 mov r7, r0 +1002588e: b9f8 cbnz r0, 100258d0 +10025890: e006 b.n 100258a0 +10025892: 4648 mov r0, r9 +10025894: 4629 mov r1, r5 +10025896: f008 f88d bl 1002d9b4 +1002589a: 2800 cmp r0, #0 +1002589c: d1f2 bne.n 10025884 +1002589e: e0c9 b.n 10025a34 +100258a0: 4648 mov r0, r9 +100258a2: 4629 mov r1, r5 +100258a4: f007 ff50 bl 1002d748 +100258a8: 4607 mov r7, r0 +100258aa: b948 cbnz r0, 100258c0 +100258ac: 4866 ldr r0, [pc, #408] ; (10025a48 ) +100258ae: f01c fc2b bl 10042108 +100258b2: 4a66 ldr r2, [pc, #408] ; (10025a4c ) +100258b4: 2103 movs r1, #3 +100258b6: f8d2 0150 ldr.w r0, [r2, #336] ; 0x150 +100258ba: f01c fc25 bl 10042108 +100258be: e0b9 b.n 10025a34 +100258c0: f44f 7380 mov.w r3, #256 ; 0x100 +100258c4: f8c0 30f8 str.w r3, [r0, #248] ; 0xf8 +100258c8: 2300 movs r3, #0 +100258ca: f8c0 3230 str.w r3, [r0, #560] ; 0x230 +100258ce: e014 b.n 100258fa +100258d0: f604 4944 addw r9, r4, #3140 ; 0xc44 +100258d4: 4648 mov r0, r9 +100258d6: a906 add r1, sp, #24 +100258d8: f7f7 fb0e bl 1001cef8 +100258dc: f507 7307 add.w r3, r7, #540 ; 0x21c +100258e0: 4618 mov r0, r3 +100258e2: 9304 str r3, [sp, #16] +100258e4: f7f7 fa80 bl 1001cde8 +100258e8: 9b04 ldr r3, [sp, #16] +100258ea: b910 cbnz r0, 100258f2 +100258ec: 4618 mov r0, r3 +100258ee: f7f7 fa8d bl 1001ce0c +100258f2: 4648 mov r0, r9 +100258f4: a906 add r1, sp, #24 +100258f6: f7f7 fb07 bl 1001cf08 +100258fa: f604 4948 addw r9, r4, #3144 ; 0xc48 +100258fe: 4648 mov r0, r9 +10025900: a906 add r1, sp, #24 +10025902: f7f7 faf9 bl 1001cef8 +10025906: f507 7309 add.w r3, r7, #548 ; 0x224 +1002590a: 4618 mov r0, r3 +1002590c: 9304 str r3, [sp, #16] +1002590e: f7f7 fa6b bl 1001cde8 +10025912: 9b04 ldr r3, [sp, #16] +10025914: b120 cbz r0, 10025920 +10025916: 4618 mov r0, r3 +10025918: f604 413c addw r1, r4, #3132 ; 0xc3c +1002591c: f7f7 fa70 bl 1001ce00 +10025920: 4648 mov r0, r9 +10025922: a906 add r1, sp, #24 +10025924: f7f7 faf0 bl 1001cf08 +10025928: f8d7 9230 ldr.w r9, [r7, #560] ; 0x230 +1002592c: f1b9 0f00 cmp.w r9, #0 +10025930: d103 bne.n 1002593a +10025932: f8d4 3c4c ldr.w r3, [r4, #3148] ; 0xc4c +10025936: f8c7 322c str.w r3, [r7, #556] ; 0x22c +1002593a: f109 0301 add.w r3, r9, #1 +1002593e: 4553 cmp r3, sl +10025940: d159 bne.n 100259f6 +10025942: f1b8 0f00 cmp.w r8, #0 +10025946: d112 bne.n 1002596e +10025948: f036 0202 bics.w r2, r6, #2 +1002594c: d10f bne.n 1002596e +1002594e: f1ba 0f01 cmp.w sl, #1 +10025952: d150 bne.n 100259f6 +10025954: f8d7 30f8 ldr.w r3, [r7, #248] ; 0xf8 +10025958: f423 7380 bic.w r3, r3, #256 ; 0x100 +1002595c: f443 6380 orr.w r3, r3, #1024 ; 0x400 +10025960: f8c7 30f8 str.w r3, [r7, #248] ; 0xf8 +10025964: f8d4 3c50 ldr.w r3, [r4, #3152] ; 0xc50 +10025968: f8c7 322c str.w r3, [r7, #556] ; 0x22c +1002596c: e009 b.n 10025982 +1002596e: 2b01 cmp r3, #1 +10025970: d10a bne.n 10025988 +10025972: f8d7 30f8 ldr.w r3, [r7, #248] ; 0xf8 +10025976: f423 7380 bic.w r3, r3, #256 ; 0x100 +1002597a: f443 7300 orr.w r3, r3, #512 ; 0x200 +1002597e: f8c7 30f8 str.w r3, [r7, #248] ; 0xf8 +10025982: f8c7 8234 str.w r8, [r7, #564] ; 0x234 +10025986: e024 b.n 100259d2 +10025988: 2b03 cmp r3, #3 +1002598a: d134 bne.n 100259f6 +1002598c: 9e05 ldr r6, [sp, #20] +1002598e: f10b 0022 add.w r0, fp, #34 ; 0x22 +10025992: 2110 movs r1, #16 +10025994: aa07 add r2, sp, #28 +10025996: f1a6 0322 sub.w r3, r6, #34 ; 0x22 +1002599a: f01d ffa9 bl 100438f0 <__rtw_get_ie_veneer> +1002599e: b908 cbnz r0, 100259a4 +100259a0: 260f movs r6, #15 +100259a2: e029 b.n 100259f8 +100259a4: 9b07 ldr r3, [sp, #28] +100259a6: 2b00 cmp r3, #0 +100259a8: d0fa beq.n 100259a0 +100259aa: 3002 adds r0, #2 +100259ac: f507 710e add.w r1, r7, #568 ; 0x238 +100259b0: 2280 movs r2, #128 ; 0x80 +100259b2: f7f7 fa03 bl 1001cdbc +100259b6: 2800 cmp r0, #0 +100259b8: d0f2 beq.n 100259a0 +100259ba: f8d7 30f8 ldr.w r3, [r7, #248] ; 0xf8 +100259be: f423 7300 bic.w r3, r3, #512 ; 0x200 +100259c2: f443 6380 orr.w r3, r3, #1024 ; 0x400 +100259c6: f8c7 30f8 str.w r3, [r7, #248] ; 0xf8 +100259ca: f8d4 3c50 ldr.w r3, [r4, #3152] ; 0xc50 +100259ce: f8c7 322c str.w r3, [r7, #556] ; 0x22c +100259d2: f109 0302 add.w r3, r9, #2 +100259d6: f8c7 3230 str.w r3, [r7, #560] ; 0x230 +100259da: 4620 mov r0, r4 +100259dc: 4639 mov r1, r7 +100259de: 2200 movs r2, #0 +100259e0: f7ff fdb2 bl 10025548 +100259e4: f8d7 30f8 ldr.w r3, [r7, #248] ; 0xf8 +100259e8: 055b lsls r3, r3, #21 +100259ea: bf44 itt mi +100259ec: 2300 movmi r3, #0 +100259ee: f8c7 3230 strmi.w r3, [r7, #560] ; 0x230 +100259f2: 2001 movs r0, #1 +100259f4: e022 b.n 10025a3c +100259f6: 260e movs r6, #14 +100259f8: 4620 mov r0, r4 +100259fa: 4639 mov r1, r7 +100259fc: f007 ff09 bl 1002d812 +10025a00: f44f 7050 mov.w r0, #832 ; 0x340 +10025a04: f7f7 f9b4 bl 1001cd70 +10025a08: 4607 mov r7, r0 +10025a0a: b188 cbz r0, 10025a30 +10025a0c: 2302 movs r3, #2 +10025a0e: f8c0 3230 str.w r3, [r0, #560] ; 0x230 +10025a12: 4629 mov r1, r5 +10025a14: f500 7084 add.w r0, r0, #264 ; 0x108 +10025a18: 2206 movs r2, #6 +10025a1a: f7f7 f9c7 bl 1001cdac +10025a1e: 4620 mov r0, r4 +10025a20: 4639 mov r1, r7 +10025a22: 4632 mov r2, r6 +10025a24: f7ff fd90 bl 10025548 +10025a28: 4638 mov r0, r7 +10025a2a: 2100 movs r1, #0 +10025a2c: f7f7 f9b6 bl 1001cd9c +10025a30: 2000 movs r0, #0 +10025a32: e003 b.n 10025a3c +10025a34: 2611 movs r6, #17 +10025a36: e7e3 b.n 10025a00 +10025a38: 260d movs r6, #13 +10025a3a: e7e1 b.n 10025a00 +10025a3c: b009 add sp, #36 ; 0x24 +10025a3e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10025a42: bf00 nop +10025a44: 100530e0 .word 0x100530e0 +10025a48: 1004b9eb .word 0x1004b9eb +10025a4c: 1004da10 .word 0x1004da10 +10025a50: 1004d9c0 .word 0x1004d9c0 + +10025a54 : +10025a54: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10025a58: 4604 mov r4, r0 +10025a5a: b086 sub sp, #24 +10025a5c: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +10025a60: 4690 mov r8, r2 +10025a62: 461f mov r7, r3 +10025a64: f8ad 100e strh.w r1, [sp, #14] +10025a68: f7ff f816 bl 10024a98 +10025a6c: 4605 mov r5, r0 +10025a6e: 2800 cmp r0, #0 +10025a70: f000 811e beq.w 10025cb0 +10025a74: 4620 mov r0, r4 +10025a76: f105 0108 add.w r1, r5, #8 +10025a7a: f7ff f82c bl 10024ad6 +10025a7e: f8d5 0080 ldr.w r0, [r5, #128] ; 0x80 +10025a82: 2100 movs r1, #0 +10025a84: 2268 movs r2, #104 ; 0x68 +10025a86: f7f7 f9a3 bl 1001cdd0 +10025a8a: f8d5 6080 ldr.w r6, [r5, #128] ; 0x80 +10025a8e: 2300 movs r3, #0 +10025a90: f886 3028 strb.w r3, [r6, #40] ; 0x28 +10025a94: f886 3029 strb.w r3, [r6, #41] ; 0x29 +10025a98: f106 002c add.w r0, r6, #44 ; 0x2c +10025a9c: f508 7184 add.w r1, r8, #264 ; 0x108 +10025aa0: 2206 movs r2, #6 +10025aa2: f7f7 f983 bl 1001cdac +10025aa6: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10025aaa: 3109 adds r1, #9 +10025aac: 2206 movs r2, #6 +10025aae: f106 0032 add.w r0, r6, #50 ; 0x32 +10025ab2: f7f7 f97b bl 1001cdac +10025ab6: f104 0098 add.w r0, r4, #152 ; 0x98 +10025aba: f008 f9d4 bl 1002de66 +10025abe: 2206 movs r2, #6 +10025ac0: 4601 mov r1, r0 +10025ac2: f106 0038 add.w r0, r6, #56 ; 0x38 +10025ac6: f7f7 f971 bl 1001cdac +10025aca: 8ff3 ldrh r3, [r6, #62] ; 0x3e +10025acc: f8b4 24f4 ldrh.w r2, [r4, #1268] ; 0x4f4 +10025ad0: f003 030f and.w r3, r3, #15 +10025ad4: ea43 1302 orr.w r3, r3, r2, lsl #4 +10025ad8: 87f3 strh r3, [r6, #62] ; 0x3e +10025ada: f8b4 34f4 ldrh.w r3, [r4, #1268] ; 0x4f4 +10025ade: 3301 adds r3, #1 +10025ae0: f8a4 34f4 strh.w r3, [r4, #1268] ; 0x4f4 +10025ae4: f027 0320 bic.w r3, r7, #32 +10025ae8: 2b10 cmp r3, #16 +10025aea: f040 80e1 bne.w 10025cb0 +10025aee: 8d33 ldrh r3, [r6, #40] ; 0x28 +10025af0: f504 708a add.w r0, r4, #276 ; 0x114 +10025af4: f023 03fc bic.w r3, r3, #252 ; 0xfc +10025af8: 431f orrs r7, r3 +10025afa: 2318 movs r3, #24 +10025afc: 8537 strh r7, [r6, #40] ; 0x28 +10025afe: 826b strh r3, [r5, #18] +10025b00: 696b ldr r3, [r5, #20] +10025b02: 462f mov r7, r5 +10025b04: 3318 adds r3, #24 +10025b06: f847 3f14 str.w r3, [r7, #20]! +10025b0a: f7fd feff bl 1002390c +10025b0e: 8803 ldrh r3, [r0, #0] +10025b10: f106 0940 add.w r9, r6, #64 ; 0x40 +10025b14: ae06 add r6, sp, #24 +10025b16: f826 3d06 strh.w r3, [r6, #-6]! +10025b1a: 2102 movs r1, #2 +10025b1c: 4632 mov r2, r6 +10025b1e: 463b mov r3, r7 +10025b20: 4648 mov r0, r9 +10025b22: f01d fe85 bl 10043830 <__rtw_set_fixed_ie_veneer> +10025b26: 2102 movs r1, #2 +10025b28: f10d 020e add.w r2, sp, #14 +10025b2c: 463b mov r3, r7 +10025b2e: f01d fe7f bl 10043830 <__rtw_set_fixed_ie_veneer> +10025b32: f8d8 30fc ldr.w r3, [r8, #252] ; 0xfc +10025b36: 2102 movs r1, #2 +10025b38: ea6f 4383 mvn.w r3, r3, lsl #18 +10025b3c: ea6f 4393 mvn.w r3, r3, lsr #18 +10025b40: f8ad 3012 strh.w r3, [sp, #18] +10025b44: 4632 mov r2, r6 +10025b46: 463b mov r3, r7 +10025b48: f01d fe72 bl 10043830 <__rtw_set_fixed_ie_veneer> +10025b4c: f8d8 2168 ldr.w r2, [r8, #360] ; 0x168 +10025b50: 2101 movs r1, #1 +10025b52: 2a08 cmp r2, #8 +10025b54: 9700 str r7, [sp, #0] +10025b56: f508 73ac add.w r3, r8, #344 ; 0x158 +10025b5a: d909 bls.n 10025b70 +10025b5c: 2208 movs r2, #8 +10025b5e: f01d fdf7 bl 10043750 <__rtw_set_ie_veneer> +10025b62: f8d8 2168 ldr.w r2, [r8, #360] ; 0x168 +10025b66: 2132 movs r1, #50 ; 0x32 +10025b68: 9700 str r7, [sp, #0] +10025b6a: 3a08 subs r2, #8 +10025b6c: f508 73b0 add.w r3, r8, #352 ; 0x160 +10025b70: f01d fdee bl 10043750 <__rtw_set_ie_veneer> +10025b74: f8d8 32bc ldr.w r3, [r8, #700] ; 0x2bc +10025b78: 4606 mov r6, r0 +10025b7a: 051a lsls r2, r3, #20 +10025b7c: d538 bpl.n 10025bf0 +10025b7e: f8d4 3454 ldr.w r3, [r4, #1108] ; 0x454 +10025b82: 2b00 cmp r3, #0 +10025b84: d034 beq.n 10025bf0 +10025b86: f10d 0918 add.w r9, sp, #24 +10025b8a: 2300 movs r3, #0 +10025b8c: f849 3d04 str.w r3, [r9, #-4]! +10025b90: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10025b94: f504 7a90 add.w sl, r4, #288 ; 0x120 +10025b98: 212d movs r1, #45 ; 0x2d +10025b9a: 4650 mov r0, sl +10025b9c: 464a mov r2, r9 +10025b9e: 3b0c subs r3, #12 +10025ba0: f01d fea6 bl 100438f0 <__rtw_get_ie_veneer> +10025ba4: 4601 mov r1, r0 +10025ba6: b160 cbz r0, 10025bc2 +10025ba8: 9a05 ldr r2, [sp, #20] +10025baa: b152 cbz r2, 10025bc2 +10025bac: 4630 mov r0, r6 +10025bae: 3202 adds r2, #2 +10025bb0: f7f7 f8fc bl 1001cdac +10025bb4: 9b05 ldr r3, [sp, #20] +10025bb6: 1c9a adds r2, r3, #2 +10025bb8: 4416 add r6, r2 +10025bba: 696a ldr r2, [r5, #20] +10025bbc: 4413 add r3, r2 +10025bbe: 3302 adds r3, #2 +10025bc0: 616b str r3, [r5, #20] +10025bc2: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10025bc6: 213d movs r1, #61 ; 0x3d +10025bc8: 4650 mov r0, sl +10025bca: 464a mov r2, r9 +10025bcc: 3b0c subs r3, #12 +10025bce: f01d fe8f bl 100438f0 <__rtw_get_ie_veneer> +10025bd2: 4601 mov r1, r0 +10025bd4: b160 cbz r0, 10025bf0 +10025bd6: 9a05 ldr r2, [sp, #20] +10025bd8: b152 cbz r2, 10025bf0 +10025bda: 4630 mov r0, r6 +10025bdc: 3202 adds r2, #2 +10025bde: f7f7 f8e5 bl 1001cdac +10025be2: 9b05 ldr r3, [sp, #20] +10025be4: 1c9a adds r2, r3, #2 +10025be6: 4416 add r6, r2 +10025be8: 696a ldr r2, [r5, #20] +10025bea: 4413 add r3, r2 +10025bec: 3302 adds r3, #2 +10025bee: 616b str r3, [r5, #20] +10025bf0: f8d8 32bc ldr.w r3, [r8, #700] ; 0x2bc +10025bf4: 059b lsls r3, r3, #22 +10025bf6: d527 bpl.n 10025c48 +10025bf8: f8d4 344c ldr.w r3, [r4, #1100] ; 0x44c +10025bfc: b323 cbz r3, 10025c48 +10025bfe: 2300 movs r3, #0 +10025c00: 9305 str r3, [sp, #20] +10025c02: f504 7090 add.w r0, r4, #288 ; 0x120 +10025c06: f8d4 e110 ldr.w lr, [r4, #272] ; 0x110 +10025c0a: 9b05 ldr r3, [sp, #20] +10025c0c: f1ae 0e0e sub.w lr, lr, #14 +10025c10: 21dd movs r1, #221 ; 0xdd +10025c12: aa05 add r2, sp, #20 +10025c14: ebc3 030e rsb r3, r3, lr +10025c18: f01d fe6a bl 100438f0 <__rtw_get_ie_veneer> +10025c1c: 4680 mov r8, r0 +10025c1e: b198 cbz r0, 10025c48 +10025c20: 2206 movs r2, #6 +10025c22: 3002 adds r0, #2 +10025c24: 4924 ldr r1, [pc, #144] ; (10025cb8 ) +10025c26: f7f7 f8c9 bl 1001cdbc +10025c2a: 9a05 ldr r2, [sp, #20] +10025c2c: 2800 cmp r0, #0 +10025c2e: d039 beq.n 10025ca4 +10025c30: 4630 mov r0, r6 +10025c32: 3202 adds r2, #2 +10025c34: 4641 mov r1, r8 +10025c36: f7f7 f8b9 bl 1001cdac +10025c3a: 9b05 ldr r3, [sp, #20] +10025c3c: 1c9a adds r2, r3, #2 +10025c3e: 4416 add r6, r2 +10025c40: 696a ldr r2, [r5, #20] +10025c42: 4413 add r3, r2 +10025c44: 3302 adds r3, #2 +10025c46: 616b str r3, [r5, #20] +10025c48: f894 36a6 ldrb.w r3, [r4, #1702] ; 0x6a6 +10025c4c: 2b01 cmp r3, #1 +10025c4e: d107 bne.n 10025c60 +10025c50: 4630 mov r0, r6 +10025c52: 9700 str r7, [sp, #0] +10025c54: 21dd movs r1, #221 ; 0xdd +10025c56: 2206 movs r2, #6 +10025c58: 4b18 ldr r3, [pc, #96] ; (10025cbc ) +10025c5a: f01d fd79 bl 10043750 <__rtw_set_ie_veneer> +10025c5e: 4606 mov r6, r0 +10025c60: f8d4 14cc ldr.w r1, [r4, #1228] ; 0x4cc +10025c64: b151 cbz r1, 10025c7c +10025c66: f8d4 24d8 ldr.w r2, [r4, #1240] ; 0x4d8 +10025c6a: b13a cbz r2, 10025c7c +10025c6c: 4630 mov r0, r6 +10025c6e: f7f7 f89d bl 1001cdac +10025c72: 696a ldr r2, [r5, #20] +10025c74: f8d4 34d8 ldr.w r3, [r4, #1240] ; 0x4d8 +10025c78: 4413 add r3, r2 +10025c7a: 616b str r3, [r5, #20] +10025c7c: 696b ldr r3, [r5, #20] +10025c7e: f240 6252 movw r2, #1618 ; 0x652 +10025c82: 61ab str r3, [r5, #24] +10025c84: 3328 adds r3, #40 ; 0x28 +10025c86: 4293 cmp r3, r2 +10025c88: d907 bls.n 10025c9a +10025c8a: 480d ldr r0, [pc, #52] ; (10025cc0 ) +10025c8c: f01c fa3c bl 10042108 +10025c90: 4b0c ldr r3, [pc, #48] ; (10025cc4 ) +10025c92: f8d3 0180 ldr.w r0, [r3, #384] ; 0x180 +10025c96: f01c fa37 bl 10042108 +10025c9a: 4620 mov r0, r4 +10025c9c: 4629 mov r1, r5 +10025c9e: f7fe ff73 bl 10024b88 +10025ca2: e005 b.n 10025cb0 +10025ca4: 2a00 cmp r2, #0 +10025ca6: d0cf beq.n 10025c48 +10025ca8: 3202 adds r2, #2 +10025caa: eb08 0002 add.w r0, r8, r2 +10025cae: e7aa b.n 10025c06 +10025cb0: b006 add sp, #24 +10025cb2: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10025cb6: bf00 nop +10025cb8: 1004a714 .word 0x1004a714 +10025cbc: 1004a8eb .word 0x1004a8eb +10025cc0: 1004b9eb .word 0x1004b9eb +10025cc4: 1004da10 .word 0x1004da10 + +10025cc8 : +10025cc8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10025ccc: f600 0ac8 addw sl, r0, #2248 ; 0x8c8 +10025cd0: b08f sub sp, #60 ; 0x3c +10025cd2: 4604 mov r4, r0 +10025cd4: f100 0998 add.w r9, r0, #152 ; 0x98 +10025cd8: f04f 0800 mov.w r8, #0 +10025cdc: 4650 mov r0, sl +10025cde: f8cd 8014 str.w r8, [sp, #20] +10025ce2: f7fe fed9 bl 10024a98 +10025ce6: 4605 mov r5, r0 +10025ce8: 2800 cmp r0, #0 +10025cea: f000 817a beq.w 10025fe2 +10025cee: 4620 mov r0, r4 +10025cf0: f105 0108 add.w r1, r5, #8 +10025cf4: f7fe feef bl 10024ad6 +10025cf8: 4641 mov r1, r8 +10025cfa: 2268 movs r2, #104 ; 0x68 +10025cfc: f8d5 0080 ldr.w r0, [r5, #128] ; 0x80 +10025d00: f7f7 f866 bl 1001cdd0 +10025d04: f8d5 6080 ldr.w r6, [r5, #128] ; 0x80 +10025d08: 4648 mov r0, r9 +10025d0a: f886 8028 strb.w r8, [r6, #40] ; 0x28 +10025d0e: f886 8029 strb.w r8, [r6, #41] ; 0x29 +10025d12: f008 f8a8 bl 1002de66 +10025d16: 2206 movs r2, #6 +10025d18: 4601 mov r1, r0 +10025d1a: f106 002c add.w r0, r6, #44 ; 0x2c +10025d1e: f7f7 f845 bl 1001cdac +10025d22: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10025d26: f106 0032 add.w r0, r6, #50 ; 0x32 +10025d2a: 3109 adds r1, #9 +10025d2c: 2206 movs r2, #6 +10025d2e: f7f7 f83d bl 1001cdac +10025d32: 4648 mov r0, r9 +10025d34: f008 f897 bl 1002de66 +10025d38: 2206 movs r2, #6 +10025d3a: 4601 mov r1, r0 +10025d3c: f106 0038 add.w r0, r6, #56 ; 0x38 +10025d40: f7f7 f834 bl 1001cdac +10025d44: 8ff3 ldrh r3, [r6, #62] ; 0x3e +10025d46: f8b4 24f4 ldrh.w r2, [r4, #1268] ; 0x4f4 +10025d4a: f003 030f and.w r3, r3, #15 +10025d4e: ea43 1302 orr.w r3, r3, r2, lsl #4 +10025d52: 87f3 strh r3, [r6, #62] ; 0x3e +10025d54: f8b4 34f4 ldrh.w r3, [r4, #1268] ; 0x4f4 +10025d58: f504 708a add.w r0, r4, #276 ; 0x114 +10025d5c: 3301 adds r3, #1 +10025d5e: f8a4 34f4 strh.w r3, [r4, #1268] ; 0x4f4 +10025d62: 8d33 ldrh r3, [r6, #40] ; 0x28 +10025d64: 462f mov r7, r5 +10025d66: f023 03fc bic.w r3, r3, #252 ; 0xfc +10025d6a: 8533 strh r3, [r6, #40] ; 0x28 +10025d6c: 2318 movs r3, #24 +10025d6e: 616b str r3, [r5, #20] +10025d70: f7fd fdcc bl 1002390c +10025d74: 2202 movs r2, #2 +10025d76: 4601 mov r1, r0 +10025d78: f106 0040 add.w r0, r6, #64 ; 0x40 +10025d7c: f7f7 f816 bl 1001cdac +10025d80: 696b ldr r3, [r5, #20] +10025d82: a90e add r1, sp, #56 ; 0x38 +10025d84: 3302 adds r3, #2 +10025d86: 616b str r3, [r5, #20] +10025d88: 2303 movs r3, #3 +10025d8a: f821 3d2a strh.w r3, [r1, #-42]! +10025d8e: f106 0042 add.w r0, r6, #66 ; 0x42 +10025d92: 2202 movs r2, #2 +10025d94: f7f7 f80a bl 1001cdac +10025d98: 696b ldr r3, [r5, #20] +10025d9a: 4641 mov r1, r8 +10025d9c: 3302 adds r3, #2 +10025d9e: f847 3f14 str.w r3, [r7, #20]! +10025da2: f8d4 20a4 ldr.w r2, [r4, #164] ; 0xa4 +10025da6: f104 03a8 add.w r3, r4, #168 ; 0xa8 +10025daa: f106 0044 add.w r0, r6, #68 ; 0x44 +10025dae: 9700 str r7, [sp, #0] +10025db0: f01d fcce bl 10043750 <__rtw_set_ie_veneer> +10025db4: f10d 0b28 add.w fp, sp, #40 ; 0x28 +10025db8: 4680 mov r8, r0 +10025dba: 4659 mov r1, fp +10025dbc: 4620 mov r0, r4 +10025dbe: aa05 add r2, sp, #20 +10025dc0: f007 ff4e bl 1002dc60 +10025dc4: f894 34f6 ldrb.w r3, [r4, #1270] ; 0x4f6 +10025dc8: 2600 movs r6, #0 +10025dca: 2b0e cmp r3, #14 +10025dcc: bf04 itt eq +10025dce: 2304 moveq r3, #4 +10025dd0: 9305 streq r3, [sp, #20] +10025dd2: 9805 ldr r0, [sp, #20] +10025dd4: 4633 mov r3, r6 +10025dd6: eb09 0203 add.w r2, r9, r3 +10025dda: f892 1064 ldrb.w r1, [r2, #100] ; 0x64 +10025dde: b1a1 cbz r1, 10025e0a +10025de0: 2200 movs r2, #0 +10025de2: 4282 cmp r2, r0 +10025de4: d00e beq.n 10025e04 +10025de6: f81b e002 ldrb.w lr, [fp, r2] +10025dea: f041 0c80 orr.w ip, r1, #128 ; 0x80 +10025dee: f04e 0e80 orr.w lr, lr, #128 ; 0x80 +10025df2: 45f4 cmp ip, lr +10025df4: d001 beq.n 10025dfa +10025df6: 3201 adds r2, #1 +10025df8: e7f3 b.n 10025de2 +10025dfa: aa0e add r2, sp, #56 ; 0x38 +10025dfc: 4432 add r2, r6 +10025dfe: f802 1c20 strb.w r1, [r2, #-32] +10025e02: 3601 adds r6, #1 +10025e04: 3301 adds r3, #1 +10025e06: 2b10 cmp r3, #16 +10025e08: d1e5 bne.n 10025dd6 +10025e0a: b94e cbnz r6, 10025e20 +10025e0c: f8d5 1084 ldr.w r1, [r5, #132] ; 0x84 +10025e10: 4650 mov r0, sl +10025e12: f00a f87f bl 1002ff14 +10025e16: 4650 mov r0, sl +10025e18: 4629 mov r1, r5 +10025e1a: f009 f93b bl 1002f094 +10025e1e: e0e0 b.n 10025fe2 +10025e20: 2e08 cmp r6, #8 +10025e22: 9700 str r7, [sp, #0] +10025e24: 4640 mov r0, r8 +10025e26: f04f 0101 mov.w r1, #1 +10025e2a: dd09 ble.n 10025e40 +10025e2c: 2208 movs r2, #8 +10025e2e: ab06 add r3, sp, #24 +10025e30: f01d fc8e bl 10043750 <__rtw_set_ie_veneer> +10025e34: 9700 str r7, [sp, #0] +10025e36: 2132 movs r1, #50 ; 0x32 +10025e38: f1a6 0208 sub.w r2, r6, #8 +10025e3c: ab08 add r3, sp, #32 +10025e3e: e001 b.n 10025e44 +10025e40: 4632 mov r2, r6 +10025e42: ab06 add r3, sp, #24 +10025e44: f01d fc84 bl 10043750 <__rtw_set_ie_veneer> +10025e48: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10025e4c: f504 7890 add.w r8, r4, #288 ; 0x120 +10025e50: 3b0c subs r3, #12 +10025e52: 4606 mov r6, r0 +10025e54: 2130 movs r1, #48 ; 0x30 +10025e56: 4640 mov r0, r8 +10025e58: aa04 add r2, sp, #16 +10025e5a: f01d fd49 bl 100438f0 <__rtw_get_ie_veneer> +10025e5e: 4603 mov r3, r0 +10025e60: b138 cbz r0, 10025e72 +10025e62: 4630 mov r0, r6 +10025e64: 9700 str r7, [sp, #0] +10025e66: 2130 movs r1, #48 ; 0x30 +10025e68: 9a04 ldr r2, [sp, #16] +10025e6a: 3302 adds r3, #2 +10025e6c: f01d fc70 bl 10043750 <__rtw_set_ie_veneer> +10025e70: 4606 mov r6, r0 +10025e72: f8d4 3454 ldr.w r3, [r4, #1108] ; 0x454 +10025e76: 2b01 cmp r3, #1 +10025e78: d140 bne.n 10025efc +10025e7a: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10025e7e: 4640 mov r0, r8 +10025e80: 212d movs r1, #45 ; 0x2d +10025e82: aa04 add r2, sp, #16 +10025e84: 3b0c subs r3, #12 +10025e86: f01d fd33 bl 100438f0 <__rtw_get_ie_veneer> +10025e8a: 4682 mov sl, r0 +10025e8c: b3b0 cbz r0, 10025efc +10025e8e: 4620 mov r0, r4 +10025e90: f008 fb1a bl 1002e4c8 +10025e94: bb90 cbnz r0, 10025efc +10025e96: f204 68d2 addw r8, r4, #1746 ; 0x6d2 +10025e9a: 4640 mov r0, r8 +10025e9c: f10a 0102 add.w r1, sl, #2 +10025ea0: 2220 movs r2, #32 +10025ea2: f7f6 ff83 bl 1001cdac +10025ea6: f8b4 36d2 ldrh.w r3, [r4, #1746] ; 0x6d2 +10025eaa: 4620 mov r0, r4 +10025eac: f023 0342 bic.w r3, r3, #66 ; 0x42 +10025eb0: f043 030c orr.w r3, r3, #12 +10025eb4: f8a4 36d2 strh.w r3, [r4, #1746] ; 0x6d2 +10025eb8: 2116 movs r1, #22 +10025eba: f10d 020d add.w r2, sp, #13 +10025ebe: f011 fd3b bl 10037938 +10025ec2: f89d 300d ldrb.w r3, [sp, #13] +10025ec6: 2b03 cmp r3, #3 +10025ec8: d110 bne.n 10025eec +10025eca: f504 5297 add.w r2, r4, #4832 ; 0x12e0 +10025ece: f892 305e ldrb.w r3, [r2, #94] ; 0x5e +10025ed2: b12b cbz r3, 10025ee0 +10025ed4: f8b4 36d2 ldrh.w r3, [r4, #1746] ; 0x6d2 +10025ed8: f443 7380 orr.w r3, r3, #256 ; 0x100 +10025edc: f8a4 36d2 strh.w r3, [r4, #1746] ; 0x6d2 +10025ee0: f204 60d5 addw r0, r4, #1749 ; 0x6d5 +10025ee4: 4940 ldr r1, [pc, #256] ; (10025fe8 ) +10025ee6: 2210 movs r2, #16 +10025ee8: f7f6 ff60 bl 1001cdac +10025eec: 4630 mov r0, r6 +10025eee: 9700 str r7, [sp, #0] +10025ef0: 212d movs r1, #45 ; 0x2d +10025ef2: 9a04 ldr r2, [sp, #16] +10025ef4: 4643 mov r3, r8 +10025ef6: f01d fc2b bl 10043750 <__rtw_set_ie_veneer> +10025efa: 4606 mov r6, r0 +10025efc: f04f 0a0c mov.w sl, #12 +10025f00: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10025f04: 459a cmp sl, r3 +10025f06: d23b bcs.n 10025f80 +10025f08: f10a 0378 add.w r3, sl, #120 ; 0x78 +10025f0c: 444b add r3, r9 +10025f0e: 791a ldrb r2, [r3, #4] +10025f10: f103 0b04 add.w fp, r3, #4 +10025f14: 2add cmp r2, #221 ; 0xdd +10025f16: d12e bne.n 10025f76 +10025f18: f103 0806 add.w r8, r3, #6 +10025f1c: 4640 mov r0, r8 +10025f1e: 4933 ldr r1, [pc, #204] ; (10025fec ) +10025f20: 2204 movs r2, #4 +10025f22: f7f6 ff4b bl 1001cdbc +10025f26: b148 cbz r0, 10025f3c +10025f28: 4640 mov r0, r8 +10025f2a: 4931 ldr r1, [pc, #196] ; (10025ff0 ) +10025f2c: 2204 movs r2, #4 +10025f2e: f7f6 ff45 bl 1001cdbc +10025f32: b1b8 cbz r0, 10025f64 +10025f34: 230e movs r3, #14 +10025f36: f88b 3001 strb.w r3, [fp, #1] +10025f3a: e013 b.n 10025f64 +10025f3c: 4640 mov r0, r8 +10025f3e: 492d ldr r1, [pc, #180] ; (10025ff4 ) +10025f40: 2204 movs r2, #4 +10025f42: f7f6 ff3b bl 1001cdbc +10025f46: 2800 cmp r0, #0 +10025f48: d1ee bne.n 10025f28 +10025f4a: 4640 mov r0, r8 +10025f4c: 4928 ldr r1, [pc, #160] ; (10025ff0 ) +10025f4e: 2204 movs r2, #4 +10025f50: f7f6 ff34 bl 1001cdbc +10025f54: b178 cbz r0, 10025f76 +10025f56: f504 5397 add.w r3, r4, #4832 ; 0x12e0 +10025f5a: 3315 adds r3, #21 +10025f5c: 781b ldrb r3, [r3, #0] +10025f5e: 2b00 cmp r3, #0 +10025f60: d1e2 bne.n 10025f28 +10025f62: e008 b.n 10025f76 +10025f64: f89b 2001 ldrb.w r2, [fp, #1] +10025f68: 4630 mov r0, r6 +10025f6a: 9700 str r7, [sp, #0] +10025f6c: 21dd movs r1, #221 ; 0xdd +10025f6e: 4643 mov r3, r8 +10025f70: f01d fbee bl 10043750 <__rtw_set_ie_veneer> +10025f74: 4606 mov r6, r0 +10025f76: f89b 3001 ldrb.w r3, [fp, #1] +10025f7a: 3302 adds r3, #2 +10025f7c: 449a add sl, r3 +10025f7e: e7bf b.n 10025f00 +10025f80: f894 36a6 ldrb.w r3, [r4, #1702] ; 0x6a6 +10025f84: 2b01 cmp r3, #1 +10025f86: d107 bne.n 10025f98 +10025f88: 4630 mov r0, r6 +10025f8a: 9700 str r7, [sp, #0] +10025f8c: 21dd movs r1, #221 ; 0xdd +10025f8e: 2206 movs r2, #6 +10025f90: 4b19 ldr r3, [pc, #100] ; (10025ff8 ) +10025f92: f01d fbdd bl 10043750 <__rtw_set_ie_veneer> +10025f96: 4606 mov r6, r0 +10025f98: f241 23f5 movw r3, #4853 ; 0x12f5 +10025f9c: 5ce3 ldrb r3, [r4, r3] +10025f9e: b16b cbz r3, 10025fbc +10025fa0: f8d4 14ac ldr.w r1, [r4, #1196] ; 0x4ac +10025fa4: b151 cbz r1, 10025fbc +10025fa6: f8d4 24b0 ldr.w r2, [r4, #1200] ; 0x4b0 +10025faa: b13a cbz r2, 10025fbc +10025fac: 4630 mov r0, r6 +10025fae: f7f6 fefd bl 1001cdac +10025fb2: 696a ldr r2, [r5, #20] +10025fb4: f8d4 34b0 ldr.w r3, [r4, #1200] ; 0x4b0 +10025fb8: 4413 add r3, r2 +10025fba: 616b str r3, [r5, #20] +10025fbc: 696b ldr r3, [r5, #20] +10025fbe: f240 6252 movw r2, #1618 ; 0x652 +10025fc2: 61ab str r3, [r5, #24] +10025fc4: 3328 adds r3, #40 ; 0x28 +10025fc6: 4293 cmp r3, r2 +10025fc8: d907 bls.n 10025fda +10025fca: 480c ldr r0, [pc, #48] ; (10025ffc ) +10025fcc: f01c f89c bl 10042108 +10025fd0: 4b0b ldr r3, [pc, #44] ; (10026000 ) +10025fd2: f8d3 0184 ldr.w r0, [r3, #388] ; 0x184 +10025fd6: f01c f897 bl 10042108 +10025fda: 4620 mov r0, r4 +10025fdc: 4629 mov r1, r5 +10025fde: f7fe fdd3 bl 10024b88 +10025fe2: b00f add sp, #60 ; 0x3c +10025fe4: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10025fe8: 1004a6ce .word 0x1004a6ce +10025fec: 1004a710 .word 0x1004a710 +10025ff0: 1004a6c6 .word 0x1004a6c6 +10025ff4: 1004a738 .word 0x1004a738 +10025ff8: 1004a8eb .word 0x1004a8eb +10025ffc: 1004b9eb .word 0x1004b9eb +10026000: 1004da10 .word 0x1004da10 + +10026004 : +10026004: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10026008: 468a mov sl, r1 +1002600a: 4605 mov r5, r0 +1002600c: 2800 cmp r0, #0 +1002600e: d06c beq.n 100260ea +10026010: f100 0898 add.w r8, r0, #152 ; 0x98 +10026014: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +10026018: f7fe fd3e bl 10024a98 +1002601c: 4606 mov r6, r0 +1002601e: 2800 cmp r0, #0 +10026020: d063 beq.n 100260ea +10026022: 2700 movs r7, #0 +10026024: 4628 mov r0, r5 +10026026: f106 0108 add.w r1, r6, #8 +1002602a: f7fe fd54 bl 10024ad6 +1002602e: f886 706c strb.w r7, [r6, #108] ; 0x6c +10026032: f8d6 0080 ldr.w r0, [r6, #128] ; 0x80 +10026036: 4639 mov r1, r7 +10026038: 2268 movs r2, #104 ; 0x68 +1002603a: f7f6 fec9 bl 1001cdd0 +1002603e: f8d5 35f8 ldr.w r3, [r5, #1528] ; 0x5f8 +10026042: f8d6 4080 ldr.w r4, [r6, #128] ; 0x80 +10026046: f003 0303 and.w r3, r3, #3 +1002604a: 2b03 cmp r3, #3 +1002604c: f104 0928 add.w r9, r4, #40 ; 0x28 +10026050: f884 7028 strb.w r7, [r4, #40] ; 0x28 +10026054: f884 7029 strb.w r7, [r4, #41] ; 0x29 +10026058: d101 bne.n 1002605e +1002605a: 2302 movs r3, #2 +1002605c: e004 b.n 10026068 +1002605e: 2b02 cmp r3, #2 +10026060: d104 bne.n 1002606c +10026062: f884 7028 strb.w r7, [r4, #40] ; 0x28 +10026066: 2301 movs r3, #1 +10026068: f884 3029 strb.w r3, [r4, #41] ; 0x29 +1002606c: f1ba 0f00 cmp.w sl, #0 +10026070: d003 beq.n 1002607a +10026072: 8d23 ldrh r3, [r4, #40] ; 0x28 +10026074: f443 5380 orr.w r3, r3, #4096 ; 0x1000 +10026078: 8523 strh r3, [r4, #40] ; 0x28 +1002607a: 4640 mov r0, r8 +1002607c: f007 fef3 bl 1002de66 +10026080: 2206 movs r2, #6 +10026082: 4601 mov r1, r0 +10026084: f104 002c add.w r0, r4, #44 ; 0x2c +10026088: f7f6 fe90 bl 1001cdac +1002608c: f505 51a0 add.w r1, r5, #5120 ; 0x1400 +10026090: f104 0032 add.w r0, r4, #50 ; 0x32 +10026094: 3109 adds r1, #9 +10026096: 2206 movs r2, #6 +10026098: f7f6 fe88 bl 1001cdac +1002609c: 4640 mov r0, r8 +1002609e: f007 fee2 bl 1002de66 +100260a2: 2206 movs r2, #6 +100260a4: 4601 mov r1, r0 +100260a6: f104 0038 add.w r0, r4, #56 ; 0x38 +100260aa: f7f6 fe7f bl 1001cdac +100260ae: f8b9 3016 ldrh.w r3, [r9, #22] +100260b2: f8b5 24f4 ldrh.w r2, [r5, #1268] ; 0x4f4 +100260b6: f003 030f and.w r3, r3, #15 +100260ba: ea43 1302 orr.w r3, r3, r2, lsl #4 +100260be: f8a9 3016 strh.w r3, [r9, #22] +100260c2: f8b5 34f4 ldrh.w r3, [r5, #1268] ; 0x4f4 +100260c6: 4628 mov r0, r5 +100260c8: 3301 adds r3, #1 +100260ca: f8a5 34f4 strh.w r3, [r5, #1268] ; 0x4f4 +100260ce: 8d23 ldrh r3, [r4, #40] ; 0x28 +100260d0: 4631 mov r1, r6 +100260d2: f023 03fc bic.w r3, r3, #252 ; 0xfc +100260d6: f043 0348 orr.w r3, r3, #72 ; 0x48 +100260da: 8523 strh r3, [r4, #40] ; 0x28 +100260dc: 2318 movs r3, #24 +100260de: 6173 str r3, [r6, #20] +100260e0: 61b3 str r3, [r6, #24] +100260e2: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100260e6: f7fe bd4f b.w 10024b88 +100260ea: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +100260ee : +100260ee: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100260f2: 4606 mov r6, r0 +100260f4: f100 0998 add.w r9, r0, #152 ; 0x98 +100260f8: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +100260fc: 468a mov sl, r1 +100260fe: 4693 mov fp, r2 +10026100: f7fe fcca bl 10024a98 +10026104: 4604 mov r4, r0 +10026106: 2800 cmp r0, #0 +10026108: f000 8087 beq.w 1002621a +1002610c: 4630 mov r0, r6 +1002610e: f104 0108 add.w r1, r4, #8 +10026112: f7fe fce0 bl 10024ad6 +10026116: 8a63 ldrh r3, [r4, #18] +10026118: 2700 movs r7, #0 +1002611a: 3302 adds r3, #2 +1002611c: 8263 strh r3, [r4, #18] +1002611e: 2301 movs r3, #1 +10026120: f884 305e strb.w r3, [r4, #94] ; 0x5e +10026124: f884 3069 strb.w r3, [r4, #105] ; 0x69 +10026128: f884 7042 strb.w r7, [r4, #66] ; 0x42 +1002612c: f884 7065 strb.w r7, [r4, #101] ; 0x65 +10026130: f8d4 0080 ldr.w r0, [r4, #128] ; 0x80 +10026134: 2268 movs r2, #104 ; 0x68 +10026136: 4639 mov r1, r7 +10026138: 9301 str r3, [sp, #4] +1002613a: f7f6 fe49 bl 1001cdd0 +1002613e: f8d6 25f8 ldr.w r2, [r6, #1528] ; 0x5f8 +10026142: f8d4 5080 ldr.w r5, [r4, #128] ; 0x80 +10026146: f002 0203 and.w r2, r2, #3 +1002614a: 2a03 cmp r2, #3 +1002614c: f105 0828 add.w r8, r5, #40 ; 0x28 +10026150: f885 7028 strb.w r7, [r5, #40] ; 0x28 +10026154: f885 7029 strb.w r7, [r5, #41] ; 0x29 +10026158: 9b01 ldr r3, [sp, #4] +1002615a: d101 bne.n 10026160 +1002615c: 2302 movs r3, #2 +1002615e: e003 b.n 10026168 +10026160: 2a02 cmp r2, #2 +10026162: d103 bne.n 1002616c +10026164: f885 7028 strb.w r7, [r5, #40] ; 0x28 +10026168: f885 3029 strb.w r3, [r5, #41] ; 0x29 +1002616c: f894 3065 ldrb.w r3, [r4, #101] ; 0x65 +10026170: b11b cbz r3, 1002617a +10026172: 8d2b ldrh r3, [r5, #40] ; 0x28 +10026174: f443 5300 orr.w r3, r3, #8192 ; 0x2000 +10026178: 852b strh r3, [r5, #40] ; 0x28 +1002617a: 8a63 ldrh r3, [r4, #18] +1002617c: f00b 0b0f and.w fp, fp, #15 +10026180: 3b02 subs r3, #2 +10026182: f838 2003 ldrh.w r2, [r8, r3] +10026186: f105 002c add.w r0, r5, #44 ; 0x2c +1002618a: ea4b 0b02 orr.w fp, fp, r2 +1002618e: f828 b003 strh.w fp, [r8, r3] +10026192: f894 2069 ldrb.w r2, [r4, #105] ; 0x69 +10026196: 4651 mov r1, sl +10026198: f002 0201 and.w r2, r2, #1 +1002619c: ea4b 1b02 orr.w fp, fp, r2, lsl #4 +100261a0: f828 b003 strh.w fp, [r8, r3] +100261a4: f894 2042 ldrb.w r2, [r4, #66] ; 0x42 +100261a8: f002 0203 and.w r2, r2, #3 +100261ac: ea4b 1b42 orr.w fp, fp, r2, lsl #5 +100261b0: f828 b003 strh.w fp, [r8, r3] +100261b4: 2206 movs r2, #6 +100261b6: f7f6 fdf9 bl 1001cdac +100261ba: f506 51a0 add.w r1, r6, #5120 ; 0x1400 +100261be: f105 0032 add.w r0, r5, #50 ; 0x32 +100261c2: 3109 adds r1, #9 +100261c4: 2206 movs r2, #6 +100261c6: f7f6 fdf1 bl 1001cdac +100261ca: 4648 mov r0, r9 +100261cc: f007 fe4b bl 1002de66 +100261d0: 2206 movs r2, #6 +100261d2: 4601 mov r1, r0 +100261d4: f105 0038 add.w r0, r5, #56 ; 0x38 +100261d8: f7f6 fde8 bl 1001cdac +100261dc: f8b8 3016 ldrh.w r3, [r8, #22] +100261e0: f8b6 24f4 ldrh.w r2, [r6, #1268] ; 0x4f4 +100261e4: f003 030f and.w r3, r3, #15 +100261e8: ea43 1302 orr.w r3, r3, r2, lsl #4 +100261ec: f8a8 3016 strh.w r3, [r8, #22] +100261f0: f8b6 34f4 ldrh.w r3, [r6, #1268] ; 0x4f4 +100261f4: 4630 mov r0, r6 +100261f6: 3301 adds r3, #1 +100261f8: f8a6 34f4 strh.w r3, [r6, #1268] ; 0x4f4 +100261fc: 8d2b ldrh r3, [r5, #40] ; 0x28 +100261fe: 4621 mov r1, r4 +10026200: f023 03fc bic.w r3, r3, #252 ; 0xfc +10026204: f043 03c8 orr.w r3, r3, #200 ; 0xc8 +10026208: 852b strh r3, [r5, #40] ; 0x28 +1002620a: 231a movs r3, #26 +1002620c: 6163 str r3, [r4, #20] +1002620e: 61a3 str r3, [r4, #24] +10026210: b003 add sp, #12 +10026212: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10026216: f7fe bcb7 b.w 10024b88 +1002621a: b003 add sp, #12 +1002621c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +10026220 : +10026220: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +10026224: 4606 mov r6, r0 +10026226: f100 0898 add.w r8, r0, #152 ; 0x98 +1002622a: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +1002622e: 4689 mov r9, r1 +10026230: 9201 str r2, [sp, #4] +10026232: f7fe fc31 bl 10024a98 +10026236: 4605 mov r5, r0 +10026238: 2800 cmp r0, #0 +1002623a: d05e beq.n 100262fa +1002623c: 2700 movs r7, #0 +1002623e: 4630 mov r0, r6 +10026240: f105 0108 add.w r1, r5, #8 +10026244: f7fe fc47 bl 10024ad6 +10026248: f8d5 0080 ldr.w r0, [r5, #128] ; 0x80 +1002624c: 4639 mov r1, r7 +1002624e: 2268 movs r2, #104 ; 0x68 +10026250: f885 706c strb.w r7, [r5, #108] ; 0x6c +10026254: f7f6 fdbc bl 1001cdd0 +10026258: f8d5 4080 ldr.w r4, [r5, #128] ; 0x80 +1002625c: 4649 mov r1, r9 +1002625e: f104 002c add.w r0, r4, #44 ; 0x2c +10026262: 2206 movs r2, #6 +10026264: f884 7028 strb.w r7, [r4, #40] ; 0x28 +10026268: f884 7029 strb.w r7, [r4, #41] ; 0x29 +1002626c: f7f6 fd9e bl 1001cdac +10026270: f506 51a0 add.w r1, r6, #5120 ; 0x1400 +10026274: 3109 adds r1, #9 +10026276: 2206 movs r2, #6 +10026278: f104 0032 add.w r0, r4, #50 ; 0x32 +1002627c: f7f6 fd96 bl 1001cdac +10026280: 4640 mov r0, r8 +10026282: f007 fdf0 bl 1002de66 +10026286: 2206 movs r2, #6 +10026288: 4601 mov r1, r0 +1002628a: f104 0038 add.w r0, r4, #56 ; 0x38 +1002628e: f7f6 fd8d bl 1001cdac +10026292: 8fe3 ldrh r3, [r4, #62] ; 0x3e +10026294: f8b6 24f4 ldrh.w r2, [r6, #1268] ; 0x4f4 +10026298: f003 030f and.w r3, r3, #15 +1002629c: ea43 1302 orr.w r3, r3, r2, lsl #4 +100262a0: 87e3 strh r3, [r4, #62] ; 0x3e +100262a2: f8b6 34f4 ldrh.w r3, [r6, #1268] ; 0x4f4 +100262a6: f8bd 1004 ldrh.w r1, [sp, #4] +100262aa: 3301 adds r3, #1 +100262ac: f8a6 34f4 strh.w r3, [r6, #1268] ; 0x4f4 +100262b0: 8d23 ldrh r3, [r4, #40] ; 0x28 +100262b2: 2218 movs r2, #24 +100262b4: f023 03fc bic.w r3, r3, #252 ; 0xfc +100262b8: f043 03c0 orr.w r3, r3, #192 ; 0xc0 +100262bc: 8523 strh r3, [r4, #40] ; 0x28 +100262be: 462b mov r3, r5 +100262c0: f843 2f14 str.w r2, [r3, #20]! +100262c4: aa02 add r2, sp, #8 +100262c6: f842 1d04 str.w r1, [r2, #-4]! +100262ca: f104 0040 add.w r0, r4, #64 ; 0x40 +100262ce: 2102 movs r1, #2 +100262d0: f01d faae bl 10043830 <__rtw_set_fixed_ie_veneer> +100262d4: 696b ldr r3, [r5, #20] +100262d6: f240 6252 movw r2, #1618 ; 0x652 +100262da: 61ab str r3, [r5, #24] +100262dc: 3328 adds r3, #40 ; 0x28 +100262de: 4293 cmp r3, r2 +100262e0: d907 bls.n 100262f2 +100262e2: 4807 ldr r0, [pc, #28] ; (10026300 ) +100262e4: f01b ff10 bl 10042108 +100262e8: 4b06 ldr r3, [pc, #24] ; (10026304 ) +100262ea: f8d3 0190 ldr.w r0, [r3, #400] ; 0x190 +100262ee: f01b ff0b bl 10042108 +100262f2: 4630 mov r0, r6 +100262f4: 4629 mov r1, r5 +100262f6: f7fe fc47 bl 10024b88 +100262fa: b003 add sp, #12 +100262fc: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10026300: 1004b9eb .word 0x1004b9eb +10026304: 1004da10 .word 0x1004da10 + +10026308 : +10026308: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1002630c: b087 sub sp, #28 +1002630e: f8ad 3004 strh.w r3, [sp, #4] +10026312: 4604 mov r4, r0 +10026314: 2303 movs r3, #3 +10026316: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +1002631a: 4689 mov r9, r1 +1002631c: f88d 2007 strb.w r2, [sp, #7] +10026320: f88d 3009 strb.w r3, [sp, #9] +10026324: f7fe fbb8 bl 10024a98 +10026328: 4607 mov r7, r0 +1002632a: 2800 cmp r0, #0 +1002632c: f000 8123 beq.w 10026576 +10026330: 4620 mov r0, r4 +10026332: f107 0108 add.w r1, r7, #8 +10026336: f7fe fbce bl 10024ad6 +1002633a: f8d7 0080 ldr.w r0, [r7, #128] ; 0x80 +1002633e: 2100 movs r1, #0 +10026340: 2268 movs r2, #104 ; 0x68 +10026342: f7f6 fd45 bl 1001cdd0 +10026346: f8d7 6080 ldr.w r6, [r7, #128] ; 0x80 +1002634a: 2300 movs r3, #0 +1002634c: f886 3028 strb.w r3, [r6, #40] ; 0x28 +10026350: f886 3029 strb.w r3, [r6, #41] ; 0x29 +10026354: f106 002c add.w r0, r6, #44 ; 0x2c +10026358: 4649 mov r1, r9 +1002635a: 2206 movs r2, #6 +1002635c: f7f6 fd26 bl 1001cdac +10026360: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10026364: 3109 adds r1, #9 +10026366: 2206 movs r2, #6 +10026368: f106 0032 add.w r0, r6, #50 ; 0x32 +1002636c: f7f6 fd1e bl 1001cdac +10026370: f104 0098 add.w r0, r4, #152 ; 0x98 +10026374: f007 fd77 bl 1002de66 +10026378: 2206 movs r2, #6 +1002637a: 4601 mov r1, r0 +1002637c: f106 0038 add.w r0, r6, #56 ; 0x38 +10026380: f7f6 fd14 bl 1001cdac +10026384: 8ff3 ldrh r3, [r6, #62] ; 0x3e +10026386: f8b4 24f4 ldrh.w r2, [r4, #1268] ; 0x4f4 +1002638a: f003 030f and.w r3, r3, #15 +1002638e: ea43 1302 orr.w r3, r3, r2, lsl #4 +10026392: 87f3 strh r3, [r6, #62] ; 0x3e +10026394: f8b4 34f4 ldrh.w r3, [r4, #1268] ; 0x4f4 +10026398: 463d mov r5, r7 +1002639a: 3301 adds r3, #1 +1002639c: f8a4 34f4 strh.w r3, [r4, #1268] ; 0x4f4 +100263a0: 8d33 ldrh r3, [r6, #40] ; 0x28 +100263a2: 2101 movs r1, #1 +100263a4: f023 03fc bic.w r3, r3, #252 ; 0xfc +100263a8: f043 03d0 orr.w r3, r3, #208 ; 0xd0 +100263ac: 8533 strh r3, [r6, #40] ; 0x28 +100263ae: 2318 movs r3, #24 +100263b0: f845 3f14 str.w r3, [r5, #20]! +100263b4: f10d 0209 add.w r2, sp, #9 +100263b8: 462b mov r3, r5 +100263ba: f106 0040 add.w r0, r6, #64 ; 0x40 +100263be: f01d fa37 bl 10043830 <__rtw_set_fixed_ie_veneer> +100263c2: 2101 movs r1, #1 +100263c4: f10d 0207 add.w r2, sp, #7 +100263c8: 462b mov r3, r5 +100263ca: f01d fa31 bl 10043830 <__rtw_set_fixed_ie_veneer> +100263ce: f89d 1009 ldrb.w r1, [sp, #9] +100263d2: 4602 mov r2, r0 +100263d4: 2903 cmp r1, #3 +100263d6: f8bd 3004 ldrh.w r3, [sp, #4] +100263da: f040 80b1 bne.w 10026540 +100263de: f89d 8007 ldrb.w r8, [sp, #7] +100263e2: f1b8 0f01 cmp.w r8, #1 +100263e6: d057 beq.n 10026498 +100263e8: d312 bcc.n 10026410 +100263ea: f1b8 0f02 cmp.w r8, #2 +100263ee: f040 80a7 bne.w 10026540 +100263f2: 00db lsls r3, r3, #3 +100263f4: aa06 add r2, sp, #24 +100263f6: b2db uxtb r3, r3 +100263f8: f822 3d0e strh.w r3, [r2, #-14]! +100263fc: 4641 mov r1, r8 +100263fe: 462b mov r3, r5 +10026400: f01d fa16 bl 10043830 <__rtw_set_fixed_ie_veneer> +10026404: aa06 add r2, sp, #24 +10026406: 2325 movs r3, #37 ; 0x25 +10026408: f822 3d0c strh.w r3, [r2, #-12]! +1002640c: 4641 mov r1, r8 +1002640e: e094 b.n 1002653a +10026410: f894 36b6 ldrb.w r3, [r4, #1718] ; 0x6b6 +10026414: 3301 adds r3, #1 +10026416: f013 03ff ands.w r3, r3, #255 ; 0xff +1002641a: d0fb beq.n 10026414 +1002641c: f884 36b6 strb.w r3, [r4, #1718] ; 0x6b6 +10026420: 4610 mov r0, r2 +10026422: 2101 movs r1, #1 +10026424: f204 62b6 addw r2, r4, #1718 ; 0x6b6 +10026428: 462b mov r3, r5 +1002642a: f01d fa01 bl 10043830 <__rtw_set_fixed_ie_veneer> +1002642e: f8bd 3004 ldrh.w r3, [sp, #4] +10026432: aa06 add r2, sp, #24 +10026434: f003 030f and.w r3, r3, #15 +10026438: 009b lsls r3, r3, #2 +1002643a: f443 5380 orr.w r3, r3, #4096 ; 0x1000 +1002643e: f043 0302 orr.w r3, r3, #2 +10026442: f822 3d0e strh.w r3, [r2, #-14]! +10026446: 2102 movs r1, #2 +10026448: 462b mov r3, r5 +1002644a: f01d f9f1 bl 10043830 <__rtw_set_fixed_ie_veneer> +1002644e: aa06 add r2, sp, #24 +10026450: f241 3388 movw r3, #5000 ; 0x1388 +10026454: f822 3d0a strh.w r3, [r2, #-10]! +10026458: 2102 movs r1, #2 +1002645a: 462b mov r3, r5 +1002645c: f01d f9e8 bl 10043830 <__rtw_set_fixed_ie_veneer> +10026460: 4649 mov r1, r9 +10026462: 4680 mov r8, r0 +10026464: f504 603d add.w r0, r4, #3024 ; 0xbd0 +10026468: f007 faa4 bl 1002d9b4 +1002646c: b178 cbz r0, 1002648e +1002646e: f8bd 2004 ldrh.w r2, [sp, #4] +10026472: f002 0207 and.w r2, r2, #7 +10026476: eb00 0242 add.w r2, r0, r2, lsl #1 +1002647a: f8b2 3094 ldrh.w r3, [r2, #148] ; 0x94 +1002647e: f3c3 030b ubfx r3, r3, #0, #12 +10026482: 3301 adds r3, #1 +10026484: f8a2 31d4 strh.w r3, [r2, #468] ; 0x1d4 +10026488: 011b lsls r3, r3, #4 +1002648a: f8ad 3012 strh.w r3, [sp, #18] +1002648e: 4640 mov r0, r8 +10026490: 2102 movs r1, #2 +10026492: f10d 0212 add.w r2, sp, #18 +10026496: e050 b.n 1002653a +10026498: 4641 mov r1, r8 +1002649a: f204 62b9 addw r2, r4, #1721 ; 0x6b9 +1002649e: 462b mov r3, r5 +100264a0: f01d f9c6 bl 10043830 <__rtw_set_fixed_ie_veneer> +100264a4: 462b mov r3, r5 +100264a6: 2102 movs r1, #2 +100264a8: aa01 add r2, sp, #4 +100264aa: f01d f9c1 bl 10043830 <__rtw_set_fixed_ie_veneer> +100264ae: aa05 add r2, sp, #20 +100264b0: 4680 mov r8, r0 +100264b2: 210d movs r1, #13 +100264b4: 4620 mov r0, r4 +100264b6: f011 fa4f bl 10037958 +100264ba: 9a05 ldr r2, [sp, #20] +100264bc: f8b4 36ba ldrh.w r3, [r4, #1722] ; 0x6ba +100264c0: 2a03 cmp r2, #3 +100264c2: d104 bne.n 100264ce +100264c4: f003 033f and.w r3, r3, #63 ; 0x3f +100264c8: f443 5380 orr.w r3, r3, #4096 ; 0x1000 +100264cc: e013 b.n 100264f6 +100264ce: 2a02 cmp r2, #2 +100264d0: d104 bne.n 100264dc +100264d2: f003 033f and.w r3, r3, #63 ; 0x3f +100264d6: f443 6300 orr.w r3, r3, #2048 ; 0x800 +100264da: e00c b.n 100264f6 +100264dc: 2a01 cmp r2, #1 +100264de: d104 bne.n 100264ea +100264e0: f003 033f and.w r3, r3, #63 ; 0x3f +100264e4: f443 6380 orr.w r3, r3, #1024 ; 0x400 +100264e8: e005 b.n 100264f6 +100264ea: 2a00 cmp r2, #0 +100264ec: d1ea bne.n 100264c4 +100264ee: f003 033f and.w r3, r3, #63 ; 0x3f +100264f2: f443 7300 orr.w r3, r3, #512 ; 0x200 +100264f6: f8ad 300a strh.w r3, [sp, #10] +100264fa: f504 5397 add.w r3, r4, #4832 ; 0x12e0 +100264fe: 3318 adds r3, #24 +10026500: f893 3047 ldrb.w r3, [r3, #71] ; 0x47 +10026504: b923 cbnz r3, 10026510 +10026506: f8bd 300a ldrh.w r3, [sp, #10] +1002650a: f023 0301 bic.w r3, r3, #1 +1002650e: e005 b.n 1002651c +10026510: 2b01 cmp r3, #1 +10026512: d105 bne.n 10026520 +10026514: f8bd 300a ldrh.w r3, [sp, #10] +10026518: f043 0301 orr.w r3, r3, #1 +1002651c: f8ad 300a strh.w r3, [sp, #10] +10026520: 2102 movs r1, #2 +10026522: f10d 020a add.w r2, sp, #10 +10026526: 462b mov r3, r5 +10026528: 4640 mov r0, r8 +1002652a: f01d f981 bl 10043830 <__rtw_set_fixed_ie_veneer> +1002652e: f8b4 36bc ldrh.w r3, [r4, #1724] ; 0x6bc +10026532: aa06 add r2, sp, #24 +10026534: f822 3d08 strh.w r3, [r2, #-8]! +10026538: 2102 movs r1, #2 +1002653a: 462b mov r3, r5 +1002653c: f01d f978 bl 10043830 <__rtw_set_fixed_ie_veneer> +10026540: 697b ldr r3, [r7, #20] +10026542: f240 6252 movw r2, #1618 ; 0x652 +10026546: 61bb str r3, [r7, #24] +10026548: 3328 adds r3, #40 ; 0x28 +1002654a: 4293 cmp r3, r2 +1002654c: d907 bls.n 1002655e +1002654e: 480b ldr r0, [pc, #44] ; (1002657c ) +10026550: f01b fdda bl 10042108 +10026554: 4b0a ldr r3, [pc, #40] ; (10026580 ) +10026556: f8d3 0194 ldr.w r0, [r3, #404] ; 0x194 +1002655a: f01b fdd5 bl 10042108 +1002655e: f241 3388 movw r3, #5000 ; 0x1388 +10026562: 5ce3 ldrb r3, [r4, r3] +10026564: b11b cbz r3, 1002656e +10026566: 8d33 ldrh r3, [r6, #40] ; 0x28 +10026568: f443 5380 orr.w r3, r3, #4096 ; 0x1000 +1002656c: 8533 strh r3, [r6, #40] ; 0x28 +1002656e: 4620 mov r0, r4 +10026570: 4639 mov r1, r7 +10026572: f7fe fb09 bl 10024b88 +10026576: b007 add sp, #28 +10026578: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1002657c: 1004b9eb .word 0x1004b9eb +10026580: 1004da10 .word 0x1004da10 + +10026584 : +10026584: b570 push {r4, r5, r6, lr} +10026586: 6f8c ldr r4, [r1, #120] ; 0x78 +10026588: 4605 mov r5, r0 +1002658a: f500 50a0 add.w r0, r0, #5120 ; 0x1400 +1002658e: 3009 adds r0, #9 +10026590: 1d21 adds r1, r4, #4 +10026592: 2206 movs r2, #6 +10026594: f7f6 fc12 bl 1001cdbc +10026598: 2800 cmp r0, #0 +1002659a: d058 beq.n 1002664e +1002659c: f8d5 35f8 ldr.w r3, [r5, #1528] ; 0x5f8 +100265a0: f003 0203 and.w r2, r3, #3 +100265a4: 2a03 cmp r2, #3 +100265a6: d001 beq.n 100265ac +100265a8: 0458 lsls r0, r3, #17 +100265aa: d550 bpl.n 1002664e +100265ac: f104 060a add.w r6, r4, #10 +100265b0: f505 603d add.w r0, r5, #3024 ; 0xbd0 +100265b4: 4631 mov r1, r6 +100265b6: f007 f9fd bl 1002d9b4 +100265ba: 4603 mov r3, r0 +100265bc: 2800 cmp r0, #0 +100265be: d046 beq.n 1002664e +100265c0: 7e22 ldrb r2, [r4, #24] +100265c2: 2a03 cmp r2, #3 +100265c4: d143 bne.n 1002664e +100265c6: f895 26ac ldrb.w r2, [r5, #1708] ; 0x6ac +100265ca: 2a00 cmp r2, #0 +100265cc: d03f beq.n 1002664e +100265ce: 7e60 ldrb r0, [r4, #25] +100265d0: 2801 cmp r0, #1 +100265d2: d011 beq.n 100265f8 +100265d4: d302 bcc.n 100265dc +100265d6: 2802 cmp r0, #2 +100265d8: d023 beq.n 10026622 +100265da: e038 b.n 1002664e +100265dc: f205 60b9 addw r0, r5, #1721 ; 0x6b9 +100265e0: f104 011a add.w r1, r4, #26 +100265e4: 2207 movs r2, #7 +100265e6: f7f6 fbe1 bl 1001cdac +100265ea: 4628 mov r0, r5 +100265ec: 4631 mov r1, r6 +100265ee: 2201 movs r2, #1 +100265f0: 2325 movs r3, #37 ; 0x25 +100265f2: f7ff fe89 bl 10026308 +100265f6: e02a b.n 1002664e +100265f8: 7ee1 ldrb r1, [r4, #27] +100265fa: 7f62 ldrb r2, [r4, #29] +100265fc: 7f25 ldrb r5, [r4, #28] +100265fe: f3c2 0282 ubfx r2, r2, #2, #3 +10026602: ea51 2105 orrs.w r1, r1, r5, lsl #8 +10026606: fa00 f202 lsl.w r2, r0, r2 +1002660a: f893 11ff ldrb.w r1, [r3, #511] ; 0x1ff +1002660e: d103 bne.n 10026618 +10026610: 4311 orrs r1, r2 +10026612: f883 11ff strb.w r1, [r3, #511] ; 0x1ff +10026616: e014 b.n 10026642 +10026618: ea21 0202 bic.w r2, r1, r2 +1002661c: f883 21ff strb.w r2, [r3, #511] ; 0x1ff +10026620: e015 b.n 1002664e +10026622: 7ee2 ldrb r2, [r4, #27] +10026624: 0711 lsls r1, r2, #28 +10026626: d412 bmi.n 1002664e +10026628: 0911 lsrs r1, r2, #4 +1002662a: 2201 movs r2, #1 +1002662c: fa02 f101 lsl.w r1, r2, r1 +10026630: f893 01ff ldrb.w r0, [r3, #511] ; 0x1ff +10026634: ea20 0101 bic.w r1, r0, r1 +10026638: f883 11ff strb.w r1, [r3, #511] ; 0x1ff +1002663c: 7ee1 ldrb r1, [r4, #27] +1002663e: 0909 lsrs r1, r1, #4 +10026640: 408a lsls r2, r1 +10026642: f893 1200 ldrb.w r1, [r3, #512] ; 0x200 +10026646: ea21 0202 bic.w r2, r1, r2 +1002664a: f883 2200 strb.w r2, [r3, #512] ; 0x200 +1002664e: 2001 movs r0, #1 +10026650: bd70 pop {r4, r5, r6, pc} + +10026652 : +10026652: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10026656: 6f0b ldr r3, [r1, #112] ; 0x70 +10026658: 4607 mov r7, r0 +1002665a: 3b18 subs r3, #24 +1002665c: f5b3 7f40 cmp.w r3, #768 ; 0x300 +10026660: 460d mov r5, r1 +10026662: 4614 mov r4, r2 +10026664: f8d1 9078 ldr.w r9, [r1, #120] ; 0x78 +10026668: 9301 str r3, [sp, #4] +1002666a: d901 bls.n 10026670 +1002666c: 2000 movs r0, #0 +1002666e: e105 b.n 1002687c +10026670: 4610 mov r0, r2 +10026672: 2100 movs r1, #0 +10026674: f44f 725f mov.w r2, #892 ; 0x37c +10026678: f7f6 fbaa bl 1001cdd0 +1002667c: f8b9 3000 ldrh.w r3, [r9] +10026680: ae02 add r6, sp, #8 +10026682: f003 03fc and.w r3, r3, #252 ; 0xfc +10026686: 2b80 cmp r3, #128 ; 0x80 +10026688: f856 2d04 ldr.w r2, [r6, #-4]! +1002668c: bf0c ite eq +1002668e: 2301 moveq r3, #1 +10026690: 2300 movne r3, #0 +10026692: 72a3 strb r3, [r4, #10] +10026694: f104 0a7c add.w sl, r4, #124 ; 0x7c +10026698: f102 037c add.w r3, r2, #124 ; 0x7c +1002669c: 6023 str r3, [r4, #0] +1002669e: 67a2 str r2, [r4, #120] ; 0x78 +100266a0: 4650 mov r0, sl +100266a2: f109 0118 add.w r1, r9, #24 +100266a6: f7f6 fb81 bl 1001cdac +100266aa: f995 306c ldrsb.w r3, [r5, #108] ; 0x6c +100266ae: f104 0888 add.w r8, r4, #136 ; 0x88 +100266b2: 63a3 str r3, [r4, #56] ; 0x38 +100266b4: f895 306a ldrb.w r3, [r5, #106] ; 0x6a +100266b8: 4640 mov r0, r8 +100266ba: f884 3075 strb.w r3, [r4, #117] ; 0x75 +100266be: f895 306d ldrb.w r3, [r5, #109] ; 0x6d +100266c2: 2100 movs r1, #0 +100266c4: f884 3074 strb.w r3, [r4, #116] ; 0x74 +100266c8: 6fa3 ldr r3, [r4, #120] ; 0x78 +100266ca: 4632 mov r2, r6 +100266cc: 3b0c subs r3, #12 +100266ce: f01d f90f bl 100438f0 <__rtw_get_ie_veneer> +100266d2: 4605 mov r5, r0 +100266d4: 2800 cmp r0, #0 +100266d6: d0c9 beq.n 1002666c +100266d8: 7842 ldrb r2, [r0, #1] +100266da: b152 cbz r2, 100266f2 +100266dc: 9b01 ldr r3, [sp, #4] +100266de: 2b20 cmp r3, #32 +100266e0: d8c4 bhi.n 1002666c +100266e2: f104 0010 add.w r0, r4, #16 +100266e6: 1ca9 adds r1, r5, #2 +100266e8: f7f6 fb60 bl 1001cdac +100266ec: 786b ldrb r3, [r5, #1] +100266ee: 60e3 str r3, [r4, #12] +100266f0: e003 b.n 100266fa +100266f2: 7322 strb r2, [r4, #12] +100266f4: 7362 strb r2, [r4, #13] +100266f6: 73a2 strb r2, [r4, #14] +100266f8: 73e2 strb r2, [r4, #15] +100266fa: f104 0b64 add.w fp, r4, #100 ; 0x64 +100266fe: 4658 mov r0, fp +10026700: 2100 movs r1, #0 +10026702: 2210 movs r2, #16 +10026704: f7f6 fb64 bl 1001cdd0 +10026708: 6fa3 ldr r3, [r4, #120] ; 0x78 +1002670a: 2101 movs r1, #1 +1002670c: 4640 mov r0, r8 +1002670e: 4632 mov r2, r6 +10026710: 3b0c subs r3, #12 +10026712: f01d f8ed bl 100438f0 <__rtw_get_ie_veneer> +10026716: 4601 mov r1, r0 +10026718: b140 cbz r0, 1002672c +1002671a: 9a01 ldr r2, [sp, #4] +1002671c: 2a08 cmp r2, #8 +1002671e: d8a5 bhi.n 1002666c +10026720: 4658 mov r0, fp +10026722: 3102 adds r1, #2 +10026724: f7f6 fb42 bl 1001cdac +10026728: 9d01 ldr r5, [sp, #4] +1002672a: e000 b.n 1002672e +1002672c: 4605 mov r5, r0 +1002672e: 6fa3 ldr r3, [r4, #120] ; 0x78 +10026730: 2132 movs r1, #50 ; 0x32 +10026732: 4640 mov r0, r8 +10026734: 4632 mov r2, r6 +10026736: 3b0c subs r3, #12 +10026738: f01d f8da bl 100438f0 <__rtw_get_ie_veneer> +1002673c: 4601 mov r1, r0 +1002673e: b148 cbz r0, 10026754 +10026740: 9a01 ldr r2, [sp, #4] +10026742: f1c5 0310 rsb r3, r5, #16 +10026746: 429a cmp r2, r3 +10026748: d890 bhi.n 1002666c +1002674a: 1960 adds r0, r4, r5 +1002674c: 3064 adds r0, #100 ; 0x64 +1002674e: 3102 adds r1, #2 +10026750: f7f6 fb2c bl 1001cdac +10026754: 6fa3 ldr r3, [r4, #120] ; 0x78 +10026756: 2500 movs r5, #0 +10026758: 2103 movs r1, #3 +1002675a: f884 103c strb.w r1, [r4, #60] ; 0x3c +1002675e: f884 503d strb.w r5, [r4, #61] ; 0x3d +10026762: f884 503e strb.w r5, [r4, #62] ; 0x3e +10026766: f884 503f strb.w r5, [r4, #63] ; 0x3f +1002676a: 4640 mov r0, r8 +1002676c: 4632 mov r2, r6 +1002676e: 3b0c subs r3, #12 +10026770: f01d f8be bl 100438f0 <__rtw_get_ie_veneer> +10026774: f884 504c strb.w r5, [r4, #76] ; 0x4c +10026778: f884 504d strb.w r5, [r4, #77] ; 0x4d +1002677c: f884 504e strb.w r5, [r4, #78] ; 0x4e +10026780: f884 504f strb.w r5, [r4, #79] ; 0x4f +10026784: f884 5040 strb.w r5, [r4, #64] ; 0x40 +10026788: f884 5041 strb.w r5, [r4, #65] ; 0x41 +1002678c: f884 5042 strb.w r5, [r4, #66] ; 0x42 +10026790: f884 5043 strb.w r5, [r4, #67] ; 0x43 +10026794: b938 cbnz r0, 100267a6 +10026796: 6fa3 ldr r3, [r4, #120] ; 0x78 +10026798: 4640 mov r0, r8 +1002679a: 213d movs r1, #61 ; 0x3d +1002679c: 4632 mov r2, r6 +1002679e: 3b0c subs r3, #12 +100267a0: f01d f8a6 bl 100438f0 <__rtw_get_ie_veneer> +100267a4: b108 cbz r0, 100267aa +100267a6: 7883 ldrb r3, [r0, #2] +100267a8: e00d b.n 100267c6 +100267aa: f8d7 35c0 ldr.w r3, [r7, #1472] ; 0x5c0 +100267ae: 2b03 cmp r3, #3 +100267b0: d107 bne.n 100267c2 +100267b2: f8d7 35c8 ldr.w r3, [r7, #1480] ; 0x5c8 +100267b6: 220c movs r2, #12 +100267b8: fb02 7303 mla r3, r2, r3, r7 +100267bc: f893 34fc ldrb.w r3, [r3, #1276] ; 0x4fc +100267c0: e001 b.n 100267c6 +100267c2: f897 34f6 ldrb.w r3, [r7, #1270] ; 0x4f6 +100267c6: 64e3 str r3, [r4, #76] ; 0x4c +100267c8: 4650 mov r0, sl +100267ca: f7fd f8ae bl 1002392a +100267ce: 2202 movs r2, #2 +100267d0: 4601 mov r1, r0 +100267d2: f104 0044 add.w r0, r4, #68 ; 0x44 +100267d6: f7f6 fae9 bl 1001cdac +100267da: 4620 mov r0, r4 +100267dc: f7fd f898 bl 10023910 +100267e0: f010 0301 ands.w r3, r0, #1 +100267e4: 4605 mov r5, r0 +100267e6: f104 0004 add.w r0, r4, #4 +100267ea: d00c beq.n 10026806 +100267ec: 2300 movs r3, #0 +100267ee: 2201 movs r2, #1 +100267f0: f884 2060 strb.w r2, [r4, #96] ; 0x60 +100267f4: f884 3061 strb.w r3, [r4, #97] ; 0x61 +100267f8: f884 3062 strb.w r3, [r4, #98] ; 0x62 +100267fc: f884 3063 strb.w r3, [r4, #99] ; 0x63 +10026800: f109 010a add.w r1, r9, #10 +10026804: e009 b.n 1002681a +10026806: f884 3060 strb.w r3, [r4, #96] ; 0x60 +1002680a: f884 3061 strb.w r3, [r4, #97] ; 0x61 +1002680e: f884 3062 strb.w r3, [r4, #98] ; 0x62 +10026812: f884 3063 strb.w r3, [r4, #99] ; 0x63 +10026816: f109 0110 add.w r1, r9, #16 +1002681a: 2206 movs r2, #6 +1002681c: f7f6 fac6 bl 1001cdac +10026820: f005 0010 and.w r0, r5, #16 +10026824: b280 uxth r0, r0 +10026826: b150 cbz r0, 1002683e +10026828: 2300 movs r3, #0 +1002682a: 2201 movs r2, #1 +1002682c: f884 2034 strb.w r2, [r4, #52] ; 0x34 +10026830: f884 3035 strb.w r3, [r4, #53] ; 0x35 +10026834: f884 3036 strb.w r3, [r4, #54] ; 0x36 +10026838: f884 3037 strb.w r3, [r4, #55] ; 0x37 +1002683c: e007 b.n 1002684e +1002683e: f884 0034 strb.w r0, [r4, #52] ; 0x34 +10026842: f884 0035 strb.w r0, [r4, #53] ; 0x35 +10026846: f884 0036 strb.w r0, [r4, #54] ; 0x36 +1002684a: f884 0037 strb.w r0, [r4, #55] ; 0x37 +1002684e: 2300 movs r3, #0 +10026850: f884 3048 strb.w r3, [r4, #72] ; 0x48 +10026854: f884 3049 strb.w r3, [r4, #73] ; 0x49 +10026858: f884 304a strb.w r3, [r4, #74] ; 0x4a +1002685c: f884 304b strb.w r3, [r4, #75] ; 0x4b +10026860: f8d7 35c8 ldr.w r3, [r7, #1480] ; 0x5c8 +10026864: 210c movs r1, #12 +10026866: fb01 7703 mla r7, r1, r3, r7 +1002686a: 6ce2 ldr r2, [r4, #76] ; 0x4c +1002686c: f897 34fc ldrb.w r3, [r7, #1276] ; 0x4fc +10026870: 2001 movs r0, #1 +10026872: 429a cmp r2, r3 +10026874: bf1c itt ne +10026876: 2365 movne r3, #101 ; 0x65 +10026878: f884 3075 strbne.w r3, [r4, #117] ; 0x75 +1002687c: b003 add sp, #12 +1002687e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + ... + +10026884 : +10026884: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +10026886: f200 76b4 addw r6, r0, #1972 ; 0x7b4 +1002688a: 4604 mov r4, r0 +1002688c: 4630 mov r0, r6 +1002688e: f015 f83d bl 1003b90c +10026892: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +10026896: 2500 movs r5, #0 +10026898: f423 7380 bic.w r3, r3, #256 ; 0x100 +1002689c: f443 7300 orr.w r3, r3, #512 ; 0x200 +100268a0: f8c4 35f8 str.w r3, [r4, #1528] ; 0x5f8 +100268a4: 2301 movs r3, #1 +100268a6: f8c4 3608 str.w r3, [r4, #1544] ; 0x608 +100268aa: f104 019c add.w r1, r4, #156 ; 0x9c +100268ae: 4620 mov r0, r4 +100268b0: 2203 movs r2, #3 +100268b2: f8c4 55fc str.w r5, [r4, #1532] ; 0x5fc +100268b6: f8c4 5600 str.w r5, [r4, #1536] ; 0x600 +100268ba: f8c4 5604 str.w r5, [r4, #1540] ; 0x604 +100268be: f7ff fcaf bl 10026220 +100268c2: 4812 ldr r0, [pc, #72] ; (1002690c ) +100268c4: f01b fc20 bl 10042108 +100268c8: f894 009f ldrb.w r0, [r4, #159] ; 0x9f +100268cc: f894 109c ldrb.w r1, [r4, #156] ; 0x9c +100268d0: 9000 str r0, [sp, #0] +100268d2: f894 00a0 ldrb.w r0, [r4, #160] ; 0xa0 +100268d6: f894 209d ldrb.w r2, [r4, #157] ; 0x9d +100268da: 9001 str r0, [sp, #4] +100268dc: f894 00a1 ldrb.w r0, [r4, #161] ; 0xa1 +100268e0: f894 309e ldrb.w r3, [r4, #158] ; 0x9e +100268e4: 9002 str r0, [sp, #8] +100268e6: 480a ldr r0, [pc, #40] ; (10026910 ) +100268e8: f8d0 019c ldr.w r0, [r0, #412] ; 0x19c +100268ec: f01b fc0c bl 10042108 +100268f0: 4620 mov r0, r4 +100268f2: 4629 mov r1, r5 +100268f4: 462a mov r2, r5 +100268f6: f7fe fe27 bl 10025548 +100268fa: 4630 mov r0, r6 +100268fc: f44f 7196 mov.w r1, #300 ; 0x12c +10026900: b004 add sp, #16 +10026902: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10026906: f014 bfff b.w 1003b908 +1002690a: bf00 nop +1002690c: 1004b9eb .word 0x1004b9eb +10026910: 1004da10 .word 0x1004da10 + +10026914 : +10026914: b538 push {r3, r4, r5, lr} +10026916: f200 75b4 addw r5, r0, #1972 ; 0x7b4 +1002691a: 4604 mov r4, r0 +1002691c: 4628 mov r0, r5 +1002691e: f014 fff5 bl 1003b90c +10026922: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +10026926: 4620 mov r0, r4 +10026928: f423 7340 bic.w r3, r3, #768 ; 0x300 +1002692c: f443 5310 orr.w r3, r3, #9216 ; 0x2400 +10026930: f8c4 35f8 str.w r3, [r4, #1528] ; 0x5f8 +10026934: f7ff f9c8 bl 10025cc8 +10026938: 4628 mov r0, r5 +1002693a: f44f 7196 mov.w r1, #300 ; 0x12c +1002693e: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10026942: f014 bfe1 b.w 1003b908 + ... + +10026948 : +10026948: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002694c: 6f8d ldr r5, [r1, #120] ; 0x78 +1002694e: 4604 mov r4, r0 +10026950: 4628 mov r0, r5 +10026952: f8d1 8070 ldr.w r8, [r1, #112] ; 0x70 +10026956: f7fd ff89 bl 1002486c +1002695a: 4601 mov r1, r0 +1002695c: f504 50a0 add.w r0, r4, #5120 ; 0x1400 +10026960: 3009 adds r0, #9 +10026962: 2206 movs r2, #6 +10026964: f7f6 fa2a bl 1001cdbc +10026968: 2800 cmp r0, #0 +1002696a: d055 beq.n 10026a18 +1002696c: f8d4 25f8 ldr.w r2, [r4, #1528] ; 0x5f8 +10026970: 0593 lsls r3, r2, #22 +10026972: d551 bpl.n 10026a18 +10026974: 882b ldrh r3, [r5, #0] +10026976: f413 4f80 tst.w r3, #16384 ; 0x4000 +1002697a: bf0c ite eq +1002697c: 2100 moveq r1, #0 +1002697e: 2104 movne r1, #4 +10026980: 4429 add r1, r5 +10026982: 8b8e ldrh r6, [r1, #28] +10026984: 8b4a ldrh r2, [r1, #26] +10026986: b17e cbz r6, 100269a8 +10026988: 2e0d cmp r6, #13 +1002698a: d107 bne.n 1002699c +1002698c: f8d4 360c ldr.w r3, [r4, #1548] ; 0x60c +10026990: 2b01 cmp r3, #1 +10026992: bf0c ite eq +10026994: 2300 moveq r3, #0 +10026996: 2301 movne r3, #1 +10026998: f8c4 360c str.w r3, [r4, #1548] ; 0x60c +1002699c: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +100269a0: 2101 movs r1, #1 +100269a2: f014 ffb1 bl 1003b908 +100269a6: e00f b.n 100269c8 +100269a8: 2a02 cmp r2, #2 +100269aa: d124 bne.n 100269f6 +100269ac: f8d4 760c ldr.w r7, [r4, #1548] ; 0x60c +100269b0: 2f01 cmp r7, #1 +100269b2: d126 bne.n 10026a02 +100269b4: 2110 movs r1, #16 +100269b6: f105 001e add.w r0, r5, #30 +100269ba: aa01 add r2, sp, #4 +100269bc: f1a8 031e sub.w r3, r8, #30 +100269c0: f01c ff96 bl 100438f0 <__rtw_get_ie_veneer> +100269c4: 4601 mov r1, r0 +100269c6: b908 cbnz r0, 100269cc +100269c8: 2000 movs r0, #0 +100269ca: e026 b.n 10026a1a +100269cc: f504 60c4 add.w r0, r4, #1568 ; 0x620 +100269d0: 9a01 ldr r2, [sp, #4] +100269d2: 3102 adds r1, #2 +100269d4: f7f6 f9ea bl 1001cdac +100269d8: 2303 movs r3, #3 +100269da: 4620 mov r0, r4 +100269dc: 4631 mov r1, r6 +100269de: f8c4 3608 str.w r3, [r4, #1544] ; 0x608 +100269e2: 4632 mov r2, r6 +100269e4: f7fe fdb0 bl 10025548 +100269e8: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +100269ec: f44f 7196 mov.w r1, #300 ; 0x12c +100269f0: f014 ff8a bl 1003b908 +100269f4: e010 b.n 10026a18 +100269f6: 2a04 cmp r2, #4 +100269f8: d1e6 bne.n 100269c8 +100269fa: f8d4 360c ldr.w r3, [r4, #1548] ; 0x60c +100269fe: 2b01 cmp r3, #1 +10026a00: d1e2 bne.n 100269c8 +10026a02: 4807 ldr r0, [pc, #28] ; (10026a20 ) +10026a04: f01b fb80 bl 10042108 +10026a08: 4b06 ldr r3, [pc, #24] ; (10026a24 ) +10026a0a: f8d3 0154 ldr.w r0, [r3, #340] ; 0x154 +10026a0e: f01b fb7b bl 10042108 +10026a12: 4620 mov r0, r4 +10026a14: f7ff ff7e bl 10026914 +10026a18: 2001 movs r0, #1 +10026a1a: b002 add sp, #8 +10026a1c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10026a20: 1004b9eb .word 0x1004b9eb +10026a24: 1004da10 .word 0x1004da10 + +10026a28 : +10026a28: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10026a2c: f5ad 7d19 sub.w sp, sp, #612 ; 0x264 +10026a30: 2600 movs r6, #0 +10026a32: ac08 add r4, sp, #32 +10026a34: f10d 0810 add.w r8, sp, #16 +10026a38: ab05 add r3, sp, #20 +10026a3a: 9405 str r4, [sp, #20] +10026a3c: f8a8 6000 strh.w r6, [r8] +10026a40: f8ad 6012 strh.w r6, [sp, #18] +10026a44: f8d1 a034 ldr.w sl, [r1, #52] ; 0x34 +10026a48: 6403 str r3, [r0, #64] ; 0x40 +10026a4a: 2340 movs r3, #64 ; 0x40 +10026a4c: 6443 str r3, [r0, #68] ; 0x44 +10026a4e: f8b0 3048 ldrh.w r3, [r0, #72] ; 0x48 +10026a52: 4607 mov r7, r0 +10026a54: 3301 adds r3, #1 +10026a56: f8a0 3048 strh.w r3, [r0, #72] ; 0x48 +10026a5a: 460d mov r5, r1 +10026a5c: f200 40fc addw r0, r0, #1276 ; 0x4fc +10026a60: 6cc9 ldr r1, [r1, #76] ; 0x4c +10026a62: 4632 mov r2, r6 +10026a64: fa5f fa8a uxtb.w sl, sl +10026a68: f7fd ff56 bl 10024918 +10026a6c: 2800 cmp r0, #0 +10026a6e: f000 80ac beq.w 10026bca +10026a72: f10d 0042 add.w r0, sp, #66 ; 0x42 +10026a76: 1d29 adds r1, r5, #4 +10026a78: 2206 movs r2, #6 +10026a7a: f7f6 f997 bl 1001cdac +10026a7e: 6bab ldr r3, [r5, #56] ; 0x38 +10026a80: f105 0988 add.w r9, r5, #136 ; 0x88 +10026a84: 8523 strh r3, [r4, #40] ; 0x28 +10026a86: f1ba 0f00 cmp.w sl, #0 +10026a8a: d102 bne.n 10026a92 +10026a8c: f8c4 a030 str.w sl, [r4, #48] ; 0x30 +10026a90: e048 b.n 10026b24 +10026a92: 6fa9 ldr r1, [r5, #120] ; 0x78 +10026a94: e88d 0140 stmia.w sp, {r6, r8} +10026a98: f105 007c add.w r0, r5, #124 ; 0x7c +10026a9c: 4632 mov r2, r6 +10026a9e: f10d 0312 add.w r3, sp, #18 +10026aa2: f01c ff7d bl 100439a0 <__rtw_get_sec_ie_veneer> +10026aa6: 2800 cmp r0, #0 +10026aa8: dd3a ble.n 10026b20 +10026aaa: f8b8 a000 ldrh.w sl, [r8] +10026aae: 9606 str r6, [sp, #24] +10026ab0: 9607 str r6, [sp, #28] +10026ab2: f8bd 6012 ldrh.w r6, [sp, #18] +10026ab6: f1ba 0f00 cmp.w sl, #0 +10026aba: d019 beq.n 10026af0 +10026abc: b116 cbz r6, 10026ac4 +10026abe: f44f 03c0 mov.w r3, #6291456 ; 0x600000 +10026ac2: e02e b.n 10026b22 +10026ac4: 6faa ldr r2, [r5, #120] ; 0x78 +10026ac6: 4648 mov r0, r9 +10026ac8: a918 add r1, sp, #96 ; 0x60 +10026aca: 3a0c subs r2, #12 +10026acc: f01c ff38 bl 10043940 <__rtw_get_wpa_ie_veneer> +10026ad0: b140 cbz r0, 10026ae4 +10026ad2: 9b18 ldr r3, [sp, #96] ; 0x60 +10026ad4: b133 cbz r3, 10026ae4 +10026ad6: f8b8 1000 ldrh.w r1, [r8] +10026ada: aa06 add r2, sp, #24 +10026adc: 9600 str r6, [sp, #0] +10026ade: ab07 add r3, sp, #28 +10026ae0: f01c fe4e bl 10043780 <__rtw_parse_wpa_ie_veneer> +10026ae4: 9b06 ldr r3, [sp, #24] +10026ae6: 2b08 cmp r3, #8 +10026ae8: bf0c ite eq +10026aea: 4b3b ldreq r3, [pc, #236] ; (10026bd8 ) +10026aec: 4b3b ldrne r3, [pc, #236] ; (10026bdc ) +10026aee: e018 b.n 10026b22 +10026af0: b1c6 cbz r6, 10026b24 +10026af2: 6faa ldr r2, [r5, #120] ; 0x78 +10026af4: 4648 mov r0, r9 +10026af6: a918 add r1, sp, #96 ; 0x60 +10026af8: 3a0c subs r2, #12 +10026afa: f01c fe69 bl 100437d0 <__rtw_get_wpa2_ie_veneer> +10026afe: b148 cbz r0, 10026b14 +10026b00: 9b18 ldr r3, [sp, #96] ; 0x60 +10026b02: b13b cbz r3, 10026b14 +10026b04: f8bd 1012 ldrh.w r1, [sp, #18] +10026b08: f8cd a000 str.w sl, [sp] +10026b0c: aa06 add r2, sp, #24 +10026b0e: ab07 add r3, sp, #28 +10026b10: f01c fdce bl 100436b0 <__rtw_parse_wpa2_ie_veneer> +10026b14: 9b06 ldr r3, [sp, #24] +10026b16: 2b08 cmp r3, #8 +10026b18: bf0c ite eq +10026b1a: 4b31 ldreq r3, [pc, #196] ; (10026be0 ) +10026b1c: 4b31 ldrne r3, [pc, #196] ; (10026be4 ) +10026b1e: e000 b.n 10026b22 +10026b20: 2301 movs r3, #1 +10026b22: 6323 str r3, [r4, #48] ; 0x30 +10026b24: a818 add r0, sp, #96 ; 0x60 +10026b26: 2100 movs r1, #0 +10026b28: f44f 7200 mov.w r2, #512 ; 0x200 +10026b2c: f7f6 f950 bl 1001cdd0 +10026b30: 4648 mov r0, r9 +10026b32: 6fa9 ldr r1, [r5, #120] ; 0x78 +10026b34: aa18 add r2, sp, #96 ; 0x60 +10026b36: ab07 add r3, sp, #28 +10026b38: f01c fdf2 bl 10043720 <__rtw_get_wps_ie_veneer> +10026b3c: b3a0 cbz r0, 10026ba8 +10026b3e: f89d 9061 ldrb.w r9, [sp, #97] ; 0x61 +10026b42: ab18 add r3, sp, #96 ; 0x60 +10026b44: 4499 add r9, r3 +10026b46: f64f 7aff movw sl, #65535 ; 0xffff +10026b4a: f04f 0800 mov.w r8, #0 +10026b4e: f10d 0666 add.w r6, sp, #102 ; 0x66 +10026b52: 454e cmp r6, r9 +10026b54: d203 bcs.n 10026b5e +10026b56: ebc6 0309 rsb r3, r6, r9 +10026b5a: 2b03 cmp r3, #3 +10026b5c: dc05 bgt.n 10026b6a +10026b5e: f1b8 0f01 cmp.w r8, #1 +10026b62: d121 bne.n 10026ba8 +10026b64: fa5f f38a uxtb.w r3, sl +10026b68: e01f b.n 10026baa +10026b6a: 8830 ldrh r0, [r6, #0] +10026b6c: f7f6 f87a bl 1001cc64 <_htons> +10026b70: 4683 mov fp, r0 +10026b72: 8870 ldrh r0, [r6, #2] +10026b74: f7f6 f876 bl 1001cc64 <_htons> +10026b78: f241 0141 movw r1, #4161 ; 0x1041 +10026b7c: 458b cmp fp, r1 +10026b7e: 4603 mov r3, r0 +10026b80: f106 0204 add.w r2, r6, #4 +10026b84: d102 bne.n 10026b8c +10026b86: f896 8004 ldrb.w r8, [r6, #4] +10026b8a: e00b b.n 10026ba4 +10026b8c: f241 0112 movw r1, #4114 ; 0x1012 +10026b90: 458b cmp fp, r1 +10026b92: d107 bne.n 10026ba4 +10026b94: 88b0 ldrh r0, [r6, #4] +10026b96: 9202 str r2, [sp, #8] +10026b98: 9303 str r3, [sp, #12] +10026b9a: f7f6 f863 bl 1001cc64 <_htons> +10026b9e: 9b03 ldr r3, [sp, #12] +10026ba0: 9a02 ldr r2, [sp, #8] +10026ba2: 4682 mov sl, r0 +10026ba4: 18d6 adds r6, r2, r3 +10026ba6: e7d4 b.n 10026b52 +10026ba8: 2306 movs r3, #6 +10026baa: 68ea ldr r2, [r5, #12] +10026bac: f10d 0021 add.w r0, sp, #33 ; 0x21 +10026bb0: f105 0110 add.w r1, r5, #16 +10026bb4: 6363 str r3, [r4, #52] ; 0x34 +10026bb6: 7022 strb r2, [r4, #0] +10026bb8: f7f6 f8f8 bl 1001cdac +10026bbc: 6ceb ldr r3, [r5, #76] ; 0x4c +10026bbe: 4638 mov r0, r7 +10026bc0: 63a3 str r3, [r4, #56] ; 0x38 +10026bc2: f012 f958 bl 10038e76 +10026bc6: 2000 movs r0, #0 +10026bc8: e001 b.n 10026bce +10026bca: f04f 30ff mov.w r0, #4294967295 +10026bce: f50d 7d19 add.w sp, sp, #612 ; 0x264 +10026bd2: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10026bd6: bf00 nop +10026bd8: 00200002 .word 0x00200002 +10026bdc: 00200004 .word 0x00200004 +10026be0: 00400002 .word 0x00400002 +10026be4: 00400004 .word 0x00400004 + +10026be8 : +10026be8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10026bec: 6c43 ldr r3, [r0, #68] ; 0x44 +10026bee: f5ad 7d09 sub.w sp, sp, #548 ; 0x224 +10026bf2: f04f 0900 mov.w r9, #0 +10026bf6: 9304 str r3, [sp, #16] +10026bf8: f8ad 9018 strh.w r9, [sp, #24] +10026bfc: f8ad 901a strh.w r9, [sp, #26] +10026c00: 6b4b ldr r3, [r1, #52] ; 0x34 +10026c02: 460c mov r4, r1 +10026c04: 6c06 ldr r6, [r0, #64] ; 0x40 +10026c06: 4649 mov r1, r9 +10026c08: f44f 7200 mov.w r2, #512 ; 0x200 +10026c0c: 4680 mov r8, r0 +10026c0e: a808 add r0, sp, #32 +10026c10: 9305 str r3, [sp, #20] +10026c12: f7f6 f8dd bl 1001cdd0 +10026c16: 6fa1 ldr r1, [r4, #120] ; 0x78 +10026c18: f104 0088 add.w r0, r4, #136 ; 0x88 +10026c1c: 390c subs r1, #12 +10026c1e: aa08 add r2, sp, #32 +10026c20: ab07 add r3, sp, #28 +10026c22: f01c fd7d bl 10043720 <__rtw_get_wps_ie_veneer> +10026c26: b930 cbnz r0, 10026c36 +10026c28: 23ff movs r3, #255 ; 0xff +10026c2a: 7333 strb r3, [r6, #12] +10026c2c: 4607 mov r7, r0 +10026c2e: f64f 7aff movw sl, #65535 ; 0xffff +10026c32: 4681 mov r9, r0 +10026c34: e00d b.n 10026c52 +10026c36: f89d 5021 ldrb.w r5, [sp, #33] ; 0x21 +10026c3a: ab08 add r3, sp, #32 +10026c3c: 441d add r5, r3 +10026c3e: f64f 7aff movw sl, #65535 ; 0xffff +10026c42: f10d 0726 add.w r7, sp, #38 ; 0x26 +10026c46: 42af cmp r7, r5 +10026c48: d202 bcs.n 10026c50 +10026c4a: 1beb subs r3, r5, r7 +10026c4c: 2b03 cmp r3, #3 +10026c4e: dc02 bgt.n 10026c56 +10026c50: 2701 movs r7, #1 +10026c52: 2500 movs r5, #0 +10026c54: e02e b.n 10026cb4 +10026c56: 8838 ldrh r0, [r7, #0] +10026c58: f7f6 f804 bl 1001cc64 <_htons> +10026c5c: 4603 mov r3, r0 +10026c5e: 8878 ldrh r0, [r7, #2] +10026c60: 9303 str r3, [sp, #12] +10026c62: f7f5 ffff bl 1001cc64 <_htons> +10026c66: 9b03 ldr r3, [sp, #12] +10026c68: 4683 mov fp, r0 +10026c6a: f241 0041 movw r0, #4161 ; 0x1041 +10026c6e: 4283 cmp r3, r0 +10026c70: f107 0104 add.w r1, r7, #4 +10026c74: d102 bne.n 10026c7c +10026c76: f897 9004 ldrb.w r9, [r7, #4] +10026c7a: e009 b.n 10026c90 +10026c7c: f241 0012 movw r0, #4114 ; 0x1012 +10026c80: 4283 cmp r3, r0 +10026c82: d105 bne.n 10026c90 +10026c84: 88b8 ldrh r0, [r7, #4] +10026c86: 9103 str r1, [sp, #12] +10026c88: f7f5 ffec bl 1001cc64 <_htons> +10026c8c: 9903 ldr r1, [sp, #12] +10026c8e: 4682 mov sl, r0 +10026c90: eb01 070b add.w r7, r1, fp +10026c94: e7d7 b.n 10026c46 +10026c96: f816 b005 ldrb.w fp, [r6, r5] +10026c9a: eb06 0c05 add.w ip, r6, r5 +10026c9e: f1bb 0f00 cmp.w fp, #0 +10026ca2: d019 beq.n 10026cd8 +10026ca4: 1c68 adds r0, r5, #1 +10026ca6: 4430 add r0, r6 +10026ca8: 1d21 adds r1, r4, #4 +10026caa: 2206 movs r2, #6 +10026cac: f7f6 f886 bl 1001cdbc +10026cb0: b920 cbnz r0, 10026cbc +10026cb2: 445d add r5, fp +10026cb4: 9b04 ldr r3, [sp, #16] +10026cb6: 429d cmp r5, r3 +10026cb8: d3ed bcc.n 10026c96 +10026cba: e053 b.n 10026d64 +10026cbc: f1bb 0f0e cmp.w fp, #14 +10026cc0: d006 beq.n 10026cd0 +10026cc2: 3507 adds r5, #7 +10026cc4: 6ba3 ldr r3, [r4, #56] ; 0x38 +10026cc6: 5972 ldr r2, [r6, r5] +10026cc8: 429a cmp r2, r3 +10026cca: d24b bcs.n 10026d64 +10026ccc: 5173 str r3, [r6, r5] +10026cce: e049 b.n 10026d64 +10026cd0: 68e2 ldr r2, [r4, #12] +10026cd2: 2a00 cmp r2, #0 +10026cd4: d1ed bne.n 10026cb2 +10026cd6: e7f4 b.n 10026cc2 +10026cd8: f8b8 2048 ldrh.w r2, [r8, #72] ; 0x48 +10026cdc: 9b04 ldr r3, [sp, #16] +10026cde: 3201 adds r2, #1 +10026ce0: f8a8 2048 strh.w r2, [r8, #72] ; 0x48 +10026ce4: 68e2 ldr r2, [r4, #12] +10026ce6: 320e adds r2, #14 +10026ce8: b2d2 uxtb r2, r2 +10026cea: 18a9 adds r1, r5, r2 +10026cec: 4299 cmp r1, r3 +10026cee: d839 bhi.n 10026d64 +10026cf0: 1c68 adds r0, r5, #1 +10026cf2: f88c 2000 strb.w r2, [ip] +10026cf6: 4430 add r0, r6 +10026cf8: 2206 movs r2, #6 +10026cfa: 1d21 adds r1, r4, #4 +10026cfc: f8cd c00c str.w ip, [sp, #12] +10026d00: f7f6 f854 bl 1001cdac +10026d04: 6ba2 ldr r2, [r4, #56] ; 0x38 +10026d06: f8dd c00c ldr.w ip, [sp, #12] +10026d0a: 9b05 ldr r3, [sp, #20] +10026d0c: f8cc 2007 str.w r2, [ip, #7] +10026d10: f013 02ff ands.w r2, r3, #255 ; 0xff +10026d14: d00f beq.n 10026d36 +10026d16: ab06 add r3, sp, #24 +10026d18: 9301 str r3, [sp, #4] +10026d1a: 465a mov r2, fp +10026d1c: 6fa1 ldr r1, [r4, #120] ; 0x78 +10026d1e: f8cd b000 str.w fp, [sp] +10026d22: f104 007c add.w r0, r4, #124 ; 0x7c +10026d26: f10d 031a add.w r3, sp, #26 +10026d2a: f01c fe39 bl 100439a0 <__rtw_get_sec_ie_veneer> +10026d2e: 2800 cmp r0, #0 +10026d30: bfd4 ite le +10026d32: 2201 movle r2, #1 +10026d34: 2203 movgt r2, #3 +10026d36: 1973 adds r3, r6, r5 +10026d38: 72da strb r2, [r3, #11] +10026d3a: b12f cbz r7, 10026d48 +10026d3c: f1b9 0f01 cmp.w r9, #1 +10026d40: d102 bne.n 10026d48 +10026d42: f883 a00c strb.w sl, [r3, #12] +10026d46: e001 b.n 10026d4c +10026d48: 22ff movs r2, #255 ; 0xff +10026d4a: 731a strb r2, [r3, #12] +10026d4c: 6ce2 ldr r2, [r4, #76] ; 0x4c +10026d4e: f105 000e add.w r0, r5, #14 +10026d52: 735a strb r2, [r3, #13] +10026d54: 4430 add r0, r6 +10026d56: f104 0110 add.w r1, r4, #16 +10026d5a: 68e2 ldr r2, [r4, #12] +10026d5c: f7f6 f826 bl 1001cdac +10026d60: 2001 movs r0, #1 +10026d62: e000 b.n 10026d66 +10026d64: 2000 movs r0, #0 +10026d66: f50d 7d09 add.w sp, sp, #548 ; 0x224 +10026d6a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +10026d6e : +10026d6e: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10026d72: 4688 mov r8, r1 +10026d74: b085 sub sp, #20 +10026d76: 4604 mov r4, r0 +10026d78: 2800 cmp r0, #0 +10026d7a: f000 8114 beq.w 10026fa6 +10026d7e: 2020 movs r0, #32 +10026d80: f7f5 fff6 bl 1001cd70 +10026d84: 4606 mov r6, r0 +10026d86: 2800 cmp r0, #0 +10026d88: f000 810d beq.w 10026fa6 +10026d8c: f44f 7061 mov.w r0, #900 ; 0x384 +10026d90: f7f5 ffee bl 1001cd70 +10026d94: 4605 mov r5, r0 +10026d96: b910 cbnz r0, 10026d9e +10026d98: 4630 mov r0, r6 +10026d9a: 2120 movs r1, #32 +10026d9c: e092 b.n 10026ec4 +10026d9e: f106 0018 add.w r0, r6, #24 +10026da2: f7f6 f81d bl 1001cde0 +10026da6: 2338 movs r3, #56 ; 0x38 +10026da8: 80b3 strh r3, [r6, #4] +10026daa: 2300 movs r3, #0 +10026dac: 6133 str r3, [r6, #16] +10026dae: 6173 str r3, [r6, #20] +10026db0: f44f 7961 mov.w r9, #900 ; 0x384 +10026db4: f44f 735f mov.w r3, #892 ; 0x37c +10026db8: f8c6 900c str.w r9, [r6, #12] +10026dbc: 60b5 str r5, [r6, #8] +10026dbe: 802b strh r3, [r5, #0] +10026dc0: 2308 movs r3, #8 +10026dc2: 70ab strb r3, [r5, #2] +10026dc4: f504 609e add.w r0, r4, #1264 ; 0x4f0 +10026dc8: f7f6 f97c bl 1001d0c4 +10026dcc: f105 0708 add.w r7, r5, #8 +10026dd0: 70e8 strb r0, [r5, #3] +10026dd2: 4641 mov r1, r8 +10026dd4: 4620 mov r0, r4 +10026dd6: 463a mov r2, r7 +10026dd8: f7ff fc3b bl 10026652 +10026ddc: b930 cbnz r0, 10026dec +10026dde: 4630 mov r0, r6 +10026de0: 2120 movs r1, #32 +10026de2: f7f5 ffdb bl 1001cd9c +10026de6: 4628 mov r0, r5 +10026de8: 4649 mov r1, r9 +10026dea: e06b b.n 10026ec4 +10026dec: f8d4 34e4 ldr.w r3, [r4, #1252] ; 0x4e4 +10026df0: bb93 cbnz r3, 10026e58 +10026df2: 7d63 ldrb r3, [r4, #21] +10026df4: 2b01 cmp r3, #1 +10026df6: d12f bne.n 10026e58 +10026df8: f994 3050 ldrsb.w r3, [r4, #80] ; 0x50 +10026dfc: 2b00 cmp r3, #0 +10026dfe: dd2b ble.n 10026e58 +10026e00: f105 0018 add.w r0, r5, #24 +10026e04: f104 0150 add.w r1, r4, #80 ; 0x50 +10026e08: f01b f9b6 bl 10042178 +10026e0c: bb20 cbnz r0, 10026e58 +10026e0e: f8d4 35c8 ldr.w r3, [r4, #1480] ; 0x5c8 +10026e12: 220c movs r2, #12 +10026e14: fb02 4303 mla r3, r2, r3, r4 +10026e18: f893 2504 ldrb.w r2, [r3, #1284] ; 0x504 +10026e1c: 208c movs r0, #140 ; 0x8c +10026e1e: f062 027f orn r2, r2, #127 ; 0x7f +10026e22: f883 2504 strb.w r2, [r3, #1284] ; 0x504 +10026e26: f7f5 ff8d bl 1001cd44 +10026e2a: f8c4 04e4 str.w r0, [r4, #1252] ; 0x4e4 +10026e2e: 4681 mov r9, r0 +10026e30: f8d8 0070 ldr.w r0, [r8, #112] ; 0x70 +10026e34: f7f5 ff86 bl 1001cd44 +10026e38: f8c9 0078 str.w r0, [r9, #120] ; 0x78 +10026e3c: f8d4 34e4 ldr.w r3, [r4, #1252] ; 0x4e4 +10026e40: f8d8 2070 ldr.w r2, [r8, #112] ; 0x70 +10026e44: 6f98 ldr r0, [r3, #120] ; 0x78 +10026e46: f8d8 1078 ldr.w r1, [r8, #120] ; 0x78 +10026e4a: f7f5 ffaf bl 1001cdac +10026e4e: f8d4 34e4 ldr.w r3, [r4, #1252] ; 0x4e4 +10026e52: f8d8 2070 ldr.w r2, [r8, #112] ; 0x70 +10026e56: 671a str r2, [r3, #112] ; 0x70 +10026e58: f8b4 304a ldrh.w r3, [r4, #74] ; 0x4a +10026e5c: f5b3 7f04 cmp.w r3, #528 ; 0x210 +10026e60: d111 bne.n 10026e86 +10026e62: f8d4 25d0 ldr.w r2, [r4, #1488] ; 0x5d0 +10026e66: b14a cbz r2, 10026e7c +10026e68: 696b ldr r3, [r5, #20] +10026e6a: 429a cmp r2, r3 +10026e6c: d123 bne.n 10026eb6 +10026e6e: f105 0018 add.w r0, r5, #24 +10026e72: f204 51d4 addw r1, r4, #1492 ; 0x5d4 +10026e76: f01b f991 bl 1004219c +10026e7a: b9e0 cbnz r0, 10026eb6 +10026e7c: 4620 mov r0, r4 +10026e7e: 4639 mov r1, r7 +10026e80: f7ff fdd2 bl 10026a28 +10026e84: e012 b.n 10026eac +10026e86: 6c23 ldr r3, [r4, #64] ; 0x40 +10026e88: b1fb cbz r3, 10026eca +10026e8a: f8d4 25d0 ldr.w r2, [r4, #1488] ; 0x5d0 +10026e8e: b14a cbz r2, 10026ea4 +10026e90: 696b ldr r3, [r5, #20] +10026e92: 429a cmp r2, r3 +10026e94: d10f bne.n 10026eb6 +10026e96: f105 0018 add.w r0, r5, #24 +10026e9a: f204 51d4 addw r1, r4, #1492 ; 0x5d4 +10026e9e: f01b f97d bl 1004219c +10026ea2: b940 cbnz r0, 10026eb6 +10026ea4: 4620 mov r0, r4 +10026ea6: 4639 mov r1, r7 +10026ea8: f7ff fe9e bl 10026be8 +10026eac: f8d4 35c4 ldr.w r3, [r4, #1476] ; 0x5c4 +10026eb0: 3301 adds r3, #1 +10026eb2: f8c4 35c4 str.w r3, [r4, #1476] ; 0x5c4 +10026eb6: 4630 mov r0, r6 +10026eb8: 2120 movs r1, #32 +10026eba: f7f5 ff6f bl 1001cd9c +10026ebe: 4628 mov r0, r5 +10026ec0: f44f 7161 mov.w r1, #900 ; 0x384 +10026ec4: f7f5 ff6a bl 1001cd9c +10026ec8: e06d b.n 10026fa6 +10026eca: f894 3438 ldrb.w r3, [r4, #1080] ; 0x438 +10026ece: 2b01 cmp r3, #1 +10026ed0: d112 bne.n 10026ef8 +10026ed2: f105 000c add.w r0, r5, #12 +10026ed6: f104 0174 add.w r1, r4, #116 ; 0x74 +10026eda: 2206 movs r2, #6 +10026edc: f7f5 ff6e bl 1001cdbc +10026ee0: 2800 cmp r0, #0 +10026ee2: d052 beq.n 10026f8a +10026ee4: 6ce3 ldr r3, [r4, #76] ; 0x4c +10026ee6: 2b00 cmp r3, #0 +10026ee8: d049 beq.n 10026f7e +10026eea: f105 0018 add.w r0, r5, #24 +10026eee: f104 0150 add.w r1, r4, #80 ; 0x50 +10026ef2: f01b f941 bl 10042178 +10026ef6: e02d b.n 10026f54 +10026ef8: f105 0018 add.w r0, r5, #24 +10026efc: f104 0150 add.w r1, r4, #80 ; 0x50 +10026f00: f01b f93a bl 10042178 +10026f04: 2800 cmp r0, #0 +10026f06: d140 bne.n 10026f8a +10026f08: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +10026f0c: f8ad 000c strh.w r0, [sp, #12] +10026f10: f8ad 000e strh.w r0, [sp, #14] +10026f14: b953 cbnz r3, 10026f2c +10026f16: f241 23f5 movw r3, #4853 ; 0x12f5 +10026f1a: 5ce3 ldrb r3, [r4, r3] +10026f1c: b933 cbnz r3, 10026f2c +10026f1e: f7e5 fa27 bl 1000c370 +10026f22: b918 cbnz r0, 10026f2c +10026f24: 6beb ldr r3, [r5, #60] ; 0x3c +10026f26: 2b01 cmp r3, #1 +10026f28: d129 bne.n 10026f7e +10026f2a: e02e b.n 10026f8a +10026f2c: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +10026f30: f023 0204 bic.w r2, r3, #4 +10026f34: 2a01 cmp r2, #1 +10026f36: d10f bne.n 10026f58 +10026f38: 6beb ldr r3, [r5, #60] ; 0x3c +10026f3a: b333 cbz r3, 10026f8a +10026f3c: ab03 add r3, sp, #12 +10026f3e: 2200 movs r2, #0 +10026f40: f8d5 1080 ldr.w r1, [r5, #128] ; 0x80 +10026f44: f105 0084 add.w r0, r5, #132 ; 0x84 +10026f48: 9301 str r3, [sp, #4] +10026f4a: 9200 str r2, [sp, #0] +10026f4c: f10d 030e add.w r3, sp, #14 +10026f50: f01c fd26 bl 100439a0 <__rtw_get_sec_ie_veneer> +10026f54: b198 cbz r0, 10026f7e +10026f56: e018 b.n 10026f8a +10026f58: 2b02 cmp r3, #2 +10026f5a: d001 beq.n 10026f60 +10026f5c: 2b04 cmp r3, #4 +10026f5e: d10e bne.n 10026f7e +10026f60: 6beb ldr r3, [r5, #60] ; 0x3c +10026f62: b193 cbz r3, 10026f8a +10026f64: ab03 add r3, sp, #12 +10026f66: 2200 movs r2, #0 +10026f68: f8d5 1080 ldr.w r1, [r5, #128] ; 0x80 +10026f6c: f105 0084 add.w r0, r5, #132 ; 0x84 +10026f70: 9301 str r3, [sp, #4] +10026f72: 9200 str r2, [sp, #0] +10026f74: f10d 030e add.w r3, sp, #14 +10026f78: f01c fd12 bl 100439a0 <__rtw_get_sec_ie_veneer> +10026f7c: b128 cbz r0, 10026f8a +10026f7e: f604 0078 addw r0, r4, #2168 ; 0x878 +10026f82: 4631 mov r1, r6 +10026f84: f7fb fd1a bl 100229bc +10026f88: e008 b.n 10026f9c +10026f8a: 4630 mov r0, r6 +10026f8c: 2120 movs r1, #32 +10026f8e: f7f5 ff05 bl 1001cd9c +10026f92: 4628 mov r0, r5 +10026f94: f44f 7161 mov.w r1, #900 ; 0x384 +10026f98: f7f5 ff00 bl 1001cd9c +10026f9c: f8d4 35c4 ldr.w r3, [r4, #1476] ; 0x5c4 +10026fa0: 3301 adds r3, #1 +10026fa2: f8c4 35c4 str.w r3, [r4, #1476] ; 0x5c4 +10026fa6: b005 add sp, #20 +10026fa8: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +10026fac : +10026fac: b538 push {r3, r4, r5, lr} +10026fae: 4b0b ldr r3, [pc, #44] ; (10026fdc ) +10026fb0: 4605 mov r5, r0 +10026fb2: 681b ldr r3, [r3, #0] +10026fb4: 460c mov r4, r1 +10026fb6: 6f88 ldr r0, [r1, #120] ; 0x78 +10026fb8: 6f09 ldr r1, [r1, #112] ; 0x70 +10026fba: b123 cbz r3, 10026fc6 +10026fbc: 3924 subs r1, #36 ; 0x24 +10026fbe: 3024 adds r0, #36 ; 0x24 +10026fc0: b289 uxth r1, r1 +10026fc2: 2250 movs r2, #80 ; 0x50 +10026fc4: 4798 blx r3 +10026fc6: f8d5 35c0 ldr.w r3, [r5, #1472] ; 0x5c0 +10026fca: 2b03 cmp r3, #3 +10026fcc: d103 bne.n 10026fd6 +10026fce: 4628 mov r0, r5 +10026fd0: 4621 mov r1, r4 +10026fd2: f7ff fecc bl 10026d6e +10026fd6: 2001 movs r0, #1 +10026fd8: bd38 pop {r3, r4, r5, pc} +10026fda: bf00 nop +10026fdc: 1005534c .word 0x1005534c + +10026fe0 : +10026fe0: b570 push {r4, r5, r6, lr} +10026fe2: 4606 mov r6, r0 +10026fe4: 2020 movs r0, #32 +10026fe6: f7f5 fec3 bl 1001cd70 +10026fea: 4604 mov r4, r0 +10026fec: b348 cbz r0, 10027042 +10026fee: 200c movs r0, #12 +10026ff0: f7f5 febe bl 1001cd70 +10026ff4: 4605 mov r5, r0 +10026ff6: b928 cbnz r0, 10027004 +10026ff8: 4620 mov r0, r4 +10026ffa: 2120 movs r1, #32 +10026ffc: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10027000: f7f5 becc b.w 1001cd9c +10027004: f104 0018 add.w r0, r4, #24 +10027008: f7f5 feea bl 1001cde0 +1002700c: 2338 movs r3, #56 ; 0x38 +1002700e: 80a3 strh r3, [r4, #4] +10027010: 230c movs r3, #12 +10027012: 60e3 str r3, [r4, #12] +10027014: 2300 movs r3, #0 +10027016: 6123 str r3, [r4, #16] +10027018: 6163 str r3, [r4, #20] +1002701a: 2304 movs r3, #4 +1002701c: 60a5 str r5, [r4, #8] +1002701e: 802b strh r3, [r5, #0] +10027020: 2309 movs r3, #9 +10027022: 70ab strb r3, [r5, #2] +10027024: f506 609e add.w r0, r6, #1264 ; 0x4f0 +10027028: f7f6 f84c bl 1001d0c4 +1002702c: f8d6 35c4 ldr.w r3, [r6, #1476] ; 0x5c4 +10027030: 70e8 strb r0, [r5, #3] +10027032: 60ab str r3, [r5, #8] +10027034: f606 0078 addw r0, r6, #2168 ; 0x878 +10027038: 4621 mov r1, r4 +1002703a: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1002703e: f7fb bcbd b.w 100229bc +10027042: bd70 pop {r4, r5, r6, pc} + +10027044 : +10027044: b5f8 push {r3, r4, r5, r6, r7, lr} +10027046: 4606 mov r6, r0 +10027048: 2020 movs r0, #32 +1002704a: 460f mov r7, r1 +1002704c: f7f5 fe90 bl 1001cd70 +10027050: 4604 mov r4, r0 +10027052: b370 cbz r0, 100270b2 +10027054: 200c movs r0, #12 +10027056: f7f5 fe8b bl 1001cd70 +1002705a: 4605 mov r5, r0 +1002705c: b928 cbnz r0, 1002706a +1002705e: 4620 mov r0, r4 +10027060: 2120 movs r1, #32 +10027062: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10027066: f7f5 be99 b.w 1001cd9c +1002706a: f104 0018 add.w r0, r4, #24 +1002706e: f7f5 feb7 bl 1001cde0 +10027072: 2338 movs r3, #56 ; 0x38 +10027074: 80a3 strh r3, [r4, #4] +10027076: 230c movs r3, #12 +10027078: 60e3 str r3, [r4, #12] +1002707a: 2300 movs r3, #0 +1002707c: 6123 str r3, [r4, #16] +1002707e: 6163 str r3, [r4, #20] +10027080: 2304 movs r3, #4 +10027082: 60a5 str r5, [r4, #8] +10027084: 802b strh r3, [r5, #0] +10027086: 230a movs r3, #10 +10027088: 70ab strb r3, [r5, #2] +1002708a: f506 609e add.w r0, r6, #1264 ; 0x4f0 +1002708e: f7f6 f819 bl 1001d0c4 +10027092: f106 017c add.w r1, r6, #124 ; 0x7c +10027096: 70e8 strb r0, [r5, #3] +10027098: f8c6 7094 str.w r7, [r6, #148] ; 0x94 +1002709c: 4630 mov r0, r6 +1002709e: 60af str r7, [r5, #8] +100270a0: f7fd fa95 bl 100245ce +100270a4: f606 0078 addw r0, r6, #2168 ; 0x878 +100270a8: 4621 mov r1, r4 +100270aa: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +100270ae: f7fb bc85 b.w 100229bc +100270b2: bdf8 pop {r3, r4, r5, r6, r7, pc} + +100270b4 : +100270b4: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +100270b8: 6f8d ldr r5, [r1, #120] ; 0x78 +100270ba: 4604 mov r4, r0 +100270bc: 4628 mov r0, r5 +100270be: f8d1 a070 ldr.w sl, [r1, #112] ; 0x70 +100270c2: f7fd fbd3 bl 1002486c +100270c6: 4601 mov r1, r0 +100270c8: f504 50a0 add.w r0, r4, #5120 ; 0x1400 +100270cc: 3009 adds r0, #9 +100270ce: 2206 movs r2, #6 +100270d0: f7f5 fe74 bl 1001cdbc +100270d4: 2800 cmp r0, #0 +100270d6: f000 8088 beq.w 100271ea +100270da: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +100270de: f413 5f10 tst.w r3, #9216 ; 0x2400 +100270e2: f000 8082 beq.w 100271ea +100270e6: f413 4680 ands.w r6, r3, #16384 ; 0x4000 +100270ea: d17e bne.n 100271ea +100270ec: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +100270f0: f014 fc0c bl 1003b90c +100270f4: 8b6b ldrh r3, [r5, #26] +100270f6: b123 cbz r3, 10027102 +100270f8: f8c4 65f8 str.w r6, [r4, #1528] ; 0x5f8 +100270fc: f06f 0903 mvn.w r9, #3 +10027100: e04c b.n 1002719c +10027102: 8b2b ldrh r3, [r5, #24] +10027104: 271e movs r7, #30 +10027106: f413 6f80 tst.w r3, #1024 ; 0x400 +1002710a: f8a4 36a4 strh.w r3, [r4, #1700] ; 0x6a4 +1002710e: bf0c ite eq +10027110: 2314 moveq r3, #20 +10027112: 2309 movne r3, #9 +10027114: f884 36a7 strb.w r3, [r4, #1703] ; 0x6a7 +10027118: f8b5 801c ldrh.w r8, [r5, #28] +1002711c: f3c8 080d ubfx r8, r8, #0, #14 +10027120: f8a4 86a0 strh.w r8, [r4, #1696] ; 0x6a0 +10027124: 46c1 mov r9, r8 +10027126: 4557 cmp r7, sl +10027128: d227 bcs.n 1002717a +1002712a: 5deb ldrb r3, [r5, r7] +1002712c: 19ee adds r6, r5, r7 +1002712e: 2b2d cmp r3, #45 ; 0x2d +10027130: d016 beq.n 10027160 +10027132: d806 bhi.n 10027142 +10027134: 2b2a cmp r3, #42 ; 0x2a +10027136: d11c bne.n 10027172 +10027138: 4620 mov r0, r4 +1002713a: 4631 mov r1, r6 +1002713c: f007 f85a bl 1002e1f4 +10027140: e017 b.n 10027172 +10027142: 2b3d cmp r3, #61 ; 0x3d +10027144: d011 beq.n 1002716a +10027146: 2bdd cmp r3, #221 ; 0xdd +10027148: d113 bne.n 10027172 +1002714a: 1cb0 adds r0, r6, #2 +1002714c: 4929 ldr r1, [pc, #164] ; (100271f4 ) +1002714e: 2206 movs r2, #6 +10027150: f7f5 fe34 bl 1001cdbc +10027154: b168 cbz r0, 10027172 +10027156: 4620 mov r0, r4 +10027158: 4631 mov r1, r6 +1002715a: f006 ff53 bl 1002e004 +1002715e: e008 b.n 10027172 +10027160: 4620 mov r0, r4 +10027162: 4631 mov r1, r6 +10027164: f006 ffc8 bl 1002e0f8 +10027168: e003 b.n 10027172 +1002716a: 4620 mov r0, r4 +1002716c: 4631 mov r1, r6 +1002716e: f007 f813 bl 1002e198 +10027172: 7873 ldrb r3, [r6, #1] +10027174: 3302 adds r3, #2 +10027176: 441f add r7, r3 +10027178: e7d5 b.n 10027126 +1002717a: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +1002717e: 481e ldr r0, [pc, #120] ; (100271f8 ) +10027180: f423 5300 bic.w r3, r3, #8192 ; 0x2000 +10027184: f443 4380 orr.w r3, r3, #16384 ; 0x4000 +10027188: f8c4 35f8 str.w r3, [r4, #1528] ; 0x5f8 +1002718c: f01a ffbc bl 10042108 +10027190: 4b1a ldr r3, [pc, #104] ; (100271fc ) +10027192: 4641 mov r1, r8 +10027194: f8d3 015c ldr.w r0, [r3, #348] ; 0x15c +10027198: f01a ffb6 bl 10042108 +1002719c: f8d4 30d0 ldr.w r3, [r4, #208] ; 0xd0 +100271a0: aa02 add r2, sp, #8 +100271a2: 336e adds r3, #110 ; 0x6e +100271a4: f802 3d01 strb.w r3, [r2, #-1]! +100271a8: 4620 mov r0, r4 +100271aa: 2133 movs r1, #51 ; 0x33 +100271ac: f010 fbbd bl 1003792a +100271b0: f7e5 f8de bl 1000c370 +100271b4: b140 cbz r0, 100271c8 +100271b6: 4628 mov r0, r5 +100271b8: f7fd fb68 bl 1002488c +100271bc: 2206 movs r2, #6 +100271be: 4601 mov r1, r0 +100271c0: 2300 movs r3, #0 +100271c2: 200c movs r0, #12 +100271c4: f7e6 fb48 bl 1000d858 +100271c8: 4620 mov r0, r4 +100271ca: 4649 mov r1, r9 +100271cc: f7ff ff3a bl 10027044 +100271d0: f241 23f5 movw r3, #4853 ; 0x12f5 +100271d4: 5ce3 ldrb r3, [r4, r3] +100271d6: b143 cbz r3, 100271ea +100271d8: 4628 mov r0, r5 +100271da: f7fd fb57 bl 1002488c +100271de: 2206 movs r2, #6 +100271e0: 4601 mov r1, r0 +100271e2: 2300 movs r3, #0 +100271e4: 200a movs r0, #10 +100271e6: f7e6 fb37 bl 1000d858 +100271ea: 2001 movs r0, #1 +100271ec: b002 add sp, #8 +100271ee: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +100271f2: bf00 nop +100271f4: 1004a714 .word 0x1004a714 +100271f8: 1004b9eb .word 0x1004b9eb +100271fc: 1004da10 .word 0x1004da10 + +10027200 : +10027200: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10027202: 4606 mov r6, r0 +10027204: 2020 movs r0, #32 +10027206: 460f mov r7, r1 +10027208: f8ad 2006 strh.w r2, [sp, #6] +1002720c: f7f5 fdb0 bl 1001cd70 +10027210: 4604 mov r4, r0 +10027212: 2800 cmp r0, #0 +10027214: d03b beq.n 1002728e +10027216: 2014 movs r0, #20 +10027218: f7f5 fdaa bl 1001cd70 +1002721c: 4605 mov r5, r0 +1002721e: b920 cbnz r0, 1002722a +10027220: 4620 mov r0, r4 +10027222: 2120 movs r1, #32 +10027224: f7f5 fdba bl 1001cd9c +10027228: e031 b.n 1002728e +1002722a: f104 0018 add.w r0, r4, #24 +1002722e: f7f5 fdd7 bl 1001cde0 +10027232: 2338 movs r3, #56 ; 0x38 +10027234: 80a3 strh r3, [r4, #4] +10027236: 2314 movs r3, #20 +10027238: 60e3 str r3, [r4, #12] +1002723a: 2300 movs r3, #0 +1002723c: 6123 str r3, [r4, #16] +1002723e: 6163 str r3, [r4, #20] +10027240: 230c movs r3, #12 +10027242: 60a5 str r5, [r4, #8] +10027244: f506 609e add.w r0, r6, #1264 ; 0x4f0 +10027248: 802b strh r3, [r5, #0] +1002724a: 70ab strb r3, [r5, #2] +1002724c: f7f5 ff3a bl 1001d0c4 +10027250: 4639 mov r1, r7 +10027252: 70e8 strb r0, [r5, #3] +10027254: 2206 movs r2, #6 +10027256: f105 0008 add.w r0, r5, #8 +1002725a: f7f5 fda7 bl 1001cdac +1002725e: f105 000e add.w r0, r5, #14 +10027262: f10d 0106 add.w r1, sp, #6 +10027266: 2202 movs r2, #2 +10027268: f7f5 fda0 bl 1001cdac +1002726c: f506 603d add.w r0, r6, #3024 ; 0xbd0 +10027270: 4639 mov r1, r7 +10027272: f006 fb9f bl 1002d9b4 +10027276: b110 cbz r0, 1002727e +10027278: f8d0 3100 ldr.w r3, [r0, #256] ; 0x100 +1002727c: e001 b.n 10027282 +1002727e: f04f 33ff mov.w r3, #4294967295 +10027282: 612b str r3, [r5, #16] +10027284: f606 0078 addw r0, r6, #2168 ; 0x878 +10027288: 4621 mov r1, r4 +1002728a: f7fb fb97 bl 100229bc +1002728e: b003 add sp, #12 +10027290: bdf0 pop {r4, r5, r6, r7, pc} + +10027292 : +10027292: b570 push {r4, r5, r6, lr} +10027294: 4604 mov r4, r0 +10027296: 3098 adds r0, #152 ; 0x98 +10027298: 460d mov r5, r1 +1002729a: 4616 mov r6, r2 +1002729c: f006 fde3 bl 1002de66 +100272a0: 2206 movs r2, #6 +100272a2: 4601 mov r1, r0 +100272a4: 4628 mov r0, r5 +100272a6: f7f5 fd89 bl 1001cdbc +100272aa: b1d8 cbz r0, 100272e4 +100272ac: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +100272b0: f003 0203 and.w r2, r3, #3 +100272b4: 2a02 cmp r2, #2 +100272b6: d115 bne.n 100272e4 +100272b8: f413 4280 ands.w r2, r3, #16384 ; 0x4000 +100272bc: d008 beq.n 100272d0 +100272be: 2300 movs r3, #0 +100272c0: f8c4 35f8 str.w r3, [r4, #1528] ; 0x5f8 +100272c4: 4620 mov r0, r4 +100272c6: 4629 mov r1, r5 +100272c8: 4632 mov r2, r6 +100272ca: f7ff ff99 bl 10027200 +100272ce: e009 b.n 100272e4 +100272d0: f413 5f1c tst.w r3, #9984 ; 0x2700 +100272d4: d006 beq.n 100272e4 +100272d6: f8c4 25f8 str.w r2, [r4, #1528] ; 0x5f8 +100272da: 4620 mov r0, r4 +100272dc: f06f 0101 mvn.w r1, #1 +100272e0: f7ff feb0 bl 10027044 +100272e4: 2001 movs r0, #1 +100272e6: bd70 pop {r4, r5, r6, pc} + +100272e8 : +100272e8: e92d 4e78 stmdb sp!, {r3, r4, r5, r6, r9, sl, fp, lr} +100272ec: 4b5b ldr r3, [pc, #364] ; (1002745c ) +100272ee: 4606 mov r6, r0 +100272f0: 681b ldr r3, [r3, #0] +100272f2: 460c mov r4, r1 +100272f4: f8d1 9078 ldr.w r9, [r1, #120] ; 0x78 +100272f8: f8d1 b070 ldr.w fp, [r1, #112] ; 0x70 +100272fc: f100 0598 add.w r5, r0, #152 ; 0x98 +10027300: b133 cbz r3, 10027310 +10027302: f1ab 0124 sub.w r1, fp, #36 ; 0x24 +10027306: f109 0024 add.w r0, r9, #36 ; 0x24 +1002730a: b289 uxth r1, r1 +1002730c: 2280 movs r2, #128 ; 0x80 +1002730e: 4798 blx r3 +10027310: f8d6 35c0 ldr.w r3, [r6, #1472] ; 0x5c0 +10027314: 2b03 cmp r3, #3 +10027316: d104 bne.n 10027322 +10027318: 4630 mov r0, r6 +1002731a: 4621 mov r1, r4 +1002731c: f7ff fd27 bl 10026d6e +10027320: e098 b.n 10027454 +10027322: 4628 mov r0, r5 +10027324: f006 fd9f bl 1002de66 +10027328: 2206 movs r2, #6 +1002732a: 4601 mov r1, r0 +1002732c: f109 0010 add.w r0, r9, #16 +10027330: f7f5 fd44 bl 1001cdbc +10027334: 2800 cmp r0, #0 +10027336: f000 808d beq.w 10027454 +1002733a: f8d6 25f8 ldr.w r2, [r6, #1528] ; 0x5f8 +1002733e: 05d3 lsls r3, r2, #23 +10027340: d511 bpl.n 10027366 +10027342: f1ab 0118 sub.w r1, fp, #24 +10027346: f109 0018 add.w r0, r9, #24 +1002734a: f007 f9b9 bl 1002e6c0 +1002734e: 4649 mov r1, r9 +10027350: f886 06a6 strb.w r0, [r6, #1702] ; 0x6a6 +10027354: 465a mov r2, fp +10027356: f506 609d add.w r0, r6, #1256 ; 0x4e8 +1002735a: f007 fafd bl 1002e958 +1002735e: 4630 mov r0, r6 +10027360: f7ff fa90 bl 10026884 +10027364: e076 b.n 10027454 +10027366: f244 0303 movw r3, #16387 ; 0x4003 +1002736a: 4013 ands r3, r2 +1002736c: f244 0202 movw r2, #16386 ; 0x4002 +10027370: 4293 cmp r3, r2 +10027372: d16f bne.n 10027454 +10027374: f506 603d add.w r0, r6, #3024 ; 0xbd0 +10027378: f109 010a add.w r1, r9, #10 +1002737c: f006 fb1a bl 1002d9b4 +10027380: 4682 mov sl, r0 +10027382: 2800 cmp r0, #0 +10027384: d066 beq.n 10027454 +10027386: 4630 mov r0, r6 +10027388: 4649 mov r1, r9 +1002738a: 465a mov r2, fp +1002738c: f006 ff69 bl 1002e262 +10027390: bb90 cbnz r0, 100273f8 +10027392: 4833 ldr r0, [pc, #204] ; (10027460 ) +10027394: f01a feb8 bl 10042108 +10027398: 4b32 ldr r3, [pc, #200] ; (10027464 ) +1002739a: f8d3 0148 ldr.w r0, [r3, #328] ; 0x148 +1002739e: f01a feb3 bl 10042108 +100273a2: 4630 mov r0, r6 +100273a4: f106 019c add.w r1, r6, #156 ; 0x9c +100273a8: f64f 72ff movw r2, #65535 ; 0xffff +100273ac: f7ff ff71 bl 10027292 +100273b0: f896 386d ldrb.w r3, [r6, #2157] ; 0x86d +100273b4: 2b00 cmp r3, #0 +100273b6: d04d beq.n 10027454 +100273b8: f896 27e2 ldrb.w r2, [r6, #2018] ; 0x7e2 +100273bc: f896 37e1 ldrb.w r3, [r6, #2017] ; 0x7e1 +100273c0: 429a cmp r2, r3 +100273c2: d214 bcs.n 100273ee +100273c4: 4b28 ldr r3, [pc, #160] ; (10027468 ) +100273c6: 781a ldrb r2, [r3, #0] +100273c8: 2a00 cmp r2, #0 +100273ca: d143 bne.n 10027454 +100273cc: 2201 movs r2, #1 +100273ce: 701a strb r2, [r3, #0] +100273d0: f8b6 37e4 ldrh.w r3, [r6, #2020] ; 0x7e4 +100273d4: f44f 717a mov.w r1, #1000 ; 0x3e8 +100273d8: 4359 muls r1, r3 +100273da: f206 70d4 addw r0, r6, #2004 ; 0x7d4 +100273de: f014 fa93 bl 1003b908 +100273e2: f896 37e2 ldrb.w r3, [r6, #2018] ; 0x7e2 +100273e6: 3301 adds r3, #1 +100273e8: f886 37e2 strb.w r3, [r6, #2018] ; 0x7e2 +100273ec: e032 b.n 10027454 +100273ee: 4630 mov r0, r6 +100273f0: 491e ldr r1, [pc, #120] ; (1002746c ) +100273f2: f011 fd12 bl 10038e1a +100273f6: e02d b.n 10027454 +100273f8: f8d6 3fdc ldr.w r3, [r6, #4060] ; 0xfdc +100273fc: 2b04 cmp r3, #4 +100273fe: d001 beq.n 10027404 +10027400: 2b07 cmp r3, #7 +10027402: d102 bne.n 1002740a +10027404: f014 fcc2 bl 1003bd8c +10027408: b128 cbz r0, 10027416 +1002740a: 2100 movs r1, #0 +1002740c: 200f movs r0, #15 +1002740e: 460a mov r2, r1 +10027410: 460b mov r3, r1 +10027412: f7e6 fa21 bl 1000d858 +10027416: f50a 72c4 add.w r2, sl, #392 ; 0x188 +1002741a: f50a 73c0 add.w r3, sl, #384 ; 0x180 +1002741e: e9d2 4500 ldrd r4, r5, [r2] +10027422: e9d3 2300 ldrd r2, r3, [r3] +10027426: 18a4 adds r4, r4, r2 +10027428: eb45 0503 adc.w r5, r5, r3 +1002742c: f50a 73c8 add.w r3, sl, #400 ; 0x190 +10027430: e9d3 2300 ldrd r2, r3, [r3] +10027434: 18a4 adds r4, r4, r2 +10027436: eb45 0503 adc.w r5, r5, r3 +1002743a: 220f movs r2, #15 +1002743c: 2300 movs r3, #0 +1002743e: 4014 ands r4, r2 +10027440: 401d ands r5, r3 +10027442: ea54 0305 orrs.w r3, r4, r5 +10027446: d105 bne.n 10027454 +10027448: 4630 mov r0, r6 +1002744a: 4649 mov r1, r9 +1002744c: 465a mov r2, fp +1002744e: 4653 mov r3, sl +10027450: f007 f80f bl 1002e472 +10027454: 2001 movs r0, #1 +10027456: e8bd 8e78 ldmia.w sp!, {r3, r4, r5, r6, r9, sl, fp, pc} +1002745a: bf00 nop +1002745c: 1005534c .word 0x1005534c +10027460: 1004b9eb .word 0x1004b9eb +10027464: 1004da10 .word 0x1004da10 +10027468: 100530d4 .word 0x100530d4 +1002746c: 1004a5cd .word 0x1004a5cd + +10027470 : +10027470: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10027474: 4604 mov r4, r0 +10027476: b087 sub sp, #28 +10027478: 3098 adds r0, #152 ; 0x98 +1002747a: 6f8d ldr r5, [r1, #120] ; 0x78 +1002747c: f006 fcf3 bl 1002de66 +10027480: f105 0810 add.w r8, r5, #16 +10027484: 4601 mov r1, r0 +10027486: 2206 movs r2, #6 +10027488: 4640 mov r0, r8 +1002748a: f7f5 fc97 bl 1001cdbc +1002748e: 2800 cmp r0, #0 +10027490: f000 808d beq.w 100275ae +10027494: 6923 ldr r3, [r4, #16] +10027496: 8b2e ldrh r6, [r5, #24] +10027498: f013 0910 ands.w r9, r3, #16 +1002749c: 4f46 ldr r7, [pc, #280] ; (100275b8 ) +1002749e: d14c bne.n 1002753a +100274a0: 4846 ldr r0, [pc, #280] ; (100275bc ) +100274a2: f01a fe31 bl 10042108 +100274a6: 7ca9 ldrb r1, [r5, #18] +100274a8: 7c6b ldrb r3, [r5, #17] +100274aa: 7c2a ldrb r2, [r5, #16] +100274ac: 9100 str r1, [sp, #0] +100274ae: 7ce9 ldrb r1, [r5, #19] +100274b0: 9101 str r1, [sp, #4] +100274b2: 7d29 ldrb r1, [r5, #20] +100274b4: 9102 str r1, [sp, #8] +100274b6: 7d69 ldrb r1, [r5, #21] +100274b8: 9103 str r1, [sp, #12] +100274ba: f8d7 0164 ldr.w r0, [r7, #356] ; 0x164 +100274be: 4631 mov r1, r6 +100274c0: f01a fe22 bl 10042108 +100274c4: 4620 mov r0, r4 +100274c6: 4641 mov r1, r8 +100274c8: 4632 mov r2, r6 +100274ca: f7ff fee2 bl 10027292 +100274ce: f894 386d ldrb.w r3, [r4, #2157] ; 0x86d +100274d2: f884 9488 strb.w r9, [r4, #1160] ; 0x488 +100274d6: b323 cbz r3, 10027522 +100274d8: f894 27e2 ldrb.w r2, [r4, #2018] ; 0x7e2 +100274dc: f894 37e1 ldrb.w r3, [r4, #2017] ; 0x7e1 +100274e0: 429a cmp r2, r3 +100274e2: d21a bcs.n 1002751a +100274e4: f894 37e0 ldrb.w r3, [r4, #2016] ; 0x7e0 +100274e8: b9bb cbnz r3, 1002751a +100274ea: f241 23f5 movw r3, #4853 ; 0x12f5 +100274ee: 5ce3 ldrb r3, [r4, r3] +100274f0: b99b cbnz r3, 1002751a +100274f2: 4b33 ldr r3, [pc, #204] ; (100275c0 ) +100274f4: 781a ldrb r2, [r3, #0] +100274f6: b9a2 cbnz r2, 10027522 +100274f8: 2201 movs r2, #1 +100274fa: 701a strb r2, [r3, #0] +100274fc: f8b4 37e4 ldrh.w r3, [r4, #2020] ; 0x7e4 +10027500: f44f 717a mov.w r1, #1000 ; 0x3e8 +10027504: 4359 muls r1, r3 +10027506: f204 70d4 addw r0, r4, #2004 ; 0x7d4 +1002750a: f014 f9fd bl 1003b908 +1002750e: f894 37e2 ldrb.w r3, [r4, #2018] ; 0x7e2 +10027512: 3301 adds r3, #1 +10027514: f884 37e2 strb.w r3, [r4, #2018] ; 0x7e2 +10027518: e003 b.n 10027522 +1002751a: 4620 mov r0, r4 +1002751c: 4929 ldr r1, [pc, #164] ; (100275c4 ) +1002751e: f011 fc7c bl 10038e1a +10027522: f241 23f5 movw r3, #4853 ; 0x12f5 +10027526: 5ce3 ldrb r3, [r4, r3] +10027528: 2b00 cmp r3, #0 +1002752a: d040 beq.n 100275ae +1002752c: 2100 movs r1, #0 +1002752e: 460a mov r2, r1 +10027530: 460b mov r3, r1 +10027532: 200b movs r0, #11 +10027534: f7e6 f990 bl 1000d858 +10027538: e039 b.n 100275ae +1002753a: 4820 ldr r0, [pc, #128] ; (100275bc ) +1002753c: f01a fde4 bl 10042108 +10027540: 7b29 ldrb r1, [r5, #12] +10027542: 7aaa ldrb r2, [r5, #10] +10027544: 7aeb ldrb r3, [r5, #11] +10027546: 9100 str r1, [sp, #0] +10027548: 7b69 ldrb r1, [r5, #13] +1002754a: f105 080a add.w r8, r5, #10 +1002754e: 9101 str r1, [sp, #4] +10027550: 7ba9 ldrb r1, [r5, #14] +10027552: 9102 str r1, [sp, #8] +10027554: 7be9 ldrb r1, [r5, #15] +10027556: 9103 str r1, [sp, #12] +10027558: f8d7 0160 ldr.w r0, [r7, #352] ; 0x160 +1002755c: 4631 mov r1, r6 +1002755e: f01a fdd3 bl 10042108 +10027562: f504 603d add.w r0, r4, #3024 ; 0xbd0 +10027566: 4641 mov r1, r8 +10027568: f006 fa24 bl 1002d9b4 +1002756c: 4605 mov r5, r0 +1002756e: b1f0 cbz r0, 100275ae +10027570: f604 4644 addw r6, r4, #3140 ; 0xc44 +10027574: 4630 mov r0, r6 +10027576: a905 add r1, sp, #20 +10027578: f505 7707 add.w r7, r5, #540 ; 0x21c +1002757c: f7f5 fcbc bl 1001cef8 +10027580: 4638 mov r0, r7 +10027582: f7f5 fc31 bl 1001cde8 +10027586: b948 cbnz r0, 1002759c +10027588: 4638 mov r0, r7 +1002758a: f7f5 fc3f bl 1001ce0c +1002758e: 4629 mov r1, r5 +10027590: 4620 mov r0, r4 +10027592: 2203 movs r2, #3 +10027594: f7fa fdf7 bl 10022186 +10027598: 4605 mov r5, r0 +1002759a: e000 b.n 1002759e +1002759c: 2500 movs r5, #0 +1002759e: 4630 mov r0, r6 +100275a0: a905 add r1, sp, #20 +100275a2: f7f5 fcb1 bl 1001cf08 +100275a6: 4620 mov r0, r4 +100275a8: 4629 mov r1, r5 +100275aa: f7fa fc91 bl 10021ed0 +100275ae: 2001 movs r0, #1 +100275b0: b007 add sp, #28 +100275b2: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100275b6: bf00 nop +100275b8: 1004da10 .word 0x1004da10 +100275bc: 1004b9eb .word 0x1004b9eb +100275c0: 100530d4 .word 0x100530d4 +100275c4: 1004a5cd .word 0x1004a5cd + +100275c8 : +100275c8: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +100275cc: 4604 mov r4, r0 +100275ce: b087 sub sp, #28 +100275d0: 3098 adds r0, #152 ; 0x98 +100275d2: 6f8d ldr r5, [r1, #120] ; 0x78 +100275d4: f006 fc47 bl 1002de66 +100275d8: f105 0810 add.w r8, r5, #16 +100275dc: 4601 mov r1, r0 +100275de: 2206 movs r2, #6 +100275e0: 4640 mov r0, r8 +100275e2: f7f5 fbeb bl 1001cdbc +100275e6: 2800 cmp r0, #0 +100275e8: f000 8099 beq.w 1002771e +100275ec: 6923 ldr r3, [r4, #16] +100275ee: 8b2e ldrh r6, [r5, #24] +100275f0: f013 0910 ands.w r9, r3, #16 +100275f4: 4f4c ldr r7, [pc, #304] ; (10027728 ) +100275f6: d14c bne.n 10027692 +100275f8: 484c ldr r0, [pc, #304] ; (1002772c ) +100275fa: f01a fd85 bl 10042108 +100275fe: 7ca9 ldrb r1, [r5, #18] +10027600: 7c6b ldrb r3, [r5, #17] +10027602: 7c2a ldrb r2, [r5, #16] +10027604: 9100 str r1, [sp, #0] +10027606: 7ce9 ldrb r1, [r5, #19] +10027608: 9101 str r1, [sp, #4] +1002760a: 7d29 ldrb r1, [r5, #20] +1002760c: 9102 str r1, [sp, #8] +1002760e: 7d69 ldrb r1, [r5, #21] +10027610: 9103 str r1, [sp, #12] +10027612: f8d7 016c ldr.w r0, [r7, #364] ; 0x16c +10027616: 4631 mov r1, r6 +10027618: f01a fd76 bl 10042108 +1002761c: 4620 mov r0, r4 +1002761e: 4641 mov r1, r8 +10027620: 4632 mov r2, r6 +10027622: f7ff fe36 bl 10027292 +10027626: f894 386d ldrb.w r3, [r4, #2157] ; 0x86d +1002762a: f884 9488 strb.w r9, [r4, #1160] ; 0x488 +1002762e: b323 cbz r3, 1002767a +10027630: f894 27e2 ldrb.w r2, [r4, #2018] ; 0x7e2 +10027634: f894 37e1 ldrb.w r3, [r4, #2017] ; 0x7e1 +10027638: 429a cmp r2, r3 +1002763a: d21a bcs.n 10027672 +1002763c: f894 37e0 ldrb.w r3, [r4, #2016] ; 0x7e0 +10027640: b9bb cbnz r3, 10027672 +10027642: f241 23f5 movw r3, #4853 ; 0x12f5 +10027646: 5ce3 ldrb r3, [r4, r3] +10027648: b99b cbnz r3, 10027672 +1002764a: 4b39 ldr r3, [pc, #228] ; (10027730 ) +1002764c: 781a ldrb r2, [r3, #0] +1002764e: b9a2 cbnz r2, 1002767a +10027650: 2201 movs r2, #1 +10027652: 701a strb r2, [r3, #0] +10027654: f8b4 37e4 ldrh.w r3, [r4, #2020] ; 0x7e4 +10027658: f44f 717a mov.w r1, #1000 ; 0x3e8 +1002765c: 4359 muls r1, r3 +1002765e: f204 70d4 addw r0, r4, #2004 ; 0x7d4 +10027662: f014 f951 bl 1003b908 +10027666: f894 37e2 ldrb.w r3, [r4, #2018] ; 0x7e2 +1002766a: 3301 adds r3, #1 +1002766c: f884 37e2 strb.w r3, [r4, #2018] ; 0x7e2 +10027670: e003 b.n 1002767a +10027672: 4620 mov r0, r4 +10027674: 492f ldr r1, [pc, #188] ; (10027734 ) +10027676: f011 fbd0 bl 10038e1a +1002767a: f241 23f5 movw r3, #4853 ; 0x12f5 +1002767e: 5ce3 ldrb r3, [r4, r3] +10027680: 2b00 cmp r3, #0 +10027682: d04c beq.n 1002771e +10027684: 2100 movs r1, #0 +10027686: 460a mov r2, r1 +10027688: 460b mov r3, r1 +1002768a: 200b movs r0, #11 +1002768c: f7e6 f8e4 bl 1000d858 +10027690: e045 b.n 1002771e +10027692: 4826 ldr r0, [pc, #152] ; (1002772c ) +10027694: f01a fd38 bl 10042108 +10027698: 7b29 ldrb r1, [r5, #12] +1002769a: 7aaa ldrb r2, [r5, #10] +1002769c: 7aeb ldrb r3, [r5, #11] +1002769e: 9100 str r1, [sp, #0] +100276a0: 7b69 ldrb r1, [r5, #13] +100276a2: f105 080a add.w r8, r5, #10 +100276a6: 9101 str r1, [sp, #4] +100276a8: 7ba9 ldrb r1, [r5, #14] +100276aa: 9102 str r1, [sp, #8] +100276ac: 7be9 ldrb r1, [r5, #15] +100276ae: 9103 str r1, [sp, #12] +100276b0: f8d7 0168 ldr.w r0, [r7, #360] ; 0x168 +100276b4: 4631 mov r1, r6 +100276b6: f01a fd27 bl 10042108 +100276ba: f504 603d add.w r0, r4, #3024 ; 0xbd0 +100276be: 4641 mov r1, r8 +100276c0: f006 f978 bl 1002d9b4 +100276c4: 4605 mov r5, r0 +100276c6: b1f0 cbz r0, 10027706 +100276c8: f604 4644 addw r6, r4, #3140 ; 0xc44 +100276cc: 4630 mov r0, r6 +100276ce: a905 add r1, sp, #20 +100276d0: f505 7707 add.w r7, r5, #540 ; 0x21c +100276d4: f7f5 fc10 bl 1001cef8 +100276d8: 4638 mov r0, r7 +100276da: f7f5 fb85 bl 1001cde8 +100276de: b948 cbnz r0, 100276f4 +100276e0: 4638 mov r0, r7 +100276e2: f7f5 fb93 bl 1001ce0c +100276e6: 4629 mov r1, r5 +100276e8: 4620 mov r0, r4 +100276ea: 2203 movs r2, #3 +100276ec: f7fa fd4b bl 10022186 +100276f0: 4605 mov r5, r0 +100276f2: e000 b.n 100276f6 +100276f4: 2500 movs r5, #0 +100276f6: 4630 mov r0, r6 +100276f8: a905 add r1, sp, #20 +100276fa: f7f5 fc05 bl 1001cf08 +100276fe: 4620 mov r0, r4 +10027700: 4629 mov r1, r5 +10027702: f7fa fbe5 bl 10021ed0 +10027706: f241 25f5 movw r5, #4853 ; 0x12f5 +1002770a: 5d63 ldrb r3, [r4, r5] +1002770c: b13b cbz r3, 1002771e +1002770e: 2100 movs r1, #0 +10027710: 460b mov r3, r1 +10027712: 200b movs r0, #11 +10027714: 460a mov r2, r1 +10027716: f7e6 f89f bl 1000d858 +1002771a: 2300 movs r3, #0 +1002771c: 5563 strb r3, [r4, r5] +1002771e: 2001 movs r0, #1 +10027720: b007 add sp, #28 +10027722: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10027726: bf00 nop +10027728: 1004da10 .word 0x1004da10 +1002772c: 1004b9eb .word 0x1004b9eb +10027730: 100530d4 .word 0x100530d4 +10027734: 1004a5cd .word 0x1004a5cd + +10027738 : +10027738: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002773c: 4606 mov r6, r0 +1002773e: 2020 movs r0, #32 +10027740: 4688 mov r8, r1 +10027742: 4617 mov r7, r2 +10027744: f7f5 fb14 bl 1001cd70 +10027748: 4604 mov r4, r0 +1002774a: b368 cbz r0, 100277a8 +1002774c: 2014 movs r0, #20 +1002774e: f7f5 fb0f bl 1001cd70 +10027752: 4605 mov r5, r0 +10027754: b928 cbnz r0, 10027762 +10027756: 4620 mov r0, r4 +10027758: 2120 movs r1, #32 +1002775a: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1002775e: f7f5 bb1d b.w 1001cd9c +10027762: f104 0018 add.w r0, r4, #24 +10027766: f7f5 fb3b bl 1001cde0 +1002776a: 2338 movs r3, #56 ; 0x38 +1002776c: 80a3 strh r3, [r4, #4] +1002776e: 2314 movs r3, #20 +10027770: 60e3 str r3, [r4, #12] +10027772: 2300 movs r3, #0 +10027774: 6123 str r3, [r4, #16] +10027776: 6163 str r3, [r4, #20] +10027778: 230c movs r3, #12 +1002777a: 60a5 str r5, [r4, #8] +1002777c: 802b strh r3, [r5, #0] +1002777e: 230b movs r3, #11 +10027780: 70ab strb r3, [r5, #2] +10027782: f506 609e add.w r0, r6, #1264 ; 0x4f0 +10027786: f7f5 fc9d bl 1001d0c4 +1002778a: 4641 mov r1, r8 +1002778c: 70e8 strb r0, [r5, #3] +1002778e: 2206 movs r2, #6 +10027790: f105 0008 add.w r0, r5, #8 +10027794: f7f5 fb0a bl 1001cdac +10027798: 612f str r7, [r5, #16] +1002779a: f606 0078 addw r0, r6, #2168 ; 0x878 +1002779e: 4621 mov r1, r4 +100277a0: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +100277a4: f7fb b90a b.w 100229bc +100277a8: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +100277ac : +100277ac: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100277b0: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +100277b4: 6f8f ldr r7, [r1, #120] ; 0x78 +100277b6: f003 0303 and.w r3, r3, #3 +100277ba: 6f09 ldr r1, [r1, #112] ; 0x70 +100277bc: b0bd sub sp, #244 ; 0xf4 +100277be: 2b03 cmp r3, #3 +100277c0: 4605 mov r5, r0 +100277c2: 9104 str r1, [sp, #16] +100277c4: d007 beq.n 100277d6 +100277c6: f8d5 35f8 ldr.w r3, [r5, #1528] ; 0x5f8 +100277ca: f003 0303 and.w r3, r3, #3 +100277ce: 2b03 cmp r3, #3 +100277d0: f040 82da bne.w 10027d88 +100277d4: e006 b.n 100277e4 +100277d6: f44f 6108 mov.w r1, #2176 ; 0x880 +100277da: f7fd f838 bl 1002484e +100277de: 2800 cmp r0, #0 +100277e0: d0f1 beq.n 100277c6 +100277e2: e2b9 b.n 10027d58 +100277e4: f8b7 a000 ldrh.w sl, [r7] +100277e8: 9a04 ldr r2, [sp, #16] +100277ea: f01a 0afc ands.w sl, sl, #252 ; 0xfc +100277ee: bf14 ite ne +100277f0: f04f 090a movne.w r9, #10 +100277f4: f04f 0904 moveq.w r9, #4 +100277f8: f109 0818 add.w r8, r9, #24 +100277fc: 4542 cmp r2, r8 +100277fe: f0c0 82c3 bcc.w 10027d88 +10027802: f107 060a add.w r6, r7, #10 +10027806: f505 603d add.w r0, r5, #3024 ; 0xbd0 +1002780a: 4631 mov r1, r6 +1002780c: f006 f8d2 bl 1002d9b4 +10027810: 4604 mov r4, r0 +10027812: 2800 cmp r0, #0 +10027814: f000 82a2 beq.w 10027d5c +10027818: 7e3b ldrb r3, [r7, #24] +1002781a: 7e79 ldrb r1, [r7, #25] +1002781c: 9a04 ldr r2, [sp, #16] +1002781e: ea43 2101 orr.w r1, r3, r1, lsl #8 +10027822: 4899 ldr r0, [pc, #612] ; (10027a88 ) +10027824: f1a2 0318 sub.w r3, r2, #24 +10027828: 9103 str r1, [sp, #12] +1002782a: ebc9 0903 rsb r9, r9, r3 +1002782e: f01a fc6b bl 10042108 +10027832: 4b96 ldr r3, [pc, #600] ; (10027a8c ) +10027834: eb07 0b08 add.w fp, r7, r8 +10027838: f8d3 0158 ldr.w r0, [r3, #344] ; 0x158 +1002783c: f01a fc64 bl 10042108 +10027840: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +10027844: 9903 ldr r1, [sp, #12] +10027846: f413 6f80 tst.w r3, #1024 ; 0x400 +1002784a: d105 bne.n 10027858 +1002784c: 045a lsls r2, r3, #17 +1002784e: f140 8285 bpl.w 10027d5c +10027852: f423 4380 bic.w r3, r3, #16384 ; 0x4000 +10027856: e001 b.n 1002785c +10027858: f423 6380 bic.w r3, r3, #1024 ; 0x400 +1002785c: f443 5300 orr.w r3, r3, #8192 ; 0x2000 +10027860: f8c4 30f8 str.w r3, [r4, #248] ; 0xf8 +10027864: f8a4 12b8 strh.w r1, [r4, #696] ; 0x2b8 +10027868: 4658 mov r0, fp +1002786a: 4649 mov r1, r9 +1002786c: aa0e add r2, sp, #56 ; 0x38 +1002786e: 2301 movs r3, #1 +10027870: f01b ffd6 bl 10043820 <__rtw_ieee802_11_parse_elems_veneer> +10027874: 3001 adds r0, #1 +10027876: f000 8289 beq.w 10027d8c +1002787a: 9b0e ldr r3, [sp, #56] ; 0x38 +1002787c: 2b00 cmp r3, #0 +1002787e: f000 8285 beq.w 10027d8c +10027882: 44b8 add r8, r7 +10027884: 464b mov r3, r9 +10027886: 4640 mov r0, r8 +10027888: 2100 movs r1, #0 +1002788a: aa07 add r2, sp, #28 +1002788c: f01c f830 bl 100438f0 <__rtw_get_ie_veneer> +10027890: 9b07 ldr r3, [sp, #28] +10027892: 4606 mov r6, r0 +10027894: 2b00 cmp r3, #0 +10027896: f000 8279 beq.w 10027d8c +1002789a: 3002 adds r0, #2 +1002789c: f105 01a8 add.w r1, r5, #168 ; 0xa8 +100278a0: f8d5 20a4 ldr.w r2, [r5, #164] ; 0xa4 +100278a4: f7f5 fa8a bl 1001cdbc +100278a8: b120 cbz r0, 100278b4 +100278aa: f1d6 0101 rsbs r1, r6, #1 +100278ae: bf38 it cc +100278b0: 2100 movcc r1, #0 +100278b2: e000 b.n 100278b6 +100278b4: 2101 movs r1, #1 +100278b6: f8d5 20a4 ldr.w r2, [r5, #164] ; 0xa4 +100278ba: 9b07 ldr r3, [sp, #28] +100278bc: 4293 cmp r3, r2 +100278be: f040 8265 bne.w 10027d8c +100278c2: 2900 cmp r1, #0 +100278c4: f040 8262 bne.w 10027d8c +100278c8: 2101 movs r1, #1 +100278ca: 4640 mov r0, r8 +100278cc: aa07 add r2, sp, #28 +100278ce: 464b mov r3, r9 +100278d0: f01c f80e bl 100438f0 <__rtw_get_ie_veneer> +100278d4: 4601 mov r1, r0 +100278d6: 2800 cmp r0, #0 +100278d8: f000 8258 beq.w 10027d8c +100278dc: a80a add r0, sp, #40 ; 0x28 +100278de: 3102 adds r1, #2 +100278e0: 9a07 ldr r2, [sp, #28] +100278e2: f7f5 fa63 bl 1001cdac +100278e6: 2132 movs r1, #50 ; 0x32 +100278e8: 4640 mov r0, r8 +100278ea: aa07 add r2, sp, #28 +100278ec: 464b mov r3, r9 +100278ee: 9e07 ldr r6, [sp, #28] +100278f0: f01b fffe bl 100438f0 <__rtw_get_ie_veneer> +100278f4: 4601 mov r1, r0 +100278f6: b148 cbz r0, 1002790c +100278f8: 2e10 cmp r6, #16 +100278fa: d807 bhi.n 1002790c +100278fc: a80a add r0, sp, #40 ; 0x28 +100278fe: 4430 add r0, r6 +10027900: 3102 adds r1, #2 +10027902: 9a07 ldr r2, [sp, #28] +10027904: f7f5 fa52 bl 1001cdac +10027908: 9b07 ldr r3, [sp, #28] +1002790a: 441e add r6, r3 +1002790c: f504 7bac add.w fp, r4, #344 ; 0x158 +10027910: 4632 mov r2, r6 +10027912: 4658 mov r0, fp +10027914: a90a add r1, sp, #40 ; 0x28 +10027916: f8c4 6168 str.w r6, [r4, #360] ; 0x168 +1002791a: f7f5 fa47 bl 1001cdac +1002791e: 4658 mov r0, fp +10027920: f8d4 1168 ldr.w r1, [r4, #360] ; 0x168 +10027924: f006 f9ca bl 1002dcbc +10027928: 2300 movs r3, #0 +1002792a: f204 22d9 addw r2, r4, #729 ; 0x2d9 +1002792e: f8c4 32c0 str.w r3, [r4, #704] ; 0x2c0 +10027932: f8c4 32c4 str.w r3, [r4, #708] ; 0x2c4 +10027936: f8c4 32c8 str.w r3, [r4, #712] ; 0x2c8 +1002793a: f8c4 32cc str.w r3, [r4, #716] ; 0x2cc +1002793e: f8c4 32d0 str.w r3, [r4, #720] ; 0x2d0 +10027942: f8c4 32d4 str.w r3, [r4, #724] ; 0x2d4 +10027946: 9205 str r2, [sp, #20] +10027948: 4610 mov r0, r2 +1002794a: 4619 mov r1, r3 +1002794c: 2220 movs r2, #32 +1002794e: 9303 str r3, [sp, #12] +10027950: f7f5 fa3e bl 1001cdd0 +10027954: f8d5 2db4 ldr.w r2, [r5, #3508] ; 0xdb4 +10027958: 9b03 ldr r3, [sp, #12] +1002795a: f012 0f02 tst.w r2, #2 +1002795e: d025 beq.n 100279ac +10027960: 9e24 ldr r6, [sp, #144] ; 0x90 +10027962: b31e cbz r6, 100279ac +10027964: f89d b094 ldrb.w fp, [sp, #148] ; 0x94 +10027968: 9308 str r3, [sp, #32] +1002796a: 9309 str r3, [sp, #36] ; 0x24 +1002796c: 9300 str r3, [sp, #0] +1002796e: 1eb0 subs r0, r6, #2 +10027970: f10b 0102 add.w r1, fp, #2 +10027974: aa08 add r2, sp, #32 +10027976: ab09 add r3, sp, #36 ; 0x24 +10027978: f01b fe9a bl 100436b0 <__rtw_parse_wpa2_ie_veneer> +1002797c: 2801 cmp r0, #1 +1002797e: f040 81f3 bne.w 10027d68 +10027982: f8d4 32c4 ldr.w r3, [r4, #708] ; 0x2c4 +10027986: f8c4 02c0 str.w r0, [r4, #704] ; 0x2c0 +1002798a: f043 0302 orr.w r3, r3, #2 +1002798e: f8c4 32c4 str.w r3, [r4, #708] ; 0x2c4 +10027992: 9a08 ldr r2, [sp, #32] +10027994: f8d5 3dbc ldr.w r3, [r5, #3516] ; 0xdbc +10027998: 401a ands r2, r3 +1002799a: f8c4 22cc str.w r2, [r4, #716] ; 0x2cc +1002799e: f8d5 3dc4 ldr.w r3, [r5, #3524] ; 0xdc4 +100279a2: 9909 ldr r1, [sp, #36] ; 0x24 +100279a4: 400b ands r3, r1 +100279a6: f8c4 32d4 str.w r3, [r4, #724] ; 0x2d4 +100279aa: e029 b.n 10027a00 +100279ac: f012 0c01 ands.w ip, r2, #1 +100279b0: f04f 0300 mov.w r3, #0 +100279b4: d02f beq.n 10027a16 +100279b6: 9e22 ldr r6, [sp, #136] ; 0x88 +100279b8: b386 cbz r6, 10027a1c +100279ba: f89d b08c ldrb.w fp, [sp, #140] ; 0x8c +100279be: 9308 str r3, [sp, #32] +100279c0: 9309 str r3, [sp, #36] ; 0x24 +100279c2: 9300 str r3, [sp, #0] +100279c4: 1eb0 subs r0, r6, #2 +100279c6: f10b 0102 add.w r1, fp, #2 +100279ca: aa08 add r2, sp, #32 +100279cc: ab09 add r3, sp, #36 ; 0x24 +100279ce: f01b fed7 bl 10043780 <__rtw_parse_wpa_ie_veneer> +100279d2: 2801 cmp r0, #1 +100279d4: f040 81c8 bne.w 10027d68 +100279d8: f8d4 32c4 ldr.w r3, [r4, #708] ; 0x2c4 +100279dc: f8c4 02c0 str.w r0, [r4, #704] ; 0x2c0 +100279e0: f043 0301 orr.w r3, r3, #1 +100279e4: f8c4 32c4 str.w r3, [r4, #708] ; 0x2c4 +100279e8: 9a08 ldr r2, [sp, #32] +100279ea: f8d5 3db8 ldr.w r3, [r5, #3512] ; 0xdb8 +100279ee: 401a ands r2, r3 +100279f0: f8c4 22c8 str.w r2, [r4, #712] ; 0x2c8 +100279f4: f8d5 3dc0 ldr.w r3, [r5, #3520] ; 0xdc0 +100279f8: 9909 ldr r1, [sp, #36] ; 0x24 +100279fa: 400b ands r3, r1 +100279fc: f8c4 32d0 str.w r3, [r4, #720] ; 0x2d0 +10027a00: 2a00 cmp r2, #0 +10027a02: bf14 ite ne +10027a04: 2100 movne r1, #0 +10027a06: 2129 moveq r1, #41 ; 0x29 +10027a08: b90b cbnz r3, 10027a0e +10027a0a: 212a movs r1, #42 ; 0x2a +10027a0c: e1af b.n 10027d6e +10027a0e: 2900 cmp r1, #0 +10027a10: f040 81ad bne.w 10027d6e +10027a14: e003 b.n 10027a1e +10027a16: 46e3 mov fp, ip +10027a18: 4666 mov r6, ip +10027a1a: e000 b.n 10027a1e +10027a1c: 46b3 mov fp, r6 +10027a1e: f8d4 32bc ldr.w r3, [r4, #700] ; 0x2bc +10027a22: f8d5 2db4 ldr.w r2, [r5, #3508] ; 0xdb4 +10027a26: f423 5340 bic.w r3, r3, #12288 ; 0x3000 +10027a2a: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027a2e: bb06 cbnz r6, 10027a72 +10027a30: 992a ldr r1, [sp, #168] ; 0xa8 +10027a32: b111 cbz r1, 10027a3a +10027a34: f443 5380 orr.w r3, r3, #4096 ; 0x1000 +10027a38: e001 b.n 10027a3e +10027a3a: f443 5300 orr.w r3, r3, #8192 ; 0x2000 +10027a3e: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027a42: b372 cbz r2, 10027aa2 +10027a44: f8d4 32bc ldr.w r3, [r4, #700] ; 0x2bc +10027a48: f413 5f40 tst.w r3, #12288 ; 0x3000 +10027a4c: d029 beq.n 10027aa2 +10027a4e: f8d5 04c4 ldr.w r0, [r5, #1220] ; 0x4c4 +10027a52: b330 cbz r0, 10027aa2 +10027a54: 2200 movs r2, #0 +10027a56: ab3c add r3, sp, #240 ; 0xf0 +10027a58: f803 2dcc strb.w r2, [r3, #-204]! +10027a5c: f8d5 14d0 ldr.w r1, [r5, #1232] ; 0x4d0 +10027a60: 9200 str r2, [sp, #0] +10027a62: f241 0241 movw r2, #4161 ; 0x1041 +10027a66: f01b fe7b bl 10043760 <__rtw_get_wps_attr_content_veneer> +10027a6a: f89d 3024 ldrb.w r3, [sp, #36] ; 0x24 +10027a6e: b9c3 cbnz r3, 10027aa2 +10027a70: e17c b.n 10027d6c +10027a72: 2a00 cmp r2, #0 +10027a74: f000 8178 beq.w 10027d68 +10027a78: 9a2a ldr r2, [sp, #168] ; 0xa8 +10027a7a: b14a cbz r2, 10027a90 +10027a7c: f443 5380 orr.w r3, r3, #4096 ; 0x1000 +10027a80: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027a84: e00d b.n 10027aa2 +10027a86: bf00 nop +10027a88: 1004b9eb .word 0x1004b9eb +10027a8c: 1004da10 .word 0x1004da10 +10027a90: f10b 0202 add.w r2, fp, #2 +10027a94: 9805 ldr r0, [sp, #20] +10027a96: 1eb1 subs r1, r6, #2 +10027a98: 2a20 cmp r2, #32 +10027a9a: bf28 it cs +10027a9c: 2220 movcs r2, #32 +10027a9e: f7f5 f985 bl 1001cdac +10027aa2: f8d4 32bc ldr.w r3, [r4, #700] ; 0x2bc +10027aa6: 2201 movs r2, #1 +10027aa8: f423 7300 bic.w r3, r3, #512 ; 0x200 +10027aac: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027ab0: 2300 movs r3, #0 +10027ab2: f884 3304 strb.w r3, [r4, #772] ; 0x304 +10027ab6: f884 230a strb.w r2, [r4, #778] ; 0x30a +10027aba: f884 3309 strb.w r3, [r4, #777] ; 0x309 +10027abe: f884 3308 strb.w r3, [r4, #776] ; 0x308 +10027ac2: f884 3307 strb.w r3, [r4, #775] ; 0x307 +10027ac6: f884 3306 strb.w r3, [r4, #774] ; 0x306 +10027aca: f8d5 244c ldr.w r2, [r5, #1100] ; 0x44c +10027ace: f8c4 3104 str.w r3, [r4, #260] ; 0x104 +10027ad2: 2a00 cmp r2, #0 +10027ad4: d058 beq.n 10027b88 +10027ad6: 9307 str r3, [sp, #28] +10027ad8: 4640 mov r0, r8 +10027ada: 21dd movs r1, #221 ; 0xdd +10027adc: aa07 add r2, sp, #28 +10027ade: 464b mov r3, r9 +10027ae0: f01b ff06 bl 100438f0 <__rtw_get_ie_veneer> +10027ae4: 4606 mov r6, r0 +10027ae6: 2800 cmp r0, #0 +10027ae8: d04e beq.n 10027b88 +10027aea: 3002 adds r0, #2 +10027aec: 49aa ldr r1, [pc, #680] ; (10027d98 ) +10027aee: 2206 movs r2, #6 +10027af0: f7f5 f964 bl 1001cdbc +10027af4: 2800 cmp r0, #0 +10027af6: d042 beq.n 10027b7e +10027af8: f8d4 32bc ldr.w r3, [r4, #700] ; 0x2bc +10027afc: 2101 movs r1, #1 +10027afe: f443 7300 orr.w r3, r3, #512 ; 0x200 +10027b02: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027b06: f8c4 1104 str.w r1, [r4, #260] ; 0x104 +10027b0a: 7a33 ldrb r3, [r6, #8] +10027b0c: f3c3 1241 ubfx r2, r3, #5, #2 +10027b10: f884 2305 strb.w r2, [r4, #773] ; 0x305 +10027b14: f003 020f and.w r2, r3, #15 +10027b18: 2a0f cmp r2, #15 +10027b1a: f884 3304 strb.w r3, [r4, #772] ; 0x304 +10027b1e: d003 beq.n 10027b28 +10027b20: f884 130a strb.w r1, [r4, #778] ; 0x30a +10027b24: b382 cbz r2, 10027b88 +10027b26: e002 b.n 10027b2e +10027b28: 2200 movs r2, #0 +10027b2a: f884 230a strb.w r2, [r4, #778] ; 0x30a +10027b2e: f013 0201 ands.w r2, r3, #1 +10027b32: bf18 it ne +10027b34: 2203 movne r2, #3 +10027b36: f884 2309 strb.w r2, [r4, #777] ; 0x309 +10027b3a: f003 0202 and.w r2, r3, #2 +10027b3e: f002 01ff and.w r1, r2, #255 ; 0xff +10027b42: b11a cbz r2, 10027b4c +10027b44: 2203 movs r2, #3 +10027b46: f884 2308 strb.w r2, [r4, #776] ; 0x308 +10027b4a: e001 b.n 10027b50 +10027b4c: f884 1308 strb.w r1, [r4, #776] ; 0x308 +10027b50: f003 0204 and.w r2, r3, #4 +10027b54: f002 01ff and.w r1, r2, #255 ; 0xff +10027b58: b11a cbz r2, 10027b62 +10027b5a: 2203 movs r2, #3 +10027b5c: f884 2306 strb.w r2, [r4, #774] ; 0x306 +10027b60: e001 b.n 10027b66 +10027b62: f884 1306 strb.w r1, [r4, #774] ; 0x306 +10027b66: f003 0308 and.w r3, r3, #8 +10027b6a: f003 02ff and.w r2, r3, #255 ; 0xff +10027b6e: b11b cbz r3, 10027b78 +10027b70: 2303 movs r3, #3 +10027b72: f884 3307 strb.w r3, [r4, #775] ; 0x307 +10027b76: e007 b.n 10027b88 +10027b78: f884 2307 strb.w r2, [r4, #775] ; 0x307 +10027b7c: e004 b.n 10027b88 +10027b7e: 9b07 ldr r3, [sp, #28] +10027b80: 3302 adds r3, #2 +10027b82: eb06 0803 add.w r8, r6, r3 +10027b86: e7a7 b.n 10027ad8 +10027b88: f204 2602 addw r6, r4, #514 ; 0x202 +10027b8c: 2100 movs r1, #0 +10027b8e: 4630 mov r0, r6 +10027b90: 221a movs r2, #26 +10027b92: f7f5 f91d bl 1001cdd0 +10027b96: 9936 ldr r1, [sp, #216] ; 0xd8 +10027b98: f8d4 32bc ldr.w r3, [r4, #700] ; 0x2bc +10027b9c: b161 cbz r1, 10027bb8 +10027b9e: f89d 20dc ldrb.w r2, [sp, #220] ; 0xdc +10027ba2: 2a19 cmp r2, #25 +10027ba4: d908 bls.n 10027bb8 +10027ba6: f443 6320 orr.w r3, r3, #2560 ; 0xa00 +10027baa: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027bae: 4630 mov r0, r6 +10027bb0: 221a movs r2, #26 +10027bb2: f7f5 f8fb bl 1001cdac +10027bb6: e003 b.n 10027bc0 +10027bb8: f423 6300 bic.w r3, r3, #2048 ; 0x800 +10027bbc: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027bc0: f8d5 3454 ldr.w r3, [r5, #1108] ; 0x454 +10027bc4: f8d4 22bc ldr.w r2, [r4, #700] ; 0x2bc +10027bc8: b913 cbnz r3, 10027bd0 +10027bca: 0510 lsls r0, r2, #20 +10027bcc: f100 80de bmi.w 10027d8c +10027bd0: f8d4 1168 ldr.w r1, [r4, #360] ; 0x168 +10027bd4: f042 4300 orr.w r3, r2, #2147483648 ; 0x80000000 +10027bd8: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027bdc: 4421 add r1, r4 +10027bde: 4623 mov r3, r4 +10027be0: 428b cmp r3, r1 +10027be2: d00a beq.n 10027bfa +10027be4: f893 0158 ldrb.w r0, [r3, #344] ; 0x158 +10027be8: 3301 adds r3, #1 +10027bea: f000 007f and.w r0, r0, #127 ; 0x7f +10027bee: 2816 cmp r0, #22 +10027bf0: ddf6 ble.n 10027be0 +10027bf2: f022 4200 bic.w r2, r2, #2147483648 ; 0x80000000 +10027bf6: f8c4 22bc str.w r2, [r4, #700] ; 0x2bc +10027bfa: f8b4 32b8 ldrh.w r3, [r4, #696] ; 0x2b8 +10027bfe: f013 0f20 tst.w r3, #32 +10027c02: f8d4 32bc ldr.w r3, [r4, #700] ; 0x2bc +10027c06: bf14 ite ne +10027c08: f043 0380 orrne.w r3, r3, #128 ; 0x80 +10027c0c: f023 0380 biceq.w r3, r3, #128 ; 0x80 +10027c10: f8c4 32bc str.w r3, [r4, #700] ; 0x2bc +10027c14: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +10027c18: b9bb cbnz r3, 10027c4a +10027c1a: 2301 movs r3, #1 +10027c1c: f8c4 30fc str.w r3, [r4, #252] ; 0xfc +10027c20: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +10027c24: 2b05 cmp r3, #5 +10027c26: d804 bhi.n 10027c32 +10027c28: eb05 0283 add.w r2, r5, r3, lsl #2 +10027c2c: f8d2 2c54 ldr.w r2, [r2, #3156] ; 0xc54 +10027c30: b94a cbnz r2, 10027c46 +10027c32: f8b5 2c70 ldrh.w r2, [r5, #3184] ; 0xc70 +10027c36: 4293 cmp r3, r2 +10027c38: f200 8098 bhi.w 10027d6c +10027c3c: eb05 0383 add.w r3, r5, r3, lsl #2 +10027c40: f8c3 4c54 str.w r4, [r3, #3156] ; 0xc54 +10027c44: e001 b.n 10027c4a +10027c46: 3301 adds r3, #1 +10027c48: e7e8 b.n 10027c1c +10027c4a: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +10027c4e: f605 4648 addw r6, r5, #3144 ; 0xc48 +10027c52: f423 5300 bic.w r3, r3, #8192 ; 0x2000 +10027c56: f443 4380 orr.w r3, r3, #16384 ; 0x4000 +10027c5a: 4630 mov r0, r6 +10027c5c: f8c4 30f8 str.w r3, [r4, #248] ; 0xf8 +10027c60: a909 add r1, sp, #36 ; 0x24 +10027c62: f504 7809 add.w r8, r4, #548 ; 0x224 +10027c66: f7f5 f947 bl 1001cef8 +10027c6a: 4640 mov r0, r8 +10027c6c: f7f5 f8bc bl 1001cde8 +10027c70: b910 cbnz r0, 10027c78 +10027c72: 4640 mov r0, r8 +10027c74: f7f5 f8ca bl 1001ce0c +10027c78: 4630 mov r0, r6 +10027c7a: a909 add r1, sp, #36 ; 0x24 +10027c7c: f605 4644 addw r6, r5, #3140 ; 0xc44 +10027c80: f7f5 f942 bl 1001cf08 +10027c84: f504 7807 add.w r8, r4, #540 ; 0x21c +10027c88: 4630 mov r0, r6 +10027c8a: a909 add r1, sp, #36 ; 0x24 +10027c8c: f7f5 f934 bl 1001cef8 +10027c90: 4640 mov r0, r8 +10027c92: f7f5 f8a9 bl 1001cde8 +10027c96: b140 cbz r0, 10027caa +10027c98: f8d5 3c54 ldr.w r3, [r5, #3156] ; 0xc54 +10027c9c: 4640 mov r0, r8 +10027c9e: f8c4 322c str.w r3, [r4, #556] ; 0x22c +10027ca2: f605 4134 addw r1, r5, #3124 ; 0xc34 +10027ca6: f7f5 f8ab bl 1001ce00 +10027caa: a909 add r1, sp, #36 ; 0x24 +10027cac: 4630 mov r0, r6 +10027cae: f7f5 f92b bl 1001cf08 +10027cb2: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +10027cb6: 0459 lsls r1, r3, #17 +10027cb8: d54e bpl.n 10027d58 +10027cba: 4628 mov r0, r5 +10027cbc: 4621 mov r1, r4 +10027cbe: f7fa f90c bl 10021eda +10027cc2: 4628 mov r0, r5 +10027cc4: 4621 mov r1, r4 +10027cc6: f7fa fbbd bl 10022444 +10027cca: f241 23f5 movw r3, #4853 ; 0x12f5 +10027cce: 5ceb ldrb r3, [r5, r3] +10027cd0: f504 7684 add.w r6, r4, #264 ; 0x108 +10027cd4: b92b cbnz r3, 10027ce2 +10027cd6: 4628 mov r0, r5 +10027cd8: 4631 mov r1, r6 +10027cda: 463a mov r2, r7 +10027cdc: 9b04 ldr r3, [sp, #16] +10027cde: f011 f8f3 bl 10038ec8 +10027ce2: 4628 mov r0, r5 +10027ce4: 4631 mov r1, r6 +10027ce6: f8d4 20fc ldr.w r2, [r4, #252] ; 0xfc +10027cea: f7ff fd25 bl 10027738 +10027cee: 4628 mov r0, r5 +10027cf0: f1ba 0f00 cmp.w sl, #0 +10027cf4: d103 bne.n 10027cfe +10027cf6: 4651 mov r1, sl +10027cf8: 4622 mov r2, r4 +10027cfa: 2310 movs r3, #16 +10027cfc: e002 b.n 10027d04 +10027cfe: 2100 movs r1, #0 +10027d00: 4622 mov r2, r4 +10027d02: 2330 movs r3, #48 ; 0x30 +10027d04: f7fd fea6 bl 10025a54 +10027d08: f8d4 32c4 ldr.w r3, [r4, #708] ; 0x2c4 +10027d0c: b323 cbz r3, 10027d58 +10027d0e: f241 23f5 movw r3, #4853 ; 0x12f5 +10027d12: 5ceb ldrb r3, [r5, r3] +10027d14: bb03 cbnz r3, 10027d58 +10027d16: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +10027d1a: 4628 mov r0, r5 +10027d1c: f203 138b addw r3, r3, #395 ; 0x18b +10027d20: eb05 0383 add.w r3, r5, r3, lsl #2 +10027d24: 4621 mov r1, r4 +10027d26: f8d3 6c78 ldr.w r6, [r3, #3192] ; 0xc78 +10027d2a: f002 f9f5 bl 1002a118 +10027d2e: f8d4 32c4 ldr.w r3, [r4, #708] ; 0x2c4 +10027d32: 079a lsls r2, r3, #30 +10027d34: d504 bpl.n 10027d40 +10027d36: f8d5 3cd4 ldr.w r3, [r5, #3284] ; 0xcd4 +10027d3a: 7433 strb r3, [r6, #16] +10027d3c: 2302 movs r3, #2 +10027d3e: e005 b.n 10027d4c +10027d40: 07db lsls r3, r3, #31 +10027d42: d504 bpl.n 10027d4e +10027d44: f8d5 3cd4 ldr.w r3, [r5, #3284] ; 0xcd4 +10027d48: 7433 strb r3, [r6, #16] +10027d4a: 2301 movs r3, #1 +10027d4c: 60b3 str r3, [r6, #8] +10027d4e: 4628 mov r0, r5 +10027d50: 4621 mov r1, r4 +10027d52: 2200 movs r2, #0 +10027d54: f002 fa56 bl 1002a204 +10027d58: 2001 movs r0, #1 +10027d5a: e019 b.n 10027d90 +10027d5c: 4628 mov r0, r5 +10027d5e: 4631 mov r1, r6 +10027d60: 2206 movs r2, #6 +10027d62: f7fe fa5d bl 10026220 +10027d66: e00f b.n 10027d88 +10027d68: 2128 movs r1, #40 ; 0x28 +10027d6a: e000 b.n 10027d6e +10027d6c: 2111 movs r1, #17 +10027d6e: 2600 movs r6, #0 +10027d70: f8c4 60fc str.w r6, [r4, #252] ; 0xfc +10027d74: 4628 mov r0, r5 +10027d76: 4622 mov r2, r4 +10027d78: f1ba 0f00 cmp.w sl, #0 +10027d7c: d101 bne.n 10027d82 +10027d7e: 2310 movs r3, #16 +10027d80: e000 b.n 10027d84 +10027d82: 2330 movs r3, #48 ; 0x30 +10027d84: f7fd fe66 bl 10025a54 +10027d88: 2000 movs r0, #0 +10027d8a: e001 b.n 10027d90 +10027d8c: 2101 movs r1, #1 +10027d8e: e7ee b.n 10027d6e +10027d90: b03d add sp, #244 ; 0xf4 +10027d92: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10027d96: bf00 nop +10027d98: 1004a70a .word 0x1004a70a + +10027d9c : +10027d9c: b5f0 push {r4, r5, r6, r7, lr} +10027d9e: 6887 ldr r7, [r0, #8] +10027da0: 2300 movs r3, #0 +10027da2: f897 c010 ldrb.w ip, [r7, #16] +10027da6: 461e mov r6, r3 +10027da8: 461d mov r5, r3 +10027daa: 4619 mov r1, r3 +10027dac: 4618 mov r0, r3 +10027dae: 4563 cmp r3, ip +10027db0: da13 bge.n 10027dda +10027db2: eb07 0283 add.w r2, r7, r3, lsl #2 +10027db6: 6892 ldr r2, [r2, #8] +10027db8: b16a cbz r2, 10027dd6 +10027dba: f502 54bd add.w r4, r2, #6048 ; 0x17a0 +10027dbe: 3412 adds r4, #18 +10027dc0: 7824 ldrb r4, [r4, #0] +10027dc2: b91c cbnz r4, 10027dcc +10027dc4: f502 65bf add.w r5, r2, #1528 ; 0x5f8 +10027dc8: 4610 mov r0, r2 +10027dca: e004 b.n 10027dd6 +10027dcc: 2c01 cmp r4, #1 +10027dce: bf04 itt eq +10027dd0: f502 66bf addeq.w r6, r2, #1528 ; 0x5f8 +10027dd4: 4611 moveq r1, r2 +10027dd6: 3301 adds r3, #1 +10027dd8: e7e9 b.n 10027dae +10027dda: b300 cbz r0, 10027e1e +10027ddc: b1d1 cbz r1, 10027e14 +10027dde: 6830 ldr r0, [r6, #0] +10027de0: f000 0303 and.w r3, r0, #3 +10027de4: 2b03 cmp r3, #3 +10027de6: d017 beq.n 10027e18 +10027de8: f244 0303 movw r3, #16387 ; 0x4003 +10027dec: 4003 ands r3, r0 +10027dee: f244 0202 movw r2, #16386 ; 0x4002 +10027df2: 4293 cmp r3, r2 +10027df4: d102 bne.n 10027dfc +10027df6: 690b ldr r3, [r1, #16] +10027df8: 05da lsls r2, r3, #23 +10027dfa: d50d bpl.n 10027e18 +10027dfc: f410 4080 ands.w r0, r0, #16384 ; 0x4000 +10027e00: d00d beq.n 10027e1e +10027e02: 6828 ldr r0, [r5, #0] +10027e04: 0443 lsls r3, r0, #17 +10027e06: d409 bmi.n 10027e1c +10027e08: f000 0003 and.w r0, r0, #3 +10027e0c: 3803 subs r0, #3 +10027e0e: bf18 it ne +10027e10: 2001 movne r0, #1 +10027e12: bdf0 pop {r4, r5, r6, r7, pc} +10027e14: 4608 mov r0, r1 +10027e16: bdf0 pop {r4, r5, r6, r7, pc} +10027e18: 2001 movs r0, #1 +10027e1a: bdf0 pop {r4, r5, r6, r7, pc} +10027e1c: 2000 movs r0, #0 +10027e1e: bdf0 pop {r4, r5, r6, r7, pc} + +10027e20 : +10027e20: b5f8 push {r3, r4, r5, r6, r7, lr} +10027e22: 4605 mov r5, r0 +10027e24: 460c mov r4, r1 +10027e26: f006 f9f3 bl 1002e210 +10027e2a: f8d5 3454 ldr.w r3, [r5, #1108] ; 0x454 +10027e2e: f205 66d2 addw r6, r5, #1746 ; 0x6d2 +10027e32: b183 cbz r3, 10027e56 +10027e34: f8d5 3458 ldr.w r3, [r5, #1112] ; 0x458 +10027e38: 2701 movs r7, #1 +10027e3a: f8c4 71f4 str.w r7, [r4, #500] ; 0x1f4 +10027e3e: f8c4 31f8 str.w r3, [r4, #504] ; 0x1f8 +10027e42: 4628 mov r0, r5 +10027e44: 4631 mov r1, r6 +10027e46: f006 fbe3 bl 1002e610 +10027e4a: b108 cbz r0, 10027e50 +10027e4c: f884 71fe strb.w r7, [r4, #510] ; 0x1fe +10027e50: f8c4 7104 str.w r7, [r4, #260] ; 0x104 +10027e54: e007 b.n 10027e66 +10027e56: f8c4 31f4 str.w r3, [r4, #500] ; 0x1f4 +10027e5a: f8c4 31f8 str.w r3, [r4, #504] ; 0x1f8 +10027e5e: f884 31fe strb.w r3, [r4, #510] ; 0x1fe +10027e62: f8c4 3104 str.w r3, [r4, #260] ; 0x104 +10027e66: f895 34f7 ldrb.w r3, [r5, #1271] ; 0x4f7 +10027e6a: f884 31fc strb.w r3, [r4, #508] ; 0x1fc +10027e6e: f895 34f8 ldrb.w r3, [r5, #1272] ; 0x4f8 +10027e72: f884 31fd strb.w r3, [r4, #509] ; 0x1fd +10027e76: 2300 movs r3, #0 +10027e78: f884 31ff strb.w r3, [r4, #511] ; 0x1ff +10027e7c: f884 3200 strb.w r3, [r4, #512] ; 0x200 +10027e80: f8d5 344c ldr.w r3, [r5, #1100] ; 0x44c +10027e84: b113 cbz r3, 10027e8c +10027e86: 2301 movs r3, #1 +10027e88: f8c4 3104 str.w r3, [r4, #260] ; 0x104 +10027e8c: f204 2002 addw r0, r4, #514 ; 0x202 +10027e90: 4631 mov r1, r6 +10027e92: 221a movs r2, #26 +10027e94: f7f4 ff8a bl 1001cdac +10027e98: 2301 movs r3, #1 +10027e9a: f8c4 30f8 str.w r3, [r4, #248] ; 0xf8 +10027e9e: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10027ea0 : +10027ea0: b510 push {r4, lr} +10027ea2: 4604 mov r4, r0 +10027ea4: f005 fff0 bl 1002de88 +10027ea8: b308 cbz r0, 10027eee +10027eaa: 4620 mov r0, r4 +10027eac: 210b movs r1, #11 +10027eae: 2200 movs r2, #0 +10027eb0: f00f fd3b bl 1003792a +10027eb4: 4a19 ldr r2, [pc, #100] ; (10027f1c ) +10027eb6: 4620 mov r0, r4 +10027eb8: 2104 movs r1, #4 +10027eba: f00f fd36 bl 1003792a +10027ebe: f241 3325 movw r3, #4901 ; 0x1325 +10027ec2: 5ce1 ldrb r1, [r4, r3] +10027ec4: 4620 mov r0, r4 +10027ec6: f006 fbcf bl 1002e668 +10027eca: 4620 mov r0, r4 +10027ecc: 2101 movs r1, #1 +10027ece: f7fc fcbe bl 1002484e +10027ed2: 2801 cmp r0, #1 +10027ed4: d011 beq.n 10027efa +10027ed6: 2200 movs r2, #0 +10027ed8: f884 24f7 strb.w r2, [r4, #1271] ; 0x4f7 +10027edc: f884 24f8 strb.w r2, [r4, #1272] ; 0x4f8 +10027ee0: 4620 mov r0, r4 +10027ee2: f894 14f6 ldrb.w r1, [r4, #1270] ; 0x4f6 +10027ee6: 4613 mov r3, r2 +10027ee8: f005 ff92 bl 1002de10 +10027eec: e005 b.n 10027efa +10027eee: 4620 mov r0, r4 +10027ef0: f005 ffe4 bl 1002debc +10027ef4: 2800 cmp r0, #0 +10027ef6: d1d8 bne.n 10027eaa +10027ef8: bd10 pop {r4, pc} +10027efa: 4620 mov r0, r4 +10027efc: f006 f853 bl 1002dfa6 +10027f00: 2300 movs r3, #0 +10027f02: 4620 mov r0, r4 +10027f04: f8c4 35f8 str.w r3, [r4, #1528] ; 0x5f8 +10027f08: 2102 movs r1, #2 +10027f0a: f005 ff15 bl 1002dd38 +10027f0e: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +10027f12: e8bd 4010 ldmia.w sp!, {r4, lr} +10027f16: f013 bcf9 b.w 1003b90c +10027f1a: bf00 nop +10027f1c: 1004a732 .word 0x1004a732 + +10027f20 <_linked_info_dump>: +10027f20: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10027f22: f241 73a6 movw r3, #6054 ; 0x17a6 +10027f26: 5cc3 ldrb r3, [r0, r3] +10027f28: 2100 movs r1, #0 +10027f2a: 4604 mov r4, r0 +10027f2c: 9100 str r1, [sp, #0] +10027f2e: b333 cbz r3, 10027f7e <_linked_info_dump+0x5e> +10027f30: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +10027f34: f003 0303 and.w r3, r3, #3 +10027f38: 2b02 cmp r3, #2 +10027f3a: d103 bne.n 10027f44 <_linked_info_dump+0x24> +10027f3c: 466a mov r2, sp +10027f3e: f00f fd0b bl 10037958 +10027f42: e016 b.n 10027f72 <_linked_info_dump+0x52> +10027f44: 2b03 cmp r3, #3 +10027f46: d114 bne.n 10027f72 <_linked_info_dump+0x52> +10027f48: f600 4644 addw r6, r0, #3140 ; 0xc44 +10027f4c: 4630 mov r0, r6 +10027f4e: a901 add r1, sp, #4 +10027f50: f7f4 ffd2 bl 1001cef8 +10027f54: f8d4 5c34 ldr.w r5, [r4, #3124] ; 0xc34 +10027f58: f604 4734 addw r7, r4, #3124 ; 0xc34 +10027f5c: 4638 mov r0, r7 +10027f5e: 4629 mov r1, r5 +10027f60: f7f4 fffe bl 1001cf60 +10027f64: b908 cbnz r0, 10027f6a <_linked_info_dump+0x4a> +10027f66: 682d ldr r5, [r5, #0] +10027f68: e7f8 b.n 10027f5c <_linked_info_dump+0x3c> +10027f6a: 4630 mov r0, r6 +10027f6c: a901 add r1, sp, #4 +10027f6e: f7f4 ffcb bl 1001cf08 +10027f72: 2200 movs r2, #0 +10027f74: 4620 mov r0, r4 +10027f76: 2102 movs r1, #2 +10027f78: 4613 mov r3, r2 +10027f7a: f00f fcf6 bl 1003796a +10027f7e: b003 add sp, #12 +10027f80: bdf0 pop {r4, r5, r6, r7, pc} + +10027f82 <_linked_rx_signal_strehgth_display>: +10027f82: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +10027f86: b513 push {r0, r1, r4, lr} +10027f88: f003 0303 and.w r3, r3, #3 +10027f8c: 2b02 cmp r3, #2 +10027f8e: 4604 mov r4, r0 +10027f90: d101 bne.n 10027f96 <_linked_rx_signal_strehgth_display+0x14> +10027f92: 2300 movs r3, #0 +10027f94: e002 b.n 10027f9c <_linked_rx_signal_strehgth_display+0x1a> +10027f96: 2b03 cmp r3, #3 +10027f98: d102 bne.n 10027fa0 <_linked_rx_signal_strehgth_display+0x1e> +10027f9a: 2302 movs r3, #2 +10027f9c: f88d 3003 strb.w r3, [sp, #3] +10027fa0: f10d 0203 add.w r2, sp, #3 +10027fa4: 4620 mov r0, r4 +10027fa6: 210e movs r1, #14 +10027fa8: f00f fcd6 bl 10037958 +10027fac: 4620 mov r0, r4 +10027fae: 2100 movs r1, #0 +10027fb0: aa01 add r2, sp, #4 +10027fb2: f00f fcd1 bl 10037958 +10027fb6: b002 add sp, #8 +10027fb8: bd10 pop {r4, pc} + ... + +10027fbc : +10027fbc: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10027fc0: f241 73a7 movw r3, #6055 ; 0x17a7 +10027fc4: 5cc3 ldrb r3, [r0, r3] +10027fc6: b08b sub sp, #44 ; 0x2c +10027fc8: 4606 mov r6, r0 +10027fca: b10b cbz r3, 10027fd0 +10027fcc: f7ff ffd9 bl 10027f82 <_linked_rx_signal_strehgth_display> +10027fd0: 4630 mov r0, r6 +10027fd2: f005 ff59 bl 1002de88 +10027fd6: 2800 cmp r0, #0 +10027fd8: f000 80bf beq.w 1002815a +10027fdc: f106 0b9c add.w fp, r6, #156 ; 0x9c +10027fe0: f506 603d add.w r0, r6, #3024 ; 0xbd0 +10027fe4: 4659 mov r1, fp +10027fe6: f005 fce5 bl 1002d9b4 +10027fea: 4680 mov r8, r0 +10027fec: 2800 cmp r0, #0 +10027fee: f000 8114 beq.w 1002821a +10027ff2: 4630 mov r0, r6 +10027ff4: f00e fa7d bl 100364f2 +10027ff8: 4642 mov r2, r8 +10027ffa: 4641 mov r1, r8 +10027ffc: e9f2 4568 ldrd r4, r5, [r2, #416]! ; 0x1a0 +10028000: 46c2 mov sl, r8 +10028002: 9200 str r2, [sp, #0] +10028004: e9f1 2366 ldrd r2, r3, [r1, #408]! ; 0x198 +10028008: 18a4 adds r4, r4, r2 +1002800a: eb45 0503 adc.w r5, r5, r3 +1002800e: e9fa 236a ldrd r2, r3, [sl, #424]! ; 0x1a8 +10028012: 1912 adds r2, r2, r4 +10028014: eb43 0305 adc.w r3, r3, r5 +10028018: 46c4 mov ip, r8 +1002801a: 4607 mov r7, r0 +1002801c: 4640 mov r0, r8 +1002801e: e9f0 4562 ldrd r4, r5, [r0, #392]! ; 0x188 +10028022: e9cd 2306 strd r2, r3, [sp, #24] +10028026: e9fc 2360 ldrd r2, r3, [ip, #384]! ; 0x180 +1002802a: 1912 adds r2, r2, r4 +1002802c: 4644 mov r4, r8 +1002802e: eb43 0305 adc.w r3, r3, r5 +10028032: e9f4 8964 ldrd r8, r9, [r4, #400]! ; 0x190 +10028036: eb18 0802 adds.w r8, r8, r2 +1002803a: eb49 0903 adc.w r9, r9, r3 +1002803e: e9dd 2306 ldrd r2, r3, [sp, #24] +10028042: 454b cmp r3, r9 +10028044: bf08 it eq +10028046: 4542 cmpeq r2, r8 +10028048: d15b bne.n 10028102 +1002804a: 2f00 cmp r7, #0 +1002804c: d159 bne.n 10028102 +1002804e: f896 47c4 ldrb.w r4, [r6, #1988] ; 0x7c4 +10028052: 2c07 cmp r4, #7 +10028054: d817 bhi.n 10028086 +10028056: b984 cbnz r4, 1002807a +10028058: f106 05a4 add.w r5, r6, #164 ; 0xa4 +1002805c: 4630 mov r0, r6 +1002805e: 4629 mov r1, r5 +10028060: 4622 mov r2, r4 +10028062: f7fd f995 bl 10025390 +10028066: 4630 mov r0, r6 +10028068: 4629 mov r1, r5 +1002806a: 4622 mov r2, r4 +1002806c: f7fd f990 bl 10025390 +10028070: 4630 mov r0, r6 +10028072: 4629 mov r1, r5 +10028074: 4622 mov r2, r4 +10028076: f7fd f98b bl 10025390 +1002807a: f896 37c4 ldrb.w r3, [r6, #1988] ; 0x7c4 +1002807e: 3301 adds r3, #1 +10028080: f886 37c4 strb.w r3, [r6, #1988] ; 0x7c4 +10028084: e04d b.n 10028122 +10028086: f886 77c4 strb.w r7, [r6, #1988] ; 0x7c4 +1002808a: 4865 ldr r0, [pc, #404] ; (10028220 ) +1002808c: f01a f83c bl 10042108 +10028090: 4b64 ldr r3, [pc, #400] ; (10028224 ) +10028092: f8d3 41a0 ldr.w r4, [r3, #416] ; 0x1a0 +10028096: f7f4 ff87 bl 1001cfa8 +1002809a: 4601 mov r1, r0 +1002809c: 4620 mov r0, r4 +1002809e: f01a f833 bl 10042108 +100280a2: 4630 mov r0, r6 +100280a4: 4659 mov r1, fp +100280a6: f64f 72ff movw r2, #65535 ; 0xffff +100280aa: f7ff f8f2 bl 10027292 +100280ae: f896 386d ldrb.w r3, [r6, #2157] ; 0x86d +100280b2: f8c6 7604 str.w r7, [r6, #1540] ; 0x604 +100280b6: 2b00 cmp r3, #0 +100280b8: f000 80af beq.w 1002821a +100280bc: f896 27e2 ldrb.w r2, [r6, #2018] ; 0x7e2 +100280c0: f896 37e1 ldrb.w r3, [r6, #2017] ; 0x7e1 +100280c4: 429a cmp r2, r3 +100280c6: d215 bcs.n 100280f4 +100280c8: 4b57 ldr r3, [pc, #348] ; (10028228 ) +100280ca: 781a ldrb r2, [r3, #0] +100280cc: 2a00 cmp r2, #0 +100280ce: f040 80a4 bne.w 1002821a +100280d2: 2201 movs r2, #1 +100280d4: 701a strb r2, [r3, #0] +100280d6: f8b6 37e4 ldrh.w r3, [r6, #2020] ; 0x7e4 +100280da: f44f 717a mov.w r1, #1000 ; 0x3e8 +100280de: 4359 muls r1, r3 +100280e0: f206 70d4 addw r0, r6, #2004 ; 0x7d4 +100280e4: f013 fc10 bl 1003b908 +100280e8: f896 37e2 ldrb.w r3, [r6, #2018] ; 0x7e2 +100280ec: 3301 adds r3, #1 +100280ee: f886 37e2 strb.w r3, [r6, #2018] ; 0x7e2 +100280f2: e092 b.n 1002821a +100280f4: 494d ldr r1, [pc, #308] ; (1002822c ) +100280f6: 4630 mov r0, r6 +100280f8: b00b add sp, #44 ; 0x2c +100280fa: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100280fe: f010 be8c b.w 10038e1a +10028102: 2300 movs r3, #0 +10028104: f886 37c4 strb.w r3, [r6, #1988] ; 0x7c4 +10028108: e9dc 2300 ldrd r2, r3, [ip] +1002810c: e9c1 2300 strd r2, r3, [r1] +10028110: e9d0 2300 ldrd r2, r3, [r0] +10028114: 9900 ldr r1, [sp, #0] +10028116: e9c1 2300 strd r2, r3, [r1] +1002811a: e9d4 2300 ldrd r2, r3, [r4] +1002811e: e9ca 2300 strd r2, r3, [sl] +10028122: f606 04c8 addw r4, r6, #2248 ; 0x8c8 +10028126: e9d4 231a ldrd r2, r3, [r4, #104] ; 0x68 +1002812a: e9d4 0120 ldrd r0, r1, [r4, #128] ; 0x80 +1002812e: 4299 cmp r1, r3 +10028130: bf08 it eq +10028132: 4290 cmpeq r0, r2 +10028134: d10b bne.n 1002814e +10028136: f8d6 3604 ldr.w r3, [r6, #1540] ; 0x604 +1002813a: 1c5a adds r2, r3, #1 +1002813c: 2b0f cmp r3, #15 +1002813e: f8c6 2604 str.w r2, [r6, #1540] ; 0x604 +10028142: d16a bne.n 1002821a +10028144: 4630 mov r0, r6 +10028146: 2100 movs r1, #0 +10028148: f7fd ff5c bl 10026004 +1002814c: e001 b.n 10028152 +1002814e: e9c4 2320 strd r2, r3, [r4, #128] ; 0x80 +10028152: 2300 movs r3, #0 +10028154: f8c6 3604 str.w r3, [r6, #1540] ; 0x604 +10028158: e05f b.n 1002821a +1002815a: 4630 mov r0, r6 +1002815c: f005 fea0 bl 1002dea0 +10028160: 2800 cmp r0, #0 +10028162: d05a beq.n 1002821a +10028164: f506 67bf add.w r7, r6, #1528 ; 0x5f8 +10028168: f206 744c addw r4, r6, #1868 ; 0x74c +1002816c: f506 6ccb add.w ip, r6, #1624 ; 0x658 +10028170: 463d mov r5, r7 +10028172: 1bab subs r3, r5, r6 +10028174: 443b add r3, r7 +10028176: f2a3 40a4 subw r0, r3, #1188 ; 0x4a4 +1002817a: 6802 ldr r2, [r0, #0] +1002817c: 2a01 cmp r2, #1 +1002817e: d147 bne.n 10028210 +10028180: f5a3 6395 sub.w r3, r3, #1192 ; 0x4a8 +10028184: 6819 ldr r1, [r3, #0] +10028186: 2900 cmp r1, #0 +10028188: d042 beq.n 10028210 +1002818a: f501 73c0 add.w r3, r1, #384 ; 0x180 +1002818e: e9d3 8900 ldrd r8, r9, [r3] +10028192: f501 73c4 add.w r3, r1, #392 ; 0x188 +10028196: e9d3 ab00 ldrd sl, fp, [r3] +1002819a: 6862 ldr r2, [r4, #4] +1002819c: f501 73c8 add.w r3, r1, #400 ; 0x190 +100281a0: e9cd 8900 strd r8, r9, [sp] +100281a4: e9cd ab06 strd sl, fp, [sp, #24] +100281a8: e9d3 ab00 ldrd sl, fp, [r3] +100281ac: e9dd 8906 ldrd r8, r9, [sp, #24] +100281b0: 2300 movs r3, #0 +100281b2: e9cd 2308 strd r2, r3, [sp, #32] +100281b6: e9dd 2300 ldrd r2, r3, [sp] +100281ba: eb18 0802 adds.w r8, r8, r2 +100281be: eb49 0903 adc.w r9, r9, r3 +100281c2: eb18 020a adds.w r2, r8, sl +100281c6: eb49 030b adc.w r3, r9, fp +100281ca: e9dd 8908 ldrd r8, r9, [sp, #32] +100281ce: 4599 cmp r9, r3 +100281d0: bf08 it eq +100281d2: 4590 cmpeq r8, r2 +100281d4: d114 bne.n 10028200 +100281d6: 68a3 ldr r3, [r4, #8] +100281d8: 2b02 cmp r3, #2 +100281da: d802 bhi.n 100281e2 +100281dc: 3301 adds r3, #1 +100281de: 60a3 str r3, [r4, #8] +100281e0: e016 b.n 10028210 +100281e2: 2300 movs r3, #0 +100281e4: 60a3 str r3, [r4, #8] +100281e6: f501 7184 add.w r1, r1, #264 ; 0x108 +100281ea: 6003 str r3, [r0, #0] +100281ec: f64f 72ff movw r2, #65535 ; 0xffff +100281f0: 4630 mov r0, r6 +100281f2: f8cd c014 str.w ip, [sp, #20] +100281f6: f7ff f803 bl 10027200 +100281fa: f8dd c014 ldr.w ip, [sp, #20] +100281fe: e007 b.n 10028210 +10028200: 2300 movs r3, #0 +10028202: 60a3 str r3, [r4, #8] +10028204: f8dd 9000 ldr.w r9, [sp] +10028208: 9b06 ldr r3, [sp, #24] +1002820a: 444b add r3, r9 +1002820c: 4453 add r3, sl +1002820e: 6063 str r3, [r4, #4] +10028210: 3520 adds r5, #32 +10028212: 4565 cmp r5, ip +10028214: f104 0420 add.w r4, r4, #32 +10028218: d1ab bne.n 10028172 +1002821a: b00b add sp, #44 ; 0x2c +1002821c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10028220: 1004b9eb .word 0x1004b9eb +10028224: 1004da10 .word 0x1004da10 +10028228: 100530d4 .word 0x100530d4 +1002822c: 1004a5cd .word 0x1004a5cd + +10028230 : +10028230: f8d0 35c0 ldr.w r3, [r0, #1472] ; 0x5c0 +10028234: b573 push {r0, r1, r4, r5, r6, lr} +10028236: 2b01 cmp r3, #1 +10028238: 4604 mov r4, r0 +1002823a: dd65 ble.n 10028308 +1002823c: 2b03 cmp r3, #3 +1002823e: d138 bne.n 100282b2 +10028240: f8d0 35c8 ldr.w r3, [r0, #1480] ; 0x5c8 +10028244: 220c movs r2, #12 +10028246: fb02 0203 mla r2, r2, r3, r0 +1002824a: f892 2504 ldrb.w r2, [r2, #1284] ; 0x504 +1002824e: f012 0f06 tst.w r2, #6 +10028252: d02b beq.n 100282ac +10028254: 4d2d ldr r5, [pc, #180] ; (1002830c ) +10028256: f012 0f04 tst.w r2, #4 +1002825a: 7829 ldrb r1, [r5, #0] +1002825c: bf0c ite eq +1002825e: 2607 moveq r6, #7 +10028260: 261c movne r6, #28 +10028262: 42b1 cmp r1, r6 +10028264: 462e mov r6, r5 +10028266: d201 bcs.n 1002826c +10028268: 0612 lsls r2, r2, #24 +1002826a: d510 bpl.n 1002828e +1002826c: 3301 adds r3, #1 +1002826e: 210c movs r1, #12 +10028270: f8c4 35c8 str.w r3, [r4, #1480] ; 0x5c8 +10028274: fb01 4303 mla r3, r1, r3, r4 +10028278: f893 1504 ldrb.w r1, [r3, #1284] ; 0x504 +1002827c: 2200 movs r2, #0 +1002827e: f001 017e and.w r1, r1, #126 ; 0x7e +10028282: f883 1504 strb.w r1, [r3, #1284] ; 0x504 +10028286: 7032 strb r2, [r6, #0] +10028288: f884 286e strb.w r2, [r4, #2158] ; 0x86e +1002828c: e011 b.n 100282b2 +1002828e: f011 0f01 tst.w r1, #1 +10028292: bf0c ite eq +10028294: 2330 moveq r3, #48 ; 0x30 +10028296: 231e movne r3, #30 +10028298: aa02 add r2, sp, #8 +1002829a: f802 3d01 strb.w r3, [r2, #-1]! +1002829e: 2133 movs r1, #51 ; 0x33 +100282a0: f00f fb43 bl 1003792a +100282a4: 782b ldrb r3, [r5, #0] +100282a6: 3301 adds r3, #1 +100282a8: 702b strb r3, [r5, #0] +100282aa: e002 b.n 100282b2 +100282ac: 3301 adds r3, #1 +100282ae: f8c0 35c8 str.w r3, [r0, #1480] ; 0x5c8 +100282b2: f894 37c2 ldrb.w r3, [r4, #1986] ; 0x7c2 +100282b6: 2b01 cmp r3, #1 +100282b8: d106 bne.n 100282c8 +100282ba: f894 34fa ldrb.w r3, [r4, #1274] ; 0x4fa +100282be: f8c4 35c8 str.w r3, [r4, #1480] ; 0x5c8 +100282c2: 2300 movs r3, #0 +100282c4: f884 37c2 strb.w r3, [r4, #1986] ; 0x7c2 +100282c8: 2020 movs r0, #32 +100282ca: f7f4 fd51 bl 1001cd70 +100282ce: 4605 mov r5, r0 +100282d0: b1d0 cbz r0, 10028308 +100282d2: 2030 movs r0, #48 ; 0x30 +100282d4: f7f4 fd4c bl 1001cd70 +100282d8: 4606 mov r6, r0 +100282da: b920 cbnz r0, 100282e6 +100282dc: 4628 mov r0, r5 +100282de: 2120 movs r1, #32 +100282e0: f7f4 fd5c bl 1001cd9c +100282e4: e010 b.n 10028308 +100282e6: f105 0018 add.w r0, r5, #24 +100282ea: f7f4 fd79 bl 1001cde0 +100282ee: 2312 movs r3, #18 +100282f0: 80ab strh r3, [r5, #4] +100282f2: 2330 movs r3, #48 ; 0x30 +100282f4: 60eb str r3, [r5, #12] +100282f6: 2300 movs r3, #0 +100282f8: 60ae str r6, [r5, #8] +100282fa: 612b str r3, [r5, #16] +100282fc: 616b str r3, [r5, #20] +100282fe: f604 0078 addw r0, r4, #2168 ; 0x878 +10028302: 4629 mov r1, r5 +10028304: f7fa fb5a bl 100229bc +10028308: b002 add sp, #8 +1002830a: bd70 pop {r4, r5, r6, pc} +1002830c: 100530e4 .word 0x100530e4 + +10028310 <_survey_timer_hdl>: +10028310: f7ff bf8e b.w 10028230 + +10028314 : +10028314: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +10028318: b510 push {r4, lr} +1002831a: f413 7180 ands.w r1, r3, #256 ; 0x100 +1002831e: 4604 mov r4, r0 +10028320: d005 beq.n 1002832e +10028322: 2300 movs r3, #0 +10028324: f8c0 35f8 str.w r3, [r0, #1528] ; 0x5f8 +10028328: f06f 0102 mvn.w r1, #2 +1002832c: e00d b.n 1002834a +1002832e: f413 7200 ands.w r2, r3, #512 ; 0x200 +10028332: d015 beq.n 10028360 +10028334: f8d0 35fc ldr.w r3, [r0, #1532] ; 0x5fc +10028338: 3301 adds r3, #1 +1002833a: 2b04 cmp r3, #4 +1002833c: f8c0 35fc str.w r3, [r0, #1532] ; 0x5fc +10028340: d907 bls.n 10028352 +10028342: f8c0 15f8 str.w r1, [r0, #1528] ; 0x5f8 +10028346: f04f 31ff mov.w r1, #4294967295 +1002834a: e8bd 4010 ldmia.w sp!, {r4, lr} +1002834e: f7fe be79 b.w 10027044 +10028352: 2301 movs r3, #1 +10028354: f8c0 3608 str.w r3, [r0, #1544] ; 0x608 +10028358: 460a mov r2, r1 +1002835a: f7fd f8f5 bl 10025548 +1002835e: e00f b.n 10028380 +10028360: 049b lsls r3, r3, #18 +10028362: d515 bpl.n 10028390 +10028364: f8d0 3600 ldr.w r3, [r0, #1536] ; 0x600 +10028368: 3301 adds r3, #1 +1002836a: 2b04 cmp r3, #4 +1002836c: f8c0 3600 str.w r3, [r0, #1536] ; 0x600 +10028370: d904 bls.n 1002837c +10028372: f8c0 25f8 str.w r2, [r0, #1528] ; 0x5f8 +10028376: f06f 0101 mvn.w r1, #1 +1002837a: e7e6 b.n 1002834a +1002837c: f7fd fca4 bl 10025cc8 +10028380: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +10028384: f44f 7196 mov.w r1, #300 ; 0x12c +10028388: e8bd 4010 ldmia.w sp!, {r4, lr} +1002838c: f013 babc b.w 1003b908 +10028390: bd10 pop {r4, pc} + +10028392 <_link_timer_hdl>: +10028392: f7ff bfbf b.w 10028314 + +10028396 : +10028396: b168 cbz r0, 100283b4 +10028398: f8d0 31f4 ldr.w r3, [r0, #500] ; 0x1f4 +1002839c: 2b01 cmp r3, #1 +1002839e: d109 bne.n 100283b4 +100283a0: f8d0 31f8 ldr.w r3, [r0, #504] ; 0x1f8 +100283a4: 2b01 cmp r3, #1 +100283a6: d105 bne.n 100283b4 +100283a8: f890 3200 ldrb.w r3, [r0, #512] ; 0x200 +100283ac: b113 cbz r3, 100283b4 +100283ae: 2300 movs r3, #0 +100283b0: f880 3200 strb.w r3, [r0, #512] ; 0x200 +100283b4: 4770 bx lr + +100283b6 : +100283b6: 2000 movs r0, #0 +100283b8: 4770 bx lr + +100283ba : +100283ba: b507 push {r0, r1, r2, lr} +100283bc: 780b ldrb r3, [r1, #0] +100283be: 2b04 cmp r3, #4 +100283c0: d103 bne.n 100283ca +100283c2: 2303 movs r3, #3 +100283c4: f8c0 35f8 str.w r3, [r0, #1528] ; 0x5f8 +100283c8: e00f b.n 100283ea +100283ca: 2b01 cmp r3, #1 +100283cc: d109 bne.n 100283e2 +100283ce: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +100283d2: f023 0303 bic.w r3, r3, #3 +100283d6: f043 0302 orr.w r3, r3, #2 +100283da: f8c0 35f8 str.w r3, [r0, #1528] ; 0x5f8 +100283de: 2302 movs r3, #2 +100283e0: e003 b.n 100283ea +100283e2: b90b cbnz r3, 100283e8 +100283e4: 2301 movs r3, #1 +100283e6: e000 b.n 100283ea +100283e8: 2300 movs r3, #0 +100283ea: 2102 movs r1, #2 +100283ec: f10d 0207 add.w r2, sp, #7 +100283f0: f88d 3007 strb.w r3, [sp, #7] +100283f4: f00f fa99 bl 1003792a +100283f8: 2000 movs r0, #0 +100283fa: b003 add sp, #12 +100283fc: f85d fb04 ldr.w pc, [sp], #4 + +10028400 : +10028400: b537 push {r0, r1, r2, r4, r5, lr} +10028402: 4604 mov r4, r0 +10028404: f005 fd40 bl 1002de88 +10028408: b128 cbz r0, 10028416 +1002840a: 4620 mov r0, r4 +1002840c: f104 019c add.w r1, r4, #156 ; 0x9c +10028410: 2203 movs r2, #3 +10028412: f7fd ff05 bl 10026220 +10028416: 4620 mov r0, r4 +10028418: 210b movs r1, #11 +1002841a: 2200 movs r2, #0 +1002841c: f00f fa85 bl 1003792a +10028420: 4620 mov r0, r4 +10028422: 2104 movs r1, #4 +10028424: 4a20 ldr r2, [pc, #128] ; (100284a8 ) +10028426: f00f fa80 bl 1003792a +1002842a: f241 3325 movw r3, #4901 ; 0x1325 +1002842e: 5ce1 ldrb r1, [r4, r3] +10028430: 4620 mov r0, r4 +10028432: f006 f919 bl 1002e668 +10028436: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +1002843a: 07db lsls r3, r3, #31 +1002843c: d507 bpl.n 1002844e +1002843e: aa02 add r2, sp, #8 +10028440: 2300 movs r3, #0 +10028442: f802 3d01 strb.w r3, [r2, #-1]! +10028446: 4620 mov r0, r4 +10028448: 2108 movs r1, #8 +1002844a: f00f fa6e bl 1003792a +1002844e: 4620 mov r0, r4 +10028450: 2102 movs r1, #2 +10028452: 2500 movs r5, #0 +10028454: f005 fc70 bl 1002dd38 +10028458: f8c4 55f8 str.w r5, [r4, #1528] ; 0x5f8 +1002845c: 4620 mov r0, r4 +1002845e: 2101 movs r1, #1 +10028460: f7fc f9f5 bl 1002484e +10028464: 2801 cmp r0, #1 +10028466: d00a beq.n 1002847e +10028468: f884 54f7 strb.w r5, [r4, #1271] ; 0x4f7 +1002846c: f884 54f8 strb.w r5, [r4, #1272] ; 0x4f8 +10028470: 4620 mov r0, r4 +10028472: f894 14f6 ldrb.w r1, [r4, #1270] ; 0x4f6 +10028476: 462a mov r2, r5 +10028478: 462b mov r3, r5 +1002847a: f005 fcc9 bl 1002de10 +1002847e: 4620 mov r0, r4 +10028480: f005 fd91 bl 1002dfa6 +10028484: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +10028488: f013 fa40 bl 1003b90c +1002848c: f204 402c addw r0, r4, #1068 ; 0x42c +10028490: f013 fa3c bl 1003b90c +10028494: 4620 mov r0, r4 +10028496: f003 fe88 bl 1002c1aa +1002849a: 4620 mov r0, r4 +1002849c: f003 feb1 bl 1002c202 +100284a0: 2000 movs r0, #0 +100284a2: b003 add sp, #12 +100284a4: bd30 pop {r4, r5, pc} +100284a6: bf00 nop +100284a8: 1004a732 .word 0x1004a732 + +100284ac : +100284ac: 780b ldrb r3, [r1, #0] +100284ae: 2b03 cmp r3, #3 +100284b0: bf98 it ls +100284b2: f8c0 360c strls.w r3, [r0, #1548] ; 0x60c +100284b6: 2000 movs r0, #0 +100284b8: 4770 bx lr + ... + +100284bc : +100284bc: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +100284be: 2300 movs r3, #0 +100284c0: 9302 str r3, [sp, #8] +100284c2: f8ad 300c strh.w r3, [sp, #12] +100284c6: 78cb ldrb r3, [r1, #3] +100284c8: 4605 mov r5, r0 +100284ca: 460c mov r4, r1 +100284cc: b113 cbz r3, 100284d4 +100284ce: 784b ldrb r3, [r1, #1] +100284d0: f8c0 3618 str.w r3, [r0, #1560] ; 0x618 +100284d4: 7863 ldrb r3, [r4, #1] +100284d6: 7826 ldrb r6, [r4, #0] +100284d8: 480c ldr r0, [pc, #48] ; (1002850c ) +100284da: ea43 0686 orr.w r6, r3, r6, lsl #2 +100284de: f019 fe13 bl 10042108 +100284e2: 4b0b ldr r3, [pc, #44] ; (10028510 ) +100284e4: 7821 ldrb r1, [r4, #0] +100284e6: 7862 ldrb r2, [r4, #1] +100284e8: f8d3 01a4 ldr.w r0, [r3, #420] ; 0x1a4 +100284ec: f019 fe0c bl 10042108 +100284f0: f446 4600 orr.w r6, r6, #32768 ; 0x8000 +100284f4: 7861 ldrb r1, [r4, #1] +100284f6: 3404 adds r4, #4 +100284f8: 4628 mov r0, r5 +100284fa: 9400 str r4, [sp, #0] +100284fc: 4632 mov r2, r6 +100284fe: ab02 add r3, sp, #8 +10028500: f005 fcff bl 1002df02 +10028504: 2000 movs r0, #0 +10028506: b004 add sp, #16 +10028508: bd70 pop {r4, r5, r6, pc} +1002850a: bf00 nop +1002850c: 1004b9eb .word 0x1004b9eb +10028510: 1004da10 .word 0x1004da10 + +10028514 : +10028514: b5f0 push {r4, r5, r6, r7, lr} +10028516: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +1002851a: b085 sub sp, #20 +1002851c: f003 0303 and.w r3, r3, #3 +10028520: 2b02 cmp r3, #2 +10028522: 4605 mov r5, r0 +10028524: 460c mov r4, r1 +10028526: d10e bne.n 10028546 +10028528: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002852c: f105 019c add.w r1, r5, #156 ; 0x9c +10028530: f005 fa40 bl 1002d9b4 +10028534: b130 cbz r0, 10028544 +10028536: f8d0 3100 ldr.w r3, [r0, #256] ; 0x100 +1002853a: 2b02 cmp r3, #2 +1002853c: bf0c ite eq +1002853e: 2705 moveq r7, #5 +10028540: 2704 movne r7, #4 +10028542: e000 b.n 10028546 +10028544: 2704 movs r7, #4 +10028546: f8d5 35f8 ldr.w r3, [r5, #1528] ; 0x5f8 +1002854a: f003 0303 and.w r3, r3, #3 +1002854e: 2b02 cmp r3, #2 +10028550: d108 bne.n 10028564 +10028552: 482f ldr r0, [pc, #188] ; (10028610 ) +10028554: f019 fdd8 bl 10042108 +10028558: 4b2e ldr r3, [pc, #184] ; (10028614 ) +1002855a: 79a1 ldrb r1, [r4, #6] +1002855c: f8d3 01a8 ldr.w r0, [r3, #424] ; 0x1a8 +10028560: f019 fdd2 bl 10042108 +10028564: f8d5 35f8 ldr.w r3, [r5, #1528] ; 0x5f8 +10028568: 79a6 ldrb r6, [r4, #6] +1002856a: f003 0303 and.w r3, r3, #3 +1002856e: 2b03 cmp r3, #3 +10028570: d133 bne.n 100285da +10028572: b926 cbnz r6, 1002857e +10028574: 4628 mov r0, r5 +10028576: 79e1 ldrb r1, [r4, #7] +10028578: f005 fcfe bl 1002df78 +1002857c: e02b b.n 100285d6 +1002857e: f505 603d add.w r0, r5, #3024 ; 0xbd0 +10028582: 4621 mov r1, r4 +10028584: f005 fa16 bl 1002d9b4 +10028588: 2800 cmp r0, #0 +1002858a: d03c beq.n 10028606 +1002858c: 79a3 ldrb r3, [r4, #6] +1002858e: f8d0 7100 ldr.w r7, [r0, #256] ; 0x100 +10028592: 009e lsls r6, r3, #2 +10028594: 3703 adds r7, #3 +10028596: f446 4600 orr.w r6, r6, #32768 ; 0x8000 +1002859a: b2ff uxtb r7, r7 +1002859c: b193 cbz r3, 100285c4 +1002859e: 481c ldr r0, [pc, #112] ; (10028610 ) +100285a0: f019 fdb2 bl 10042108 +100285a4: 78a0 ldrb r0, [r4, #2] +100285a6: 79a1 ldrb r1, [r4, #6] +100285a8: 9000 str r0, [sp, #0] +100285aa: 78e0 ldrb r0, [r4, #3] +100285ac: 7822 ldrb r2, [r4, #0] +100285ae: 9001 str r0, [sp, #4] +100285b0: 7920 ldrb r0, [r4, #4] +100285b2: 7863 ldrb r3, [r4, #1] +100285b4: 9002 str r0, [sp, #8] +100285b6: 7960 ldrb r0, [r4, #5] +100285b8: 9003 str r0, [sp, #12] +100285ba: 4816 ldr r0, [pc, #88] ; (10028614 ) +100285bc: f8d0 01ac ldr.w r0, [r0, #428] ; 0x1ac +100285c0: f019 fda2 bl 10042108 +100285c4: f104 0308 add.w r3, r4, #8 +100285c8: 9300 str r3, [sp, #0] +100285ca: 4628 mov r0, r5 +100285cc: 4639 mov r1, r7 +100285ce: 4632 mov r2, r6 +100285d0: 4623 mov r3, r4 +100285d2: f005 fc96 bl 1002df02 +100285d6: 2601 movs r6, #1 +100285d8: e016 b.n 10028608 +100285da: b926 cbnz r6, 100285e6 +100285dc: 4628 mov r0, r5 +100285de: 79e1 ldrb r1, [r4, #7] +100285e0: f005 fcca bl 1002df78 +100285e4: e010 b.n 10028608 +100285e6: 00b2 lsls r2, r6, #2 +100285e8: f104 0308 add.w r3, r4, #8 +100285ec: 9300 str r3, [sp, #0] +100285ee: 4628 mov r0, r5 +100285f0: 4623 mov r3, r4 +100285f2: 4639 mov r1, r7 +100285f4: f442 4200 orr.w r2, r2, #32768 ; 0x8000 +100285f8: f005 fc83 bl 1002df02 +100285fc: 79a3 ldrb r3, [r4, #6] +100285fe: 2600 movs r6, #0 +10028600: f8c5 3614 str.w r3, [r5, #1556] ; 0x614 +10028604: e000 b.n 10028608 +10028606: 2605 movs r6, #5 +10028608: 4630 mov r0, r6 +1002860a: b005 add sp, #20 +1002860c: bdf0 pop {r4, r5, r6, r7, pc} +1002860e: bf00 nop +10028610: 1004b9eb .word 0x1004b9eb +10028614: 1004da10 .word 0x1004da10 + +10028618 : +10028618: b570 push {r4, r5, r6, lr} +1002861a: 4606 mov r6, r0 +1002861c: 2020 movs r0, #32 +1002861e: f7f4 fba7 bl 1001cd70 +10028622: 4604 mov r4, r0 +10028624: b380 cbz r0, 10028688 +10028626: f44f 705f mov.w r0, #892 ; 0x37c +1002862a: f7f4 fba1 bl 1001cd70 +1002862e: 4605 mov r5, r0 +10028630: b928 cbnz r0, 1002863e +10028632: 4620 mov r0, r4 +10028634: 2120 movs r1, #32 +10028636: f7f4 fbb1 bl 1001cd9c +1002863a: 4628 mov r0, r5 +1002863c: bd70 pop {r4, r5, r6, pc} +1002863e: f106 0198 add.w r1, r6, #152 ; 0x98 +10028642: f44f 725f mov.w r2, #892 ; 0x37c +10028646: f7f4 fbb1 bl 1001cdac +1002864a: 6fa9 ldr r1, [r5, #120] ; 0x78 +1002864c: f896 26b8 ldrb.w r2, [r6, #1720] ; 0x6b8 +10028650: 390c subs r1, #12 +10028652: f105 0088 add.w r0, r5, #136 ; 0x88 +10028656: f7fc fbb9 bl 10024dcc +1002865a: 6fab ldr r3, [r5, #120] ; 0x78 +1002865c: 4418 add r0, r3 +1002865e: 67a8 str r0, [r5, #120] ; 0x78 +10028660: f104 0018 add.w r0, r4, #24 +10028664: f7f4 fbbc bl 1001cde0 +10028668: 2337 movs r3, #55 ; 0x37 +1002866a: 80a3 strh r3, [r4, #4] +1002866c: f44f 735f mov.w r3, #892 ; 0x37c +10028670: 60e3 str r3, [r4, #12] +10028672: 2300 movs r3, #0 +10028674: 60a5 str r5, [r4, #8] +10028676: 6123 str r3, [r4, #16] +10028678: 6163 str r3, [r4, #20] +1002867a: f606 0078 addw r0, r6, #2168 ; 0x878 +1002867e: 4621 mov r1, r4 +10028680: f7fa f99c bl 100229bc +10028684: b2c0 uxtb r0, r0 +10028686: bd70 pop {r4, r5, r6, pc} +10028688: bd70 pop {r4, r5, r6, pc} + ... + +1002868c : +1002868c: 680a ldr r2, [r1, #0] +1002868e: b5f8 push {r3, r4, r5, r6, r7, lr} +10028690: f3c2 4507 ubfx r5, r2, #16, #8 +10028694: 2d18 cmp r5, #24 +10028696: 4604 mov r4, r0 +10028698: 460e mov r6, r1 +1002869a: d819 bhi.n 100286d0 +1002869c: 490d ldr r1, [pc, #52] ; (100286d4 ) +1002869e: f851 3035 ldr.w r3, [r1, r5, lsl #3] +100286a2: 460f mov r7, r1 +100286a4: b113 cbz r3, 100286ac +100286a6: b292 uxth r2, r2 +100286a8: 4293 cmp r3, r2 +100286aa: d111 bne.n 100286d0 +100286ac: f604 008c addw r0, r4, #2188 ; 0x88c +100286b0: f7f4 fcfe bl 1001d0b0 +100286b4: f116 0108 adds.w r1, r6, #8 +100286b8: d00a beq.n 100286d0 +100286ba: eb07 05c5 add.w r5, r7, r5, lsl #3 +100286be: 686b ldr r3, [r5, #4] +100286c0: b10b cbz r3, 100286c6 +100286c2: 4620 mov r0, r4 +100286c4: 4798 blx r3 +100286c6: f8d4 3898 ldr.w r3, [r4, #2200] ; 0x898 +100286ca: 3301 adds r3, #1 +100286cc: f8c4 3898 str.w r3, [r4, #2200] ; 0x898 +100286d0: 2000 movs r0, #0 +100286d2: bdf8 pop {r3, r4, r5, r6, r7, pc} +100286d4: 1004a73c .word 0x1004a73c + +100286d8 : +100286d8: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +100286dc: 4607 mov r7, r0 +100286de: f7fc fb9f bl 10024e20 +100286e2: 4638 mov r0, r7 +100286e4: f005 f9bc bl 1002da60 +100286e8: 4604 mov r4, r0 +100286ea: 2800 cmp r0, #0 +100286ec: d04d beq.n 1002878a +100286ee: f8b7 3c6e ldrh.w r3, [r7, #3182] ; 0xc6e +100286f2: 07db lsls r3, r3, #31 +100286f4: d549 bpl.n 1002878a +100286f6: f8d0 30f4 ldr.w r3, [r0, #244] ; 0xf4 +100286fa: 2b00 cmp r3, #0 +100286fc: d045 beq.n 1002878a +100286fe: 200a movs r0, #10 +10028700: f104 06f0 add.w r6, r4, #240 ; 0xf0 +10028704: f7f4 fca2 bl 1001d04c +10028708: 4630 mov r0, r6 +1002870a: a901 add r1, sp, #4 +1002870c: f7f4 fbf4 bl 1001cef8 +10028710: f104 09e8 add.w r9, r4, #232 ; 0xe8 +10028714: f8d4 50e8 ldr.w r5, [r4, #232] ; 0xe8 +10028718: 4648 mov r0, r9 +1002871a: 4629 mov r1, r5 +1002871c: f7f4 fc20 bl 1001cf60 +10028720: bb78 cbnz r0, 10028782 +10028722: 4628 mov r0, r5 +10028724: f7f4 fb72 bl 1001ce0c +10028728: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +1002872c: 4630 mov r0, r6 +1002872e: 3b01 subs r3, #1 +10028730: 2b00 cmp r3, #0 +10028732: f8c4 30f4 str.w r3, [r4, #244] ; 0xf4 +10028736: bf18 it ne +10028738: 2301 movne r3, #1 +1002873a: f885 3065 strb.w r3, [r5, #101] ; 0x65 +1002873e: 2301 movs r3, #1 +10028740: f885 3067 strb.w r3, [r5, #103] ; 0x67 +10028744: 2311 movs r3, #17 +10028746: f885 3068 strb.w r3, [r5, #104] ; 0x68 +1002874a: a901 add r1, sp, #4 +1002874c: f607 08c8 addw r8, r7, #2248 ; 0x8c8 +10028750: f7f4 fbda bl 1001cf08 +10028754: 4640 mov r0, r8 +10028756: a901 add r1, sp, #4 +10028758: f7f4 fbce bl 1001cef8 +1002875c: 4638 mov r0, r7 +1002875e: 4629 mov r1, r5 +10028760: f006 fd33 bl 1002f1ca +10028764: 2801 cmp r0, #1 +10028766: d003 beq.n 10028770 +10028768: 4640 mov r0, r8 +1002876a: 4629 mov r1, r5 +1002876c: f006 fc92 bl 1002f094 +10028770: 4640 mov r0, r8 +10028772: a901 add r1, sp, #4 +10028774: f7f4 fbc8 bl 1001cf08 +10028778: 4630 mov r0, r6 +1002877a: a901 add r1, sp, #4 +1002877c: f7f4 fbbc bl 1001cef8 +10028780: e7c8 b.n 10028714 +10028782: 4630 mov r0, r6 +10028784: a901 add r1, sp, #4 +10028786: f7f4 fbbf bl 1001cf08 +1002878a: 2000 movs r0, #0 +1002878c: b003 add sp, #12 +1002878e: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +10028792 : +10028792: b150 cbz r0, 100287aa +10028794: f241 73a8 movw r3, #6056 ; 0x17a8 +10028798: 58c0 ldr r0, [r0, r3] +1002879a: b130 cbz r0, 100287aa +1002879c: f8d0 05f8 ldr.w r0, [r0, #1528] ; 0x5f8 +100287a0: f000 0003 and.w r0, r0, #3 +100287a4: 1a43 subs r3, r0, r1 +100287a6: 4258 negs r0, r3 +100287a8: 4158 adcs r0, r3 +100287aa: 4770 bx lr + +100287ac : +100287ac: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +100287ae: 2300 movs r3, #0 +100287b0: 9301 str r3, [sp, #4] +100287b2: f241 73a8 movw r3, #6056 ; 0x17a8 +100287b6: 58c6 ldr r6, [r0, r3] +100287b8: 4604 mov r4, r0 +100287ba: b10e cbz r6, 100287c0 +100287bc: f506 669d add.w r6, r6, #1256 ; 0x4e8 +100287c0: f8d4 25c8 ldr.w r2, [r4, #1480] ; 0x5c8 +100287c4: f894 386e ldrb.w r3, [r4, #2158] ; 0x86e +100287c8: 210c movs r1, #12 +100287ca: f8b4 77c0 ldrh.w r7, [r4, #1984] ; 0x7c0 +100287ce: fb01 4102 mla r1, r1, r2, r4 +100287d2: b913 cbnz r3, 100287da +100287d4: f891 14fc ldrb.w r1, [r1, #1276] ; 0x4fc +100287d8: e022 b.n 10028820 +100287da: f891 3504 ldrb.w r3, [r1, #1284] ; 0x504 +100287de: f501 60a0 add.w r0, r1, #1280 ; 0x500 +100287e2: f013 0501 ands.w r5, r3, #1 +100287e6: d00f beq.n 10028808 +100287e8: f013 0506 ands.w r5, r3, #6 +100287ec: f891 14fc ldrb.w r1, [r1, #1276] ; 0x4fc +100287f0: d115 bne.n 1002881e +100287f2: f023 0301 bic.w r3, r3, #1 +100287f6: 7103 strb r3, [r0, #4] +100287f8: f894 34fa ldrb.w r3, [r4, #1274] ; 0x4fa +100287fc: 3201 adds r2, #1 +100287fe: 429a cmp r2, r3 +10028800: d10e bne.n 10028820 +10028802: f884 586e strb.w r5, [r4, #2158] ; 0x86e +10028806: e00b b.n 10028820 +10028808: f894 34fa ldrb.w r3, [r4, #1274] ; 0x4fa +1002880c: 429a cmp r2, r3 +1002880e: da03 bge.n 10028818 +10028810: f504 60f5 add.w r0, r4, #1960 ; 0x7a8 +10028814: 2101 movs r1, #1 +10028816: e03c b.n 10028892 +10028818: f884 586e strb.w r5, [r4, #2158] ; 0x86e +1002881c: e001 b.n 10028822 +1002881e: 2719 movs r7, #25 +10028820: b969 cbnz r1, 1002883e +10028822: f894 34fa ldrb.w r3, [r4, #1274] ; 0x4fa +10028826: 2b01 cmp r3, #1 +10028828: d108 bne.n 1002883c +1002882a: 4620 mov r0, r4 +1002882c: f894 149e ldrb.w r1, [r4, #1182] ; 0x49e +10028830: f204 42fc addw r2, r4, #1276 ; 0x4fc +10028834: f7fc f88c bl 10024950 +10028838: f884 04fa strb.w r0, [r4, #1274] ; 0x4fa +1002883c: 2100 movs r1, #0 +1002883e: f8d4 35c8 ldr.w r3, [r4, #1480] ; 0x5c8 +10028842: 220c movs r2, #12 +10028844: fb02 4203 mla r2, r2, r3, r4 +10028848: f8d2 5500 ldr.w r5, [r2, #1280] ; 0x500 +1002884c: b321 cbz r1, 10028898 +1002884e: 4620 mov r0, r4 +10028850: b11b cbz r3, 1002885a +10028852: f894 386e ldrb.w r3, [r4, #2158] ; 0x86e +10028856: 2b01 cmp r3, #1 +10028858: d104 bne.n 10028864 +1002885a: 2200 movs r2, #0 +1002885c: 4613 mov r3, r2 +1002885e: f005 fad7 bl 1002de10 +10028862: e001 b.n 10028868 +10028864: f005 fa9c bl 1002dda0 +10028868: 2d01 cmp r5, #1 +1002886a: d10f bne.n 1002888c +1002886c: f8d4 65d0 ldr.w r6, [r4, #1488] ; 0x5d0 +10028870: 2e00 cmp r6, #0 +10028872: d072 beq.n 1002895a +10028874: f504 66ba add.w r6, r4, #1488 ; 0x5d0 +10028878: 4620 mov r0, r4 +1002887a: 4631 mov r1, r6 +1002887c: 462a mov r2, r5 +1002887e: f7fc fd87 bl 10025390 +10028882: 4620 mov r0, r4 +10028884: 4631 mov r1, r6 +10028886: 462a mov r2, r5 +10028888: f7fc fd82 bl 10025390 +1002888c: f504 60f5 add.w r0, r4, #1960 ; 0x7a8 +10028890: 4639 mov r1, r7 +10028892: f013 f839 bl 1003b908 +10028896: e06f b.n 10028978 +10028898: 6923 ldr r3, [r4, #16] +1002889a: 07db lsls r3, r3, #31 +1002889c: d562 bpl.n 10028964 +1002889e: f894 14f6 ldrb.w r1, [r4, #1270] ; 0x4f6 +100288a2: f894 34f7 ldrb.w r3, [r4, #1271] ; 0x4f7 +100288a6: f894 24f8 ldrb.w r2, [r4, #1272] ; 0x4f8 +100288aa: 2004 movs r0, #4 +100288ac: f8c4 05c0 str.w r0, [r4, #1472] ; 0x5c0 +100288b0: 4620 mov r0, r4 +100288b2: f005 faad bl 1002de10 +100288b6: f8d4 15f8 ldr.w r1, [r4, #1528] ; 0x5f8 +100288ba: 4620 mov r0, r4 +100288bc: f001 0103 and.w r1, r1, #3 +100288c0: f005 fa3a bl 1002dd38 +100288c4: aa02 add r2, sp, #8 +100288c6: 23ff movs r3, #255 ; 0xff +100288c8: f842 3d04 str.w r3, [r2, #-4]! +100288cc: 2133 movs r1, #51 ; 0x33 +100288ce: 4620 mov r0, r4 +100288d0: f00f f82b bl 1003792a +100288d4: 4620 mov r0, r4 +100288d6: f005 fa16 bl 1002dd06 +100288da: 4620 mov r0, r4 +100288dc: f005 fad4 bl 1002de88 +100288e0: 2801 cmp r0, #1 +100288e2: f241 75a8 movw r5, #6056 ; 0x17a8 +100288e6: d103 bne.n 100288f0 +100288e8: 4620 mov r0, r4 +100288ea: 2100 movs r1, #0 +100288ec: f7fd fb8a bl 10026004 +100288f0: 5960 ldr r0, [r4, r5] +100288f2: f005 fac9 bl 1002de88 +100288f6: 2801 cmp r0, #1 +100288f8: d103 bne.n 10028902 +100288fa: 5960 ldr r0, [r4, r5] +100288fc: 2100 movs r1, #0 +100288fe: f7fd fb81 bl 10026004 +10028902: aa02 add r2, sp, #8 +10028904: 2500 movs r5, #0 +10028906: 210c movs r1, #12 +10028908: f802 5d05 strb.w r5, [r2, #-5]! +1002890c: 4620 mov r0, r4 +1002890e: f00f f80c bl 1003792a +10028912: 4620 mov r0, r4 +10028914: f7fe fb64 bl 10026fe0 +10028918: 2364 movs r3, #100 ; 0x64 +1002891a: f8a4 37c0 strh.w r3, [r4, #1984] ; 0x7c0 +1002891e: 4620 mov r0, r4 +10028920: f8c4 55c0 str.w r5, [r4, #1472] ; 0x5c0 +10028924: f7fc f94c bl 10024bc0 +10028928: 4620 mov r0, r4 +1002892a: f7fc f949 bl 10024bc0 +1002892e: 4620 mov r0, r4 +10028930: f7fc f946 bl 10024bc0 +10028934: 4620 mov r0, r4 +10028936: 2103 movs r1, #3 +10028938: f7ff ff2b bl 10028792 +1002893c: b1e0 cbz r0, 10028978 +1002893e: 4620 mov r0, r4 +10028940: 2101 movs r1, #1 +10028942: f7fb ff84 bl 1002484e +10028946: b1b8 cbz r0, 10028978 +10028948: f241 73a8 movw r3, #6056 ; 0x17a8 +1002894c: 58e0 ldr r0, [r4, r3] +1002894e: 4629 mov r1, r5 +10028950: 462a mov r2, r5 +10028952: 2301 movs r3, #1 +10028954: f7f8 fddc bl 10021510 +10028958: e00e b.n 10028978 +1002895a: f8d4 35cc ldr.w r3, [r4, #1484] ; 0x5cc +1002895e: 2b01 cmp r3, #1 +10028960: d194 bne.n 1002888c +10028962: e789 b.n 10028878 +10028964: 4620 mov r0, r4 +10028966: 2101 movs r1, #1 +10028968: f7fb ff71 bl 1002484e +1002896c: 2800 cmp r0, #0 +1002896e: d096 beq.n 1002889e +10028970: 7bb1 ldrb r1, [r6, #14] +10028972: 7bf3 ldrb r3, [r6, #15] +10028974: 7c32 ldrb r2, [r6, #16] +10028976: e798 b.n 100288aa +10028978: b003 add sp, #12 +1002897a: bdf0 pop {r4, r5, r6, r7, pc} + +1002897c : +1002897c: b573 push {r0, r1, r4, r5, r6, lr} +1002897e: f8d0 65c0 ldr.w r6, [r0, #1472] ; 0x5c0 +10028982: 4604 mov r4, r0 +10028984: 460d mov r5, r1 +10028986: 2e00 cmp r6, #0 +10028988: d147 bne.n 10028a1a +1002898a: 213e movs r1, #62 ; 0x3e +1002898c: 4632 mov r2, r6 +1002898e: f00e ffcc bl 1003792a +10028992: 2301 movs r3, #1 +10028994: f8c4 35c0 str.w r3, [r4, #1472] ; 0x5c0 +10028998: 68ab ldr r3, [r5, #8] +1002899a: f8c4 65c4 str.w r6, [r4, #1476] ; 0x5c4 +1002899e: f8c4 65c8 str.w r6, [r4, #1480] ; 0x5c8 +100289a2: b13b cbz r3, 100289b4 +100289a4: f204 50d4 addw r0, r4, #1492 ; 0x5d4 +100289a8: f105 010c add.w r1, r5, #12 +100289ac: 2220 movs r2, #32 +100289ae: f7f4 f9fd bl 1001cdac +100289b2: 68ab ldr r3, [r5, #8] +100289b4: f8c4 35d0 str.w r3, [r4, #1488] ; 0x5d0 +100289b8: 682b ldr r3, [r5, #0] +100289ba: 4620 mov r0, r4 +100289bc: f8c4 35cc str.w r3, [r4, #1484] ; 0x5cc +100289c0: f005 fa62 bl 1002de88 +100289c4: 2801 cmp r0, #1 +100289c6: 4605 mov r5, r0 +100289c8: d113 bne.n 100289f2 +100289ca: 2302 movs r3, #2 +100289cc: f8c4 35c0 str.w r3, [r4, #1472] ; 0x5c0 +100289d0: 4629 mov r1, r5 +100289d2: 4620 mov r0, r4 +100289d4: f7fd fb16 bl 10026004 +100289d8: f241 76a8 movw r6, #6056 ; 0x17a8 +100289dc: 4629 mov r1, r5 +100289de: 4620 mov r0, r4 +100289e0: f7fd fb10 bl 10026004 +100289e4: 59a0 ldr r0, [r4, r6] +100289e6: f005 fa4f bl 1002de88 +100289ea: 2801 cmp r0, #1 +100289ec: 4605 mov r5, r0 +100289ee: d144 bne.n 10028a7a +100289f0: e00a b.n 10028a08 +100289f2: f241 76a8 movw r6, #6056 ; 0x17a8 +100289f6: 59a0 ldr r0, [r4, r6] +100289f8: f005 fa46 bl 1002de88 +100289fc: 2801 cmp r0, #1 +100289fe: 4605 mov r5, r0 +10028a00: d10b bne.n 10028a1a +10028a02: 2302 movs r3, #2 +10028a04: f8c4 35c0 str.w r3, [r4, #1472] ; 0x5c0 +10028a08: 59a0 ldr r0, [r4, r6] +10028a0a: 4629 mov r1, r5 +10028a0c: f7fd fafa bl 10026004 +10028a10: 59a0 ldr r0, [r4, r6] +10028a12: 4629 mov r1, r5 +10028a14: f7fd faf6 bl 10026004 +10028a18: e02f b.n 10028a7a +10028a1a: f8d4 35c0 ldr.w r3, [r4, #1472] ; 0x5c0 +10028a1e: 3b01 subs r3, #1 +10028a20: 2b01 cmp r3, #1 +10028a22: d826 bhi.n 10028a72 +10028a24: 4620 mov r0, r4 +10028a26: f005 f963 bl 1002dcf0 +10028a2a: f241 3369 movw r3, #4969 ; 0x1369 +10028a2e: 5ce3 ldrb r3, [r4, r3] +10028a30: 4620 mov r0, r4 +10028a32: 2b01 cmp r3, #1 +10028a34: bf19 ittee ne +10028a36: 2100 movne r1, #0 +10028a38: 460a movne r2, r1 +10028a3a: f44f 5100 moveq.w r1, #8192 ; 0x2000 +10028a3e: 2200 moveq r2, #0 +10028a40: f005 f96c bl 1002dd1c +10028a44: aa02 add r2, sp, #8 +10028a46: 231e movs r3, #30 +10028a48: f842 3d04 str.w r3, [r2, #-4]! +10028a4c: 4620 mov r0, r4 +10028a4e: 2133 movs r1, #51 ; 0x33 +10028a50: f00e ff6b bl 1003792a +10028a54: 4620 mov r0, r4 +10028a56: 2100 movs r1, #0 +10028a58: f005 f96e bl 1002dd38 +10028a5c: 2301 movs r3, #1 +10028a5e: aa02 add r2, sp, #8 +10028a60: f802 3d05 strb.w r3, [r2, #-5]! +10028a64: 4620 mov r0, r4 +10028a66: 210c movs r1, #12 +10028a68: f00e ff5f bl 1003792a +10028a6c: 2303 movs r3, #3 +10028a6e: f8c4 35c0 str.w r3, [r4, #1472] ; 0x5c0 +10028a72: 4620 mov r0, r4 +10028a74: f7ff fe9a bl 100287ac +10028a78: e004 b.n 10028a84 +10028a7a: f504 60f5 add.w r0, r4, #1960 ; 0x7a8 +10028a7e: 2132 movs r1, #50 ; 0x32 +10028a80: f012 ff42 bl 1003b908 +10028a84: 2000 movs r0, #0 +10028a86: b002 add sp, #8 +10028a88: bd70 pop {r4, r5, r6, pc} + +10028a8a : +10028a8a: b570 push {r4, r5, r6, lr} +10028a8c: 4605 mov r5, r0 +10028a8e: f7fb fec2 bl 10024816 +10028a92: b388 cbz r0, 10028af8 +10028a94: f241 73a8 movw r3, #6056 ; 0x17a8 +10028a98: 58ec ldr r4, [r5, r3] +10028a9a: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +10028a9e: f003 0303 and.w r3, r3, #3 +10028aa2: 2b03 cmp r3, #3 +10028aa4: d119 bne.n 10028ada +10028aa6: f8b5 24f6 ldrh.w r2, [r5, #1270] ; 0x4f6 +10028aaa: f8b4 34f6 ldrh.w r3, [r4, #1270] ; 0x4f6 +10028aae: 429a cmp r2, r3 +10028ab0: d105 bne.n 10028abe +10028ab2: f895 24f8 ldrb.w r2, [r5, #1272] ; 0x4f8 +10028ab6: f894 34f8 ldrb.w r3, [r4, #1272] ; 0x4f8 +10028aba: 429a cmp r2, r3 +10028abc: d00d beq.n 10028ada +10028abe: 2601 movs r6, #1 +10028ac0: f884 6876 strb.w r6, [r4, #2166] ; 0x876 +10028ac4: 4620 mov r0, r4 +10028ac6: f7f9 fc55 bl 10022374 +10028aca: 2200 movs r2, #0 +10028acc: f884 2876 strb.w r2, [r4, #2166] ; 0x876 +10028ad0: 4628 mov r0, r5 +10028ad2: 213e movs r1, #62 ; 0x3e +10028ad4: f00e ff29 bl 1003792a +10028ad8: e00e b.n 10028af8 +10028ada: 6923 ldr r3, [r4, #16] +10028adc: f003 0309 and.w r3, r3, #9 +10028ae0: 2b09 cmp r3, #9 +10028ae2: d109 bne.n 10028af8 +10028ae4: f895 24f6 ldrb.w r2, [r5, #1270] ; 0x4f6 +10028ae8: f894 34f6 ldrb.w r3, [r4, #1270] ; 0x4f6 +10028aec: 429a cmp r2, r3 +10028aee: d105 bne.n 10028afc +10028af0: f895 34f7 ldrb.w r3, [r5, #1271] ; 0x4f7 +10028af4: 2b01 cmp r3, #1 +10028af6: d008 beq.n 10028b0a +10028af8: 2001 movs r0, #1 +10028afa: bd70 pop {r4, r5, r6, pc} +10028afc: 4628 mov r0, r5 +10028afe: f06f 0103 mvn.w r1, #3 +10028b02: f7fe fa9f bl 10027044 +10028b06: 2000 movs r0, #0 +10028b08: bd70 pop {r4, r5, r6, pc} +10028b0a: f894 04f7 ldrb.w r0, [r4, #1271] ; 0x4f7 +10028b0e: 2801 cmp r0, #1 +10028b10: d1f2 bne.n 10028af8 +10028b12: f895 24f8 ldrb.w r2, [r5, #1272] ; 0x4f8 +10028b16: f894 34f8 ldrb.w r3, [r4, #1272] ; 0x4f8 +10028b1a: 429a cmp r2, r3 +10028b1c: d1ee bne.n 10028afc +10028b1e: bd70 pop {r4, r5, r6, pc} + +10028b20 : +10028b20: b537 push {r0, r1, r2, r4, r5, lr} +10028b22: f8d0 30e4 ldr.w r3, [r0, #228] ; 0xe4 +10028b26: f100 0598 add.w r5, r0, #152 ; 0x98 +10028b2a: f880 34f6 strb.w r3, [r0, #1270] ; 0x4f6 +10028b2e: 4604 mov r4, r0 +10028b30: 4628 mov r0, r5 +10028b32: f005 f99a bl 1002de6a +10028b36: f8a4 06a2 strh.w r0, [r4, #1698] ; 0x6a2 +10028b3a: 4620 mov r0, r4 +10028b3c: f005 fea8 bl 1002e890 +10028b40: 4628 mov r0, r5 +10028b42: f7fa fee5 bl 10023910 +10028b46: 4605 mov r5, r0 +10028b48: 4629 mov r1, r5 +10028b4a: 4620 mov r0, r4 +10028b4c: f005 fe61 bl 1002e812 +10028b50: 07eb lsls r3, r5, #31 +10028b52: d54c bpl.n 10028bee +10028b54: 4620 mov r0, r4 +10028b56: f7ff ff98 bl 10028a8a +10028b5a: 2800 cmp r0, #0 +10028b5c: d047 beq.n 10028bee +10028b5e: 4620 mov r0, r4 +10028b60: 2102 movs r1, #2 +10028b62: f005 f8e9 bl 1002dd38 +10028b66: f8d4 360c ldr.w r3, [r4, #1548] ; 0x60c +10028b6a: 4620 mov r0, r4 +10028b6c: 2b02 cmp r3, #2 +10028b6e: bf14 ite ne +10028b70: 23cf movne r3, #207 ; 0xcf +10028b72: 23cc moveq r3, #204 ; 0xcc +10028b74: f88d 3007 strb.w r3, [sp, #7] +10028b78: 6863 ldr r3, [r4, #4] +10028b7a: 2114 movs r1, #20 +10028b7c: 2b03 cmp r3, #3 +10028b7e: bf08 it eq +10028b80: 232c moveq r3, #44 ; 0x2c +10028b82: f10d 0207 add.w r2, sp, #7 +10028b86: bf08 it eq +10028b88: f88d 3007 strbeq.w r3, [sp, #7] +10028b8c: f00e fecd bl 1003792a +10028b90: f894 34f7 ldrb.w r3, [r4, #1271] ; 0x4f7 +10028b94: f894 14f6 ldrb.w r1, [r4, #1270] ; 0x4f6 +10028b98: f894 24f8 ldrb.w r2, [r4, #1272] ; 0x4f8 +10028b9c: 4620 mov r0, r4 +10028b9e: f005 f937 bl 1002de10 +10028ba2: f8b4 06a2 ldrh.w r0, [r4, #1698] ; 0x6a2 +10028ba6: f005 f99a bl 1002dede +10028baa: 4601 mov r1, r0 +10028bac: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +10028bb0: f012 feaa bl 1003b908 +10028bb4: f8d4 14e4 ldr.w r1, [r4, #1252] ; 0x4e4 +10028bb8: f44f 7381 mov.w r3, #258 ; 0x102 +10028bbc: f8c4 35f8 str.w r3, [r4, #1528] ; 0x5f8 +10028bc0: b1a9 cbz r1, 10028bee +10028bc2: 6f8b ldr r3, [r1, #120] ; 0x78 +10028bc4: b19b cbz r3, 10028bee +10028bc6: 4620 mov r0, r4 +10028bc8: f7fe fb8e bl 100272e8 +10028bcc: f8d4 34e4 ldr.w r3, [r4, #1252] ; 0x4e4 +10028bd0: 2100 movs r1, #0 +10028bd2: 6f98 ldr r0, [r3, #120] ; 0x78 +10028bd4: f7f4 f8e2 bl 1001cd9c +10028bd8: f8d4 04e4 ldr.w r0, [r4, #1252] ; 0x4e4 +10028bdc: 2100 movs r1, #0 +10028bde: f7f4 f8dd bl 1001cd9c +10028be2: f8d4 24e4 ldr.w r2, [r4, #1252] ; 0x4e4 +10028be6: 2300 movs r3, #0 +10028be8: 6793 str r3, [r2, #120] ; 0x78 +10028bea: f8c4 34e4 str.w r3, [r4, #1252] ; 0x4e4 +10028bee: b003 add sp, #12 +10028bf0: bd30 pop {r4, r5, pc} + ... + +10028bf4 : +10028bf4: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +10028bf8: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10028bfa: 045a lsls r2, r3, #17 +10028bfc: 4604 mov r4, r0 +10028bfe: 460d mov r5, r1 +10028c00: f100 0698 add.w r6, r0, #152 ; 0x98 +10028c04: d519 bpl.n 10028c3a +10028c06: 079b lsls r3, r3, #30 +10028c08: d504 bpl.n 10028c14 +10028c0a: f100 019c add.w r1, r0, #156 ; 0x9c +10028c0e: 2203 movs r2, #3 +10028c10: f7fd fb06 bl 10026220 +10028c14: 2700 movs r7, #0 +10028c16: 4620 mov r0, r4 +10028c18: f8c4 75f8 str.w r7, [r4, #1528] ; 0x5f8 +10028c1c: f005 f9c3 bl 1002dfa6 +10028c20: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +10028c24: f012 fe72 bl 1003b90c +10028c28: 4620 mov r0, r4 +10028c2a: 2102 movs r1, #2 +10028c2c: f005 f884 bl 1002dd38 +10028c30: 4620 mov r0, r4 +10028c32: 210b movs r1, #11 +10028c34: 463a mov r2, r7 +10028c36: f00e fe78 bl 1003792a +10028c3a: 4620 mov r0, r4 +10028c3c: f7fb fc0a bl 10024454 +10028c40: 2300 movs r3, #0 +10028c42: 2278 movs r2, #120 ; 0x78 +10028c44: f884 34f7 strb.w r3, [r4, #1271] ; 0x4f7 +10028c48: f884 34f8 strb.w r3, [r4, #1272] ; 0x4f8 +10028c4c: f884 36aa strb.w r3, [r4, #1706] ; 0x6aa +10028c50: f884 36a9 strb.w r3, [r4, #1705] ; 0x6a9 +10028c54: f884 36ac strb.w r3, [r4, #1708] ; 0x6ac +10028c58: f884 36ad strb.w r3, [r4, #1709] ; 0x6ad +10028c5c: f884 36ae strb.w r3, [r4, #1710] ; 0x6ae +10028c60: f884 36b3 strb.w r3, [r4, #1715] ; 0x6b3 +10028c64: f884 36b5 strb.w r3, [r4, #1717] ; 0x6b5 +10028c68: f884 36b7 strb.w r3, [r4, #1719] ; 0x6b7 +10028c6c: 4630 mov r0, r6 +10028c6e: 4629 mov r1, r5 +10028c70: f7f4 f89c bl 1001cdac +10028c74: 6faa ldr r2, [r5, #120] ; 0x78 +10028c76: f5b2 7f40 cmp.w r2, #768 ; 0x300 +10028c7a: f8c4 2110 str.w r2, [r4, #272] ; 0x110 +10028c7e: d845 bhi.n 10028d0c +10028c80: f105 017c add.w r1, r5, #124 ; 0x7c +10028c84: f504 708a add.w r0, r4, #276 ; 0x114 +10028c88: f7f4 f890 bl 1001cdac +10028c8c: 250c movs r5, #12 +10028c8e: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10028c92: 429d cmp r5, r3 +10028c94: d21f bcs.n 10028cd6 +10028c96: f105 0378 add.w r3, r5, #120 ; 0x78 +10028c9a: 18f0 adds r0, r6, r3 +10028c9c: 7902 ldrb r2, [r0, #4] +10028c9e: 1d07 adds r7, r0, #4 +10028ca0: 2a3d cmp r2, #61 ; 0x3d +10028ca2: d011 beq.n 10028cc8 +10028ca4: 2add cmp r2, #221 ; 0xdd +10028ca6: d005 beq.n 10028cb4 +10028ca8: 2a2d cmp r2, #45 ; 0x2d +10028caa: d110 bne.n 10028cce +10028cac: 2301 movs r3, #1 +10028cae: f884 36ad strb.w r3, [r4, #1709] ; 0x6ad +10028cb2: e00c b.n 10028cce +10028cb4: 3006 adds r0, #6 +10028cb6: 4917 ldr r1, [pc, #92] ; (10028d14 ) +10028cb8: 2204 movs r2, #4 +10028cba: f7f4 f87f bl 1001cdbc +10028cbe: b130 cbz r0, 10028cce +10028cc0: 2301 movs r3, #1 +10028cc2: f884 36a9 strb.w r3, [r4, #1705] ; 0x6a9 +10028cc6: e002 b.n 10028cce +10028cc8: 2301 movs r3, #1 +10028cca: f884 36ae strb.w r3, [r4, #1710] ; 0x6ae +10028cce: 787b ldrb r3, [r7, #1] +10028cd0: 3302 adds r3, #2 +10028cd2: 441d add r5, r3 +10028cd4: e7db b.n 10028c8e +10028cd6: f104 007c add.w r0, r4, #124 ; 0x7c +10028cda: f013 fac0 bl 1003c25e +10028cde: 4620 mov r0, r4 +10028ce0: 2104 movs r1, #4 +10028ce2: f104 029c add.w r2, r4, #156 ; 0x9c +10028ce6: f00e fe20 bl 1003792a +10028cea: 2500 movs r5, #0 +10028cec: aa02 add r2, sp, #8 +10028cee: f802 5d01 strb.w r5, [r2, #-1]! +10028cf2: 210d movs r1, #13 +10028cf4: 4620 mov r0, r4 +10028cf6: f00e fe18 bl 1003792a +10028cfa: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +10028cfe: f012 fe05 bl 1003b90c +10028d02: 4620 mov r0, r4 +10028d04: f7ff ff0c bl 10028b20 +10028d08: 4628 mov r0, r5 +10028d0a: e000 b.n 10028d0e +10028d0c: 2004 movs r0, #4 +10028d0e: b003 add sp, #12 +10028d10: bdf0 pop {r4, r5, r6, r7, pc} +10028d12: bf00 nop +10028d14: 1004a738 .word 0x1004a738 + +10028d18 : +10028d18: b573 push {r0, r1, r4, r5, r6, lr} +10028d1a: 4605 mov r5, r0 +10028d1c: 460e mov r6, r1 +10028d1e: f7fb fd7a bl 10024816 +10028d22: 2800 cmp r0, #0 +10028d24: f000 80d9 beq.w 10028eda +10028d28: f241 73a8 movw r3, #6056 ; 0x17a8 +10028d2c: 58ec ldr r4, [r5, r3] +10028d2e: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +10028d32: f003 0303 and.w r3, r3, #3 +10028d36: 2b03 cmp r3, #3 +10028d38: f040 80cf bne.w 10028eda +10028d3c: 6923 ldr r3, [r4, #16] +10028d3e: 07db lsls r3, r3, #31 +10028d40: f140 80cb bpl.w 10028eda +10028d44: 2e00 cmp r6, #0 +10028d46: f894 34f7 ldrb.w r3, [r4, #1271] ; 0x4f7 +10028d4a: f2c0 80b9 blt.w 10028ec0 +10028d4e: f895 24f6 ldrb.w r2, [r5, #1270] ; 0x4f6 +10028d52: 2b01 cmp r3, #1 +10028d54: f884 24f6 strb.w r2, [r4, #1270] ; 0x4f6 +10028d58: f504 7690 add.w r6, r4, #288 ; 0x120 +10028d5c: f040 808e bne.w 10028e7c +10028d60: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10028d64: 4630 mov r0, r6 +10028d66: 213d movs r1, #61 ; 0x3d +10028d68: aa01 add r2, sp, #4 +10028d6a: 3b0c subs r3, #12 +10028d6c: f01a fdc0 bl 100438f0 <__rtw_get_ie_veneer> +10028d70: b138 cbz r0, 10028d82 +10028d72: 9a01 ldr r2, [sp, #4] +10028d74: b132 cbz r2, 10028d84 +10028d76: 78c1 ldrb r1, [r0, #3] +10028d78: 1c82 adds r2, r0, #2 +10028d7a: f021 0103 bic.w r1, r1, #3 +10028d7e: 70c1 strb r1, [r0, #3] +10028d80: e000 b.n 10028d84 +10028d82: 4602 mov r2, r0 +10028d84: f895 34f7 ldrb.w r3, [r5, #1271] ; 0x4f7 +10028d88: 2b01 cmp r3, #1 +10028d8a: d114 bne.n 10028db6 +10028d8c: f895 34f8 ldrb.w r3, [r5, #1272] ; 0x4f8 +10028d90: f884 34f8 strb.w r3, [r4, #1272] ; 0x4f8 +10028d94: 2a00 cmp r2, #0 +10028d96: d068 beq.n 10028e6a +10028d98: f895 34f8 ldrb.w r3, [r5, #1272] ; 0x4f8 +10028d9c: 2b01 cmp r3, #1 +10028d9e: d005 beq.n 10028dac +10028da0: 2b02 cmp r3, #2 +10028da2: d162 bne.n 10028e6a +10028da4: 7853 ldrb r3, [r2, #1] +10028da6: f043 0303 orr.w r3, r3, #3 +10028daa: e002 b.n 10028db2 +10028dac: 7853 ldrb r3, [r2, #1] +10028dae: f043 0301 orr.w r3, r3, #1 +10028db2: 7053 strb r3, [r2, #1] +10028db4: e059 b.n 10028e6a +10028db6: 2b00 cmp r3, #0 +10028db8: d157 bne.n 10028e6a +10028dba: f895 34f6 ldrb.w r3, [r5, #1270] ; 0x4f6 +10028dbe: 1e59 subs r1, r3, #1 +10028dc0: 2903 cmp r1, #3 +10028dc2: d937 bls.n 10028e34 +10028dc4: 1f59 subs r1, r3, #5 +10028dc6: 2909 cmp r1, #9 +10028dc8: d93b bls.n 10028e42 +10028dca: 2b6c cmp r3, #108 ; 0x6c +10028dcc: d032 beq.n 10028e34 +10028dce: d816 bhi.n 10028dfe +10028dd0: 2b34 cmp r3, #52 ; 0x34 +10028dd2: d02f beq.n 10028e34 +10028dd4: d808 bhi.n 10028de8 +10028dd6: 2b28 cmp r3, #40 ; 0x28 +10028dd8: d033 beq.n 10028e42 +10028dda: d801 bhi.n 10028de0 +10028ddc: 2b24 cmp r3, #36 ; 0x24 +10028dde: e022 b.n 10028e26 +10028de0: 2b2c cmp r3, #44 ; 0x2c +10028de2: d027 beq.n 10028e34 +10028de4: 2b30 cmp r3, #48 ; 0x30 +10028de6: e023 b.n 10028e30 +10028de8: 2b40 cmp r3, #64 ; 0x40 +10028dea: d02a beq.n 10028e42 +10028dec: d803 bhi.n 10028df6 +10028dee: 2b38 cmp r3, #56 ; 0x38 +10028df0: d027 beq.n 10028e42 +10028df2: 2b3c cmp r3, #60 ; 0x3c +10028df4: e017 b.n 10028e26 +10028df6: 2b64 cmp r3, #100 ; 0x64 +10028df8: d01c beq.n 10028e34 +10028dfa: 2b68 cmp r3, #104 ; 0x68 +10028dfc: e018 b.n 10028e30 +10028dfe: 2b84 cmp r3, #132 ; 0x84 +10028e00: d018 beq.n 10028e34 +10028e02: d80a bhi.n 10028e1a +10028e04: 2b78 cmp r3, #120 ; 0x78 +10028e06: d01c beq.n 10028e42 +10028e08: d803 bhi.n 10028e12 +10028e0a: 2b70 cmp r3, #112 ; 0x70 +10028e0c: d019 beq.n 10028e42 +10028e0e: 2b74 cmp r3, #116 ; 0x74 +10028e10: e009 b.n 10028e26 +10028e12: 2b7c cmp r3, #124 ; 0x7c +10028e14: d00e beq.n 10028e34 +10028e16: 2b80 cmp r3, #128 ; 0x80 +10028e18: e00a b.n 10028e30 +10028e1a: 2b99 cmp r3, #153 ; 0x99 +10028e1c: d011 beq.n 10028e42 +10028e1e: d804 bhi.n 10028e2a +10028e20: 2b88 cmp r3, #136 ; 0x88 +10028e22: d00e beq.n 10028e42 +10028e24: 2b95 cmp r3, #149 ; 0x95 +10028e26: d116 bne.n 10028e56 +10028e28: e004 b.n 10028e34 +10028e2a: 2b9d cmp r3, #157 ; 0x9d +10028e2c: d002 beq.n 10028e34 +10028e2e: 2ba1 cmp r3, #161 ; 0xa1 +10028e30: d111 bne.n 10028e56 +10028e32: e006 b.n 10028e42 +10028e34: b11a cbz r2, 10028e3e +10028e36: 7853 ldrb r3, [r2, #1] +10028e38: f043 0301 orr.w r3, r3, #1 +10028e3c: 7053 strb r3, [r2, #1] +10028e3e: 2301 movs r3, #1 +10028e40: e00f b.n 10028e62 +10028e42: b11a cbz r2, 10028e4c +10028e44: 7853 ldrb r3, [r2, #1] +10028e46: f043 0303 orr.w r3, r3, #3 +10028e4a: 7053 strb r3, [r2, #1] +10028e4c: 2301 movs r3, #1 +10028e4e: f884 34f7 strb.w r3, [r4, #1271] ; 0x4f7 +10028e52: 2302 movs r3, #2 +10028e54: e007 b.n 10028e66 +10028e56: b11a cbz r2, 10028e60 +10028e58: 7853 ldrb r3, [r2, #1] +10028e5a: f023 0303 bic.w r3, r3, #3 +10028e5e: 7053 strb r3, [r2, #1] +10028e60: 2300 movs r3, #0 +10028e62: f884 34f7 strb.w r3, [r4, #1271] ; 0x4f7 +10028e66: f884 34f8 strb.w r3, [r4, #1272] ; 0x4f8 +10028e6a: 4628 mov r0, r5 +10028e6c: f894 14f6 ldrb.w r1, [r4, #1270] ; 0x4f6 +10028e70: f894 24f8 ldrb.w r2, [r4, #1272] ; 0x4f8 +10028e74: f894 34f7 ldrb.w r3, [r4, #1271] ; 0x4f7 +10028e78: f004 ffca bl 1002de10 +10028e7c: f895 34f6 ldrb.w r3, [r5, #1270] ; 0x4f6 +10028e80: 4630 mov r0, r6 +10028e82: f8c4 30e4 str.w r3, [r4, #228] ; 0xe4 +10028e86: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10028e8a: 2103 movs r1, #3 +10028e8c: aa01 add r2, sp, #4 +10028e8e: 3b0c subs r3, #12 +10028e90: f01a fd2e bl 100438f0 <__rtw_get_ie_veneer> +10028e94: b128 cbz r0, 10028ea2 +10028e96: 9b01 ldr r3, [sp, #4] +10028e98: 2b00 cmp r3, #0 +10028e9a: bfc4 itt gt +10028e9c: f895 34f6 ldrbgt.w r3, [r5, #1270] ; 0x4f6 +10028ea0: 7083 strbgt r3, [r0, #2] +10028ea2: f8d4 3110 ldr.w r3, [r4, #272] ; 0x110 +10028ea6: 4630 mov r0, r6 +10028ea8: 213d movs r1, #61 ; 0x3d +10028eaa: aa01 add r2, sp, #4 +10028eac: 3b0c subs r3, #12 +10028eae: f01a fd1f bl 100438f0 <__rtw_get_ie_veneer> +10028eb2: b160 cbz r0, 10028ece +10028eb4: 9b01 ldr r3, [sp, #4] +10028eb6: b153 cbz r3, 10028ece +10028eb8: f895 34f6 ldrb.w r3, [r5, #1270] ; 0x4f6 +10028ebc: 7083 strb r3, [r0, #2] +10028ebe: e006 b.n 10028ece +10028ec0: 4628 mov r0, r5 +10028ec2: f894 14f6 ldrb.w r1, [r4, #1270] ; 0x4f6 +10028ec6: f894 24f8 ldrb.w r2, [r4, #1272] ; 0x4f8 +10028eca: f004 ffa1 bl 1002de10 +10028ece: 2100 movs r1, #0 +10028ed0: 4620 mov r0, r4 +10028ed2: 460a mov r2, r1 +10028ed4: 2301 movs r3, #1 +10028ed6: f7f8 fb1b bl 10021510 +10028eda: b002 add sp, #8 +10028edc: bd70 pop {r4, r5, r6, pc} + ... + +10028ee0 : +10028ee0: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10028ee2: 1e0e subs r6, r1, #0 +10028ee4: 4604 mov r4, r0 +10028ee6: f500 673d add.w r7, r0, #3024 ; 0xbd0 +10028eea: da13 bge.n 10028f14 +10028eec: 2301 movs r3, #1 +10028eee: f10d 0205 add.w r2, sp, #5 +10028ef2: 210d movs r1, #13 +10028ef4: f88d 3005 strb.w r3, [sp, #5] +10028ef8: f00e fd17 bl 1003792a +10028efc: 4620 mov r0, r4 +10028efe: 2104 movs r1, #4 +10028f00: 4a45 ldr r2, [pc, #276] ; (10029018 ) +10028f02: f00e fd12 bl 1003792a +10028f06: f241 3325 movw r3, #4901 ; 0x1325 +10028f0a: 4620 mov r0, r4 +10028f0c: 5ce1 ldrb r1, [r4, r3] +10028f0e: f005 fbab bl 1002e668 +10028f12: e07b b.n 1002900c +10028f14: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +10028f18: f003 0303 and.w r3, r3, #3 +10028f1c: 2b01 cmp r3, #1 +10028f1e: d110 bne.n 10028f42 +10028f20: f004 fd9e bl 1002da60 +10028f24: 4605 mov r5, r0 +10028f26: b160 cbz r0, 10028f42 +10028f28: f8d0 1100 ldr.w r1, [r0, #256] ; 0x100 +10028f2c: eb04 1241 add.w r2, r4, r1, lsl #5 +10028f30: f8c2 0708 str.w r0, [r2, #1800] ; 0x708 +10028f34: 4620 mov r0, r4 +10028f36: f005 fcfb bl 1002e930 +10028f3a: 4620 mov r0, r4 +10028f3c: 4629 mov r1, r5 +10028f3e: f005 fb8b bl 1002e658 +10028f42: f06f 4170 mvn.w r1, #4026531840 ; 0xf0000000 +10028f46: 2201 movs r2, #1 +10028f48: 4620 mov r0, r4 +10028f4a: f004 fee7 bl 1002dd1c +10028f4e: 4620 mov r0, r4 +10028f50: f005 fc30 bl 1002e7b4 +10028f54: 4620 mov r0, r4 +10028f56: 2106 movs r1, #6 +10028f58: f104 02fc add.w r2, r4, #252 ; 0xfc +10028f5c: f00e fce5 bl 1003792a +10028f60: f204 62a2 addw r2, r4, #1698 ; 0x6a2 +10028f64: 4620 mov r0, r4 +10028f66: 2110 movs r1, #16 +10028f68: f00e fcdf bl 1003792a +10028f6c: f8b4 16a4 ldrh.w r1, [r4, #1700] ; 0x6a4 +10028f70: 4620 mov r0, r4 +10028f72: f005 fc4e bl 1002e812 +10028f76: 4620 mov r0, r4 +10028f78: f005 f857 bl 1002e02a +10028f7c: 4620 mov r0, r4 +10028f7e: f005 f91d bl 1002e1bc +10028f82: 4638 mov r0, r7 +10028f84: f104 019c add.w r1, r4, #156 ; 0x9c +10028f88: f004 fd14 bl 1002d9b4 +10028f8c: 4605 mov r5, r0 +10028f8e: b320 cbz r0, 10028fda +10028f90: f8d0 3100 ldr.w r3, [r0, #256] ; 0x100 +10028f94: 4629 mov r1, r5 +10028f96: eb04 1343 add.w r3, r4, r3, lsl #5 +10028f9a: f8c3 0708 str.w r0, [r3, #1800] ; 0x708 +10028f9e: f894 34f9 ldrb.w r3, [r4, #1273] ; 0x4f9 +10028fa2: f880 317c strb.w r3, [r0, #380] ; 0x17c +10028fa6: 4620 mov r0, r4 +10028fa8: f005 fb5a bl 1002e660 +10028fac: 4620 mov r0, r4 +10028fae: 2143 movs r1, #67 ; 0x43 +10028fb0: f505 7280 add.w r2, r5, #256 ; 0x100 +10028fb4: f00e fcb9 bl 1003792a +10028fb8: f8d5 3100 ldr.w r3, [r5, #256] ; 0x100 +10028fbc: aa02 add r2, sp, #8 +10028fbe: 021b lsls r3, r3, #8 +10028fc0: f043 0301 orr.w r3, r3, #1 +10028fc4: 4620 mov r0, r4 +10028fc6: 2144 movs r1, #68 ; 0x44 +10028fc8: f822 3d02 strh.w r3, [r2, #-2]! +10028fcc: f00e fcad bl 1003792a +10028fd0: 4620 mov r0, r4 +10028fd2: f8d5 1100 ldr.w r1, [r5, #256] ; 0x100 +10028fd6: f00e fde6 bl 10037ba6 +10028fda: 2302 movs r3, #2 +10028fdc: 4620 mov r0, r4 +10028fde: 210d movs r1, #13 +10028fe0: f10d 0205 add.w r2, sp, #5 +10028fe4: f88d 3005 strb.w r3, [sp, #5] +10028fe8: f00e fc9f bl 1003792a +10028fec: f8d4 35f8 ldr.w r3, [r4, #1528] ; 0x5f8 +10028ff0: f003 0303 and.w r3, r3, #3 +10028ff4: 2b02 cmp r3, #2 +10028ff6: d104 bne.n 10029002 +10028ff8: 4620 mov r0, r4 +10028ffa: f504 619d add.w r1, r4, #1256 ; 0x4e8 +10028ffe: f005 fcb4 bl 1002e96a +10029002: 4620 mov r0, r4 +10029004: 2102 movs r1, #2 +10029006: 2200 movs r2, #0 +10029008: f7fa f941 bl 1002328e +1002900c: 4620 mov r0, r4 +1002900e: 4631 mov r1, r6 +10029010: f7ff fe82 bl 10028d18 +10029014: b003 add sp, #12 +10029016: bdf0 pop {r4, r5, r6, r7, pc} +10029018: 1004a732 .word 0x1004a732 + +1002901c : +1002901c: b510 push {r4, lr} +1002901e: 4604 mov r4, r0 +10029020: b141 cbz r1, 10029034 +10029022: 7809 ldrb r1, [r1, #0] +10029024: f200 42fc addw r2, r0, #1276 ; 0x4fc +10029028: f7fb fc92 bl 10024950 +1002902c: f884 04fa strb.w r0, [r4, #1274] ; 0x4fa +10029030: 2000 movs r0, #0 +10029032: bd10 pop {r4, pc} +10029034: 2004 movs r0, #4 +10029036: bd10 pop {r4, pc} + +10029038 : +10029038: b537 push {r0, r1, r2, r4, r5, lr} +1002903a: 4b10 ldr r3, [pc, #64] ; (1002907c ) +1002903c: 4604 mov r4, r0 +1002903e: f500 55bc add.w r5, r0, #6016 ; 0x1780 +10029042: 9300 str r3, [sp, #0] +10029044: 6829 ldr r1, [r5, #0] +10029046: 4623 mov r3, r4 +10029048: f500 60f5 add.w r0, r0, #1960 ; 0x7a8 +1002904c: 4a0c ldr r2, [pc, #48] ; (10029080 ) +1002904e: f012 fc57 bl 1003b900 +10029052: 4b0c ldr r3, [pc, #48] ; (10029084 ) +10029054: f204 70b4 addw r0, r4, #1972 ; 0x7b4 +10029058: 9300 str r3, [sp, #0] +1002905a: 6829 ldr r1, [r5, #0] +1002905c: 4623 mov r3, r4 +1002905e: 4a0a ldr r2, [pc, #40] ; (10029088 ) +10029060: f012 fc4e bl 1003b900 +10029064: 4b09 ldr r3, [pc, #36] ; (1002908c ) +10029066: f204 70d4 addw r0, r4, #2004 ; 0x7d4 +1002906a: 9300 str r3, [sp, #0] +1002906c: 6829 ldr r1, [r5, #0] +1002906e: 4a08 ldr r2, [pc, #32] ; (10029090 ) +10029070: 4623 mov r3, r4 +10029072: f012 fc45 bl 1003b900 +10029076: b003 add sp, #12 +10029078: bd30 pop {r4, r5, pc} +1002907a: bf00 nop +1002907c: 1004a6e2 .word 0x1004a6e2 +10029080: 10028311 .word 0x10028311 +10029084: 1004a6ef .word 0x1004a6ef +10029088: 10028393 .word 0x10028393 +1002908c: 1004a6fa .word 0x1004a6fa +10029090: 100235f5 .word 0x100235f5 + +10029094 : +10029094: b5f0 push {r4, r5, r6, r7, lr} +10029096: 4b4d ldr r3, [pc, #308] ; (100291cc ) +10029098: b089 sub sp, #36 ; 0x24 +1002909a: 4604 mov r4, r0 +1002909c: f8c4 04e8 str.w r0, [r4, #1256] ; 0x4e8 +100290a0: 466a mov r2, sp +100290a2: f103 0608 add.w r6, r3, #8 +100290a6: 6818 ldr r0, [r3, #0] +100290a8: 6859 ldr r1, [r3, #4] +100290aa: 4615 mov r5, r2 +100290ac: c503 stmia r5!, {r0, r1} +100290ae: 3308 adds r3, #8 +100290b0: 42b3 cmp r3, r6 +100290b2: 462a mov r2, r5 +100290b4: d1f7 bne.n 100290a6 +100290b6: 6818 ldr r0, [r3, #0] +100290b8: 791b ldrb r3, [r3, #4] +100290ba: 6028 str r0, [r5, #0] +100290bc: 712b strb r3, [r5, #4] +100290be: 220d movs r2, #13 +100290c0: a804 add r0, sp, #16 +100290c2: 2100 movs r1, #0 +100290c4: f019 f921 bl 1004230a +100290c8: 2301 movs r3, #1 +100290ca: f88d 3011 strb.w r3, [sp, #17] +100290ce: 2303 movs r3, #3 +100290d0: f88d 3013 strb.w r3, [sp, #19] +100290d4: 2304 movs r3, #4 +100290d6: f88d 3014 strb.w r3, [sp, #20] +100290da: 2306 movs r3, #6 +100290dc: f88d 3015 strb.w r3, [sp, #21] +100290e0: 2308 movs r3, #8 +100290e2: 2500 movs r5, #0 +100290e4: 2602 movs r6, #2 +100290e6: f88d 3016 strb.w r3, [sp, #22] +100290ea: f504 609e add.w r0, r4, #1264 ; 0x4f0 +100290ee: 23ff movs r3, #255 ; 0xff +100290f0: 2100 movs r1, #0 +100290f2: f88d 3017 strb.w r3, [sp, #23] +100290f6: f88d 6012 strb.w r6, [sp, #18] +100290fa: f7f3 ffcf bl 1001d09c +100290fe: f8a4 54f4 strh.w r5, [r4, #1268] ; 0x4f4 +10029102: f241 3324 movw r3, #4900 ; 0x1324 +10029106: 5ce3 ldrb r3, [r4, r3] +10029108: f884 54f7 strb.w r5, [r4, #1271] ; 0x4f7 +1002910c: f884 34f6 strb.w r3, [r4, #1270] ; 0x4f6 +10029110: f884 54f8 strb.w r5, [r4, #1272] ; 0x4f8 +10029114: f884 57c4 strb.w r5, [r4, #1988] ; 0x7c4 +10029118: f241 3325 movw r3, #4901 ; 0x1325 +1002911c: 5ce3 ldrb r3, [r4, r3] +1002911e: f204 50b1 addw r0, r4, #1457 ; 0x5b1 +10029122: f884 34f9 strb.w r3, [r4, #1273] ; 0x4f9 +10029126: 4669 mov r1, sp +10029128: 220d movs r2, #13 +1002912a: f7f3 fe3f bl 1001cdac +1002912e: f204 50a4 addw r0, r4, #1444 ; 0x5a4 +10029132: a904 add r1, sp, #16 +10029134: 220d movs r2, #13 +10029136: f7f3 fe39 bl 1001cdac +1002913a: f894 34f6 ldrb.w r3, [r4, #1270] ; 0x4f6 +1002913e: 2100 movs r1, #0 +10029140: 2b0e cmp r3, #14 +10029142: bf86 itte hi +10029144: 230c movhi r3, #12 +10029146: f884 37c3 strbhi.w r3, [r4, #1987] ; 0x7c3 +1002914a: f884 67c3 strbls.w r6, [r4, #1987] ; 0x7c3 +1002914e: 2280 movs r2, #128 ; 0x80 +10029150: f504 60c4 add.w r0, r4, #1568 ; 0x620 +10029154: f8c4 55c0 str.w r5, [r4, #1472] ; 0x5c0 +10029158: f8c4 55c8 str.w r5, [r4, #1480] ; 0x5c8 +1002915c: f8c4 55c4 str.w r5, [r4, #1476] ; 0x5c4 +10029160: f884 57c2 strb.w r5, [r4, #1986] ; 0x7c2 +10029164: f8c4 55f8 str.w r5, [r4, #1528] ; 0x5f8 +10029168: f8c4 55fc str.w r5, [r4, #1532] ; 0x5fc +1002916c: f8c4 5600 str.w r5, [r4, #1536] ; 0x600 +10029170: f8c4 5604 str.w r5, [r4, #1540] ; 0x604 +10029174: f8c4 5608 str.w r5, [r4, #1544] ; 0x608 +10029178: f8c4 560c str.w r5, [r4, #1548] ; 0x60c +1002917c: f8c4 5618 str.w r5, [r4, #1560] ; 0x618 +10029180: f8c4 561c str.w r5, [r4, #1564] ; 0x61c +10029184: f8c4 5614 str.w r5, [r4, #1556] ; 0x614 +10029188: f8c4 5610 str.w r5, [r4, #1552] ; 0x610 +1002918c: f7f3 fe20 bl 1001cdd0 +10029190: 2309 movs r3, #9 +10029192: f884 36a7 strb.w r3, [r4, #1703] ; 0x6a7 +10029196: 2302 movs r3, #2 +10029198: f884 36a8 strb.w r3, [r4, #1704] ; 0x6a8 +1002919c: 4620 mov r0, r4 +1002919e: f884 56b6 strb.w r5, [r4, #1718] ; 0x6b6 +100291a2: f7ff ff49 bl 10029038 +100291a6: 4620 mov r0, r4 +100291a8: f7f9 f9a2 bl 100224f0 +100291ac: 4620 mov r0, r4 +100291ae: f894 149e ldrb.w r1, [r4, #1182] ; 0x49e +100291b2: f204 42fc addw r2, r4, #1276 ; 0x4fc +100291b6: f7fb fbcb bl 10024950 +100291ba: 2364 movs r3, #100 ; 0x64 +100291bc: f884 04fa strb.w r0, [r4, #1274] ; 0x4fa +100291c0: 2001 movs r0, #1 +100291c2: f8a4 37c0 strh.w r3, [r4, #1984] ; 0x7c0 +100291c6: b009 add sp, #36 ; 0x24 +100291c8: bdf0 pop {r4, r5, r6, r7, pc} +100291ca: bf00 nop +100291cc: 1004a641 .word 0x1004a641 + +100291d0 : +100291d0: 8802 ldrh r2, [r0, #0] +100291d2: f412 7f80 tst.w r2, #256 ; 0x100 +100291d6: bf0c ite eq +100291d8: 2300 moveq r3, #0 +100291da: 2302 movne r3, #2 +100291dc: f3c2 2240 ubfx r2, r2, #9, #1 +100291e0: 4313 orrs r3, r2 +100291e2: 2b02 cmp r3, #2 +100291e4: d006 beq.n 100291f4 +100291e6: 2b03 cmp r3, #3 +100291e8: d004 beq.n 100291f4 +100291ea: 2b01 cmp r3, #1 +100291ec: bf14 ite ne +100291ee: 3010 addne r0, #16 +100291f0: 300a addeq r0, #10 +100291f2: 4770 bx lr +100291f4: 3004 adds r0, #4 +100291f6: 4770 bx lr + +100291f8 : +100291f8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100291fc: 4b1e ldr r3, [pc, #120] ; (10029278 ) +100291fe: 2600 movs r6, #0 +10029200: 4635 mov r5, r6 +10029202: 781a ldrb r2, [r3, #0] +10029204: b1fa cbz r2, 10029246 +10029206: f833 2c10 ldrh.w r2, [r3, #-16] +1002920a: f833 7c0e ldrh.w r7, [r3, #-14] +1002920e: 3601 adds r6, #1 +10029210: 19d4 adds r4, r2, r7 +10029212: 428c cmp r4, r1 +10029214: dc17 bgt.n 10029246 +10029216: eb00 0c02 add.w ip, r0, r2 +1002921a: 2200 movs r2, #0 +1002921c: 4614 mov r4, r2 +1002921e: 42ba cmp r2, r7 +10029220: da10 bge.n 10029244 +10029222: f853 4c08 ldr.w r4, [r3, #-8] +10029226: f814 8002 ldrb.w r8, [r4, r2] +1002922a: f81c 4002 ldrb.w r4, [ip, r2] +1002922e: ea88 0804 eor.w r8, r8, r4 +10029232: f853 4c0c ldr.w r4, [r3, #-12] +10029236: 5ca4 ldrb r4, [r4, r2] +10029238: ea18 0f04 tst.w r8, r4 +1002923c: d103 bne.n 10029246 +1002923e: 3201 adds r2, #1 +10029240: 2401 movs r4, #1 +10029242: e7ec b.n 1002921e +10029244: b934 cbnz r4, 10029254 +10029246: 3501 adds r5, #1 +10029248: 2d05 cmp r5, #5 +1002924a: f103 0318 add.w r3, r3, #24 +1002924e: d1d8 bne.n 10029202 +10029250: b15e cbz r6, 1002926a +10029252: 2400 movs r4, #0 +10029254: 4b09 ldr r3, [pc, #36] ; (1002927c ) +10029256: 2218 movs r2, #24 +10029258: fb02 3505 mla r5, r2, r5, r3 +1002925c: 692b ldr r3, [r5, #16] +1002925e: 2b01 cmp r3, #1 +10029260: d106 bne.n 10029270 +10029262: f084 0001 eor.w r0, r4, #1 +10029266: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002926a: 2001 movs r0, #1 +1002926c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10029270: 4620 mov r0, r4 +10029272: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10029276: bf00 nop +10029278: 10050a30 .word 0x10050a30 +1002927c: 10050a1c .word 0x10050a1c + +10029280 : +10029280: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10029284: f500 663c add.w r6, r0, #3008 ; 0xbc0 +10029288: 4605 mov r5, r0 +1002928a: 4688 mov r8, r1 +1002928c: 4630 mov r0, r6 +1002928e: 2100 movs r1, #0 +10029290: f7f3 fe22 bl 1001ced8 +10029294: f8d5 4bb8 ldr.w r4, [r5, #3000] ; 0xbb8 +10029298: f605 37b8 addw r7, r5, #3000 ; 0xbb8 +1002929c: 4638 mov r0, r7 +1002929e: 4621 mov r1, r4 +100292a0: f7f3 fe5e bl 1001cf60 +100292a4: b950 cbnz r0, 100292bc +100292a6: f104 0008 add.w r0, r4, #8 +100292aa: 4641 mov r1, r8 +100292ac: 2206 movs r2, #6 +100292ae: f7f3 fd85 bl 1001cdbc +100292b2: b108 cbz r0, 100292b8 +100292b4: 7ba5 ldrb r5, [r4, #14] +100292b6: e002 b.n 100292be +100292b8: 6824 ldr r4, [r4, #0] +100292ba: e7ed b.n 10029298 +100292bc: 2500 movs r5, #0 +100292be: 4630 mov r0, r6 +100292c0: 42bc cmp r4, r7 +100292c2: bf08 it eq +100292c4: 25ff moveq r5, #255 ; 0xff +100292c6: 2100 movs r1, #0 +100292c8: f7f3 fe0e bl 1001cee8 +100292cc: 4628 mov r0, r5 +100292ce: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +100292d2 : +100292d2: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100292d6: 4683 mov fp, r0 +100292d8: 4614 mov r4, r2 +100292da: 460e mov r6, r1 +100292dc: b109 cbz r1, 100292e2 +100292de: 6f8d ldr r5, [r1, #120] ; 0x78 +100292e0: e000 b.n 100292e4 +100292e2: 460d mov r5, r1 +100292e4: 4628 mov r0, r5 +100292e6: f7ff ff73 bl 100291d0 +100292ea: 882b ldrh r3, [r5, #0] +100292ec: 1d27 adds r7, r4, #4 +100292ee: 8023 strh r3, [r4, #0] +100292f0: 8aeb ldrh r3, [r5, #22] +100292f2: 4682 mov sl, r0 +100292f4: 091b lsrs r3, r3, #4 +100292f6: 82e3 strh r3, [r4, #22] +100292f8: 886b ldrh r3, [r5, #2] +100292fa: 4638 mov r0, r7 +100292fc: 8063 strh r3, [r4, #2] +100292fe: 1d29 adds r1, r5, #4 +10029300: 2206 movs r2, #6 +10029302: f104 080a add.w r8, r4, #10 +10029306: f7f3 fd51 bl 1001cdac +1002930a: f104 0910 add.w r9, r4, #16 +1002930e: 4640 mov r0, r8 +10029310: f105 010a add.w r1, r5, #10 +10029314: 2206 movs r2, #6 +10029316: f7f3 fd49 bl 1001cdac +1002931a: 2206 movs r2, #6 +1002931c: 4648 mov r0, r9 +1002931e: f105 0110 add.w r1, r5, #16 +10029322: f7f3 fd43 bl 1001cdac +10029326: 4658 mov r0, fp +10029328: 4651 mov r1, sl +1002932a: f7ff ffa9 bl 10029280 +1002932e: 77a0 strb r0, [r4, #30] +10029330: f896 306c ldrb.w r3, [r6, #108] ; 0x6c +10029334: f104 0018 add.w r0, r4, #24 +10029338: 77e3 strb r3, [r4, #31] +1002933a: 882a ldrh r2, [r5, #0] +1002933c: f412 7f80 tst.w r2, #256 ; 0x100 +10029340: bf0c ite eq +10029342: 2300 moveq r3, #0 +10029344: 2302 movne r3, #2 +10029346: f3c2 2240 ubfx r2, r2, #9, #1 +1002934a: 4313 orrs r3, r2 +1002934c: 2b01 cmp r3, #1 +1002934e: d004 beq.n 1002935a +10029350: 2b02 cmp r3, #2 +10029352: d008 beq.n 10029366 +10029354: b94b cbnz r3, 1002936a +10029356: 4649 mov r1, r9 +10029358: e000 b.n 1002935c +1002935a: 4641 mov r1, r8 +1002935c: 2206 movs r2, #6 +1002935e: e8bd 4ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10029362: f7f3 bd23 b.w 1001cdac +10029366: 4639 mov r1, r7 +10029368: e7f8 b.n 1002935c +1002936a: 2100 movs r1, #0 +1002936c: 2206 movs r2, #6 +1002936e: e8bd 4ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10029372: f7f3 bd2d b.w 1001cdd0 + +10029376 : +10029376: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10029378: 460d mov r5, r1 +1002937a: f88d 1007 strb.w r1, [sp, #7] +1002937e: 4604 mov r4, r0 +10029380: 4617 mov r7, r2 +10029382: f890 1bb4 ldrb.w r1, [r0, #2996] ; 0xbb4 +10029386: b345 cbz r5, 100293da +10029388: 2900 cmp r1, #0 +1002938a: d140 bne.n 1002940e +1002938c: 2501 movs r5, #1 +1002938e: f500 663c add.w r6, r0, #3008 ; 0xbc0 +10029392: f880 54f7 strb.w r5, [r0, #1271] ; 0x4f7 +10029396: f880 54f8 strb.w r5, [r0, #1272] ; 0x4f8 +1002939a: 4630 mov r0, r6 +1002939c: f7f3 fd9c bl 1001ced8 +100293a0: f894 3bb4 ldrb.w r3, [r4, #2996] ; 0xbb4 +100293a4: b93b cbnz r3, 100293b6 +100293a6: f604 30b8 addw r0, r4, #3000 ; 0xbb8 +100293aa: f7f3 fd19 bl 1001cde0 +100293ae: f884 5bb4 strb.w r5, [r4, #2996] ; 0xbb4 +100293b2: f884 7bb5 strb.w r7, [r4, #2997] ; 0xbb5 +100293b6: 4630 mov r0, r6 +100293b8: 2100 movs r1, #0 +100293ba: f7f3 fd95 bl 1001cee8 +100293be: 2100 movs r1, #0 +100293c0: 4620 mov r0, r4 +100293c2: f002 fd07 bl 1002bdd4 +100293c6: 4620 mov r0, r4 +100293c8: f002 fbf6 bl 1002bbb8 +100293cc: 4620 mov r0, r4 +100293ce: 2150 movs r1, #80 ; 0x50 +100293d0: f10d 0207 add.w r2, sp, #7 +100293d4: f00e faa9 bl 1003792a +100293d8: e019 b.n 1002940e +100293da: b1c1 cbz r1, 1002940e +100293dc: f7e4 faae bl 1000d93c +100293e0: 4620 mov r0, r4 +100293e2: 2150 movs r1, #80 ; 0x50 +100293e4: f10d 0207 add.w r2, sp, #7 +100293e8: f00e fa9f bl 1003792a +100293ec: 4620 mov r0, r4 +100293ee: f894 14f6 ldrb.w r1, [r4, #1270] ; 0x4f6 +100293f2: 462b mov r3, r5 +100293f4: f884 54f7 strb.w r5, [r4, #1271] ; 0x4f7 +100293f8: f884 54f8 strb.w r5, [r4, #1272] ; 0x4f8 +100293fc: 462a mov r2, r5 +100293fe: f004 fd07 bl 1002de10 +10029402: f241 332f movw r3, #4911 ; 0x132f +10029406: 4620 mov r0, r4 +10029408: 5ce1 ldrb r1, [r4, r3] +1002940a: f002 fce3 bl 1002bdd4 +1002940e: b003 add sp, #12 +10029410: bdf0 pop {r4, r5, r6, r7, pc} + +10029412 <_promisc_deinit>: +10029412: b570 push {r4, r5, r6, lr} +10029414: f500 653c add.w r5, r0, #3008 ; 0xbc0 +10029418: 4604 mov r4, r0 +1002941a: 2100 movs r1, #0 +1002941c: 4628 mov r0, r5 +1002941e: f7f3 fd5b bl 1001ced8 +10029422: f894 3bb4 ldrb.w r3, [r4, #2996] ; 0xbb4 +10029426: b92b cbnz r3, 10029434 <_promisc_deinit+0x22> +10029428: 4628 mov r0, r5 +1002942a: 2100 movs r1, #0 +1002942c: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10029430: f7f3 bd5a b.w 1001cee8 +10029434: 2300 movs r3, #0 +10029436: f884 3bb4 strb.w r3, [r4, #2996] ; 0xbb4 +1002943a: f884 3bb5 strb.w r3, [r4, #2997] ; 0xbb5 +1002943e: f604 30b8 addw r0, r4, #3000 ; 0xbb8 +10029442: f8d4 1bb8 ldr.w r1, [r4, #3000] ; 0xbb8 +10029446: f7f3 fd8b bl 1001cf60 +1002944a: 2800 cmp r0, #0 +1002944c: d1ec bne.n 10029428 <_promisc_deinit+0x16> +1002944e: f8d4 6bb8 ldr.w r6, [r4, #3000] ; 0xbb8 +10029452: 4630 mov r0, r6 +10029454: f7f3 fcda bl 1001ce0c +10029458: 4630 mov r0, r6 +1002945a: 2134 movs r1, #52 ; 0x34 +1002945c: f7f3 fc9e bl 1001cd9c +10029460: e7ed b.n 1002943e <_promisc_deinit+0x2c> + ... + +10029464 <_promisc_recv_func>: +10029464: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10029468: 6f8d ldr r5, [r1, #120] ; 0x78 +1002946a: 460c mov r4, r1 +1002946c: 882b ldrh r3, [r5, #0] +1002946e: b099 sub sp, #100 ; 0x64 +10029470: b2d9 uxtb r1, r3 +10029472: f600 22c4 addw r2, r0, #2756 ; 0xac4 +10029476: f413 7f80 tst.w r3, #256 ; 0x100 +1002947a: 9207 str r2, [sp, #28] +1002947c: f001 02fc and.w r2, r1, #252 ; 0xfc +10029480: 9206 str r2, [sp, #24] +10029482: f3c3 2340 ubfx r3, r3, #9, #1 +10029486: bf0c ite eq +10029488: 2200 moveq r2, #0 +1002948a: 2202 movne r2, #2 +1002948c: 4313 orrs r3, r2 +1002948e: f884 3022 strb.w r3, [r4, #34] ; 0x22 +10029492: 882b ldrh r3, [r5, #0] +10029494: f011 010c ands.w r1, r1, #12 +10029498: f3c3 3380 ubfx r3, r3, #14, #1 +1002949c: f884 302d strb.w r3, [r4, #45] ; 0x2d +100294a0: 882b ldrh r3, [r5, #0] +100294a2: 4606 mov r6, r0 +100294a4: ea4f 33d3 mov.w r3, r3, lsr #15 +100294a8: f884 302c strb.w r3, [r4, #44] ; 0x2c +100294ac: d003 beq.n 100294b6 <_promisc_recv_func+0x52> +100294ae: 2908 cmp r1, #8 +100294b0: f000 8139 beq.w 10029726 <_promisc_recv_func+0x2c2> +100294b4: e204 b.n 100298c0 <_promisc_recv_func+0x45c> +100294b6: 9b06 ldr r3, [sp, #24] +100294b8: 2b80 cmp r3, #128 ; 0x80 +100294ba: f040 811f bne.w 100296fc <_promisc_recv_func+0x298> +100294be: f890 3bb5 ldrb.w r3, [r0, #2997] ; 0xbb5 +100294c2: 2b00 cmp r3, #0 +100294c4: f000 811a beq.w 100296fc <_promisc_recv_func+0x298> +100294c8: 2220 movs r2, #32 +100294ca: a810 add r0, sp, #64 ; 0x40 +100294cc: f105 0b18 add.w fp, r5, #24 +100294d0: f8ad 1022 strh.w r1, [sp, #34] ; 0x22 +100294d4: f8ad 1024 strh.w r1, [sp, #36] ; 0x24 +100294d8: f8ad 1026 strh.w r1, [sp, #38] ; 0x26 +100294dc: 910d str r1, [sp, #52] ; 0x34 +100294de: 910e str r1, [sp, #56] ; 0x38 +100294e0: f8d4 a070 ldr.w sl, [r4, #112] ; 0x70 +100294e4: f7f3 fc74 bl 1001cdd0 +100294e8: 4658 mov r0, fp +100294ea: f7fa fa0f bl 1002390c +100294ee: 2202 movs r2, #2 +100294f0: 4601 mov r1, r0 +100294f2: f10d 0022 add.w r0, sp, #34 ; 0x22 +100294f6: f7f3 fc59 bl 1001cdac +100294fa: f8bd 2022 ldrh.w r2, [sp, #34] ; 0x22 +100294fe: f105 0824 add.w r8, r5, #36 ; 0x24 +10029502: f1aa 0724 sub.w r7, sl, #36 ; 0x24 +10029506: 9205 str r2, [sp, #20] +10029508: 4640 mov r0, r8 +1002950a: 2103 movs r1, #3 +1002950c: aa0a add r2, sp, #40 ; 0x28 +1002950e: 463b mov r3, r7 +10029510: f01a f9ee bl 100438f0 <__rtw_get_ie_veneer> +10029514: b110 cbz r0, 1002951c <_promisc_recv_func+0xb8> +10029516: 9b0a ldr r3, [sp, #40] ; 0x28 +10029518: b113 cbz r3, 10029520 <_promisc_recv_func+0xbc> +1002951a: 7880 ldrb r0, [r0, #2] +1002951c: 9004 str r0, [sp, #16] +1002951e: e000 b.n 10029522 <_promisc_recv_func+0xbe> +10029520: 9304 str r3, [sp, #16] +10029522: 2100 movs r1, #0 +10029524: 4640 mov r0, r8 +10029526: aa0c add r2, sp, #48 ; 0x30 +10029528: 463b mov r3, r7 +1002952a: f01a f9e1 bl 100438f0 <__rtw_get_ie_veneer> +1002952e: 4601 mov r1, r0 +10029530: 2800 cmp r0, #0 +10029532: f000 80e3 beq.w 100296fc <_promisc_recv_func+0x298> +10029536: 7843 ldrb r3, [r0, #1] +10029538: b13b cbz r3, 1002954a <_promisc_recv_func+0xe6> +1002953a: 9a0c ldr r2, [sp, #48] ; 0x30 +1002953c: 2a20 cmp r2, #32 +1002953e: f200 80dd bhi.w 100296fc <_promisc_recv_func+0x298> +10029542: a810 add r0, sp, #64 ; 0x40 +10029544: 3102 adds r1, #2 +10029546: f7f3 fc31 bl 1001cdac +1002954a: 4640 mov r0, r8 +1002954c: 213d movs r1, #61 ; 0x3d +1002954e: aa0b add r2, sp, #44 ; 0x2c +10029550: 463b mov r3, r7 +10029552: f01a f9cd bl 100438f0 <__rtw_get_ie_veneer> +10029556: b150 cbz r0, 1002956e <_promisc_recv_func+0x10a> +10029558: 9b0b ldr r3, [sp, #44] ; 0x2c +1002955a: b153 cbz r3, 10029572 <_promisc_recv_func+0x10e> +1002955c: 78c3 ldrb r3, [r0, #3] +1002955e: f003 0204 and.w r2, r3, #4 +10029562: f002 01ff and.w r1, r2, #255 ; 0xff +10029566: b132 cbz r2, 10029576 <_promisc_recv_func+0x112> +10029568: f003 0303 and.w r3, r3, #3 +1002956c: e001 b.n 10029572 <_promisc_recv_func+0x10e> +1002956e: 9003 str r0, [sp, #12] +10029570: e002 b.n 10029578 <_promisc_recv_func+0x114> +10029572: 9303 str r3, [sp, #12] +10029574: e000 b.n 10029578 <_promisc_recv_func+0x114> +10029576: 9103 str r1, [sp, #12] +10029578: f04f 0900 mov.w r9, #0 +1002957c: ab09 add r3, sp, #36 ; 0x24 +1002957e: 9301 str r3, [sp, #4] +10029580: f1aa 0118 sub.w r1, sl, #24 +10029584: f8cd 9000 str.w r9, [sp] +10029588: 4658 mov r0, fp +1002958a: 464a mov r2, r9 +1002958c: f10d 0326 add.w r3, sp, #38 ; 0x26 +10029590: f01a fa06 bl 100439a0 <__rtw_get_sec_ie_veneer> +10029594: f8bd a024 ldrh.w sl, [sp, #36] ; 0x24 +10029598: f1ba 0f00 cmp.w sl, #0 +1002959c: d010 beq.n 100295c0 <_promisc_recv_func+0x15c> +1002959e: 4640 mov r0, r8 +100295a0: a90f add r1, sp, #60 ; 0x3c +100295a2: 463a mov r2, r7 +100295a4: f01a f9cc bl 10043940 <__rtw_get_wpa_ie_veneer> +100295a8: b320 cbz r0, 100295f4 <_promisc_recv_func+0x190> +100295aa: 9b0f ldr r3, [sp, #60] ; 0x3c +100295ac: b313 cbz r3, 100295f4 <_promisc_recv_func+0x190> +100295ae: f8bd 1024 ldrh.w r1, [sp, #36] ; 0x24 +100295b2: f8cd 9000 str.w r9, [sp] +100295b6: aa0d add r2, sp, #52 ; 0x34 +100295b8: ab0e add r3, sp, #56 ; 0x38 +100295ba: f01a f8e1 bl 10043780 <__rtw_parse_wpa_ie_veneer> +100295be: e019 b.n 100295f4 <_promisc_recv_func+0x190> +100295c0: f8bd 3026 ldrh.w r3, [sp, #38] ; 0x26 +100295c4: b183 cbz r3, 100295e8 <_promisc_recv_func+0x184> +100295c6: 4640 mov r0, r8 +100295c8: a90f add r1, sp, #60 ; 0x3c +100295ca: 463a mov r2, r7 +100295cc: f01a f900 bl 100437d0 <__rtw_get_wpa2_ie_veneer> +100295d0: b180 cbz r0, 100295f4 <_promisc_recv_func+0x190> +100295d2: 9b0f ldr r3, [sp, #60] ; 0x3c +100295d4: b173 cbz r3, 100295f4 <_promisc_recv_func+0x190> +100295d6: f8bd 1026 ldrh.w r1, [sp, #38] ; 0x26 +100295da: f8cd a000 str.w sl, [sp] +100295de: aa0d add r2, sp, #52 ; 0x34 +100295e0: ab0e add r3, sp, #56 ; 0x38 +100295e2: f01a f865 bl 100436b0 <__rtw_parse_wpa2_ie_veneer> +100295e6: e005 b.n 100295f4 <_promisc_recv_func+0x190> +100295e8: 9b05 ldr r3, [sp, #20] +100295ea: 06db lsls r3, r3, #27 +100295ec: bf4c ite mi +100295ee: 2302 movmi r3, #2 +100295f0: 2301 movpl r3, #1 +100295f2: 930d str r3, [sp, #52] ; 0x34 +100295f4: 9f0d ldr r7, [sp, #52] ; 0x34 +100295f6: 2f04 cmp r7, #4 +100295f8: d01d beq.n 10029636 <_promisc_recv_func+0x1d2> +100295fa: dc02 bgt.n 10029602 <_promisc_recv_func+0x19e> +100295fc: 2f02 cmp r7, #2 +100295fe: d01f beq.n 10029640 <_promisc_recv_func+0x1dc> +10029600: e003 b.n 1002960a <_promisc_recv_func+0x1a6> +10029602: 2f08 cmp r7, #8 +10029604: d003 beq.n 1002960e <_promisc_recv_func+0x1aa> +10029606: 2f10 cmp r7, #16 +10029608: d00b beq.n 10029622 <_promisc_recv_func+0x1be> +1002960a: 2701 movs r7, #1 +1002960c: e018 b.n 10029640 <_promisc_recv_func+0x1dc> +1002960e: f8bd 3026 ldrh.w r3, [sp, #38] ; 0x26 +10029612: b993 cbnz r3, 1002963a <_promisc_recv_func+0x1d6> +10029614: f8bd 3024 ldrh.w r3, [sp, #36] ; 0x24 +10029618: 2b00 cmp r3, #0 +1002961a: bf14 ite ne +1002961c: 2703 movne r7, #3 +1002961e: 2701 moveq r7, #1 +10029620: e00e b.n 10029640 <_promisc_recv_func+0x1dc> +10029622: f8bd 3026 ldrh.w r3, [sp, #38] ; 0x26 +10029626: b953 cbnz r3, 1002963e <_promisc_recv_func+0x1da> +10029628: f8bd 3024 ldrh.w r3, [sp, #36] ; 0x24 +1002962c: 2b00 cmp r3, #0 +1002962e: bf14 ite ne +10029630: 2704 movne r7, #4 +10029632: 2701 moveq r7, #1 +10029634: e004 b.n 10029640 <_promisc_recv_func+0x1dc> +10029636: 2709 movs r7, #9 +10029638: e002 b.n 10029640 <_promisc_recv_func+0x1dc> +1002963a: 2705 movs r7, #5 +1002963c: e000 b.n 10029640 <_promisc_recv_func+0x1dc> +1002963e: 2706 movs r7, #6 +10029640: f896 3bb4 ldrb.w r3, [r6, #2996] ; 0xbb4 +10029644: f8dd 8030 ldr.w r8, [sp, #48] ; 0x30 +10029648: 2b00 cmp r3, #0 +1002964a: d057 beq.n 100296fc <_promisc_recv_func+0x298> +1002964c: f105 0910 add.w r9, r5, #16 +10029650: 49ab ldr r1, [pc, #684] ; (10029900 <_promisc_recv_func+0x49c>) +10029652: 4648 mov r0, r9 +10029654: 2206 movs r2, #6 +10029656: f7f3 fbb1 bl 1001cdbc +1002965a: 4601 mov r1, r0 +1002965c: 2800 cmp r0, #0 +1002965e: d14d bne.n 100296fc <_promisc_recv_func+0x298> +10029660: f506 633c add.w r3, r6, #3008 ; 0xbc0 +10029664: 4618 mov r0, r3 +10029666: 9305 str r3, [sp, #20] +10029668: f7f3 fc36 bl 1001ced8 +1002966c: f8d6 bbb8 ldr.w fp, [r6, #3000] ; 0xbb8 +10029670: f606 3ab8 addw sl, r6, #3000 ; 0xbb8 +10029674: 4650 mov r0, sl +10029676: 4659 mov r1, fp +10029678: f7f3 fc72 bl 1001cf60 +1002967c: b9d0 cbnz r0, 100296b4 <_promisc_recv_func+0x250> +1002967e: f10b 0008 add.w r0, fp, #8 +10029682: 4649 mov r1, r9 +10029684: 2206 movs r2, #6 +10029686: f7f3 fb99 bl 1001cdbc +1002968a: b180 cbz r0, 100296ae <_promisc_recv_func+0x24a> +1002968c: 9a04 ldr r2, [sp, #16] +1002968e: 9b03 ldr r3, [sp, #12] +10029690: f88b 200f strb.w r2, [fp, #15] +10029694: f88b 700e strb.w r7, [fp, #14] +10029698: f88b 8030 strb.w r8, [fp, #48] ; 0x30 +1002969c: f88b 3031 strb.w r3, [fp, #49] ; 0x31 +100296a0: f10b 0010 add.w r0, fp, #16 +100296a4: a910 add r1, sp, #64 ; 0x40 +100296a6: 4642 mov r2, r8 +100296a8: f7f3 fb80 bl 1001cdac +100296ac: e002 b.n 100296b4 <_promisc_recv_func+0x250> +100296ae: f8db b000 ldr.w fp, [fp] +100296b2: e7dd b.n 10029670 <_promisc_recv_func+0x20c> +100296b4: 45d3 cmp fp, sl +100296b6: d11d bne.n 100296f4 <_promisc_recv_func+0x290> +100296b8: 2034 movs r0, #52 ; 0x34 +100296ba: f7f3 fb59 bl 1001cd70 +100296be: 4682 mov sl, r0 +100296c0: b1c0 cbz r0, 100296f4 <_promisc_recv_func+0x290> +100296c2: 3008 adds r0, #8 +100296c4: 4649 mov r1, r9 +100296c6: 2206 movs r2, #6 +100296c8: f7f3 fb70 bl 1001cdac +100296cc: 9a04 ldr r2, [sp, #16] +100296ce: 9b03 ldr r3, [sp, #12] +100296d0: f88a 200f strb.w r2, [sl, #15] +100296d4: f10a 0010 add.w r0, sl, #16 +100296d8: a910 add r1, sp, #64 ; 0x40 +100296da: f88a 700e strb.w r7, [sl, #14] +100296de: f88a 8030 strb.w r8, [sl, #48] ; 0x30 +100296e2: f88a 3031 strb.w r3, [sl, #49] ; 0x31 +100296e6: 4642 mov r2, r8 +100296e8: f7f3 fb60 bl 1001cdac +100296ec: 4650 mov r0, sl +100296ee: 4659 mov r1, fp +100296f0: f7f3 fb80 bl 1001cdf4 +100296f4: 9805 ldr r0, [sp, #20] +100296f6: 2100 movs r1, #0 +100296f8: f7f3 fbf6 bl 1001cee8 +100296fc: f8d6 35f8 ldr.w r3, [r6, #1528] ; 0x5f8 +10029700: f003 0303 and.w r3, r3, #3 +10029704: 2b03 cmp r3, #3 +10029706: f040 80db bne.w 100298c0 <_promisc_recv_func+0x45c> +1002970a: f896 7bca ldrb.w r7, [r6, #3018] ; 0xbca +1002970e: 2f00 cmp r7, #0 +10029710: f000 80d7 beq.w 100298c2 <_promisc_recv_func+0x45e> +10029714: 9a06 ldr r2, [sp, #24] +10029716: 2a40 cmp r2, #64 ; 0x40 +10029718: f040 80d2 bne.w 100298c0 <_promisc_recv_func+0x45c> +1002971c: 4630 mov r0, r6 +1002971e: 4621 mov r1, r4 +10029720: f7fb fdd2 bl 100252c8 +10029724: e0cc b.n 100298c0 <_promisc_recv_func+0x45c> +10029726: 9a06 ldr r2, [sp, #24] +10029728: 09d3 lsrs r3, r2, #7 +1002972a: f884 3024 strb.w r3, [r4, #36] ; 0x24 +1002972e: 882b ldrh r3, [r5, #0] +10029730: f403 7280 and.w r2, r3, #256 ; 0x100 +10029734: b292 uxth r2, r2 +10029736: 2a00 cmp r2, #0 +10029738: bf0c ite eq +1002973a: 2100 moveq r1, #0 +1002973c: 2102 movne r1, #2 +1002973e: f3c3 2340 ubfx r3, r3, #9, #1 +10029742: 4319 orrs r1, r3 +10029744: 2901 cmp r1, #1 +10029746: d003 beq.n 10029750 <_promisc_recv_func+0x2ec> +10029748: d302 bcc.n 10029750 <_promisc_recv_func+0x2ec> +1002974a: f105 0810 add.w r8, r5, #16 +1002974e: e001 b.n 10029754 <_promisc_recv_func+0x2f0> +10029750: f105 0804 add.w r8, r5, #4 +10029754: 2a00 cmp r2, #0 +10029756: bf0c ite eq +10029758: 2200 moveq r2, #0 +1002975a: 2202 movne r2, #2 +1002975c: 4313 orrs r3, r2 +1002975e: 2b01 cmp r3, #1 +10029760: d003 beq.n 1002976a <_promisc_recv_func+0x306> +10029762: d305 bcc.n 10029770 <_promisc_recv_func+0x30c> +10029764: 2b02 cmp r3, #2 +10029766: d003 beq.n 10029770 <_promisc_recv_func+0x30c> +10029768: e005 b.n 10029776 <_promisc_recv_func+0x312> +1002976a: f105 0710 add.w r7, r5, #16 +1002976e: e004 b.n 1002977a <_promisc_recv_func+0x316> +10029770: f105 070a add.w r7, r5, #10 +10029774: e001 b.n 1002977a <_promisc_recv_func+0x316> +10029776: f105 0718 add.w r7, r5, #24 +1002977a: 4628 mov r0, r5 +1002977c: f7ff fd28 bl 100291d0 +10029780: 4641 mov r1, r8 +10029782: 2206 movs r2, #6 +10029784: 4681 mov r9, r0 +10029786: f104 0036 add.w r0, r4, #54 ; 0x36 +1002978a: f7f3 fb0f bl 1001cdac +1002978e: f104 003c add.w r0, r4, #60 ; 0x3c +10029792: 4639 mov r1, r7 +10029794: 2206 movs r2, #6 +10029796: f7f3 fb09 bl 1001cdac +1002979a: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +1002979e: 2b03 cmp r3, #3 +100297a0: f200 808e bhi.w 100298c0 <_promisc_recv_func+0x45c> +100297a4: e8df f003 tbb [pc, r3] +100297a8: 27100602 .word 0x27100602 +100297ac: f104 0048 add.w r0, r4, #72 ; 0x48 +100297b0: 4641 mov r1, r8 +100297b2: e00c b.n 100297ce <_promisc_recv_func+0x36a> +100297b4: f104 0048 add.w r0, r4, #72 ; 0x48 +100297b8: 4641 mov r1, r8 +100297ba: 2206 movs r2, #6 +100297bc: f7f3 faf6 bl 1001cdac +100297c0: f104 0042 add.w r0, r4, #66 ; 0x42 +100297c4: 4649 mov r1, r9 +100297c6: e008 b.n 100297da <_promisc_recv_func+0x376> +100297c8: f104 0048 add.w r0, r4, #72 ; 0x48 +100297cc: 4649 mov r1, r9 +100297ce: 2206 movs r2, #6 +100297d0: f7f3 faec bl 1001cdac +100297d4: f104 0042 add.w r0, r4, #66 ; 0x42 +100297d8: 4639 mov r1, r7 +100297da: 2206 movs r2, #6 +100297dc: f7f3 fae6 bl 1001cdac +100297e0: f894 3024 ldrb.w r3, [r4, #36] ; 0x24 +100297e4: 2b01 cmp r3, #1 +100297e6: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +100297ea: d112 bne.n 10029812 <_promisc_recv_func+0x3ae> +100297ec: 2b03 cmp r3, #3 +100297ee: bf14 ite ne +100297f0: 231a movne r3, #26 +100297f2: 2320 moveq r3, #32 +100297f4: e011 b.n 1002981a <_promisc_recv_func+0x3b6> +100297f6: f104 0048 add.w r0, r4, #72 ; 0x48 +100297fa: 1d29 adds r1, r5, #4 +100297fc: 2206 movs r2, #6 +100297fe: f7f3 fad5 bl 1001cdac +10029802: f104 0042 add.w r0, r4, #66 ; 0x42 +10029806: f105 010a add.w r1, r5, #10 +1002980a: 2206 movs r2, #6 +1002980c: f7f3 face bl 1001cdac +10029810: e056 b.n 100298c0 <_promisc_recv_func+0x45c> +10029812: 2b03 cmp r3, #3 +10029814: bf14 ite ne +10029816: 2318 movne r3, #24 +10029818: 231e moveq r3, #30 +1002981a: f884 3021 strb.w r3, [r4, #33] ; 0x21 +1002981e: f894 302c ldrb.w r3, [r4, #44] ; 0x2c +10029822: b123 cbz r3, 1002982e <_promisc_recv_func+0x3ca> +10029824: f894 3021 ldrb.w r3, [r4, #33] ; 0x21 +10029828: 3304 adds r3, #4 +1002982a: f884 3021 strb.w r3, [r4, #33] ; 0x21 +1002982e: 4630 mov r0, r6 +10029830: 4649 mov r1, r9 +10029832: f7ff fd25 bl 10029280 +10029836: 28ff cmp r0, #255 ; 0xff +10029838: d042 beq.n 100298c0 <_promisc_recv_func+0x45c> +1002983a: f894 302d ldrb.w r3, [r4, #45] ; 0x2d +1002983e: 2b00 cmp r3, #0 +10029840: d035 beq.n 100298ae <_promisc_recv_func+0x44a> +10029842: f896 3bb5 ldrb.w r3, [r6, #2997] ; 0xbb5 +10029846: b393 cbz r3, 100298ae <_promisc_recv_func+0x44a> +10029848: 3801 subs r0, #1 +1002984a: 2808 cmp r0, #8 +1002984c: d80e bhi.n 1002986c <_promisc_recv_func+0x408> +1002984e: e8df f000 tbb [pc, r0] +10029852: 050d .short 0x050d +10029854: 09070907 .word 0x09070907 +10029858: 0d09 .short 0x0d09 +1002985a: 0b .byte 0x0b +1002985b: 00 .byte 0x00 +1002985c: 2301 movs r3, #1 +1002985e: e006 b.n 1002986e <_promisc_recv_func+0x40a> +10029860: 2302 movs r3, #2 +10029862: e004 b.n 1002986e <_promisc_recv_func+0x40a> +10029864: 2304 movs r3, #4 +10029866: e002 b.n 1002986e <_promisc_recv_func+0x40a> +10029868: 2305 movs r3, #5 +1002986a: e000 b.n 1002986e <_promisc_recv_func+0x40a> +1002986c: 2300 movs r3, #0 +1002986e: f884 302f strb.w r3, [r4, #47] ; 0x2f +10029872: f894 302f ldrb.w r3, [r4, #47] ; 0x2f +10029876: 3b01 subs r3, #1 +10029878: 2b05 cmp r3, #5 +1002987a: d812 bhi.n 100298a2 <_promisc_recv_func+0x43e> +1002987c: e8df f003 tbb [pc, r3] +10029880: 0a110503 .word 0x0a110503 +10029884: 0c03 .short 0x0c03 +10029886: 2304 movs r3, #4 +10029888: e00c b.n 100298a4 <_promisc_recv_func+0x440> +1002988a: 2308 movs r3, #8 +1002988c: f884 3030 strb.w r3, [r4, #48] ; 0x30 +10029890: 2304 movs r3, #4 +10029892: e009 b.n 100298a8 <_promisc_recv_func+0x444> +10029894: 2308 movs r3, #8 +10029896: e005 b.n 100298a4 <_promisc_recv_func+0x440> +10029898: 2312 movs r3, #18 +1002989a: f884 3030 strb.w r3, [r4, #48] ; 0x30 +1002989e: 2310 movs r3, #16 +100298a0: e002 b.n 100298a8 <_promisc_recv_func+0x444> +100298a2: 2300 movs r3, #0 +100298a4: f884 3030 strb.w r3, [r4, #48] ; 0x30 +100298a8: f884 3031 strb.w r3, [r4, #49] ; 0x31 +100298ac: e006 b.n 100298bc <_promisc_recv_func+0x458> +100298ae: 2300 movs r3, #0 +100298b0: f884 302f strb.w r3, [r4, #47] ; 0x2f +100298b4: f884 3031 strb.w r3, [r4, #49] ; 0x31 +100298b8: f884 3030 strb.w r3, [r4, #48] ; 0x30 +100298bc: 2701 movs r7, #1 +100298be: e000 b.n 100298c2 <_promisc_recv_func+0x45e> +100298c0: 2700 movs r7, #0 +100298c2: f8df 8044 ldr.w r8, [pc, #68] ; 10029908 <_promisc_recv_func+0x4a4> +100298c6: 480f ldr r0, [pc, #60] ; (10029904 <_promisc_recv_func+0x4a0>) +100298c8: f7f3 fad2 bl 1001ce70 +100298cc: f8d8 3000 ldr.w r3, [r8] +100298d0: b1e3 cbz r3, 1002990c <_promisc_recv_func+0x4a8> +100298d2: 4630 mov r0, r6 +100298d4: 4621 mov r1, r4 +100298d6: aa10 add r2, sp, #64 ; 0x40 +100298d8: f7ff fcfb bl 100292d2 +100298dc: 6f27 ldr r7, [r4, #112] ; 0x70 +100298de: 4628 mov r0, r5 +100298e0: b239 sxth r1, r7 +100298e2: f7ff fc89 bl 100291f8 +100298e6: b128 cbz r0, 100298f4 <_promisc_recv_func+0x490> +100298e8: f8d8 3000 ldr.w r3, [r8] +100298ec: 4628 mov r0, r5 +100298ee: 4639 mov r1, r7 +100298f0: aa10 add r2, sp, #64 ; 0x40 +100298f2: 4798 blx r3 +100298f4: 4803 ldr r0, [pc, #12] ; (10029904 <_promisc_recv_func+0x4a0>) +100298f6: f7f3 faa1 bl 1001ce3c +100298fa: 2700 movs r7, #0 +100298fc: e021 b.n 10029942 <_promisc_recv_func+0x4de> +100298fe: bf00 nop +10029900: 1004a7fc .word 0x1004a7fc +10029904: 100530ec .word 0x100530ec +10029908: 100530e8 .word 0x100530e8 +1002990c: 4826 ldr r0, [pc, #152] ; (100299a8 <_promisc_recv_func+0x544>) +1002990e: f7f3 fa95 bl 1001ce3c +10029912: 2f01 cmp r7, #1 +10029914: d115 bne.n 10029942 <_promisc_recv_func+0x4de> +10029916: 4630 mov r0, r6 +10029918: 4621 mov r1, r4 +1002991a: aa10 add r2, sp, #64 ; 0x40 +1002991c: f7ff fcd9 bl 100292d2 +10029920: f894 302f ldrb.w r3, [r4, #47] ; 0x2f +10029924: 2b02 cmp r3, #2 +10029926: d113 bne.n 10029950 <_promisc_recv_func+0x4ec> +10029928: 6fe3 ldr r3, [r4, #124] ; 0x7c +1002992a: 6fa1 ldr r1, [r4, #120] ; 0x78 +1002992c: f1a3 0208 sub.w r2, r3, #8 +10029930: 428a cmp r2, r1 +10029932: bf28 it cs +10029934: 6f23 ldrcs r3, [r4, #112] ; 0x70 +10029936: 67e2 str r2, [r4, #124] ; 0x7c +10029938: bf2a itet cs +1002993a: 3b08 subcs r3, #8 +1002993c: 67e3 strcc r3, [r4, #124] ; 0x7c +1002993e: 6723 strcs r3, [r4, #112] ; 0x70 +10029940: e006 b.n 10029950 <_promisc_recv_func+0x4ec> +10029942: 4620 mov r0, r4 +10029944: 9907 ldr r1, [sp, #28] +10029946: f002 fb9b bl 1002c080 +1002994a: 2f01 cmp r7, #1 +1002994c: d127 bne.n 1002999e <_promisc_recv_func+0x53a> +1002994e: e7e2 b.n 10029916 <_promisc_recv_func+0x4b2> +10029950: 4620 mov r0, r4 +10029952: f003 f987 bl 1002cc64 +10029956: 68a5 ldr r5, [r4, #8] +10029958: 4607 mov r7, r0 +1002995a: b1e5 cbz r5, 10029996 <_promisc_recv_func+0x532> +1002995c: 6fa3 ldr r3, [r4, #120] ; 0x78 +1002995e: 4628 mov r0, r5 +10029960: 612b str r3, [r5, #16] +10029962: 6f21 ldr r1, [r4, #112] ; 0x70 +10029964: f011 fd37 bl 1003b3d6 +10029968: 6f23 ldr r3, [r4, #112] ; 0x70 +1002996a: 480f ldr r0, [pc, #60] ; (100299a8 <_promisc_recv_func+0x544>) +1002996c: 622b str r3, [r5, #32] +1002996e: f7f3 fa7f bl 1001ce70 +10029972: 4b0e ldr r3, [pc, #56] ; (100299ac <_promisc_recv_func+0x548>) +10029974: 681e ldr r6, [r3, #0] +10029976: b15e cbz r6, 10029990 <_promisc_recv_func+0x52c> +10029978: f8d5 8010 ldr.w r8, [r5, #16] +1002997c: 6a2d ldr r5, [r5, #32] +1002997e: 4640 mov r0, r8 +10029980: b229 sxth r1, r5 +10029982: f7ff fc39 bl 100291f8 +10029986: b118 cbz r0, 10029990 <_promisc_recv_func+0x52c> +10029988: 4640 mov r0, r8 +1002998a: 4629 mov r1, r5 +1002998c: aa10 add r2, sp, #64 ; 0x40 +1002998e: 47b0 blx r6 +10029990: 4805 ldr r0, [pc, #20] ; (100299a8 <_promisc_recv_func+0x544>) +10029992: f7f3 fa53 bl 1001ce3c +10029996: 4620 mov r0, r4 +10029998: 9907 ldr r1, [sp, #28] +1002999a: f002 fb71 bl 1002c080 +1002999e: 4638 mov r0, r7 +100299a0: b019 add sp, #100 ; 0x64 +100299a2: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100299a6: bf00 nop +100299a8: 100530ec .word 0x100530ec +100299ac: 100530f0 .word 0x100530f0 + +100299b0 <_promisc_set>: +100299b0: b5f8 push {r3, r4, r5, r6, r7, lr} +100299b2: 4605 mov r5, r0 +100299b4: 481e ldr r0, [pc, #120] ; (10029a30 <_promisc_set+0x80>) +100299b6: 460e mov r6, r1 +100299b8: 6803 ldr r3, [r0, #0] +100299ba: 4617 mov r7, r2 +100299bc: b913 cbnz r3, 100299c4 <_promisc_set+0x14> +100299be: 2101 movs r1, #1 +100299c0: f7f3 fa2c bl 1001ce1c +100299c4: 4b1b ldr r3, [pc, #108] ; (10029a34 <_promisc_set+0x84>) +100299c6: 7c1a ldrb r2, [r3, #16] +100299c8: 2a00 cmp r2, #0 +100299ca: d02d beq.n 10029a28 <_promisc_set+0x78> +100299cc: 681b ldr r3, [r3, #0] +100299ce: 4818 ldr r0, [pc, #96] ; (10029a30 <_promisc_set+0x80>) +100299d0: 691b ldr r3, [r3, #16] +100299d2: 681c ldr r4, [r3, #0] +100299d4: f7f3 fa4c bl 1001ce70 +100299d8: 2d04 cmp r5, #4 +100299da: d820 bhi.n 10029a1e <_promisc_set+0x6e> +100299dc: e8df f005 tbb [pc, r5] +100299e0: 130e0e03 .word 0x130e0e03 +100299e4: 18 .byte 0x18 +100299e5: 00 .byte 0x00 +100299e6: 2100 movs r1, #0 +100299e8: 460a mov r2, r1 +100299ea: 4620 mov r0, r4 +100299ec: f7ff fcc3 bl 10029376 +100299f0: 4a11 ldr r2, [pc, #68] ; (10029a38 <_promisc_set+0x88>) +100299f2: 2300 movs r3, #0 +100299f4: 6013 str r3, [r2, #0] +100299f6: 4a11 ldr r2, [pc, #68] ; (10029a3c <_promisc_set+0x8c>) +100299f8: 6013 str r3, [r2, #0] +100299fa: e010 b.n 10029a1e <_promisc_set+0x6e> +100299fc: 4b0e ldr r3, [pc, #56] ; (10029a38 <_promisc_set+0x88>) +100299fe: 4620 mov r0, r4 +10029a00: 601e str r6, [r3, #0] +10029a02: b2e9 uxtb r1, r5 +10029a04: e008 b.n 10029a18 <_promisc_set+0x68> +10029a06: 4b0d ldr r3, [pc, #52] ; (10029a3c <_promisc_set+0x8c>) +10029a08: 4620 mov r0, r4 +10029a0a: 601e str r6, [r3, #0] +10029a0c: 2103 movs r1, #3 +10029a0e: e003 b.n 10029a18 <_promisc_set+0x68> +10029a10: 4b0a ldr r3, [pc, #40] ; (10029a3c <_promisc_set+0x8c>) +10029a12: 4620 mov r0, r4 +10029a14: 601e str r6, [r3, #0] +10029a16: 2104 movs r1, #4 +10029a18: 463a mov r2, r7 +10029a1a: f7ff fcac bl 10029376 +10029a1e: 4804 ldr r0, [pc, #16] ; (10029a30 <_promisc_set+0x80>) +10029a20: f7f3 fa0c bl 1001ce3c +10029a24: 2000 movs r0, #0 +10029a26: bdf8 pop {r3, r4, r5, r6, r7, pc} +10029a28: f04f 30ff mov.w r0, #4294967295 +10029a2c: bdf8 pop {r3, r4, r5, r6, r7, pc} +10029a2e: bf00 nop +10029a30: 100530ec .word 0x100530ec +10029a34: 10055548 .word 0x10055548 +10029a38: 100530f0 .word 0x100530f0 +10029a3c: 100530e8 .word 0x100530e8 + +10029a40 <_is_promisc_enabled>: +10029a40: 4b04 ldr r3, [pc, #16] ; (10029a54 <_is_promisc_enabled+0x14>) +10029a42: 7c18 ldrb r0, [r3, #16] +10029a44: b120 cbz r0, 10029a50 <_is_promisc_enabled+0x10> +10029a46: 681b ldr r3, [r3, #0] +10029a48: 691b ldr r3, [r3, #16] +10029a4a: 681b ldr r3, [r3, #0] +10029a4c: f893 0bb4 ldrb.w r0, [r3, #2996] ; 0xbb4 +10029a50: 4770 bx lr +10029a52: bf00 nop +10029a54: 10055548 .word 0x10055548 + +10029a58 <_promisc_get_fixed_channel>: +10029a58: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10029a5c: 4b21 ldr r3, [pc, #132] ; (10029ae4 <_promisc_get_fixed_channel+0x8c>) +10029a5e: 4682 mov sl, r0 +10029a60: 7c1e ldrb r6, [r3, #16] +10029a62: 4688 mov r8, r1 +10029a64: 4691 mov r9, r2 +10029a66: 2e00 cmp r6, #0 +10029a68: d039 beq.n 10029ade <_promisc_get_fixed_channel+0x86> +10029a6a: 681b ldr r3, [r3, #0] +10029a6c: 2100 movs r1, #0 +10029a6e: 691b ldr r3, [r3, #16] +10029a70: 681c ldr r4, [r3, #0] +10029a72: f504 673c add.w r7, r4, #3008 ; 0xbc0 +10029a76: 4638 mov r0, r7 +10029a78: f7f3 fa2e bl 1001ced8 +10029a7c: f8d4 5bb8 ldr.w r5, [r4, #3000] ; 0xbb8 +10029a80: f604 30b8 addw r0, r4, #3000 ; 0xbb8 +10029a84: 4629 mov r1, r5 +10029a86: f7f3 fa6b bl 1001cf60 +10029a8a: bb18 cbnz r0, 10029ad4 <_promisc_get_fixed_channel+0x7c> +10029a8c: f105 0008 add.w r0, r5, #8 +10029a90: 4651 mov r1, sl +10029a92: 2206 movs r2, #6 +10029a94: f7f3 f992 bl 1001cdbc +10029a98: b1d0 cbz r0, 10029ad0 <_promisc_get_fixed_channel+0x78> +10029a9a: f895 2030 ldrb.w r2, [r5, #48] ; 0x30 +10029a9e: 7bee ldrb r6, [r5, #15] +10029aa0: 4640 mov r0, r8 +10029aa2: f8c9 2000 str.w r2, [r9] +10029aa6: f105 0110 add.w r1, r5, #16 +10029aaa: f7f3 f97f bl 1001cdac +10029aae: f895 3031 ldrb.w r3, [r5, #49] ; 0x31 +10029ab2: b10b cbz r3, 10029ab8 <_promisc_get_fixed_channel+0x60> +10029ab4: 2b01 cmp r3, #1 +10029ab6: d102 bne.n 10029abe <_promisc_get_fixed_channel+0x66> +10029ab8: f884 34f7 strb.w r3, [r4, #1271] ; 0x4f7 +10029abc: e005 b.n 10029aca <_promisc_get_fixed_channel+0x72> +10029abe: 2b03 cmp r3, #3 +10029ac0: d109 bne.n 10029ad6 <_promisc_get_fixed_channel+0x7e> +10029ac2: 2301 movs r3, #1 +10029ac4: f884 34f7 strb.w r3, [r4, #1271] ; 0x4f7 +10029ac8: 2302 movs r3, #2 +10029aca: f884 34f8 strb.w r3, [r4, #1272] ; 0x4f8 +10029ace: e002 b.n 10029ad6 <_promisc_get_fixed_channel+0x7e> +10029ad0: 682d ldr r5, [r5, #0] +10029ad2: e7d5 b.n 10029a80 <_promisc_get_fixed_channel+0x28> +10029ad4: 2600 movs r6, #0 +10029ad6: 4638 mov r0, r7 +10029ad8: 2100 movs r1, #0 +10029ada: f7f3 fa05 bl 1001cee8 +10029ade: 4630 mov r0, r6 +10029ae0: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10029ae4: 10055548 .word 0x10055548 + +10029ae8 : +10029ae8: b082 sub sp, #8 +10029aea: b530 push {r4, r5, lr} +10029aec: b085 sub sp, #20 +10029aee: ac04 add r4, sp, #16 +10029af0: f844 2d04 str.w r2, [r4, #-4]! +10029af4: e88d 0003 stmia.w sp, {r0, r1} +10029af8: a908 add r1, sp, #32 +10029afa: e881 000c stmia.w r1, {r2, r3} +10029afe: 4621 mov r1, r4 +10029b00: 2204 movs r2, #4 +10029b02: 4605 mov r5, r0 +10029b04: f018 fb2c bl 10042160 +10029b08: 9b09 ldr r3, [sp, #36] ; 0x24 +10029b0a: 4621 mov r1, r4 +10029b0c: 2204 movs r2, #4 +10029b0e: 1d28 adds r0, r5, #4 +10029b10: 9303 str r3, [sp, #12] +10029b12: f018 fb25 bl 10042160 +10029b16: 9b0a ldr r3, [sp, #40] ; 0x28 +10029b18: 4621 mov r1, r4 +10029b1a: 2204 movs r2, #4 +10029b1c: f105 0008 add.w r0, r5, #8 +10029b20: 9303 str r3, [sp, #12] +10029b22: f018 fb1d bl 10042160 +10029b26: 9b0b ldr r3, [sp, #44] ; 0x2c +10029b28: f105 000c add.w r0, r5, #12 +10029b2c: 4621 mov r1, r4 +10029b2e: 2204 movs r2, #4 +10029b30: 9303 str r3, [sp, #12] +10029b32: f018 fb15 bl 10042160 +10029b36: 9b01 ldr r3, [sp, #4] +10029b38: 2b10 cmp r3, #16 +10029b3a: d01f beq.n 10029b7c +10029b3c: 9b0c ldr r3, [sp, #48] ; 0x30 +10029b3e: 4621 mov r1, r4 +10029b40: 2204 movs r2, #4 +10029b42: f105 0010 add.w r0, r5, #16 +10029b46: 9303 str r3, [sp, #12] +10029b48: f018 fb0a bl 10042160 +10029b4c: 9b0d ldr r3, [sp, #52] ; 0x34 +10029b4e: 4621 mov r1, r4 +10029b50: 2204 movs r2, #4 +10029b52: f105 0014 add.w r0, r5, #20 +10029b56: 9303 str r3, [sp, #12] +10029b58: f018 fb02 bl 10042160 +10029b5c: 9b0e ldr r3, [sp, #56] ; 0x38 +10029b5e: 4621 mov r1, r4 +10029b60: 2204 movs r2, #4 +10029b62: f105 0018 add.w r0, r5, #24 +10029b66: 9303 str r3, [sp, #12] +10029b68: f018 fafa bl 10042160 +10029b6c: 9b0f ldr r3, [sp, #60] ; 0x3c +10029b6e: f105 001c add.w r0, r5, #28 +10029b72: 4621 mov r1, r4 +10029b74: 2204 movs r2, #4 +10029b76: 9303 str r3, [sp, #12] +10029b78: f018 faf2 bl 10042160 +10029b7c: b005 add sp, #20 +10029b7e: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +10029b82: b002 add sp, #8 +10029b84: 4770 bx lr + +10029b86 : +10029b86: b570 push {r4, r5, r6, lr} +10029b88: 6903 ldr r3, [r0, #16] +10029b8a: 4606 mov r6, r0 +10029b8c: 06d8 lsls r0, r3, #27 +10029b8e: 460d mov r5, r1 +10029b90: d537 bpl.n 10029c02 +10029b92: f8d1 30fc ldr.w r3, [r1, #252] ; 0xfc +10029b96: f203 138b addw r3, r3, #395 ; 0x18b +10029b9a: eb06 0383 add.w r3, r6, r3, lsl #2 +10029b9e: f8d3 4c78 ldr.w r4, [r3, #3192] ; 0xc78 +10029ba2: 2c00 cmp r4, #0 +10029ba4: d042 beq.n 10029c2c +10029ba6: 7c23 ldrb r3, [r4, #16] +10029ba8: f505 709c add.w r0, r5, #312 ; 0x138 +10029bac: f8c5 3114 str.w r3, [r5, #276] ; 0x114 +10029bb0: f104 01b4 add.w r1, r4, #180 ; 0xb4 +10029bb4: 2210 movs r2, #16 +10029bb6: f018 fad3 bl 10042160 +10029bba: 7c23 ldrb r3, [r4, #16] +10029bbc: 2b02 cmp r3, #2 +10029bbe: d113 bne.n 10029be8 +10029bc0: 6933 ldr r3, [r6, #16] +10029bc2: 06d9 lsls r1, r3, #27 +10029bc4: d50b bpl.n 10029bde +10029bc6: f104 01c4 add.w r1, r4, #196 ; 0xc4 +10029bca: f505 708c add.w r0, r5, #280 ; 0x118 +10029bce: 2208 movs r2, #8 +10029bd0: f018 fac6 bl 10042160 +10029bd4: f505 7094 add.w r0, r5, #296 ; 0x128 +10029bd8: f104 01cc add.w r1, r4, #204 ; 0xcc +10029bdc: e022 b.n 10029c24 +10029bde: 071b lsls r3, r3, #28 +10029be0: d415 bmi.n 10029c0e +10029be2: 2300 movs r3, #0 +10029be4: f886 3fcd strb.w r3, [r6, #4045] ; 0xfcd +10029be8: 4630 mov r0, r6 +10029bea: 4629 mov r1, r5 +10029bec: 2201 movs r2, #1 +10029bee: f7f9 f987 bl 10022f00 +10029bf2: 4630 mov r0, r6 +10029bf4: f003 ff34 bl 1002da60 +10029bf8: b1c0 cbz r0, 10029c2c +10029bfa: 7c23 ldrb r3, [r4, #16] +10029bfc: f8c0 3114 str.w r3, [r0, #276] ; 0x114 +10029c00: bd70 pop {r4, r5, r6, pc} +10029c02: 071a lsls r2, r3, #28 +10029c04: d512 bpl.n 10029c2c +10029c06: f241 23a8 movw r3, #4776 ; 0x12a8 +10029c0a: 58f4 ldr r4, [r6, r3] +10029c0c: e7c9 b.n 10029ba2 +10029c0e: f104 01cc add.w r1, r4, #204 ; 0xcc +10029c12: f505 708c add.w r0, r5, #280 ; 0x118 +10029c16: 2208 movs r2, #8 +10029c18: f018 faa2 bl 10042160 +10029c1c: f505 7094 add.w r0, r5, #296 ; 0x128 +10029c20: f104 01c4 add.w r1, r4, #196 ; 0xc4 +10029c24: 2208 movs r2, #8 +10029c26: f018 fa9b bl 10042160 +10029c2a: e7da b.n 10029be2 +10029c2c: bd70 pop {r4, r5, r6, pc} + +10029c2e : +10029c2e: 7983 ldrb r3, [r0, #6] +10029c30: 79c2 ldrb r2, [r0, #7] +10029c32: 041b lsls r3, r3, #16 +10029c34: eb03 2302 add.w r3, r3, r2, lsl #8 +10029c38: 7a02 ldrb r2, [r0, #8] +10029c3a: 4413 add r3, r2 +10029c3c: 7942 ldrb r2, [r0, #5] +10029c3e: eb03 6302 add.w r3, r3, r2, lsl #24 +10029c42: 600b str r3, [r1, #0] +10029c44: 7a83 ldrb r3, [r0, #10] +10029c46: 7ac2 ldrb r2, [r0, #11] +10029c48: 041b lsls r3, r3, #16 +10029c4a: eb03 2302 add.w r3, r3, r2, lsl #8 +10029c4e: 7b02 ldrb r2, [r0, #12] +10029c50: 4413 add r3, r2 +10029c52: 7a42 ldrb r2, [r0, #9] +10029c54: eb03 6302 add.w r3, r3, r2, lsl #24 +10029c58: 604b str r3, [r1, #4] +10029c5a: 4770 bx lr + +10029c5c : +10029c5c: b530 push {r4, r5, lr} +10029c5e: b085 sub sp, #20 +10029c60: e88d 0003 stmia.w sp, {r0, r1} +10029c64: 4605 mov r5, r0 +10029c66: 460c mov r4, r1 +10029c68: 4610 mov r0, r2 +10029c6a: a902 add r1, sp, #8 +10029c6c: f7ff ffdf bl 10029c2e +10029c70: 9b02 ldr r3, [sp, #8] +10029c72: 42ab cmp r3, r5 +10029c74: d806 bhi.n 10029c84 +10029c76: d307 bcc.n 10029c88 +10029c78: 9b03 ldr r3, [sp, #12] +10029c7a: 42a3 cmp r3, r4 +10029c7c: bf8c ite hi +10029c7e: 2000 movhi r0, #0 +10029c80: 2001 movls r0, #1 +10029c82: e002 b.n 10029c8a +10029c84: 2000 movs r0, #0 +10029c86: e000 b.n 10029c8a +10029c88: 2001 movs r0, #1 +10029c8a: b005 add sp, #20 +10029c8c: bd30 pop {r4, r5, pc} + +10029c8e : +10029c8e: 0e0b lsrs r3, r1, #24 +10029c90: 7143 strb r3, [r0, #5] +10029c92: 0c0b lsrs r3, r1, #16 +10029c94: 7183 strb r3, [r0, #6] +10029c96: 0a0b lsrs r3, r1, #8 +10029c98: 71c3 strb r3, [r0, #7] +10029c9a: 0e13 lsrs r3, r2, #24 +10029c9c: 7243 strb r3, [r0, #9] +10029c9e: 0c13 lsrs r3, r2, #16 +10029ca0: 7283 strb r3, [r0, #10] +10029ca2: 0a13 lsrs r3, r2, #8 +10029ca4: 7201 strb r1, [r0, #8] +10029ca6: 72c3 strb r3, [r0, #11] +10029ca8: 7302 strb r2, [r0, #12] +10029caa: 4770 bx lr + +10029cac : +10029cac: 6843 ldr r3, [r0, #4] +10029cae: 1c5a adds r2, r3, #1 +10029cb0: d109 bne.n 10029cc6 +10029cb2: 6802 ldr r2, [r0, #0] +10029cb4: 1c53 adds r3, r2, #1 +10029cb6: bf18 it ne +10029cb8: 3201 addne r2, #1 +10029cba: f04f 0300 mov.w r3, #0 +10029cbe: bf0c ite eq +10029cc0: 6003 streq r3, [r0, #0] +10029cc2: 6002 strne r2, [r0, #0] +10029cc4: e000 b.n 10029cc8 +10029cc6: 3301 adds r3, #1 +10029cc8: 6043 str r3, [r0, #4] +10029cca: 4770 bx lr + +10029ccc : +10029ccc: b510 push {r4, lr} +10029cce: 4604 mov r4, r0 +10029cd0: f854 2f08 ldr.w r2, [r4, #8]! +10029cd4: 4603 mov r3, r0 +10029cd6: 3201 adds r2, #1 +10029cd8: d117 bne.n 10029d0a +10029cda: 68c2 ldr r2, [r0, #12] +10029cdc: 3201 adds r2, #1 +10029cde: d114 bne.n 10029d0a +10029ce0: 6802 ldr r2, [r0, #0] +10029ce2: 3201 adds r2, #1 +10029ce4: d107 bne.n 10029cf6 +10029ce6: 6842 ldr r2, [r0, #4] +10029ce8: 3201 adds r2, #1 +10029cea: d104 bne.n 10029cf6 +10029cec: 2100 movs r1, #0 +10029cee: 2208 movs r2, #8 +10029cf0: f018 fa3c bl 1004216c +10029cf4: e002 b.n 10029cfc +10029cf6: 4618 mov r0, r3 +10029cf8: f7ff ffd8 bl 10029cac +10029cfc: 4620 mov r0, r4 +10029cfe: 2100 movs r1, #0 +10029d00: 2208 movs r2, #8 +10029d02: e8bd 4010 ldmia.w sp!, {r4, lr} +10029d06: f018 ba31 b.w 1004216c +10029d0a: 4620 mov r0, r4 +10029d0c: e8bd 4010 ldmia.w sp!, {r4, lr} +10029d10: f7ff bfcc b.w 10029cac + +10029d14 : +10029d14: b538 push {r3, r4, r5, lr} +10029d16: 4605 mov r5, r0 +10029d18: f855 3f10 ldr.w r3, [r5, #16]! +10029d1c: 4604 mov r4, r0 +10029d1e: 3301 adds r3, #1 +10029d20: d122 bne.n 10029d68 +10029d22: 6943 ldr r3, [r0, #20] +10029d24: 3301 adds r3, #1 +10029d26: d11f bne.n 10029d68 +10029d28: 6983 ldr r3, [r0, #24] +10029d2a: 3301 adds r3, #1 +10029d2c: d11c bne.n 10029d68 +10029d2e: 69c3 ldr r3, [r0, #28] +10029d30: 3301 adds r3, #1 +10029d32: d119 bne.n 10029d68 +10029d34: 6803 ldr r3, [r0, #0] +10029d36: 3301 adds r3, #1 +10029d38: d10d bne.n 10029d56 +10029d3a: 6843 ldr r3, [r0, #4] +10029d3c: 3301 adds r3, #1 +10029d3e: d10a bne.n 10029d56 +10029d40: 6883 ldr r3, [r0, #8] +10029d42: 3301 adds r3, #1 +10029d44: d107 bne.n 10029d56 +10029d46: 68c3 ldr r3, [r0, #12] +10029d48: 3301 adds r3, #1 +10029d4a: d104 bne.n 10029d56 +10029d4c: 2100 movs r1, #0 +10029d4e: 2210 movs r2, #16 +10029d50: f018 fa0c bl 1004216c +10029d54: e002 b.n 10029d5c +10029d56: 4620 mov r0, r4 +10029d58: f7ff ffb8 bl 10029ccc +10029d5c: 4628 mov r0, r5 +10029d5e: 2100 movs r1, #0 +10029d60: 2210 movs r2, #16 +10029d62: f018 fa03 bl 1004216c +10029d66: e002 b.n 10029d6e +10029d68: 4628 mov r0, r5 +10029d6a: f7ff ffaf bl 10029ccc +10029d6e: 4620 mov r0, r4 +10029d70: bd38 pop {r3, r4, r5, pc} + ... + +10029d74 : +10029d74: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +10029d78: 6903 ldr r3, [r0, #16] +10029d7a: 4604 mov r4, r0 +10029d7c: f013 0908 ands.w r9, r3, #8 +10029d80: 460d mov r5, r1 +10029d82: 4617 mov r7, r2 +10029d84: d102 bne.n 10029d8c +10029d86: 06db lsls r3, r3, #27 +10029d88: d42e bmi.n 10029de8 +10029d8a: e04d b.n 10029e28 +10029d8c: f501 7184 add.w r1, r1, #264 ; 0x108 +10029d90: b292 uxth r2, r2 +10029d92: f7fd fa7e bl 10027292 +10029d96: f894 386d ldrb.w r3, [r4, #2157] ; 0x86d +10029d9a: 2b00 cmp r3, #0 +10029d9c: d044 beq.n 10029e28 +10029d9e: f894 27e2 ldrb.w r2, [r4, #2018] ; 0x7e2 +10029da2: f894 37e1 ldrb.w r3, [r4, #2017] ; 0x7e1 +10029da6: 429a cmp r2, r3 +10029da8: d216 bcs.n 10029dd8 +10029daa: 4b21 ldr r3, [pc, #132] ; (10029e30 ) +10029dac: 781a ldrb r2, [r3, #0] +10029dae: 2a00 cmp r2, #0 +10029db0: d13a bne.n 10029e28 +10029db2: 2201 movs r2, #1 +10029db4: 701a strb r2, [r3, #0] +10029db6: f8b4 37e4 ldrh.w r3, [r4, #2020] ; 0x7e4 +10029dba: f44f 717a mov.w r1, #1000 ; 0x3e8 +10029dbe: 4359 muls r1, r3 +10029dc0: f884 27e0 strb.w r2, [r4, #2016] ; 0x7e0 +10029dc4: f204 70d4 addw r0, r4, #2004 ; 0x7d4 +10029dc8: f011 fd9e bl 1003b908 +10029dcc: f894 37e2 ldrb.w r3, [r4, #2018] ; 0x7e2 +10029dd0: 3301 adds r3, #1 +10029dd2: f884 37e2 strb.w r3, [r4, #2018] ; 0x7e2 +10029dd6: e027 b.n 10029e28 +10029dd8: 4620 mov r0, r4 +10029dda: f00e f828 bl 10037e2e +10029dde: 4620 mov r0, r4 +10029de0: 4914 ldr r1, [pc, #80] ; (10029e34 ) +10029de2: f00f f81a bl 10038e1a +10029de6: e01f b.n 10029e28 +10029de8: f600 4644 addw r6, r0, #3140 ; 0xc44 +10029dec: 4630 mov r0, r6 +10029dee: a901 add r1, sp, #4 +10029df0: f505 7807 add.w r8, r5, #540 ; 0x21c +10029df4: f7f3 f880 bl 1001cef8 +10029df8: 4640 mov r0, r8 +10029dfa: f7f2 fff5 bl 1001cde8 +10029dfe: b988 cbnz r0, 10029e24 +10029e00: 4640 mov r0, r8 +10029e02: f7f3 f803 bl 1001ce0c +10029e06: 4629 mov r1, r5 +10029e08: 4620 mov r0, r4 +10029e0a: b2ba uxth r2, r7 +10029e0c: f7f8 f9bb bl 10022186 +10029e10: 4605 mov r5, r0 +10029e12: 4630 mov r0, r6 +10029e14: a901 add r1, sp, #4 +10029e16: f7f3 f877 bl 1001cf08 +10029e1a: 4620 mov r0, r4 +10029e1c: 4629 mov r1, r5 +10029e1e: f7f8 f857 bl 10021ed0 +10029e22: e001 b.n 10029e28 +10029e24: 464d mov r5, r9 +10029e26: e7f4 b.n 10029e12 +10029e28: b003 add sp, #12 +10029e2a: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10029e2e: bf00 nop +10029e30: 100530d4 .word 0x100530d4 +10029e34: 1004a5cd .word 0x1004a5cd + +10029e38 : +10029e38: b5f0 push {r4, r5, r6, r7, lr} +10029e3a: f5ad 7d0b sub.w sp, sp, #556 ; 0x22c +10029e3e: ab02 add r3, sp, #8 +10029e40: e883 0003 stmia.w r3, {r0, r1} +10029e44: 4604 mov r4, r0 +10029e46: 7d07 ldrb r7, [r0, #20] +10029e48: 4621 mov r1, r4 +10029e4a: 4616 mov r6, r2 +10029e4c: a80a add r0, sp, #40 ; 0x28 +10029e4e: 685a ldr r2, [r3, #4] +10029e50: f10d 0587 add.w r5, sp, #135 ; 0x87 +10029e54: f018 f984 bl 10042160 +10029e58: 2100 movs r1, #0 +10029e5a: 2210 movs r2, #16 +10029e5c: 4628 mov r0, r5 +10029e5e: f018 f985 bl 1004216c +10029e62: f8bd 0038 ldrh.w r0, [sp, #56] ; 0x38 +10029e66: f7f2 ff01 bl 1001cc6c <_ntohs> +10029e6a: f007 0707 and.w r7, r7, #7 +10029e6e: 3004 adds r0, #4 +10029e70: 2f01 cmp r7, #1 +10029e72: b281 uxth r1, r0 +10029e74: d107 bne.n 10029e86 +10029e76: 9500 str r5, [sp, #0] +10029e78: f10d 0036 add.w r0, sp, #54 ; 0x36 +10029e7c: 4632 mov r2, r6 +10029e7e: 2310 movs r3, #16 +10029e80: f019 fc1e bl 100436c0 <__rt_md5_hmac_veneer> +10029e84: e009 b.n 10029e9a +10029e86: 2f02 cmp r7, #2 +10029e88: d112 bne.n 10029eb0 +10029e8a: ad05 add r5, sp, #20 +10029e8c: 9500 str r5, [sp, #0] +10029e8e: f10d 0036 add.w r0, sp, #54 ; 0x36 +10029e92: 4632 mov r2, r6 +10029e94: 2310 movs r3, #16 +10029e96: f019 fc83 bl 100437a0 <__rt_hmac_sha1_veneer> +10029e9a: 4628 mov r0, r5 +10029e9c: f104 015f add.w r1, r4, #95 ; 0x5f +10029ea0: 2210 movs r2, #16 +10029ea2: f018 f957 bl 10042154 +10029ea6: f1d0 0001 rsbs r0, r0, #1 +10029eaa: bf38 it cc +10029eac: 2000 movcc r0, #0 +10029eae: e000 b.n 10029eb2 +10029eb0: 2000 movs r0, #0 +10029eb2: f50d 7d0b add.w sp, sp, #556 ; 0x22c +10029eb6: bdf0 pop {r4, r5, r6, r7, pc} + +10029eb8 : +10029eb8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10029ebc: b08a sub sp, #40 ; 0x28 +10029ebe: ac02 add r4, sp, #8 +10029ec0: e884 0003 stmia.w r4, {r0, r1} +10029ec4: f100 045f add.w r4, r0, #95 ; 0x5f +10029ec8: 4615 mov r5, r2 +10029eca: f100 080e add.w r8, r0, #14 +10029ece: 2100 movs r1, #0 +10029ed0: 4620 mov r0, r4 +10029ed2: 2210 movs r2, #16 +10029ed4: 461e mov r6, r3 +10029ed6: 9f03 ldr r7, [sp, #12] +10029ed8: f018 f948 bl 1004216c +10029edc: 2d01 cmp r5, #1 +10029ede: d108 bne.n 10029ef2 +10029ee0: 9400 str r4, [sp, #0] +10029ee2: 4640 mov r0, r8 +10029ee4: f1a7 010e sub.w r1, r7, #14 +10029ee8: 4632 mov r2, r6 +10029eea: 2310 movs r3, #16 +10029eec: f019 fbe8 bl 100436c0 <__rt_md5_hmac_veneer> +10029ef0: e00f b.n 10029f12 +10029ef2: 2d02 cmp r5, #2 +10029ef4: d10d bne.n 10029f12 +10029ef6: ad05 add r5, sp, #20 +10029ef8: 4640 mov r0, r8 +10029efa: f1a7 010e sub.w r1, r7, #14 +10029efe: 4632 mov r2, r6 +10029f00: 9500 str r5, [sp, #0] +10029f02: 2310 movs r3, #16 +10029f04: f019 fc4c bl 100437a0 <__rt_hmac_sha1_veneer> +10029f08: 4620 mov r0, r4 +10029f0a: 4629 mov r1, r5 +10029f0c: 2210 movs r2, #16 +10029f0e: f018 f927 bl 10042160 +10029f12: b00a add sp, #40 ; 0x28 +10029f14: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10029f18 : +10029f18: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10029f1c: 469a mov sl, r3 +10029f1e: 4b2a ldr r3, [pc, #168] ; (10029fc8 ) +10029f20: f5ad 7d48 sub.w sp, sp, #800 ; 0x320 +10029f24: 4607 mov r7, r0 +10029f26: 468e mov lr, r1 +10029f28: 6818 ldr r0, [r3, #0] +10029f2a: 6859 ldr r1, [r3, #4] +10029f2c: ac02 add r4, sp, #8 +10029f2e: c403 stmia r4!, {r0, r1} +10029f30: f8d7 30e4 ldr.w r3, [r7, #228] ; 0xe4 +10029f34: 4615 mov r5, r2 +10029f36: f893 9002 ldrb.w r9, [r3, #2] +10029f3a: 9ed0 ldr r6, [sp, #832] ; 0x340 +10029f3c: f009 0907 and.w r9, r9, #7 +10029f40: f1b9 0f01 cmp.w r9, #1 +10029f44: f8dd 8344 ldr.w r8, [sp, #836] ; 0x344 +10029f48: f8d7 10d4 ldr.w r1, [r7, #212] ; 0xd4 +10029f4c: ac04 add r4, sp, #16 +10029f4e: d121 bne.n 10029f94 +10029f50: 313f adds r1, #63 ; 0x3f +10029f52: 2210 movs r2, #16 +10029f54: a845 add r0, sp, #276 ; 0x114 +10029f56: f018 f903 bl 10042160 +10029f5a: 4651 mov r1, sl +10029f5c: 4632 mov r2, r6 +10029f5e: a849 add r0, sp, #292 ; 0x124 +10029f60: f018 f8fe bl 10042160 +10029f64: a886 add r0, sp, #536 ; 0x218 +10029f66: a945 add r1, sp, #276 ; 0x114 +10029f68: f106 0210 add.w r2, r6, #16 +10029f6c: f019 fc68 bl 10043840 <__rt_arc4_init_veneer> +10029f70: a886 add r0, sp, #536 ; 0x218 +10029f72: 4621 mov r1, r4 +10029f74: aa45 add r2, sp, #276 ; 0x114 +10029f76: f44f 7380 mov.w r3, #256 ; 0x100 +10029f7a: f019 fbf9 bl 10043770 <__rt_arc4_crypt_veneer> +10029f7e: f8d7 20e4 ldr.w r2, [r7, #228] ; 0xe4 +10029f82: a886 add r0, sp, #536 ; 0x218 +10029f84: 4621 mov r1, r4 +10029f86: 325f adds r2, #95 ; 0x5f +10029f88: 462b mov r3, r5 +10029f8a: f019 fbf1 bl 10043770 <__rt_arc4_crypt_veneer> +10029f8e: 4640 mov r0, r8 +10029f90: 4621 mov r1, r4 +10029f92: e00e b.n 10029fb2 +10029f94: 4611 mov r1, r2 +10029f96: 4670 mov r0, lr +10029f98: 4652 mov r2, sl +10029f9a: 9400 str r4, [sp, #0] +10029f9c: 4633 mov r3, r6 +10029f9e: f019 fba7 bl 100436f0 <__AES_UnWRAP_veneer> +10029fa2: 4620 mov r0, r4 +10029fa4: a902 add r1, sp, #8 +10029fa6: 2208 movs r2, #8 +10029fa8: f018 f8d4 bl 10042154 +10029fac: b930 cbnz r0, 10029fbc +10029fae: 4640 mov r0, r8 +10029fb0: a906 add r1, sp, #24 +10029fb2: 462a mov r2, r5 +10029fb4: f018 f8d4 bl 10042160 +10029fb8: 2001 movs r0, #1 +10029fba: e000 b.n 10029fbe +10029fbc: 2000 movs r0, #0 +10029fbe: f50d 7d48 add.w sp, sp, #800 ; 0x320 +10029fc2: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10029fc6: bf00 nop +10029fc8: 1004a802 .word 0x1004a802 + +10029fcc : +10029fcc: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10029fd0: f5ad 7d4b sub.w sp, sp, #812 ; 0x32c +10029fd4: ac02 add r4, sp, #8 +10029fd6: e884 0003 stmia.w r4, {r0, r1} +10029fda: 492a ldr r1, [pc, #168] ; (1002a084 ) +10029fdc: 4604 mov r4, r0 +10029fde: 6808 ldr r0, [r1, #0] +10029fe0: 6849 ldr r1, [r1, #4] +10029fe2: ad04 add r5, sp, #16 +10029fe4: c503 stmia r5!, {r0, r1} +10029fe6: 7d25 ldrb r5, [r4, #20] +10029fe8: 4691 mov r9, r2 +10029fea: f005 0507 and.w r5, r5, #7 +10029fee: 2d01 cmp r5, #1 +10029ff0: 4698 mov r8, r3 +10029ff2: 9fd2 ldr r7, [sp, #840] ; 0x348 +10029ff4: 9ed3 ldr r6, [sp, #844] ; 0x34c +10029ff6: d122 bne.n 1002a03e +10029ff8: f104 013f add.w r1, r4, #63 ; 0x3f +10029ffc: 2210 movs r2, #16 +10029ffe: a847 add r0, sp, #284 ; 0x11c +1002a000: f018 f8ae bl 10042160 +1002a004: 4649 mov r1, r9 +1002a006: 4642 mov r2, r8 +1002a008: a84b add r0, sp, #300 ; 0x12c +1002a00a: f018 f8a9 bl 10042160 +1002a00e: a888 add r0, sp, #544 ; 0x220 +1002a010: a947 add r1, sp, #284 ; 0x11c +1002a012: f108 0210 add.w r2, r8, #16 +1002a016: f019 fc13 bl 10043840 <__rt_arc4_init_veneer> +1002a01a: a888 add r0, sp, #544 ; 0x220 +1002a01c: a906 add r1, sp, #24 +1002a01e: aa47 add r2, sp, #284 ; 0x11c +1002a020: f44f 7380 mov.w r3, #256 ; 0x100 +1002a024: f019 fba4 bl 10043770 <__rt_arc4_crypt_veneer> +1002a028: a888 add r0, sp, #544 ; 0x220 +1002a02a: a906 add r1, sp, #24 +1002a02c: f104 0271 add.w r2, r4, #113 ; 0x71 +1002a030: 463b mov r3, r7 +1002a032: f019 fb9d bl 10043770 <__rt_arc4_crypt_veneer> +1002a036: 4630 mov r0, r6 +1002a038: a906 add r1, sp, #24 +1002a03a: 463a mov r2, r7 +1002a03c: e01a b.n 1002a074 +1002a03e: 2d02 cmp r5, #2 +1002a040: d001 beq.n 1002a046 +1002a042: 2000 movs r0, #0 +1002a044: e019 b.n 1002a07a +1002a046: f894 1070 ldrb.w r1, [r4, #112] ; 0x70 +1002a04a: f894 506f ldrb.w r5, [r4, #111] ; 0x6f +1002a04e: af06 add r7, sp, #24 +1002a050: eb01 2505 add.w r5, r1, r5, lsl #8 +1002a054: f104 0071 add.w r0, r4, #113 ; 0x71 +1002a058: 4629 mov r1, r5 +1002a05a: 9700 str r7, [sp, #0] +1002a05c: f019 fb48 bl 100436f0 <__AES_UnWRAP_veneer> +1002a060: 4638 mov r0, r7 +1002a062: a904 add r1, sp, #16 +1002a064: 2208 movs r2, #8 +1002a066: f018 f875 bl 10042154 +1002a06a: 2800 cmp r0, #0 +1002a06c: d1e9 bne.n 1002a042 +1002a06e: 4630 mov r0, r6 +1002a070: a908 add r1, sp, #32 +1002a072: 462a mov r2, r5 +1002a074: f018 f874 bl 10042160 +1002a078: 2001 movs r0, #1 +1002a07a: f50d 7d4b add.w sp, sp, #812 ; 0x32c +1002a07e: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1002a082: bf00 nop +1002a084: 1004a802 .word 0x1004a802 + +1002a088 : +1002a088: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002a08c: f500 5888 add.w r8, r0, #4352 ; 0x1100 +1002a090: f8d8 4194 ldr.w r4, [r8, #404] ; 0x194 +1002a094: f108 080c add.w r8, r8, #12 +1002a098: f600 4578 addw r5, r0, #3192 ; 0xc78 +1002a09c: eb08 1744 add.w r7, r8, r4, lsl #5 +1002a0a0: 4606 mov r6, r0 +1002a0a2: 37e8 adds r7, #232 ; 0xe8 +1002a0a4: eb05 1004 add.w r0, r5, r4, lsl #4 +1002a0a8: 3064 adds r0, #100 ; 0x64 +1002a0aa: 4639 mov r1, r7 +1002a0ac: 2210 movs r2, #16 +1002a0ae: f018 f857 bl 10042160 +1002a0b2: f898 30bc ldrb.w r3, [r8, #188] ; 0xbc +1002a0b6: 2b02 cmp r3, #2 +1002a0b8: d112 bne.n 1002a0e0 +1002a0ba: 6933 ldr r3, [r6, #16] +1002a0bc: 06da lsls r2, r3, #27 +1002a0be: d51b bpl.n 1002a0f8 +1002a0c0: eb05 1004 add.w r0, r5, r4, lsl #4 +1002a0c4: f107 0110 add.w r1, r7, #16 +1002a0c8: 30a4 adds r0, #164 ; 0xa4 +1002a0ca: 2208 movs r2, #8 +1002a0cc: f018 f848 bl 10042160 +1002a0d0: eb05 1004 add.w r0, r5, r4, lsl #4 +1002a0d4: 30e4 adds r0, #228 ; 0xe4 +1002a0d6: f107 0118 add.w r1, r7, #24 +1002a0da: 2208 movs r2, #8 +1002a0dc: f018 f840 bl 10042160 +1002a0e0: 2301 movs r3, #1 +1002a0e2: f886 3fcc strb.w r3, [r6, #4044] ; 0xfcc +1002a0e6: f8c6 4cd8 str.w r4, [r6, #3288] ; 0xcd8 +1002a0ea: 4630 mov r0, r6 +1002a0ec: 4629 mov r1, r5 +1002a0ee: 4622 mov r2, r4 +1002a0f0: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1002a0f4: f7fa b8e4 b.w 100242c0 +1002a0f8: 071b lsls r3, r3, #28 +1002a0fa: d5f1 bpl.n 1002a0e0 +1002a0fc: eb05 1004 add.w r0, r5, r4, lsl #4 +1002a100: f107 0118 add.w r1, r7, #24 +1002a104: 30a4 adds r0, #164 ; 0xa4 +1002a106: 2208 movs r2, #8 +1002a108: f018 f82a bl 10042160 +1002a10c: eb05 1004 add.w r0, r5, r4, lsl #4 +1002a110: 30e4 adds r0, #228 ; 0xe4 +1002a112: f107 0110 add.w r1, r7, #16 +1002a116: e7e0 b.n 1002a0da + +1002a118 : +1002a118: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1002a11c: f241 73b1 movw r3, #6065 ; 0x17b1 +1002a120: f810 9003 ldrb.w r9, [r0, r3] +1002a124: 6903 ldr r3, [r0, #16] +1002a126: f119 0900 adds.w r9, r9, #0 +1002a12a: 4605 mov r5, r0 +1002a12c: bf18 it ne +1002a12e: f04f 0901 movne.w r9, #1 +1002a132: 06d8 lsls r0, r3, #27 +1002a134: 460e mov r6, r1 +1002a136: d53f bpl.n 1002a1b8 +1002a138: f8d1 30fc ldr.w r3, [r1, #252] ; 0xfc +1002a13c: f203 138b addw r3, r3, #395 ; 0x18b +1002a140: eb05 0383 add.w r3, r5, r3, lsl #2 +1002a144: f8d3 4c78 ldr.w r4, [r3, #3192] ; 0xc78 +1002a148: 2c00 cmp r4, #0 +1002a14a: d052 beq.n 1002a1f2 +1002a14c: f504 783d add.w r8, r4, #756 ; 0x2f4 +1002a150: 4640 mov r0, r8 +1002a152: f011 fbe0 bl 1003b916 +1002a156: 692b ldr r3, [r5, #16] +1002a158: 06d9 lsls r1, r3, #27 +1002a15a: d433 bmi.n 1002a1c4 +1002a15c: 2100 movs r1, #0 +1002a15e: f44f 7246 mov.w r2, #792 ; 0x318 +1002a162: 4620 mov r0, r4 +1002a164: f018 f802 bl 1004216c +1002a168: f104 0334 add.w r3, r4, #52 ; 0x34 +1002a16c: 6263 str r3, [r4, #36] ; 0x24 +1002a16e: 4a22 ldr r2, [pc, #136] ; (1002a1f8 ) +1002a170: f104 0354 add.w r3, r4, #84 ; 0x54 +1002a174: 2720 movs r7, #32 +1002a176: 62e3 str r3, [r4, #44] ; 0x2c +1002a178: f104 03f4 add.w r3, r4, #244 ; 0xf4 +1002a17c: f8c4 30dc str.w r3, [r4, #220] ; 0xdc +1002a180: 62a7 str r7, [r4, #40] ; 0x28 +1002a182: 6327 str r7, [r4, #48] ; 0x30 +1002a184: f505 53bc add.w r3, r5, #6016 ; 0x1780 +1002a188: 9200 str r2, [sp, #0] +1002a18a: 6819 ldr r1, [r3, #0] +1002a18c: 4640 mov r0, r8 +1002a18e: 4a1b ldr r2, [pc, #108] ; (1002a1fc ) +1002a190: 4633 mov r3, r6 +1002a192: f011 fbb5 bl 1003b900 +1002a196: 4b1a ldr r3, [pc, #104] ; (1002a200 ) +1002a198: 2128 movs r1, #40 ; 0x28 +1002a19a: fb01 3109 mla r1, r1, r9, r3 +1002a19e: 463a mov r2, r7 +1002a1a0: 6175 str r5, [r6, #20] +1002a1a2: f104 0074 add.w r0, r4, #116 ; 0x74 +1002a1a6: f017 ffdb bl 10042160 +1002a1aa: 692b ldr r3, [r5, #16] +1002a1ac: f013 0210 ands.w r2, r3, #16 +1002a1b0: d015 beq.n 1002a1de +1002a1b2: 2301 movs r3, #1 +1002a1b4: 6023 str r3, [r4, #0] +1002a1b6: e01c b.n 1002a1f2 +1002a1b8: 071a lsls r2, r3, #28 +1002a1ba: d51a bpl.n 1002a1f2 +1002a1bc: f241 23a8 movw r3, #4776 ; 0x12a8 +1002a1c0: 58ec ldr r4, [r5, r3] +1002a1c2: e7c1 b.n 1002a148 +1002a1c4: f8d6 2100 ldr.w r2, [r6, #256] ; 0x100 +1002a1c8: 2301 movs r3, #1 +1002a1ca: 3203 adds r2, #3 +1002a1cc: 4628 mov r0, r5 +1002a1ce: 4631 mov r1, r6 +1002a1d0: b2d2 uxtb r2, r2 +1002a1d2: f7f8 ff0d bl 10022ff0 +1002a1d6: 2301 movs r3, #1 +1002a1d8: f8c6 3110 str.w r3, [r6, #272] ; 0x110 +1002a1dc: e7be b.n 1002a15c +1002a1de: 071b lsls r3, r3, #28 +1002a1e0: d507 bpl.n 1002a1f2 +1002a1e2: f04f 33ff mov.w r3, #4294967295 +1002a1e6: f8c4 2304 str.w r2, [r4, #772] ; 0x304 +1002a1ea: f8c4 2308 str.w r2, [r4, #776] ; 0x308 +1002a1ee: 6163 str r3, [r4, #20] +1002a1f0: 61a3 str r3, [r4, #24] +1002a1f2: b003 add sp, #12 +1002a1f4: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1002a1f8: 1004a81a .word 0x1004a81a +1002a1fc: 1002ada5 .word 0x1002ada5 +1002a200: 100531ff .word 0x100531ff + +1002a204 : +1002a204: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002a208: f600 4578 addw r5, r0, #3192 ; 0xc78 +1002a20c: b0d9 sub sp, #356 ; 0x164 +1002a20e: 4607 mov r7, r0 +1002a210: 460e mov r6, r1 +1002a212: 4692 mov sl, r2 +1002a214: 2d00 cmp r5, #0 +1002a216: f000 834e beq.w 1002a8b6 +1002a21a: 2900 cmp r1, #0 +1002a21c: f000 834b beq.w 1002a8b6 +1002a220: f8d1 30fc ldr.w r3, [r1, #252] ; 0xfc +1002a224: f203 138b addw r3, r3, #395 ; 0x18b +1002a228: eb00 0383 add.w r3, r0, r3, lsl #2 +1002a22c: f8d3 4c78 ldr.w r4, [r3, #3192] ; 0xc78 +1002a230: 6823 ldr r3, [r4, #0] +1002a232: 2b00 cmp r3, #0 +1002a234: f000 833f beq.w 1002a8b6 +1002a238: a80c add r0, sp, #48 ; 0x30 +1002a23a: 2100 movs r1, #0 +1002a23c: 2208 movs r2, #8 +1002a23e: f017 ff95 bl 1004216c +1002a242: f8d4 80dc ldr.w r8, [r4, #220] ; 0xdc +1002a246: f507 5b88 add.w fp, r7, #4352 ; 0x1100 +1002a24a: f108 0012 add.w r0, r8, #18 +1002a24e: f8c4 00ec str.w r0, [r4, #236] ; 0xec +1002a252: f10b 0b0c add.w fp, fp, #12 +1002a256: f89b 30bc ldrb.w r3, [fp, #188] ; 0xbc +1002a25a: 900c str r0, [sp, #48] ; 0x30 +1002a25c: 2b04 cmp r3, #4 +1002a25e: d007 beq.n 1002a270 +1002a260: 7c23 ldrb r3, [r4, #16] +1002a262: 2b04 cmp r3, #4 +1002a264: bf14 ite ne +1002a266: f04f 0901 movne.w r9, #1 +1002a26a: f04f 0902 moveq.w r9, #2 +1002a26e: e001 b.n 1002a274 +1002a270: f04f 0902 mov.w r9, #2 +1002a274: f1ba 0f00 cmp.w sl, #0 +1002a278: d00f beq.n 1002a29a +1002a27a: f8d4 30f0 ldr.w r3, [r4, #240] ; 0xf0 +1002a27e: 6961 ldr r1, [r4, #20] +1002a280: 69a2 ldr r2, [r4, #24] +1002a282: 930d str r3, [sp, #52] ; 0x34 +1002a284: f8d4 50e0 ldr.w r5, [r4, #224] ; 0xe0 +1002a288: f7ff fd01 bl 10029c8e +1002a28c: f104 0014 add.w r0, r4, #20 +1002a290: f7ff fd0c bl 10029cac +1002a294: f04f 0a01 mov.w sl, #1 +1002a298: e2c3 b.n 1002a822 +1002a29a: 6823 ldr r3, [r4, #0] +1002a29c: f205 4594 addw r5, r5, #1172 ; 0x494 +1002a2a0: 2b01 cmp r3, #1 +1002a2a2: d003 beq.n 1002a2ac +1002a2a4: 2b02 cmp r3, #2 +1002a2a6: f000 80d2 beq.w 1002a44e +1002a2aa: e304 b.n 1002a8b6 +1002a2ac: 4870 ldr r0, [pc, #448] ; (1002a470 ) +1002a2ae: f017 ff2b bl 10042108 +1002a2b2: 4b70 ldr r3, [pc, #448] ; (1002a474 ) +1002a2b4: f104 0b14 add.w fp, r4, #20 +1002a2b8: f8d3 01b4 ldr.w r0, [r3, #436] ; 0x1b4 +1002a2bc: f017 ff24 bl 10042108 +1002a2c0: f44f 72f7 mov.w r2, #494 ; 0x1ee +1002a2c4: 4651 mov r1, sl +1002a2c6: 980c ldr r0, [sp, #48] ; 0x30 +1002a2c8: f017 ff50 bl 1004216c +1002a2cc: 68a3 ldr r3, [r4, #8] +1002a2ce: f04f 0a00 mov.w sl, #0 +1002a2d2: f013 0f02 tst.w r3, #2 +1002a2d6: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a2d8: bf14 ite ne +1002a2da: 2202 movne r2, #2 +1002a2dc: 22fe moveq r2, #254 ; 0xfe +1002a2de: 701a strb r2, [r3, #0] +1002a2e0: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a2e2: 789a ldrb r2, [r3, #2] +1002a2e4: f022 0207 bic.w r2, r2, #7 +1002a2e8: 709a strb r2, [r3, #2] +1002a2ea: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a2ec: 789a ldrb r2, [r3, #2] +1002a2ee: ea49 0202 orr.w r2, r9, r2 +1002a2f2: 709a strb r2, [r3, #2] +1002a2f4: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a2f6: 789a ldrb r2, [r3, #2] +1002a2f8: f042 0208 orr.w r2, r2, #8 +1002a2fc: 709a strb r2, [r3, #2] +1002a2fe: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a300: 789a ldrb r2, [r3, #2] +1002a302: f022 0230 bic.w r2, r2, #48 ; 0x30 +1002a306: 709a strb r2, [r3, #2] +1002a308: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a30a: 789a ldrb r2, [r3, #2] +1002a30c: f022 0240 bic.w r2, r2, #64 ; 0x40 +1002a310: 709a strb r2, [r3, #2] +1002a312: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a314: 789a ldrb r2, [r3, #2] +1002a316: f062 027f orn r2, r2, #127 ; 0x7f +1002a31a: 709a strb r2, [r3, #2] +1002a31c: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a31e: 785a ldrb r2, [r3, #1] +1002a320: f022 0201 bic.w r2, r2, #1 +1002a324: 705a strb r2, [r3, #1] +1002a326: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a328: 785a ldrb r2, [r3, #1] +1002a32a: f022 0202 bic.w r2, r2, #2 +1002a32e: 705a strb r2, [r3, #1] +1002a330: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a332: 785a ldrb r2, [r3, #1] +1002a334: f022 0204 bic.w r2, r2, #4 +1002a338: 705a strb r2, [r3, #1] +1002a33a: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a33c: 785a ldrb r2, [r3, #1] +1002a33e: f022 0208 bic.w r2, r2, #8 +1002a342: 705a strb r2, [r3, #1] +1002a344: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a346: f883 a003 strb.w sl, [r3, #3] +1002a34a: 7c23 ldrb r3, [r4, #16] +1002a34c: 980c ldr r0, [sp, #48] ; 0x30 +1002a34e: 2b02 cmp r3, #2 +1002a350: bf14 ite ne +1002a352: 2310 movne r3, #16 +1002a354: 2320 moveq r3, #32 +1002a356: 7103 strb r3, [r0, #4] +1002a358: 6961 ldr r1, [r4, #20] +1002a35a: 69a2 ldr r2, [r4, #24] +1002a35c: f7ff fc97 bl 10029c8e +1002a360: 4659 mov r1, fp +1002a362: 2208 movs r2, #8 +1002a364: f104 001c add.w r0, r4, #28 +1002a368: f017 fefa bl 10042160 +1002a36c: 4658 mov r0, fp +1002a36e: f7ff fc9d bl 10029cac +1002a372: 4628 mov r0, r5 +1002a374: f7ff fcce bl 10029d14 +1002a378: 46ee mov lr, sp +1002a37a: f105 0c08 add.w ip, r5, #8 +1002a37e: e8bc 000f ldmia.w ip!, {r0, r1, r2, r3} +1002a382: e8ae 000f stmia.w lr!, {r0, r1, r2, r3} +1002a386: e89c 0003 ldmia.w ip, {r0, r1} +1002a38a: e88e 0003 stmia.w lr, {r0, r1} +1002a38e: f104 0124 add.w r1, r4, #36 ; 0x24 +1002a392: e895 000c ldmia.w r5, {r2, r3} +1002a396: c903 ldmia r1, {r0, r1} +1002a398: f7ff fba6 bl 10029ae8 +1002a39c: 980c ldr r0, [sp, #48] ; 0x30 +1002a39e: 6a61 ldr r1, [r4, #36] ; 0x24 +1002a3a0: 6aa2 ldr r2, [r4, #40] ; 0x28 +1002a3a2: 300d adds r0, #13 +1002a3a4: f017 fedc bl 10042160 +1002a3a8: 4651 mov r1, sl +1002a3aa: 2210 movs r2, #16 +1002a3ac: a814 add r0, sp, #80 ; 0x50 +1002a3ae: f017 fedd bl 1004216c +1002a3b2: 980c ldr r0, [sp, #48] ; 0x30 +1002a3b4: a914 add r1, sp, #80 ; 0x50 +1002a3b6: 2210 movs r2, #16 +1002a3b8: 302d adds r0, #45 ; 0x2d +1002a3ba: f017 fed1 bl 10042160 +1002a3be: 4651 mov r1, sl +1002a3c0: 2208 movs r2, #8 +1002a3c2: a80e add r0, sp, #56 ; 0x38 +1002a3c4: f017 fed2 bl 1004216c +1002a3c8: 980c ldr r0, [sp, #48] ; 0x30 +1002a3ca: a90e add r1, sp, #56 ; 0x38 +1002a3cc: 2208 movs r2, #8 +1002a3ce: 303d adds r0, #61 ; 0x3d +1002a3d0: f017 fec6 bl 10042160 +1002a3d4: 4651 mov r1, sl +1002a3d6: 2208 movs r2, #8 +1002a3d8: a812 add r0, sp, #72 ; 0x48 +1002a3da: f017 fec7 bl 1004216c +1002a3de: 980c ldr r0, [sp, #48] ; 0x30 +1002a3e0: a912 add r1, sp, #72 ; 0x48 +1002a3e2: 3045 adds r0, #69 ; 0x45 +1002a3e4: 2208 movs r2, #8 +1002a3e6: f017 febb bl 10042160 +1002a3ea: 68a3 ldr r3, [r4, #8] +1002a3ec: 980c ldr r0, [sp, #48] ; 0x30 +1002a3ee: f013 0302 ands.w r3, r3, #2 +1002a3f2: d00a beq.n 1002a40a +1002a3f4: 2316 movs r3, #22 +1002a3f6: f880 a05d strb.w sl, [r0, #93] ; 0x5d +1002a3fa: f880 305e strb.w r3, [r0, #94] ; 0x5e +1002a3fe: 491e ldr r1, [pc, #120] ; (1002a478 ) +1002a400: 2206 movs r2, #6 +1002a402: 305f adds r0, #95 ; 0x5f +1002a404: f017 feac bl 10042160 +1002a408: e003 b.n 1002a412 +1002a40a: f880 305d strb.w r3, [r0, #93] ; 0x5d +1002a40e: f880 305e strb.w r3, [r0, #94] ; 0x5e +1002a412: 2100 movs r1, #0 +1002a414: 2210 movs r2, #16 +1002a416: a838 add r0, sp, #224 ; 0xe0 +1002a418: f017 fea8 bl 1004216c +1002a41c: 980c ldr r0, [sp, #48] ; 0x30 +1002a41e: a938 add r1, sp, #224 ; 0xe0 +1002a420: 304d adds r0, #77 ; 0x4d +1002a422: 2210 movs r2, #16 +1002a424: f017 fe9c bl 10042160 +1002a428: 68a3 ldr r3, [r4, #8] +1002a42a: 079b lsls r3, r3, #30 +1002a42c: d508 bpl.n 1002a440 +1002a42e: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a430: f893 205d ldrb.w r2, [r3, #93] ; 0x5d +1002a434: f893 305e ldrb.w r3, [r3, #94] ; 0x5e +1002a438: eb03 2302 add.w r3, r3, r2, lsl #8 +1002a43c: 335f adds r3, #95 ; 0x5f +1002a43e: e000 b.n 1002a442 +1002a440: 235f movs r3, #95 ; 0x5f +1002a442: 930d str r3, [sp, #52] ; 0x34 +1002a444: 9d0d ldr r5, [sp, #52] ; 0x34 +1002a446: f04f 0a00 mov.w sl, #0 +1002a44a: 3512 adds r5, #18 +1002a44c: e1e4 b.n 1002a818 +1002a44e: 4808 ldr r0, [pc, #32] ; (1002a470 ) +1002a450: 9307 str r3, [sp, #28] +1002a452: f017 fe59 bl 10042108 +1002a456: 4a07 ldr r2, [pc, #28] ; (1002a474 ) +1002a458: f8d2 01b8 ldr.w r0, [r2, #440] ; 0x1b8 +1002a45c: f017 fe54 bl 10042108 +1002a460: 68a2 ldr r2, [r4, #8] +1002a462: 9b07 ldr r3, [sp, #28] +1002a464: f012 0f02 tst.w r2, #2 +1002a468: d008 beq.n 1002a47c +1002a46a: 9a0c ldr r2, [sp, #48] ; 0x30 +1002a46c: 7013 strb r3, [r2, #0] +1002a46e: e008 b.n 1002a482 +1002a470: 1004b9eb .word 0x1004b9eb +1002a474: 1004da10 .word 0x1004da10 +1002a478: 1004d9ac .word 0x1004d9ac +1002a47c: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a47e: 22fe movs r2, #254 ; 0xfe +1002a480: 701a strb r2, [r3, #0] +1002a482: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a484: f10d 0a50 add.w sl, sp, #80 ; 0x50 +1002a488: 789a ldrb r2, [r3, #2] +1002a48a: f022 0207 bic.w r2, r2, #7 +1002a48e: 709a strb r2, [r3, #2] +1002a490: f8d4 20e4 ldr.w r2, [r4, #228] ; 0xe4 +1002a494: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a496: 7892 ldrb r2, [r2, #2] +1002a498: 7899 ldrb r1, [r3, #2] +1002a49a: f002 0207 and.w r2, r2, #7 +1002a49e: 430a orrs r2, r1 +1002a4a0: 709a strb r2, [r3, #2] +1002a4a2: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a4a4: f8d4 20e4 ldr.w r2, [r4, #228] ; 0xe4 +1002a4a8: 7891 ldrb r1, [r2, #2] +1002a4aa: 789a ldrb r2, [r3, #2] +1002a4ac: f001 0108 and.w r1, r1, #8 +1002a4b0: f022 0208 bic.w r2, r2, #8 +1002a4b4: 430a orrs r2, r1 +1002a4b6: 709a strb r2, [r3, #2] +1002a4b8: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a4ba: 789a ldrb r2, [r3, #2] +1002a4bc: f022 0230 bic.w r2, r2, #48 ; 0x30 +1002a4c0: 709a strb r2, [r3, #2] +1002a4c2: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a4c4: 789a ldrb r2, [r3, #2] +1002a4c6: f042 0240 orr.w r2, r2, #64 ; 0x40 +1002a4ca: 709a strb r2, [r3, #2] +1002a4cc: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a4ce: 789a ldrb r2, [r3, #2] +1002a4d0: f062 027f orn r2, r2, #127 ; 0x7f +1002a4d4: 709a strb r2, [r3, #2] +1002a4d6: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a4d8: 785a ldrb r2, [r3, #1] +1002a4da: f042 0201 orr.w r2, r2, #1 +1002a4de: 705a strb r2, [r3, #1] +1002a4e0: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a4e2: 785a ldrb r2, [r3, #1] +1002a4e4: f022 0202 bic.w r2, r2, #2 +1002a4e8: 705a strb r2, [r3, #1] +1002a4ea: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a4ec: 785a ldrb r2, [r3, #1] +1002a4ee: f022 0204 bic.w r2, r2, #4 +1002a4f2: 705a strb r2, [r3, #1] +1002a4f4: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a4f6: 785a ldrb r2, [r3, #1] +1002a4f8: f022 0208 bic.w r2, r2, #8 +1002a4fc: 705a strb r2, [r3, #1] +1002a4fe: 9a0c ldr r2, [sp, #48] ; 0x30 +1002a500: 2300 movs r3, #0 +1002a502: 70d3 strb r3, [r2, #3] +1002a504: 7c22 ldrb r2, [r4, #16] +1002a506: 980c ldr r0, [sp, #48] ; 0x30 +1002a508: 2a02 cmp r2, #2 +1002a50a: bf14 ite ne +1002a50c: 2210 movne r2, #16 +1002a50e: 2220 moveq r2, #32 +1002a510: 7102 strb r2, [r0, #4] +1002a512: 6961 ldr r1, [r4, #20] +1002a514: 69a2 ldr r2, [r4, #24] +1002a516: 9307 str r3, [sp, #28] +1002a518: f7ff fbb9 bl 10029c8e +1002a51c: f104 0014 add.w r0, r4, #20 +1002a520: f7ff fbc4 bl 10029cac +1002a524: 980c ldr r0, [sp, #48] ; 0x30 +1002a526: 6a61 ldr r1, [r4, #36] ; 0x24 +1002a528: 6aa2 ldr r2, [r4, #40] ; 0x28 +1002a52a: 300d adds r0, #13 +1002a52c: f017 fe18 bl 10042160 +1002a530: 9b07 ldr r3, [sp, #28] +1002a532: 2210 movs r2, #16 +1002a534: 4619 mov r1, r3 +1002a536: 4650 mov r0, sl +1002a538: f017 fe18 bl 1004216c +1002a53c: 980c ldr r0, [sp, #48] ; 0x30 +1002a53e: 4651 mov r1, sl +1002a540: 302d adds r0, #45 ; 0x2d +1002a542: 2210 movs r2, #16 +1002a544: f017 fe0c bl 10042160 +1002a548: 68a3 ldr r3, [r4, #8] +1002a54a: f013 0302 ands.w r3, r3, #2 +1002a54e: f000 8125 beq.w 1002a79c +1002a552: 4aa5 ldr r2, [pc, #660] ; (1002a7e8 ) +1002a554: ab10 add r3, sp, #64 ; 0x40 +1002a556: 6810 ldr r0, [r2, #0] +1002a558: 6851 ldr r1, [r2, #4] +1002a55a: f1b9 0f02 cmp.w r9, #2 +1002a55e: c303 stmia r3!, {r0, r1} +1002a560: 9b0c ldr r3, [sp, #48] ; 0x30 +1002a562: f04f 0213 mov.w r2, #19 +1002a566: 705a strb r2, [r3, #1] +1002a568: d11f bne.n 1002a5aa +1002a56a: 4628 mov r0, r5 +1002a56c: f7ff fbd2 bl 10029d14 +1002a570: 2310 movs r3, #16 +1002a572: 46ee mov lr, sp +1002a574: f105 0c08 add.w ip, r5, #8 +1002a578: 930b str r3, [sp, #44] ; 0x2c +1002a57a: f8cd a028 str.w sl, [sp, #40] ; 0x28 +1002a57e: e8bc 000f ldmia.w ip!, {r0, r1, r2, r3} +1002a582: e8ae 000f stmia.w lr!, {r0, r1, r2, r3} +1002a586: e89c 0003 ldmia.w ip, {r0, r1} +1002a58a: e88e 0003 stmia.w lr, {r0, r1} +1002a58e: f10d 0b28 add.w fp, sp, #40 ; 0x28 +1002a592: e89b 0003 ldmia.w fp, {r0, r1} +1002a596: e895 000c ldmia.w r5, {r2, r3} +1002a59a: f7ff faa5 bl 10029ae8 +1002a59e: 980c ldr r0, [sp, #48] ; 0x30 +1002a5a0: 4651 mov r1, sl +1002a5a2: 302d adds r0, #45 ; 0x2d +1002a5a4: 2210 movs r2, #16 +1002a5a6: f017 fddb bl 10042160 +1002a5aa: f507 5a88 add.w sl, r7, #4352 ; 0x1100 +1002a5ae: f10a 0a0c add.w sl, sl, #12 +1002a5b2: f8da 1034 ldr.w r1, [sl, #52] ; 0x34 +1002a5b6: 780b ldrb r3, [r1, #0] +1002a5b8: 2b30 cmp r3, #48 ; 0x30 +1002a5ba: d10e bne.n 1002a5da +1002a5bc: f891 b001 ldrb.w fp, [r1, #1] +1002a5c0: f10b 0b02 add.w fp, fp, #2 +1002a5c4: f1bb 0f64 cmp.w fp, #100 ; 0x64 +1002a5c8: f300 8175 bgt.w 1002a8b6 +1002a5cc: 465a mov r2, fp +1002a5ce: a838 add r0, sp, #224 ; 0xe0 +1002a5d0: f017 fdc6 bl 10042160 +1002a5d4: ab38 add r3, sp, #224 ; 0xe0 +1002a5d6: 449b add fp, r3 +1002a5d8: e001 b.n 1002a5de +1002a5da: f10d 0be0 add.w fp, sp, #224 ; 0xe0 +1002a5de: 4658 mov r0, fp +1002a5e0: a910 add r1, sp, #64 ; 0x40 +1002a5e2: 2208 movs r2, #8 +1002a5e4: f017 fdbc bl 10042160 +1002a5e8: f89a 30bc ldrb.w r3, [sl, #188] ; 0xbc +1002a5ec: f10b 0b08 add.w fp, fp, #8 +1002a5f0: 2b02 cmp r3, #2 +1002a5f2: bf14 ite ne +1002a5f4: 2316 movne r3, #22 +1002a5f6: 2326 moveq r3, #38 ; 0x26 +1002a5f8: f80b 3c07 strb.w r3, [fp, #-7] +1002a5fc: f8da 3020 ldr.w r3, [sl, #32] +1002a600: b3bb cbz r3, 1002a672 +1002a602: f8da 3190 ldr.w r3, [sl, #400] ; 0x190 +1002a606: b913 cbnz r3, 1002a60e +1002a608: f8da 3028 ldr.w r3, [sl, #40] ; 0x28 +1002a60c: b38b cbz r3, 1002a672 +1002a60e: f8da 2028 ldr.w r2, [sl, #40] ; 0x28 +1002a612: 2300 movs r3, #0 +1002a614: b10a cbz r2, 1002a61a +1002a616: f8ca 302c str.w r3, [sl, #44] ; 0x2c +1002a61a: f8ca 3190 str.w r3, [sl, #400] ; 0x190 +1002a61e: f8ca 3028 str.w r3, [sl, #40] ; 0x28 +1002a622: f8ca 3030 str.w r3, [sl, #48] ; 0x30 +1002a626: 4628 mov r0, r5 +1002a628: f7ff fb74 bl 10029d14 +1002a62c: f105 0c08 add.w ip, r5, #8 +1002a630: 46ee mov lr, sp +1002a632: e8bc 000f ldmia.w ip!, {r0, r1, r2, r3} +1002a636: e8ae 000f stmia.w lr!, {r0, r1, r2, r3} +1002a63a: e89c 0003 ldmia.w ip, {r0, r1} +1002a63e: e88e 0003 stmia.w lr, {r0, r1} +1002a642: e895 000c ldmia.w r5, {r2, r3} +1002a646: 35c0 adds r5, #192 ; 0xc0 +1002a648: e895 0003 ldmia.w r5, {r0, r1} +1002a64c: f7ff fa4c bl 10029ae8 +1002a650: f8da 3188 ldr.w r3, [sl, #392] ; 0x188 +1002a654: f507 50a0 add.w r0, r7, #5120 ; 0x1400 +1002a658: eb0a 1343 add.w r3, sl, r3, lsl #5 +1002a65c: 33e8 adds r3, #232 ; 0xe8 +1002a65e: 9300 str r3, [sp, #0] +1002a660: 2320 movs r3, #32 +1002a662: 9301 str r3, [sp, #4] +1002a664: 3009 adds r0, #9 +1002a666: f8da 10c0 ldr.w r1, [sl, #192] ; 0xc0 +1002a66a: f50a 72b4 add.w r2, sl, #360 ; 0x168 +1002a66e: f019 f927 bl 100438c0 <__rom_psk_CalcGTK_veneer> +1002a672: f507 5588 add.w r5, r7, #4352 ; 0x1100 +1002a676: f8d5 1194 ldr.w r1, [r5, #404] ; 0x194 +1002a67a: 350c adds r5, #12 +1002a67c: f895 30bc ldrb.w r3, [r5, #188] ; 0xbc +1002a680: eb05 1141 add.w r1, r5, r1, lsl #5 +1002a684: 2b02 cmp r3, #2 +1002a686: bf14 ite ne +1002a688: 2210 movne r2, #16 +1002a68a: 2220 moveq r2, #32 +1002a68c: 4658 mov r0, fp +1002a68e: 31e8 adds r1, #232 ; 0xe8 +1002a690: f017 fd66 bl 10042160 +1002a694: f895 30bc ldrb.w r3, [r5, #188] ; 0xbc +1002a698: ad38 add r5, sp, #224 ; 0xe0 +1002a69a: 2b02 cmp r3, #2 +1002a69c: bf14 ite ne +1002a69e: 2310 movne r3, #16 +1002a6a0: 2320 moveq r3, #32 +1002a6a2: 449b add fp, r3 +1002a6a4: 4b51 ldr r3, [pc, #324] ; (1002a7ec ) +1002a6a6: ebc5 020b rsb r2, r5, fp +1002a6aa: 4013 ands r3, r2 +1002a6ac: 2b00 cmp r3, #0 +1002a6ae: da03 bge.n 1002a6b8 +1002a6b0: 3b01 subs r3, #1 +1002a6b2: f063 0307 orn r3, r3, #7 +1002a6b6: 3301 adds r3, #1 +1002a6b8: b18b cbz r3, 1002a6de +1002a6ba: 22dd movs r2, #221 ; 0xdd +1002a6bc: 4659 mov r1, fp +1002a6be: f801 2b01 strb.w r2, [r1], #1 +1002a6c2: 1c5a adds r2, r3, #1 +1002a6c4: 2a08 cmp r2, #8 +1002a6c6: d007 beq.n 1002a6d8 +1002a6c8: ebc3 000b rsb r0, r3, fp +1002a6cc: f04f 0e00 mov.w lr, #0 +1002a6d0: f800 e002 strb.w lr, [r0, r2] +1002a6d4: 3201 adds r2, #1 +1002a6d6: e7f5 b.n 1002a6c4 +1002a6d8: f1c3 0b07 rsb fp, r3, #7 +1002a6dc: 448b add fp, r1 +1002a6de: 4944 ldr r1, [pc, #272] ; (1002a7f0 ) +1002a6e0: f8d6 30fc ldr.w r3, [r6, #252] ; 0xfc +1002a6e4: 6808 ldr r0, [r1, #0] +1002a6e6: 6849 ldr r1, [r1, #4] +1002a6e8: aa12 add r2, sp, #72 ; 0x48 +1002a6ea: f203 138b addw r3, r3, #395 ; 0x18b +1002a6ee: c203 stmia r2!, {r0, r1} +1002a6f0: eb07 0383 add.w r3, r7, r3, lsl #2 +1002a6f4: f8d3 3c78 ldr.w r3, [r3, #3192] ; 0xc78 +1002a6f8: f10d 0a60 add.w sl, sp, #96 ; 0x60 +1002a6fc: f8d3 30ec ldr.w r3, [r3, #236] ; 0xec +1002a700: f10d 0c26 add.w ip, sp, #38 ; 0x26 +1002a704: 789b ldrb r3, [r3, #2] +1002a706: f003 0307 and.w r3, r3, #7 +1002a70a: 2b01 cmp r3, #1 +1002a70c: d013 beq.n 1002a736 +1002a70e: f104 03a4 add.w r3, r4, #164 ; 0xa4 +1002a712: 9300 str r3, [sp, #0] +1002a714: 2310 movs r3, #16 +1002a716: 9301 str r3, [sp, #4] +1002a718: f8cd c00c str.w ip, [sp, #12] +1002a71c: f8cd a008 str.w sl, [sp, #8] +1002a720: 4628 mov r0, r5 +1002a722: ebc5 010b rsb r1, r5, fp +1002a726: aa12 add r2, sp, #72 ; 0x48 +1002a728: 2308 movs r3, #8 +1002a72a: f8cd c01c str.w ip, [sp, #28] +1002a72e: f019 f8a7 bl 10043880 <__AES_WRAP_veneer> +1002a732: f8dd c01c ldr.w ip, [sp, #28] +1002a736: f8bc 5000 ldrh.w r5, [ip] +1002a73a: 980c ldr r0, [sp, #48] ; 0x30 +1002a73c: 4651 mov r1, sl +1002a73e: 462a mov r2, r5 +1002a740: 305f adds r0, #95 ; 0x5f +1002a742: f017 fd0d bl 10042160 +1002a746: 980c ldr r0, [sp, #48] ; 0x30 +1002a748: 0a2b lsrs r3, r5, #8 +1002a74a: f880 505e strb.w r5, [r0, #94] ; 0x5e +1002a74e: f880 305d strb.w r3, [r0, #93] ; 0x5d +1002a752: f896 3148 ldrb.w r3, [r6, #328] ; 0x148 +1002a756: 355f adds r5, #95 ; 0x5f +1002a758: f88d 3038 strb.w r3, [sp, #56] ; 0x38 +1002a75c: f896 3149 ldrb.w r3, [r6, #329] ; 0x149 +1002a760: a90e add r1, sp, #56 ; 0x38 +1002a762: f88d 3039 strb.w r3, [sp, #57] ; 0x39 +1002a766: f896 314a ldrb.w r3, [r6, #330] ; 0x14a +1002a76a: 2208 movs r2, #8 +1002a76c: f88d 303a strb.w r3, [sp, #58] ; 0x3a +1002a770: f896 314b ldrb.w r3, [r6, #331] ; 0x14b +1002a774: 303d adds r0, #61 ; 0x3d +1002a776: f88d 303b strb.w r3, [sp, #59] ; 0x3b +1002a77a: f896 314c ldrb.w r3, [r6, #332] ; 0x14c +1002a77e: 950d str r5, [sp, #52] ; 0x34 +1002a780: f88d 303c strb.w r3, [sp, #60] ; 0x3c +1002a784: f896 314d ldrb.w r3, [r6, #333] ; 0x14d +1002a788: f88d 303d strb.w r3, [sp, #61] ; 0x3d +1002a78c: 2300 movs r3, #0 +1002a78e: f88d 303e strb.w r3, [sp, #62] ; 0x3e +1002a792: f88d 303f strb.w r3, [sp, #63] ; 0x3f +1002a796: f017 fce3 bl 10042160 +1002a79a: e039 b.n 1002a810 +1002a79c: 4619 mov r1, r3 +1002a79e: 2208 movs r2, #8 +1002a7a0: a80e add r0, sp, #56 ; 0x38 +1002a7a2: 9307 str r3, [sp, #28] +1002a7a4: f017 fce2 bl 1004216c +1002a7a8: 980c ldr r0, [sp, #48] ; 0x30 +1002a7aa: a90e add r1, sp, #56 ; 0x38 +1002a7ac: 2208 movs r2, #8 +1002a7ae: 303d adds r0, #61 ; 0x3d +1002a7b0: f017 fcd6 bl 10042160 +1002a7b4: 9b07 ldr r3, [sp, #28] +1002a7b6: 2208 movs r2, #8 +1002a7b8: 4619 mov r1, r3 +1002a7ba: a812 add r0, sp, #72 ; 0x48 +1002a7bc: f017 fcd6 bl 1004216c +1002a7c0: 980c ldr r0, [sp, #48] ; 0x30 +1002a7c2: a912 add r1, sp, #72 ; 0x48 +1002a7c4: 2208 movs r2, #8 +1002a7c6: 3045 adds r0, #69 ; 0x45 +1002a7c8: f017 fcca bl 10042160 +1002a7cc: f8db 1034 ldr.w r1, [fp, #52] ; 0x34 +1002a7d0: 9b07 ldr r3, [sp, #28] +1002a7d2: 780a ldrb r2, [r1, #0] +1002a7d4: 2add cmp r2, #221 ; 0xdd +1002a7d6: d10d bne.n 1002a7f4 +1002a7d8: 784d ldrb r5, [r1, #1] +1002a7da: a818 add r0, sp, #96 ; 0x60 +1002a7dc: 3502 adds r5, #2 +1002a7de: 462a mov r2, r5 +1002a7e0: f017 fcbe bl 10042160 +1002a7e4: e007 b.n 1002a7f6 +1002a7e6: bf00 nop +1002a7e8: 1004a80a .word 0x1004a80a +1002a7ec: 80000007 .word 0x80000007 +1002a7f0: 1004a802 .word 0x1004a802 +1002a7f4: 461d mov r5, r3 +1002a7f6: 980c ldr r0, [sp, #48] ; 0x30 +1002a7f8: 0a2b lsrs r3, r5, #8 +1002a7fa: f880 505e strb.w r5, [r0, #94] ; 0x5e +1002a7fe: f880 305d strb.w r3, [r0, #93] ; 0x5d +1002a802: 462a mov r2, r5 +1002a804: 305f adds r0, #95 ; 0x5f +1002a806: a918 add r1, sp, #96 ; 0x60 +1002a808: 355f adds r5, #95 ; 0x5f +1002a80a: f017 fca9 bl 10042160 +1002a80e: 950d str r5, [sp, #52] ; 0x34 +1002a810: 9d0d ldr r5, [sp, #52] ; 0x34 +1002a812: f04f 0a01 mov.w sl, #1 +1002a816: 3512 adds r5, #18 +1002a818: 9b0d ldr r3, [sp, #52] ; 0x34 +1002a81a: f8c4 50e0 str.w r5, [r4, #224] ; 0xe0 +1002a81e: f8c4 30f0 str.w r3, [r4, #240] ; 0xf0 +1002a822: f506 7184 add.w r1, r6, #264 ; 0x108 +1002a826: 2206 movs r2, #6 +1002a828: 4640 mov r0, r8 +1002a82a: f017 fc99 bl 10042160 +1002a82e: f507 51a0 add.w r1, r7, #5120 ; 0x1400 +1002a832: 3109 adds r1, #9 +1002a834: 2206 movs r2, #6 +1002a836: f108 0006 add.w r0, r8, #6 +1002a83a: f017 fc91 bl 10042160 +1002a83e: f648 008e movw r0, #34958 ; 0x888e +1002a842: f7f2 fa0f bl 1001cc64 <_htons> +1002a846: 2301 movs r3, #1 +1002a848: f888 300e strb.w r3, [r8, #14] +1002a84c: 2303 movs r3, #3 +1002a84e: f8a8 000c strh.w r0, [r8, #12] +1002a852: f888 300f strb.w r3, [r8, #15] +1002a856: f8bd 0034 ldrh.w r0, [sp, #52] ; 0x34 +1002a85a: f7f2 fa03 bl 1001cc64 <_htons> +1002a85e: f8a8 0010 strh.w r0, [r8, #16] +1002a862: f1ba 0f00 cmp.w sl, #0 +1002a866: d00a beq.n 1002a87e +1002a868: ab10 add r3, sp, #64 ; 0x40 +1002a86a: f8cd 8040 str.w r8, [sp, #64] ; 0x40 +1002a86e: 9511 str r5, [sp, #68] ; 0x44 +1002a870: e893 0003 ldmia.w r3, {r0, r1} +1002a874: 464a mov r2, r9 +1002a876: f104 0394 add.w r3, r4, #148 ; 0x94 +1002a87a: f7ff fb1d bl 10029eb8 +1002a87e: f44f 7000 mov.w r0, #512 ; 0x200 +1002a882: 214a movs r1, #74 ; 0x4a +1002a884: f010 fd97 bl 1003b3b6 +1002a888: 4606 mov r6, r0 +1002a88a: b1a0 cbz r0, 1002a8b6 +1002a88c: 462a mov r2, r5 +1002a88e: 4641 mov r1, r8 +1002a890: 6900 ldr r0, [r0, #16] +1002a892: f017 fc65 bl 10042160 +1002a896: f507 57bc add.w r7, r7, #6016 ; 0x1780 +1002a89a: 4629 mov r1, r5 +1002a89c: 4630 mov r0, r6 +1002a89e: f010 fd69 bl 1003b374 +1002a8a2: 6839 ldr r1, [r7, #0] +1002a8a4: 4630 mov r0, r6 +1002a8a6: 6a8b ldr r3, [r1, #40] ; 0x28 +1002a8a8: 4798 blx r3 +1002a8aa: f504 703d add.w r0, r4, #756 ; 0x2f4 +1002a8ae: f44f 717a mov.w r1, #1000 ; 0x3e8 +1002a8b2: f011 f829 bl 1003b908 +1002a8b6: b059 add sp, #356 ; 0x164 +1002a8b8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1002a8bc : +1002a8bc: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002a8c0: f600 4378 addw r3, r0, #3192 ; 0xc78 +1002a8c4: b095 sub sp, #84 ; 0x54 +1002a8c6: 4680 mov r8, r0 +1002a8c8: 468a mov sl, r1 +1002a8ca: 4616 mov r6, r2 +1002a8cc: 2b00 cmp r3, #0 +1002a8ce: f000 8266 beq.w 1002ad9e +1002a8d2: 2900 cmp r1, #0 +1002a8d4: f000 8263 beq.w 1002ad9e +1002a8d8: f241 23a8 movw r3, #4776 ; 0x12a8 +1002a8dc: 58c5 ldr r5, [r0, r3] +1002a8de: f8d5 40dc ldr.w r4, [r5, #220] ; 0xdc +1002a8e2: f104 0312 add.w r3, r4, #18 +1002a8e6: f8c5 30ec str.w r3, [r5, #236] ; 0xec +1002a8ea: b17a cbz r2, 1002a90c +1002a8ec: f8d5 70e0 ldr.w r7, [r5, #224] ; 0xe0 +1002a8f0: f8d5 b0f0 ldr.w fp, [r5, #240] ; 0xf0 +1002a8f4: 2f00 cmp r7, #0 +1002a8f6: f000 8252 beq.w 1002ad9e +1002a8fa: f1bb 0f00 cmp.w fp, #0 +1002a8fe: f000 824e beq.w 1002ad9e +1002a902: f04f 0c00 mov.w ip, #0 +1002a906: f04f 0901 mov.w r9, #1 +1002a90a: e1f4 b.n 1002acf6 +1002a90c: f8d5 2308 ldr.w r2, [r5, #776] ; 0x308 +1002a910: f104 0b3f add.w fp, r4, #63 ; 0x3f +1002a914: f104 074f add.w r7, r4, #79 ; 0x4f +1002a918: 2a00 cmp r2, #0 +1002a91a: f040 8107 bne.w 1002ab2c +1002a91e: f8d5 2304 ldr.w r2, [r5, #772] ; 0x304 +1002a922: f04f 0901 mov.w r9, #1 +1002a926: 2a00 cmp r2, #0 +1002a928: f040 8095 bne.w 1002aa56 +1002a92c: 4618 mov r0, r3 +1002a92e: 4631 mov r1, r6 +1002a930: f44f 72f7 mov.w r2, #494 ; 0x1ee +1002a934: f8c5 9304 str.w r9, [r5, #772] ; 0x304 +1002a938: f017 fc18 bl 1004216c +1002a93c: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002a940: 7d21 ldrb r1, [r4, #20] +1002a942: 781b ldrb r3, [r3, #0] +1002a944: f001 01f8 and.w r1, r1, #248 ; 0xf8 +1002a948: 7521 strb r1, [r4, #20] +1002a94a: 74a3 strb r3, [r4, #18] +1002a94c: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002a950: f104 0017 add.w r0, r4, #23 +1002a954: 789a ldrb r2, [r3, #2] +1002a956: f002 0207 and.w r2, r2, #7 +1002a95a: 430a orrs r2, r1 +1002a95c: 7522 strb r2, [r4, #20] +1002a95e: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002a962: f002 02c7 and.w r2, r2, #199 ; 0xc7 +1002a966: 789b ldrb r3, [r3, #2] +1002a968: f003 0308 and.w r3, r3, #8 +1002a96c: 4313 orrs r3, r2 +1002a96e: 7523 strb r3, [r4, #20] +1002a970: f8d5 20e4 ldr.w r2, [r5, #228] ; 0xe4 +1002a974: f003 030f and.w r3, r3, #15 +1002a978: 7892 ldrb r2, [r2, #2] +1002a97a: f012 0f30 tst.w r2, #48 ; 0x30 +1002a97e: bf0c ite eq +1002a980: 2200 moveq r2, #0 +1002a982: 2240 movne r2, #64 ; 0x40 +1002a984: 4313 orrs r3, r2 +1002a986: 7523 strb r3, [r4, #20] +1002a988: 7ce3 ldrb r3, [r4, #19] +1002a98a: ea43 0309 orr.w r3, r3, r9 +1002a98e: 74e3 strb r3, [r4, #19] +1002a990: f8d5 20e4 ldr.w r2, [r5, #228] ; 0xe4 +1002a994: f023 0302 bic.w r3, r3, #2 +1002a998: 7852 ldrb r2, [r2, #1] +1002a99a: f002 0202 and.w r2, r2, #2 +1002a99e: 4313 orrs r3, r2 +1002a9a0: 74e3 strb r3, [r4, #19] +1002a9a2: f8d5 20e4 ldr.w r2, [r5, #228] ; 0xe4 +1002a9a6: f023 0304 bic.w r3, r3, #4 +1002a9aa: 7852 ldrb r2, [r2, #1] +1002a9ac: f002 0204 and.w r2, r2, #4 +1002a9b0: 4313 orrs r3, r2 +1002a9b2: 74e3 strb r3, [r4, #19] +1002a9b4: f8d5 20e4 ldr.w r2, [r5, #228] ; 0xe4 +1002a9b8: f023 0308 bic.w r3, r3, #8 +1002a9bc: 7852 ldrb r2, [r2, #1] +1002a9be: f002 0208 and.w r2, r2, #8 +1002a9c2: 4313 orrs r3, r2 +1002a9c4: 74e3 strb r3, [r4, #19] +1002a9c6: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002a9ca: 2208 movs r2, #8 +1002a9cc: 78db ldrb r3, [r3, #3] +1002a9ce: 7563 strb r3, [r4, #21] +1002a9d0: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002a9d4: 791b ldrb r3, [r3, #4] +1002a9d6: 75a3 strb r3, [r4, #22] +1002a9d8: f8d5 10e4 ldr.w r1, [r5, #228] ; 0xe4 +1002a9dc: 3105 adds r1, #5 +1002a9de: f017 fbbf bl 10042160 +1002a9e2: 6ae9 ldr r1, [r5, #44] ; 0x2c +1002a9e4: 6b2a ldr r2, [r5, #48] ; 0x30 +1002a9e6: f104 001f add.w r0, r4, #31 +1002a9ea: f017 fbb9 bl 10042160 +1002a9ee: 4631 mov r1, r6 +1002a9f0: 2210 movs r2, #16 +1002a9f2: a808 add r0, sp, #32 +1002a9f4: f017 fbba bl 1004216c +1002a9f8: 4658 mov r0, fp +1002a9fa: a908 add r1, sp, #32 +1002a9fc: 2210 movs r2, #16 +1002a9fe: f017 fbaf bl 10042160 +1002aa02: 4631 mov r1, r6 +1002aa04: 2208 movs r2, #8 +1002aa06: a804 add r0, sp, #16 +1002aa08: f017 fbb0 bl 1004216c +1002aa0c: 4638 mov r0, r7 +1002aa0e: a904 add r1, sp, #16 +1002aa10: 2208 movs r2, #8 +1002aa12: f017 fba5 bl 10042160 +1002aa16: 4631 mov r1, r6 +1002aa18: 2208 movs r2, #8 +1002aa1a: a806 add r0, sp, #24 +1002aa1c: f017 fba6 bl 1004216c +1002aa20: f508 5788 add.w r7, r8, #4352 ; 0x1100 +1002aa24: a906 add r1, sp, #24 +1002aa26: 2208 movs r2, #8 +1002aa28: f104 0057 add.w r0, r4, #87 ; 0x57 +1002aa2c: f017 fb98 bl 10042160 +1002aa30: f897 3045 ldrb.w r3, [r7, #69] ; 0x45 +1002aa34: f104 0071 add.w r0, r4, #113 ; 0x71 +1002aa38: f884 306f strb.w r3, [r4, #111] ; 0x6f +1002aa3c: 6c7b ldr r3, [r7, #68] ; 0x44 +1002aa3e: 370c adds r7, #12 +1002aa40: f884 3070 strb.w r3, [r4, #112] ; 0x70 +1002aa44: 6b79 ldr r1, [r7, #52] ; 0x34 +1002aa46: 6bba ldr r2, [r7, #56] ; 0x38 +1002aa48: f017 fb8a bl 10042160 +1002aa4c: 6bbf ldr r7, [r7, #56] ; 0x38 +1002aa4e: f107 0b5f add.w fp, r7, #95 ; 0x5f +1002aa52: 3771 adds r7, #113 ; 0x71 +1002aa54: e068 b.n 1002ab28 +1002aa56: 4618 mov r0, r3 +1002aa58: 4631 mov r1, r6 +1002aa5a: f44f 72f7 mov.w r2, #494 ; 0x1ee +1002aa5e: f8c5 9308 str.w r9, [r5, #776] ; 0x308 +1002aa62: f8c5 6304 str.w r6, [r5, #772] ; 0x304 +1002aa66: f017 fb81 bl 1004216c +1002aa6a: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002aa6e: 7d22 ldrb r2, [r4, #20] +1002aa70: 781b ldrb r3, [r3, #0] +1002aa72: f002 02f8 and.w r2, r2, #248 ; 0xf8 +1002aa76: 7522 strb r2, [r4, #20] +1002aa78: 74a3 strb r3, [r4, #18] +1002aa7a: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002aa7e: f104 0017 add.w r0, r4, #23 +1002aa82: 789b ldrb r3, [r3, #2] +1002aa84: f003 0307 and.w r3, r3, #7 +1002aa88: 4313 orrs r3, r2 +1002aa8a: 7523 strb r3, [r4, #20] +1002aa8c: f8d5 20e4 ldr.w r2, [r5, #228] ; 0xe4 +1002aa90: f003 0307 and.w r3, r3, #7 +1002aa94: 7892 ldrb r2, [r2, #2] +1002aa96: f002 0208 and.w r2, r2, #8 +1002aa9a: 4313 orrs r3, r2 +1002aa9c: 7523 strb r3, [r4, #20] +1002aa9e: 7ce3 ldrb r3, [r4, #19] +1002aaa0: f043 0301 orr.w r3, r3, #1 +1002aaa4: 74e3 strb r3, [r4, #19] +1002aaa6: f8d5 20e4 ldr.w r2, [r5, #228] ; 0xe4 +1002aaaa: f003 03f1 and.w r3, r3, #241 ; 0xf1 +1002aaae: 7852 ldrb r2, [r2, #1] +1002aab0: f002 0202 and.w r2, r2, #2 +1002aab4: 4313 orrs r3, r2 +1002aab6: 74e3 strb r3, [r4, #19] +1002aab8: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002aabc: 2208 movs r2, #8 +1002aabe: 78db ldrb r3, [r3, #3] +1002aac0: 7563 strb r3, [r4, #21] +1002aac2: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002aac6: 791b ldrb r3, [r3, #4] +1002aac8: 75a3 strb r3, [r4, #22] +1002aaca: f8d5 10e4 ldr.w r1, [r5, #228] ; 0xe4 +1002aace: 3105 adds r1, #5 +1002aad0: f017 fb46 bl 10042160 +1002aad4: 4631 mov r1, r6 +1002aad6: 2210 movs r2, #16 +1002aad8: a808 add r0, sp, #32 +1002aada: f017 fb47 bl 1004216c +1002aade: 4658 mov r0, fp +1002aae0: a908 add r1, sp, #32 +1002aae2: 2210 movs r2, #16 +1002aae4: f017 fb3c bl 10042160 +1002aae8: 4631 mov r1, r6 +1002aaea: 2208 movs r2, #8 +1002aaec: a804 add r0, sp, #16 +1002aaee: f017 fb3d bl 1004216c +1002aaf2: 4638 mov r0, r7 +1002aaf4: a904 add r1, sp, #16 +1002aaf6: 2208 movs r2, #8 +1002aaf8: f017 fb32 bl 10042160 +1002aafc: 4631 mov r1, r6 +1002aafe: 2208 movs r2, #8 +1002ab00: a806 add r0, sp, #24 +1002ab02: f017 fb33 bl 1004216c +1002ab06: f104 0057 add.w r0, r4, #87 ; 0x57 +1002ab0a: a906 add r1, sp, #24 +1002ab0c: 2208 movs r2, #8 +1002ab0e: f017 fb27 bl 10042160 +1002ab12: f04f 0b5f mov.w fp, #95 ; 0x5f +1002ab16: f884 606f strb.w r6, [r4, #111] ; 0x6f +1002ab1a: f884 6070 strb.w r6, [r4, #112] ; 0x70 +1002ab1e: 2771 movs r7, #113 ; 0x71 +1002ab20: f8c5 6310 str.w r6, [r5, #784] ; 0x310 +1002ab24: f8c5 6314 str.w r6, [r5, #788] ; 0x314 +1002ab28: 46b4 mov ip, r6 +1002ab2a: e0e0 b.n 1002acee +1002ab2c: f8d5 230c ldr.w r2, [r5, #780] ; 0x30c +1002ab30: 4618 mov r0, r3 +1002ab32: 4631 mov r1, r6 +1002ab34: 2a00 cmp r2, #0 +1002ab36: d074 beq.n 1002ac22 +1002ab38: f44f 72f7 mov.w r2, #494 ; 0x1ee +1002ab3c: f017 fb16 bl 1004216c +1002ab40: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002ab44: 7d21 ldrb r1, [r4, #20] +1002ab46: 781b ldrb r3, [r3, #0] +1002ab48: f001 01f8 and.w r1, r1, #248 ; 0xf8 +1002ab4c: 7521 strb r1, [r4, #20] +1002ab4e: 74a3 strb r3, [r4, #18] +1002ab50: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002ab54: f104 0017 add.w r0, r4, #23 +1002ab58: 789b ldrb r3, [r3, #2] +1002ab5a: f04f 0901 mov.w r9, #1 +1002ab5e: f003 0307 and.w r3, r3, #7 +1002ab62: 430b orrs r3, r1 +1002ab64: 7523 strb r3, [r4, #20] +1002ab66: f8d5 20e4 ldr.w r2, [r5, #228] ; 0xe4 +1002ab6a: f003 03c7 and.w r3, r3, #199 ; 0xc7 +1002ab6e: 7892 ldrb r2, [r2, #2] +1002ab70: f002 0208 and.w r2, r2, #8 +1002ab74: 431a orrs r2, r3 +1002ab76: f508 5388 add.w r3, r8, #4352 ; 0x1100 +1002ab7a: 7522 strb r2, [r4, #20] +1002ab7c: 330c adds r3, #12 +1002ab7e: f8d3 3188 ldr.w r3, [r3, #392] ; 0x188 +1002ab82: 011b lsls r3, r3, #4 +1002ab84: f003 0330 and.w r3, r3, #48 ; 0x30 +1002ab88: 431a orrs r2, r3 +1002ab8a: 7ce3 ldrb r3, [r4, #19] +1002ab8c: f002 023f and.w r2, r2, #63 ; 0x3f +1002ab90: f023 030c bic.w r3, r3, #12 +1002ab94: f043 0303 orr.w r3, r3, #3 +1002ab98: 7522 strb r2, [r4, #20] +1002ab9a: 74e3 strb r3, [r4, #19] +1002ab9c: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002aba0: 2208 movs r2, #8 +1002aba2: 78db ldrb r3, [r3, #3] +1002aba4: 7563 strb r3, [r4, #21] +1002aba6: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1002abaa: 791b ldrb r3, [r3, #4] +1002abac: 75a3 strb r3, [r4, #22] +1002abae: f8d5 10e4 ldr.w r1, [r5, #228] ; 0xe4 +1002abb2: 3105 adds r1, #5 +1002abb4: f017 fad4 bl 10042160 +1002abb8: 4631 mov r1, r6 +1002abba: 2220 movs r2, #32 +1002abbc: a80c add r0, sp, #48 ; 0x30 +1002abbe: f017 fad5 bl 1004216c +1002abc2: a90c add r1, sp, #48 ; 0x30 +1002abc4: 2220 movs r2, #32 +1002abc6: f104 001f add.w r0, r4, #31 +1002abca: f017 fac9 bl 10042160 +1002abce: 4631 mov r1, r6 +1002abd0: 2210 movs r2, #16 +1002abd2: a808 add r0, sp, #32 +1002abd4: f017 faca bl 1004216c +1002abd8: 4658 mov r0, fp +1002abda: a908 add r1, sp, #32 +1002abdc: 2210 movs r2, #16 +1002abde: f017 fabf bl 10042160 +1002abe2: 4631 mov r1, r6 +1002abe4: 2208 movs r2, #8 +1002abe6: a804 add r0, sp, #16 +1002abe8: f017 fac0 bl 1004216c +1002abec: 4638 mov r0, r7 +1002abee: a904 add r1, sp, #16 +1002abf0: 2208 movs r2, #8 +1002abf2: f017 fab5 bl 10042160 +1002abf6: 4631 mov r1, r6 +1002abf8: 2208 movs r2, #8 +1002abfa: a806 add r0, sp, #24 +1002abfc: f017 fab6 bl 1004216c +1002ac00: f104 0057 add.w r0, r4, #87 ; 0x57 +1002ac04: a906 add r1, sp, #24 +1002ac06: 2208 movs r2, #8 +1002ac08: f017 faaa bl 10042160 +1002ac0c: f04f 0b5f mov.w fp, #95 ; 0x5f +1002ac10: f884 606f strb.w r6, [r4, #111] ; 0x6f +1002ac14: f884 6070 strb.w r6, [r4, #112] ; 0x70 +1002ac18: 2771 movs r7, #113 ; 0x71 +1002ac1a: f8c5 630c str.w r6, [r5, #780] ; 0x30c +1002ac1e: 46b4 mov ip, r6 +1002ac20: e065 b.n 1002acee +1002ac22: f44f 72f7 mov.w r2, #494 ; 0x1ee +1002ac26: 9301 str r3, [sp, #4] +1002ac28: f017 faa0 bl 1004216c +1002ac2c: 68aa ldr r2, [r5, #8] +1002ac2e: 9b01 ldr r3, [sp, #4] +1002ac30: f012 0f02 tst.w r2, #2 +1002ac34: bf14 ite ne +1002ac36: 2202 movne r2, #2 +1002ac38: 22fe moveq r2, #254 ; 0xfe +1002ac3a: 74a2 strb r2, [r4, #18] +1002ac3c: f508 5288 add.w r2, r8, #4352 ; 0x1100 +1002ac40: 320c adds r2, #12 +1002ac42: f892 20bc ldrb.w r2, [r2, #188] ; 0xbc +1002ac46: 2a04 cmp r2, #4 +1002ac48: d007 beq.n 1002ac5a +1002ac4a: 7c2a ldrb r2, [r5, #16] +1002ac4c: 2a04 cmp r2, #4 +1002ac4e: bf14 ite ne +1002ac50: f04f 0901 movne.w r9, #1 +1002ac54: f04f 0902 moveq.w r9, #2 +1002ac58: e001 b.n 1002ac5e +1002ac5a: f04f 0902 mov.w r9, #2 +1002ac5e: 7ce2 ldrb r2, [r4, #19] +1002ac60: 2700 movs r7, #0 +1002ac62: f042 020f orr.w r2, r2, #15 +1002ac66: 7567 strb r7, [r4, #21] +1002ac68: 75a7 strb r7, [r4, #22] +1002ac6a: f884 9014 strb.w r9, [r4, #20] +1002ac6e: 74e2 strb r2, [r4, #19] +1002ac70: 4618 mov r0, r3 +1002ac72: f8d5 1310 ldr.w r1, [r5, #784] ; 0x310 +1002ac76: f8d5 2314 ldr.w r2, [r5, #788] ; 0x314 +1002ac7a: f7ff f808 bl 10029c8e +1002ac7e: f505 7044 add.w r0, r5, #784 ; 0x310 +1002ac82: f7ff f813 bl 10029cac +1002ac86: 4639 mov r1, r7 +1002ac88: 2220 movs r2, #32 +1002ac8a: a80c add r0, sp, #48 ; 0x30 +1002ac8c: f017 fa6e bl 1004216c +1002ac90: a90c add r1, sp, #48 ; 0x30 +1002ac92: 2220 movs r2, #32 +1002ac94: f104 001f add.w r0, r4, #31 +1002ac98: f017 fa62 bl 10042160 +1002ac9c: 4639 mov r1, r7 +1002ac9e: 2210 movs r2, #16 +1002aca0: a808 add r0, sp, #32 +1002aca2: f017 fa63 bl 1004216c +1002aca6: 4658 mov r0, fp +1002aca8: a908 add r1, sp, #32 +1002acaa: 2210 movs r2, #16 +1002acac: f017 fa58 bl 10042160 +1002acb0: 4639 mov r1, r7 +1002acb2: 2208 movs r2, #8 +1002acb4: a804 add r0, sp, #16 +1002acb6: f017 fa59 bl 1004216c +1002acba: a904 add r1, sp, #16 +1002acbc: 2208 movs r2, #8 +1002acbe: f104 004f add.w r0, r4, #79 ; 0x4f +1002acc2: f017 fa4d bl 10042160 +1002acc6: 4639 mov r1, r7 +1002acc8: 2208 movs r2, #8 +1002acca: a806 add r0, sp, #24 +1002accc: f017 fa4e bl 1004216c +1002acd0: f104 0057 add.w r0, r4, #87 ; 0x57 +1002acd4: a906 add r1, sp, #24 +1002acd6: 2208 movs r2, #8 +1002acd8: f017 fa42 bl 10042160 +1002acdc: f04f 0b5f mov.w fp, #95 ; 0x5f +1002ace0: f884 706f strb.w r7, [r4, #111] ; 0x6f +1002ace4: f884 7070 strb.w r7, [r4, #112] ; 0x70 +1002ace8: f04f 0c01 mov.w ip, #1 +1002acec: 2771 movs r7, #113 ; 0x71 +1002acee: f8c5 70e0 str.w r7, [r5, #224] ; 0xe0 +1002acf2: f8c5 b0f0 str.w fp, [r5, #240] ; 0xf0 +1002acf6: f50a 7184 add.w r1, sl, #264 ; 0x108 +1002acfa: 2206 movs r2, #6 +1002acfc: 4620 mov r0, r4 +1002acfe: f8cd c004 str.w ip, [sp, #4] +1002ad02: f017 fa2d bl 10042160 +1002ad06: f508 51a0 add.w r1, r8, #5120 ; 0x1400 +1002ad0a: 3109 adds r1, #9 +1002ad0c: 2206 movs r2, #6 +1002ad0e: 1da0 adds r0, r4, #6 +1002ad10: f017 fa26 bl 10042160 +1002ad14: f648 008e movw r0, #34958 ; 0x888e +1002ad18: f7f1 ffa4 bl 1001cc64 <_htons> +1002ad1c: 2301 movs r3, #1 +1002ad1e: 73a3 strb r3, [r4, #14] +1002ad20: 2303 movs r3, #3 +1002ad22: 81a0 strh r0, [r4, #12] +1002ad24: 73e3 strb r3, [r4, #15] +1002ad26: fa1f f08b uxth.w r0, fp +1002ad2a: f7f1 ff9b bl 1001cc64 <_htons> +1002ad2e: f8dd c004 ldr.w ip, [sp, #4] +1002ad32: 8220 strh r0, [r4, #16] +1002ad34: b9a6 cbnz r6, 1002ad60 +1002ad36: f105 0394 add.w r3, r5, #148 ; 0x94 +1002ad3a: a902 add r1, sp, #8 +1002ad3c: f1bc 0f00 cmp.w ip, #0 +1002ad40: d004 beq.n 1002ad4c +1002ad42: 9402 str r4, [sp, #8] +1002ad44: 9703 str r7, [sp, #12] +1002ad46: c903 ldmia r1, {r0, r1} +1002ad48: 464a mov r2, r9 +1002ad4a: e007 b.n 1002ad5c +1002ad4c: f8d5 20e4 ldr.w r2, [r5, #228] ; 0xe4 +1002ad50: 9402 str r4, [sp, #8] +1002ad52: 7892 ldrb r2, [r2, #2] +1002ad54: 9703 str r7, [sp, #12] +1002ad56: f002 0207 and.w r2, r2, #7 +1002ad5a: c903 ldmia r1, {r0, r1} +1002ad5c: f7ff f8ac bl 10029eb8 +1002ad60: f44f 7000 mov.w r0, #512 ; 0x200 +1002ad64: 214a movs r1, #74 ; 0x4a +1002ad66: f010 fb26 bl 1003b3b6 +1002ad6a: 4606 mov r6, r0 +1002ad6c: b1b8 cbz r0, 1002ad9e +1002ad6e: 463a mov r2, r7 +1002ad70: 4621 mov r1, r4 +1002ad72: 6900 ldr r0, [r0, #16] +1002ad74: f017 f9f4 bl 10042160 +1002ad78: 4639 mov r1, r7 +1002ad7a: 4630 mov r0, r6 +1002ad7c: f010 fafa bl 1003b374 +1002ad80: f508 53bc add.w r3, r8, #6016 ; 0x1780 +1002ad84: 6819 ldr r1, [r3, #0] +1002ad86: 4630 mov r0, r6 +1002ad88: 6a8b ldr r3, [r1, #40] ; 0x28 +1002ad8a: 4798 blx r3 +1002ad8c: f8d5 3308 ldr.w r3, [r5, #776] ; 0x308 +1002ad90: b92b cbnz r3, 1002ad9e +1002ad92: f505 703d add.w r0, r5, #756 ; 0x2f4 +1002ad96: f44f 717a mov.w r1, #1000 ; 0x3e8 +1002ad9a: f010 fdb5 bl 1003b908 +1002ad9e: b015 add sp, #84 ; 0x54 +1002ada0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1002ada4 : +1002ada4: b573 push {r0, r1, r4, r5, r6, lr} +1002ada6: 4605 mov r5, r0 +1002ada8: 2800 cmp r0, #0 +1002adaa: d03c beq.n 1002ae26 +1002adac: 6944 ldr r4, [r0, #20] +1002adae: a901 add r1, sp, #4 +1002adb0: f104 060c add.w r6, r4, #12 +1002adb4: 4630 mov r0, r6 +1002adb6: f7f2 f89f bl 1001cef8 +1002adba: 682b ldr r3, [r5, #0] +1002adbc: b303 cbz r3, 1002ae00 +1002adbe: 6923 ldr r3, [r4, #16] +1002adc0: 06d8 lsls r0, r3, #27 +1002adc2: d522 bpl.n 1002ae0a +1002adc4: f8d5 30fc ldr.w r3, [r5, #252] ; 0xfc +1002adc8: f203 138b addw r3, r3, #395 ; 0x18b +1002adcc: eb04 0383 add.w r3, r4, r3, lsl #2 +1002add0: f8d3 3c78 ldr.w r3, [r3, #3192] ; 0xc78 +1002add4: b1a3 cbz r3, 1002ae00 +1002add6: f8d3 2300 ldr.w r2, [r3, #768] ; 0x300 +1002adda: 3201 adds r2, #1 +1002addc: 2a05 cmp r2, #5 +1002adde: f8c3 2300 str.w r2, [r3, #768] ; 0x300 +1002ade2: dd05 ble.n 1002adf0 +1002ade4: 4620 mov r0, r4 +1002ade6: 4629 mov r1, r5 +1002ade8: 220f movs r2, #15 +1002adea: f7fe ffc3 bl 10029d74 +1002adee: e007 b.n 1002ae00 +1002adf0: 6923 ldr r3, [r4, #16] +1002adf2: 06d9 lsls r1, r3, #27 +1002adf4: d50f bpl.n 1002ae16 +1002adf6: 4620 mov r0, r4 +1002adf8: 4629 mov r1, r5 +1002adfa: 2201 movs r2, #1 +1002adfc: f7ff fa02 bl 1002a204 +1002ae00: 4630 mov r0, r6 +1002ae02: a901 add r1, sp, #4 +1002ae04: f7f2 f880 bl 1001cf08 +1002ae08: e00d b.n 1002ae26 +1002ae0a: 071a lsls r2, r3, #28 +1002ae0c: d5f8 bpl.n 1002ae00 +1002ae0e: f241 23a8 movw r3, #4776 ; 0x12a8 +1002ae12: 58e3 ldr r3, [r4, r3] +1002ae14: e7de b.n 1002add4 +1002ae16: 071b lsls r3, r3, #28 +1002ae18: d5f2 bpl.n 1002ae00 +1002ae1a: 4620 mov r0, r4 +1002ae1c: 4629 mov r1, r5 +1002ae1e: 2201 movs r2, #1 +1002ae20: f7ff fd4c bl 1002a8bc +1002ae24: e7ec b.n 1002ae00 +1002ae26: b002 add sp, #8 +1002ae28: bd70 pop {r4, r5, r6, pc} + ... + +1002ae2c : +1002ae2c: f8d1 30fc ldr.w r3, [r1, #252] ; 0xfc +1002ae30: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002ae34: f203 138b addw r3, r3, #395 ; 0x18b +1002ae38: eb00 0383 add.w r3, r0, r3, lsl #2 +1002ae3c: f8d3 4c78 ldr.w r4, [r3, #3192] ; 0xc78 +1002ae40: b086 sub sp, #24 +1002ae42: f8d4 30d4 ldr.w r3, [r4, #212] ; 0xd4 +1002ae46: 4605 mov r5, r0 +1002ae48: 7bda ldrb r2, [r3, #15] +1002ae4a: 460e mov r6, r1 +1002ae4c: 2a03 cmp r2, #3 +1002ae4e: f040 80a1 bne.w 1002af94 +1002ae52: f103 0212 add.w r2, r3, #18 +1002ae56: f8c4 20e4 str.w r2, [r4, #228] ; 0xe4 +1002ae5a: 7cda ldrb r2, [r3, #19] +1002ae5c: f002 0105 and.w r1, r2, #5 +1002ae60: 2905 cmp r1, #5 +1002ae62: d102 bne.n 1002ae6a +1002ae64: 0711 lsls r1, r2, #28 +1002ae66: f100 8095 bmi.w 1002af94 +1002ae6a: 7d1b ldrb r3, [r3, #20] +1002ae6c: 071a lsls r2, r3, #28 +1002ae6e: f140 8091 bpl.w 1002af94 +1002ae72: 6823 ldr r3, [r4, #0] +1002ae74: 2b01 cmp r3, #1 +1002ae76: d002 beq.n 1002ae7e +1002ae78: 2b02 cmp r3, #2 +1002ae7a: d047 beq.n 1002af0c +1002ae7c: e08a b.n 1002af94 +1002ae7e: 4847 ldr r0, [pc, #284] ; (1002af9c ) +1002ae80: f017 f942 bl 10042108 +1002ae84: 4b46 ldr r3, [pc, #280] ; (1002afa0 ) +1002ae86: f8d3 01c0 ldr.w r0, [r3, #448] ; 0x1c0 +1002ae8a: f017 f93d bl 10042108 +1002ae8e: f8d4 00e4 ldr.w r0, [r4, #228] ; 0xe4 +1002ae92: a904 add r1, sp, #16 +1002ae94: f7fe fecb bl 10029c2e +1002ae98: a804 add r0, sp, #16 +1002ae9a: f7fe ff07 bl 10029cac +1002ae9e: 6962 ldr r2, [r4, #20] +1002aea0: 9b04 ldr r3, [sp, #16] +1002aea2: 429a cmp r2, r3 +1002aea4: d176 bne.n 1002af94 +1002aea6: 69a2 ldr r2, [r4, #24] +1002aea8: 9b05 ldr r3, [sp, #20] +1002aeaa: 429a cmp r2, r3 +1002aeac: d172 bne.n 1002af94 +1002aeae: f504 703d add.w r0, r4, #756 ; 0x2f4 +1002aeb2: f010 fd2b bl 1003b90c +1002aeb6: f8d4 10e4 ldr.w r1, [r4, #228] ; 0xe4 +1002aeba: 6ae0 ldr r0, [r4, #44] ; 0x2c +1002aebc: 310d adds r1, #13 +1002aebe: 2220 movs r2, #32 +1002aec0: f7f1 ff74 bl 1001cdac +1002aec4: f104 0374 add.w r3, r4, #116 ; 0x74 +1002aec8: f8d4 00d4 ldr.w r0, [r4, #212] ; 0xd4 +1002aecc: 9300 str r3, [sp, #0] +1002aece: 2320 movs r3, #32 +1002aed0: 9301 str r3, [sp, #4] +1002aed2: f104 0794 add.w r7, r4, #148 ; 0x94 +1002aed6: 2340 movs r3, #64 ; 0x40 +1002aed8: 9702 str r7, [sp, #8] +1002aeda: 9303 str r3, [sp, #12] +1002aedc: 1d81 adds r1, r0, #6 +1002aede: 6a62 ldr r2, [r4, #36] ; 0x24 +1002aee0: 6ae3 ldr r3, [r4, #44] ; 0x2c +1002aee2: f018 fd6d bl 100439c0 <__rom_psk_CalcPTK_veneer> +1002aee6: f104 03d4 add.w r3, r4, #212 ; 0xd4 +1002aeea: 463a mov r2, r7 +1002aeec: e893 0003 ldmia.w r3, {r0, r1} +1002aef0: f7fe ffa2 bl 10029e38 +1002aef4: 4607 mov r7, r0 +1002aef6: b388 cbz r0, 1002af5c +1002aef8: 2200 movs r2, #0 +1002aefa: 2302 movs r3, #2 +1002aefc: f8c4 2300 str.w r2, [r4, #768] ; 0x300 +1002af00: 6023 str r3, [r4, #0] +1002af02: 4628 mov r0, r5 +1002af04: 4631 mov r1, r6 +1002af06: f7ff f97d bl 1002a204 +1002af0a: e043 b.n 1002af94 +1002af0c: 4823 ldr r0, [pc, #140] ; (1002af9c ) +1002af0e: f017 f8fb bl 10042108 +1002af12: 4b23 ldr r3, [pc, #140] ; (1002afa0 ) +1002af14: f8d3 01c4 ldr.w r0, [r3, #452] ; 0x1c4 +1002af18: f017 f8f6 bl 10042108 +1002af1c: f8d4 00e4 ldr.w r0, [r4, #228] ; 0xe4 +1002af20: a904 add r1, sp, #16 +1002af22: f8d4 801c ldr.w r8, [r4, #28] +1002af26: 6a27 ldr r7, [r4, #32] +1002af28: f7fe fe81 bl 10029c2e +1002af2c: 9b04 ldr r3, [sp, #16] +1002af2e: 4598 cmp r8, r3 +1002af30: d106 bne.n 1002af40 +1002af32: 9b05 ldr r3, [sp, #20] +1002af34: 1afb subs r3, r7, r3 +1002af36: 425f negs r7, r3 +1002af38: 415f adcs r7, r3 +1002af3a: 2f00 cmp r7, #0 +1002af3c: d1b7 bne.n 1002aeae +1002af3e: e000 b.n 1002af42 +1002af40: 2700 movs r7, #0 +1002af42: f504 703d add.w r0, r4, #756 ; 0x2f4 +1002af46: f010 fce1 bl 1003b90c +1002af4a: f104 03d4 add.w r3, r4, #212 ; 0xd4 +1002af4e: e893 0003 ldmia.w r3, {r0, r1} +1002af52: f104 0294 add.w r2, r4, #148 ; 0x94 +1002af56: f7fe ff6f bl 10029e38 +1002af5a: b930 cbnz r0, 1002af6a +1002af5c: 4628 mov r0, r5 +1002af5e: 4631 mov r1, r6 +1002af60: 220e movs r2, #14 +1002af62: f7fe ff07 bl 10029d74 +1002af66: 6027 str r7, [r4, #0] +1002af68: e014 b.n 1002af94 +1002af6a: 4631 mov r1, r6 +1002af6c: 4628 mov r0, r5 +1002af6e: f7fe fe0a bl 10029b86 +1002af72: f8c6 7110 str.w r7, [r6, #272] ; 0x110 +1002af76: 2303 movs r3, #3 +1002af78: 2601 movs r6, #1 +1002af7a: e884 0048 stmia.w r4, {r3, r6} +1002af7e: f505 5488 add.w r4, r5, #4352 ; 0x1100 +1002af82: 6b23 ldr r3, [r4, #48] ; 0x30 +1002af84: 340c adds r4, #12 +1002af86: b92b cbnz r3, 1002af94 +1002af88: 6b23 ldr r3, [r4, #48] ; 0x30 +1002af8a: b91b cbnz r3, 1002af94 +1002af8c: 4628 mov r0, r5 +1002af8e: f7ff f87b bl 1002a088 +1002af92: 6326 str r6, [r4, #48] ; 0x30 +1002af94: b006 add sp, #24 +1002af96: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002af9a: bf00 nop +1002af9c: 1004b9eb .word 0x1004b9eb +1002afa0: 1004da10 .word 0x1004da10 + +1002afa4 : +1002afa4: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1002afa8: f100 080c add.w r8, r0, #12 +1002afac: b0cc sub sp, #304 ; 0x130 +1002afae: 460f mov r7, r1 +1002afb0: 4605 mov r5, r0 +1002afb2: a907 add r1, sp, #28 +1002afb4: 4640 mov r0, r8 +1002afb6: f7f1 ff9f bl 1001cef8 +1002afba: 683b ldr r3, [r7, #0] +1002afbc: 2b00 cmp r3, #0 +1002afbe: f000 81c5 beq.w 1002b34c +1002afc2: f241 23a8 movw r3, #4776 ; 0x12a8 +1002afc6: 58ec ldr r4, [r5, r3] +1002afc8: f8d4 30d4 ldr.w r3, [r4, #212] ; 0xd4 +1002afcc: 7bda ldrb r2, [r3, #15] +1002afce: 2a03 cmp r2, #3 +1002afd0: f040 81bc bne.w 1002b34c +1002afd4: f103 0212 add.w r2, r3, #18 +1002afd8: f8c4 20e4 str.w r2, [r4, #228] ; 0xe4 +1002afdc: 7d19 ldrb r1, [r3, #20] +1002afde: f001 0108 and.w r1, r1, #8 +1002afe2: f001 06ff and.w r6, r1, #255 ; 0xff +1002afe6: 2900 cmp r1, #0 +1002afe8: f000 8131 beq.w 1002b24e +1002afec: 7cdb ldrb r3, [r3, #19] +1002afee: 07db lsls r3, r3, #31 +1002aff0: d45c bmi.n 1002b0ac +1002aff2: f8d4 3308 ldr.w r3, [r4, #776] ; 0x308 +1002aff6: b913 cbnz r3, 1002affe +1002aff8: f8d4 3304 ldr.w r3, [r4, #772] ; 0x304 +1002affc: b15b cbz r3, 1002b016 +1002affe: f04f 33ff mov.w r3, #4294967295 +1002b002: 2200 movs r2, #0 +1002b004: 6163 str r3, [r4, #20] +1002b006: 61a3 str r3, [r4, #24] +1002b008: f505 5388 add.w r3, r5, #4352 ; 0x1100 +1002b00c: f8c4 2304 str.w r2, [r4, #772] ; 0x304 +1002b010: f8c4 2308 str.w r2, [r4, #776] ; 0x308 +1002b014: 63da str r2, [r3, #60] ; 0x3c +1002b016: 6963 ldr r3, [r4, #20] +1002b018: 3301 adds r3, #1 +1002b01a: d13b bne.n 1002b094 +1002b01c: 69a3 ldr r3, [r4, #24] +1002b01e: 3301 adds r3, #1 +1002b020: d138 bne.n 1002b094 +1002b022: f8d5 3c7c ldr.w r3, [r5, #3196] ; 0xc7c +1002b026: f605 4a78 addw sl, r5, #3192 ; 0xc78 +1002b02a: f20a 4994 addw r9, sl, #1172 ; 0x494 +1002b02e: 7423 strb r3, [r4, #16] +1002b030: 4648 mov r0, r9 +1002b032: f7fe fe6f bl 10029d14 +1002b036: 466e mov r6, sp +1002b038: f20a 4e9c addw lr, sl, #1180 ; 0x49c +1002b03c: e8be 000f ldmia.w lr!, {r0, r1, r2, r3} +1002b040: c60f stmia r6!, {r0, r1, r2, r3} +1002b042: e89e 0003 ldmia.w lr, {r0, r1} +1002b046: e886 0003 stmia.w r6, {r0, r1} +1002b04a: f104 012c add.w r1, r4, #44 ; 0x2c +1002b04e: e899 000c ldmia.w r9, {r2, r3} +1002b052: c903 ldmia r1, {r0, r1} +1002b054: f7fe fd48 bl 10029ae8 +1002b058: f8d4 10e4 ldr.w r1, [r4, #228] ; 0xe4 +1002b05c: 6a60 ldr r0, [r4, #36] ; 0x24 +1002b05e: 310d adds r1, #13 +1002b060: 2220 movs r2, #32 +1002b062: f7f1 fea3 bl 1001cdac +1002b066: f104 0374 add.w r3, r4, #116 ; 0x74 +1002b06a: f8d4 00d4 ldr.w r0, [r4, #212] ; 0xd4 +1002b06e: 9300 str r3, [sp, #0] +1002b070: 2320 movs r3, #32 +1002b072: 9301 str r3, [sp, #4] +1002b074: f104 0394 add.w r3, r4, #148 ; 0x94 +1002b078: 9302 str r3, [sp, #8] +1002b07a: 2340 movs r3, #64 ; 0x40 +1002b07c: 9303 str r3, [sp, #12] +1002b07e: 1d81 adds r1, r0, #6 +1002b080: 6a62 ldr r2, [r4, #36] ; 0x24 +1002b082: 6ae3 ldr r3, [r4, #44] ; 0x2c +1002b084: f018 fc9c bl 100439c0 <__rom_psk_CalcPTK_veneer> +1002b088: 4628 mov r0, r5 +1002b08a: 4639 mov r1, r7 +1002b08c: 2200 movs r2, #0 +1002b08e: f7ff fc15 bl 1002a8bc +1002b092: e15b b.n 1002b34c +1002b094: f104 0314 add.w r3, r4, #20 +1002b098: e893 0003 ldmia.w r3, {r0, r1} +1002b09c: f8d4 20e4 ldr.w r2, [r4, #228] ; 0xe4 +1002b0a0: f7fe fddc bl 10029c5c +1002b0a4: 2800 cmp r0, #0 +1002b0a6: f040 8151 bne.w 1002b34c +1002b0aa: e7ba b.n 1002b022 +1002b0ac: 2300 movs r3, #0 +1002b0ae: f8c4 3300 str.w r3, [r4, #768] ; 0x300 +1002b0b2: f895 286d ldrb.w r2, [r5, #2157] ; 0x86d +1002b0b6: b10a cbz r2, 1002b0bc +1002b0b8: f885 37e2 strb.w r3, [r5, #2018] ; 0x7e2 +1002b0bc: f8d4 3304 ldr.w r3, [r4, #772] ; 0x304 +1002b0c0: 2b00 cmp r3, #0 +1002b0c2: f000 8143 beq.w 1002b34c +1002b0c6: f504 703d add.w r0, r4, #756 ; 0x2f4 +1002b0ca: f010 fc1f bl 1003b90c +1002b0ce: f8d4 00e4 ldr.w r0, [r4, #228] ; 0xe4 +1002b0d2: a90a add r1, sp, #40 ; 0x28 +1002b0d4: f7fe fdab bl 10029c2e +1002b0d8: 6963 ldr r3, [r4, #20] +1002b0da: 3301 adds r3, #1 +1002b0dc: d10e bne.n 1002b0fc +1002b0de: 69a3 ldr r3, [r4, #24] +1002b0e0: 3301 adds r3, #1 +1002b0e2: d10b bne.n 1002b0fc +1002b0e4: f8d4 00e4 ldr.w r0, [r4, #228] ; 0xe4 +1002b0e8: 6a61 ldr r1, [r4, #36] ; 0x24 +1002b0ea: 300d adds r0, #13 +1002b0ec: 2220 movs r2, #32 +1002b0ee: f017 f831 bl 10042154 +1002b0f2: 4681 mov r9, r0 +1002b0f4: 2800 cmp r0, #0 +1002b0f6: f040 8129 bne.w 1002b34c +1002b0fa: e00a b.n 1002b112 +1002b0fc: f104 0314 add.w r3, r4, #20 +1002b100: e893 0003 ldmia.w r3, {r0, r1} +1002b104: f8d4 20e4 ldr.w r2, [r4, #228] ; 0xe4 +1002b108: f7fe fda8 bl 10029c5c +1002b10c: 2800 cmp r0, #0 +1002b10e: d0e9 beq.n 1002b0e4 +1002b110: e11c b.n 1002b34c +1002b112: f104 03d4 add.w r3, r4, #212 ; 0xd4 +1002b116: e893 0003 ldmia.w r3, {r0, r1} +1002b11a: f104 0294 add.w r2, r4, #148 ; 0x94 +1002b11e: f7fe fe8b bl 10029e38 +1002b122: 2800 cmp r0, #0 +1002b124: f000 8112 beq.w 1002b34c +1002b128: 9b0a ldr r3, [sp, #40] ; 0x28 +1002b12a: f8d4 10e4 ldr.w r1, [r4, #228] ; 0xe4 +1002b12e: 6163 str r3, [r4, #20] +1002b130: 9b0b ldr r3, [sp, #44] ; 0x2c +1002b132: 61a3 str r3, [r4, #24] +1002b134: 780b ldrb r3, [r1, #0] +1002b136: 2b02 cmp r3, #2 +1002b138: d159 bne.n 1002b1ee +1002b13a: 4b88 ldr r3, [pc, #544] ; (1002b35c ) +1002b13c: ae0c add r6, sp, #48 ; 0x30 +1002b13e: f853 0b04 ldr.w r0, [r3], #4 +1002b142: 315f adds r1, #95 ; 0x5f +1002b144: 9008 str r0, [sp, #32] +1002b146: 6818 ldr r0, [r3, #0] +1002b148: 9009 str r0, [sp, #36] ; 0x24 +1002b14a: f811 3c01 ldrb.w r3, [r1, #-1] +1002b14e: f811 2c02 ldrb.w r2, [r1, #-2] +1002b152: 4620 mov r0, r4 +1002b154: eb03 2202 add.w r2, r3, r2, lsl #8 +1002b158: 2310 movs r3, #16 +1002b15a: 9300 str r3, [sp, #0] +1002b15c: 9601 str r6, [sp, #4] +1002b15e: b292 uxth r2, r2 +1002b160: f104 03a4 add.w r3, r4, #164 ; 0xa4 +1002b164: f7fe fed8 bl 10029f18 +1002b168: 2800 cmp r0, #0 +1002b16a: f000 80ef beq.w 1002b34c +1002b16e: 7833 ldrb r3, [r6, #0] +1002b170: 2b30 cmp r3, #48 ; 0x30 +1002b172: d158 bne.n 1002b226 +1002b174: 7874 ldrb r4, [r6, #1] +1002b176: 3402 adds r4, #2 +1002b178: 5d33 ldrb r3, [r6, r4] +1002b17a: 2b30 cmp r3, #48 ; 0x30 +1002b17c: f000 80e6 beq.w 1002b34c +1002b180: 2bdd cmp r3, #221 ; 0xdd +1002b182: d001 beq.n 1002b188 +1002b184: 2400 movs r4, #0 +1002b186: e026 b.n 1002b1d6 +1002b188: 4434 add r4, r6 +1002b18a: 1ca0 adds r0, r4, #2 +1002b18c: a909 add r1, sp, #36 ; 0x24 +1002b18e: 2204 movs r2, #4 +1002b190: f016 ffe0 bl 10042154 +1002b194: b910 cbnz r0, 1002b19c +1002b196: 7863 ldrb r3, [r4, #1] +1002b198: 3302 adds r3, #2 +1002b19a: 441c add r4, r3 +1002b19c: 1ca0 adds r0, r4, #2 +1002b19e: a908 add r1, sp, #32 +1002b1a0: 2204 movs r2, #4 +1002b1a2: f016 ffd7 bl 10042154 +1002b1a6: 2800 cmp r0, #0 +1002b1a8: d1ec bne.n 1002b184 +1002b1aa: 79a0 ldrb r0, [r4, #6] +1002b1ac: 7862 ldrb r2, [r4, #1] +1002b1ae: f505 5988 add.w r9, r5, #4352 ; 0x1100 +1002b1b2: f000 0003 and.w r0, r0, #3 +1002b1b6: f8c9 0194 str.w r0, [r9, #404] ; 0x194 +1002b1ba: f109 090c add.w r9, r9, #12 +1002b1be: 3a06 subs r2, #6 +1002b1c0: eb09 1040 add.w r0, r9, r0, lsl #5 +1002b1c4: f104 0108 add.w r1, r4, #8 +1002b1c8: 30e8 adds r0, #232 ; 0xe8 +1002b1ca: b2d2 uxtb r2, r2 +1002b1cc: 2401 movs r4, #1 +1002b1ce: f016 ffc7 bl 10042160 +1002b1d2: f8c9 4030 str.w r4, [r9, #48] ; 0x30 +1002b1d6: 79f3 ldrb r3, [r6, #7] +1002b1d8: 2b02 cmp r3, #2 +1002b1da: d001 beq.n 1002b1e0 +1002b1dc: 2b04 cmp r3, #4 +1002b1de: d123 bne.n 1002b228 +1002b1e0: f505 5288 add.w r2, r5, #4352 ; 0x1100 +1002b1e4: f882 30c8 strb.w r3, [r2, #200] ; 0xc8 +1002b1e8: f8c5 3cd4 str.w r3, [r5, #3284] ; 0xcd4 +1002b1ec: e01c b.n 1002b228 +1002b1ee: 2bfe cmp r3, #254 ; 0xfe +1002b1f0: d119 bne.n 1002b226 +1002b1f2: 4649 mov r1, r9 +1002b1f4: 22ff movs r2, #255 ; 0xff +1002b1f6: a80c add r0, sp, #48 ; 0x30 +1002b1f8: f016 ffb8 bl 1004216c +1002b1fc: f8d4 10e4 ldr.w r1, [r4, #228] ; 0xe4 +1002b200: a80c add r0, sp, #48 ; 0x30 +1002b202: 315f adds r1, #95 ; 0x5f +1002b204: 22ff movs r2, #255 ; 0xff +1002b206: f016 ffab bl 10042160 +1002b20a: f89d 303b ldrb.w r3, [sp, #59] ; 0x3b +1002b20e: 2b02 cmp r3, #2 +1002b210: d001 beq.n 1002b216 +1002b212: 2b04 cmp r3, #4 +1002b214: d105 bne.n 1002b222 +1002b216: f505 5288 add.w r2, r5, #4352 ; 0x1100 +1002b21a: f882 30c8 strb.w r3, [r2, #200] ; 0xc8 +1002b21e: f8c5 3cd4 str.w r3, [r5, #3284] ; 0xcd4 +1002b222: 2400 movs r4, #0 +1002b224: e000 b.n 1002b228 +1002b226: 464c mov r4, r9 +1002b228: 4628 mov r0, r5 +1002b22a: 4639 mov r1, r7 +1002b22c: 2200 movs r2, #0 +1002b22e: f7ff fb45 bl 1002a8bc +1002b232: 4628 mov r0, r5 +1002b234: 4639 mov r1, r7 +1002b236: f7fe fca6 bl 10029b86 +1002b23a: 2300 movs r3, #0 +1002b23c: f8c7 3110 str.w r3, [r7, #272] ; 0x110 +1002b240: 2c00 cmp r4, #0 +1002b242: f000 8083 beq.w 1002b34c +1002b246: 4628 mov r0, r5 +1002b248: f7fe ff1e bl 1002a088 +1002b24c: e07a b.n 1002b344 +1002b24e: 4b43 ldr r3, [pc, #268] ; (1002b35c ) +1002b250: a90a add r1, sp, #40 ; 0x28 +1002b252: 6818 ldr r0, [r3, #0] +1002b254: 9009 str r0, [sp, #36] ; 0x24 +1002b256: 4610 mov r0, r2 +1002b258: f8c4 6300 str.w r6, [r4, #768] ; 0x300 +1002b25c: f7fe fce7 bl 10029c2e +1002b260: f104 0314 add.w r3, r4, #20 +1002b264: e893 0003 ldmia.w r3, {r0, r1} +1002b268: f8d4 20e4 ldr.w r2, [r4, #228] ; 0xe4 +1002b26c: f7fe fcf6 bl 10029c5c +1002b270: 2800 cmp r0, #0 +1002b272: d16b bne.n 1002b34c +1002b274: f104 09d4 add.w r9, r4, #212 ; 0xd4 +1002b278: e899 0003 ldmia.w r9, {r0, r1} +1002b27c: f104 0294 add.w r2, r4, #148 ; 0x94 +1002b280: f7fe fdda bl 10029e38 +1002b284: 2800 cmp r0, #0 +1002b286: d061 beq.n 1002b34c +1002b288: f505 5688 add.w r6, r5, #4352 ; 0x1100 +1002b28c: 360c adds r6, #12 +1002b28e: f896 30bc ldrb.w r3, [r6, #188] ; 0xbc +1002b292: f104 02a4 add.w r2, r4, #164 ; 0xa4 +1002b296: 2b02 cmp r3, #2 +1002b298: bf14 ite ne +1002b29a: 2310 movne r3, #16 +1002b29c: 2320 moveq r3, #32 +1002b29e: 9300 str r3, [sp, #0] +1002b2a0: f8d4 30e4 ldr.w r3, [r4, #228] ; 0xe4 +1002b2a4: 789b ldrb r3, [r3, #2] +1002b2a6: f3c3 1301 ubfx r3, r3, #4, #2 +1002b2aa: eb06 1343 add.w r3, r6, r3, lsl #5 +1002b2ae: 33e8 adds r3, #232 ; 0xe8 +1002b2b0: 9301 str r3, [sp, #4] +1002b2b2: e899 0003 ldmia.w r9, {r0, r1} +1002b2b6: 2310 movs r3, #16 +1002b2b8: f7fe fe88 bl 10029fcc +1002b2bc: 2800 cmp r0, #0 +1002b2be: d045 beq.n 1002b34c +1002b2c0: f8d4 30e4 ldr.w r3, [r4, #228] ; 0xe4 +1002b2c4: 781a ldrb r2, [r3, #0] +1002b2c6: 7899 ldrb r1, [r3, #2] +1002b2c8: 2a02 cmp r2, #2 +1002b2ca: f3c1 1101 ubfx r1, r1, #4, #2 +1002b2ce: d127 bne.n 1002b320 +1002b2d0: f893 205d ldrb.w r2, [r3, #93] ; 0x5d +1002b2d4: f893 305e ldrb.w r3, [r3, #94] ; 0x5e +1002b2d8: eb06 1141 add.w r1, r6, r1, lsl #5 +1002b2dc: eb03 2202 add.w r2, r3, r2, lsl #8 +1002b2e0: a80c add r0, sp, #48 ; 0x30 +1002b2e2: 31e8 adds r1, #232 ; 0xe8 +1002b2e4: f016 ff3c bl 10042160 +1002b2e8: f89d 3030 ldrb.w r3, [sp, #48] ; 0x30 +1002b2ec: 2bdd cmp r3, #221 ; 0xdd +1002b2ee: d119 bne.n 1002b324 +1002b2f0: f10d 0032 add.w r0, sp, #50 ; 0x32 +1002b2f4: a909 add r1, sp, #36 ; 0x24 +1002b2f6: 2204 movs r2, #4 +1002b2f8: f016 ff2c bl 10042154 +1002b2fc: b990 cbnz r0, 1002b324 +1002b2fe: f89d 0036 ldrb.w r0, [sp, #54] ; 0x36 +1002b302: f89d 2031 ldrb.w r2, [sp, #49] ; 0x31 +1002b306: f000 0003 and.w r0, r0, #3 +1002b30a: f8c6 0188 str.w r0, [r6, #392] ; 0x188 +1002b30e: 3a06 subs r2, #6 +1002b310: eb06 1040 add.w r0, r6, r0, lsl #5 +1002b314: a90e add r1, sp, #56 ; 0x38 +1002b316: b2d2 uxtb r2, r2 +1002b318: 30e8 adds r0, #232 ; 0xe8 +1002b31a: f016 ff21 bl 10042160 +1002b31e: e001 b.n 1002b324 +1002b320: f8c6 1188 str.w r1, [r6, #392] ; 0x188 +1002b324: 9b0a ldr r3, [sp, #40] ; 0x28 +1002b326: 4628 mov r0, r5 +1002b328: 6163 str r3, [r4, #20] +1002b32a: 9b0b ldr r3, [sp, #44] ; 0x2c +1002b32c: 61a3 str r3, [r4, #24] +1002b32e: 2301 movs r3, #1 +1002b330: f8c4 330c str.w r3, [r4, #780] ; 0x30c +1002b334: 6333 str r3, [r6, #48] ; 0x30 +1002b336: f7fe fea7 bl 1002a088 +1002b33a: 4628 mov r0, r5 +1002b33c: 4639 mov r1, r7 +1002b33e: 2200 movs r2, #0 +1002b340: f7ff fabc bl 1002a8bc +1002b344: 4628 mov r0, r5 +1002b346: 4906 ldr r1, [pc, #24] ; (1002b360 ) +1002b348: f00d fd67 bl 10038e1a +1002b34c: 4640 mov r0, r8 +1002b34e: a907 add r1, sp, #28 +1002b350: f7f1 fdda bl 1001cf08 +1002b354: b04c add sp, #304 ; 0x130 +1002b356: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1002b35a: bf00 nop +1002b35c: 1004a812 .word 0x1004a812 +1002b360: 1004a826 .word 0x1004a826 + +1002b364 : +1002b364: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +1002b368: f241 73b1 movw r3, #6065 ; 0x17b1 +1002b36c: 5cc4 ldrb r4, [r0, r3] +1002b36e: 460d mov r5, r1 +1002b370: 3400 adds r4, #0 +1002b372: 7809 ldrb r1, [r1, #0] +1002b374: bf18 it ne +1002b376: 2401 movne r4, #1 +1002b378: 4616 mov r6, r2 +1002b37a: 4824 ldr r0, [pc, #144] ; (1002b40c ) +1002b37c: ea4f 1884 mov.w r8, r4, lsl #6 +1002b380: b939 cbnz r1, 1002b392 +1002b382: 4444 add r4, r8 +1002b384: 4420 add r0, r4 +1002b386: 2241 movs r2, #65 ; 0x41 +1002b388: b002 add sp, #8 +1002b38a: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1002b38e: f016 beed b.w 1004216c +1002b392: 44a0 add r8, r4 +1002b394: 4480 add r8, r0 +1002b396: 4641 mov r1, r8 +1002b398: 4628 mov r0, r5 +1002b39a: f016 feed bl 10042178 +1002b39e: 4f1c ldr r7, [pc, #112] ; (1002b410 ) +1002b3a0: b1e8 cbz r0, 1002b3de +1002b3a2: 4628 mov r0, r5 +1002b3a4: f016 fef4 bl 10042190 +1002b3a8: 4682 mov sl, r0 +1002b3aa: 4630 mov r0, r6 +1002b3ac: f016 fef0 bl 10042190 +1002b3b0: 4629 mov r1, r5 +1002b3b2: 4681 mov r9, r0 +1002b3b4: 4640 mov r0, r8 +1002b3b6: f016 fee5 bl 10042184 +1002b3ba: 2024 movs r0, #36 ; 0x24 +1002b3bc: fb00 7004 mla r0, r0, r4, r7 +1002b3c0: 4631 mov r1, r6 +1002b3c2: f016 fedf bl 10042184 +1002b3c6: 4b13 ldr r3, [pc, #76] ; (1002b414 ) +1002b3c8: 2228 movs r2, #40 ; 0x28 +1002b3ca: fb02 3404 mla r4, r2, r4, r3 +1002b3ce: 2100 movs r1, #0 +1002b3d0: 4620 mov r0, r4 +1002b3d2: f016 fecb bl 1004216c +1002b3d6: f1ba 0f3f cmp.w sl, #63 ; 0x3f +1002b3da: dd09 ble.n 1002b3f0 +1002b3dc: e012 b.n 1002b404 +1002b3de: 2124 movs r1, #36 ; 0x24 +1002b3e0: 4630 mov r0, r6 +1002b3e2: fb01 7104 mla r1, r1, r4, r7 +1002b3e6: f016 fec7 bl 10042178 +1002b3ea: 2800 cmp r0, #0 +1002b3ec: d1d9 bne.n 1002b3a2 +1002b3ee: e009 b.n 1002b404 +1002b3f0: f1b9 0f20 cmp.w r9, #32 +1002b3f4: dc06 bgt.n 1002b404 +1002b3f6: 9400 str r4, [sp, #0] +1002b3f8: 4628 mov r0, r5 +1002b3fa: 4651 mov r1, sl +1002b3fc: 4632 mov r2, r6 +1002b3fe: 464b mov r3, r9 +1002b400: f018 f99e bl 10043740 <__rom_psk_PasswordHash_veneer> +1002b404: b002 add sp, #8 +1002b406: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1002b40a: bf00 nop +1002b40c: 1005313c .word 0x1005313c +1002b410: 100530f4 .word 0x100530f4 +1002b414: 100531ff .word 0x100531ff + +1002b418 : +1002b418: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1002b41c: f500 5688 add.w r6, r0, #4352 ; 0x1100 +1002b420: 360c adds r6, #12 +1002b422: b093 sub sp, #76 ; 0x4c +1002b424: 4605 mov r5, r0 +1002b426: 4688 mov r8, r1 +1002b428: 4617 mov r7, r2 +1002b42a: 2100 movs r1, #0 +1002b42c: f44f 72ca mov.w r2, #404 ; 0x194 +1002b430: 4630 mov r0, r6 +1002b432: f016 fe9b bl 1004216c +1002b436: f505 5395 add.w r3, r5, #4768 ; 0x12a0 +1002b43a: 6818 ldr r0, [r3, #0] +1002b43c: f241 23a4 movw r3, #4772 ; 0x12a4 +1002b440: 58ea ldr r2, [r5, r3] +1002b442: 2100 movs r1, #0 +1002b444: f10d 090c add.w r9, sp, #12 +1002b448: f016 fe90 bl 1004216c +1002b44c: ac0a add r4, sp, #40 ; 0x28 +1002b44e: 2108 movs r1, #8 +1002b450: 4648 mov r0, r9 +1002b452: f7f1 fe5f bl 1001d114 +1002b456: 4620 mov r0, r4 +1002b458: 4649 mov r1, r9 +1002b45a: 2208 movs r2, #8 +1002b45c: f7f1 fca6 bl 1001cdac +1002b460: 2300 movs r3, #0 +1002b462: f819 1003 ldrb.w r1, [r9, r3] +1002b466: 18e2 adds r2, r4, r3 +1002b468: 43c9 mvns r1, r1 +1002b46a: 7211 strb r1, [r2, #8] +1002b46c: ebc3 0109 rsb r1, r3, r9 +1002b470: 79c9 ldrb r1, [r1, #7] +1002b472: 3301 adds r3, #1 +1002b474: 7411 strb r1, [r2, #16] +1002b476: 2b08 cmp r3, #8 +1002b478: ea6f 0101 mvn.w r1, r1 +1002b47c: 7611 strb r1, [r2, #24] +1002b47e: d1f0 bne.n 1002b462 +1002b480: f10d 0914 add.w r9, sp, #20 +1002b484: 2310 movs r3, #16 +1002b486: f8cd 9000 str.w r9, [sp] +1002b48a: 4620 mov r0, r4 +1002b48c: 2120 movs r1, #32 +1002b48e: aa0c add r2, sp, #48 ; 0x30 +1002b490: f018 f986 bl 100437a0 <__rt_hmac_sha1_veneer> +1002b494: 2300 movs r3, #0 +1002b496: f819 2003 ldrb.w r2, [r9, r3] +1002b49a: ebc3 0109 rsb r1, r3, r9 +1002b49e: 54e2 strb r2, [r4, r3] +1002b4a0: 7cc9 ldrb r1, [r1, #19] +1002b4a2: 18e2 adds r2, r4, r3 +1002b4a4: 3301 adds r3, #1 +1002b4a6: 2b10 cmp r3, #16 +1002b4a8: 7411 strb r1, [r2, #16] +1002b4aa: d1f4 bne.n 1002b496 +1002b4ac: 4621 mov r1, r4 +1002b4ae: 4630 mov r0, r6 +1002b4b0: 2220 movs r2, #32 +1002b4b2: f7f1 fc7b bl 1001cdac +1002b4b6: 692b ldr r3, [r5, #16] +1002b4b8: f505 5488 add.w r4, r5, #4352 ; 0x1100 +1002b4bc: f013 0f10 tst.w r3, #16 +1002b4c0: f104 040c add.w r4, r4, #12 +1002b4c4: d10b bne.n 1002b4de +1002b4c6: f104 053c add.w r5, r4, #60 ; 0x3c +1002b4ca: 4628 mov r0, r5 +1002b4cc: 4641 mov r1, r8 +1002b4ce: 463a mov r2, r7 +1002b4d0: f7f1 fc6c bl 1001cdac +1002b4d4: 6365 str r5, [r4, #52] ; 0x34 +1002b4d6: 63a7 str r7, [r4, #56] ; 0x38 +1002b4d8: b013 add sp, #76 ; 0x4c +1002b4da: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1002b4de: f104 03c8 add.w r3, r4, #200 ; 0xc8 +1002b4e2: f8c4 30c0 str.w r3, [r4, #192] ; 0xc0 +1002b4e6: 2320 movs r3, #32 +1002b4e8: f8c4 30c4 str.w r3, [r4, #196] ; 0xc4 +1002b4ec: 2301 movs r3, #1 +1002b4ee: 6223 str r3, [r4, #32] +1002b4f0: f8c4 3188 str.w r3, [r4, #392] ; 0x188 +1002b4f4: 62a3 str r3, [r4, #40] ; 0x28 +1002b4f6: f8d5 3cd4 ldr.w r3, [r5, #3284] ; 0xcd4 +1002b4fa: 2202 movs r2, #2 +1002b4fc: f8c4 218c str.w r2, [r4, #396] ; 0x18c +1002b500: f884 30bc strb.w r3, [r4, #188] ; 0xbc +1002b504: e7df b.n 1002b4c6 + ... + +1002b508 : +1002b508: b5f0 push {r4, r5, r6, r7, lr} +1002b50a: 7a46 ldrb r6, [r0, #9] +1002b50c: 7a02 ldrb r2, [r0, #8] +1002b50e: b085 sub sp, #20 +1002b510: ea42 2606 orr.w r6, r2, r6, lsl #8 +1002b514: 2300 movs r3, #0 +1002b516: 2e01 cmp r6, #1 +1002b518: 4604 mov r4, r0 +1002b51a: 460d mov r5, r1 +1002b51c: 9302 str r3, [sp, #8] +1002b51e: 9303 str r3, [sp, #12] +1002b520: d92b bls.n 1002b57a +1002b522: 9300 str r3, [sp, #0] +1002b524: aa02 add r2, sp, #8 +1002b526: ab03 add r3, sp, #12 +1002b528: f018 f8c2 bl 100436b0 <__rtw_parse_wpa2_ie_veneer> +1002b52c: 9b03 ldr r3, [sp, #12] +1002b52e: 06da lsls r2, r3, #27 +1002b530: d50c bpl.n 1002b54c +1002b532: 4913 ldr r1, [pc, #76] ; (1002b580 ) +1002b534: f104 000a add.w r0, r4, #10 +1002b538: 2204 movs r2, #4 +1002b53a: f7f1 fc37 bl 1001cdac +1002b53e: f1a5 020a sub.w r2, r5, #10 +1002b542: eba2 0286 sub.w r2, r2, r6, lsl #2 +1002b546: 00b1 lsls r1, r6, #2 +1002b548: 2300 movs r3, #0 +1002b54a: e005 b.n 1002b558 +1002b54c: 071b lsls r3, r3, #28 +1002b54e: d5f6 bpl.n 1002b53e +1002b550: f104 000a add.w r0, r4, #10 +1002b554: 490b ldr r1, [pc, #44] ; (1002b584 ) +1002b556: e7ef b.n 1002b538 +1002b558: 4293 cmp r3, r2 +1002b55a: da06 bge.n 1002b56a +1002b55c: 1860 adds r0, r4, r1 +1002b55e: 4418 add r0, r3 +1002b560: 7a87 ldrb r7, [r0, #10] +1002b562: 18e0 adds r0, r4, r3 +1002b564: 7387 strb r7, [r0, #14] +1002b566: 3301 adds r3, #1 +1002b568: e7f6 b.n 1002b558 +1002b56a: 2301 movs r3, #1 +1002b56c: 1b9e subs r6, r3, r6 +1002b56e: eb05 0586 add.w r5, r5, r6, lsl #2 +1002b572: b2ad uxth r5, r5 +1002b574: 7223 strb r3, [r4, #8] +1002b576: 1eab subs r3, r5, #2 +1002b578: 7063 strb r3, [r4, #1] +1002b57a: 4628 mov r0, r5 +1002b57c: b005 add sp, #20 +1002b57e: bdf0 pop {r4, r5, r6, r7, pc} +1002b580: 00035430 .word 0x00035430 +1002b584: 0003542c .word 0x0003542c + +1002b588 : +1002b588: b5f0 push {r4, r5, r6, r7, lr} +1002b58a: 7b46 ldrb r6, [r0, #13] +1002b58c: 7b02 ldrb r2, [r0, #12] +1002b58e: b085 sub sp, #20 +1002b590: ea42 2606 orr.w r6, r2, r6, lsl #8 +1002b594: 2300 movs r3, #0 +1002b596: 2e01 cmp r6, #1 +1002b598: 4604 mov r4, r0 +1002b59a: 460d mov r5, r1 +1002b59c: 9302 str r3, [sp, #8] +1002b59e: 9303 str r3, [sp, #12] +1002b5a0: d92b bls.n 1002b5fa +1002b5a2: 9300 str r3, [sp, #0] +1002b5a4: aa02 add r2, sp, #8 +1002b5a6: ab03 add r3, sp, #12 +1002b5a8: f018 f8ea bl 10043780 <__rtw_parse_wpa_ie_veneer> +1002b5ac: 9b03 ldr r3, [sp, #12] +1002b5ae: 06da lsls r2, r3, #27 +1002b5b0: d50c bpl.n 1002b5cc +1002b5b2: 4913 ldr r1, [pc, #76] ; (1002b600 ) +1002b5b4: f104 000e add.w r0, r4, #14 +1002b5b8: 2204 movs r2, #4 +1002b5ba: f7f1 fbf7 bl 1001cdac +1002b5be: f1a5 020e sub.w r2, r5, #14 +1002b5c2: eba2 0286 sub.w r2, r2, r6, lsl #2 +1002b5c6: 00b1 lsls r1, r6, #2 +1002b5c8: 2300 movs r3, #0 +1002b5ca: e005 b.n 1002b5d8 +1002b5cc: 071b lsls r3, r3, #28 +1002b5ce: d5f6 bpl.n 1002b5be +1002b5d0: f104 000e add.w r0, r4, #14 +1002b5d4: 490b ldr r1, [pc, #44] ; (1002b604 ) +1002b5d6: e7ef b.n 1002b5b8 +1002b5d8: 4293 cmp r3, r2 +1002b5da: da06 bge.n 1002b5ea +1002b5dc: 1860 adds r0, r4, r1 +1002b5de: 4418 add r0, r3 +1002b5e0: 7b87 ldrb r7, [r0, #14] +1002b5e2: 18e0 adds r0, r4, r3 +1002b5e4: 7487 strb r7, [r0, #18] +1002b5e6: 3301 adds r3, #1 +1002b5e8: e7f6 b.n 1002b5d8 +1002b5ea: 2301 movs r3, #1 +1002b5ec: 1b9e subs r6, r3, r6 +1002b5ee: eb05 0586 add.w r5, r5, r6, lsl #2 +1002b5f2: b2ad uxth r5, r5 +1002b5f4: 7323 strb r3, [r4, #12] +1002b5f6: 1eab subs r3, r5, #2 +1002b5f8: 7063 strb r3, [r4, #1] +1002b5fa: 4628 mov r0, r5 +1002b5fc: b005 add sp, #20 +1002b5fe: bdf0 pop {r4, r5, r6, r7, pc} +1002b600: 0003541c .word 0x0003541c +1002b604: 00035418 .word 0x00035418 + +1002b608 : +1002b608: f241 23a8 movw r3, #4776 ; 0x12a8 +1002b60c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002b610: 58c5 ldr r5, [r0, r3] +1002b612: 4607 mov r7, r0 +1002b614: f8d5 40dc ldr.w r4, [r5, #220] ; 0xdc +1002b618: b093 sub sp, #76 ; 0x4c +1002b61a: f104 0812 add.w r8, r4, #18 +1002b61e: f100 0a98 add.w sl, r0, #152 ; 0x98 +1002b622: f8c5 80ec str.w r8, [r5, #236] ; 0xec +1002b626: 4640 mov r0, r8 +1002b628: 2100 movs r1, #0 +1002b62a: f44f 72f7 mov.w r2, #494 ; 0x1ee +1002b62e: f016 fd9d bl 1004216c +1002b632: 68ab ldr r3, [r5, #8] +1002b634: 079b lsls r3, r3, #30 +1002b636: bf4c ite mi +1002b638: 2302 movmi r3, #2 +1002b63a: 23fe movpl r3, #254 ; 0xfe +1002b63c: 74a3 strb r3, [r4, #18] +1002b63e: f507 5388 add.w r3, r7, #4352 ; 0x1100 +1002b642: 330c adds r3, #12 +1002b644: f893 30bc ldrb.w r3, [r3, #188] ; 0xbc +1002b648: 2b04 cmp r3, #4 +1002b64a: d007 beq.n 1002b65c +1002b64c: 7c2b ldrb r3, [r5, #16] +1002b64e: 2b04 cmp r3, #4 +1002b650: bf14 ite ne +1002b652: f04f 0901 movne.w r9, #1 +1002b656: f04f 0902 moveq.w r9, #2 +1002b65a: e001 b.n 1002b660 +1002b65c: f04f 0902 mov.w r9, #2 +1002b660: 7ce3 ldrb r3, [r4, #19] +1002b662: 2600 movs r6, #0 +1002b664: f043 030f orr.w r3, r3, #15 +1002b668: 74e3 strb r3, [r4, #19] +1002b66a: f884 9014 strb.w r9, [r4, #20] +1002b66e: 7566 strb r6, [r4, #21] +1002b670: 75a6 strb r6, [r4, #22] +1002b672: f8d5 1310 ldr.w r1, [r5, #784] ; 0x310 +1002b676: f8d5 2314 ldr.w r2, [r5, #788] ; 0x314 +1002b67a: 4640 mov r0, r8 +1002b67c: f7fe fb07 bl 10029c8e +1002b680: f505 7044 add.w r0, r5, #784 ; 0x310 +1002b684: f7fe fb12 bl 10029cac +1002b688: 4631 mov r1, r6 +1002b68a: 2220 movs r2, #32 +1002b68c: a80a add r0, sp, #40 ; 0x28 +1002b68e: f016 fd6d bl 1004216c +1002b692: a90a add r1, sp, #40 ; 0x28 +1002b694: 2220 movs r2, #32 +1002b696: f104 001f add.w r0, r4, #31 +1002b69a: f016 fd61 bl 10042160 +1002b69e: 4631 mov r1, r6 +1002b6a0: 2210 movs r2, #16 +1002b6a2: a806 add r0, sp, #24 +1002b6a4: f016 fd62 bl 1004216c +1002b6a8: a906 add r1, sp, #24 +1002b6aa: 2210 movs r2, #16 +1002b6ac: f104 003f add.w r0, r4, #63 ; 0x3f +1002b6b0: f016 fd56 bl 10042160 +1002b6b4: 4631 mov r1, r6 +1002b6b6: 2208 movs r2, #8 +1002b6b8: a802 add r0, sp, #8 +1002b6ba: f016 fd57 bl 1004216c +1002b6be: a902 add r1, sp, #8 +1002b6c0: 2208 movs r2, #8 +1002b6c2: f104 004f add.w r0, r4, #79 ; 0x4f +1002b6c6: f016 fd4b bl 10042160 +1002b6ca: 4631 mov r1, r6 +1002b6cc: 2208 movs r2, #8 +1002b6ce: a804 add r0, sp, #16 +1002b6d0: f016 fd4c bl 1004216c +1002b6d4: f04f 0871 mov.w r8, #113 ; 0x71 +1002b6d8: a904 add r1, sp, #16 +1002b6da: 2208 movs r2, #8 +1002b6dc: f04f 0b5f mov.w fp, #95 ; 0x5f +1002b6e0: f104 0057 add.w r0, r4, #87 ; 0x57 +1002b6e4: f016 fd3c bl 10042160 +1002b6e8: f884 606f strb.w r6, [r4, #111] ; 0x6f +1002b6ec: f884 6070 strb.w r6, [r4, #112] ; 0x70 +1002b6f0: 4650 mov r0, sl +1002b6f2: f8c5 80e0 str.w r8, [r5, #224] ; 0xe0 +1002b6f6: f8c5 b0f0 str.w fp, [r5, #240] ; 0xf0 +1002b6fa: f002 fbb4 bl 1002de66 +1002b6fe: 2206 movs r2, #6 +1002b700: 4601 mov r1, r0 +1002b702: 4620 mov r0, r4 +1002b704: f016 fd2c bl 10042160 +1002b708: f507 51a0 add.w r1, r7, #5120 ; 0x1400 +1002b70c: 3109 adds r1, #9 +1002b70e: 2206 movs r2, #6 +1002b710: 1da0 adds r0, r4, #6 +1002b712: f016 fd25 bl 10042160 +1002b716: f648 008e movw r0, #34958 ; 0x888e +1002b71a: f7f1 faa3 bl 1001cc64 <_htons> +1002b71e: 2301 movs r3, #1 +1002b720: 73a3 strb r3, [r4, #14] +1002b722: 2303 movs r3, #3 +1002b724: 81a0 strh r0, [r4, #12] +1002b726: 73e3 strb r3, [r4, #15] +1002b728: 4658 mov r0, fp +1002b72a: f7f1 fa9b bl 1001cc64 <_htons> +1002b72e: e88d 0110 stmia.w sp, {r4, r8} +1002b732: f105 0394 add.w r3, r5, #148 ; 0x94 +1002b736: 8220 strh r0, [r4, #16] +1002b738: 464a mov r2, r9 +1002b73a: e89d 0003 ldmia.w sp, {r0, r1} +1002b73e: f7fe fbbb bl 10029eb8 +1002b742: f44f 7000 mov.w r0, #512 ; 0x200 +1002b746: 214a movs r1, #74 ; 0x4a +1002b748: f00f fe35 bl 1003b3b6 +1002b74c: 4605 mov r5, r0 +1002b74e: b180 cbz r0, 1002b772 +1002b750: 4642 mov r2, r8 +1002b752: 4621 mov r1, r4 +1002b754: 6900 ldr r0, [r0, #16] +1002b756: f016 fd03 bl 10042160 +1002b75a: f507 57bc add.w r7, r7, #6016 ; 0x1780 +1002b75e: 4641 mov r1, r8 +1002b760: 4628 mov r0, r5 +1002b762: f00f fe07 bl 1003b374 +1002b766: 6839 ldr r1, [r7, #0] +1002b768: 4628 mov r0, r5 +1002b76a: 6a8b ldr r3, [r1, #40] ; 0x28 +1002b76c: 4798 blx r3 +1002b76e: 4630 mov r0, r6 +1002b770: e001 b.n 1002b776 +1002b772: f04f 30ff mov.w r0, #4294967295 +1002b776: b013 add sp, #76 ; 0x4c +1002b778: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1002b77c : +1002b77c: f7f7 be2a b.w 100233d4 + +1002b780 : +1002b780: b5f8 push {r3, r4, r5, r6, r7, lr} +1002b782: f500 549b add.w r4, r0, #4960 ; 0x1360 +1002b786: 3410 adds r4, #16 +1002b788: 4605 mov r5, r0 +1002b78a: 4620 mov r0, r4 +1002b78c: f7f1 fb70 bl 1001ce70 +1002b790: 6ae1 ldr r1, [r4, #44] ; 0x2c +1002b792: 2301 movs r3, #1 +1002b794: 4419 add r1, r3 +1002b796: 62e1 str r1, [r4, #44] ; 0x2c +1002b798: 6f61 ldr r1, [r4, #116] ; 0x74 +1002b79a: f894 2037 ldrb.w r2, [r4, #55] ; 0x37 +1002b79e: 2902 cmp r1, #2 +1002b7a0: 63a3 str r3, [r4, #56] ; 0x38 +1002b7a2: f884 2035 strb.w r2, [r4, #53] ; 0x35 +1002b7a6: d131 bne.n 1002b80c +1002b7a8: 2a02 cmp r2, #2 +1002b7aa: f04f 0700 mov.w r7, #0 +1002b7ae: bf08 it eq +1002b7b0: f884 307b strbeq.w r3, [r4, #123] ; 0x7b +1002b7b4: 7623 strb r3, [r4, #24] +1002b7b6: f884 7068 strb.w r7, [r4, #104] ; 0x68 +1002b7ba: f7f1 fbf5 bl 1001cfa8 +1002b7be: f505 56b8 add.w r6, r5, #5888 ; 0x1700 +1002b7c2: 2301 movs r3, #1 +1002b7c4: f241 72a4 movw r2, #6052 ; 0x17a4 +1002b7c8: 6033 str r3, [r6, #0] +1002b7ca: 4628 mov r0, r5 +1002b7cc: 54ab strb r3, [r5, r2] +1002b7ce: 213b movs r1, #59 ; 0x3b +1002b7d0: 463a mov r2, r7 +1002b7d2: f00c f8aa bl 1003792a +1002b7d6: f241 737c movw r3, #6012 ; 0x177c +1002b7da: 58eb ldr r3, [r5, r3] +1002b7dc: b10b cbz r3, 1002b7e2 +1002b7de: 4628 mov r0, r5 +1002b7e0: 4798 blx r3 +1002b7e2: f241 63fc movw r3, #5884 ; 0x16fc +1002b7e6: 58eb ldr r3, [r5, r3] +1002b7e8: b913 cbnz r3, 1002b7f0 +1002b7ea: 4628 mov r0, r5 +1002b7ec: f00c f890 bl 10037910 +1002b7f0: 2200 movs r2, #0 +1002b7f2: 2302 movs r3, #2 +1002b7f4: 6032 str r2, [r6, #0] +1002b7f6: 6723 str r3, [r4, #112] ; 0x70 +1002b7f8: 4b08 ldr r3, [pc, #32] ; (1002b81c ) +1002b7fa: 605a str r2, [r3, #4] +1002b7fc: 4a08 ldr r2, [pc, #32] ; (1002b820 ) +1002b7fe: 60da str r2, [r3, #12] +1002b800: 4a08 ldr r2, [pc, #32] ; (1002b824 ) +1002b802: 611a str r2, [r3, #16] +1002b804: 2205 movs r2, #5 +1002b806: 605a str r2, [r3, #4] +1002b808: f7f1 fcae bl 1001d168 +1002b80c: 2300 movs r3, #0 +1002b80e: 63a3 str r3, [r4, #56] ; 0x38 +1002b810: 4620 mov r0, r4 +1002b812: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +1002b816: f7f1 bb11 b.w 1001ce3c +1002b81a: bf00 nop +1002b81c: e000ed90 .word 0xe000ed90 +1002b820: 40080017 .word 0x40080017 +1002b824: 00040023 .word 0x00040023 + +1002b828 : +1002b828: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002b82c: f500 559b add.w r5, r0, #4960 ; 0x1360 +1002b830: 3510 adds r5, #16 +1002b832: 4604 mov r4, r0 +1002b834: 4628 mov r0, r5 +1002b836: f7f1 fb1b bl 1001ce70 +1002b83a: 6f2b ldr r3, [r5, #112] ; 0x70 +1002b83c: 2b02 cmp r3, #2 +1002b83e: d175 bne.n 1002b92c +1002b840: 6bae ldr r6, [r5, #56] ; 0x38 +1002b842: 2e00 cmp r6, #0 +1002b844: d172 bne.n 1002b92c +1002b846: f7f1 fc85 bl 1001d154 +1002b84a: 4b3c ldr r3, [pc, #240] ; (1002b93c ) +1002b84c: 2217 movs r2, #23 +1002b84e: 605e str r6, [r3, #4] +1002b850: 60da str r2, [r3, #12] +1002b852: 2205 movs r2, #5 +1002b854: 611e str r6, [r3, #16] +1002b856: 605a str r2, [r3, #4] +1002b858: 6b2b ldr r3, [r5, #48] ; 0x30 +1002b85a: 2701 movs r7, #1 +1002b85c: 443b add r3, r7 +1002b85e: 632b str r3, [r5, #48] ; 0x30 +1002b860: 676e str r6, [r5, #116] ; 0x74 +1002b862: 63af str r7, [r5, #56] ; 0x38 +1002b864: f7f1 fba0 bl 1001cfa8 +1002b868: 4620 mov r0, r4 +1002b86a: f010 fe07 bl 1003c47c +1002b86e: f241 73a4 movw r3, #6052 ; 0x17a4 +1002b872: 54e6 strb r6, [r4, r3] +1002b874: f241 63f8 movw r3, #5880 ; 0x16f8 +1002b878: 50e6 str r6, [r4, r3] +1002b87a: f241 63fc movw r3, #5884 ; 0x16fc +1002b87e: 50e6 str r6, [r4, r3] +1002b880: f504 53b8 add.w r3, r4, #5888 ; 0x1700 +1002b884: 601e str r6, [r3, #0] +1002b886: f241 7684 movw r6, #6020 ; 0x1784 +1002b88a: 51a7 str r7, [r4, r6] +1002b88c: 4620 mov r0, r4 +1002b88e: f00c f82a bl 100378e6 +1002b892: b1c8 cbz r0, 1002b8c8 +1002b894: f241 7378 movw r3, #6008 ; 0x1778 +1002b898: 58e3 ldr r3, [r4, r3] +1002b89a: b10b cbz r3, 1002b8a0 +1002b89c: 4620 mov r0, r4 +1002b89e: 4798 blx r3 +1002b8a0: f241 33d4 movw r3, #5076 ; 0x13d4 +1002b8a4: f504 509e add.w r0, r4, #5056 ; 0x13c0 +1002b8a8: 58e1 ldr r1, [r4, r3] +1002b8aa: 3008 adds r0, #8 +1002b8ac: f010 f82c bl 1003b908 +1002b8b0: f504 6092 add.w r0, r4, #1168 ; 0x490 +1002b8b4: f241 3188 movw r1, #5000 ; 0x1388 +1002b8b8: f010 f826 bl 1003b908 +1002b8bc: f7ee fb34 bl 10019f28 +1002b8c0: 2300 movs r3, #0 +1002b8c2: 672b str r3, [r5, #112] ; 0x70 +1002b8c4: 2701 movs r7, #1 +1002b8c6: e001 b.n 1002b8cc +1002b8c8: 51a0 str r0, [r4, r6] +1002b8ca: 4607 mov r7, r0 +1002b8cc: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +1002b8d0: f023 0304 bic.w r3, r3, #4 +1002b8d4: 2b01 cmp r3, #1 +1002b8d6: d11d bne.n 1002b914 +1002b8d8: 2200 movs r2, #0 +1002b8da: 4620 mov r0, r4 +1002b8dc: f894 14f6 ldrb.w r1, [r4, #1270] ; 0x4f6 +1002b8e0: 4613 mov r3, r2 +1002b8e2: f002 fa95 bl 1002de10 +1002b8e6: f604 4878 addw r8, r4, #3192 ; 0xc78 +1002b8ea: 2600 movs r6, #0 +1002b8ec: f894 349c ldrb.w r3, [r4, #1180] ; 0x49c +1002b8f0: 40f3 lsrs r3, r6 +1002b8f2: 07db lsls r3, r3, #31 +1002b8f4: d50b bpl.n 1002b90e +1002b8f6: f8d4 3c80 ldr.w r3, [r4, #3200] ; 0xc80 +1002b8fa: 4620 mov r0, r4 +1002b8fc: 429e cmp r6, r3 +1002b8fe: 4641 mov r1, r8 +1002b900: 4632 mov r2, r6 +1002b902: bf0c ite eq +1002b904: 2301 moveq r3, #1 +1002b906: 2300 movne r3, #0 +1002b908: f7f8 fcda bl 100242c0 +1002b90c: 4607 mov r7, r0 +1002b90e: 3601 adds r6, #1 +1002b910: 2e04 cmp r6, #4 +1002b912: d1eb bne.n 1002b8ec +1002b914: 4620 mov r0, r4 +1002b916: f240 5122 movw r1, #1314 ; 0x522 +1002b91a: 2200 movs r2, #0 +1002b91c: f010 fead bl 1003c67a +1002b920: 2300 movs r3, #0 +1002b922: 63ab str r3, [r5, #56] ; 0x38 +1002b924: f885 307b strb.w r3, [r5, #123] ; 0x7b +1002b928: 762b strb r3, [r5, #24] +1002b92a: e000 b.n 1002b92e +1002b92c: 2701 movs r7, #1 +1002b92e: 4628 mov r0, r5 +1002b930: f7f1 fa84 bl 1001ce3c +1002b934: 4638 mov r0, r7 +1002b936: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002b93a: bf00 nop +1002b93c: e000ed90 .word 0xe000ed90 + +1002b940 : +1002b940: f241 73a8 movw r3, #6056 ; 0x17a8 +1002b944: b570 push {r4, r5, r6, lr} +1002b946: 58c5 ldr r5, [r0, r3] +1002b948: f241 33ac movw r3, #5036 ; 0x13ac +1002b94c: 58c6 ldr r6, [r0, r3] +1002b94e: 4604 mov r4, r0 +1002b950: f7f1 fb2a bl 1001cfa8 +1002b954: 4286 cmp r6, r0 +1002b956: d207 bcs.n 1002b968 +1002b958: 6920 ldr r0, [r4, #16] +1002b95a: f640 0381 movw r3, #2177 ; 0x881 +1002b95e: 4003 ands r3, r0 +1002b960: b913 cbnz r3, 1002b968 +1002b962: f010 0070 ands.w r0, r0, #112 ; 0x70 +1002b966: d001 beq.n 1002b96c +1002b968: 2000 movs r0, #0 +1002b96a: bd70 pop {r4, r5, r6, pc} +1002b96c: b12d cbz r5, 1002b97a +1002b96e: 692a ldr r2, [r5, #16] +1002b970: f640 0391 movw r3, #2193 ; 0x891 +1002b974: 4013 ands r3, r2 +1002b976: b113 cbz r3, 1002b97e +1002b978: bd70 pop {r4, r5, r6, pc} +1002b97a: 2001 movs r0, #1 +1002b97c: bd70 pop {r4, r5, r6, pc} +1002b97e: f012 0f60 tst.w r2, #96 ; 0x60 +1002b982: bf14 ite ne +1002b984: 2000 movne r0, #0 +1002b986: 2001 moveq r0, #1 +1002b988: bd70 pop {r4, r5, r6, pc} + +1002b98a : +1002b98a: b538 push {r3, r4, r5, lr} +1002b98c: f500 549b add.w r4, r0, #4960 ; 0x1360 +1002b990: 3410 adds r4, #16 +1002b992: 2301 movs r3, #1 +1002b994: f884 3040 strb.w r3, [r4, #64] ; 0x40 +1002b998: f894 3037 ldrb.w r3, [r4, #55] ; 0x37 +1002b99c: 4605 mov r5, r0 +1002b99e: b1a3 cbz r3, 1002b9ca +1002b9a0: f7ff ffce bl 1002b940 +1002b9a4: b188 cbz r0, 1002b9ca +1002b9a6: f894 3068 ldrb.w r3, [r4, #104] ; 0x68 +1002b9aa: 6f22 ldr r2, [r4, #112] ; 0x70 +1002b9ac: 3301 adds r3, #1 +1002b9ae: b2db uxtb r3, r3 +1002b9b0: f884 3068 strb.w r3, [r4, #104] ; 0x68 +1002b9b4: b94a cbnz r2, 1002b9ca +1002b9b6: 2b03 cmp r3, #3 +1002b9b8: d907 bls.n 1002b9ca +1002b9ba: 2302 movs r3, #2 +1002b9bc: 6763 str r3, [r4, #116] ; 0x74 +1002b9be: f895 37e2 ldrb.w r3, [r5, #2018] ; 0x7e2 +1002b9c2: b913 cbnz r3, 1002b9ca +1002b9c4: 4628 mov r0, r5 +1002b9c6: f7ff fedb bl 1002b780 +1002b9ca: f241 33d4 movw r3, #5076 ; 0x13d4 +1002b9ce: f505 509e add.w r0, r5, #5056 ; 0x13c0 +1002b9d2: 58e9 ldr r1, [r5, r3] +1002b9d4: 3008 adds r0, #8 +1002b9d6: f00f ff97 bl 1003b908 +1002b9da: 2300 movs r3, #0 +1002b9dc: f884 3040 strb.w r3, [r4, #64] ; 0x40 +1002b9e0: bd38 pop {r3, r4, r5, pc} + +1002b9e2 : +1002b9e2: b570 push {r4, r5, r6, lr} +1002b9e4: 6903 ldr r3, [r0, #16] +1002b9e6: 4605 mov r5, r0 +1002b9e8: 07da lsls r2, r3, #31 +1002b9ea: d504 bpl.n 1002b9f6 +1002b9ec: f413 6401 ands.w r4, r3, #2064 ; 0x810 +1002b9f0: d007 beq.n 1002ba02 +1002b9f2: 2400 movs r4, #0 +1002b9f4: e027 b.n 1002ba46 +1002b9f6: f241 72b1 movw r2, #6065 ; 0x17b1 +1002b9fa: 5c84 ldrb r4, [r0, r2] +1002b9fc: 2c00 cmp r4, #0 +1002b9fe: d1f5 bne.n 1002b9ec +1002ba00: e021 b.n 1002ba46 +1002ba02: f013 0f60 tst.w r3, #96 ; 0x60 +1002ba06: d11e bne.n 1002ba46 +1002ba08: f8d5 3c78 ldr.w r3, [r5, #3192] ; 0xc78 +1002ba0c: 2b02 cmp r3, #2 +1002ba0e: d102 bne.n 1002ba16 +1002ba10: f895 4fcc ldrb.w r4, [r5, #4044] ; 0xfcc +1002ba14: b1bc cbz r4, 1002ba46 +1002ba16: f241 73b1 movw r3, #6065 ; 0x17b1 +1002ba1a: 5cec ldrb r4, [r5, r3] +1002ba1c: b994 cbnz r4, 1002ba44 +1002ba1e: f7f1 fac3 bl 1001cfa8 +1002ba22: f505 559b add.w r5, r5, #4960 ; 0x1360 +1002ba26: 6dab ldr r3, [r5, #88] ; 0x58 +1002ba28: 3510 adds r5, #16 +1002ba2a: 1ac6 subs r6, r0, r3 +1002ba2c: 2001 movs r0, #1 +1002ba2e: f7f1 fae9 bl 1001d004 +1002ba32: 4286 cmp r6, r0 +1002ba34: d307 bcc.n 1002ba46 +1002ba36: f895 4056 ldrb.w r4, [r5, #86] ; 0x56 +1002ba3a: f114 34ff adds.w r4, r4, #4294967295 +1002ba3e: bf18 it ne +1002ba40: 2401 movne r4, #1 +1002ba42: e000 b.n 1002ba46 +1002ba44: 2401 movs r4, #1 +1002ba46: 4620 mov r0, r4 +1002ba48: bd70 pop {r4, r5, r6, pc} + +1002ba4a : +1002ba4a: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002ba4e: 290a cmp r1, #10 +1002ba50: 4606 mov r6, r0 +1002ba52: 4617 mov r7, r2 +1002ba54: 4698 mov r8, r3 +1002ba56: f88d 1007 strb.w r1, [sp, #7] +1002ba5a: 460d mov r5, r1 +1002ba5c: d829 bhi.n 1002bab2 +1002ba5e: f500 549b add.w r4, r0, #4960 ; 0x1360 +1002ba62: 3410 adds r4, #16 +1002ba64: 7a23 ldrb r3, [r4, #8] +1002ba66: 428b cmp r3, r1 +1002ba68: d107 bne.n 1002ba7a +1002ba6a: b313 cbz r3, 1002bab2 +1002ba6c: 7a63 ldrb r3, [r4, #9] +1002ba6e: 4293 cmp r3, r2 +1002ba70: d10d bne.n 1002ba8e +1002ba72: 7aa3 ldrb r3, [r4, #10] +1002ba74: 4543 cmp r3, r8 +1002ba76: d10a bne.n 1002ba8e +1002ba78: e01b b.n 1002bab2 +1002ba7a: b941 cbnz r1, 1002ba8e +1002ba7c: 7221 strb r1, [r4, #8] +1002ba7e: f10d 0207 add.w r2, sp, #7 +1002ba82: 212a movs r1, #42 ; 0x2a +1002ba84: f00b ff51 bl 1003792a +1002ba88: f884 5045 strb.w r5, [r4, #69] ; 0x45 +1002ba8c: e011 b.n 1002bab2 +1002ba8e: 4630 mov r0, r6 +1002ba90: f7ff ffa7 bl 1002b9e2 +1002ba94: b168 cbz r0, 1002bab2 +1002ba96: 2301 movs r3, #1 +1002ba98: aa02 add r2, sp, #8 +1002ba9a: f884 3045 strb.w r3, [r4, #69] ; 0x45 +1002ba9e: f812 3d01 ldrb.w r3, [r2, #-1]! +1002baa2: 7267 strb r7, [r4, #9] +1002baa4: 7223 strb r3, [r4, #8] +1002baa6: f884 800a strb.w r8, [r4, #10] +1002baaa: 4630 mov r0, r6 +1002baac: 212a movs r1, #42 ; 0x2a +1002baae: f00b ff3c bl 1003792a +1002bab2: b002 add sp, #8 +1002bab4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002bab8 : +1002bab8: b573 push {r0, r1, r4, r5, r6, lr} +1002baba: 2300 movs r3, #0 +1002babc: 4604 mov r4, r0 +1002babe: 460e mov r6, r1 +1002bac0: f88d 3007 strb.w r3, [sp, #7] +1002bac4: f7f1 fa70 bl 1001cfa8 +1002bac8: 4605 mov r5, r0 +1002baca: 4620 mov r0, r4 +1002bacc: 212d movs r1, #45 ; 0x2d +1002bace: f10d 0207 add.w r2, sp, #7 +1002bad2: f00b ff31 bl 10037938 +1002bad6: f89d 3007 ldrb.w r3, [sp, #7] +1002bada: 2b01 cmp r3, #1 +1002badc: d00e beq.n 1002bafc +1002bade: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +1002bae2: 331c adds r3, #28 +1002bae4: 681b ldr r3, [r3, #0] +1002bae6: 2b01 cmp r3, #1 +1002bae8: d00a beq.n 1002bb00 +1002baea: 4628 mov r0, r5 +1002baec: f7f1 fa96 bl 1001d01c +1002baf0: 42b0 cmp r0, r6 +1002baf2: d808 bhi.n 1002bb06 +1002baf4: 2064 movs r0, #100 ; 0x64 +1002baf6: f7f1 fab3 bl 1001d060 +1002bafa: e7e6 b.n 1002baca +1002bafc: 2000 movs r0, #0 +1002bafe: e004 b.n 1002bb0a +1002bb00: f06f 0001 mvn.w r0, #1 +1002bb04: e001 b.n 1002bb0a +1002bb06: f04f 30ff mov.w r0, #4294967295 +1002bb0a: b002 add sp, #8 +1002bb0c: bd70 pop {r4, r5, r6, pc} + +1002bb0e : +1002bb0e: b570 push {r4, r5, r6, lr} +1002bb10: f500 549b add.w r4, r0, #4960 ; 0x1360 +1002bb14: 3410 adds r4, #16 +1002bb16: f894 3034 ldrb.w r3, [r4, #52] ; 0x34 +1002bb1a: 4605 mov r5, r0 +1002bb1c: b36b cbz r3, 1002bb7a +1002bb1e: f241 73b1 movw r3, #6065 ; 0x17b1 +1002bb22: 5cc3 ldrb r3, [r0, r3] +1002bb24: bb4b cbnz r3, 1002bb7a +1002bb26: f7ff ff5c bl 1002b9e2 +1002bb2a: b330 cbz r0, 1002bb7a +1002bb2c: f241 73a8 movw r3, #6056 ; 0x17a8 +1002bb30: 58e8 ldr r0, [r5, r3] +1002bb32: b918 cbnz r0, 1002bb3c +1002bb34: f894 3041 ldrb.w r3, [r4, #65] ; 0x41 +1002bb38: b92b cbnz r3, 1002bb46 +1002bb3a: bd70 pop {r4, r5, r6, pc} +1002bb3c: f7ff ff51 bl 1002b9e2 +1002bb40: 2800 cmp r0, #0 +1002bb42: d1f7 bne.n 1002bb34 +1002bb44: bd70 pop {r4, r5, r6, pc} +1002bb46: f894 3042 ldrb.w r3, [r4, #66] ; 0x42 +1002bb4a: 2b01 cmp r3, #1 +1002bb4c: d912 bls.n 1002bb74 +1002bb4e: 7a26 ldrb r6, [r4, #8] +1002bb50: b99e cbnz r6, 1002bb7a +1002bb52: 4628 mov r0, r5 +1002bb54: 2101 movs r1, #1 +1002bb56: f00a fa43 bl 10035fe0 +1002bb5a: 2301 movs r3, #1 +1002bb5c: 7623 strb r3, [r4, #24] +1002bb5e: f241 3330 movw r3, #4912 ; 0x1330 +1002bb62: 5cea ldrb r2, [r5, r3] +1002bb64: 4628 mov r0, r5 +1002bb66: f894 1043 ldrb.w r1, [r4, #67] ; 0x43 +1002bb6a: 4633 mov r3, r6 +1002bb6c: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1002bb70: f7ff bf6b b.w 1002ba4a +1002bb74: 3301 adds r3, #1 +1002bb76: f884 3042 strb.w r3, [r4, #66] ; 0x42 +1002bb7a: bd70 pop {r4, r5, r6, pc} + +1002bb7c : +1002bb7c: b570 push {r4, r5, r6, lr} +1002bb7e: f241 73b1 movw r3, #6065 ; 0x17b1 +1002bb82: 5cc6 ldrb r6, [r0, r3] +1002bb84: 4605 mov r5, r0 +1002bb86: b9b6 cbnz r6, 1002bbb6 +1002bb88: f500 549b add.w r4, r0, #4960 ; 0x1360 +1002bb8c: 3410 adds r4, #16 +1002bb8e: f894 3041 ldrb.w r3, [r4, #65] ; 0x41 +1002bb92: b173 cbz r3, 1002bbb2 +1002bb94: 7a23 ldrb r3, [r4, #8] +1002bb96: b163 cbz r3, 1002bbb2 +1002bb98: 4631 mov r1, r6 +1002bb9a: f00a fa21 bl 10035fe0 +1002bb9e: 4628 mov r0, r5 +1002bba0: 4631 mov r1, r6 +1002bba2: 4632 mov r2, r6 +1002bba4: 4633 mov r3, r6 +1002bba6: f7ff ff50 bl 1002ba4a +1002bbaa: 4628 mov r0, r5 +1002bbac: 2164 movs r1, #100 ; 0x64 +1002bbae: f7ff ff83 bl 1002bab8 +1002bbb2: 2300 movs r3, #0 +1002bbb4: 7623 strb r3, [r4, #24] +1002bbb6: bd70 pop {r4, r5, r6, pc} + +1002bbb8 : +1002bbb8: 6903 ldr r3, [r0, #16] +1002bbba: 07db lsls r3, r3, #31 +1002bbbc: d503 bpl.n 1002bbc6 +1002bbbe: 2105 movs r1, #5 +1002bbc0: 2200 movs r2, #0 +1002bbc2: f7f7 bb64 b.w 1002328e +1002bbc6: 4770 bx lr + +1002bbc8 : +1002bbc8: b573 push {r0, r1, r4, r5, r6, lr} +1002bbca: f241 73b1 movw r3, #6065 ; 0x17b1 +1002bbce: 5cc5 ldrb r5, [r0, r3] +1002bbd0: 4606 mov r6, r0 +1002bbd2: 2d00 cmp r5, #0 +1002bbd4: d15b bne.n 1002bc8e +1002bbd6: f500 549b add.w r4, r0, #4960 ; 0x1360 +1002bbda: 3410 adds r4, #16 +1002bbdc: 4620 mov r0, r4 +1002bbde: 2101 movs r1, #1 +1002bbe0: f7f1 f91c bl 1001ce1c +1002bbe4: 6725 str r5, [r4, #112] ; 0x70 +1002bbe6: 62e5 str r5, [r4, #44] ; 0x2c +1002bbe8: 6325 str r5, [r4, #48] ; 0x30 +1002bbea: 63a5 str r5, [r4, #56] ; 0x38 +1002bbec: f241 332f movw r3, #4911 ; 0x132f +1002bbf0: 5cf3 ldrb r3, [r6, r3] +1002bbf2: 4a28 ldr r2, [pc, #160] ; (1002bc94 ) +1002bbf4: f884 3035 strb.w r3, [r4, #53] ; 0x35 +1002bbf8: f884 3037 strb.w r3, [r4, #55] ; 0x37 +1002bbfc: f241 332e movw r3, #4910 ; 0x132e +1002bc00: 5cf3 ldrb r3, [r6, r3] +1002bc02: f884 5068 strb.w r5, [r4, #104] ; 0x68 +1002bc06: f884 3034 strb.w r3, [r4, #52] ; 0x34 +1002bc0a: f44f 63fa mov.w r3, #2000 ; 0x7d0 +1002bc0e: f884 5055 strb.w r5, [r4, #85] ; 0x55 +1002bc12: f884 5056 strb.w r5, [r4, #86] ; 0x56 +1002bc16: f884 507b strb.w r5, [r4, #123] ; 0x7b +1002bc1a: f884 5042 strb.w r5, [r4, #66] ; 0x42 +1002bc1e: 6663 str r3, [r4, #100] ; 0x64 +1002bc20: f241 3331 movw r3, #4913 ; 0x1331 +1002bc24: 5cf3 ldrb r3, [r6, r3] +1002bc26: f104 0058 add.w r0, r4, #88 ; 0x58 +1002bc2a: 2b01 cmp r3, #1 +1002bc2c: bf1b ittet ne +1002bc2e: f241 332d movwne r3, #4909 ; 0x132d +1002bc32: 5cf3 ldrbne r3, [r6, r3] +1002bc34: f884 5043 strbeq.w r5, [r4, #67] ; 0x43 +1002bc38: f884 3043 strbne.w r3, [r4, #67] ; 0x43 +1002bc3c: f894 3043 ldrb.w r3, [r4, #67] ; 0x43 +1002bc40: 2500 movs r5, #0 +1002bc42: 3300 adds r3, #0 +1002bc44: bf18 it ne +1002bc46: 2301 movne r3, #1 +1002bc48: f884 3041 strb.w r3, [r4, #65] ; 0x41 +1002bc4c: 230c movs r3, #12 +1002bc4e: 7125 strb r5, [r4, #4] +1002bc50: f884 5045 strb.w r5, [r4, #69] ; 0x45 +1002bc54: 7163 strb r3, [r4, #5] +1002bc56: 7225 strb r5, [r4, #8] +1002bc58: f241 3330 movw r3, #4912 ; 0x1330 +1002bc5c: 5cf3 ldrb r3, [r6, r3] +1002bc5e: 72a5 strb r5, [r4, #10] +1002bc60: 7263 strb r3, [r4, #9] +1002bc62: 2380 movs r3, #128 ; 0x80 +1002bc64: 71a3 strb r3, [r4, #6] +1002bc66: 9200 str r2, [sp, #0] +1002bc68: f506 53bc add.w r3, r6, #6016 ; 0x1780 +1002bc6c: 6819 ldr r1, [r3, #0] +1002bc6e: 4a0a ldr r2, [pc, #40] ; (1002bc98 ) +1002bc70: 4633 mov r3, r6 +1002bc72: f00f fe45 bl 1003b900 +1002bc76: 2332 movs r3, #50 ; 0x32 +1002bc78: f884 3090 strb.w r3, [r4, #144] ; 0x90 +1002bc7c: 230a movs r3, #10 +1002bc7e: f884 3091 strb.w r3, [r4, #145] ; 0x91 +1002bc82: f884 3092 strb.w r3, [r4, #146] ; 0x92 +1002bc86: f884 5093 strb.w r5, [r4, #147] ; 0x93 +1002bc8a: f884 5094 strb.w r5, [r4, #148] ; 0x94 +1002bc8e: b002 add sp, #8 +1002bc90: bd70 pop {r4, r5, r6, pc} +1002bc92: bf00 nop +1002bc94: 1004a83e .word 0x1004a83e +1002bc98: 1002b77d .word 0x1002b77d + +1002bc9c : +1002bc9c: f241 73b1 movw r3, #6065 ; 0x17b1 +1002bca0: 5cc3 ldrb r3, [r0, r3] +1002bca2: b923 cbnz r3, 1002bcae +1002bca4: f500 509b add.w r0, r0, #4960 ; 0x1360 +1002bca8: 3010 adds r0, #16 +1002bcaa: f7f1 b8bf b.w 1001ce2c +1002bcae: 4770 bx lr + +1002bcb0 <_rtw_pwr_wakeup>: +1002bcb0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002bcb4: f241 73b0 movw r3, #6064 ; 0x17b0 +1002bcb8: 5cc3 ldrb r3, [r0, r3] +1002bcba: f500 549b add.w r4, r0, #4960 ; 0x1360 +1002bcbe: 4605 mov r5, r0 +1002bcc0: 460e mov r6, r1 +1002bcc2: 3410 adds r4, #16 +1002bcc4: f100 070c add.w r7, r0, #12 +1002bcc8: b94b cbnz r3, 1002bcde <_rtw_pwr_wakeup+0x2e> +1002bcca: f241 73a8 movw r3, #6056 ; 0x17a8 +1002bcce: 58c3 ldr r3, [r0, r3] +1002bcd0: b12b cbz r3, 1002bcde <_rtw_pwr_wakeup+0x2e> +1002bcd2: f503 549b add.w r4, r3, #4960 ; 0x1360 +1002bcd6: 3410 adds r4, #16 +1002bcd8: f103 070c add.w r7, r3, #12 +1002bcdc: 461d mov r5, r3 +1002bcde: f7f1 f963 bl 1001cfa8 +1002bce2: 4680 mov r8, r0 +1002bce4: 4630 mov r0, r6 +1002bce6: f7f1 f981 bl 1001cfec +1002bcea: 4440 add r0, r8 +1002bcec: 63e0 str r0, [r4, #60] ; 0x3c +1002bcee: f7f1 f95b bl 1001cfa8 +1002bcf2: f894 3040 ldrb.w r3, [r4, #64] ; 0x40 +1002bcf6: 4680 mov r8, r0 +1002bcf8: b993 cbnz r3, 1002bd20 <_rtw_pwr_wakeup+0x70> +1002bcfa: 6d63 ldr r3, [r4, #84] ; 0x54 +1002bcfc: f023 437f bic.w r3, r3, #4278190080 ; 0xff000000 +1002bd00: f023 03ff bic.w r3, r3, #255 ; 0xff +1002bd04: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 +1002bd08: d10f bne.n 1002bd2a <_rtw_pwr_wakeup+0x7a> +1002bd0a: e023 b.n 1002bd54 <_rtw_pwr_wakeup+0xa4> +1002bd0c: 4640 mov r0, r8 +1002bd0e: f7f1 f985 bl 1001d01c +1002bd12: f640 33b8 movw r3, #3000 ; 0xbb8 +1002bd16: 4298 cmp r0, r3 +1002bd18: dcef bgt.n 1002bcfa <_rtw_pwr_wakeup+0x4a> +1002bd1a: 200a movs r0, #10 +1002bd1c: f7f1 f996 bl 1001d04c +1002bd20: f894 3040 ldrb.w r3, [r4, #64] ; 0x40 +1002bd24: 2b00 cmp r3, #0 +1002bd26: d1f1 bne.n 1002bd0c <_rtw_pwr_wakeup+0x5c> +1002bd28: e7e7 b.n 1002bcfa <_rtw_pwr_wakeup+0x4a> +1002bd2a: f894 3055 ldrb.w r3, [r4, #85] ; 0x55 +1002bd2e: 2b01 cmp r3, #1 +1002bd30: d104 bne.n 1002bd3c <_rtw_pwr_wakeup+0x8c> +1002bd32: f241 73a4 movw r3, #6052 ; 0x17a4 +1002bd36: 5ceb ldrb r3, [r5, r3] +1002bd38: 2b01 cmp r3, #1 +1002bd3a: d00b beq.n 1002bd54 <_rtw_pwr_wakeup+0xa4> +1002bd3c: 687b ldr r3, [r7, #4] +1002bd3e: 07db lsls r3, r3, #31 +1002bd40: d501 bpl.n 1002bd46 <_rtw_pwr_wakeup+0x96> +1002bd42: 2501 movs r5, #1 +1002bd44: e017 b.n 1002bd76 <_rtw_pwr_wakeup+0xc6> +1002bd46: 6f23 ldr r3, [r4, #112] ; 0x70 +1002bd48: 2b02 cmp r3, #2 +1002bd4a: d105 bne.n 1002bd58 <_rtw_pwr_wakeup+0xa8> +1002bd4c: 4628 mov r0, r5 +1002bd4e: f7ff fd6b bl 1002b828 +1002bd52: b908 cbnz r0, 1002bd58 <_rtw_pwr_wakeup+0xa8> +1002bd54: 2500 movs r5, #0 +1002bd56: e00e b.n 1002bd76 <_rtw_pwr_wakeup+0xc6> +1002bd58: f241 63f8 movw r3, #5880 ; 0x16f8 +1002bd5c: 58eb ldr r3, [r5, r3] +1002bd5e: 2b00 cmp r3, #0 +1002bd60: d1f8 bne.n 1002bd54 <_rtw_pwr_wakeup+0xa4> +1002bd62: f241 7384 movw r3, #6020 ; 0x1784 +1002bd66: 58eb ldr r3, [r5, r3] +1002bd68: 2b00 cmp r3, #0 +1002bd6a: d0f3 beq.n 1002bd54 <_rtw_pwr_wakeup+0xa4> +1002bd6c: f241 7311 movw r3, #5905 ; 0x1711 +1002bd70: 5ced ldrb r5, [r5, r3] +1002bd72: 2d00 cmp r5, #0 +1002bd74: d1e5 bne.n 1002bd42 <_rtw_pwr_wakeup+0x92> +1002bd76: f7f1 f917 bl 1001cfa8 +1002bd7a: 4607 mov r7, r0 +1002bd7c: 4630 mov r0, r6 +1002bd7e: f7f1 f935 bl 1001cfec +1002bd82: 4438 add r0, r7 +1002bd84: 63e0 str r0, [r4, #60] ; 0x3c +1002bd86: 4628 mov r0, r5 +1002bd88: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002bd8c : +1002bd8c: b538 push {r3, r4, r5, lr} +1002bd8e: f500 549b add.w r4, r0, #4960 ; 0x1360 +1002bd92: 3410 adds r4, #16 +1002bd94: f894 3034 ldrb.w r3, [r4, #52] ; 0x34 +1002bd98: 460d mov r5, r1 +1002bd9a: b90b cbnz r3, 1002bda0 +1002bd9c: b111 cbz r1, 1002bda4 +1002bd9e: e017 b.n 1002bdd0 +1002bda0: 290a cmp r1, #10 +1002bda2: d812 bhi.n 1002bdca +1002bda4: f894 3043 ldrb.w r3, [r4, #67] ; 0x43 +1002bda8: 42ab cmp r3, r5 +1002bdaa: d011 beq.n 1002bdd0 +1002bdac: b915 cbnz r5, 1002bdb4 +1002bdae: f7ff ff03 bl 1002bbb8 +1002bdb2: e002 b.n 1002bdba +1002bdb4: 2302 movs r3, #2 +1002bdb6: f884 3042 strb.w r3, [r4, #66] ; 0x42 +1002bdba: f884 5043 strb.w r5, [r4, #67] ; 0x43 +1002bdbe: 3500 adds r5, #0 +1002bdc0: bf18 it ne +1002bdc2: 2501 movne r5, #1 +1002bdc4: f884 5041 strb.w r5, [r4, #65] ; 0x41 +1002bdc8: e002 b.n 1002bdd0 +1002bdca: f06f 0015 mvn.w r0, #21 +1002bdce: bd38 pop {r3, r4, r5, pc} +1002bdd0: 2000 movs r0, #0 +1002bdd2: bd38 pop {r3, r4, r5, pc} + +1002bdd4 : +1002bdd4: b508 push {r3, lr} +1002bdd6: f500 539b add.w r3, r0, #4960 ; 0x1360 +1002bdda: 3310 adds r3, #16 +1002bddc: f893 2034 ldrb.w r2, [r3, #52] ; 0x34 +1002bde0: b902 cbnz r2, 1002bde4 +1002bde2: b921 cbnz r1, 1002bdee +1002bde4: 1e4a subs r2, r1, #1 +1002bde6: 2a01 cmp r2, #1 +1002bde8: d803 bhi.n 1002bdf2 +1002bdea: f883 1037 strb.w r1, [r3, #55] ; 0x37 +1002bdee: 2000 movs r0, #0 +1002bdf0: bd08 pop {r3, pc} +1002bdf2: b961 cbnz r1, 1002be0e +1002bdf4: f883 1037 strb.w r1, [r3, #55] ; 0x37 +1002bdf8: 4a06 ldr r2, [pc, #24] ; (1002be14 ) +1002bdfa: f44f 61fa mov.w r1, #2000 ; 0x7d0 +1002bdfe: f7ff ff57 bl 1002bcb0 <_rtw_pwr_wakeup> +1002be02: 2800 cmp r0, #0 +1002be04: bf14 ite ne +1002be06: 2000 movne r0, #0 +1002be08: f06f 000d mvneq.w r0, #13 +1002be0c: bd08 pop {r3, pc} +1002be0e: f06f 0015 mvn.w r0, #21 +1002be12: bd08 pop {r3, pc} +1002be14: 1004a851 .word 0x1004a851 + +1002be18 : +1002be18: f500 509b add.w r0, r0, #4960 ; 0x1360 +1002be1c: f880 30a2 strb.w r3, [r0, #162] ; 0xa2 +1002be20: f89d 3000 ldrb.w r3, [sp] +1002be24: f880 10a0 strb.w r1, [r0, #160] ; 0xa0 +1002be28: f880 20a1 strb.w r2, [r0, #161] ; 0xa1 +1002be2c: f880 30a3 strb.w r3, [r0, #163] ; 0xa3 +1002be30: 2000 movs r0, #0 +1002be32: 4770 bx lr + +1002be34 : +1002be34: f500 509b add.w r0, r0, #4960 ; 0x1360 +1002be38: f880 10a4 strb.w r1, [r0, #164] ; 0xa4 +1002be3c: 2000 movs r0, #0 +1002be3e: 4770 bx lr + +1002be40 : +1002be40: f500 509b add.w r0, r0, #4960 ; 0x1360 +1002be44: 3010 adds r0, #16 +1002be46: f890 0094 ldrb.w r0, [r0, #148] ; 0x94 +1002be4a: 4770 bx lr + +1002be4c : +1002be4c: 4603 mov r3, r0 +1002be4e: b168 cbz r0, 1002be6c +1002be50: 6f80 ldr r0, [r0, #120] ; 0x78 +1002be52: 6fda ldr r2, [r3, #124] ; 0x7c +1002be54: 4408 add r0, r1 +1002be56: 4290 cmp r0, r2 +1002be58: 6798 str r0, [r3, #120] ; 0x78 +1002be5a: d903 bls.n 1002be64 +1002be5c: 1a40 subs r0, r0, r1 +1002be5e: 6798 str r0, [r3, #120] ; 0x78 +1002be60: 2000 movs r0, #0 +1002be62: 4770 bx lr +1002be64: 6f1a ldr r2, [r3, #112] ; 0x70 +1002be66: 1a51 subs r1, r2, r1 +1002be68: 6719 str r1, [r3, #112] ; 0x70 +1002be6a: 4770 bx lr +1002be6c: 4770 bx lr + +1002be6e : +1002be6e: 4603 mov r3, r0 +1002be70: b168 cbz r0, 1002be8e +1002be72: 6fc0 ldr r0, [r0, #124] ; 0x7c +1002be74: 6f9a ldr r2, [r3, #120] ; 0x78 +1002be76: 1a40 subs r0, r0, r1 +1002be78: 4290 cmp r0, r2 +1002be7a: 67d8 str r0, [r3, #124] ; 0x7c +1002be7c: d203 bcs.n 1002be86 +1002be7e: 4408 add r0, r1 +1002be80: 67d8 str r0, [r3, #124] ; 0x7c +1002be82: 2000 movs r0, #0 +1002be84: 4770 bx lr +1002be86: 6f1a ldr r2, [r3, #112] ; 0x70 +1002be88: 1a51 subs r1, r2, r1 +1002be8a: 6719 str r1, [r3, #112] ; 0x70 +1002be8c: 4770 bx lr +1002be8e: 4770 bx lr + +1002be90 : +1002be90: b510 push {r4, lr} +1002be92: 4603 mov r3, r0 +1002be94: f890 0b72 ldrb.w r0, [r0, #2930] ; 0xb72 +1002be98: b138 cbz r0, 1002beaa +1002be9a: f893 2b73 ldrb.w r2, [r3, #2931] ; 0xb73 +1002be9e: f883 2b76 strb.w r2, [r3, #2934] ; 0xb76 +1002bea2: 3a64 subs r2, #100 ; 0x64 +1002bea4: f883 2b74 strb.w r2, [r3, #2932] ; 0xb74 +1002bea8: e039 b.n 1002bf1e +1002beaa: f893 2ba8 ldrb.w r2, [r3, #2984] ; 0xba8 +1002beae: b922 cbnz r2, 1002beba +1002beb0: 2201 movs r2, #1 +1002beb2: f893 0ba9 ldrb.w r0, [r3, #2985] ; 0xba9 +1002beb6: f883 2ba8 strb.w r2, [r3, #2984] ; 0xba8 +1002beba: f893 2b9c ldrb.w r2, [r3, #2972] ; 0xb9c +1002bebe: b92a cbnz r2, 1002becc +1002bec0: 2201 movs r2, #1 +1002bec2: f893 1b9d ldrb.w r1, [r3, #2973] ; 0xb9d +1002bec6: f883 2b9c strb.w r2, [r3, #2972] ; 0xb9c +1002beca: e000 b.n 1002bece +1002becc: 2100 movs r1, #0 +1002bece: 691a ldr r2, [r3, #16] +1002bed0: 0512 lsls r2, r2, #20 +1002bed2: d424 bmi.n 1002bf1e +1002bed4: f893 2b76 ldrb.w r2, [r3, #2934] ; 0xb76 +1002bed8: eb00 0042 add.w r0, r0, r2, lsl #1 +1002bedc: 2203 movs r2, #3 +1002bede: fbb0 f2f2 udiv r2, r0, r2 +1002bee2: eb02 0442 add.w r4, r2, r2, lsl #1 +1002bee6: 42a0 cmp r0, r4 +1002bee8: d000 beq.n 1002beec +1002beea: 3201 adds r2, #1 +1002beec: f893 0b77 ldrb.w r0, [r3, #2935] ; 0xb77 +1002bef0: 2a64 cmp r2, #100 ; 0x64 +1002bef2: bf28 it cs +1002bef4: 2264 movcs r2, #100 ; 0x64 +1002bef6: eb01 0040 add.w r0, r1, r0, lsl #1 +1002befa: 2103 movs r1, #3 +1002befc: fbb0 f1f1 udiv r1, r0, r1 +1002bf00: eb01 0441 add.w r4, r1, r1, lsl #1 +1002bf04: 42a0 cmp r0, r4 +1002bf06: bf18 it ne +1002bf08: 3101 addne r1, #1 +1002bf0a: f883 2b76 strb.w r2, [r3, #2934] ; 0xb76 +1002bf0e: 2964 cmp r1, #100 ; 0x64 +1002bf10: bf28 it cs +1002bf12: 2164 movcs r1, #100 ; 0x64 +1002bf14: 3a64 subs r2, #100 ; 0x64 +1002bf16: f883 2b74 strb.w r2, [r3, #2932] ; 0xb74 +1002bf1a: f883 1b77 strb.w r1, [r3, #2935] ; 0xb77 +1002bf1e: f603 308c addw r0, r3, #2956 ; 0xb8c +1002bf22: f8d3 1b98 ldr.w r1, [r3, #2968] ; 0xb98 +1002bf26: e8bd 4010 ldmia.w sp!, {r4, lr} +1002bf2a: f00f bced b.w 1003b908 + +1002bf2e <_rtw_init_sta_recv_priv>: +1002bf2e: b510 push {r4, lr} +1002bf30: 2100 movs r1, #0 +1002bf32: 4604 mov r4, r0 +1002bf34: 2234 movs r2, #52 ; 0x34 +1002bf36: f7f0 ff4b bl 1001cdd0 +1002bf3a: 4620 mov r0, r4 +1002bf3c: f7f1 f814 bl 1001cf68 +1002bf40: f104 0008 add.w r0, r4, #8 +1002bf44: e8bd 4010 ldmia.w sp!, {r4, lr} +1002bf48: f7f0 bff8 b.w 1001cf3c + +1002bf4c <_rtw_init_recv_priv>: +1002bf4c: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1002bf50: 4604 mov r4, r0 +1002bf52: 460e mov r6, r1 +1002bf54: 1d27 adds r7, r4, #4 +1002bf56: f7f1 f807 bl 1001cf68 +1002bf5a: f504 7080 add.w r0, r4, #256 ; 0x100 +1002bf5e: f7f1 f803 bl 1001cf68 +1002bf62: 4638 mov r0, r7 +1002bf64: f7f0 ffea bl 1001cf3c +1002bf68: f104 0010 add.w r0, r4, #16 +1002bf6c: f7f0 ffe6 bl 1001cf3c +1002bf70: f104 001c add.w r0, r4, #28 +1002bf74: f7f0 ffe2 bl 1001cf3c +1002bf78: 2302 movs r3, #2 +1002bf7a: 6323 str r3, [r4, #48] ; 0x30 +1002bf7c: 4631 mov r1, r6 +1002bf7e: 6366 str r6, [r4, #52] ; 0x34 +1002bf80: 4620 mov r0, r4 +1002bf82: f00e fef9 bl 1003ad78 +1002bf86: f44f 7006 mov.w r0, #536 ; 0x218 +1002bf8a: f7f0 fec7 bl 1001cd1c +1002bf8e: 62a0 str r0, [r4, #40] ; 0x28 +1002bf90: b330 cbz r0, 1002bfe0 <_rtw_init_recv_priv+0x94> +1002bf92: f100 05ff add.w r5, r0, #255 ; 0xff +1002bf96: f025 05ff bic.w r5, r5, #255 ; 0xff +1002bf9a: 62e5 str r5, [r4, #44] ; 0x2c +1002bf9c: f505 798c add.w r9, r5, #280 ; 0x118 +1002bfa0: 4628 mov r0, r5 +1002bfa2: f7f0 ff1d bl 1001cde0 +1002bfa6: 4628 mov r0, r5 +1002bfa8: 4639 mov r1, r7 +1002bfaa: f7f0 ff29 bl 1001ce00 +1002bfae: 4629 mov r1, r5 +1002bfb0: 4630 mov r0, r6 +1002bfb2: f00e fee3 bl 1003ad7c +1002bfb6: 2300 movs r3, #0 +1002bfb8: 672b str r3, [r5, #112] ; 0x70 +1002bfba: 612e str r6, [r5, #16] +1002bfbc: 358c adds r5, #140 ; 0x8c +1002bfbe: 454d cmp r5, r9 +1002bfc0: 4680 mov r8, r0 +1002bfc2: d1ed bne.n 1002bfa0 <_rtw_init_recv_priv+0x54> +1002bfc4: 4b09 ldr r3, [pc, #36] ; (1002bfec <_rtw_init_recv_priv+0xa0>) +1002bfc6: f104 00cc add.w r0, r4, #204 ; 0xcc +1002bfca: 9300 str r3, [sp, #0] +1002bfcc: 4631 mov r1, r6 +1002bfce: 4633 mov r3, r6 +1002bfd0: 4a07 ldr r2, [pc, #28] ; (1002bff0 <_rtw_init_recv_priv+0xa4>) +1002bfd2: f00f fc95 bl 1003b900 +1002bfd6: f44f 737a mov.w r3, #1000 ; 0x3e8 +1002bfda: f8c4 30d8 str.w r3, [r4, #216] ; 0xd8 +1002bfde: e000 b.n 1002bfe2 <_rtw_init_recv_priv+0x96> +1002bfe0: 4680 mov r8, r0 +1002bfe2: 4640 mov r0, r8 +1002bfe4: b003 add sp, #12 +1002bfe6: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1002bfea: bf00 nop +1002bfec: 1004a884 .word 0x1004a884 +1002bff0: 1002be91 .word 0x1002be91 + +1002bff4 : +1002bff4: b510 push {r4, lr} +1002bff6: 4604 mov r4, r0 +1002bff8: f7f0 ffbe bl 1001cf78 +1002bffc: f504 7080 add.w r0, r4, #256 ; 0x100 +1002c000: f7f0 ffba bl 1001cf78 +1002c004: f104 000c add.w r0, r4, #12 +1002c008: f7f0 ffb6 bl 1001cf78 +1002c00c: f104 0018 add.w r0, r4, #24 +1002c010: f7f0 ffb2 bl 1001cf78 +1002c014: f104 0024 add.w r0, r4, #36 ; 0x24 +1002c018: f7f0 ffae bl 1001cf78 +1002c01c: f104 0088 add.w r0, r4, #136 ; 0x88 +1002c020: e8bd 4010 ldmia.w sp!, {r4, lr} +1002c024: f7f0 bfa8 b.w 1001cf78 + +1002c028 <_rtw_alloc_recvframe>: +1002c028: b538 push {r3, r4, r5, lr} +1002c02a: 4605 mov r5, r0 +1002c02c: f7f0 ff92 bl 1001cf54 +1002c030: 2801 cmp r0, #1 +1002c032: d00f beq.n 1002c054 <_rtw_alloc_recvframe+0x2c> +1002c034: 682c ldr r4, [r5, #0] +1002c036: 4620 mov r0, r4 +1002c038: f7f0 fee8 bl 1001ce0c +1002c03c: 6923 ldr r3, [r4, #16] +1002c03e: b153 cbz r3, 1002c056 <_rtw_alloc_recvframe+0x2e> +1002c040: f603 22c4 addw r2, r3, #2756 ; 0xac4 +1002c044: 4295 cmp r5, r2 +1002c046: d106 bne.n 1002c056 <_rtw_alloc_recvframe+0x2e> +1002c048: f8d3 2af0 ldr.w r2, [r3, #2800] ; 0xaf0 +1002c04c: 3a01 subs r2, #1 +1002c04e: f8c3 2af0 str.w r2, [r3, #2800] ; 0xaf0 +1002c052: e000 b.n 1002c056 <_rtw_alloc_recvframe+0x2e> +1002c054: 2400 movs r4, #0 +1002c056: 4620 mov r0, r4 +1002c058: bd38 pop {r3, r4, r5, pc} + +1002c05a : +1002c05a: b537 push {r0, r1, r2, r4, r5, lr} +1002c05c: f100 0408 add.w r4, r0, #8 +1002c060: a901 add r1, sp, #4 +1002c062: 4605 mov r5, r0 +1002c064: 4620 mov r0, r4 +1002c066: f7f0 ff47 bl 1001cef8 +1002c06a: 4628 mov r0, r5 +1002c06c: f7ff ffdc bl 1002c028 <_rtw_alloc_recvframe> +1002c070: a901 add r1, sp, #4 +1002c072: 4605 mov r5, r0 +1002c074: 4620 mov r0, r4 +1002c076: f7f0 ff47 bl 1001cf08 +1002c07a: 4628 mov r0, r5 +1002c07c: b003 add sp, #12 +1002c07e: bd30 pop {r4, r5, pc} + +1002c080 : +1002c080: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002c084: 6904 ldr r4, [r0, #16] +1002c086: f241 73b1 movw r3, #6065 ; 0x17b1 +1002c08a: 5ce3 ldrb r3, [r4, r3] +1002c08c: 4605 mov r5, r0 +1002c08e: 460f mov r7, r1 +1002c090: b913 cbnz r3, 1002c098 +1002c092: f504 662c add.w r6, r4, #2752 ; 0xac0 +1002c096: e007 b.n 1002c0a8 +1002c098: f241 73a8 movw r3, #6056 ; 0x17a8 +1002c09c: 58e4 ldr r4, [r4, r3] +1002c09e: f504 662c add.w r6, r4, #2752 ; 0xac0 +1002c0a2: f604 27c4 addw r7, r4, #2756 ; 0xac4 +1002c0a6: 6104 str r4, [r0, #16] +1002c0a8: 68a8 ldr r0, [r5, #8] +1002c0aa: b120 cbz r0, 1002c0b6 +1002c0ac: 69c1 ldr r1, [r0, #28] +1002c0ae: f00f f95f bl 1003b370 +1002c0b2: 2300 movs r3, #0 +1002c0b4: 60ab str r3, [r5, #8] +1002c0b6: f107 0808 add.w r8, r7, #8 +1002c0ba: a901 add r1, sp, #4 +1002c0bc: 4640 mov r0, r8 +1002c0be: f7f0 ff1b bl 1001cef8 +1002c0c2: 4628 mov r0, r5 +1002c0c4: f7f0 fea2 bl 1001ce0c +1002c0c8: 2300 movs r3, #0 +1002c0ca: 672b str r3, [r5, #112] ; 0x70 +1002c0cc: 4628 mov r0, r5 +1002c0ce: 4639 mov r1, r7 +1002c0d0: f7f0 fe96 bl 1001ce00 +1002c0d4: b12c cbz r4, 1002c0e2 +1002c0d6: 1d33 adds r3, r6, #4 +1002c0d8: 429f cmp r7, r3 +1002c0da: d102 bne.n 1002c0e2 +1002c0dc: 6b33 ldr r3, [r6, #48] ; 0x30 +1002c0de: 3301 adds r3, #1 +1002c0e0: 6333 str r3, [r6, #48] ; 0x30 +1002c0e2: 6b33 ldr r3, [r6, #48] ; 0x30 +1002c0e4: 2b02 cmp r3, #2 +1002c0e6: d90a bls.n 1002c0fe +1002c0e8: 4809 ldr r0, [pc, #36] ; (1002c110 ) +1002c0ea: f016 f80d bl 10042108 +1002c0ee: 4b09 ldr r3, [pc, #36] ; (1002c114 ) +1002c0f0: 4909 ldr r1, [pc, #36] ; (1002c118 ) +1002c0f2: f8d3 01cc ldr.w r0, [r3, #460] ; 0x1cc +1002c0f6: 6b32 ldr r2, [r6, #48] ; 0x30 +1002c0f8: 2302 movs r3, #2 +1002c0fa: f016 f805 bl 10042108 +1002c0fe: 4640 mov r0, r8 +1002c100: a901 add r1, sp, #4 +1002c102: f7f0 ff01 bl 1001cf08 +1002c106: 2001 movs r0, #1 +1002c108: b002 add sp, #8 +1002c10a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002c10e: bf00 nop +1002c110: 1004b9eb .word 0x1004b9eb +1002c114: 1004da10 .word 0x1004da10 +1002c118: 1004a869 .word 0x1004a869 + +1002c11c <_rtw_enqueue_recvframe>: +1002c11c: b570 push {r4, r5, r6, lr} +1002c11e: 4606 mov r6, r0 +1002c120: 6904 ldr r4, [r0, #16] +1002c122: 460d mov r5, r1 +1002c124: f7f0 fe72 bl 1001ce0c +1002c128: 4630 mov r0, r6 +1002c12a: 4629 mov r1, r5 +1002c12c: f7f0 fe68 bl 1001ce00 +1002c130: b144 cbz r4, 1002c144 <_rtw_enqueue_recvframe+0x28> +1002c132: f604 23c4 addw r3, r4, #2756 ; 0xac4 +1002c136: 429d cmp r5, r3 +1002c138: d104 bne.n 1002c144 <_rtw_enqueue_recvframe+0x28> +1002c13a: f8d4 3af0 ldr.w r3, [r4, #2800] ; 0xaf0 +1002c13e: 3301 adds r3, #1 +1002c140: f8c4 3af0 str.w r3, [r4, #2800] ; 0xaf0 +1002c144: 2001 movs r0, #1 +1002c146: bd70 pop {r4, r5, r6, pc} + +1002c148 : +1002c148: b573 push {r0, r1, r4, r5, r6, lr} +1002c14a: f101 0408 add.w r4, r1, #8 +1002c14e: 4606 mov r6, r0 +1002c150: 460d mov r5, r1 +1002c152: 4620 mov r0, r4 +1002c154: a901 add r1, sp, #4 +1002c156: f7f0 fecf bl 1001cef8 +1002c15a: 4629 mov r1, r5 +1002c15c: 4630 mov r0, r6 +1002c15e: f7ff ffdd bl 1002c11c <_rtw_enqueue_recvframe> +1002c162: a901 add r1, sp, #4 +1002c164: 4605 mov r5, r0 +1002c166: 4620 mov r0, r4 +1002c168: f7f0 fece bl 1001cf08 +1002c16c: 4628 mov r0, r5 +1002c16e: b002 add sp, #8 +1002c170: bd70 pop {r4, r5, r6, pc} + +1002c172 : +1002c172: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002c176: f100 0608 add.w r6, r0, #8 +1002c17a: 4605 mov r5, r0 +1002c17c: 4630 mov r0, r6 +1002c17e: 460f mov r7, r1 +1002c180: f7f0 ff02 bl 1001cf88 +1002c184: 682c ldr r4, [r5, #0] +1002c186: 4628 mov r0, r5 +1002c188: 4621 mov r1, r4 +1002c18a: f7f0 fee9 bl 1001cf60 +1002c18e: b938 cbnz r0, 1002c1a0 +1002c190: f8d4 8000 ldr.w r8, [r4] +1002c194: 4620 mov r0, r4 +1002c196: 4639 mov r1, r7 +1002c198: f7ff ff72 bl 1002c080 +1002c19c: 4644 mov r4, r8 +1002c19e: e7f2 b.n 1002c186 +1002c1a0: 4630 mov r0, r6 +1002c1a2: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1002c1a6: f7f0 bef7 b.w 1001cf98 + +1002c1aa : +1002c1aa: b570 push {r4, r5, r6, lr} +1002c1ac: f600 25dc addw r5, r0, #2780 ; 0xadc +1002c1b0: 4606 mov r6, r0 +1002c1b2: 4628 mov r0, r5 +1002c1b4: f7ff ff51 bl 1002c05a +1002c1b8: 2400 movs r4, #0 +1002c1ba: b140 cbz r0, 1002c1ce +1002c1bc: f606 21c4 addw r1, r6, #2756 ; 0xac4 +1002c1c0: f7ff ff5e bl 1002c080 +1002c1c4: 4628 mov r0, r5 +1002c1c6: 3401 adds r4, #1 +1002c1c8: f7ff ff47 bl 1002c05a +1002c1cc: e7f5 b.n 1002c1ba +1002c1ce: 4620 mov r0, r4 +1002c1d0: bd70 pop {r4, r5, r6, pc} + +1002c1d2 <_rtw_free_recv_priv>: +1002c1d2: b538 push {r3, r4, r5, lr} +1002c1d4: 6b45 ldr r5, [r0, #52] ; 0x34 +1002c1d6: 4604 mov r4, r0 +1002c1d8: 4628 mov r0, r5 +1002c1da: f7e1 fbaf bl 1000d93c +1002c1de: 4628 mov r0, r5 +1002c1e0: f7ff ffe3 bl 1002c1aa +1002c1e4: 4620 mov r0, r4 +1002c1e6: f7ff ff05 bl 1002bff4 +1002c1ea: 4620 mov r0, r4 +1002c1ec: f00e fdcb bl 1003ad86 +1002c1f0: 6aa0 ldr r0, [r4, #40] ; 0x28 +1002c1f2: b128 cbz r0, 1002c200 <_rtw_free_recv_priv+0x2e> +1002c1f4: f44f 7106 mov.w r1, #536 ; 0x218 +1002c1f8: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1002c1fc: f7f0 bda0 b.w 1001cd40 +1002c200: bd38 pop {r3, r4, r5, pc} + +1002c202 : +1002c202: 2000 movs r0, #0 +1002c204: 4770 bx lr + +1002c206 : +1002c206: e92d 41ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, lr} +1002c20a: 460c mov r4, r1 +1002c20c: 4605 mov r5, r0 +1002c20e: 3142 adds r1, #66 ; 0x42 +1002c210: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002c214: f001 fbce bl 1002d9b4 +1002c218: f894 302f ldrb.w r3, [r4, #47] ; 0x2f +1002c21c: 2b02 cmp r3, #2 +1002c21e: d117 bne.n 1002c250 +1002c220: b908 cbnz r0, 1002c226 +1002c222: 2501 movs r5, #1 +1002c224: e00f b.n 1002c246 +1002c226: f894 3048 ldrb.w r3, [r4, #72] ; 0x48 +1002c22a: 07de lsls r6, r3, #31 +1002c22c: d412 bmi.n 1002c254 +1002c22e: e05a b.n 1002c2e6 +1002c230: f894 1048 ldrb.w r1, [r4, #72] ; 0x48 +1002c234: f011 0101 ands.w r1, r1, #1 +1002c238: d158 bne.n 1002c2ec +1002c23a: 2301 movs r3, #1 +1002c23c: f894 202e ldrb.w r2, [r4, #46] ; 0x2e +1002c240: 2a01 cmp r2, #1 +1002c242: d03c beq.n 1002c2be +1002c244: 2500 movs r5, #0 +1002c246: 4620 mov r0, r4 +1002c248: 2108 movs r1, #8 +1002c24a: f7ff fe10 bl 1002be6e +1002c24e: e055 b.n 1002c2fc +1002c250: 2501 movs r5, #1 +1002c252: e053 b.n 1002c2fc +1002c254: f895 3fcc ldrb.w r3, [r5, #4044] ; 0xfcc +1002c258: f894 0058 ldrb.w r0, [r4, #88] ; 0x58 +1002c25c: 2b00 cmp r3, #0 +1002c25e: d040 beq.n 1002c2e2 +1002c260: eb05 1000 add.w r0, r5, r0, lsl #4 +1002c264: f600 505c addw r0, r0, #3420 ; 0xd5c +1002c268: f894 3021 ldrb.w r3, [r4, #33] ; 0x21 +1002c26c: 6f27 ldr r7, [r4, #112] ; 0x70 +1002c26e: f894 2031 ldrb.w r2, [r4, #49] ; 0x31 +1002c272: 1aff subs r7, r7, r3 +1002c274: f894 8030 ldrb.w r8, [r4, #48] ; 0x30 +1002c278: 1abf subs r7, r7, r2 +1002c27a: 6fa1 ldr r1, [r4, #120] ; 0x78 +1002c27c: 3f08 subs r7, #8 +1002c27e: ebc8 0707 rsb r7, r8, r7 +1002c282: 4498 add r8, r3 +1002c284: f894 3025 ldrb.w r3, [r4, #37] ; 0x25 +1002c288: 4488 add r8, r1 +1002c28a: ae02 add r6, sp, #8 +1002c28c: 9301 str r3, [sp, #4] +1002c28e: 9600 str r6, [sp, #0] +1002c290: 463b mov r3, r7 +1002c292: 4642 mov r2, r8 +1002c294: f017 fab4 bl 10043800 <__rtw_seccalctkipmic_veneer> +1002c298: 2000 movs r0, #0 +1002c29a: 4447 add r7, r8 +1002c29c: 4601 mov r1, r0 +1002c29e: 5c72 ldrb r2, [r6, r1] +1002c2a0: 5c7b ldrb r3, [r7, r1] +1002c2a2: 3101 adds r1, #1 +1002c2a4: 429a cmp r2, r3 +1002c2a6: bf18 it ne +1002c2a8: 2001 movne r0, #1 +1002c2aa: 2908 cmp r1, #8 +1002c2ac: d1f7 bne.n 1002c29e +1002c2ae: 2801 cmp r0, #1 +1002c2b0: d10b bne.n 1002c2ca +1002c2b2: 6f22 ldr r2, [r4, #112] ; 0x70 +1002c2b4: 2300 movs r3, #0 +1002c2b6: 4293 cmp r3, r2 +1002c2b8: d2ba bcs.n 1002c230 +1002c2ba: 3308 adds r3, #8 +1002c2bc: e7fb b.n 1002c2b6 +1002c2be: 2b00 cmp r3, #0 +1002c2c0: d0c0 beq.n 1002c244 +1002c2c2: 4628 mov r0, r5 +1002c2c4: f00e fdb0 bl 1003ae28 +1002c2c8: e7bc b.n 1002c244 +1002c2ca: f895 3fce ldrb.w r3, [r5, #4046] ; 0xfce +1002c2ce: 2b00 cmp r3, #0 +1002c2d0: d1a7 bne.n 1002c222 +1002c2d2: f894 3048 ldrb.w r3, [r4, #72] ; 0x48 +1002c2d6: 07d9 lsls r1, r3, #31 +1002c2d8: d5a3 bpl.n 1002c222 +1002c2da: 2301 movs r3, #1 +1002c2dc: f885 3fce strb.w r3, [r5, #4046] ; 0xfce +1002c2e0: e79f b.n 1002c222 +1002c2e2: 461d mov r5, r3 +1002c2e4: e00a b.n 1002c2fc +1002c2e6: f500 7094 add.w r0, r0, #296 ; 0x128 +1002c2ea: e7bd b.n 1002c268 +1002c2ec: f8d5 3618 ldr.w r3, [r5, #1560] ; 0x618 +1002c2f0: f894 2058 ldrb.w r2, [r4, #88] ; 0x58 +1002c2f4: 1ad2 subs r2, r2, r3 +1002c2f6: 4253 negs r3, r2 +1002c2f8: 4153 adcs r3, r2 +1002c2fa: e79f b.n 1002c23c +1002c2fc: 4628 mov r0, r5 +1002c2fe: b004 add sp, #16 +1002c300: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002c304 : +1002c304: b570 push {r4, r5, r6, lr} +1002c306: f891 302f ldrb.w r3, [r1, #47] ; 0x2f +1002c30a: 4605 mov r5, r0 +1002c30c: 460c mov r4, r1 +1002c30e: f891 202e ldrb.w r2, [r1, #46] ; 0x2e +1002c312: 2b00 cmp r3, #0 +1002c314: d032 beq.n 1002c37c +1002c316: f891 0021 ldrb.w r0, [r1, #33] ; 0x21 +1002c31a: 6f89 ldr r1, [r1, #120] ; 0x78 +1002c31c: 4401 add r1, r0 +1002c31e: 78c9 ldrb r1, [r1, #3] +1002c320: 0989 lsrs r1, r1, #6 +1002c322: f884 1058 strb.w r1, [r4, #88] ; 0x58 +1002c326: b11a cbz r2, 1002c330 +1002c328: f8d5 1fd4 ldr.w r1, [r5, #4052] ; 0xfd4 +1002c32c: 2901 cmp r1, #1 +1002c32e: d125 bne.n 1002c37c +1002c330: f894 3048 ldrb.w r3, [r4, #72] ; 0x48 +1002c334: f013 0301 ands.w r3, r3, #1 +1002c338: d02d beq.n 1002c396 +1002c33a: f894 302f ldrb.w r3, [r4, #47] ; 0x2f +1002c33e: 3b01 subs r3, #1 +1002c340: 2b04 cmp r3, #4 +1002c342: d82b bhi.n 1002c39c +1002c344: e8df f003 tbb [pc, r3] +1002c348: 0d2a0803 .word 0x0d2a0803 +1002c34c: 03 .byte 0x03 +1002c34d: 00 .byte 0x00 +1002c34e: 4628 mov r0, r5 +1002c350: 4621 mov r1, r4 +1002c352: f000 ff86 bl 1002d262 +1002c356: e021 b.n 1002c39c +1002c358: 4628 mov r0, r5 +1002c35a: 4621 mov r1, r4 +1002c35c: f000 ffda bl 1002d314 +1002c360: e003 b.n 1002c36a +1002c362: 4628 mov r0, r5 +1002c364: 4621 mov r1, r4 +1002c366: f001 f841 bl 1002d3ec +1002c36a: 4606 mov r6, r0 +1002c36c: b9b0 cbnz r0, 1002c39c +1002c36e: 4620 mov r0, r4 +1002c370: f605 21c4 addw r1, r5, #2756 ; 0xac4 +1002c374: f7ff fe84 bl 1002c080 +1002c378: 4634 mov r4, r6 +1002c37a: e00f b.n 1002c39c +1002c37c: 2a01 cmp r2, #1 +1002c37e: d10d bne.n 1002c39c +1002c380: b163 cbz r3, 1002c39c +1002c382: f895 2fcd ldrb.w r2, [r5, #4045] ; 0xfcd +1002c386: 2a01 cmp r2, #1 +1002c388: d001 beq.n 1002c38e +1002c38a: 2b02 cmp r3, #2 +1002c38c: d006 beq.n 1002c39c +1002c38e: 2301 movs r3, #1 +1002c390: f8c5 3fd8 str.w r3, [r5, #4056] ; 0xfd8 +1002c394: e002 b.n 1002c39c +1002c396: f8c5 3fd8 str.w r3, [r5, #4056] ; 0xfd8 +1002c39a: e7ce b.n 1002c33a +1002c39c: 4620 mov r0, r4 +1002c39e: bd70 pop {r4, r5, r6, pc} + +1002c3a0 : +1002c3a0: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002c3a4: 2300 movs r3, #0 +1002c3a6: 4605 mov r5, r0 +1002c3a8: f8ad 3006 strh.w r3, [sp, #6] +1002c3ac: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002c3b0: f8d5 8c78 ldr.w r8, [r5, #3192] ; 0xc78 +1002c3b4: 460c mov r4, r1 +1002c3b6: b109 cbz r1, 1002c3bc +1002c3b8: 6f8f ldr r7, [r1, #120] ; 0x78 +1002c3ba: e000 b.n 1002c3be +1002c3bc: 460f mov r7, r1 +1002c3be: f104 0142 add.w r1, r4, #66 ; 0x42 +1002c3c2: f001 faf7 bl 1002d9b4 +1002c3c6: f894 3030 ldrb.w r3, [r4, #48] ; 0x30 +1002c3ca: f894 1021 ldrb.w r1, [r4, #33] ; 0x21 +1002c3ce: 2202 movs r2, #2 +1002c3d0: 4419 add r1, r3 +1002c3d2: 3106 adds r1, #6 +1002c3d4: 4439 add r1, r7 +1002c3d6: 4606 mov r6, r0 +1002c3d8: f10d 0006 add.w r0, sp, #6 +1002c3dc: f7f0 fce6 bl 1001cdac +1002c3e0: f8bd 0006 ldrh.w r0, [sp, #6] +1002c3e4: f7f0 fc3e bl 1001cc64 <_htons> +1002c3e8: f1b8 0f02 cmp.w r8, #2 +1002c3ec: f8ad 0006 strh.w r0, [sp, #6] +1002c3f0: d10d bne.n 1002c40e +1002c3f2: b166 cbz r6, 1002c40e +1002c3f4: f8d6 3110 ldr.w r3, [r6, #272] ; 0x110 +1002c3f8: b14b cbz r3, 1002c40e +1002c3fa: f648 038e movw r3, #34958 ; 0x888e +1002c3fe: 4298 cmp r0, r3 +1002c400: d005 beq.n 1002c40e +1002c402: 4620 mov r0, r4 +1002c404: f605 21c4 addw r1, r5, #2756 ; 0xac4 +1002c408: f7ff fe3a bl 1002c080 +1002c40c: 2400 movs r4, #0 +1002c40e: 4620 mov r0, r4 +1002c410: b002 add sp, #8 +1002c412: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002c416 : +1002c416: b510 push {r4, lr} +1002c418: f890 3025 ldrb.w r3, [r0, #37] ; 0x25 +1002c41c: 8d04 ldrh r4, [r0, #40] ; 0x28 +1002c41e: 2b0f cmp r3, #15 +1002c420: f890 102a ldrb.w r1, [r0, #42] ; 0x2a +1002c424: dc0c bgt.n 1002c440 +1002c426: f001 010f and.w r1, r1, #15 +1002c42a: ea41 1104 orr.w r1, r1, r4, lsl #4 +1002c42e: f832 0013 ldrh.w r0, [r2, r3, lsl #1] +1002c432: b289 uxth r1, r1 +1002c434: 4288 cmp r0, r1 +1002c436: d003 beq.n 1002c440 +1002c438: f822 1013 strh.w r1, [r2, r3, lsl #1] +1002c43c: 2001 movs r0, #1 +1002c43e: bd10 pop {r4, pc} +1002c440: 2000 movs r0, #0 +1002c442: bd10 pop {r4, pc} + +1002c444 : +1002c444: b538 push {r3, r4, r5, lr} +1002c446: 313c adds r1, #60 ; 0x3c +1002c448: 6bcd ldr r5, [r1, #60] ; 0x3c +1002c44a: 4604 mov r4, r0 +1002c44c: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002c450: f001 fab0 bl 1002d9b4 +1002c454: 882a ldrh r2, [r5, #0] +1002c456: 4601 mov r1, r0 +1002c458: f402 5280 and.w r2, r2, #4096 ; 0x1000 +1002c45c: b292 uxth r2, r2 +1002c45e: b180 cbz r0, 1002c482 +1002c460: f8d0 30f8 ldr.w r3, [r0, #248] ; 0xf8 +1002c464: b132 cbz r2, 1002c474 +1002c466: 075a lsls r2, r3, #29 +1002c468: d40b bmi.n 1002c482 +1002c46a: 4620 mov r0, r4 +1002c46c: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1002c470: f003 b94d b.w 1002f70e +1002c474: 075b lsls r3, r3, #29 +1002c476: d504 bpl.n 1002c482 +1002c478: 4620 mov r0, r4 +1002c47a: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1002c47e: f003 b9ba b.w 1002f7f6 +1002c482: bd38 pop {r3, r4, r5, pc} + +1002c484 : +1002c484: b538 push {r3, r4, r5, lr} +1002c486: 4604 mov r4, r0 +1002c488: 460d mov r5, r1 +1002c48a: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002c48e: 313c adds r1, #60 ; 0x3c +1002c490: f001 fa90 bl 1002d9b4 +1002c494: 4601 mov r1, r0 +1002c496: b3c0 cbz r0, 1002c50a +1002c498: f8d0 3104 ldr.w r3, [r0, #260] ; 0x104 +1002c49c: b3ab cbz r3, 1002c50a +1002c49e: f890 3304 ldrb.w r3, [r0, #772] ; 0x304 +1002c4a2: 0718 lsls r0, r3, #28 +1002c4a4: d031 beq.n 1002c50a +1002c4a6: f8d1 30f8 ldr.w r3, [r1, #248] ; 0xf8 +1002c4aa: 075a lsls r2, r3, #29 +1002c4ac: d52d bpl.n 1002c50a +1002c4ae: f895 2025 ldrb.w r2, [r5, #37] ; 0x25 +1002c4b2: 1e53 subs r3, r2, #1 +1002c4b4: b2db uxtb r3, r3 +1002c4b6: 2b06 cmp r3, #6 +1002c4b8: d813 bhi.n 1002c4e2 +1002c4ba: 2001 movs r0, #1 +1002c4bc: fa00 f303 lsl.w r3, r0, r3 +1002c4c0: f013 0f60 tst.w r3, #96 ; 0x60 +1002c4c4: d10a bne.n 1002c4dc +1002c4c6: f013 0f18 tst.w r3, #24 +1002c4ca: d104 bne.n 1002c4d6 +1002c4cc: 079b lsls r3, r3, #30 +1002c4ce: d008 beq.n 1002c4e2 +1002c4d0: f891 3306 ldrb.w r3, [r1, #774] ; 0x306 +1002c4d4: e007 b.n 1002c4e6 +1002c4d6: f891 3308 ldrb.w r3, [r1, #776] ; 0x308 +1002c4da: e004 b.n 1002c4e6 +1002c4dc: f891 3309 ldrb.w r3, [r1, #777] ; 0x309 +1002c4e0: e001 b.n 1002c4e6 +1002c4e2: f891 3307 ldrb.w r3, [r1, #775] ; 0x307 +1002c4e6: f003 0302 and.w r3, r3, #2 +1002c4ea: b2db uxtb r3, r3 +1002c4ec: b16b cbz r3, 1002c50a +1002c4ee: f8d1 330c ldr.w r3, [r1, #780] ; 0x30c +1002c4f2: 4620 mov r0, r4 +1002c4f4: b11b cbz r3, 1002c4fe +1002c4f6: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1002c4fa: f003 ba87 b.w 1002fa0c +1002c4fe: f501 7184 add.w r1, r1, #264 ; 0x108 +1002c502: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1002c506: f7f9 bdf2 b.w 100260ee +1002c50a: bd38 pop {r3, r4, r5, pc} + +1002c50c : +1002c50c: b5f0 push {r4, r5, r6, r7, lr} +1002c50e: 6f0c ldr r4, [r1, #112] ; 0x70 +1002c510: f500 632c add.w r3, r0, #2752 ; 0xac0 +1002c514: e9d3 6710 ldrd r6, r7, [r3, #64] ; 0x40 +1002c518: 17e5 asrs r5, r4, #31 +1002c51a: 1936 adds r6, r6, r4 +1002c51c: eb47 0705 adc.w r7, r7, r5 +1002c520: e9c3 6710 strd r6, r7, [r3, #64] ; 0x40 +1002c524: f8d0 3480 ldr.w r3, [r0, #1152] ; 0x480 +1002c528: 3301 adds r3, #1 +1002c52a: f8c0 3480 str.w r3, [r0, #1152] ; 0x480 +1002c52e: 8ece ldrh r6, [r1, #54] ; 0x36 +1002c530: f64f 73ff movw r3, #65535 ; 0xffff +1002c534: 429e cmp r6, r3 +1002c536: d102 bne.n 1002c53e +1002c538: 6b8b ldr r3, [r1, #56] ; 0x38 +1002c53a: 3301 adds r3, #1 +1002c53c: d003 beq.n 1002c546 +1002c53e: f891 3036 ldrb.w r3, [r1, #54] ; 0x36 +1002c542: 07db lsls r3, r3, #31 +1002c544: d514 bpl.n 1002c570 +1002c546: b912 cbnz r2, 1002c54e +1002c548: f8d1 2088 ldr.w r2, [r1, #136] ; 0x88 +1002c54c: b1b2 cbz r2, 1002c57c +1002c54e: f502 72c0 add.w r2, r2, #384 ; 0x180 +1002c552: e9d2 0104 ldrd r0, r1, [r2, #16] +1002c556: 3001 adds r0, #1 +1002c558: f141 0100 adc.w r1, r1, #0 +1002c55c: e9c2 0104 strd r0, r1, [r2, #16] +1002c560: e9d2 010c ldrd r0, r1, [r2, #48] ; 0x30 +1002c564: 1824 adds r4, r4, r0 +1002c566: eb45 0501 adc.w r5, r5, r1 +1002c56a: e9c2 450c strd r4, r5, [r2, #48] ; 0x30 +1002c56e: bdf0 pop {r4, r5, r6, r7, pc} +1002c570: f8d0 3484 ldr.w r3, [r0, #1156] ; 0x484 +1002c574: 3301 adds r3, #1 +1002c576: f8c0 3484 str.w r3, [r0, #1156] ; 0x484 +1002c57a: e7e4 b.n 1002c546 +1002c57c: bdf0 pop {r4, r5, r6, r7, pc} + ... + +1002c580 : +1002c580: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002c584: 6905 ldr r5, [r0, #16] +1002c586: f891 8036 ldrb.w r8, [r1, #54] ; 0x36 +1002c58a: f015 0f60 tst.w r5, #96 ; 0x60 +1002c58e: 4606 mov r6, r0 +1002c590: 460c mov r4, r1 +1002c592: 4691 mov r9, r2 +1002c594: 6f8f ldr r7, [r1, #120] ; 0x78 +1002c596: f100 0a9c add.w sl, r0, #156 ; 0x9c +1002c59a: f008 0801 and.w r8, r8, #1 +1002c59e: d028 beq.n 1002c5f2 +1002c5a0: f500 57a0 add.w r7, r0, #5120 ; 0x1400 +1002c5a4: 3709 adds r7, #9 +1002c5a6: f101 053c add.w r5, r1, #60 ; 0x3c +1002c5aa: 4638 mov r0, r7 +1002c5ac: 4629 mov r1, r5 +1002c5ae: 2206 movs r2, #6 +1002c5b0: f7f0 fc04 bl 1001cdbc +1002c5b4: b108 cbz r0, 1002c5ba +1002c5b6: 2400 movs r4, #0 +1002c5b8: e07b b.n 1002c6b2 +1002c5ba: 4638 mov r0, r7 +1002c5bc: f104 0136 add.w r1, r4, #54 ; 0x36 +1002c5c0: 2206 movs r2, #6 +1002c5c2: f7f0 fbfb bl 1001cdbc +1002c5c6: b910 cbnz r0, 1002c5ce +1002c5c8: f1b8 0f00 cmp.w r8, #0 +1002c5cc: d0f3 beq.n 1002c5b6 +1002c5ce: 344e adds r4, #78 ; 0x4e +1002c5d0: 4620 mov r0, r4 +1002c5d2: 4939 ldr r1, [pc, #228] ; (1002c6b8 ) +1002c5d4: 2206 movs r2, #6 +1002c5d6: f7f0 fbf1 bl 1001cdbc +1002c5da: 2800 cmp r0, #0 +1002c5dc: d1eb bne.n 1002c5b6 +1002c5de: 4650 mov r0, sl +1002c5e0: 4935 ldr r1, [pc, #212] ; (1002c6b8 ) +1002c5e2: 2206 movs r2, #6 +1002c5e4: f7f0 fbea bl 1001cdbc +1002c5e8: 2800 cmp r0, #0 +1002c5ea: d1e4 bne.n 1002c5b6 +1002c5ec: 4620 mov r0, r4 +1002c5ee: 4651 mov r1, sl +1002c5f0: e005 b.n 1002c5fe +1002c5f2: 072a lsls r2, r5, #28 +1002c5f4: d509 bpl.n 1002c60a +1002c5f6: f101 054e add.w r5, r1, #78 ; 0x4e +1002c5fa: 4628 mov r0, r5 +1002c5fc: 313c adds r1, #60 ; 0x3c +1002c5fe: 2206 movs r2, #6 +1002c600: f7f0 fbdc bl 1001cdbc +1002c604: 2800 cmp r0, #0 +1002c606: d152 bne.n 1002c6ae +1002c608: e7d5 b.n 1002c5b6 +1002c60a: 06eb lsls r3, r5, #27 +1002c60c: d407 bmi.n 1002c61e +1002c60e: f415 3580 ands.w r5, r5, #65536 ; 0x10000 +1002c612: d129 bne.n 1002c668 +1002c614: 462c mov r4, r5 +1002c616: f1b8 0f00 cmp.w r8, #0 +1002c61a: d018 beq.n 1002c64e +1002c61c: e007 b.n 1002c62e +1002c61e: f1b8 0f00 cmp.w r8, #0 +1002c622: d008 beq.n 1002c636 +1002c624: f894 304e ldrb.w r3, [r4, #78] ; 0x4e +1002c628: 07d9 lsls r1, r3, #31 +1002c62a: d5c4 bpl.n 1002c5b6 +1002c62c: 2401 movs r4, #1 +1002c62e: 4630 mov r0, r6 +1002c630: f001 fa16 bl 1002da60 +1002c634: e010 b.n 1002c658 +1002c636: f104 004e add.w r0, r4, #78 ; 0x4e +1002c63a: f104 0136 add.w r1, r4, #54 ; 0x36 +1002c63e: 2206 movs r2, #6 +1002c640: f7f0 fbbc bl 1001cdbc +1002c644: 2800 cmp r0, #0 +1002c646: d0b6 beq.n 1002c5b6 +1002c648: f104 053c add.w r5, r4, #60 ; 0x3c +1002c64c: 2401 movs r4, #1 +1002c64e: f506 603d add.w r0, r6, #3024 ; 0xbd0 +1002c652: 4629 mov r1, r5 +1002c654: f001 f9ae bl 1002d9b4 +1002c658: f8c9 0000 str.w r0, [r9] +1002c65c: f8d9 3000 ldr.w r3, [r9] +1002c660: 2b00 cmp r3, #0 +1002c662: bf08 it eq +1002c664: 2400 moveq r4, #0 +1002c666: e024 b.n 1002c6b2 +1002c668: f101 0b36 add.w fp, r1, #54 ; 0x36 +1002c66c: f104 053c add.w r5, r4, #60 ; 0x3c +1002c670: 4658 mov r0, fp +1002c672: 1d39 adds r1, r7, #4 +1002c674: 2206 movs r2, #6 +1002c676: f7f0 fb99 bl 1001cdac +1002c67a: 4628 mov r0, r5 +1002c67c: f107 010a add.w r1, r7, #10 +1002c680: 2206 movs r2, #6 +1002c682: f7f0 fb93 bl 1001cdac +1002c686: f104 004e add.w r0, r4, #78 ; 0x4e +1002c68a: f107 0110 add.w r1, r7, #16 +1002c68e: 2206 movs r2, #6 +1002c690: f7f0 fb8c bl 1001cdac +1002c694: f104 0048 add.w r0, r4, #72 ; 0x48 +1002c698: 4659 mov r1, fp +1002c69a: 2206 movs r2, #6 +1002c69c: f7f0 fb86 bl 1001cdac +1002c6a0: 4629 mov r1, r5 +1002c6a2: f104 0042 add.w r0, r4, #66 ; 0x42 +1002c6a6: 2206 movs r2, #6 +1002c6a8: f7f0 fb80 bl 1001cdac +1002c6ac: 4655 mov r5, sl +1002c6ae: 2401 movs r4, #1 +1002c6b0: e7b1 b.n 1002c616 +1002c6b2: 4620 mov r0, r4 +1002c6b4: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +1002c6b8: 1004a860 .word 0x1004a860 + +1002c6bc : +1002c6bc: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002c6c0: 6903 ldr r3, [r0, #16] +1002c6c2: 4616 mov r6, r2 +1002c6c4: 071a lsls r2, r3, #28 +1002c6c6: 4605 mov r5, r0 +1002c6c8: 460c mov r4, r1 +1002c6ca: 6f8f ldr r7, [r1, #120] ; 0x78 +1002c6cc: f500 693d add.w r9, r0, #3024 ; 0xbd0 +1002c6d0: f100 089c add.w r8, r0, #156 ; 0x9c +1002c6d4: f891 a036 ldrb.w sl, [r1, #54] ; 0x36 +1002c6d8: d502 bpl.n 1002c6e0 +1002c6da: f013 0f81 tst.w r3, #129 ; 0x81 +1002c6de: d107 bne.n 1002c6f0 +1002c6e0: f003 1301 and.w r3, r3, #65537 ; 0x10001 +1002c6e4: f1b3 1f01 cmp.w r3, #65537 ; 0x10001 +1002c6e8: d049 beq.n 1002c77e +1002c6ea: 2000 movs r0, #0 +1002c6ec: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +1002c6f0: 883b ldrh r3, [r7, #0] +1002c6f2: f003 02fc and.w r2, r3, #252 ; 0xfc +1002c6f6: 2a48 cmp r2, #72 ; 0x48 +1002c6f8: d0f7 beq.n 1002c6ea +1002c6fa: f003 0288 and.w r2, r3, #136 ; 0x88 +1002c6fe: 2a88 cmp r2, #136 ; 0x88 +1002c700: d102 bne.n 1002c708 +1002c702: f013 0f70 tst.w r3, #112 ; 0x70 +1002c706: d1f0 bne.n 1002c6ea +1002c708: f505 57a0 add.w r7, r5, #5120 ; 0x1400 +1002c70c: 3709 adds r7, #9 +1002c70e: 4638 mov r0, r7 +1002c710: f104 013c add.w r1, r4, #60 ; 0x3c +1002c714: 2206 movs r2, #6 +1002c716: f7f0 fb51 bl 1001cdbc +1002c71a: 2800 cmp r0, #0 +1002c71c: d1e5 bne.n 1002c6ea +1002c71e: 4638 mov r0, r7 +1002c720: f104 0136 add.w r1, r4, #54 ; 0x36 +1002c724: 2206 movs r2, #6 +1002c726: f00a 0a01 and.w sl, sl, #1 +1002c72a: f7f0 fb47 bl 1001cdbc +1002c72e: b910 cbnz r0, 1002c736 +1002c730: f1ba 0f00 cmp.w sl, #0 +1002c734: d0d9 beq.n 1002c6ea +1002c736: 344e adds r4, #78 ; 0x4e +1002c738: 4620 mov r0, r4 +1002c73a: 492a ldr r1, [pc, #168] ; (1002c7e4 ) +1002c73c: 2206 movs r2, #6 +1002c73e: f7f0 fb3d bl 1001cdbc +1002c742: 2800 cmp r0, #0 +1002c744: d1d1 bne.n 1002c6ea +1002c746: 4640 mov r0, r8 +1002c748: 4926 ldr r1, [pc, #152] ; (1002c7e4 ) +1002c74a: 2206 movs r2, #6 +1002c74c: f7f0 fb36 bl 1001cdbc +1002c750: 2800 cmp r0, #0 +1002c752: d1ca bne.n 1002c6ea +1002c754: 4620 mov r0, r4 +1002c756: 4641 mov r1, r8 +1002c758: 2206 movs r2, #6 +1002c75a: f7f0 fb2f bl 1001cdbc +1002c75e: 2800 cmp r0, #0 +1002c760: d0c3 beq.n 1002c6ea +1002c762: f1ba 0f00 cmp.w sl, #0 +1002c766: d003 beq.n 1002c770 +1002c768: 4628 mov r0, r5 +1002c76a: f001 f979 bl 1002da60 +1002c76e: e003 b.n 1002c778 +1002c770: 4648 mov r0, r9 +1002c772: 4621 mov r1, r4 +1002c774: f001 f91e bl 1002d9b4 +1002c778: 6030 str r0, [r6, #0] +1002c77a: 6830 ldr r0, [r6, #0] +1002c77c: e02c b.n 1002c7d8 +1002c77e: f104 0b36 add.w fp, r4, #54 ; 0x36 +1002c782: 4658 mov r0, fp +1002c784: 1d39 adds r1, r7, #4 +1002c786: 2206 movs r2, #6 +1002c788: f104 0a3c add.w sl, r4, #60 ; 0x3c +1002c78c: f7f0 fb0e bl 1001cdac +1002c790: f104 054e add.w r5, r4, #78 ; 0x4e +1002c794: 4650 mov r0, sl +1002c796: f107 010a add.w r1, r7, #10 +1002c79a: 2206 movs r2, #6 +1002c79c: f7f0 fb06 bl 1001cdac +1002c7a0: 4628 mov r0, r5 +1002c7a2: f107 0110 add.w r1, r7, #16 +1002c7a6: 2206 movs r2, #6 +1002c7a8: f7f0 fb00 bl 1001cdac +1002c7ac: f104 0048 add.w r0, r4, #72 ; 0x48 +1002c7b0: 4659 mov r1, fp +1002c7b2: 2206 movs r2, #6 +1002c7b4: f7f0 fafa bl 1001cdac +1002c7b8: f104 0042 add.w r0, r4, #66 ; 0x42 +1002c7bc: 4651 mov r1, sl +1002c7be: 2206 movs r2, #6 +1002c7c0: f7f0 faf4 bl 1001cdac +1002c7c4: 4628 mov r0, r5 +1002c7c6: 4641 mov r1, r8 +1002c7c8: 2206 movs r2, #6 +1002c7ca: f7f0 faef bl 1001cdac +1002c7ce: 4648 mov r0, r9 +1002c7d0: 4629 mov r1, r5 +1002c7d2: f001 f8ef bl 1002d9b4 +1002c7d6: 6030 str r0, [r6, #0] +1002c7d8: 3000 adds r0, #0 +1002c7da: bf18 it ne +1002c7dc: 2001 movne r0, #1 +1002c7de: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +1002c7e2: bf00 nop +1002c7e4: 1004a860 .word 0x1004a860 + +1002c7e8 : +1002c7e8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002c7ec: 6903 ldr r3, [r0, #16] +1002c7ee: 4604 mov r4, r0 +1002c7f0: 06db lsls r3, r3, #27 +1002c7f2: 460d mov r5, r1 +1002c7f4: 4616 mov r6, r2 +1002c7f6: f8d1 8078 ldr.w r8, [r1, #120] ; 0x78 +1002c7fa: d51e bpl.n 1002c83a +1002c7fc: f101 004e add.w r0, r1, #78 ; 0x4e +1002c800: 2206 movs r2, #6 +1002c802: f104 019c add.w r1, r4, #156 ; 0x9c +1002c806: f7f0 fad9 bl 1001cdbc +1002c80a: b338 cbz r0, 1002c85c +1002c80c: f105 073c add.w r7, r5, #60 ; 0x3c +1002c810: f504 603d add.w r0, r4, #3024 ; 0xbd0 +1002c814: 4639 mov r1, r7 +1002c816: f001 f8cd bl 1002d9b4 +1002c81a: 6030 str r0, [r6, #0] +1002c81c: b180 cbz r0, 1002c840 +1002c81e: 4620 mov r0, r4 +1002c820: 4629 mov r1, r5 +1002c822: f7ff fe0f bl 1002c444 +1002c826: f8b8 2000 ldrh.w r2, [r8] +1002c82a: f002 03fc and.w r3, r2, #252 ; 0xfc +1002c82e: 2b48 cmp r3, #72 ; 0x48 +1002c830: d00f beq.n 1002c852 +1002c832: f002 0288 and.w r2, r2, #136 ; 0x88 +1002c836: 2a88 cmp r2, #136 ; 0x88 +1002c838: d013 beq.n 1002c862 +1002c83a: 2001 movs r0, #1 +1002c83c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002c840: f894 5875 ldrb.w r5, [r4, #2165] ; 0x875 +1002c844: b955 cbnz r5, 1002c85c +1002c846: 4620 mov r0, r4 +1002c848: 4639 mov r1, r7 +1002c84a: 2207 movs r2, #7 +1002c84c: f7f9 fce8 bl 10026220 +1002c850: e004 b.n 1002c85c +1002c852: 4620 mov r0, r4 +1002c854: 4629 mov r1, r5 +1002c856: 6832 ldr r2, [r6, #0] +1002c858: f7ff fe58 bl 1002c50c +1002c85c: 2000 movs r0, #0 +1002c85e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002c862: 2bc8 cmp r3, #200 ; 0xc8 +1002c864: d0f5 beq.n 1002c852 +1002c866: 4620 mov r0, r4 +1002c868: 4629 mov r1, r5 +1002c86a: f7ff fe0b bl 1002c484 +1002c86e: e7e4 b.n 1002c83a + +1002c870 : +1002c870: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002c874: 6f8c ldr r4, [r1, #120] ; 0x78 +1002c876: 4605 mov r5, r0 +1002c878: 8823 ldrh r3, [r4, #0] +1002c87a: 460e mov r6, r1 +1002c87c: f003 030c and.w r3, r3, #12 +1002c880: 2b04 cmp r3, #4 +1002c882: f040 80be bne.w 1002ca02 +1002c886: f505 51a0 add.w r1, r5, #5120 ; 0x1400 +1002c88a: 1d20 adds r0, r4, #4 +1002c88c: 3109 adds r1, #9 +1002c88e: 2206 movs r2, #6 +1002c890: f7f0 fa94 bl 1001cdbc +1002c894: 2800 cmp r0, #0 +1002c896: f000 80b4 beq.w 1002ca02 +1002c89a: 8823 ldrh r3, [r4, #0] +1002c89c: f003 03fc and.w r3, r3, #252 ; 0xfc +1002c8a0: 2ba4 cmp r3, #164 ; 0xa4 +1002c8a2: f040 80ae bne.w 1002ca02 +1002c8a6: f104 010a add.w r1, r4, #10 +1002c8aa: f505 603d add.w r0, r5, #3024 ; 0xbd0 +1002c8ae: 8867 ldrh r7, [r4, #2] +1002c8b0: f001 f880 bl 1002d9b4 +1002c8b4: f3c7 070d ubfx r7, r7, #0, #14 +1002c8b8: 4604 mov r4, r0 +1002c8ba: 2800 cmp r0, #0 +1002c8bc: f000 80a1 beq.w 1002ca02 +1002c8c0: f8d0 00fc ldr.w r0, [r0, #252] ; 0xfc +1002c8c4: 42b8 cmp r0, r7 +1002c8c6: f040 809c bne.w 1002ca02 +1002c8ca: 4621 mov r1, r4 +1002c8cc: e9f1 2362 ldrd r2, r3, [r1, #392]! ; 0x188 +1002c8d0: 3201 adds r2, #1 +1002c8d2: f143 0300 adc.w r3, r3, #0 +1002c8d6: e9c1 2300 strd r2, r3, [r1] +1002c8da: f896 3025 ldrb.w r3, [r6, #37] ; 0x25 +1002c8de: 3b01 subs r3, #1 +1002c8e0: b2db uxtb r3, r3 +1002c8e2: 2b06 cmp r3, #6 +1002c8e4: d814 bhi.n 1002c910 +1002c8e6: 2201 movs r2, #1 +1002c8e8: fa02 f303 lsl.w r3, r2, r3 +1002c8ec: f013 0f60 tst.w r3, #96 ; 0x60 +1002c8f0: d10b bne.n 1002c90a +1002c8f2: f013 0f18 tst.w r3, #24 +1002c8f6: d105 bne.n 1002c904 +1002c8f8: 079f lsls r7, r3, #30 +1002c8fa: d009 beq.n 1002c910 +1002c8fc: f894 7306 ldrb.w r7, [r4, #774] ; 0x306 +1002c900: 4017 ands r7, r2 +1002c902: e009 b.n 1002c918 +1002c904: f894 7308 ldrb.w r7, [r4, #776] ; 0x308 +1002c908: e004 b.n 1002c914 +1002c90a: f894 7309 ldrb.w r7, [r4, #777] ; 0x309 +1002c90e: e001 b.n 1002c914 +1002c910: f894 7307 ldrb.w r7, [r4, #775] ; 0x307 +1002c914: f007 0701 and.w r7, r7, #1 +1002c918: 2f00 cmp r7, #0 +1002c91a: d172 bne.n 1002ca02 +1002c91c: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +1002c920: 075e lsls r6, r3, #29 +1002c922: d56e bpl.n 1002ca02 +1002c924: f8b5 3c6c ldrh.w r3, [r5, #3180] ; 0xc6c +1002c928: fa23 f000 lsr.w r0, r3, r0 +1002c92c: 07c0 lsls r0, r0, #31 +1002c92e: d568 bpl.n 1002ca02 +1002c930: f104 08f0 add.w r8, r4, #240 ; 0xf0 +1002c934: 4640 mov r0, r8 +1002c936: a901 add r1, sp, #4 +1002c938: f7f0 fade bl 1001cef8 +1002c93c: 4620 mov r0, r4 +1002c93e: f850 6fe8 ldr.w r6, [r0, #232]! +1002c942: 4631 mov r1, r6 +1002c944: f7f0 fb0c bl 1001cf60 +1002c948: 2800 cmp r0, #0 +1002c94a: d13c bne.n 1002c9c6 +1002c94c: 4630 mov r0, r6 +1002c94e: f7f0 fa5d bl 1001ce0c +1002c952: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +1002c956: 4640 mov r0, r8 +1002c958: 3b01 subs r3, #1 +1002c95a: f8c4 30f4 str.w r3, [r4, #244] ; 0xf4 +1002c95e: 3300 adds r3, #0 +1002c960: bf18 it ne +1002c962: 2301 movne r3, #1 +1002c964: f886 3065 strb.w r3, [r6, #101] ; 0x65 +1002c968: 2301 movs r3, #1 +1002c96a: f886 3067 strb.w r3, [r6, #103] ; 0x67 +1002c96e: a901 add r1, sp, #4 +1002c970: f605 07c8 addw r7, r5, #2248 ; 0x8c8 +1002c974: f7f0 fac8 bl 1001cf08 +1002c978: 4638 mov r0, r7 +1002c97a: a901 add r1, sp, #4 +1002c97c: f7f0 fabc bl 1001cef8 +1002c980: 4628 mov r0, r5 +1002c982: 4631 mov r1, r6 +1002c984: f002 fc21 bl 1002f1ca +1002c988: 2801 cmp r0, #1 +1002c98a: d003 beq.n 1002c994 +1002c98c: 4638 mov r0, r7 +1002c98e: 4631 mov r1, r6 +1002c990: f002 fb80 bl 1002f094 +1002c994: 4638 mov r0, r7 +1002c996: a901 add r1, sp, #4 +1002c998: f7f0 fab6 bl 1001cf08 +1002c99c: 4640 mov r0, r8 +1002c99e: a901 add r1, sp, #4 +1002c9a0: f7f0 faaa bl 1001cef8 +1002c9a4: f8d4 20f4 ldr.w r2, [r4, #244] ; 0xf4 +1002c9a8: bb3a cbnz r2, 1002c9fa +1002c9aa: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002c9ae: 2101 movs r1, #1 +1002c9b0: fa01 f303 lsl.w r3, r1, r3 +1002c9b4: f8b5 1c6e ldrh.w r1, [r5, #3182] ; 0xc6e +1002c9b8: 4628 mov r0, r5 +1002c9ba: ea21 0303 bic.w r3, r1, r3 +1002c9be: f8a5 3c6e strh.w r3, [r5, #3182] ; 0xc6e +1002c9c2: 2105 movs r1, #5 +1002c9c4: e016 b.n 1002c9f4 +1002c9c6: f8b5 3c6e ldrh.w r3, [r5, #3182] ; 0xc6e +1002c9ca: f8d4 20fc ldr.w r2, [r4, #252] ; 0xfc +1002c9ce: fa23 f102 lsr.w r1, r3, r2 +1002c9d2: 07c9 lsls r1, r1, #31 +1002c9d4: d511 bpl.n 1002c9fa +1002c9d6: f8d4 10f4 ldr.w r1, [r4, #244] ; 0xf4 +1002c9da: b109 cbz r1, 1002c9e0 +1002c9dc: f8c4 70f4 str.w r7, [r4, #244] ; 0xf4 +1002c9e0: 2101 movs r1, #1 +1002c9e2: fa01 f202 lsl.w r2, r1, r2 +1002c9e6: ea23 0302 bic.w r3, r3, r2 +1002c9ea: f8a5 3c6e strh.w r3, [r5, #3182] ; 0xc6e +1002c9ee: 4628 mov r0, r5 +1002c9f0: 2105 movs r1, #5 +1002c9f2: 2200 movs r2, #0 +1002c9f4: 4613 mov r3, r2 +1002c9f6: f7f4 fd8b bl 10021510 +1002c9fa: 4640 mov r0, r8 +1002c9fc: a901 add r1, sp, #4 +1002c9fe: f7f0 fa83 bl 1001cf08 +1002ca02: 2000 movs r0, #0 +1002ca04: b002 add sp, #8 +1002ca06: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002ca0a : +1002ca0a: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +1002ca0e: 6f8d ldr r5, [r1, #120] ; 0x78 +1002ca10: 2300 movs r3, #0 +1002ca12: f8b5 a000 ldrh.w sl, [r5] +1002ca16: 460c mov r4, r1 +1002ca18: f40a 7280 and.w r2, sl, #256 ; 0x100 +1002ca1c: b292 uxth r2, r2 +1002ca1e: 429a cmp r2, r3 +1002ca20: bf0c ite eq +1002ca22: 4619 moveq r1, r3 +1002ca24: 2102 movne r1, #2 +1002ca26: 9301 str r3, [sp, #4] +1002ca28: f3ca 2340 ubfx r3, sl, #9, #1 +1002ca2c: 4319 orrs r1, r3 +1002ca2e: 2901 cmp r1, #1 +1002ca30: 4606 mov r6, r0 +1002ca32: d003 beq.n 1002ca3c +1002ca34: d302 bcc.n 1002ca3c +1002ca36: f105 0910 add.w r9, r5, #16 +1002ca3a: e001 b.n 1002ca40 +1002ca3c: f105 0904 add.w r9, r5, #4 +1002ca40: 2a00 cmp r2, #0 +1002ca42: bf0c ite eq +1002ca44: 2100 moveq r1, #0 +1002ca46: 2102 movne r1, #2 +1002ca48: 4319 orrs r1, r3 +1002ca4a: 2901 cmp r1, #1 +1002ca4c: d003 beq.n 1002ca56 +1002ca4e: d305 bcc.n 1002ca5c +1002ca50: 2902 cmp r1, #2 +1002ca52: d003 beq.n 1002ca5c +1002ca54: e005 b.n 1002ca62 +1002ca56: f105 0810 add.w r8, r5, #16 +1002ca5a: e004 b.n 1002ca66 +1002ca5c: f105 080a add.w r8, r5, #10 +1002ca60: e001 b.n 1002ca66 +1002ca62: f105 0818 add.w r8, r5, #24 +1002ca66: 2a00 cmp r2, #0 +1002ca68: bf0c ite eq +1002ca6a: 2200 moveq r2, #0 +1002ca6c: 2202 movne r2, #2 +1002ca6e: 4313 orrs r3, r2 +1002ca70: 2b02 cmp r3, #2 +1002ca72: d008 beq.n 1002ca86 +1002ca74: 2b03 cmp r3, #3 +1002ca76: d006 beq.n 1002ca86 +1002ca78: 2b01 cmp r3, #1 +1002ca7a: bf14 ite ne +1002ca7c: f105 0710 addne.w r7, r5, #16 +1002ca80: f105 070a addeq.w r7, r5, #10 +1002ca84: e000 b.n 1002ca88 +1002ca86: 1d2f adds r7, r5, #4 +1002ca88: 2f00 cmp r7, #0 +1002ca8a: f000 80e1 beq.w 1002cc50 +1002ca8e: f104 0036 add.w r0, r4, #54 ; 0x36 +1002ca92: 4649 mov r1, r9 +1002ca94: 2206 movs r2, #6 +1002ca96: f7f0 f989 bl 1001cdac +1002ca9a: f104 003c add.w r0, r4, #60 ; 0x3c +1002ca9e: 4641 mov r1, r8 +1002caa0: 2206 movs r2, #6 +1002caa2: f7f0 f983 bl 1001cdac +1002caa6: f104 004e add.w r0, r4, #78 ; 0x4e +1002caaa: 4639 mov r1, r7 +1002caac: 2206 movs r2, #6 +1002caae: f7f0 f97d bl 1001cdac +1002cab2: f894 3022 ldrb.w r3, [r4, #34] ; 0x22 +1002cab6: 2b03 cmp r3, #3 +1002cab8: f200 80ca bhi.w 1002cc50 +1002cabc: e8df f003 tbb [pc, r3] +1002cac0: 38261402 .word 0x38261402 +1002cac4: f104 0048 add.w r0, r4, #72 ; 0x48 +1002cac8: 4649 mov r1, r9 +1002caca: 2206 movs r2, #6 +1002cacc: f7f0 f96e bl 1001cdac +1002cad0: f104 0042 add.w r0, r4, #66 ; 0x42 +1002cad4: 4641 mov r1, r8 +1002cad6: 2206 movs r2, #6 +1002cad8: f7f0 f968 bl 1001cdac +1002cadc: 4630 mov r0, r6 +1002cade: 4621 mov r1, r4 +1002cae0: aa01 add r2, sp, #4 +1002cae2: f7ff fd4d bl 1002c580 +1002cae6: e031 b.n 1002cb4c +1002cae8: f104 0048 add.w r0, r4, #72 ; 0x48 +1002caec: 4649 mov r1, r9 +1002caee: 2206 movs r2, #6 +1002caf0: f7f0 f95c bl 1001cdac +1002caf4: f104 0042 add.w r0, r4, #66 ; 0x42 +1002caf8: 4639 mov r1, r7 +1002cafa: 2206 movs r2, #6 +1002cafc: f7f0 f956 bl 1001cdac +1002cb00: 4630 mov r0, r6 +1002cb02: 4621 mov r1, r4 +1002cb04: aa01 add r2, sp, #4 +1002cb06: f7ff fdd9 bl 1002c6bc +1002cb0a: e01f b.n 1002cb4c +1002cb0c: f104 0048 add.w r0, r4, #72 ; 0x48 +1002cb10: 4639 mov r1, r7 +1002cb12: 2206 movs r2, #6 +1002cb14: f7f0 f94a bl 1001cdac +1002cb18: f104 0042 add.w r0, r4, #66 ; 0x42 +1002cb1c: 4641 mov r1, r8 +1002cb1e: 2206 movs r2, #6 +1002cb20: f7f0 f944 bl 1001cdac +1002cb24: 4630 mov r0, r6 +1002cb26: 4621 mov r1, r4 +1002cb28: aa01 add r2, sp, #4 +1002cb2a: f7ff fe5d bl 1002c7e8 +1002cb2e: e00d b.n 1002cb4c +1002cb30: f104 0048 add.w r0, r4, #72 ; 0x48 +1002cb34: 1d29 adds r1, r5, #4 +1002cb36: 2206 movs r2, #6 +1002cb38: f7f0 f938 bl 1001cdac +1002cb3c: f104 0042 add.w r0, r4, #66 ; 0x42 +1002cb40: f105 010a add.w r1, r5, #10 +1002cb44: 2206 movs r2, #6 +1002cb46: f7f0 f931 bl 1001cdac +1002cb4a: e081 b.n 1002cc50 +1002cb4c: 2800 cmp r0, #0 +1002cb4e: d07f beq.n 1002cc50 +1002cb50: 9a01 ldr r2, [sp, #4] +1002cb52: 2a00 cmp r2, #0 +1002cb54: d07c beq.n 1002cc50 +1002cb56: f894 0024 ldrb.w r0, [r4, #36] ; 0x24 +1002cb5a: 2300 movs r3, #0 +1002cb5c: 2801 cmp r0, #1 +1002cb5e: f8c4 2088 str.w r2, [r4, #136] ; 0x88 +1002cb62: f884 3023 strb.w r3, [r4, #35] ; 0x23 +1002cb66: f884 3054 strb.w r3, [r4, #84] ; 0x54 +1002cb6a: f894 1022 ldrb.w r1, [r4, #34] ; 0x22 +1002cb6e: d11a bne.n 1002cba6 +1002cb70: 7e2b ldrb r3, [r5, #24] +1002cb72: 2903 cmp r1, #3 +1002cb74: f003 030f and.w r3, r3, #15 +1002cb78: f884 3025 strb.w r3, [r4, #37] ; 0x25 +1002cb7c: 8b2f ldrh r7, [r5, #24] +1002cb7e: bf14 ite ne +1002cb80: 211a movne r1, #26 +1002cb82: 2120 moveq r1, #32 +1002cb84: f3c7 1741 ubfx r7, r7, #5, #2 +1002cb88: f884 7054 strb.w r7, [r4, #84] ; 0x54 +1002cb8c: 8b2d ldrh r5, [r5, #24] +1002cb8e: f884 1021 strb.w r1, [r4, #33] ; 0x21 +1002cb92: f3c5 15c0 ubfx r5, r5, #7, #1 +1002cb96: f884 5023 strb.w r5, [r4, #35] ; 0x23 +1002cb9a: b163 cbz r3, 1002cbb6 +1002cb9c: 2b03 cmp r3, #3 +1002cb9e: d00a beq.n 1002cbb6 +1002cba0: f8c6 0af8 str.w r0, [r6, #2808] ; 0xaf8 +1002cba4: e007 b.n 1002cbb6 +1002cba6: 2903 cmp r1, #3 +1002cba8: f884 3025 strb.w r3, [r4, #37] ; 0x25 +1002cbac: bf14 ite ne +1002cbae: 2318 movne r3, #24 +1002cbb0: 231e moveq r3, #30 +1002cbb2: f884 3021 strb.w r3, [r4, #33] ; 0x21 +1002cbb6: f894 302c ldrb.w r3, [r4, #44] ; 0x2c +1002cbba: b123 cbz r3, 1002cbc6 +1002cbbc: f894 3021 ldrb.w r3, [r4, #33] ; 0x21 +1002cbc0: 3304 adds r3, #4 +1002cbc2: f884 3021 strb.w r3, [r4, #33] ; 0x21 +1002cbc6: 4620 mov r0, r4 +1002cbc8: f3ca 21c0 ubfx r1, sl, #11, #1 +1002cbcc: 32c8 adds r2, #200 ; 0xc8 +1002cbce: f7ff fc22 bl 1002c416 +1002cbd2: 2800 cmp r0, #0 +1002cbd4: d03c beq.n 1002cc50 +1002cbd6: f894 302d ldrb.w r3, [r4, #45] ; 0x2d +1002cbda: b38b cbz r3, 1002cc40 +1002cbdc: f8d6 3c78 ldr.w r3, [r6, #3192] ; 0xc78 +1002cbe0: 2b04 cmp r3, #4 +1002cbe2: d80f bhi.n 1002cc04 +1002cbe4: e8df f003 tbb [pc, r3] +1002cbe8: 0a030a0a .word 0x0a030a0a +1002cbec: 0a .byte 0x0a +1002cbed: 00 .byte 0x00 +1002cbee: f894 3048 ldrb.w r3, [r4, #72] ; 0x48 +1002cbf2: 07db lsls r3, r3, #31 +1002cbf4: d52e bpl.n 1002cc54 +1002cbf6: f8d6 3cd4 ldr.w r3, [r6, #3284] ; 0xcd4 +1002cbfa: e001 b.n 1002cc00 +1002cbfc: f8d6 3c7c ldr.w r3, [r6, #3196] ; 0xc7c +1002cc00: f884 302f strb.w r3, [r4, #47] ; 0x2f +1002cc04: f894 302f ldrb.w r3, [r4, #47] ; 0x2f +1002cc08: 3b01 subs r3, #1 +1002cc0a: 2b05 cmp r3, #5 +1002cc0c: d812 bhi.n 1002cc34 +1002cc0e: e8df f003 tbb [pc, r3] +1002cc12: 0503 .short 0x0503 +1002cc14: 0c030a11 .word 0x0c030a11 +1002cc18: 2304 movs r3, #4 +1002cc1a: e00c b.n 1002cc36 +1002cc1c: 2308 movs r3, #8 +1002cc1e: f884 3030 strb.w r3, [r4, #48] ; 0x30 +1002cc22: 2304 movs r3, #4 +1002cc24: e009 b.n 1002cc3a +1002cc26: 2308 movs r3, #8 +1002cc28: e005 b.n 1002cc36 +1002cc2a: 2312 movs r3, #18 +1002cc2c: f884 3030 strb.w r3, [r4, #48] ; 0x30 +1002cc30: 2310 movs r3, #16 +1002cc32: e002 b.n 1002cc3a +1002cc34: 2300 movs r3, #0 +1002cc36: f884 3030 strb.w r3, [r4, #48] ; 0x30 +1002cc3a: f884 3031 strb.w r3, [r4, #49] ; 0x31 +1002cc3e: e005 b.n 1002cc4c +1002cc40: f884 302f strb.w r3, [r4, #47] ; 0x2f +1002cc44: f884 3031 strb.w r3, [r4, #49] ; 0x31 +1002cc48: f884 3030 strb.w r3, [r4, #48] ; 0x30 +1002cc4c: 2001 movs r0, #1 +1002cc4e: e005 b.n 1002cc5c +1002cc50: 2000 movs r0, #0 +1002cc52: e003 b.n 1002cc5c +1002cc54: 9b01 ldr r3, [sp, #4] +1002cc56: f8d3 3114 ldr.w r3, [r3, #276] ; 0x114 +1002cc5a: e7d1 b.n 1002cc00 +1002cc5c: b002 add sp, #8 +1002cc5e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + ... + +1002cc64 : +1002cc64: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1002cc68: f890 302f ldrb.w r3, [r0, #47] ; 0x2f +1002cc6c: 4604 mov r4, r0 +1002cc6e: f8d0 8010 ldr.w r8, [r0, #16] +1002cc72: 6f87 ldr r7, [r0, #120] ; 0x78 +1002cc74: b11b cbz r3, 1002cc7e +1002cc76: f890 1031 ldrb.w r1, [r0, #49] ; 0x31 +1002cc7a: f7ff f8f8 bl 1002be6e +1002cc7e: f894 6030 ldrb.w r6, [r4, #48] ; 0x30 +1002cc82: f894 3021 ldrb.w r3, [r4, #33] ; 0x21 +1002cc86: 4942 ldr r1, [pc, #264] ; (1002cd90 ) +1002cc88: 441e add r6, r3 +1002cc8a: 19bd adds r5, r7, r6 +1002cc8c: 4628 mov r0, r5 +1002cc8e: 2206 movs r2, #6 +1002cc90: f7f0 f894 bl 1001cdbc +1002cc94: b940 cbnz r0, 1002cca8 +1002cc96: 4628 mov r0, r5 +1002cc98: 493e ldr r1, [pc, #248] ; (1002cd94 ) +1002cc9a: 2206 movs r2, #6 +1002cc9c: f7f0 f88e bl 1001cdbc +1002cca0: 1c05 adds r5, r0, #0 +1002cca2: bf18 it ne +1002cca4: 2501 movne r5, #1 +1002cca6: e010 b.n 1002ccca +1002cca8: 3606 adds r6, #6 +1002ccaa: 443e add r6, r7 +1002ccac: 4630 mov r0, r6 +1002ccae: 493a ldr r1, [pc, #232] ; (1002cd98 ) +1002ccb0: 2202 movs r2, #2 +1002ccb2: f7f0 f883 bl 1001cdbc +1002ccb6: 2800 cmp r0, #0 +1002ccb8: d1ed bne.n 1002cc96 +1002ccba: 4630 mov r0, r6 +1002ccbc: 4937 ldr r1, [pc, #220] ; (1002cd9c ) +1002ccbe: 2202 movs r2, #2 +1002ccc0: f7f0 f87c bl 1001cdbc +1002ccc4: 2800 cmp r0, #0 +1002ccc6: d1e6 bne.n 1002cc96 +1002ccc8: 2501 movs r5, #1 +1002ccca: f898 3bb4 ldrb.w r3, [r8, #2996] ; 0xbb4 +1002ccce: f894 6021 ldrb.w r6, [r4, #33] ; 0x21 +1002ccd2: 2b00 cmp r3, #0 +1002ccd4: bf18 it ne +1002ccd6: 2501 movne r5, #1 +1002ccd8: f894 3030 ldrb.w r3, [r4, #48] ; 0x30 +1002ccdc: 2d00 cmp r5, #0 +1002ccde: 441e add r6, r3 +1002cce0: bf0c ite eq +1002cce2: 2300 moveq r3, #0 +1002cce4: 2306 movne r3, #6 +1002cce6: 441e add r6, r3 +1002cce8: 6f23 ldr r3, [r4, #112] ; 0x70 +1002ccea: eb07 0906 add.w r9, r7, r6 +1002ccee: 1b9b subs r3, r3, r6 +1002ccf0: a801 add r0, sp, #4 +1002ccf2: 4649 mov r1, r9 +1002ccf4: 2202 movs r2, #2 +1002ccf6: f8ad 3006 strh.w r3, [sp, #6] +1002ccfa: f7f0 f857 bl 1001cdac +1002ccfe: f8bd 0004 ldrh.w r0, [sp, #4] +1002cd02: f7ef ffaf bl 1001cc64 <_htons> +1002cd06: 86a0 strh r0, [r4, #52] ; 0x34 +1002cd08: f8d8 3010 ldr.w r3, [r8, #16] +1002cd0c: f8ad 0004 strh.w r0, [sp, #4] +1002cd10: 03db lsls r3, r3, #15 +1002cd12: d424 bmi.n 1002cd5e +1002cd14: 2d00 cmp r5, #0 +1002cd16: bf14 ite ne +1002cd18: 2302 movne r3, #2 +1002cd1a: 2300 moveq r3, #0 +1002cd1c: f1a6 010e sub.w r1, r6, #14 +1002cd20: 4620 mov r0, r4 +1002cd22: 4419 add r1, r3 +1002cd24: f7ff f892 bl 1002be4c +1002cd28: 4606 mov r6, r0 +1002cd2a: 4630 mov r0, r6 +1002cd2c: f104 0136 add.w r1, r4, #54 ; 0x36 +1002cd30: 2206 movs r2, #6 +1002cd32: f7f0 f83b bl 1001cdac +1002cd36: 1db0 adds r0, r6, #6 +1002cd38: f104 013c add.w r1, r4, #60 ; 0x3c +1002cd3c: 2206 movs r2, #6 +1002cd3e: f7f0 f835 bl 1001cdac +1002cd42: bb0d cbnz r5, 1002cd88 +1002cd44: f8bd 0006 ldrh.w r0, [sp, #6] +1002cd48: f7ef ff8c bl 1001cc64 <_htons> +1002cd4c: a902 add r1, sp, #8 +1002cd4e: f821 0d02 strh.w r0, [r1, #-2]! +1002cd52: 2202 movs r2, #2 +1002cd54: f106 000c add.w r0, r6, #12 +1002cd58: f7f0 f828 bl 1001cdac +1002cd5c: e014 b.n 1002cd88 +1002cd5e: 2387 movs r3, #135 ; 0x87 +1002cd60: 55bb strb r3, [r7, r6] +1002cd62: 2312 movs r3, #18 +1002cd64: f889 3001 strb.w r3, [r9, #1] +1002cd68: f1a6 0124 sub.w r1, r6, #36 ; 0x24 +1002cd6c: f248 7312 movw r3, #34578 ; 0x8712 +1002cd70: 4620 mov r0, r4 +1002cd72: f8ad 3004 strh.w r3, [sp, #4] +1002cd76: f7ff f869 bl 1002be4c +1002cd7a: 6f61 ldr r1, [r4, #116] ; 0x74 +1002cd7c: 4606 mov r6, r0 +1002cd7e: 2218 movs r2, #24 +1002cd80: f7f0 f814 bl 1001cdac +1002cd84: 3618 adds r6, #24 +1002cd86: e7d0 b.n 1002cd2a +1002cd88: 2001 movs r0, #1 +1002cd8a: b003 add sp, #12 +1002cd8c: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1002cd90: 1004a8a5 .word 0x1004a8a5 +1002cd94: 1004a87e .word 0x1004a87e +1002cd98: 1004a87c .word 0x1004a87c +1002cd9c: 1004a867 .word 0x1004a867 + +1002cda0 : +1002cda0: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1002cda4: 680c ldr r4, [r1, #0] +1002cda6: f600 27c4 addw r7, r0, #2756 ; 0xac4 +1002cdaa: 4620 mov r0, r4 +1002cdac: 460e mov r6, r1 +1002cdae: f7f0 f82d bl 1001ce0c +1002cdb2: f894 302a ldrb.w r3, [r4, #42] ; 0x2a +1002cdb6: b153 cbz r3, 1002cdce +1002cdb8: 4639 mov r1, r7 +1002cdba: 4620 mov r0, r4 +1002cdbc: f7ff f960 bl 1002c080 +1002cdc0: 4630 mov r0, r6 +1002cdc2: 4639 mov r1, r7 +1002cdc4: f7ff f9d5 bl 1002c172 +1002cdc8: 2000 movs r0, #0 +1002cdca: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002cdce: 6835 ldr r5, [r6, #0] +1002cdd0: f04f 0801 mov.w r8, #1 +1002cdd4: 4630 mov r0, r6 +1002cdd6: 4629 mov r1, r5 +1002cdd8: f7f0 f8c2 bl 1001cf60 +1002cddc: bb70 cbnz r0, 1002ce3c +1002cdde: f895 302a ldrb.w r3, [r5, #42] ; 0x2a +1002cde2: 4543 cmp r3, r8 +1002cde4: d1e8 bne.n 1002cdb8 +1002cde6: f895 3021 ldrb.w r3, [r5, #33] ; 0x21 +1002cdea: f895 1030 ldrb.w r1, [r5, #48] ; 0x30 +1002cdee: 4628 mov r0, r5 +1002cdf0: 4419 add r1, r3 +1002cdf2: b2c9 uxtb r1, r1 +1002cdf4: f7ff f82a bl 1002be4c +1002cdf8: f894 1031 ldrb.w r1, [r4, #49] ; 0x31 +1002cdfc: 4620 mov r0, r4 +1002cdfe: f7ff f836 bl 1002be6e +1002ce02: 6fa9 ldr r1, [r5, #120] ; 0x78 +1002ce04: 6f2a ldr r2, [r5, #112] ; 0x70 +1002ce06: 6fe0 ldr r0, [r4, #124] ; 0x7c +1002ce08: f7ef ffd0 bl 1001cdac +1002ce0c: 6f2b ldr r3, [r5, #112] ; 0x70 +1002ce0e: 6fe2 ldr r2, [r4, #124] ; 0x7c +1002ce10: f8d4 1080 ldr.w r1, [r4, #128] ; 0x80 +1002ce14: 441a add r2, r3 +1002ce16: f108 0801 add.w r8, r8, #1 +1002ce1a: 428a cmp r2, r1 +1002ce1c: fa5f f888 uxtb.w r8, r8 +1002ce20: 67e2 str r2, [r4, #124] ; 0x7c +1002ce22: d902 bls.n 1002ce2a +1002ce24: 1ad3 subs r3, r2, r3 +1002ce26: 67e3 str r3, [r4, #124] ; 0x7c +1002ce28: e002 b.n 1002ce30 +1002ce2a: 6f22 ldr r2, [r4, #112] ; 0x70 +1002ce2c: 4413 add r3, r2 +1002ce2e: 6723 str r3, [r4, #112] ; 0x70 +1002ce30: f895 3031 ldrb.w r3, [r5, #49] ; 0x31 +1002ce34: f884 3031 strb.w r3, [r4, #49] ; 0x31 +1002ce38: 682d ldr r5, [r5, #0] +1002ce3a: e7cb b.n 1002cdd4 +1002ce3c: 4630 mov r0, r6 +1002ce3e: 4639 mov r1, r7 +1002ce40: f7ff f997 bl 1002c172 +1002ce44: 4620 mov r0, r4 +1002ce46: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +1002ce4a : +1002ce4a: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1002ce4e: 4606 mov r6, r0 +1002ce50: 460c mov r4, r1 +1002ce52: f600 27c4 addw r7, r0, #2756 ; 0xac4 +1002ce56: f891 902b ldrb.w r9, [r1, #43] ; 0x2b +1002ce5a: f891 802a ldrb.w r8, [r1, #42] ; 0x2a +1002ce5e: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002ce62: 3142 adds r1, #66 ; 0x42 +1002ce64: f000 fda6 bl 1002d9b4 +1002ce68: b940 cbnz r0, 1002ce7c +1002ce6a: 6fa3 ldr r3, [r4, #120] ; 0x78 +1002ce6c: 781b ldrb r3, [r3, #0] +1002ce6e: f003 030c and.w r3, r3, #12 +1002ce72: 2b08 cmp r3, #8 +1002ce74: d005 beq.n 1002ce82 +1002ce76: 4630 mov r0, r6 +1002ce78: f000 fdf2 bl 1002da60 +1002ce7c: f100 05bc add.w r5, r0, #188 ; 0xbc +1002ce80: e000 b.n 1002ce84 +1002ce82: 4605 mov r5, r0 +1002ce84: f1b9 0f00 cmp.w r9, #0 +1002ce88: d103 bne.n 1002ce92 +1002ce8a: f1b8 0f00 cmp.w r8, #0 +1002ce8e: d023 beq.n 1002ced8 +1002ce90: e018 b.n 1002cec4 +1002ce92: f1b9 0f01 cmp.w r9, #1 +1002ce96: d12f bne.n 1002cef8 +1002ce98: b17d cbz r5, 1002ceba +1002ce9a: f1b8 0f00 cmp.w r8, #0 +1002ce9e: d107 bne.n 1002ceb0 +1002cea0: 4628 mov r0, r5 +1002cea2: f7f0 f857 bl 1001cf54 +1002cea6: b918 cbnz r0, 1002ceb0 +1002cea8: 4628 mov r0, r5 +1002ceaa: 4639 mov r1, r7 +1002ceac: f7ff f961 bl 1002c172 +1002ceb0: 4620 mov r0, r4 +1002ceb2: 4629 mov r1, r5 +1002ceb4: f7ef ffa4 bl 1001ce00 +1002ceb8: e01e b.n 1002cef8 +1002ceba: 4620 mov r0, r4 +1002cebc: 4639 mov r1, r7 +1002cebe: f7ff f8df bl 1002c080 +1002cec2: e019 b.n 1002cef8 +1002cec4: b195 cbz r5, 1002ceec +1002cec6: 4620 mov r0, r4 +1002cec8: 4629 mov r1, r5 +1002ceca: f7ef ff99 bl 1001ce00 +1002cece: 4630 mov r0, r6 +1002ced0: 4629 mov r1, r5 +1002ced2: f7ff ff65 bl 1002cda0 +1002ced6: 4604 mov r4, r0 +1002ced8: b17c cbz r4, 1002cefa +1002ceda: f894 302d ldrb.w r3, [r4, #45] ; 0x2d +1002cede: b163 cbz r3, 1002cefa +1002cee0: 4630 mov r0, r6 +1002cee2: 4621 mov r1, r4 +1002cee4: f7ff f98f bl 1002c206 +1002cee8: 4605 mov r5, r0 +1002ceea: b930 cbnz r0, 1002cefa +1002ceec: 4620 mov r0, r4 +1002ceee: 4639 mov r1, r7 +1002cef0: f7ff f8c6 bl 1002c080 +1002cef4: 462c mov r4, r5 +1002cef6: e000 b.n 1002cefa +1002cef8: 2400 movs r4, #0 +1002cefa: 4620 mov r0, r4 +1002cefc: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +1002cf00 : +1002cf00: b570 push {r4, r5, r6, lr} +1002cf02: 680e ldr r6, [r1, #0] +1002cf04: 460d mov r5, r1 +1002cf06: 6fb1 ldr r1, [r6, #120] ; 0x78 +1002cf08: 4604 mov r4, r0 +1002cf0a: 310a adds r1, #10 +1002cf0c: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002cf10: f000 fd50 bl 1002d9b4 +1002cf14: b130 cbz r0, 1002cf24 +1002cf16: e9f0 2360 ldrd r2, r3, [r0, #384]! ; 0x180 +1002cf1a: 3201 adds r2, #1 +1002cf1c: f143 0300 adc.w r3, r3, #0 +1002cf20: e9c0 2300 strd r2, r3, [r0] +1002cf24: 4631 mov r1, r6 +1002cf26: 4620 mov r0, r4 +1002cf28: f7ff ff8f bl 1002ce4a +1002cf2c: 4601 mov r1, r0 +1002cf2e: 6028 str r0, [r5, #0] +1002cf30: b110 cbz r0, 1002cf38 +1002cf32: 4620 mov r0, r4 +1002cf34: f7f7 fd6c bl 10024a10 +1002cf38: 2001 movs r0, #1 +1002cf3a: bd70 pop {r4, r5, r6, pc} + +1002cf3c : +1002cf3c: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1002cf40: 680b ldr r3, [r1, #0] +1002cf42: 4680 mov r8, r0 +1002cf44: 6f9a ldr r2, [r3, #120] ; 0x78 +1002cf46: 7817 ldrb r7, [r2, #0] +1002cf48: f017 0703 ands.w r7, r7, #3 +1002cf4c: d154 bne.n 1002cff8 +1002cf4e: 8816 ldrh r6, [r2, #0] +1002cf50: f416 7f80 tst.w r6, #256 ; 0x100 +1002cf54: fa5f fc86 uxtb.w ip, r6 +1002cf58: bf0c ite eq +1002cf5a: f04f 0900 moveq.w r9, #0 +1002cf5e: f04f 0902 movne.w r9, #2 +1002cf62: f3c6 2640 ubfx r6, r6, #9, #1 +1002cf66: ea49 0606 orr.w r6, r9, r6 +1002cf6a: f883 6022 strb.w r6, [r3, #34] ; 0x22 +1002cf6e: 7d96 ldrb r6, [r2, #22] +1002cf70: f00c 040c and.w r4, ip, #12 +1002cf74: f006 060f and.w r6, r6, #15 +1002cf78: f883 602a strb.w r6, [r3, #42] ; 0x2a +1002cf7c: 8ad6 ldrh r6, [r2, #22] +1002cf7e: 2c04 cmp r4, #4 +1002cf80: ea4f 1616 mov.w r6, r6, lsr #4 +1002cf84: 851e strh r6, [r3, #40] ; 0x28 +1002cf86: 8816 ldrh r6, [r2, #0] +1002cf88: f3c6 3600 ubfx r6, r6, #12, #1 +1002cf8c: f883 6026 strb.w r6, [r3, #38] ; 0x26 +1002cf90: 8816 ldrh r6, [r2, #0] +1002cf92: f3c6 2680 ubfx r6, r6, #10, #1 +1002cf96: f883 602b strb.w r6, [r3, #43] ; 0x2b +1002cf9a: 8816 ldrh r6, [r2, #0] +1002cf9c: f3c6 3640 ubfx r6, r6, #13, #1 +1002cfa0: f883 6027 strb.w r6, [r3, #39] ; 0x27 +1002cfa4: 8816 ldrh r6, [r2, #0] +1002cfa6: f3c6 3680 ubfx r6, r6, #14, #1 +1002cfaa: f883 602d strb.w r6, [r3, #45] ; 0x2d +1002cfae: 8812 ldrh r2, [r2, #0] +1002cfb0: ea4f 32d2 mov.w r2, r2, lsr #15 +1002cfb4: f883 202c strb.w r2, [r3, #44] ; 0x2c +1002cfb8: d007 beq.n 1002cfca +1002cfba: 2c08 cmp r4, #8 +1002cfbc: d009 beq.n 1002cfd2 +1002cfbe: b9f4 cbnz r4, 1002cffe +1002cfc0: f7ff ff9e bl 1002cf00 +1002cfc4: 4620 mov r0, r4 +1002cfc6: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002cfca: 6809 ldr r1, [r1, #0] +1002cfcc: f7ff fc50 bl 1002c870 +1002cfd0: e015 b.n 1002cffe +1002cfd2: ea4f 1cdc mov.w ip, ip, lsr #7 +1002cfd6: f883 c024 strb.w ip, [r3, #36] ; 0x24 +1002cfda: 6809 ldr r1, [r1, #0] +1002cfdc: f7ff fd15 bl 1002ca0a +1002cfe0: b970 cbnz r0, 1002d000 +1002cfe2: f508 612c add.w r1, r8, #2752 ; 0xac0 +1002cfe6: e9d1 2314 ldrd r2, r3, [r1, #80] ; 0x50 +1002cfea: 3201 adds r2, #1 +1002cfec: f143 0300 adc.w r3, r3, #0 +1002cff0: e9c1 2314 strd r2, r3, [r1, #80] ; 0x50 +1002cff4: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002cff8: 2000 movs r0, #0 +1002cffa: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002cffe: 4638 mov r0, r7 +1002d000: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +1002d004 : +1002d004: b538 push {r3, r4, r5, lr} +1002d006: f891 3023 ldrb.w r3, [r1, #35] ; 0x23 +1002d00a: 4605 mov r5, r0 +1002d00c: 460c mov r4, r1 +1002d00e: b943 cbnz r3, 1002d022 +1002d010: 4608 mov r0, r1 +1002d012: f7ff fe27 bl 1002cc64 +1002d016: 4628 mov r0, r5 +1002d018: 4621 mov r1, r4 +1002d01a: f00d ff59 bl 1003aed0 +1002d01e: 2001 movs r0, #1 +1002d020: bd38 pop {r3, r4, r5, pc} +1002d022: 2000 movs r0, #0 +1002d024: bd38 pop {r3, r4, r5, pc} + +1002d026 : +1002d026: b570 push {r4, r5, r6, lr} +1002d028: f8d0 5454 ldr.w r5, [r0, #1108] ; 0x454 +1002d02c: 4604 mov r4, r0 +1002d02e: 2d01 cmp r5, #1 +1002d030: 460e mov r6, r1 +1002d032: d10e bne.n 1002d052 +1002d034: f7ff ffe6 bl 1002d004 +1002d038: 2801 cmp r0, #1 +1002d03a: d01f beq.n 1002d07c +1002d03c: f241 63f8 movw r3, #5880 ; 0x16f8 +1002d040: 58e3 ldr r3, [r4, r3] +1002d042: b9c3 cbnz r3, 1002d076 +1002d044: f241 63fc movw r3, #5884 ; 0x16fc +1002d048: 58e0 ldr r0, [r4, r3] +1002d04a: 3000 adds r0, #0 +1002d04c: bf18 it ne +1002d04e: 2001 movne r0, #1 +1002d050: bd70 pop {r4, r5, r6, pc} +1002d052: 4608 mov r0, r1 +1002d054: f7ff fe06 bl 1002cc64 +1002d058: 2801 cmp r0, #1 +1002d05a: 4605 mov r5, r0 +1002d05c: d10b bne.n 1002d076 +1002d05e: f241 63f8 movw r3, #5880 ; 0x16f8 +1002d062: 58e0 ldr r0, [r4, r3] +1002d064: b948 cbnz r0, 1002d07a +1002d066: f241 63fc movw r3, #5884 ; 0x16fc +1002d06a: 58e3 ldr r3, [r4, r3] +1002d06c: b933 cbnz r3, 1002d07c +1002d06e: 4620 mov r0, r4 +1002d070: 4631 mov r1, r6 +1002d072: f00d ff2d bl 1003aed0 +1002d076: 4628 mov r0, r5 +1002d078: bd70 pop {r4, r5, r6, pc} +1002d07a: 2000 movs r0, #0 +1002d07c: bd70 pop {r4, r5, r6, pc} + +1002d07e : +1002d07e: b537 push {r0, r1, r2, r4, r5, lr} +1002d080: ab02 add r3, sp, #8 +1002d082: f843 1d04 str.w r1, [r3, #-4]! +1002d086: 4619 mov r1, r3 +1002d088: 4605 mov r5, r0 +1002d08a: f7ff ff57 bl 1002cf3c +1002d08e: 2801 cmp r0, #1 +1002d090: 4604 mov r4, r0 +1002d092: d005 beq.n 1002d0a0 +1002d094: 9801 ldr r0, [sp, #4] +1002d096: b118 cbz r0, 1002d0a0 +1002d098: f605 21c4 addw r1, r5, #2756 ; 0xac4 +1002d09c: f7fe fff0 bl 1002c080 +1002d0a0: 4620 mov r0, r4 +1002d0a2: b003 add sp, #12 +1002d0a4: bd30 pop {r4, r5, pc} + +1002d0a6 : +1002d0a6: b570 push {r4, r5, r6, lr} +1002d0a8: 460e mov r6, r1 +1002d0aa: 4604 mov r4, r0 +1002d0ac: f7ff f92a bl 1002c304 +1002d0b0: 4601 mov r1, r0 +1002d0b2: b908 cbnz r0, 1002d0b8 +1002d0b4: 2500 movs r5, #0 +1002d0b6: e01d b.n 1002d0f4 +1002d0b8: 4620 mov r0, r4 +1002d0ba: f7ff fec6 bl 1002ce4a +1002d0be: 4601 mov r1, r0 +1002d0c0: b1b8 cbz r0, 1002d0f2 +1002d0c2: 4620 mov r0, r4 +1002d0c4: f7ff f96c bl 1002c3a0 +1002d0c8: 4605 mov r5, r0 +1002d0ca: 2800 cmp r0, #0 +1002d0cc: d0f2 beq.n 1002d0b4 +1002d0ce: 4629 mov r1, r5 +1002d0d0: 4620 mov r0, r4 +1002d0d2: 2200 movs r2, #0 +1002d0d4: f7ff fa1a bl 1002c50c +1002d0d8: 4629 mov r1, r5 +1002d0da: 4620 mov r0, r4 +1002d0dc: f7ff ffa3 bl 1002d026 +1002d0e0: 2801 cmp r0, #1 +1002d0e2: 4605 mov r5, r0 +1002d0e4: d006 beq.n 1002d0f4 +1002d0e6: 4630 mov r0, r6 +1002d0e8: f604 21c4 addw r1, r4, #2756 ; 0xac4 +1002d0ec: f7fe ffc8 bl 1002c080 +1002d0f0: e000 b.n 1002d0f4 +1002d0f2: 2501 movs r5, #1 +1002d0f4: f504 642c add.w r4, r4, #2752 ; 0xac0 +1002d0f8: e9d4 2314 ldrd r2, r3, [r4, #80] ; 0x50 +1002d0fc: 3201 adds r2, #1 +1002d0fe: f143 0300 adc.w r3, r3, #0 +1002d102: e9c4 2314 strd r2, r3, [r4, #80] ; 0x50 +1002d106: 4628 mov r0, r5 +1002d108: bd70 pop {r4, r5, r6, pc} + +1002d10a : +1002d10a: b570 push {r4, r5, r6, lr} +1002d10c: 6903 ldr r3, [r0, #16] +1002d10e: 460d mov r5, r1 +1002d110: 0719 lsls r1, r3, #28 +1002d112: 4604 mov r4, r0 +1002d114: d41d bmi.n 1002d152 +1002d116: 4620 mov r0, r4 +1002d118: 4629 mov r1, r5 +1002d11a: f7ff ffb0 bl 1002d07e +1002d11e: 2801 cmp r0, #1 +1002d120: 4606 mov r6, r0 +1002d122: d135 bne.n 1002d190 +1002d124: 6923 ldr r3, [r4, #16] +1002d126: 071a lsls r2, r3, #28 +1002d128: d50d bpl.n 1002d146 +1002d12a: f895 3048 ldrb.w r3, [r5, #72] ; 0x48 +1002d12e: 07db lsls r3, r3, #31 +1002d130: d409 bmi.n 1002d146 +1002d132: f895 302f ldrb.w r3, [r5, #47] ; 0x2f +1002d136: b133 cbz r3, 1002d146 +1002d138: f895 302e ldrb.w r3, [r5, #46] ; 0x2e +1002d13c: b1cb cbz r3, 1002d172 +1002d13e: f8d4 3fd4 ldr.w r3, [r4, #4052] ; 0xfd4 +1002d142: 2b01 cmp r3, #1 +1002d144: d015 beq.n 1002d172 +1002d146: 4620 mov r0, r4 +1002d148: 4629 mov r1, r5 +1002d14a: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1002d14e: f7ff bfaa b.w 1002d0a6 +1002d152: f890 3fcd ldrb.w r3, [r0, #4045] ; 0xfcd +1002d156: 2b00 cmp r3, #0 +1002d158: d0dd beq.n 1002d116 +1002d15a: f604 26dc addw r6, r4, #2780 ; 0xadc +1002d15e: 4630 mov r0, r6 +1002d160: f7fe ff7b bl 1002c05a +1002d164: 4601 mov r1, r0 +1002d166: 2800 cmp r0, #0 +1002d168: d0d5 beq.n 1002d116 +1002d16a: 4620 mov r0, r4 +1002d16c: f7ff ff9b bl 1002d0a6 +1002d170: e7f5 b.n 1002d15e +1002d172: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +1002d176: f023 0304 bic.w r3, r3, #4 +1002d17a: 2b01 cmp r3, #1 +1002d17c: d0e3 beq.n 1002d146 +1002d17e: f894 3fcd ldrb.w r3, [r4, #4045] ; 0xfcd +1002d182: 2b00 cmp r3, #0 +1002d184: d1df bne.n 1002d146 +1002d186: 4628 mov r0, r5 +1002d188: f604 21dc addw r1, r4, #2780 ; 0xadc +1002d18c: f7fe ffdc bl 1002c148 +1002d190: 4630 mov r0, r6 +1002d192: bd70 pop {r4, r5, r6, pc} + +1002d194 : +1002d194: b510 push {r4, lr} +1002d196: 6904 ldr r4, [r0, #16] +1002d198: 4601 mov r1, r0 +1002d19a: f894 3bb4 ldrb.w r3, [r4, #2996] ; 0xbb4 +1002d19e: 4620 mov r0, r4 +1002d1a0: b11b cbz r3, 1002d1aa +1002d1a2: e8bd 4010 ldmia.w sp!, {r4, lr} +1002d1a6: f7e0 bbcb b.w 1000d940 +1002d1aa: f7ff ffae bl 1002d10a +1002d1ae: b140 cbz r0, 1002d1c2 +1002d1b0: f504 642c add.w r4, r4, #2752 ; 0xac0 +1002d1b4: e9d4 2312 ldrd r2, r3, [r4, #72] ; 0x48 +1002d1b8: 3201 adds r2, #1 +1002d1ba: f143 0300 adc.w r3, r3, #0 +1002d1be: e9c4 2312 strd r2, r3, [r4, #72] ; 0x48 +1002d1c2: bd10 pop {r4, pc} + +1002d1c4 : +1002d1c4: b510 push {r4, lr} +1002d1c6: 4604 mov r4, r0 +1002d1c8: 4813 ldr r0, [pc, #76] ; (1002d218 ) +1002d1ca: f7f0 f83d bl 1001d248 +1002d1ce: f504 50ba add.w r0, r4, #5952 ; 0x1740 +1002d1d2: 3010 adds r0, #16 +1002d1d4: f7ef fe4c bl 1001ce70 +1002d1d8: b1a0 cbz r0, 1002d204 +1002d1da: f504 53ba add.w r3, r4, #5952 ; 0x1740 +1002d1de: 3318 adds r3, #24 +1002d1e0: 681b ldr r3, [r3, #0] +1002d1e2: b97b cbnz r3, 1002d204 +1002d1e4: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +1002d1e8: 3318 adds r3, #24 +1002d1ea: 681b ldr r3, [r3, #0] +1002d1ec: 2b01 cmp r3, #1 +1002d1ee: d009 beq.n 1002d204 +1002d1f0: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +1002d1f4: 331c adds r3, #28 +1002d1f6: 681b ldr r3, [r3, #0] +1002d1f8: 2b01 cmp r3, #1 +1002d1fa: d003 beq.n 1002d204 +1002d1fc: 4620 mov r0, r4 +1002d1fe: f003 fbc5 bl 1003098c +1002d202: e7e4 b.n 1002d1ce +1002d204: f504 50ba add.w r0, r4, #5952 ; 0x1740 +1002d208: 3014 adds r0, #20 +1002d20a: f7ef fe17 bl 1001ce3c +1002d20e: e8bd 4010 ldmia.w sp!, {r4, lr} +1002d212: f7f0 b823 b.w 1001d25c +1002d216: bf00 nop +1002d218: 1004a894 .word 0x1004a894 + +1002d21c : +1002d21c: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1002d21e: f8d1 5080 ldr.w r5, [r1, #128] ; 0x80 +1002d222: b1e5 cbz r5, 1002d25e +1002d224: 7f0b ldrb r3, [r1, #28] +1002d226: f003 03fb and.w r3, r3, #251 ; 0xfb +1002d22a: 2b01 cmp r3, #1 +1002d22c: d117 bne.n 1002d25e +1002d22e: f8d0 6c80 ldr.w r6, [r0, #3200] ; 0xc80 +1002d232: 8a4c ldrh r4, [r1, #18] +1002d234: 7f4a ldrb r2, [r1, #29] +1002d236: 698b ldr r3, [r1, #24] +1002d238: 7f8f ldrb r7, [r1, #30] +1002d23a: eb00 1106 add.w r1, r0, r6, lsl #4 +1002d23e: f601 4184 addw r1, r1, #3204 ; 0xc84 +1002d242: eb00 0086 add.w r0, r0, r6, lsl #2 +1002d246: 9100 str r1, [sp, #0] +1002d248: f8d0 1cc4 ldr.w r1, [r0, #3268] ; 0xcc4 +1002d24c: 1b1b subs r3, r3, r4 +1002d24e: 1a9b subs r3, r3, r2 +1002d250: 9101 str r1, [sp, #4] +1002d252: f105 0028 add.w r0, r5, #40 ; 0x28 +1002d256: 4621 mov r1, r4 +1002d258: 1bdb subs r3, r3, r7 +1002d25a: f016 fb91 bl 10043980 <__wep_80211_encrypt_veneer> +1002d25e: b003 add sp, #12 +1002d260: bdf0 pop {r4, r5, r6, r7, pc} + +1002d262 : +1002d262: b570 push {r4, r5, r6, lr} +1002d264: f891 302f ldrb.w r3, [r1, #47] ; 0x2f +1002d268: b086 sub sp, #24 +1002d26a: f003 03fb and.w r3, r3, #251 ; 0xfb +1002d26e: 2b01 cmp r3, #1 +1002d270: d118 bne.n 1002d2a4 +1002d272: f891 5058 ldrb.w r5, [r1, #88] ; 0x58 +1002d276: f891 4021 ldrb.w r4, [r1, #33] ; 0x21 +1002d27a: eb00 1605 add.w r6, r0, r5, lsl #4 +1002d27e: f606 4684 addw r6, r6, #3204 ; 0xc84 +1002d282: f891 2030 ldrb.w r2, [r1, #48] ; 0x30 +1002d286: 6f0b ldr r3, [r1, #112] ; 0x70 +1002d288: eb00 0085 add.w r0, r0, r5, lsl #2 +1002d28c: 9600 str r6, [sp, #0] +1002d28e: f8d0 0cc4 ldr.w r0, [r0, #3268] ; 0xcc4 +1002d292: 1b1b subs r3, r3, r4 +1002d294: 9001 str r0, [sp, #4] +1002d296: a805 add r0, sp, #20 +1002d298: 9002 str r0, [sp, #8] +1002d29a: 6f88 ldr r0, [r1, #120] ; 0x78 +1002d29c: 1a9b subs r3, r3, r2 +1002d29e: 4621 mov r1, r4 +1002d2a0: f016 fb76 bl 10043990 <__wep_80211_decrypt_veneer> +1002d2a4: b006 add sp, #24 +1002d2a6: bd70 pop {r4, r5, r6, pc} + +1002d2a8 : +1002d2a8: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +1002d2aa: f8d1 3080 ldr.w r3, [r1, #128] ; 0x80 +1002d2ae: 4605 mov r5, r0 +1002d2b0: 460c mov r4, r1 +1002d2b2: b90b cbnz r3, 1002d2b8 +1002d2b4: 2000 movs r0, #0 +1002d2b6: e02b b.n 1002d310 +1002d2b8: 7f0b ldrb r3, [r1, #28] +1002d2ba: 2b02 cmp r3, #2 +1002d2bc: d1fa bne.n 1002d2b4 +1002d2be: 6f08 ldr r0, [r1, #112] ; 0x70 +1002d2c0: b920 cbnz r0, 1002d2cc +1002d2c2: f505 603d add.w r0, r5, #3024 ; 0xbd0 +1002d2c6: 3157 adds r1, #87 ; 0x57 +1002d2c8: f000 fb74 bl 1002d9b4 +1002d2cc: f894 2057 ldrb.w r2, [r4, #87] ; 0x57 +1002d2d0: 07d3 lsls r3, r2, #31 +1002d2d2: d51a bpl.n 1002d30a +1002d2d4: f8d5 2cd8 ldr.w r2, [r5, #3288] ; 0xcd8 +1002d2d8: eb05 1502 add.w r5, r5, r2, lsl #4 +1002d2dc: f605 45dc addw r5, r5, #3292 ; 0xcdc +1002d2e0: 2800 cmp r0, #0 +1002d2e2: d0e7 beq.n 1002d2b4 +1002d2e4: 8a61 ldrh r1, [r4, #18] +1002d2e6: 69a3 ldr r3, [r4, #24] +1002d2e8: 7f62 ldrb r2, [r4, #29] +1002d2ea: f8d4 0080 ldr.w r0, [r4, #128] ; 0x80 +1002d2ee: 7fa6 ldrb r6, [r4, #30] +1002d2f0: 1a5b subs r3, r3, r1 +1002d2f2: 1a9b subs r3, r3, r2 +1002d2f4: 9500 str r5, [sp, #0] +1002d2f6: 3451 adds r4, #81 ; 0x51 +1002d2f8: 2510 movs r5, #16 +1002d2fa: 3028 adds r0, #40 ; 0x28 +1002d2fc: 9501 str r5, [sp, #4] +1002d2fe: 9402 str r4, [sp, #8] +1002d300: 1b9b subs r3, r3, r6 +1002d302: f016 fb55 bl 100439b0 <__tkip_80211_encrypt_veneer> +1002d306: 2001 movs r0, #1 +1002d308: e002 b.n 1002d310 +1002d30a: f500 759c add.w r5, r0, #312 ; 0x138 +1002d30e: e7e7 b.n 1002d2e0 +1002d310: b004 add sp, #16 +1002d312: bd70 pop {r4, r5, r6, pc} + +1002d314 : +1002d314: b570 push {r4, r5, r6, lr} +1002d316: f891 302f ldrb.w r3, [r1, #47] ; 0x2f +1002d31a: b086 sub sp, #24 +1002d31c: 2b02 cmp r3, #2 +1002d31e: 4605 mov r5, r0 +1002d320: 460c mov r4, r1 +1002d322: d001 beq.n 1002d328 +1002d324: 2000 movs r0, #0 +1002d326: e029 b.n 1002d37c +1002d328: f101 0642 add.w r6, r1, #66 ; 0x42 +1002d32c: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002d330: 4631 mov r1, r6 +1002d332: f000 fb3f bl 1002d9b4 +1002d336: b308 cbz r0, 1002d37c +1002d338: f894 3048 ldrb.w r3, [r4, #72] ; 0x48 +1002d33c: 07db lsls r3, r3, #31 +1002d33e: d51a bpl.n 1002d376 +1002d340: f895 3fcc ldrb.w r3, [r5, #4044] ; 0xfcc +1002d344: 2b00 cmp r3, #0 +1002d346: d0ed beq.n 1002d324 +1002d348: f894 0058 ldrb.w r0, [r4, #88] ; 0x58 +1002d34c: eb05 1000 add.w r0, r5, r0, lsl #4 +1002d350: f600 40dc addw r0, r0, #3292 ; 0xcdc +1002d354: f894 1021 ldrb.w r1, [r4, #33] ; 0x21 +1002d358: 6f23 ldr r3, [r4, #112] ; 0x70 +1002d35a: f894 2030 ldrb.w r2, [r4, #48] ; 0x30 +1002d35e: 9000 str r0, [sp, #0] +1002d360: 2010 movs r0, #16 +1002d362: 1a5b subs r3, r3, r1 +1002d364: 9001 str r0, [sp, #4] +1002d366: a805 add r0, sp, #20 +1002d368: 9003 str r0, [sp, #12] +1002d36a: 9602 str r6, [sp, #8] +1002d36c: 6fa0 ldr r0, [r4, #120] ; 0x78 +1002d36e: 1a9b subs r3, r3, r2 +1002d370: f016 f9c6 bl 10043700 <__tkip_80211_decrypt_veneer> +1002d374: e002 b.n 1002d37c +1002d376: f500 709c add.w r0, r0, #312 ; 0x138 +1002d37a: e7eb b.n 1002d354 +1002d37c: b006 add sp, #24 +1002d37e: bd70 pop {r4, r5, r6, pc} + +1002d380 : +1002d380: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +1002d382: f8d1 5080 ldr.w r5, [r1, #128] ; 0x80 +1002d386: 4606 mov r6, r0 +1002d388: 460c mov r4, r1 +1002d38a: b90d cbnz r5, 1002d390 +1002d38c: 2000 movs r0, #0 +1002d38e: e02b b.n 1002d3e8 +1002d390: 7f0b ldrb r3, [r1, #28] +1002d392: 2b04 cmp r3, #4 +1002d394: d123 bne.n 1002d3de +1002d396: 6f08 ldr r0, [r1, #112] ; 0x70 +1002d398: b930 cbnz r0, 1002d3a8 +1002d39a: f506 603d add.w r0, r6, #3024 ; 0xbd0 +1002d39e: 3157 adds r1, #87 ; 0x57 +1002d3a0: f000 fb08 bl 1002d9b4 +1002d3a4: 2800 cmp r0, #0 +1002d3a6: d0f1 beq.n 1002d38c +1002d3a8: f894 2057 ldrb.w r2, [r4, #87] ; 0x57 +1002d3ac: 07d3 lsls r3, r2, #31 +1002d3ae: d518 bpl.n 1002d3e2 +1002d3b0: f8d6 3cd8 ldr.w r3, [r6, #3288] ; 0xcd8 +1002d3b4: eb06 1303 add.w r3, r6, r3, lsl #4 +1002d3b8: f603 43dc addw r3, r3, #3292 ; 0xcdc +1002d3bc: 8a61 ldrh r1, [r4, #18] +1002d3be: 69a2 ldr r2, [r4, #24] +1002d3c0: 7f60 ldrb r0, [r4, #29] +1002d3c2: 1a52 subs r2, r2, r1 +1002d3c4: 1a12 subs r2, r2, r0 +1002d3c6: 8d28 ldrh r0, [r5, #40] ; 0x28 +1002d3c8: 7fa4 ldrb r4, [r4, #30] +1002d3ca: f000 000c and.w r0, r0, #12 +1002d3ce: 9000 str r0, [sp, #0] +1002d3d0: a802 add r0, sp, #8 +1002d3d2: 9001 str r0, [sp, #4] +1002d3d4: 1b12 subs r2, r2, r4 +1002d3d6: f105 0028 add.w r0, r5, #40 ; 0x28 +1002d3da: f016 fa81 bl 100438e0 <__aes_80211_encrypt_veneer> +1002d3de: 2001 movs r0, #1 +1002d3e0: e002 b.n 1002d3e8 +1002d3e2: f500 739c add.w r3, r0, #312 ; 0x138 +1002d3e6: e7e9 b.n 1002d3bc +1002d3e8: b004 add sp, #16 +1002d3ea: bd70 pop {r4, r5, r6, pc} + +1002d3ec : +1002d3ec: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +1002d3ee: f891 302f ldrb.w r3, [r1, #47] ; 0x2f +1002d3f2: 4605 mov r5, r0 +1002d3f4: 2b04 cmp r3, #4 +1002d3f6: 460c mov r4, r1 +1002d3f8: 6f8e ldr r6, [r1, #120] ; 0x78 +1002d3fa: d122 bne.n 1002d442 +1002d3fc: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002d400: 3142 adds r1, #66 ; 0x42 +1002d402: f000 fad7 bl 1002d9b4 +1002d406: b308 cbz r0, 1002d44c +1002d408: f894 3048 ldrb.w r3, [r4, #72] ; 0x48 +1002d40c: 07db lsls r3, r3, #31 +1002d40e: d51a bpl.n 1002d446 +1002d410: f895 0fcc ldrb.w r0, [r5, #4044] ; 0xfcc +1002d414: b1d0 cbz r0, 1002d44c +1002d416: f894 3058 ldrb.w r3, [r4, #88] ; 0x58 +1002d41a: eb05 1503 add.w r5, r5, r3, lsl #4 +1002d41e: f605 43dc addw r3, r5, #3292 ; 0xcdc +1002d422: 8830 ldrh r0, [r6, #0] +1002d424: f894 1021 ldrb.w r1, [r4, #33] ; 0x21 +1002d428: 6f22 ldr r2, [r4, #112] ; 0x70 +1002d42a: f000 000c and.w r0, r0, #12 +1002d42e: f894 4030 ldrb.w r4, [r4, #48] ; 0x30 +1002d432: 1a52 subs r2, r2, r1 +1002d434: 9000 str r0, [sp, #0] +1002d436: a802 add r0, sp, #8 +1002d438: 9001 str r0, [sp, #4] +1002d43a: 1b12 subs r2, r2, r4 +1002d43c: 4630 mov r0, r6 +1002d43e: f016 f947 bl 100436d0 <__aes_80211_decrypt_veneer> +1002d442: 2001 movs r0, #1 +1002d444: e002 b.n 1002d44c +1002d446: f500 739c add.w r3, r0, #312 ; 0x138 +1002d44a: e7ea b.n 1002d422 +1002d44c: b004 add sp, #16 +1002d44e: bd70 pop {r4, r5, r6, pc} + +1002d450 : +1002d450: b538 push {r3, r4, r5, lr} +1002d452: 6845 ldr r5, [r0, #4] +1002d454: 4604 mov r4, r0 +1002d456: 2d01 cmp r5, #1 +1002d458: d010 beq.n 1002d47c +1002d45a: 2d02 cmp r5, #2 +1002d45c: d00b beq.n 1002d476 +1002d45e: 2d05 cmp r5, #5 +1002d460: d009 beq.n 1002d476 +1002d462: 2d03 cmp r5, #3 +1002d464: d109 bne.n 1002d47a +1002d466: f241 73b1 movw r3, #6065 ; 0x17b1 +1002d46a: 5cc3 ldrb r3, [r0, r3] +1002d46c: 2b00 cmp r3, #0 +1002d46e: bf14 ite ne +1002d470: 2503 movne r5, #3 +1002d472: 2501 moveq r5, #1 +1002d474: e002 b.n 1002d47c +1002d476: 2503 movs r5, #3 +1002d478: e000 b.n 1002d47c +1002d47a: 2501 movs r5, #1 +1002d47c: f44f 7046 mov.w r0, #792 ; 0x318 +1002d480: 4368 muls r0, r5 +1002d482: f241 23a4 movw r3, #4772 ; 0x12a4 +1002d486: 3004 adds r0, #4 +1002d488: 50e0 str r0, [r4, r3] +1002d48a: f7ef fc47 bl 1001cd1c +1002d48e: f504 5395 add.w r3, r4, #4768 ; 0x12a0 +1002d492: 6018 str r0, [r3, #0] +1002d494: b1a0 cbz r0, 1002d4c0 +1002d496: f020 0003 bic.w r0, r0, #3 +1002d49a: 3004 adds r0, #4 +1002d49c: f241 23a8 movw r3, #4776 ; 0x12a8 +1002d4a0: 2d01 cmp r5, #1 +1002d4a2: 50e0 str r0, [r4, r3] +1002d4a4: d00b beq.n 1002d4be +1002d4a6: f500 7246 add.w r2, r0, #792 ; 0x318 +1002d4aa: f241 23ac movw r3, #4780 ; 0x12ac +1002d4ae: 2d03 cmp r5, #3 +1002d4b0: 50e2 str r2, [r4, r3] +1002d4b2: d104 bne.n 1002d4be +1002d4b4: f500 60c6 add.w r0, r0, #1584 ; 0x630 +1002d4b8: f241 23b0 movw r3, #4784 ; 0x12b0 +1002d4bc: 50e0 str r0, [r4, r3] +1002d4be: 2001 movs r0, #1 +1002d4c0: bd38 pop {r3, r4, r5, pc} + +1002d4c2 : +1002d4c2: b510 push {r4, lr} +1002d4c4: 4604 mov r4, r0 +1002d4c6: f8d0 0628 ldr.w r0, [r0, #1576] ; 0x628 +1002d4ca: b148 cbz r0, 1002d4e0 +1002d4cc: f8d4 162c ldr.w r1, [r4, #1580] ; 0x62c +1002d4d0: b131 cbz r1, 1002d4e0 +1002d4d2: f7ef fc35 bl 1001cd40 +1002d4d6: 2300 movs r3, #0 +1002d4d8: f8c4 3628 str.w r3, [r4, #1576] ; 0x628 +1002d4dc: f8c4 362c str.w r3, [r4, #1580] ; 0x62c +1002d4e0: bd10 pop {r4, pc} + +1002d4e2 : +1002d4e2: 7843 ldrb r3, [r0, #1] +1002d4e4: 7802 ldrb r2, [r0, #0] +1002d4e6: ea83 0282 eor.w r2, r3, r2, lsl #2 +1002d4ea: 7883 ldrb r3, [r0, #2] +1002d4ec: ea83 0282 eor.w r2, r3, r2, lsl #2 +1002d4f0: 78c3 ldrb r3, [r0, #3] +1002d4f2: ea83 0282 eor.w r2, r3, r2, lsl #2 +1002d4f6: 7903 ldrb r3, [r0, #4] +1002d4f8: ea83 0282 eor.w r2, r3, r2, lsl #2 +1002d4fc: 7943 ldrb r3, [r0, #5] +1002d4fe: ea83 0082 eor.w r0, r3, r2, lsl #2 +1002d502: ea80 2010 eor.w r0, r0, r0, lsr #8 +1002d506: f000 0004 and.w r0, r0, #4 +1002d50a: 4770 bx lr + +1002d50c <_addba_timer_hdl>: +1002d50c: f7fa bf43 b.w 10028396 + +1002d510 <_rtw_init_stainfo>: +1002d510: b538 push {r3, r4, r5, lr} +1002d512: 2100 movs r1, #0 +1002d514: 4604 mov r4, r0 +1002d516: f44f 7250 mov.w r2, #832 ; 0x340 +1002d51a: f7ef fc59 bl 1001cdd0 +1002d51e: 4620 mov r0, r4 +1002d520: f7ef fd22 bl 1001cf68 +1002d524: 1d20 adds r0, r4, #4 +1002d526: f7ef fc5b bl 1001cde0 +1002d52a: f104 000c add.w r0, r4, #12 +1002d52e: 2500 movs r5, #0 +1002d530: f7ef fc56 bl 1001cde0 +1002d534: f104 00e8 add.w r0, r4, #232 ; 0xe8 +1002d538: f7ef fd00 bl 1001cf3c +1002d53c: f104 0018 add.w r0, r4, #24 +1002d540: f8c4 50f4 str.w r5, [r4, #244] ; 0xf4 +1002d544: f001 fa48 bl 1002e9d8 <_rtw_init_sta_xmit_priv> +1002d548: f104 00b4 add.w r0, r4, #180 ; 0xb4 +1002d54c: f7fe fcef bl 1002bf2e <_rtw_init_sta_recv_priv> +1002d550: f504 7007 add.w r0, r4, #540 ; 0x21c +1002d554: f7ef fc44 bl 1001cde0 +1002d558: f504 7009 add.w r0, r4, #548 ; 0x224 +1002d55c: f7ef fc40 bl 1001cde0 +1002d560: f884 52d8 strb.w r5, [r4, #728] ; 0x2d8 +1002d564: f884 52f9 strb.w r5, [r4, #761] ; 0x2f9 +1002d568: f884 52fa strb.w r5, [r4, #762] ; 0x2fa +1002d56c: f884 52fb strb.w r5, [r4, #763] ; 0x2fb +1002d570: f884 52fc strb.w r5, [r4, #764] ; 0x2fc +1002d574: f884 52fd strb.w r5, [r4, #765] ; 0x2fd +1002d578: f884 52fe strb.w r5, [r4, #766] ; 0x2fe +1002d57c: f8c4 522c str.w r5, [r4, #556] ; 0x22c +1002d580: f8c4 52bc str.w r5, [r4, #700] ; 0x2bc +1002d584: f8a4 52b8 strh.w r5, [r4, #696] ; 0x2b8 +1002d588: bd38 pop {r3, r4, r5, pc} + +1002d58a <_rtw_init_sta_priv>: +1002d58a: 6843 ldr r3, [r0, #4] +1002d58c: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002d590: 2b01 cmp r3, #1 +1002d592: 4604 mov r4, r0 +1002d594: d00b beq.n 1002d5ae <_rtw_init_sta_priv+0x24> +1002d596: 2b04 cmp r3, #4 +1002d598: d009 beq.n 1002d5ae <_rtw_init_sta_priv+0x24> +1002d59a: 2b03 cmp r3, #3 +1002d59c: d109 bne.n 1002d5b2 <_rtw_init_sta_priv+0x28> +1002d59e: f241 73b1 movw r3, #6065 ; 0x17b1 +1002d5a2: 5cc3 ldrb r3, [r0, r3] +1002d5a4: 2b00 cmp r3, #0 +1002d5a6: bf14 ite ne +1002d5a8: 2505 movne r5, #5 +1002d5aa: 2502 moveq r5, #2 +1002d5ac: e002 b.n 1002d5b4 <_rtw_init_sta_priv+0x2a> +1002d5ae: 2502 movs r5, #2 +1002d5b0: e000 b.n 1002d5b4 <_rtw_init_sta_priv+0x2a> +1002d5b2: 2505 movs r5, #5 +1002d5b4: f44f 7050 mov.w r0, #832 ; 0x340 +1002d5b8: 4368 muls r0, r5 +1002d5ba: 3004 adds r0, #4 +1002d5bc: f8c4 0bd4 str.w r0, [r4, #3028] ; 0xbd4 +1002d5c0: f7ef fbac bl 1001cd1c +1002d5c4: f8c4 0bd0 str.w r0, [r4, #3024] ; 0xbd0 +1002d5c8: 2800 cmp r0, #0 +1002d5ca: d050 beq.n 1002d66e <_rtw_init_sta_priv+0xe4> +1002d5cc: f020 0003 bic.w r0, r0, #3 +1002d5d0: 3004 adds r0, #4 +1002d5d2: f604 38dc addw r8, r4, #3036 ; 0xbdc +1002d5d6: f8c4 0bd8 str.w r0, [r4, #3032] ; 0xbd8 +1002d5da: 4640 mov r0, r8 +1002d5dc: f7ef fcae bl 1001cf3c +1002d5e0: 2700 movs r7, #0 +1002d5e2: f604 30e8 addw r0, r4, #3048 ; 0xbe8 +1002d5e6: f7ef fcbf bl 1001cf68 +1002d5ea: f604 4018 addw r0, r4, #3096 ; 0xc18 +1002d5ee: f8c4 7c14 str.w r7, [r4, #3092] ; 0xc14 +1002d5f2: f7ef fca3 bl 1001cf3c +1002d5f6: f604 4024 addw r0, r4, #3108 ; 0xc24 +1002d5fa: f7ef fc9f bl 1001cf3c +1002d5fe: f8d4 6bd8 ldr.w r6, [r4, #3032] ; 0xbd8 +1002d602: 3604 adds r6, #4 +1002d604: 4630 mov r0, r6 +1002d606: f7ef fbeb bl 1001cde0 +1002d60a: 3701 adds r7, #1 +1002d60c: 4630 mov r0, r6 +1002d60e: 4641 mov r1, r8 +1002d610: f7ef fbf6 bl 1001ce00 +1002d614: 42af cmp r7, r5 +1002d616: f506 7650 add.w r6, r6, #832 ; 0x340 +1002d61a: d1f3 bne.n 1002d604 <_rtw_init_sta_priv+0x7a> +1002d61c: 2600 movs r6, #0 +1002d61e: f604 30ec addw r0, r4, #3052 ; 0xbec +1002d622: 4430 add r0, r6 +1002d624: 3608 adds r6, #8 +1002d626: f7ef fbdb bl 1001cde0 +1002d62a: 2e28 cmp r6, #40 ; 0x28 +1002d62c: d1f7 bne.n 1002d61e <_rtw_init_sta_priv+0x94> +1002d62e: 2300 movs r3, #0 +1002d630: f8a4 3c6c strh.w r3, [r4, #3180] ; 0xc6c +1002d634: f8a4 3c6e strh.w r3, [r4, #3182] ; 0xc6e +1002d638: f604 4034 addw r0, r4, #3124 ; 0xc34 +1002d63c: f7ef fbd0 bl 1001cde0 +1002d640: f604 403c addw r0, r4, #3132 ; 0xc3c +1002d644: f7ef fbcc bl 1001cde0 +1002d648: f604 4044 addw r0, r4, #3140 ; 0xc44 +1002d64c: f7ef fc8c bl 1001cf68 +1002d650: f604 4048 addw r0, r4, #3144 ; 0xc48 +1002d654: f7ef fc88 bl 1001cf68 +1002d658: 2303 movs r3, #3 +1002d65a: f8c4 3c4c str.w r3, [r4, #3148] ; 0xc4c +1002d65e: f8c4 3c50 str.w r3, [r4, #3152] ; 0xc50 +1002d662: 233c movs r3, #60 ; 0x3c +1002d664: f8c4 3c54 str.w r3, [r4, #3156] ; 0xc54 +1002d668: f8a4 5c70 strh.w r5, [r4, #3184] ; 0xc70 +1002d66c: 2001 movs r0, #1 +1002d66e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002d672 <_rtw_free_sta_xmit_priv_lock>: +1002d672: b510 push {r4, lr} +1002d674: 4604 mov r4, r0 +1002d676: f7ef fc7f bl 1001cf78 +1002d67a: f104 001c add.w r0, r4, #28 +1002d67e: f7ef fc7b bl 1001cf78 +1002d682: f104 0034 add.w r0, r4, #52 ; 0x34 +1002d686: f7ef fc77 bl 1001cf78 +1002d68a: f104 004c add.w r0, r4, #76 ; 0x4c +1002d68e: f7ef fc73 bl 1001cf78 +1002d692: f104 0064 add.w r0, r4, #100 ; 0x64 +1002d696: e8bd 4010 ldmia.w sp!, {r4, lr} +1002d69a: f7ef bc6d b.w 1001cf78 + +1002d69e : +1002d69e: b510 push {r4, lr} +1002d6a0: 4604 mov r4, r0 +1002d6a2: f7ef fc69 bl 1001cf78 +1002d6a6: f104 0018 add.w r0, r4, #24 +1002d6aa: f7ff ffe2 bl 1002d672 <_rtw_free_sta_xmit_priv_lock> +1002d6ae: f104 00b4 add.w r0, r4, #180 ; 0xb4 +1002d6b2: f7ef fc61 bl 1001cf78 +1002d6b6: f104 00c4 add.w r0, r4, #196 ; 0xc4 +1002d6ba: f7ef fc5d bl 1001cf78 +1002d6be: f104 00f0 add.w r0, r4, #240 ; 0xf0 +1002d6c2: e8bd 4010 ldmia.w sp!, {r4, lr} +1002d6c6: f7ef bc57 b.w 1001cf78 + +1002d6ca : +1002d6ca: b510 push {r4, lr} +1002d6cc: 4604 mov r4, r0 +1002d6ce: 3014 adds r0, #20 +1002d6d0: f7ef fc52 bl 1001cf78 +1002d6d4: f104 0018 add.w r0, r4, #24 +1002d6d8: f7ef fc4e bl 1001cf78 +1002d6dc: f104 005c add.w r0, r4, #92 ; 0x5c +1002d6e0: f7ef fc4a bl 1001cf78 +1002d6e4: f104 0050 add.w r0, r4, #80 ; 0x50 +1002d6e8: f7ef fc46 bl 1001cf78 +1002d6ec: f104 0074 add.w r0, r4, #116 ; 0x74 +1002d6f0: f7ef fc42 bl 1001cf78 +1002d6f4: f104 0078 add.w r0, r4, #120 ; 0x78 +1002d6f8: e8bd 4010 ldmia.w sp!, {r4, lr} +1002d6fc: f7ef bc3c b.w 1001cf78 + +1002d700 <_rtw_free_sta_priv>: +1002d700: b510 push {r4, lr} +1002d702: 4604 mov r4, r0 +1002d704: b150 cbz r0, 1002d71c <_rtw_free_sta_priv+0x1c> +1002d706: f7ff ffe0 bl 1002d6ca +1002d70a: 6820 ldr r0, [r4, #0] +1002d70c: b130 cbz r0, 1002d71c <_rtw_free_sta_priv+0x1c> +1002d70e: 6861 ldr r1, [r4, #4] +1002d710: b121 cbz r1, 1002d71c <_rtw_free_sta_priv+0x1c> +1002d712: f7ef fb15 bl 1001cd40 +1002d716: 2300 movs r3, #0 +1002d718: 6023 str r3, [r4, #0] +1002d71a: 6063 str r3, [r4, #4] +1002d71c: 2001 movs r0, #1 +1002d71e: bd10 pop {r4, pc} + +1002d720 : +1002d720: b507 push {r0, r1, r2, lr} +1002d722: 460b mov r3, r1 +1002d724: 4906 ldr r1, [pc, #24] ; (1002d740 ) +1002d726: f500 52bc add.w r2, r0, #6016 ; 0x1780 +1002d72a: 9100 str r1, [sp, #0] +1002d72c: 6811 ldr r1, [r2, #0] +1002d72e: f503 70e4 add.w r0, r3, #456 ; 0x1c8 +1002d732: 4a04 ldr r2, [pc, #16] ; (1002d744 ) +1002d734: f00e f8e4 bl 1003b900 +1002d738: b003 add sp, #12 +1002d73a: f85d fb04 ldr.w pc, [sp], #4 +1002d73e: bf00 nop +1002d740: 1004a8b1 .word 0x1004a8b1 +1002d744: 1002d50d .word 0x1002d50d + +1002d748 : +1002d748: e92d 41ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, lr} +1002d74c: f100 0714 add.w r7, r0, #20 +1002d750: f64f 73ff movw r3, #65535 ; 0xffff +1002d754: f100 040c add.w r4, r0, #12 +1002d758: 4605 mov r5, r0 +1002d75a: 4688 mov r8, r1 +1002d75c: 4638 mov r0, r7 +1002d75e: a902 add r1, sp, #8 +1002d760: f8ad 3006 strh.w r3, [sp, #6] +1002d764: f7ef fbc8 bl 1001cef8 +1002d768: 4620 mov r0, r4 +1002d76a: f7ef fbf3 bl 1001cf54 +1002d76e: 2801 cmp r0, #1 +1002d770: d104 bne.n 1002d77c +1002d772: 4638 mov r0, r7 +1002d774: a902 add r1, sp, #8 +1002d776: f7ef fbc7 bl 1001cf08 +1002d77a: e045 b.n 1002d808 +1002d77c: 68ee ldr r6, [r5, #12] +1002d77e: 4630 mov r0, r6 +1002d780: f7ef fb44 bl 1001ce0c +1002d784: 1f34 subs r4, r6, #4 +1002d786: a902 add r1, sp, #8 +1002d788: 4638 mov r0, r7 +1002d78a: f7ef fbbd bl 1001cf08 +1002d78e: 4620 mov r0, r4 +1002d790: f7ff febe bl 1002d510 <_rtw_init_stainfo> +1002d794: 6e2b ldr r3, [r5, #96] ; 0x60 +1002d796: f506 7082 add.w r0, r6, #260 ; 0x104 +1002d79a: 6163 str r3, [r4, #20] +1002d79c: 4641 mov r1, r8 +1002d79e: 2206 movs r2, #6 +1002d7a0: f7ef fb04 bl 1001cdac +1002d7a4: 4640 mov r0, r8 +1002d7a6: f7ff fe9c bl 1002d4e2 +1002d7aa: 2804 cmp r0, #4 +1002d7ac: dc2c bgt.n 1002d808 +1002d7ae: eb05 00c0 add.w r0, r5, r0, lsl #3 +1002d7b2: f105 0718 add.w r7, r5, #24 +1002d7b6: f100 081c add.w r8, r0, #28 +1002d7ba: a903 add r1, sp, #12 +1002d7bc: 4638 mov r0, r7 +1002d7be: f7ef fb9b bl 1001cef8 +1002d7c2: f106 0008 add.w r0, r6, #8 +1002d7c6: 4641 mov r1, r8 +1002d7c8: f7ef fb1a bl 1001ce00 +1002d7cc: 6c6b ldr r3, [r5, #68] ; 0x44 +1002d7ce: 4638 mov r0, r7 +1002d7d0: 3301 adds r3, #1 +1002d7d2: 646b str r3, [r5, #68] ; 0x44 +1002d7d4: a903 add r1, sp, #12 +1002d7d6: f7ef fb97 bl 1001cf08 +1002d7da: 2600 movs r6, #0 +1002d7dc: f104 00c8 add.w r0, r4, #200 ; 0xc8 +1002d7e0: 4430 add r0, r6 +1002d7e2: f10d 0106 add.w r1, sp, #6 +1002d7e6: 2202 movs r2, #2 +1002d7e8: 3602 adds r6, #2 +1002d7ea: f7ef fadf bl 1001cdac +1002d7ee: 2e20 cmp r6, #32 +1002d7f0: d1f4 bne.n 1002d7dc +1002d7f2: 6e28 ldr r0, [r5, #96] ; 0x60 +1002d7f4: 4621 mov r1, r4 +1002d7f6: f7ff ff93 bl 1002d720 +1002d7fa: f04f 33ff mov.w r3, #4294967295 +1002d7fe: f8c4 3310 str.w r3, [r4, #784] ; 0x310 +1002d802: f8c4 3314 str.w r3, [r4, #788] ; 0x314 +1002d806: e000 b.n 1002d80a +1002d808: 2400 movs r4, #0 +1002d80a: 4620 mov r0, r4 +1002d80c: b004 add sp, #16 +1002d80e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002d812 : +1002d812: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1002d814: 4605 mov r5, r0 +1002d816: f600 06c8 addw r6, r0, #2248 ; 0x8c8 +1002d81a: 460c mov r4, r1 +1002d81c: 2900 cmp r1, #0 +1002d81e: f000 80c6 beq.w 1002d9ae +1002d822: 4630 mov r0, r6 +1002d824: a901 add r1, sp, #4 +1002d826: f7ef fb67 bl 1001cef8 +1002d82a: 2700 movs r7, #0 +1002d82c: 4630 mov r0, r6 +1002d82e: f104 01e8 add.w r1, r4, #232 ; 0xe8 +1002d832: f001 fc58 bl 1002f0e6 +1002d836: 4630 mov r0, r6 +1002d838: f104 0174 add.w r1, r4, #116 ; 0x74 +1002d83c: f8c4 70f4 str.w r7, [r4, #244] ; 0xf4 +1002d840: f001 fc51 bl 1002f0e6 +1002d844: f104 006c add.w r0, r4, #108 ; 0x6c +1002d848: f7ef fae0 bl 1001ce0c +1002d84c: 4630 mov r0, r6 +1002d84e: f104 015c add.w r1, r4, #92 ; 0x5c +1002d852: f001 fc48 bl 1002f0e6 +1002d856: f104 0054 add.w r0, r4, #84 ; 0x54 +1002d85a: f7ef fad7 bl 1001ce0c +1002d85e: 4630 mov r0, r6 +1002d860: f104 0144 add.w r1, r4, #68 ; 0x44 +1002d864: f001 fc3f bl 1002f0e6 +1002d868: f104 003c add.w r0, r4, #60 ; 0x3c +1002d86c: f7ef face bl 1001ce0c +1002d870: 4630 mov r0, r6 +1002d872: f104 012c add.w r1, r4, #44 ; 0x2c +1002d876: f001 fc36 bl 1002f0e6 +1002d87a: f104 0024 add.w r0, r4, #36 ; 0x24 +1002d87e: f7ef fac5 bl 1001ce0c +1002d882: a901 add r1, sp, #4 +1002d884: 4630 mov r0, r6 +1002d886: f7ef fb3f bl 1001cf08 +1002d88a: f104 000c add.w r0, r4, #12 +1002d88e: f7ef fabd bl 1001ce0c +1002d892: f8d5 3c14 ldr.w r3, [r5, #3092] ; 0xc14 +1002d896: f504 70e4 add.w r0, r4, #456 ; 0x1c8 +1002d89a: 3b01 subs r3, #1 +1002d89c: f8c5 3c14 str.w r3, [r5, #3092] ; 0xc14 +1002d8a0: f00e f839 bl 1003b916 +1002d8a4: f504 7607 add.w r6, r4, #540 ; 0x21c +1002d8a8: 4628 mov r0, r5 +1002d8aa: 4639 mov r1, r7 +1002d8ac: 4622 mov r2, r4 +1002d8ae: 463b mov r3, r7 +1002d8b0: f00a f85b bl 1003796a +1002d8b4: 4630 mov r0, r6 +1002d8b6: f7ef fa97 bl 1001cde8 +1002d8ba: b960 cbnz r0, 1002d8d6 +1002d8bc: f605 4744 addw r7, r5, #3140 ; 0xc44 +1002d8c0: a901 add r1, sp, #4 +1002d8c2: 4638 mov r0, r7 +1002d8c4: f7ef fb18 bl 1001cef8 +1002d8c8: 4630 mov r0, r6 +1002d8ca: f7ef fa9f bl 1001ce0c +1002d8ce: 4638 mov r0, r7 +1002d8d0: a901 add r1, sp, #4 +1002d8d2: f7ef fb19 bl 1001cf08 +1002d8d6: f504 7609 add.w r6, r4, #548 ; 0x224 +1002d8da: 4630 mov r0, r6 +1002d8dc: f7ef fa84 bl 1001cde8 +1002d8e0: b960 cbnz r0, 1002d8fc +1002d8e2: f605 4748 addw r7, r5, #3144 ; 0xc48 +1002d8e6: a901 add r1, sp, #4 +1002d8e8: 4638 mov r0, r7 +1002d8ea: f7ef fb05 bl 1001cef8 +1002d8ee: 4630 mov r0, r6 +1002d8f0: f7ef fa8c bl 1001ce0c +1002d8f4: 4638 mov r0, r7 +1002d8f6: a901 add r1, sp, #4 +1002d8f8: f7ef fb06 bl 1001cf08 +1002d8fc: 692a ldr r2, [r5, #16] +1002d8fe: 06d1 lsls r1, r2, #27 +1002d900: d444 bmi.n 1002d98c +1002d902: 0713 lsls r3, r2, #28 +1002d904: d44b bmi.n 1002d99e +1002d906: f8d4 20fc ldr.w r2, [r4, #252] ; 0xfc +1002d90a: 2101 movs r1, #1 +1002d90c: 4091 lsls r1, r2 +1002d90e: 2300 movs r3, #0 +1002d910: f884 3304 strb.w r3, [r4, #772] ; 0x304 +1002d914: f884 3305 strb.w r3, [r4, #773] ; 0x305 +1002d918: f884 3306 strb.w r3, [r4, #774] ; 0x306 +1002d91c: f884 3307 strb.w r3, [r4, #775] ; 0x307 +1002d920: f884 3308 strb.w r3, [r4, #776] ; 0x308 +1002d924: f884 3309 strb.w r3, [r4, #777] ; 0x309 +1002d928: f884 330a strb.w r3, [r4, #778] ; 0x30a +1002d92c: f8b5 0c6c ldrh.w r0, [r5, #3180] ; 0xc6c +1002d930: 43c9 mvns r1, r1 +1002d932: b289 uxth r1, r1 +1002d934: 4008 ands r0, r1 +1002d936: f8c4 322c str.w r3, [r4, #556] ; 0x22c +1002d93a: f8c4 330c str.w r3, [r4, #780] ; 0x30c +1002d93e: f8a5 0c6c strh.w r0, [r5, #3180] ; 0xc6c +1002d942: f8b5 0c6e ldrh.w r0, [r5, #3182] ; 0xc6e +1002d946: 4001 ands r1, r0 +1002d948: f8a5 1c6e strh.w r1, [r5, #3182] ; 0xc6e +1002d94c: b152 cbz r2, 1002d964 +1002d94e: 3a01 subs r2, #1 +1002d950: eb05 0282 add.w r2, r5, r2, lsl #2 +1002d954: f8d2 1c58 ldr.w r1, [r2, #3160] ; 0xc58 +1002d958: 42a1 cmp r1, r4 +1002d95a: bf04 itt eq +1002d95c: f8c2 3c58 streq.w r3, [r2, #3160] ; 0xc58 +1002d960: f8c4 30fc streq.w r3, [r4, #252] ; 0xfc +1002d964: f605 36dc addw r6, r5, #3036 ; 0xbdc +1002d968: f605 35e4 addw r5, r5, #3044 ; 0xbe4 +1002d96c: 4628 mov r0, r5 +1002d96e: a901 add r1, sp, #4 +1002d970: f7ef fac2 bl 1001cef8 +1002d974: 1d20 adds r0, r4, #4 +1002d976: 4631 mov r1, r6 +1002d978: f7ef fa42 bl 1001ce00 +1002d97c: 4628 mov r0, r5 +1002d97e: a901 add r1, sp, #4 +1002d980: f7ef fac2 bl 1001cf08 +1002d984: 4620 mov r0, r4 +1002d986: f7ff fe8a bl 1002d69e +1002d98a: e010 b.n 1002d9ae +1002d98c: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002d990: 2b00 cmp r3, #0 +1002d992: d0b6 beq.n 1002d902 +1002d994: f203 43a9 addw r3, r3, #1193 ; 0x4a9 +1002d998: f855 0023 ldr.w r0, [r5, r3, lsl #2] +1002d99c: e002 b.n 1002d9a4 +1002d99e: f241 23a8 movw r3, #4776 ; 0x12a8 +1002d9a2: 58e8 ldr r0, [r5, r3] +1002d9a4: f500 703d add.w r0, r0, #756 ; 0x2f4 +1002d9a8: f00d ffb5 bl 1003b916 +1002d9ac: e7ab b.n 1002d906 +1002d9ae: 2001 movs r0, #1 +1002d9b0: b003 add sp, #12 +1002d9b2: bdf0 pop {r4, r5, r6, r7, pc} + +1002d9b4 : +1002d9b4: e92d 41ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, lr} +1002d9b8: 4a1c ldr r2, [pc, #112] ; (1002da2c ) +1002d9ba: 4605 mov r5, r0 +1002d9bc: 6810 ldr r0, [r2, #0] +1002d9be: 8892 ldrh r2, [r2, #4] +1002d9c0: ab02 add r3, sp, #8 +1002d9c2: 9002 str r0, [sp, #8] +1002d9c4: f8ad 200c strh.w r2, [sp, #12] +1002d9c8: 460c mov r4, r1 +1002d9ca: b359 cbz r1, 1002da24 +1002d9cc: 780a ldrb r2, [r1, #0] +1002d9ce: f105 0618 add.w r6, r5, #24 +1002d9d2: f012 0f01 tst.w r2, #1 +1002d9d6: bf18 it ne +1002d9d8: 461c movne r4, r3 +1002d9da: 4620 mov r0, r4 +1002d9dc: f7ff fd81 bl 1002d4e2 +1002d9e0: 4607 mov r7, r0 +1002d9e2: 3703 adds r7, #3 +1002d9e4: eb05 05c7 add.w r5, r5, r7, lsl #3 +1002d9e8: 4630 mov r0, r6 +1002d9ea: a901 add r1, sp, #4 +1002d9ec: f7ef fa84 bl 1001cef8 +1002d9f0: 1d2f adds r7, r5, #4 +1002d9f2: 686d ldr r5, [r5, #4] +1002d9f4: 4638 mov r0, r7 +1002d9f6: 4629 mov r1, r5 +1002d9f8: f7ef fab2 bl 1001cf60 +1002d9fc: b968 cbnz r0, 1002da1a +1002d9fe: f105 00fc add.w r0, r5, #252 ; 0xfc +1002da02: 4621 mov r1, r4 +1002da04: 2206 movs r2, #6 +1002da06: f7ef f9d9 bl 1001cdbc +1002da0a: 2801 cmp r0, #1 +1002da0c: f1a5 080c sub.w r8, r5, #12 +1002da10: d101 bne.n 1002da16 +1002da12: 4644 mov r4, r8 +1002da14: e002 b.n 1002da1c +1002da16: 682d ldr r5, [r5, #0] +1002da18: e7ec b.n 1002d9f4 +1002da1a: 2400 movs r4, #0 +1002da1c: 4630 mov r0, r6 +1002da1e: a901 add r1, sp, #4 +1002da20: f7ef fa72 bl 1001cf08 +1002da24: 4620 mov r0, r4 +1002da26: b004 add sp, #16 +1002da28: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002da2c: 1004a8ab .word 0x1004a8ab + +1002da30 : +1002da30: b507 push {r0, r1, r2, lr} +1002da32: 4b0a ldr r3, [pc, #40] ; (1002da5c ) +1002da34: 4602 mov r2, r0 +1002da36: 6818 ldr r0, [r3, #0] +1002da38: 889b ldrh r3, [r3, #4] +1002da3a: 9000 str r0, [sp, #0] +1002da3c: 4669 mov r1, sp +1002da3e: f502 603d add.w r0, r2, #3024 ; 0xbd0 +1002da42: f8ad 3004 strh.w r3, [sp, #4] +1002da46: f7ff fe7f bl 1002d748 +1002da4a: b110 cbz r0, 1002da52 +1002da4c: 2301 movs r3, #1 +1002da4e: f8c0 3100 str.w r3, [r0, #256] ; 0x100 +1002da52: 2001 movs r0, #1 +1002da54: b003 add sp, #12 +1002da56: f85d fb04 ldr.w pc, [sp], #4 +1002da5a: bf00 nop +1002da5c: 1004a8ab .word 0x1004a8ab + +1002da60 : +1002da60: b507 push {r0, r1, r2, lr} +1002da62: 4b07 ldr r3, [pc, #28] ; (1002da80 ) +1002da64: 4602 mov r2, r0 +1002da66: 6818 ldr r0, [r3, #0] +1002da68: 889b ldrh r3, [r3, #4] +1002da6a: 9000 str r0, [sp, #0] +1002da6c: 4669 mov r1, sp +1002da6e: f502 603d add.w r0, r2, #3024 ; 0xbd0 +1002da72: f8ad 3004 strh.w r3, [sp, #4] +1002da76: f7ff ff9d bl 1002d9b4 +1002da7a: b003 add sp, #12 +1002da7c: f85d fb04 ldr.w pc, [sp], #4 +1002da80: 1004a8ab .word 0x1004a8ab + +1002da84 : +1002da84: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1002da88: 4604 mov r4, r0 +1002da8a: f7ff ffe9 bl 1002da60 +1002da8e: f8d4 3c14 ldr.w r3, [r4, #3092] ; 0xc14 +1002da92: 4681 mov r9, r0 +1002da94: 2b01 cmp r3, #1 +1002da96: d01f beq.n 1002dad8 +1002da98: f604 37e8 addw r7, r4, #3048 ; 0xbe8 +1002da9c: 4638 mov r0, r7 +1002da9e: a901 add r1, sp, #4 +1002daa0: f7ef fa2a bl 1001cef8 +1002daa4: f604 35ec addw r5, r4, #3052 ; 0xbec +1002daa8: f604 4814 addw r8, r4, #3092 ; 0xc14 +1002daac: 682e ldr r6, [r5, #0] +1002daae: 4628 mov r0, r5 +1002dab0: 4631 mov r1, r6 +1002dab2: f7ef fa55 bl 1001cf60 +1002dab6: b940 cbnz r0, 1002daca +1002dab8: f1a6 010c sub.w r1, r6, #12 +1002dabc: 4589 cmp r9, r1 +1002dabe: 6836 ldr r6, [r6, #0] +1002dac0: d0f5 beq.n 1002daae +1002dac2: 4620 mov r0, r4 +1002dac4: f7ff fea5 bl 1002d812 +1002dac8: e7f1 b.n 1002daae +1002daca: 3508 adds r5, #8 +1002dacc: 4545 cmp r5, r8 +1002dace: d1ed bne.n 1002daac +1002dad0: 4638 mov r0, r7 +1002dad2: a901 add r1, sp, #4 +1002dad4: f7ef fa18 bl 1001cf08 +1002dad8: b003 add sp, #12 +1002dada: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +1002dade : +1002dade: 2300 movs r3, #0 +1002dae0: 428b cmp r3, r1 +1002dae2: da0c bge.n 1002dafe +1002dae4: 5cc2 ldrb r2, [r0, r3] +1002dae6: f002 027f and.w r2, r2, #127 ; 0x7f +1002daea: 2a02 cmp r2, #2 +1002daec: d009 beq.n 1002db02 +1002daee: 2a04 cmp r2, #4 +1002daf0: d007 beq.n 1002db02 +1002daf2: 2a0b cmp r2, #11 +1002daf4: d005 beq.n 1002db02 +1002daf6: 2a16 cmp r2, #22 +1002daf8: d003 beq.n 1002db02 +1002dafa: 3301 adds r3, #1 +1002dafc: e7f0 b.n 1002dae0 +1002dafe: 2000 movs r0, #0 +1002db00: 4770 bx lr +1002db02: 2001 movs r0, #1 +1002db04: 4770 bx lr + +1002db06 : +1002db06: 2300 movs r3, #0 +1002db08: 428b cmp r3, r1 +1002db0a: da0c bge.n 1002db26 +1002db0c: 5cc2 ldrb r2, [r0, r3] +1002db0e: f002 027f and.w r2, r2, #127 ; 0x7f +1002db12: 2a02 cmp r2, #2 +1002db14: d005 beq.n 1002db22 +1002db16: 2a04 cmp r2, #4 +1002db18: d003 beq.n 1002db22 +1002db1a: 2a0b cmp r2, #11 +1002db1c: d001 beq.n 1002db22 +1002db1e: 2a16 cmp r2, #22 +1002db20: d103 bne.n 1002db2a +1002db22: 3301 adds r3, #1 +1002db24: e7f0 b.n 1002db08 +1002db26: 2001 movs r0, #1 +1002db28: 4770 bx lr +1002db2a: 2000 movs r0, #0 +1002db2c: 4770 bx lr + +1002db2e : +1002db2e: f241 6318 movw r3, #5656 ; 0x1618 +1002db32: 3901 subs r1, #1 +1002db34: 58c3 ldr r3, [r0, r3] +1002db36: 2913 cmp r1, #19 +1002db38: d824 bhi.n 1002db84 +1002db3a: e8df f001 tbb [pc, r1] +1002db3e: 250a .short 0x250a +1002db40: 2323250c .word 0x2323250c +1002db44: 0e230e23 .word 0x0e230e23 +1002db48: 23232315 .word 0x23232315 +1002db4c: 23230e23 .word 0x23230e23 +1002db50: 0e23 .short 0x0e23 +1002db52: 2008 movs r0, #8 +1002db54: 4770 bx lr +1002db56: 2006 movs r0, #6 +1002db58: 4770 bx lr +1002db5a: f893 303c ldrb.w r3, [r3, #60] ; 0x3c +1002db5e: 2b02 cmp r3, #2 +1002db60: bf14 ite ne +1002db62: 2005 movne r0, #5 +1002db64: 2004 moveq r0, #4 +1002db66: 4770 bx lr +1002db68: f890 24f7 ldrb.w r2, [r0, #1271] ; 0x4f7 +1002db6c: f893 003c ldrb.w r0, [r3, #60] ; 0x3c +1002db70: b922 cbnz r2, 1002db7c +1002db72: 2802 cmp r0, #2 +1002db74: bf14 ite ne +1002db76: 2003 movne r0, #3 +1002db78: 2002 moveq r0, #2 +1002db7a: 4770 bx lr +1002db7c: 3802 subs r0, #2 +1002db7e: bf18 it ne +1002db80: 2001 movne r0, #1 +1002db82: 4770 bx lr +1002db84: 2000 movs r0, #0 +1002db86: 4770 bx lr +1002db88: 2007 movs r0, #7 +1002db8a: 4770 bx lr + +1002db8c : +1002db8c: b570 push {r4, r5, r6, lr} +1002db8e: f890 34f6 ldrb.w r3, [r0, #1270] ; 0x4f6 +1002db92: 460d mov r5, r1 +1002db94: 2b0e cmp r3, #14 +1002db96: 4616 mov r6, r2 +1002db98: f890 36ac ldrb.w r3, [r0, #1708] ; 0x6ac +1002db9c: d904 bls.n 1002dba8 +1002db9e: 2b00 cmp r3, #0 +1002dba0: bf14 ite ne +1002dba2: 2014 movne r0, #20 +1002dba4: 2004 moveq r0, #4 +1002dba6: bd70 pop {r4, r5, r6, pc} +1002dba8: 2b00 cmp r3, #0 +1002dbaa: 4608 mov r0, r1 +1002dbac: 4611 mov r1, r2 +1002dbae: bf14 ite ne +1002dbb0: 2408 movne r4, #8 +1002dbb2: 2400 moveq r4, #0 +1002dbb4: f7ff ffa7 bl 1002db06 +1002dbb8: 2801 cmp r0, #1 +1002dbba: d102 bne.n 1002dbc2 +1002dbbc: f044 0001 orr.w r0, r4, #1 +1002dbc0: e009 b.n 1002dbd6 +1002dbc2: 4628 mov r0, r5 +1002dbc4: 4631 mov r1, r6 +1002dbc6: f7ff ff8a bl 1002dade +1002dbca: 2801 cmp r0, #1 +1002dbcc: bf0c ite eq +1002dbce: f044 0003 orreq.w r0, r4, #3 +1002dbd2: f044 0002 orrne.w r0, r4, #2 +1002dbd6: b2c0 uxtb r0, r0 +1002dbd8: bd70 pop {r4, r5, r6, pc} + ... + +1002dbdc : +1002dbdc: f000 007f and.w r0, r0, #127 ; 0x7f +1002dbe0: 280b cmp r0, #11 +1002dbe2: bf9a itte ls +1002dbe4: 4b01 ldrls r3, [pc, #4] ; (1002dbec ) +1002dbe6: 5c18 ldrbls r0, [r3, r0] +1002dbe8: 2000 movhi r0, #0 +1002dbea: 4770 bx lr +1002dbec: 1004a8c3 .word 0x1004a8c3 + +1002dbf0 : +1002dbf0: b570 push {r4, r5, r6, lr} +1002dbf2: 4605 mov r5, r0 +1002dbf4: 460e mov r6, r1 +1002dbf6: 2400 movs r4, #0 +1002dbf8: 192b adds r3, r5, r4 +1002dbfa: f893 05a4 ldrb.w r0, [r3, #1444] ; 0x5a4 +1002dbfe: 1c82 adds r2, r0, #2 +1002dc00: b2d2 uxtb r2, r2 +1002dc02: 2a01 cmp r2, #1 +1002dc04: d903 bls.n 1002dc0e +1002dc06: f7ff ffe9 bl 1002dbdc +1002dc0a: 4286 cmp r6, r0 +1002dc0c: d004 beq.n 1002dc18 +1002dc0e: 3401 adds r4, #1 +1002dc10: 2c0d cmp r4, #13 +1002dc12: d1f1 bne.n 1002dbf8 +1002dc14: 2000 movs r0, #0 +1002dc16: bd70 pop {r4, r5, r6, pc} +1002dc18: 2001 movs r0, #1 +1002dc1a: bd70 pop {r4, r5, r6, pc} + +1002dc1c : +1002dc1c: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002dc20: 2400 movs r4, #0 +1002dc22: 4607 mov r7, r0 +1002dc24: 4688 mov r8, r1 +1002dc26: 4625 mov r5, r4 +1002dc28: 197b adds r3, r7, r5 +1002dc2a: f893 05b1 ldrb.w r0, [r3, #1457] ; 0x5b1 +1002dc2e: 28fe cmp r0, #254 ; 0xfe +1002dc30: d010 beq.n 1002dc54 +1002dc32: 28ff cmp r0, #255 ; 0xff +1002dc34: d011 beq.n 1002dc5a +1002dc36: f7ff ffd1 bl 1002dbdc +1002dc3a: 4606 mov r6, r0 +1002dc3c: 4631 mov r1, r6 +1002dc3e: 4638 mov r0, r7 +1002dc40: f7ff ffd6 bl 1002dbf0 +1002dc44: 2801 cmp r0, #1 +1002dc46: bf04 itt eq +1002dc48: f066 067f orneq r6, r6, #127 ; 0x7f +1002dc4c: b2f6 uxtbeq r6, r6 +1002dc4e: f808 6004 strb.w r6, [r8, r4] +1002dc52: 3401 adds r4, #1 +1002dc54: 3501 adds r5, #1 +1002dc56: 2d0d cmp r5, #13 +1002dc58: d1e6 bne.n 1002dc28 +1002dc5a: 4620 mov r0, r4 +1002dc5c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002dc60 : +1002dc60: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +1002dc62: 4606 mov r6, r0 +1002dc64: 460d mov r5, r1 +1002dc66: 4614 mov r4, r2 +1002dc68: 4668 mov r0, sp +1002dc6a: 220d movs r2, #13 +1002dc6c: 2100 movs r1, #0 +1002dc6e: f7ef f8af bl 1001cdd0 +1002dc72: 4669 mov r1, sp +1002dc74: 4630 mov r0, r6 +1002dc76: f7ff ffd1 bl 1002dc1c +1002dc7a: 4669 mov r1, sp +1002dc7c: 4602 mov r2, r0 +1002dc7e: 6020 str r0, [r4, #0] +1002dc80: 4628 mov r0, r5 +1002dc82: f7ef f893 bl 1001cdac +1002dc86: b004 add sp, #16 +1002dc88: bd70 pop {r4, r5, r6, pc} + +1002dc8a : +1002dc8a: 2200 movs r2, #0 +1002dc8c: 5c88 ldrb r0, [r1, r2] +1002dc8e: f000 037f and.w r3, r0, #127 ; 0x7f +1002dc92: 2b0c cmp r3, #12 +1002dc94: d805 bhi.n 1002dca2 +1002dc96: 2b0b cmp r3, #11 +1002dc98: d209 bcs.n 1002dcae +1002dc9a: 2b02 cmp r3, #2 +1002dc9c: d007 beq.n 1002dcae +1002dc9e: 2b04 cmp r3, #4 +1002dca0: e004 b.n 1002dcac +1002dca2: 2b18 cmp r3, #24 +1002dca4: d003 beq.n 1002dcae +1002dca6: 2b30 cmp r3, #48 ; 0x30 +1002dca8: d001 beq.n 1002dcae +1002dcaa: 2b16 cmp r3, #22 +1002dcac: d102 bne.n 1002dcb4 +1002dcae: f060 007f orn r0, r0, #127 ; 0x7f +1002dcb2: 5488 strb r0, [r1, r2] +1002dcb4: 3201 adds r2, #1 +1002dcb6: 2a10 cmp r2, #16 +1002dcb8: d1e8 bne.n 1002dc8c +1002dcba: 4770 bx lr + +1002dcbc : +1002dcbc: b570 push {r4, r5, r6, lr} +1002dcbe: 2200 movs r2, #0 +1002dcc0: b2d3 uxtb r3, r2 +1002dcc2: 428b cmp r3, r1 +1002dcc4: d210 bcs.n 1002dce8 +1002dcc6: 5cc5 ldrb r5, [r0, r3] +1002dcc8: f005 047f and.w r4, r5, #127 ; 0x7f +1002dccc: 3c02 subs r4, #2 +1002dcce: b2e4 uxtb r4, r4 +1002dcd0: 2c14 cmp r4, #20 +1002dcd2: d807 bhi.n 1002dce4 +1002dcd4: 2601 movs r6, #1 +1002dcd6: 40a6 lsls r6, r4 +1002dcd8: 4c04 ldr r4, [pc, #16] ; (1002dcec ) +1002dcda: 4034 ands r4, r6 +1002dcdc: b114 cbz r4, 1002dce4 +1002dcde: f065 057f orn r5, r5, #127 ; 0x7f +1002dce2: 54c5 strb r5, [r0, r3] +1002dce4: 3201 adds r2, #1 +1002dce6: e7eb b.n 1002dcc0 +1002dce8: bd70 pop {r4, r5, r6, pc} +1002dcea: bf00 nop +1002dcec: 00100205 .word 0x00100205 + +1002dcf0 : +1002dcf0: b507 push {r0, r1, r2, lr} +1002dcf2: 2301 movs r3, #1 +1002dcf4: aa02 add r2, sp, #8 +1002dcf6: f802 3d01 strb.w r3, [r2, #-1]! +1002dcfa: 2118 movs r1, #24 +1002dcfc: f009 fe15 bl 1003792a +1002dd00: b003 add sp, #12 +1002dd02: f85d fb04 ldr.w pc, [sp], #4 + +1002dd06 : +1002dd06: b507 push {r0, r1, r2, lr} +1002dd08: 2300 movs r3, #0 +1002dd0a: aa02 add r2, sp, #8 +1002dd0c: f802 3d01 strb.w r3, [r2, #-1]! +1002dd10: 2118 movs r1, #24 +1002dd12: f009 fe0a bl 1003792a +1002dd16: b003 add sp, #12 +1002dd18: f85d fb04 ldr.w pc, [sp], #4 + +1002dd1c : +1002dd1c: b507 push {r0, r1, r2, lr} +1002dd1e: ab02 add r3, sp, #8 +1002dd20: f843 1d04 str.w r1, [r3, #-4]! +1002dd24: 2a01 cmp r2, #1 +1002dd26: bf0c ite eq +1002dd28: 2119 moveq r1, #25 +1002dd2a: 211a movne r1, #26 +1002dd2c: 461a mov r2, r3 +1002dd2e: f009 fdfc bl 1003792a +1002dd32: b003 add sp, #12 +1002dd34: f85d fb04 ldr.w pc, [sp], #4 + +1002dd38 : +1002dd38: b507 push {r0, r1, r2, lr} +1002dd3a: f241 72b2 movw r2, #6066 ; 0x17b2 +1002dd3e: 460b mov r3, r1 +1002dd40: 5c81 ldrb r1, [r0, r2] +1002dd42: aa02 add r2, sp, #8 +1002dd44: 2901 cmp r1, #1 +1002dd46: bf0e itee eq +1002dd48: f802 3d02 strbeq.w r3, [r2, #-2]! +1002dd4c: f802 3d01 strbne.w r3, [r2, #-1]! +1002dd50: 2100 movne r1, #0 +1002dd52: f009 fdea bl 1003792a +1002dd56: b003 add sp, #12 +1002dd58: f85d fb04 ldr.w pc, [sp], #4 + +1002dd5c : +1002dd5c: 2904 cmp r1, #4 +1002dd5e: b507 push {r0, r1, r2, lr} +1002dd60: d103 bne.n 1002dd6a +1002dd62: 2303 movs r3, #3 +1002dd64: f8c0 35f8 str.w r3, [r0, #1528] ; 0x5f8 +1002dd68: e00f b.n 1002dd8a +1002dd6a: 2901 cmp r1, #1 +1002dd6c: d109 bne.n 1002dd82 +1002dd6e: f8d0 35f8 ldr.w r3, [r0, #1528] ; 0x5f8 +1002dd72: f023 0303 bic.w r3, r3, #3 +1002dd76: f043 0302 orr.w r3, r3, #2 +1002dd7a: f8c0 35f8 str.w r3, [r0, #1528] ; 0x5f8 +1002dd7e: 2302 movs r3, #2 +1002dd80: e003 b.n 1002dd8a +1002dd82: b909 cbnz r1, 1002dd88 +1002dd84: 2301 movs r3, #1 +1002dd86: e000 b.n 1002dd8a +1002dd88: 2300 movs r3, #0 +1002dd8a: 2102 movs r1, #2 +1002dd8c: f10d 0207 add.w r2, sp, #7 +1002dd90: f88d 3007 strb.w r3, [sp, #7] +1002dd94: f009 fdc9 bl 1003792a +1002dd98: 2000 movs r0, #0 +1002dd9a: b003 add sp, #12 +1002dd9c: f85d fb04 ldr.w pc, [sp], #4 + +1002dda0 : +1002dda0: b538 push {r3, r4, r5, lr} +1002dda2: f241 73b8 movw r3, #6072 ; 0x17b8 +1002dda6: 4604 mov r4, r0 +1002dda8: 460d mov r5, r1 +1002ddaa: 58c0 ldr r0, [r0, r3] +1002ddac: 2100 movs r1, #0 +1002ddae: f7ef f8b3 bl 1001cf18 +1002ddb2: f504 53be add.w r3, r4, #6080 ; 0x17c0 +1002ddb6: 681b ldr r3, [r3, #0] +1002ddb8: b103 cbz r3, 1002ddbc +1002ddba: 701d strb r5, [r3, #0] +1002ddbc: 4620 mov r0, r4 +1002ddbe: 4629 mov r1, r5 +1002ddc0: f009 fec4 bl 10037b4c +1002ddc4: f241 73b8 movw r3, #6072 ; 0x17b8 +1002ddc8: 58e0 ldr r0, [r4, r3] +1002ddca: 2100 movs r1, #0 +1002ddcc: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1002ddd0: f7ef b8ac b.w 1001cf2c + +1002ddd4 : +1002ddd4: f241 73bc movw r3, #6076 ; 0x17bc +1002ddd8: b570 push {r4, r5, r6, lr} +1002ddda: 4604 mov r4, r0 +1002dddc: 460d mov r5, r1 +1002ddde: 58c0 ldr r0, [r0, r3] +1002dde0: 2100 movs r1, #0 +1002dde2: 4616 mov r6, r2 +1002dde4: f7ef f898 bl 1001cf18 +1002dde8: f504 53be add.w r3, r4, #6080 ; 0x17c0 +1002ddec: 681a ldr r2, [r3, #0] +1002ddee: b112 cbz r2, 1002ddf6 +1002ddf0: 7055 strb r5, [r2, #1] +1002ddf2: 681b ldr r3, [r3, #0] +1002ddf4: 709e strb r6, [r3, #2] +1002ddf6: 4620 mov r0, r4 +1002ddf8: 4629 mov r1, r5 +1002ddfa: 4632 mov r2, r6 +1002ddfc: f009 fe9f bl 10037b3e +1002de00: f241 73bc movw r3, #6076 ; 0x17bc +1002de04: 58e0 ldr r0, [r4, r3] +1002de06: 2100 movs r1, #0 +1002de08: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1002de0c: f7ef b88e b.w 1001cf2c + +1002de10 : +1002de10: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002de14: 4604 mov r4, r0 +1002de16: 460d mov r5, r1 +1002de18: 4617 mov r7, r2 +1002de1a: 4698 mov r8, r3 +1002de1c: b133 cbz r3, 1002de2c +1002de1e: b12a cbz r2, 1002de2c +1002de20: 2a01 cmp r2, #1 +1002de22: bf0c ite eq +1002de24: 1c8e addeq r6, r1, #2 +1002de26: 1e8e subne r6, r1, #2 +1002de28: b2f6 uxtb r6, r6 +1002de2a: e000 b.n 1002de2e +1002de2c: 462e mov r6, r5 +1002de2e: f241 73b8 movw r3, #6072 ; 0x17b8 +1002de32: 58e0 ldr r0, [r4, r3] +1002de34: 2100 movs r1, #0 +1002de36: f7ef f86f bl 1001cf18 +1002de3a: f504 53be add.w r3, r4, #6080 ; 0x17c0 +1002de3e: 681b ldr r3, [r3, #0] +1002de40: b103 cbz r3, 1002de44 +1002de42: 701d strb r5, [r3, #0] +1002de44: 4620 mov r0, r4 +1002de46: 4631 mov r1, r6 +1002de48: f009 fe80 bl 10037b4c +1002de4c: f241 73b8 movw r3, #6072 ; 0x17b8 +1002de50: 58e0 ldr r0, [r4, r3] +1002de52: 2100 movs r1, #0 +1002de54: f7ef f86a bl 1001cf2c +1002de58: 4620 mov r0, r4 +1002de5a: 4641 mov r1, r8 +1002de5c: 463a mov r2, r7 +1002de5e: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1002de62: f7ff bfb7 b.w 1002ddd4 + +1002de66 : +1002de66: 3004 adds r0, #4 +1002de68: 4770 bx lr + +1002de6a : +1002de6a: b507 push {r0, r1, r2, lr} +1002de6c: 307c adds r0, #124 ; 0x7c +1002de6e: f7f5 fd5c bl 1002392a +1002de72: 2202 movs r2, #2 +1002de74: 4601 mov r1, r0 +1002de76: f10d 0006 add.w r0, sp, #6 +1002de7a: f7ee ff97 bl 1001cdac +1002de7e: f8bd 0006 ldrh.w r0, [sp, #6] +1002de82: b003 add sp, #12 +1002de84: f85d fb04 ldr.w pc, [sp], #4 + +1002de88 : +1002de88: b148 cbz r0, 1002de9e +1002de8a: f8d0 25f8 ldr.w r2, [r0, #1528] ; 0x5f8 +1002de8e: f244 0303 movw r3, #16387 ; 0x4003 +1002de92: f244 0002 movw r0, #16386 ; 0x4002 +1002de96: 4013 ands r3, r2 +1002de98: 1a1b subs r3, r3, r0 +1002de9a: 4258 negs r0, r3 +1002de9c: 4158 adcs r0, r3 +1002de9e: 4770 bx lr + +1002dea0 : +1002dea0: f8d0 05f8 ldr.w r0, [r0, #1528] ; 0x5f8 +1002dea4: f244 0301 movw r3, #16385 ; 0x4001 +1002dea8: f420 507f bic.w r0, r0, #16320 ; 0x3fc0 +1002deac: f020 003c bic.w r0, r0, #60 ; 0x3c +1002deb0: 0440 lsls r0, r0, #17 +1002deb2: 0c40 lsrs r0, r0, #17 +1002deb4: 1ac3 subs r3, r0, r3 +1002deb6: 4258 negs r0, r3 +1002deb8: 4158 adcs r0, r3 +1002deba: 4770 bx lr + +1002debc : +1002debc: f8d0 374c ldr.w r3, [r0, #1868] ; 0x74c +1002dec0: 2b01 cmp r3, #1 +1002dec2: d00a beq.n 1002deda +1002dec4: f8d0 376c ldr.w r3, [r0, #1900] ; 0x76c +1002dec8: 2b01 cmp r3, #1 +1002deca: d006 beq.n 1002deda +1002decc: f8d0 078c ldr.w r0, [r0, #1932] ; 0x78c +1002ded0: f110 30ff adds.w r0, r0, #4294967295 +1002ded4: bf18 it ne +1002ded6: 2001 movne r0, #1 +1002ded8: 4770 bx lr +1002deda: 2000 movs r0, #0 +1002dedc: 4770 bx lr + +1002dede : +1002dede: 0080 lsls r0, r0, #2 +1002dee0: f241 736f movw r3, #5999 ; 0x176f +1002dee4: 4298 cmp r0, r3 +1002dee6: d905 bls.n 1002def4 +1002dee8: f644 6320 movw r3, #20000 ; 0x4e20 +1002deec: 4298 cmp r0, r3 +1002deee: bf28 it cs +1002def0: 4618 movcs r0, r3 +1002def2: 4770 bx lr +1002def4: f241 7070 movw r0, #6000 ; 0x1770 +1002def8: 4770 bx lr + +1002defa : +1002defa: 211c movs r1, #28 +1002defc: 2200 movs r2, #0 +1002defe: f009 bd14 b.w 1003792a + +1002df02 : +1002df02: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +1002df06: 9f0a ldr r7, [sp, #40] ; 0x28 +1002df08: 4680 mov r8, r0 +1002df0a: 4691 mov r9, r2 +1002df0c: 461d mov r5, r3 +1002df0e: ea4f 0ac1 mov.w sl, r1, lsl #3 +1002df12: 2405 movs r4, #5 +1002df14: b154 cbz r4, 1002df2c +1002df16: 2c01 cmp r4, #1 +1002df18: d110 bne.n 1002df3c +1002df1a: 792b ldrb r3, [r5, #4] +1002df1c: 78ea ldrb r2, [r5, #3] +1002df1e: 041b lsls r3, r3, #16 +1002df20: ea43 2302 orr.w r3, r3, r2, lsl #8 +1002df24: 78aa ldrb r2, [r5, #2] +1002df26: 4313 orrs r3, r2 +1002df28: 796a ldrb r2, [r5, #5] +1002df2a: e014 b.n 1002df56 +1002df2c: 786b ldrb r3, [r5, #1] +1002df2e: 782a ldrb r2, [r5, #0] +1002df30: 061b lsls r3, r3, #24 +1002df32: ea43 4302 orr.w r3, r3, r2, lsl #16 +1002df36: ea43 0309 orr.w r3, r3, r9 +1002df3a: e00e b.n 1002df5a +1002df3c: f1a4 0e02 sub.w lr, r4, #2 +1002df40: eb07 068e add.w r6, r7, lr, lsl #2 +1002df44: 78b3 ldrb r3, [r6, #2] +1002df46: 7872 ldrb r2, [r6, #1] +1002df48: 041b lsls r3, r3, #16 +1002df4a: ea43 2302 orr.w r3, r3, r2, lsl #8 +1002df4e: f817 202e ldrb.w r2, [r7, lr, lsl #2] +1002df52: 4313 orrs r3, r2 +1002df54: 78f2 ldrb r2, [r6, #3] +1002df56: ea43 6302 orr.w r3, r3, r2, lsl #24 +1002df5a: 9300 str r3, [sp, #0] +1002df5c: 4640 mov r0, r8 +1002df5e: eb04 030a add.w r3, r4, sl +1002df62: 211d movs r1, #29 +1002df64: 466a mov r2, sp +1002df66: 9301 str r3, [sp, #4] +1002df68: f009 fcdf bl 1003792a +1002df6c: f114 34ff adds.w r4, r4, #4294967295 +1002df70: d2d0 bcs.n 1002df14 +1002df72: b002 add sp, #8 +1002df74: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +1002df78 : +1002df78: b5f0 push {r4, r5, r6, r7, lr} +1002df7a: b089 sub sp, #36 ; 0x24 +1002df7c: 2400 movs r4, #0 +1002df7e: ad04 add r5, sp, #16 +1002df80: 4607 mov r7, r0 +1002df82: 460e mov r6, r1 +1002df84: 4628 mov r0, r5 +1002df86: 4621 mov r1, r4 +1002df88: 2210 movs r2, #16 +1002df8a: 9402 str r4, [sp, #8] +1002df8c: f8ad 400c strh.w r4, [sp, #12] +1002df90: f014 f9bb bl 1004230a +1002df94: 9500 str r5, [sp, #0] +1002df96: 4638 mov r0, r7 +1002df98: 4631 mov r1, r6 +1002df9a: 4622 mov r2, r4 +1002df9c: ab02 add r3, sp, #8 +1002df9e: f7ff ffb0 bl 1002df02 +1002dfa2: b009 add sp, #36 ; 0x24 +1002dfa4: bdf0 pop {r4, r5, r6, r7, pc} + +1002dfa6 : +1002dfa6: b510 push {r4, lr} +1002dfa8: 2101 movs r1, #1 +1002dfaa: 4604 mov r4, r0 +1002dfac: f7f6 fc4f bl 1002484e +1002dfb0: 4602 mov r2, r0 +1002dfb2: b920 cbnz r0, 1002dfbe +1002dfb4: 4620 mov r0, r4 +1002dfb6: 211c movs r1, #28 +1002dfb8: f009 fcb7 bl 1003792a +1002dfbc: e018 b.n 1002dff0 +1002dfbe: 6923 ldr r3, [r4, #16] +1002dfc0: 071a lsls r2, r3, #28 +1002dfc2: d515 bpl.n 1002dff0 +1002dfc4: f104 019c add.w r1, r4, #156 ; 0x9c +1002dfc8: f504 603d add.w r0, r4, #3024 ; 0xbd0 +1002dfcc: f7ff fcf2 bl 1002d9b4 +1002dfd0: 4601 mov r1, r0 +1002dfd2: b168 cbz r0, 1002dff0 +1002dfd4: f8d1 30f8 ldr.w r3, [r1, #248] ; 0xf8 +1002dfd8: 06db lsls r3, r3, #27 +1002dfda: d411 bmi.n 1002e000 +1002dfdc: f8d1 3100 ldr.w r3, [r1, #256] ; 0x100 +1002dfe0: 2b02 cmp r3, #2 +1002dfe2: bf14 ite ne +1002dfe4: 2204 movne r2, #4 +1002dfe6: 2205 moveq r2, #5 +1002dfe8: 4620 mov r0, r4 +1002dfea: 2300 movs r3, #0 +1002dfec: f7f5 f800 bl 10022ff0 +1002dff0: f504 60e1 add.w r0, r4, #1800 ; 0x708 +1002dff4: 2100 movs r1, #0 +1002dff6: 22a0 movs r2, #160 ; 0xa0 +1002dff8: e8bd 4010 ldmia.w sp!, {r4, lr} +1002dffc: f7ee bee8 b.w 1001cdd0 +1002e000: 2200 movs r2, #0 +1002e002: e7f1 b.n 1002dfe8 + +1002e004 : +1002e004: f8d0 344c ldr.w r3, [r0, #1100] ; 0x44c +1002e008: b510 push {r4, lr} +1002e00a: b91b cbnz r3, 1002e014 +1002e00c: f880 36a9 strb.w r3, [r0, #1705] ; 0x6a9 +1002e010: 4618 mov r0, r3 +1002e012: bd10 pop {r4, pc} +1002e014: 2401 movs r4, #1 +1002e016: f880 46a9 strb.w r4, [r0, #1705] ; 0x6a9 +1002e01a: 3108 adds r1, #8 +1002e01c: f500 60d8 add.w r0, r0, #1728 ; 0x6c0 +1002e020: 2212 movs r2, #18 +1002e022: f7ee fec3 bl 1001cdac +1002e026: 4620 mov r0, r4 +1002e028: bd10 pop {r4, pc} + +1002e02a : +1002e02a: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002e02e: f890 36a9 ldrb.w r3, [r0, #1705] ; 0x6a9 +1002e032: 4604 mov r4, r0 +1002e034: 2b00 cmp r3, #0 +1002e036: d059 beq.n 1002e0ec +1002e038: f890 34f9 ldrb.w r3, [r0, #1273] ; 0x4f9 +1002e03c: 2600 movs r6, #0 +1002e03e: 2b01 cmp r3, #1 +1002e040: f88d 6003 strb.w r6, [sp, #3] +1002e044: bf14 ite ne +1002e046: f04f 0810 movne.w r8, #16 +1002e04a: f04f 080a moveq.w r8, #10 +1002e04e: f200 65c2 addw r5, r0, #1730 ; 0x6c2 +1002e052: 8869 ldrh r1, [r5, #2] +1002e054: 786a ldrb r2, [r5, #1] +1002e056: 782b ldrb r3, [r5, #0] +1002e058: 0409 lsls r1, r1, #16 +1002e05a: ea41 2102 orr.w r1, r1, r2, lsl #8 +1002e05e: f894 26a7 ldrb.w r2, [r4, #1703] ; 0x6a7 +1002e062: f003 000f and.w r0, r3, #15 +1002e066: fb00 8202 mla r2, r0, r2, r8 +1002e06a: f3c3 1700 ubfx r7, r3, #4, #1 +1002e06e: b2d2 uxtb r2, r2 +1002e070: f3c3 1341 ubfx r3, r3, #5, #2 +1002e074: 4311 orrs r1, r2 +1002e076: 2b02 cmp r3, #2 +1002e078: aa02 add r2, sp, #8 +1002e07a: f842 1d04 str.w r1, [r2, #-4]! +1002e07e: 4620 mov r0, r4 +1002e080: d00f beq.n 1002e0a2 +1002e082: 2b03 cmp r3, #3 +1002e084: d015 beq.n 1002e0b2 +1002e086: 2b01 cmp r3, #1 +1002e088: d007 beq.n 1002e09a +1002e08a: 2121 movs r1, #33 ; 0x21 +1002e08c: f009 fc4d bl 1003792a +1002e090: f89d 3003 ldrb.w r3, [sp, #3] +1002e094: ea43 0747 orr.w r7, r3, r7, lsl #1 +1002e098: e012 b.n 1002e0c0 +1002e09a: 2122 movs r1, #34 ; 0x22 +1002e09c: f009 fc45 bl 1003792a +1002e0a0: e010 b.n 1002e0c4 +1002e0a2: 2120 movs r1, #32 +1002e0a4: f009 fc41 bl 1003792a +1002e0a8: f89d 3003 ldrb.w r3, [sp, #3] +1002e0ac: ea43 0787 orr.w r7, r3, r7, lsl #2 +1002e0b0: e006 b.n 1002e0c0 +1002e0b2: 211f movs r1, #31 +1002e0b4: f009 fc39 bl 1003792a +1002e0b8: f89d 3003 ldrb.w r3, [sp, #3] +1002e0bc: ea43 07c7 orr.w r7, r3, r7, lsl #3 +1002e0c0: f88d 7003 strb.w r7, [sp, #3] +1002e0c4: 3601 adds r6, #1 +1002e0c6: 2e04 cmp r6, #4 +1002e0c8: f105 0504 add.w r5, r5, #4 +1002e0cc: d1c1 bne.n 1002e052 +1002e0ce: f241 3334 movw r3, #4916 ; 0x1334 +1002e0d2: 5ce3 ldrb r3, [r4, r3] +1002e0d4: 2b01 cmp r3, #1 +1002e0d6: bf18 it ne +1002e0d8: f89d 3003 ldrbne.w r3, [sp, #3] +1002e0dc: d106 bne.n 1002e0ec +1002e0de: 4620 mov r0, r4 +1002e0e0: 2123 movs r1, #35 ; 0x23 +1002e0e2: f10d 0203 add.w r2, sp, #3 +1002e0e6: f009 fc20 bl 1003792a +1002e0ea: e001 b.n 1002e0f0 +1002e0ec: f884 349d strb.w r3, [r4, #1181] ; 0x49d +1002e0f0: b002 add sp, #8 +1002e0f2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + ... + +1002e0f8 : +1002e0f8: b573 push {r0, r1, r4, r5, r6, lr} +1002e0fa: 4604 mov r4, r0 +1002e0fc: 2900 cmp r1, #0 +1002e0fe: d046 beq.n 1002e18e +1002e100: f8d0 3454 ldr.w r3, [r0, #1108] ; 0x454 +1002e104: 2b00 cmp r3, #0 +1002e106: d042 beq.n 1002e18e +1002e108: 2301 movs r3, #1 +1002e10a: f880 36ad strb.w r3, [r0, #1709] ; 0x6ad +1002e10e: 2300 movs r3, #0 +1002e110: 784a ldrb r2, [r1, #1] +1002e112: 4293 cmp r3, r2 +1002e114: d222 bcs.n 1002e15c +1002e116: 2b02 cmp r3, #2 +1002e118: d00a beq.n 1002e130 +1002e11a: f504 62bf add.w r2, r4, #1528 ; 0x5f8 +1002e11e: 441a add r2, r3 +1002e120: 18c8 adds r0, r1, r3 +1002e122: 7885 ldrb r5, [r0, #2] +1002e124: f892 00da ldrb.w r0, [r2, #218] ; 0xda +1002e128: 4028 ands r0, r5 +1002e12a: f882 00da strb.w r0, [r2, #218] ; 0xda +1002e12e: e013 b.n 1002e158 +1002e130: f894 06d4 ldrb.w r0, [r4, #1748] ; 0x6d4 +1002e134: 790a ldrb r2, [r1, #4] +1002e136: f000 0603 and.w r6, r0, #3 +1002e13a: f002 0503 and.w r5, r2, #3 +1002e13e: f000 001c and.w r0, r0, #28 +1002e142: f002 021c and.w r2, r2, #28 +1002e146: 4282 cmp r2, r0 +1002e148: bfb8 it lt +1002e14a: 4602 movlt r2, r0 +1002e14c: 42ae cmp r6, r5 +1002e14e: bfd4 ite le +1002e150: 4332 orrle r2, r6 +1002e152: 432a orrgt r2, r5 +1002e154: f884 26d4 strb.w r2, [r4, #1748] ; 0x6d4 +1002e158: 3301 adds r3, #1 +1002e15a: e7d9 b.n 1002e110 +1002e15c: f10d 0207 add.w r2, sp, #7 +1002e160: 4620 mov r0, r4 +1002e162: 2116 movs r1, #22 +1002e164: f009 fbe8 bl 10037938 +1002e168: f89d 2007 ldrb.w r2, [sp, #7] +1002e16c: 2300 movs r3, #0 +1002e16e: 2a03 cmp r2, #3 +1002e170: d000 beq.n 1002e174 +1002e172: b94a cbnz r2, 1002e188 +1002e174: f504 61bf add.w r1, r4, #1528 ; 0x5f8 +1002e178: 4806 ldr r0, [pc, #24] ; (1002e194 ) +1002e17a: 4419 add r1, r3 +1002e17c: f891 50dd ldrb.w r5, [r1, #221] ; 0xdd +1002e180: 5c18 ldrb r0, [r3, r0] +1002e182: 4028 ands r0, r5 +1002e184: f881 00dd strb.w r0, [r1, #221] ; 0xdd +1002e188: 3301 adds r3, #1 +1002e18a: 2b10 cmp r3, #16 +1002e18c: d1ef bne.n 1002e16e +1002e18e: b002 add sp, #8 +1002e190: bd70 pop {r4, r5, r6, pc} +1002e192: bf00 nop +1002e194: 1004a6ce .word 0x1004a6ce + +1002e198 : +1002e198: 460b mov r3, r1 +1002e19a: b171 cbz r1, 1002e1ba +1002e19c: f8d0 2454 ldr.w r2, [r0, #1108] ; 0x454 +1002e1a0: b15a cbz r2, 1002e1ba +1002e1a2: 784a ldrb r2, [r1, #1] +1002e1a4: 2a16 cmp r2, #22 +1002e1a6: d808 bhi.n 1002e1ba +1002e1a8: 2201 movs r2, #1 +1002e1aa: f880 26ae strb.w r2, [r0, #1710] ; 0x6ae +1002e1ae: 3102 adds r1, #2 +1002e1b0: f200 60f2 addw r0, r0, #1778 ; 0x6f2 +1002e1b4: 785a ldrb r2, [r3, #1] +1002e1b6: f7ee bdf9 b.w 1001cdac +1002e1ba: 4770 bx lr + +1002e1bc : +1002e1bc: b507 push {r0, r1, r2, lr} +1002e1be: f890 26ae ldrb.w r2, [r0, #1710] ; 0x6ae +1002e1c2: 4603 mov r3, r0 +1002e1c4: b182 cbz r2, 1002e1e8 +1002e1c6: f890 26ad ldrb.w r2, [r0, #1709] ; 0x6ad +1002e1ca: b16a cbz r2, 1002e1e8 +1002e1cc: f890 36d4 ldrb.w r3, [r0, #1748] ; 0x6d4 +1002e1d0: 2201 movs r2, #1 +1002e1d2: f880 26ac strb.w r2, [r0, #1708] ; 0x6ac +1002e1d6: f3c3 0382 ubfx r3, r3, #2, #3 +1002e1da: aa02 add r2, sp, #8 +1002e1dc: f802 3d01 strb.w r3, [r2, #-1]! +1002e1e0: 2124 movs r1, #36 ; 0x24 +1002e1e2: f009 fba2 bl 1003792a +1002e1e6: e002 b.n 1002e1ee +1002e1e8: 2200 movs r2, #0 +1002e1ea: f883 26ac strb.w r2, [r3, #1708] ; 0x6ac +1002e1ee: b003 add sp, #12 +1002e1f0: f85d fb04 ldr.w pc, [sp], #4 + +1002e1f4 : +1002e1f4: 784a ldrb r2, [r1, #1] +1002e1f6: 460b mov r3, r1 +1002e1f8: 2a01 cmp r2, #1 +1002e1fa: d808 bhi.n 1002e20e +1002e1fc: 2201 movs r2, #1 +1002e1fe: f880 26aa strb.w r2, [r0, #1706] ; 0x6aa +1002e202: 3102 adds r1, #2 +1002e204: f200 60ab addw r0, r0, #1707 ; 0x6ab +1002e208: 785a ldrb r2, [r3, #1] +1002e20a: f7ee bdcf b.w 1001cdac +1002e20e: 4770 bx lr + +1002e210 : +1002e210: f500 5397 add.w r3, r0, #4832 ; 0x12e0 +1002e214: 3318 adds r3, #24 +1002e216: f893 202f ldrb.w r2, [r3, #47] ; 0x2f +1002e21a: b112 cbz r2, 1002e222 +1002e21c: 2a01 cmp r2, #1 +1002e21e: d00c beq.n 1002e23a +1002e220: e004 b.n 1002e22c +1002e222: f881 2175 strb.w r2, [r1, #373] ; 0x175 +1002e226: f881 2174 strb.w r2, [r1, #372] ; 0x174 +1002e22a: 4770 bx lr +1002e22c: f890 26aa ldrb.w r2, [r0, #1706] ; 0x6aa +1002e230: b18a cbz r2, 1002e256 +1002e232: f890 26ab ldrb.w r2, [r0, #1707] ; 0x6ab +1002e236: 0792 lsls r2, r2, #30 +1002e238: d50d bpl.n 1002e256 +1002e23a: f893 3030 ldrb.w r3, [r3, #48] ; 0x30 +1002e23e: 2b01 cmp r3, #1 +1002e240: d104 bne.n 1002e24c +1002e242: 2301 movs r3, #1 +1002e244: f881 3175 strb.w r3, [r1, #373] ; 0x175 +1002e248: 2300 movs r3, #0 +1002e24a: e007 b.n 1002e25c +1002e24c: 2300 movs r3, #0 +1002e24e: f881 3175 strb.w r3, [r1, #373] ; 0x175 +1002e252: 2301 movs r3, #1 +1002e254: e002 b.n 1002e25c +1002e256: 2300 movs r3, #0 +1002e258: f881 3175 strb.w r3, [r1, #373] ; 0x175 +1002e25c: f881 3174 strb.w r3, [r1, #372] ; 0x174 +1002e260: 4770 bx lr + +1002e262 : +1002e262: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002e266: b093 sub sp, #76 ; 0x4c +1002e268: 4604 mov r4, r0 +1002e26a: 4689 mov r9, r1 +1002e26c: 4615 mov r5, r2 +1002e26e: 2100 movs r1, #0 +1002e270: a80a add r0, sp, #40 ; 0x28 +1002e272: 2220 movs r2, #32 +1002e274: f8ad 1010 strh.w r1, [sp, #16] +1002e278: f8ad 1012 strh.w r1, [sp, #18] +1002e27c: 9106 str r1, [sp, #24] +1002e27e: 9107 str r1, [sp, #28] +1002e280: 9108 str r1, [sp, #32] +1002e282: 9109 str r1, [sp, #36] ; 0x24 +1002e284: f014 f841 bl 1004230a +1002e288: 4620 mov r0, r4 +1002e28a: f7ff fdfd bl 1002de88 +1002e28e: b908 cbnz r0, 1002e294 +1002e290: 2001 movs r0, #1 +1002e292: e0eb b.n 1002e46c +1002e294: f241 23f5 movw r3, #4853 ; 0x12f5 +1002e298: 5ce3 ldrb r3, [r4, r3] +1002e29a: 2b00 cmp r3, #0 +1002e29c: d1f8 bne.n 1002e290 +1002e29e: f1a5 0218 sub.w r2, r5, #24 +1002e2a2: f5b2 7f40 cmp.w r2, #768 ; 0x300 +1002e2a6: 9205 str r2, [sp, #20] +1002e2a8: d901 bls.n 1002e2ae +1002e2aa: 2000 movs r0, #0 +1002e2ac: e0de b.n 1002e46c +1002e2ae: f104 009c add.w r0, r4, #156 ; 0x9c +1002e2b2: f109 0110 add.w r1, r9, #16 +1002e2b6: 2206 movs r2, #6 +1002e2b8: f7ee fd80 bl 1001cdbc +1002e2bc: 2800 cmp r0, #0 +1002e2be: d0e7 beq.n 1002e290 +1002e2c0: af12 add r7, sp, #72 ; 0x48 +1002e2c2: f857 ad34 ldr.w sl, [r7, #-52]! +1002e2c6: f109 0524 add.w r5, r9, #36 ; 0x24 +1002e2ca: f1aa 060c sub.w r6, sl, #12 +1002e2ce: 4628 mov r0, r5 +1002e2d0: 212d movs r1, #45 ; 0x2d +1002e2d2: 463a mov r2, r7 +1002e2d4: 4633 mov r3, r6 +1002e2d6: f015 fb0b bl 100438f0 <__rtw_get_ie_veneer> +1002e2da: b120 cbz r0, 1002e2e6 +1002e2dc: 9b05 ldr r3, [sp, #20] +1002e2de: b123 cbz r3, 1002e2ea +1002e2e0: f8b0 b002 ldrh.w fp, [r0, #2] +1002e2e4: e002 b.n 1002e2ec +1002e2e6: 4683 mov fp, r0 +1002e2e8: e000 b.n 1002e2ec +1002e2ea: 469b mov fp, r3 +1002e2ec: 4628 mov r0, r5 +1002e2ee: 213d movs r1, #61 ; 0x3d +1002e2f0: 463a mov r2, r7 +1002e2f2: 4633 mov r3, r6 +1002e2f4: f015 fafc bl 100438f0 <__rtw_get_ie_veneer> +1002e2f8: b128 cbz r0, 1002e306 +1002e2fa: 9b05 ldr r3, [sp, #20] +1002e2fc: b123 cbz r3, 1002e308 +1002e2fe: f100 0802 add.w r8, r0, #2 +1002e302: 78c3 ldrb r3, [r0, #3] +1002e304: e001 b.n 1002e30a +1002e306: 4603 mov r3, r0 +1002e308: 4698 mov r8, r3 +1002e30a: f8b4 2424 ldrh.w r2, [r4, #1060] ; 0x424 +1002e30e: 455a cmp r2, fp +1002e310: d104 bne.n 1002e31c +1002e312: f894 2426 ldrb.w r2, [r4, #1062] ; 0x426 +1002e316: 405a eors r2, r3 +1002e318: 0792 lsls r2, r2, #30 +1002e31a: d003 beq.n 1002e324 +1002e31c: f8a4 b424 strh.w fp, [r4, #1060] ; 0x424 +1002e320: f884 3426 strb.w r3, [r4, #1062] ; 0x426 +1002e324: 4628 mov r0, r5 +1002e326: 2103 movs r1, #3 +1002e328: 463a mov r2, r7 +1002e32a: 4633 mov r3, r6 +1002e32c: f015 fae0 bl 100438f0 <__rtw_get_ie_veneer> +1002e330: b108 cbz r0, 1002e336 +1002e332: 7883 ldrb r3, [r0, #2] +1002e334: e00d b.n 1002e352 +1002e336: 4628 mov r0, r5 +1002e338: 213d movs r1, #61 ; 0x3d +1002e33a: 463a mov r2, r7 +1002e33c: 4633 mov r3, r6 +1002e33e: f015 fad7 bl 100438f0 <__rtw_get_ie_veneer> +1002e342: f1b8 0f00 cmp.w r8, #0 +1002e346: d002 beq.n 1002e34e +1002e348: f898 3000 ldrb.w r3, [r8] +1002e34c: e001 b.n 1002e352 +1002e34e: f894 34f6 ldrb.w r3, [r4, #1270] ; 0x4f6 +1002e352: f894 24f6 ldrb.w r2, [r4, #1270] ; 0x4f6 +1002e356: 4293 cmp r3, r2 +1002e358: d1a7 bne.n 1002e2aa +1002e35a: 463a mov r2, r7 +1002e35c: 4628 mov r0, r5 +1002e35e: 2100 movs r1, #0 +1002e360: 4633 mov r3, r6 +1002e362: f015 fac5 bl 100438f0 <__rtw_get_ie_veneer> +1002e366: 4607 mov r7, r0 +1002e368: 2800 cmp r0, #0 +1002e36a: d176 bne.n 1002e45a +1002e36c: 2700 movs r7, #0 +1002e36e: f88d 7028 strb.w r7, [sp, #40] ; 0x28 +1002e372: a80a add r0, sp, #40 ; 0x28 +1002e374: f104 01a8 add.w r1, r4, #168 ; 0xa8 +1002e378: 2220 movs r2, #32 +1002e37a: f7ee fd1f bl 1001cdbc +1002e37e: b118 cbz r0, 1002e388 +1002e380: f8d4 30a4 ldr.w r3, [r4, #164] ; 0xa4 +1002e384: 429f cmp r7, r3 +1002e386: d004 beq.n 1002e392 +1002e388: f89d 3028 ldrb.w r3, [sp, #40] ; 0x28 +1002e38c: b10b cbz r3, 1002e392 +1002e38e: 2f00 cmp r7, #0 +1002e390: d18b bne.n 1002e2aa +1002e392: f109 0918 add.w r9, r9, #24 +1002e396: 4648 mov r0, r9 +1002e398: f7f5 fab8 bl 1002390c +1002e39c: 2202 movs r2, #2 +1002e39e: 4601 mov r1, r0 +1002e3a0: f10d 000e add.w r0, sp, #14 +1002e3a4: f7ee fd02 bl 1001cdac +1002e3a8: f8bd 300e ldrh.w r3, [sp, #14] +1002e3ac: f8d4 70cc ldr.w r7, [r4, #204] ; 0xcc +1002e3b0: f3c3 1300 ubfx r3, r3, #4, #1 +1002e3b4: 429f cmp r7, r3 +1002e3b6: f47f af78 bne.w 1002e2aa +1002e3ba: 2200 movs r2, #0 +1002e3bc: ab04 add r3, sp, #16 +1002e3be: 9301 str r3, [sp, #4] +1002e3c0: 9200 str r2, [sp, #0] +1002e3c2: f10d 0312 add.w r3, sp, #18 +1002e3c6: 4648 mov r0, r9 +1002e3c8: 4651 mov r1, sl +1002e3ca: f015 fae9 bl 100439a0 <__rtw_get_sec_ie_veneer> +1002e3ce: f8bd 3012 ldrh.w r3, [sp, #18] +1002e3d2: b923 cbnz r3, 1002e3de +1002e3d4: f8bd 3010 ldrh.w r3, [sp, #16] +1002e3d8: b91b cbnz r3, 1002e3e2 +1002e3da: b2fb uxtb r3, r7 +1002e3dc: e002 b.n 1002e3e4 +1002e3de: 2303 movs r3, #3 +1002e3e0: e000 b.n 1002e3e4 +1002e3e2: 2302 movs r3, #2 +1002e3e4: f894 2414 ldrb.w r2, [r4, #1044] ; 0x414 +1002e3e8: 429a cmp r2, r3 +1002e3ea: f47f af5e bne.w 1002e2aa +1002e3ee: 3b02 subs r3, #2 +1002e3f0: 2b01 cmp r3, #1 +1002e3f2: f63f af4d bhi.w 1002e290 +1002e3f6: 4628 mov r0, r5 +1002e3f8: a909 add r1, sp, #36 ; 0x24 +1002e3fa: 4632 mov r2, r6 +1002e3fc: f015 f9e8 bl 100437d0 <__rtw_get_wpa2_ie_veneer> +1002e400: b148 cbz r0, 1002e416 +1002e402: 9909 ldr r1, [sp, #36] ; 0x24 +1002e404: b139 cbz r1, 1002e416 +1002e406: ab08 add r3, sp, #32 +1002e408: 9300 str r3, [sp, #0] +1002e40a: 3102 adds r1, #2 +1002e40c: aa06 add r2, sp, #24 +1002e40e: ab07 add r3, sp, #28 +1002e410: f015 f94e bl 100436b0 <__rtw_parse_wpa2_ie_veneer> +1002e414: e00e b.n 1002e434 +1002e416: 4628 mov r0, r5 +1002e418: a909 add r1, sp, #36 ; 0x24 +1002e41a: 4632 mov r2, r6 +1002e41c: f015 fa90 bl 10043940 <__rtw_get_wpa_ie_veneer> +1002e420: b140 cbz r0, 1002e434 +1002e422: 9909 ldr r1, [sp, #36] ; 0x24 +1002e424: b131 cbz r1, 1002e434 +1002e426: ab08 add r3, sp, #32 +1002e428: 9300 str r3, [sp, #0] +1002e42a: 3102 adds r1, #2 +1002e42c: aa06 add r2, sp, #24 +1002e42e: ab07 add r3, sp, #28 +1002e430: f015 f9a6 bl 10043780 <__rtw_parse_wpa_ie_veneer> +1002e434: f8d4 241c ldr.w r2, [r4, #1052] ; 0x41c +1002e438: 9b07 ldr r3, [sp, #28] +1002e43a: 421a tst r2, r3 +1002e43c: f43f af35 beq.w 1002e2aa +1002e440: f8d4 2418 ldr.w r2, [r4, #1048] ; 0x418 +1002e444: 9b06 ldr r3, [sp, #24] +1002e446: 421a tst r2, r3 +1002e448: f43f af2f beq.w 1002e2aa +1002e44c: f8d4 0420 ldr.w r0, [r4, #1056] ; 0x420 +1002e450: 9b08 ldr r3, [sp, #32] +1002e452: 1a1b subs r3, r3, r0 +1002e454: 4258 negs r0, r3 +1002e456: 4158 adcs r0, r3 +1002e458: e008 b.n 1002e46c +1002e45a: 7842 ldrb r2, [r0, #1] +1002e45c: 2a00 cmp r2, #0 +1002e45e: d085 beq.n 1002e36c +1002e460: 1cb9 adds r1, r7, #2 +1002e462: a80a add r0, sp, #40 ; 0x28 +1002e464: f7ee fca2 bl 1001cdac +1002e468: 787f ldrb r7, [r7, #1] +1002e46a: e782 b.n 1002e372 +1002e46c: b013 add sp, #76 ; 0x4c +1002e46e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1002e472 : +1002e472: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1002e476: 4604 mov r4, r0 +1002e478: 460f mov r7, r1 +1002e47a: 4698 mov r8, r3 +1002e47c: f1a2 0924 sub.w r9, r2, #36 ; 0x24 +1002e480: 2500 movs r5, #0 +1002e482: 454d cmp r5, r9 +1002e484: d21d bcs.n 1002e4c2 +1002e486: f105 0024 add.w r0, r5, #36 ; 0x24 +1002e48a: 183e adds r6, r7, r0 +1002e48c: 5c38 ldrb r0, [r7, r0] +1002e48e: 282a cmp r0, #42 ; 0x2a +1002e490: d00b beq.n 1002e4aa +1002e492: 283d cmp r0, #61 ; 0x3d +1002e494: d111 bne.n 1002e4ba +1002e496: f8d4 3454 ldr.w r3, [r4, #1108] ; 0x454 +1002e49a: b173 cbz r3, 1002e4ba +1002e49c: 7873 ldrb r3, [r6, #1] +1002e49e: 2b16 cmp r3, #22 +1002e4a0: d80b bhi.n 1002e4ba +1002e4a2: 2300 movs r3, #0 +1002e4a4: f884 36b7 strb.w r3, [r4, #1719] ; 0x6b7 +1002e4a8: e007 b.n 1002e4ba +1002e4aa: 4620 mov r0, r4 +1002e4ac: 4631 mov r1, r6 +1002e4ae: f7ff fea1 bl 1002e1f4 +1002e4b2: 4620 mov r0, r4 +1002e4b4: 4641 mov r1, r8 +1002e4b6: f7ff feab bl 1002e210 +1002e4ba: 7873 ldrb r3, [r6, #1] +1002e4bc: 3302 adds r3, #2 +1002e4be: 441d add r5, r3 +1002e4c0: e7df b.n 1002e482 +1002e4c2: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + ... + +1002e4c8 : +1002e4c8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002e4cc: f100 0798 add.w r7, r0, #152 ; 0x98 +1002e4d0: 4606 mov r6, r0 +1002e4d2: 4638 mov r0, r7 +1002e4d4: f7f5 fa1c bl 10023910 +1002e4d8: 06c3 lsls r3, r0, #27 +1002e4da: d402 bmi.n 1002e4e2 +1002e4dc: 2000 movs r0, #0 +1002e4de: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e4e2: 250c movs r5, #12 +1002e4e4: f8d6 3110 ldr.w r3, [r6, #272] ; 0x110 +1002e4e8: 429d cmp r5, r3 +1002e4ea: d2f7 bcs.n 1002e4dc +1002e4ec: f105 0478 add.w r4, r5, #120 ; 0x78 +1002e4f0: 443c add r4, r7 +1002e4f2: 7923 ldrb r3, [r4, #4] +1002e4f4: f104 0804 add.w r8, r4, #4 +1002e4f8: 2b30 cmp r3, #48 ; 0x30 +1002e4fa: d011 beq.n 1002e520 +1002e4fc: 2bdd cmp r3, #221 ; 0xdd +1002e4fe: d113 bne.n 1002e528 +1002e500: 1da0 adds r0, r4, #6 +1002e502: 490c ldr r1, [pc, #48] ; (1002e534 ) +1002e504: 2204 movs r2, #4 +1002e506: f7ee fc59 bl 1001cdbc +1002e50a: b168 cbz r0, 1002e528 +1002e50c: 490a ldr r1, [pc, #40] ; (1002e538 ) +1002e50e: f104 0012 add.w r0, r4, #18 +1002e512: 2204 movs r2, #4 +1002e514: f7ee fc52 bl 1001cdbc +1002e518: b130 cbz r0, 1002e528 +1002e51a: 2001 movs r0, #1 +1002e51c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e520: f104 000e add.w r0, r4, #14 +1002e524: 4905 ldr r1, [pc, #20] ; (1002e53c ) +1002e526: e7f4 b.n 1002e512 +1002e528: f898 3001 ldrb.w r3, [r8, #1] +1002e52c: 3302 adds r3, #2 +1002e52e: 441d add r5, r3 +1002e530: e7d8 b.n 1002e4e4 +1002e532: bf00 nop +1002e534: 1004a710 .word 0x1004a710 +1002e538: 00035418 .word 0x00035418 +1002e53c: 1004a6ca .word 0x1004a6ca + +1002e540 : +1002e540: f000 007f and.w r0, r0, #127 ; 0x7f +1002e544: 2818 cmp r0, #24 +1002e546: d023 beq.n 1002e590 +1002e548: d80c bhi.n 1002e564 +1002e54a: 280c cmp r0, #12 +1002e54c: d024 beq.n 1002e598 +1002e54e: d804 bhi.n 1002e55a +1002e550: 2804 cmp r0, #4 +1002e552: d027 beq.n 1002e5a4 +1002e554: 280b cmp r0, #11 +1002e556: d023 beq.n 1002e5a0 +1002e558: e010 b.n 1002e57c +1002e55a: 2812 cmp r0, #18 +1002e55c: d01a beq.n 1002e594 +1002e55e: 2816 cmp r0, #22 +1002e560: d01c beq.n 1002e59c +1002e562: e00b b.n 1002e57c +1002e564: 2848 cmp r0, #72 ; 0x48 +1002e566: d00d beq.n 1002e584 +1002e568: d804 bhi.n 1002e574 +1002e56a: 2824 cmp r0, #36 ; 0x24 +1002e56c: d00e beq.n 1002e58c +1002e56e: 2830 cmp r0, #48 ; 0x30 +1002e570: d00a beq.n 1002e588 +1002e572: e003 b.n 1002e57c +1002e574: 2860 cmp r0, #96 ; 0x60 +1002e576: d003 beq.n 1002e580 +1002e578: 286c cmp r0, #108 ; 0x6c +1002e57a: d015 beq.n 1002e5a8 +1002e57c: 2000 movs r0, #0 +1002e57e: 4770 bx lr +1002e580: 200a movs r0, #10 +1002e582: 4770 bx lr +1002e584: 2009 movs r0, #9 +1002e586: 4770 bx lr +1002e588: 2008 movs r0, #8 +1002e58a: 4770 bx lr +1002e58c: 2007 movs r0, #7 +1002e58e: 4770 bx lr +1002e590: 2006 movs r0, #6 +1002e592: 4770 bx lr +1002e594: 2005 movs r0, #5 +1002e596: 4770 bx lr +1002e598: 2004 movs r0, #4 +1002e59a: 4770 bx lr +1002e59c: 2003 movs r0, #3 +1002e59e: 4770 bx lr +1002e5a0: 2002 movs r0, #2 +1002e5a2: 4770 bx lr +1002e5a4: 2001 movs r0, #1 +1002e5a6: 4770 bx lr +1002e5a8: 200b movs r0, #11 +1002e5aa: 4770 bx lr + +1002e5ac : +1002e5ac: b5f8 push {r3, r4, r5, r6, r7, lr} +1002e5ae: 2400 movs r4, #0 +1002e5b0: 4606 mov r6, r0 +1002e5b2: 290d cmp r1, #13 +1002e5b4: bf34 ite cc +1002e5b6: 460f movcc r7, r1 +1002e5b8: 270d movcs r7, #13 +1002e5ba: 4625 mov r5, r4 +1002e5bc: 42bd cmp r5, r7 +1002e5be: d00a beq.n 1002e5d6 +1002e5c0: 5d70 ldrb r0, [r6, r5] +1002e5c2: 0603 lsls r3, r0, #24 +1002e5c4: d505 bpl.n 1002e5d2 +1002e5c6: f7ff ffbb bl 1002e540 +1002e5ca: 2301 movs r3, #1 +1002e5cc: fa03 f000 lsl.w r0, r3, r0 +1002e5d0: 4304 orrs r4, r0 +1002e5d2: 3501 adds r5, #1 +1002e5d4: e7f2 b.n 1002e5bc +1002e5d6: 4620 mov r0, r4 +1002e5d8: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1002e5da : +1002e5da: b5f8 push {r3, r4, r5, r6, r7, lr} +1002e5dc: 2400 movs r4, #0 +1002e5de: 4606 mov r6, r0 +1002e5e0: 290d cmp r1, #13 +1002e5e2: bf34 ite cc +1002e5e4: 460f movcc r7, r1 +1002e5e6: 270d movcs r7, #13 +1002e5e8: 4625 mov r5, r4 +1002e5ea: 42bd cmp r5, r7 +1002e5ec: d008 beq.n 1002e600 +1002e5ee: 5d70 ldrb r0, [r6, r5] +1002e5f0: f7ff ffa6 bl 1002e540 +1002e5f4: 2301 movs r3, #1 +1002e5f6: fa03 f000 lsl.w r0, r3, r0 +1002e5fa: 441d add r5, r3 +1002e5fc: 4304 orrs r4, r0 +1002e5fe: e7f4 b.n 1002e5ea +1002e600: 4620 mov r0, r4 +1002e602: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1002e604 : +1002e604: 78c3 ldrb r3, [r0, #3] +1002e606: 7902 ldrb r2, [r0, #4] +1002e608: 0318 lsls r0, r3, #12 +1002e60a: ea40 5002 orr.w r0, r0, r2, lsl #20 +1002e60e: 4770 bx lr + +1002e610 : +1002e610: f890 36ac ldrb.w r3, [r0, #1708] ; 0x6ac +1002e614: b17b cbz r3, 1002e636 +1002e616: f890 36a6 ldrb.w r3, [r0, #1702] ; 0x6a6 +1002e61a: 2b04 cmp r3, #4 +1002e61c: d00d beq.n 1002e63a +1002e61e: f890 34f7 ldrb.w r3, [r0, #1271] ; 0x4f7 +1002e622: 8808 ldrh r0, [r1, #0] +1002e624: f013 0f01 tst.w r3, #1 +1002e628: bf0c ite eq +1002e62a: 2305 moveq r3, #5 +1002e62c: 2306 movne r3, #6 +1002e62e: 4118 asrs r0, r3 +1002e630: f000 0001 and.w r0, r0, #1 +1002e634: 4770 bx lr +1002e636: 4618 mov r0, r3 +1002e638: 4770 bx lr +1002e63a: 2000 movs r0, #0 +1002e63c: 4770 bx lr + +1002e63e : +1002e63e: 231b movs r3, #27 +1002e640: fa20 f203 lsr.w r2, r0, r3 +1002e644: f012 0201 ands.w r2, r2, #1 +1002e648: d001 beq.n 1002e64e +1002e64a: b2d8 uxtb r0, r3 +1002e64c: 4770 bx lr +1002e64e: f113 33ff adds.w r3, r3, #4294967295 +1002e652: d2f5 bcs.n 1002e640 +1002e654: 4610 mov r0, r2 +1002e656: 4770 bx lr + +1002e658 : +1002e658: 4608 mov r0, r1 +1002e65a: 2100 movs r1, #0 +1002e65c: f009 b9f0 b.w 10037a40 + +1002e660 : +1002e660: 4608 mov r0, r1 +1002e662: 2100 movs r1, #0 +1002e664: f009 b9ec b.w 10037a40 + +1002e668 : +1002e668: b530 push {r4, r5, lr} +1002e66a: b085 sub sp, #20 +1002e66c: 460d mov r5, r1 +1002e66e: 4604 mov r4, r0 +1002e670: 2100 movs r1, #0 +1002e672: 4668 mov r0, sp +1002e674: 2210 movs r2, #16 +1002e676: f7ee fbab bl 1001cdd0 +1002e67a: 07eb lsls r3, r5, #31 +1002e67c: 4668 mov r0, sp +1002e67e: d50a bpl.n 1002e696 +1002e680: 2d01 cmp r5, #1 +1002e682: bf0b itete eq +1002e684: 490b ldreq r1, [pc, #44] ; (1002e6b4 ) +1002e686: 490c ldrne r1, [pc, #48] ; (1002e6b8 ) +1002e688: 2204 moveq r2, #4 +1002e68a: 2207 movne r2, #7 +1002e68c: f7ee fb8e bl 1001cdac +1002e690: 4620 mov r0, r4 +1002e692: 2102 movs r1, #2 +1002e694: e005 b.n 1002e6a2 +1002e696: 4909 ldr r1, [pc, #36] ; (1002e6bc ) +1002e698: 2203 movs r2, #3 +1002e69a: f7ee fb87 bl 1001cdac +1002e69e: 4620 mov r0, r4 +1002e6a0: 210c movs r1, #12 +1002e6a2: f7f6 fa15 bl 10024ad0 +1002e6a6: 4620 mov r0, r4 +1002e6a8: 2106 movs r1, #6 +1002e6aa: 466a mov r2, sp +1002e6ac: f009 f93d bl 1003792a +1002e6b0: b005 add sp, #20 +1002e6b2: bd30 pop {r4, r5, pc} +1002e6b4: 1004a8e1 .word 0x1004a8e1 +1002e6b8: 1004a8f1 .word 0x1004a8f1 +1002e6bc: 1004a8f8 .word 0x1004a8f8 + +1002e6c0 : +1002e6c0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002e6c4: 4606 mov r6, r0 +1002e6c6: 4688 mov r8, r1 +1002e6c8: 250c movs r5, #12 +1002e6ca: 4545 cmp r5, r8 +1002e6cc: d24d bcs.n 1002e76a +1002e6ce: 5d73 ldrb r3, [r6, r5] +1002e6d0: 1977 adds r7, r6, r5 +1002e6d2: 2bdd cmp r3, #221 ; 0xdd +1002e6d4: d145 bne.n 1002e762 +1002e6d6: 1cbc adds r4, r7, #2 +1002e6d8: 4620 mov r0, r4 +1002e6da: 492d ldr r1, [pc, #180] ; (1002e790 ) +1002e6dc: 2203 movs r2, #3 +1002e6de: f7ee fb6d bl 1001cdbc +1002e6e2: b110 cbz r0, 1002e6ea +1002e6e4: 2005 movs r0, #5 +1002e6e6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e6ea: 4620 mov r0, r4 +1002e6ec: 4929 ldr r1, [pc, #164] ; (1002e794 ) +1002e6ee: 2203 movs r2, #3 +1002e6f0: f7ee fb64 bl 1001cdbc +1002e6f4: 2800 cmp r0, #0 +1002e6f6: d1f5 bne.n 1002e6e4 +1002e6f8: 4620 mov r0, r4 +1002e6fa: 4927 ldr r1, [pc, #156] ; (1002e798 ) +1002e6fc: 2203 movs r2, #3 +1002e6fe: f7ee fb5d bl 1001cdbc +1002e702: b110 cbz r0, 1002e70a +1002e704: 2003 movs r0, #3 +1002e706: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e70a: 4620 mov r0, r4 +1002e70c: 4923 ldr r1, [pc, #140] ; (1002e79c ) +1002e70e: 2203 movs r2, #3 +1002e710: f7ee fb54 bl 1001cdbc +1002e714: 2800 cmp r0, #0 +1002e716: d1f5 bne.n 1002e704 +1002e718: 4620 mov r0, r4 +1002e71a: 4920 ldr r1, [pc, #128] ; (1002e79c ) +1002e71c: 2203 movs r2, #3 +1002e71e: f7ee fb4d bl 1001cdbc +1002e722: 2800 cmp r0, #0 +1002e724: d1ee bne.n 1002e704 +1002e726: 4620 mov r0, r4 +1002e728: 491d ldr r1, [pc, #116] ; (1002e7a0 ) +1002e72a: 2203 movs r2, #3 +1002e72c: f7ee fb46 bl 1001cdbc +1002e730: b9f0 cbnz r0, 1002e770 +1002e732: 4620 mov r0, r4 +1002e734: 491b ldr r1, [pc, #108] ; (1002e7a4 ) +1002e736: 2203 movs r2, #3 +1002e738: f7ee fb40 bl 1001cdbc +1002e73c: b9d8 cbnz r0, 1002e776 +1002e73e: 4620 mov r0, r4 +1002e740: 4919 ldr r1, [pc, #100] ; (1002e7a8 ) +1002e742: 2203 movs r2, #3 +1002e744: f7ee fb3a bl 1001cdbc +1002e748: b9c0 cbnz r0, 1002e77c +1002e74a: 4620 mov r0, r4 +1002e74c: 4917 ldr r1, [pc, #92] ; (1002e7ac ) +1002e74e: 2203 movs r2, #3 +1002e750: f7ee fb34 bl 1001cdbc +1002e754: b9a8 cbnz r0, 1002e782 +1002e756: 4620 mov r0, r4 +1002e758: 4915 ldr r1, [pc, #84] ; (1002e7b0 ) +1002e75a: 2203 movs r2, #3 +1002e75c: f7ee fb2e bl 1001cdbc +1002e760: b990 cbnz r0, 1002e788 +1002e762: 787b ldrb r3, [r7, #1] +1002e764: 3302 adds r3, #2 +1002e766: 441d add r5, r3 +1002e768: e7af b.n 1002e6ca +1002e76a: 2000 movs r0, #0 +1002e76c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e770: 2008 movs r0, #8 +1002e772: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e776: 2004 movs r0, #4 +1002e778: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e77c: 2006 movs r0, #6 +1002e77e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e782: 2001 movs r0, #1 +1002e784: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e788: 200b movs r0, #11 +1002e78a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002e78e: bf00 nop +1002e790: 1004a8cf .word 0x1004a8cf +1002e794: 1004a8d2 .word 0x1004a8d2 +1002e798: 1004a8e5 .word 0x1004a8e5 +1002e79c: 1004a8e8 .word 0x1004a8e8 +1002e7a0: 1004a8db .word 0x1004a8db +1002e7a4: 1004a8d8 .word 0x1004a8d8 +1002e7a8: 1004a8de .word 0x1004a8de +1002e7ac: 1004a8d5 .word 0x1004a8d5 +1002e7b0: 1004a8fb .word 0x1004a8fb + +1002e7b4 : +1002e7b4: b507 push {r0, r1, r2, lr} +1002e7b6: f890 26a6 ldrb.w r2, [r0, #1702] ; 0x6a6 +1002e7ba: 4603 mov r3, r0 +1002e7bc: 2a04 cmp r2, #4 +1002e7be: d00f beq.n 1002e7e0 +1002e7c0: 2a08 cmp r2, #8 +1002e7c2: d008 beq.n 1002e7d6 +1002e7c4: 2a01 cmp r2, #1 +1002e7c6: d11b bne.n 1002e800 +1002e7c8: aa02 add r2, sp, #8 +1002e7ca: f06f 0304 mvn.w r3, #4 +1002e7ce: f842 3d04 str.w r3, [r2, #-4]! +1002e7d2: 211a movs r1, #26 +1002e7d4: e011 b.n 1002e7fa +1002e7d6: 2201 movs r2, #1 +1002e7d8: f880 26b0 strb.w r2, [r0, #1712] ; 0x6b0 +1002e7dc: 2200 movs r2, #0 +1002e7de: e013 b.n 1002e808 +1002e7e0: 2200 movs r2, #0 +1002e7e2: f880 26b0 strb.w r2, [r0, #1712] ; 0x6b0 +1002e7e6: 2201 movs r2, #1 +1002e7e8: f880 26b1 strb.w r2, [r0, #1713] ; 0x6b1 +1002e7ec: f06f 0304 mvn.w r3, #4 +1002e7f0: aa02 add r2, sp, #8 +1002e7f2: f842 3d08 str.w r3, [r2, #-8]! +1002e7f6: 211a movs r1, #26 +1002e7f8: 466a mov r2, sp +1002e7fa: f009 f896 bl 1003792a +1002e7fe: e005 b.n 1002e80c +1002e800: 2200 movs r2, #0 +1002e802: f880 26b0 strb.w r2, [r0, #1712] ; 0x6b0 +1002e806: 2201 movs r2, #1 +1002e808: f883 26b1 strb.w r2, [r3, #1713] ; 0x6b1 +1002e80c: b003 add sp, #12 +1002e80e: f85d fb04 ldr.w pc, [sp], #4 + +1002e812 : +1002e812: b537 push {r0, r1, r2, r4, r5, lr} +1002e814: f001 0320 and.w r3, r1, #32 +1002e818: b29b uxth r3, r3 +1002e81a: 4604 mov r4, r0 +1002e81c: 460d mov r5, r1 +1002e81e: f890 26a8 ldrb.w r2, [r0, #1704] ; 0x6a8 +1002e822: b13b cbz r3, 1002e834 +1002e824: 2a03 cmp r2, #3 +1002e826: d010 beq.n 1002e84a +1002e828: 2301 movs r3, #1 +1002e82a: aa02 add r2, sp, #8 +1002e82c: f802 3d01 strb.w r3, [r2, #-1]! +1002e830: 2303 movs r3, #3 +1002e832: e005 b.n 1002e840 +1002e834: 2a01 cmp r2, #1 +1002e836: d008 beq.n 1002e84a +1002e838: aa02 add r2, sp, #8 +1002e83a: f802 3d01 strb.w r3, [r2, #-1]! +1002e83e: 2301 movs r3, #1 +1002e840: f884 36a8 strb.w r3, [r4, #1704] ; 0x6a8 +1002e844: 2113 movs r1, #19 +1002e846: f009 f870 bl 1003792a +1002e84a: 07ab lsls r3, r5, #30 +1002e84c: d501 bpl.n 1002e852 +1002e84e: 2314 movs r3, #20 +1002e850: e00c b.n 1002e86c +1002e852: f894 34f9 ldrb.w r3, [r4, #1273] ; 0x4f9 +1002e856: f013 0f0a tst.w r3, #10 +1002e85a: d00d beq.n 1002e878 +1002e85c: f415 6f80 tst.w r5, #1024 ; 0x400 +1002e860: f894 36a7 ldrb.w r3, [r4, #1703] ; 0x6a7 +1002e864: d005 beq.n 1002e872 +1002e866: 2b09 cmp r3, #9 +1002e868: d00a beq.n 1002e880 +1002e86a: 2309 movs r3, #9 +1002e86c: f884 36a7 strb.w r3, [r4, #1703] ; 0x6a7 +1002e870: e006 b.n 1002e880 +1002e872: 2b14 cmp r3, #20 +1002e874: d1eb bne.n 1002e84e +1002e876: e003 b.n 1002e880 +1002e878: f013 0f14 tst.w r3, #20 +1002e87c: d0e7 beq.n 1002e84e +1002e87e: e7f4 b.n 1002e86a +1002e880: 4620 mov r0, r4 +1002e882: 2111 movs r1, #17 +1002e884: f204 62a7 addw r2, r4, #1703 ; 0x6a7 +1002e888: f009 f84f bl 1003792a +1002e88c: b003 add sp, #12 +1002e88e: bd30 pop {r4, r5, pc} + +1002e890 : +1002e890: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1002e892: f100 06fc add.w r6, r0, #252 ; 0xfc +1002e896: 4604 mov r4, r0 +1002e898: 4630 mov r0, r6 +1002e89a: f014 ff49 bl 10043730 <__rtw_get_rateset_len_veneer> +1002e89e: f894 36ae ldrb.w r3, [r4, #1710] ; 0x6ae +1002e8a2: 4607 mov r7, r0 +1002e8a4: b12b cbz r3, 1002e8b2 +1002e8a6: f894 36ad ldrb.w r3, [r4, #1709] ; 0x6ad +1002e8aa: b113 cbz r3, 1002e8b2 +1002e8ac: 2301 movs r3, #1 +1002e8ae: f884 36ac strb.w r3, [r4, #1708] ; 0x6ac +1002e8b2: f894 34f6 ldrb.w r3, [r4, #1270] ; 0x4f6 +1002e8b6: 2b0e cmp r3, #14 +1002e8b8: f894 36ac ldrb.w r3, [r4, #1708] ; 0x6ac +1002e8bc: d904 bls.n 1002e8c8 +1002e8be: 2b00 cmp r3, #0 +1002e8c0: bf14 ite ne +1002e8c2: 2314 movne r3, #20 +1002e8c4: 2304 moveq r3, #4 +1002e8c6: e016 b.n 1002e8f6 +1002e8c8: 2b00 cmp r3, #0 +1002e8ca: 4630 mov r0, r6 +1002e8cc: 4639 mov r1, r7 +1002e8ce: bf14 ite ne +1002e8d0: 2508 movne r5, #8 +1002e8d2: 2500 moveq r5, #0 +1002e8d4: f7ff f917 bl 1002db06 +1002e8d8: 2801 cmp r0, #1 +1002e8da: d102 bne.n 1002e8e2 +1002e8dc: f045 0301 orr.w r3, r5, #1 +1002e8e0: e009 b.n 1002e8f6 +1002e8e2: 4630 mov r0, r6 +1002e8e4: 4639 mov r1, r7 +1002e8e6: f7ff f8fa bl 1002dade +1002e8ea: 2801 cmp r0, #1 +1002e8ec: bf0c ite eq +1002e8ee: f045 0303 orreq.w r3, r5, #3 +1002e8f2: f045 0302 orrne.w r3, r5, #2 +1002e8f6: f241 3225 movw r2, #4901 ; 0x1325 +1002e8fa: 5ca2 ldrb r2, [r4, r2] +1002e8fc: 2112 movs r1, #18 +1002e8fe: 4013 ands r3, r2 +1002e900: f884 34f9 strb.w r3, [r4, #1273] ; 0x4f9 +1002e904: 4b09 ldr r3, [pc, #36] ; (1002e92c ) +1002e906: aa02 add r2, sp, #8 +1002e908: f842 3d04 str.w r3, [r2, #-4]! +1002e90c: f241 638c movw r3, #5772 ; 0x168c +1002e910: 58e3 ldr r3, [r4, r3] +1002e912: 4620 mov r0, r4 +1002e914: 4798 blx r3 +1002e916: f894 34f9 ldrb.w r3, [r4, #1273] ; 0x4f9 +1002e91a: 4620 mov r0, r4 +1002e91c: 07db lsls r3, r3, #31 +1002e91e: bf4c ite mi +1002e920: 2102 movmi r1, #2 +1002e922: 210c movpl r1, #12 +1002e924: f7f6 f8d4 bl 10024ad0 +1002e928: b003 add sp, #12 +1002e92a: bdf0 pop {r4, r5, r6, r7, pc} +1002e92c: 0a0a0808 .word 0x0a0a0808 + +1002e930 : +1002e930: f890 34f9 ldrb.w r3, [r0, #1273] ; 0x4f9 +1002e934: 3109 adds r1, #9 +1002e936: f013 0f01 tst.w r3, #1 +1002e93a: f500 60bf add.w r0, r0, #1528 ; 0x5f8 +1002e93e: eb00 1041 add.w r0, r0, r1, lsl #5 +1002e942: f04f 0204 mov.w r2, #4 +1002e946: bf14 ite ne +1002e948: 4901 ldrne r1, [pc, #4] ; (1002e950 ) +1002e94a: 4902 ldreq r1, [pc, #8] ; (1002e954 ) +1002e94c: f7ee ba2e b.w 1001cdac +1002e950: 1004a8e1 .word 0x1004a8e1 +1002e954: 1004a8f8 .word 0x1004a8f8 + +1002e958 : +1002e958: 69cb ldr r3, [r1, #28] +1002e95a: 6989 ldr r1, [r1, #24] +1002e95c: 2200 movs r2, #0 +1002e95e: f500 7038 add.w r0, r0, #736 ; 0x2e0 +1002e962: 430a orrs r2, r1 +1002e964: e9c0 2300 strd r2, r3, [r0] +1002e968: 4770 bx lr + +1002e96a : +1002e96a: 2109 movs r1, #9 +1002e96c: 2200 movs r2, #0 +1002e96e: f008 bfdc b.w 1003792a + +1002e972 <_init_txservq>: +1002e972: b510 push {r4, lr} +1002e974: 4604 mov r4, r0 +1002e976: f7ee fa33 bl 1001cde0 +1002e97a: f104 0008 add.w r0, r4, #8 +1002e97e: f7ee fadd bl 1001cf3c +1002e982: 2300 movs r3, #0 +1002e984: 6163 str r3, [r4, #20] +1002e986: bd10 pop {r4, pc} + +1002e988 : +1002e988: b530 push {r4, r5, lr} +1002e98a: 4605 mov r5, r0 +1002e98c: b08b sub sp, #44 ; 0x2c +1002e98e: 460c mov r4, r1 +1002e990: 6800 ldr r0, [r0, #0] +1002e992: 4629 mov r1, r5 +1002e994: f00c fd49 bl 1003b42a <_rtw_open_pktfile> +1002e998: 4628 mov r0, r5 +1002e99a: a901 add r1, sp, #4 +1002e99c: 220e movs r2, #14 +1002e99e: f00c fd4d bl 1003b43c <_rtw_pktfile_read> +1002e9a2: 88a3 ldrh r3, [r4, #4] +1002e9a4: f5b3 6f00 cmp.w r3, #2048 ; 0x800 +1002e9a8: d108 bne.n 1002e9bc +1002e9aa: 4628 mov r0, r5 +1002e9ac: a905 add r1, sp, #20 +1002e9ae: 2214 movs r2, #20 +1002e9b0: f00c fd44 bl 1003b43c <_rtw_pktfile_read> +1002e9b4: f89d 3015 ldrb.w r3, [sp, #21] +1002e9b8: 095b lsrs r3, r3, #5 +1002e9ba: e005 b.n 1002e9c8 +1002e9bc: f648 028e movw r2, #34958 ; 0x888e +1002e9c0: 4293 cmp r3, r2 +1002e9c2: bf0c ite eq +1002e9c4: 2307 moveq r3, #7 +1002e9c6: 2300 movne r3, #0 +1002e9c8: f884 3039 strb.w r3, [r4, #57] ; 0x39 +1002e9cc: 231a movs r3, #26 +1002e9ce: 8163 strh r3, [r4, #10] +1002e9d0: 2388 movs r3, #136 ; 0x88 +1002e9d2: 7063 strb r3, [r4, #1] +1002e9d4: b00b add sp, #44 ; 0x2c +1002e9d6: bd30 pop {r4, r5, pc} + +1002e9d8 <_rtw_init_sta_xmit_priv>: +1002e9d8: b510 push {r4, lr} +1002e9da: 2100 movs r1, #0 +1002e9dc: 4604 mov r4, r0 +1002e9de: 229c movs r2, #156 ; 0x9c +1002e9e0: f7ee f9f6 bl 1001cdd0 +1002e9e4: 4620 mov r0, r4 +1002e9e6: f7ee fabf bl 1001cf68 +1002e9ea: f104 000c add.w r0, r4, #12 +1002e9ee: f7ff ffc0 bl 1002e972 <_init_txservq> +1002e9f2: f104 0024 add.w r0, r4, #36 ; 0x24 +1002e9f6: f7ff ffbc bl 1002e972 <_init_txservq> +1002e9fa: f104 003c add.w r0, r4, #60 ; 0x3c +1002e9fe: f7ff ffb8 bl 1002e972 <_init_txservq> +1002ea02: f104 0054 add.w r0, r4, #84 ; 0x54 +1002ea06: f7ff ffb4 bl 1002e972 <_init_txservq> +1002ea0a: f104 006c add.w r0, r4, #108 ; 0x6c +1002ea0e: f7ee f9e7 bl 1001cde0 +1002ea12: f104 0074 add.w r0, r4, #116 ; 0x74 +1002ea16: e8bd 4010 ldmia.w sp!, {r4, lr} +1002ea1a: f7ee b9e1 b.w 1001cde0 + +1002ea1e : +1002ea1e: b510 push {r4, lr} +1002ea20: 4604 mov r4, r0 +1002ea22: f7ee faa9 bl 1001cf78 +1002ea26: f104 000c add.w r0, r4, #12 +1002ea2a: f7ee faa5 bl 1001cf78 +1002ea2e: f104 0018 add.w r0, r4, #24 +1002ea32: f7ee faa1 bl 1001cf78 +1002ea36: f104 0024 add.w r0, r4, #36 ; 0x24 +1002ea3a: f7ee fa9d bl 1001cf78 +1002ea3e: f104 0030 add.w r0, r4, #48 ; 0x30 +1002ea42: f7ee fa99 bl 1001cf78 +1002ea46: f104 003c add.w r0, r4, #60 ; 0x3c +1002ea4a: f7ee fa95 bl 1001cf78 +1002ea4e: f104 0054 add.w r0, r4, #84 ; 0x54 +1002ea52: f7ee fa91 bl 1001cf78 +1002ea56: f504 70de add.w r0, r4, #444 ; 0x1bc +1002ea5a: f7ee fa8d bl 1001cf78 +1002ea5e: f504 70e4 add.w r0, r4, #456 ; 0x1c8 +1002ea62: e8bd 4010 ldmia.w sp!, {r4, lr} +1002ea66: f7ee ba87 b.w 1001cf78 + +1002ea6a : +1002ea6a: 2907 cmp r1, #7 +1002ea6c: d818 bhi.n 1002eaa0 +1002ea6e: 2301 movs r3, #1 +1002ea70: 408b lsls r3, r1 +1002ea72: f013 0f09 tst.w r3, #9 +1002ea76: d10a bne.n 1002ea8e +1002ea78: f013 0fc0 tst.w r3, #192 ; 0xc0 +1002ea7c: d10c bne.n 1002ea98 +1002ea7e: f013 0f30 tst.w r3, #48 ; 0x30 +1002ea82: d00d beq.n 1002eaa0 +1002ea84: f010 0f04 tst.w r0, #4 +1002ea88: bf18 it ne +1002ea8a: 2100 movne r1, #0 +1002ea8c: e008 b.n 1002eaa0 +1002ea8e: f010 0f02 tst.w r0, #2 +1002ea92: bf18 it ne +1002ea94: 2101 movne r1, #1 +1002ea96: e003 b.n 1002eaa0 +1002ea98: f010 0f08 tst.w r0, #8 +1002ea9c: bf18 it ne +1002ea9e: 2105 movne r1, #5 +1002eaa0: 4608 mov r0, r1 +1002eaa2: 4770 bx lr + +1002eaa4 : +1002eaa4: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1002eaa8: 6f0f ldr r7, [r1, #112] ; 0x70 +1002eaaa: b090 sub sp, #64 ; 0x40 +1002eaac: 2300 movs r3, #0 +1002eaae: 4606 mov r6, r0 +1002eab0: 460c mov r4, r1 +1002eab2: 9301 str r3, [sp, #4] +1002eab4: f891 8057 ldrb.w r8, [r1, #87] ; 0x57 +1002eab8: b92f cbnz r7, 1002eac6 +1002eaba: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002eabe: 3157 adds r1, #87 ; 0x57 +1002eac0: f7fe ff78 bl 1002d9b4 +1002eac4: 4607 mov r7, r0 +1002eac6: 7f23 ldrb r3, [r4, #28] +1002eac8: 2b02 cmp r3, #2 +1002eaca: f040 8096 bne.w 1002ebfa +1002eace: 2f00 cmp r7, #0 +1002ead0: f000 8093 beq.w 1002ebfa +1002ead4: a806 add r0, sp, #24 +1002ead6: 2100 movs r1, #0 +1002ead8: 2210 movs r2, #16 +1002eada: f013 fc16 bl 1004230a +1002eade: f018 0f01 tst.w r8, #1 +1002eae2: f8d4 5080 ldr.w r5, [r4, #128] ; 0x80 +1002eae6: d013 beq.n 1002eb10 +1002eae8: f8d6 0cd8 ldr.w r0, [r6, #3288] ; 0xcd8 +1002eaec: f606 4778 addw r7, r6, #3192 ; 0xc78 +1002eaf0: eb07 1000 add.w r0, r7, r0, lsl #4 +1002eaf4: 30a4 adds r0, #164 ; 0xa4 +1002eaf6: a906 add r1, sp, #24 +1002eaf8: 2210 movs r2, #16 +1002eafa: f7ee f95f bl 1001cdbc +1002eafe: 2801 cmp r0, #1 +1002eb00: d079 beq.n 1002ebf6 +1002eb02: f8d6 3cd8 ldr.w r3, [r6, #3288] ; 0xcd8 +1002eb06: a80a add r0, sp, #40 ; 0x28 +1002eb08: eb07 1103 add.w r1, r7, r3, lsl #4 +1002eb0c: 31a4 adds r1, #164 ; 0xa4 +1002eb0e: e00a b.n 1002eb26 +1002eb10: f507 778c add.w r7, r7, #280 ; 0x118 +1002eb14: 4638 mov r0, r7 +1002eb16: a906 add r1, sp, #24 +1002eb18: 2210 movs r2, #16 +1002eb1a: f7ee f94f bl 1001cdbc +1002eb1e: 2801 cmp r0, #1 +1002eb20: d069 beq.n 1002ebf6 +1002eb22: a80a add r0, sp, #40 ; 0x28 +1002eb24: 4639 mov r1, r7 +1002eb26: f014 febb bl 100438a0 <__rtw_secmicsetkey_veneer> +1002eb2a: f895 3029 ldrb.w r3, [r5, #41] ; 0x29 +1002eb2e: a80a add r0, sp, #40 ; 0x28 +1002eb30: 07d9 lsls r1, r3, #31 +1002eb32: d50c bpl.n 1002eb4e +1002eb34: 2206 movs r2, #6 +1002eb36: f105 0138 add.w r1, r5, #56 ; 0x38 +1002eb3a: f014 ff19 bl 10043970 <__rtw_secmicappend_veneer> +1002eb3e: f895 3029 ldrb.w r3, [r5, #41] ; 0x29 +1002eb42: a80a add r0, sp, #40 ; 0x28 +1002eb44: 079a lsls r2, r3, #30 +1002eb46: d50f bpl.n 1002eb68 +1002eb48: f105 0140 add.w r1, r5, #64 ; 0x40 +1002eb4c: e00e b.n 1002eb6c +1002eb4e: f105 012c add.w r1, r5, #44 ; 0x2c +1002eb52: 2206 movs r2, #6 +1002eb54: f014 ff0c bl 10043970 <__rtw_secmicappend_veneer> +1002eb58: f895 3029 ldrb.w r3, [r5, #41] ; 0x29 +1002eb5c: a80a add r0, sp, #40 ; 0x28 +1002eb5e: 079b lsls r3, r3, #30 +1002eb60: d502 bpl.n 1002eb68 +1002eb62: f105 0138 add.w r1, r5, #56 ; 0x38 +1002eb66: e001 b.n 1002eb6c +1002eb68: f105 0132 add.w r1, r5, #50 ; 0x32 +1002eb6c: 2206 movs r2, #6 +1002eb6e: f014 feff bl 10043970 <__rtw_secmicappend_veneer> +1002eb72: f894 305e ldrb.w r3, [r4, #94] ; 0x5e +1002eb76: b11b cbz r3, 1002eb80 +1002eb78: f894 3041 ldrb.w r3, [r4, #65] ; 0x41 +1002eb7c: f88d 3004 strb.w r3, [sp, #4] +1002eb80: a901 add r1, sp, #4 +1002eb82: 2204 movs r2, #4 +1002eb84: a80a add r0, sp, #40 ; 0x28 +1002eb86: f014 fef3 bl 10043970 <__rtw_secmicappend_veneer> +1002eb8a: 8a62 ldrh r2, [r4, #18] +1002eb8c: 69a6 ldr r6, [r4, #24] +1002eb8e: 7f63 ldrb r3, [r4, #29] +1002eb90: 1ab6 subs r6, r6, r2 +1002eb92: 1899 adds r1, r3, r2 +1002eb94: 1af3 subs r3, r6, r3 +1002eb96: 7aa6 ldrb r6, [r4, #10] +1002eb98: 3528 adds r5, #40 ; 0x28 +1002eb9a: 440d add r5, r1 +1002eb9c: b106 cbz r6, 1002eba0 +1002eb9e: 7fa6 ldrb r6, [r4, #30] +1002eba0: 1b9e subs r6, r3, r6 +1002eba2: 4629 mov r1, r5 +1002eba4: a80a add r0, sp, #40 ; 0x28 +1002eba6: 4632 mov r2, r6 +1002eba8: f014 fee2 bl 10043970 <__rtw_secmicappend_veneer> +1002ebac: a80a add r0, sp, #40 ; 0x28 +1002ebae: a902 add r1, sp, #8 +1002ebb0: f014 feae bl 10043910 <__rtw_secgetmic_veneer> +1002ebb4: 7aa3 ldrb r3, [r4, #10] +1002ebb6: 4435 add r5, r6 +1002ebb8: b15b cbz r3, 1002ebd2 +1002ebba: 7fa3 ldrb r3, [r4, #30] +1002ebbc: b14b cbz r3, 1002ebd2 +1002ebbe: a804 add r0, sp, #16 +1002ebc0: 2100 movs r1, #0 +1002ebc2: 2208 movs r2, #8 +1002ebc4: f7ee f904 bl 1001cdd0 +1002ebc8: a804 add r0, sp, #16 +1002ebca: 4629 mov r1, r5 +1002ebcc: 7fa2 ldrb r2, [r4, #30] +1002ebce: f7ee f8ed bl 1001cdac +1002ebd2: 4628 mov r0, r5 +1002ebd4: a902 add r1, sp, #8 +1002ebd6: 2208 movs r2, #8 +1002ebd8: f7ee f8e8 bl 1001cdac +1002ebdc: 69a3 ldr r3, [r4, #24] +1002ebde: 3308 adds r3, #8 +1002ebe0: 61a3 str r3, [r4, #24] +1002ebe2: 7aa3 ldrb r3, [r4, #10] +1002ebe4: b14b cbz r3, 1002ebfa +1002ebe6: 7fa2 ldrb r2, [r4, #30] +1002ebe8: b13a cbz r2, 1002ebfa +1002ebea: f105 0008 add.w r0, r5, #8 +1002ebee: a904 add r1, sp, #16 +1002ebf0: f7ee f8dc bl 1001cdac +1002ebf4: e001 b.n 1002ebfa +1002ebf6: 2000 movs r0, #0 +1002ebf8: e000 b.n 1002ebfc +1002ebfa: 2001 movs r0, #1 +1002ebfc: b010 add sp, #64 ; 0x40 +1002ebfe: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002ec02 : +1002ec02: b508 push {r3, lr} +1002ec04: 7a8b ldrb r3, [r1, #10] +1002ec06: b183 cbz r3, 1002ec2a +1002ec08: 7f0b ldrb r3, [r1, #28] +1002ec0a: 3b01 subs r3, #1 +1002ec0c: 2b04 cmp r3, #4 +1002ec0e: d80c bhi.n 1002ec2a +1002ec10: e8df f003 tbb [pc, r3] +1002ec14: 090b0603 .word 0x090b0603 +1002ec18: 03 .byte 0x03 +1002ec19: 00 .byte 0x00 +1002ec1a: f7fe faff bl 1002d21c +1002ec1e: e004 b.n 1002ec2a +1002ec20: f7fe fb42 bl 1002d2a8 +1002ec24: e001 b.n 1002ec2a +1002ec26: f7fe fbab bl 1002d380 +1002ec2a: 2001 movs r0, #1 +1002ec2c: bd08 pop {r3, pc} + +1002ec2e : +1002ec2e: b5f8 push {r3, r4, r5, r6, r7, lr} +1002ec30: 6e96 ldr r6, [r2, #104] ; 0x68 +1002ec32: 4607 mov r7, r0 +1002ec34: 460d mov r5, r1 +1002ec36: 4614 mov r4, r2 +1002ec38: f892 304f ldrb.w r3, [r2, #79] ; 0x4f +1002ec3c: b95e cbnz r6, 1002ec56 +1002ec3e: 07de lsls r6, r3, #31 +1002ec40: d502 bpl.n 1002ec48 +1002ec42: f7fe ff0d bl 1002da60 +1002ec46: e005 b.n 1002ec54 +1002ec48: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002ec4c: f102 014f add.w r1, r2, #79 ; 0x4f +1002ec50: f7fe feb0 bl 1002d9b4 +1002ec54: 4606 mov r6, r0 +1002ec56: 2100 movs r1, #0 +1002ec58: 221e movs r2, #30 +1002ec5a: 4628 mov r0, r5 +1002ec5c: f7ee f8b8 bl 1001cdd0 +1002ec60: 882b ldrh r3, [r5, #0] +1002ec62: 7862 ldrb r2, [r4, #1] +1002ec64: f023 03fc bic.w r3, r3, #252 ; 0xfc +1002ec68: 4313 orrs r3, r2 +1002ec6a: 802b strh r3, [r5, #0] +1002ec6c: 7862 ldrb r2, [r4, #1] +1002ec6e: 0711 lsls r1, r2, #28 +1002ec70: d401 bmi.n 1002ec76 +1002ec72: 2001 movs r0, #1 +1002ec74: bdf8 pop {r3, r4, r5, r6, r7, pc} +1002ec76: 6938 ldr r0, [r7, #16] +1002ec78: 0702 lsls r2, r0, #28 +1002ec7a: f100 8097 bmi.w 1002edac +1002ec7e: 06c2 lsls r2, r0, #27 +1002ec80: f140 80af bpl.w 1002ede2 +1002ec84: f443 7300 orr.w r3, r3, #512 ; 0x200 +1002ec88: 4628 mov r0, r5 +1002ec8a: f820 3b04 strh.w r3, [r0], #4 +1002ec8e: f104 013d add.w r1, r4, #61 ; 0x3d +1002ec92: 2206 movs r2, #6 +1002ec94: f7ee f88a bl 1001cdac +1002ec98: f105 000a add.w r0, r5, #10 +1002ec9c: f107 019c add.w r1, r7, #156 ; 0x9c +1002eca0: 2206 movs r2, #6 +1002eca2: f7ee f883 bl 1001cdac +1002eca6: f105 0010 add.w r0, r5, #16 +1002ecaa: f104 0143 add.w r1, r4, #67 ; 0x43 +1002ecae: 2206 movs r2, #6 +1002ecb0: f7ee f87c bl 1001cdac +1002ecb4: f8d6 3104 ldr.w r3, [r6, #260] ; 0x104 +1002ecb8: f894 205d ldrb.w r2, [r4, #93] ; 0x5d +1002ecbc: 3300 adds r3, #0 +1002ecbe: bf18 it ne +1002ecc0: 2301 movne r3, #1 +1002ecc2: b11a cbz r2, 1002eccc +1002ecc4: 882a ldrh r2, [r5, #0] +1002ecc6: f442 5200 orr.w r2, r2, #8192 ; 0x2000 +1002ecca: 802a strh r2, [r5, #0] +1002eccc: 7d22 ldrb r2, [r4, #20] +1002ecce: b11a cbz r2, 1002ecd8 +1002ecd0: 882a ldrh r2, [r5, #0] +1002ecd2: f442 4280 orr.w r2, r2, #16384 ; 0x4000 +1002ecd6: 802a strh r2, [r5, #0] +1002ecd8: b1c3 cbz r3, 1002ed0c +1002ecda: 8963 ldrh r3, [r4, #10] +1002ecdc: f894 2039 ldrb.w r2, [r4, #57] ; 0x39 +1002ece0: 3b02 subs r3, #2 +1002ece2: b122 cbz r2, 1002ecee +1002ece4: 5ae9 ldrh r1, [r5, r3] +1002ece6: f002 020f and.w r2, r2, #15 +1002ecea: 430a orrs r2, r1 +1002ecec: 52ea strh r2, [r5, r3] +1002ecee: f894 2061 ldrb.w r2, [r4, #97] ; 0x61 +1002ecf2: 5ae9 ldrh r1, [r5, r3] +1002ecf4: f002 0201 and.w r2, r2, #1 +1002ecf8: ea41 1202 orr.w r2, r1, r2, lsl #4 +1002ecfc: 52ea strh r2, [r5, r3] +1002ecfe: f894 103a ldrb.w r1, [r4, #58] ; 0x3a +1002ed02: f001 0103 and.w r1, r1, #3 +1002ed06: ea42 1241 orr.w r2, r2, r1, lsl #5 +1002ed0a: 52ea strh r2, [r5, r3] +1002ed0c: 2e00 cmp r6, #0 +1002ed0e: d0b0 beq.n 1002ec72 +1002ed10: f894 3039 ldrb.w r3, [r4, #57] ; 0x39 +1002ed14: eb06 0343 add.w r3, r6, r3, lsl #1 +1002ed18: f8b3 2094 ldrh.w r2, [r3, #148] ; 0x94 +1002ed1c: 3201 adds r2, #1 +1002ed1e: f8a3 2094 strh.w r2, [r3, #148] ; 0x94 +1002ed22: f894 3039 ldrb.w r3, [r4, #57] ; 0x39 +1002ed26: eb06 0343 add.w r3, r6, r3, lsl #1 +1002ed2a: f8b3 2094 ldrh.w r2, [r3, #148] ; 0x94 +1002ed2e: f3c2 020b ubfx r2, r2, #0, #12 +1002ed32: f8a3 2094 strh.w r2, [r3, #148] ; 0x94 +1002ed36: f894 3039 ldrb.w r3, [r4, #57] ; 0x39 +1002ed3a: eb06 0343 add.w r3, r6, r3, lsl #1 +1002ed3e: f8b3 3094 ldrh.w r3, [r3, #148] ; 0x94 +1002ed42: 80e3 strh r3, [r4, #6] +1002ed44: 8aea ldrh r2, [r5, #22] +1002ed46: f002 020f and.w r2, r2, #15 +1002ed4a: ea42 1303 orr.w r3, r2, r3, lsl #4 +1002ed4e: 82eb strh r3, [r5, #22] +1002ed50: f894 3057 ldrb.w r3, [r4, #87] ; 0x57 +1002ed54: b16b cbz r3, 1002ed72 +1002ed56: f8d6 31f8 ldr.w r3, [r6, #504] ; 0x1f8 +1002ed5a: b153 cbz r3, 1002ed72 +1002ed5c: f896 21ff ldrb.w r2, [r6, #511] ; 0x1ff +1002ed60: f894 3039 ldrb.w r3, [r4, #57] ; 0x39 +1002ed64: fa22 f303 lsr.w r3, r2, r3 +1002ed68: 07d8 lsls r0, r3, #31 +1002ed6a: bf44 itt mi +1002ed6c: 2301 movmi r3, #1 +1002ed6e: f884 305c strbmi.w r3, [r4, #92] ; 0x5c +1002ed72: f894 005c ldrb.w r0, [r4, #92] ; 0x5c +1002ed76: 2801 cmp r0, #1 +1002ed78: f47f af7b bne.w 1002ec72 +1002ed7c: f894 3039 ldrb.w r3, [r4, #57] ; 0x39 +1002ed80: f003 030f and.w r3, r3, #15 +1002ed84: eb06 0643 add.w r6, r6, r3, lsl #1 +1002ed88: f8b6 21d4 ldrh.w r2, [r6, #468] ; 0x1d4 +1002ed8c: 88e3 ldrh r3, [r4, #6] +1002ed8e: 1a99 subs r1, r3, r2 +1002ed90: 0509 lsls r1, r1, #20 +1002ed92: d503 bpl.n 1002ed9c +1002ed94: 2300 movs r3, #0 +1002ed96: f884 305c strb.w r3, [r4, #92] ; 0x5c +1002ed9a: bdf8 pop {r3, r4, r5, r6, r7, pc} +1002ed9c: 3301 adds r3, #1 +1002ed9e: f3c3 030b ubfx r3, r3, #0, #12 +1002eda2: f8a6 31d4 strh.w r3, [r6, #468] ; 0x1d4 +1002eda6: f884 005c strb.w r0, [r4, #92] ; 0x5c +1002edaa: bdf8 pop {r3, r4, r5, r6, r7, pc} +1002edac: f443 7380 orr.w r3, r3, #256 ; 0x100 +1002edb0: 4628 mov r0, r5 +1002edb2: f820 3b04 strh.w r3, [r0], #4 +1002edb6: f107 019c add.w r1, r7, #156 ; 0x9c +1002edba: 2206 movs r2, #6 +1002edbc: f7ed fff6 bl 1001cdac +1002edc0: f105 000a add.w r0, r5, #10 +1002edc4: f104 0143 add.w r1, r4, #67 ; 0x43 +1002edc8: 2206 movs r2, #6 +1002edca: f7ed ffef bl 1001cdac +1002edce: f105 0010 add.w r0, r5, #16 +1002edd2: f104 013d add.w r1, r4, #61 ; 0x3d +1002edd6: 2206 movs r2, #6 +1002edd8: f7ed ffe8 bl 1001cdac +1002eddc: f8d7 344c ldr.w r3, [r7, #1100] ; 0x44c +1002ede0: e76a b.n 1002ecb8 +1002ede2: f010 0060 ands.w r0, r0, #96 ; 0x60 +1002ede6: d011 beq.n 1002ee0c +1002ede8: 1d28 adds r0, r5, #4 +1002edea: f104 013d add.w r1, r4, #61 ; 0x3d +1002edee: 2206 movs r2, #6 +1002edf0: f7ed ffdc bl 1001cdac +1002edf4: f105 000a add.w r0, r5, #10 +1002edf8: f104 0143 add.w r1, r4, #67 ; 0x43 +1002edfc: 2206 movs r2, #6 +1002edfe: f7ed ffd5 bl 1001cdac +1002ee02: f105 0010 add.w r0, r5, #16 +1002ee06: f107 019c add.w r1, r7, #156 ; 0x9c +1002ee0a: e750 b.n 1002ecae +1002ee0c: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1002ee0e : +1002ee0e: b510 push {r4, lr} +1002ee10: 4604 mov r4, r0 +1002ee12: f600 00cc addw r0, r0, #2252 ; 0x8cc +1002ee16: f7ee f89d bl 1001cf54 +1002ee1a: b908 cbnz r0, 1002ee20 +1002ee1c: 2001 movs r0, #1 +1002ee1e: bd10 pop {r4, pc} +1002ee20: f604 00d8 addw r0, r4, #2264 ; 0x8d8 +1002ee24: f7ee f896 bl 1001cf54 +1002ee28: 2800 cmp r0, #0 +1002ee2a: d0f7 beq.n 1002ee1c +1002ee2c: f604 00e4 addw r0, r4, #2276 ; 0x8e4 +1002ee30: f7ee f890 bl 1001cf54 +1002ee34: 2800 cmp r0, #0 +1002ee36: d0f1 beq.n 1002ee1c +1002ee38: f504 600f add.w r0, r4, #2288 ; 0x8f0 +1002ee3c: f7ee f88a bl 1001cf54 +1002ee40: f1d0 0001 rsbs r0, r0, #1 +1002ee44: bf38 it cc +1002ee46: 2000 movcc r0, #0 +1002ee48: bd10 pop {r4, pc} + +1002ee4a : +1002ee4a: f891 2039 ldrb.w r2, [r1, #57] ; 0x39 +1002ee4e: 6e8b ldr r3, [r1, #104] ; 0x68 +1002ee50: 3a01 subs r2, #1 +1002ee52: b2d2 uxtb r2, r2 +1002ee54: 2a06 cmp r2, #6 +1002ee56: d810 bhi.n 1002ee7a +1002ee58: 2101 movs r1, #1 +1002ee5a: fa01 f202 lsl.w r2, r1, r2 +1002ee5e: f012 0f60 tst.w r2, #96 ; 0x60 +1002ee62: d108 bne.n 1002ee76 +1002ee64: f012 0f18 tst.w r2, #24 +1002ee68: d103 bne.n 1002ee72 +1002ee6a: 0792 lsls r2, r2, #30 +1002ee6c: d005 beq.n 1002ee7a +1002ee6e: 333c adds r3, #60 ; 0x3c +1002ee70: e004 b.n 1002ee7c +1002ee72: 3354 adds r3, #84 ; 0x54 +1002ee74: e002 b.n 1002ee7c +1002ee76: 336c adds r3, #108 ; 0x6c +1002ee78: e000 b.n 1002ee7c +1002ee7a: 3324 adds r3, #36 ; 0x24 +1002ee7c: 6958 ldr r0, [r3, #20] +1002ee7e: 4770 bx lr + +1002ee80 : +1002ee80: b510 push {r4, lr} +1002ee82: f890 44f9 ldrb.w r4, [r0, #1273] ; 0x4f9 +1002ee86: 6f0b ldr r3, [r1, #112] ; 0x70 +1002ee88: 2c07 cmp r4, #7 +1002ee8a: 698a ldr r2, [r1, #24] +1002ee8c: d903 bls.n 1002ee96 +1002ee8e: f241 3442 movw r4, #4930 ; 0x1342 +1002ee92: 5d04 ldrb r4, [r0, r4] +1002ee94: b17c cbz r4, 1002eeb6 +1002ee96: f241 342a movw r4, #4906 ; 0x132a +1002ee9a: 5b00 ldrh r0, [r0, r4] +1002ee9c: 4282 cmp r2, r0 +1002ee9e: d901 bls.n 1002eea4 +1002eea0: 2301 movs r3, #1 +1002eea2: e01c b.n 1002eede +1002eea4: f893 2175 ldrb.w r2, [r3, #373] ; 0x175 +1002eea8: 2a00 cmp r2, #0 +1002eeaa: d1f9 bne.n 1002eea0 +1002eeac: f893 3174 ldrb.w r3, [r3, #372] ; 0x174 +1002eeb0: b1a3 cbz r3, 1002eedc +1002eeb2: 2302 movs r3, #2 +1002eeb4: e013 b.n 1002eede +1002eeb6: f890 46a6 ldrb.w r4, [r0, #1702] ; 0x6a6 +1002eeba: 2c05 cmp r4, #5 +1002eebc: d012 beq.n 1002eee4 +1002eebe: f8b3 4174 ldrh.w r4, [r3, #372] ; 0x174 +1002eec2: b9c4 cbnz r4, 1002eef6 +1002eec4: f891 305f ldrb.w r3, [r1, #95] ; 0x5f +1002eec8: b9f3 cbnz r3, 1002ef08 +1002eeca: f241 332a movw r3, #4906 ; 0x132a +1002eece: 5ac3 ldrh r3, [r0, r3] +1002eed0: 429a cmp r2, r3 +1002eed2: d8e5 bhi.n 1002eea0 +1002eed4: f891 3064 ldrb.w r3, [r1, #100] ; 0x64 +1002eed8: 2b01 cmp r3, #1 +1002eeda: d0e1 beq.n 1002eea0 +1002eedc: 2300 movs r3, #0 +1002eede: f881 3044 strb.w r3, [r1, #68] ; 0x44 +1002eee2: bd10 pop {r4, pc} +1002eee4: f891 4064 ldrb.w r4, [r1, #100] ; 0x64 +1002eee8: 2c01 cmp r4, #1 +1002eeea: d1e8 bne.n 1002eebe +1002eeec: f8d0 4c7c ldr.w r4, [r0, #3196] ; 0xc7c +1002eef0: 2c04 cmp r4, #4 +1002eef2: d1e4 bne.n 1002eebe +1002eef4: e7dd b.n 1002eeb2 +1002eef6: f893 2175 ldrb.w r2, [r3, #373] ; 0x175 +1002eefa: 2a00 cmp r2, #0 +1002eefc: d1d0 bne.n 1002eea0 +1002eefe: f893 3174 ldrb.w r3, [r3, #372] ; 0x174 +1002ef02: 2b00 cmp r3, #0 +1002ef04: d1d5 bne.n 1002eeb2 +1002ef06: bd10 pop {r4, pc} +1002ef08: f890 44f7 ldrb.w r4, [r0, #1271] ; 0x4f7 +1002ef0c: f890 36af ldrb.w r3, [r0, #1711] ; 0x6af +1002ef10: b11c cbz r4, 1002ef1a +1002ef12: 3b02 subs r3, #2 +1002ef14: 2b01 cmp r3, #1 +1002ef16: d8d8 bhi.n 1002eeca +1002ef18: e7c2 b.n 1002eea0 +1002ef1a: 2b03 cmp r3, #3 +1002ef1c: d1d5 bne.n 1002eeca +1002ef1e: e7bf b.n 1002eea0 + +1002ef20 : +1002ef20: 23aa movs r3, #170 ; 0xaa +1002ef22: b510 push {r4, lr} +1002ef24: 7003 strb r3, [r0, #0] +1002ef26: 7043 strb r3, [r0, #1] +1002ef28: 2303 movs r3, #3 +1002ef2a: 7083 strb r3, [r0, #2] +1002ef2c: f248 1337 movw r3, #33079 ; 0x8137 +1002ef30: 4299 cmp r1, r3 +1002ef32: 4604 mov r4, r0 +1002ef34: d101 bne.n 1002ef3a +1002ef36: 4b09 ldr r3, [pc, #36] ; (1002ef5c ) +1002ef38: e004 b.n 1002ef44 +1002ef3a: f248 03f3 movw r3, #33011 ; 0x80f3 +1002ef3e: 4299 cmp r1, r3 +1002ef40: d0f9 beq.n 1002ef36 +1002ef42: 4b07 ldr r3, [pc, #28] ; (1002ef60 ) +1002ef44: 781a ldrb r2, [r3, #0] +1002ef46: 4608 mov r0, r1 +1002ef48: 70e2 strb r2, [r4, #3] +1002ef4a: 785a ldrb r2, [r3, #1] +1002ef4c: 7122 strb r2, [r4, #4] +1002ef4e: 789b ldrb r3, [r3, #2] +1002ef50: 7163 strb r3, [r4, #5] +1002ef52: f7ed fe87 bl 1001cc64 <_htons> +1002ef56: 80e0 strh r0, [r4, #6] +1002ef58: 2008 movs r0, #8 +1002ef5a: bd10 pop {r4, pc} +1002ef5c: 1004d9bc .word 0x1004d9bc +1002ef60: 1005324f .word 0x1005324f + +1002ef64 : +1002ef64: b537 push {r0, r1, r2, r4, r5, lr} +1002ef66: f890 5924 ldrb.w r5, [r0, #2340] ; 0x924 +1002ef6a: 4604 mov r4, r0 +1002ef6c: 4613 mov r3, r2 +1002ef6e: b115 cbz r5, 1002ef76 +1002ef70: 2d01 cmp r5, #1 +1002ef72: d018 beq.n 1002efa6 +1002ef74: e002 b.n 1002ef7c +1002ef76: f880 5925 strb.w r5, [r0, #2341] ; 0x925 +1002ef7a: e014 b.n 1002efa6 +1002ef7c: 4608 mov r0, r1 +1002ef7e: aa01 add r2, sp, #4 +1002ef80: 212a movs r1, #42 ; 0x2a +1002ef82: f014 fcb5 bl 100438f0 <__rtw_get_ie_veneer> +1002ef86: b908 cbnz r0, 1002ef8c +1002ef88: 2300 movs r3, #0 +1002ef8a: e00a b.n 1002efa2 +1002ef8c: 7883 ldrb r3, [r0, #2] +1002ef8e: 079b lsls r3, r3, #30 +1002ef90: d5fa bpl.n 1002ef88 +1002ef92: f504 5397 add.w r3, r4, #4832 ; 0x12e0 +1002ef96: 3318 adds r3, #24 +1002ef98: f893 3030 ldrb.w r3, [r3, #48] ; 0x30 +1002ef9c: 2b01 cmp r3, #1 +1002ef9e: bf18 it ne +1002efa0: 2302 movne r3, #2 +1002efa2: f884 3925 strb.w r3, [r4, #2341] ; 0x925 +1002efa6: b003 add sp, #12 +1002efa8: bd30 pop {r4, r5, pc} + +1002efaa : +1002efaa: 6f8b ldr r3, [r1, #120] ; 0x78 +1002efac: b570 push {r4, r5, r6, lr} +1002efae: f003 030f and.w r3, r3, #15 +1002efb2: 2b01 cmp r3, #1 +1002efb4: d120 bne.n 1002eff8 +1002efb6: f600 06c8 addw r6, r0, #2248 ; 0x8c8 +1002efba: e9d6 4518 ldrd r4, r5, [r6, #96] ; 0x60 +1002efbe: 17d3 asrs r3, r2, #31 +1002efc0: 18a4 adds r4, r4, r2 +1002efc2: eb45 0503 adc.w r5, r5, r3 +1002efc6: e9c6 4518 strd r4, r5, [r6, #96] ; 0x60 +1002efca: f8d0 447c ldr.w r4, [r0, #1148] ; 0x47c +1002efce: 3401 adds r4, #1 +1002efd0: f8c0 447c str.w r4, [r0, #1148] ; 0x47c +1002efd4: 6f0c ldr r4, [r1, #112] ; 0x70 +1002efd6: b17c cbz r4, 1002eff8 +1002efd8: f504 74c0 add.w r4, r4, #384 ; 0x180 +1002efdc: e9d4 010e ldrd r0, r1, [r4, #56] ; 0x38 +1002efe0: 3001 adds r0, #1 +1002efe2: f141 0100 adc.w r1, r1, #0 +1002efe6: e9c4 010e strd r0, r1, [r4, #56] ; 0x38 +1002efea: e9d4 0110 ldrd r0, r1, [r4, #64] ; 0x40 +1002efee: 1812 adds r2, r2, r0 +1002eff0: eb43 0301 adc.w r3, r3, r1 +1002eff4: e9c4 2310 strd r2, r3, [r4, #64] ; 0x40 +1002eff8: bd70 pop {r4, r5, r6, pc} + +1002effa : +1002effa: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1002effc: 4605 mov r5, r0 +1002effe: 460c mov r4, r1 +1002f000: b1c9 cbz r1, 1002f036 +1002f002: f500 76f0 add.w r6, r0, #480 ; 0x1e0 +1002f006: a901 add r1, sp, #4 +1002f008: f500 77ec add.w r7, r0, #472 ; 0x1d8 +1002f00c: 4630 mov r0, r6 +1002f00e: f7ed ff63 bl 1001ced8 +1002f012: 4620 mov r0, r4 +1002f014: f7ed fefa bl 1001ce0c +1002f018: 4620 mov r0, r4 +1002f01a: 4639 mov r1, r7 +1002f01c: f7ed fef0 bl 1001ce00 +1002f020: f8d5 31ec ldr.w r3, [r5, #492] ; 0x1ec +1002f024: 4630 mov r0, r6 +1002f026: 3301 adds r3, #1 +1002f028: f8c5 31ec str.w r3, [r5, #492] ; 0x1ec +1002f02c: a901 add r1, sp, #4 +1002f02e: f7ed ff5b bl 1001cee8 +1002f032: 2001 movs r0, #1 +1002f034: e000 b.n 1002f038 +1002f036: 4608 mov r0, r1 +1002f038: b003 add sp, #12 +1002f03a: bdf0 pop {r4, r5, r6, r7, pc} + +1002f03c : +1002f03c: b573 push {r0, r1, r4, r5, r6, lr} +1002f03e: f100 0654 add.w r6, r0, #84 ; 0x54 +1002f042: f100 044c add.w r4, r0, #76 ; 0x4c +1002f046: a901 add r1, sp, #4 +1002f048: 4605 mov r5, r0 +1002f04a: 4630 mov r0, r6 +1002f04c: f7ed ff54 bl 1001cef8 +1002f050: 4620 mov r0, r4 +1002f052: f7ed ff7f bl 1001cf54 +1002f056: 2801 cmp r0, #1 +1002f058: d014 beq.n 1002f084 +1002f05a: 6cec ldr r4, [r5, #76] ; 0x4c +1002f05c: 4620 mov r0, r4 +1002f05e: f7ed fed5 bl 1001ce0c +1002f062: b184 cbz r4, 1002f086 +1002f064: 6cab ldr r3, [r5, #72] ; 0x48 +1002f066: 2100 movs r1, #0 +1002f068: 3b01 subs r3, #1 +1002f06a: 64ab str r3, [r5, #72] ; 0x48 +1002f06c: f104 0008 add.w r0, r4, #8 +1002f070: f8c4 1080 str.w r1, [r4, #128] ; 0x80 +1002f074: f8c4 1084 str.w r1, [r4, #132] ; 0x84 +1002f078: 226c movs r2, #108 ; 0x6c +1002f07a: f7ed fea9 bl 1001cdd0 +1002f07e: 2301 movs r3, #1 +1002f080: 67a3 str r3, [r4, #120] ; 0x78 +1002f082: e000 b.n 1002f086 +1002f084: 2400 movs r4, #0 +1002f086: 4630 mov r0, r6 +1002f088: a901 add r1, sp, #4 +1002f08a: f7ed ff3d bl 1001cf08 +1002f08e: 4620 mov r0, r4 +1002f090: b002 add sp, #8 +1002f092: bd70 pop {r4, r5, r6, pc} + +1002f094 : +1002f094: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002f098: 4604 mov r4, r0 +1002f09a: f8d0 8058 ldr.w r8, [r0, #88] ; 0x58 +1002f09e: 460d mov r5, r1 +1002f0a0: b1e9 cbz r1, 1002f0de +1002f0a2: f100 0754 add.w r7, r0, #84 ; 0x54 +1002f0a6: 4638 mov r0, r7 +1002f0a8: a901 add r1, sp, #4 +1002f0aa: f7ed ff25 bl 1001cef8 +1002f0ae: 4628 mov r0, r5 +1002f0b0: f7ed feac bl 1001ce0c +1002f0b4: 6f6e ldr r6, [r5, #116] ; 0x74 +1002f0b6: b10e cbz r6, 1002f0bc +1002f0b8: 2300 movs r3, #0 +1002f0ba: 676b str r3, [r5, #116] ; 0x74 +1002f0bc: 4628 mov r0, r5 +1002f0be: f104 014c add.w r1, r4, #76 ; 0x4c +1002f0c2: f7ed fe9d bl 1001ce00 +1002f0c6: 6ca3 ldr r3, [r4, #72] ; 0x48 +1002f0c8: 4638 mov r0, r7 +1002f0ca: 3301 adds r3, #1 +1002f0cc: 64a3 str r3, [r4, #72] ; 0x48 +1002f0ce: a901 add r1, sp, #4 +1002f0d0: f7ed ff1a bl 1001cf08 +1002f0d4: b11e cbz r6, 1002f0de +1002f0d6: 4640 mov r0, r8 +1002f0d8: 4631 mov r1, r6 +1002f0da: f00c f9cd bl 1003b478 +1002f0de: 2001 movs r0, #1 +1002f0e0: b002 add sp, #8 +1002f0e2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002f0e6 : +1002f0e6: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002f0ea: f101 0608 add.w r6, r1, #8 +1002f0ee: 460d mov r5, r1 +1002f0f0: 4607 mov r7, r0 +1002f0f2: a901 add r1, sp, #4 +1002f0f4: 4630 mov r0, r6 +1002f0f6: f7ed feff bl 1001cef8 +1002f0fa: 682c ldr r4, [r5, #0] +1002f0fc: 4628 mov r0, r5 +1002f0fe: 4621 mov r1, r4 +1002f100: f7ed ff2e bl 1001cf60 +1002f104: b938 cbnz r0, 1002f116 +1002f106: f8d4 8000 ldr.w r8, [r4] +1002f10a: 4621 mov r1, r4 +1002f10c: 4638 mov r0, r7 +1002f10e: f7ff ffc1 bl 1002f094 +1002f112: 4644 mov r4, r8 +1002f114: e7f2 b.n 1002f0fc +1002f116: 4630 mov r0, r6 +1002f118: a901 add r1, sp, #4 +1002f11a: f7ed fef5 bl 1001cf08 +1002f11e: b002 add sp, #8 +1002f120: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002f124 : +1002f124: 3a01 subs r2, #1 +1002f126: 2a06 cmp r2, #6 +1002f128: b510 push {r4, lr} +1002f12a: d816 bhi.n 1002f15a +1002f12c: 2401 movs r4, #1 +1002f12e: fa04 f202 lsl.w r2, r4, r2 +1002f132: f012 0f60 tst.w r2, #96 ; 0x60 +1002f136: d10c bne.n 1002f152 +1002f138: f012 0f18 tst.w r2, #24 +1002f13c: d105 bne.n 1002f14a +1002f13e: 0792 lsls r2, r2, #30 +1002f140: d00b beq.n 1002f15a +1002f142: f101 003c add.w r0, r1, #60 ; 0x3c +1002f146: 2203 movs r2, #3 +1002f148: e00a b.n 1002f160 +1002f14a: f101 0054 add.w r0, r1, #84 ; 0x54 +1002f14e: 701c strb r4, [r3, #0] +1002f150: bd10 pop {r4, pc} +1002f152: f101 006c add.w r0, r1, #108 ; 0x6c +1002f156: 2200 movs r2, #0 +1002f158: e002 b.n 1002f160 +1002f15a: f101 0024 add.w r0, r1, #36 ; 0x24 +1002f15e: 2202 movs r2, #2 +1002f160: 701a strb r2, [r3, #0] +1002f162: bd10 pop {r4, pc} + +1002f164 : +1002f164: b573 push {r0, r1, r4, r5, r6, lr} +1002f166: 460c mov r4, r1 +1002f168: 6f09 ldr r1, [r1, #112] ; 0x70 +1002f16a: 4605 mov r5, r0 +1002f16c: f8d0 6950 ldr.w r6, [r0, #2384] ; 0x950 +1002f170: b939 cbnz r1, 1002f182 +1002f172: f104 0157 add.w r1, r4, #87 ; 0x57 +1002f176: f500 603d add.w r0, r0, #3024 ; 0xbd0 +1002f17a: f7fe fc1b bl 1002d9b4 +1002f17e: 4601 mov r1, r0 +1002f180: b309 cbz r1, 1002f1c6 +1002f182: 4628 mov r0, r5 +1002f184: f894 2041 ldrb.w r2, [r4, #65] ; 0x41 +1002f188: f10d 0307 add.w r3, sp, #7 +1002f18c: f7ff ffca bl 1002f124 +1002f190: 4605 mov r5, r0 +1002f192: f7ed fe29 bl 1001cde8 +1002f196: b130 cbz r0, 1002f1a6 +1002f198: f89d 3007 ldrb.w r3, [sp, #7] +1002f19c: 4628 mov r0, r5 +1002f19e: f856 1033 ldr.w r1, [r6, r3, lsl #3] +1002f1a2: f7ed fe2d bl 1001ce00 +1002f1a6: 4620 mov r0, r4 +1002f1a8: f105 0108 add.w r1, r5, #8 +1002f1ac: f7ed fe28 bl 1001ce00 +1002f1b0: 696b ldr r3, [r5, #20] +1002f1b2: 2001 movs r0, #1 +1002f1b4: 3301 adds r3, #1 +1002f1b6: 616b str r3, [r5, #20] +1002f1b8: f89d 3007 ldrb.w r3, [sp, #7] +1002f1bc: eb06 06c3 add.w r6, r6, r3, lsl #3 +1002f1c0: 6873 ldr r3, [r6, #4] +1002f1c2: 3301 adds r3, #1 +1002f1c4: 6073 str r3, [r6, #4] +1002f1c6: b002 add sp, #8 +1002f1c8: bd70 pop {r4, r5, r6, pc} + +1002f1ca : +1002f1ca: b508 push {r3, lr} +1002f1cc: f7ff ffca bl 1002f164 +1002f1d0: 3000 adds r0, #0 +1002f1d2: bf18 it ne +1002f1d4: 2001 movne r0, #1 +1002f1d6: bd08 pop {r3, pc} + +1002f1d8 : +1002f1d8: 2304 movs r3, #4 +1002f1da: b510 push {r4, lr} +1002f1dc: 4604 mov r4, r0 +1002f1de: f880 3954 strb.w r3, [r0, #2388] ; 0x954 +1002f1e2: 2020 movs r0, #32 +1002f1e4: f7ed fdc4 bl 1001cd70 +1002f1e8: f894 3954 ldrb.w r3, [r4, #2388] ; 0x954 +1002f1ec: f8c4 0950 str.w r0, [r4, #2384] ; 0x950 +1002f1f0: 2b05 cmp r3, #5 +1002f1f2: d10f bne.n 1002f214 +1002f1f4: f604 03fc addw r3, r4, #2300 ; 0x8fc +1002f1f8: 6003 str r3, [r0, #0] +1002f1fa: f504 630f add.w r3, r4, #2288 ; 0x8f0 +1002f1fe: 6083 str r3, [r0, #8] +1002f200: f604 03e4 addw r3, r4, #2276 ; 0x8e4 +1002f204: 6103 str r3, [r0, #16] +1002f206: f604 03d8 addw r3, r4, #2264 ; 0x8d8 +1002f20a: f604 04cc addw r4, r4, #2252 ; 0x8cc +1002f20e: 6183 str r3, [r0, #24] +1002f210: 6204 str r4, [r0, #32] +1002f212: bd10 pop {r4, pc} +1002f214: 2b04 cmp r3, #4 +1002f216: d10b bne.n 1002f230 +1002f218: f504 630f add.w r3, r4, #2288 ; 0x8f0 +1002f21c: 6003 str r3, [r0, #0] +1002f21e: f604 03e4 addw r3, r4, #2276 ; 0x8e4 +1002f222: 6083 str r3, [r0, #8] +1002f224: f604 03cc addw r3, r4, #2252 ; 0x8cc +1002f228: f604 04d8 addw r4, r4, #2264 ; 0x8d8 +1002f22c: 6103 str r3, [r0, #16] +1002f22e: 6184 str r4, [r0, #24] +1002f230: bd10 pop {r4, pc} + +1002f232 : +1002f232: f8d0 3950 ldr.w r3, [r0, #2384] ; 0x950 +1002f236: b12b cbz r3, 1002f244 +1002f238: f890 1954 ldrb.w r1, [r0, #2388] ; 0x954 +1002f23c: 4618 mov r0, r3 +1002f23e: 00c9 lsls r1, r1, #3 +1002f240: f7ed bdac b.w 1001cd9c +1002f244: 4770 bx lr + ... + +1002f248 <_rtw_free_xmit_priv>: +1002f248: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1002f24c: 6d85 ldr r5, [r0, #88] ; 0x58 +1002f24e: 4604 mov r4, r0 +1002f250: f8d0 9044 ldr.w r9, [r0, #68] ; 0x44 +1002f254: f8d0 71d0 ldr.w r7, [r0, #464] ; 0x1d0 +1002f258: 4628 mov r0, r5 +1002f25a: f008 fbea bl 10037a32 +1002f25e: 4620 mov r0, r4 +1002f260: f7ff fbdd bl 1002ea1e +1002f264: 6c63 ldr r3, [r4, #68] ; 0x44 +1002f266: 2b00 cmp r3, #0 +1002f268: d04e beq.n 1002f308 <_rtw_free_xmit_priv+0xc0> +1002f26a: 2600 movs r6, #0 +1002f26c: 4b27 ldr r3, [pc, #156] ; (1002f30c <_rtw_free_xmit_priv+0xc4>) +1002f26e: 21d4 movs r1, #212 ; 0xd4 +1002f270: 681a ldr r2, [r3, #0] +1002f272: fb01 9106 mla r1, r1, r6, r9 +1002f276: 4296 cmp r6, r2 +1002f278: 4698 mov r8, r3 +1002f27a: d204 bcs.n 1002f286 <_rtw_free_xmit_priv+0x3e> +1002f27c: 4628 mov r0, r5 +1002f27e: f00c f8ff bl 1003b480 +1002f282: 3601 adds r6, #1 +1002f284: e7f2 b.n 1002f26c <_rtw_free_xmit_priv+0x24> +1002f286: 2600 movs r6, #0 +1002f288: 4b21 ldr r3, [pc, #132] ; (1002f310 <_rtw_free_xmit_priv+0xc8>) +1002f28a: 215c movs r1, #92 ; 0x5c +1002f28c: 681a ldr r2, [r3, #0] +1002f28e: fb01 7106 mla r1, r1, r6, r7 +1002f292: 4296 cmp r6, r2 +1002f294: 4699 mov r9, r3 +1002f296: d206 bcs.n 1002f2a6 <_rtw_free_xmit_priv+0x5e> +1002f298: 4628 mov r0, r5 +1002f29a: f240 6256 movw r2, #1622 ; 0x656 +1002f29e: f00c f8ea bl 1003b476 +1002f2a2: 3601 adds r6, #1 +1002f2a4: e7f0 b.n 1002f288 <_rtw_free_xmit_priv+0x40> +1002f2a6: 6c20 ldr r0, [r4, #64] ; 0x40 +1002f2a8: b130 cbz r0, 1002f2b8 <_rtw_free_xmit_priv+0x70> +1002f2aa: f8d8 3000 ldr.w r3, [r8] +1002f2ae: 21d4 movs r1, #212 ; 0xd4 +1002f2b0: 4359 muls r1, r3 +1002f2b2: 3104 adds r1, #4 +1002f2b4: f7ed fd44 bl 1001cd40 +1002f2b8: f8d4 01cc ldr.w r0, [r4, #460] ; 0x1cc +1002f2bc: b130 cbz r0, 1002f2cc <_rtw_free_xmit_priv+0x84> +1002f2be: f8d9 3000 ldr.w r3, [r9] +1002f2c2: 215c movs r1, #92 ; 0x5c +1002f2c4: 4359 muls r1, r3 +1002f2c6: 3104 adds r1, #4 +1002f2c8: f7ed fd3a bl 1001cd40 +1002f2cc: f504 70f0 add.w r0, r4, #480 ; 0x1e0 +1002f2d0: f7ed fe52 bl 1001cf78 +1002f2d4: f8d4 61e8 ldr.w r6, [r4, #488] ; 0x1e8 +1002f2d8: f506 7738 add.w r7, r6, #736 ; 0x2e0 +1002f2dc: 42be cmp r6, r7 +1002f2de: d007 beq.n 1002f2f0 <_rtw_free_xmit_priv+0xa8> +1002f2e0: 4631 mov r1, r6 +1002f2e2: 4628 mov r0, r5 +1002f2e4: f240 6204 movw r2, #1540 ; 0x604 +1002f2e8: f00c f8c5 bl 1003b476 +1002f2ec: 365c adds r6, #92 ; 0x5c +1002f2ee: e7f5 b.n 1002f2dc <_rtw_free_xmit_priv+0x94> +1002f2f0: f8d4 01e4 ldr.w r0, [r4, #484] ; 0x1e4 +1002f2f4: b118 cbz r0, 1002f2fe <_rtw_free_xmit_priv+0xb6> +1002f2f6: f44f 7139 mov.w r1, #740 ; 0x2e4 +1002f2fa: f7ed fd21 bl 1001cd40 +1002f2fe: 4628 mov r0, r5 +1002f300: e8bd 43f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1002f304: f7ff bf95 b.w 1002f232 +1002f308: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1002f30c: 1004d9b8 .word 0x1004d9b8 +1002f310: 1004d9b4 .word 0x1004d9b4 + +1002f314 : +1002f314: b510 push {r4, lr} +1002f316: 2300 movs r3, #0 +1002f318: 428b cmp r3, r1 +1002f31a: da05 bge.n 1002f328 +1002f31c: eb00 02c3 add.w r2, r0, r3, lsl #3 +1002f320: 2400 movs r4, #0 +1002f322: 6054 str r4, [r2, #4] +1002f324: 3301 adds r3, #1 +1002f326: e7f7 b.n 1002f318 +1002f328: bd10 pop {r4, pc} + ... + +1002f32c <_rtw_init_xmit_priv>: +1002f32c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1002f330: 4604 mov r4, r0 +1002f332: 460d mov r5, r1 +1002f334: f7ed fe18 bl 1001cf68 +1002f338: 1d20 adds r0, r4, #4 +1002f33a: 65a5 str r5, [r4, #88] ; 0x58 +1002f33c: f7ed fdfe bl 1001cf3c +1002f340: f104 0010 add.w r0, r4, #16 +1002f344: f7ed fdfa bl 1001cf3c +1002f348: f104 001c add.w r0, r4, #28 +1002f34c: f7ed fdf6 bl 1001cf3c +1002f350: f104 0028 add.w r0, r4, #40 ; 0x28 +1002f354: f7ed fdf2 bl 1001cf3c +1002f358: 4e60 ldr r6, [pc, #384] ; (1002f4dc <_rtw_init_xmit_priv+0x1b0>) +1002f35a: f104 0034 add.w r0, r4, #52 ; 0x34 +1002f35e: f104 084c add.w r8, r4, #76 ; 0x4c +1002f362: f7ed fdeb bl 1001cf3c +1002f366: 4640 mov r0, r8 +1002f368: f7ed fde8 bl 1001cf3c +1002f36c: 6833 ldr r3, [r6, #0] +1002f36e: 22d4 movs r2, #212 ; 0xd4 +1002f370: fb02 f003 mul.w r0, r2, r3 +1002f374: 3004 adds r0, #4 +1002f376: f7ed fcd1 bl 1001cd1c +1002f37a: 46b1 mov r9, r6 +1002f37c: 6420 str r0, [r4, #64] ; 0x40 +1002f37e: b908 cbnz r0, 1002f384 <_rtw_init_xmit_priv+0x58> +1002f380: 6460 str r0, [r4, #68] ; 0x44 +1002f382: e030 b.n 1002f3e6 <_rtw_init_xmit_priv+0xba> +1002f384: 1cc7 adds r7, r0, #3 +1002f386: f027 0603 bic.w r6, r7, #3 +1002f38a: 6466 str r6, [r4, #68] ; 0x44 +1002f38c: 2700 movs r7, #0 +1002f38e: f8d9 3000 ldr.w r3, [r9] +1002f392: 429f cmp r7, r3 +1002f394: d211 bcs.n 1002f3ba <_rtw_init_xmit_priv+0x8e> +1002f396: 4630 mov r0, r6 +1002f398: f7ed fd22 bl 1001cde0 +1002f39c: 2300 movs r3, #0 +1002f39e: 67f5 str r5, [r6, #124] ; 0x7c +1002f3a0: 67b3 str r3, [r6, #120] ; 0x78 +1002f3a2: 6773 str r3, [r6, #116] ; 0x74 +1002f3a4: f8c6 3080 str.w r3, [r6, #128] ; 0x80 +1002f3a8: f8c6 3084 str.w r3, [r6, #132] ; 0x84 +1002f3ac: 4630 mov r0, r6 +1002f3ae: 4641 mov r1, r8 +1002f3b0: f7ed fd26 bl 1001ce00 +1002f3b4: 36d4 adds r6, #212 ; 0xd4 +1002f3b6: 3701 adds r7, #1 +1002f3b8: e7e9 b.n 1002f38e <_rtw_init_xmit_priv+0x62> +1002f3ba: f504 79da add.w r9, r4, #436 ; 0x1b4 +1002f3be: 64a3 str r3, [r4, #72] ; 0x48 +1002f3c0: 4648 mov r0, r9 +1002f3c2: 4e47 ldr r6, [pc, #284] ; (1002f4e0 <_rtw_init_xmit_priv+0x1b4>) +1002f3c4: f7ed fdba bl 1001cf3c +1002f3c8: f504 70e0 add.w r0, r4, #448 ; 0x1c0 +1002f3cc: f7ed fdb6 bl 1001cf3c +1002f3d0: 6833 ldr r3, [r6, #0] +1002f3d2: 225c movs r2, #92 ; 0x5c +1002f3d4: fb02 f003 mul.w r0, r2, r3 +1002f3d8: 3004 adds r0, #4 +1002f3da: f7ed fc9f bl 1001cd1c +1002f3de: 46b2 mov sl, r6 +1002f3e0: f8c4 01cc str.w r0, [r4, #460] ; 0x1cc +1002f3e4: b908 cbnz r0, 1002f3ea <_rtw_init_xmit_priv+0xbe> +1002f3e6: 2700 movs r7, #0 +1002f3e8: e075 b.n 1002f4d6 <_rtw_init_xmit_priv+0x1aa> +1002f3ea: 1cc6 adds r6, r0, #3 +1002f3ec: f026 0603 bic.w r6, r6, #3 +1002f3f0: f8c4 61d0 str.w r6, [r4, #464] ; 0x1d0 +1002f3f4: 2701 movs r7, #1 +1002f3f6: f04f 0800 mov.w r8, #0 +1002f3fa: f8da 3000 ldr.w r3, [sl] +1002f3fe: 4598 cmp r8, r3 +1002f400: d224 bcs.n 1002f44c <_rtw_init_xmit_priv+0x120> +1002f402: 4630 mov r0, r6 +1002f404: f7ed fcec bl 1001cde0 +1002f408: 2300 movs r3, #0 +1002f40a: 6173 str r3, [r6, #20] +1002f40c: 60b5 str r5, [r6, #8] +1002f40e: 8333 strh r3, [r6, #24] +1002f410: 4628 mov r0, r5 +1002f412: 4631 mov r1, r6 +1002f414: f240 6256 movw r2, #1622 ; 0x656 +1002f418: f00c f828 bl 1003b46c +1002f41c: 4607 mov r7, r0 +1002f41e: b958 cbnz r0, 1002f438 <_rtw_init_xmit_priv+0x10c> +1002f420: 200a movs r0, #10 +1002f422: f7ed fe13 bl 1001d04c +1002f426: 4628 mov r0, r5 +1002f428: 4631 mov r1, r6 +1002f42a: f240 6256 movw r2, #1622 ; 0x656 +1002f42e: f00c f81d bl 1003b46c +1002f432: 4607 mov r7, r0 +1002f434: 2800 cmp r0, #0 +1002f436: d0d6 beq.n 1002f3e6 <_rtw_init_xmit_priv+0xba> +1002f438: 2300 movs r3, #0 +1002f43a: 8373 strh r3, [r6, #26] +1002f43c: 4630 mov r0, r6 +1002f43e: 4649 mov r1, r9 +1002f440: f7ed fcde bl 1001ce00 +1002f444: 365c adds r6, #92 ; 0x5c +1002f446: f108 0801 add.w r8, r8, #1 +1002f44a: e7d6 b.n 1002f3fa <_rtw_init_xmit_priv+0xce> +1002f44c: f504 78ec add.w r8, r4, #472 ; 0x1d8 +1002f450: f8c4 31d4 str.w r3, [r4, #468] ; 0x1d4 +1002f454: 4640 mov r0, r8 +1002f456: f7ed fd71 bl 1001cf3c +1002f45a: f44f 7039 mov.w r0, #740 ; 0x2e4 +1002f45e: f7ed fc5d bl 1001cd1c +1002f462: f8c4 01e4 str.w r0, [r4, #484] ; 0x1e4 +1002f466: 2800 cmp r0, #0 +1002f468: d0bd beq.n 1002f3e6 <_rtw_init_xmit_priv+0xba> +1002f46a: 1cc6 adds r6, r0, #3 +1002f46c: f026 0603 bic.w r6, r6, #3 +1002f470: f8c4 61e8 str.w r6, [r4, #488] ; 0x1e8 +1002f474: f506 7938 add.w r9, r6, #736 ; 0x2e0 +1002f478: 454e cmp r6, r9 +1002f47a: d016 beq.n 1002f4aa <_rtw_init_xmit_priv+0x17e> +1002f47c: 4630 mov r0, r6 +1002f47e: f7ed fcaf bl 1001cde0 +1002f482: 2300 movs r3, #0 +1002f484: 6173 str r3, [r6, #20] +1002f486: 2301 movs r3, #1 +1002f488: 60b5 str r5, [r6, #8] +1002f48a: 8333 strh r3, [r6, #24] +1002f48c: 4628 mov r0, r5 +1002f48e: 4631 mov r1, r6 +1002f490: f240 6204 movw r2, #1540 ; 0x604 +1002f494: f00b ffea bl 1003b46c +1002f498: 4607 mov r7, r0 +1002f49a: 2800 cmp r0, #0 +1002f49c: d0a3 beq.n 1002f3e6 <_rtw_init_xmit_priv+0xba> +1002f49e: 4630 mov r0, r6 +1002f4a0: 4641 mov r1, r8 +1002f4a2: f7ed fcad bl 1001ce00 +1002f4a6: 365c adds r6, #92 ; 0x5c +1002f4a8: e7e6 b.n 1002f478 <_rtw_init_xmit_priv+0x14c> +1002f4aa: 2308 movs r3, #8 +1002f4ac: f8c4 31ec str.w r3, [r4, #492] ; 0x1ec +1002f4b0: 4628 mov r0, r5 +1002f4b2: f7ff fe91 bl 1002f1d8 +1002f4b6: f8d4 0088 ldr.w r0, [r4, #136] ; 0x88 +1002f4ba: f894 108c ldrb.w r1, [r4, #140] ; 0x8c +1002f4be: f7ff ff29 bl 1002f314 +1002f4c2: 686b ldr r3, [r5, #4] +1002f4c4: 2b03 cmp r3, #3 +1002f4c6: d103 bne.n 1002f4d0 <_rtw_init_xmit_priv+0x1a4> +1002f4c8: f241 73b1 movw r3, #6065 ; 0x17b1 +1002f4cc: 5ceb ldrb r3, [r5, r3] +1002f4ce: b913 cbnz r3, 1002f4d6 <_rtw_init_xmit_priv+0x1aa> +1002f4d0: 4628 mov r0, r5 +1002f4d2: f008 faa5 bl 10037a20 +1002f4d6: 4638 mov r0, r7 +1002f4d8: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1002f4dc: 1004d9b8 .word 0x1004d9b8 +1002f4e0: 1004d9b4 .word 0x1004d9b4 + +1002f4e4 : +1002f4e4: f890 3068 ldrb.w r3, [r0, #104] ; 0x68 +1002f4e8: 2b11 cmp r3, #17 +1002f4ea: bf9a itte ls +1002f4ec: 4a01 ldrls r2, [pc, #4] ; (1002f4f4 ) +1002f4ee: 5cd0 ldrbls r0, [r2, r3] +1002f4f0: 2005 movhi r0, #5 +1002f4f2: 4770 bx lr +1002f4f4: 1004a90f .word 0x1004a90f + +1002f4f8 : +1002f4f8: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002f4fc: 6902 ldr r2, [r0, #16] +1002f4fe: 4605 mov r5, r0 +1002f500: 06d2 lsls r2, r2, #27 +1002f502: 460e mov r6, r1 +1002f504: f891 7057 ldrb.w r7, [r1, #87] ; 0x57 +1002f508: d509 bpl.n 1002f51e +1002f50a: 6f0c ldr r4, [r1, #112] ; 0x70 +1002f50c: b94c cbnz r4, 1002f522 +1002f50e: f505 603d add.w r0, r5, #3024 ; 0xbd0 +1002f512: f106 0157 add.w r1, r6, #87 ; 0x57 +1002f516: f7fe fa4d bl 1002d9b4 +1002f51a: 4604 mov r4, r0 +1002f51c: b908 cbnz r0, 1002f522 +1002f51e: 2000 movs r0, #0 +1002f520: e0ba b.n 1002f698 +1002f522: 4a5f ldr r2, [pc, #380] ; (1002f6a0 ) +1002f524: f8d5 1910 ldr.w r1, [r5, #2320] ; 0x910 +1002f528: 6810 ldr r0, [r2, #0] +1002f52a: 2203 movs r2, #3 +1002f52c: fbb0 f0f2 udiv r0, r0, r2 +1002f530: 4281 cmp r1, r0 +1002f532: f007 0301 and.w r3, r7, #1 +1002f536: d919 bls.n 1002f56c +1002f538: 495a ldr r1, [pc, #360] ; (1002f6a4 ) +1002f53a: 6809 ldr r1, [r1, #0] +1002f53c: fbb1 f2f2 udiv r2, r1, r2 +1002f540: f8d5 1a9c ldr.w r1, [r5, #2716] ; 0xa9c +1002f544: 4291 cmp r1, r2 +1002f546: d911 bls.n 1002f56c +1002f548: f8d5 2ab4 ldr.w r2, [r5, #2740] ; 0xab4 +1002f54c: 2a02 cmp r2, #2 +1002f54e: d90d bls.n 1002f56c +1002f550: 4a55 ldr r2, [pc, #340] ; (1002f6a8 ) +1002f552: 6811 ldr r1, [r2, #0] +1002f554: 4a55 ldr r2, [pc, #340] ; (1002f6ac ) +1002f556: 3902 subs r1, #2 +1002f558: 6812 ldr r2, [r2, #0] +1002f55a: 4291 cmp r1, r2 +1002f55c: dd06 ble.n 1002f56c +1002f55e: 4a54 ldr r2, [pc, #336] ; (1002f6b0 ) +1002f560: 6811 ldr r1, [r2, #0] +1002f562: 4a54 ldr r2, [pc, #336] ; (1002f6b4 ) +1002f564: 3905 subs r1, #5 +1002f566: 6812 ldr r2, [r2, #0] +1002f568: 4291 cmp r1, r2 +1002f56a: dc05 bgt.n 1002f578 +1002f56c: 2b00 cmp r3, #0 +1002f56e: d0d6 beq.n 1002f51e +1002f570: 2311 movs r3, #17 +1002f572: f886 3068 strb.w r3, [r6, #104] ; 0x68 +1002f576: e7d2 b.n 1002f51e +1002f578: f896 2067 ldrb.w r2, [r6, #103] ; 0x67 +1002f57c: 2a01 cmp r2, #1 +1002f57e: d0f5 beq.n 1002f56c +1002f580: f104 07f0 add.w r7, r4, #240 ; 0xf0 +1002f584: 4638 mov r0, r7 +1002f586: a901 add r1, sp, #4 +1002f588: b303 cbz r3, 1002f5cc +1002f58a: f7ed fcb5 bl 1001cef8 +1002f58e: f8b5 0c6c ldrh.w r0, [r5, #3180] ; 0xc6c +1002f592: b1c8 cbz r0, 1002f5c8 +1002f594: 4630 mov r0, r6 +1002f596: f7ed fc39 bl 1001ce0c +1002f59a: 4630 mov r0, r6 +1002f59c: f104 01e8 add.w r1, r4, #232 ; 0xe8 +1002f5a0: f7ed fc2e bl 1001ce00 +1002f5a4: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +1002f5a8: 3301 adds r3, #1 +1002f5aa: f8c4 30f4 str.w r3, [r4, #244] ; 0xf4 +1002f5ae: f8b5 3c6e ldrh.w r3, [r5, #3182] ; 0xc6e +1002f5b2: f043 0301 orr.w r3, r3, #1 +1002f5b6: f8a5 3c6e strh.w r3, [r5, #3182] ; 0xc6e +1002f5ba: f8b5 3c6c ldrh.w r3, [r5, #3180] ; 0xc6c +1002f5be: f043 0301 orr.w r3, r3, #1 +1002f5c2: f8a5 3c6c strh.w r3, [r5, #3180] ; 0xc6c +1002f5c6: e05a b.n 1002f67e +1002f5c8: 4604 mov r4, r0 +1002f5ca: e060 b.n 1002f68e +1002f5cc: f7ed fc94 bl 1001cef8 +1002f5d0: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +1002f5d4: f013 0304 ands.w r3, r3, #4 +1002f5d8: d058 beq.n 1002f68c +1002f5da: f8b5 2c6c ldrh.w r2, [r5, #3180] ; 0xc6c +1002f5de: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002f5e2: fa22 f303 lsr.w r3, r2, r3 +1002f5e6: f013 0301 ands.w r3, r3, #1 +1002f5ea: d04f beq.n 1002f68c +1002f5ec: 4630 mov r0, r6 +1002f5ee: f7ed fc0d bl 1001ce0c +1002f5f2: 4630 mov r0, r6 +1002f5f4: f104 01e8 add.w r1, r4, #232 ; 0xe8 +1002f5f8: f7ed fc02 bl 1001ce00 +1002f5fc: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +1002f600: f103 0801 add.w r8, r3, #1 +1002f604: f8c4 80f4 str.w r8, [r4, #244] ; 0xf4 +1002f608: f896 3041 ldrb.w r3, [r6, #65] ; 0x41 +1002f60c: 3b01 subs r3, #1 +1002f60e: b2db uxtb r3, r3 +1002f610: 2b06 cmp r3, #6 +1002f612: d814 bhi.n 1002f63e +1002f614: 2201 movs r2, #1 +1002f616: fa02 f303 lsl.w r3, r2, r3 +1002f61a: f013 0f60 tst.w r3, #96 ; 0x60 +1002f61e: d10b bne.n 1002f638 +1002f620: f013 0f18 tst.w r3, #24 +1002f624: d105 bne.n 1002f632 +1002f626: 079b lsls r3, r3, #30 +1002f628: d009 beq.n 1002f63e +1002f62a: f894 3306 ldrb.w r3, [r4, #774] ; 0x306 +1002f62e: 4013 ands r3, r2 +1002f630: e009 b.n 1002f646 +1002f632: f894 3308 ldrb.w r3, [r4, #776] ; 0x308 +1002f636: e004 b.n 1002f642 +1002f638: f894 3309 ldrb.w r3, [r4, #777] ; 0x309 +1002f63c: e001 b.n 1002f642 +1002f63e: f894 3307 ldrb.w r3, [r4, #775] ; 0x307 +1002f642: f003 0301 and.w r3, r3, #1 +1002f646: b123 cbz r3, 1002f652 +1002f648: f8d4 230c ldr.w r2, [r4, #780] ; 0x30c +1002f64c: 3201 adds r2, #1 +1002f64e: f8c4 230c str.w r2, [r4, #780] ; 0x30c +1002f652: f894 230a ldrb.w r2, [r4, #778] ; 0x30a +1002f656: b112 cbz r2, 1002f65e +1002f658: b11b cbz r3, 1002f662 +1002f65a: 2401 movs r4, #1 +1002f65c: e017 b.n 1002f68e +1002f65e: 2b00 cmp r3, #0 +1002f660: d0fb beq.n 1002f65a +1002f662: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002f666: 2201 movs r2, #1 +1002f668: fa02 f303 lsl.w r3, r2, r3 +1002f66c: f8b5 2c6e ldrh.w r2, [r5, #3182] ; 0xc6e +1002f670: f1b8 0f01 cmp.w r8, #1 +1002f674: ea43 0302 orr.w r3, r3, r2 +1002f678: f8a5 3c6e strh.w r3, [r5, #3182] ; 0xc6e +1002f67c: d1ed bne.n 1002f65a +1002f67e: 2200 movs r2, #0 +1002f680: 4628 mov r0, r5 +1002f682: 2105 movs r1, #5 +1002f684: 4613 mov r3, r2 +1002f686: f7f1 ff43 bl 10021510 +1002f68a: e7e6 b.n 1002f65a +1002f68c: 461c mov r4, r3 +1002f68e: 4638 mov r0, r7 +1002f690: a901 add r1, sp, #4 +1002f692: f7ed fc39 bl 1001cf08 +1002f696: 4620 mov r0, r4 +1002f698: b002 add sp, #8 +1002f69a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1002f69e: bf00 nop +1002f6a0: 1004d9b8 .word 0x1004d9b8 +1002f6a4: 1004d9b4 .word 0x1004d9b4 +1002f6a8: 1004da08 .word 0x1004da08 +1002f6ac: 1005536c .word 0x1005536c +1002f6b0: 1004da0c .word 0x1004da0c +1002f6b4: 10055528 .word 0x10055528 + +1002f6b8 : +1002f6b8: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1002f6bc: f8d0 7950 ldr.w r7, [r0, #2384] ; 0x950 +1002f6c0: 6814 ldr r4, [r2, #0] +1002f6c2: 4605 mov r5, r0 +1002f6c4: 4688 mov r8, r1 +1002f6c6: 4616 mov r6, r2 +1002f6c8: 4630 mov r0, r6 +1002f6ca: 4621 mov r1, r4 +1002f6cc: f7ed fc48 bl 1001cf60 +1002f6d0: b9d0 cbnz r0, 1002f708 +1002f6d2: 4628 mov r0, r5 +1002f6d4: 4621 mov r1, r4 +1002f6d6: f8d4 9000 ldr.w r9, [r4] +1002f6da: f7ff ff0d bl 1002f4f8 +1002f6de: b198 cbz r0, 1002f708 +1002f6e0: f894 2041 ldrb.w r2, [r4, #65] ; 0x41 +1002f6e4: f10d 0307 add.w r3, sp, #7 +1002f6e8: 4628 mov r0, r5 +1002f6ea: 4641 mov r1, r8 +1002f6ec: f7ff fd1a bl 1002f124 +1002f6f0: 6943 ldr r3, [r0, #20] +1002f6f2: 464c mov r4, r9 +1002f6f4: 3b01 subs r3, #1 +1002f6f6: 6143 str r3, [r0, #20] +1002f6f8: f89d 3007 ldrb.w r3, [sp, #7] +1002f6fc: eb07 03c3 add.w r3, r7, r3, lsl #3 +1002f700: 685a ldr r2, [r3, #4] +1002f702: 3a01 subs r2, #1 +1002f704: 605a str r2, [r3, #4] +1002f706: e7df b.n 1002f6c8 +1002f708: b003 add sp, #12 +1002f70a: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +1002f70e : +1002f70e: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1002f712: 460c mov r4, r1 +1002f714: 4605 mov r5, r0 +1002f716: f7fe f9a3 bl 1002da60 +1002f71a: f605 07c8 addw r7, r5, #2248 ; 0x8c8 +1002f71e: a901 add r1, sp, #4 +1002f720: 4606 mov r6, r0 +1002f722: 4638 mov r0, r7 +1002f724: f7ed fbe8 bl 1001cef8 +1002f728: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +1002f72c: f8d4 1100 ldr.w r1, [r4, #256] ; 0x100 +1002f730: f043 0304 orr.w r3, r3, #4 +1002f734: f8c4 30f8 str.w r3, [r4, #248] ; 0xf8 +1002f738: 4628 mov r0, r5 +1002f73a: f008 fa24 bl 10037b86 +1002f73e: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002f742: 2201 movs r2, #1 +1002f744: fa02 f303 lsl.w r3, r2, r3 +1002f748: f8b5 2c6c ldrh.w r2, [r5, #3180] ; 0xc6c +1002f74c: f104 0874 add.w r8, r4, #116 ; 0x74 +1002f750: 4313 orrs r3, r2 +1002f752: 4628 mov r0, r5 +1002f754: f8a5 3c6c strh.w r3, [r5, #3180] ; 0xc6c +1002f758: 4621 mov r1, r4 +1002f75a: 4642 mov r2, r8 +1002f75c: f7ff ffac bl 1002f6b8 +1002f760: 4640 mov r0, r8 +1002f762: f7ed fbf7 bl 1001cf54 +1002f766: b118 cbz r0, 1002f770 +1002f768: f104 006c add.w r0, r4, #108 ; 0x6c +1002f76c: f7ed fb4e bl 1001ce0c +1002f770: f104 085c add.w r8, r4, #92 ; 0x5c +1002f774: 4628 mov r0, r5 +1002f776: 4621 mov r1, r4 +1002f778: 4642 mov r2, r8 +1002f77a: f7ff ff9d bl 1002f6b8 +1002f77e: 4640 mov r0, r8 +1002f780: f7ed fbe8 bl 1001cf54 +1002f784: b118 cbz r0, 1002f78e +1002f786: f104 0054 add.w r0, r4, #84 ; 0x54 +1002f78a: f7ed fb3f bl 1001ce0c +1002f78e: f104 082c add.w r8, r4, #44 ; 0x2c +1002f792: 4628 mov r0, r5 +1002f794: 4621 mov r1, r4 +1002f796: 4642 mov r2, r8 +1002f798: f7ff ff8e bl 1002f6b8 +1002f79c: 4640 mov r0, r8 +1002f79e: f7ed fbd9 bl 1001cf54 +1002f7a2: b118 cbz r0, 1002f7ac +1002f7a4: f104 0024 add.w r0, r4, #36 ; 0x24 +1002f7a8: f7ed fb30 bl 1001ce0c +1002f7ac: f104 0844 add.w r8, r4, #68 ; 0x44 +1002f7b0: 4628 mov r0, r5 +1002f7b2: 4621 mov r1, r4 +1002f7b4: 4642 mov r2, r8 +1002f7b6: f7ff ff7f bl 1002f6b8 +1002f7ba: 4640 mov r0, r8 +1002f7bc: f7ed fbca bl 1001cf54 +1002f7c0: b118 cbz r0, 1002f7ca +1002f7c2: f104 003c add.w r0, r4, #60 ; 0x3c +1002f7c6: f7ed fb21 bl 1001ce0c +1002f7ca: f106 042c add.w r4, r6, #44 ; 0x2c +1002f7ce: 4628 mov r0, r5 +1002f7d0: 4631 mov r1, r6 +1002f7d2: 4622 mov r2, r4 +1002f7d4: f7ff ff70 bl 1002f6b8 +1002f7d8: 4620 mov r0, r4 +1002f7da: f7ed fbbb bl 1001cf54 +1002f7de: b118 cbz r0, 1002f7e8 +1002f7e0: f106 0024 add.w r0, r6, #36 ; 0x24 +1002f7e4: f7ed fb12 bl 1001ce0c +1002f7e8: 4638 mov r0, r7 +1002f7ea: a901 add r1, sp, #4 +1002f7ec: f7ed fb8c bl 1001cf08 +1002f7f0: b002 add sp, #8 +1002f7f2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1002f7f6 : +1002f7f6: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +1002f7fa: f101 08f0 add.w r8, r1, #240 ; 0xf0 +1002f7fe: 460c mov r4, r1 +1002f800: 4605 mov r5, r0 +1002f802: a901 add r1, sp, #4 +1002f804: 4640 mov r0, r8 +1002f806: f7ed fb77 bl 1001cef8 +1002f80a: f8d4 60e8 ldr.w r6, [r4, #232] ; 0xe8 +1002f80e: f104 0ae8 add.w sl, r4, #232 ; 0xe8 +1002f812: 2700 movs r7, #0 +1002f814: 4650 mov r0, sl +1002f816: 4631 mov r1, r6 +1002f818: f7ed fba2 bl 1001cf60 +1002f81c: 2800 cmp r0, #0 +1002f81e: d16d bne.n 1002f8fc +1002f820: 4630 mov r0, r6 +1002f822: f7ed faf3 bl 1001ce0c +1002f826: f896 3041 ldrb.w r3, [r6, #65] ; 0x41 +1002f82a: 3b01 subs r3, #1 +1002f82c: b2db uxtb r3, r3 +1002f82e: 2b06 cmp r3, #6 +1002f830: d813 bhi.n 1002f85a +1002f832: 2201 movs r2, #1 +1002f834: fa02 f303 lsl.w r3, r2, r3 +1002f838: f013 0f60 tst.w r3, #96 ; 0x60 +1002f83c: d10a bne.n 1002f854 +1002f83e: f013 0f18 tst.w r3, #24 +1002f842: d104 bne.n 1002f84e +1002f844: 0799 lsls r1, r3, #30 +1002f846: d008 beq.n 1002f85a +1002f848: f894 3306 ldrb.w r3, [r4, #774] ; 0x306 +1002f84c: e007 b.n 1002f85e +1002f84e: f894 3308 ldrb.w r3, [r4, #776] ; 0x308 +1002f852: e004 b.n 1002f85e +1002f854: f894 3309 ldrb.w r3, [r4, #777] ; 0x309 +1002f858: e001 b.n 1002f85e +1002f85a: f894 3307 ldrb.w r3, [r4, #775] ; 0x307 +1002f85e: f8d4 20f4 ldr.w r2, [r4, #244] ; 0xf4 +1002f862: f003 0302 and.w r3, r3, #2 +1002f866: 3a01 subs r2, #1 +1002f868: b2db uxtb r3, r3 +1002f86a: f8c4 20f4 str.w r2, [r4, #244] ; 0xf4 +1002f86e: b102 cbz r2, 1002f872 +1002f870: 2201 movs r2, #1 +1002f872: f886 2065 strb.w r2, [r6, #101] ; 0x65 +1002f876: b183 cbz r3, 1002f89a +1002f878: f8d4 330c ldr.w r3, [r4, #780] ; 0x30c +1002f87c: 2201 movs r2, #1 +1002f87e: 3b01 subs r3, #1 +1002f880: f8c4 330c str.w r3, [r4, #780] ; 0x30c +1002f884: b12b cbz r3, 1002f892 +1002f886: 2300 movs r3, #0 +1002f888: f886 2065 strb.w r2, [r6, #101] ; 0x65 +1002f88c: f886 3069 strb.w r3, [r6, #105] ; 0x69 +1002f890: e003 b.n 1002f89a +1002f892: f886 3065 strb.w r3, [r6, #101] ; 0x65 +1002f896: f886 2069 strb.w r2, [r6, #105] ; 0x69 +1002f89a: 2301 movs r3, #1 +1002f89c: f886 3067 strb.w r3, [r6, #103] ; 0x67 +1002f8a0: 4640 mov r0, r8 +1002f8a2: a901 add r1, sp, #4 +1002f8a4: f605 09c8 addw r9, r5, #2248 ; 0x8c8 +1002f8a8: f7ed fb2e bl 1001cf08 +1002f8ac: 4648 mov r0, r9 +1002f8ae: a901 add r1, sp, #4 +1002f8b0: f7ed fb22 bl 1001cef8 +1002f8b4: 4628 mov r0, r5 +1002f8b6: 4631 mov r1, r6 +1002f8b8: f7ff fc87 bl 1002f1ca +1002f8bc: 2801 cmp r0, #1 +1002f8be: d003 beq.n 1002f8c8 +1002f8c0: 4648 mov r0, r9 +1002f8c2: 4631 mov r1, r6 +1002f8c4: f7ff fbe6 bl 1002f094 +1002f8c8: 4648 mov r0, r9 +1002f8ca: a901 add r1, sp, #4 +1002f8cc: f7ed fb1c bl 1001cf08 +1002f8d0: 4640 mov r0, r8 +1002f8d2: a901 add r1, sp, #4 +1002f8d4: f7ed fb10 bl 1001cef8 +1002f8d8: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +1002f8dc: f8d4 60e8 ldr.w r6, [r4, #232] ; 0xe8 +1002f8e0: 2b00 cmp r3, #0 +1002f8e2: d197 bne.n 1002f814 +1002f8e4: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002f8e8: 2701 movs r7, #1 +1002f8ea: fa07 f303 lsl.w r3, r7, r3 +1002f8ee: f8b5 2c6e ldrh.w r2, [r5, #3182] ; 0xc6e +1002f8f2: ea22 0303 bic.w r3, r2, r3 +1002f8f6: f8a5 3c6e strh.w r3, [r5, #3182] ; 0xc6e +1002f8fa: e78b b.n 1002f814 +1002f8fc: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +1002f900: f8d4 1100 ldr.w r1, [r4, #256] ; 0x100 +1002f904: 075a lsls r2, r3, #29 +1002f906: bf44 itt mi +1002f908: f083 0304 eormi.w r3, r3, #4 +1002f90c: f8c4 30f8 strmi.w r3, [r4, #248] ; 0xf8 +1002f910: 4628 mov r0, r5 +1002f912: f008 f948 bl 10037ba6 +1002f916: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002f91a: 2201 movs r2, #1 +1002f91c: fa02 f303 lsl.w r3, r2, r3 +1002f920: f8b5 2c6c ldrh.w r2, [r5, #3180] ; 0xc6c +1002f924: 4640 mov r0, r8 +1002f926: ea22 0303 bic.w r3, r2, r3 +1002f92a: f8a5 3c6c strh.w r3, [r5, #3180] ; 0xc6c +1002f92e: a901 add r1, sp, #4 +1002f930: f7ed faea bl 1001cf08 +1002f934: 4628 mov r0, r5 +1002f936: f7fe f893 bl 1002da60 +1002f93a: 4604 mov r4, r0 +1002f93c: 2800 cmp r0, #0 +1002f93e: d062 beq.n 1002fa06 +1002f940: f8b5 3c6c ldrh.w r3, [r5, #3180] ; 0xc6c +1002f944: f023 0301 bic.w r3, r3, #1 +1002f948: b29b uxth r3, r3 +1002f94a: 2b00 cmp r3, #0 +1002f94c: d154 bne.n 1002f9f8 +1002f94e: f100 08f0 add.w r8, r0, #240 ; 0xf0 +1002f952: 4640 mov r0, r8 +1002f954: a901 add r1, sp, #4 +1002f956: f7ed facf bl 1001cef8 +1002f95a: f8d4 60e8 ldr.w r6, [r4, #232] ; 0xe8 +1002f95e: f104 0ae8 add.w sl, r4, #232 ; 0xe8 +1002f962: 4650 mov r0, sl +1002f964: 4631 mov r1, r6 +1002f966: f7ed fafb bl 1001cf60 +1002f96a: 2800 cmp r0, #0 +1002f96c: d13a bne.n 1002f9e4 +1002f96e: 4630 mov r0, r6 +1002f970: f7ed fa4c bl 1001ce0c +1002f974: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +1002f978: 4640 mov r0, r8 +1002f97a: 3b01 subs r3, #1 +1002f97c: 2b00 cmp r3, #0 +1002f97e: f8c4 30f4 str.w r3, [r4, #244] ; 0xf4 +1002f982: bf18 it ne +1002f984: 2301 movne r3, #1 +1002f986: f886 3065 strb.w r3, [r6, #101] ; 0x65 +1002f98a: 2301 movs r3, #1 +1002f98c: f886 3067 strb.w r3, [r6, #103] ; 0x67 +1002f990: a901 add r1, sp, #4 +1002f992: f605 09c8 addw r9, r5, #2248 ; 0x8c8 +1002f996: f7ed fab7 bl 1001cf08 +1002f99a: 4648 mov r0, r9 +1002f99c: a901 add r1, sp, #4 +1002f99e: f7ed faab bl 1001cef8 +1002f9a2: 4628 mov r0, r5 +1002f9a4: 4631 mov r1, r6 +1002f9a6: f7ff fc10 bl 1002f1ca +1002f9aa: 2801 cmp r0, #1 +1002f9ac: d003 beq.n 1002f9b6 +1002f9ae: 4648 mov r0, r9 +1002f9b0: 4631 mov r1, r6 +1002f9b2: f7ff fb6f bl 1002f094 +1002f9b6: 4648 mov r0, r9 +1002f9b8: a901 add r1, sp, #4 +1002f9ba: f7ed faa5 bl 1001cf08 +1002f9be: 4640 mov r0, r8 +1002f9c0: a901 add r1, sp, #4 +1002f9c2: f7ed fa99 bl 1001cef8 +1002f9c6: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +1002f9ca: f8d4 60e8 ldr.w r6, [r4, #232] ; 0xe8 +1002f9ce: 2b00 cmp r3, #0 +1002f9d0: d1c7 bne.n 1002f962 +1002f9d2: f8b5 3c6e ldrh.w r3, [r5, #3182] ; 0xc6e +1002f9d6: f047 0702 orr.w r7, r7, #2 +1002f9da: f023 0301 bic.w r3, r3, #1 +1002f9de: f8a5 3c6e strh.w r3, [r5, #3182] ; 0xc6e +1002f9e2: e7be b.n 1002f962 +1002f9e4: f8b5 3c6c ldrh.w r3, [r5, #3180] ; 0xc6c +1002f9e8: 4640 mov r0, r8 +1002f9ea: f023 0301 bic.w r3, r3, #1 +1002f9ee: f8a5 3c6c strh.w r3, [r5, #3180] ; 0xc6c +1002f9f2: a901 add r1, sp, #4 +1002f9f4: f7ed fa88 bl 1001cf08 +1002f9f8: b12f cbz r7, 1002fa06 +1002f9fa: 2200 movs r2, #0 +1002f9fc: 4628 mov r0, r5 +1002f9fe: 2105 movs r1, #5 +1002fa00: 4613 mov r3, r2 +1002fa02: f7f1 fd85 bl 10021510 +1002fa06: b002 add sp, #8 +1002fa08: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +1002fa0c : +1002fa0c: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1002fa10: f101 07f0 add.w r7, r1, #240 ; 0xf0 +1002fa14: 460c mov r4, r1 +1002fa16: 4606 mov r6, r0 +1002fa18: a901 add r1, sp, #4 +1002fa1a: 4638 mov r0, r7 +1002fa1c: f7ed fa6c bl 1001cef8 +1002fa20: f104 09e8 add.w r9, r4, #232 ; 0xe8 +1002fa24: f8d4 50e8 ldr.w r5, [r4, #232] ; 0xe8 +1002fa28: 4648 mov r0, r9 +1002fa2a: 4629 mov r1, r5 +1002fa2c: f7ed fa98 bl 1001cf60 +1002fa30: 2800 cmp r0, #0 +1002fa32: d171 bne.n 1002fb18 +1002fa34: f895 3041 ldrb.w r3, [r5, #65] ; 0x41 +1002fa38: 3b01 subs r3, #1 +1002fa3a: b2db uxtb r3, r3 +1002fa3c: 2b06 cmp r3, #6 +1002fa3e: d813 bhi.n 1002fa68 +1002fa40: 2201 movs r2, #1 +1002fa42: fa02 f303 lsl.w r3, r2, r3 +1002fa46: f013 0f60 tst.w r3, #96 ; 0x60 +1002fa4a: d10a bne.n 1002fa62 +1002fa4c: f013 0f18 tst.w r3, #24 +1002fa50: d104 bne.n 1002fa5c +1002fa52: 079b lsls r3, r3, #30 +1002fa54: d008 beq.n 1002fa68 +1002fa56: f894 3306 ldrb.w r3, [r4, #774] ; 0x306 +1002fa5a: e007 b.n 1002fa6c +1002fa5c: f894 3308 ldrb.w r3, [r4, #776] ; 0x308 +1002fa60: e004 b.n 1002fa6c +1002fa62: f894 3309 ldrb.w r3, [r4, #777] ; 0x309 +1002fa66: e001 b.n 1002fa6c +1002fa68: f894 3307 ldrb.w r3, [r4, #775] ; 0x307 +1002fa6c: f003 0302 and.w r3, r3, #2 +1002fa70: b2db uxtb r3, r3 +1002fa72: 2b00 cmp r3, #0 +1002fa74: d0d8 beq.n 1002fa28 +1002fa76: 4628 mov r0, r5 +1002fa78: f7ed f9c8 bl 1001ce0c +1002fa7c: f8d4 30f4 ldr.w r3, [r4, #244] ; 0xf4 +1002fa80: 2201 movs r2, #1 +1002fa82: 3b01 subs r3, #1 +1002fa84: f8c4 30f4 str.w r3, [r4, #244] ; 0xf4 +1002fa88: f8d4 330c ldr.w r3, [r4, #780] ; 0x30c +1002fa8c: 3b01 subs r3, #1 +1002fa8e: f8c4 330c str.w r3, [r4, #780] ; 0x30c +1002fa92: b12b cbz r3, 1002faa0 +1002fa94: 2300 movs r3, #0 +1002fa96: f885 2065 strb.w r2, [r5, #101] ; 0x65 +1002fa9a: f885 3069 strb.w r3, [r5, #105] ; 0x69 +1002fa9e: e003 b.n 1002faa8 +1002faa0: f885 3065 strb.w r3, [r5, #101] ; 0x65 +1002faa4: f885 2069 strb.w r2, [r5, #105] ; 0x69 +1002faa8: 2301 movs r3, #1 +1002faaa: f885 3067 strb.w r3, [r5, #103] ; 0x67 +1002faae: 4638 mov r0, r7 +1002fab0: a901 add r1, sp, #4 +1002fab2: f606 08c8 addw r8, r6, #2248 ; 0x8c8 +1002fab6: f7ed fa27 bl 1001cf08 +1002faba: 4640 mov r0, r8 +1002fabc: a901 add r1, sp, #4 +1002fabe: f7ed fa1b bl 1001cef8 +1002fac2: 4630 mov r0, r6 +1002fac4: 4629 mov r1, r5 +1002fac6: f7ff fb80 bl 1002f1ca +1002faca: 2801 cmp r0, #1 +1002facc: d003 beq.n 1002fad6 +1002face: 4640 mov r0, r8 +1002fad0: 4629 mov r1, r5 +1002fad2: f7ff fadf bl 1002f094 +1002fad6: 4640 mov r0, r8 +1002fad8: a901 add r1, sp, #4 +1002fada: f7ed fa15 bl 1001cf08 +1002fade: 4638 mov r0, r7 +1002fae0: a901 add r1, sp, #4 +1002fae2: f7ed fa09 bl 1001cef8 +1002fae6: f8d4 330c ldr.w r3, [r4, #780] ; 0x30c +1002faea: 2b00 cmp r3, #0 +1002faec: d19a bne.n 1002fa24 +1002faee: f894 230a ldrb.w r2, [r4, #778] ; 0x30a +1002faf2: 2a00 cmp r2, #0 +1002faf4: d196 bne.n 1002fa24 +1002faf6: f8d4 30fc ldr.w r3, [r4, #252] ; 0xfc +1002fafa: 2101 movs r1, #1 +1002fafc: fa01 f303 lsl.w r3, r1, r3 +1002fb00: f8b6 1c6e ldrh.w r1, [r6, #3182] ; 0xc6e +1002fb04: 4630 mov r0, r6 +1002fb06: ea21 0303 bic.w r3, r1, r3 +1002fb0a: f8a6 3c6e strh.w r3, [r6, #3182] ; 0xc6e +1002fb0e: 2105 movs r1, #5 +1002fb10: 4613 mov r3, r2 +1002fb12: f7f1 fcfd bl 10021510 +1002fb16: e785 b.n 1002fa24 +1002fb18: 4638 mov r0, r7 +1002fb1a: a901 add r1, sp, #4 +1002fb1c: f7ed f9f4 bl 1001cf08 +1002fb20: b003 add sp, #12 +1002fb22: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + ... + +1002fb28 : +1002fb28: b510 push {r4, lr} +1002fb2a: 4604 mov r4, r0 +1002fb2c: 4813 ldr r0, [pc, #76] ; (1002fb7c ) +1002fb2e: f7ed fb8b bl 1001d248 +1002fb32: f504 50bb add.w r0, r4, #5984 ; 0x1760 +1002fb36: 3008 adds r0, #8 +1002fb38: f7ed f99a bl 1001ce70 +1002fb3c: b1a0 cbz r0, 1002fb68 +1002fb3e: f504 53bb add.w r3, r4, #5984 ; 0x1760 +1002fb42: 3310 adds r3, #16 +1002fb44: 681b ldr r3, [r3, #0] +1002fb46: b97b cbnz r3, 1002fb68 +1002fb48: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +1002fb4c: 3318 adds r3, #24 +1002fb4e: 681b ldr r3, [r3, #0] +1002fb50: 2b01 cmp r3, #1 +1002fb52: d009 beq.n 1002fb68 +1002fb54: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +1002fb58: 331c adds r3, #28 +1002fb5a: 681b ldr r3, [r3, #0] +1002fb5c: 2b01 cmp r3, #1 +1002fb5e: d003 beq.n 1002fb68 +1002fb60: 4620 mov r0, r4 +1002fb62: f001 f9ed bl 10030f40 +1002fb66: e7e4 b.n 1002fb32 +1002fb68: f504 50bb add.w r0, r4, #5984 ; 0x1760 +1002fb6c: 300c adds r0, #12 +1002fb6e: f7ed f965 bl 1001ce3c +1002fb72: e8bd 4010 ldmia.w sp!, {r4, lr} +1002fb76: f7ed bb71 b.w 1001d25c +1002fb7a: bf00 nop +1002fb7c: 1004a8fe .word 0x1004a8fe + +1002fb80 : +1002fb80: f007 bf45 b.w 10037a0e + +1002fb84 : +1002fb84: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1002fb88: f600 09c8 addw r9, r0, #2248 ; 0x8c8 +1002fb8c: b093 sub sp, #76 ; 0x4c +1002fb8e: 4605 mov r5, r0 +1002fb90: 4648 mov r0, r9 +1002fb92: 468a mov sl, r1 +1002fb94: f7ff fa52 bl 1002f03c +1002fb98: 4604 mov r4, r0 +1002fb9a: 2800 cmp r0, #0 +1002fb9c: f000 80ac beq.w 1002fcf8 +1002fba0: f8da b000 ldr.w fp, [sl] +1002fba4: a906 add r1, sp, #24 +1002fba6: f100 0808 add.w r8, r0, #8 +1002fbaa: 4658 mov r0, fp +1002fbac: f00b fc3d bl 1003b42a <_rtw_open_pktfile> +1002fbb0: a902 add r1, sp, #8 +1002fbb2: 220e movs r2, #14 +1002fbb4: a806 add r0, sp, #24 +1002fbb6: f00b fc41 bl 1003b43c <_rtw_pktfile_read> +1002fbba: f8bd 0014 ldrh.w r0, [sp, #20] +1002fbbe: f7ed f851 bl 1001cc64 <_htons> +1002fbc2: f104 0745 add.w r7, r4, #69 ; 0x45 +1002fbc6: 81a0 strh r0, [r4, #12] +1002fbc8: a902 add r1, sp, #8 +1002fbca: 4638 mov r0, r7 +1002fbcc: 2206 movs r2, #6 +1002fbce: f104 064b add.w r6, r4, #75 ; 0x4b +1002fbd2: f7ed f8eb bl 1001cdac +1002fbd6: 4630 mov r0, r6 +1002fbd8: f10d 010e add.w r1, sp, #14 +1002fbdc: 2206 movs r2, #6 +1002fbde: f7ed f8e5 bl 1001cdac +1002fbe2: 2300 movs r3, #0 +1002fbe4: f884 3066 strb.w r3, [r4, #102] ; 0x66 +1002fbe8: 692b ldr r3, [r5, #16] +1002fbea: f013 0f60 tst.w r3, #96 ; 0x60 +1002fbee: f000 8086 beq.w 1002fcfe +1002fbf2: f104 0057 add.w r0, r4, #87 ; 0x57 +1002fbf6: 4639 mov r1, r7 +1002fbf8: 2206 movs r2, #6 +1002fbfa: f7ed f8d7 bl 1001cdac +1002fbfe: f104 0051 add.w r0, r4, #81 ; 0x51 +1002fc02: 4631 mov r1, r6 +1002fc04: 2206 movs r2, #6 +1002fc06: f7ed f8d1 bl 1001cdac +1002fc0a: 9b07 ldr r3, [sp, #28] +1002fc0c: 6163 str r3, [r4, #20] +1002fc0e: 89a3 ldrh r3, [r4, #12] +1002fc10: f5b3 6f00 cmp.w r3, #2048 ; 0x800 +1002fc14: d11e bne.n 1002fc54 +1002fc16: a806 add r0, sp, #24 +1002fc18: a90c add r1, sp, #48 ; 0x30 +1002fc1a: 2218 movs r2, #24 +1002fc1c: f00b fc0e bl 1003b43c <_rtw_pktfile_read> +1002fc20: 2300 movs r3, #0 +1002fc22: 72e3 strb r3, [r4, #11] +1002fc24: 9b07 ldr r3, [sp, #28] +1002fc26: f5b3 7f8d cmp.w r3, #282 ; 0x11a +1002fc2a: d913 bls.n 1002fc54 +1002fc2c: 89a3 ldrh r3, [r4, #12] +1002fc2e: f5b3 6f00 cmp.w r3, #2048 ; 0x800 +1002fc32: d10f bne.n 1002fc54 +1002fc34: f89d 3045 ldrb.w r3, [sp, #69] ; 0x45 +1002fc38: 2b44 cmp r3, #68 ; 0x44 +1002fc3a: d103 bne.n 1002fc44 +1002fc3c: f89d 3047 ldrb.w r3, [sp, #71] ; 0x47 +1002fc40: 2b43 cmp r3, #67 ; 0x43 +1002fc42: e004 b.n 1002fc4e +1002fc44: 2b43 cmp r3, #67 ; 0x43 +1002fc46: d105 bne.n 1002fc54 +1002fc48: f89d 3047 ldrb.w r3, [sp, #71] ; 0x47 +1002fc4c: 2b44 cmp r3, #68 ; 0x44 +1002fc4e: bf04 itt eq +1002fc50: 2301 moveq r3, #1 +1002fc52: 72e3 strbeq r3, [r4, #11] +1002fc54: 89a3 ldrh r3, [r4, #12] +1002fc56: f640 0206 movw r2, #2054 ; 0x806 +1002fc5a: 4293 cmp r3, r2 +1002fc5c: d006 beq.n 1002fc6c +1002fc5e: f648 028e movw r2, #34958 ; 0x888e +1002fc62: 4293 cmp r3, r2 +1002fc64: d002 beq.n 1002fc6c +1002fc66: 7ae3 ldrb r3, [r4, #11] +1002fc68: 2b01 cmp r3, #1 +1002fc6a: d104 bne.n 1002fc76 +1002fc6c: 4628 mov r0, r5 +1002fc6e: 2104 movs r1, #4 +1002fc70: 2201 movs r2, #1 +1002fc72: f7f3 fb0c bl 1002328e +1002fc76: f894 3057 ldrb.w r3, [r4, #87] ; 0x57 +1002fc7a: f013 0301 ands.w r3, r3, #1 +1002fc7e: d152 bne.n 1002fd26 +1002fc80: f505 603d add.w r0, r5, #3024 ; 0xbd0 +1002fc84: f104 0157 add.w r1, r4, #87 ; 0x57 +1002fc88: 9301 str r3, [sp, #4] +1002fc8a: f7fd fe93 bl 1002d9b4 +1002fc8e: 9b01 ldr r3, [sp, #4] +1002fc90: 4606 mov r6, r0 +1002fc92: b368 cbz r0, 1002fcf0 +1002fc94: 692f ldr r7, [r5, #16] +1002fc96: f017 0710 ands.w r7, r7, #16 +1002fc9a: d14c bne.n 1002fd36 +1002fc9c: f8d6 3100 ldr.w r3, [r6, #256] ; 0x100 +1002fca0: 220e movs r2, #14 +1002fca2: 8222 strh r2, [r4, #16] +1002fca4: 2218 movs r2, #24 +1002fca6: f884 3043 strb.w r3, [r4, #67] ; 0x43 +1002fcaa: 8262 strh r2, [r4, #18] +1002fcac: 2300 movs r3, #0 +1002fcae: 2208 movs r2, #8 +1002fcb0: 6726 str r6, [r4, #112] ; 0x70 +1002fcb2: f884 3042 strb.w r3, [r4, #66] ; 0x42 +1002fcb6: 7262 strb r2, [r4, #9] +1002fcb8: f884 3041 strb.w r3, [r4, #65] ; 0x41 +1002fcbc: 692b ldr r3, [r5, #16] +1002fcbe: f013 0f70 tst.w r3, #112 ; 0x70 +1002fcc2: f000 80da beq.w 1002fe7a +1002fcc6: f8d6 3104 ldr.w r3, [r6, #260] ; 0x104 +1002fcca: b11b cbz r3, 1002fcd4 +1002fccc: a806 add r0, sp, #24 +1002fcce: 4641 mov r1, r8 +1002fcd0: f7fe fe5a bl 1002e988 +1002fcd4: f8d6 3110 ldr.w r3, [r6, #272] ; 0x110 +1002fcd8: 2b01 cmp r3, #1 +1002fcda: d132 bne.n 1002fd42 +1002fcdc: 2300 movs r3, #0 +1002fcde: 89a2 ldrh r2, [r4, #12] +1002fce0: 7723 strb r3, [r4, #28] +1002fce2: f648 038e movw r3, #34958 ; 0x888e +1002fce6: 429a cmp r2, r3 +1002fce8: d053 beq.n 1002fd92 +1002fcea: 692b ldr r3, [r5, #16] +1002fcec: 03db lsls r3, r3, #15 +1002fcee: d450 bmi.n 1002fd92 +1002fcf0: 4648 mov r0, r9 +1002fcf2: 4621 mov r1, r4 +1002fcf4: f7ff f9ce bl 1002f094 +1002fcf8: f04f 30ff mov.w r0, #4294967295 +1002fcfc: e0d4 b.n 1002fea8 +1002fcfe: 0718 lsls r0, r3, #28 +1002fd00: d40c bmi.n 1002fd1c +1002fd02: 06d9 lsls r1, r3, #27 +1002fd04: d581 bpl.n 1002fc0a +1002fd06: f104 0057 add.w r0, r4, #87 ; 0x57 +1002fd0a: 4639 mov r1, r7 +1002fd0c: 2206 movs r2, #6 +1002fd0e: f7ed f84d bl 1001cdac +1002fd12: f104 0051 add.w r0, r4, #81 ; 0x51 +1002fd16: f105 019c add.w r1, r5, #156 ; 0x9c +1002fd1a: e773 b.n 1002fc04 +1002fd1c: f104 0057 add.w r0, r4, #87 ; 0x57 +1002fd20: f105 019c add.w r1, r5, #156 ; 0x9c +1002fd24: e768 b.n 1002fbf8 +1002fd26: 4628 mov r0, r5 +1002fd28: f7fd fe9a bl 1002da60 +1002fd2c: 4606 mov r6, r0 +1002fd2e: 2800 cmp r0, #0 +1002fd30: d0de beq.n 1002fcf0 +1002fd32: 2701 movs r7, #1 +1002fd34: e7b2 b.n 1002fc9c +1002fd36: f8d6 20f8 ldr.w r2, [r6, #248] ; 0xf8 +1002fd3a: 07d2 lsls r2, r2, #31 +1002fd3c: d5d8 bpl.n 1002fcf0 +1002fd3e: 461f mov r7, r3 +1002fd40: e7ac b.n 1002fc9c +1002fd42: f8d5 3c78 ldr.w r3, [r5, #3192] ; 0xc78 +1002fd46: 2b04 cmp r3, #4 +1002fd48: d80e bhi.n 1002fd68 +1002fd4a: e8df f003 tbb [pc, r3] +1002fd4e: 0a0a .short 0x0a0a +1002fd50: 0a03 .short 0x0a03 +1002fd52: 0a .byte 0x0a +1002fd53: 00 .byte 0x00 +1002fd54: b117 cbz r7, 1002fd5c +1002fd56: f8d5 3cd4 ldr.w r3, [r5, #3284] ; 0xcd4 +1002fd5a: e004 b.n 1002fd66 +1002fd5c: f8d6 3114 ldr.w r3, [r6, #276] ; 0x114 +1002fd60: e001 b.n 1002fd66 +1002fd62: f8d5 3c7c ldr.w r3, [r5, #3196] ; 0xc7c +1002fd66: 7723 strb r3, [r4, #28] +1002fd68: f8d5 3c78 ldr.w r3, [r5, #3192] ; 0xc78 +1002fd6c: 2b03 cmp r3, #3 +1002fd6e: d80d bhi.n 1002fd8c +1002fd70: e8df f003 tbb [pc, r3] +1002fd74: 02050202 .word 0x02050202 +1002fd78: f8d5 3c80 ldr.w r3, [r5, #3200] ; 0xc80 +1002fd7c: e007 b.n 1002fd8e +1002fd7e: b117 cbz r7, 1002fd86 +1002fd80: f8d5 3cd8 ldr.w r3, [r5, #3288] ; 0xcd8 +1002fd84: e003 b.n 1002fd8e +1002fd86: f884 705d strb.w r7, [r4, #93] ; 0x5d +1002fd8a: e002 b.n 1002fd92 +1002fd8c: 2300 movs r3, #0 +1002fd8e: f884 305d strb.w r3, [r4, #93] ; 0x5d +1002fd92: 7f23 ldrb r3, [r4, #28] +1002fd94: 1e5a subs r2, r3, #1 +1002fd96: 2a04 cmp r2, #4 +1002fd98: d812 bhi.n 1002fdc0 +1002fd9a: e8df f002 tbb [pc, r2] +1002fd9e: 0503 .short 0x0503 +1002fda0: 0d11 .short 0x0d11 +1002fda2: 03 .byte 0x03 +1002fda3: 00 .byte 0x00 +1002fda4: 2204 movs r2, #4 +1002fda6: e008 b.n 1002fdba +1002fda8: 2208 movs r2, #8 +1002fdaa: 7762 strb r2, [r4, #29] +1002fdac: 2204 movs r2, #4 +1002fdae: 77a2 strb r2, [r4, #30] +1002fdb0: f895 2fcd ldrb.w r2, [r5, #4045] ; 0xfcd +1002fdb4: b942 cbnz r2, 1002fdc8 +1002fdb6: e79b b.n 1002fcf0 +1002fdb8: 2208 movs r2, #8 +1002fdba: 7762 strb r2, [r4, #29] +1002fdbc: 77a2 strb r2, [r4, #30] +1002fdbe: e003 b.n 1002fdc8 +1002fdc0: 2200 movs r2, #0 +1002fdc2: 7762 strb r2, [r4, #29] +1002fdc4: 77a2 strb r2, [r4, #30] +1002fdc6: b143 cbz r3, 1002fdda +1002fdc8: f8d5 2fd0 ldr.w r2, [r5, #4048] ; 0xfd0 +1002fdcc: 2a01 cmp r2, #1 +1002fdce: d002 beq.n 1002fdd6 +1002fdd0: f8d5 2fd8 ldr.w r2, [r5, #4056] ; 0xfd8 +1002fdd4: b90a cbnz r2, 1002fdda +1002fdd6: 2201 movs r2, #1 +1002fdd8: e000 b.n 1002fddc +1002fdda: 2200 movs r2, #0 +1002fddc: 72a2 strb r2, [r4, #10] +1002fdde: 686a ldr r2, [r5, #4] +1002fde0: 2a03 cmp r2, #3 +1002fde2: d107 bne.n 1002fdf4 +1002fde4: b133 cbz r3, 1002fdf4 +1002fde6: b91f cbnz r7, 1002fdf0 +1002fde8: f003 03fb and.w r3, r3, #251 ; 0xfb +1002fdec: 2b01 cmp r3, #1 +1002fdee: d101 bne.n 1002fdf4 +1002fdf0: 2301 movs r3, #1 +1002fdf2: 72a3 strb r3, [r4, #10] +1002fdf4: 4658 mov r0, fp +1002fdf6: 4641 mov r1, r8 +1002fdf8: f00b fb37 bl 1003b46a +1002fdfc: 2300 movs r3, #0 +1002fdfe: f884 3065 strb.w r3, [r4, #101] ; 0x65 +1002fe02: f884 3069 strb.w r3, [r4, #105] ; 0x69 +1002fe06: f884 3067 strb.w r3, [r4, #103] ; 0x67 +1002fe0a: f8d6 2104 ldr.w r2, [r6, #260] ; 0x104 +1002fe0e: f884 205e strb.w r2, [r4, #94] ; 0x5e +1002fe12: f896 2176 ldrb.w r2, [r6, #374] ; 0x176 +1002fe16: f884 2060 strb.w r2, [r4, #96] ; 0x60 +1002fe1a: f8d6 21f4 ldr.w r2, [r6, #500] ; 0x1f4 +1002fe1e: f884 205f strb.w r2, [r4, #95] ; 0x5f +1002fe22: f896 21fc ldrb.w r2, [r6, #508] ; 0x1fc +1002fe26: f884 2061 strb.w r2, [r4, #97] ; 0x61 +1002fe2a: f896 21fd ldrb.w r2, [r6, #509] ; 0x1fd +1002fe2e: f884 2062 strb.w r2, [r4, #98] ; 0x62 +1002fe32: f896 21fe ldrb.w r2, [r6, #510] ; 0x1fe +1002fe36: f884 3064 strb.w r3, [r4, #100] ; 0x64 +1002fe3a: f884 2063 strb.w r2, [r4, #99] ; 0x63 +1002fe3e: f884 306c strb.w r3, [r4, #108] ; 0x6c +1002fe42: f8da 3000 ldr.w r3, [sl] +1002fe46: 6763 str r3, [r4, #116] ; 0x74 +1002fe48: 692a ldr r2, [r5, #16] +1002fe4a: f894 3041 ldrb.w r3, [r4, #65] ; 0x41 +1002fe4e: 06d6 lsls r6, r2, #27 +1002fe50: d508 bpl.n 1002fe64 +1002fe52: 89a1 ldrh r1, [r4, #12] +1002fe54: f648 028e movw r2, #34958 ; 0x888e +1002fe58: 4291 cmp r1, r2 +1002fe5a: d023 beq.n 1002fea4 +1002fe5c: 7ae2 ldrb r2, [r4, #11] +1002fe5e: 2a01 cmp r2, #1 +1002fe60: bf08 it eq +1002fe62: 2307 moveq r3, #7 +1002fe64: f884 3068 strb.w r3, [r4, #104] ; 0x68 +1002fe68: 4628 mov r0, r5 +1002fe6a: 4621 mov r1, r4 +1002fe6c: f007 fdc6 bl 100379fc +1002fe70: f1d0 0001 rsbs r0, r0, #1 +1002fe74: bf38 it cc +1002fe76: 2000 movcc r0, #0 +1002fe78: e016 b.n 1002fea8 +1002fe7a: f8d5 344c ldr.w r3, [r5, #1100] ; 0x44c +1002fe7e: 2b00 cmp r3, #0 +1002fe80: f43f af28 beq.w 1002fcd4 +1002fe84: a806 add r0, sp, #24 +1002fe86: 4641 mov r1, r8 +1002fe88: f7fe fd7e bl 1002e988 +1002fe8c: f895 049d ldrb.w r0, [r5, #1181] ; 0x49d +1002fe90: 2800 cmp r0, #0 +1002fe92: f43f af1f beq.w 1002fcd4 +1002fe96: f894 1041 ldrb.w r1, [r4, #65] ; 0x41 +1002fe9a: f7fe fde6 bl 1002ea6a +1002fe9e: f884 0041 strb.w r0, [r4, #65] ; 0x41 +1002fea2: e717 b.n 1002fcd4 +1002fea4: 2307 movs r3, #7 +1002fea6: e7dd b.n 1002fe64 +1002fea8: b013 add sp, #76 ; 0x4c +1002feaa: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1002feae : +1002feae: 6803 ldr r3, [r0, #0] +1002feb0: b113 cbz r3, 1002feb8 +1002feb2: 6099 str r1, [r3, #8] +1002feb4: 2300 movs r3, #0 +1002feb6: 6003 str r3, [r0, #0] +1002feb8: 4770 bx lr + +1002feba : +1002feba: b573 push {r0, r1, r4, r5, r6, lr} +1002febc: f500 76de add.w r6, r0, #444 ; 0x1bc +1002fec0: f500 74da add.w r4, r0, #436 ; 0x1b4 +1002fec4: a901 add r1, sp, #4 +1002fec6: 4605 mov r5, r0 +1002fec8: 4630 mov r0, r6 +1002feca: f7ed f805 bl 1001ced8 +1002fece: 4620 mov r0, r4 +1002fed0: f7ed f840 bl 1001cf54 +1002fed4: 2801 cmp r0, #1 +1002fed6: d015 beq.n 1002ff04 +1002fed8: f8d5 41b4 ldr.w r4, [r5, #436] ; 0x1b4 +1002fedc: 4620 mov r0, r4 +1002fede: f7ec ff95 bl 1001ce0c +1002fee2: b184 cbz r4, 1002ff06 +1002fee4: f8d5 31d4 ldr.w r3, [r5, #468] ; 0x1d4 +1002fee8: 3b01 subs r3, #1 +1002feea: f8c5 31d4 str.w r3, [r5, #468] ; 0x1d4 +1002feee: 2300 movs r3, #0 +1002fef0: 6163 str r3, [r4, #20] +1002fef2: 6223 str r3, [r4, #32] +1002fef4: 6a63 ldr r3, [r4, #36] ; 0x24 +1002fef6: b133 cbz r3, 1002ff06 +1002fef8: f104 0024 add.w r0, r4, #36 ; 0x24 +1002fefc: 2102 movs r1, #2 +1002fefe: f7ff ffd6 bl 1002feae +1002ff02: e000 b.n 1002ff06 +1002ff04: 2400 movs r4, #0 +1002ff06: 4630 mov r0, r6 +1002ff08: a901 add r1, sp, #4 +1002ff0a: f7ec ffed bl 1001cee8 +1002ff0e: 4620 mov r0, r4 +1002ff10: b002 add sp, #8 +1002ff12: bd70 pop {r4, r5, r6, pc} + +1002ff14 : +1002ff14: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1002ff16: 4605 mov r5, r0 +1002ff18: 460c mov r4, r1 +1002ff1a: b379 cbz r1, 1002ff7c +1002ff1c: 68c8 ldr r0, [r1, #12] +1002ff1e: b120 cbz r0, 1002ff2a +1002ff20: 69c1 ldr r1, [r0, #28] +1002ff22: f00b fa25 bl 1003b370 +1002ff26: 2300 movs r3, #0 +1002ff28: 60e3 str r3, [r4, #12] +1002ff2a: 6a63 ldr r3, [r4, #36] ; 0x24 +1002ff2c: b123 cbz r3, 1002ff38 +1002ff2e: f104 0024 add.w r0, r4, #36 ; 0x24 +1002ff32: 2103 movs r1, #3 +1002ff34: f7ff ffbb bl 1002feae +1002ff38: 8b26 ldrh r6, [r4, #24] +1002ff3a: 2e01 cmp r6, #1 +1002ff3c: d104 bne.n 1002ff48 +1002ff3e: 4628 mov r0, r5 +1002ff40: 4621 mov r1, r4 +1002ff42: f7ff f85a bl 1002effa +1002ff46: e01b b.n 1002ff80 +1002ff48: b9d6 cbnz r6, 1002ff80 +1002ff4a: f505 76de add.w r6, r5, #444 ; 0x1bc +1002ff4e: a901 add r1, sp, #4 +1002ff50: 4630 mov r0, r6 +1002ff52: f7ec ffc1 bl 1001ced8 +1002ff56: f505 77da add.w r7, r5, #436 ; 0x1b4 +1002ff5a: 4620 mov r0, r4 +1002ff5c: f7ec ff56 bl 1001ce0c +1002ff60: 4620 mov r0, r4 +1002ff62: 4639 mov r1, r7 +1002ff64: f7ec ff4c bl 1001ce00 +1002ff68: f8d5 31d4 ldr.w r3, [r5, #468] ; 0x1d4 +1002ff6c: 4630 mov r0, r6 +1002ff6e: 3301 adds r3, #1 +1002ff70: f8c5 31d4 str.w r3, [r5, #468] ; 0x1d4 +1002ff74: a901 add r1, sp, #4 +1002ff76: f7ec ffb7 bl 1001cee8 +1002ff7a: e001 b.n 1002ff80 +1002ff7c: 4608 mov r0, r1 +1002ff7e: e000 b.n 1002ff82 +1002ff80: 2001 movs r0, #1 +1002ff82: b003 add sp, #12 +1002ff84: bdf0 pop {r4, r5, r6, r7, pc} + +1002ff86 : +1002ff86: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1002ff88: f500 76f0 add.w r6, r0, #480 ; 0x1e0 +1002ff8c: f500 74ec add.w r4, r0, #472 ; 0x1d8 +1002ff90: 4605 mov r5, r0 +1002ff92: 460f mov r7, r1 +1002ff94: 4630 mov r0, r6 +1002ff96: a901 add r1, sp, #4 +1002ff98: f7ec ff9e bl 1001ced8 +1002ff9c: 4620 mov r0, r4 +1002ff9e: f7ec ffd9 bl 1001cf54 +1002ffa2: 2801 cmp r0, #1 +1002ffa4: d022 beq.n 1002ffec +1002ffa6: f8d5 41d8 ldr.w r4, [r5, #472] ; 0x1d8 +1002ffaa: 4620 mov r0, r4 +1002ffac: f7ec ff2e bl 1001ce0c +1002ffb0: b1ec cbz r4, 1002ffee +1002ffb2: f8d5 31ec ldr.w r3, [r5, #492] ; 0x1ec +1002ffb6: 3b01 subs r3, #1 +1002ffb8: f8c5 31ec str.w r3, [r5, #492] ; 0x1ec +1002ffbc: 2300 movs r3, #0 +1002ffbe: 6163 str r3, [r4, #20] +1002ffc0: 6a63 ldr r3, [r4, #36] ; 0x24 +1002ffc2: b123 cbz r3, 1002ffce +1002ffc4: f104 0024 add.w r0, r4, #36 ; 0x24 +1002ffc8: 2102 movs r1, #2 +1002ffca: f7ff ff70 bl 1002feae +1002ffce: f240 6052 movw r0, #1618 ; 0x652 +1002ffd2: 2f00 cmp r7, #0 +1002ffd4: bf18 it ne +1002ffd6: 4638 movne r0, r7 +1002ffd8: 2100 movs r1, #0 +1002ffda: f00b f9ec bl 1003b3b6 +1002ffde: 60e0 str r0, [r4, #12] +1002ffe0: b128 cbz r0, 1002ffee +1002ffe2: 6903 ldr r3, [r0, #16] +1002ffe4: 2200 movs r2, #0 +1002ffe6: 6222 str r2, [r4, #32] +1002ffe8: 6123 str r3, [r4, #16] +1002ffea: e000 b.n 1002ffee +1002ffec: 2400 movs r4, #0 +1002ffee: 4630 mov r0, r6 +1002fff0: a901 add r1, sp, #4 +1002fff2: f7ec ff79 bl 1001cee8 +1002fff6: b134 cbz r4, 10030006 +1002fff8: 68e6 ldr r6, [r4, #12] +1002fffa: b926 cbnz r6, 10030006 +1002fffc: 4621 mov r1, r4 +1002fffe: 4628 mov r0, r5 +10030000: f7ff ff88 bl 1002ff14 +10030004: 4634 mov r4, r6 +10030006: 4620 mov r0, r4 +10030008: b003 add sp, #12 +1003000a: bdf0 pop {r4, r5, r6, r7, pc} + +1003000c : +1003000c: 2100 movs r1, #0 +1003000e: f7ff bf4e b.w 1002feae + +10030012 : +10030012: f8d0 1b6c ldr.w r1, [r0, #2924] ; 0xb6c +10030016: f8d0 0b50 ldr.w r0, [r0, #2896] ; 0xb50 +1003001a: 00c9 lsls r1, r1, #3 +1003001c: f7ec bebe b.w 1001cd9c + +10030020 : +10030020: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10030022: 6805 ldr r5, [r0, #0] +10030024: f241 73a8 movw r3, #6056 ; 0x17a8 +10030028: 58eb ldr r3, [r5, r3] +1003002a: 460f mov r7, r1 +1003002c: 689c ldr r4, [r3, #8] +1003002e: a901 add r1, sp, #4 +10030030: 3420 adds r4, #32 +10030032: 4620 mov r0, r4 +10030034: 4616 mov r6, r2 +10030036: f7ec ff4f bl 1001ced8 +1003003a: f505 539b add.w r3, r5, #4960 ; 0x1360 +1003003e: f893 2045 ldrb.w r2, [r3, #69] ; 0x45 +10030042: 3310 adds r3, #16 +10030044: b112 cbz r2, 1003004c +10030046: 6f1b ldr r3, [r3, #112] ; 0x70 +10030048: 2b02 cmp r3, #2 +1003004a: d005 beq.n 10030058 +1003004c: f241 6318 movw r3, #5656 ; 0x1618 +10030050: 58eb ldr r3, [r5, r3] +10030052: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +10030056: b12b cbz r3, 10030064 +10030058: 4620 mov r0, r4 +1003005a: a901 add r1, sp, #4 +1003005c: f7ec ff44 bl 1001cee8 +10030060: 2000 movs r0, #0 +10030062: e009 b.n 10030078 +10030064: f107 4180 add.w r1, r7, #1073741824 ; 0x40000000 +10030068: f501 2100 add.w r1, r1, #524288 ; 0x80000 +1003006c: 600e str r6, [r1, #0] +1003006e: 4620 mov r0, r4 +10030070: a901 add r1, sp, #4 +10030072: f7ec ff39 bl 1001cee8 +10030076: 2004 movs r0, #4 +10030078: b003 add sp, #12 +1003007a: bdf0 pop {r4, r5, r6, r7, pc} + +1003007c : +1003007c: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1003007e: 6805 ldr r5, [r0, #0] +10030080: f241 73a8 movw r3, #6056 ; 0x17a8 +10030084: 58eb ldr r3, [r5, r3] +10030086: 460e mov r6, r1 +10030088: 689c ldr r4, [r3, #8] +1003008a: a901 add r1, sp, #4 +1003008c: 3420 adds r4, #32 +1003008e: 4620 mov r0, r4 +10030090: 4617 mov r7, r2 +10030092: f7ec ff21 bl 1001ced8 +10030096: f505 539b add.w r3, r5, #4960 ; 0x1360 +1003009a: f893 2045 ldrb.w r2, [r3, #69] ; 0x45 +1003009e: 3310 adds r3, #16 +100300a0: b112 cbz r2, 100300a8 +100300a2: 6f1b ldr r3, [r3, #112] ; 0x70 +100300a4: 2b02 cmp r3, #2 +100300a6: d005 beq.n 100300b4 +100300a8: f241 6318 movw r3, #5656 ; 0x1618 +100300ac: 58eb ldr r3, [r5, r3] +100300ae: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +100300b2: b12b cbz r3, 100300c0 +100300b4: 4620 mov r0, r4 +100300b6: a901 add r1, sp, #4 +100300b8: f7ec ff16 bl 1001cee8 +100300bc: 2000 movs r0, #0 +100300be: e009 b.n 100300d4 +100300c0: f106 4180 add.w r1, r6, #1073741824 ; 0x40000000 +100300c4: f501 2100 add.w r1, r1, #524288 ; 0x80000 +100300c8: 800f strh r7, [r1, #0] +100300ca: 4620 mov r0, r4 +100300cc: a901 add r1, sp, #4 +100300ce: f7ec ff0b bl 1001cee8 +100300d2: 2002 movs r0, #2 +100300d4: b003 add sp, #12 +100300d6: bdf0 pop {r4, r5, r6, r7, pc} + +100300d8 : +100300d8: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +100300da: 6805 ldr r5, [r0, #0] +100300dc: f241 73a8 movw r3, #6056 ; 0x17a8 +100300e0: 58eb ldr r3, [r5, r3] +100300e2: 460e mov r6, r1 +100300e4: 689c ldr r4, [r3, #8] +100300e6: a901 add r1, sp, #4 +100300e8: 3420 adds r4, #32 +100300ea: 4620 mov r0, r4 +100300ec: 4617 mov r7, r2 +100300ee: f7ec fef3 bl 1001ced8 +100300f2: f505 539b add.w r3, r5, #4960 ; 0x1360 +100300f6: f893 2045 ldrb.w r2, [r3, #69] ; 0x45 +100300fa: 3310 adds r3, #16 +100300fc: b112 cbz r2, 10030104 +100300fe: 6f1b ldr r3, [r3, #112] ; 0x70 +10030100: 2b02 cmp r3, #2 +10030102: d005 beq.n 10030110 +10030104: f241 6318 movw r3, #5656 ; 0x1618 +10030108: 58eb ldr r3, [r5, r3] +1003010a: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +1003010e: b12b cbz r3, 1003011c +10030110: 4620 mov r0, r4 +10030112: a901 add r1, sp, #4 +10030114: f7ec fee8 bl 1001cee8 +10030118: 2000 movs r0, #0 +1003011a: e009 b.n 10030130 +1003011c: f106 4180 add.w r1, r6, #1073741824 ; 0x40000000 +10030120: f501 2100 add.w r1, r1, #524288 ; 0x80000 +10030124: 700f strb r7, [r1, #0] +10030126: 4620 mov r0, r4 +10030128: a901 add r1, sp, #4 +1003012a: f7ec fedd bl 1001cee8 +1003012e: 2001 movs r0, #1 +10030130: b003 add sp, #12 +10030132: bdf0 pop {r4, r5, r6, r7, pc} + +10030134 : +10030134: b573 push {r0, r1, r4, r5, r6, lr} +10030136: 6805 ldr r5, [r0, #0] +10030138: f241 73a8 movw r3, #6056 ; 0x17a8 +1003013c: 58eb ldr r3, [r5, r3] +1003013e: 460e mov r6, r1 +10030140: 689c ldr r4, [r3, #8] +10030142: a901 add r1, sp, #4 +10030144: 3420 adds r4, #32 +10030146: 4620 mov r0, r4 +10030148: f7ec fec6 bl 1001ced8 +1003014c: f505 539b add.w r3, r5, #4960 ; 0x1360 +10030150: f893 2045 ldrb.w r2, [r3, #69] ; 0x45 +10030154: 3310 adds r3, #16 +10030156: b112 cbz r2, 1003015e +10030158: 6f1b ldr r3, [r3, #112] ; 0x70 +1003015a: 2b02 cmp r3, #2 +1003015c: d005 beq.n 1003016a +1003015e: f241 6318 movw r3, #5656 ; 0x1618 +10030162: 58eb ldr r3, [r5, r3] +10030164: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +10030168: b12b cbz r3, 10030176 +1003016a: 4620 mov r0, r4 +1003016c: a901 add r1, sp, #4 +1003016e: f7ec febb bl 1001cee8 +10030172: 2000 movs r0, #0 +10030174: e009 b.n 1003018a +10030176: f106 4180 add.w r1, r6, #1073741824 ; 0x40000000 +1003017a: f501 2100 add.w r1, r1, #524288 ; 0x80000 +1003017e: 680d ldr r5, [r1, #0] +10030180: 4620 mov r0, r4 +10030182: a901 add r1, sp, #4 +10030184: f7ec feb0 bl 1001cee8 +10030188: 4628 mov r0, r5 +1003018a: b002 add sp, #8 +1003018c: bd70 pop {r4, r5, r6, pc} + +1003018e : +1003018e: b573 push {r0, r1, r4, r5, r6, lr} +10030190: 6805 ldr r5, [r0, #0] +10030192: f241 73a8 movw r3, #6056 ; 0x17a8 +10030196: 58eb ldr r3, [r5, r3] +10030198: 460e mov r6, r1 +1003019a: 689c ldr r4, [r3, #8] +1003019c: a901 add r1, sp, #4 +1003019e: 3420 adds r4, #32 +100301a0: 4620 mov r0, r4 +100301a2: f7ec fe99 bl 1001ced8 +100301a6: f505 539b add.w r3, r5, #4960 ; 0x1360 +100301aa: f893 2045 ldrb.w r2, [r3, #69] ; 0x45 +100301ae: 3310 adds r3, #16 +100301b0: b112 cbz r2, 100301b8 +100301b2: 6f1b ldr r3, [r3, #112] ; 0x70 +100301b4: 2b02 cmp r3, #2 +100301b6: d005 beq.n 100301c4 +100301b8: f241 6318 movw r3, #5656 ; 0x1618 +100301bc: 58eb ldr r3, [r5, r3] +100301be: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +100301c2: b12b cbz r3, 100301d0 +100301c4: 4620 mov r0, r4 +100301c6: a901 add r1, sp, #4 +100301c8: f7ec fe8e bl 1001cee8 +100301cc: 2000 movs r0, #0 +100301ce: e00a b.n 100301e6 +100301d0: f106 4180 add.w r1, r6, #1073741824 ; 0x40000000 +100301d4: f501 2100 add.w r1, r1, #524288 ; 0x80000 +100301d8: 880d ldrh r5, [r1, #0] +100301da: 4620 mov r0, r4 +100301dc: b2ad uxth r5, r5 +100301de: a901 add r1, sp, #4 +100301e0: f7ec fe82 bl 1001cee8 +100301e4: 4628 mov r0, r5 +100301e6: b002 add sp, #8 +100301e8: bd70 pop {r4, r5, r6, pc} + +100301ea : +100301ea: b573 push {r0, r1, r4, r5, r6, lr} +100301ec: 6805 ldr r5, [r0, #0] +100301ee: f241 73a8 movw r3, #6056 ; 0x17a8 +100301f2: 58eb ldr r3, [r5, r3] +100301f4: 460e mov r6, r1 +100301f6: 689c ldr r4, [r3, #8] +100301f8: a901 add r1, sp, #4 +100301fa: 3420 adds r4, #32 +100301fc: 4620 mov r0, r4 +100301fe: f7ec fe6b bl 1001ced8 +10030202: f505 539b add.w r3, r5, #4960 ; 0x1360 +10030206: f893 2045 ldrb.w r2, [r3, #69] ; 0x45 +1003020a: 3310 adds r3, #16 +1003020c: b112 cbz r2, 10030214 +1003020e: 6f1b ldr r3, [r3, #112] ; 0x70 +10030210: 2b02 cmp r3, #2 +10030212: d005 beq.n 10030220 +10030214: f241 6318 movw r3, #5656 ; 0x1618 +10030218: 58eb ldr r3, [r5, r3] +1003021a: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +1003021e: b12b cbz r3, 1003022c +10030220: 4620 mov r0, r4 +10030222: a901 add r1, sp, #4 +10030224: f7ec fe60 bl 1001cee8 +10030228: 2000 movs r0, #0 +1003022a: e00a b.n 10030242 +1003022c: f106 4180 add.w r1, r6, #1073741824 ; 0x40000000 +10030230: f501 2100 add.w r1, r1, #524288 ; 0x80000 +10030234: 780d ldrb r5, [r1, #0] +10030236: 4620 mov r0, r4 +10030238: b2ed uxtb r5, r5 +1003023a: a901 add r1, sp, #4 +1003023c: f7ec fe54 bl 1001cee8 +10030240: 4628 mov r0, r5 +10030242: b002 add sp, #8 +10030244: bd70 pop {r4, r5, r6, pc} + +10030246 : +10030246: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1003024a: 014f lsls r7, r1, #5 +1003024c: f600 05c8 addw r5, r0, #2248 ; 0x8c8 +10030250: 4438 add r0, r7 +10030252: f107 0890 add.w r8, r7, #144 ; 0x90 +10030256: f8d0 995c ldr.w r9, [r0, #2396] ; 0x95c +1003025a: 460e mov r6, r1 +1003025c: eb05 0408 add.w r4, r5, r8 +10030260: 69e3 ldr r3, [r4, #28] +10030262: b1a3 cbz r3, 1003028e +10030264: 68a2 ldr r2, [r4, #8] +10030266: 6820 ldr r0, [r4, #0] +10030268: 0153 lsls r3, r2, #5 +1003026a: 58c1 ldr r1, [r0, r3] +1003026c: 2e04 cmp r6, #4 +1003026e: f021 4100 bic.w r1, r1, #2147483648 ; 0x80000000 +10030272: 50c1 str r1, [r0, r3] +10030274: d006 beq.n 10030284 +10030276: 68e3 ldr r3, [r4, #12] +10030278: 3201 adds r2, #1 +1003027a: fbb2 f1f3 udiv r1, r2, r3 +1003027e: fb03 2311 mls r3, r3, r1, r2 +10030282: 60a3 str r3, [r4, #8] +10030284: 4620 mov r0, r4 +10030286: f000 ff20 bl 100310ca +1003028a: 4601 mov r1, r0 +1003028c: b908 cbnz r0, 10030292 +1003028e: 2600 movs r6, #0 +10030290: e00a b.n 100302a8 +10030292: 4628 mov r0, r5 +10030294: f7ff fe3e bl 1002ff14 +10030298: e7e2 b.n 10030260 +1003029a: f859 0026 ldr.w r0, [r9, r6, lsl #2] +1003029e: b1b8 cbz r0, 100302d0 +100302a0: 2168 movs r1, #104 ; 0x68 +100302a2: f7ec fd7b bl 1001cd9c +100302a6: 3601 adds r6, #1 +100302a8: 68e1 ldr r1, [r4, #12] +100302aa: 428e cmp r6, r1 +100302ac: d3f5 bcc.n 1003029a +100302ae: 6860 ldr r0, [r4, #4] +100302b0: 0089 lsls r1, r1, #2 +100302b2: f7ec fd73 bl 1001cd9c +100302b6: 68e1 ldr r1, [r4, #12] +100302b8: f855 0008 ldr.w r0, [r5, r8] +100302bc: 0149 lsls r1, r1, #5 +100302be: f7ec fd6d bl 1001cd9c +100302c2: f107 00a8 add.w r0, r7, #168 ; 0xa8 +100302c6: 4428 add r0, r5 +100302c8: e8bd 43f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +100302cc: f7ec be54 b.w 1001cf78 +100302d0: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +100302d4 : +100302d4: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} +100302d8: 2202 movs r2, #2 +100302da: 2304 movs r3, #4 +100302dc: f8c0 2a68 str.w r2, [r0, #2664] ; 0xa68 +100302e0: f8c0 2a70 str.w r2, [r0, #2672] ; 0xa70 +100302e4: f640 0238 movw r2, #2104 ; 0x838 +100302e8: 4604 mov r4, r0 +100302ea: f8c0 3a58 str.w r3, [r0, #2648] ; 0xa58 +100302ee: f8c0 3a5c str.w r3, [r0, #2652] ; 0xa5c +100302f2: f8c0 3a60 str.w r3, [r0, #2656] ; 0xa60 +100302f6: f8c0 3a64 str.w r3, [r0, #2660] ; 0xa64 +100302fa: f8c0 3a6c str.w r3, [r0, #2668] ; 0xa6c +100302fe: f8a0 2b70 strh.w r2, [r0, #2928] ; 0xb70 +10030302: f8c0 3b6c str.w r3, [r0, #2924] ; 0xb6c +10030306: 2020 movs r0, #32 +10030308: f7ec fd32 bl 1001cd70 +1003030c: f8c4 0b50 str.w r0, [r4, #2896] ; 0xb50 +10030310: b908 cbnz r0, 10030316 +10030312: 2000 movs r0, #0 +10030314: e078 b.n 10030408 +10030316: 2200 movs r2, #0 +10030318: f8d4 6b6c ldr.w r6, [r4, #2924] ; 0xb6c +1003031c: 4b3c ldr r3, [pc, #240] ; (10030410 ) +1003031e: f8c4 2b58 str.w r2, [r4, #2904] ; 0xb58 +10030322: 42b2 cmp r2, r6 +10030324: f100 0008 add.w r0, r0, #8 +10030328: da11 bge.n 1003034e +1003032a: eb04 0182 add.w r1, r4, r2, lsl #2 +1003032e: f8c1 3b5c str.w r3, [r1, #2908] ; 0xb5c +10030332: f8b4 1b70 ldrh.w r1, [r4, #2928] ; 0xb70 +10030336: f830 5c06 ldrh.w r5, [r0, #-6] +1003033a: f3c1 010d ubfx r1, r1, #0, #14 +1003033e: ea41 4105 orr.w r1, r1, r5, lsl #16 +10030342: e900 000a stmdb r0, {r1, r3} +10030346: 3201 adds r2, #1 +10030348: f603 0338 addw r3, r3, #2104 ; 0x838 +1003034c: e7e9 b.n 10030322 +1003034e: f604 1574 addw r5, r4, #2420 ; 0x974 +10030352: f04f 0800 mov.w r8, #0 +10030356: f604 0ac8 addw sl, r4, #2248 ; 0x8c8 +1003035a: eb0a 0308 add.w r3, sl, r8 +1003035e: f8d3 9190 ldr.w r9, [r3, #400] ; 0x190 +10030362: f1b9 0f00 cmp.w r9, #0 +10030366: d035 beq.n 100303d4 +10030368: ea4f 1049 mov.w r0, r9, lsl #5 +1003036c: f7ec fd00 bl 1001cd70 +10030370: 4683 mov fp, r0 +10030372: b3c0 cbz r0, 100303e6 +10030374: ea4f 0089 mov.w r0, r9, lsl #2 +10030378: f7ec fcfa bl 1001cd70 +1003037c: 465f mov r7, fp +1003037e: 4602 mov r2, r0 +10030380: 2600 movs r6, #0 +10030382: 454e cmp r6, r9 +10030384: d013 beq.n 100303ae +10030386: 2068 movs r0, #104 ; 0x68 +10030388: 9201 str r2, [sp, #4] +1003038a: f7ec fcf1 bl 1001cd70 +1003038e: 9a01 ldr r2, [sp, #4] +10030390: 3720 adds r7, #32 +10030392: f842 0026 str.w r0, [r2, r6, lsl #2] +10030396: b330 cbz r0, 100303e6 +10030398: f837 3c1e ldrh.w r3, [r7, #-30] +1003039c: f847 0c1c str.w r0, [r7, #-28] +100303a0: 041b lsls r3, r3, #16 +100303a2: f043 0366 orr.w r3, r3, #102 ; 0x66 +100303a6: f847 3c20 str.w r3, [r7, #-32] +100303aa: 3601 adds r6, #1 +100303ac: e7e9 b.n 10030382 +100303ae: f5ca 6a0b rsb sl, sl, #2224 ; 0x8b0 +100303b2: f10a 0a0c add.w sl, sl, #12 +100303b6: 2700 movs r7, #0 +100303b8: eb04 000a add.w r0, r4, sl +100303bc: f845 bc1c str.w fp, [r5, #-28] +100303c0: f845 2c18 str.w r2, [r5, #-24] +100303c4: f845 7c14 str.w r7, [r5, #-20] +100303c8: f845 6c10 str.w r6, [r5, #-16] +100303cc: 4428 add r0, r5 +100303ce: f7ec fdb5 bl 1001cf3c +100303d2: 602f str r7, [r5, #0] +100303d4: f108 0804 add.w r8, r8, #4 +100303d8: f1b8 0f20 cmp.w r8, #32 +100303dc: f105 0520 add.w r5, r5, #32 +100303e0: d1b9 bne.n 10030356 +100303e2: 2001 movs r0, #1 +100303e4: e010 b.n 10030408 +100303e6: 4620 mov r0, r4 +100303e8: f7ff fe13 bl 10030012 +100303ec: 2500 movs r5, #0 +100303ee: eb0a 1345 add.w r3, sl, r5, lsl #5 +100303f2: f8d3 3090 ldr.w r3, [r3, #144] ; 0x90 +100303f6: b11b cbz r3, 10030400 +100303f8: 4620 mov r0, r4 +100303fa: 4629 mov r1, r5 +100303fc: f7ff ff23 bl 10030246 +10030400: 3501 adds r5, #1 +10030402: 2d08 cmp r5, #8 +10030404: d1f3 bne.n 100303ee +10030406: e784 b.n 10030312 +10030408: b003 add sp, #12 +1003040a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1003040e: bf00 nop +10030410: 10053254 .word 0x10053254 + +10030414 : +10030414: b538 push {r3, r4, r5, lr} +10030416: 4605 mov r5, r0 +10030418: f7ff fdfb bl 10030012 +1003041c: 2400 movs r4, #0 +1003041e: 4621 mov r1, r4 +10030420: 4628 mov r0, r5 +10030422: 3401 adds r4, #1 +10030424: f7ff ff0f bl 10030246 +10030428: 2c08 cmp r4, #8 +1003042a: d1f8 bne.n 1003041e +1003042c: 2001 movs r0, #1 +1003042e: bd38 pop {r3, r4, r5, pc} + +10030430 : +10030430: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +10030434: f8d0 2b50 ldr.w r2, [r0, #2896] ; 0xb50 +10030438: 2300 movs r3, #0 +1003043a: 4605 mov r5, r0 +1003043c: 9301 str r3, [sp, #4] +1003043e: f600 08c8 addw r8, r0, #2248 ; 0x8c8 +10030442: 6887 ldr r7, [r0, #8] +10030444: b10a cbz r2, 1003044a +10030446: f8c0 3b58 str.w r3, [r0, #2904] ; 0xb58 +1003044a: 3720 adds r7, #32 +1003044c: 4638 mov r0, r7 +1003044e: a901 add r1, sp, #4 +10030450: f7ec fd42 bl 1001ced8 +10030454: 462c mov r4, r5 +10030456: 2600 movs r6, #0 +10030458: 1b63 subs r3, r4, r5 +1003045a: 4443 add r3, r8 +1003045c: f8d3 3090 ldr.w r3, [r3, #144] ; 0x90 +10030460: b32b cbz r3, 100304ae +10030462: f604 1958 addw r9, r4, #2392 ; 0x958 +10030466: f8d4 3974 ldr.w r3, [r4, #2420] ; 0x974 +1003046a: b1c3 cbz r3, 1003049e +1003046c: f8d4 2960 ldr.w r2, [r4, #2400] ; 0x960 +10030470: f8d4 0958 ldr.w r0, [r4, #2392] ; 0x958 +10030474: 0151 lsls r1, r2, #5 +10030476: 5843 ldr r3, [r0, r1] +10030478: 2e04 cmp r6, #4 +1003047a: f023 4300 bic.w r3, r3, #2147483648 ; 0x80000000 +1003047e: 5043 str r3, [r0, r1] +10030480: d008 beq.n 10030494 +10030482: f8d4 3964 ldr.w r3, [r4, #2404] ; 0x964 +10030486: 3201 adds r2, #1 +10030488: fbb2 f1f3 udiv r1, r2, r3 +1003048c: fb03 2311 mls r3, r3, r1, r2 +10030490: f8c4 3960 str.w r3, [r4, #2400] ; 0x960 +10030494: 4648 mov r0, r9 +10030496: f000 fe18 bl 100310ca +1003049a: 4601 mov r1, r0 +1003049c: b918 cbnz r0, 100304a6 +1003049e: 2300 movs r3, #0 +100304a0: f8c4 3960 str.w r3, [r4, #2400] ; 0x960 +100304a4: e003 b.n 100304ae +100304a6: 4640 mov r0, r8 +100304a8: f7ff fd34 bl 1002ff14 +100304ac: e7db b.n 10030466 +100304ae: 3601 adds r6, #1 +100304b0: 2e08 cmp r6, #8 +100304b2: f104 0420 add.w r4, r4, #32 +100304b6: d1cf bne.n 10030458 +100304b8: 4638 mov r0, r7 +100304ba: a901 add r1, sp, #4 +100304bc: f7ec fd14 bl 1001cee8 +100304c0: b003 add sp, #12 +100304c2: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +100304c6 : +100304c6: b510 push {r4, lr} +100304c8: f44f 7140 mov.w r1, #768 ; 0x300 +100304cc: 4604 mov r4, r0 +100304ce: f00c f8cd bl 1003c66c +100304d2: f44f 7140 mov.w r1, #768 ; 0x300 +100304d6: f420 7280 bic.w r2, r0, #256 ; 0x100 +100304da: 4620 mov r0, r4 +100304dc: f00c f8db bl 1003c696 +100304e0: 4620 mov r0, r4 +100304e2: f44f 717a mov.w r1, #1000 ; 0x3e8 +100304e6: f06f 427f mvn.w r2, #4278190080 ; 0xff000000 +100304ea: f00c f8d4 bl 1003c696 +100304ee: 4620 mov r0, r4 +100304f0: f44f 7160 mov.w r1, #896 ; 0x380 +100304f4: f241 0204 movw r2, #4100 ; 0x1004 +100304f8: f00c f8c6 bl 1003c688 +100304fc: 4620 mov r0, r4 +100304fe: f240 3182 movw r1, #898 ; 0x382 +10030502: f242 0204 movw r2, #8196 ; 0x2004 +10030506: f00c f8bf bl 1003c688 +1003050a: 4620 mov r0, r4 +1003050c: f44f 7161 mov.w r1, #900 ; 0x384 +10030510: f241 0204 movw r2, #4100 ; 0x1004 +10030514: f00c f8b8 bl 1003c688 +10030518: 4620 mov r0, r4 +1003051a: f240 3186 movw r1, #902 ; 0x386 +1003051e: f241 0204 movw r2, #4100 ; 0x1004 +10030522: f00c f8b1 bl 1003c688 +10030526: 4620 mov r0, r4 +10030528: f44f 7162 mov.w r1, #904 ; 0x388 +1003052c: f241 0204 movw r2, #4100 ; 0x1004 +10030530: f00c f8aa bl 1003c688 +10030534: 4620 mov r0, r4 +10030536: f240 318a movw r1, #906 ; 0x38a +1003053a: f241 0204 movw r2, #4100 ; 0x1004 +1003053e: f00c f8a3 bl 1003c688 +10030542: 4620 mov r0, r4 +10030544: f44f 7163 mov.w r1, #908 ; 0x38c +10030548: f241 0202 movw r2, #4098 ; 0x1002 +1003054c: f00c f89c bl 1003c688 +10030550: 4620 mov r0, r4 +10030552: f240 318e movw r1, #910 ; 0x38e +10030556: f241 0202 movw r2, #4098 ; 0x1002 +1003055a: f00c f895 bl 1003c688 +1003055e: 4620 mov r0, r4 +10030560: f44f 7164 mov.w r1, #912 ; 0x390 +10030564: f241 0202 movw r2, #4098 ; 0x1002 +10030568: f00c f88e bl 1003c688 +1003056c: 4620 mov r0, r4 +1003056e: f240 3192 movw r1, #914 ; 0x392 +10030572: f241 0202 movw r2, #4098 ; 0x1002 +10030576: f00c f887 bl 1003c688 +1003057a: 4620 mov r0, r4 +1003057c: f44f 7165 mov.w r1, #916 ; 0x394 +10030580: f241 0202 movw r2, #4098 ; 0x1002 +10030584: f00c f880 bl 1003c688 +10030588: 4620 mov r0, r4 +1003058a: f240 3196 movw r1, #918 ; 0x396 +1003058e: f241 0202 movw r2, #4098 ; 0x1002 +10030592: f00c f879 bl 1003c688 +10030596: 4620 mov r0, r4 +10030598: f44f 7166 mov.w r1, #920 ; 0x398 +1003059c: f241 0202 movw r2, #4098 ; 0x1002 +100305a0: f00c f872 bl 1003c688 +100305a4: 4620 mov r0, r4 +100305a6: f240 319a movw r1, #922 ; 0x39a +100305aa: f241 0202 movw r2, #4098 ; 0x1002 +100305ae: f00c f86b bl 1003c688 +100305b2: f8d4 2958 ldr.w r2, [r4, #2392] ; 0x958 +100305b6: 4620 mov r0, r4 +100305b8: f44f 7146 mov.w r1, #792 ; 0x318 +100305bc: f00c f86b bl 1003c696 +100305c0: f8d4 2978 ldr.w r2, [r4, #2424] ; 0x978 +100305c4: 4620 mov r0, r4 +100305c6: f44f 7148 mov.w r1, #800 ; 0x320 +100305ca: f00c f864 bl 1003c696 +100305ce: f8d4 2998 ldr.w r2, [r4, #2456] ; 0x998 +100305d2: 4620 mov r0, r4 +100305d4: f44f 714a mov.w r1, #808 ; 0x328 +100305d8: f00c f85d bl 1003c696 +100305dc: f8d4 29b8 ldr.w r2, [r4, #2488] ; 0x9b8 +100305e0: 4620 mov r0, r4 +100305e2: f44f 714c mov.w r1, #816 ; 0x330 +100305e6: f00c f856 bl 1003c696 +100305ea: f8d4 29d8 ldr.w r2, [r4, #2520] ; 0x9d8 +100305ee: 4620 mov r0, r4 +100305f0: f44f 7142 mov.w r1, #776 ; 0x308 +100305f4: f00c f84f bl 1003c696 +100305f8: f8d4 29f8 ldr.w r2, [r4, #2552] ; 0x9f8 +100305fc: 4620 mov r0, r4 +100305fe: f44f 7144 mov.w r1, #784 ; 0x310 +10030602: f00c f848 bl 1003c696 +10030606: f8d4 2a18 ldr.w r2, [r4, #2584] ; 0xa18 +1003060a: 4620 mov r0, r4 +1003060c: f44f 7150 mov.w r1, #832 ; 0x340 +10030610: f00c f841 bl 1003c696 +10030614: 4620 mov r0, r4 +10030616: f8d4 2b50 ldr.w r2, [r4, #2896] ; 0xb50 +1003061a: f44f 714e mov.w r1, #824 ; 0x338 +1003061e: e8bd 4010 ldmia.w sp!, {r4, lr} +10030622: f00c b838 b.w 1003c696 + ... + +10030628 : +10030628: 2904 cmp r1, #4 +1003062a: b538 push {r3, r4, r5, lr} +1003062c: 460d mov r5, r1 +1003062e: 4614 mov r4, r2 +10030630: d02f beq.n 10030692 +10030632: f241 63f8 movw r3, #5880 ; 0x16f8 +10030636: 58c3 ldr r3, [r0, r3] +10030638: bb5b cbnz r3, 10030692 +1003063a: f241 63fc movw r3, #5884 ; 0x16fc +1003063e: 58c3 ldr r3, [r0, r3] +10030640: bb3b cbnz r3, 10030692 +10030642: b28b uxth r3, r1 +10030644: 2b07 cmp r3, #7 +10030646: bf96 itet ls +10030648: 4a13 ldrls r2, [pc, #76] ; (10030698 ) +1003064a: f44f 716a movhi.w r1, #936 ; 0x3a8 +1003064e: f832 1013 ldrhls.w r1, [r2, r3, lsl #1] +10030652: f00c f80b bl 1003c66c +10030656: f3c0 430a ubfx r3, r0, #16, #11 +1003065a: f3c0 000a ubfx r0, r0, #0, #11 +1003065e: 4298 cmp r0, r3 +10030660: d902 bls.n 10030668 +10030662: 4284 cmp r4, r0 +10030664: d210 bcs.n 10030688 +10030666: e002 b.n 1003066e +10030668: d204 bcs.n 10030674 +1003066a: 4284 cmp r4, r0 +1003066c: d304 bcc.n 10030678 +1003066e: 429c cmp r4, r3 +10030670: d30a bcc.n 10030688 +10030672: e001 b.n 10030678 +10030674: 429c cmp r4, r3 +10030676: d107 bne.n 10030688 +10030678: 2d03 cmp r5, #3 +1003067a: d803 bhi.n 10030684 +1003067c: 4b07 ldr r3, [pc, #28] ; (1003069c ) +1003067e: 781a ldrb r2, [r3, #0] +10030680: 3201 adds r2, #1 +10030682: 701a strb r2, [r3, #0] +10030684: 2000 movs r0, #0 +10030686: bd38 pop {r3, r4, r5, pc} +10030688: 2d03 cmp r5, #3 +1003068a: d802 bhi.n 10030692 +1003068c: 4b03 ldr r3, [pc, #12] ; (1003069c ) +1003068e: 2200 movs r2, #0 +10030690: 701a strb r2, [r3, #0] +10030692: 2001 movs r0, #1 +10030694: bd38 pop {r3, r4, r5, pc} +10030696: bf00 nop +10030698: 1004a928 .word 0x1004a928 +1003069c: 10055334 .word 0x10055334 + +100306a0 : +100306a0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100306a4: ea4f 1841 mov.w r8, r1, lsl #5 +100306a8: f600 05c8 addw r5, r0, #2248 ; 0x8c8 +100306ac: f108 0890 add.w r8, r8, #144 ; 0x90 +100306b0: f241 73a8 movw r3, #6056 ; 0x17a8 +100306b4: 4604 mov r4, r0 +100306b6: 460f mov r7, r1 +100306b8: 4445 add r5, r8 +100306ba: 58c6 ldr r6, [r0, r3] +100306bc: f7f4 f8ab bl 10024816 +100306c0: b340 cbz r0, 10030714 +100306c2: f241 73b1 movw r3, #6065 ; 0x17b1 +100306c6: 5ce3 ldrb r3, [r4, r3] +100306c8: b323 cbz r3, 10030714 +100306ca: f606 05c8 addw r5, r6, #2248 ; 0x8c8 +100306ce: 4445 add r5, r8 +100306d0: e020 b.n 10030714 +100306d2: 2f04 cmp r7, #4 +100306d4: 682b ldr r3, [r5, #0] +100306d6: 68aa ldr r2, [r5, #8] +100306d8: d020 beq.n 1003071c +100306da: 4620 mov r0, r4 +100306dc: 4639 mov r1, r7 +100306de: f7ff ffa3 bl 10030628 +100306e2: 2800 cmp r0, #0 +100306e4: d04c beq.n 10030780 +100306e6: 68aa ldr r2, [r5, #8] +100306e8: 68eb ldr r3, [r5, #12] +100306ea: 3201 adds r2, #1 +100306ec: fbb2 f1f3 udiv r1, r2, r3 +100306f0: fb03 2311 mls r3, r3, r1, r2 +100306f4: 60ab str r3, [r5, #8] +100306f6: 4628 mov r0, r5 +100306f8: f000 fce7 bl 100310ca +100306fc: 4680 mov r8, r0 +100306fe: b148 cbz r0, 10030714 +10030700: 3024 adds r0, #36 ; 0x24 +10030702: f7ff fc83 bl 1003000c +10030706: f8d8 0008 ldr.w r0, [r8, #8] +1003070a: 4641 mov r1, r8 +1003070c: f600 00c8 addw r0, r0, #2248 ; 0x8c8 +10030710: f7ff fc00 bl 1002ff14 +10030714: 69eb ldr r3, [r5, #28] +10030716: 2b00 cmp r3, #0 +10030718: d1db bne.n 100306d2 +1003071a: e005 b.n 10030728 +1003071c: 0152 lsls r2, r2, #5 +1003071e: 5899 ldr r1, [r3, r2] +10030720: f021 4100 bic.w r1, r1, #2147483648 ; 0x80000000 +10030724: 5099 str r1, [r3, r2] +10030726: e7e6 b.n 100306f6 +10030728: 2f04 cmp r7, #4 +1003072a: d029 beq.n 10030780 +1003072c: 4620 mov r0, r4 +1003072e: 4639 mov r1, r7 +10030730: f000 fe25 bl 1003137e +10030734: b320 cbz r0, 10030780 +10030736: 6923 ldr r3, [r4, #16] +10030738: 051b lsls r3, r3, #20 +1003073a: d408 bmi.n 1003074e +1003073c: 4620 mov r0, r4 +1003073e: f7fe fb66 bl 1002ee0e +10030742: b120 cbz r0, 1003074e +10030744: f504 50bb add.w r0, r4, #5984 ; 0x1760 +10030748: 3008 adds r0, #8 +1003074a: f7ec fb77 bl 1001ce3c +1003074e: b1be cbz r6, 10030780 +10030750: 4620 mov r0, r4 +10030752: f44f 6100 mov.w r1, #2048 ; 0x800 +10030756: f7f4 f87a bl 1002484e +1003075a: 2801 cmp r0, #1 +1003075c: d010 beq.n 10030780 +1003075e: 4630 mov r0, r6 +10030760: f7fe fb55 bl 1002ee0e +10030764: b160 cbz r0, 10030780 +10030766: f241 73b1 movw r3, #6065 ; 0x17b1 +1003076a: 5cf3 ldrb r3, [r6, r3] +1003076c: 2b00 cmp r3, #0 +1003076e: bf08 it eq +10030770: 4634 moveq r4, r6 +10030772: f504 50bb add.w r0, r4, #5984 ; 0x1760 +10030776: 3008 adds r0, #8 +10030778: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1003077c: f7ec bb5e b.w 1001ce3c +10030780: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10030784 : +10030784: f241 71b0 movw r1, #6064 ; 0x17b0 +10030788: 5c41 ldrb r1, [r0, r1] +1003078a: f241 6218 movw r2, #5656 ; 0x1618 +1003078e: 5883 ldr r3, [r0, r2] +10030790: b921 cbnz r1, 1003079c +10030792: f241 71a8 movw r1, #6056 ; 0x17a8 +10030796: 5841 ldr r1, [r0, r1] +10030798: b101 cbz r1, 1003079c +1003079a: 588b ldr r3, [r1, r2] +1003079c: 4a1c ldr r2, [pc, #112] ; (10030810 ) +1003079e: f8d3 1df4 ldr.w r1, [r3, #3572] ; 0xdf4 +100307a2: 6810 ldr r0, [r2, #0] +100307a4: 3ab0 subs r2, #176 ; 0xb0 +100307a6: 4301 orrs r1, r0 +100307a8: f8d3 0e00 ldr.w r0, [r3, #3584] ; 0xe00 +100307ac: 4001 ands r1, r0 +100307ae: f8c3 1df4 str.w r1, [r3, #3572] ; 0xdf4 +100307b2: f8c2 10b0 str.w r1, [r2, #176] ; 0xb0 +100307b6: f8d2 0364 ldr.w r0, [r2, #868] ; 0x364 +100307ba: f8d3 1df8 ldr.w r1, [r3, #3576] ; 0xdf8 +100307be: 4301 orrs r1, r0 +100307c0: f8d3 0e04 ldr.w r0, [r3, #3588] ; 0xe04 +100307c4: 4001 ands r1, r0 +100307c6: f8c3 1df8 str.w r1, [r3, #3576] ; 0xdf8 +100307ca: f8c2 1364 str.w r1, [r2, #868] ; 0x364 +100307ce: 6810 ldr r0, [r2, #0] +100307d0: f8d3 1dfc ldr.w r1, [r3, #3580] ; 0xdfc +100307d4: 4301 orrs r1, r0 +100307d6: f8d3 0e08 ldr.w r0, [r3, #3592] ; 0xe08 +100307da: 4001 ands r1, r0 +100307dc: f8c3 1dfc str.w r1, [r3, #3580] ; 0xdfc +100307e0: 6011 str r1, [r2, #0] +100307e2: f8d3 1e00 ldr.w r1, [r3, #3584] ; 0xe00 +100307e6: f8d3 2df4 ldr.w r2, [r3, #3572] ; 0xdf4 +100307ea: 4211 tst r1, r2 +100307ec: d10e bne.n 1003080c +100307ee: f8d3 1e04 ldr.w r1, [r3, #3588] ; 0xe04 +100307f2: f8d3 2df8 ldr.w r2, [r3, #3576] ; 0xdf8 +100307f6: 4211 tst r1, r2 +100307f8: d108 bne.n 1003080c +100307fa: f8d3 2e08 ldr.w r2, [r3, #3592] ; 0xe08 +100307fe: f8d3 3dfc ldr.w r3, [r3, #3580] ; 0xdfc +10030802: 421a tst r2, r3 +10030804: bf0c ite eq +10030806: 2000 moveq r0, #0 +10030808: 2001 movne r0, #1 +1003080a: 4770 bx lr +1003080c: 2001 movs r0, #1 +1003080e: 4770 bx lr +10030810: 40080134 .word 0x40080134 + +10030814 : +10030814: f241 6318 movw r3, #5656 ; 0x1618 +10030818: 58c3 ldr r3, [r0, r3] +1003081a: 2230 movs r2, #48 ; 0x30 +1003081c: f8c3 2e00 str.w r2, [r3, #3584] ; 0xe00 +10030820: f240 127d movw r2, #381 ; 0x17d +10030824: f8c3 2e04 str.w r2, [r3, #3588] ; 0xe04 +10030828: 4a01 ldr r2, [pc, #4] ; (10030830 ) +1003082a: f8c3 2e08 str.w r2, [r3, #3592] ; 0xe08 +1003082e: 4770 bx lr +10030830: 80000040 .word 0x80000040 + +10030834 : +10030834: f241 73b0 movw r3, #6064 ; 0x17b0 +10030838: 5cc3 ldrb r3, [r0, r3] +1003083a: b92b cbnz r3, 10030848 +1003083c: f241 73a8 movw r3, #6056 ; 0x17a8 +10030840: 58c3 ldr r3, [r0, r3] +10030842: 2b00 cmp r3, #0 +10030844: bf18 it ne +10030846: 4618 movne r0, r3 +10030848: f241 6318 movw r3, #5656 ; 0x1618 +1003084c: 58c3 ldr r3, [r0, r3] +1003084e: f8d3 2e04 ldr.w r2, [r3, #3588] ; 0xe04 +10030852: 4b01 ldr r3, [pc, #4] ; (10030858 ) +10030854: 601a str r2, [r3, #0] +10030856: 4770 bx lr +10030858: 400803ec .word 0x400803ec + +1003085c : +1003085c: f241 73b0 movw r3, #6064 ; 0x17b0 +10030860: 5cc3 ldrb r3, [r0, r3] +10030862: b92b cbnz r3, 10030870 +10030864: f241 73a8 movw r3, #6056 ; 0x17a8 +10030868: 58c3 ldr r3, [r0, r3] +1003086a: 2b00 cmp r3, #0 +1003086c: bf18 it ne +1003086e: 4618 movne r0, r3 +10030870: f241 6318 movw r3, #5656 ; 0x1618 +10030874: 58c3 ldr r3, [r0, r3] +10030876: 4907 ldr r1, [pc, #28] ; (10030894 ) +10030878: f8d3 2e04 ldr.w r2, [r3, #3588] ; 0xe04 +1003087c: f5a1 712f sub.w r1, r1, #700 ; 0x2bc +10030880: f8c1 22bc str.w r2, [r1, #700] ; 0x2bc +10030884: f8d3 2e00 ldr.w r2, [r3, #3584] ; 0xe00 +10030888: 600a str r2, [r1, #0] +1003088a: f8d3 2e08 ldr.w r2, [r3, #3592] ; 0xe08 +1003088e: 4b02 ldr r3, [pc, #8] ; (10030898 ) +10030890: 601a str r2, [r3, #0] +10030892: 4770 bx lr +10030894: 400803ec .word 0x400803ec +10030898: 40080080 .word 0x40080080 + +1003089c : +1003089c: 4b01 ldr r3, [pc, #4] ; (100308a4 ) +1003089e: 2200 movs r2, #0 +100308a0: 601a str r2, [r3, #0] +100308a2: 4770 bx lr +100308a4: 400803ec .word 0x400803ec + +100308a8 : +100308a8: 4a04 ldr r2, [pc, #16] ; (100308bc ) +100308aa: 2300 movs r3, #0 +100308ac: 6013 str r3, [r2, #0] +100308ae: f5a2 722f sub.w r2, r2, #700 ; 0x2bc +100308b2: 6013 str r3, [r2, #0] +100308b4: f842 3cb0 str.w r3, [r2, #-176] +100308b8: 4770 bx lr +100308ba: bf00 nop +100308bc: 400803ec .word 0x400803ec + +100308c0 : +100308c0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100308c4: 4690 mov r8, r2 +100308c6: f241 72b0 movw r2, #6064 ; 0x17b0 +100308ca: 5c82 ldrb r2, [r0, r2] +100308cc: f241 6318 movw r3, #5656 ; 0x1618 +100308d0: 4604 mov r4, r0 +100308d2: 460f mov r7, r1 +100308d4: 58c5 ldr r5, [r0, r3] +100308d6: b92a cbnz r2, 100308e4 +100308d8: f241 72a8 movw r2, #6056 ; 0x17a8 +100308dc: 5880 ldr r0, [r0, r2] +100308de: b108 cbz r0, 100308e4 +100308e0: 58c5 ldr r5, [r0, r3] +100308e2: 4604 mov r4, r0 +100308e4: 4620 mov r0, r4 +100308e6: f7ff ffdf bl 100308a8 +100308ea: 462b mov r3, r5 +100308ec: 2000 movs r0, #0 +100308ee: 583d ldr r5, [r7, r0] +100308f0: b125 cbz r5, 100308fc +100308f2: f8d3 6e00 ldr.w r6, [r3, #3584] ; 0xe00 +100308f6: 4335 orrs r5, r6 +100308f8: f8c3 5e00 str.w r5, [r3, #3584] ; 0xe00 +100308fc: f858 5000 ldr.w r5, [r8, r0] +10030900: b12d cbz r5, 1003090e +10030902: f8d3 6e00 ldr.w r6, [r3, #3584] ; 0xe00 +10030906: ea26 0505 bic.w r5, r6, r5 +1003090a: f8c3 5e00 str.w r5, [r3, #3584] ; 0xe00 +1003090e: 3004 adds r0, #4 +10030910: 280c cmp r0, #12 +10030912: f103 0304 add.w r3, r3, #4 +10030916: d1ea bne.n 100308ee +10030918: 4620 mov r0, r4 +1003091a: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1003091e: f7ff bf9d b.w 1003085c + +10030922 : +10030922: f241 6318 movw r3, #5656 ; 0x1618 +10030926: b510 push {r4, lr} +10030928: 58c2 ldr r2, [r0, r3] +1003092a: b909 cbnz r1, 10030930 +1003092c: 2000 movs r0, #0 +1003092e: bd10 pop {r4, pc} +10030930: 8848 ldrh r0, [r1, #2] +10030932: f242 7311 movw r3, #10001 ; 0x2711 +10030936: f3c0 000c ubfx r0, r0, #0, #13 +1003093a: 1c44 adds r4, r0, #1 +1003093c: f3c4 040c ubfx r4, r4, #0, #13 +10030940: f8b2 1e0c ldrh.w r1, [r2, #3596] ; 0xe0c +10030944: 4281 cmp r1, r0 +10030946: bf06 itte eq +10030948: f8a2 4e0c strheq.w r4, [r2, #3596] ; 0xe0c +1003094c: 2101 moveq r1, #1 +1003094e: 2100 movne r1, #0 +10030950: 3b01 subs r3, #1 +10030952: d0eb beq.n 1003092c +10030954: 2900 cmp r1, #0 +10030956: d0f3 beq.n 10030940 +10030958: 2001 movs r0, #1 +1003095a: bd10 pop {r4, pc} + +1003095c : +1003095c: b510 push {r4, lr} +1003095e: f44f 716d mov.w r1, #948 ; 0x3b4 +10030962: 4604 mov r4, r0 +10030964: f00b fe82 bl 1003c66c +10030968: f3c0 420a ubfx r2, r0, #16, #11 +1003096c: f3c0 030a ubfx r3, r0, #0, #11 +10030970: 4293 cmp r3, r2 +10030972: d008 beq.n 10030986 +10030974: ebc3 0302 rsb r3, r3, r2 +10030978: bf31 iteee cc +1003097a: b298 uxthcc r0, r3 +1003097c: f8d4 0b6c ldrcs.w r0, [r4, #2924] ; 0xb6c +10030980: 18c0 addcs r0, r0, r3 +10030982: b280 uxthcs r0, r0 +10030984: bd10 pop {r4, pc} +10030986: 2000 movs r0, #0 +10030988: bd10 pop {r4, pc} + ... + +1003098c : +1003098c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10030990: f241 6318 movw r3, #5656 ; 0x1618 +10030994: 2400 movs r4, #0 +10030996: 6882 ldr r2, [r0, #8] +10030998: b08b sub sp, #44 ; 0x2c +1003099a: 58c7 ldr r7, [r0, r3] +1003099c: 4621 mov r1, r4 +1003099e: f241 73a8 movw r3, #6056 ; 0x17a8 +100309a2: 4605 mov r5, r0 +100309a4: 9409 str r4, [sp, #36] ; 0x24 +100309a6: 9207 str r2, [sp, #28] +100309a8: f600 26c4 addw r6, r0, #2756 ; 0xac4 +100309ac: f850 8003 ldr.w r8, [r0, r3] +100309b0: f7ff ffd4 bl 1003095c +100309b4: 9404 str r4, [sp, #16] +100309b6: 9005 str r0, [sp, #20] +100309b8: 9b05 ldr r3, [sp, #20] +100309ba: b193 cbz r3, 100309e2 +100309bc: f8d5 3b50 ldr.w r3, [r5, #2896] ; 0xb50 +100309c0: f8d5 9b58 ldr.w r9, [r5, #2904] ; 0xb58 +100309c4: 9306 str r3, [sp, #24] +100309c6: 9a06 ldr r2, [sp, #24] +100309c8: eb05 0389 add.w r3, r5, r9, lsl #2 +100309cc: f8d3 3b5c ldr.w r3, [r3, #2908] ; 0xb5c +100309d0: eb02 01c9 add.w r1, r2, r9, lsl #3 +100309d4: 4628 mov r0, r5 +100309d6: 2200 movs r2, #0 +100309d8: 9303 str r3, [sp, #12] +100309da: f7ff ffa2 bl 10030922 +100309de: 2801 cmp r0, #1 +100309e0: d027 beq.n 10030a32 +100309e2: 9b07 ldr r3, [sp, #28] +100309e4: a909 add r1, sp, #36 ; 0x24 +100309e6: f103 0420 add.w r4, r3, #32 +100309ea: 4620 mov r0, r4 +100309ec: f7ec fa74 bl 1001ced8 +100309f0: 2100 movs r1, #0 +100309f2: 4628 mov r0, r5 +100309f4: f005 faf4 bl 10035fe0 +100309f8: f8d7 3e04 ldr.w r3, [r7, #3588] ; 0xe04 +100309fc: f8d7 2e00 ldr.w r2, [r7, #3584] ; 0xe00 +10030a00: f043 0301 orr.w r3, r3, #1 +10030a04: f042 0210 orr.w r2, r2, #16 +10030a08: f8c7 3e04 str.w r3, [r7, #3588] ; 0xe04 +10030a0c: f8c7 2e00 str.w r2, [r7, #3584] ; 0xe00 +10030a10: f44f 7198 mov.w r1, #304 ; 0x130 +10030a14: 4628 mov r0, r5 +10030a16: f00b fe3e bl 1003c696 +10030a1a: f44f 717b mov.w r1, #1004 ; 0x3ec +10030a1e: 4628 mov r0, r5 +10030a20: f8d7 2e04 ldr.w r2, [r7, #3588] ; 0xe04 +10030a24: f00b fe37 bl 1003c696 +10030a28: 692b ldr r3, [r5, #16] +10030a2a: 07d9 lsls r1, r3, #31 +10030a2c: f100 80d6 bmi.w 10030bdc +10030a30: e0d8 b.n 10030be4 +10030a32: 2100 movs r1, #0 +10030a34: 4628 mov r0, r5 +10030a36: f005 fad3 bl 10035fe0 +10030a3a: 4630 mov r0, r6 +10030a3c: f7fb fb0d bl 1002c05a +10030a40: 4604 mov r4, r0 +10030a42: 2800 cmp r0, #0 +10030a44: f000 8097 beq.w 10030b76 +10030a48: f7ec f9ca bl 1001cde0 +10030a4c: 2300 movs r3, #0 +10030a4e: 6723 str r3, [r4, #112] ; 0x70 +10030a50: 9903 ldr r1, [sp, #12] +10030a52: 4620 mov r0, r4 +10030a54: f005 fee7 bl 10036826 +10030a58: f8b4 a01c ldrh.w sl, [r4, #28] +10030a5c: f240 6329 movw r3, #1577 ; 0x629 +10030a60: f10a 32ff add.w r2, sl, #4294967295 +10030a64: b292 uxth r2, r2 +10030a66: 429a cmp r2, r3 +10030a68: f894 1032 ldrb.w r1, [r4, #50] ; 0x32 +10030a6c: d90b bls.n 10030a86 +10030a6e: f240 632a movw r3, #1578 ; 0x62a +10030a72: f894 2033 ldrb.w r2, [r4, #51] ; 0x33 +10030a76: 9300 str r3, [sp, #0] +10030a78: 4b88 ldr r3, [pc, #544] ; (10030c9c ) +10030a7a: f8d3 0134 ldr.w r0, [r3, #308] ; 0x134 +10030a7e: 4653 mov r3, sl +10030a80: f011 fb42 bl 10042108 +10030a84: e073 b.n 10030b6e +10030a86: 2900 cmp r1, #0 +10030a88: d171 bne.n 10030b6e +10030a8a: 7fa3 ldrb r3, [r4, #30] +10030a8c: b113 cbz r3, 10030a94 +10030a8e: 9b03 ldr r3, [sp, #12] +10030a90: 3318 adds r3, #24 +10030a92: 9304 str r3, [sp, #16] +10030a94: f894 3024 ldrb.w r3, [r4, #36] ; 0x24 +10030a98: 2100 movs r1, #0 +10030a9a: 2b00 cmp r3, #0 +10030a9c: 8d63 ldrh r3, [r4, #42] ; 0x2a +10030a9e: bf0c ite eq +10030aa0: 2200 moveq r2, #0 +10030aa2: 2206 movne r2, #6 +10030aa4: f5b3 7f80 cmp.w r3, #256 ; 0x100 +10030aa8: bf14 ite ne +10030aaa: f10a 000e addne.w r0, sl, #14 +10030aae: f44f 60d0 moveq.w r0, #1664 ; 0x680 +10030ab2: 9202 str r2, [sp, #8] +10030ab4: f00a fc7f bl 1003b3b6 +10030ab8: 9a02 ldr r2, [sp, #8] +10030aba: 4683 mov fp, r0 +10030abc: 2800 cmp r0, #0 +10030abe: d056 beq.n 10030b6e +10030ac0: f505 51bc add.w r1, r5, #6016 ; 0x1780 +10030ac4: 6809 ldr r1, [r1, #0] +10030ac6: f8c0 a020 str.w sl, [r0, #32] +10030aca: 61c1 str r1, [r0, #28] +10030acc: 4611 mov r1, r2 +10030ace: 60a0 str r0, [r4, #8] +10030ad0: f00a fc6a bl 1003b3a8 +10030ad4: f894 2020 ldrb.w r2, [r4, #32] +10030ad8: 7fe1 ldrb r1, [r4, #31] +10030ada: 9b03 ldr r3, [sp, #12] +10030adc: 4411 add r1, r2 +10030ade: 3118 adds r1, #24 +10030ae0: f8db 0010 ldr.w r0, [fp, #16] +10030ae4: 4419 add r1, r3 +10030ae6: 4652 mov r2, sl +10030ae8: f7ec f960 bl 1001cdac +10030aec: f8db 200c ldr.w r2, [fp, #12] +10030af0: 4658 mov r0, fp +10030af2: 6762 str r2, [r4, #116] ; 0x74 +10030af4: f8db 2010 ldr.w r2, [fp, #16] +10030af8: 67e2 str r2, [r4, #124] ; 0x7c +10030afa: 67a2 str r2, [r4, #120] ; 0x78 +10030afc: f00a fc69 bl 1003b3d2 +10030b00: 6fe2 ldr r2, [r4, #124] ; 0x7c +10030b02: f8c4 0080 str.w r0, [r4, #128] ; 0x80 +10030b06: 4452 add r2, sl +10030b08: 4282 cmp r2, r0 +10030b0a: 67e2 str r2, [r4, #124] ; 0x7c +10030b0c: d903 bls.n 10030b16 +10030b0e: ebca 0202 rsb r2, sl, r2 +10030b12: 67e2 str r2, [r4, #124] ; 0x7c +10030b14: e002 b.n 10030b1c +10030b16: 6f22 ldr r2, [r4, #112] ; 0x70 +10030b18: 4452 add r2, sl +10030b1a: 6722 str r2, [r4, #112] ; 0x70 +10030b1c: 4628 mov r0, r5 +10030b1e: f7f3 fe7a bl 10024816 +10030b22: b1b8 cbz r0, 10030b54 +10030b24: f894 a05c ldrb.w sl, [r4, #92] ; 0x5c +10030b28: f1ba 0f00 cmp.w sl, #0 +10030b2c: d112 bne.n 10030b54 +10030b2e: 6fa2 ldr r2, [r4, #120] ; 0x78 +10030b30: 1d10 adds r0, r2, #4 +10030b32: 7912 ldrb r2, [r2, #4] +10030b34: 07d2 lsls r2, r2, #31 +10030b36: d45c bmi.n 10030bf2 +10030b38: f508 51a0 add.w r1, r8, #5120 ; 0x1400 +10030b3c: 3109 adds r1, #9 +10030b3e: 2206 movs r2, #6 +10030b40: f7ec f93c bl 1001cdbc +10030b44: b130 cbz r0, 10030b54 +10030b46: f508 52bc add.w r2, r8, #6016 ; 0x1780 +10030b4a: 6812 ldr r2, [r2, #0] +10030b4c: f8cb 201c str.w r2, [fp, #28] +10030b50: f8c4 8010 str.w r8, [r4, #16] +10030b54: f894 305c ldrb.w r3, [r4, #92] ; 0x5c +10030b58: b94b cbnz r3, 10030b6e +10030b5a: 7fa3 ldrb r3, [r4, #30] +10030b5c: b11b cbz r3, 10030b66 +10030b5e: 4620 mov r0, r4 +10030b60: 9904 ldr r1, [sp, #16] +10030b62: f005 feb8 bl 100368d6 +10030b66: 4620 mov r0, r4 +10030b68: f7fc fb14 bl 1002d194 +10030b6c: e003 b.n 10030b76 +10030b6e: 4620 mov r0, r4 +10030b70: 4631 mov r1, r6 +10030b72: f7fb fa85 bl 1002c080 +10030b76: 9a06 ldr r2, [sp, #24] +10030b78: f852 3039 ldr.w r3, [r2, r9, lsl #3] +10030b7c: f8b5 2b70 ldrh.w r2, [r5, #2928] ; 0xb70 +10030b80: f423 537f bic.w r3, r3, #16320 ; 0x3fc0 +10030b84: f3c2 020d ubfx r2, r2, #0, #14 +10030b88: f023 033f bic.w r3, r3, #63 ; 0x3f +10030b8c: 4313 orrs r3, r2 +10030b8e: 9a06 ldr r2, [sp, #24] +10030b90: f842 3039 str.w r3, [r2, r9, lsl #3] +10030b94: f8d5 2b58 ldr.w r2, [r5, #2904] ; 0xb58 +10030b98: f8d5 3b6c ldr.w r3, [r5, #2924] ; 0xb6c +10030b9c: 3201 adds r2, #1 +10030b9e: fbb2 f1f3 udiv r1, r2, r3 +10030ba2: fb03 2311 mls r3, r3, r1, r2 +10030ba6: f8c5 3b58 str.w r3, [r5, #2904] ; 0xb58 +10030baa: 4628 mov r0, r5 +10030bac: f44f 716d mov.w r1, #948 ; 0x3b4 +10030bb0: f8b5 2b58 ldrh.w r2, [r5, #2904] ; 0xb58 +10030bb4: f00b fd68 bl 1003c688 +10030bb8: b918 cbnz r0, 10030bc2 +10030bba: 2001 movs r0, #1 +10030bbc: f7ec fa46 bl 1001d04c +10030bc0: e7f3 b.n 10030baa +10030bc2: 9a05 ldr r2, [sp, #20] +10030bc4: 1e53 subs r3, r2, #1 +10030bc6: b29b uxth r3, r3 +10030bc8: 9305 str r3, [sp, #20] +10030bca: 692b ldr r3, [r5, #16] +10030bcc: 07db lsls r3, r3, #31 +10030bce: f57f aef3 bpl.w 100309b8 +10030bd2: 4628 mov r0, r5 +10030bd4: 2101 movs r1, #1 +10030bd6: f005 fa03 bl 10035fe0 +10030bda: e6ed b.n 100309b8 +10030bdc: 4628 mov r0, r5 +10030bde: 2101 movs r1, #1 +10030be0: f005 f9fe bl 10035fe0 +10030be4: 4620 mov r0, r4 +10030be6: a909 add r1, sp, #36 ; 0x24 +10030be8: f7ec f97e bl 1001cee8 +10030bec: b00b add sp, #44 ; 0x2c +10030bee: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10030bf2: 4630 mov r0, r6 +10030bf4: f7fb fa31 bl 1002c05a +10030bf8: 4683 mov fp, r0 +10030bfa: 2800 cmp r0, #0 +10030bfc: d0bb beq.n 10030b76 +10030bfe: 68a0 ldr r0, [r4, #8] +10030c00: 2101 movs r1, #1 +10030c02: 4652 mov r2, sl +10030c04: f00a fbf7 bl 1003b3f6 +10030c08: 4603 mov r3, r0 +10030c0a: b908 cbnz r0, 10030c10 +10030c0c: 4658 mov r0, fp +10030c0e: e7af b.n 10030b70 +10030c10: f8cb 8010 str.w r8, [fp, #16] +10030c14: 4658 mov r0, fp +10030c16: 9302 str r3, [sp, #8] +10030c18: f7ec f8e2 bl 1001cde0 +10030c1c: f104 011c add.w r1, r4, #28 +10030c20: f10b 001c add.w r0, fp, #28 +10030c24: 2254 movs r2, #84 ; 0x54 +10030c26: f8cb a084 str.w sl, [fp, #132] ; 0x84 +10030c2a: f8cb a070 str.w sl, [fp, #112] ; 0x70 +10030c2e: f7ec f8bd bl 1001cdac +10030c32: f508 52bc add.w r2, r8, #6016 ; 0x1780 +10030c36: 9b02 ldr r3, [sp, #8] +10030c38: 6812 ldr r2, [r2, #0] +10030c3a: 4618 mov r0, r3 +10030c3c: 61da str r2, [r3, #28] +10030c3e: f8cb 3008 str.w r3, [fp, #8] +10030c42: 68da ldr r2, [r3, #12] +10030c44: f8cb 2074 str.w r2, [fp, #116] ; 0x74 +10030c48: 691a ldr r2, [r3, #16] +10030c4a: f8cb 207c str.w r2, [fp, #124] ; 0x7c +10030c4e: f8cb 2078 str.w r2, [fp, #120] ; 0x78 +10030c52: 9302 str r3, [sp, #8] +10030c54: f00a fbbd bl 1003b3d2 +10030c58: f8cb 0080 str.w r0, [fp, #128] ; 0x80 +10030c5c: 9b02 ldr r3, [sp, #8] +10030c5e: f8db 107c ldr.w r1, [fp, #124] ; 0x7c +10030c62: 6a1a ldr r2, [r3, #32] +10030c64: 4411 add r1, r2 +10030c66: 4281 cmp r1, r0 +10030c68: f8cb 107c str.w r1, [fp, #124] ; 0x7c +10030c6c: d903 bls.n 10030c76 +10030c6e: 1a8a subs r2, r1, r2 +10030c70: f8cb 207c str.w r2, [fp, #124] ; 0x7c +10030c74: e004 b.n 10030c80 +10030c76: f8db 1070 ldr.w r1, [fp, #112] ; 0x70 +10030c7a: 440a add r2, r1 +10030c7c: f8cb 2070 str.w r2, [fp, #112] ; 0x70 +10030c80: f89b 201e ldrb.w r2, [fp, #30] +10030c84: b132 cbz r2, 10030c94 +10030c86: f89b 205c ldrb.w r2, [fp, #92] ; 0x5c +10030c8a: b91a cbnz r2, 10030c94 +10030c8c: 4658 mov r0, fp +10030c8e: 9904 ldr r1, [sp, #16] +10030c90: f005 fe21 bl 100368d6 +10030c94: 4658 mov r0, fp +10030c96: f7fc fa7d bl 1002d194 +10030c9a: e75b b.n 10030b54 +10030c9c: 1004da10 .word 0x1004da10 + +10030ca0 : +10030ca0: b537 push {r0, r1, r2, r4, r5, lr} +10030ca2: 4b09 ldr r3, [pc, #36] ; (10030cc8 ) +10030ca4: 4605 mov r5, r0 +10030ca6: 6818 ldr r0, [r3, #0] +10030ca8: 889b ldrh r3, [r3, #4] +10030caa: 9000 str r0, [sp, #0] +10030cac: f8ad 3004 strh.w r3, [sp, #4] +10030cb0: 2400 movs r4, #0 +10030cb2: f81d 1004 ldrb.w r1, [sp, r4] +10030cb6: 4628 mov r0, r5 +10030cb8: 3401 adds r4, #1 +10030cba: f7ff fcf1 bl 100306a0 +10030cbe: 2c06 cmp r4, #6 +10030cc0: d1f7 bne.n 10030cb2 +10030cc2: b003 add sp, #12 +10030cc4: bd30 pop {r4, r5, pc} +10030cc6: bf00 nop +10030cc8: 1004a921 .word 0x1004a921 + +10030ccc : +10030ccc: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +10030cce: 2300 movs r3, #0 +10030cd0: 9301 str r3, [sp, #4] +10030cd2: f241 6318 movw r3, #5656 ; 0x1618 +10030cd6: 58c6 ldr r6, [r0, r3] +10030cd8: f241 73a8 movw r3, #6056 ; 0x17a8 +10030cdc: 58c7 ldr r7, [r0, r3] +10030cde: 4604 mov r4, r0 +10030ce0: 6885 ldr r5, [r0, #8] +10030ce2: b12f cbz r7, 10030cf0 +10030ce4: 693b ldr r3, [r7, #16] +10030ce6: f013 0f10 tst.w r3, #16 +10030cea: bf08 it eq +10030cec: 4607 moveq r7, r0 +10030cee: e000 b.n 10030cf2 +10030cf0: 4607 mov r7, r0 +10030cf2: 3520 adds r5, #32 +10030cf4: 4628 mov r0, r5 +10030cf6: a901 add r1, sp, #4 +10030cf8: f7ec f8ee bl 1001ced8 +10030cfc: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030d00: f013 7fc0 tst.w r3, #25165824 ; 0x1800000 +10030d04: d02e beq.n 10030d64 +10030d06: 6923 ldr r3, [r4, #16] +10030d08: 06d8 lsls r0, r3, #27 +10030d0a: d510 bpl.n 10030d2e +10030d0c: f894 34e0 ldrb.w r3, [r4, #1248] ; 0x4e0 +10030d10: 2b01 cmp r3, #1 +10030d12: d10c bne.n 10030d2e +10030d14: f897 3a78 ldrb.w r3, [r7, #2680] ; 0xa78 +10030d18: b133 cbz r3, 10030d28 +10030d1a: 2300 movs r3, #0 +10030d1c: f887 3a78 strb.w r3, [r7, #2680] ; 0xa78 +10030d20: 4638 mov r0, r7 +10030d22: 2104 movs r1, #4 +10030d24: f7ff fcbc bl 100306a0 +10030d28: 4620 mov r0, r4 +10030d2a: f7f7 fc75 bl 10028618 +10030d2e: 4620 mov r0, r4 +10030d30: 2110 movs r1, #16 +10030d32: f7f3 fd8c bl 1002484e +10030d36: b1a8 cbz r0, 10030d64 +10030d38: f241 73a8 movw r3, #6056 ; 0x17a8 +10030d3c: 58e3 ldr r3, [r4, r3] +10030d3e: f893 34e0 ldrb.w r3, [r3, #1248] ; 0x4e0 +10030d42: 2b01 cmp r3, #1 +10030d44: d10e bne.n 10030d64 +10030d46: f897 3a78 ldrb.w r3, [r7, #2680] ; 0xa78 +10030d4a: b133 cbz r3, 10030d5a +10030d4c: 2300 movs r3, #0 +10030d4e: f887 3a78 strb.w r3, [r7, #2680] ; 0xa78 +10030d52: 4638 mov r0, r7 +10030d54: 2104 movs r1, #4 +10030d56: f7ff fca3 bl 100306a0 +10030d5a: f241 73a8 movw r3, #6056 ; 0x17a8 +10030d5e: 58e0 ldr r0, [r4, r3] +10030d60: f7f7 fc5a bl 10028618 +10030d64: f8d6 3df8 ldr.w r3, [r6, #3576] ; 0xdf8 +10030d68: 0659 lsls r1, r3, #25 +10030d6a: d503 bpl.n 10030d74 +10030d6c: 4620 mov r0, r4 +10030d6e: 2105 movs r1, #5 +10030d70: f7ff fc96 bl 100306a0 +10030d74: f8d6 3df8 ldr.w r3, [r6, #3576] ; 0xdf8 +10030d78: 05da lsls r2, r3, #23 +10030d7a: d503 bpl.n 10030d84 +10030d7c: 4620 mov r0, r4 +10030d7e: 2106 movs r1, #6 +10030d80: f7ff fc8e bl 100306a0 +10030d84: f8d6 3df8 ldr.w r3, [r6, #3576] ; 0xdf8 +10030d88: 075b lsls r3, r3, #29 +10030d8a: d503 bpl.n 10030d94 +10030d8c: 4620 mov r0, r4 +10030d8e: 2100 movs r1, #0 +10030d90: f7ff fc86 bl 100306a0 +10030d94: f8d6 3df8 ldr.w r3, [r6, #3576] ; 0xdf8 +10030d98: 03d8 lsls r0, r3, #15 +10030d9a: d509 bpl.n 10030db0 +10030d9c: f897 3a78 ldrb.w r3, [r7, #2680] ; 0xa78 +10030da0: b133 cbz r3, 10030db0 +10030da2: 2300 movs r3, #0 +10030da4: f887 3a78 strb.w r3, [r7, #2680] ; 0xa78 +10030da8: 4638 mov r0, r7 +10030daa: 2104 movs r1, #4 +10030dac: f7ff fc78 bl 100306a0 +10030db0: f8d6 3df8 ldr.w r3, [r6, #3576] ; 0xdf8 +10030db4: 0799 lsls r1, r3, #30 +10030db6: d105 bne.n 10030dc4 +10030db8: f8d6 2df4 ldr.w r2, [r6, #3572] ; 0xdf4 +10030dbc: 4b5d ldr r3, [pc, #372] ; (10030f34 ) +10030dbe: 4013 ands r3, r2 +10030dc0: 2b00 cmp r3, #0 +10030dc2: d041 beq.n 10030e48 +10030dc4: f8d6 2e04 ldr.w r2, [r6, #3588] ; 0xe04 +10030dc8: f8d6 3e00 ldr.w r3, [r6, #3584] ; 0xe00 +10030dcc: f022 0203 bic.w r2, r2, #3 +10030dd0: f023 0310 bic.w r3, r3, #16 +10030dd4: f8c6 2e04 str.w r2, [r6, #3588] ; 0xe04 +10030dd8: f8c6 3e00 str.w r3, [r6, #3584] ; 0xe00 +10030ddc: f44f 717b mov.w r1, #1004 ; 0x3ec +10030de0: 4620 mov r0, r4 +10030de2: f00b fc58 bl 1003c696 +10030de6: 4620 mov r0, r4 +10030de8: f44f 7198 mov.w r1, #304 ; 0x130 +10030dec: f8d6 2e00 ldr.w r2, [r6, #3584] ; 0xe00 +10030df0: f00b fc51 bl 1003c696 +10030df4: f8d6 7df8 ldr.w r7, [r6, #3576] ; 0xdf8 +10030df8: f017 0702 ands.w r7, r7, #2 +10030dfc: d103 bne.n 10030e06 +10030dfe: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030e02: 06da lsls r2, r3, #27 +10030e04: d51b bpl.n 10030e3e +10030e06: f504 612c add.w r1, r4, #2752 ; 0xac0 +10030e0a: e9d1 2316 ldrd r2, r3, [r1, #88] ; 0x58 +10030e0e: 3201 adds r2, #1 +10030e10: f143 0300 adc.w r3, r3, #0 +10030e14: e9c1 2316 strd r2, r3, [r1, #88] ; 0x58 +10030e18: 4b47 ldr r3, [pc, #284] ; (10030f38 ) +10030e1a: f04f 4280 mov.w r2, #1073741824 ; 0x40000000 +10030e1e: e9d3 0102 ldrd r0, r1, [r3, #8] +10030e22: 2300 movs r3, #0 +10030e24: 4002 ands r2, r0 +10030e26: 400b ands r3, r1 +10030e28: ea52 0103 orrs.w r1, r2, r3 +10030e2c: d007 beq.n 10030e3e +10030e2e: f8d6 2df4 ldr.w r2, [r6, #3572] ; 0xdf4 +10030e32: 4842 ldr r0, [pc, #264] ; (10030f3c ) +10030e34: 4639 mov r1, r7 +10030e36: f002 0210 and.w r2, r2, #16 +10030e3a: f011 f965 bl 10042108 +10030e3e: f504 50ba add.w r0, r4, #5952 ; 0x1740 +10030e42: 3010 adds r0, #16 +10030e44: f7eb fffa bl 1001ce3c +10030e48: 4620 mov r0, r4 +10030e4a: f7ff ff29 bl 10030ca0 +10030e4e: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030e52: 039b lsls r3, r3, #14 +10030e54: d50f bpl.n 10030e76 +10030e56: 4620 mov r0, r4 +10030e58: f005 fb5a bl 10036510 +10030e5c: f896 3e3c ldrb.w r3, [r6, #3644] ; 0xe3c +10030e60: b14b cbz r3, 10030e76 +10030e62: f8d6 3e28 ldr.w r3, [r6, #3624] ; 0xe28 +10030e66: f606 6018 addw r0, r6, #3608 ; 0xe18 +10030e6a: f043 0301 orr.w r3, r3, #1 +10030e6e: f8c6 3e28 str.w r3, [r6, #3624] ; 0xe28 +10030e72: f7eb ffe3 bl 1001ce3c +10030e76: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030e7a: 009f lsls r7, r3, #2 +10030e7c: d50c bpl.n 10030e98 +10030e7e: f896 3e3c ldrb.w r3, [r6, #3644] ; 0xe3c +10030e82: b14b cbz r3, 10030e98 +10030e84: f8d6 3e28 ldr.w r3, [r6, #3624] ; 0xe28 +10030e88: f606 6018 addw r0, r6, #3608 ; 0xe18 +10030e8c: f043 0308 orr.w r3, r3, #8 +10030e90: f8c6 3e28 str.w r3, [r6, #3624] ; 0xe28 +10030e94: f7eb ffd2 bl 1001ce3c +10030e98: f8d6 3dfc ldr.w r3, [r6, #3580] ; 0xdfc +10030e9c: 07d8 lsls r0, r3, #31 +10030e9e: d502 bpl.n 10030ea6 +10030ea0: 4620 mov r0, r4 +10030ea2: f005 f987 bl 100361b4 +10030ea6: f8d6 3dfc ldr.w r3, [r6, #3580] ; 0xdfc +10030eaa: 0799 lsls r1, r3, #30 +10030eac: d502 bpl.n 10030eb4 +10030eae: 4620 mov r0, r4 +10030eb0: f005 f9b6 bl 10036220 +10030eb4: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030eb8: 035a lsls r2, r3, #13 +10030eba: d502 bpl.n 10030ec2 +10030ebc: 4620 mov r0, r4 +10030ebe: f005 f9c9 bl 10036254 +10030ec2: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030ec6: 031b lsls r3, r3, #12 +10030ec8: d502 bpl.n 10030ed0 +10030eca: 4620 mov r0, r4 +10030ecc: f005 f9d0 bl 10036270 +10030ed0: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030ed4: 02df lsls r7, r3, #11 +10030ed6: d502 bpl.n 10030ede +10030ed8: 4620 mov r0, r4 +10030eda: f005 f9e1 bl 100362a0 +10030ede: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030ee2: 0298 lsls r0, r3, #10 +10030ee4: d502 bpl.n 10030eec +10030ee6: 4620 mov r0, r4 +10030ee8: f005 fa04 bl 100362f4 +10030eec: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030ef0: 0259 lsls r1, r3, #9 +10030ef2: d502 bpl.n 10030efa +10030ef4: 4620 mov r0, r4 +10030ef6: f005 fa1c bl 10036332 +10030efa: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030efe: 019a lsls r2, r3, #6 +10030f00: d502 bpl.n 10030f08 +10030f02: 4620 mov r0, r4 +10030f04: f005 fa33 bl 1003636e +10030f08: f8d6 3df4 ldr.w r3, [r6, #3572] ; 0xdf4 +10030f0c: 079b lsls r3, r3, #30 +10030f0e: d502 bpl.n 10030f16 +10030f10: 4620 mov r0, r4 +10030f12: f005 fa35 bl 10036380 +10030f16: 2300 movs r3, #0 +10030f18: 4628 mov r0, r5 +10030f1a: f8c6 3df4 str.w r3, [r6, #3572] ; 0xdf4 +10030f1e: f8c6 3df8 str.w r3, [r6, #3576] ; 0xdf8 +10030f22: f8c6 3dfc str.w r3, [r6, #3580] ; 0xdfc +10030f26: a901 add r1, sp, #4 +10030f28: f7eb ffde bl 1001cee8 +10030f2c: 2001 movs r0, #1 +10030f2e: b003 add sp, #12 +10030f30: bdf0 pop {r4, r5, r6, r7, pc} +10030f32: bf00 nop +10030f34: 00040010 .word 0x00040010 +10030f38: 10000720 .word 0x10000720 +10030f3c: 1004a938 .word 0x1004a938 + +10030f40 : +10030f40: b510 push {r4, lr} +10030f42: 4604 mov r4, r0 +10030f44: f000 fbdc bl 10031700 +10030f48: f241 73b1 movw r3, #6065 ; 0x17b1 +10030f4c: 5ce3 ldrb r3, [r4, r3] +10030f4e: b953 cbnz r3, 10030f66 +10030f50: 4620 mov r0, r4 +10030f52: f7f3 fc60 bl 10024816 +10030f56: b130 cbz r0, 10030f66 +10030f58: f241 73a8 movw r3, #6056 ; 0x17a8 +10030f5c: 58e0 ldr r0, [r4, r3] +10030f5e: e8bd 4010 ldmia.w sp!, {r4, lr} +10030f62: f000 bbcd b.w 10031700 +10030f66: bd10 pop {r4, pc} + +10030f68 : +10030f68: b510 push {r4, lr} +10030f6a: 2100 movs r1, #0 +10030f6c: 2228 movs r2, #40 ; 0x28 +10030f6e: 4604 mov r4, r0 +10030f70: f7eb ff2e bl 1001cdd0 +10030f74: 4b06 ldr r3, [pc, #24] ; (10030f90 ) +10030f76: 60a3 str r3, [r4, #8] +10030f78: 4b06 ldr r3, [pc, #24] ; (10030f94 ) +10030f7a: 60e3 str r3, [r4, #12] +10030f7c: 4b06 ldr r3, [pc, #24] ; (10030f98 ) +10030f7e: 6123 str r3, [r4, #16] +10030f80: 4b06 ldr r3, [pc, #24] ; (10030f9c ) +10030f82: 6163 str r3, [r4, #20] +10030f84: 4b06 ldr r3, [pc, #24] ; (10030fa0 ) +10030f86: 61a3 str r3, [r4, #24] +10030f88: 4b06 ldr r3, [pc, #24] ; (10030fa4 ) +10030f8a: 61e3 str r3, [r4, #28] +10030f8c: bd10 pop {r4, pc} +10030f8e: bf00 nop +10030f90: 100301eb .word 0x100301eb +10030f94: 1003018f .word 0x1003018f +10030f98: 10030135 .word 0x10030135 +10030f9c: 100300d9 .word 0x100300d9 +10030fa0: 1003007d .word 0x1003007d +10030fa4: 10030021 .word 0x10030021 + +10030fa8 : +10030fa8: b570 push {r4, r5, r6, lr} +10030faa: 4604 mov r4, r0 +10030fac: 460d mov r5, r1 +10030fae: f600 06c8 addw r6, r0, #2248 ; 0x8c8 +10030fb2: f7f3 fc30 bl 10024816 +10030fb6: b140 cbz r0, 10030fca +10030fb8: f241 73b1 movw r3, #6065 ; 0x17b1 +10030fbc: 5ce3 ldrb r3, [r4, r3] +10030fbe: b123 cbz r3, 10030fca +10030fc0: f241 73a8 movw r3, #6056 ; 0x17a8 +10030fc4: 58e6 ldr r6, [r4, r3] +10030fc6: f606 06c8 addw r6, r6, #2248 ; 0x8c8 +10030fca: eb06 1345 add.w r3, r6, r5, lsl #5 +10030fce: 2d04 cmp r5, #4 +10030fd0: f103 0390 add.w r3, r3, #144 ; 0x90 +10030fd4: d008 beq.n 10030fe8 +10030fd6: 69d9 ldr r1, [r3, #28] +10030fd8: 689a ldr r2, [r3, #8] +10030fda: 440a add r2, r1 +10030fdc: 68d9 ldr r1, [r3, #12] +10030fde: fbb2 f0f1 udiv r0, r2, r1 +10030fe2: fb01 2210 mls r2, r1, r0, r2 +10030fe6: e000 b.n 10030fea +10030fe8: 2200 movs r2, #0 +10030fea: 6818 ldr r0, [r3, #0] +10030fec: eb00 1042 add.w r0, r0, r2, lsl #5 +10030ff0: bd70 pop {r4, r5, r6, pc} + +10030ff2 : +10030ff2: f890 20d0 ldrb.w r2, [r0, #208] ; 0xd0 +10030ff6: f8d0 3084 ldr.w r3, [r0, #132] ; 0x84 +10030ffa: b112 cbz r2, 10031002 +10030ffc: 2240 movs r2, #64 ; 0x40 +10030ffe: 631a str r2, [r3, #48] ; 0x30 +10031000: 4770 bx lr +10031002: 2228 movs r2, #40 ; 0x28 +10031004: 631a str r2, [r3, #48] ; 0x30 +10031006: 6982 ldr r2, [r0, #24] +10031008: 63da str r2, [r3, #60] ; 0x3c +1003100a: 691a ldr r2, [r3, #16] +1003100c: 3228 adds r2, #40 ; 0x28 +1003100e: 639a str r2, [r3, #56] ; 0x38 +10031010: 2202 movs r2, #2 +10031012: 659a str r2, [r3, #88] ; 0x58 +10031014: f8d0 20b4 ldr.w r2, [r0, #180] ; 0xb4 +10031018: f8d0 30a8 ldr.w r3, [r0, #168] ; 0xa8 +1003101c: 4413 add r3, r2 +1003101e: f8c0 3098 str.w r3, [r0, #152] ; 0x98 +10031022: 4770 bx lr + +10031024 : +10031024: b570 push {r4, r5, r6, lr} +10031026: 4604 mov r4, r0 +10031028: 460e mov r6, r1 +1003102a: f600 05c8 addw r5, r0, #2248 ; 0x8c8 +1003102e: f7f3 fbf2 bl 10024816 +10031032: b140 cbz r0, 10031046 +10031034: f241 73b1 movw r3, #6065 ; 0x17b1 +10031038: 5ce3 ldrb r3, [r4, r3] +1003103a: b123 cbz r3, 10031046 +1003103c: f241 73a8 movw r3, #6056 ; 0x17a8 +10031040: 58e5 ldr r5, [r4, r3] +10031042: f605 05c8 addw r5, r5, #2248 ; 0x8c8 +10031046: 7833 ldrb r3, [r6, #0] +10031048: 3b01 subs r3, #1 +1003104a: b2db uxtb r3, r3 +1003104c: 2b11 cmp r3, #17 +1003104e: bf96 itet ls +10031050: 4a07 ldrls r2, [pc, #28] ; (10031070 ) +10031052: 2302 movhi r3, #2 +10031054: 5cd3 ldrbls r3, [r2, r3] +10031056: eb05 1543 add.w r5, r5, r3, lsl #5 +1003105a: f8d5 009c ldr.w r0, [r5, #156] ; 0x9c +1003105e: f8d5 30ac ldr.w r3, [r5, #172] ; 0xac +10031062: 1ac0 subs r0, r0, r3 +10031064: 2801 cmp r0, #1 +10031066: bf94 ite ls +10031068: 2000 movls r0, #0 +1003106a: 2001 movhi r0, #1 +1003106c: bd70 pop {r4, r5, r6, pc} +1003106e: bf00 nop +10031070: 1004a96a .word 0x1004a96a + +10031074 : +10031074: b508 push {r3, lr} +10031076: 6880 ldr r0, [r0, #8] +10031078: 3020 adds r0, #32 +1003107a: f7eb ff75 bl 1001cf68 +1003107e: 2001 movs r0, #1 +10031080: bd08 pop {r3, pc} + +10031082 : +10031082: 6880 ldr r0, [r0, #8] +10031084: 3020 adds r0, #32 +10031086: f7eb bf77 b.w 1001cf78 + +1003108a : +1003108a: 2806 cmp r0, #6 +1003108c: d809 bhi.n 100310a2 +1003108e: e8df f000 tbb [pc, r0] +10031092: 0909 .short 0x0909 +10031094: 06040909 .word 0x06040909 +10031098: 09 .byte 0x09 +10031099: 00 .byte 0x00 +1003109a: 200e movs r0, #14 +1003109c: 4770 bx lr +1003109e: 2004 movs r0, #4 +100310a0: 4770 bx lr +100310a2: 2010 movs r0, #16 +100310a4: 4770 bx lr + +100310a6 : +100310a6: b538 push {r3, r4, r5, lr} +100310a8: 4605 mov r5, r0 +100310aa: 460c mov r4, r1 +100310ac: 4608 mov r0, r1 +100310ae: b159 cbz r1, 100310c8 +100310b0: f7eb feac bl 1001ce0c +100310b4: 4620 mov r0, r4 +100310b6: f105 0110 add.w r1, r5, #16 +100310ba: f7eb fea1 bl 1001ce00 +100310be: 69eb ldr r3, [r5, #28] +100310c0: 2001 movs r0, #1 +100310c2: 3301 adds r3, #1 +100310c4: 61eb str r3, [r5, #28] +100310c6: bd38 pop {r3, r4, r5, pc} +100310c8: bd38 pop {r3, r4, r5, pc} + +100310ca : +100310ca: b538 push {r3, r4, r5, lr} +100310cc: 4604 mov r4, r0 +100310ce: 3010 adds r0, #16 +100310d0: f7eb ff40 bl 1001cf54 +100310d4: 2801 cmp r0, #1 +100310d6: d007 beq.n 100310e8 +100310d8: 6925 ldr r5, [r4, #16] +100310da: 4628 mov r0, r5 +100310dc: f7eb fe96 bl 1001ce0c +100310e0: 69e3 ldr r3, [r4, #28] +100310e2: 3b01 subs r3, #1 +100310e4: 61e3 str r3, [r4, #28] +100310e6: e000 b.n 100310ea +100310e8: 2500 movs r5, #0 +100310ea: 4628 mov r0, r5 +100310ec: bd38 pop {r3, r4, r5, pc} + +100310ee : +100310ee: f8d1 3084 ldr.w r3, [r1, #132] ; 0x84 +100310f2: b530 push {r4, r5, lr} +100310f4: 6d99 ldr r1, [r3, #88] ; 0x58 +100310f6: 250c movs r5, #12 +100310f8: fb05 3101 mla r1, r5, r1, r3 +100310fc: 4618 mov r0, r3 +100310fe: 194d adds r5, r1, r5 +10031100: 2100 movs r1, #0 +10031102: 300c adds r0, #12 +10031104: 42a8 cmp r0, r5 +10031106: d002 beq.n 1003110e +10031108: 6a44 ldr r4, [r0, #36] ; 0x24 +1003110a: 4421 add r1, r4 +1003110c: e7f9 b.n 10031102 +1003110e: f011 007f ands.w r0, r1, #127 ; 0x7f +10031112: bf18 it ne +10031114: 2001 movne r0, #1 +10031116: 6814 ldr r4, [r2, #0] +10031118: eb00 11d1 add.w r1, r0, r1, lsr #7 +1003111c: b2c9 uxtb r1, r1 +1003111e: f424 047f bic.w r4, r4, #16711680 ; 0xff0000 +10031122: ea44 4101 orr.w r1, r4, r1, lsl #16 +10031126: 6011 str r1, [r2, #0] +10031128: 8e18 ldrh r0, [r3, #48] ; 0x30 +1003112a: 0c09 lsrs r1, r1, #16 +1003112c: 0409 lsls r1, r1, #16 +1003112e: 4301 orrs r1, r0 +10031130: 6011 str r1, [r2, #0] +10031132: 6ad9 ldr r1, [r3, #44] ; 0x2c +10031134: 6051 str r1, [r2, #4] +10031136: 6d99 ldr r1, [r3, #88] ; 0x58 +10031138: 2904 cmp r1, #4 +1003113a: d816 bhi.n 1003116a +1003113c: 3208 adds r2, #8 +1003113e: 4619 mov r1, r3 +10031140: 2001 movs r0, #1 +10031142: 6d9c ldr r4, [r3, #88] ; 0x58 +10031144: 3208 adds r2, #8 +10031146: 42a0 cmp r0, r4 +10031148: f101 010c add.w r1, r1, #12 +1003114c: d20d bcs.n 1003116a +1003114e: 8e0c ldrh r4, [r1, #48] ; 0x30 +10031150: f832 5c06 ldrh.w r5, [r2, #-6] +10031154: 3001 adds r0, #1 +10031156: ea44 4405 orr.w r4, r4, r5, lsl #16 +1003115a: f024 4400 bic.w r4, r4, #2147483648 ; 0x80000000 +1003115e: f842 4c08 str.w r4, [r2, #-8] +10031162: 6acc ldr r4, [r1, #44] ; 0x2c +10031164: f842 4c04 str.w r4, [r2, #-4] +10031168: e7eb b.n 10031142 +1003116a: 2001 movs r0, #1 +1003116c: bd30 pop {r4, r5, pc} + +1003116e : +1003116e: b570 push {r4, r5, r6, lr} +10031170: eb00 1441 add.w r4, r0, r1, lsl #5 +10031174: 4605 mov r5, r0 +10031176: 4608 mov r0, r1 +10031178: f7ff ff87 bl 1003108a +1003117c: f8d4 3960 ldr.w r3, [r4, #2400] ; 0x960 +10031180: f8d4 2974 ldr.w r2, [r4, #2420] ; 0x974 +10031184: 30e8 adds r0, #232 ; 0xe8 +10031186: 441a add r2, r3 +10031188: f8d4 3964 ldr.w r3, [r4, #2404] ; 0x964 +1003118c: 0086 lsls r6, r0, #2 +1003118e: fbb2 f4f3 udiv r4, r2, r3 +10031192: fb03 2414 mls r4, r3, r4, r2 +10031196: 4628 mov r0, r5 +10031198: 4631 mov r1, r6 +1003119a: 4622 mov r2, r4 +1003119c: f00b fa7b bl 1003c696 +100311a0: b918 cbnz r0, 100311aa +100311a2: 2001 movs r0, #1 +100311a4: f7eb ff52 bl 1001d04c +100311a8: e7f5 b.n 10031196 +100311aa: bd70 pop {r4, r5, r6, pc} + +100311ac : +100311ac: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100311b0: 6883 ldr r3, [r0, #8] +100311b2: b087 sub sp, #28 +100311b4: 4605 mov r5, r0 +100311b6: f600 0ac8 addw sl, r0, #2248 ; 0x8c8 +100311ba: 4608 mov r0, r1 +100311bc: 460c mov r4, r1 +100311be: 9302 str r3, [sp, #8] +100311c0: f8d1 7084 ldr.w r7, [r1, #132] ; 0x84 +100311c4: f7fe f98e bl 1002f4e4 +100311c8: 2100 movs r1, #0 +100311ca: 4606 mov r6, r0 +100311cc: 4628 mov r0, r5 +100311ce: f004 ff07 bl 10035fe0 +100311d2: 69a3 ldr r3, [r4, #24] +100311d4: 4628 mov r0, r5 +100311d6: 9303 str r3, [sp, #12] +100311d8: f7f3 fb1d bl 10024816 +100311dc: 2800 cmp r0, #0 +100311de: d05d beq.n 1003129c +100311e0: f241 73b1 movw r3, #6065 ; 0x17b1 +100311e4: 5ceb ldrb r3, [r5, r3] +100311e6: 2b00 cmp r3, #0 +100311e8: d058 beq.n 1003129c +100311ea: f241 73a8 movw r3, #6056 ; 0x17a8 +100311ee: f855 8003 ldr.w r8, [r5, r3] +100311f2: a905 add r1, sp, #20 +100311f4: f8d8 3008 ldr.w r3, [r8, #8] +100311f8: f103 0b20 add.w fp, r3, #32 +100311fc: 4658 mov r0, fp +100311fe: f7eb fe6b bl 1001ced8 +10031202: 2e04 cmp r6, #4 +10031204: d009 beq.n 1003121a +10031206: 4640 mov r0, r8 +10031208: f104 0168 add.w r1, r4, #104 ; 0x68 +1003120c: f7ff ff0a bl 10031024 +10031210: 4681 mov r9, r0 +10031212: 4658 mov r0, fp +10031214: f1b9 0f00 cmp.w r9, #0 +10031218: d051 beq.n 100312be +1003121a: b2f1 uxtb r1, r6 +1003121c: 4640 mov r0, r8 +1003121e: f7ff fec3 bl 10030fa8 +10031222: 4681 mov r9, r0 +10031224: 4620 mov r0, r4 +10031226: f7ff fee4 bl 10030ff2 +1003122a: f8d9 3004 ldr.w r3, [r9, #4] +1003122e: 2e04 cmp r6, #4 +10031230: bf08 it eq +10031232: 2201 moveq r2, #1 +10031234: 62fb str r3, [r7, #44] ; 0x2c +10031236: bf08 it eq +10031238: f885 2a78 strbeq.w r2, [r5, #2680] ; 0xa78 +1003123c: b93b cbnz r3, 1003124e +1003123e: 4658 mov r0, fp +10031240: a905 add r1, sp, #20 +10031242: 9301 str r3, [sp, #4] +10031244: f7eb fe50 bl 1001cee8 +10031248: 9b01 ldr r3, [sp, #4] +1003124a: 461e mov r6, r3 +1003124c: e080 b.n 10031350 +1003124e: 4619 mov r1, r3 +10031250: 4620 mov r0, r4 +10031252: f001 fe56 bl 10032f02 +10031256: 4640 mov r0, r8 +10031258: 4621 mov r1, r4 +1003125a: 464a mov r2, r9 +1003125c: f7ff ff47 bl 100310ee +10031260: 8b3b ldrh r3, [r7, #24] +10031262: 2b02 cmp r3, #2 +10031264: d006 beq.n 10031274 +10031266: eb08 1046 add.w r0, r8, r6, lsl #5 +1003126a: f600 1058 addw r0, r0, #2392 ; 0x958 +1003126e: 4639 mov r1, r7 +10031270: f7ff ff19 bl 100310a6 +10031274: 9b02 ldr r3, [sp, #8] +10031276: a905 add r1, sp, #20 +10031278: f103 0020 add.w r0, r3, #32 +1003127c: f7eb fe34 bl 1001cee8 +10031280: 2e04 cmp r6, #4 +10031282: d106 bne.n 10031292 +10031284: f8d9 3000 ldr.w r3, [r9] +10031288: f043 4300 orr.w r3, r3, #2147483648 ; 0x80000000 +1003128c: f8c9 3000 str.w r3, [r9] +10031290: e058 b.n 10031344 +10031292: 4640 mov r0, r8 +10031294: 4631 mov r1, r6 +10031296: f7ff ff6a bl 1003116e +1003129a: e053 b.n 10031344 +1003129c: 9b02 ldr r3, [sp, #8] +1003129e: a905 add r1, sp, #20 +100312a0: f103 0820 add.w r8, r3, #32 +100312a4: 4640 mov r0, r8 +100312a6: f7eb fe17 bl 1001ced8 +100312aa: 2e04 cmp r6, #4 +100312ac: d00c beq.n 100312c8 +100312ae: 4628 mov r0, r5 +100312b0: f104 0168 add.w r1, r4, #104 ; 0x68 +100312b4: f7ff feb6 bl 10031024 +100312b8: 4681 mov r9, r0 +100312ba: b928 cbnz r0, 100312c8 +100312bc: 4640 mov r0, r8 +100312be: a905 add r1, sp, #20 +100312c0: f7eb fe12 bl 1001cee8 +100312c4: 464e mov r6, r9 +100312c6: e043 b.n 10031350 +100312c8: b2f1 uxtb r1, r6 +100312ca: 6fe0 ldr r0, [r4, #124] ; 0x7c +100312cc: f7ff fe6c bl 10030fa8 +100312d0: 4681 mov r9, r0 +100312d2: 4620 mov r0, r4 +100312d4: f7ff fe8d bl 10030ff2 +100312d8: f8d9 b004 ldr.w fp, [r9, #4] +100312dc: 2e04 cmp r6, #4 +100312de: bf08 it eq +100312e0: 2301 moveq r3, #1 +100312e2: f8c7 b02c str.w fp, [r7, #44] ; 0x2c +100312e6: bf08 it eq +100312e8: f885 3a78 strbeq.w r3, [r5, #2680] ; 0xa78 +100312ec: f1bb 0f00 cmp.w fp, #0 +100312f0: d105 bne.n 100312fe +100312f2: 4640 mov r0, r8 +100312f4: a905 add r1, sp, #20 +100312f6: f7eb fdf7 bl 1001cee8 +100312fa: 465e mov r6, fp +100312fc: e028 b.n 10031350 +100312fe: 4620 mov r0, r4 +10031300: 4659 mov r1, fp +10031302: f001 fdfe bl 10032f02 +10031306: 4628 mov r0, r5 +10031308: 4621 mov r1, r4 +1003130a: 464a mov r2, r9 +1003130c: f7ff feef bl 100310ee +10031310: 8b3b ldrh r3, [r7, #24] +10031312: 2b02 cmp r3, #2 +10031314: d005 beq.n 10031322 +10031316: eb0a 1046 add.w r0, sl, r6, lsl #5 +1003131a: 3090 adds r0, #144 ; 0x90 +1003131c: 4639 mov r1, r7 +1003131e: f7ff fec2 bl 100310a6 +10031322: 2e04 cmp r6, #4 +10031324: d106 bne.n 10031334 +10031326: f8d9 3000 ldr.w r3, [r9] +1003132a: f043 4300 orr.w r3, r3, #2147483648 ; 0x80000000 +1003132e: f8c9 3000 str.w r3, [r9] +10031332: e003 b.n 1003133c +10031334: 4628 mov r0, r5 +10031336: 4631 mov r1, r6 +10031338: f7ff ff19 bl 1003116e +1003133c: 4640 mov r0, r8 +1003133e: a905 add r1, sp, #20 +10031340: f7eb fdd2 bl 1001cee8 +10031344: 4628 mov r0, r5 +10031346: 4621 mov r1, r4 +10031348: 9a03 ldr r2, [sp, #12] +1003134a: f7fd fe2e bl 1002efaa +1003134e: 2601 movs r6, #1 +10031350: 4628 mov r0, r5 +10031352: 2101 movs r1, #1 +10031354: f004 fe44 bl 10035fe0 +10031358: 2e01 cmp r6, #1 +1003135a: d008 beq.n 1003136e +1003135c: 4639 mov r1, r7 +1003135e: 4650 mov r0, sl +10031360: f7fe fdd8 bl 1002ff14 +10031364: f107 0024 add.w r0, r7, #36 ; 0x24 +10031368: 2101 movs r1, #1 +1003136a: f7fe fda0 bl 1002feae +1003136e: 4650 mov r0, sl +10031370: 4621 mov r1, r4 +10031372: f7fd fe8f bl 1002f094 +10031376: b2f0 uxtb r0, r6 +10031378: b007 add sp, #28 +1003137a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1003137e : +1003137e: b570 push {r4, r5, r6, lr} +10031380: 4604 mov r4, r0 +10031382: 460e mov r6, r1 +10031384: f600 05c8 addw r5, r0, #2248 ; 0x8c8 +10031388: f7f3 fa45 bl 10024816 +1003138c: b140 cbz r0, 100313a0 +1003138e: f241 73b1 movw r3, #6065 ; 0x17b1 +10031392: 5ce3 ldrb r3, [r4, r3] +10031394: b123 cbz r3, 100313a0 +10031396: f241 73a8 movw r3, #6056 ; 0x17a8 +1003139a: 58e5 ldr r5, [r4, r3] +1003139c: f605 05c8 addw r5, r5, #2248 ; 0x8c8 +100313a0: eb05 1546 add.w r5, r5, r6, lsl #5 +100313a4: f8d5 009c ldr.w r0, [r5, #156] ; 0x9c +100313a8: f8d5 30ac ldr.w r3, [r5, #172] ; 0xac +100313ac: 1ac0 subs r0, r0, r3 +100313ae: 2801 cmp r0, #1 +100313b0: bf94 ite ls +100313b2: 2000 movls r0, #0 +100313b4: 2001 movhi r0, #1 +100313b6: bd70 pop {r4, r5, r6, pc} + +100313b8 : +100313b8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100313bc: 2301 movs r3, #1 +100313be: b089 sub sp, #36 ; 0x24 +100313c0: 9305 str r3, [sp, #20] +100313c2: 2302 movs r3, #2 +100313c4: 9101 str r1, [sp, #4] +100313c6: 2500 movs r5, #0 +100313c8: 9306 str r3, [sp, #24] +100313ca: a903 add r1, sp, #12 +100313cc: 2303 movs r3, #3 +100313ce: 4682 mov sl, r0 +100313d0: 4693 mov fp, r2 +100313d2: 9504 str r5, [sp, #16] +100313d4: 9307 str r3, [sp, #28] +100313d6: f7eb fd8f bl 1001cef8 +100313da: 455d cmp r5, fp +100313dc: da2d bge.n 1003143a +100313de: ab04 add r3, sp, #16 +100313e0: f853 3025 ldr.w r3, [r3, r5, lsl #2] +100313e4: 9a01 ldr r2, [sp, #4] +100313e6: f852 7033 ldr.w r7, [r2, r3, lsl #3] +100313ea: eb02 08c3 add.w r8, r2, r3, lsl #3 +100313ee: 683e ldr r6, [r7, #0] +100313f0: 4638 mov r0, r7 +100313f2: 4631 mov r1, r6 +100313f4: f7eb fdb4 bl 1001cf60 +100313f8: b9e8 cbnz r0, 10031436 +100313fa: 68b4 ldr r4, [r6, #8] +100313fc: f106 0908 add.w r9, r6, #8 +10031400: 4648 mov r0, r9 +10031402: 4621 mov r1, r4 +10031404: f7eb fdac bl 1001cf60 +10031408: b998 cbnz r0, 10031432 +1003140a: 4620 mov r0, r4 +1003140c: f7eb fcfe bl 1001ce0c +10031410: 6972 ldr r2, [r6, #20] +10031412: 3a01 subs r2, #1 +10031414: 6172 str r2, [r6, #20] +10031416: b164 cbz r4, 10031432 +10031418: f8d8 2004 ldr.w r2, [r8, #4] +1003141c: 4648 mov r0, r9 +1003141e: 3a01 subs r2, #1 +10031420: f8c8 2004 str.w r2, [r8, #4] +10031424: f7eb fd96 bl 1001cf54 +10031428: b140 cbz r0, 1003143c +1003142a: 4630 mov r0, r6 +1003142c: f7eb fcee bl 1001ce0c +10031430: e004 b.n 1003143c +10031432: 6836 ldr r6, [r6, #0] +10031434: e7dc b.n 100313f0 +10031436: 3501 adds r5, #1 +10031438: e7cf b.n 100313da +1003143a: 2400 movs r4, #0 +1003143c: 4650 mov r0, sl +1003143e: a903 add r1, sp, #12 +10031440: f7eb fd62 bl 1001cf08 +10031444: 4620 mov r0, r4 +10031446: b009 add sp, #36 ; 0x24 +10031448: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1003144c : +1003144c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10031450: 468a mov sl, r1 +10031452: 4611 mov r1, r2 +10031454: b095 sub sp, #84 ; 0x54 +10031456: 4680 mov r8, r0 +10031458: f811 bf57 ldrb.w fp, [r1, #87]! +1003145c: f500 603d add.w r0, r0, #3024 ; 0xbd0 +10031460: 4616 mov r6, r2 +10031462: f102 0508 add.w r5, r2, #8 +10031466: f7fc faa5 bl 1002d9b4 +1003146a: 4604 mov r4, r0 +1003146c: 2800 cmp r0, #0 +1003146e: f000 8143 beq.w 100316f8 +10031472: af08 add r7, sp, #32 +10031474: 4640 mov r0, r8 +10031476: 4639 mov r1, r7 +10031478: 462a mov r2, r5 +1003147a: f7fd fbd8 bl 1002ec2e +1003147e: 2800 cmp r0, #0 +10031480: f000 813a beq.w 100316f8 +10031484: 4650 mov r0, sl +10031486: a902 add r1, sp, #8 +10031488: f009 ffcf bl 1003b42a <_rtw_open_pktfile> +1003148c: a802 add r0, sp, #8 +1003148e: 2100 movs r1, #0 +10031490: 8a32 ldrh r2, [r6, #16] +10031492: f009 ffd3 bl 1003b43c <_rtw_pktfile_read> +10031496: f8bd 3020 ldrh.w r3, [sp, #32] +1003149a: f8b6 9012 ldrh.w r9, [r6, #18] +1003149e: f443 6380 orr.w r3, r3, #1024 ; 0x400 +100314a2: f8ad 3020 strh.w r3, [sp, #32] +100314a6: 7f73 ldrb r3, [r6, #29] +100314a8: f00b 0b01 and.w fp, fp, #1 +100314ac: 44b9 add r9, r7 +100314ae: 2b00 cmp r3, #0 +100314b0: f000 80d5 beq.w 1003165e +100314b4: 7f33 ldrb r3, [r6, #28] +100314b6: 3b01 subs r3, #1 +100314b8: 2b04 cmp r3, #4 +100314ba: f200 80c8 bhi.w 1003164e +100314be: e8df f003 tbb [pc, r3] +100314c2: 2603 .short 0x2603 +100314c4: 8ac6 .short 0x8ac6 +100314c6: 03 .byte 0x03 +100314c7: 00 .byte 0x00 +100314c8: f894 3148 ldrb.w r3, [r4, #328] ; 0x148 +100314cc: 4621 mov r1, r4 +100314ce: 77f3 strb r3, [r6, #31] +100314d0: f894 3149 ldrb.w r3, [r4, #329] ; 0x149 +100314d4: 2500 movs r5, #0 +100314d6: f886 3020 strb.w r3, [r6, #32] +100314da: f894 314a ldrb.w r3, [r4, #330] ; 0x14a +100314de: f06f 447f mvn.w r4, #4278190080 ; 0xff000000 +100314e2: f886 3021 strb.w r3, [r6, #33] ; 0x21 +100314e6: f896 305d ldrb.w r3, [r6, #93] ; 0x5d +100314ea: 019b lsls r3, r3, #6 +100314ec: f886 3022 strb.w r3, [r6, #34] ; 0x22 +100314f0: e9f1 2352 ldrd r2, r3, [r1, #328]! ; 0x148 +100314f4: 42ab cmp r3, r5 +100314f6: bf08 it eq +100314f8: 42a2 cmpeq r2, r4 +100314fa: d003 beq.n 10031504 +100314fc: 3201 adds r2, #1 +100314fe: f143 0300 adc.w r3, r3, #0 +10031502: e001 b.n 10031508 +10031504: 2200 movs r2, #0 +10031506: 2300 movs r3, #0 +10031508: e9c1 2300 strd r2, r3, [r1] +1003150c: e09f b.n 1003164e +1003150e: f894 3149 ldrb.w r3, [r4, #329] ; 0x149 +10031512: f504 7ea4 add.w lr, r4, #328 ; 0x148 +10031516: 77f3 strb r3, [r6, #31] +10031518: f894 3149 ldrb.w r3, [r4, #329] ; 0x149 +1003151c: f003 035f and.w r3, r3, #95 ; 0x5f +10031520: f043 0320 orr.w r3, r3, #32 +10031524: f886 3020 strb.w r3, [r6, #32] +10031528: f894 3148 ldrb.w r3, [r4, #328] ; 0x148 +1003152c: f886 3021 strb.w r3, [r6, #33] ; 0x21 +10031530: f1bb 0f00 cmp.w fp, #0 +10031534: d029 beq.n 1003158a +10031536: f896 305d ldrb.w r3, [r6, #93] ; 0x5d +1003153a: f04f 30ff mov.w r0, #4294967295 +1003153e: 019b lsls r3, r3, #6 +10031540: f043 0320 orr.w r3, r3, #32 +10031544: f886 3022 strb.w r3, [r6, #34] ; 0x22 +10031548: f894 314a ldrb.w r3, [r4, #330] ; 0x14a +1003154c: f64f 71ff movw r1, #65535 ; 0xffff +10031550: f886 3023 strb.w r3, [r6, #35] ; 0x23 +10031554: f894 314b ldrb.w r3, [r4, #331] ; 0x14b +10031558: f886 3024 strb.w r3, [r6, #36] ; 0x24 +1003155c: f894 314c ldrb.w r3, [r4, #332] ; 0x14c +10031560: f886 3025 strb.w r3, [r6, #37] ; 0x25 +10031564: f894 314d ldrb.w r3, [r4, #333] ; 0x14d +10031568: f886 3026 strb.w r3, [r6, #38] ; 0x26 +1003156c: e9de 2300 ldrd r2, r3, [lr] +10031570: 428b cmp r3, r1 +10031572: bf08 it eq +10031574: 4282 cmpeq r2, r0 +10031576: d003 beq.n 10031580 +10031578: 3201 adds r2, #1 +1003157a: f143 0300 adc.w r3, r3, #0 +1003157e: e001 b.n 10031584 +10031580: 2200 movs r2, #0 +10031582: 2300 movs r3, #0 +10031584: e9ce 2300 strd r2, r3, [lr] +10031588: e061 b.n 1003164e +1003158a: 2320 movs r3, #32 +1003158c: f886 3022 strb.w r3, [r6, #34] ; 0x22 +10031590: f894 314a ldrb.w r3, [r4, #330] ; 0x14a +10031594: f04f 32ff mov.w r2, #4294967295 +10031598: f886 3023 strb.w r3, [r6, #35] ; 0x23 +1003159c: f894 314b ldrb.w r3, [r4, #331] ; 0x14b +100315a0: f886 3024 strb.w r3, [r6, #36] ; 0x24 +100315a4: f894 314c ldrb.w r3, [r4, #332] ; 0x14c +100315a8: f886 3025 strb.w r3, [r6, #37] ; 0x25 +100315ac: f894 314d ldrb.w r3, [r4, #333] ; 0x14d +100315b0: f886 3026 strb.w r3, [r6, #38] ; 0x26 +100315b4: f64f 73ff movw r3, #65535 ; 0xffff +100315b8: e9de 4500 ldrd r4, r5, [lr] +100315bc: 429d cmp r5, r3 +100315be: bf08 it eq +100315c0: 4294 cmpeq r4, r2 +100315c2: d003 beq.n 100315cc +100315c4: 3401 adds r4, #1 +100315c6: f145 0500 adc.w r5, r5, #0 +100315ca: e001 b.n 100315d0 +100315cc: 2400 movs r4, #0 +100315ce: 2500 movs r5, #0 +100315d0: e9ce 4500 strd r4, r5, [lr] +100315d4: e03b b.n 1003164e +100315d6: f894 3148 ldrb.w r3, [r4, #328] ; 0x148 +100315da: f504 71a4 add.w r1, r4, #328 ; 0x148 +100315de: 77f3 strb r3, [r6, #31] +100315e0: f894 3149 ldrb.w r3, [r4, #329] ; 0x149 +100315e4: f886 3020 strb.w r3, [r6, #32] +100315e8: f1bb 0f00 cmp.w fp, #0 +100315ec: d008 beq.n 10031600 +100315ee: 2300 movs r3, #0 +100315f0: f886 3021 strb.w r3, [r6, #33] ; 0x21 +100315f4: f896 305d ldrb.w r3, [r6, #93] ; 0x5d +100315f8: 019b lsls r3, r3, #6 +100315fa: f043 0320 orr.w r3, r3, #32 +100315fe: e002 b.n 10031606 +10031600: f886 b021 strb.w fp, [r6, #33] ; 0x21 +10031604: 2320 movs r3, #32 +10031606: f886 3022 strb.w r3, [r6, #34] ; 0x22 +1003160a: f894 314a ldrb.w r3, [r4, #330] ; 0x14a +1003160e: f04f 32ff mov.w r2, #4294967295 +10031612: f886 3023 strb.w r3, [r6, #35] ; 0x23 +10031616: f894 314b ldrb.w r3, [r4, #331] ; 0x14b +1003161a: f886 3024 strb.w r3, [r6, #36] ; 0x24 +1003161e: f894 314c ldrb.w r3, [r4, #332] ; 0x14c +10031622: f886 3025 strb.w r3, [r6, #37] ; 0x25 +10031626: f894 314d ldrb.w r3, [r4, #333] ; 0x14d +1003162a: f886 3026 strb.w r3, [r6, #38] ; 0x26 +1003162e: f64f 73ff movw r3, #65535 ; 0xffff +10031632: e9d1 4500 ldrd r4, r5, [r1] +10031636: 429d cmp r5, r3 +10031638: bf08 it eq +1003163a: 4294 cmpeq r4, r2 +1003163c: d003 beq.n 10031646 +1003163e: 3401 adds r4, #1 +10031640: f145 0500 adc.w r5, r5, #0 +10031644: e001 b.n 1003164a +10031646: 2400 movs r4, #0 +10031648: 2500 movs r5, #0 +1003164a: e9c1 4500 strd r4, r5, [r1] +1003164e: 4648 mov r0, r9 +10031650: f106 011f add.w r1, r6, #31 +10031654: 7f72 ldrb r2, [r6, #29] +10031656: f7eb fba9 bl 1001cdac +1003165a: 7f73 ldrb r3, [r6, #29] +1003165c: 4499 add r9, r3 +1003165e: 4648 mov r0, r9 +10031660: 89b1 ldrh r1, [r6, #12] +10031662: f7fd fc5d bl 1002ef20 +10031666: 8a32 ldrh r2, [r6, #16] +10031668: f8da 3010 ldr.w r3, [sl, #16] +1003166c: 4481 add r9, r0 +1003166e: 4413 add r3, r2 +10031670: ebc7 0209 rsb r2, r7, r9 +10031674: 1a9c subs r4, r3, r2 +10031676: 4639 mov r1, r7 +10031678: 4605 mov r5, r0 +1003167a: 4620 mov r0, r4 +1003167c: 9301 str r3, [sp, #4] +1003167e: f7eb fb95 bl 1001cdac +10031682: f8d6 1084 ldr.w r1, [r6, #132] ; 0x84 +10031686: f1a4 0228 sub.w r2, r4, #40 ; 0x28 +1003168a: 6977 ldr r7, [r6, #20] +1003168c: 610a str r2, [r1, #16] +1003168e: f8c6 2080 str.w r2, [r6, #128] ; 0x80 +10031692: 7fb2 ldrb r2, [r6, #30] +10031694: 9b01 ldr r3, [sp, #4] +10031696: b132 cbz r2, 100316a6 +10031698: 7ab1 ldrb r1, [r6, #10] +1003169a: b121 cbz r1, 100316a6 +1003169c: 19d8 adds r0, r3, r7 +1003169e: f106 0131 add.w r1, r6, #49 ; 0x31 +100316a2: f7eb fb83 bl 1001cdac +100316a6: 8a72 ldrh r2, [r6, #18] +100316a8: 7f73 ldrb r3, [r6, #29] +100316aa: 4413 add r3, r2 +100316ac: 441d add r5, r3 +100316ae: 7ab3 ldrb r3, [r6, #10] +100316b0: b103 cbz r3, 100316b4 +100316b2: 7fb3 ldrb r3, [r6, #30] +100316b4: 442b add r3, r5 +100316b6: 441f add r7, r3 +100316b8: 8823 ldrh r3, [r4, #0] +100316ba: 61b7 str r7, [r6, #24] +100316bc: f423 6380 bic.w r3, r3, #1024 ; 0x400 +100316c0: 8023 strh r3, [r4, #0] +100316c2: 4640 mov r0, r8 +100316c4: 4631 mov r1, r6 +100316c6: f7fd f9ed bl 1002eaa4 +100316ca: b1a8 cbz r0, 100316f8 +100316cc: 4640 mov r0, r8 +100316ce: 4631 mov r1, r6 +100316d0: f7fd fa97 bl 1002ec02 +100316d4: 2400 movs r4, #0 +100316d6: f1bb 0f00 cmp.w fp, #0 +100316da: d104 bne.n 100316e6 +100316dc: 4640 mov r0, r8 +100316de: 4631 mov r1, r6 +100316e0: f7fd fbce bl 1002ee80 +100316e4: e001 b.n 100316ea +100316e6: f886 4044 strb.w r4, [r6, #68] ; 0x44 +100316ea: f8d6 3084 ldr.w r3, [r6, #132] ; 0x84 +100316ee: 6774 str r4, [r6, #116] ; 0x74 +100316f0: 2001 movs r0, #1 +100316f2: f8c3 a00c str.w sl, [r3, #12] +100316f6: e000 b.n 100316fa +100316f8: 2000 movs r0, #0 +100316fa: b015 add sp, #84 ; 0x54 +100316fc: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +10031700 : +10031700: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10031704: 4604 mov r4, r0 +10031706: f600 07c8 addw r7, r0, #2248 ; 0x8c8 +1003170a: f04f 0801 mov.w r8, #1 +1003170e: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +10031712: 3318 adds r3, #24 +10031714: 681b ldr r3, [r3, #0] +10031716: 2b01 cmp r3, #1 +10031718: d06b beq.n 100317f2 +1003171a: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +1003171e: 331c adds r3, #28 +10031720: 681b ldr r3, [r3, #0] +10031722: 2b01 cmp r3, #1 +10031724: d065 beq.n 100317f2 +10031726: 4620 mov r0, r4 +10031728: 2101 movs r1, #1 +1003172a: f7ff fe28 bl 1003137e +1003172e: b908 cbnz r0, 10031734 +10031730: 2000 movs r0, #0 +10031732: e01e b.n 10031772 +10031734: 4620 mov r0, r4 +10031736: 2100 movs r1, #0 +10031738: f7ff fe21 bl 1003137e +1003173c: 2800 cmp r0, #0 +1003173e: d0f7 beq.n 10031730 +10031740: 4620 mov r0, r4 +10031742: 2102 movs r1, #2 +10031744: f7ff fe1b bl 1003137e +10031748: 2800 cmp r0, #0 +1003174a: d0f1 beq.n 10031730 +1003174c: 4620 mov r0, r4 +1003174e: 2103 movs r1, #3 +10031750: f7ff fe15 bl 1003137e +10031754: 2800 cmp r0, #0 +10031756: d0eb beq.n 10031730 +10031758: 4620 mov r0, r4 +1003175a: 2105 movs r1, #5 +1003175c: f7ff fe0f bl 1003137e +10031760: 2800 cmp r0, #0 +10031762: d0e5 beq.n 10031730 +10031764: 4620 mov r0, r4 +10031766: 2106 movs r1, #6 +10031768: f7ff fe09 bl 1003137e +1003176c: 3000 adds r0, #0 +1003176e: bf18 it ne +10031770: 2001 movne r0, #1 +10031772: 2800 cmp r0, #0 +10031774: d03d beq.n 100317f2 +10031776: 4638 mov r0, r7 +10031778: f7fe fb9f bl 1002feba +1003177c: 4606 mov r6, r0 +1003177e: 2800 cmp r0, #0 +10031780: d037 beq.n 100317f2 +10031782: 4638 mov r0, r7 +10031784: f8d4 1950 ldr.w r1, [r4, #2384] ; 0x950 +10031788: f894 2954 ldrb.w r2, [r4, #2388] ; 0x954 +1003178c: f7ff fe14 bl 100313b8 +10031790: 4605 mov r5, r0 +10031792: b340 cbz r0, 100317e6 +10031794: 6933 ldr r3, [r6, #16] +10031796: f8c0 6084 str.w r6, [r0, #132] ; 0x84 +1003179a: f8c0 3080 str.w r3, [r0, #128] ; 0x80 +1003179e: 6f83 ldr r3, [r0, #120] ; 0x78 +100317a0: 6170 str r0, [r6, #20] +100317a2: f003 030f and.w r3, r3, #15 +100317a6: 2b01 cmp r3, #1 +100317a8: d10c bne.n 100317c4 +100317aa: f890 3041 ldrb.w r3, [r0, #65] ; 0x41 +100317ae: 2b0f cmp r3, #15 +100317b0: d808 bhi.n 100317c4 +100317b2: 4620 mov r0, r4 +100317b4: 6f69 ldr r1, [r5, #116] ; 0x74 +100317b6: 462a mov r2, r5 +100317b8: f7ff fe48 bl 1003144c +100317bc: 2300 movs r3, #0 +100317be: 4680 mov r8, r0 +100317c0: f885 30d0 strb.w r3, [r5, #208] ; 0xd0 +100317c4: f1b8 0f01 cmp.w r8, #1 +100317c8: d104 bne.n 100317d4 +100317ca: 4620 mov r0, r4 +100317cc: 4629 mov r1, r5 +100317ce: f7ff fced bl 100311ac +100317d2: e79c b.n 1003170e +100317d4: 4631 mov r1, r6 +100317d6: 4638 mov r0, r7 +100317d8: f7fe fb9c bl 1002ff14 +100317dc: 4638 mov r0, r7 +100317de: 4629 mov r1, r5 +100317e0: f7fd fc58 bl 1002f094 +100317e4: e793 b.n 1003170e +100317e6: 4638 mov r0, r7 +100317e8: 4631 mov r1, r6 +100317ea: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +100317ee: f7fe bb91 b.w 1002ff14 +100317f2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +100317f6 : +100317f6: b5f8 push {r3, r4, r5, r6, r7, lr} +100317f8: f8d1 7084 ldr.w r7, [r1, #132] ; 0x84 +100317fc: 460c mov r4, r1 +100317fe: 3168 adds r1, #104 ; 0x68 +10031800: 4605 mov r5, r0 +10031802: f7ff fc0f bl 10031024 +10031806: 4606 mov r6, r0 +10031808: b958 cbnz r0, 10031822 +1003180a: f605 05c8 addw r5, r5, #2248 ; 0x8c8 +1003180e: 4639 mov r1, r7 +10031810: 4628 mov r0, r5 +10031812: f7fe fb7f bl 1002ff14 +10031816: 4628 mov r0, r5 +10031818: 4621 mov r1, r4 +1003181a: f7fd fc3b bl 1002f094 +1003181e: 4630 mov r0, r6 +10031820: bdf8 pop {r3, r4, r5, r6, r7, pc} +10031822: 2300 movs r3, #0 +10031824: f884 30d0 strb.w r3, [r4, #208] ; 0xd0 +10031828: 4628 mov r0, r5 +1003182a: 4621 mov r1, r4 +1003182c: f7ff fcbe bl 100311ac +10031830: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10031832 : +10031832: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +10031836: f600 04c8 addw r4, r0, #2248 ; 0x8c8 +1003183a: 460d mov r5, r1 +1003183c: 4606 mov r6, r0 +1003183e: f101 0808 add.w r8, r1, #8 +10031842: 4620 mov r0, r4 +10031844: a901 add r1, sp, #4 +10031846: f7eb fb57 bl 1001cef8 +1003184a: f895 3068 ldrb.w r3, [r5, #104] ; 0x68 +1003184e: 2b11 cmp r3, #17 +10031850: d00a beq.n 10031868 +10031852: 4630 mov r0, r6 +10031854: 4629 mov r1, r5 +10031856: f7fd fe4f bl 1002f4f8 +1003185a: 2801 cmp r0, #1 +1003185c: d104 bne.n 10031868 +1003185e: 4620 mov r0, r4 +10031860: a901 add r1, sp, #4 +10031862: f7eb fb51 bl 1001cf08 +10031866: e067 b.n 10031938 +10031868: 4630 mov r0, r6 +1003186a: 4641 mov r1, r8 +1003186c: f7fd faed bl 1002ee4a +10031870: 2800 cmp r0, #0 +10031872: dd04 ble.n 1003187e +10031874: f895 3068 ldrb.w r3, [r5, #104] ; 0x68 +10031878: 2b11 cmp r3, #17 +1003187a: d117 bne.n 100318ac +1003187c: e006 b.n 1003188c +1003187e: 4630 mov r0, r6 +10031880: f105 0168 add.w r1, r5, #104 ; 0x68 +10031884: f7ff fbce bl 10031024 +10031888: 2800 cmp r0, #0 +1003188a: d0f3 beq.n 10031874 +1003188c: 6933 ldr r3, [r6, #16] +1003188e: f413 6808 ands.w r8, r3, #2176 ; 0x880 +10031892: d10b bne.n 100318ac +10031894: 4630 mov r0, r6 +10031896: f44f 6108 mov.w r1, #2176 ; 0x880 +1003189a: f7f2 ffd8 bl 1002484e +1003189e: 2801 cmp r0, #1 +100318a0: d004 beq.n 100318ac +100318a2: 4620 mov r0, r4 +100318a4: f7fe fb09 bl 1002feba +100318a8: 4607 mov r7, r0 +100318aa: bb28 cbnz r0, 100318f8 +100318ac: 4629 mov r1, r5 +100318ae: 4630 mov r0, r6 +100318b0: f7fd fc8b bl 1002f1ca +100318b4: a901 add r1, sp, #4 +100318b6: 4607 mov r7, r0 +100318b8: 4620 mov r0, r4 +100318ba: f7eb fb25 bl 1001cf08 +100318be: 2f01 cmp r7, #1 +100318c0: d013 beq.n 100318ea +100318c2: 4620 mov r0, r4 +100318c4: 4629 mov r1, r5 +100318c6: f7fd fbe5 bl 1002f094 +100318ca: e9d4 231a ldrd r2, r3, [r4, #104] ; 0x68 +100318ce: f112 32ff adds.w r2, r2, #4294967295 +100318d2: f143 33ff adc.w r3, r3, #4294967295 +100318d6: e9c4 231a strd r2, r3, [r4, #104] ; 0x68 +100318da: e9d4 231c ldrd r2, r3, [r4, #112] ; 0x70 +100318de: 3201 adds r2, #1 +100318e0: f143 0300 adc.w r3, r3, #0 +100318e4: e9c4 231c strd r2, r3, [r4, #112] ; 0x70 +100318e8: e026 b.n 10031938 +100318ea: f506 50bb add.w r0, r6, #5984 ; 0x1760 +100318ee: 3008 adds r0, #8 +100318f0: f7eb faa4 bl 1001ce3c +100318f4: 2000 movs r0, #0 +100318f6: e020 b.n 1003193a +100318f8: 4620 mov r0, r4 +100318fa: a901 add r1, sp, #4 +100318fc: f7eb fb04 bl 1001cf08 +10031900: 693b ldr r3, [r7, #16] +10031902: f8c5 7084 str.w r7, [r5, #132] ; 0x84 +10031906: f8c5 3080 str.w r3, [r5, #128] ; 0x80 +1003190a: 4630 mov r0, r6 +1003190c: 617d str r5, [r7, #20] +1003190e: 6f69 ldr r1, [r5, #116] ; 0x74 +10031910: f885 80d0 strb.w r8, [r5, #208] ; 0xd0 +10031914: 462a mov r2, r5 +10031916: f7ff fd99 bl 1003144c +1003191a: 2801 cmp r0, #1 +1003191c: d104 bne.n 10031928 +1003191e: 4630 mov r0, r6 +10031920: 4629 mov r1, r5 +10031922: f7ff fc43 bl 100311ac +10031926: e007 b.n 10031938 +10031928: 4639 mov r1, r7 +1003192a: 4620 mov r0, r4 +1003192c: f7fe faf2 bl 1002ff14 +10031930: 4620 mov r0, r4 +10031932: 4629 mov r1, r5 +10031934: f7fd fbae bl 1002f094 +10031938: 2001 movs r0, #1 +1003193a: b002 add sp, #8 +1003193c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10031940 : +10031940: 2a06 cmp r2, #6 +10031942: d812 bhi.n 1003196a +10031944: e8df f002 tbb [pc, r2] +10031948: 09090604 .word 0x09090604 +1003194c: 0f0b .short 0x0f0b +1003194e: 06 .byte 0x06 +1003194f: 00 .byte 0x00 +10031950: 2240 movs r2, #64 ; 0x40 +10031952: e00b b.n 1003196c +10031954: f44f 7280 mov.w r2, #256 ; 0x100 +10031958: e003 b.n 10031962 +1003195a: 2280 movs r2, #128 ; 0x80 +1003195c: e001 b.n 10031962 +1003195e: f44f 7200 mov.w r2, #512 ; 0x200 +10031962: 801a strh r2, [r3, #0] +10031964: 4770 bx lr +10031966: 2280 movs r2, #128 ; 0x80 +10031968: e000 b.n 1003196c +1003196a: 2200 movs r2, #0 +1003196c: 701a strb r2, [r3, #0] +1003196e: 4770 bx lr + +10031970 : +10031970: b538 push {r3, r4, r5, lr} +10031972: f241 6318 movw r3, #5656 ; 0x1618 +10031976: 58c4 ldr r4, [r0, r3] +10031978: 4605 mov r5, r0 +1003197a: f894 21a5 ldrb.w r2, [r4, #421] ; 0x1a5 +1003197e: f240 4122 movw r1, #1058 ; 0x422 +10031982: f042 0240 orr.w r2, r2, #64 ; 0x40 +10031986: f884 21a5 strb.w r2, [r4, #421] ; 0x1a5 +1003198a: f00a fe76 bl 1003c67a +1003198e: 4628 mov r0, r5 +10031990: f240 5141 movw r1, #1345 ; 0x541 +10031994: 22ff movs r2, #255 ; 0xff +10031996: f00a fe70 bl 1003c67a +1003199a: f894 21a6 ldrb.w r2, [r4, #422] ; 0x1a6 +1003199e: 4628 mov r0, r5 +100319a0: f042 0201 orr.w r2, r2, #1 +100319a4: f884 21a6 strb.w r2, [r4, #422] ; 0x1a6 +100319a8: f240 5142 movw r1, #1346 ; 0x542 +100319ac: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +100319b0: f00a be63 b.w 1003c67a + +100319b4 : +100319b4: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100319b8: f241 6418 movw r4, #5656 ; 0x1618 +100319bc: b087 sub sp, #28 +100319be: 4680 mov r8, r0 +100319c0: 4689 mov r9, r1 +100319c2: 9205 str r2, [sp, #20] +100319c4: 5905 ldr r5, [r0, r4] +100319c6: f7f2 ff26 bl 10024816 +100319ca: b150 cbz r0, 100319e2 +100319cc: f241 73b1 movw r3, #6065 ; 0x17b1 +100319d0: f818 3003 ldrb.w r3, [r8, r3] +100319d4: b12b cbz r3, 100319e2 +100319d6: f241 73a8 movw r3, #6056 ; 0x17a8 +100319da: f858 3003 ldr.w r3, [r8, r3] +100319de: 591c ldr r4, [r3, r4] +100319e0: e000 b.n 100319e4 +100319e2: 462c mov r4, r5 +100319e4: f1b9 0f04 cmp.w r9, #4 +100319e8: f200 80a6 bhi.w 10031b38 +100319ec: eb08 1349 add.w r3, r8, r9, lsl #5 +100319f0: f8d3 6708 ldr.w r6, [r3, #1800] ; 0x708 +100319f4: 2e00 cmp r6, #0 +100319f6: f000 809f beq.w 10031b38 +100319fa: f1b9 0f01 cmp.w r9, #1 +100319fe: f108 07fc add.w r7, r8, #252 ; 0xfc +10031a02: d02c beq.n 10031a5e +10031a04: d302 bcc.n 10031a0c +10031a06: f1b9 0f02 cmp.w r9, #2 +10031a0a: d13e bne.n 10031a8a +10031a0c: 4638 mov r0, r7 +10031a0e: f011 fe8f bl 10043730 <__rtw_get_rateset_len_veneer> +10031a12: 4683 mov fp, r0 +10031a14: 465a mov r2, fp +10031a16: 4639 mov r1, r7 +10031a18: 4640 mov r0, r8 +10031a1a: f7fc f8b7 bl 1002db8c +10031a1e: f000 010f and.w r1, r0, #15 +10031a22: 4640 mov r0, r8 +10031a24: f7fc f883 bl 1002db2e +10031a28: 4659 mov r1, fp +10031a2a: fa5f fa80 uxtb.w sl, r0 +10031a2e: 4638 mov r0, r7 +10031a30: f7fc fdd3 bl 1002e5da +10031a34: f898 36ac ldrb.w r3, [r8, #1708] ; 0x6ac +10031a38: 4683 mov fp, r0 +10031a3a: f208 67d2 addw r7, r8, #1746 ; 0x6d2 +10031a3e: b11b cbz r3, 10031a48 +10031a40: 4638 mov r0, r7 +10031a42: f7fc fddf bl 1002e604 +10031a46: e000 b.n 10031a4a +10031a48: 4618 mov r0, r3 +10031a4a: 4639 mov r1, r7 +10031a4c: ea40 0b0b orr.w fp, r0, fp +10031a50: 4640 mov r0, r8 +10031a52: f7fc fddd bl 1002e610 +10031a56: 1c07 adds r7, r0, #0 +10031a58: bf18 it ne +10031a5a: 2701 movne r7, #1 +10031a5c: e02f b.n 10031abe +10031a5e: f508 60e7 add.w r0, r8, #1848 ; 0x738 +10031a62: f011 fe65 bl 10043730 <__rtw_get_rateset_len_veneer> +10031a66: f898 24f9 ldrb.w r2, [r8, #1273] ; 0x4f9 +10031a6a: 4683 mov fp, r0 +10031a6c: f012 0f01 tst.w r2, #1 +10031a70: bf0c ite eq +10031a72: 2102 moveq r1, #2 +10031a74: 2101 movne r1, #1 +10031a76: 4640 mov r0, r8 +10031a78: f7fc f859 bl 1002db2e +10031a7c: 4659 mov r1, fp +10031a7e: fa5f fa80 uxtb.w sl, r0 +10031a82: 4638 mov r0, r7 +10031a84: f7fc fd92 bl 1002e5ac +10031a88: e017 b.n 10031aba +10031a8a: eb08 1a49 add.w sl, r8, r9, lsl #5 +10031a8e: f50a 6ae3 add.w sl, sl, #1816 ; 0x718 +10031a92: 4650 mov r0, sl +10031a94: f011 fe4c bl 10043730 <__rtw_get_rateset_len_veneer> +10031a98: 4683 mov fp, r0 +10031a9a: 4651 mov r1, sl +10031a9c: 465a mov r2, fp +10031a9e: 4640 mov r0, r8 +10031aa0: f7fc f874 bl 1002db8c +10031aa4: f000 010f and.w r1, r0, #15 +10031aa8: 4640 mov r0, r8 +10031aaa: f7fc f840 bl 1002db2e +10031aae: 4659 mov r1, fp +10031ab0: fa5f fa80 uxtb.w sl, r0 +10031ab4: 4638 mov r0, r7 +10031ab6: f7fc fd90 bl 1002e5da +10031aba: 4683 mov fp, r0 +10031abc: 2700 movs r7, #0 +10031abe: 465a mov r2, fp +10031ac0: 9b05 ldr r3, [sp, #20] +10031ac2: 4649 mov r1, r9 +10031ac4: f504 7000 add.w r0, r4, #512 ; 0x200 +10031ac8: f00c ffe2 bl 1003ea90 +10031acc: ea00 0b0b and.w fp, r0, fp +10031ad0: 4658 mov r0, fp +10031ad2: f7fc fdb4 bl 1002e63e +10031ad6: f894 31a4 ldrb.w r3, [r4, #420] ; 0x1a4 +10031ada: f000 0c3f and.w ip, r0, #63 ; 0x3f +10031ade: 2b01 cmp r3, #1 +10031ae0: d10d bne.n 10031afe +10031ae2: f898 34f7 ldrb.w r3, [r8, #1271] ; 0x4f7 +10031ae6: e88d 0880 stmia.w sp, {r7, fp} +10031aea: 4640 mov r0, r8 +10031aec: fa5f f189 uxtb.w r1, r9 +10031af0: 4652 mov r2, sl +10031af2: f8cd c010 str.w ip, [sp, #16] +10031af6: f00d fc65 bl 1003f3c4 +10031afa: f8dd c010 ldr.w ip, [sp, #16] +10031afe: 444d add r5, r9 +10031b00: 4b0f ldr r3, [pc, #60] ; (10031b40 ) +10031b02: f886 a176 strb.w sl, [r6, #374] ; 0x176 +10031b06: f886 c177 strb.w ip, [r6, #375] ; 0x177 +10031b0a: f44f 7400 mov.w r4, #512 ; 0x200 +10031b0e: f885 c1e0 strb.w ip, [r5, #480] ; 0x1e0 +10031b12: 2500 movs r5, #0 +10031b14: e9d3 6702 ldrd r6, r7, [r3, #8] +10031b18: 4034 ands r4, r6 +10031b1a: 403d ands r5, r7 +10031b1c: ea54 0305 orrs.w r3, r4, r5 +10031b20: d00a beq.n 10031b38 +10031b22: f898 34f7 ldrb.w r3, [r8, #1271] ; 0x4f7 +10031b26: 4907 ldr r1, [pc, #28] ; (10031b44 ) +10031b28: e88d 1808 stmia.w sp, {r3, fp, ip} +10031b2c: 4b06 ldr r3, [pc, #24] ; (10031b48 ) +10031b2e: 464a mov r2, r9 +10031b30: 69d8 ldr r0, [r3, #28] +10031b32: 4653 mov r3, sl +10031b34: f010 fae8 bl 10042108 +10031b38: b007 add sp, #28 +10031b3a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10031b3e: bf00 nop +10031b40: 10000720 .word 0x10000720 +10031b44: 1004aa28 .word 0x1004aa28 +10031b48: 1004da10 .word 0x1004da10 + +10031b4c : +10031b4c: b538 push {r3, r4, r5, lr} +10031b4e: 4604 mov r4, r0 +10031b50: 4812 ldr r0, [pc, #72] ; (10031b9c ) +10031b52: f7eb fb79 bl 1001d248 +10031b56: f241 6318 movw r3, #5656 ; 0x1618 +10031b5a: 4620 mov r0, r4 +10031b5c: 58e5 ldr r5, [r4, r3] +10031b5e: f004 fd1b bl 10036598 +10031b62: f605 6018 addw r0, r5, #3608 ; 0xe18 +10031b66: f7eb f983 bl 1001ce70 +10031b6a: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +10031b6e: 3318 adds r3, #24 +10031b70: 681b ldr r3, [r3, #0] +10031b72: 2b01 cmp r3, #1 +10031b74: d009 beq.n 10031b8a +10031b76: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +10031b7a: 331c adds r3, #28 +10031b7c: 681b ldr r3, [r3, #0] +10031b7e: 2b01 cmp r3, #1 +10031b80: d003 beq.n 10031b8a +10031b82: 4620 mov r0, r4 +10031b84: f004 fd30 bl 100365e8 +10031b88: e7eb b.n 10031b62 +10031b8a: f605 601c addw r0, r5, #3612 ; 0xe1c +10031b8e: f7eb f955 bl 1001ce3c +10031b92: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10031b96: f7eb bb61 b.w 1001d25c +10031b9a: bf00 nop +10031b9c: 1004a994 .word 0x1004a994 + +10031ba0 : +10031ba0: b538 push {r3, r4, r5, lr} +10031ba2: 4604 mov r4, r0 +10031ba4: 4810 ldr r0, [pc, #64] ; (10031be8 ) +10031ba6: f7eb fb4f bl 1001d248 +10031baa: f241 6318 movw r3, #5656 ; 0x1618 +10031bae: 58e5 ldr r5, [r4, r3] +10031bb0: f605 6048 addw r0, r5, #3656 ; 0xe48 +10031bb4: f7eb f95c bl 1001ce70 +10031bb8: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +10031bbc: 3318 adds r3, #24 +10031bbe: 681b ldr r3, [r3, #0] +10031bc0: 2b01 cmp r3, #1 +10031bc2: d009 beq.n 10031bd8 +10031bc4: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +10031bc8: 331c adds r3, #28 +10031bca: 681b ldr r3, [r3, #0] +10031bcc: 2b01 cmp r3, #1 +10031bce: d003 beq.n 10031bd8 +10031bd0: 4620 mov r0, r4 +10031bd2: f004 fc6b bl 100364ac +10031bd6: e7eb b.n 10031bb0 +10031bd8: f605 604c addw r0, r5, #3660 ; 0xe4c +10031bdc: f7eb f92e bl 1001ce3c +10031be0: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10031be4: f7eb bb3a b.w 1001d25c +10031be8: 1004a9a9 .word 0x1004a9a9 + +10031bec : +10031bec: b538 push {r3, r4, r5, lr} +10031bee: 4604 mov r4, r0 +10031bf0: 4810 ldr r0, [pc, #64] ; (10031c34 ) +10031bf2: f7eb fb29 bl 1001d248 +10031bf6: f241 6318 movw r3, #5656 ; 0x1618 +10031bfa: 58e5 ldr r5, [r4, r3] +10031bfc: f505 6066 add.w r0, r5, #3680 ; 0xe60 +10031c00: f7eb f936 bl 1001ce70 +10031c04: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +10031c08: 3318 adds r3, #24 +10031c0a: 681b ldr r3, [r3, #0] +10031c0c: 2b01 cmp r3, #1 +10031c0e: d009 beq.n 10031c24 +10031c10: f504 53b7 add.w r3, r4, #5856 ; 0x16e0 +10031c14: 331c adds r3, #28 +10031c16: 681b ldr r3, [r3, #0] +10031c18: 2b01 cmp r3, #1 +10031c1a: d003 beq.n 10031c24 +10031c1c: 4620 mov r0, r4 +10031c1e: f003 fef9 bl 10035a14 +10031c22: e7eb b.n 10031bfc +10031c24: f605 6064 addw r0, r5, #3684 ; 0xe64 +10031c28: f7eb f908 bl 1001ce3c +10031c2c: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10031c30: f7eb bb14 b.w 1001d25c +10031c34: 1004a9a9 .word 0x1004a9a9 + +10031c38 : +10031c38: b570 push {r4, r5, r6, lr} +10031c3a: f241 6318 movw r3, #5656 ; 0x1618 +10031c3e: 58c6 ldr r6, [r0, r3] +10031c40: 4b18 ldr r3, [pc, #96] ; (10031ca4 ) +10031c42: b086 sub sp, #24 +10031c44: 681c ldr r4, [r3, #0] +10031c46: 4668 mov r0, sp +10031c48: 2100 movs r1, #0 +10031c4a: 2218 movs r2, #24 +10031c4c: f7eb f8c0 bl 1001cdd0 +10031c50: 230a movs r3, #10 +10031c52: 9300 str r3, [sp, #0] +10031c54: f484 3380 eor.w r3, r4, #65536 ; 0x10000 +10031c58: f3c3 4300 ubfx r3, r3, #16, #1 +10031c5c: 9301 str r3, [sp, #4] +10031c5e: 2300 movs r3, #0 +10031c60: 9304 str r3, [sp, #16] +10031c62: f3c4 2301 ubfx r3, r4, #8, #2 +10031c66: b133 cbz r3, 10031c76 +10031c68: 2b01 cmp r3, #1 +10031c6a: d101 bne.n 10031c70 +10031c6c: 2302 movs r3, #2 +10031c6e: e002 b.n 10031c76 +10031c70: 2b02 cmp r3, #2 +10031c72: d101 bne.n 10031c78 +10031c74: 2301 movs r3, #1 +10031c76: 9303 str r3, [sp, #12] +10031c78: 4b0b ldr r3, [pc, #44] ; (10031ca8 ) +10031c7a: f3c4 1403 ubfx r4, r4, #4, #4 +10031c7e: 681b ldr r3, [r3, #0] +10031c80: 9402 str r4, [sp, #8] +10031c82: f3c3 6340 ubfx r3, r3, #25, #1 +10031c86: 4634 mov r4, r6 +10031c88: 466d mov r5, sp +10031c8a: 61b3 str r3, [r6, #24] +10031c8c: cd0f ldmia r5!, {r0, r1, r2, r3} +10031c8e: c40f stmia r4!, {r0, r1, r2, r3} +10031c90: e895 0003 ldmia.w r5, {r0, r1} +10031c94: 2303 movs r3, #3 +10031c96: e884 0003 stmia.w r4, {r0, r1} +10031c9a: f886 303c strb.w r3, [r6, #60] ; 0x3c +10031c9e: b006 add sp, #24 +10031ca0: bd70 pop {r4, r5, r6, pc} +10031ca2: bf00 nop +10031ca4: 400001f0 .word 0x400001f0 +10031ca8: 400001f4 .word 0x400001f4 + +10031cac : +10031cac: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10031cb0: b085 sub sp, #20 +10031cb2: 4692 mov sl, r2 +10031cb4: 4604 mov r4, r0 +10031cb6: 460f mov r7, r1 +10031cb8: a802 add r0, sp, #8 +10031cba: 21ff movs r1, #255 ; 0xff +10031cbc: 2208 movs r2, #8 +10031cbe: 461d mov r5, r3 +10031cc0: f89d 6038 ldrb.w r6, [sp, #56] ; 0x38 +10031cc4: f7eb f884 bl 1001cdd0 +10031cc8: f01a 0b01 ands.w fp, sl, #1 +10031ccc: d13b bne.n 10031d46 +10031cce: f107 0801 add.w r8, r7, #1 +10031cd2: fa1f f888 uxth.w r8, r8 +10031cd6: 4639 mov r1, r7 +10031cd8: 782a ldrb r2, [r5, #0] +10031cda: 4633 mov r3, r6 +10031cdc: 4620 mov r0, r4 +10031cde: f00a f8d3 bl 1003be88 +10031ce2: 4641 mov r1, r8 +10031ce4: 786a ldrb r2, [r5, #1] +10031ce6: 4633 mov r3, r6 +10031ce8: 4620 mov r0, r4 +10031cea: f00a f8cd bl 1003be88 +10031cee: 4620 mov r0, r4 +10031cf0: 21ec movs r1, #236 ; 0xec +10031cf2: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10031cf6: 465b mov r3, fp +10031cf8: f002 fa0c bl 10034114 +10031cfc: 4639 mov r1, r7 +10031cfe: aa02 add r2, sp, #8 +10031d00: 4633 mov r3, r6 +10031d02: 4620 mov r0, r4 +10031d04: f00a f8a6 bl 1003be54 +10031d08: 4641 mov r1, r8 +10031d0a: f10d 0209 add.w r2, sp, #9 +10031d0e: 4633 mov r3, r6 +10031d10: 4620 mov r0, r4 +10031d12: f00a f89f bl 1003be54 +10031d16: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10031d1a: 2301 movs r3, #1 +10031d1c: 4620 mov r0, r4 +10031d1e: 21ec movs r1, #236 ; 0xec +10031d20: f002 f9f8 bl 10034114 +10031d24: 782a ldrb r2, [r5, #0] +10031d26: f89d 3008 ldrb.w r3, [sp, #8] +10031d2a: f107 0902 add.w r9, r7, #2 +10031d2e: 429a cmp r2, r3 +10031d30: fa1f f989 uxth.w r9, r9 +10031d34: d10a bne.n 10031d4c +10031d36: 786f ldrb r7, [r5, #1] +10031d38: f89d 3009 ldrb.w r3, [sp, #9] +10031d3c: 429f cmp r7, r3 +10031d3e: bf0c ite eq +10031d40: 270f moveq r7, #15 +10031d42: 270e movne r7, #14 +10031d44: e003 b.n 10031d4e +10031d46: 46b9 mov r9, r7 +10031d48: 270f movs r7, #15 +10031d4a: e000 b.n 10031d4e +10031d4c: 270e movs r7, #14 +10031d4e: f00a 0302 and.w r3, sl, #2 +10031d52: f003 0cff and.w ip, r3, #255 ; 0xff +10031d56: 2b00 cmp r3, #0 +10031d58: d140 bne.n 10031ddc +10031d5a: f109 0b01 add.w fp, r9, #1 +10031d5e: fa1f fb8b uxth.w fp, fp +10031d62: 4649 mov r1, r9 +10031d64: 78aa ldrb r2, [r5, #2] +10031d66: 4633 mov r3, r6 +10031d68: 4620 mov r0, r4 +10031d6a: f8cd c004 str.w ip, [sp, #4] +10031d6e: f00a f88b bl 1003be88 +10031d72: 4659 mov r1, fp +10031d74: 78ea ldrb r2, [r5, #3] +10031d76: 4633 mov r3, r6 +10031d78: 4620 mov r0, r4 +10031d7a: f00a f885 bl 1003be88 +10031d7e: f8dd c004 ldr.w ip, [sp, #4] +10031d82: 4620 mov r0, r4 +10031d84: 4663 mov r3, ip +10031d86: 21ec movs r1, #236 ; 0xec +10031d88: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10031d8c: f002 f9c2 bl 10034114 +10031d90: 4649 mov r1, r9 +10031d92: f10d 020a add.w r2, sp, #10 +10031d96: 4633 mov r3, r6 +10031d98: 4620 mov r0, r4 +10031d9a: f00a f85b bl 1003be54 +10031d9e: 4659 mov r1, fp +10031da0: f10d 020b add.w r2, sp, #11 +10031da4: 4633 mov r3, r6 +10031da6: 4620 mov r0, r4 +10031da8: f00a f854 bl 1003be54 +10031dac: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10031db0: 2301 movs r3, #1 +10031db2: 4620 mov r0, r4 +10031db4: 21ec movs r1, #236 ; 0xec +10031db6: f002 f9ad bl 10034114 +10031dba: 78aa ldrb r2, [r5, #2] +10031dbc: f89d 300a ldrb.w r3, [sp, #10] +10031dc0: f109 0802 add.w r8, r9, #2 +10031dc4: 429a cmp r2, r3 +10031dc6: fa1f f888 uxth.w r8, r8 +10031dca: d104 bne.n 10031dd6 +10031dcc: 78ea ldrb r2, [r5, #3] +10031dce: f89d 300b ldrb.w r3, [sp, #11] +10031dd2: 429a cmp r2, r3 +10031dd4: d003 beq.n 10031dde +10031dd6: f007 07fd and.w r7, r7, #253 ; 0xfd +10031dda: e000 b.n 10031dde +10031ddc: 46c8 mov r8, r9 +10031dde: f00a 0304 and.w r3, sl, #4 +10031de2: f003 0cff and.w ip, r3, #255 ; 0xff +10031de6: 2b00 cmp r3, #0 +10031de8: d13f bne.n 10031e6a +10031dea: f108 0b01 add.w fp, r8, #1 +10031dee: fa1f fb8b uxth.w fp, fp +10031df2: 4641 mov r1, r8 +10031df4: 792a ldrb r2, [r5, #4] +10031df6: 4633 mov r3, r6 +10031df8: 4620 mov r0, r4 +10031dfa: f8cd c004 str.w ip, [sp, #4] +10031dfe: f00a f843 bl 1003be88 +10031e02: 4659 mov r1, fp +10031e04: 796a ldrb r2, [r5, #5] +10031e06: 4633 mov r3, r6 +10031e08: 4620 mov r0, r4 +10031e0a: f00a f83d bl 1003be88 +10031e0e: f8dd c004 ldr.w ip, [sp, #4] +10031e12: 4620 mov r0, r4 +10031e14: 4663 mov r3, ip +10031e16: 21ec movs r1, #236 ; 0xec +10031e18: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10031e1c: f002 f97a bl 10034114 +10031e20: 4641 mov r1, r8 +10031e22: aa03 add r2, sp, #12 +10031e24: 4633 mov r3, r6 +10031e26: 4620 mov r0, r4 +10031e28: f00a f814 bl 1003be54 +10031e2c: 4659 mov r1, fp +10031e2e: f10d 020d add.w r2, sp, #13 +10031e32: 4633 mov r3, r6 +10031e34: 4620 mov r0, r4 +10031e36: f00a f80d bl 1003be54 +10031e3a: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10031e3e: 2301 movs r3, #1 +10031e40: 4620 mov r0, r4 +10031e42: 21ec movs r1, #236 ; 0xec +10031e44: f002 f966 bl 10034114 +10031e48: 792a ldrb r2, [r5, #4] +10031e4a: f89d 300c ldrb.w r3, [sp, #12] +10031e4e: f108 0902 add.w r9, r8, #2 +10031e52: 429a cmp r2, r3 +10031e54: fa1f f989 uxth.w r9, r9 +10031e58: d104 bne.n 10031e64 +10031e5a: 796a ldrb r2, [r5, #5] +10031e5c: f89d 300d ldrb.w r3, [sp, #13] +10031e60: 429a cmp r2, r3 +10031e62: d003 beq.n 10031e6c +10031e64: f007 07fb and.w r7, r7, #251 ; 0xfb +10031e68: e000 b.n 10031e6c +10031e6a: 46c1 mov r9, r8 +10031e6c: f00a 0208 and.w r2, sl, #8 +10031e70: f002 0aff and.w sl, r2, #255 ; 0xff +10031e74: 2a00 cmp r2, #0 +10031e76: d137 bne.n 10031ee8 +10031e78: f109 0801 add.w r8, r9, #1 +10031e7c: fa1f f888 uxth.w r8, r8 +10031e80: 4649 mov r1, r9 +10031e82: 79aa ldrb r2, [r5, #6] +10031e84: 4633 mov r3, r6 +10031e86: 4620 mov r0, r4 +10031e88: f009 fffe bl 1003be88 +10031e8c: 4641 mov r1, r8 +10031e8e: 79ea ldrb r2, [r5, #7] +10031e90: 4633 mov r3, r6 +10031e92: 4620 mov r0, r4 +10031e94: f009 fff8 bl 1003be88 +10031e98: 4620 mov r0, r4 +10031e9a: 21ec movs r1, #236 ; 0xec +10031e9c: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10031ea0: 4653 mov r3, sl +10031ea2: f002 f937 bl 10034114 +10031ea6: 4649 mov r1, r9 +10031ea8: f10d 020e add.w r2, sp, #14 +10031eac: 4633 mov r3, r6 +10031eae: 4620 mov r0, r4 +10031eb0: f009 ffd0 bl 1003be54 +10031eb4: 4641 mov r1, r8 +10031eb6: f10d 020f add.w r2, sp, #15 +10031eba: 4633 mov r3, r6 +10031ebc: 4620 mov r0, r4 +10031ebe: f009 ffc9 bl 1003be54 +10031ec2: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10031ec6: 2301 movs r3, #1 +10031ec8: 4620 mov r0, r4 +10031eca: 21ec movs r1, #236 ; 0xec +10031ecc: f002 f922 bl 10034114 +10031ed0: 79aa ldrb r2, [r5, #6] +10031ed2: f89d 300e ldrb.w r3, [sp, #14] +10031ed6: 429a cmp r2, r3 +10031ed8: d104 bne.n 10031ee4 +10031eda: 79ea ldrb r2, [r5, #7] +10031edc: f89d 300f ldrb.w r3, [sp, #15] +10031ee0: 429a cmp r2, r3 +10031ee2: d001 beq.n 10031ee8 +10031ee4: f007 07f7 and.w r7, r7, #247 ; 0xf7 +10031ee8: 4638 mov r0, r7 +10031eea: b005 add sp, #20 +10031eec: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +10031ef0 : +10031ef0: b508 push {r3, lr} +10031ef2: 4608 mov r0, r1 +10031ef4: 4b02 ldr r3, [pc, #8] ; (10031f00 ) +10031ef6: 4611 mov r1, r2 +10031ef8: 2207 movs r2, #7 +10031efa: 4798 blx r3 +10031efc: bd08 pop {r3, pc} +10031efe: bf00 nop +10031f00: 00006561 .word 0x00006561 + +10031f04 : +10031f04: b538 push {r3, r4, r5, lr} +10031f06: f241 6418 movw r4, #5656 ; 0x1618 +10031f0a: 4605 mov r5, r0 +10031f0c: 5900 ldr r0, [r0, r4] +10031f0e: b128 cbz r0, 10031f1c +10031f10: f44f 616a mov.w r1, #3744 ; 0xea0 +10031f14: f7ea ff14 bl 1001cd40 +10031f18: 2300 movs r3, #0 +10031f1a: 512b str r3, [r5, r4] +10031f1c: bd38 pop {r3, r4, r5, pc} + +10031f1e : +10031f1e: b538 push {r3, r4, r5, lr} +10031f20: f241 6318 movw r3, #5656 ; 0x1618 +10031f24: 58c5 ldr r5, [r0, r3] +10031f26: 4604 mov r4, r0 +10031f28: f895 21a5 ldrb.w r2, [r5, #421] ; 0x1a5 +10031f2c: f240 4122 movw r1, #1058 ; 0x422 +10031f30: f002 02bf and.w r2, r2, #191 ; 0xbf +10031f34: f885 21a5 strb.w r2, [r5, #421] ; 0x1a5 +10031f38: f00a fb9f bl 1003c67a +10031f3c: 4620 mov r0, r4 +10031f3e: f240 5141 movw r1, #1345 ; 0x541 +10031f42: 2264 movs r2, #100 ; 0x64 +10031f44: f00a fb99 bl 1003c67a +10031f48: f895 21a6 ldrb.w r2, [r5, #422] ; 0x1a6 +10031f4c: 4620 mov r0, r4 +10031f4e: f002 02fe and.w r2, r2, #254 ; 0xfe +10031f52: f885 21a6 strb.w r2, [r5, #422] ; 0x1a6 +10031f56: f240 5142 movw r1, #1346 ; 0x542 +10031f5a: f00a fb8e bl 1003c67a +10031f5e: 4620 mov r0, r4 +10031f60: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10031f64: f00d ba12 b.w 1003f38c + +10031f68 : +10031f68: b570 push {r4, r5, r6, lr} +10031f6a: 4616 mov r6, r2 +10031f6c: f241 6218 movw r2, #5656 ; 0x1618 +10031f70: 5884 ldr r4, [r0, r2] +10031f72: 2901 cmp r1, #1 +10031f74: f504 7500 add.w r5, r4, #512 ; 0x200 +10031f78: d020 beq.n 10031fbc +10031f7a: d302 bcc.n 10031f82 +10031f7c: 2902 cmp r1, #2 +10031f7e: d025 beq.n 10031fcc +10031f80: bd70 pop {r4, r5, r6, pc} +10031f82: f241 71b1 movw r1, #6065 ; 0x17b1 +10031f86: 5c41 ldrb r1, [r0, r1] +10031f88: b131 cbz r1, 10031f98 +10031f8a: f241 71a8 movw r1, #6056 ; 0x17a8 +10031f8e: 5841 ldr r1, [r0, r1] +10031f90: b111 cbz r1, 10031f98 +10031f92: 588d ldr r5, [r1, r2] +10031f94: f505 7500 add.w r5, r5, #512 ; 0x200 +10031f98: f8d6 2100 ldr.w r2, [r6, #256] ; 0x100 +10031f9c: 4628 mov r0, r5 +10031f9e: 2147 movs r1, #71 ; 0x47 +10031fa0: b292 uxth r2, r2 +10031fa2: b13b cbz r3, 10031fb4 +10031fa4: 4633 mov r3, r6 +10031fa6: f00b fc37 bl 1003d818 +10031faa: 4628 mov r0, r5 +10031fac: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10031fb0: f00c bc8e b.w 1003e8d0 +10031fb4: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10031fb8: f00b bc2e b.w 1003d818 +10031fbc: 4628 mov r0, r5 +10031fbe: e9d6 2300 ldrd r2, r3, [r6] +10031fc2: 213b movs r1, #59 ; 0x3b +10031fc4: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10031fc8: f00b bc2e b.w 1003d828 +10031fcc: 2100 movs r1, #0 +10031fce: 4628 mov r0, r5 +10031fd0: f00b fd52 bl 1003da78 +10031fd4: 4d11 ldr r5, [pc, #68] ; (1003201c ) +10031fd6: 4606 mov r6, r0 +10031fd8: 68a8 ldr r0, [r5, #8] +10031fda: f010 f895 bl 10042108 +10031fde: f894 12ab ldrb.w r1, [r4, #683] ; 0x2ab +10031fe2: f894 22ad ldrb.w r2, [r4, #685] ; 0x2ad +10031fe6: f894 378c ldrb.w r3, [r4, #1932] ; 0x78c +10031fea: 68e8 ldr r0, [r5, #12] +10031fec: f010 f88c bl 10042108 +10031ff0: 69f3 ldr r3, [r6, #28] +10031ff2: 6928 ldr r0, [r5, #16] +10031ff4: 69b1 ldr r1, [r6, #24] +10031ff6: 6932 ldr r2, [r6, #16] +10031ff8: f010 f886 bl 10042108 +10031ffc: f894 32ab ldrb.w r3, [r4, #683] ; 0x2ab +10032000: b153 cbz r3, 10032018 +10032002: 6968 ldr r0, [r5, #20] +10032004: f894 12e0 ldrb.w r1, [r4, #736] ; 0x2e0 +10032008: f894 22b7 ldrb.w r2, [r4, #695] ; 0x2b7 +1003200c: f894 32b8 ldrb.w r3, [r4, #696] ; 0x2b8 +10032010: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10032014: f010 b878 b.w 10042108 +10032018: bd70 pop {r4, r5, r6, pc} +1003201a: bf00 nop +1003201c: 1004da10 .word 0x1004da10 + +10032020 : +10032020: b537 push {r0, r1, r2, r4, r5, lr} +10032022: f241 6318 movw r3, #5656 ; 0x1618 +10032026: 58c5 ldr r5, [r0, r3] +10032028: 4b11 ldr r3, [pc, #68] ; (10032070 ) +1003202a: 4604 mov r4, r0 +1003202c: e88d 0018 stmia.w sp, {r3, r4} +10032030: f505 6061 add.w r0, r5, #3600 ; 0xe10 +10032034: 490f ldr r1, [pc, #60] ; (10032074 ) +10032036: f44f 7200 mov.w r2, #512 ; 0x200 +1003203a: 2306 movs r3, #6 +1003203c: f7eb f89e bl 1001d17c +10032040: 4b0d ldr r3, [pc, #52] ; (10032078 ) +10032042: f505 6064 add.w r0, r5, #3648 ; 0xe40 +10032046: e88d 0018 stmia.w sp, {r3, r4} +1003204a: 490c ldr r1, [pc, #48] ; (1003207c ) +1003204c: f44f 7280 mov.w r2, #256 ; 0x100 +10032050: 2301 movs r3, #1 +10032052: f7eb f893 bl 1001d17c +10032056: 4b0a ldr r3, [pc, #40] ; (10032080 ) +10032058: f605 6058 addw r0, r5, #3672 ; 0xe58 +1003205c: e88d 0018 stmia.w sp, {r3, r4} +10032060: 4908 ldr r1, [pc, #32] ; (10032084 ) +10032062: f44f 7280 mov.w r2, #256 ; 0x100 +10032066: 2303 movs r3, #3 +10032068: f7eb f888 bl 1001d17c +1003206c: b003 add sp, #12 +1003206e: bd30 pop {r4, r5, pc} +10032070: 10031b4d .word 0x10031b4d +10032074: 1004a9bf .word 0x1004a9bf +10032078: 10031ba1 .word 0x10031ba1 +1003207c: 1004a9da .word 0x1004a9da +10032080: 10031bed .word 0x10031bed +10032084: 1004a9f8 .word 0x1004a9f8 + +10032088 : +10032088: b510 push {r4, lr} +1003208a: f241 6318 movw r3, #5656 ; 0x1618 +1003208e: 58c4 ldr r4, [r0, r3] +10032090: f504 6061 add.w r0, r4, #3600 ; 0xe10 +10032094: f7eb f884 bl 1001d1a0 +10032098: f504 6064 add.w r0, r4, #3648 ; 0xe40 +1003209c: f7eb f880 bl 1001d1a0 +100320a0: f604 6058 addw r0, r4, #3672 ; 0xe58 +100320a4: e8bd 4010 ldmia.w sp!, {r4, lr} +100320a8: f7eb b87a b.w 1001d1a0 + +100320ac : +100320ac: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100320b0: 461f mov r7, r3 +100320b2: 18d3 adds r3, r2, r3 +100320b4: b089 sub sp, #36 ; 0x24 +100320b6: f5b3 7f00 cmp.w r3, #512 ; 0x200 +100320ba: 4606 mov r6, r0 +100320bc: 4693 mov fp, r2 +100320be: f89d 504c ldrb.w r5, [sp, #76] ; 0x4c +100320c2: f300 80a6 bgt.w 10032212 +100320c6: f44f 7000 mov.w r0, #512 ; 0x200 +100320ca: f7ea fe3b bl 1001cd44 +100320ce: 4681 mov r9, r0 +100320d0: 2800 cmp r0, #0 +100320d2: f000 809e beq.w 10032212 +100320d6: 21ff movs r1, #255 ; 0xff +100320d8: f44f 7200 mov.w r2, #512 ; 0x200 +100320dc: f7ea fe78 bl 1001cdd0 +100320e0: b925 cbnz r5, 100320ec +100320e2: 4b4d ldr r3, [pc, #308] ; (10032218 ) +100320e4: 681a ldr r2, [r3, #0] +100320e6: f422 7240 bic.w r2, r2, #768 ; 0x300 +100320ea: 601a str r2, [r3, #0] +100320ec: 2400 movs r4, #0 +100320ee: 4630 mov r0, r6 +100320f0: 4621 mov r1, r4 +100320f2: f10d 0219 add.w r2, sp, #25 +100320f6: 462b mov r3, r5 +100320f8: f009 feac bl 1003be54 +100320fc: f89d 8019 ldrb.w r8, [sp, #25] +10032100: f104 0a01 add.w sl, r4, #1 +10032104: f1b8 0fff cmp.w r8, #255 ; 0xff +10032108: fa1f fa8a uxth.w sl, sl +1003210c: d05f beq.n 100321ce +1003210e: f008 031f and.w r3, r8, #31 +10032112: 2b0f cmp r3, #15 +10032114: d118 bne.n 10032148 +10032116: 462b mov r3, r5 +10032118: 4630 mov r0, r6 +1003211a: 4651 mov r1, sl +1003211c: f10d 021a add.w r2, sp, #26 +10032120: f009 fe98 bl 1003be54 +10032124: f89d 301a ldrb.w r3, [sp, #26] +10032128: 3402 adds r4, #2 +1003212a: f003 0c0f and.w ip, r3, #15 +1003212e: f1bc 0f0f cmp.w ip, #15 +10032132: b2a4 uxth r4, r4 +10032134: d048 beq.n 100321c8 +10032136: f003 03f0 and.w r3, r3, #240 ; 0xf0 +1003213a: ea4f 1858 mov.w r8, r8, lsr #5 +1003213e: ea48 0353 orr.w r3, r8, r3, lsr #1 +10032142: 2b3f cmp r3, #63 ; 0x3f +10032144: d83a bhi.n 100321bc +10032146: e004 b.n 10032152 +10032148: ea4f 1318 mov.w r3, r8, lsr #4 +1003214c: f008 0c0f and.w ip, r8, #15 +10032150: 4654 mov r4, sl +10032152: 00db lsls r3, r3, #3 +10032154: 9305 str r3, [sp, #20] +10032156: f04f 0800 mov.w r8, #0 +1003215a: 9905 ldr r1, [sp, #20] +1003215c: eb01 0348 add.w r3, r1, r8, lsl #1 +10032160: b29b uxth r3, r3 +10032162: 9304 str r3, [sp, #16] +10032164: fa4c f308 asr.w r3, ip, r8 +10032168: 07db lsls r3, r3, #31 +1003216a: d421 bmi.n 100321b0 +1003216c: 4621 mov r1, r4 +1003216e: f10d 021b add.w r2, sp, #27 +10032172: 462b mov r3, r5 +10032174: 4630 mov r0, r6 +10032176: f8cd c00c str.w ip, [sp, #12] +1003217a: f104 0a01 add.w sl, r4, #1 +1003217e: f009 fe69 bl 1003be54 +10032182: f89d 301b ldrb.w r3, [sp, #27] +10032186: 9a04 ldr r2, [sp, #16] +10032188: fa1f fa8a uxth.w sl, sl +1003218c: f809 3002 strb.w r3, [r9, r2] +10032190: 4630 mov r0, r6 +10032192: f10d 021b add.w r2, sp, #27 +10032196: 462b mov r3, r5 +10032198: 4651 mov r1, sl +1003219a: f009 fe5b bl 1003be54 +1003219e: 9b04 ldr r3, [sp, #16] +100321a0: f89d 201b ldrb.w r2, [sp, #27] +100321a4: 444b add r3, r9 +100321a6: 705a strb r2, [r3, #1] +100321a8: 3402 adds r4, #2 +100321aa: f8dd c00c ldr.w ip, [sp, #12] +100321ae: b2a4 uxth r4, r4 +100321b0: f108 0801 add.w r8, r8, #1 +100321b4: f1b8 0f04 cmp.w r8, #4 +100321b8: d1cf bne.n 1003215a +100321ba: e005 b.n 100321c8 +100321bc: 4660 mov r0, ip +100321be: f009 fe2d bl 1003be1c +100321c2: eb04 0040 add.w r0, r4, r0, lsl #1 +100321c6: b284 uxth r4, r0 +100321c8: 2cff cmp r4, #255 ; 0xff +100321ca: d990 bls.n 100320ee +100321cc: 46a2 mov sl, r4 +100321ce: 2300 movs r3, #0 +100321d0: b29a uxth r2, r3 +100321d2: 42ba cmp r2, r7 +100321d4: d206 bcs.n 100321e4 +100321d6: eb09 020b add.w r2, r9, fp +100321da: 5cd2 ldrb r2, [r2, r3] +100321dc: 9912 ldr r1, [sp, #72] ; 0x48 +100321de: 54ca strb r2, [r1, r3] +100321e0: 3301 adds r3, #1 +100321e2: e7f5 b.n 100321d0 +100321e4: 9500 str r5, [sp, #0] +100321e6: 4630 mov r0, r6 +100321e8: 2100 movs r1, #0 +100321ea: 2203 movs r2, #3 +100321ec: ab07 add r3, sp, #28 +100321ee: f10a 3aff add.w sl, sl, #4294967295 +100321f2: f009 fe25 bl 1003be40 +100321f6: f8ad a01e strh.w sl, [sp, #30] +100321fa: b92d cbnz r5, 10032208 +100321fc: 4630 mov r0, r6 +100321fe: 213a movs r1, #58 ; 0x3a +10032200: f10d 021e add.w r2, sp, #30 +10032204: f005 fb91 bl 1003792a +10032208: 4648 mov r0, r9 +1003220a: f44f 7100 mov.w r1, #512 ; 0x200 +1003220e: f7ea fdc5 bl 1001cd9c +10032212: b009 add sp, #36 ; 0x24 +10032214: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10032218: 400000ec .word 0x400000ec + +1003221c : +1003221c: 2901 cmp r1, #1 +1003221e: d104 bne.n 1003222a +10032220: 4b02 ldr r3, [pc, #8] ; (1003222c ) +10032222: e9d3 0102 ldrd r0, r1, [r3, #8] +10032226: e9c2 0100 strd r0, r1, [r2] +1003222a: 4770 bx lr +1003222c: 10000720 .word 0x10000720 + +10032230 : +10032230: b570 push {r4, r5, r6, lr} +10032232: 4606 mov r6, r0 +10032234: b086 sub sp, #24 +10032236: 2001 movs r0, #1 +10032238: f7ea f962 bl 1001c500 +1003223c: 2202 movs r2, #2 +1003223e: f10d 0306 add.w r3, sp, #6 +10032242: a803 add r0, sp, #12 +10032244: f44f 4120 mov.w r1, #40960 ; 0xa000 +10032248: f7eb f984 bl 1001d554 +1003224c: f8bd 2006 ldrh.w r2, [sp, #6] +10032250: f248 1395 movw r3, #33173 ; 0x8195 +10032254: 429a cmp r2, r3 +10032256: d004 beq.n 10032262 +10032258: 2001 movs r0, #1 +1003225a: f7ea f969 bl 1001c530 +1003225e: 2000 movs r0, #0 +10032260: e034 b.n 100322cc +10032262: 2402 movs r4, #2 +10032264: ab02 add r3, sp, #8 +10032266: a803 add r0, sp, #12 +10032268: f504 4120 add.w r1, r4, #40960 ; 0xa000 +1003226c: 2202 movs r2, #2 +1003226e: f7eb f971 bl 1001d554 +10032272: f8bd 3008 ldrh.w r3, [sp, #8] +10032276: f64f 75ff movw r5, #65535 ; 0xffff +1003227a: 42ab cmp r3, r5 +1003227c: d104 bne.n 10032288 +1003227e: 2001 movs r0, #1 +10032280: f7ea f956 bl 1001c530 +10032284: 2001 movs r0, #1 +10032286: e021 b.n 100322cc +10032288: f504 4120 add.w r1, r4, #40960 ; 0xa000 +1003228c: 2202 movs r2, #2 +1003228e: a803 add r0, sp, #12 +10032290: 3102 adds r1, #2 +10032292: f10d 030a add.w r3, sp, #10 +10032296: f7eb f95d bl 1001d554 +1003229a: f8bd 200a ldrh.w r2, [sp, #10] +1003229e: 42aa cmp r2, r5 +100322a0: d0ed beq.n 1003227e +100322a2: f8bd 3008 ldrh.w r3, [sp, #8] +100322a6: 1899 adds r1, r3, r2 +100322a8: f5b1 5f80 cmp.w r1, #4096 ; 0x1000 +100322ac: dcd4 bgt.n 10032258 +100322ae: f504 4120 add.w r1, r4, #40960 ; 0xa000 +100322b2: 4433 add r3, r6 +100322b4: a803 add r0, sp, #12 +100322b6: 3104 adds r1, #4 +100322b8: f7eb f94c bl 1001d554 +100322bc: f8bd 300a ldrh.w r3, [sp, #10] +100322c0: 3304 adds r3, #4 +100322c2: 441c add r4, r3 +100322c4: f5b4 5f80 cmp.w r4, #4096 ; 0x1000 +100322c8: d3cc bcc.n 10032264 +100322ca: e7d8 b.n 1003227e +100322cc: b006 add sp, #24 +100322ce: bd70 pop {r4, r5, r6, pc} + +100322d0 : +100322d0: b51f push {r0, r1, r2, r3, r4, lr} +100322d2: f241 6318 movw r3, #5656 ; 0x1618 +100322d6: 58c3 ldr r3, [r0, r3] +100322d8: f893 303e ldrb.w r3, [r3, #62] ; 0x3e +100322dc: 2bfb cmp r3, #251 ; 0xfb +100322de: d015 beq.n 1003230c +100322e0: 2001 movs r0, #1 +100322e2: f7ea f90d bl 1001c500 +100322e6: a801 add r0, sp, #4 +100322e8: f44f 4120 mov.w r1, #40960 ; 0xa000 +100322ec: f7eb f8be bl 1001d46c +100322f0: ab04 add r3, sp, #16 +100322f2: f248 1295 movw r2, #33173 ; 0x8195 +100322f6: f823 2d0e strh.w r2, [r3, #-14]! +100322fa: a801 add r0, sp, #4 +100322fc: f44f 4120 mov.w r1, #40960 ; 0xa000 +10032300: 2202 movs r2, #2 +10032302: f7eb f9c7 bl 1001d694 +10032306: 2001 movs r0, #1 +10032308: f7ea f912 bl 1001c530 +1003230c: b005 add sp, #20 +1003230e: f85d fb04 ldr.w pc, [sp], #4 + ... + +10032314 : +10032314: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10032318: b088 sub sp, #32 +1003231a: f89d 5040 ldrb.w r5, [sp, #64] ; 0x40 +1003231e: 2700 movs r7, #0 +10032320: 4699 mov r9, r3 +10032322: ab08 add r3, sp, #32 +10032324: f823 7d0c strh.w r7, [r3, #-12]! +10032328: 4604 mov r4, r0 +1003232a: 4690 mov r8, r2 +1003232c: 468a mov sl, r1 +1003232e: 2203 movs r2, #3 +10032330: 4639 mov r1, r7 +10032332: 9500 str r5, [sp, #0] +10032334: f009 fd84 bl 1003be40 +10032338: 4620 mov r0, r4 +1003233a: 4639 mov r1, r7 +1003233c: 462a mov r2, r5 +1003233e: f009 fd67 bl 1003be10 +10032342: 2604 movs r6, #4 +10032344: 4643 mov r3, r8 +10032346: 07da lsls r2, r3, #31 +10032348: f106 36ff add.w r6, r6, #4294967295 +1003234c: bf58 it pl +1003234e: 3702 addpl r7, #2 +10032350: b2b6 uxth r6, r6 +10032352: bf58 it pl +10032354: b2bf uxthpl r7, r7 +10032356: 085b lsrs r3, r3, #1 +10032358: 2e00 cmp r6, #0 +1003235a: d1f4 bne.n 10032346 +1003235c: 3702 adds r7, #2 +1003235e: b2bf uxth r7, r7 +10032360: f8bd 3014 ldrh.w r3, [sp, #20] +10032364: 4438 add r0, r7 +10032366: 4298 cmp r0, r3 +10032368: db03 blt.n 10032372 +1003236a: 4888 ldr r0, [pc, #544] ; (1003258c ) +1003236c: f00f fecc bl 10042108 +10032370: e042 b.n 100323f8 +10032372: f10d 0016 add.w r0, sp, #22 +10032376: 21ff movs r1, #255 ; 0xff +10032378: 2208 movs r2, #8 +1003237a: f7ea fd29 bl 1001cdd0 +1003237e: 4649 mov r1, r9 +10032380: f10d 0216 add.w r2, sp, #22 +10032384: 4640 mov r0, r8 +10032386: f88d a014 strb.w sl, [sp, #20] +1003238a: f88d 8015 strb.w r8, [sp, #21] +1003238e: f009 fd9f bl 1003bed0 +10032392: f89d 0015 ldrb.w r0, [sp, #21] +10032396: f009 fd41 bl 1003be1c +1003239a: 4631 mov r1, r6 +1003239c: f88d 001e strb.w r0, [sp, #30] +100323a0: 2203 movs r2, #3 +100323a2: 4620 mov r0, r4 +100323a4: ab04 add r3, sp, #16 +100323a6: 9500 str r5, [sp, #0] +100323a8: f8ad 600e strh.w r6, [sp, #14] +100323ac: f8ad 6010 strh.w r6, [sp, #16] +100323b0: f8ad 6012 strh.w r6, [sp, #18] +100323b4: f88d 600d strb.w r6, [sp, #13] +100323b8: f009 fd42 bl 1003be40 +100323bc: 9500 str r5, [sp, #0] +100323be: 4620 mov r0, r4 +100323c0: 4631 mov r1, r6 +100323c2: 2206 movs r2, #6 +100323c4: f10d 0312 add.w r3, sp, #18 +100323c8: f009 fd3a bl 1003be40 +100323cc: b92d cbnz r5, 100323da +100323ce: 4620 mov r0, r4 +100323d0: 213a movs r1, #58 ; 0x3a +100323d2: f10d 020e add.w r2, sp, #14 +100323d6: f005 faaf bl 10037938 +100323da: f8bd 200e ldrh.w r2, [sp, #14] +100323de: f8bd 3012 ldrh.w r3, [sp, #18] +100323e2: fbb2 f1f3 udiv r1, r2, r3 +100323e6: fb03 2111 mls r1, r3, r1, r2 +100323ea: f8bd 3010 ldrh.w r3, [sp, #16] +100323ee: b289 uxth r1, r1 +100323f0: 428b cmp r3, r1 +100323f2: f8ad 100e strh.w r1, [sp, #14] +100323f6: d801 bhi.n 100323fc +100323f8: 2000 movs r0, #0 +100323fa: e0c4 b.n 10032586 +100323fc: 4620 mov r0, r4 +100323fe: f10d 020d add.w r2, sp, #13 +10032402: 462b mov r3, r5 +10032404: f009 fd26 bl 1003be54 +10032408: b118 cbz r0, 10032412 +1003240a: f89d 300d ldrb.w r3, [sp, #13] +1003240e: 2bff cmp r3, #255 ; 0xff +10032410: d1f2 bne.n 100323f8 +10032412: f89d 3014 ldrb.w r3, [sp, #20] +10032416: f8bd 600e ldrh.w r6, [sp, #14] +1003241a: 2b0f cmp r3, #15 +1003241c: f04f 0700 mov.w r7, #0 +10032420: d96b bls.n 100324fa +10032422: f10d 0312 add.w r3, sp, #18 +10032426: 9500 str r5, [sp, #0] +10032428: 4620 mov r0, r4 +1003242a: 4639 mov r1, r7 +1003242c: 2202 movs r2, #2 +1003242e: f8ad 7012 strh.w r7, [sp, #18] +10032432: f88d 7010 strb.w r7, [sp, #16] +10032436: f009 fd03 bl 1003be40 +1003243a: f8bd 3012 ldrh.w r3, [sp, #18] +1003243e: 42b3 cmp r3, r6 +10032440: d9da bls.n 100323f8 +10032442: f89d 9014 ldrb.w r9, [sp, #20] +10032446: ea4f 1949 mov.w r9, r9, lsl #5 +1003244a: f049 090f orr.w r9, r9, #15 +1003244e: fa5f f989 uxtb.w r9, r9 +10032452: 4631 mov r1, r6 +10032454: 464a mov r2, r9 +10032456: 462b mov r3, r5 +10032458: 4620 mov r0, r4 +1003245a: f009 fd15 bl 1003be88 +1003245e: 4620 mov r0, r4 +10032460: 21ec movs r1, #236 ; 0xec +10032462: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10032466: 2300 movs r3, #0 +10032468: f001 fe54 bl 10034114 +1003246c: 4631 mov r1, r6 +1003246e: aa04 add r2, sp, #16 +10032470: 462b mov r3, r5 +10032472: 4620 mov r0, r4 +10032474: f009 fcee bl 1003be54 +10032478: 2301 movs r3, #1 +1003247a: 4620 mov r0, r4 +1003247c: 21ec movs r1, #236 ; 0xec +1003247e: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10032482: f001 fe47 bl 10034114 +10032486: f89d 3010 ldrb.w r3, [sp, #16] +1003248a: fa5f f887 uxtb.w r8, r7 +1003248e: 454b cmp r3, r9 +10032490: d003 beq.n 1003249a +10032492: 3701 adds r7, #1 +10032494: 2f05 cmp r7, #5 +10032496: d1dc bne.n 10032452 +10032498: e7ae b.n 100323f8 +1003249a: f89d 7014 ldrb.w r7, [sp, #20] +1003249e: f89d 3015 ldrb.w r3, [sp, #21] +100324a2: 3601 adds r6, #1 +100324a4: f007 0778 and.w r7, r7, #120 ; 0x78 +100324a8: b2b6 uxth r6, r6 +100324aa: ea43 0747 orr.w r7, r3, r7, lsl #1 +100324ae: 4631 mov r1, r6 +100324b0: 463a mov r2, r7 +100324b2: 462b mov r3, r5 +100324b4: 4620 mov r0, r4 +100324b6: f009 fce7 bl 1003be88 +100324ba: 4620 mov r0, r4 +100324bc: 21ec movs r1, #236 ; 0xec +100324be: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +100324c2: 2300 movs r3, #0 +100324c4: f001 fe26 bl 10034114 +100324c8: 4631 mov r1, r6 +100324ca: aa04 add r2, sp, #16 +100324cc: 462b mov r3, r5 +100324ce: 4620 mov r0, r4 +100324d0: f009 fcc0 bl 1003be54 +100324d4: 2301 movs r3, #1 +100324d6: 4620 mov r0, r4 +100324d8: 21ec movs r1, #236 ; 0xec +100324da: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +100324de: f001 fe19 bl 10034114 +100324e2: f89d 3010 ldrb.w r3, [sp, #16] +100324e6: 42bb cmp r3, r7 +100324e8: d034 beq.n 10032554 +100324ea: f108 0301 add.w r3, r8, #1 +100324ee: f1b8 0f03 cmp.w r8, #3 +100324f2: b2db uxtb r3, r3 +100324f4: d880 bhi.n 100323f8 +100324f6: 4698 mov r8, r3 +100324f8: e7d9 b.n 100324ae +100324fa: f89d 8015 ldrb.w r8, [sp, #21] +100324fe: f88d 7012 strb.w r7, [sp, #18] +10032502: ea48 1803 orr.w r8, r8, r3, lsl #4 +10032506: fa5f f888 uxtb.w r8, r8 +1003250a: 2705 movs r7, #5 +1003250c: 4631 mov r1, r6 +1003250e: 4642 mov r2, r8 +10032510: 462b mov r3, r5 +10032512: 4620 mov r0, r4 +10032514: f009 fcb8 bl 1003be88 +10032518: 4620 mov r0, r4 +1003251a: 21ec movs r1, #236 ; 0xec +1003251c: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10032520: 2300 movs r3, #0 +10032522: f001 fdf7 bl 10034114 +10032526: 4631 mov r1, r6 +10032528: f10d 0212 add.w r2, sp, #18 +1003252c: 462b mov r3, r5 +1003252e: 4620 mov r0, r4 +10032530: f009 fc90 bl 1003be54 +10032534: 2301 movs r3, #1 +10032536: 4620 mov r0, r4 +10032538: 21ec movs r1, #236 ; 0xec +1003253a: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +1003253e: f001 fde9 bl 10034114 +10032542: f89d 3012 ldrb.w r3, [sp, #18] +10032546: 4543 cmp r3, r8 +10032548: d004 beq.n 10032554 +1003254a: 3f01 subs r7, #1 +1003254c: f017 07ff ands.w r7, r7, #255 ; 0xff +10032550: d1dc bne.n 1003250c +10032552: e751 b.n 100323f8 +10032554: 1c71 adds r1, r6, #1 +10032556: f89d 2015 ldrb.w r2, [sp, #21] +1003255a: 9500 str r5, [sp, #0] +1003255c: 4620 mov r0, r4 +1003255e: b289 uxth r1, r1 +10032560: f10d 0316 add.w r3, sp, #22 +10032564: f009 fccd bl 1003bf02 +10032568: 280f cmp r0, #15 +1003256a: 4602 mov r2, r0 +1003256c: d00a beq.n 10032584 +1003256e: f89d 1014 ldrb.w r1, [sp, #20] +10032572: 9500 str r5, [sp, #0] +10032574: 4620 mov r0, r4 +10032576: f10d 0316 add.w r3, sp, #22 +1003257a: f009 fc9f bl 1003bebc +1003257e: 2800 cmp r0, #0 +10032580: f43f af3a beq.w 100323f8 +10032584: 2001 movs r0, #1 +10032586: b008 add sp, #32 +10032588: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003258c: 1004aa15 .word 0x1004aa15 + +10032590 : +10032590: b5f0 push {r4, r5, r6, r7, lr} +10032592: 2300 movs r3, #0 +10032594: b085 sub sp, #20 +10032596: 4605 mov r5, r0 +10032598: f8ad 300e strh.w r3, [sp, #14] +1003259c: 4614 mov r4, r2 +1003259e: b922 cbnz r2, 100325aa +100325a0: 213a movs r1, #58 ; 0x3a +100325a2: f10d 020e add.w r2, sp, #14 +100325a6: f005 f9c7 bl 10037938 +100325aa: f8bd 600e ldrh.w r6, [sp, #14] +100325ae: b924 cbnz r4, 100325ba +100325b0: 4b2e ldr r3, [pc, #184] ; (1003266c ) +100325b2: 681a ldr r2, [r3, #0] +100325b4: f422 7240 bic.w r2, r2, #768 ; 0x300 +100325b8: 601a str r2, [r3, #0] +100325ba: 2700 movs r7, #0 +100325bc: f8bd 100e ldrh.w r1, [sp, #14] +100325c0: 29ff cmp r1, #255 ; 0xff +100325c2: d80b bhi.n 100325dc +100325c4: 4628 mov r0, r5 +100325c6: f10d 020d add.w r2, sp, #13 +100325ca: 4623 mov r3, r4 +100325cc: f009 fc42 bl 1003be54 +100325d0: 2800 cmp r0, #0 +100325d2: d03f beq.n 10032654 +100325d4: f89d 000d ldrb.w r0, [sp, #13] +100325d8: 28ff cmp r0, #255 ; 0xff +100325da: d108 bne.n 100325ee +100325dc: 2c00 cmp r4, #0 +100325de: d141 bne.n 10032664 +100325e0: 4628 mov r0, r5 +100325e2: 213a movs r1, #58 ; 0x3a +100325e4: f10d 020e add.w r2, sp, #14 +100325e8: f005 f99f bl 1003792a +100325ec: e03a b.n 10032664 +100325ee: b176 cbz r6, 1003260e +100325f0: f8bd 300e ldrh.w r3, [sp, #14] +100325f4: 42b3 cmp r3, r6 +100325f6: d10a bne.n 1003260e +100325f8: 3701 adds r7, #1 +100325fa: 23ff movs r3, #255 ; 0xff +100325fc: 2f03 cmp r7, #3 +100325fe: f88d 300d strb.w r3, [sp, #13] +10032602: d827 bhi.n 10032654 +10032604: d1da bne.n 100325bc +10032606: 2600 movs r6, #0 +10032608: f8ad 600e strh.w r6, [sp, #14] +1003260c: e7d6 b.n 100325bc +1003260e: f000 031f and.w r3, r0, #31 +10032612: 2b0f cmp r3, #15 +10032614: d112 bne.n 1003263c +10032616: f8bd 100e ldrh.w r1, [sp, #14] +1003261a: 4628 mov r0, r5 +1003261c: 3101 adds r1, #1 +1003261e: b289 uxth r1, r1 +10032620: f10d 020d add.w r2, sp, #13 +10032624: 4623 mov r3, r4 +10032626: f8ad 100e strh.w r1, [sp, #14] +1003262a: f009 fc13 bl 1003be54 +1003262e: f89d 000d ldrb.w r0, [sp, #13] +10032632: f000 000f and.w r0, r0, #15 +10032636: 280f cmp r0, #15 +10032638: d102 bne.n 10032640 +1003263a: e7bf b.n 100325bc +1003263c: f000 000f and.w r0, r0, #15 +10032640: f009 fbec bl 1003be1c +10032644: f8bd 300e ldrh.w r3, [sp, #14] +10032648: 3301 adds r3, #1 +1003264a: eb03 0040 add.w r0, r3, r0, lsl #1 +1003264e: f8ad 000e strh.w r0, [sp, #14] +10032652: e7b3 b.n 100325bc +10032654: 9400 str r4, [sp, #0] +10032656: 4628 mov r0, r5 +10032658: 2100 movs r1, #0 +1003265a: 2203 movs r2, #3 +1003265c: f10d 030e add.w r3, sp, #14 +10032660: f009 fbee bl 1003be40 +10032664: f8bd 000e ldrh.w r0, [sp, #14] +10032668: b005 add sp, #20 +1003266a: bdf0 pop {r4, r5, r6, r7, pc} +1003266c: 400000ec .word 0x400000ec + +10032670 : +10032670: b5f0 push {r4, r5, r6, r7, lr} +10032672: 461f mov r7, r3 +10032674: f241 6318 movw r3, #5656 ; 0x1618 +10032678: 58c3 ldr r3, [r0, r3] +1003267a: b089 sub sp, #36 ; 0x24 +1003267c: f893 303e ldrb.w r3, [r3, #62] ; 0x3e +10032680: 4605 mov r5, r0 +10032682: 2bfb cmp r3, #251 ; 0xfb +10032684: f8ad 1006 strh.w r1, [sp, #6] +10032688: f8ad 2004 strh.w r2, [sp, #4] +1003268c: d101 bne.n 10032692 +1003268e: 2000 movs r0, #0 +10032690: e0d3 b.n 1003283a +10032692: f8bd 2006 ldrh.w r2, [sp, #6] +10032696: f8bd 3004 ldrh.w r3, [sp, #4] +1003269a: 4413 add r3, r2 +1003269c: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 +100326a0: dcf5 bgt.n 1003268e +100326a2: 2001 movs r0, #1 +100326a4: f7e9 ff2c bl 1001c500 +100326a8: 2202 movs r2, #2 +100326aa: f10d 030e add.w r3, sp, #14 +100326ae: f44f 4120 mov.w r1, #40960 ; 0xa000 +100326b2: a805 add r0, sp, #20 +100326b4: f7ea ff4e bl 1001d554 +100326b8: 2001 movs r0, #1 +100326ba: f7e9 ff39 bl 1001c530 +100326be: f8bd 200e ldrh.w r2, [sp, #14] +100326c2: f248 1395 movw r3, #33173 ; 0x8195 +100326c6: 429a cmp r2, r3 +100326c8: d002 beq.n 100326d0 +100326ca: 4628 mov r0, r5 +100326cc: f7ff fe00 bl 100322d0 +100326d0: 2001 movs r0, #1 +100326d2: f7e9 ff15 bl 1001c500 +100326d6: 2202 movs r2, #2 +100326d8: ab04 add r3, sp, #16 +100326da: a805 add r0, sp, #20 +100326dc: f24a 0102 movw r1, #40962 ; 0xa002 +100326e0: f7ea ff38 bl 1001d554 +100326e4: f8bd 2010 ldrh.w r2, [sp, #16] +100326e8: f64f 73ff movw r3, #65535 ; 0xffff +100326ec: 429a cmp r2, r3 +100326ee: f04f 0402 mov.w r4, #2 +100326f2: d013 beq.n 1003271c +100326f4: f504 4120 add.w r1, r4, #40960 ; 0xa000 +100326f8: 2202 movs r2, #2 +100326fa: f10d 0312 add.w r3, sp, #18 +100326fe: a805 add r0, sp, #20 +10032700: 3102 adds r1, #2 +10032702: f7ea ff27 bl 1001d554 +10032706: f8bd 2012 ldrh.w r2, [sp, #18] +1003270a: f64f 73ff movw r3, #65535 ; 0xffff +1003270e: 429a cmp r2, r3 +10032710: d004 beq.n 1003271c +10032712: 3204 adds r2, #4 +10032714: 4414 add r4, r2 +10032716: f5b4 5f80 cmp.w r4, #4096 ; 0x1000 +1003271a: d3eb bcc.n 100326f4 +1003271c: 2001 movs r0, #1 +1003271e: f7e9 ff07 bl 1001c530 +10032722: f8bd 3004 ldrh.w r3, [sp, #4] +10032726: 3304 adds r3, #4 +10032728: 4423 add r3, r4 +1003272a: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 +1003272e: d964 bls.n 100327fa +10032730: f44f 7000 mov.w r0, #512 ; 0x200 +10032734: f7ea fb1c bl 1001cd70 +10032738: 21ff movs r1, #255 ; 0xff +1003273a: 4606 mov r6, r0 +1003273c: f44f 7200 mov.w r2, #512 ; 0x200 +10032740: f7ea fb46 bl 1001cdd0 +10032744: 2e00 cmp r6, #0 +10032746: d0a2 beq.n 1003268e +10032748: f241 6318 movw r3, #5656 ; 0x1618 +1003274c: 58eb ldr r3, [r5, r3] +1003274e: f893 303e ldrb.w r3, [r3, #62] ; 0x3e +10032752: 2bfb cmp r3, #251 ; 0xfb +10032754: d104 bne.n 10032760 +10032756: 4628 mov r0, r5 +10032758: f7ff fdba bl 100322d0 +1003275c: 2402 movs r4, #2 +1003275e: e047 b.n 100327f0 +10032760: 4630 mov r0, r6 +10032762: f7ff fd65 bl 10032230 +10032766: 2800 cmp r0, #0 +10032768: d0f5 beq.n 10032756 +1003276a: 4628 mov r0, r5 +1003276c: f7ff fdb0 bl 100322d0 +10032770: 2402 movs r4, #2 +10032772: 2500 movs r5, #0 +10032774: 5d73 ldrb r3, [r6, r5] +10032776: 2bff cmp r3, #255 ; 0xff +10032778: d035 beq.n 100327e6 +1003277a: 2301 movs r3, #1 +1003277c: f8ad 5010 strh.w r5, [sp, #16] +10032780: f8ad 3012 strh.w r3, [sp, #18] +10032784: 1c6a adds r2, r5, #1 +10032786: b292 uxth r2, r2 +10032788: 5cb3 ldrb r3, [r6, r2] +1003278a: 2bff cmp r3, #255 ; 0xff +1003278c: d006 beq.n 1003279c +1003278e: f8bd 3012 ldrh.w r3, [sp, #18] +10032792: 4615 mov r5, r2 +10032794: 3301 adds r3, #1 +10032796: f8ad 3012 strh.w r3, [sp, #18] +1003279a: e7f3 b.n 10032784 +1003279c: 2001 movs r0, #1 +1003279e: f7e9 feaf bl 1001c500 +100327a2: f504 4120 add.w r1, r4, #40960 ; 0xa000 +100327a6: 2202 movs r2, #2 +100327a8: ab04 add r3, sp, #16 +100327aa: a805 add r0, sp, #20 +100327ac: f7ea ff72 bl 1001d694 +100327b0: f504 4120 add.w r1, r4, #40960 ; 0xa000 +100327b4: 3102 adds r1, #2 +100327b6: 2202 movs r2, #2 +100327b8: f10d 0312 add.w r3, sp, #18 +100327bc: a805 add r0, sp, #20 +100327be: f7ea ff69 bl 1001d694 +100327c2: f8bd 3010 ldrh.w r3, [sp, #16] +100327c6: f504 4120 add.w r1, r4, #40960 ; 0xa000 +100327ca: 4433 add r3, r6 +100327cc: 3104 adds r1, #4 +100327ce: f8bd 2012 ldrh.w r2, [sp, #18] +100327d2: a805 add r0, sp, #20 +100327d4: f7ea ff5e bl 1001d694 +100327d8: 2001 movs r0, #1 +100327da: f7e9 fea9 bl 1001c530 +100327de: f8bd 3012 ldrh.w r3, [sp, #18] +100327e2: 3304 adds r3, #4 +100327e4: 441c add r4, r3 +100327e6: 3501 adds r5, #1 +100327e8: b2ad uxth r5, r5 +100327ea: f5b5 7f00 cmp.w r5, #512 ; 0x200 +100327ee: d3c1 bcc.n 10032774 +100327f0: 4630 mov r0, r6 +100327f2: f44f 7100 mov.w r1, #512 ; 0x200 +100327f6: f7ea fad1 bl 1001cd9c +100327fa: 2001 movs r0, #1 +100327fc: f7e9 fe80 bl 1001c500 +10032800: f504 4120 add.w r1, r4, #40960 ; 0xa000 +10032804: 2202 movs r2, #2 +10032806: f10d 0306 add.w r3, sp, #6 +1003280a: a805 add r0, sp, #20 +1003280c: f7ea ff42 bl 1001d694 +10032810: f504 4120 add.w r1, r4, #40960 ; 0xa000 +10032814: 3102 adds r1, #2 +10032816: 2202 movs r2, #2 +10032818: ab01 add r3, sp, #4 +1003281a: a805 add r0, sp, #20 +1003281c: f7ea ff3a bl 1001d694 +10032820: f504 4120 add.w r1, r4, #40960 ; 0xa000 +10032824: 3104 adds r1, #4 +10032826: f8bd 2004 ldrh.w r2, [sp, #4] +1003282a: 463b mov r3, r7 +1003282c: a805 add r0, sp, #20 +1003282e: f7ea ff31 bl 1001d694 +10032832: 2001 movs r0, #1 +10032834: f7e9 fe7c bl 1001c530 +10032838: 2001 movs r0, #1 +1003283a: b009 add sp, #36 ; 0x24 +1003283c: bdf0 pop {r4, r5, r6, r7, pc} + +1003283e : +1003283e: b538 push {r3, r4, r5, lr} +10032840: f44f 61aa mov.w r1, #1360 ; 0x550 +10032844: f241 6318 movw r3, #5656 ; 0x1618 +10032848: 4604 mov r4, r0 +1003284a: f241 0210 movw r2, #4112 ; 0x1010 +1003284e: 58c5 ldr r5, [r0, r3] +10032850: f009 ff1a bl 1003c688 +10032854: 4620 mov r0, r4 +10032856: f44f 61a8 mov.w r1, #1344 ; 0x540 +1003285a: f246 4204 movw r2, #25604 ; 0x6404 +1003285e: f009 ff13 bl 1003c688 +10032862: 6923 ldr r3, [r4, #16] +10032864: 071b lsls r3, r3, #28 +10032866: d51b bpl.n 100328a0 +10032868: f240 5159 movw r1, #1369 ; 0x559 +1003286c: 2202 movs r2, #2 +1003286e: 4620 mov r0, r4 +10032870: f009 ff03 bl 1003c67a +10032874: f246 620f movw r2, #26127 ; 0x660f +10032878: f44f 61a2 mov.w r1, #1296 ; 0x510 +1003287c: 4620 mov r0, r4 +1003287e: f009 ff03 bl 1003c688 +10032882: f240 4122 movw r1, #1058 ; 0x422 +10032886: 4620 mov r0, r4 +10032888: f009 fee2 bl 1003c650 +1003288c: f240 5142 movw r1, #1346 ; 0x542 +10032890: f885 01a5 strb.w r0, [r5, #421] ; 0x1a5 +10032894: 4620 mov r0, r4 +10032896: f009 fedb bl 1003c650 +1003289a: f885 01a6 strb.w r0, [r5, #422] ; 0x1a6 +1003289e: bd38 pop {r3, r4, r5, pc} +100328a0: 4620 mov r0, r4 +100328a2: f44f 61ab mov.w r1, #1368 ; 0x558 +100328a6: 2205 movs r2, #5 +100328a8: f009 fee7 bl 1003c67a +100328ac: e7dc b.n 10032868 + +100328ae <_InitBurstPktLen_8195AB>: +100328ae: f240 610c movw r1, #1548 ; 0x60c +100328b2: 2204 movs r2, #4 +100328b4: f009 bee1 b.w 1003c67a + +100328b8 : +100328b8: 4b1f ldr r3, [pc, #124] ; (10032938 ) +100328ba: 60c3 str r3, [r0, #12] +100328bc: 4b1f ldr r3, [pc, #124] ; (1003293c ) +100328be: 6383 str r3, [r0, #56] ; 0x38 +100328c0: 4b1f ldr r3, [pc, #124] ; (10032940 ) +100328c2: 63c3 str r3, [r0, #60] ; 0x3c +100328c4: 4b1f ldr r3, [pc, #124] ; (10032944 ) +100328c6: 6683 str r3, [r0, #104] ; 0x68 +100328c8: 4b1f ldr r3, [pc, #124] ; (10032948 ) +100328ca: f8c0 3088 str.w r3, [r0, #136] ; 0x88 +100328ce: 4b1f ldr r3, [pc, #124] ; (1003294c ) +100328d0: 6403 str r3, [r0, #64] ; 0x40 +100328d2: 4b1f ldr r3, [pc, #124] ; (10032950 ) +100328d4: f8c0 3084 str.w r3, [r0, #132] ; 0x84 +100328d8: 4b1e ldr r3, [pc, #120] ; (10032954 ) +100328da: 65c3 str r3, [r0, #92] ; 0x5c +100328dc: 4b1e ldr r3, [pc, #120] ; (10032958 ) +100328de: 6603 str r3, [r0, #96] ; 0x60 +100328e0: 4b1e ldr r3, [pc, #120] ; (1003295c ) +100328e2: 6643 str r3, [r0, #100] ; 0x64 +100328e4: 4b1e ldr r3, [pc, #120] ; (10032960 ) +100328e6: f8c0 30a0 str.w r3, [r0, #160] ; 0xa0 +100328ea: 4b1e ldr r3, [pc, #120] ; (10032964 ) +100328ec: f8c0 30a4 str.w r3, [r0, #164] ; 0xa4 +100328f0: 4b1d ldr r3, [pc, #116] ; (10032968 ) +100328f2: f8c0 30a8 str.w r3, [r0, #168] ; 0xa8 +100328f6: 4b1d ldr r3, [pc, #116] ; (1003296c ) +100328f8: f8c0 30ac str.w r3, [r0, #172] ; 0xac +100328fc: 4b1c ldr r3, [pc, #112] ; (10032970 ) +100328fe: f8c0 3090 str.w r3, [r0, #144] ; 0x90 +10032902: 4b1c ldr r3, [pc, #112] ; (10032974 ) +10032904: f8c0 3094 str.w r3, [r0, #148] ; 0x94 +10032908: 4b1b ldr r3, [pc, #108] ; (10032978 ) +1003290a: f8c0 30b0 str.w r3, [r0, #176] ; 0xb0 +1003290e: 4b1b ldr r3, [pc, #108] ; (1003297c ) +10032910: f8c0 30b4 str.w r3, [r0, #180] ; 0xb4 +10032914: 4b1a ldr r3, [pc, #104] ; (10032980 ) +10032916: f8c0 30b8 str.w r3, [r0, #184] ; 0xb8 +1003291a: 4b1a ldr r3, [pc, #104] ; (10032984 ) +1003291c: f8c0 30bc str.w r3, [r0, #188] ; 0xbc +10032920: 4b19 ldr r3, [pc, #100] ; (10032988 ) +10032922: f8c0 30c0 str.w r3, [r0, #192] ; 0xc0 +10032926: 4b19 ldr r3, [pc, #100] ; (1003298c ) +10032928: f8c0 30c4 str.w r3, [r0, #196] ; 0xc4 +1003292c: 4b18 ldr r3, [pc, #96] ; (10032990 ) +1003292e: 67c3 str r3, [r0, #124] ; 0x7c +10032930: 4b18 ldr r3, [pc, #96] ; (10032994 ) +10032932: f8c0 3080 str.w r3, [r0, #128] ; 0x80 +10032936: 4770 bx lr +10032938: 10031f05 .word 0x10031f05 +1003293c: 1003fccd .word 0x1003fccd +10032940: 1003fda5 .word 0x1003fda5 +10032944: 1003fbe9 .word 0x1003fbe9 +10032948: 1003f827 .word 0x1003f827 +1003294c: 10031c39 .word 0x10031c39 +10032950: 100319b5 .word 0x100319b5 +10032954: 10034bcd .word 0x10034bcd +10032958: 10034bef .word 0x10034bef +1003295c: 10034c09 .word 0x10034c09 +10032960: 00018279 .word 0x00018279 +10032964: 00018239 .word 0x00018239 +10032968: 100341f5 .word 0x100341f5 +1003296c: 1003420d .word 0x1003420d +10032970: 10032021 .word 0x10032021 +10032974: 10032089 .word 0x10032089 +10032978: 10031ef1 .word 0x10031ef1 +1003297c: 100320ad .word 0x100320ad +10032980: 10031941 .word 0x10031941 +10032984: 10032591 .word 0x10032591 +10032988: 10032315 .word 0x10032315 +1003298c: 10031cad .word 0x10031cad +10032990: 1003221d .word 0x1003221d +10032994: 10031f69 .word 0x10031f69 + +10032998 : +10032998: 4770 bx lr + +1003299a : +1003299a: b538 push {r3, r4, r5, lr} +1003299c: f44f 7109 mov.w r1, #548 ; 0x224 +100329a0: 4604 mov r4, r0 +100329a2: f009 fe63 bl 1003c66c +100329a6: f44f 7109 mov.w r1, #548 ; 0x224 +100329aa: f440 3280 orr.w r2, r0, #65536 ; 0x10000 +100329ae: 4620 mov r0, r4 +100329b0: f009 fe71 bl 1003c696 +100329b4: f7ea faf8 bl 1001cfa8 +100329b8: 4605 mov r5, r0 +100329ba: 4620 mov r0, r4 +100329bc: f44f 7109 mov.w r1, #548 ; 0x224 +100329c0: f009 fe54 bl 1003c66c +100329c4: 03c3 lsls r3, r0, #15 +100329c6: d509 bpl.n 100329dc +100329c8: 4628 mov r0, r5 +100329ca: f7ea fb27 bl 1001d01c +100329ce: f5b0 7f7a cmp.w r0, #1000 ; 0x3e8 +100329d2: d805 bhi.n 100329e0 +100329d4: 2002 movs r0, #2 +100329d6: f7ea fb43 bl 1001d060 +100329da: e7ee b.n 100329ba +100329dc: 2001 movs r0, #1 +100329de: bd38 pop {r3, r4, r5, pc} +100329e0: 2000 movs r0, #0 +100329e2: bd38 pop {r3, r4, r5, pc} + +100329e4 : +100329e4: 280e cmp r0, #14 +100329e6: d819 bhi.n 10032a1c +100329e8: 1e43 subs r3, r0, #1 +100329ea: 2b01 cmp r3, #1 +100329ec: d801 bhi.n 100329f2 +100329ee: 2300 movs r3, #0 +100329f0: e013 b.n 10032a1a +100329f2: 1ec3 subs r3, r0, #3 +100329f4: 2b02 cmp r3, #2 +100329f6: d801 bhi.n 100329fc +100329f8: 2301 movs r3, #1 +100329fa: e00e b.n 10032a1a +100329fc: 1f83 subs r3, r0, #6 +100329fe: 2b02 cmp r3, #2 +10032a00: d801 bhi.n 10032a06 +10032a02: 2302 movs r3, #2 +10032a04: e009 b.n 10032a1a +10032a06: f1a0 0309 sub.w r3, r0, #9 +10032a0a: 2b02 cmp r3, #2 +10032a0c: d801 bhi.n 10032a12 +10032a0e: 2303 movs r3, #3 +10032a10: e003 b.n 10032a1a +10032a12: 380c subs r0, #12 +10032a14: 2802 cmp r0, #2 +10032a16: d801 bhi.n 10032a1c +10032a18: 2304 movs r3, #4 +10032a1a: 700b strb r3, [r1, #0] +10032a1c: 2001 movs r0, #1 +10032a1e: 4770 bx lr + +10032a20 : +10032a20: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10032a24: f241 6918 movw r9, #5656 ; 0x1618 +10032a28: f850 b009 ldr.w fp, [r0, r9] +10032a2c: 4680 mov r8, r0 +10032a2e: f44f 7000 mov.w r0, #512 ; 0x200 +10032a32: 468a mov sl, r1 +10032a34: 4616 mov r6, r2 +10032a36: 461f mov r7, r3 +10032a38: f7ea f99a bl 1001cd70 +10032a3c: 4604 mov r4, r0 +10032a3e: b930 cbnz r0, 10032a4e +10032a40: 4638 mov r0, r7 +10032a42: 21ff movs r1, #255 ; 0xff +10032a44: 4632 mov r2, r6 +10032a46: f7ea f9c3 bl 1001cdd0 +10032a4a: 4625 mov r5, r4 +10032a4c: e059 b.n 10032b02 +10032a4e: 4640 mov r0, r8 +10032a50: 2100 movs r1, #0 +10032a52: f44f 7200 mov.w r2, #512 ; 0x200 +10032a56: 4623 mov r3, r4 +10032a58: f009 fa71 bl 1003bf3e +10032a5c: 4605 mov r5, r0 +10032a5e: b950 cbnz r0, 10032a76 +10032a60: 4620 mov r0, r4 +10032a62: f44f 7100 mov.w r1, #512 ; 0x200 +10032a66: f7ea f999 bl 1001cd9c +10032a6a: 4638 mov r0, r7 +10032a6c: 21ff movs r1, #255 ; 0xff +10032a6e: 4632 mov r2, r6 +10032a70: f7ea f9ae bl 1001cdd0 +10032a74: e045 b.n 10032b02 +10032a76: f504 758d add.w r5, r4, #282 ; 0x11a +10032a7a: 4668 mov r0, sp +10032a7c: 4629 mov r1, r5 +10032a7e: 2206 movs r2, #6 +10032a80: f7ea f994 bl 1001cdac +10032a84: f89b 303e ldrb.w r3, [fp, #62] ; 0x3e +10032a88: 2bfb cmp r3, #251 ; 0xfb +10032a8a: d00b beq.n 10032aa4 +10032a8c: f89d 3030 ldrb.w r3, [sp, #48] ; 0x30 +10032a90: b943 cbnz r3, 10032aa4 +10032a92: f858 3009 ldr.w r3, [r8, r9] +10032a96: f893 303e ldrb.w r3, [r3, #62] ; 0x3e +10032a9a: 2bfb cmp r3, #251 ; 0xfb +10032a9c: d002 beq.n 10032aa4 +10032a9e: 4620 mov r0, r4 +10032aa0: f7ff fbc6 bl 10032230 +10032aa4: f89d 3000 ldrb.w r3, [sp] +10032aa8: 2bff cmp r3, #255 ; 0xff +10032aaa: d113 bne.n 10032ad4 +10032aac: f89d 3001 ldrb.w r3, [sp, #1] +10032ab0: 2bff cmp r3, #255 ; 0xff +10032ab2: d10f bne.n 10032ad4 +10032ab4: f89d 3002 ldrb.w r3, [sp, #2] +10032ab8: 2bff cmp r3, #255 ; 0xff +10032aba: d10b bne.n 10032ad4 +10032abc: f89d 3003 ldrb.w r3, [sp, #3] +10032ac0: 2bff cmp r3, #255 ; 0xff +10032ac2: d107 bne.n 10032ad4 +10032ac4: f89d 3004 ldrb.w r3, [sp, #4] +10032ac8: 2bff cmp r3, #255 ; 0xff +10032aca: d103 bne.n 10032ad4 +10032acc: f89d 3005 ldrb.w r3, [sp, #5] +10032ad0: 2bff cmp r3, #255 ; 0xff +10032ad2: d004 beq.n 10032ade +10032ad4: 4628 mov r0, r5 +10032ad6: 4669 mov r1, sp +10032ad8: 2206 movs r2, #6 +10032ada: f7ea f967 bl 1001cdac +10032ade: f504 70b0 add.w r0, r4, #352 ; 0x160 +10032ae2: 21ff movs r1, #255 ; 0xff +10032ae4: 2260 movs r2, #96 ; 0x60 +10032ae6: f7ea f973 bl 1001cdd0 +10032aea: 4638 mov r0, r7 +10032aec: eb04 010a add.w r1, r4, sl +10032af0: 4632 mov r2, r6 +10032af2: f7ea f95b bl 1001cdac +10032af6: 4620 mov r0, r4 +10032af8: f44f 7100 mov.w r1, #512 ; 0x200 +10032afc: f7ea f94e bl 1001cd9c +10032b00: 2501 movs r5, #1 +10032b02: 4628 mov r0, r5 +10032b04: b003 add sp, #12 +10032b06: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + ... + +10032b0c : +10032b0c: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10032b10: 469c mov ip, r3 +10032b12: f241 6318 movw r3, #5656 ; 0x1618 +10032b16: 58c3 ldr r3, [r0, r3] +10032b18: 4682 mov sl, r0 +10032b1a: f893 303e ldrb.w r3, [r3, #62] ; 0x3e +10032b1e: 460e mov r6, r1 +10032b20: 2bfb cmp r3, #251 ; 0xfb +10032b22: d011 beq.n 10032b48 +10032b24: f89d 3030 ldrb.w r3, [sp, #48] ; 0x30 +10032b28: 491f ldr r1, [pc, #124] ; (10032ba8 ) +10032b2a: 2b00 cmp r3, #0 +10032b2c: 4b1f ldr r3, [pc, #124] ; (10032bac ) +10032b2e: 4c20 ldr r4, [pc, #128] ; (10032bb0 ) +10032b30: bf0c ite eq +10032b32: 4688 moveq r8, r1 +10032b34: 4698 movne r8, r3 +10032b36: 4b1f ldr r3, [pc, #124] ; (10032bb4 ) +10032b38: bf0c ite eq +10032b3a: f04f 0b02 moveq.w fp, #2 +10032b3e: f04f 0b04 movne.w fp, #4 +10032b42: bf18 it ne +10032b44: 461c movne r4, r3 +10032b46: e004 b.n 10032b52 +10032b48: f8df 8060 ldr.w r8, [pc, #96] ; 10032bac +10032b4c: 4c19 ldr r4, [pc, #100] ; (10032bb4 ) +10032b4e: f04f 0b04 mov.w fp, #4 +10032b52: f102 39ff add.w r9, r2, #4294967295 +10032b56: 44b1 add r9, r6 +10032b58: fa1f f989 uxth.w r9, r9 +10032b5c: eb04 0b8b add.w fp, r4, fp, lsl #2 +10032b60: 4635 mov r5, r6 +10032b62: 455c cmp r4, fp +10032b64: d01b beq.n 10032b9e +10032b66: 8821 ldrh r1, [r4, #0] +10032b68: 8867 ldrh r7, [r4, #2] +10032b6a: 42a9 cmp r1, r5 +10032b6c: bf38 it cc +10032b6e: 4629 movcc r1, r5 +10032b70: 454f cmp r7, r9 +10032b72: bf28 it cs +10032b74: 464f movcs r7, r9 +10032b76: 428f cmp r7, r1 +10032b78: d30d bcc.n 10032b96 +10032b7a: 1c7d adds r5, r7, #1 +10032b7c: b2ad uxth r5, r5 +10032b7e: 1a6a subs r2, r5, r1 +10032b80: 1b8b subs r3, r1, r6 +10032b82: 4463 add r3, ip +10032b84: f8cd c004 str.w ip, [sp, #4] +10032b88: 4650 mov r0, sl +10032b8a: b292 uxth r2, r2 +10032b8c: 47c0 blx r8 +10032b8e: 2801 cmp r0, #1 +10032b90: f8dd c004 ldr.w ip, [sp, #4] +10032b94: d104 bne.n 10032ba0 +10032b96: 454f cmp r7, r9 +10032b98: f104 0404 add.w r4, r4, #4 +10032b9c: d1e1 bne.n 10032b62 +10032b9e: 2001 movs r0, #1 +10032ba0: b003 add sp, #12 +10032ba2: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10032ba6: bf00 nop +10032ba8: 10032671 .word 0x10032671 +10032bac: 1003bfa1 .word 0x1003bfa1 +10032bb0: 1004a98c .word 0x1004a98c +10032bb4: 1004a97c .word 0x1004a97c + +10032bb8 : +10032bb8: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +10032bba: f241 4208 movw r2, #5128 ; 0x1408 +10032bbe: f500 54a0 add.w r4, r0, #5120 ; 0x1400 +10032bc2: 5c85 ldrb r5, [r0, r2] +10032bc4: 3408 adds r4, #8 +10032bc6: 460e mov r6, r1 +10032bc8: 7aa1 ldrb r1, [r4, #10] +10032bca: b965 cbnz r5, 10032be6 +10032bcc: 2901 cmp r1, #1 +10032bce: d020 beq.n 10032c12 +10032bd0: 340b adds r4, #11 +10032bd2: 4629 mov r1, r5 +10032bd4: 9500 str r5, [sp, #0] +10032bd6: f44f 7200 mov.w r2, #512 ; 0x200 +10032bda: 4623 mov r3, r4 +10032bdc: f7ff ff20 bl 10032a20 +10032be0: 4630 mov r0, r6 +10032be2: 4621 mov r1, r4 +10032be4: e011 b.n 10032c0a +10032be6: b969 cbnz r1, 10032c04 +10032be8: ab04 add r3, sp, #16 +10032bea: f823 1d02 strh.w r1, [r3, #-2]! +10032bee: 2204 movs r2, #4 +10032bf0: 9100 str r1, [sp, #0] +10032bf2: f009 f925 bl 1003be40 +10032bf6: f104 000b add.w r0, r4, #11 +10032bfa: 21ff movs r1, #255 ; 0xff +10032bfc: f8bd 200e ldrh.w r2, [sp, #14] +10032c00: f7ea f8e6 bl 1001cdd0 +10032c04: 4630 mov r0, r6 +10032c06: f104 010b add.w r1, r4, #11 +10032c0a: f44f 7200 mov.w r2, #512 ; 0x200 +10032c0e: f7ea f8cd bl 1001cdac +10032c12: b004 add sp, #16 +10032c14: bd70 pop {r4, r5, r6, pc} + +10032c16 : +10032c16: 880a ldrh r2, [r1, #0] +10032c18: f248 1395 movw r3, #33173 ; 0x8195 +10032c1c: 429a cmp r2, r3 +10032c1e: bf18 it ne +10032c20: 2201 movne r2, #1 +10032c22: f241 4308 movw r3, #5128 ; 0x1408 +10032c26: bf08 it eq +10032c28: 2200 moveq r2, #0 +10032c2a: 54c2 strb r2, [r0, r3] +10032c2c: 4770 bx lr + +10032c2e : +10032c2e: b570 push {r4, r5, r6, lr} +10032c30: 4608 mov r0, r1 +10032c32: 4615 mov r5, r2 +10032c34: 460c mov r4, r1 +10032c36: 220e movs r2, #14 +10032c38: 2100 movs r1, #0 +10032c3a: 461e mov r6, r3 +10032c3c: f7ea f8c8 bl 1001cdd0 +10032c40: f895 3021 ldrb.w r3, [r5, #33] ; 0x21 +10032c44: 2bff cmp r3, #255 ; 0xff +10032c46: d101 bne.n 10032c4c +10032c48: 2300 movs r3, #0 +10032c4a: e003 b.n 10032c54 +10032c4c: 2e00 cmp r6, #0 +10032c4e: d1fb bne.n 10032c48 +10032c50: 4633 mov r3, r6 +10032c52: e009 b.n 10032c68 +10032c54: 2220 movs r2, #32 +10032c56: 54e2 strb r2, [r4, r3] +10032c58: 18e1 adds r1, r4, r3 +10032c5a: 3301 adds r3, #1 +10032c5c: 2b06 cmp r3, #6 +10032c5e: 718a strb r2, [r1, #6] +10032c60: d1f8 bne.n 10032c54 +10032c62: 2300 movs r3, #0 +10032c64: 7363 strb r3, [r4, #13] +10032c66: e027 b.n 10032cb8 +10032c68: 18ea adds r2, r5, r3 +10032c6a: f892 2020 ldrb.w r2, [r2, #32] +10032c6e: 2aff cmp r2, #255 ; 0xff +10032c70: bf08 it eq +10032c72: 2220 moveq r2, #32 +10032c74: 54e2 strb r2, [r4, r3] +10032c76: 3301 adds r3, #1 +10032c78: 2b06 cmp r3, #6 +10032c7a: d1f5 bne.n 10032c68 +10032c7c: 2300 movs r3, #0 +10032c7e: 18ea adds r2, r5, r3 +10032c80: f892 1026 ldrb.w r1, [r2, #38] ; 0x26 +10032c84: 18e2 adds r2, r4, r3 +10032c86: 29ff cmp r1, #255 ; 0xff +10032c88: f103 0301 add.w r3, r3, #1 +10032c8c: bf08 it eq +10032c8e: 2120 moveq r1, #32 +10032c90: 2b05 cmp r3, #5 +10032c92: 7191 strb r1, [r2, #6] +10032c94: d1f3 bne.n 10032c7e +10032c96: f895 202b ldrb.w r2, [r5, #43] ; 0x2b +10032c9a: 2aff cmp r2, #255 ; 0xff +10032c9c: d101 bne.n 10032ca2 +10032c9e: 2300 movs r3, #0 +10032ca0: e005 b.n 10032cae +10032ca2: 0912 lsrs r2, r2, #4 +10032ca4: b2d3 uxtb r3, r2 +10032ca6: 0711 lsls r1, r2, #28 +10032ca8: bf48 it mi +10032caa: f063 030f ornmi r3, r3, #15 +10032cae: 7363 strb r3, [r4, #13] +10032cb0: f895 302b ldrb.w r3, [r5, #43] ; 0x2b +10032cb4: 2bff cmp r3, #255 ; 0xff +10032cb6: d101 bne.n 10032cbc +10032cb8: 2302 movs r3, #2 +10032cba: e005 b.n 10032cc8 +10032cbc: f003 030f and.w r3, r3, #15 +10032cc0: 071a lsls r2, r3, #28 +10032cc2: bf48 it mi +10032cc4: f063 030f ornmi r3, r3, #15 +10032cc8: 7323 strb r3, [r4, #12] +10032cca: bd70 pop {r4, r5, r6, pc} + +10032ccc : +10032ccc: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10032cd0: f241 6318 movw r3, #5656 ; 0x1618 +10032cd4: b086 sub sp, #24 +10032cd6: 460f mov r7, r1 +10032cd8: 4690 mov r8, r2 +10032cda: 58c4 ldr r4, [r0, r3] +10032cdc: a902 add r1, sp, #8 +10032cde: 463a mov r2, r7 +10032ce0: 4643 mov r3, r8 +10032ce2: f7ff ffa4 bl 10032c2e +10032ce6: 4625 mov r5, r4 +10032ce8: 2600 movs r6, #0 +10032cea: 3601 adds r6, #1 +10032cec: b2f6 uxtb r6, r6 +10032cee: 4630 mov r0, r6 +10032cf0: f10d 0107 add.w r1, sp, #7 +10032cf4: f7ff fe76 bl 100329e4 +10032cf8: 2e0e cmp r6, #14 +10032cfa: f89d 3007 ldrb.w r3, [sp, #7] +10032cfe: d115 bne.n 10032d2c +10032d00: f89d 200d ldrb.w r2, [sp, #13] +10032d04: f884 2067 strb.w r2, [r4, #103] ; 0x67 +10032d08: aa06 add r2, sp, #24 +10032d0a: 4413 add r3, r2 +10032d0c: f813 3c0a ldrb.w r3, [r3, #-10] +10032d10: f884 3075 strb.w r3, [r4, #117] ; 0x75 +10032d14: f89d 3014 ldrb.w r3, [sp, #20] +10032d18: f884 3076 strb.w r3, [r4, #118] ; 0x76 +10032d1c: f89d 3015 ldrb.w r3, [sp, #21] +10032d20: f884 3077 strb.w r3, [r4, #119] ; 0x77 +10032d24: f1b8 0f00 cmp.w r8, #0 +10032d28: d00c beq.n 10032d44 +10032d2a: e015 b.n 10032d58 +10032d2c: aa06 add r2, sp, #24 +10032d2e: 4413 add r3, r2 +10032d30: f813 2c10 ldrb.w r2, [r3, #-16] +10032d34: 3501 adds r5, #1 +10032d36: f885 2059 strb.w r2, [r5, #89] ; 0x59 +10032d3a: f813 3c0a ldrb.w r3, [r3, #-10] +10032d3e: f885 3067 strb.w r3, [r5, #103] ; 0x67 +10032d42: e7d2 b.n 10032cea +10032d44: f897 3131 ldrb.w r3, [r7, #305] ; 0x131 +10032d48: f003 0307 and.w r3, r3, #7 +10032d4c: f884 3043 strb.w r3, [r4, #67] ; 0x43 +10032d50: f897 3131 ldrb.w r3, [r7, #305] ; 0x131 +10032d54: 2bff cmp r3, #255 ; 0xff +10032d56: d102 bne.n 10032d5e +10032d58: 2301 movs r3, #1 +10032d5a: f884 3043 strb.w r3, [r4, #67] ; 0x43 +10032d5e: b006 add sp, #24 +10032d60: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10032d64 : +10032d64: f241 6318 movw r3, #5656 ; 0x1618 +10032d68: 58c3 ldr r3, [r0, r3] +10032d6a: b912 cbnz r2, 10032d72 +10032d6c: f891 2134 ldrb.w r2, [r1, #308] ; 0x134 +10032d70: e000 b.n 10032d74 +10032d72: 2201 movs r2, #1 +10032d74: f883 2042 strb.w r2, [r3, #66] ; 0x42 +10032d78: 4770 bx lr + +10032d7a : +10032d7a: b537 push {r0, r1, r2, r4, r5, lr} +10032d7c: f241 6318 movw r3, #5656 ; 0x1618 +10032d80: 4605 mov r5, r0 +10032d82: 2100 movs r1, #0 +10032d84: 2201 movs r2, #1 +10032d86: 58c4 ldr r4, [r0, r3] +10032d88: f009 f83c bl 1003be04 +10032d8c: 2300 movs r3, #0 +10032d8e: 21f8 movs r1, #248 ; 0xf8 +10032d90: f10d 0207 add.w r2, sp, #7 +10032d94: 4628 mov r0, r5 +10032d96: f009 f85d bl 1003be54 +10032d9a: 2100 movs r1, #0 +10032d9c: 4628 mov r0, r5 +10032d9e: 460a mov r2, r1 +10032da0: f009 f830 bl 1003be04 +10032da4: f89d 3007 ldrb.w r3, [sp, #7] +10032da8: f884 303e strb.w r3, [r4, #62] ; 0x3e +10032dac: 3307 adds r3, #7 +10032dae: b2db uxtb r3, r3 +10032db0: 2b06 cmp r3, #6 +10032db2: d812 bhi.n 10032dda +10032db4: 2201 movs r2, #1 +10032db6: fa02 f303 lsl.w r3, r2, r3 +10032dba: f013 0f21 tst.w r3, #33 ; 0x21 +10032dbe: d10a bne.n 10032dd6 +10032dc0: f013 0f42 tst.w r3, #66 ; 0x42 +10032dc4: d104 bne.n 10032dd0 +10032dc6: f013 0f1c tst.w r3, #28 +10032dca: d006 beq.n 10032dda +10032dcc: 2302 movs r3, #2 +10032dce: e005 b.n 10032ddc +10032dd0: f884 203d strb.w r2, [r4, #61] ; 0x3d +10032dd4: e004 b.n 10032de0 +10032dd6: 2303 movs r3, #3 +10032dd8: e000 b.n 10032ddc +10032dda: 2300 movs r3, #0 +10032ddc: f884 303d strb.w r3, [r4, #61] ; 0x3d +10032de0: b003 add sp, #12 +10032de2: bd30 pop {r4, r5, pc} + +10032de4 : +10032de4: b513 push {r0, r1, r4, lr} +10032de6: 4613 mov r3, r2 +10032de8: 4604 mov r4, r0 +10032dea: b129 cbz r1, 10032df8 +10032dec: f891 10c8 ldrb.w r1, [r1, #200] ; 0xc8 +10032df0: 29ff cmp r1, #255 ; 0xff +10032df2: bf08 it eq +10032df4: 2301 moveq r3, #1 +10032df6: e001 b.n 10032dfc +10032df8: 2301 movs r3, #1 +10032dfa: 21ff movs r1, #255 ; 0xff +10032dfc: f241 3243 movw r2, #4931 ; 0x1343 +10032e00: 9300 str r3, [sp, #0] +10032e02: 5ca2 ldrb r2, [r4, r2] +10032e04: 4620 mov r0, r4 +10032e06: 2320 movs r3, #32 +10032e08: f003 fe11 bl 10036a2e +10032e0c: f884 049e strb.w r0, [r4, #1182] ; 0x49e +10032e10: b002 add sp, #8 +10032e12: bd10 pop {r4, pc} + +10032e14 : +10032e14: f241 6318 movw r3, #5656 ; 0x1618 +10032e18: 58c3 ldr r3, [r0, r3] +10032e1a: b912 cbnz r2, 10032e22 +10032e1c: f891 2135 ldrb.w r2, [r1, #309] ; 0x135 +10032e20: e000 b.n 10032e24 +10032e22: 2200 movs r2, #0 +10032e24: f883 2041 strb.w r2, [r3, #65] ; 0x41 +10032e28: 4770 bx lr + +10032e2a : +10032e2a: f241 6318 movw r3, #5656 ; 0x1618 +10032e2e: 58c3 ldr r3, [r0, r3] +10032e30: b91a cbnz r2, 10032e3a +10032e32: f891 20c9 ldrb.w r2, [r1, #201] ; 0xc9 +10032e36: 2aff cmp r2, #255 ; 0xff +10032e38: d100 bne.n 10032e3c +10032e3a: 2220 movs r2, #32 +10032e3c: f883 217b strb.w r2, [r3, #379] ; 0x17b +10032e40: 4770 bx lr + +10032e42 : +10032e42: f241 6318 movw r3, #5656 ; 0x1618 +10032e46: 58c3 ldr r3, [r0, r3] +10032e48: b912 cbnz r2, 10032e50 +10032e4a: f891 10ca ldrb.w r1, [r1, #202] ; 0xca +10032e4e: e000 b.n 10032e52 +10032e50: 211a movs r1, #26 +10032e52: f883 1044 strb.w r1, [r3, #68] ; 0x44 +10032e56: f893 1044 ldrb.w r1, [r3, #68] ; 0x44 +10032e5a: 29ff cmp r1, #255 ; 0xff +10032e5c: d001 beq.n 10032e62 +10032e5e: 2a01 cmp r2, #1 +10032e60: d102 bne.n 10032e68 +10032e62: 221a movs r2, #26 +10032e64: f883 2044 strb.w r2, [r3, #68] ; 0x44 +10032e68: 4770 bx lr + +10032e6a : +10032e6a: b537 push {r0, r1, r2, r4, r5, lr} +10032e6c: 4613 mov r3, r2 +10032e6e: 4604 mov r4, r0 +10032e70: 460d mov r5, r1 +10032e72: b98a cbnz r2, 10032e98 +10032e74: 21ee movs r1, #238 ; 0xee +10032e76: f10d 0207 add.w r2, sp, #7 +10032e7a: f008 ffeb bl 1003be54 +10032e7e: f241 3366 movw r3, #4966 ; 0x1366 +10032e82: 5ce3 ldrb r3, [r4, r3] +10032e84: b933 cbnz r3, 10032e94 +10032e86: f895 3138 ldrb.w r3, [r5, #312] ; 0x138 +10032e8a: 2bff cmp r3, #255 ; 0xff +10032e8c: d004 beq.n 10032e98 +10032e8e: 06db lsls r3, r3, #27 +10032e90: d405 bmi.n 10032e9e +10032e92: e001 b.n 10032e98 +10032e94: 2b02 cmp r3, #2 +10032e96: d102 bne.n 10032e9e +10032e98: 23ff movs r3, #255 ; 0xff +10032e9a: f88d 3007 strb.w r3, [sp, #7] +10032e9e: f89d 3007 ldrb.w r3, [sp, #7] +10032ea2: f241 6113 movw r1, #5651 ; 0x1613 +10032ea6: 2bff cmp r3, #255 ; 0xff +10032ea8: f241 6214 movw r2, #5652 ; 0x1614 +10032eac: bf14 ite ne +10032eae: 2001 movne r0, #1 +10032eb0: 2000 moveq r0, #0 +10032eb2: 5460 strb r0, [r4, r1] +10032eb4: 54a3 strb r3, [r4, r2] +10032eb6: b003 add sp, #12 +10032eb8: bd30 pop {r4, r5, pc} + +10032eba : +10032eba: f241 6318 movw r3, #5656 ; 0x1618 +10032ebe: 58c3 ldr r3, [r0, r3] +10032ec0: 6adb ldr r3, [r3, #44] ; 0x2c +10032ec2: 2b01 cmp r3, #1 +10032ec4: d107 bne.n 10032ed6 +10032ec6: f891 0059 ldrb.w r0, [r1, #89] ; 0x59 +10032eca: 3801 subs r0, #1 +10032ecc: 2801 cmp r0, #1 +10032ece: bf8c ite hi +10032ed0: 2000 movhi r0, #0 +10032ed2: 2001 movls r0, #1 +10032ed4: 4770 bx lr +10032ed6: 2000 movs r0, #0 +10032ed8: 4770 bx lr + +10032eda : +10032eda: f241 6318 movw r3, #5656 ; 0x1618 +10032ede: 58c3 ldr r3, [r0, r3] +10032ee0: 6ad8 ldr r0, [r3, #44] ; 0x2c +10032ee2: 2801 cmp r0, #1 +10032ee4: d10b bne.n 10032efe +10032ee6: f891 2059 ldrb.w r2, [r1, #89] ; 0x59 +10032eea: b942 cbnz r2, 10032efe +10032eec: f893 3035 ldrb.w r3, [r3, #53] ; 0x35 +10032ef0: 2b02 cmp r3, #2 +10032ef2: d005 beq.n 10032f00 +10032ef4: 2b01 cmp r3, #1 +10032ef6: bf14 ite ne +10032ef8: 2000 movne r0, #0 +10032efa: 2002 moveq r0, #2 +10032efc: 4770 bx lr +10032efe: 2000 movs r0, #0 +10032f00: 4770 bx lr + +10032f02 : +10032f02: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10032f06: 2228 movs r2, #40 ; 0x28 +10032f08: 4605 mov r5, r0 +10032f0a: 460c mov r4, r1 +10032f0c: 4608 mov r0, r1 +10032f0e: 2100 movs r1, #0 +10032f10: f7e9 ff5e bl 1001cdd0 +10032f14: 6fee ldr r6, [r5, #124] ; 0x7c +10032f16: f895 9057 ldrb.w r9, [r5, #87] ; 0x57 +10032f1a: f241 6818 movw r8, #5656 ; 0x1618 +10032f1e: 4630 mov r0, r6 +10032f20: f856 7008 ldr.w r7, [r6, r8] +10032f24: f009 0901 and.w r9, r9, #1 +10032f28: f7f1 fc75 bl 10024816 +10032f2c: b140 cbz r0, 10032f40 +10032f2e: f241 73b1 movw r3, #6065 ; 0x17b1 +10032f32: 5cf3 ldrb r3, [r6, r3] +10032f34: b123 cbz r3, 10032f40 +10032f36: f241 73a8 movw r3, #6056 ; 0x17a8 +10032f3a: 58f3 ldr r3, [r6, r3] +10032f3c: f853 7008 ldr.w r7, [r3, r8] +10032f40: 6fab ldr r3, [r5, #120] ; 0x78 +10032f42: 2b01 cmp r3, #1 +10032f44: f040 80de bne.w 10033104 +10032f48: f895 2043 ldrb.w r2, [r5, #67] ; 0x43 +10032f4c: 7923 ldrb r3, [r4, #4] +10032f4e: f362 0306 bfi r3, r2, #0, #7 +10032f52: 7123 strb r3, [r4, #4] +10032f54: f895 2060 ldrb.w r2, [r5, #96] ; 0x60 +10032f58: 79a3 ldrb r3, [r4, #6] +10032f5a: f362 0304 bfi r3, r2, #0, #5 +10032f5e: 71a3 strb r3, [r4, #6] +10032f60: f895 2068 ldrb.w r2, [r5, #104] ; 0x68 +10032f64: 7963 ldrb r3, [r4, #5] +10032f66: f362 0304 bfi r3, r2, #0, #5 +10032f6a: 7163 strb r3, [r4, #5] +10032f6c: 89ea ldrh r2, [r5, #14] +10032f6e: 6a63 ldr r3, [r4, #36] ; 0x24 +10032f70: f362 3317 bfi r3, r2, #12, #12 +10032f74: 6263 str r3, [r4, #36] ; 0x24 +10032f76: 7f2b ldrb r3, [r5, #28] +10032f78: 7aaa ldrb r2, [r5, #10] +10032f7a: b16b cbz r3, 10032f98 +10032f7c: b94a cbnz r2, 10032f92 +10032f7e: 3b01 subs r3, #1 +10032f80: 2b04 cmp r3, #4 +10032f82: d806 bhi.n 10032f92 +10032f84: e8df f003 tbb [pc, r3] +10032f88: 03070707 .word 0x03070707 +10032f8c: 07 .byte 0x07 +10032f8d: 00 .byte 0x00 +10032f8e: 2303 movs r3, #3 +10032f90: e002 b.n 10032f98 +10032f92: 2300 movs r3, #0 +10032f94: e000 b.n 10032f98 +10032f96: 2301 movs r3, #1 +10032f98: 79a2 ldrb r2, [r4, #6] +10032f9a: f105 0808 add.w r8, r5, #8 +10032f9e: f363 1287 bfi r2, r3, #6, #2 +10032fa2: 71a2 strb r2, [r4, #6] +10032fa4: f895 3044 ldrb.w r3, [r5, #68] ; 0x44 +10032fa8: b33b cbz r3, 10032ffa +10032faa: 2b01 cmp r3, #1 +10032fac: d005 beq.n 10032fba +10032fae: 2b02 cmp r3, #2 +10032fb0: d107 bne.n 10032fc2 +10032fb2: 7b63 ldrb r3, [r4, #13] +10032fb4: f043 0308 orr.w r3, r3, #8 +10032fb8: e002 b.n 10032fc0 +10032fba: 7b63 ldrb r3, [r4, #13] +10032fbc: f043 0330 orr.w r3, r3, #48 ; 0x30 +10032fc0: 7363 strb r3, [r4, #13] +10032fc2: 7ce3 ldrb r3, [r4, #19] +10032fc4: 2208 movs r2, #8 +10032fc6: f362 0304 bfi r3, r2, #0, #5 +10032fca: 74e3 strb r3, [r4, #19] +10032fcc: 6923 ldr r3, [r4, #16] +10032fce: f443 33f0 orr.w r3, r3, #122880 ; 0x1e000 +10032fd2: 6123 str r3, [r4, #16] +10032fd4: f896 36a8 ldrb.w r3, [r6, #1704] ; 0x6a8 +10032fd8: 2b03 cmp r3, #3 +10032fda: d103 bne.n 10032fe4 +10032fdc: 7d63 ldrb r3, [r4, #21] +10032fde: f043 0310 orr.w r3, r3, #16 +10032fe2: 7563 strb r3, [r4, #21] +10032fe4: f895 305f ldrb.w r3, [r5, #95] ; 0x5f +10032fe8: b13b cbz r3, 10032ffa +10032fea: 4630 mov r0, r6 +10032fec: 4641 mov r1, r8 +10032fee: f7ff ff74 bl 10032eda +10032ff2: 6963 ldr r3, [r4, #20] +10032ff4: f360 3350 bfi r3, r0, #13, #4 +10032ff8: 6163 str r3, [r4, #20] +10032ffa: 89ab ldrh r3, [r5, #12] +10032ffc: f648 028e movw r2, #34958 ; 0x888e +10033000: 4293 cmp r3, r2 +10033002: d06e beq.n 100330e2 +10033004: f640 0206 movw r2, #2054 ; 0x806 +10033008: 4293 cmp r3, r2 +1003300a: d06a beq.n 100330e2 +1003300c: f648 02b4 movw r2, #34996 ; 0x88b4 +10033010: 4293 cmp r3, r2 +10033012: d066 beq.n 100330e2 +10033014: 7aeb ldrb r3, [r5, #11] +10033016: 2b01 cmp r3, #1 +10033018: d063 beq.n 100330e2 +1003301a: f895 3064 ldrb.w r3, [r5, #100] ; 0x64 +1003301e: 2b01 cmp r3, #1 +10033020: d10d bne.n 1003303e +10033022: 7a63 ldrb r3, [r4, #9] +10033024: f043 0310 orr.w r3, r3, #16 +10033028: 7263 strb r3, [r4, #9] +1003302a: 7ba3 ldrb r3, [r4, #14] +1003302c: f043 033e orr.w r3, r3, #62 ; 0x3e +10033030: 73a3 strb r3, [r4, #14] +10033032: f897 2df0 ldrb.w r2, [r7, #3568] ; 0xdf0 +10033036: 7aa3 ldrb r3, [r4, #10] +10033038: f362 1306 bfi r3, r2, #4, #3 +1003303c: e002 b.n 10033044 +1003303e: 7aa3 ldrb r3, [r4, #10] +10033040: f043 0301 orr.w r3, r3, #1 +10033044: 72a3 strb r3, [r4, #10] +10033046: f895 305f ldrb.w r3, [r5, #95] ; 0x5f +1003304a: b17b cbz r3, 1003306c +1003304c: 4641 mov r1, r8 +1003304e: 4630 mov r0, r6 +10033050: f7ff ff33 bl 10032eba +10033054: 7d23 ldrb r3, [r4, #20] +10033056: 4641 mov r1, r8 +10033058: f360 1346 bfi r3, r0, #5, #2 +1003305c: 7523 strb r3, [r4, #20] +1003305e: 4630 mov r0, r6 +10033060: f7ff ff3b bl 10032eda +10033064: 7d23 ldrb r3, [r4, #20] +10033066: f360 0303 bfi r3, r0, #0, #4 +1003306a: 7523 strb r3, [r4, #20] +1003306c: 7c63 ldrb r3, [r4, #17] +1003306e: f043 031f orr.w r3, r3, #31 +10033072: 7463 strb r3, [r4, #17] +10033074: f897 31a4 ldrb.w r3, [r7, #420] ; 0x1a4 +10033078: b9bb cbnz r3, 100330aa +1003307a: 7b63 ldrb r3, [r4, #13] +1003307c: f043 0301 orr.w r3, r3, #1 +10033080: 7363 strb r3, [r4, #13] +10033082: f895 3043 ldrb.w r3, [r5, #67] ; 0x43 +10033086: 443b add r3, r7 +10033088: f993 31e0 ldrsb.w r3, [r3, #480] ; 0x1e0 +1003308c: 2b00 cmp r3, #0 +1003308e: da03 bge.n 10033098 +10033090: 7d23 ldrb r3, [r4, #20] +10033092: f043 0310 orr.w r3, r3, #16 +10033096: 7523 strb r3, [r4, #20] +10033098: f895 3043 ldrb.w r3, [r5, #67] ; 0x43 +1003309c: 441f add r7, r3 +1003309e: f897 21e0 ldrb.w r2, [r7, #480] ; 0x1e0 +100330a2: 7c23 ldrb r3, [r4, #16] +100330a4: f362 0306 bfi r3, r2, #0, #7 +100330a8: 7423 strb r3, [r4, #16] +100330aa: f241 73c4 movw r3, #6084 ; 0x17c4 +100330ae: 5cf2 ldrb r2, [r6, r3] +100330b0: 2aff cmp r2, #255 ; 0xff +100330b2: d078 beq.n 100331a6 +100330b4: 7b62 ldrb r2, [r4, #13] +100330b6: f042 0201 orr.w r2, r2, #1 +100330ba: 7362 strb r2, [r4, #13] +100330bc: 56f3 ldrsb r3, [r6, r3] +100330be: 2b00 cmp r3, #0 +100330c0: da03 bge.n 100330ca +100330c2: 7d23 ldrb r3, [r4, #20] +100330c4: f043 0310 orr.w r3, r3, #16 +100330c8: 7523 strb r3, [r4, #20] +100330ca: f241 72c4 movw r2, #6084 ; 0x17c4 +100330ce: 5cb2 ldrb r2, [r6, r2] +100330d0: 7c23 ldrb r3, [r4, #16] +100330d2: f362 0306 bfi r3, r2, #0, #7 +100330d6: 7423 strb r3, [r4, #16] +100330d8: 7b63 ldrb r3, [r4, #13] +100330da: f043 0304 orr.w r3, r3, #4 +100330de: 7363 strb r3, [r4, #13] +100330e0: e061 b.n 100331a6 +100330e2: 7aa3 ldrb r3, [r4, #10] +100330e4: f043 0301 orr.w r3, r3, #1 +100330e8: 72a3 strb r3, [r4, #10] +100330ea: 7b63 ldrb r3, [r4, #13] +100330ec: f043 0301 orr.w r3, r3, #1 +100330f0: 7363 strb r3, [r4, #13] +100330f2: f896 36a8 ldrb.w r3, [r6, #1704] ; 0x6a8 +100330f6: 2b03 cmp r3, #3 +100330f8: d14d bne.n 10033196 +100330fa: 7d23 ldrb r3, [r4, #20] +100330fc: f043 0310 orr.w r3, r3, #16 +10033100: 7523 strb r3, [r4, #20] +10033102: e048 b.n 10033196 +10033104: 2b03 cmp r3, #3 +10033106: d129 bne.n 1003315c +10033108: f895 2043 ldrb.w r2, [r5, #67] ; 0x43 +1003310c: 7923 ldrb r3, [r4, #4] +1003310e: f362 0306 bfi r3, r2, #0, #7 +10033112: 7123 strb r3, [r4, #4] +10033114: f895 2068 ldrb.w r2, [r5, #104] ; 0x68 +10033118: 7963 ldrb r3, [r4, #5] +1003311a: f362 0304 bfi r3, r2, #0, #5 +1003311e: 7163 strb r3, [r4, #5] +10033120: f895 2060 ldrb.w r2, [r5, #96] ; 0x60 +10033124: 79a3 ldrb r3, [r4, #6] +10033126: f362 0304 bfi r3, r2, #0, #5 +1003312a: 71a3 strb r3, [r4, #6] +1003312c: 89ea ldrh r2, [r5, #14] +1003312e: 6a63 ldr r3, [r4, #36] ; 0x24 +10033130: f362 3317 bfi r3, r2, #12, #12 +10033134: 6263 str r3, [r4, #36] ; 0x24 +10033136: 7b63 ldrb r3, [r4, #13] +10033138: f043 0301 orr.w r3, r3, #1 +1003313c: 7363 strb r3, [r4, #13] +1003313e: 7ca3 ldrb r3, [r4, #18] +10033140: f043 0302 orr.w r3, r3, #2 +10033144: 74a3 strb r3, [r4, #18] +10033146: f895 306c ldrb.w r3, [r5, #108] ; 0x6c +1003314a: 2b01 cmp r3, #1 +1003314c: 7ca3 ldrb r3, [r4, #18] +1003314e: bf0c ite eq +10033150: 2206 moveq r2, #6 +10033152: 220c movne r2, #12 +10033154: f362 0387 bfi r3, r2, #2, #6 +10033158: 74a3 strb r3, [r4, #18] +1003315a: e01c b.n 10033196 +1003315c: 2b08 cmp r3, #8 +1003315e: d022 beq.n 100331a6 +10033160: f895 2043 ldrb.w r2, [r5, #67] ; 0x43 +10033164: 7923 ldrb r3, [r4, #4] +10033166: f362 0306 bfi r3, r2, #0, #7 +1003316a: 7123 strb r3, [r4, #4] +1003316c: f895 2060 ldrb.w r2, [r5, #96] ; 0x60 +10033170: 79a3 ldrb r3, [r4, #6] +10033172: f362 0304 bfi r3, r2, #0, #5 +10033176: 71a3 strb r3, [r4, #6] +10033178: f895 2068 ldrb.w r2, [r5, #104] ; 0x68 +1003317c: 7963 ldrb r3, [r4, #5] +1003317e: f362 0304 bfi r3, r2, #0, #5 +10033182: 7163 strb r3, [r4, #5] +10033184: 89ea ldrh r2, [r5, #14] +10033186: 6a63 ldr r3, [r4, #36] ; 0x24 +10033188: f362 3317 bfi r3, r2, #12, #12 +1003318c: 6263 str r3, [r4, #36] ; 0x24 +1003318e: 7b63 ldrb r3, [r4, #13] +10033190: f043 0301 orr.w r3, r3, #1 +10033194: 7363 strb r3, [r4, #13] +10033196: f896 07c3 ldrb.w r0, [r6, #1987] ; 0x7c3 +1003319a: f003 fc71 bl 10036a80 +1003319e: 7c23 ldrb r3, [r4, #16] +100331a0: f360 0306 bfi r3, r0, #0, #7 +100331a4: 7423 strb r3, [r4, #16] +100331a6: 8b2b ldrh r3, [r5, #24] +100331a8: 8023 strh r3, [r4, #0] +100331aa: 2328 movs r3, #40 ; 0x28 +100331ac: 70a3 strb r3, [r4, #2] +100331ae: f1b9 0f00 cmp.w r9, #0 +100331b2: d003 beq.n 100331bc +100331b4: 78e3 ldrb r3, [r4, #3] +100331b6: f043 0301 orr.w r3, r3, #1 +100331ba: 70e3 strb r3, [r4, #3] +100331bc: f895 305e ldrb.w r3, [r5, #94] ; 0x5e +100331c0: b92b cbnz r3, 100331ce +100331c2: f894 3021 ldrb.w r3, [r4, #33] ; 0x21 +100331c6: f043 0380 orr.w r3, r3, #128 ; 0x80 +100331ca: f884 3021 strb.w r3, [r4, #33] ; 0x21 +100331ce: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +100331d2 : +100331d2: b5f8 push {r3, r4, r5, r6, r7, lr} +100331d4: 460c mov r4, r1 +100331d6: 4616 mov r6, r2 +100331d8: 4605 mov r5, r0 +100331da: 2228 movs r2, #40 ; 0x28 +100331dc: 4608 mov r0, r1 +100331de: 2100 movs r1, #0 +100331e0: 461f mov r7, r3 +100331e2: f7e9 fdf5 bl 1001cdd0 +100331e6: 6821 ldr r1, [r4, #0] +100331e8: b2b2 uxth r2, r6 +100331ea: f042 6242 orr.w r2, r2, #203423744 ; 0xc200000 +100331ee: f001 417f and.w r1, r1, #4278190080 ; 0xff000000 +100331f2: f442 2200 orr.w r2, r2, #524288 ; 0x80000 +100331f6: 430a orrs r2, r1 +100331f8: 6861 ldr r1, [r4, #4] +100331fa: 2f01 cmp r7, #1 +100331fc: f421 51f8 bic.w r1, r1, #7936 ; 0x1f00 +10033200: f441 5190 orr.w r1, r1, #4608 ; 0x1200 +10033204: 6022 str r2, [r4, #0] +10033206: 6061 str r1, [r4, #4] +10033208: 68e3 ldr r3, [r4, #12] +1003320a: d103 bne.n 10033214 +1003320c: f443 4300 orr.w r3, r3, #32768 ; 0x8000 +10033210: 60e3 str r3, [r4, #12] +10033212: e00a b.n 1003322a +10033214: f023 03c0 bic.w r3, r3, #192 ; 0xc0 +10033218: 6a21 ldr r1, [r4, #32] +1003321a: 60e3 str r3, [r4, #12] +1003321c: 68a3 ldr r3, [r4, #8] +1003321e: f441 4100 orr.w r1, r1, #32768 ; 0x8000 +10033222: f443 2300 orr.w r3, r3, #524288 ; 0x80000 +10033226: 6221 str r1, [r4, #32] +10033228: 60a3 str r3, [r4, #8] +1003322a: f89d 3018 ldrb.w r3, [sp, #24] +1003322e: 2b01 cmp r3, #1 +10033230: d103 bne.n 1003323a +10033232: 68a3 ldr r3, [r4, #8] +10033234: f443 0300 orr.w r3, r3, #8388608 ; 0x800000 +10033238: 60a3 str r3, [r4, #8] +1003323a: 68e3 ldr r3, [r4, #12] +1003323c: f042 4200 orr.w r2, r2, #2147483648 ; 0x80000000 +10033240: f443 7380 orr.w r3, r3, #256 ; 0x100 +10033244: 60e3 str r3, [r4, #12] +10033246: 6923 ldr r3, [r4, #16] +10033248: 6022 str r2, [r4, #0] +1003324a: f023 037f bic.w r3, r3, #127 ; 0x7f +1003324e: 6123 str r3, [r4, #16] +10033250: f89d 301c ldrb.w r3, [sp, #28] +10033254: 2b01 cmp r3, #1 +10033256: d11a bne.n 1003328e +10033258: f8d5 2c7c ldr.w r2, [r5, #3196] ; 0xc7c +1003325c: 6863 ldr r3, [r4, #4] +1003325e: 2a06 cmp r2, #6 +10033260: d812 bhi.n 10033288 +10033262: e8df f002 tbb [pc, r2] +10033266: 0411 .short 0x0411 +10033268: 040e1104 .word 0x040e1104 +1003326c: 09 .byte 0x09 +1003326d: 00 .byte 0x00 +1003326e: f423 0340 bic.w r3, r3, #12582912 ; 0xc00000 +10033272: f443 0380 orr.w r3, r3, #4194304 ; 0x400000 +10033276: e009 b.n 1003328c +10033278: f423 0340 bic.w r3, r3, #12582912 ; 0xc00000 +1003327c: f443 0300 orr.w r3, r3, #8388608 ; 0x800000 +10033280: e004 b.n 1003328c +10033282: f443 0340 orr.w r3, r3, #12582912 ; 0xc00000 +10033286: e001 b.n 1003328c +10033288: f423 0340 bic.w r3, r3, #12582912 ; 0xc00000 +1003328c: 6063 str r3, [r4, #4] +1003328e: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10033290 : +10033290: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10033294: f241 6318 movw r3, #5656 ; 0x1618 +10033298: b086 sub sp, #24 +1003329a: 4680 mov r8, r0 +1003329c: 4614 mov r4, r2 +1003329e: 58c5 ldr r5, [r0, r3] +100332a0: 2950 cmp r1, #80 ; 0x50 +100332a2: f200 861a bhi.w 10033eda +100332a6: e8df f011 tbh [pc, r1, lsl #1] +100332aa: 0051 .short 0x0051 +100332ac: 006e005d .word 0x006e005d +100332b0: 01f101dd .word 0x01f101dd +100332b4: 02170618 .word 0x02170618 +100332b8: 02460618 .word 0x02460618 +100332bc: 032c025b .word 0x032c025b +100332c0: 0377033b .word 0x0377033b +100332c4: 061803e8 .word 0x061803e8 +100332c8: 047a0618 .word 0x047a0618 +100332cc: 0481047e .word 0x0481047e +100332d0: 04a10498 .word 0x04a10498 +100332d4: 06180618 .word 0x06180618 +100332d8: 04ae04ac .word 0x04ae04ac +100332dc: 04c804b8 .word 0x04c804b8 +100332e0: 04cf0618 .word 0x04cf0618 +100332e4: 061804d4 .word 0x061804d4 +100332e8: 04e504e2 .word 0x04e504e2 +100332ec: 04ee04e8 .word 0x04ee04e8 +100332f0: 050804f2 .word 0x050804f2 +100332f4: 06180618 .word 0x06180618 +100332f8: 06180618 .word 0x06180618 +100332fc: 050c0618 .word 0x050c0618 +10033300: 05100618 .word 0x05100618 +10033304: 06180618 .word 0x06180618 +10033308: 06180618 .word 0x06180618 +1003330c: 06180618 .word 0x06180618 +10033310: 06180514 .word 0x06180514 +10033314: 06180618 .word 0x06180618 +10033318: 06180618 .word 0x06180618 +1003331c: 05230618 .word 0x05230618 +10033320: 06180527 .word 0x06180527 +10033324: 05640618 .word 0x05640618 +10033328: 05890585 .word 0x05890585 +1003332c: 06180650 .word 0x06180650 +10033330: 05950618 .word 0x05950618 +10033334: 06180618 .word 0x06180618 +10033338: 06180618 .word 0x06180618 +1003333c: 06180618 .word 0x06180618 +10033340: 059b0618 .word 0x059b0618 +10033344: 061805b0 .word 0x061805b0 +10033348: 05c80618 .word 0x05c80618 +1003334c: f44f 7181 mov.w r1, #258 ; 0x102 +10033350: f009 f97e bl 1003c650 +10033354: 7823 ldrb r3, [r4, #0] +10033356: f000 020c and.w r2, r0, #12 +1003335a: f44f 7181 mov.w r1, #258 ; 0x102 +1003335e: 4640 mov r0, r8 +10033360: 431a orrs r2, r3 +10033362: e00c b.n 1003337e +10033364: f44f 7181 mov.w r1, #258 ; 0x102 +10033368: f009 f972 bl 1003c650 +1003336c: 7822 ldrb r2, [r4, #0] +1003336e: f000 0003 and.w r0, r0, #3 +10033372: ea40 0282 orr.w r2, r0, r2, lsl #2 +10033376: f44f 7181 mov.w r1, #258 ; 0x102 +1003337a: 4640 mov r0, r8 +1003337c: b2d2 uxtb r2, r2 +1003337e: f009 f97c bl 1003c67a +10033382: f000 bde2 b.w 10033f4a +10033386: f241 73b2 movw r3, #6066 ; 0x17b2 +1003338a: 5cc3 ldrb r3, [r0, r3] +1003338c: 7824 ldrb r4, [r4, #0] +1003338e: 2b01 cmp r3, #1 +10033390: f024 0502 bic.w r5, r4, #2 +10033394: f040 80b2 bne.w 100334fc +10033398: f240 5151 movw r1, #1361 ; 0x551 +1003339c: f009 f958 bl 1003c650 +100333a0: f040 0210 orr.w r2, r0, #16 +100333a4: b2d2 uxtb r2, r2 +100333a6: f240 5151 movw r1, #1361 ; 0x551 +100333aa: 4640 mov r0, r8 +100333ac: f009 f965 bl 1003c67a +100333b0: f44f 7181 mov.w r1, #258 ; 0x102 +100333b4: 4640 mov r0, r8 +100333b6: f009 f94b bl 1003c650 +100333ba: f000 0003 and.w r0, r0, #3 +100333be: ea40 0284 orr.w r2, r0, r4, lsl #2 +100333c2: f44f 7181 mov.w r1, #258 ; 0x102 +100333c6: 4640 mov r0, r8 +100333c8: b2d2 uxtb r2, r2 +100333ca: f009 f956 bl 1003c67a +100333ce: b9d5 cbnz r5, 10033406 +100333d0: 4640 mov r0, r8 +100333d2: 2103 movs r1, #3 +100333d4: f7f5 f9dd bl 10028792 +100333d8: 4604 mov r4, r0 +100333da: b978 cbnz r0, 100333fc +100333dc: 4640 mov r0, r8 +100333de: f7fe fd9e bl 10031f1e +100333e2: 4bba ldr r3, [pc, #744] ; (100336cc ) +100333e4: 4640 mov r0, r8 +100333e6: 9303 str r3, [sp, #12] +100333e8: 4bb9 ldr r3, [pc, #740] ; (100336d0 ) +100333ea: 4669 mov r1, sp +100333ec: aa03 add r2, sp, #12 +100333ee: 9400 str r4, [sp, #0] +100333f0: 9401 str r4, [sp, #4] +100333f2: 9402 str r4, [sp, #8] +100333f4: 9304 str r3, [sp, #16] +100333f6: 9405 str r4, [sp, #20] +100333f8: f7fd fa62 bl 100308c0 +100333fc: 4640 mov r0, r8 +100333fe: f240 5151 movw r1, #1361 ; 0x551 +10033402: 2211 movs r2, #17 +10033404: e7bb b.n 1003337e +10033406: 2c01 cmp r4, #1 +10033408: d106 bne.n 10033418 +1003340a: 4640 mov r0, r8 +1003340c: f7fe fab0 bl 10031970 +10033410: 4640 mov r0, r8 +10033412: f240 5151 movw r1, #1361 ; 0x551 +10033416: e0ae b.n 10033576 +10033418: 2c03 cmp r4, #3 +1003341a: f040 8596 bne.w 10033f4a +1003341e: 4bac ldr r3, [pc, #688] ; (100336d0 ) +10033420: 48aa ldr r0, [pc, #680] ; (100336cc ) +10033422: 2400 movs r4, #0 +10033424: e88d 0019 stmia.w sp, {r0, r3, r4} +10033428: 4669 mov r1, sp +1003342a: aa03 add r2, sp, #12 +1003342c: 4640 mov r0, r8 +1003342e: 9403 str r4, [sp, #12] +10033430: 9404 str r4, [sp, #16] +10033432: 9405 str r4, [sp, #20] +10033434: f7fd fa44 bl 100308c0 +10033438: 4640 mov r0, r8 +1003343a: f7fe fa99 bl 10031970 +1003343e: f240 5151 movw r1, #1361 ; 0x551 +10033442: 2212 movs r2, #18 +10033444: 4640 mov r0, r8 +10033446: f009 f918 bl 1003c67a +1003344a: f44f 61c1 mov.w r1, #1544 ; 0x608 +1003344e: 4aa1 ldr r2, [pc, #644] ; (100336d4 ) +10033450: 4640 mov r0, r8 +10033452: f009 f920 bl 1003c696 +10033456: f240 61a4 movw r1, #1700 ; 0x6a4 +1003345a: f64f 72ff movw r2, #65535 ; 0xffff +1003345e: 4640 mov r0, r8 +10033460: f009 f912 bl 1003c688 +10033464: f240 61a2 movw r1, #1698 ; 0x6a2 +10033468: f44f 6280 mov.w r2, #1024 ; 0x400 +1003346c: 4640 mov r0, r8 +1003346e: f009 f90b bl 1003c688 +10033472: f240 5159 movw r1, #1369 ; 0x559 +10033476: 2202 movs r2, #2 +10033478: 4640 mov r0, r8 +1003347a: f009 f8fe bl 1003c67a +1003347e: f44f 61ae mov.w r1, #1392 ; 0x570 +10033482: 220a movs r2, #10 +10033484: 4640 mov r0, r8 +10033486: f009 f8f8 bl 1003c67a +1003348a: f44f 61a2 mov.w r1, #1296 ; 0x510 +1003348e: 4622 mov r2, r4 +10033490: 4640 mov r0, r8 +10033492: f009 f8f9 bl 1003c688 +10033496: f44f 61a8 mov.w r1, #1344 ; 0x540 +1003349a: f64f 7204 movw r2, #65284 ; 0xff04 +1003349e: 4640 mov r0, r8 +100334a0: f009 f8f2 bl 1003c688 +100334a4: f44f 61a3 mov.w r1, #1304 ; 0x518 +100334a8: f647 72ff movw r2, #32767 ; 0x7fff +100334ac: 4640 mov r0, r8 +100334ae: f009 f8eb bl 1003c688 +100334b2: f240 5153 movw r1, #1363 ; 0x553 +100334b6: 2202 movs r2, #2 +100334b8: 4640 mov r0, r8 +100334ba: f009 f8de bl 1003c67a +100334be: f240 5151 movw r1, #1361 ; 0x551 +100334c2: 4640 mov r0, r8 +100334c4: 221e movs r2, #30 +100334c6: f009 f8d8 bl 1003c67a +100334ca: 4640 mov r0, r8 +100334cc: 4621 mov r1, r4 +100334ce: f7f1 f9be bl 1002484e +100334d2: b158 cbz r0, 100334ec +100334d4: f44f 61aa mov.w r1, #1360 ; 0x550 +100334d8: 4640 mov r0, r8 +100334da: f009 f8b9 bl 1003c650 +100334de: f44f 61aa mov.w r1, #1360 ; 0x550 +100334e2: f000 02f7 and.w r2, r0, #247 ; 0xf7 +100334e6: 4640 mov r0, r8 +100334e8: f009 f8c7 bl 1003c67a +100334ec: 4640 mov r0, r8 +100334ee: f44f 61aa mov.w r1, #1360 ; 0x550 +100334f2: f009 f8ad bl 1003c650 +100334f6: f040 0201 orr.w r2, r0, #1 +100334fa: e249 b.n 10033990 +100334fc: f44f 61aa mov.w r1, #1360 ; 0x550 +10033500: f009 f8a6 bl 1003c650 +10033504: f040 0210 orr.w r2, r0, #16 +10033508: b2d2 uxtb r2, r2 +1003350a: f44f 61aa mov.w r1, #1360 ; 0x550 +1003350e: 4640 mov r0, r8 +10033510: f009 f8b3 bl 1003c67a +10033514: f44f 7181 mov.w r1, #258 ; 0x102 +10033518: 4640 mov r0, r8 +1003351a: f009 f899 bl 1003c650 +1003351e: f000 020c and.w r2, r0, #12 +10033522: f44f 7181 mov.w r1, #258 ; 0x102 +10033526: 4640 mov r0, r8 +10033528: 4322 orrs r2, r4 +1003352a: f009 f8a6 bl 1003c67a +1003352e: b9d5 cbnz r5, 10033566 +10033530: 4640 mov r0, r8 +10033532: 2103 movs r1, #3 +10033534: f7f5 f92d bl 10028792 +10033538: 4604 mov r4, r0 +1003353a: b978 cbnz r0, 1003355c +1003353c: 4640 mov r0, r8 +1003353e: f7fe fcee bl 10031f1e +10033542: 4b62 ldr r3, [pc, #392] ; (100336cc ) +10033544: 4640 mov r0, r8 +10033546: 9303 str r3, [sp, #12] +10033548: 4b61 ldr r3, [pc, #388] ; (100336d0 ) +1003354a: 4669 mov r1, sp +1003354c: aa03 add r2, sp, #12 +1003354e: 9400 str r4, [sp, #0] +10033550: 9401 str r4, [sp, #4] +10033552: 9402 str r4, [sp, #8] +10033554: 9304 str r3, [sp, #16] +10033556: 9405 str r4, [sp, #20] +10033558: f7fd f9b2 bl 100308c0 +1003355c: 4640 mov r0, r8 +1003355e: f44f 61aa mov.w r1, #1360 ; 0x550 +10033562: 2219 movs r2, #25 +10033564: e70b b.n 1003337e +10033566: 2c01 cmp r4, #1 +10033568: d107 bne.n 1003357a +1003356a: 4640 mov r0, r8 +1003356c: f7fe fa00 bl 10031970 +10033570: 4640 mov r0, r8 +10033572: f44f 61aa mov.w r1, #1360 ; 0x550 +10033576: 221a movs r2, #26 +10033578: e701 b.n 1003337e +1003357a: 2c03 cmp r4, #3 +1003357c: f040 84e5 bne.w 10033f4a +10033580: 4b53 ldr r3, [pc, #332] ; (100336d0 ) +10033582: 4952 ldr r1, [pc, #328] ; (100336cc ) +10033584: 2400 movs r4, #0 +10033586: e88d 001a stmia.w sp, {r1, r3, r4} +1003358a: aa03 add r2, sp, #12 +1003358c: 4669 mov r1, sp +1003358e: 4640 mov r0, r8 +10033590: 9403 str r4, [sp, #12] +10033592: 9404 str r4, [sp, #16] +10033594: 9405 str r4, [sp, #20] +10033596: f7fd f993 bl 100308c0 +1003359a: 4640 mov r0, r8 +1003359c: f7fe f9e8 bl 10031970 +100335a0: f44f 61aa mov.w r1, #1360 ; 0x550 +100335a4: 2212 movs r2, #18 +100335a6: 4640 mov r0, r8 +100335a8: f009 f867 bl 1003c67a +100335ac: f44f 61c1 mov.w r1, #1544 ; 0x608 +100335b0: 4a48 ldr r2, [pc, #288] ; (100336d4 ) +100335b2: 4640 mov r0, r8 +100335b4: f009 f86f bl 1003c696 +100335b8: f240 61a4 movw r1, #1700 ; 0x6a4 +100335bc: f64f 72ff movw r2, #65535 ; 0xffff +100335c0: 4640 mov r0, r8 +100335c2: f009 f861 bl 1003c688 +100335c6: f240 61a2 movw r1, #1698 ; 0x6a2 +100335ca: f44f 6280 mov.w r2, #1024 ; 0x400 +100335ce: 4640 mov r0, r8 +100335d0: f009 f85a bl 1003c688 +100335d4: f240 5159 movw r1, #1369 ; 0x559 +100335d8: 2202 movs r2, #2 +100335da: 4640 mov r0, r8 +100335dc: f009 f84d bl 1003c67a +100335e0: f240 515a movw r1, #1370 ; 0x55a +100335e4: 220a movs r2, #10 +100335e6: 4640 mov r0, r8 +100335e8: f009 f847 bl 1003c67a +100335ec: f44f 61a2 mov.w r1, #1296 ; 0x510 +100335f0: 4622 mov r2, r4 +100335f2: 4640 mov r0, r8 +100335f4: f009 f848 bl 1003c688 +100335f8: f44f 61a8 mov.w r1, #1344 ; 0x540 +100335fc: f64f 7204 movw r2, #65284 ; 0xff04 +10033600: 4640 mov r0, r8 +10033602: f009 f841 bl 1003c688 +10033606: f44f 61a3 mov.w r1, #1304 ; 0x518 +1003360a: f647 72ff movw r2, #32767 ; 0x7fff +1003360e: 4640 mov r0, r8 +10033610: f009 f83a bl 1003c688 +10033614: f240 5153 movw r1, #1363 ; 0x553 +10033618: 2201 movs r2, #1 +1003361a: 4640 mov r0, r8 +1003361c: f009 f82d bl 1003c67a +10033620: f44f 61aa mov.w r1, #1360 ; 0x550 +10033624: 4640 mov r0, r8 +10033626: 221e movs r2, #30 +10033628: f009 f827 bl 1003c67a +1003362c: 4640 mov r0, r8 +1003362e: 4621 mov r1, r4 +10033630: f7f1 f90d bl 1002484e +10033634: b158 cbz r0, 1003364e +10033636: f240 5151 movw r1, #1361 ; 0x551 +1003363a: 4640 mov r0, r8 +1003363c: f009 f808 bl 1003c650 +10033640: f240 5151 movw r1, #1361 ; 0x551 +10033644: f000 02f7 and.w r2, r0, #247 ; 0xf7 +10033648: 4640 mov r0, r8 +1003364a: f009 f816 bl 1003c67a +1003364e: f240 5151 movw r1, #1361 ; 0x551 +10033652: 4640 mov r0, r8 +10033654: f008 fffc bl 1003c650 +10033658: f240 5151 movw r1, #1361 ; 0x551 +1003365c: f040 0201 orr.w r2, r0, #1 +10033660: 4640 mov r0, r8 +10033662: e68b b.n 1003337c +10033664: f241 73b2 movw r3, #6066 ; 0x17b2 +10033668: 5cc3 ldrb r3, [r0, r3] +1003366a: 2500 movs r5, #0 +1003366c: 2b01 cmp r3, #1 +1003366e: bf14 ite ne +10033670: f44f 66c2 movne.w r6, #1552 ; 0x610 +10033674: f44f 66e0 moveq.w r6, #1792 ; 0x700 +10033678: 19a9 adds r1, r5, r6 +1003367a: 5d62 ldrb r2, [r4, r5] +1003367c: 4640 mov r0, r8 +1003367e: 3501 adds r5, #1 +10033680: f008 fffb bl 1003c67a +10033684: 2d06 cmp r5, #6 +10033686: d1f7 bne.n 10033678 +10033688: f000 bc5f b.w 10033f4a +1003368c: f241 73b2 movw r3, #6066 ; 0x17b2 +10033690: 5cc3 ldrb r3, [r0, r3] +10033692: 2b01 cmp r3, #1 +10033694: 7823 ldrb r3, [r4, #0] +10033696: bf14 ite ne +10033698: f44f 66c3 movne.w r6, #1560 ; 0x618 +1003369c: f44f 66e1 moveq.w r6, #1800 ; 0x708 +100336a0: b10b cbz r3, 100336a6 +100336a2: 2500 movs r5, #0 +100336a4: e007 b.n 100336b6 +100336a6: 7863 ldrb r3, [r4, #1] +100336a8: 2b00 cmp r3, #0 +100336aa: d1fa bne.n 100336a2 +100336ac: 78a3 ldrb r3, [r4, #2] +100336ae: 2b00 cmp r3, #0 +100336b0: d1f7 bne.n 100336a2 +100336b2: f000 bc4a b.w 10033f4a +100336b6: 19a9 adds r1, r5, r6 +100336b8: 5d62 ldrb r2, [r4, r5] +100336ba: 4640 mov r0, r8 +100336bc: 3501 adds r5, #1 +100336be: f008 ffdc bl 1003c67a +100336c2: 2d06 cmp r5, #6 +100336c4: d1f7 bne.n 100336b6 +100336c6: f000 bc40 b.w 10033f4a +100336ca: bf00 nop +100336cc: 01800100 .word 0x01800100 +100336d0: 01010000 .word 0x01010000 +100336d4: 7000208e .word 0x7000208e +100336d8: aa06 add r2, sp, #24 +100336da: 2600 movs r6, #0 +100336dc: f822 6d0c strh.w r6, [r2, #-12]! +100336e0: 4621 mov r1, r4 +100336e2: f003 f9e1 bl 10036aa8 +100336e6: f8bd 200c ldrh.w r2, [sp, #12] +100336ea: f44f 6188 mov.w r1, #1088 ; 0x440 +100336ee: f402 72a8 and.w r2, r2, #336 ; 0x150 +100336f2: f042 020d orr.w r2, r2, #13 +100336f6: f8ad 200c strh.w r2, [sp, #12] +100336fa: 4640 mov r0, r8 +100336fc: 872a strh r2, [r5, #56] ; 0x38 +100336fe: f002 025d and.w r2, r2, #93 ; 0x5d +10033702: f008 ffba bl 1003c67a +10033706: f8bd 200c ldrh.w r2, [sp, #12] +1003370a: f240 4141 movw r1, #1089 ; 0x441 +1003370e: 4640 mov r0, r8 +10033710: 0a12 lsrs r2, r2, #8 +10033712: f008 ffb2 bl 1003c67a +10033716: f8bd 300c ldrh.w r3, [sp, #12] +1003371a: 4631 mov r1, r6 +1003371c: 2b01 cmp r3, #1 +1003371e: b2ca uxtb r2, r1 +10033720: f101 0101 add.w r1, r1, #1 +10033724: d901 bls.n 1003372a +10033726: 085b lsrs r3, r3, #1 +10033728: e7f8 b.n 1003371c +1003372a: f8ad 300c strh.w r3, [sp, #12] +1003372e: 4640 mov r0, r8 +10033730: f44f 6190 mov.w r1, #1152 ; 0x480 +10033734: e623 b.n 1003337e +10033736: f241 72b2 movw r2, #6066 ; 0x17b2 +1003373a: 5c82 ldrb r2, [r0, r2] +1003373c: 7823 ldrb r3, [r4, #0] +1003373e: 2a01 cmp r2, #1 +10033740: f240 5451 movw r4, #1361 ; 0x551 +10033744: bf18 it ne +10033746: f44f 64aa movne.w r4, #1360 ; 0x550 +1003374a: 4621 mov r1, r4 +1003374c: b10b cbz r3, 10033752 +1003374e: 220c movs r2, #12 +10033750: e615 b.n 1003337e +10033752: f008 ff7d bl 1003c650 +10033756: 4621 mov r1, r4 +10033758: f000 02f3 and.w r2, r0, #243 ; 0xf3 +1003375c: 4640 mov r0, r8 +1003375e: e60e b.n 1003337e +10033760: f8b0 26a2 ldrh.w r2, [r0, #1698] ; 0x6a2 +10033764: f500 63f9 add.w r3, r0, #1992 ; 0x7c8 +10033768: 0292 lsls r2, r2, #10 +1003376a: e9d3 4500 ldrd r4, r5, [r3] +1003376e: 17d3 asrs r3, r2, #31 +10033770: 4620 mov r0, r4 +10033772: 4629 mov r1, r5 +10033774: f7e9 fcc2 bl 1001d0fc +10033778: f5b4 6480 subs.w r4, r4, #1024 ; 0x400 +1003377c: f8d8 35f8 ldr.w r3, [r8, #1528] ; 0x5f8 +10033780: f145 35ff adc.w r5, r5, #4294967295 +10033784: 1a24 subs r4, r4, r0 +10033786: eb65 0501 sbc.w r5, r5, r1 +1003378a: 07da lsls r2, r3, #31 +1003378c: d502 bpl.n 10033794 +1003378e: 4640 mov r0, r8 +10033790: f7fe fbc5 bl 10031f1e +10033794: f241 73b2 movw r3, #6066 ; 0x17b2 +10033798: f818 3003 ldrb.w r3, [r8, r3] +1003379c: 4640 mov r0, r8 +1003379e: 2b01 cmp r3, #1 +100337a0: d152 bne.n 10033848 +100337a2: f240 5151 movw r1, #1361 ; 0x551 +100337a6: f008 ff53 bl 1003c650 +100337aa: f240 5151 movw r1, #1361 ; 0x551 +100337ae: f000 02f7 and.w r2, r0, #247 ; 0xf7 +100337b2: 4640 mov r0, r8 +100337b4: f008 ff61 bl 1003c67a +100337b8: f44f 61ad mov.w r1, #1384 ; 0x568 +100337bc: 4622 mov r2, r4 +100337be: 4640 mov r0, r8 +100337c0: f008 ff69 bl 1003c696 +100337c4: 462a mov r2, r5 +100337c6: f240 516c movw r1, #1388 ; 0x56c +100337ca: 4640 mov r0, r8 +100337cc: f008 ff63 bl 1003c696 +100337d0: f240 5151 movw r1, #1361 ; 0x551 +100337d4: 4640 mov r0, r8 +100337d6: f008 ff3b bl 1003c650 +100337da: f040 0208 orr.w r2, r0, #8 +100337de: f240 5151 movw r1, #1361 ; 0x551 +100337e2: 4640 mov r0, r8 +100337e4: b2d2 uxtb r2, r2 +100337e6: f008 ff48 bl 1003c67a +100337ea: f8d8 35f8 ldr.w r3, [r8, #1528] ; 0x5f8 +100337ee: f003 0303 and.w r3, r3, #3 +100337f2: 2b02 cmp r3, #2 +100337f4: d17c bne.n 100338f0 +100337f6: 4640 mov r0, r8 +100337f8: 2110 movs r1, #16 +100337fa: f7f1 f828 bl 1002484e +100337fe: 2800 cmp r0, #0 +10033800: d076 beq.n 100338f0 +10033802: f44f 61aa mov.w r1, #1360 ; 0x550 +10033806: 4640 mov r0, r8 +10033808: f008 ff22 bl 1003c650 +1003380c: f44f 61aa mov.w r1, #1360 ; 0x550 +10033810: f000 02f7 and.w r2, r0, #247 ; 0xf7 +10033814: 4640 mov r0, r8 +10033816: f008 ff30 bl 1003c67a +1003381a: f44f 61ac mov.w r1, #1376 ; 0x560 +1003381e: 4622 mov r2, r4 +10033820: 4640 mov r0, r8 +10033822: f008 ff38 bl 1003c696 +10033826: 462a mov r2, r5 +10033828: f240 5164 movw r1, #1380 ; 0x564 +1003382c: 4640 mov r0, r8 +1003382e: f008 ff32 bl 1003c696 +10033832: f44f 61aa mov.w r1, #1360 ; 0x550 +10033836: 4640 mov r0, r8 +10033838: f008 ff0a bl 1003c650 +1003383c: f44f 61aa mov.w r1, #1360 ; 0x550 +10033840: f040 0208 orr.w r2, r0, #8 +10033844: 4640 mov r0, r8 +10033846: e050 b.n 100338ea +10033848: f44f 61aa mov.w r1, #1360 ; 0x550 +1003384c: f008 ff00 bl 1003c650 +10033850: f44f 61aa mov.w r1, #1360 ; 0x550 +10033854: f000 02f7 and.w r2, r0, #247 ; 0xf7 +10033858: 4640 mov r0, r8 +1003385a: f008 ff0e bl 1003c67a +1003385e: f44f 61ac mov.w r1, #1376 ; 0x560 +10033862: 4622 mov r2, r4 +10033864: 4640 mov r0, r8 +10033866: f008 ff16 bl 1003c696 +1003386a: 462a mov r2, r5 +1003386c: f240 5164 movw r1, #1380 ; 0x564 +10033870: 4640 mov r0, r8 +10033872: f008 ff10 bl 1003c696 +10033876: f44f 61aa mov.w r1, #1360 ; 0x550 +1003387a: 4640 mov r0, r8 +1003387c: f008 fee8 bl 1003c650 +10033880: f040 0208 orr.w r2, r0, #8 +10033884: f44f 61aa mov.w r1, #1360 ; 0x550 +10033888: 4640 mov r0, r8 +1003388a: b2d2 uxtb r2, r2 +1003388c: f008 fef5 bl 1003c67a +10033890: f8d8 35f8 ldr.w r3, [r8, #1528] ; 0x5f8 +10033894: f003 0303 and.w r3, r3, #3 +10033898: 2b02 cmp r3, #2 +1003389a: d129 bne.n 100338f0 +1003389c: 4640 mov r0, r8 +1003389e: 2110 movs r1, #16 +100338a0: f7f0 ffd5 bl 1002484e +100338a4: b320 cbz r0, 100338f0 +100338a6: f240 5151 movw r1, #1361 ; 0x551 +100338aa: 4640 mov r0, r8 +100338ac: f008 fed0 bl 1003c650 +100338b0: f240 5151 movw r1, #1361 ; 0x551 +100338b4: f000 02f7 and.w r2, r0, #247 ; 0xf7 +100338b8: 4640 mov r0, r8 +100338ba: f008 fede bl 1003c67a +100338be: f44f 61ad mov.w r1, #1384 ; 0x568 +100338c2: 4622 mov r2, r4 +100338c4: 4640 mov r0, r8 +100338c6: f008 fee6 bl 1003c696 +100338ca: 462a mov r2, r5 +100338cc: f240 516c movw r1, #1388 ; 0x56c +100338d0: 4640 mov r0, r8 +100338d2: f008 fee0 bl 1003c696 +100338d6: f240 5151 movw r1, #1361 ; 0x551 +100338da: 4640 mov r0, r8 +100338dc: f008 feb8 bl 1003c650 +100338e0: f240 5151 movw r1, #1361 ; 0x551 +100338e4: f040 0208 orr.w r2, r0, #8 +100338e8: 4640 mov r0, r8 +100338ea: b2d2 uxtb r2, r2 +100338ec: f008 fec5 bl 1003c67a +100338f0: f8d8 35f8 ldr.w r3, [r8, #1528] ; 0x5f8 +100338f4: 07db lsls r3, r3, #31 +100338f6: f140 8328 bpl.w 10033f4a +100338fa: 4640 mov r0, r8 +100338fc: f7fe f838 bl 10031970 +10033900: e323 b.n 10033f4a +10033902: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033906: f008 feb1 bl 1003c66c +1003390a: 7823 ldrb r3, [r4, #0] +1003390c: b113 cbz r3, 10033914 +1003390e: f040 02c0 orr.w r2, r0, #192 ; 0xc0 +10033912: e001 b.n 10033918 +10033914: f020 02c0 bic.w r2, r0, #192 ; 0xc0 +10033918: 4640 mov r0, r8 +1003391a: f44f 61c1 mov.w r1, #1544 ; 0x608 +1003391e: e289 b.n 10033e34 +10033920: 2100 movs r1, #0 +10033922: f7f4 ff36 bl 10028792 +10033926: b128 cbz r0, 10033934 +10033928: 4640 mov r0, r8 +1003392a: f240 61a4 movw r1, #1700 ; 0x6a4 +1003392e: 2200 movs r2, #0 +10033930: f008 feaa bl 1003c688 +10033934: f241 73b2 movw r3, #6066 ; 0x17b2 +10033938: f818 3003 ldrb.w r3, [r8, r3] +1003393c: 4640 mov r0, r8 +1003393e: 2b01 cmp r3, #1 +10033940: f240 5153 movw r1, #1363 ; 0x553 +10033944: d11a bne.n 1003397c +10033946: 2202 movs r2, #2 +10033948: f008 fe97 bl 1003c67a +1003394c: f240 5151 movw r1, #1361 ; 0x551 +10033950: 4640 mov r0, r8 +10033952: f008 fe7d bl 1003c650 +10033956: f040 0210 orr.w r2, r0, #16 +1003395a: b2d2 uxtb r2, r2 +1003395c: f240 5151 movw r1, #1361 ; 0x551 +10033960: 4640 mov r0, r8 +10033962: f008 fe8a bl 1003c67a +10033966: f240 5151 movw r1, #1361 ; 0x551 +1003396a: 4640 mov r0, r8 +1003396c: f008 fe70 bl 1003c650 +10033970: f240 5151 movw r1, #1361 ; 0x551 +10033974: f000 02f7 and.w r2, r0, #247 ; 0xf7 +10033978: 4640 mov r0, r8 +1003397a: e500 b.n 1003337e +1003397c: 2201 movs r2, #1 +1003397e: f008 fe7c bl 1003c67a +10033982: 4640 mov r0, r8 +10033984: f44f 61aa mov.w r1, #1360 ; 0x550 +10033988: f008 fe62 bl 1003c650 +1003398c: f040 0210 orr.w r2, r0, #16 +10033990: 4640 mov r0, r8 +10033992: f44f 61aa mov.w r1, #1360 ; 0x550 +10033996: e4f1 b.n 1003337c +10033998: f241 73b2 movw r3, #6066 ; 0x17b2 +1003399c: 5cc3 ldrb r3, [r0, r3] +1003399e: f240 5651 movw r6, #1361 ; 0x551 +100339a2: 2b01 cmp r3, #1 +100339a4: 6903 ldr r3, [r0, #16] +100339a6: bf18 it ne +100339a8: f44f 66aa movne.w r6, #1360 ; 0x550 +100339ac: 06df lsls r7, r3, #27 +100339ae: f140 8298 bpl.w 10033ee2 +100339b2: 4640 mov r0, r8 +100339b4: f44f 61c1 mov.w r1, #1544 ; 0x608 +100339b8: f008 fe58 bl 1003c66c +100339bc: 7823 ldrb r3, [r4, #0] +100339be: 4607 mov r7, r0 +100339c0: b35b cbz r3, 10033a1a +100339c2: f44f 61c1 mov.w r1, #1544 ; 0x608 +100339c6: f027 0280 bic.w r2, r7, #128 ; 0x80 +100339ca: 4640 mov r0, r8 +100339cc: f008 fe63 bl 1003c696 +100339d0: 4640 mov r0, r8 +100339d2: f240 61a4 movw r1, #1700 ; 0x6a4 +100339d6: 2200 movs r2, #0 +100339d8: f008 fe56 bl 1003c688 +100339dc: f8d8 3010 ldr.w r3, [r8, #16] +100339e0: f013 0f68 tst.w r3, #104 ; 0x68 +100339e4: f040 8281 bne.w 10033eea +100339e8: f44f 6188 mov.w r1, #1088 ; 0x440 +100339ec: 4640 mov r0, r8 +100339ee: f008 fe36 bl 1003c65e +100339f2: 2103 movs r1, #3 +100339f4: f8a5 01a8 strh.w r0, [r5, #424] ; 0x1a8 +100339f8: 4640 mov r0, r8 +100339fa: f7f4 feca bl 10028792 +100339fe: 2800 cmp r0, #0 +10033a00: f000 82a3 beq.w 10033f4a +10033a04: 4640 mov r0, r8 +10033a06: 2101 movs r1, #1 +10033a08: f7f0 ff21 bl 1002484e +10033a0c: 2800 cmp r0, #0 +10033a0e: f000 829c beq.w 10033f4a +10033a12: 4640 mov r0, r8 +10033a14: f7fe fa83 bl 10031f1e +10033a18: e297 b.n 10033f4a +10033a1a: f8d8 3010 ldr.w r3, [r8, #16] +10033a1e: f013 0f11 tst.w r3, #17 +10033a22: f000 826e beq.w 10033f02 +10033a26: 4640 mov r0, r8 +10033a28: f240 61a4 movw r1, #1700 ; 0x6a4 +10033a2c: f64f 72ff movw r2, #65535 ; 0xffff +10033a30: f008 fe2a bl 1003c688 +10033a34: f8d8 3010 ldr.w r3, [r8, #16] +10033a38: f013 0f68 tst.w r3, #104 ; 0x68 +10033a3c: f040 8269 bne.w 10033f12 +10033a40: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033a44: f047 0280 orr.w r2, r7, #128 ; 0x80 +10033a48: 4640 mov r0, r8 +10033a4a: f008 fe24 bl 1003c696 +10033a4e: f44f 6188 mov.w r1, #1088 ; 0x440 +10033a52: 4640 mov r0, r8 +10033a54: f8b5 21a8 ldrh.w r2, [r5, #424] ; 0x1a8 +10033a58: f008 fe16 bl 1003c688 +10033a5c: 4640 mov r0, r8 +10033a5e: 2103 movs r1, #3 +10033a60: f7f4 fe97 bl 10028792 +10033a64: 2800 cmp r0, #0 +10033a66: f000 8270 beq.w 10033f4a +10033a6a: 4640 mov r0, r8 +10033a6c: 2101 movs r1, #1 +10033a6e: f7f0 feee bl 1002484e +10033a72: 2800 cmp r0, #0 +10033a74: f000 8269 beq.w 10033f4a +10033a78: e73f b.n 100338fa +10033a7a: 7823 ldrb r3, [r4, #0] +10033a7c: bb93 cbnz r3, 10033ae4 +10033a7e: 2103 movs r1, #3 +10033a80: f7f4 fe87 bl 10028792 +10033a84: b138 cbz r0, 10033a96 +10033a86: 4640 mov r0, r8 +10033a88: 2101 movs r1, #1 +10033a8a: f7f0 fee0 bl 1002484e +10033a8e: b110 cbz r0, 10033a96 +10033a90: 4640 mov r0, r8 +10033a92: f7fe fa44 bl 10031f1e +10033a96: f240 61a4 movw r1, #1700 ; 0x6a4 +10033a9a: 4640 mov r0, r8 +10033a9c: f64f 72ff movw r2, #65535 ; 0xffff +10033aa0: f008 fdf2 bl 1003c688 +10033aa4: 4640 mov r0, r8 +10033aa6: 2103 movs r1, #3 +10033aa8: f7f4 fe73 bl 10028792 +10033aac: b138 cbz r0, 10033abe +10033aae: 4640 mov r0, r8 +10033ab0: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033ab4: f008 fdda bl 1003c66c +10033ab8: f040 0280 orr.w r2, r0, #128 ; 0x80 +10033abc: e006 b.n 10033acc +10033abe: 4640 mov r0, r8 +10033ac0: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033ac4: f008 fdd2 bl 1003c66c +10033ac8: f040 02c0 orr.w r2, r0, #192 ; 0xc0 +10033acc: 4640 mov r0, r8 +10033ace: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033ad2: f008 fde0 bl 1003c696 +10033ad6: f8d8 3010 ldr.w r3, [r8, #16] +10033ada: 071e lsls r6, r3, #28 +10033adc: f100 8224 bmi.w 10033f28 +10033ae0: 2407 movs r4, #7 +10033ae2: e056 b.n 10033b92 +10033ae4: 2b01 cmp r3, #1 +10033ae6: d11e bne.n 10033b26 +10033ae8: 2100 movs r1, #0 +10033aea: f7f4 fe52 bl 10028792 +10033aee: b128 cbz r0, 10033afc +10033af0: 4640 mov r0, r8 +10033af2: f240 61a4 movw r1, #1700 ; 0x6a4 +10033af6: 2200 movs r2, #0 +10033af8: f008 fdc6 bl 1003c688 +10033afc: 4640 mov r0, r8 +10033afe: 2103 movs r1, #3 +10033b00: f7f4 fe47 bl 10028792 +10033b04: b168 cbz r0, 10033b22 +10033b06: 4640 mov r0, r8 +10033b08: 2101 movs r1, #1 +10033b0a: f7f0 fea0 bl 1002484e +10033b0e: b140 cbz r0, 10033b22 +10033b10: 4640 mov r0, r8 +10033b12: f7fd ff2d bl 10031970 +10033b16: 4640 mov r0, r8 +10033b18: f240 5153 movw r1, #1363 ; 0x553 +10033b1c: 2203 movs r2, #3 +10033b1e: f008 fdac bl 1003c67a +10033b22: 2430 movs r4, #48 ; 0x30 +10033b24: e035 b.n 10033b92 +10033b26: 2b02 cmp r3, #2 +10033b28: d1fb bne.n 10033b22 +10033b2a: f241 73b2 movw r3, #6066 ; 0x17b2 +10033b2e: 5cc3 ldrb r3, [r0, r3] +10033b30: 2b01 cmp r3, #1 +10033b32: d109 bne.n 10033b48 +10033b34: f240 5151 movw r1, #1361 ; 0x551 +10033b38: f008 fd8a bl 1003c650 +10033b3c: f240 5151 movw r1, #1361 ; 0x551 +10033b40: f000 02ef and.w r2, r0, #239 ; 0xef +10033b44: 4640 mov r0, r8 +10033b46: e008 b.n 10033b5a +10033b48: f44f 61aa mov.w r1, #1360 ; 0x550 +10033b4c: f008 fd80 bl 1003c650 +10033b50: f44f 61aa mov.w r1, #1360 ; 0x550 +10033b54: f000 02ef and.w r2, r0, #239 ; 0xef +10033b58: 4640 mov r0, r8 +10033b5a: f008 fd8e bl 1003c67a +10033b5e: f8d8 3010 ldr.w r3, [r8, #16] +10033b62: f013 0f60 tst.w r3, #96 ; 0x60 +10033b66: f040 81e8 bne.w 10033f3a +10033b6a: 2430 movs r4, #48 ; 0x30 +10033b6c: 4640 mov r0, r8 +10033b6e: 2103 movs r1, #3 +10033b70: f7f4 fe0f bl 10028792 +10033b74: b168 cbz r0, 10033b92 +10033b76: 4640 mov r0, r8 +10033b78: 2101 movs r1, #1 +10033b7a: f7f0 fe68 bl 1002484e +10033b7e: b140 cbz r0, 10033b92 +10033b80: 4640 mov r0, r8 +10033b82: f7fd fef5 bl 10031970 +10033b86: 4640 mov r0, r8 +10033b88: f240 5153 movw r1, #1363 ; 0x553 +10033b8c: 2203 movs r2, #3 +10033b8e: f008 fd74 bl 1003c67a +10033b92: 4640 mov r0, r8 +10033b94: f240 412a movw r1, #1066 ; 0x42a +10033b98: ea44 2204 orr.w r2, r4, r4, lsl #8 +10033b9c: e19a b.n 10033ed4 +10033b9e: f240 5154 movw r1, #1364 ; 0x554 +10033ba2: 8822 ldrh r2, [r4, #0] +10033ba4: e196 b.n 10033ed4 +10033ba6: f240 511b movw r1, #1307 ; 0x51b +10033baa: e027 b.n 10033bfc +10033bac: f240 613c movw r1, #1596 ; 0x63c +10033bb0: 7822 ldrb r2, [r4, #0] +10033bb2: f008 fd62 bl 1003c67a +10033bb6: f240 613d movw r1, #1597 ; 0x63d +10033bba: 7862 ldrb r2, [r4, #1] +10033bbc: 4640 mov r0, r8 +10033bbe: f008 fd5c bl 1003c67a +10033bc2: f240 613e movw r1, #1598 ; 0x63e +10033bc6: 78a2 ldrb r2, [r4, #2] +10033bc8: 4640 mov r0, r8 +10033bca: f008 fd56 bl 1003c67a +10033bce: 4640 mov r0, r8 +10033bd0: f240 613f movw r1, #1599 ; 0x63f +10033bd4: 78e2 ldrb r2, [r4, #3] +10033bd6: f7ff bbd2 b.w 1003337e +10033bda: 7823 ldrb r3, [r4, #0] +10033bdc: f240 4142 movw r1, #1090 ; 0x442 +10033be0: 2b00 cmp r3, #0 +10033be2: bf14 ite ne +10033be4: 2280 movne r2, #128 ; 0x80 +10033be6: 2200 moveq r2, #0 +10033be8: f7ff bbc9 b.w 1003337e +10033bec: 6843 ldr r3, [r0, #4] +10033bee: f44f 61d0 mov.w r1, #1664 ; 0x680 +10033bf2: 2b03 cmp r3, #3 +10033bf4: d102 bne.n 10033bfc +10033bf6: 222c movs r2, #44 ; 0x2c +10033bf8: f7ff bbc1 b.w 1003337e +10033bfc: 7822 ldrb r2, [r4, #0] +10033bfe: f7ff bbbe b.w 1003337e +10033c02: 6823 ldr r3, [r4, #0] +10033c04: e01d b.n 10033c42 +10033c06: 7823 ldrb r3, [r4, #0] +10033c08: b123 cbz r3, 10033c14 +10033c0a: f8d5 3224 ldr.w r3, [r5, #548] ; 0x224 +10033c0e: f8c5 3244 str.w r3, [r5, #580] ; 0x244 +10033c12: e19a b.n 10033f4a +10033c14: f8d5 3244 ldr.w r3, [r5, #580] ; 0x244 +10033c18: e013 b.n 10033c42 +10033c1a: 6823 ldr r3, [r4, #0] +10033c1c: f06f 4270 mvn.w r2, #4026531840 ; 0xf0000000 +10033c20: 4293 cmp r3, r2 +10033c22: d106 bne.n 10033c32 +10033c24: f895 31ae ldrb.w r3, [r5, #430] ; 0x1ae +10033c28: f885 31ad strb.w r3, [r5, #429] ; 0x1ad +10033c2c: f8d5 31b0 ldr.w r3, [r5, #432] ; 0x1b0 +10033c30: e007 b.n 10033c42 +10033c32: f8d5 2224 ldr.w r2, [r5, #548] ; 0x224 +10033c36: 4313 orrs r3, r2 +10033c38: e003 b.n 10033c42 +10033c3a: f8d5 3224 ldr.w r3, [r5, #548] ; 0x224 +10033c3e: 6822 ldr r2, [r4, #0] +10033c40: 4013 ands r3, r2 +10033c42: f8c5 3224 str.w r3, [r5, #548] ; 0x224 +10033c46: e180 b.n 10033f4a +10033c48: f44f 61ce mov.w r1, #1648 ; 0x670 +10033c4c: f04f 4240 mov.w r2, #3221225472 ; 0xc0000000 +10033c50: e0f0 b.n 10033e34 +10033c52: f240 6174 movw r1, #1652 ; 0x674 +10033c56: 6822 ldr r2, [r4, #0] +10033c58: f008 fd1d bl 1003c696 +10033c5c: 6862 ldr r2, [r4, #4] +10033c5e: 4640 mov r0, r8 +10033c60: f042 4200 orr.w r2, r2, #2147483648 ; 0x80000000 +10033c64: f44f 61ce mov.w r1, #1648 ; 0x670 +10033c68: f442 3280 orr.w r2, r2, #65536 ; 0x10000 +10033c6c: e0e2 b.n 10033e34 +10033c6e: f44f 61a0 mov.w r1, #1280 ; 0x500 +10033c72: e00a b.n 10033c8a +10033c74: f240 5104 movw r1, #1284 ; 0x504 +10033c78: e007 b.n 10033c8a +10033c7a: 6823 ldr r3, [r4, #0] +10033c7c: f44f 61a1 mov.w r1, #1288 ; 0x508 +10033c80: f8c5 3180 str.w r3, [r5, #384] ; 0x180 +10033c84: e001 b.n 10033c8a +10033c86: f240 510c movw r1, #1292 ; 0x50c +10033c8a: 6822 ldr r2, [r4, #0] +10033c8c: e0d2 b.n 10033e34 +10033c8e: 7823 ldrb r3, [r4, #0] +10033c90: b16b cbz r3, 10033cae +10033c92: f013 0f02 tst.w r3, #2 +10033c96: bf14 ite ne +10033c98: 2203 movne r2, #3 +10033c9a: 2201 moveq r2, #1 +10033c9c: 075d lsls r5, r3, #29 +10033c9e: bf48 it mi +10033ca0: f042 0204 orrmi.w r2, r2, #4 +10033ca4: 071c lsls r4, r3, #28 +10033ca6: d503 bpl.n 10033cb0 +10033ca8: f042 0208 orr.w r2, r2, #8 +10033cac: e000 b.n 10033cb0 +10033cae: 461a mov r2, r3 +10033cb0: 4640 mov r0, r8 +10033cb2: f44f 61b8 mov.w r1, #1472 ; 0x5c0 +10033cb6: f7ff bb62 b.w 1003337e +10033cba: 7823 ldrb r3, [r4, #0] +10033cbc: f885 3df0 strb.w r3, [r5, #3568] ; 0xdf0 +10033cc0: e143 b.n 10033f4a +10033cc2: 7821 ldrb r1, [r4, #0] +10033cc4: f00b fbde bl 1003f484 +10033cc8: e13f b.n 10033f4a +10033cca: 7821 ldrb r1, [r4, #0] +10033ccc: f00b fda6 bl 1003f81c +10033cd0: e13b b.n 10033f4a +10033cd2: 6821 ldr r1, [r4, #0] +10033cd4: f505 7000 add.w r0, r5, #512 ; 0x200 +10033cd8: 29ff cmp r1, #255 ; 0xff +10033cda: bf17 itett ne +10033cdc: f895 378c ldrbne.w r3, [r5, #1932] ; 0x78c +10033ce0: f895 178d ldrbeq.w r1, [r5, #1933] ; 0x78d +10033ce4: f885 378d strbne.w r3, [r5, #1933] ; 0x78d +10033ce8: b2c9 uxtbne r1, r1 +10033cea: f00a f8ab bl 1003de44 +10033cee: e12c b.n 10033f4a +10033cf0: 8823 ldrh r3, [r4, #0] +10033cf2: f8a5 3dee strh.w r3, [r5, #3566] ; 0xdee +10033cf6: e128 b.n 10033f4a +10033cf8: f240 5122 movw r1, #1314 ; 0x522 +10033cfc: 22ff movs r2, #255 ; 0xff +10033cfe: f008 fcbc bl 1003c67a +10033d02: 4640 mov r0, r8 +10033d04: f240 41dc movw r1, #1244 ; 0x4dc +10033d08: f008 fca9 bl 1003c65e +10033d0c: f508 539b add.w r3, r8, #4960 ; 0x1360 +10033d10: f8a8 0ab8 strh.w r0, [r8, #2744] ; 0xab8 +10033d14: 3310 adds r3, #16 +10033d16: f893 307b ldrb.w r3, [r3, #123] ; 0x7b +10033d1a: 2b01 cmp r3, #1 +10033d1c: f000 8115 beq.w 10033f4a +10033d20: f44f 7121 mov.w r1, #644 ; 0x284 +10033d24: 4640 mov r0, r8 +10033d26: f008 fca1 bl 1003c66c +10033d2a: f44f 7121 mov.w r1, #644 ; 0x284 +10033d2e: f440 2280 orr.w r2, r0, #262144 ; 0x40000 +10033d32: 4640 mov r0, r8 +10033d34: f008 fcaf bl 1003c696 +10033d38: 2464 movs r4, #100 ; 0x64 +10033d3a: 4640 mov r0, r8 +10033d3c: f44f 7121 mov.w r1, #644 ; 0x284 +10033d40: f008 fc94 bl 1003c66c +10033d44: 0380 lsls r0, r0, #14 +10033d46: d403 bmi.n 10033d50 +10033d48: 3c01 subs r4, #1 +10033d4a: f014 04ff ands.w r4, r4, #255 ; 0xff +10033d4e: d1f4 bne.n 10033d3a +10033d50: 4640 mov r0, r8 +10033d52: f44f 7105 mov.w r1, #532 ; 0x214 +10033d56: 2200 movs r2, #0 +10033d58: f008 fc96 bl 1003c688 +10033d5c: 4640 mov r0, r8 +10033d5e: f44f 7100 mov.w r1, #512 ; 0x200 +10033d62: f04f 4200 mov.w r2, #2147483648 ; 0x80000000 +10033d66: f008 fc96 bl 1003c696 +10033d6a: 2002 movs r0, #2 +10033d6c: f7e9 f982 bl 1001d074 +10033d70: e0eb b.n 10033f4a +10033d72: f240 412a movw r1, #1066 ; 0x42a +10033d76: f240 1201 movw r2, #257 ; 0x101 +10033d7a: f008 fc85 bl 1003c688 +10033d7e: f44f 747a mov.w r4, #1000 ; 0x3e8 +10033d82: f44f 7100 mov.w r1, #512 ; 0x200 +10033d86: 4640 mov r0, r8 +10033d88: f008 fc70 bl 1003c66c +10033d8c: f44f 7101 mov.w r1, #516 ; 0x204 +10033d90: 4605 mov r5, r0 +10033d92: 4640 mov r0, r8 +10033d94: f008 fc6a bl 1003c66c +10033d98: 4285 cmp r5, r0 +10033d9a: d105 bne.n 10033da8 +10033d9c: 4640 mov r0, r8 +10033d9e: f240 412a movw r1, #1066 ; 0x42a +10033da2: f243 0230 movw r2, #12336 ; 0x3030 +10033da6: e095 b.n 10033ed4 +10033da8: 200a movs r0, #10 +10033daa: f7e9 f94f bl 1001d04c +10033dae: 3c01 subs r4, #1 +10033db0: d1e7 bne.n 10033d82 +10033db2: e7f3 b.n 10033d9c +10033db4: 7823 ldrb r3, [r4, #0] +10033db6: f885 3df1 strb.w r3, [r5, #3569] ; 0xdf1 +10033dba: e0c6 b.n 10033f4a +10033dbc: 6822 ldr r2, [r4, #0] +10033dbe: f5b2 4fff cmp.w r2, #32640 ; 0x7f80 +10033dc2: f200 80c2 bhi.w 10033f4a +10033dc6: 327f adds r2, #127 ; 0x7f +10033dc8: f240 6152 movw r1, #1618 ; 0x652 +10033dcc: f3c2 12c7 ubfx r2, r2, #7, #8 +10033dd0: f7ff bad5 b.w 1003337e +10033dd4: 8822 ldrh r2, [r4, #0] +10033dd6: b2d1 uxtb r1, r2 +10033dd8: 0a12 lsrs r2, r2, #8 +10033dda: f00b fadd bl 1003f398 +10033dde: e0b4 b.n 10033f4a +10033de0: 7824 ldrb r4, [r4, #0] +10033de2: 2c1f cmp r4, #31 +10033de4: f200 80b1 bhi.w 10033f4a +10033de8: f240 41d4 movw r1, #1236 ; 0x4d4 +10033dec: f008 fc3e bl 1003c66c +10033df0: fa20 f204 lsr.w r2, r0, r4 +10033df4: 07d1 lsls r1, r2, #31 +10033df6: 4603 mov r3, r0 +10033df8: f100 80a7 bmi.w 10033f4a +10033dfc: 2201 movs r2, #1 +10033dfe: 40a2 lsls r2, r4 +10033e00: 4640 mov r0, r8 +10033e02: f240 41d4 movw r1, #1236 ; 0x4d4 +10033e06: 431a orrs r2, r3 +10033e08: e014 b.n 10033e34 +10033e0a: 7824 ldrb r4, [r4, #0] +10033e0c: 2c1f cmp r4, #31 +10033e0e: f200 809c bhi.w 10033f4a +10033e12: f240 41d4 movw r1, #1236 ; 0x4d4 +10033e16: f008 fc29 bl 1003c66c +10033e1a: fa20 f204 lsr.w r2, r0, r4 +10033e1e: 07d2 lsls r2, r2, #31 +10033e20: 4603 mov r3, r0 +10033e22: f140 8092 bpl.w 10033f4a +10033e26: 2201 movs r2, #1 +10033e28: 40a2 lsls r2, r4 +10033e2a: 4640 mov r0, r8 +10033e2c: f240 41d4 movw r1, #1236 ; 0x4d4 +10033e30: ea23 0202 bic.w r2, r3, r2 +10033e34: f008 fc2f bl 1003c696 +10033e38: e087 b.n 10033f4a +10033e3a: 7823 ldrb r3, [r4, #0] +10033e3c: 2b04 cmp r3, #4 +10033e3e: f200 8084 bhi.w 10033f4a +10033e42: e8df f003 tbb [pc, r3] +10033e46: 0f03 .short 0x0f03 +10033e48: 0f29 .short 0x0f29 +10033e4a: 29 .byte 0x29 +10033e4b: 00 .byte 0x00 +10033e4c: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033e50: f8d8 2bc4 ldr.w r2, [r8, #3012] ; 0xbc4 +10033e54: f008 fc1f bl 1003c696 +10033e58: 4640 mov r0, r8 +10033e5a: f240 61a4 movw r1, #1700 ; 0x6a4 +10033e5e: f8b0 2bc8 ldrh.w r2, [r0, #3016] ; 0xbc8 +10033e62: e037 b.n 10033ed4 +10033e64: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033e68: f008 fc00 bl 1003c66c +10033e6c: f240 61a4 movw r1, #1700 ; 0x6a4 +10033e70: f8c8 0bc4 str.w r0, [r8, #3012] ; 0xbc4 +10033e74: 4640 mov r0, r8 +10033e76: f008 fbf2 bl 1003c65e +10033e7a: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033e7e: f8a8 0bc8 strh.w r0, [r8, #3016] ; 0xbc8 +10033e82: 4640 mov r0, r8 +10033e84: f008 fbf2 bl 1003c66c +10033e88: f020 02c1 bic.w r2, r0, #193 ; 0xc1 +10033e8c: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033e90: 4640 mov r0, r8 +10033e92: f042 0201 orr.w r2, r2, #1 +10033e96: e016 b.n 10033ec6 +10033e98: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033e9c: f008 fbe6 bl 1003c66c +10033ea0: f240 61a4 movw r1, #1700 ; 0x6a4 +10033ea4: f8c8 0bc4 str.w r0, [r8, #3012] ; 0xbc4 +10033ea8: 4640 mov r0, r8 +10033eaa: f008 fbd8 bl 1003c65e +10033eae: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033eb2: f8a8 0bc8 strh.w r0, [r8, #3016] ; 0xbc8 +10033eb6: 4640 mov r0, r8 +10033eb8: f008 fbd8 bl 1003c66c +10033ebc: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033ec0: f020 02c0 bic.w r2, r0, #192 ; 0xc0 +10033ec4: 4640 mov r0, r8 +10033ec6: f008 fbe6 bl 1003c696 +10033eca: 4640 mov r0, r8 +10033ecc: f240 61a4 movw r1, #1700 ; 0x6a4 +10033ed0: f64f 72ff movw r2, #65535 ; 0xffff +10033ed4: f008 fbd8 bl 1003c688 +10033ed8: e037 b.n 10033f4a +10033eda: 4622 mov r2, r4 +10033edc: f002 ffa2 bl 10036e24 +10033ee0: e033 b.n 10033f4a +10033ee2: 2110 movs r1, #16 +10033ee4: f7f0 fcb3 bl 1002484e +10033ee8: e563 b.n 100339b2 +10033eea: 4631 mov r1, r6 +10033eec: 4640 mov r0, r8 +10033eee: f008 fbaf bl 1003c650 +10033ef2: f040 0210 orr.w r2, r0, #16 +10033ef6: 4631 mov r1, r6 +10033ef8: 4640 mov r0, r8 +10033efa: b2d2 uxtb r2, r2 +10033efc: f008 fbbd bl 1003c67a +10033f00: e572 b.n 100339e8 +10033f02: 4640 mov r0, r8 +10033f04: 2111 movs r1, #17 +10033f06: f7f0 fca2 bl 1002484e +10033f0a: 2800 cmp r0, #0 +10033f0c: f47f ad8b bne.w 10033a26 +10033f10: e590 b.n 10033a34 +10033f12: 4631 mov r1, r6 +10033f14: 4640 mov r0, r8 +10033f16: f008 fb9b bl 1003c650 +10033f1a: 4631 mov r1, r6 +10033f1c: f000 02ef and.w r2, r0, #239 ; 0xef +10033f20: 4640 mov r0, r8 +10033f22: f008 fbaa bl 1003c67a +10033f26: e58b b.n 10033a40 +10033f28: f508 53a0 add.w r3, r8, #5120 ; 0x1400 +10033f2c: 3308 adds r3, #8 +10033f2e: 891b ldrh r3, [r3, #8] +10033f30: 2b12 cmp r3, #18 +10033f32: bf14 ite ne +10033f34: 2430 movne r4, #48 ; 0x30 +10033f36: 2407 moveq r4, #7 +10033f38: e62b b.n 10033b92 +10033f3a: 4640 mov r0, r8 +10033f3c: f240 5142 movw r1, #1346 ; 0x542 +10033f40: 2202 movs r2, #2 +10033f42: f008 fb9a bl 1003c67a +10033f46: 2407 movs r4, #7 +10033f48: e610 b.n 10033b6c +10033f4a: b006 add sp, #24 +10033f4c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10033f50 : +10033f50: b538 push {r3, r4, r5, lr} +10033f52: 292d cmp r1, #45 ; 0x2d +10033f54: f241 6318 movw r3, #5656 ; 0x1618 +10033f58: 4605 mov r5, r0 +10033f5a: 4614 mov r4, r2 +10033f5c: 58c3 ldr r3, [r0, r3] +10033f5e: d018 beq.n 10033f92 +10033f60: d807 bhi.n 10033f72 +10033f62: 2916 cmp r1, #22 +10033f64: d00e beq.n 10033f84 +10033f66: 2917 cmp r1, #23 +10033f68: d00f beq.n 10033f8a +10033f6a: 2906 cmp r1, #6 +10033f6c: d134 bne.n 10033fd8 +10033f6e: 8f1b ldrh r3, [r3, #56] ; 0x38 +10033f70: e024 b.n 10033fbc +10033f72: 293f cmp r1, #63 ; 0x3f +10033f74: d024 beq.n 10033fc0 +10033f76: 2945 cmp r1, #69 ; 0x45 +10033f78: d026 beq.n 10033fc8 +10033f7a: 293a cmp r1, #58 ; 0x3a +10033f7c: d12c bne.n 10033fd8 +10033f7e: f8b3 3dee ldrh.w r3, [r3, #3566] ; 0xdee +10033f82: e01b b.n 10033fbc +10033f84: f893 303c ldrb.w r3, [r3, #60] ; 0x3c +10033f88: e01c b.n 10033fc4 +10033f8a: f8d3 3224 ldr.w r3, [r3, #548] ; 0x224 +10033f8e: 6013 str r3, [r2, #0] +10033f90: bd38 pop {r3, r4, r5, pc} +10033f92: f241 63fc movw r3, #5884 ; 0x16fc +10033f96: 58c3 ldr r3, [r0, r3] +10033f98: 2b01 cmp r3, #1 +10033f9a: d00d beq.n 10033fb8 +10033f9c: f500 559f add.w r5, r0, #5088 ; 0x13e0 +10033fa0: 682b ldr r3, [r5, #0] +10033fa2: 2b02 cmp r3, #2 +10033fa4: d008 beq.n 10033fb8 +10033fa6: f44f 61c1 mov.w r1, #1544 ; 0x608 +10033faa: f008 fb5f bl 1003c66c +10033fae: f410 2fe0 tst.w r0, #458752 ; 0x70000 +10033fb2: d001 beq.n 10033fb8 +10033fb4: 2300 movs r3, #0 +10033fb6: e005 b.n 10033fc4 +10033fb8: 2301 movs r3, #1 +10033fba: e003 b.n 10033fc4 +10033fbc: 8023 strh r3, [r4, #0] +10033fbe: bd38 pop {r3, r4, r5, pc} +10033fc0: f893 3df1 ldrb.w r3, [r3, #3569] ; 0xdf1 +10033fc4: 7023 strb r3, [r4, #0] +10033fc6: bd38 pop {r3, r4, r5, pc} +10033fc8: f240 411a movw r1, #1050 ; 0x41a +10033fcc: f008 fb47 bl 1003c65e +10033fd0: f3c0 2080 ubfx r0, r0, #10, #1 +10033fd4: 7020 strb r0, [r4, #0] +10033fd6: bd38 pop {r3, r4, r5, pc} +10033fd8: 4628 mov r0, r5 +10033fda: 4622 mov r2, r4 +10033fdc: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10033fe0: f002 bf25 b.w 10036e2e + +10033fe4 : +10033fe4: f241 6318 movw r3, #5656 ; 0x1618 +10033fe8: 2909 cmp r1, #9 +10033fea: b570 push {r4, r5, r6, lr} +10033fec: 4606 mov r6, r0 +10033fee: 58c4 ldr r4, [r0, r3] +10033ff0: d163 bne.n 100340ba +10033ff2: 7813 ldrb r3, [r2, #0] +10033ff4: b16b cbz r3, 10034012 +10033ff6: 2b01 cmp r3, #1 +10033ff8: d10e bne.n 10034018 +10033ffa: f8d4 3224 ldr.w r3, [r4, #548] ; 0x224 +10033ffe: 07db lsls r3, r3, #31 +10034000: d405 bmi.n 1003400e +10034002: f44f 6145 mov.w r1, #3152 ; 0xc50 +10034006: f008 fb23 bl 1003c650 +1003400a: f884 078c strb.w r0, [r4, #1932] ; 0x78c +1003400e: f06f 4370 mvn.w r3, #4026531840 ; 0xf0000000 +10034012: f8c4 3224 str.w r3, [r4, #548] ; 0x224 +10034016: e050 b.n 100340ba +10034018: 2b02 cmp r3, #2 +1003401a: d104 bne.n 10034026 +1003401c: f8d4 3224 ldr.w r3, [r4, #548] ; 0x224 +10034020: f023 0301 bic.w r3, r3, #1 +10034024: e7f5 b.n 10034012 +10034026: 2b03 cmp r3, #3 +10034028: d104 bne.n 10034034 +1003402a: f8d4 3224 ldr.w r3, [r4, #548] ; 0x224 +1003402e: f043 0301 orr.w r3, r3, #1 +10034032: e7ee b.n 10034012 +10034034: 2b04 cmp r3, #4 +10034036: d107 bne.n 10034048 +10034038: f8d4 3224 ldr.w r3, [r4, #548] ; 0x224 +1003403c: f023 7380 bic.w r3, r3, #16777216 ; 0x1000000 +10034040: f8c4 3224 str.w r3, [r4, #548] ; 0x224 +10034044: 2300 movs r3, #0 +10034046: e008 b.n 1003405a +10034048: 2b05 cmp r3, #5 +1003404a: d109 bne.n 10034060 +1003404c: f8d4 3224 ldr.w r3, [r4, #548] ; 0x224 +10034050: f043 7380 orr.w r3, r3, #16777216 ; 0x1000000 +10034054: f8c4 3224 str.w r3, [r4, #548] ; 0x224 +10034058: 2301 movs r3, #1 +1003405a: f884 3987 strb.w r3, [r4, #2439] ; 0x987 +1003405e: e02c b.n 100340ba +10034060: 2b06 cmp r3, #6 +10034062: f504 7500 add.w r5, r4, #512 ; 0x200 +10034066: d111 bne.n 1003408c +10034068: 217f movs r1, #127 ; 0x7f +1003406a: 460a mov r2, r1 +1003406c: 4628 mov r0, r5 +1003406e: f009 fd67 bl 1003db40 +10034072: f8d4 21b0 ldr.w r2, [r4, #432] ; 0x1b0 +10034076: 2300 movs r3, #0 +10034078: f422 5200 bic.w r2, r2, #8192 ; 0x2000 +1003407c: f8c4 21b0 str.w r2, [r4, #432] ; 0x1b0 +10034080: 4628 mov r0, r5 +10034082: 2101 movs r1, #1 +10034084: f009 fbd0 bl 1003d828 +10034088: 2300 movs r3, #0 +1003408a: e010 b.n 100340ae +1003408c: 2b07 cmp r3, #7 +1003408e: d114 bne.n 100340ba +10034090: 4628 mov r0, r5 +10034092: f009 fd90 bl 1003dbb6 +10034096: f8d4 21b0 ldr.w r2, [r4, #432] ; 0x1b0 +1003409a: 2300 movs r3, #0 +1003409c: f442 5200 orr.w r2, r2, #8192 ; 0x2000 +100340a0: f8c4 21b0 str.w r2, [r4, #432] ; 0x1b0 +100340a4: 4628 mov r0, r5 +100340a6: 2101 movs r1, #1 +100340a8: f009 fbbe bl 1003d828 +100340ac: 2301 movs r3, #1 +100340ae: 4a04 ldr r2, [pc, #16] ; (100340c0 ) +100340b0: f506 5697 add.w r6, r6, #4832 ; 0x12e0 +100340b4: 7013 strb r3, [r2, #0] +100340b6: f886 3089 strb.w r3, [r6, #137] ; 0x89 +100340ba: 2001 movs r0, #1 +100340bc: bd70 pop {r4, r5, r6, pc} +100340be: bf00 nop +100340c0: 10055348 .word 0x10055348 + +100340c4 : +100340c4: f241 6318 movw r3, #5656 ; 0x1618 +100340c8: 2909 cmp r1, #9 +100340ca: 58c3 ldr r3, [r0, r3] +100340cc: d005 beq.n 100340da +100340ce: 290d cmp r1, #13 +100340d0: d006 beq.n 100340e0 +100340d2: b939 cbnz r1, 100340e4 +100340d4: f8d3 31b4 ldr.w r3, [r3, #436] ; 0x1b4 +100340d8: e003 b.n 100340e2 +100340da: f8d3 3224 ldr.w r3, [r3, #548] ; 0x224 +100340de: e000 b.n 100340e2 +100340e0: 2301 movs r3, #1 +100340e2: 6013 str r3, [r2, #0] +100340e4: 2001 movs r0, #1 +100340e6: 4770 bx lr + +100340e8 : +100340e8: b510 push {r4, lr} +100340ea: f500 539b add.w r3, r0, #4960 ; 0x1360 +100340ee: f893 4045 ldrb.w r4, [r3, #69] ; 0x45 +100340f2: 3310 adds r3, #16 +100340f4: b114 cbz r4, 100340fc +100340f6: 6f1b ldr r3, [r3, #112] ; 0x70 +100340f8: 2b02 cmp r3, #2 +100340fa: d009 beq.n 10034110 +100340fc: f241 6318 movw r3, #5656 ; 0x1618 +10034100: 58c3 ldr r3, [r0, r3] +10034102: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +10034106: b91b cbnz r3, 10034110 +10034108: e8bd 4010 ldmia.w sp!, {r4, lr} +1003410c: f00f bc80 b.w 10043a10 <__PHY_QueryBBReg_8195A_veneer> +10034110: 2000 movs r0, #0 +10034112: bd10 pop {r4, pc} + +10034114 : +10034114: b530 push {r4, r5, lr} +10034116: f500 549b add.w r4, r0, #4960 ; 0x1360 +1003411a: f894 5045 ldrb.w r5, [r4, #69] ; 0x45 +1003411e: 3410 adds r4, #16 +10034120: b115 cbz r5, 10034128 +10034122: 6f24 ldr r4, [r4, #112] ; 0x70 +10034124: 2c02 cmp r4, #2 +10034126: d009 beq.n 1003413c +10034128: f241 6418 movw r4, #5656 ; 0x1618 +1003412c: 5904 ldr r4, [r0, r4] +1003412e: f894 4e7c ldrb.w r4, [r4, #3708] ; 0xe7c +10034132: b91c cbnz r4, 1003413c +10034134: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +10034138: f00f bbf2 b.w 10043920 <__PHY_SetBBReg_8195A_veneer> +1003413c: bd30 pop {r4, r5, pc} + ... + +10034140 : +10034140: f241 6318 movw r3, #5656 ; 0x1618 +10034144: 58c3 ldr r3, [r0, r3] +10034146: b570 push {r4, r5, r6, lr} +10034148: 251c movs r5, #28 +1003414a: fb05 3101 mla r1, r5, r1, r3 +1003414e: 4616 mov r6, r2 +10034150: f501 75c2 add.w r5, r1, #388 ; 0x184 +10034154: f04f 32ff mov.w r2, #4294967295 +10034158: f640 0124 movw r1, #2084 ; 0x824 +1003415c: 4604 mov r4, r0 +1003415e: f7ff ffc3 bl 100340e8 +10034162: b2f6 uxtb r6, r6 +10034164: f020 40ff bic.w r0, r0, #2139095040 ; 0x7f800000 +10034168: ea40 53c6 orr.w r3, r0, r6, lsl #23 +1003416c: f023 4300 bic.w r3, r3, #2147483648 ; 0x80000000 +10034170: 4620 mov r0, r4 +10034172: f640 0124 movw r1, #2084 ; 0x824 +10034176: f04f 32ff mov.w r2, #4294967295 +1003417a: f7ff ffcb bl 10034114 +1003417e: 4620 mov r0, r4 +10034180: f640 0124 movw r1, #2084 ; 0x824 +10034184: f04f 32ff mov.w r2, #4294967295 +10034188: f7ff ffae bl 100340e8 +1003418c: 4606 mov r6, r0 +1003418e: f026 4300 bic.w r3, r6, #2147483648 ; 0x80000000 +10034192: 4620 mov r0, r4 +10034194: f640 0124 movw r1, #2084 ; 0x824 +10034198: f04f 32ff mov.w r2, #4294967295 +1003419c: f7ff ffba bl 10034114 +100341a0: f046 4300 orr.w r3, r6, #2147483648 ; 0x80000000 +100341a4: f640 0124 movw r1, #2084 ; 0x824 +100341a8: f04f 32ff mov.w r2, #4294967295 +100341ac: 4620 mov r0, r4 +100341ae: f7ff ffb1 bl 10034114 +100341b2: 200a movs r0, #10 +100341b4: f7e8 ff68 bl 1001d088 +100341b8: 2032 movs r0, #50 ; 0x32 +100341ba: f7e8 ff65 bl 1001d088 +100341be: 2032 movs r0, #50 ; 0x32 +100341c0: f7e8 ff62 bl 1001d088 +100341c4: 200a movs r0, #10 +100341c6: f7e8 ff5f bl 1001d088 +100341ca: f44f 6102 mov.w r1, #2080 ; 0x820 +100341ce: 4620 mov r0, r4 +100341d0: f44f 7280 mov.w r2, #256 ; 0x100 +100341d4: f7ff ff88 bl 100340e8 +100341d8: f010 0fff tst.w r0, #255 ; 0xff +100341dc: bf18 it ne +100341de: 69a9 ldrne r1, [r5, #24] +100341e0: 4620 mov r0, r4 +100341e2: bf08 it eq +100341e4: 6969 ldreq r1, [r5, #20] +100341e6: 4a02 ldr r2, [pc, #8] ; (100341f0 ) +100341e8: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +100341ec: f7ff bf7c b.w 100340e8 +100341f0: 000fffff .word 0x000fffff + +100341f4 : +100341f4: b538 push {r3, r4, r5, lr} +100341f6: 461c mov r4, r3 +100341f8: f7ff ffa2 bl 10034140 +100341fc: 4605 mov r5, r0 +100341fe: 4620 mov r0, r4 +10034200: f00f fbf6 bl 100439f0 <__phy_CalculateBitShift_veneer> +10034204: 402c ands r4, r5 +10034206: fa24 f000 lsr.w r0, r4, r0 +1003420a: bd38 pop {r3, r4, r5, pc} + +1003420c : +1003420c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10034210: 461d mov r5, r3 +10034212: 4b13 ldr r3, [pc, #76] ; (10034260 ) +10034214: 4606 mov r6, r0 +10034216: 429d cmp r5, r3 +10034218: 4688 mov r8, r1 +1003421a: 4617 mov r7, r2 +1003421c: 9c08 ldr r4, [sp, #32] +1003421e: d00b beq.n 10034238 +10034220: f7ff ff8e bl 10034140 +10034224: 4681 mov r9, r0 +10034226: 4628 mov r0, r5 +10034228: f00f fbe2 bl 100439f0 <__phy_CalculateBitShift_veneer> +1003422c: fa04 f000 lsl.w r0, r4, r0 +10034230: ea29 0505 bic.w r5, r9, r5 +10034234: ea40 0405 orr.w r4, r0, r5 +10034238: f241 6318 movw r3, #5656 ; 0x1618 +1003423c: 58f3 ldr r3, [r6, r3] +1003423e: 221c movs r2, #28 +10034240: fb02 3208 mla r2, r2, r8, r3 +10034244: f3c4 0413 ubfx r4, r4, #0, #20 +10034248: b2fb uxtb r3, r7 +1003424a: 4630 mov r0, r6 +1003424c: f8d2 1190 ldr.w r1, [r2, #400] ; 0x190 +10034250: ea44 5303 orr.w r3, r4, r3, lsl #20 +10034254: f04f 32ff mov.w r2, #4294967295 +10034258: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003425c: f7ff bf5a b.w 10034114 +10034260: 000fffff .word 0x000fffff + +10034264 : +10034264: b508 push {r3, lr} +10034266: f241 6318 movw r3, #5656 ; 0x1618 +1003426a: 58c0 ldr r0, [r0, r3] +1003426c: f500 7000 add.w r0, r0, #512 ; 0x200 +10034270: f00a fa51 bl 1003e716 +10034274: f110 30ff adds.w r0, r0, #4294967295 +10034278: bf18 it ne +1003427a: 2001 movne r0, #1 +1003427c: bd08 pop {r3, pc} + +1003427e : +1003427e: b5f8 push {r3, r4, r5, r6, r7, lr} +10034280: f241 6518 movw r5, #5656 ; 0x1618 +10034284: 5943 ldr r3, [r0, r5] +10034286: f44f 6207 mov.w r2, #2160 ; 0x870 +1003428a: f8c3 2184 str.w r2, [r3, #388] ; 0x184 +1003428e: f44f 6206 mov.w r2, #2144 ; 0x860 +10034292: f8c3 2188 str.w r2, [r3, #392] ; 0x188 +10034296: f8c3 218c str.w r2, [r3, #396] ; 0x18c +1003429a: f44f 6204 mov.w r2, #2112 ; 0x840 +1003429e: f8c3 2190 str.w r2, [r3, #400] ; 0x190 +100342a2: f640 0224 movw r2, #2084 ; 0x824 +100342a6: f8c3 2194 str.w r2, [r3, #404] ; 0x194 +100342aa: f44f 620a mov.w r2, #2208 ; 0x8a0 +100342ae: f8c3 2198 str.w r2, [r3, #408] ; 0x198 +100342b2: f640 02b8 movw r2, #2232 ; 0x8b8 +100342b6: f8c3 219c str.w r2, [r3, #412] ; 0x19c +100342ba: 2104 movs r1, #4 +100342bc: 4604 mov r4, r0 +100342be: f008 f9d5 bl 1003c66c +100342c2: 2104 movs r1, #4 +100342c4: f440 3240 orr.w r2, r0, #196608 ; 0x30000 +100342c8: 4620 mov r0, r4 +100342ca: f008 f9e4 bl 1003c696 +100342ce: 2107 movs r1, #7 +100342d0: 460a mov r2, r1 +100342d2: 4620 mov r0, r4 +100342d4: f008 f9d1 bl 1003c67a +100342d8: 2150 movs r1, #80 ; 0x50 +100342da: 2200 movs r2, #0 +100342dc: 4620 mov r0, r4 +100342de: f008 f9cc bl 1003c67a +100342e2: 4620 mov r0, r4 +100342e4: 5966 ldr r6, [r4, r5] +100342e6: f003 fa47 bl 10037778 +100342ea: f241 3364 movw r3, #4964 ; 0x1364 +100342ee: 5ce3 ldrb r3, [r4, r3] +100342f0: f506 7700 add.w r7, r6, #512 ; 0x200 +100342f4: 2b01 cmp r3, #1 +100342f6: d00b beq.n 10034310 +100342f8: 2b02 cmp r3, #2 +100342fa: d005 beq.n 10034308 +100342fc: 4638 mov r0, r7 +100342fe: 2100 movs r1, #0 +10034300: f00a f9f5 bl 1003e6ee +10034304: b958 cbnz r0, 1003431e +10034306: e00c b.n 10034322 +10034308: f896 3043 ldrb.w r3, [r6, #67] ; 0x43 +1003430c: 2b01 cmp r3, #1 +1003430e: d1f5 bne.n 100342fc +10034310: 4638 mov r0, r7 +10034312: 2101 movs r1, #1 +10034314: 2200 movs r2, #0 +10034316: f00a f9c2 bl 1003e69e +1003431a: 2800 cmp r0, #0 +1003431c: d0ee beq.n 100342fc +1003431e: 2500 movs r5, #0 +10034320: e033 b.n 1003438a +10034322: 4620 mov r0, r4 +10034324: f002 fee4 bl 100370f0 +10034328: f241 3365 movw r3, #4965 ; 0x1365 +1003432c: 5ce3 ldrb r3, [r4, r3] +1003432e: 2b01 cmp r3, #1 +10034330: d005 beq.n 1003433e +10034332: 2b02 cmp r3, #2 +10034334: d121 bne.n 1003437a +10034336: f896 3043 ldrb.w r3, [r6, #67] ; 0x43 +1003433a: 2b02 cmp r3, #2 +1003433c: d01d beq.n 1003437a +1003433e: 4638 mov r0, r7 +10034340: 2104 movs r1, #4 +10034342: f00a f9d4 bl 1003e6ee +10034346: f8d6 3208 ldr.w r3, [r6, #520] ; 0x208 +1003434a: f1d0 0501 rsbs r5, r0, #1 +1003434e: bf38 it cc +10034350: 2500 movcc r5, #0 +10034352: 2b01 cmp r3, #1 +10034354: d102 bne.n 1003435c +10034356: 4620 mov r0, r4 +10034358: f003 f846 bl 100373e8 +1003435c: f241 3364 movw r3, #4964 ; 0x1364 +10034360: 5ce3 ldrb r3, [r4, r3] +10034362: 2b01 cmp r3, #1 +10034364: d005 beq.n 10034372 +10034366: 2b02 cmp r3, #2 +10034368: d108 bne.n 1003437c +1003436a: f896 3043 ldrb.w r3, [r6, #67] ; 0x43 +1003436e: 2b01 cmp r3, #1 +10034370: d104 bne.n 1003437c +10034372: 4620 mov r0, r4 +10034374: f003 f958 bl 10037628 +10034378: e000 b.n 1003437c +1003437a: 2501 movs r5, #1 +1003437c: 4638 mov r0, r7 +1003437e: 2101 movs r1, #1 +10034380: f00a f9b5 bl 1003e6ee +10034384: 2800 cmp r0, #0 +10034386: bf18 it ne +10034388: 2500 movne r5, #0 +1003438a: 4628 mov r0, r5 +1003438c: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1003438e : +1003438e: f002 b9d3 b.w 10036738 + +10034392 : +10034392: b510 push {r4, lr} +10034394: 460c mov r4, r1 +10034396: 2a00 cmp r2, #0 +10034398: d17f bne.n 1003449a +1003439a: 2b48 cmp r3, #72 ; 0x48 +1003439c: d05f beq.n 1003445e +1003439e: d824 bhi.n 100343ea +100343a0: 2b12 cmp r3, #18 +100343a2: d051 beq.n 10034448 +100343a4: d810 bhi.n 100343c8 +100343a6: 2b04 cmp r3, #4 +100343a8: d046 beq.n 10034438 +100343aa: d805 bhi.n 100343b8 +100343ac: 2b02 cmp r3, #2 +100343ae: bf08 it eq +100343b0: f640 6108 movweq r1, #3592 ; 0xe08 +100343b4: d042 beq.n 1003443c +100343b6: bd10 pop {r4, pc} +100343b8: 2b0b cmp r3, #11 +100343ba: d042 beq.n 10034442 +100343bc: 2b0c cmp r3, #12 +100343be: bf08 it eq +100343c0: f44f 6160 moveq.w r1, #3584 ; 0xe00 +100343c4: d05a beq.n 1003447c +100343c6: bd10 pop {r4, pc} +100343c8: 2b18 cmp r3, #24 +100343ca: d040 beq.n 1003444e +100343cc: d805 bhi.n 100343da +100343ce: 2b16 cmp r3, #22 +100343d0: bf08 it eq +100343d2: f640 016c movweq r1, #2156 ; 0x86c +100343d6: d059 beq.n 1003448c +100343d8: bd10 pop {r4, pc} +100343da: 2b24 cmp r3, #36 ; 0x24 +100343dc: d03c beq.n 10034458 +100343de: 2b30 cmp r3, #48 ; 0x30 +100343e0: bf08 it eq +100343e2: f640 6104 movweq r1, #3588 ; 0xe04 +100343e6: d049 beq.n 1003447c +100343e8: bd10 pop {r4, pc} +100343ea: 2b82 cmp r3, #130 ; 0x82 +100343ec: d040 beq.n 10034470 +100343ee: d810 bhi.n 10034412 +100343f0: 2b6c cmp r3, #108 ; 0x6c +100343f2: d037 beq.n 10034464 +100343f4: d805 bhi.n 10034402 +100343f6: 2b60 cmp r3, #96 ; 0x60 +100343f8: bf08 it eq +100343fa: f640 6104 movweq r1, #3588 ; 0xe04 +100343fe: d028 beq.n 10034452 +10034400: bd10 pop {r4, pc} +10034402: 2b80 cmp r3, #128 ; 0x80 +10034404: d031 beq.n 1003446a +10034406: 2b81 cmp r3, #129 ; 0x81 +10034408: bf08 it eq +1003440a: f44f 6161 moveq.w r1, #3600 ; 0xe10 +1003440e: d015 beq.n 1003443c +10034410: bd10 pop {r4, pc} +10034412: 2b85 cmp r3, #133 ; 0x85 +10034414: d034 beq.n 10034480 +10034416: d807 bhi.n 10034428 +10034418: 2b83 cmp r3, #131 ; 0x83 +1003441a: d02c beq.n 10034476 +1003441c: 2b84 cmp r3, #132 ; 0x84 +1003441e: bf08 it eq +10034420: f640 6114 movweq r1, #3604 ; 0xe14 +10034424: d02a beq.n 1003447c +10034426: bd10 pop {r4, pc} +10034428: 2b86 cmp r3, #134 ; 0x86 +1003442a: d02c beq.n 10034486 +1003442c: 2b87 cmp r3, #135 ; 0x87 +1003442e: bf08 it eq +10034430: f640 6114 movweq r1, #3604 ; 0xe14 +10034434: d02a beq.n 1003448c +10034436: bd10 pop {r4, pc} +10034438: f640 016c movw r1, #2156 ; 0x86c +1003443c: f44f 427f mov.w r2, #65280 ; 0xff00 +10034440: e026 b.n 10034490 +10034442: f640 016c movw r1, #2156 ; 0x86c +10034446: e004 b.n 10034452 +10034448: f44f 6160 mov.w r1, #3584 ; 0xe00 +1003444c: e7f6 b.n 1003443c +1003444e: f44f 6160 mov.w r1, #3584 ; 0xe00 +10034452: f44f 027f mov.w r2, #16711680 ; 0xff0000 +10034456: e01b b.n 10034490 +10034458: f44f 6160 mov.w r1, #3584 ; 0xe00 +1003445c: e016 b.n 1003448c +1003445e: f640 6104 movw r1, #3588 ; 0xe04 +10034462: e7eb b.n 1003443c +10034464: f640 6104 movw r1, #3588 ; 0xe04 +10034468: e010 b.n 1003448c +1003446a: f44f 6161 mov.w r1, #3600 ; 0xe10 +1003446e: e005 b.n 1003447c +10034470: f44f 6161 mov.w r1, #3600 ; 0xe10 +10034474: e7ed b.n 10034452 +10034476: f44f 6161 mov.w r1, #3600 ; 0xe10 +1003447a: e007 b.n 1003448c +1003447c: 22ff movs r2, #255 ; 0xff +1003447e: e007 b.n 10034490 +10034480: f640 6114 movw r1, #3604 ; 0xe14 +10034484: e7da b.n 1003443c +10034486: f640 6114 movw r1, #3604 ; 0xe14 +1003448a: e7e2 b.n 10034452 +1003448c: f04f 427f mov.w r2, #4278190080 ; 0xff000000 +10034490: 4623 mov r3, r4 +10034492: e8bd 4010 ldmia.w sp!, {r4, lr} +10034496: f7ff be3d b.w 10034114 +1003449a: bd10 pop {r4, pc} + +1003449c : +1003449c: 780a ldrb r2, [r1, #0] +1003449e: f500 5097 add.w r0, r0, #4832 ; 0x12e0 +100344a2: f890 3061 ldrb.w r3, [r0, #97] ; 0x61 +100344a6: 2a3f cmp r2, #63 ; 0x3f +100344a8: bf88 it hi +100344aa: 223f movhi r2, #63 ; 0x3f +100344ac: f103 33ff add.w r3, r3, #4294967295 +100344b0: bf88 it hi +100344b2: 700a strbhi r2, [r1, #0] +100344b4: 2b03 cmp r3, #3 +100344b6: d80f bhi.n 100344d8 +100344b8: e8df f003 tbb [pc, r3] +100344bc: 0b080502 .word 0x0b080502 +100344c0: 780b ldrb r3, [r1, #0] +100344c2: 3b03 subs r3, #3 +100344c4: e007 b.n 100344d6 +100344c6: 780b ldrb r3, [r1, #0] +100344c8: 3b06 subs r3, #6 +100344ca: e004 b.n 100344d6 +100344cc: 780b ldrb r3, [r1, #0] +100344ce: 3b0c subs r3, #12 +100344d0: e001 b.n 100344d6 +100344d2: 780b ldrb r3, [r1, #0] +100344d4: 3b12 subs r3, #18 +100344d6: 700b strb r3, [r1, #0] +100344d8: 4770 bx lr + ... + +100344dc : +100344dc: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100344e0: f241 6618 movw r6, #5656 ; 0x1618 +100344e4: b089 sub sp, #36 ; 0x24 +100344e6: f10d 0e20 add.w lr, sp, #32 +100344ea: 5987 ldr r7, [r0, r6] +100344ec: f89d b048 ldrb.w fp, [sp, #72] ; 0x48 +100344f0: 2600 movs r6, #0 +100344f2: f80e 6d01 strb.w r6, [lr, #-1]! +100344f6: e88d 4800 stmia.w sp, {fp, lr} +100344fa: 4604 mov r4, r0 +100344fc: 460d mov r5, r1 +100344fe: 4690 mov r8, r2 +10034500: 9305 str r3, [sp, #20] +10034502: f88d 601e strb.w r6, [sp, #30] +10034506: f002 fe0b bl 10037120 +1003450a: 4631 mov r1, r6 +1003450c: 4632 mov r2, r6 +1003450e: 4633 mov r3, r6 +10034510: 4682 mov sl, r0 +10034512: f8cd 8000 str.w r8, [sp] +10034516: 4620 mov r0, r4 +10034518: f002 fe72 bl 10037200 +1003451c: f241 3368 movw r3, #4968 ; 0x1368 +10034520: 5ce1 ldrb r1, [r4, r3] +10034522: e88d 0120 stmia.w sp, {r5, r8} +10034526: f89d 201f ldrb.w r2, [sp, #31] +1003452a: f897 3034 ldrb.w r3, [r7, #52] ; 0x34 +1003452e: 4681 mov r9, r0 +10034530: 9302 str r3, [sp, #8] +10034532: 1b93 subs r3, r2, r6 +10034534: 425a negs r2, r3 +10034536: 415a adcs r2, r3 +10034538: 4620 mov r0, r4 +1003453a: 6afb ldr r3, [r7, #44] ; 0x2c +1003453c: f002 ffdf bl 100374fe +10034540: 4629 mov r1, r5 +10034542: 4548 cmp r0, r9 +10034544: bfd4 ite le +10034546: eb0a 0300 addle.w r3, sl, r0 +1003454a: eb0a 0309 addgt.w r3, sl, r9 +1003454e: 4642 mov r2, r8 +10034550: 4606 mov r6, r0 +10034552: 4620 mov r0, r4 +10034554: f88d 301e strb.w r3, [sp, #30] +10034558: f002 fe32 bl 100371c0 +1003455c: f89d 301e ldrb.w r3, [sp, #30] +10034560: a908 add r1, sp, #32 +10034562: 4403 add r3, r0 +10034564: f801 3d02 strb.w r3, [r1, #-2]! +10034568: 4607 mov r7, r0 +1003456a: 4620 mov r0, r4 +1003456c: f7ff ff96 bl 1003449c +10034570: f99d 301e ldrsb.w r3, [sp, #30] +10034574: f04f 4480 mov.w r4, #1073741824 ; 0x40000000 +10034578: 2b3f cmp r3, #63 ; 0x3f +1003457a: bfc4 itt gt +1003457c: 233f movgt r3, #63 ; 0x3f +1003457e: f88d 301e strbgt.w r3, [sp, #30] +10034582: 4b10 ldr r3, [pc, #64] ; (100345c4 ) +10034584: 2500 movs r5, #0 +10034586: e9d3 2302 ldrd r2, r3, [r3, #8] +1003458a: 4014 ands r4, r2 +1003458c: 401d ands r5, r3 +1003458e: ea54 0305 orrs.w r3, r4, r5 +10034592: d011 beq.n 100345b8 +10034594: 4c0c ldr r4, [pc, #48] ; (100345c8 ) +10034596: 9905 ldr r1, [sp, #20] +10034598: 4642 mov r2, r8 +1003459a: 465b mov r3, fp +1003459c: 6820 ldr r0, [r4, #0] +1003459e: f00d fdb3 bl 10042108 +100345a2: f99d 301e ldrsb.w r3, [sp, #30] +100345a6: 9700 str r7, [sp, #0] +100345a8: 9301 str r3, [sp, #4] +100345aa: 6860 ldr r0, [r4, #4] +100345ac: fa4f f18a sxtb.w r1, sl +100345b0: 464a mov r2, r9 +100345b2: 4633 mov r3, r6 +100345b4: f00d fda8 bl 10042108 +100345b8: f89d 001e ldrb.w r0, [sp, #30] +100345bc: b009 add sp, #36 ; 0x24 +100345be: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100345c2: bf00 nop +100345c4: 10000720 .word 0x10000720 +100345c8: 1004da10 .word 0x1004da10 + +100345cc : +100345cc: 2200 movs r2, #0 +100345ce: f002 bf65 b.w 1003749c + +100345d2 : +100345d2: f241 6318 movw r3, #5656 ; 0x1618 +100345d6: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100345da: 58c5 ldr r5, [r0, r3] +100345dc: 4606 mov r6, r0 +100345de: 6aef ldr r7, [r5, #44] ; 0x2c +100345e0: f505 7400 add.w r4, r5, #512 ; 0x200 +100345e4: b9d7 cbnz r7, 1003461c +100345e6: f895 3034 ldrb.w r3, [r5, #52] ; 0x34 +100345ea: 3b0d subs r3, #13 +100345ec: 2b01 cmp r3, #1 +100345ee: d815 bhi.n 1003461c +100345f0: f44f 6100 mov.w r1, #2048 ; 0x800 +100345f4: f44f 62e0 mov.w r2, #1792 ; 0x700 +100345f8: 2306 movs r3, #6 +100345fa: f7ff fd8b bl 10034114 +100345fe: 4630 mov r0, r6 +10034600: f44f 6141 mov.w r1, #3088 ; 0xc10 +10034604: f04f 5240 mov.w r2, #805306368 ; 0x30000000 +10034608: 463b mov r3, r7 +1003460a: f7ff fd83 bl 10034114 +1003460e: 4630 mov r0, r6 +10034610: f640 41e4 movw r1, #3300 ; 0xce4 +10034614: f04f 5240 mov.w r2, #805306368 ; 0x30000000 +10034618: 463b mov r3, r7 +1003461a: e015 b.n 10034648 +1003461c: 4630 mov r0, r6 +1003461e: f44f 6100 mov.w r1, #2048 ; 0x800 +10034622: f44f 62e0 mov.w r2, #1792 ; 0x700 +10034626: 2307 movs r3, #7 +10034628: f7ff fd74 bl 10034114 +1003462c: 4630 mov r0, r6 +1003462e: f44f 6141 mov.w r1, #3088 ; 0xc10 +10034632: f04f 5240 mov.w r2, #805306368 ; 0x30000000 +10034636: 2301 movs r3, #1 +10034638: f7ff fd6c bl 10034114 +1003463c: 4630 mov r0, r6 +1003463e: f640 41e4 movw r1, #3300 ; 0xce4 +10034642: f04f 5240 mov.w r2, #805306368 ; 0x30000000 +10034646: 2301 movs r3, #1 +10034648: f7ff fd64 bl 10034114 +1003464c: 4620 mov r0, r4 +1003464e: f44f 6144 mov.w r1, #3136 ; 0xc40 +10034652: f04f 52f8 mov.w r2, #520093696 ; 0x1f000000 +10034656: 231f movs r3, #31 +10034658: f00a f878 bl 1003e74c +1003465c: 4620 mov r0, r4 +1003465e: f44f 6144 mov.w r1, #3136 ; 0xc40 +10034662: f44f 7200 mov.w r2, #512 ; 0x200 +10034666: 2300 movs r3, #0 +10034668: f00a f870 bl 1003e74c +1003466c: 4620 mov r0, r4 +1003466e: f44f 6154 mov.w r1, #3392 ; 0xd40 +10034672: f04f 32ff mov.w r2, #4294967295 +10034676: 2300 movs r3, #0 +10034678: f00a f868 bl 1003e74c +1003467c: 4620 mov r0, r4 +1003467e: f640 5144 movw r1, #3396 ; 0xd44 +10034682: f04f 32ff mov.w r2, #4294967295 +10034686: 2300 movs r3, #0 +10034688: f00a f860 bl 1003e74c +1003468c: 4620 mov r0, r4 +1003468e: f640 514c movw r1, #3404 ; 0xd4c +10034692: f04f 32ff mov.w r2, #4294967295 +10034696: 2300 movs r3, #0 +10034698: f00a f858 bl 1003e74c +1003469c: 4620 mov r0, r4 +1003469e: f640 512c movw r1, #3372 ; 0xd2c +100346a2: f04f 5280 mov.w r2, #268435456 ; 0x10000000 +100346a6: 2300 movs r3, #0 +100346a8: f00a f850 bl 1003e74c +100346ac: 4620 mov r0, r4 +100346ae: f640 1154 movw r1, #2388 ; 0x954 +100346b2: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +100346b6: 2303 movs r3, #3 +100346b8: f00a f848 bl 1003e74c +100346bc: 4620 mov r0, r4 +100346be: f44f 6143 mov.w r1, #3120 ; 0xc30 +100346c2: 220f movs r2, #15 +100346c4: 230a movs r3, #10 +100346c6: f00a f841 bl 1003e74c +100346ca: 2300 movs r3, #0 +100346cc: 4620 mov r0, r4 +100346ce: f640 413c movw r1, #3132 ; 0xc3c +100346d2: 2210 movs r2, #16 +100346d4: f00a f83a bl 1003e74c +100346d8: f895 3034 ldrb.w r3, [r5, #52] ; 0x34 +100346dc: 3b01 subs r3, #1 +100346de: 2b0d cmp r3, #13 +100346e0: f200 80d1 bhi.w 10034886 +100346e4: e8df f003 tbb [pc, r3] +100346e8: cf4d3907 .word 0xcf4d3907 +100346ec: cfcfcfcf .word 0xcfcfcfcf +100346f0: cf7ecfcf .word 0xcf7ecfcf +100346f4: ac91 .short 0xac91 +100346f6: 6aeb ldr r3, [r5, #44] ; 0x2c +100346f8: 2b00 cmp r3, #0 +100346fa: f040 80c4 bne.w 10034886 +100346fe: 4620 mov r0, r4 +10034700: f44f 6144 mov.w r1, #3136 ; 0xc40 +10034704: f04f 52f8 mov.w r2, #520093696 ; 0x1f000000 +10034708: 2305 movs r3, #5 +1003470a: f00a f81f bl 1003e74c +1003470e: 4620 mov r0, r4 +10034710: f44f 6144 mov.w r1, #3136 ; 0xc40 +10034714: f44f 7200 mov.w r2, #512 ; 0x200 +10034718: 2301 movs r3, #1 +1003471a: f00a f817 bl 1003e74c +1003471e: 4620 mov r0, r4 +10034720: f640 1154 movw r1, #2388 ; 0x954 +10034724: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +10034728: 2301 movs r3, #1 +1003472a: f00a f80f bl 1003e74c +1003472e: 4620 mov r0, r4 +10034730: f44f 6143 mov.w r1, #3120 ; 0xc30 +10034734: 220f movs r2, #15 +10034736: 2307 movs r3, #7 +10034738: f00a f808 bl 1003e74c +1003473c: 4620 mov r0, r4 +1003473e: f640 413c movw r1, #3132 ; 0xc3c +10034742: 2210 movs r2, #16 +10034744: 2301 movs r3, #1 +10034746: f00a f801 bl 1003e74c +1003474a: 4620 mov r0, r4 +1003474c: f44f 6154 mov.w r1, #3392 ; 0xd40 +10034750: f04f 32ff mov.w r2, #4294967295 +10034754: f44f 4340 mov.w r3, #49152 ; 0xc000 +10034758: e00a b.n 10034770 +1003475a: 6aeb ldr r3, [r5, #44] ; 0x2c +1003475c: 2b00 cmp r3, #0 +1003475e: f040 8092 bne.w 10034886 +10034762: 4620 mov r0, r4 +10034764: f640 514c movw r1, #3404 ; 0xd4c +10034768: f04f 32ff mov.w r2, #4294967295 +1003476c: f04f 4340 mov.w r3, #3221225472 ; 0xc0000000 +10034770: f009 ffec bl 1003e74c +10034774: 4620 mov r0, r4 +10034776: f640 512c movw r1, #3372 ; 0xd2c +1003477a: f04f 5280 mov.w r2, #268435456 ; 0x10000000 +1003477e: 2301 movs r3, #1 +10034780: e07d b.n 1003487e +10034782: 6aeb ldr r3, [r5, #44] ; 0x2c +10034784: 2b00 cmp r3, #0 +10034786: d17e bne.n 10034886 +10034788: 4620 mov r0, r4 +1003478a: f44f 6144 mov.w r1, #3136 ; 0xc40 +1003478e: f04f 52f8 mov.w r2, #520093696 ; 0x1f000000 +10034792: 2308 movs r3, #8 +10034794: f009 ffda bl 1003e74c +10034798: 4620 mov r0, r4 +1003479a: f44f 6144 mov.w r1, #3136 ; 0xc40 +1003479e: f44f 7200 mov.w r2, #512 ; 0x200 +100347a2: 2301 movs r3, #1 +100347a4: f009 ffd2 bl 1003e74c +100347a8: 4620 mov r0, r4 +100347aa: f640 1154 movw r1, #2388 ; 0x954 +100347ae: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +100347b2: 2301 movs r3, #1 +100347b4: f009 ffca bl 1003e74c +100347b8: 4620 mov r0, r4 +100347ba: f44f 6143 mov.w r1, #3120 ; 0xc30 +100347be: 220f movs r2, #15 +100347c0: 2307 movs r3, #7 +100347c2: f009 ffc3 bl 1003e74c +100347c6: 4620 mov r0, r4 +100347c8: f640 413c movw r1, #3132 ; 0xc3c +100347cc: 2210 movs r2, #16 +100347ce: 2301 movs r3, #1 +100347d0: f009 ffbc bl 1003e74c +100347d4: 4620 mov r0, r4 +100347d6: f640 514c movw r1, #3404 ; 0xd4c +100347da: f04f 32ff mov.w r2, #4294967295 +100347de: f44f 4300 mov.w r3, #32768 ; 0x8000 +100347e2: e7c5 b.n 10034770 +100347e4: 6aed ldr r5, [r5, #44] ; 0x2c +100347e6: 2d01 cmp r5, #1 +100347e8: d14d bne.n 10034886 +100347ea: 4620 mov r0, r4 +100347ec: f640 5144 movw r1, #3396 ; 0xd44 +100347f0: f04f 32ff mov.w r2, #4294967295 +100347f4: f04f 63c0 mov.w r3, #100663296 ; 0x6000000 +100347f8: f009 ffa8 bl 1003e74c +100347fc: 4620 mov r0, r4 +100347fe: f640 512c movw r1, #3372 ; 0xd2c +10034802: f04f 5280 mov.w r2, #268435456 ; 0x10000000 +10034806: 462b mov r3, r5 +10034808: e039 b.n 1003487e +1003480a: 6aeb ldr r3, [r5, #44] ; 0x2c +1003480c: 2b00 cmp r3, #0 +1003480e: d13a bne.n 10034886 +10034810: 4620 mov r0, r4 +10034812: f44f 6144 mov.w r1, #3136 ; 0xc40 +10034816: f04f 52f8 mov.w r2, #520093696 ; 0x1f000000 +1003481a: 230b movs r3, #11 +1003481c: f009 ff96 bl 1003e74c +10034820: 4620 mov r0, r4 +10034822: f44f 6144 mov.w r1, #3136 ; 0xc40 +10034826: f44f 7200 mov.w r2, #512 ; 0x200 +1003482a: 2301 movs r3, #1 +1003482c: f009 ff8e bl 1003e74c +10034830: 4620 mov r0, r4 +10034832: f44f 6154 mov.w r1, #3392 ; 0xd40 +10034836: f04f 32ff mov.w r2, #4294967295 +1003483a: f04f 6380 mov.w r3, #67108864 ; 0x4000000 +1003483e: e797 b.n 10034770 +10034840: 6aeb ldr r3, [r5, #44] ; 0x2c +10034842: bb03 cbnz r3, 10034886 +10034844: 4620 mov r0, r4 +10034846: f44f 6144 mov.w r1, #3136 ; 0xc40 +1003484a: f04f 52f8 mov.w r2, #520093696 ; 0x1f000000 +1003484e: 2304 movs r3, #4 +10034850: f009 ff7c bl 1003e74c +10034854: 4620 mov r0, r4 +10034856: f44f 6144 mov.w r1, #3136 ; 0xc40 +1003485a: f44f 7200 mov.w r2, #512 ; 0x200 +1003485e: 2301 movs r3, #1 +10034860: f009 ff74 bl 1003e74c +10034864: 4620 mov r0, r4 +10034866: f640 1154 movw r1, #2388 ; 0x954 +1003486a: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +1003486e: 2301 movs r3, #1 +10034870: f009 ff6c bl 1003e74c +10034874: 4620 mov r0, r4 +10034876: f44f 6143 mov.w r1, #3120 ; 0xc30 +1003487a: 220f movs r2, #15 +1003487c: 2307 movs r3, #7 +1003487e: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +10034882: f009 bf63 b.w 1003e74c +10034886: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1003488a : +1003488a: b570 push {r4, r5, r6, lr} +1003488c: 460e mov r6, r1 +1003488e: f44f 61cd mov.w r1, #1640 ; 0x668 +10034892: 4605 mov r5, r0 +10034894: f007 fee3 bl 1003c65e +10034898: 4604 mov r4, r0 +1003489a: b116 cbz r6, 100348a2 +1003489c: 2e01 cmp r6, #1 +1003489e: d007 beq.n 100348b0 +100348a0: bd70 pop {r4, r5, r6, pc} +100348a2: f64f 627f movw r2, #65151 ; 0xfe7f +100348a6: 4628 mov r0, r5 +100348a8: f44f 61cd mov.w r1, #1640 ; 0x668 +100348ac: 4022 ands r2, r4 +100348ae: e007 b.n 100348c0 +100348b0: f64f 627f movw r2, #65151 ; 0xfe7f +100348b4: 4002 ands r2, r0 +100348b6: f44f 61cd mov.w r1, #1640 ; 0x668 +100348ba: 4628 mov r0, r5 +100348bc: f042 0280 orr.w r2, r2, #128 ; 0x80 +100348c0: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +100348c4: f007 bee0 b.w 1003c688 + +100348c8 : +100348c8: f241 6318 movw r3, #5656 ; 0x1618 +100348cc: b570 push {r4, r5, r6, lr} +100348ce: 58c6 ldr r6, [r0, r3] +100348d0: 4604 mov r4, r0 +100348d2: 6af1 ldr r1, [r6, #44] ; 0x2c +100348d4: f7ff ffd9 bl 1003488a +100348d8: 6af5 ldr r5, [r6, #44] ; 0x2c +100348da: 2d00 cmp r5, #0 +100348dc: d056 beq.n 1003498c +100348de: 2d01 cmp r5, #1 +100348e0: f040 8099 bne.w 10034a16 +100348e4: 4620 mov r0, r4 +100348e6: f44f 6100 mov.w r1, #2048 ; 0x800 +100348ea: 462a mov r2, r5 +100348ec: 462b mov r3, r5 +100348ee: f7ff fc11 bl 10034114 +100348f2: 4620 mov r0, r4 +100348f4: f44f 6110 mov.w r1, #2304 ; 0x900 +100348f8: 462a mov r2, r5 +100348fa: 462b mov r3, r5 +100348fc: f7ff fc0a bl 10034114 +10034900: f896 3035 ldrb.w r3, [r6, #53] ; 0x35 +10034904: 4620 mov r0, r4 +10034906: f44f 6120 mov.w r1, #2560 ; 0xa00 +1003490a: 2210 movs r2, #16 +1003490c: 085b lsrs r3, r3, #1 +1003490e: f7ff fc01 bl 10034114 +10034912: 4620 mov r0, r4 +10034914: f44f 6150 mov.w r1, #3328 ; 0xd00 +10034918: f44f 6240 mov.w r2, #3072 ; 0xc00 +1003491c: f896 3035 ldrb.w r3, [r6, #53] ; 0x35 +10034920: f7ff fbf8 bl 10034114 +10034924: f896 3035 ldrb.w r3, [r6, #53] ; 0x35 +10034928: 4620 mov r0, r4 +1003492a: 2b01 cmp r3, #1 +1003492c: bf14 ite ne +1003492e: 2301 movne r3, #1 +10034930: 2302 moveq r3, #2 +10034932: f640 0118 movw r1, #2072 ; 0x818 +10034936: f04f 6240 mov.w r2, #201326592 ; 0xc000000 +1003493a: f7ff fbeb bl 10034114 +1003493e: 4620 mov r0, r4 +10034940: f44f 6100 mov.w r1, #2048 ; 0x800 +10034944: f44f 7240 mov.w r2, #768 ; 0x300 +10034948: 2303 movs r3, #3 +1003494a: f7ff fbe3 bl 10034114 +1003494e: 4620 mov r0, r4 +10034950: f640 41e4 movw r1, #3300 ; 0xce4 +10034954: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +10034958: 462b mov r3, r5 +1003495a: f7ff fbdb bl 10034114 +1003495e: 4620 mov r0, r4 +10034960: f44f 6141 mov.w r1, #3088 ; 0xc10 +10034964: f04f 5240 mov.w r2, #805306368 ; 0x30000000 +10034968: 462b mov r3, r5 +1003496a: f7ff fbd3 bl 10034114 +1003496e: 4620 mov r0, r4 +10034970: f640 1154 movw r1, #2388 ; 0x954 +10034974: f04f 627f mov.w r2, #267386880 ; 0xff00000 +10034978: 2306 movs r3, #6 +1003497a: f7ff fbcb bl 10034114 +1003497e: 4620 mov r0, r4 +10034980: f640 1154 movw r1, #2388 ; 0x954 +10034984: f44f 2200 mov.w r2, #524288 ; 0x80000 +10034988: 2300 movs r3, #0 +1003498a: e042 b.n 10034a12 +1003498c: 4620 mov r0, r4 +1003498e: f44f 6100 mov.w r1, #2048 ; 0x800 +10034992: 2201 movs r2, #1 +10034994: 462b mov r3, r5 +10034996: f7ff fbbd bl 10034114 +1003499a: 4620 mov r0, r4 +1003499c: f44f 6110 mov.w r1, #2304 ; 0x900 +100349a0: 2201 movs r2, #1 +100349a2: 462b mov r3, r5 +100349a4: f7ff fbb6 bl 10034114 +100349a8: 4620 mov r0, r4 +100349aa: f44f 6100 mov.w r1, #2048 ; 0x800 +100349ae: f44f 7240 mov.w r2, #768 ; 0x300 +100349b2: 2303 movs r3, #3 +100349b4: f7ff fbae bl 10034114 +100349b8: 4620 mov r0, r4 +100349ba: f640 41e4 movw r1, #3300 ; 0xce4 +100349be: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +100349c2: 2301 movs r3, #1 +100349c4: f7ff fba6 bl 10034114 +100349c8: 4620 mov r0, r4 +100349ca: f44f 6141 mov.w r1, #3088 ; 0xc10 +100349ce: f04f 5240 mov.w r2, #805306368 ; 0x30000000 +100349d2: 2301 movs r3, #1 +100349d4: f7ff fb9e bl 10034114 +100349d8: f896 3034 ldrb.w r3, [r6, #52] ; 0x34 +100349dc: 4620 mov r0, r4 +100349de: 3b0d subs r3, #13 +100349e0: 2b01 cmp r3, #1 +100349e2: f640 1154 movw r1, #2388 ; 0x954 +100349e6: f04f 627f mov.w r2, #267386880 ; 0xff00000 +100349ea: d809 bhi.n 10034a00 +100349ec: 230b movs r3, #11 +100349ee: f7ff fb91 bl 10034114 +100349f2: 4620 mov r0, r4 +100349f4: f640 1154 movw r1, #2388 ; 0x954 +100349f8: f44f 2200 mov.w r2, #524288 ; 0x80000 +100349fc: 462b mov r3, r5 +100349fe: e008 b.n 10034a12 +10034a00: 23a8 movs r3, #168 ; 0xa8 +10034a02: f7ff fb87 bl 10034114 +10034a06: 4620 mov r0, r4 +10034a08: f640 1154 movw r1, #2388 ; 0x954 +10034a0c: f44f 2200 mov.w r2, #524288 ; 0x80000 +10034a10: 2301 movs r3, #1 +10034a12: f7ff fb7f bl 10034114 +10034a16: 4620 mov r0, r4 +10034a18: 6af1 ldr r1, [r6, #44] ; 0x2c +10034a1a: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10034a1e: f001 be69 b.w 100366f4 + ... + +10034a24 : +10034a24: b570 push {r4, r5, r6, lr} +10034a26: f241 6318 movw r3, #5656 ; 0x1618 +10034a2a: 58c5 ldr r5, [r0, r3] +10034a2c: 4604 mov r4, r0 +10034a2e: f895 303b ldrb.w r3, [r5, #59] ; 0x3b +10034a32: f895 1034 ldrb.w r1, [r5, #52] ; 0x34 +10034a36: 2b05 cmp r3, #5 +10034a38: d044 beq.n 10034ac4 +10034a3a: f8d5 21a0 ldr.w r2, [r5, #416] ; 0x1a0 +10034a3e: 4b22 ldr r3, [pc, #136] ; (10034ac8 ) +10034a40: 4013 ands r3, r2 +10034a42: 430b orrs r3, r1 +10034a44: f8c5 31a0 str.w r3, [r5, #416] ; 0x1a0 +10034a48: f3c3 0313 ubfx r3, r3, #0, #20 +10034a4c: f8d5 1190 ldr.w r1, [r5, #400] ; 0x190 +10034a50: f04f 32ff mov.w r2, #4294967295 +10034a54: f043 73c0 orr.w r3, r3, #25165824 ; 0x1800000 +10034a58: f7ff fb5c bl 10034114 +10034a5c: 6aee ldr r6, [r5, #44] ; 0x2c +10034a5e: b9ee cbnz r6, 10034a9c +10034a60: f895 3034 ldrb.w r3, [r5, #52] ; 0x34 +10034a64: 4620 mov r0, r4 +10034a66: 3b0d subs r3, #13 +10034a68: 2b01 cmp r3, #1 +10034a6a: f640 1154 movw r1, #2388 ; 0x954 +10034a6e: f04f 627f mov.w r2, #267386880 ; 0xff00000 +10034a72: d809 bhi.n 10034a88 +10034a74: 230b movs r3, #11 +10034a76: f7ff fb4d bl 10034114 +10034a7a: 4620 mov r0, r4 +10034a7c: f640 1154 movw r1, #2388 ; 0x954 +10034a80: f44f 2200 mov.w r2, #524288 ; 0x80000 +10034a84: 4633 mov r3, r6 +10034a86: e019 b.n 10034abc +10034a88: 23a8 movs r3, #168 ; 0xa8 +10034a8a: f7ff fb43 bl 10034114 +10034a8e: 4620 mov r0, r4 +10034a90: f640 1154 movw r1, #2388 ; 0x954 +10034a94: f44f 2200 mov.w r2, #524288 ; 0x80000 +10034a98: 2301 movs r3, #1 +10034a9a: e00f b.n 10034abc +10034a9c: 2e01 cmp r6, #1 +10034a9e: d111 bne.n 10034ac4 +10034aa0: 4620 mov r0, r4 +10034aa2: f640 1154 movw r1, #2388 ; 0x954 +10034aa6: f04f 627f mov.w r2, #267386880 ; 0xff00000 +10034aaa: 2306 movs r3, #6 +10034aac: f7ff fb32 bl 10034114 +10034ab0: 4620 mov r0, r4 +10034ab2: f640 1154 movw r1, #2388 ; 0x954 +10034ab6: f44f 2200 mov.w r2, #524288 ; 0x80000 +10034aba: 2300 movs r3, #0 +10034abc: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10034ac0: f7ff bb28 b.w 10034114 +10034ac4: bd70 pop {r4, r5, r6, pc} +10034ac6: bf00 nop +10034ac8: 0ffffc00 .word 0x0ffffc00 + +10034acc : +10034acc: f241 6318 movw r3, #5656 ; 0x1618 +10034ad0: b570 push {r4, r5, r6, lr} +10034ad2: 58c5 ldr r5, [r0, r3] +10034ad4: f241 63f8 movw r3, #5880 ; 0x16f8 +10034ad8: 58c3 ldr r3, [r0, r3] +10034ada: 4604 mov r4, r0 +10034adc: b9eb cbnz r3, 10034b1a +10034ade: f241 63fc movw r3, #5884 ; 0x16fc +10034ae2: 58c6 ldr r6, [r0, r3] +10034ae4: b9ce cbnz r6, 10034b1a +10034ae6: f895 317c ldrb.w r3, [r5, #380] ; 0x17c +10034aea: b11b cbz r3, 10034af4 +10034aec: f7ff ff9a bl 10034a24 +10034af0: f885 617c strb.w r6, [r5, #380] ; 0x17c +10034af4: f895 317d ldrb.w r3, [r5, #381] ; 0x17d +10034af8: b12b cbz r3, 10034b06 +10034afa: 4620 mov r0, r4 +10034afc: f7ff fee4 bl 100348c8 +10034b00: 2300 movs r3, #0 +10034b02: f885 317d strb.w r3, [r5, #381] ; 0x17d +10034b06: 4620 mov r0, r4 +10034b08: f7ff fd63 bl 100345d2 +10034b0c: 4620 mov r0, r4 +10034b0e: f895 1034 ldrb.w r1, [r5, #52] ; 0x34 +10034b12: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10034b16: f7ff bd59 b.w 100345cc +10034b1a: bd70 pop {r4, r5, r6, pc} + +10034b1c : +10034b1c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10034b20: b085 sub sp, #20 +10034b22: 461e mov r6, r3 +10034b24: 9b0e ldr r3, [sp, #56] ; 0x38 +10034b26: 4617 mov r7, r2 +10034b28: 9303 str r3, [sp, #12] +10034b2a: f241 6318 movw r3, #5656 ; 0x1618 +10034b2e: 58c4 ldr r4, [r0, r3] +10034b30: 4605 mov r5, r0 +10034b32: 9a0f ldr r2, [sp, #60] ; 0x3c +10034b34: f89d a044 ldrb.w sl, [sp, #68] ; 0x44 +10034b38: f894 8034 ldrb.w r8, [r4, #52] ; 0x34 +10034b3c: 6ae3 ldr r3, [r4, #44] ; 0x2c +10034b3e: f894 b035 ldrb.w fp, [r4, #53] ; 0x35 +10034b42: f894 9036 ldrb.w r9, [r4, #54] ; 0x36 +10034b46: b929 cbnz r1, 10034b54 +10034b48: 2f00 cmp r7, #0 +10034b4a: d03c beq.n 10034bc6 +10034b4c: 2101 movs r1, #1 +10034b4e: f884 117d strb.w r1, [r4, #381] ; 0x17d +10034b52: e00c b.n 10034b6e +10034b54: 4631 mov r1, r6 +10034b56: 9201 str r2, [sp, #4] +10034b58: 9302 str r3, [sp, #8] +10034b5a: f001 ff82 bl 10036a62 +10034b5e: 9a01 ldr r2, [sp, #4] +10034b60: 9b02 ldr r3, [sp, #8] +10034b62: b110 cbz r0, 10034b6a +10034b64: 2101 movs r1, #1 +10034b66: f884 117c strb.w r1, [r4, #380] ; 0x17c +10034b6a: 2f00 cmp r7, #0 +10034b6c: d1ee bne.n 10034b4c +10034b6e: f8b4 117c ldrh.w r1, [r4, #380] ; 0x17c +10034b72: b341 cbz r1, 10034bc6 +10034b74: f894 017c ldrb.w r0, [r4, #380] ; 0x17c +10034b78: b118 cbz r0, 10034b82 +10034b7a: f884 6034 strb.w r6, [r4, #52] ; 0x34 +10034b7e: f884 6036 strb.w r6, [r4, #54] ; 0x36 +10034b82: f894 117d ldrb.w r1, [r4, #381] ; 0x17d +10034b86: b129 cbz r1, 10034b94 +10034b88: 9e03 ldr r6, [sp, #12] +10034b8a: f884 2035 strb.w r2, [r4, #53] ; 0x35 +10034b8e: 62e6 str r6, [r4, #44] ; 0x2c +10034b90: f884 a036 strb.w sl, [r4, #54] ; 0x36 +10034b94: f241 66f8 movw r6, #5880 ; 0x16f8 +10034b98: 59ae ldr r6, [r5, r6] +10034b9a: b94e cbnz r6, 10034bb0 +10034b9c: f241 66fc movw r6, #5884 ; 0x16fc +10034ba0: 59ae ldr r6, [r5, r6] +10034ba2: b92e cbnz r6, 10034bb0 +10034ba4: 4628 mov r0, r5 +10034ba6: b005 add sp, #20 +10034ba8: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10034bac: f7ff bf8e b.w 10034acc +10034bb0: b118 cbz r0, 10034bba +10034bb2: f884 8034 strb.w r8, [r4, #52] ; 0x34 +10034bb6: f884 8036 strb.w r8, [r4, #54] ; 0x36 +10034bba: b121 cbz r1, 10034bc6 +10034bbc: 62e3 str r3, [r4, #44] ; 0x2c +10034bbe: f884 b035 strb.w fp, [r4, #53] ; 0x35 +10034bc2: f884 9036 strb.w r9, [r4, #54] ; 0x36 +10034bc6: b005 add sp, #20 +10034bc8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +10034bcc : +10034bcc: b51f push {r0, r1, r2, r3, r4, lr} +10034bce: f241 6318 movw r3, #5656 ; 0x1618 +10034bd2: 58c3 ldr r3, [r0, r3] +10034bd4: f893 3034 ldrb.w r3, [r3, #52] ; 0x34 +10034bd8: e88d 0006 stmia.w sp, {r1, r2} +10034bdc: 9202 str r2, [sp, #8] +10034bde: 9303 str r3, [sp, #12] +10034be0: 2100 movs r1, #0 +10034be2: 2201 movs r2, #1 +10034be4: f7ff ff9a bl 10034b1c +10034be8: b005 add sp, #20 +10034bea: f85d fb04 ldr.w pc, [sp], #4 + +10034bee : +10034bee: b51f push {r0, r1, r2, r3, r4, lr} +10034bf0: 2200 movs r2, #0 +10034bf2: 460b mov r3, r1 +10034bf4: 9103 str r1, [sp, #12] +10034bf6: 9200 str r2, [sp, #0] +10034bf8: 9201 str r2, [sp, #4] +10034bfa: 9202 str r2, [sp, #8] +10034bfc: 2101 movs r1, #1 +10034bfe: f7ff ff8d bl 10034b1c +10034c02: b005 add sp, #20 +10034c04: f85d fb04 ldr.w pc, [sp], #4 + +10034c08 : +10034c08: b51f push {r0, r1, r2, r3, r4, lr} +10034c0a: e88d 000c stmia.w sp, {r2, r3} +10034c0e: f89d 3018 ldrb.w r3, [sp, #24] +10034c12: 460c mov r4, r1 +10034c14: 9103 str r1, [sp, #12] +10034c16: 2101 movs r1, #1 +10034c18: 9302 str r3, [sp, #8] +10034c1a: 460a mov r2, r1 +10034c1c: 4623 mov r3, r4 +10034c1e: f7ff ff7d bl 10034b1c +10034c22: b004 add sp, #16 +10034c24: bd10 pop {r4, pc} + +10034c26 : +10034c26: b510 push {r4, lr} +10034c28: 4604 mov r4, r0 +10034c2a: f7e9 ffb5 bl 1001eb98 +10034c2e: 4620 mov r0, r4 +10034c30: e8bd 4010 ldmia.w sp!, {r4, lr} +10034c34: f7e9 bfbc b.w 1001ebb0 + +10034c38 : +10034c38: b538 push {r3, r4, r5, lr} +10034c3a: 4c08 ldr r4, [pc, #32] ; (10034c5c ) +10034c3c: 4605 mov r5, r0 +10034c3e: 6923 ldr r3, [r4, #16] +10034c40: 2007 movs r0, #7 +10034c42: 4798 blx r3 +10034c44: 68e3 ldr r3, [r4, #12] +10034c46: 2007 movs r0, #7 +10034c48: 4798 blx r3 +10034c4a: 2007 movs r0, #7 +10034c4c: 02a9 lsls r1, r5, #10 +10034c4e: f7e9 ff83 bl 1001eb58 +10034c52: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10034c56: 2007 movs r0, #7 +10034c58: f7ff bfe5 b.w 10034c26 +10034c5c: 10000318 .word 0x10000318 + +10034c60 : +10034c60: f241 6318 movw r3, #5656 ; 0x1618 +10034c64: 58c0 ldr r0, [r0, r3] +10034c66: f500 6066 add.w r0, r0, #3680 ; 0xe60 +10034c6a: f7e7 bfd9 b.w 1001cc20 + ... + +10034c70 : +10034c70: f241 6318 movw r3, #5656 ; 0x1618 +10034c74: 58c0 ldr r0, [r0, r3] +10034c76: 4b0a ldr r3, [pc, #40] ; (10034ca0 ) +10034c78: b510 push {r4, lr} +10034c7a: 6819 ldr r1, [r3, #0] +10034c7c: f3c1 0113 ubfx r1, r1, #0, #20 +10034c80: b151 cbz r1, 10034c98 +10034c82: 2300 movs r3, #0 +10034c84: fa21 f403 lsr.w r4, r1, r3 +10034c88: 07e4 lsls r4, r4, #31 +10034c8a: b2da uxtb r2, r3 +10034c8c: d405 bmi.n 10034c9a +10034c8e: 3301 adds r3, #1 +10034c90: 2b14 cmp r3, #20 +10034c92: d1f7 bne.n 10034c84 +10034c94: 461a mov r2, r3 +10034c96: e000 b.n 10034c9a +10034c98: 460a mov r2, r1 +10034c9a: f880 2e8c strb.w r2, [r0, #3724] ; 0xe8c +10034c9e: bd10 pop {r4, pc} +10034ca0: 40080440 .word 0x40080440 + +10034ca4 : +10034ca4: f241 6318 movw r3, #5656 ; 0x1618 +10034ca8: 58c0 ldr r0, [r0, r3] +10034caa: f600 6048 addw r0, r0, #3656 ; 0xe48 +10034cae: f7e7 bfb7 b.w 1001cc20 + ... + +10034cb4 : +10034cb4: b510 push {r4, lr} +10034cb6: 4c09 ldr r4, [pc, #36] ; (10034cdc ) +10034cb8: 2006 movs r0, #6 +10034cba: 6923 ldr r3, [r4, #16] +10034cbc: 4798 blx r3 +10034cbe: 68e3 ldr r3, [r4, #12] +10034cc0: 2006 movs r0, #6 +10034cc2: 4798 blx r3 +10034cc4: 2006 movs r0, #6 +10034cc6: f44f 717a mov.w r1, #1000 ; 0x3e8 +10034cca: f7e9 ff45 bl 1001eb58 +10034cce: 2006 movs r0, #6 +10034cd0: f7ff ffa9 bl 10034c26 +10034cd4: 4b02 ldr r3, [pc, #8] ; (10034ce0 ) +10034cd6: 2201 movs r2, #1 +10034cd8: 701a strb r2, [r3, #0] +10034cda: bd10 pop {r4, pc} +10034cdc: 10000318 .word 0x10000318 +10034ce0: 10055335 .word 0x10055335 + +10034ce4 : +10034ce4: b500 push {lr} +10034ce6: 2a06 cmp r2, #6 +10034ce8: b089 sub sp, #36 ; 0x24 +10034cea: f88d 101d strb.w r1, [sp, #29] +10034cee: d101 bne.n 10034cf4 +10034cf0: 490c ldr r1, [pc, #48] ; (10034d24 ) +10034cf2: e002 b.n 10034cfa +10034cf4: 2a07 cmp r2, #7 +10034cf6: d101 bne.n 10034cfc +10034cf8: 490b ldr r1, [pc, #44] ; (10034d28 ) +10034cfa: 9103 str r1, [sp, #12] +10034cfc: 029b lsls r3, r3, #10 +10034cfe: 9300 str r3, [sp, #0] +10034d00: 2301 movs r3, #1 +10034d02: 9302 str r3, [sp, #8] +10034d04: 2105 movs r1, #5 +10034d06: 4b09 ldr r3, [pc, #36] ; (10034d2c ) +10034d08: 9104 str r1, [sp, #16] +10034d0a: 210e movs r1, #14 +10034d0c: 9005 str r0, [sp, #20] +10034d0e: 9106 str r1, [sp, #24] +10034d10: f88d 201c strb.w r2, [sp, #28] +10034d14: 9101 str r1, [sp, #4] +10034d16: 685b ldr r3, [r3, #4] +10034d18: 4668 mov r0, sp +10034d1a: 4798 blx r3 +10034d1c: b009 add sp, #36 ; 0x24 +10034d1e: f85d fb04 ldr.w pc, [sp], #4 +10034d22: bf00 nop +10034d24: 10035f95 .word 0x10035f95 +10034d28: 10035a9d .word 0x10035a9d +10034d2c: 10000318 .word 0x10000318 + +10034d30 : +10034d30: b500 push {lr} +10034d32: 2301 movs r3, #1 +10034d34: b089 sub sp, #36 ; 0x24 +10034d36: 2906 cmp r1, #6 +10034d38: f88d 301d strb.w r3, [sp, #29] +10034d3c: d101 bne.n 10034d42 +10034d3e: 4b0c ldr r3, [pc, #48] ; (10034d70 ) +10034d40: e002 b.n 10034d48 +10034d42: 2907 cmp r1, #7 +10034d44: d101 bne.n 10034d4a +10034d46: 4b0b ldr r3, [pc, #44] ; (10034d74 ) +10034d48: 9303 str r3, [sp, #12] +10034d4a: 2305 movs r3, #5 +10034d4c: 9304 str r3, [sp, #16] +10034d4e: 230e movs r3, #14 +10034d50: 9306 str r3, [sp, #24] +10034d52: 9301 str r3, [sp, #4] +10034d54: 2300 movs r3, #0 +10034d56: 9005 str r0, [sp, #20] +10034d58: 9300 str r3, [sp, #0] +10034d5a: 4668 mov r0, sp +10034d5c: 2301 movs r3, #1 +10034d5e: f88d 101c strb.w r1, [sp, #28] +10034d62: 9302 str r3, [sp, #8] +10034d64: f7e9 fed2 bl 1001eb0c +10034d68: b009 add sp, #36 ; 0x24 +10034d6a: f85d fb04 ldr.w pc, [sp], #4 +10034d6e: bf00 nop +10034d70: 10035f95 .word 0x10035f95 +10034d74: 10035a9d .word 0x10035a9d + +10034d78 : +10034d78: 4b0d ldr r3, [pc, #52] ; (10034db0 ) +10034d7a: 5cc2 ldrb r2, [r0, r3] +10034d7c: f002 02fa and.w r2, r2, #250 ; 0xfa +10034d80: f042 0201 orr.w r2, r2, #1 +10034d84: 54c2 strb r2, [r0, r3] +10034d86: 3304 adds r3, #4 +10034d88: 5cc2 ldrb r2, [r0, r3] +10034d8a: f042 021f orr.w r2, r2, #31 +10034d8e: 54c2 strb r2, [r0, r3] +10034d90: 3b0b subs r3, #11 +10034d92: 5cc2 ldrb r2, [r0, r3] +10034d94: f042 020e orr.w r2, r2, #14 +10034d98: 54c2 strb r2, [r0, r3] +10034d9a: f64f 72fd movw r2, #65533 ; 0xfffd +10034d9e: f8c3 249e str.w r2, [r3, #1182] ; 0x49e +10034da2: 330a adds r3, #10 +10034da4: 5cc2 ldrb r2, [r0, r3] +10034da6: f002 0280 and.w r2, r2, #128 ; 0x80 +10034daa: 4311 orrs r1, r2 +10034dac: 54c1 strb r1, [r0, r3] +10034dae: 4770 bx lr +10034db0: 4008000d .word 0x4008000d + +10034db4 : +10034db4: b530 push {r4, r5, lr} +10034db6: 4b1b ldr r3, [pc, #108] ; (10034e24 ) +10034db8: 4c1b ldr r4, [pc, #108] ; (10034e28 ) +10034dba: 5cca ldrb r2, [r1, r3] +10034dbc: f101 4580 add.w r5, r1, #1073741824 ; 0x40000000 +10034dc0: f002 023f and.w r2, r2, #63 ; 0x3f +10034dc4: 54ca strb r2, [r1, r3] +10034dc6: 4a19 ldr r2, [pc, #100] ; (10034e2c ) +10034dc8: b1a8 cbz r0, 10034df6 +10034dca: 5d08 ldrb r0, [r1, r4] +10034dcc: f105 1508 add.w r5, r5, #524296 ; 0x80008 +10034dd0: f040 0010 orr.w r0, r0, #16 +10034dd4: 5508 strb r0, [r1, r4] +10034dd6: 5cc8 ldrb r0, [r1, r3] +10034dd8: f040 0080 orr.w r0, r0, #128 ; 0x80 +10034ddc: 54c8 strb r0, [r1, r3] +10034dde: 5a8b ldrh r3, [r1, r2] +10034de0: f403 4370 and.w r3, r3, #61440 ; 0xf000 +10034de4: f443 7348 orr.w r3, r3, #800 ; 0x320 +10034de8: f043 0301 orr.w r3, r3, #1 +10034dec: 528b strh r3, [r1, r2] +10034dee: 682b ldr r3, [r5, #0] +10034df0: f443 2300 orr.w r3, r3, #524288 ; 0x80000 +10034df4: e014 b.n 10034e20 +10034df6: 5d08 ldrb r0, [r1, r4] +10034df8: f105 1508 add.w r5, r5, #524296 ; 0x80008 +10034dfc: f000 00ef and.w r0, r0, #239 ; 0xef +10034e00: 5508 strb r0, [r1, r4] +10034e02: 5cc8 ldrb r0, [r1, r3] +10034e04: f040 0040 orr.w r0, r0, #64 ; 0x40 +10034e08: 54c8 strb r0, [r1, r3] +10034e0a: 5a8b ldrh r3, [r1, r2] +10034e0c: f403 4370 and.w r3, r3, #61440 ; 0xf000 +10034e10: f443 7391 orr.w r3, r3, #290 ; 0x122 +10034e14: f043 0301 orr.w r3, r3, #1 +10034e18: 528b strh r3, [r1, r2] +10034e1a: 682b ldr r3, [r5, #0] +10034e1c: f423 2300 bic.w r3, r3, #524288 ; 0x80000 +10034e20: 602b str r3, [r5, #0] +10034e22: bd30 pop {r4, r5, pc} +10034e24: 40080009 .word 0x40080009 +10034e28: 40080029 .word 0x40080029 +10034e2c: 40080018 .word 0x40080018 + +10034e30 : +10034e30: 4b14 ldr r3, [pc, #80] ; (10034e84 ) +10034e32: 4a15 ldr r2, [pc, #84] ; (10034e88 ) +10034e34: 781b ldrb r3, [r3, #0] +10034e36: 7812 ldrb r2, [r2, #0] +10034e38: 3303 adds r3, #3 +10034e3a: 429a cmp r2, r3 +10034e3c: d120 bne.n 10034e80 +10034e3e: 7d03 ldrb r3, [r0, #20] +10034e40: 2b0e cmp r3, #14 +10034e42: d10b bne.n 10034e5c +10034e44: b9e1 cbnz r1, 10034e80 +10034e46: 4b11 ldr r3, [pc, #68] ; (10034e8c ) +10034e48: 71c1 strb r1, [r0, #7] +10034e4a: 781a ldrb r2, [r3, #0] +10034e4c: f002 027f and.w r2, r2, #127 ; 0x7f +10034e50: 701a strb r2, [r3, #0] +10034e52: 230c movs r3, #12 +10034e54: 7503 strb r3, [r0, #20] +10034e56: 4b0e ldr r3, [pc, #56] ; (10034e90 ) +10034e58: 7019 strb r1, [r3, #0] +10034e5a: 4770 bx lr +10034e5c: 2b06 cmp r3, #6 +10034e5e: d10f bne.n 10034e80 +10034e60: b171 cbz r1, 10034e80 +10034e62: 4b0a ldr r3, [pc, #40] ; (10034e8c ) +10034e64: 2200 movs r2, #0 +10034e66: 7182 strb r2, [r0, #6] +10034e68: 7819 ldrb r1, [r3, #0] +10034e6a: f041 0140 orr.w r1, r1, #64 ; 0x40 +10034e6e: 7019 strb r1, [r3, #0] +10034e70: 7819 ldrb r1, [r3, #0] +10034e72: f041 0180 orr.w r1, r1, #128 ; 0x80 +10034e76: 7019 strb r1, [r3, #0] +10034e78: 2304 movs r3, #4 +10034e7a: 7503 strb r3, [r0, #20] +10034e7c: 4b04 ldr r3, [pc, #16] ; (10034e90 ) +10034e7e: 701a strb r2, [r3, #0] +10034e80: 4770 bx lr +10034e82: bf00 nop +10034e84: 40080424 .word 0x40080424 +10034e88: 4008041c .word 0x4008041c +10034e8c: 40080604 .word 0x40080604 +10034e90: 40080522 .word 0x40080522 + +10034e94 : +10034e94: 4b19 ldr r3, [pc, #100] ; (10034efc ) +10034e96: b510 push {r4, lr} +10034e98: 7018 strb r0, [r3, #0] +10034e9a: 01c0 lsls r0, r0, #7 +10034e9c: f500 00f0 add.w r0, r0, #7864320 ; 0x780000 +10034ea0: f46f 7c39 mvn.w ip, #740 ; 0x2e4 +10034ea4: 0b04 lsrs r4, r0, #12 +10034ea6: 4463 add r3, ip +10034ea8: f3c0 000b ubfx r0, r0, #0, #12 +10034eac: 801c strh r4, [r3, #0] +10034eae: f440 4000 orr.w r0, r0, #32768 ; 0x8000 +10034eb2: b131 cbz r1, 10034ec2 +10034eb4: f46f 718f mvn.w r1, #286 ; 0x11e +10034eb8: 440b add r3, r1 +10034eba: 5cc1 ldrb r1, [r0, r3] +10034ebc: f041 0180 orr.w r1, r1, #128 ; 0x80 +10034ec0: 54c1 strb r1, [r0, r3] +10034ec2: 490f ldr r1, [pc, #60] ; (10034f00 ) +10034ec4: 0092 lsls r2, r2, #2 +10034ec6: 5a43 ldrh r3, [r0, r1] +10034ec8: f042 0202 orr.w r2, r2, #2 +10034ecc: f423 537c bic.w r3, r3, #16128 ; 0x3f00 +10034ed0: f023 033f bic.w r3, r3, #63 ; 0x3f +10034ed4: 041b lsls r3, r3, #16 +10034ed6: 0c1b lsrs r3, r3, #16 +10034ed8: 5243 strh r3, [r0, r1] +10034eda: 4b0a ldr r3, [pc, #40] ; (10034f04 ) +10034edc: 5cc1 ldrb r1, [r0, r3] +10034ede: f001 0101 and.w r1, r1, #1 +10034ee2: 430a orrs r2, r1 +10034ee4: b2d2 uxtb r2, r2 +10034ee6: 54c2 strb r2, [r0, r3] +10034ee8: 22ff movs r2, #255 ; 0xff +10034eea: 3b01 subs r3, #1 +10034eec: 54c2 strb r2, [r0, r3] +10034eee: 3318 adds r3, #24 +10034ef0: 5cc2 ldrb r2, [r0, r3] +10034ef2: f002 02f7 and.w r2, r2, #247 ; 0xf7 +10034ef6: 54c2 strb r2, [r0, r3] +10034ef8: bd10 pop {r4, pc} +10034efa: bf00 nop +10034efc: 40080425 .word 0x40080425 +10034f00: 40080020 .word 0x40080020 +10034f04: 40080012 .word 0x40080012 + +10034f08 : +10034f08: b508 push {r3, lr} +10034f0a: 4b08 ldr r3, [pc, #32] ; (10034f2c ) +10034f0c: 7818 ldrb r0, [r3, #0] +10034f0e: 3b07 subs r3, #7 +10034f10: 781b ldrb r3, [r3, #0] +10034f12: b2c0 uxtb r0, r0 +10034f14: f003 01ff and.w r1, r3, #255 ; 0xff +10034f18: b93b cbnz r3, 10034f2a +10034f1a: 3002 adds r0, #2 +10034f1c: 2218 movs r2, #24 +10034f1e: b2c0 uxtb r0, r0 +10034f20: f7ff ffb8 bl 10034e94 +10034f24: 4b02 ldr r3, [pc, #8] ; (10034f30 ) +10034f26: 2220 movs r2, #32 +10034f28: 701a strb r2, [r3, #0] +10034f2a: bd08 pop {r3, pc} +10034f2c: 40080424 .word 0x40080424 +10034f30: 4008041f .word 0x4008041f + +10034f34 : +10034f34: b510 push {r4, lr} +10034f36: f240 34ea movw r4, #1002 ; 0x3ea +10034f3a: 4b0d ldr r3, [pc, #52] ; (10034f70 ) +10034f3c: 681b ldr r3, [r3, #0] +10034f3e: b19b cbz r3, 10034f68 +10034f40: 3c01 subs r4, #1 +10034f42: b2a4 uxth r4, r4 +10034f44: b964 cbnz r4, 10034f60 +10034f46: 4b0b ldr r3, [pc, #44] ; (10034f74 ) +10034f48: 781a ldrb r2, [r3, #0] +10034f4a: f042 0220 orr.w r2, r2, #32 +10034f4e: 701a strb r2, [r3, #0] +10034f50: 4b09 ldr r3, [pc, #36] ; (10034f78 ) +10034f52: 681b ldr r3, [r3, #0] +10034f54: 005b lsls r3, r3, #1 +10034f56: d509 bpl.n 10034f6c +10034f58: 4b08 ldr r3, [pc, #32] ; (10034f7c ) +10034f5a: 4809 ldr r0, [pc, #36] ; (10034f80 ) +10034f5c: 4798 blx r3 +10034f5e: e005 b.n 10034f6c +10034f60: 4b08 ldr r3, [pc, #32] ; (10034f84 ) +10034f62: 2032 movs r0, #50 ; 0x32 +10034f64: 4798 blx r3 +10034f66: e7e8 b.n 10034f3a +10034f68: 2001 movs r0, #1 +10034f6a: bd10 pop {r4, pc} +10034f6c: 4620 mov r0, r4 +10034f6e: bd10 pop {r4, pc} +10034f70: 400805f8 .word 0x400805f8 +10034f74: 400801c0 .word 0x400801c0 +10034f78: 10000314 .word 0x10000314 +10034f7c: 0000f39d .word 0x0000f39d +10034f80: 1004aa83 .word 0x1004aa83 +10034f84: 00000899 .word 0x00000899 + +10034f88 : +10034f88: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10034f8c: 4b1f ldr r3, [pc, #124] ; (1003500c ) +10034f8e: 4604 mov r4, r0 +10034f90: 781f ldrb r7, [r3, #0] +10034f92: 3b07 subs r3, #7 +10034f94: 781b ldrb r3, [r3, #0] +10034f96: 460d mov r5, r1 +10034f98: 4690 mov r8, r2 +10034f9a: 3703 adds r7, #3 +10034f9c: b1fb cbz r3, 10034fde +10034f9e: 4e1c ldr r6, [pc, #112] ; (10035010 ) +10034fa0: 23ff movs r3, #255 ; 0xff +10034fa2: f896 9000 ldrb.w r9, [r6] +10034fa6: 7033 strb r3, [r6, #0] +10034fa8: f7ff ffc4 bl 10034f34 +10034fac: 2801 cmp r0, #1 +10034fae: fa5f f989 uxtb.w r9, r9 +10034fb2: 4601 mov r1, r0 +10034fb4: d10c bne.n 10034fd0 +10034fb6: b2f8 uxtb r0, r7 +10034fb8: 4642 mov r2, r8 +10034fba: f7ff ff6b bl 10034e94 +10034fbe: 4607 mov r7, r0 +10034fc0: 4639 mov r1, r7 +10034fc2: 4628 mov r0, r5 +10034fc4: f7ff fef6 bl 10034db4 +10034fc8: 4638 mov r0, r7 +10034fca: 7f21 ldrb r1, [r4, #28] +10034fcc: f7ff fed4 bl 10034d78 +10034fd0: f886 9000 strb.w r9, [r6] +10034fd4: 4620 mov r0, r4 +10034fd6: 4629 mov r1, r5 +10034fd8: f7ff ff2a bl 10034e30 +10034fdc: e00f b.n 10034ffe +10034fde: f7ff ff27 bl 10034e30 +10034fe2: 2101 movs r1, #1 +10034fe4: 4642 mov r2, r8 +10034fe6: b2f8 uxtb r0, r7 +10034fe8: f7ff ff54 bl 10034e94 +10034fec: 4606 mov r6, r0 +10034fee: 4631 mov r1, r6 +10034ff0: 4628 mov r0, r5 +10034ff2: f7ff fedf bl 10034db4 +10034ff6: 4630 mov r0, r6 +10034ff8: 7f21 ldrb r1, [r4, #28] +10034ffa: f7ff febd bl 10034d78 +10034ffe: 4b05 ldr r3, [pc, #20] ; (10035014 ) +10035000: 2220 movs r2, #32 +10035002: 701a strb r2, [r3, #0] +10035004: 2001 movs r0, #1 +10035006: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +1003500a: bf00 nop +1003500c: 40080424 .word 0x40080424 +10035010: 40080522 .word 0x40080522 +10035014: 4008041f .word 0x4008041f + +10035018 : +10035018: b508 push {r3, lr} +1003501a: f7ff ff8b bl 10034f34 +1003501e: 4b0a ldr r3, [pc, #40] ; (10035048 ) +10035020: 681a ldr r2, [r3, #0] +10035022: f422 3200 bic.w r2, r2, #131072 ; 0x20000 +10035026: 601a str r2, [r3, #0] +10035028: 223f movs r2, #63 ; 0x3f +1003502a: f883 20fc strb.w r2, [r3, #252] ; 0xfc +1003502e: f893 20fd ldrb.w r2, [r3, #253] ; 0xfd +10035032: f002 02fd and.w r2, r2, #253 ; 0xfd +10035036: f883 20fd strb.w r2, [r3, #253] ; 0xfd +1003503a: f893 254f ldrb.w r2, [r3, #1359] ; 0x54f +1003503e: f042 0220 orr.w r2, r2, #32 +10035042: f883 254f strb.w r2, [r3, #1359] ; 0x54f +10035046: bd08 pop {r3, pc} +10035048: 40080004 .word 0x40080004 + +1003504c : +1003504c: 4b0a ldr r3, [pc, #40] ; (10035078 ) +1003504e: 781a ldrb r2, [r3, #0] +10035050: 3bfd subs r3, #253 ; 0xfd +10035052: f042 0202 orr.w r2, r2, #2 +10035056: f883 20fd strb.w r2, [r3, #253] ; 0xfd +1003505a: 22ff movs r2, #255 ; 0xff +1003505c: f883 20fc strb.w r2, [r3, #252] ; 0xfc +10035060: 2209 movs r2, #9 +10035062: f883 26b3 strb.w r2, [r3, #1715] ; 0x6b3 +10035066: 2286 movs r2, #134 ; 0x86 +10035068: f883 26b0 strb.w r2, [r3, #1712] ; 0x6b0 +1003506c: 681a ldr r2, [r3, #0] +1003506e: f442 3200 orr.w r2, r2, #131072 ; 0x20000 +10035072: 601a str r2, [r3, #0] +10035074: 4770 bx lr +10035076: bf00 nop +10035078: 40080101 .word 0x40080101 + +1003507c : +1003507c: 4b04 ldr r3, [pc, #16] ; (10035090 ) +1003507e: 8818 ldrh r0, [r3, #0] +10035080: f240 73ff movw r3, #2047 ; 0x7ff +10035084: f3c0 000a ubfx r0, r0, #0, #11 +10035088: 1ac3 subs r3, r0, r3 +1003508a: 4258 negs r0, r3 +1003508c: 4158 adcs r0, r3 +1003508e: 4770 bx lr +10035090: 4008041a .word 0x4008041a + +10035094 : +10035094: b538 push {r3, r4, r5, lr} +10035096: f241 6318 movw r3, #5656 ; 0x1618 +1003509a: 58c4 ldr r4, [r0, r3] +1003509c: 4b17 ldr r3, [pc, #92] ; (100350fc ) +1003509e: 2500 movs r5, #0 +100350a0: 2217 movs r2, #23 +100350a2: 605d str r5, [r3, #4] +100350a4: 60da str r2, [r3, #12] +100350a6: 2205 movs r2, #5 +100350a8: 611d str r5, [r3, #16] +100350aa: f504 6067 add.w r0, r4, #3696 ; 0xe70 +100350ae: 605a str r2, [r3, #4] +100350b0: 4629 mov r1, r5 +100350b2: 222c movs r2, #44 ; 0x2c +100350b4: f00d f85a bl 1004216c +100350b8: 2302 movs r3, #2 +100350ba: f884 3e80 strb.w r3, [r4, #3712] ; 0xe80 +100350be: f8a4 3e8e strh.w r3, [r4, #3726] ; 0xe8e +100350c2: 2201 movs r2, #1 +100350c4: 230c movs r3, #12 +100350c6: f884 2e87 strb.w r2, [r4, #3719] ; 0xe87 +100350ca: f884 2e88 strb.w r2, [r4, #3720] ; 0xe88 +100350ce: f884 3e83 strb.w r3, [r4, #3715] ; 0xe83 +100350d2: f884 3e84 strb.w r3, [r4, #3716] ; 0xe84 +100350d6: 2204 movs r2, #4 +100350d8: 4b09 ldr r3, [pc, #36] ; (10035100 ) +100350da: f884 2e89 strb.w r2, [r4, #3721] ; 0xe89 +100350de: f884 5e70 strb.w r5, [r4, #3696] ; 0xe70 +100350e2: 781a ldrb r2, [r3, #0] +100350e4: f002 027f and.w r2, r2, #127 ; 0x7f +100350e8: 701a strb r2, [r3, #0] +100350ea: 685a ldr r2, [r3, #4] +100350ec: f422 22e0 bic.w r2, r2, #458752 ; 0x70000 +100350f0: 605a str r2, [r3, #4] +100350f2: f803 5ce2 strb.w r5, [r3, #-226] +100350f6: f884 5e9c strb.w r5, [r4, #3740] ; 0xe9c +100350fa: bd38 pop {r3, r4, r5, pc} +100350fc: e000ed90 .word 0xe000ed90 +10035100: 40080604 .word 0x40080604 + +10035104 : +10035104: 2901 cmp r1, #1 +10035106: d002 beq.n 1003510e +10035108: 2902 cmp r1, #2 +1003510a: d002 beq.n 10035112 +1003510c: 4770 bx lr +1003510e: 72c1 strb r1, [r0, #11] +10035110: 4770 bx lr +10035112: b912 cbnz r2, 1003511a +10035114: 2307 movs r3, #7 +10035116: 75c3 strb r3, [r0, #23] +10035118: e001 b.n 1003511e +1003511a: 3a01 subs r2, #1 +1003511c: 75c2 strb r2, [r0, #23] +1003511e: 7dc3 ldrb r3, [r0, #23] +10035120: 7603 strb r3, [r0, #24] +10035122: 2301 movs r3, #1 +10035124: 72c3 strb r3, [r0, #11] +10035126: 4770 bx lr + +10035128 : +10035128: b510 push {r4, lr} +1003512a: 4604 mov r4, r0 +1003512c: f7ff ffa6 bl 1003507c +10035130: 2801 cmp r0, #1 +10035132: d10e bne.n 10035152 +10035134: 78e3 ldrb r3, [r4, #3] +10035136: b963 cbnz r3, 10035152 +10035138: 7ce2 ldrb r2, [r4, #19] +1003513a: 2a04 cmp r2, #4 +1003513c: d80c bhi.n 10035158 +1003513e: 7c63 ldrb r3, [r4, #17] +10035140: 2b03 cmp r3, #3 +10035142: d108 bne.n 10035156 +10035144: f894 3029 ldrb.w r3, [r4, #41] ; 0x29 +10035148: f1d3 0301 rsbs r3, r3, #1 +1003514c: bf38 it cc +1003514e: 2300 movcc r3, #0 +10035150: e002 b.n 10035158 +10035152: 2300 movs r3, #0 +10035154: e000 b.n 10035158 +10035156: 4603 mov r3, r0 +10035158: 4618 mov r0, r3 +1003515a: bd10 pop {r4, pc} + +1003515c : +1003515c: b510 push {r4, lr} +1003515e: f241 6318 movw r3, #5656 ; 0x1618 +10035162: 58c4 ldr r4, [r0, r3] +10035164: f7ff ff8a bl 1003507c +10035168: 2801 cmp r0, #1 +1003516a: d12a bne.n 100351c2 +1003516c: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +10035170: f013 0003 ands.w r0, r3, #3 +10035174: d125 bne.n 100351c2 +10035176: f894 2e83 ldrb.w r2, [r4, #3715] ; 0xe83 +1003517a: bb4a cbnz r2, 100351d0 +1003517c: f013 0314 ands.w r3, r3, #20 +10035180: d126 bne.n 100351d0 +10035182: f894 0e7a ldrb.w r0, [r4, #3706] ; 0xe7a +10035186: b318 cbz r0, 100351d0 +10035188: f894 2e9c ldrb.w r2, [r4, #3740] ; 0xe9c +1003518c: b9da cbnz r2, 100351c6 +1003518e: 4b11 ldr r3, [pc, #68] ; (100351d4 ) +10035190: 7819 ldrb r1, [r3, #0] +10035192: f001 0102 and.w r1, r1, #2 +10035196: f001 00ff and.w r0, r1, #255 ; 0xff +1003519a: b9b1 cbnz r1, 100351ca +1003519c: 781a ldrb r2, [r3, #0] +1003519e: 07d2 lsls r2, r2, #31 +100351a0: d504 bpl.n 100351ac +100351a2: 781b ldrb r3, [r3, #0] +100351a4: f003 03fc and.w r3, r3, #252 ; 0xfc +100351a8: 2b80 cmp r3, #128 ; 0x80 +100351aa: d011 beq.n 100351d0 +100351ac: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +100351b0: 2b03 cmp r3, #3 +100351b2: d10c bne.n 100351ce +100351b4: f894 0e99 ldrb.w r0, [r4, #3737] ; 0xe99 +100351b8: f1d0 0001 rsbs r0, r0, #1 +100351bc: bf38 it cc +100351be: 2000 movcc r0, #0 +100351c0: bd10 pop {r4, pc} +100351c2: 2000 movs r0, #0 +100351c4: bd10 pop {r4, pc} +100351c6: 4618 mov r0, r3 +100351c8: bd10 pop {r4, pc} +100351ca: 4610 mov r0, r2 +100351cc: bd10 pop {r4, pc} +100351ce: 2001 movs r0, #1 +100351d0: bd10 pop {r4, pc} +100351d2: bf00 nop +100351d4: 40080662 .word 0x40080662 + +100351d8 : +100351d8: 4b0b ldr r3, [pc, #44] ; (10035208 ) +100351da: 781b ldrb r3, [r3, #0] +100351dc: f003 00ff and.w r0, r3, #255 ; 0xff +100351e0: b983 cbnz r3, 10035204 +100351e2: 4b0a ldr r3, [pc, #40] ; (1003520c ) +100351e4: 781b ldrb r3, [r3, #0] +100351e6: 2b3f cmp r3, #63 ; 0x3f +100351e8: d10d bne.n 10035206 +100351ea: 4b09 ldr r3, [pc, #36] ; (10035210 ) +100351ec: 781a ldrb r2, [r3, #0] +100351ee: f002 0202 and.w r2, r2, #2 +100351f2: f002 00ff and.w r0, r2, #255 ; 0xff +100351f6: b132 cbz r2, 10035206 +100351f8: 7818 ldrb r0, [r3, #0] +100351fa: f080 0008 eor.w r0, r0, #8 +100351fe: f3c0 00c0 ubfx r0, r0, #3, #1 +10035202: 4770 bx lr +10035204: 2000 movs r0, #0 +10035206: 4770 bx lr +10035208: 40080287 .word 0x40080287 +1003520c: 40080100 .word 0x40080100 +10035210: 40080286 .word 0x40080286 + +10035214 : +10035214: f241 6318 movw r3, #5656 ; 0x1618 +10035218: b510 push {r4, lr} +1003521a: 58c4 ldr r4, [r0, r3] +1003521c: b321 cbz r1, 10035268 +1003521e: 2100 movs r1, #0 +10035220: f00a fbe8 bl 1003f9f4 +10035224: 2801 cmp r0, #1 +10035226: d11f bne.n 10035268 +10035228: 4b10 ldr r3, [pc, #64] ; (1003526c ) +1003522a: 2100 movs r1, #0 +1003522c: 220f movs r2, #15 +1003522e: f884 1e78 strb.w r1, [r4, #3704] ; 0xe78 +10035232: 701a strb r2, [r3, #0] +10035234: f893 20e2 ldrb.w r2, [r3, #226] ; 0xe2 +10035238: f504 6067 add.w r0, r4, #3696 ; 0xe70 +1003523c: f002 02bf and.w r2, r2, #191 ; 0xbf +10035240: f883 20e2 strb.w r2, [r3, #226] ; 0xe2 +10035244: 2208 movs r2, #8 +10035246: f7ff fe9f bl 10034f88 +1003524a: 2801 cmp r0, #1 +1003524c: d105 bne.n 1003525a +1003524e: 2306 movs r3, #6 +10035250: f884 0e76 strb.w r0, [r4, #3702] ; 0xe76 +10035254: f884 3e84 strb.w r3, [r4, #3716] ; 0xe84 +10035258: bd10 pop {r4, pc} +1003525a: 4b05 ldr r3, [pc, #20] ; (10035270 ) +1003525c: 681b ldr r3, [r3, #0] +1003525e: 005b lsls r3, r3, #1 +10035260: d502 bpl.n 10035268 +10035262: 4804 ldr r0, [pc, #16] ; (10035274 ) +10035264: 4b04 ldr r3, [pc, #16] ; (10035278 ) +10035266: 4798 blx r3 +10035268: bd10 pop {r4, pc} +1003526a: bf00 nop +1003526c: 40080522 .word 0x40080522 +10035270: 10000314 .word 0x10000314 +10035274: 1004aaad .word 0x1004aaad +10035278: 0000f39d .word 0x0000f39d + +1003527c : +1003527c: 4b05 ldr r3, [pc, #20] ; (10035294 ) +1003527e: 781a ldrb r2, [r3, #0] +10035280: f002 027f and.w r2, r2, #127 ; 0x7f +10035284: 701a strb r2, [r3, #0] +10035286: 2200 movs r2, #0 +10035288: f803 2ce2 strb.w r2, [r3, #-226] +1003528c: 230c movs r3, #12 +1003528e: 7503 strb r3, [r0, #20] +10035290: 4770 bx lr +10035292: bf00 nop +10035294: 40080604 .word 0x40080604 + +10035298 : +10035298: 7a02 ldrb r2, [r0, #8] +1003529a: 4b09 ldr r3, [pc, #36] ; (100352c0 ) +1003529c: b92a cbnz r2, 100352aa +1003529e: 781a ldrb r2, [r3, #0] +100352a0: f042 0240 orr.w r2, r2, #64 ; 0x40 +100352a4: 701a strb r2, [r3, #0] +100352a6: 2304 movs r3, #4 +100352a8: e004 b.n 100352b4 +100352aa: 781a ldrb r2, [r3, #0] +100352ac: f002 027f and.w r2, r2, #127 ; 0x7f +100352b0: 701a strb r2, [r3, #0] +100352b2: 230c movs r3, #12 +100352b4: 7503 strb r3, [r0, #20] +100352b6: 4b03 ldr r3, [pc, #12] ; (100352c4 ) +100352b8: 2200 movs r2, #0 +100352ba: 701a strb r2, [r3, #0] +100352bc: 4770 bx lr +100352be: bf00 nop +100352c0: 40080604 .word 0x40080604 +100352c4: 40080522 .word 0x40080522 + +100352c8 : +100352c8: b510 push {r4, lr} +100352ca: f241 6318 movw r3, #5656 ; 0x1618 +100352ce: 2100 movs r1, #0 +100352d0: 58c4 ldr r4, [r0, r3] +100352d2: f00a fb8f bl 1003f9f4 +100352d6: 2801 cmp r0, #1 +100352d8: 4601 mov r1, r0 +100352da: d119 bne.n 10035310 +100352dc: 2300 movs r3, #0 +100352de: f884 3e79 strb.w r3, [r4, #3705] ; 0xe79 +100352e2: 4b0c ldr r3, [pc, #48] ; (10035314 ) +100352e4: 226f movs r2, #111 ; 0x6f +100352e6: 701a strb r2, [r3, #0] +100352e8: f504 6067 add.w r0, r4, #3696 ; 0xe70 +100352ec: 2208 movs r2, #8 +100352ee: f7ff fe4b bl 10034f88 +100352f2: 2801 cmp r0, #1 +100352f4: d105 bne.n 10035302 +100352f6: 230e movs r3, #14 +100352f8: f884 0e77 strb.w r0, [r4, #3703] ; 0xe77 +100352fc: f884 3e84 strb.w r3, [r4, #3716] ; 0xe84 +10035300: bd10 pop {r4, pc} +10035302: 4b05 ldr r3, [pc, #20] ; (10035318 ) +10035304: 681b ldr r3, [r3, #0] +10035306: 005b lsls r3, r3, #1 +10035308: d502 bpl.n 10035310 +1003530a: 4804 ldr r0, [pc, #16] ; (1003531c ) +1003530c: 4b04 ldr r3, [pc, #16] ; (10035320 ) +1003530e: 4798 blx r3 +10035310: bd10 pop {r4, pc} +10035312: bf00 nop +10035314: 40080522 .word 0x40080522 +10035318: 10000314 .word 0x10000314 +1003531c: 1004aafe .word 0x1004aafe +10035320: 0000f39d .word 0x0000f39d + +10035324 : +10035324: 7a43 ldrb r3, [r0, #9] +10035326: b90b cbnz r3, 1003532c +10035328: 230c movs r3, #12 +1003532a: e009 b.n 10035340 +1003532c: 4b07 ldr r3, [pc, #28] ; (1003534c ) +1003532e: 781a ldrb r2, [r3, #0] +10035330: f042 0240 orr.w r2, r2, #64 ; 0x40 +10035334: 701a strb r2, [r3, #0] +10035336: 781a ldrb r2, [r3, #0] +10035338: f042 0280 orr.w r2, r2, #128 ; 0x80 +1003533c: 701a strb r2, [r3, #0] +1003533e: 2304 movs r3, #4 +10035340: 7503 strb r3, [r0, #20] +10035342: 4b03 ldr r3, [pc, #12] ; (10035350 ) +10035344: 2200 movs r2, #0 +10035346: 701a strb r2, [r3, #0] +10035348: 4770 bx lr +1003534a: bf00 nop +1003534c: 40080604 .word 0x40080604 +10035350: 40080522 .word 0x40080522 + +10035354 : +10035354: b570 push {r4, r5, r6, lr} +10035356: f241 6318 movw r3, #5656 ; 0x1618 +1003535a: 58c6 ldr r6, [r0, r3] +1003535c: 4b0e ldr r3, [pc, #56] ; (10035398 ) +1003535e: 22ff movs r2, #255 ; 0xff +10035360: b086 sub sp, #24 +10035362: 701a strb r2, [r3, #0] +10035364: 4605 mov r5, r0 +10035366: f7ff fde5 bl 10034f34 +1003536a: 4a0c ldr r2, [pc, #48] ; (1003539c ) +1003536c: f04f 7300 mov.w r3, #33554432 ; 0x2000000 +10035370: 6013 str r3, [r2, #0] +10035372: 2400 movs r4, #0 +10035374: 4628 mov r0, r5 +10035376: 4669 mov r1, sp +10035378: aa03 add r2, sp, #12 +1003537a: 9300 str r3, [sp, #0] +1003537c: 9401 str r4, [sp, #4] +1003537e: 9402 str r4, [sp, #8] +10035380: 9403 str r4, [sp, #12] +10035382: 9404 str r4, [sp, #16] +10035384: 9405 str r4, [sp, #20] +10035386: f7fb fa9b bl 100308c0 +1003538a: f7ff fe45 bl 10035018 +1003538e: f886 4e84 strb.w r4, [r6, #3716] ; 0xe84 +10035392: b006 add sp, #24 +10035394: bd70 pop {r4, r5, r6, pc} +10035396: bf00 nop +10035398: 40080522 .word 0x40080522 +1003539c: 40080134 .word 0x40080134 + +100353a0 : +100353a0: f241 6318 movw r3, #5656 ; 0x1618 +100353a4: b510 push {r4, lr} +100353a6: 58c4 ldr r4, [r0, r3] +100353a8: 4b04 ldr r3, [pc, #16] ; (100353bc ) +100353aa: 22ff movs r2, #255 ; 0xff +100353ac: 701a strb r2, [r3, #0] +100353ae: f7ff fe33 bl 10035018 +100353b2: 2308 movs r3, #8 +100353b4: f884 3e84 strb.w r3, [r4, #3716] ; 0xe84 +100353b8: bd10 pop {r4, pc} +100353ba: bf00 nop +100353bc: 40080522 .word 0x40080522 + +100353c0 : +100353c0: b510 push {r4, lr} +100353c2: 4604 mov r4, r0 +100353c4: f7ff fe42 bl 1003504c +100353c8: 4b02 ldr r3, [pc, #8] ; (100353d4 ) +100353ca: 2200 movs r2, #0 +100353cc: 701a strb r2, [r3, #0] +100353ce: 230c movs r3, #12 +100353d0: 7523 strb r3, [r4, #20] +100353d2: bd10 pop {r4, pc} +100353d4: 40080522 .word 0x40080522 + +100353d8 : +100353d8: b538 push {r3, r4, r5, lr} +100353da: 4605 mov r5, r0 +100353dc: 2433 movs r4, #51 ; 0x33 +100353de: 4a0d ldr r2, [pc, #52] ; (10035414 ) +100353e0: 8813 ldrh r3, [r2, #0] +100353e2: f403 7380 and.w r3, r3, #256 ; 0x100 +100353e6: b29b uxth r3, r3 +100353e8: b113 cbz r3, 100353f0 +100353ea: 8813 ldrh r3, [r2, #0] +100353ec: f3c3 2340 ubfx r3, r3, #9, #1 +100353f0: 429d cmp r5, r3 +100353f2: d00e beq.n 10035412 +100353f4: 3c01 subs r4, #1 +100353f6: 2014 movs r0, #20 +100353f8: 4b07 ldr r3, [pc, #28] ; (10035418 ) +100353fa: b2a4 uxth r4, r4 +100353fc: 4798 blx r3 +100353fe: 2c00 cmp r4, #0 +10035400: d1ed bne.n 100353de +10035402: 4b06 ldr r3, [pc, #24] ; (1003541c ) +10035404: 681b ldr r3, [r3, #0] +10035406: 005b lsls r3, r3, #1 +10035408: d503 bpl.n 10035412 +1003540a: 4b05 ldr r3, [pc, #20] ; (10035420 ) +1003540c: 4805 ldr r0, [pc, #20] ; (10035424 ) +1003540e: 4798 blx r3 +10035410: bd38 pop {r3, r4, r5, pc} +10035412: bd38 pop {r3, r4, r5, pc} +10035414: 400800f0 .word 0x400800f0 +10035418: 00000899 .word 0x00000899 +1003541c: 10000314 .word 0x10000314 +10035420: 0000f39d .word 0x0000f39d +10035424: 1004ab4f .word 0x1004ab4f + +10035428 : +10035428: 4b02 ldr r3, [pc, #8] ; (10035434 ) +1003542a: 781b ldrb r3, [r3, #0] +1003542c: 07db lsls r3, r3, #31 +1003542e: d4fb bmi.n 10035428 +10035430: 4770 bx lr +10035432: bf00 nop +10035434: 40080020 .word 0x40080020 + +10035438 : +10035438: 2301 movs r3, #1 +1003543a: b510 push {r4, lr} +1003543c: 7303 strb r3, [r0, #12] +1003543e: 4b15 ldr r3, [pc, #84] ; (10035494 ) +10035440: 681a ldr r2, [r3, #0] +10035442: 461c mov r4, r3 +10035444: f442 3240 orr.w r2, r2, #196608 ; 0x30000 +10035448: 601a str r2, [r3, #0] +1003544a: 7c82 ldrb r2, [r0, #18] +1003544c: b13a cbz r2, 1003545e +1003544e: f203 130f addw r3, r3, #271 ; 0x10f +10035452: 781a ldrb r2, [r3, #0] +10035454: 0612 lsls r2, r2, #24 +10035456: bf4c ite mi +10035458: 2210 movmi r2, #16 +1003545a: 2290 movpl r2, #144 ; 0x90 +1003545c: 701a strb r2, [r3, #0] +1003545e: 4b0e ldr r3, [pc, #56] ; (10035498 ) +10035460: 2001 movs r0, #1 +10035462: 881a ldrh r2, [r3, #0] +10035464: b292 uxth r2, r2 +10035466: f442 7240 orr.w r2, r2, #768 ; 0x300 +1003546a: 801a strh r2, [r3, #0] +1003546c: f7ff ffb4 bl 100353d8 +10035470: 7823 ldrb r3, [r4, #0] +10035472: 2200 movs r2, #0 +10035474: f043 0304 orr.w r3, r3, #4 +10035478: 7023 strb r3, [r4, #0] +1003547a: 4b08 ldr r3, [pc, #32] ; (1003549c ) +1003547c: e8bd 4010 ldmia.w sp!, {r4, lr} +10035480: 605a str r2, [r3, #4] +10035482: 4a07 ldr r2, [pc, #28] ; (100354a0 ) +10035484: 60da str r2, [r3, #12] +10035486: 4a07 ldr r2, [pc, #28] ; (100354a4 ) +10035488: 611a str r2, [r3, #16] +1003548a: 2205 movs r2, #5 +1003548c: 605a str r2, [r3, #4] +1003548e: f7e7 be6b b.w 1001d168 +10035492: bf00 nop +10035494: 40080020 .word 0x40080020 +10035498: 40080002 .word 0x40080002 +1003549c: e000ed90 .word 0xe000ed90 +100354a0: 40080017 .word 0x40080017 +100354a4: 00040023 .word 0x00040023 + +100354a8 : +100354a8: b538 push {r3, r4, r5, lr} +100354aa: 4b0f ldr r3, [pc, #60] ; (100354e8 ) +100354ac: 2400 movs r4, #0 +100354ae: 2217 movs r2, #23 +100354b0: 605c str r4, [r3, #4] +100354b2: 60da str r2, [r3, #12] +100354b4: 2205 movs r2, #5 +100354b6: 611c str r4, [r3, #16] +100354b8: 605a str r2, [r3, #4] +100354ba: 4b0c ldr r3, [pc, #48] ; (100354ec ) +100354bc: 4605 mov r5, r0 +100354be: 781a ldrb r2, [r3, #0] +100354c0: f042 0201 orr.w r2, r2, #1 +100354c4: 701a strb r2, [r3, #0] +100354c6: f7ff ffaf bl 10035428 +100354ca: 4a09 ldr r2, [pc, #36] ; (100354f0 ) +100354cc: 4620 mov r0, r4 +100354ce: 8813 ldrh r3, [r2, #0] +100354d0: f423 7340 bic.w r3, r3, #768 ; 0x300 +100354d4: 041b lsls r3, r3, #16 +100354d6: 0c1b lsrs r3, r3, #16 +100354d8: 8013 strh r3, [r2, #0] +100354da: f7ff ff7d bl 100353d8 +100354de: 732c strb r4, [r5, #12] +100354e0: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +100354e4: f7e7 be36 b.w 1001d154 +100354e8: e000ed90 .word 0xe000ed90 +100354ec: 40080020 .word 0x40080020 +100354f0: 40080002 .word 0x40080002 + +100354f4 : +100354f4: b570 push {r4, r5, r6, lr} +100354f6: f241 6318 movw r3, #5656 ; 0x1618 +100354fa: 58c4 ldr r4, [r0, r3] +100354fc: 2300 movs r3, #0 +100354fe: f894 2e7c ldrb.w r2, [r4, #3708] ; 0xe7c +10035502: b086 sub sp, #24 +10035504: 4606 mov r6, r0 +10035506: f884 3e72 strb.w r3, [r4, #3698] ; 0xe72 +1003550a: f884 3e8a strb.w r3, [r4, #3722] ; 0xe8a +1003550e: f884 3e8b strb.w r3, [r4, #3723] ; 0xe8b +10035512: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035516: f8c4 3e90 str.w r3, [r4, #3728] ; 0xe90 +1003551a: f884 3e7b strb.w r3, [r4, #3707] ; 0xe7b +1003551e: f884 3e7e strb.w r3, [r4, #3710] ; 0xe7e +10035522: f884 3e8c strb.w r3, [r4, #3724] ; 0xe8c +10035526: 461d mov r5, r3 +10035528: b11a cbz r2, 10035532 +1003552a: f504 6067 add.w r0, r4, #3696 ; 0xe70 +1003552e: f7ff ffbb bl 100354a8 +10035532: 4a0c ldr r2, [pc, #48] ; (10035564 ) +10035534: 2301 movs r3, #1 +10035536: f44f 3100 mov.w r1, #131072 ; 0x20000 +1003553a: f884 5e98 strb.w r5, [r4, #3736] ; 0xe98 +1003553e: f884 5e99 strb.w r5, [r4, #3737] ; 0xe99 +10035542: 4630 mov r0, r6 +10035544: 6013 str r3, [r2, #0] +10035546: f8c2 10b0 str.w r1, [r2, #176] ; 0xb0 +1003554a: 9302 str r3, [sp, #8] +1003554c: 4669 mov r1, sp +1003554e: 2302 movs r3, #2 +10035550: aa03 add r2, sp, #12 +10035552: 9500 str r5, [sp, #0] +10035554: 9501 str r5, [sp, #4] +10035556: 9503 str r5, [sp, #12] +10035558: 9504 str r5, [sp, #16] +1003555a: 9305 str r3, [sp, #20] +1003555c: f7fb f9b0 bl 100308c0 +10035560: b006 add sp, #24 +10035562: bd70 pop {r4, r5, r6, pc} +10035564: 40080084 .word 0x40080084 + +10035568 : +10035568: b538 push {r3, r4, r5, lr} +1003556a: 7b03 ldrb r3, [r0, #12] +1003556c: 4604 mov r4, r0 +1003556e: 460d mov r5, r1 +10035570: b10b cbz r3, 10035576 +10035572: f7ff ff99 bl 100354a8 +10035576: f7ff fd69 bl 1003504c +1003557a: b115 cbz r5, 10035582 +1003557c: 4b02 ldr r3, [pc, #8] ; (10035588 ) +1003557e: 2200 movs r2, #0 +10035580: 701a strb r2, [r3, #0] +10035582: 2304 movs r3, #4 +10035584: 7523 strb r3, [r4, #20] +10035586: bd38 pop {r3, r4, r5, pc} +10035588: 40080522 .word 0x40080522 + +1003558c : +1003558c: b538 push {r3, r4, r5, lr} +1003558e: 7803 ldrb r3, [r0, #0] +10035590: 4604 mov r4, r0 +10035592: 2b01 cmp r3, #1 +10035594: d119 bne.n 100355ca +10035596: 7b03 ldrb r3, [r0, #12] +10035598: b9bb cbnz r3, 100355ca +1003559a: 7d03 ldrb r3, [r0, #20] +1003559c: f013 0ff7 tst.w r3, #247 ; 0xf7 +100355a0: d10f bne.n 100355c2 +100355a2: f7ff fe19 bl 100351d8 +100355a6: 2801 cmp r0, #1 +100355a8: d10b bne.n 100355c2 +100355aa: 4d0f ldr r5, [pc, #60] ; (100355e8 ) +100355ac: 2006 movs r0, #6 +100355ae: 692b ldr r3, [r5, #16] +100355b0: 4798 blx r3 +100355b2: 68eb ldr r3, [r5, #12] +100355b4: 2006 movs r0, #6 +100355b6: 4798 blx r3 +100355b8: 4620 mov r0, r4 +100355ba: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +100355be: f7ff bf3b b.w 10035438 +100355c2: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +100355c6: f7ff bb75 b.w 10034cb4 +100355ca: 7c63 ldrb r3, [r4, #17] +100355cc: b153 cbz r3, 100355e4 +100355ce: 7ce2 ldrb r2, [r4, #19] +100355d0: 7d23 ldrb r3, [r4, #20] +100355d2: 429a cmp r2, r3 +100355d4: d1f5 bne.n 100355c2 +100355d6: 4c04 ldr r4, [pc, #16] ; (100355e8 ) +100355d8: 2006 movs r0, #6 +100355da: 6923 ldr r3, [r4, #16] +100355dc: 4798 blx r3 +100355de: 68e3 ldr r3, [r4, #12] +100355e0: 2006 movs r0, #6 +100355e2: 4798 blx r3 +100355e4: bd38 pop {r3, r4, r5, pc} +100355e6: bf00 nop +100355e8: 10000318 .word 0x10000318 + +100355ec : +100355ec: b5f8 push {r3, r4, r5, r6, r7, lr} +100355ee: f241 6318 movw r3, #5656 ; 0x1618 +100355f2: 4606 mov r6, r0 +100355f4: 4617 mov r7, r2 +100355f6: 58c4 ldr r4, [r0, r3] +100355f8: b672 cpsid i +100355fa: f894 3e76 ldrb.w r3, [r4, #3702] ; 0xe76 +100355fe: 2b01 cmp r3, #1 +10035600: f000 80c6 beq.w 10035790 +10035604: f894 3e77 ldrb.w r3, [r4, #3703] ; 0xe77 +10035608: 2b01 cmp r3, #1 +1003560a: f000 80c1 beq.w 10035790 +1003560e: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035612: 428b cmp r3, r1 +10035614: f000 80bc beq.w 10035790 +10035618: f504 6567 add.w r5, r4, #3696 ; 0xe70 +1003561c: 290c cmp r1, #12 +1003561e: f200 80b7 bhi.w 10035790 +10035622: e8df f001 tbb [pc, r1] +10035626: b555 .short 0xb555 +10035628: b530b57f .word 0xb530b57f +1003562c: b5aeb5b5 .word 0xb5aeb5b5 +10035630: b5b5 .short 0xb5b5 +10035632: 07 .byte 0x07 +10035633: 00 .byte 0x00 +10035634: 2b0e cmp r3, #14 +10035636: d102 bne.n 1003563e +10035638: 4628 mov r0, r5 +1003563a: f7ff fe73 bl 10035324 +1003563e: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035642: b91b cbnz r3, 1003564c +10035644: 4628 mov r0, r5 +10035646: 2101 movs r1, #1 +10035648: f7ff ff8e bl 10035568 +1003564c: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035650: 2b06 cmp r3, #6 +10035652: d102 bne.n 1003565a +10035654: 4628 mov r0, r5 +10035656: f7ff fe1f bl 10035298 +1003565a: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +1003565e: 2b04 cmp r3, #4 +10035660: d108 bne.n 10035674 +10035662: b127 cbz r7, 1003566e +10035664: 4630 mov r0, r6 +10035666: 4639 mov r1, r7 +10035668: f7ff fdd4 bl 10035214 +1003566c: e002 b.n 10035674 +1003566e: 4628 mov r0, r5 +10035670: f7ff fe04 bl 1003527c +10035674: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035678: 2b08 cmp r3, #8 +1003567a: f040 8089 bne.w 10035790 +1003567e: 4628 mov r0, r5 +10035680: f7ff fe9e bl 100353c0 +10035684: e084 b.n 10035790 +10035686: b91b cbnz r3, 10035690 +10035688: 4628 mov r0, r5 +1003568a: 2101 movs r1, #1 +1003568c: f7ff ff6c bl 10035568 +10035690: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035694: 2b06 cmp r3, #6 +10035696: d102 bne.n 1003569e +10035698: 4628 mov r0, r5 +1003569a: f7ff fdfd bl 10035298 +1003569e: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +100356a2: 2b0e cmp r3, #14 +100356a4: d107 bne.n 100356b6 +100356a6: 4628 mov r0, r5 +100356a8: f7ff fd3e bl 10035128 +100356ac: 2801 cmp r0, #1 +100356ae: d102 bne.n 100356b6 +100356b0: 4628 mov r0, r5 +100356b2: f7ff fe37 bl 10035324 +100356b6: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +100356ba: 2b0c cmp r3, #12 +100356bc: d168 bne.n 10035790 +100356be: 4628 mov r0, r5 +100356c0: f7ff fd32 bl 10035128 +100356c4: 2801 cmp r0, #1 +100356c6: d163 bne.n 10035790 +100356c8: 4630 mov r0, r6 +100356ca: f7ff fdfd bl 100352c8 +100356ce: e05f b.n 10035790 +100356d0: 2b0e cmp r3, #14 +100356d2: d107 bne.n 100356e4 +100356d4: 4628 mov r0, r5 +100356d6: f7ff fd27 bl 10035128 +100356da: 2801 cmp r0, #1 +100356dc: d102 bne.n 100356e4 +100356de: 4628 mov r0, r5 +100356e0: f7ff fe20 bl 10035324 +100356e4: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +100356e8: 2b06 cmp r3, #6 +100356ea: d102 bne.n 100356f2 +100356ec: 4628 mov r0, r5 +100356ee: f7ff fdd3 bl 10035298 +100356f2: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +100356f6: 2b0c cmp r3, #12 +100356f8: d107 bne.n 1003570a +100356fa: 4628 mov r0, r5 +100356fc: f7ff fd14 bl 10035128 +10035700: 2801 cmp r0, #1 +10035702: d102 bne.n 1003570a +10035704: 4630 mov r0, r6 +10035706: f7ff fddf bl 100352c8 +1003570a: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +1003570e: 2b04 cmp r3, #4 +10035710: d13e bne.n 10035790 +10035712: 4630 mov r0, r6 +10035714: f7ff fd22 bl 1003515c +10035718: 2801 cmp r0, #1 +1003571a: d139 bne.n 10035790 +1003571c: 4630 mov r0, r6 +1003571e: f7ff fe19 bl 10035354 +10035722: e035 b.n 10035790 +10035724: 2b0e cmp r3, #14 +10035726: d107 bne.n 10035738 +10035728: 4628 mov r0, r5 +1003572a: f7ff fcfd bl 10035128 +1003572e: 2801 cmp r0, #1 +10035730: d102 bne.n 10035738 +10035732: 4628 mov r0, r5 +10035734: f7ff fdf6 bl 10035324 +10035738: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +1003573c: 2b06 cmp r3, #6 +1003573e: d102 bne.n 10035746 +10035740: 4628 mov r0, r5 +10035742: f7ff fda9 bl 10035298 +10035746: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +1003574a: 2b0c cmp r3, #12 +1003574c: d107 bne.n 1003575e +1003574e: 4628 mov r0, r5 +10035750: f7ff fcea bl 10035128 +10035754: 2801 cmp r0, #1 +10035756: d102 bne.n 1003575e +10035758: 4630 mov r0, r6 +1003575a: f7ff fdb5 bl 100352c8 +1003575e: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035762: b91b cbnz r3, 1003576c +10035764: 4628 mov r0, r5 +10035766: 2101 movs r1, #1 +10035768: f7ff fefe bl 10035568 +1003576c: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035770: 2b04 cmp r3, #4 +10035772: d10d bne.n 10035790 +10035774: 4b07 ldr r3, [pc, #28] ; (10035794 ) +10035776: 226f movs r2, #111 ; 0x6f +10035778: 701a strb r2, [r3, #0] +1003577a: 2302 movs r3, #2 +1003577c: f884 3e84 strb.w r3, [r4, #3716] ; 0xe84 +10035780: e006 b.n 10035790 +10035782: 2b0c cmp r3, #12 +10035784: d104 bne.n 10035790 +10035786: f894 3e7a ldrb.w r3, [r4, #3706] ; 0xe7a +1003578a: b10b cbz r3, 10035790 +1003578c: f7ff fe08 bl 100353a0 +10035790: b662 cpsie i +10035792: bdf8 pop {r3, r4, r5, r6, r7, pc} +10035794: 40080522 .word 0x40080522 + +10035798 : +10035798: b570 push {r4, r5, r6, lr} +1003579a: f241 6318 movw r3, #5656 ; 0x1618 +1003579e: 4a19 ldr r2, [pc, #100] ; (10035804 ) +100357a0: b086 sub sp, #24 +100357a2: 58c5 ldr r5, [r0, r3] +100357a4: f04f 731e mov.w r3, #41418752 ; 0x2780000 +100357a8: 6013 str r3, [r2, #0] +100357aa: 2400 movs r4, #0 +100357ac: 4669 mov r1, sp +100357ae: aa03 add r2, sp, #12 +100357b0: 4606 mov r6, r0 +100357b2: 9300 str r3, [sp, #0] +100357b4: 9401 str r4, [sp, #4] +100357b6: 9402 str r4, [sp, #8] +100357b8: 9403 str r4, [sp, #12] +100357ba: 9404 str r4, [sp, #16] +100357bc: 9405 str r4, [sp, #20] +100357be: f7fb f87f bl 100308c0 +100357c2: 4b11 ldr r3, [pc, #68] ; (10035808 ) +100357c4: 4630 mov r0, r6 +100357c6: 681a ldr r2, [r3, #0] +100357c8: 4621 mov r1, r4 +100357ca: f442 22e0 orr.w r2, r2, #458752 ; 0x70000 +100357ce: 601a str r2, [r3, #0] +100357d0: f895 2e8e ldrb.w r2, [r5, #3726] ; 0xe8e +100357d4: f803 2cb0 strb.w r2, [r3, #-176] +100357d8: f00a f90c bl 1003f9f4 +100357dc: 2801 cmp r0, #1 +100357de: 4602 mov r2, r0 +100357e0: d10a bne.n 100357f8 +100357e2: f895 3e84 ldrb.w r3, [r5, #3716] ; 0xe84 +100357e6: f885 4e7a strb.w r4, [r5, #3706] ; 0xe7a +100357ea: 075b lsls r3, r3, #29 +100357ec: d407 bmi.n 100357fe +100357ee: 4630 mov r0, r6 +100357f0: 2104 movs r1, #4 +100357f2: f7ff fefb bl 100355ec +100357f6: e002 b.n 100357fe +100357f8: 2301 movs r3, #1 +100357fa: f885 3e7a strb.w r3, [r5, #3706] ; 0xe7a +100357fe: b006 add sp, #24 +10035800: bd70 pop {r4, r5, r6, pc} +10035802: bf00 nop +10035804: 40080134 .word 0x40080134 +10035808: 40080608 .word 0x40080608 + +1003580c : +1003580c: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10035810: f241 6318 movw r3, #5656 ; 0x1618 +10035814: b086 sub sp, #24 +10035816: 4606 mov r6, r0 +10035818: 58c5 ldr r5, [r0, r3] +1003581a: 460c mov r4, r1 +1003581c: 2900 cmp r1, #0 +1003581e: d13b bne.n 10035898 +10035820: 4f20 ldr r7, [pc, #128] ; (100358a4 ) +10035822: aa03 add r2, sp, #12 +10035824: f04f 731e mov.w r3, #41418752 ; 0x2780000 +10035828: 9100 str r1, [sp, #0] +1003582a: 9101 str r1, [sp, #4] +1003582c: 9102 str r1, [sp, #8] +1003582e: 9104 str r1, [sp, #16] +10035830: 9105 str r1, [sp, #20] +10035832: 4669 mov r1, sp +10035834: 9303 str r3, [sp, #12] +10035836: f7fb f843 bl 100308c0 +1003583a: 693b ldr r3, [r7, #16] +1003583c: 2006 movs r0, #6 +1003583e: 4798 blx r3 +10035840: 68fb ldr r3, [r7, #12] +10035842: 2006 movs r0, #6 +10035844: 4798 blx r3 +10035846: 4630 mov r0, r6 +10035848: 4621 mov r1, r4 +1003584a: f00a f8d3 bl 1003f9f4 +1003584e: f505 6867 add.w r8, r5, #3696 ; 0xe70 +10035852: 4607 mov r7, r0 +10035854: b948 cbnz r0, 1003586a +10035856: f7ff fbf9 bl 1003504c +1003585a: 4640 mov r0, r8 +1003585c: f7ff fd0e bl 1003527c +10035860: f885 7e76 strb.w r7, [r5, #3702] ; 0xe76 +10035864: f885 7e77 strb.w r7, [r5, #3703] ; 0xe77 +10035868: e00b b.n 10035882 +1003586a: 4630 mov r0, r6 +1003586c: 210c movs r1, #12 +1003586e: 4622 mov r2, r4 +10035870: f7ff febc bl 100355ec +10035874: 4b0c ldr r3, [pc, #48] ; (100358a8 ) +10035876: 4640 mov r0, r8 +10035878: 701c strb r4, [r3, #0] +1003587a: 4621 mov r1, r4 +1003587c: 2218 movs r2, #24 +1003587e: f7ff fb83 bl 10034f88 +10035882: 2300 movs r3, #0 +10035884: f885 3e73 strb.w r3, [r5, #3699] ; 0xe73 +10035888: f885 3e99 strb.w r3, [r5, #3737] ; 0xe99 +1003588c: 4b07 ldr r3, [pc, #28] ; (100358ac ) +1003588e: 681a ldr r2, [r3, #0] +10035890: f422 22e0 bic.w r2, r2, #458752 ; 0x70000 +10035894: 601a str r2, [r3, #0] +10035896: e001 b.n 1003589c +10035898: f7ff ff7e bl 10035798 +1003589c: b006 add sp, #24 +1003589e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100358a2: bf00 nop +100358a4: 10000318 .word 0x10000318 +100358a8: 40080522 .word 0x40080522 +100358ac: 40080608 .word 0x40080608 + +100358b0 : +100358b0: b510 push {r4, lr} +100358b2: f241 6318 movw r3, #5656 ; 0x1618 +100358b6: 58c3 ldr r3, [r0, r3] +100358b8: 4604 mov r4, r0 +100358ba: f893 2e81 ldrb.w r2, [r3, #3713] ; 0xe81 +100358be: 2a03 cmp r2, #3 +100358c0: d10b bne.n 100358da +100358c2: f893 2e99 ldrb.w r2, [r3, #3737] ; 0xe99 +100358c6: 2a01 cmp r2, #1 +100358c8: d107 bne.n 100358da +100358ca: 4c09 ldr r4, [pc, #36] ; (100358f0 ) +100358cc: 2006 movs r0, #6 +100358ce: 6923 ldr r3, [r4, #16] +100358d0: 4798 blx r3 +100358d2: 68e3 ldr r3, [r4, #12] +100358d4: 2006 movs r0, #6 +100358d6: 4798 blx r3 +100358d8: bd10 pop {r4, pc} +100358da: 4620 mov r0, r4 +100358dc: f893 1e83 ldrb.w r1, [r3, #3715] ; 0xe83 +100358e0: 2201 movs r2, #1 +100358e2: f7ff fe83 bl 100355ec +100358e6: 4620 mov r0, r4 +100358e8: e8bd 4010 ldmia.w sp!, {r4, lr} +100358ec: f7ff b9da b.w 10034ca4 +100358f0: 10000318 .word 0x10000318 + +100358f4 : +100358f4: b5f8 push {r3, r4, r5, r6, r7, lr} +100358f6: f241 6318 movw r3, #5656 ; 0x1618 +100358fa: 58c4 ldr r4, [r0, r3] +100358fc: 4606 mov r6, r0 +100358fe: f894 3e70 ldrb.w r3, [r4, #3696] ; 0xe70 +10035902: f504 6767 add.w r7, r4, #3696 ; 0xe70 +10035906: b12b cbz r3, 10035914 +10035908: f894 3e7c ldrb.w r3, [r4, #3708] ; 0xe7c +1003590c: b113 cbz r3, 10035914 +1003590e: 4638 mov r0, r7 +10035910: f7ff fdca bl 100354a8 +10035914: f894 1e99 ldrb.w r1, [r4, #3737] ; 0xe99 +10035918: f894 3e98 ldrb.w r3, [r4, #3736] ; 0xe98 +1003591c: 2901 cmp r1, #1 +1003591e: d135 bne.n 1003598c +10035920: 2200 movs r2, #0 +10035922: 2b02 cmp r3, #2 +10035924: f884 2e99 strb.w r2, [r4, #3737] ; 0xe99 +10035928: d82b bhi.n 10035982 +1003592a: 2b01 cmp r3, #1 +1003592c: d002 beq.n 10035934 +1003592e: 2b02 cmp r3, #2 +10035930: d015 beq.n 1003595e +10035932: e01e b.n 10035972 +10035934: f894 5e94 ldrb.w r5, [r4, #3732] ; 0xe94 +10035938: 2d31 cmp r5, #49 ; 0x31 +1003593a: d806 bhi.n 1003594a +1003593c: f894 2e95 ldrb.w r2, [r4, #3733] ; 0xe95 +10035940: f1c5 0532 rsb r5, r5, #50 ; 0x32 +10035944: ebc2 0545 rsb r5, r2, r5, lsl #1 +10035948: e006 b.n 10035958 +1003594a: 2d63 cmp r5, #99 ; 0x63 +1003594c: d811 bhi.n 10035972 +1003594e: f894 2e95 ldrb.w r2, [r4, #3733] ; 0xe95 +10035952: 4415 add r5, r2 +10035954: f1c5 0564 rsb r5, r5, #100 ; 0x64 +10035958: b2ed uxtb r5, r5 +1003595a: 461c mov r4, r3 +1003595c: e00b b.n 10035976 +1003595e: f894 3e94 ldrb.w r3, [r4, #3732] ; 0xe94 +10035962: 2b31 cmp r3, #49 ; 0x31 +10035964: d805 bhi.n 10035972 +10035966: f894 5e96 ldrb.w r5, [r4, #3734] ; 0xe96 +1003596a: 460c mov r4, r1 +1003596c: 1b5d subs r5, r3, r5 +1003596e: b2ed uxtb r5, r5 +10035970: e001 b.n 10035976 +10035972: 4614 mov r4, r2 +10035974: 4615 mov r5, r2 +10035976: 4630 mov r0, r6 +10035978: f7ff ff9a bl 100358b0 +1003597c: 2c01 cmp r4, #1 +1003597e: d145 bne.n 10035a0c +10035980: e03f b.n 10035a02 +10035982: 4630 mov r0, r6 +10035984: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10035988: f7ff bf92 b.w 100358b0 +1003598c: 2201 movs r2, #1 +1003598e: 2b02 cmp r3, #2 +10035990: f884 2e99 strb.w r2, [r4, #3737] ; 0xe99 +10035994: d83a bhi.n 10035a0c +10035996: 4413 add r3, r2 +10035998: b2db uxtb r3, r3 +1003599a: 2b02 cmp r3, #2 +1003599c: f884 3e98 strb.w r3, [r4, #3736] ; 0xe98 +100359a0: d004 beq.n 100359ac +100359a2: 2b03 cmp r3, #3 +100359a4: d005 beq.n 100359b2 +100359a6: f894 5e95 ldrb.w r5, [r4, #3733] ; 0xe95 +100359aa: e004 b.n 100359b6 +100359ac: f894 5e96 ldrb.w r5, [r4, #3734] ; 0xe96 +100359b0: e001 b.n 100359b6 +100359b2: f894 5e97 ldrb.w r5, [r4, #3735] ; 0xe97 +100359b6: b9c5 cbnz r5, 100359ea +100359b8: f884 5e99 strb.w r5, [r4, #3737] ; 0xe99 +100359bc: 4630 mov r0, r6 +100359be: f894 5e94 ldrb.w r5, [r4, #3732] ; 0xe94 +100359c2: f7ff ff75 bl 100358b0 +100359c6: f894 3e94 ldrb.w r3, [r4, #3732] ; 0xe94 +100359ca: 2b64 cmp r3, #100 ; 0x64 +100359cc: d01e beq.n 10035a0c +100359ce: 2b31 cmp r3, #49 ; 0x31 +100359d0: d804 bhi.n 100359dc +100359d2: f894 3e98 ldrb.w r3, [r4, #3736] ; 0xe98 +100359d6: 2b03 cmp r3, #3 +100359d8: d102 bne.n 100359e0 +100359da: bdf8 pop {r3, r4, r5, r6, r7, pc} +100359dc: 2b63 cmp r3, #99 ; 0x63 +100359de: d810 bhi.n 10035a02 +100359e0: f894 3e98 ldrb.w r3, [r4, #3736] ; 0xe98 +100359e4: 2b02 cmp r3, #2 +100359e6: d10c bne.n 10035a02 +100359e8: bdf8 pop {r3, r4, r5, r6, r7, pc} +100359ea: 4630 mov r0, r6 +100359ec: 210c movs r1, #12 +100359ee: 2200 movs r2, #0 +100359f0: f7ff fdfc bl 100355ec +100359f4: 4b06 ldr r3, [pc, #24] ; (10035a10 ) +100359f6: 2100 movs r1, #0 +100359f8: 7019 strb r1, [r3, #0] +100359fa: 4638 mov r0, r7 +100359fc: 2218 movs r2, #24 +100359fe: f7ff fac3 bl 10034f88 +10035a02: 4628 mov r0, r5 +10035a04: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10035a08: f7ff b916 b.w 10034c38 +10035a0c: bdf8 pop {r3, r4, r5, r6, r7, pc} +10035a0e: bf00 nop +10035a10: 40080522 .word 0x40080522 + +10035a14 : +10035a14: b573 push {r0, r1, r4, r5, r6, lr} +10035a16: 6885 ldr r5, [r0, #8] +10035a18: 2300 movs r3, #0 +10035a1a: ac02 add r4, sp, #8 +10035a1c: f844 3d04 str.w r3, [r4, #-4]! +10035a20: 3520 adds r5, #32 +10035a22: 4621 mov r1, r4 +10035a24: 4606 mov r6, r0 +10035a26: 4628 mov r0, r5 +10035a28: f7e7 fa56 bl 1001ced8 +10035a2c: 4630 mov r0, r6 +10035a2e: f7ff ff61 bl 100358f4 +10035a32: 4628 mov r0, r5 +10035a34: 4621 mov r1, r4 +10035a36: f7e7 fa57 bl 1001cee8 +10035a3a: b002 add sp, #8 +10035a3c: bd70 pop {r4, r5, r6, pc} + +10035a3e : +10035a3e: f241 6318 movw r3, #5656 ; 0x1618 +10035a42: 58c3 ldr r3, [r0, r3] +10035a44: f893 2e81 ldrb.w r2, [r3, #3713] ; 0xe81 +10035a48: b14a cbz r2, 10035a5e +10035a4a: 2a03 cmp r2, #3 +10035a4c: d007 beq.n 10035a5e +10035a4e: f893 2e83 ldrb.w r2, [r3, #3715] ; 0xe83 +10035a52: f893 3e84 ldrb.w r3, [r3, #3716] ; 0xe84 +10035a56: 429a cmp r2, r3 +10035a58: d001 beq.n 10035a5e +10035a5a: f7ff bf29 b.w 100358b0 +10035a5e: 4770 bx lr + +10035a60 : +10035a60: b538 push {r3, r4, r5, lr} +10035a62: 4c0c ldr r4, [pc, #48] ; (10035a94 ) +10035a64: f241 6318 movw r3, #5656 ; 0x1618 +10035a68: 58c5 ldr r5, [r0, r3] +10035a6a: 6923 ldr r3, [r4, #16] +10035a6c: 2007 movs r0, #7 +10035a6e: 4798 blx r3 +10035a70: 68e3 ldr r3, [r4, #12] +10035a72: 2007 movs r0, #7 +10035a74: 4798 blx r3 +10035a76: 4b08 ldr r3, [pc, #32] ; (10035a98 ) +10035a78: 2202 movs r2, #2 +10035a7a: 701a strb r2, [r3, #0] +10035a7c: 2007 movs r0, #7 +10035a7e: f44f 5170 mov.w r1, #15360 ; 0x3c00 +10035a82: f7e9 f869 bl 1001eb58 +10035a86: 2007 movs r0, #7 +10035a88: f7ff f8cd bl 10034c26 +10035a8c: 2301 movs r3, #1 +10035a8e: f885 3e73 strb.w r3, [r5, #3699] ; 0xe73 +10035a92: bd38 pop {r3, r4, r5, pc} +10035a94: 10000318 .word 0x10000318 +10035a98: 40080692 .word 0x40080692 + +10035a9c : +10035a9c: b538 push {r3, r4, r5, lr} +10035a9e: 4d14 ldr r5, [pc, #80] ; (10035af0 ) +10035aa0: 4604 mov r4, r0 +10035aa2: 68eb ldr r3, [r5, #12] +10035aa4: 2007 movs r0, #7 +10035aa6: 4798 blx r3 +10035aa8: 692b ldr r3, [r5, #16] +10035aaa: 2007 movs r0, #7 +10035aac: 4798 blx r3 +10035aae: f241 6318 movw r3, #5656 ; 0x1618 +10035ab2: 58e3 ldr r3, [r4, r3] +10035ab4: f893 2e81 ldrb.w r2, [r3, #3713] ; 0xe81 +10035ab8: b1ca cbz r2, 10035aee +10035aba: 2a03 cmp r2, #3 +10035abc: d104 bne.n 10035ac8 +10035abe: 4620 mov r0, r4 +10035ac0: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10035ac4: f7ff b8cc b.w 10034c60 +10035ac8: 4a0a ldr r2, [pc, #40] ; (10035af4 ) +10035aca: 7812 ldrb r2, [r2, #0] +10035acc: f002 0202 and.w r2, r2, #2 +10035ad0: f002 01ff and.w r1, r2, #255 ; 0xff +10035ad4: b122 cbz r2, 10035ae0 +10035ad6: 4620 mov r0, r4 +10035ad8: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10035adc: f7ff bfc0 b.w 10035a60 +10035ae0: f883 1e73 strb.w r1, [r3, #3699] ; 0xe73 +10035ae4: 4620 mov r0, r4 +10035ae6: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10035aea: f7ff bee1 b.w 100358b0 +10035aee: bd38 pop {r3, r4, r5, pc} +10035af0: 10000318 .word 0x10000318 +10035af4: 40080692 .word 0x40080692 + +10035af8 : +10035af8: b538 push {r3, r4, r5, lr} +10035afa: f241 6318 movw r3, #5656 ; 0x1618 +10035afe: 58c4 ldr r4, [r0, r3] +10035b00: 4605 mov r5, r0 +10035b02: f7ff ffad bl 10035a60 +10035b06: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035b0a: 2b0c cmp r3, #12 +10035b0c: d00e beq.n 10035b2c +10035b0e: 4628 mov r0, r5 +10035b10: 210c movs r1, #12 +10035b12: 2200 movs r2, #0 +10035b14: f7ff fd6a bl 100355ec +10035b18: 4b05 ldr r3, [pc, #20] ; (10035b30 ) +10035b1a: 2100 movs r1, #0 +10035b1c: 7019 strb r1, [r3, #0] +10035b1e: f504 6067 add.w r0, r4, #3696 ; 0xe70 +10035b22: 2208 movs r2, #8 +10035b24: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10035b28: f7ff ba2e b.w 10034f88 +10035b2c: bd38 pop {r3, r4, r5, pc} +10035b2e: bf00 nop +10035b30: 40080522 .word 0x40080522 + +10035b34 : +10035b34: b538 push {r3, r4, r5, lr} +10035b36: f241 6318 movw r3, #5656 ; 0x1618 +10035b3a: 58c4 ldr r4, [r0, r3] +10035b3c: 4b26 ldr r3, [pc, #152] ; (10035bd8 ) +10035b3e: 881d ldrh r5, [r3, #0] +10035b40: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +10035b44: b2ad uxth r5, r5 +10035b46: f415 4f40 tst.w r5, #49152 ; 0xc000 +10035b4a: d107 bne.n 10035b5c +10035b4c: f023 0303 bic.w r3, r3, #3 +10035b50: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035b54: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10035b58: f7ff beaa b.w 100358b0 +10035b5c: 046a lsls r2, r5, #17 +10035b5e: d513 bpl.n 10035b88 +10035b60: f894 2e81 ldrb.w r2, [r4, #3713] ; 0xe81 +10035b64: 2a01 cmp r2, #1 +10035b66: d113 bne.n 10035b90 +10035b68: f043 0301 orr.w r3, r3, #1 +10035b6c: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035b70: f894 3e7f ldrb.w r3, [r4, #3711] ; 0xe7f +10035b74: f003 030f and.w r3, r3, #15 +10035b78: 2b02 cmp r3, #2 +10035b7a: d002 beq.n 10035b82 +10035b7c: f7ff f9c4 bl 10034f08 +10035b80: e006 b.n 10035b90 +10035b82: f7ff ffb9 bl 10035af8 +10035b86: e003 b.n 10035b90 +10035b88: f023 0301 bic.w r3, r3, #1 +10035b8c: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035b90: f415 4f00 tst.w r5, #32768 ; 0x8000 +10035b94: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +10035b98: d019 beq.n 10035bce +10035b9a: 4d10 ldr r5, [pc, #64] ; (10035bdc ) +10035b9c: f043 0302 orr.w r3, r3, #2 +10035ba0: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035ba4: 2006 movs r0, #6 +10035ba6: 692b ldr r3, [r5, #16] +10035ba8: 4798 blx r3 +10035baa: 68eb ldr r3, [r5, #12] +10035bac: 2006 movs r0, #6 +10035bae: 4798 blx r3 +10035bb0: 2006 movs r0, #6 +10035bb2: f44f 5170 mov.w r1, #15360 ; 0x3c00 +10035bb6: f7e8 ffcf bl 1001eb58 +10035bba: 2006 movs r0, #6 +10035bbc: f7ff f833 bl 10034c26 +10035bc0: 4b07 ldr r3, [pc, #28] ; (10035be0 ) +10035bc2: 2200 movs r2, #0 +10035bc4: 701a strb r2, [r3, #0] +10035bc6: 2301 movs r3, #1 +10035bc8: f884 3e72 strb.w r3, [r4, #3698] ; 0xe72 +10035bcc: bd38 pop {r3, r4, r5, pc} +10035bce: f023 0302 bic.w r3, r3, #2 +10035bd2: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035bd6: bd38 pop {r3, r4, r5, pc} +10035bd8: 400806a8 .word 0x400806a8 +10035bdc: 10000318 .word 0x10000318 +10035be0: 10055335 .word 0x10055335 + +10035be4 : +10035be4: b5f8 push {r3, r4, r5, r6, r7, lr} +10035be6: f241 6318 movw r3, #5656 ; 0x1618 +10035bea: 58c4 ldr r4, [r0, r3] +10035bec: 4606 mov r6, r0 +10035bee: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +10035bf2: 2b00 cmp r3, #0 +10035bf4: d04e beq.n 10035c94 +10035bf6: 2100 movs r1, #0 +10035bf8: f009 fefc bl 1003f9f4 +10035bfc: 2801 cmp r0, #1 +10035bfe: d149 bne.n 10035c94 +10035c00: f894 3e7f ldrb.w r3, [r4, #3711] ; 0xe7f +10035c04: 091b lsrs r3, r3, #4 +10035c06: d010 beq.n 10035c2a +10035c08: 2b02 cmp r3, #2 +10035c0a: dc43 bgt.n 10035c94 +10035c0c: f894 3e88 ldrb.w r3, [r4, #3720] ; 0xe88 +10035c10: 3b01 subs r3, #1 +10035c12: b2db uxtb r3, r3 +10035c14: f884 3e88 strb.w r3, [r4, #3720] ; 0xe88 +10035c18: b11b cbz r3, 10035c22 +10035c1a: f894 3e8a ldrb.w r3, [r4, #3722] ; 0xe8a +10035c1e: b923 cbnz r3, 10035c2a +10035c20: bdf8 pop {r3, r4, r5, r6, r7, pc} +10035c22: f894 3e87 ldrb.w r3, [r4, #3719] ; 0xe87 +10035c26: f884 3e88 strb.w r3, [r4, #3720] ; 0xe88 +10035c2a: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +10035c2e: 4d1a ldr r5, [pc, #104] ; (10035c98 ) +10035c30: f043 0310 orr.w r3, r3, #16 +10035c34: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035c38: f894 3e8a ldrb.w r3, [r4, #3722] ; 0xe8a +10035c3c: 4f17 ldr r7, [pc, #92] ; (10035c9c ) +10035c3e: 2b01 cmp r3, #1 +10035c40: d809 bhi.n 10035c56 +10035c42: 692b ldr r3, [r5, #16] +10035c44: 2006 movs r0, #6 +10035c46: 4798 blx r3 +10035c48: 68eb ldr r3, [r5, #12] +10035c4a: 2006 movs r0, #6 +10035c4c: 4798 blx r3 +10035c4e: f894 1e8a ldrb.w r1, [r4, #3722] ; 0xe8a +10035c52: 3104 adds r1, #4 +10035c54: e00a b.n 10035c6c +10035c56: 692b ldr r3, [r5, #16] +10035c58: 2006 movs r0, #6 +10035c5a: 4798 blx r3 +10035c5c: 68eb ldr r3, [r5, #12] +10035c5e: 2006 movs r0, #6 +10035c60: 4798 blx r3 +10035c62: f894 3e8a ldrb.w r3, [r4, #3722] ; 0xe8a +10035c66: eb03 0343 add.w r3, r3, r3, lsl #1 +10035c6a: 1c99 adds r1, r3, #2 +10035c6c: 2006 movs r0, #6 +10035c6e: 0289 lsls r1, r1, #10 +10035c70: f7e8 ff72 bl 1001eb58 +10035c74: 2006 movs r0, #6 +10035c76: f7fe ffd6 bl 10034c26 +10035c7a: 2300 movs r3, #0 +10035c7c: 703b strb r3, [r7, #0] +10035c7e: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035c82: 075b lsls r3, r3, #29 +10035c84: d406 bmi.n 10035c94 +10035c86: 4630 mov r0, r6 +10035c88: 2104 movs r1, #4 +10035c8a: 2201 movs r2, #1 +10035c8c: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10035c90: f7ff bcac b.w 100355ec +10035c94: bdf8 pop {r3, r4, r5, r6, r7, pc} +10035c96: bf00 nop +10035c98: 10000318 .word 0x10000318 +10035c9c: 10055335 .word 0x10055335 + +10035ca0 : +10035ca0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10035ca4: f241 6318 movw r3, #5656 ; 0x1618 +10035ca8: 58c4 ldr r4, [r0, r3] +10035caa: b086 sub sp, #24 +10035cac: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +10035cb0: 4605 mov r5, r0 +10035cb2: b37b cbz r3, 10035d14 +10035cb4: 2100 movs r1, #0 +10035cb6: f009 fe9d bl 1003f9f4 +10035cba: 2801 cmp r0, #1 +10035cbc: 4606 mov r6, r0 +10035cbe: d129 bne.n 10035d14 +10035cc0: f894 2e87 ldrb.w r2, [r4, #3719] ; 0xe87 +10035cc4: 4b1d ldr r3, [pc, #116] ; (10035d3c ) +10035cc6: f8df 8080 ldr.w r8, [pc, #128] ; 10035d48 +10035cca: 701a strb r2, [r3, #0] +10035ccc: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +10035cd0: 2700 movs r7, #0 +10035cd2: f043 0310 orr.w r3, r3, #16 +10035cd6: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035cda: 2006 movs r0, #6 +10035cdc: f8d8 3010 ldr.w r3, [r8, #16] +10035ce0: f884 7e88 strb.w r7, [r4, #3720] ; 0xe88 +10035ce4: 4798 blx r3 +10035ce6: f8d8 300c ldr.w r3, [r8, #12] +10035cea: 2006 movs r0, #6 +10035cec: 4798 blx r3 +10035cee: 2006 movs r0, #6 +10035cf0: f44f 5180 mov.w r1, #4096 ; 0x1000 +10035cf4: f7e8 ff30 bl 1001eb58 +10035cf8: 2006 movs r0, #6 +10035cfa: f7fe ff94 bl 10034c26 +10035cfe: 4b10 ldr r3, [pc, #64] ; (10035d40 ) +10035d00: 701f strb r7, [r3, #0] +10035d02: f894 3e84 ldrb.w r3, [r4, #3716] ; 0xe84 +10035d06: 075b lsls r3, r3, #29 +10035d08: d404 bmi.n 10035d14 +10035d0a: 4628 mov r0, r5 +10035d0c: 2104 movs r1, #4 +10035d0e: 4632 mov r2, r6 +10035d10: f7ff fc6c bl 100355ec +10035d14: 4a0b ldr r2, [pc, #44] ; (10035d44 ) +10035d16: f44f 3300 mov.w r3, #131072 ; 0x20000 +10035d1a: 6013 str r3, [r2, #0] +10035d1c: 4628 mov r0, r5 +10035d1e: 9300 str r3, [sp, #0] +10035d20: 4669 mov r1, sp +10035d22: 2300 movs r3, #0 +10035d24: aa03 add r2, sp, #12 +10035d26: 9301 str r3, [sp, #4] +10035d28: 9302 str r3, [sp, #8] +10035d2a: 9303 str r3, [sp, #12] +10035d2c: 9304 str r3, [sp, #16] +10035d2e: 9305 str r3, [sp, #20] +10035d30: f7fa fdc6 bl 100308c0 +10035d34: b006 add sp, #24 +10035d36: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10035d3a: bf00 nop +10035d3c: 40080573 .word 0x40080573 +10035d40: 10055335 .word 0x10055335 +10035d44: 40080134 .word 0x40080134 +10035d48: 10000318 .word 0x10000318 + +10035d4c : +10035d4c: b570 push {r4, r5, r6, lr} +10035d4e: f241 6318 movw r3, #5656 ; 0x1618 +10035d52: 58c4 ldr r4, [r0, r3] +10035d54: b086 sub sp, #24 +10035d56: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +10035d5a: 4605 mov r5, r0 +10035d5c: 2b00 cmp r3, #0 +10035d5e: f000 808e beq.w 10035e7e +10035d62: 2100 movs r1, #0 +10035d64: f009 fe46 bl 1003f9f4 +10035d68: 2801 cmp r0, #1 +10035d6a: f040 8088 bne.w 10035e7e +10035d6e: f894 3e7c ldrb.w r3, [r4, #3708] ; 0xe7c +10035d72: b11b cbz r3, 10035d7c +10035d74: f504 6067 add.w r0, r4, #3696 ; 0xe70 +10035d78: f7ff fb96 bl 100354a8 +10035d7c: f894 3e7f ldrb.w r3, [r4, #3711] ; 0xe7f +10035d80: 091b lsrs r3, r3, #4 +10035d82: 2b01 cmp r3, #1 +10035d84: d10a bne.n 10035d9c +10035d86: 4b3f ldr r3, [pc, #252] ; (10035e84 ) +10035d88: 681b ldr r3, [r3, #0] +10035d8a: f3c3 4207 ubfx r2, r3, #16, #8 +10035d8e: 0e1b lsrs r3, r3, #24 +10035d90: f884 2e87 strb.w r2, [r4, #3719] ; 0xe87 +10035d94: bf18 it ne +10035d96: 461a movne r2, r3 +10035d98: f884 2e88 strb.w r2, [r4, #3720] ; 0xe88 +10035d9c: 2300 movs r3, #0 +10035d9e: f884 3e8a strb.w r3, [r4, #3722] ; 0xe8a +10035da2: f884 3e8b strb.w r3, [r4, #3723] ; 0xe8b +10035da6: f894 2e8e ldrb.w r2, [r4, #3726] ; 0xe8e +10035daa: 4b37 ldr r3, [pc, #220] ; (10035e88 ) +10035dac: 4e37 ldr r6, [pc, #220] ; (10035e8c ) +10035dae: 701a strb r2, [r3, #0] +10035db0: 6933 ldr r3, [r6, #16] +10035db2: 2006 movs r0, #6 +10035db4: 4798 blx r3 +10035db6: 68f3 ldr r3, [r6, #12] +10035db8: 2006 movs r0, #6 +10035dba: 4798 blx r3 +10035dbc: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +10035dc0: f023 0312 bic.w r3, r3, #18 +10035dc4: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035dc8: f894 3e7f ldrb.w r3, [r4, #3711] ; 0xe7f +10035dcc: 2b2f cmp r3, #47 ; 0x2f +10035dce: d802 bhi.n 10035dd6 +10035dd0: 4628 mov r0, r5 +10035dd2: f7ff feaf bl 10035b34 +10035dd6: f894 3e7b ldrb.w r3, [r4, #3707] ; 0xe7b +10035dda: 2b00 cmp r3, #0 +10035ddc: d04c beq.n 10035e78 +10035dde: f894 3e7e ldrb.w r3, [r4, #3710] ; 0xe7e +10035de2: bb13 cbnz r3, 10035e2a +10035de4: f894 1e88 ldrb.w r1, [r4, #3720] ; 0xe88 +10035de8: f894 2e87 ldrb.w r2, [r4, #3719] ; 0xe87 +10035dec: 428a cmp r2, r1 +10035dee: d143 bne.n 10035e78 +10035df0: 4827 ldr r0, [pc, #156] ; (10035e90 ) +10035df2: 2101 movs r1, #1 +10035df4: f884 1e7e strb.w r1, [r4, #3710] ; 0xe7e +10035df8: f2a0 40ef subw r0, r0, #1263 ; 0x4ef +10035dfc: f880 24ef strb.w r2, [r0, #1263] ; 0x4ef +10035e00: 2202 movs r2, #2 +10035e02: 6002 str r2, [r0, #0] +10035e04: 9202 str r2, [sp, #8] +10035e06: f44f 3200 mov.w r2, #131072 ; 0x20000 +10035e0a: 9203 str r2, [sp, #12] +10035e0c: 9105 str r1, [sp, #20] +10035e0e: 4628 mov r0, r5 +10035e10: 4669 mov r1, sp +10035e12: aa03 add r2, sp, #12 +10035e14: 9300 str r3, [sp, #0] +10035e16: 9301 str r3, [sp, #4] +10035e18: 9304 str r3, [sp, #16] +10035e1a: f7fa fd51 bl 100308c0 +10035e1e: f894 3e88 ldrb.w r3, [r4, #3720] ; 0xe88 +10035e22: 3b01 subs r3, #1 +10035e24: f884 3e88 strb.w r3, [r4, #3720] ; 0xe88 +10035e28: e026 b.n 10035e78 +10035e2a: f894 2e7f ldrb.w r2, [r4, #3711] ; 0xe7f +10035e2e: 0912 lsrs r2, r2, #4 +10035e30: 2a01 cmp r2, #1 +10035e32: d121 bne.n 10035e78 +10035e34: f894 3e88 ldrb.w r3, [r4, #3720] ; 0xe88 +10035e38: f894 1e87 ldrb.w r1, [r4, #3719] ; 0xe87 +10035e3c: 4299 cmp r1, r3 +10035e3e: d01b beq.n 10035e78 +10035e40: 4913 ldr r1, [pc, #76] ; (10035e90 ) +10035e42: 7809 ldrb r1, [r1, #0] +10035e44: 428b cmp r3, r1 +10035e46: d017 beq.n 10035e78 +10035e48: f894 3e7a ldrb.w r3, [r4, #3706] ; 0xe7a +10035e4c: b1a3 cbz r3, 10035e78 +10035e4e: 4911 ldr r1, [pc, #68] ; (10035e94 ) +10035e50: 2300 movs r3, #0 +10035e52: 4811 ldr r0, [pc, #68] ; (10035e98 ) +10035e54: f884 3e7e strb.w r3, [r4, #3710] ; 0xe7e +10035e58: 600a str r2, [r1, #0] +10035e5a: f44f 3100 mov.w r1, #131072 ; 0x20000 +10035e5e: 6001 str r1, [r0, #0] +10035e60: e88d 000a stmia.w sp, {r1, r3} +10035e64: 9202 str r2, [sp, #8] +10035e66: 9303 str r3, [sp, #12] +10035e68: 9304 str r3, [sp, #16] +10035e6a: 4628 mov r0, r5 +10035e6c: 2302 movs r3, #2 +10035e6e: 4669 mov r1, sp +10035e70: aa03 add r2, sp, #12 +10035e72: 9305 str r3, [sp, #20] +10035e74: f7fa fd24 bl 100308c0 +10035e78: 2301 movs r3, #1 +10035e7a: f884 3e7a strb.w r3, [r4, #3706] ; 0xe7a +10035e7e: b006 add sp, #24 +10035e80: bd70 pop {r4, r5, r6, pc} +10035e82: bf00 nop +10035e84: 400806a8 .word 0x400806a8 +10035e88: 40080558 .word 0x40080558 +10035e8c: 10000318 .word 0x10000318 +10035e90: 40080573 .word 0x40080573 +10035e94: 40080084 .word 0x40080084 +10035e98: 40080134 .word 0x40080134 + +10035e9c : +10035e9c: b510 push {r4, lr} +10035e9e: f241 6318 movw r3, #5656 ; 0x1618 +10035ea2: 58c3 ldr r3, [r0, r3] +10035ea4: 4604 mov r4, r0 +10035ea6: f893 2e81 ldrb.w r2, [r3, #3713] ; 0xe81 +10035eaa: 2a01 cmp r2, #1 +10035eac: d114 bne.n 10035ed8 +10035eae: f893 1e7f ldrb.w r1, [r3, #3711] ; 0xe7f +10035eb2: 0709 lsls r1, r1, #28 +10035eb4: d008 beq.n 10035ec8 +10035eb6: 210c movs r1, #12 +10035eb8: 2200 movs r2, #0 +10035eba: f7ff fb97 bl 100355ec +10035ebe: 4620 mov r0, r4 +10035ec0: e8bd 4010 ldmia.w sp!, {r4, lr} +10035ec4: f7ff bdcc b.w 10035a60 +10035ec8: f893 3e84 ldrb.w r3, [r3, #3716] ; 0xe84 +10035ecc: b923 cbnz r3, 10035ed8 +10035ece: 2104 movs r1, #4 +10035ed0: e8bd 4010 ldmia.w sp!, {r4, lr} +10035ed4: f7ff bb8a b.w 100355ec +10035ed8: bd10 pop {r4, pc} + +10035eda : +10035eda: b570 push {r4, r5, r6, lr} +10035edc: f241 6318 movw r3, #5656 ; 0x1618 +10035ee0: 58c4 ldr r4, [r0, r3] +10035ee2: b086 sub sp, #24 +10035ee4: f894 3e7b ldrb.w r3, [r4, #3707] ; 0xe7b +10035ee8: 4605 mov r5, r0 +10035eea: b183 cbz r3, 10035f0e +10035eec: f894 3e7e ldrb.w r3, [r4, #3710] ; 0xe7e +10035ef0: 2b01 cmp r3, #1 +10035ef2: d10c bne.n 10035f0e +10035ef4: f44f 3200 mov.w r2, #131072 ; 0x20000 +10035ef8: 2300 movs r3, #0 +10035efa: 9203 str r2, [sp, #12] +10035efc: 4669 mov r1, sp +10035efe: aa03 add r2, sp, #12 +10035f00: 9300 str r3, [sp, #0] +10035f02: 9301 str r3, [sp, #4] +10035f04: 9302 str r3, [sp, #8] +10035f06: 9304 str r3, [sp, #16] +10035f08: 9305 str r3, [sp, #20] +10035f0a: f7fa fcd9 bl 100308c0 +10035f0e: f894 6e72 ldrb.w r6, [r4, #3698] ; 0xe72 +10035f12: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +10035f16: b16e cbz r6, 10035f34 +10035f18: 2200 movs r2, #0 +10035f1a: f884 2e72 strb.w r2, [r4, #3698] ; 0xe72 +10035f1e: f013 0f05 tst.w r3, #5 +10035f22: f023 0202 bic.w r2, r3, #2 +10035f26: f884 2e85 strb.w r2, [r4, #3717] ; 0xe85 +10035f2a: d131 bne.n 10035f90 +10035f2c: 4628 mov r0, r5 +10035f2e: f7ff fcbf bl 100358b0 +10035f32: e02d b.n 10035f90 +10035f34: f894 2e8a ldrb.w r2, [r4, #3722] ; 0xe8a +10035f38: f023 0310 bic.w r3, r3, #16 +10035f3c: 3201 adds r2, #1 +10035f3e: b2d2 uxtb r2, r2 +10035f40: 2a02 cmp r2, #2 +10035f42: f884 2e8a strb.w r2, [r4, #3722] ; 0xe8a +10035f46: f884 3e85 strb.w r3, [r4, #3717] ; 0xe85 +10035f4a: d9ef bls.n 10035f2c +10035f4c: 4628 mov r0, r5 +10035f4e: 4631 mov r1, r6 +10035f50: f009 fd50 bl 1003f9f4 +10035f54: 2801 cmp r0, #1 +10035f56: d118 bne.n 10035f8a +10035f58: f894 3e7f ldrb.w r3, [r4, #3711] ; 0xe7f +10035f5c: f3c3 0203 ubfx r2, r3, #0, #4 +10035f60: 071b lsls r3, r3, #28 +10035f62: d102 bne.n 10035f6a +10035f64: f884 2e7a strb.w r2, [r4, #3706] ; 0xe7a +10035f68: e00f b.n 10035f8a +10035f6a: f894 3e8b ldrb.w r3, [r4, #3723] ; 0xe8b +10035f6e: 3301 adds r3, #1 +10035f70: b2db uxtb r3, r3 +10035f72: 2b02 cmp r3, #2 +10035f74: f884 3e8b strb.w r3, [r4, #3723] ; 0xe8b +10035f78: d904 bls.n 10035f84 +10035f7a: f884 6e7a strb.w r6, [r4, #3706] ; 0xe7a +10035f7e: f884 6e8b strb.w r6, [r4, #3723] ; 0xe8b +10035f82: e002 b.n 10035f8a +10035f84: 4628 mov r0, r5 +10035f86: f7ff fdb7 bl 10035af8 +10035f8a: 2300 movs r3, #0 +10035f8c: f884 3e8a strb.w r3, [r4, #3722] ; 0xe8a +10035f90: b006 add sp, #24 +10035f92: bd70 pop {r4, r5, r6, pc} + +10035f94 : +10035f94: b538 push {r3, r4, r5, lr} +10035f96: 4d10 ldr r5, [pc, #64] ; (10035fd8 ) +10035f98: 4604 mov r4, r0 +10035f9a: 68eb ldr r3, [r5, #12] +10035f9c: 2006 movs r0, #6 +10035f9e: 4798 blx r3 +10035fa0: 692b ldr r3, [r5, #16] +10035fa2: 2006 movs r0, #6 +10035fa4: 4798 blx r3 +10035fa6: f241 3278 movw r2, #4984 ; 0x1378 +10035faa: 5ca2 ldrb r2, [r4, r2] +10035fac: f241 6318 movw r3, #5656 ; 0x1618 +10035fb0: 58e3 ldr r3, [r4, r3] +10035fb2: b17a cbz r2, 10035fd4 +10035fb4: 4a09 ldr r2, [pc, #36] ; (10035fdc ) +10035fb6: 7812 ldrb r2, [r2, #0] +10035fb8: b93a cbnz r2, 10035fca +10035fba: f893 3e81 ldrb.w r3, [r3, #3713] ; 0xe81 +10035fbe: b14b cbz r3, 10035fd4 +10035fc0: 4620 mov r0, r4 +10035fc2: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10035fc6: f7ff bf88 b.w 10035eda +10035fca: 4620 mov r0, r4 +10035fcc: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10035fd0: f7fe be68 b.w 10034ca4 +10035fd4: bd38 pop {r3, r4, r5, pc} +10035fd6: bf00 nop +10035fd8: 10000318 .word 0x10000318 +10035fdc: 10055335 .word 0x10055335 + +10035fe0 : +10035fe0: b538 push {r3, r4, r5, lr} +10035fe2: f241 6318 movw r3, #5656 ; 0x1618 +10035fe6: 58c4 ldr r4, [r0, r3] +10035fe8: b151 cbz r1, 10036000 +10035fea: f241 3378 movw r3, #4984 ; 0x1378 +10035fee: 5cc0 ldrb r0, [r0, r3] +10035ff0: b190 cbz r0, 10036018 +10035ff2: 2501 movs r5, #1 +10035ff4: f884 5e70 strb.w r5, [r4, #3696] ; 0xe70 +10035ff8: f7fe fe5c bl 10034cb4 +10035ffc: 4628 mov r0, r5 +10035ffe: bd38 pop {r3, r4, r5, pc} +10036000: f894 3e7c ldrb.w r3, [r4, #3708] ; 0xe7c +10036004: 2b01 cmp r3, #1 +10036006: d103 bne.n 10036010 +10036008: f504 6067 add.w r0, r4, #3696 ; 0xe70 +1003600c: f7ff fa4c bl 100354a8 +10036010: 2300 movs r3, #0 +10036012: f884 3e70 strb.w r3, [r4, #3696] ; 0xe70 +10036016: 2001 movs r0, #1 +10036018: bd38 pop {r3, r4, r5, pc} + ... + +1003601c : +1003601c: b5f0 push {r4, r5, r6, r7, lr} +1003601e: b087 sub sp, #28 +10036020: 4604 mov r4, r0 +10036022: 460d mov r5, r1 +10036024: 220c movs r2, #12 +10036026: 2100 movs r1, #0 +10036028: 4668 mov r0, sp +1003602a: f00c f96e bl 1004230a +1003602e: 2100 movs r1, #0 +10036030: 220c movs r2, #12 +10036032: a803 add r0, sp, #12 +10036034: f00c f969 bl 1004230a +10036038: f241 6318 movw r3, #5656 ; 0x1618 +1003603c: 4620 mov r0, r4 +1003603e: 58e7 ldr r7, [r4, r3] +10036040: f7ff fa58 bl 100354f4 +10036044: 7829 ldrb r1, [r5, #0] +10036046: 4e12 ldr r6, [pc, #72] ; (10036090 ) +10036048: f011 017f ands.w r1, r1, #127 ; 0x7f +1003604c: d107 bne.n 1003605e +1003604e: 4620 mov r0, r4 +10036050: f7ff ffc6 bl 10035fe0 +10036054: 233f movs r3, #63 ; 0x3f +10036056: 7033 strb r3, [r6, #0] +10036058: 2302 movs r3, #2 +1003605a: 9303 str r3, [sp, #12] +1003605c: e00b b.n 10036076 +1003605e: 7869 ldrb r1, [r5, #1] +10036060: f507 6067 add.w r0, r7, #3696 ; 0xe70 +10036064: f001 010f and.w r1, r1, #15 +10036068: 78aa ldrb r2, [r5, #2] +1003606a: f7ff f84b bl 10035104 +1003606e: 23ff movs r3, #255 ; 0xff +10036070: 7033 strb r3, [r6, #0] +10036072: 2302 movs r3, #2 +10036074: 9300 str r3, [sp, #0] +10036076: 4620 mov r0, r4 +10036078: 4669 mov r1, sp +1003607a: aa03 add r2, sp, #12 +1003607c: f7fa fc20 bl 100308c0 +10036080: 7829 ldrb r1, [r5, #0] +10036082: 4620 mov r0, r4 +10036084: f001 017f and.w r1, r1, #127 ; 0x7f +10036088: f7ff fbc0 bl 1003580c +1003608c: b007 add sp, #28 +1003608e: bdf0 pop {r4, r5, r6, r7, pc} +10036090: 40080421 .word 0x40080421 + +10036094 : +10036094: b5f8 push {r3, r4, r5, r6, r7, lr} +10036096: 4a3d ldr r2, [pc, #244] ; (1003618c ) +10036098: 4e3d ldr r6, [pc, #244] ; (10036190 ) +1003609a: 7812 ldrb r2, [r2, #0] +1003609c: 7834 ldrb r4, [r6, #0] +1003609e: f241 6318 movw r3, #5656 ; 0x1618 +100360a2: b2e4 uxtb r4, r4 +100360a4: 4294 cmp r4, r2 +100360a6: 4605 mov r5, r0 +100360a8: 58c3 ldr r3, [r0, r3] +100360aa: d06d beq.n 10036188 +100360ac: 4a39 ldr r2, [pc, #228] ; (10036194 ) +100360ae: 3401 adds r4, #1 +100360b0: f44f 61cc mov.w r1, #1632 ; 0x660 +100360b4: f004 040f and.w r4, r4, #15 +100360b8: 8011 strh r1, [r2, #0] +100360ba: 00e2 lsls r2, r4, #3 +100360bc: 4936 ldr r1, [pc, #216] ; (10036198 ) +100360be: f442 4200 orr.w r2, r2, #32768 ; 0x8000 +100360c2: 5a51 ldrh r1, [r2, r1] +100360c4: f240 3721 movw r7, #801 ; 0x321 +100360c8: f3c1 010b ubfx r1, r1, #0, #12 +100360cc: 42b9 cmp r1, r7 +100360ce: d132 bne.n 10036136 +100360d0: f893 0e77 ldrb.w r0, [r3, #3703] ; 0xe77 +100360d4: 2801 cmp r0, #1 +100360d6: d153 bne.n 10036180 +100360d8: 2100 movs r1, #0 +100360da: f102 4280 add.w r2, r2, #1073741824 ; 0x40000000 +100360de: f883 1e77 strb.w r1, [r3, #3703] ; 0xe77 +100360e2: f502 2200 add.w r2, r2, #524288 ; 0x80000 +100360e6: 7812 ldrb r2, [r2, #0] +100360e8: 0612 lsls r2, r2, #24 +100360ea: d502 bpl.n 100360f2 +100360ec: f883 1e79 strb.w r1, [r3, #3705] ; 0xe79 +100360f0: e016 b.n 10036120 +100360f2: f8d3 2e90 ldr.w r2, [r3, #3728] ; 0xe90 +100360f6: f883 0e79 strb.w r0, [r3, #3705] ; 0xe79 +100360fa: 1c57 adds r7, r2, #1 +100360fc: d010 beq.n 10036120 +100360fe: 3201 adds r2, #1 +10036100: 0550 lsls r0, r2, #21 +10036102: d402 bmi.n 1003610a +10036104: f8c3 2e90 str.w r2, [r3, #3728] ; 0xe90 +10036108: e00a b.n 10036120 +1003610a: f8c3 1e90 str.w r1, [r3, #3728] ; 0xe90 +1003610e: 4b23 ldr r3, [pc, #140] ; (1003619c ) +10036110: 681b ldr r3, [r3, #0] +10036112: 005a lsls r2, r3, #1 +10036114: d504 bpl.n 10036120 +10036116: 4b22 ldr r3, [pc, #136] ; (100361a0 ) +10036118: 4822 ldr r0, [pc, #136] ; (100361a4 ) +1003611a: 6819 ldr r1, [r3, #0] +1003611c: 4b22 ldr r3, [pc, #136] ; (100361a8 ) +1003611e: 4798 blx r3 +10036120: 4628 mov r0, r5 +10036122: f7ff fbc5 bl 100358b0 +10036126: 4b21 ldr r3, [pc, #132] ; (100361ac ) +10036128: 781b ldrb r3, [r3, #0] +1003612a: 2bff cmp r3, #255 ; 0xff +1003612c: d028 beq.n 10036180 +1003612e: 4628 mov r0, r5 +10036130: f7ff feb4 bl 10035e9c +10036134: e024 b.n 10036180 +10036136: f240 1523 movw r5, #291 ; 0x123 +1003613a: 42a9 cmp r1, r5 +1003613c: d119 bne.n 10036172 +1003613e: f893 1e76 ldrb.w r1, [r3, #3702] ; 0xe76 +10036142: 2901 cmp r1, #1 +10036144: d11c bne.n 10036180 +10036146: 2100 movs r1, #0 +10036148: f102 4280 add.w r2, r2, #1073741824 ; 0x40000000 +1003614c: f883 1e76 strb.w r1, [r3, #3702] ; 0xe76 +10036150: f502 2200 add.w r2, r2, #524288 ; 0x80000 +10036154: 7812 ldrb r2, [r2, #0] +10036156: f012 0f80 tst.w r2, #128 ; 0x80 +1003615a: bf14 ite ne +1003615c: 2200 movne r2, #0 +1003615e: 2201 moveq r2, #1 +10036160: f883 2e78 strb.w r2, [r3, #3704] ; 0xe78 +10036164: f893 3e81 ldrb.w r3, [r3, #3713] ; 0xe81 +10036168: 2b03 cmp r3, #3 +1003616a: d009 beq.n 10036180 +1003616c: f7ff fba0 bl 100358b0 +10036170: e006 b.n 10036180 +10036172: 4b0a ldr r3, [pc, #40] ; (1003619c ) +10036174: 681b ldr r3, [r3, #0] +10036176: 005b lsls r3, r3, #1 +10036178: d502 bpl.n 10036180 +1003617a: 480d ldr r0, [pc, #52] ; (100361b0 ) +1003617c: 4b0a ldr r3, [pc, #40] ; (100361a8 ) +1003617e: 4798 blx r3 +10036180: 2c0f cmp r4, #15 +10036182: bf08 it eq +10036184: 2400 moveq r4, #0 +10036186: 7034 strb r4, [r6, #0] +10036188: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003618a: bf00 nop +1003618c: 4008047e .word 0x4008047e +10036190: 4008047f .word 0x4008047f +10036194: 40080140 .word 0x40080140 +10036198: 40080006 .word 0x40080006 +1003619c: 10000314 .word 0x10000314 +100361a0: 40080560 .word 0x40080560 +100361a4: 1004ab80 .word 0x1004ab80 +100361a8: 0000f39d .word 0x0000f39d +100361ac: 4008041a .word 0x4008041a +100361b0: 1004ab90 .word 0x1004ab90 + +100361b4 : +100361b4: b570 push {r4, r5, r6, lr} +100361b6: f241 6318 movw r3, #5656 ; 0x1618 +100361ba: 58c4 ldr r4, [r0, r3] +100361bc: 4606 mov r6, r0 +100361be: f894 3e70 ldrb.w r3, [r4, #3696] ; 0xe70 +100361c2: 2b01 cmp r3, #1 +100361c4: d106 bne.n 100361d4 +100361c6: f894 3e7c ldrb.w r3, [r4, #3708] ; 0xe7c +100361ca: b11b cbz r3, 100361d4 +100361cc: f504 6067 add.w r0, r4, #3696 ; 0xe70 +100361d0: f7ff f96a bl 100354a8 +100361d4: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +100361d8: 2b03 cmp r3, #3 +100361da: d119 bne.n 10036210 +100361dc: 4d0f ldr r5, [pc, #60] ; (1003621c ) +100361de: 2007 movs r0, #7 +100361e0: 68eb ldr r3, [r5, #12] +100361e2: 4798 blx r3 +100361e4: 692b ldr r3, [r5, #16] +100361e6: 2007 movs r0, #7 +100361e8: 4798 blx r3 +100361ea: 68eb ldr r3, [r5, #12] +100361ec: 2006 movs r0, #6 +100361ee: 4798 blx r3 +100361f0: 692b ldr r3, [r5, #16] +100361f2: 2006 movs r0, #6 +100361f4: 4798 blx r3 +100361f6: 2300 movs r3, #0 +100361f8: f884 3e98 strb.w r3, [r4, #3736] ; 0xe98 +100361fc: f884 3e99 strb.w r3, [r4, #3737] ; 0xe99 +10036200: 2301 movs r3, #1 +10036202: f884 3e7a strb.w r3, [r4, #3706] ; 0xe7a +10036206: 4630 mov r0, r6 +10036208: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003620c: f7fe bd28 b.w 10034c60 +10036210: 4630 mov r0, r6 +10036212: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10036216: f7ff bce5 b.w 10035be4 +1003621a: bf00 nop +1003621c: 10000318 .word 0x10000318 + +10036220 : +10036220: b538 push {r3, r4, r5, lr} +10036222: f241 6318 movw r3, #5656 ; 0x1618 +10036226: 58c4 ldr r4, [r0, r3] +10036228: 4605 mov r5, r0 +1003622a: f894 3e70 ldrb.w r3, [r4, #3696] ; 0xe70 +1003622e: 2b01 cmp r3, #1 +10036230: d106 bne.n 10036240 +10036232: f894 3e7c ldrb.w r3, [r4, #3708] ; 0xe7c +10036236: b11b cbz r3, 10036240 +10036238: f504 6067 add.w r0, r4, #3696 ; 0xe70 +1003623c: f7ff f934 bl 100354a8 +10036240: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +10036244: 2b03 cmp r3, #3 +10036246: d004 beq.n 10036252 +10036248: 4628 mov r0, r5 +1003624a: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1003624e: f7ff bd27 b.w 10035ca0 +10036252: bd38 pop {r3, r4, r5, pc} + +10036254 : +10036254: f241 6318 movw r3, #5656 ; 0x1618 +10036258: 58c3 ldr r3, [r0, r3] +1003625a: f893 2e84 ldrb.w r2, [r3, #3716] ; 0xe84 +1003625e: 2a02 cmp r2, #2 +10036260: d005 beq.n 1003626e +10036262: f893 3e81 ldrb.w r3, [r3, #3713] ; 0xe81 +10036266: 2b03 cmp r3, #3 +10036268: d001 beq.n 1003626e +1003626a: f7ff bd6f b.w 10035d4c +1003626e: 4770 bx lr + +10036270 : +10036270: b510 push {r4, lr} +10036272: f241 6318 movw r3, #5656 ; 0x1618 +10036276: 2100 movs r1, #0 +10036278: 58c4 ldr r4, [r0, r3] +1003627a: f009 fbbb bl 1003f9f4 +1003627e: 2801 cmp r0, #1 +10036280: d10b bne.n 1003629a +10036282: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +10036286: b143 cbz r3, 1003629a +10036288: 2b03 cmp r3, #3 +1003628a: d006 beq.n 1003629a +1003628c: 4c03 ldr r4, [pc, #12] ; (1003629c ) +1003628e: 2006 movs r0, #6 +10036290: 6923 ldr r3, [r4, #16] +10036292: 4798 blx r3 +10036294: 68e3 ldr r3, [r4, #12] +10036296: 2006 movs r0, #6 +10036298: 4798 blx r3 +1003629a: bd10 pop {r4, pc} +1003629c: 10000318 .word 0x10000318 + +100362a0 : +100362a0: b570 push {r4, r5, r6, lr} +100362a2: f241 6318 movw r3, #5656 ; 0x1618 +100362a6: 2100 movs r1, #0 +100362a8: 4605 mov r5, r0 +100362aa: 58c4 ldr r4, [r0, r3] +100362ac: f009 fba2 bl 1003f9f4 +100362b0: 2801 cmp r0, #1 +100362b2: d11c bne.n 100362ee +100362b4: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +100362b8: b1cb cbz r3, 100362ee +100362ba: 2b03 cmp r3, #3 +100362bc: d017 beq.n 100362ee +100362be: 4e0c ldr r6, [pc, #48] ; (100362f0 ) +100362c0: 2006 movs r0, #6 +100362c2: 6933 ldr r3, [r6, #16] +100362c4: 4798 blx r3 +100362c6: 68f3 ldr r3, [r6, #12] +100362c8: 2006 movs r0, #6 +100362ca: 4798 blx r3 +100362cc: 2300 movs r3, #0 +100362ce: f884 3e72 strb.w r3, [r4, #3698] ; 0xe72 +100362d2: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +100362d6: f023 0202 bic.w r2, r3, #2 +100362da: f013 0f05 tst.w r3, #5 +100362de: f884 2e85 strb.w r2, [r4, #3717] ; 0xe85 +100362e2: d104 bne.n 100362ee +100362e4: 4628 mov r0, r5 +100362e6: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +100362ea: f7ff bae1 b.w 100358b0 +100362ee: bd70 pop {r4, r5, r6, pc} +100362f0: 10000318 .word 0x10000318 + +100362f4 : +100362f4: b538 push {r3, r4, r5, lr} +100362f6: 2100 movs r1, #0 +100362f8: f241 6318 movw r3, #5656 ; 0x1618 +100362fc: 4604 mov r4, r0 +100362fe: 58c5 ldr r5, [r0, r3] +10036300: f009 fb78 bl 1003f9f4 +10036304: 2801 cmp r0, #1 +10036306: d113 bne.n 10036330 +10036308: f895 3e81 ldrb.w r3, [r5, #3713] ; 0xe81 +1003630c: b183 cbz r3, 10036330 +1003630e: 2b03 cmp r3, #3 +10036310: d00e beq.n 10036330 +10036312: f895 3e7f ldrb.w r3, [r5, #3711] ; 0xe7f +10036316: f003 030f and.w r3, r3, #15 +1003631a: 2b02 cmp r3, #2 +1003631c: d003 beq.n 10036326 +1003631e: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10036322: f7fe bdf1 b.w 10034f08 +10036326: 4620 mov r0, r4 +10036328: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1003632c: f7ff bbe4 b.w 10035af8 +10036330: bd38 pop {r3, r4, r5, pc} + +10036332 : +10036332: b538 push {r3, r4, r5, lr} +10036334: 2100 movs r1, #0 +10036336: f241 6318 movw r3, #5656 ; 0x1618 +1003633a: 4605 mov r5, r0 +1003633c: 58c4 ldr r4, [r0, r3] +1003633e: f009 fb59 bl 1003f9f4 +10036342: 2801 cmp r0, #1 +10036344: d112 bne.n 1003636c +10036346: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +1003634a: b17b cbz r3, 1003636c +1003634c: 2b03 cmp r3, #3 +1003634e: d00d beq.n 1003636c +10036350: f894 3e85 ldrb.w r3, [r4, #3717] ; 0xe85 +10036354: f023 0201 bic.w r2, r3, #1 +10036358: f013 0f06 tst.w r3, #6 +1003635c: f884 2e85 strb.w r2, [r4, #3717] ; 0xe85 +10036360: d104 bne.n 1003636c +10036362: 4628 mov r0, r5 +10036364: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +10036368: f7ff baa2 b.w 100358b0 +1003636c: bd38 pop {r3, r4, r5, pc} + +1003636e : +1003636e: f241 6318 movw r3, #5656 ; 0x1618 +10036372: 58c3 ldr r3, [r0, r3] +10036374: f893 3e81 ldrb.w r3, [r3, #3713] ; 0xe81 +10036378: b10b cbz r3, 1003637e +1003637a: f7ff bd8f b.w 10035e9c +1003637e: 4770 bx lr + +10036380 : +10036380: f7ff be88 b.w 10036094 + +10036384 : +10036384: b5f8 push {r3, r4, r5, r6, r7, lr} +10036386: f241 6318 movw r3, #5656 ; 0x1618 +1003638a: 58c4 ldr r4, [r0, r3] +1003638c: 780b ldrb r3, [r1, #0] +1003638e: 4605 mov r5, r0 +10036390: f3c3 0306 ubfx r3, r3, #0, #7 +10036394: f884 3e81 strb.w r3, [r4, #3713] ; 0xe81 +10036398: b2da uxtb r2, r3 +1003639a: 780b ldrb r3, [r1, #0] +1003639c: 2a03 cmp r2, #3 +1003639e: f3c3 13c0 ubfx r3, r3, #7, #1 +100363a2: f884 3e82 strb.w r3, [r4, #3714] ; 0xe82 +100363a6: 7848 ldrb r0, [r1, #1] +100363a8: f894 3e7f ldrb.w r3, [r4, #3711] ; 0xe7f +100363ac: ea4f 1010 mov.w r0, r0, lsr #4 +100363b0: f360 0303 bfi r3, r0, #0, #4 +100363b4: f884 3e7f strb.w r3, [r4, #3711] ; 0xe7f +100363b8: 78cb ldrb r3, [r1, #3] +100363ba: f3c3 0300 ubfx r3, r3, #0, #1 +100363be: f884 3e71 strb.w r3, [r4, #3697] ; 0xe71 +100363c2: 7848 ldrb r0, [r1, #1] +100363c4: f894 3e7f ldrb.w r3, [r4, #3711] ; 0xe7f +100363c8: f360 1307 bfi r3, r0, #4, #4 +100363cc: f884 3e7f strb.w r3, [r4, #3711] ; 0xe7f +100363d0: 788b ldrb r3, [r1, #2] +100363d2: f884 3e80 strb.w r3, [r4, #3712] ; 0xe80 +100363d6: d117 bne.n 10036408 +100363d8: 79cb ldrb r3, [r1, #7] +100363da: f884 3e94 strb.w r3, [r4, #3732] ; 0xe94 +100363de: 7a0a ldrb r2, [r1, #8] +100363e0: 79cb ldrb r3, [r1, #7] +100363e2: 429a cmp r2, r3 +100363e4: bf38 it cc +100363e6: 4613 movcc r3, r2 +100363e8: f884 3e95 strb.w r3, [r4, #3733] ; 0xe95 +100363ec: 7a4a ldrb r2, [r1, #9] +100363ee: 79cb ldrb r3, [r1, #7] +100363f0: 429a cmp r2, r3 +100363f2: bf38 it cc +100363f4: 4613 movcc r3, r2 +100363f6: f884 3e96 strb.w r3, [r4, #3734] ; 0xe96 +100363fa: 7a8a ldrb r2, [r1, #10] +100363fc: 79cb ldrb r3, [r1, #7] +100363fe: 429a cmp r2, r3 +10036400: bf38 it cc +10036402: 4613 movcc r3, r2 +10036404: f884 3e97 strb.w r3, [r4, #3735] ; 0xe97 +10036408: 790b ldrb r3, [r1, #4] +1003640a: 4628 mov r0, r5 +1003640c: f884 3e83 strb.w r3, [r4, #3715] ; 0xe83 +10036410: f7ff fe04 bl 1003601c +10036414: 4628 mov r0, r5 +10036416: f7fe fc2b bl 10034c70 +1003641a: f894 2e81 ldrb.w r2, [r4, #3713] ; 0xe81 +1003641e: 4b1f ldr r3, [pc, #124] ; (1003649c ) +10036420: 1e51 subs r1, r2, #1 +10036422: 2600 movs r6, #0 +10036424: 2901 cmp r1, #1 +10036426: 681f ldr r7, [r3, #0] +10036428: 4628 mov r0, r5 +1003642a: 601e str r6, [r3, #0] +1003642c: 461c mov r4, r3 +1003642e: d809 bhi.n 10036444 +10036430: 4631 mov r1, r6 +10036432: 2206 movs r2, #6 +10036434: 2304 movs r3, #4 +10036436: f7fe fc55 bl 10034ce4 +1003643a: 4628 mov r0, r5 +1003643c: 4631 mov r1, r6 +1003643e: 2207 movs r2, #7 +10036440: 230f movs r3, #15 +10036442: e00a b.n 1003645a +10036444: 2a03 cmp r2, #3 +10036446: d10b bne.n 10036460 +10036448: 4631 mov r1, r6 +1003644a: 2206 movs r2, #6 +1003644c: 4633 mov r3, r6 +1003644e: f7fe fc49 bl 10034ce4 +10036452: 4628 mov r0, r5 +10036454: 4631 mov r1, r6 +10036456: 2207 movs r2, #7 +10036458: 4633 mov r3, r6 +1003645a: f7fe fc43 bl 10034ce4 +1003645e: e006 b.n 1003646e +10036460: 2106 movs r1, #6 +10036462: f7fe fc65 bl 10034d30 +10036466: 4628 mov r0, r5 +10036468: 2107 movs r1, #7 +1003646a: f7fe fc61 bl 10034d30 +1003646e: 4b0c ldr r3, [pc, #48] ; (100364a0 ) +10036470: 22ff movs r2, #255 ; 0xff +10036472: 6027 str r7, [r4, #0] +10036474: 4628 mov r0, r5 +10036476: 701a strb r2, [r3, #0] +10036478: f7ff fae1 bl 10035a3e +1003647c: 6823 ldr r3, [r4, #0] +1003647e: f023 0308 bic.w r3, r3, #8 +10036482: 6023 str r3, [r4, #0] +10036484: 4b07 ldr r3, [pc, #28] ; (100364a4 ) +10036486: 681a ldr r2, [r3, #0] +10036488: f022 0208 bic.w r2, r2, #8 +1003648c: 601a str r2, [r3, #0] +1003648e: 4b06 ldr r3, [pc, #24] ; (100364a8 ) +10036490: 681a ldr r2, [r3, #0] +10036492: f022 0208 bic.w r2, r2, #8 +10036496: 601a str r2, [r3, #0] +10036498: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003649a: bf00 nop +1003649c: 10000314 .word 0x10000314 +100364a0: 400804c8 .word 0x400804c8 +100364a4: 10000310 .word 0x10000310 +100364a8: 1000030c .word 0x1000030c + +100364ac : +100364ac: b537 push {r0, r1, r2, r4, r5, lr} +100364ae: 2200 movs r2, #0 +100364b0: 9201 str r2, [sp, #4] +100364b2: f241 6218 movw r2, #5656 ; 0x1618 +100364b6: 5883 ldr r3, [r0, r2] +100364b8: 6884 ldr r4, [r0, #8] +100364ba: f893 2e81 ldrb.w r2, [r3, #3713] ; 0xe81 +100364be: f503 6567 add.w r5, r3, #3696 ; 0xe70 +100364c2: b142 cbz r2, 100364d6 +100364c4: f893 1e83 ldrb.w r1, [r3, #3715] ; 0xe83 +100364c8: f893 3e84 ldrb.w r3, [r3, #3716] ; 0xe84 +100364cc: 428b cmp r3, r1 +100364ce: d002 beq.n 100364d6 +100364d0: 2201 movs r2, #1 +100364d2: f7ff f88b bl 100355ec +100364d6: 3420 adds r4, #32 +100364d8: a901 add r1, sp, #4 +100364da: 4620 mov r0, r4 +100364dc: f7e6 fcfc bl 1001ced8 +100364e0: 4628 mov r0, r5 +100364e2: f7ff f853 bl 1003558c +100364e6: 4620 mov r0, r4 +100364e8: a901 add r1, sp, #4 +100364ea: f7e6 fcfd bl 1001cee8 +100364ee: b003 add sp, #12 +100364f0: bd30 pop {r4, r5, pc} + +100364f2 : +100364f2: f241 6318 movw r3, #5656 ; 0x1618 +100364f6: 58c3 ldr r3, [r0, r3] +100364f8: b082 sub sp, #8 +100364fa: f8d3 1e90 ldr.w r1, [r3, #3728] ; 0xe90 +100364fe: 2200 movs r2, #0 +10036500: 9201 str r2, [sp, #4] +10036502: 9101 str r1, [sp, #4] +10036504: 9801 ldr r0, [sp, #4] +10036506: f8c3 2e90 str.w r2, [r3, #3728] ; 0xe90 +1003650a: b002 add sp, #8 +1003650c: 4770 bx lr + ... + +10036510 : +10036510: b530 push {r4, r5, lr} +10036512: f241 6318 movw r3, #5656 ; 0x1618 +10036516: b087 sub sp, #28 +10036518: 58c4 ldr r4, [r0, r3] +1003651a: 2100 movs r1, #0 +1003651c: 220c movs r2, #12 +1003651e: 4605 mov r5, r0 +10036520: 4668 mov r0, sp +10036522: f00b fef2 bl 1004230a +10036526: a803 add r0, sp, #12 +10036528: 2100 movs r1, #0 +1003652a: 220c movs r2, #12 +1003652c: f00b feed bl 1004230a +10036530: f894 3e81 ldrb.w r3, [r4, #3713] ; 0xe81 +10036534: b183 cbz r3, 10036558 +10036536: f894 3e7b ldrb.w r3, [r4, #3707] ; 0xe7b +1003653a: b16b cbz r3, 10036558 +1003653c: 4b0f ldr r3, [pc, #60] ; (1003657c ) +1003653e: 681b ldr r3, [r3, #0] +10036540: 079b lsls r3, r3, #30 +10036542: d509 bpl.n 10036558 +10036544: f44f 3300 mov.w r3, #131072 ; 0x20000 +10036548: 9303 str r3, [sp, #12] +1003654a: 4628 mov r0, r5 +1003654c: 2301 movs r3, #1 +1003654e: 4669 mov r1, sp +10036550: aa03 add r2, sp, #12 +10036552: 9305 str r3, [sp, #20] +10036554: f7fa f9b4 bl 100308c0 +10036558: 4b09 ldr r3, [pc, #36] ; (10036580 ) +1003655a: 781b ldrb r3, [r3, #0] +1003655c: f003 0303 and.w r3, r3, #3 +10036560: 2b03 cmp r3, #3 +10036562: d108 bne.n 10036576 +10036564: f894 3e3d ldrb.w r3, [r4, #3645] ; 0xe3d +10036568: 2b01 cmp r3, #1 +1003656a: d104 bne.n 10036576 +1003656c: 4b05 ldr r3, [pc, #20] ; (10036584 ) +1003656e: 781a ldrb r2, [r3, #0] +10036570: f042 0280 orr.w r2, r2, #128 ; 0x80 +10036574: 701a strb r2, [r3, #0] +10036576: b007 add sp, #28 +10036578: bd30 pop {r4, r5, pc} +1003657a: bf00 nop +1003657c: 40080080 .word 0x40080080 +10036580: 40080102 .word 0x40080102 +10036584: 40080521 .word 0x40080521 + +10036588 : +10036588: f241 6318 movw r3, #5656 ; 0x1618 +1003658c: 58c3 ldr r3, [r0, r3] +1003658e: 780a ldrb r2, [r1, #0] +10036590: f883 2e3d strb.w r2, [r3, #3645] ; 0xe3d +10036594: 4770 bx lr + ... + +10036598 : +10036598: f241 6318 movw r3, #5656 ; 0x1618 +1003659c: b530 push {r4, r5, lr} +1003659e: 58c5 ldr r5, [r0, r3] +100365a0: 4b0e ldr r3, [pc, #56] ; (100365dc ) +100365a2: b087 sub sp, #28 +100365a4: 681a ldr r2, [r3, #0] +100365a6: 4604 mov r4, r0 +100365a8: f442 6200 orr.w r2, r2, #2048 ; 0x800 +100365ac: 601a str r2, [r3, #0] +100365ae: 4b0c ldr r3, [pc, #48] ; (100365e0 ) +100365b0: aa03 add r2, sp, #12 +100365b2: 9300 str r3, [sp, #0] +100365b4: 4669 mov r1, sp +100365b6: 2300 movs r3, #0 +100365b8: 9301 str r3, [sp, #4] +100365ba: 9302 str r3, [sp, #8] +100365bc: 9303 str r3, [sp, #12] +100365be: 9304 str r3, [sp, #16] +100365c0: 9305 str r3, [sp, #20] +100365c2: f7fa f97d bl 100308c0 +100365c6: 4620 mov r0, r4 +100365c8: f7fe fd64 bl 10035094 +100365cc: 2301 movs r3, #1 +100365ce: f885 3e3d strb.w r3, [r5, #3645] ; 0xe3d +100365d2: 4b04 ldr r3, [pc, #16] ; (100365e4 ) +100365d4: 2228 movs r2, #40 ; 0x28 +100365d6: 701a strb r2, [r3, #0] +100365d8: b007 add sp, #28 +100365da: bd30 pop {r4, r5, pc} +100365dc: 40080100 .word 0x40080100 +100365e0: 20060000 .word 0x20060000 +100365e4: 4008055c .word 0x4008055c + +100365e8 : +100365e8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100365ec: f241 6318 movw r3, #5656 ; 0x1618 +100365f0: 58c6 ldr r6, [r0, r3] +100365f2: f8df 80fc ldr.w r8, [pc, #252] ; 100366f0 +100365f6: 6883 ldr r3, [r0, #8] +100365f8: b085 sub sp, #20 +100365fa: ac04 add r4, sp, #16 +100365fc: f8d6 1e28 ldr.w r1, [r6, #3624] ; 0xe28 +10036600: f8d8 2000 ldr.w r2, [r8] +10036604: f04f 0a00 mov.w sl, #0 +10036608: f844 ad04 str.w sl, [r4, #-4]! +1003660c: f103 0920 add.w r9, r3, #32 +10036610: 430a orrs r2, r1 +10036612: 4605 mov r5, r0 +10036614: 4621 mov r1, r4 +10036616: 4648 mov r0, r9 +10036618: f8c8 2000 str.w r2, [r8] +1003661c: f7e6 fc5c bl 1001ced8 +10036620: f8c6 ae28 str.w sl, [r6, #3624] ; 0xe28 +10036624: 4648 mov r0, r9 +10036626: 4621 mov r1, r4 +10036628: f506 7700 add.w r7, r6, #512 ; 0x200 +1003662c: f7e6 fc5c bl 1001cee8 +10036630: f8d8 3000 ldr.w r3, [r8] +10036634: 4c2e ldr r4, [pc, #184] ; (100366f0 ) +10036636: 2b00 cmp r3, #0 +10036638: d056 beq.n 100366e8 +1003663a: 4628 mov r0, r5 +1003663c: f009 f9be bl 1003f9bc +10036640: fa5f fb80 uxtb.w fp, r0 +10036644: f1bb 0f00 cmp.w fp, #0 +10036648: d103 bne.n 10036652 +1003664a: 6823 ldr r3, [r4, #0] +1003664c: f023 0309 bic.w r3, r3, #9 +10036650: 6023 str r3, [r4, #0] +10036652: f506 7457 add.w r4, r6, #860 ; 0x35c +10036656: f04f 0900 mov.w r9, #0 +1003665a: fa5f fa89 uxtb.w sl, r9 +1003665e: 45da cmp sl, fp +10036660: d2e6 bcs.n 10036630 +10036662: 4628 mov r0, r5 +10036664: 4651 mov r1, sl +10036666: f009 f9c5 bl 1003f9f4 +1003666a: 2800 cmp r0, #0 +1003666c: d038 beq.n 100366e0 +1003666e: f894 3038 ldrb.w r3, [r4, #56] ; 0x38 +10036672: 2b01 cmp r3, #1 +10036674: d034 beq.n 100366e0 +10036676: f8d8 3000 ldr.w r3, [r8] +1003667a: f884 a03b strb.w sl, [r4, #59] ; 0x3b +1003667e: 0719 lsls r1, r3, #28 +10036680: d507 bpl.n 10036692 +10036682: 4a1b ldr r2, [pc, #108] ; (100366f0 ) +10036684: f023 0308 bic.w r3, r3, #8 +10036688: 4638 mov r0, r7 +1003668a: 4621 mov r1, r4 +1003668c: 6013 str r3, [r2, #0] +1003668e: f006 fbeb bl 1003ce68 +10036692: f8d8 3000 ldr.w r3, [r8] +10036696: 07da lsls r2, r3, #31 +10036698: d522 bpl.n 100366e0 +1003669a: 4a15 ldr r2, [pc, #84] ; (100366f0 ) +1003669c: f023 0301 bic.w r3, r3, #1 +100366a0: 6013 str r3, [r2, #0] +100366a2: 4628 mov r0, r5 +100366a4: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +100366a8: 2203 movs r2, #3 +100366aa: f009 f954 bl 1003f956 +100366ae: 0603 lsls r3, r0, #24 +100366b0: d41a bmi.n 100366e8 +100366b2: 2200 movs r2, #0 +100366b4: 4638 mov r0, r7 +100366b6: 4621 mov r1, r4 +100366b8: f009 f9a9 bl 1003fa0e +100366bc: f505 53be add.w r3, r5, #6080 ; 0x17c0 +100366c0: 791a ldrb r2, [r3, #4] +100366c2: 2aff cmp r2, #255 ; 0xff +100366c4: d104 bne.n 100366d0 +100366c6: 4638 mov r0, r7 +100366c8: 4621 mov r1, r4 +100366ca: f006 fc69 bl 1003cfa0 +100366ce: e007 b.n 100366e0 +100366d0: f894 3036 ldrb.w r3, [r4, #54] ; 0x36 +100366d4: 4638 mov r0, r7 +100366d6: 9300 str r3, [sp, #0] +100366d8: 4621 mov r1, r4 +100366da: 2300 movs r3, #0 +100366dc: f006 fa84 bl 1003cbe8 +100366e0: f109 0901 add.w r9, r9, #1 +100366e4: 3458 adds r4, #88 ; 0x58 +100366e6: e7b8 b.n 1003665a +100366e8: b005 add sp, #20 +100366ea: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +100366ee: bf00 nop +100366f0: 10055338 .word 0x10055338 + +100366f4 : +100366f4: f241 6318 movw r3, #5656 ; 0x1618 +100366f8: b507 push {r0, r1, r2, lr} +100366fa: 58c3 ldr r3, [r0, r3] +100366fc: b161 cbz r1, 10036718 +100366fe: 2901 cmp r1, #1 +10036700: d115 bne.n 1003672e +10036702: f8d3 21a0 ldr.w r2, [r3, #416] ; 0x1a0 +10036706: 2100 movs r1, #0 +10036708: f422 6240 bic.w r2, r2, #3072 ; 0xc00 +1003670c: f442 6280 orr.w r2, r2, #1024 ; 0x400 +10036710: f8c3 21a0 str.w r2, [r3, #416] ; 0x1a0 +10036714: 9200 str r2, [sp, #0] +10036716: e006 b.n 10036726 +10036718: f8d3 21a0 ldr.w r2, [r3, #416] ; 0x1a0 +1003671c: f442 6240 orr.w r2, r2, #3072 ; 0xc00 +10036720: f8c3 21a0 str.w r2, [r3, #416] ; 0x1a0 +10036724: 9200 str r2, [sp, #0] +10036726: 2218 movs r2, #24 +10036728: 4b02 ldr r3, [pc, #8] ; (10036734 ) +1003672a: f7fd fd6f bl 1003420c +1003672e: b003 add sp, #12 +10036730: f85d fb04 ldr.w pc, [sp], #4 +10036734: 000fffff .word 0x000fffff + +10036738 : +10036738: f241 6318 movw r3, #5656 ; 0x1618 +1003673c: 58c2 ldr r2, [r0, r3] +1003673e: 2101 movs r1, #1 +10036740: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10036744: f882 103f strb.w r1, [r2, #63] ; 0x3f +10036748: 58c6 ldr r6, [r0, r3] +1003674a: 4604 mov r4, r0 +1003674c: f04f 0800 mov.w r8, #0 +10036750: f896 303f ldrb.w r3, [r6, #63] ; 0x3f +10036754: fa5f f588 uxtb.w r5, r8 +10036758: 42ab cmp r3, r5 +1003675a: d93f bls.n 100367dc +1003675c: 231c movs r3, #28 +1003675e: fb03 6305 mla r3, r3, r5, r6 +10036762: f503 77c2 add.w r7, r3, #388 ; 0x184 +10036766: f503 73c0 add.w r3, r3, #384 ; 0x180 +1003676a: b925 cbnz r5, 10036776 +1003676c: 4620 mov r0, r4 +1003676e: 6859 ldr r1, [r3, #4] +10036770: 2210 movs r2, #16 +10036772: f7fd fcb9 bl 100340e8 +10036776: 68b9 ldr r1, [r7, #8] +10036778: f44f 1280 mov.w r2, #1048576 ; 0x100000 +1003677c: 2301 movs r3, #1 +1003677e: 4620 mov r0, r4 +10036780: f7fd fcc8 bl 10034114 +10036784: 2001 movs r0, #1 +10036786: f7e6 fc7f bl 1001d088 +1003678a: 6879 ldr r1, [r7, #4] +1003678c: 2210 movs r2, #16 +1003678e: 2301 movs r3, #1 +10036790: 4620 mov r0, r4 +10036792: f7fd fcbf bl 10034114 +10036796: 2001 movs r0, #1 +10036798: f7e6 fc76 bl 1001d088 +1003679c: 6939 ldr r1, [r7, #16] +1003679e: f44f 6280 mov.w r2, #1024 ; 0x400 +100367a2: 2300 movs r3, #0 +100367a4: 4620 mov r0, r4 +100367a6: f7fd fcb5 bl 10034114 +100367aa: 2001 movs r0, #1 +100367ac: f7e6 fc6c bl 1001d088 +100367b0: 4620 mov r0, r4 +100367b2: 6939 ldr r1, [r7, #16] +100367b4: f44f 6200 mov.w r2, #2048 ; 0x800 +100367b8: 2300 movs r3, #0 +100367ba: f7fd fcab bl 10034114 +100367be: 2001 movs r0, #1 +100367c0: f7e6 fc62 bl 1001d088 +100367c4: b93d cbnz r5, 100367d6 +100367c6: f506 7000 add.w r0, r6, #512 ; 0x200 +100367ca: 4629 mov r1, r5 +100367cc: 462a mov r2, r5 +100367ce: f007 ff66 bl 1003e69e +100367d2: 2801 cmp r0, #1 +100367d4: d009 beq.n 100367ea +100367d6: f108 0801 add.w r8, r8, #1 +100367da: e7b9 b.n 10036750 +100367dc: f506 7000 add.w r0, r6, #512 ; 0x200 +100367e0: f007 ff6c bl 1003e6bc +100367e4: 2001 movs r0, #1 +100367e6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100367ea: 4628 mov r0, r5 +100367ec: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +100367f0 : +100367f0: f890 3ba8 ldrb.w r3, [r0, #2984] ; 0xba8 +100367f4: b133 cbz r3, 10036804 +100367f6: 2300 movs r3, #0 +100367f8: f8c0 3bac str.w r3, [r0, #2988] ; 0xbac +100367fc: f8c0 3bb0 str.w r3, [r0, #2992] ; 0xbb0 +10036800: f880 3ba8 strb.w r3, [r0, #2984] ; 0xba8 +10036804: f8d0 3bac ldr.w r3, [r0, #2988] ; 0xbac +10036808: f8d0 2bb0 ldr.w r2, [r0, #2992] ; 0xbb0 +1003680c: 3301 adds r3, #1 +1003680e: f8c0 3bac str.w r3, [r0, #2988] ; 0xbac +10036812: f891 106d ldrb.w r1, [r1, #109] ; 0x6d +10036816: 440a add r2, r1 +10036818: fbb2 f3f3 udiv r3, r2, r3 +1003681c: f8c0 2bb0 str.w r2, [r0, #2992] ; 0xbb0 +10036820: f880 3ba9 strb.w r3, [r0, #2985] ; 0xba9 +10036824: 4770 bx lr + +10036826 : +10036826: b538 push {r3, r4, r5, lr} +10036828: 2254 movs r2, #84 ; 0x54 +1003682a: 4604 mov r4, r0 +1003682c: 460d mov r5, r1 +1003682e: 301c adds r0, #28 +10036830: 2100 movs r1, #0 +10036832: f7e6 facd bl 1001cdd0 +10036836: 682b ldr r3, [r5, #0] +10036838: f3c3 020d ubfx r2, r3, #0, #14 +1003683c: f3c3 3380 ubfx r3, r3, #14, #1 +10036840: f884 3032 strb.w r3, [r4, #50] ; 0x32 +10036844: 682b ldr r3, [r5, #0] +10036846: 83a2 strh r2, [r4, #28] +10036848: f3c3 33c0 ubfx r3, r3, #15, #1 +1003684c: f884 3033 strb.w r3, [r4, #51] ; 0x33 +10036850: 886b ldrh r3, [r5, #2] +10036852: f003 030f and.w r3, r3, #15 +10036856: 00db lsls r3, r3, #3 +10036858: 77e3 strb r3, [r4, #31] +1003685a: 682b ldr r3, [r5, #0] +1003685c: f3c3 5302 ubfx r3, r3, #20, #3 +10036860: f884 302f strb.w r3, [r4, #47] ; 0x2f +10036864: 682b ldr r3, [r5, #0] +10036866: f3c3 53c0 ubfx r3, r3, #23, #1 +1003686a: f884 3024 strb.w r3, [r4, #36] ; 0x24 +1003686e: 78eb ldrb r3, [r5, #3] +10036870: f003 0303 and.w r3, r3, #3 +10036874: f884 3020 strb.w r3, [r4, #32] +10036878: 682b ldr r3, [r5, #0] +1003687a: f3c3 6380 ubfx r3, r3, #26, #1 +1003687e: 77a3 strb r3, [r4, #30] +10036880: 682b ldr r3, [r5, #0] +10036882: f083 6300 eor.w r3, r3, #134217728 ; 0x8000000 +10036886: f3c3 63c0 ubfx r3, r3, #27, #1 +1003688a: f884 302e strb.w r3, [r4, #46] ; 0x2e +1003688e: 686b ldr r3, [r5, #4] +10036890: f3c3 2303 ubfx r3, r3, #8, #4 +10036894: f884 3025 strb.w r3, [r4, #37] ; 0x25 +10036898: 686b ldr r3, [r5, #4] +1003689a: f3c3 6380 ubfx r3, r3, #26, #1 +1003689e: f884 3027 strb.w r3, [r4, #39] ; 0x27 +100368a2: 686b ldr r3, [r5, #4] +100368a4: f3c3 63c0 ubfx r3, r3, #27, #1 +100368a8: f884 302b strb.w r3, [r4, #43] ; 0x2b +100368ac: 68ab ldr r3, [r5, #8] +100368ae: f3c3 020b ubfx r2, r3, #0, #12 +100368b2: f3c3 3303 ubfx r3, r3, #12, #4 +100368b6: f884 302a strb.w r3, [r4, #42] ; 0x2a +100368ba: 68ab ldr r3, [r5, #8] +100368bc: 8522 strh r2, [r4, #40] ; 0x28 +100368be: f013 5380 ands.w r3, r3, #268435456 ; 0x10000000 +100368c2: bf18 it ne +100368c4: 2304 movne r3, #4 +100368c6: f884 305c strb.w r3, [r4, #92] ; 0x5c +100368ca: 68eb ldr r3, [r5, #12] +100368cc: f003 037f and.w r3, r3, #127 ; 0x7f +100368d0: f884 3068 strb.w r3, [r4, #104] ; 0x68 +100368d4: bd38 pop {r3, r4, r5, pc} + +100368d6 : +100368d6: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +100368da: 6905 ldr r5, [r0, #16] +100368dc: f241 6318 movw r3, #5656 ; 0x1618 +100368e0: 58ef ldr r7, [r5, r3] +100368e2: 6f84 ldr r4, [r0, #120] ; 0x78 +100368e4: 2300 movs r3, #0 +100368e6: f88d 3002 strb.w r3, [sp, #2] +100368ea: f88d 3003 strb.w r3, [sp, #3] +100368ee: f88d 3004 strb.w r3, [sp, #4] +100368f2: 8822 ldrh r2, [r4, #0] +100368f4: 4689 mov r9, r1 +100368f6: f002 010c and.w r1, r2, #12 +100368fa: 2904 cmp r1, #4 +100368fc: 4606 mov r6, r0 +100368fe: f100 0869 add.w r8, r0, #105 ; 0x69 +10036902: d002 beq.n 1003690a +10036904: 8e41 ldrh r1, [r0, #50] ; 0x32 +10036906: 2900 cmp r1, #0 +10036908: d06b beq.n 100369e2 +1003690a: 4618 mov r0, r3 +1003690c: b2c3 uxtb r3, r0 +1003690e: f88d 3002 strb.w r3, [sp, #2] +10036912: b1cb cbz r3, 10036948 +10036914: 8823 ldrh r3, [r4, #0] +10036916: f413 7f80 tst.w r3, #256 ; 0x100 +1003691a: bf0c ite eq +1003691c: 2200 moveq r2, #0 +1003691e: 2202 movne r2, #2 +10036920: f3c3 2340 ubfx r3, r3, #9, #1 +10036924: 4313 orrs r3, r2 +10036926: 2b01 cmp r3, #1 +10036928: d003 beq.n 10036932 +1003692a: d302 bcc.n 10036932 +1003692c: f104 0010 add.w r0, r4, #16 +10036930: e000 b.n 10036934 +10036932: 1d20 adds r0, r4, #4 +10036934: f505 51a0 add.w r1, r5, #5120 ; 0x1400 +10036938: 3109 adds r1, #9 +1003693a: 2206 movs r2, #6 +1003693c: f7e6 fa3e bl 1001cdbc +10036940: 3000 adds r0, #0 +10036942: bf18 it ne +10036944: 2001 movne r0, #1 +10036946: e000 b.n 1003694a +10036948: 4618 mov r0, r3 +1003694a: f89d 3002 ldrb.w r3, [sp, #2] +1003694e: f88d 0003 strb.w r0, [sp, #3] +10036952: b133 cbz r3, 10036962 +10036954: 8823 ldrh r3, [r4, #0] +10036956: f003 03fc and.w r3, r3, #252 ; 0xfc +1003695a: f1b3 0280 subs.w r2, r3, #128 ; 0x80 +1003695e: 4253 negs r3, r2 +10036960: 4153 adcs r3, r2 +10036962: b2db uxtb r3, r3 +10036964: f88d 3004 strb.w r3, [sp, #4] +10036968: b123 cbz r3, 10036974 +1003696a: 6929 ldr r1, [r5, #16] +1003696c: f011 0108 ands.w r1, r1, #8 +10036970: d154 bne.n 10036a1c +10036972: e001 b.n 10036978 +10036974: f104 010a add.w r1, r4, #10 +10036978: 23ff movs r3, #255 ; 0xff +1003697a: f505 603d add.w r0, r5, #3024 ; 0xbd0 +1003697e: f88d 3001 strb.w r3, [sp, #1] +10036982: f7f7 f817 bl 1002d9b4 +10036986: 4604 mov r4, r0 +10036988: b118 cbz r0, 10036992 +1003698a: f8d0 3100 ldr.w r3, [r0, #256] ; 0x100 +1003698e: f88d 3001 strb.w r3, [sp, #1] +10036992: f896 2068 ldrb.w r2, [r6, #104] ; 0x68 +10036996: ab02 add r3, sp, #8 +10036998: f803 2d08 strb.w r2, [r3, #-8]! +1003699c: f507 7000 add.w r0, r7, #512 ; 0x200 +100369a0: 466b mov r3, sp +100369a2: 4641 mov r1, r8 +100369a4: 464a mov r2, r9 +100369a6: f007 fe78 bl 1003e69a +100369aa: 2300 movs r3, #0 +100369ac: f8c6 3088 str.w r3, [r6, #136] ; 0x88 +100369b0: f89d 3002 ldrb.w r3, [sp, #2] +100369b4: b113 cbz r3, 100369bc +100369b6: 692b ldr r3, [r5, #16] +100369b8: 06db lsls r3, r3, #27 +100369ba: d40a bmi.n 100369d2 +100369bc: f89d 3003 ldrb.w r3, [sp, #3] +100369c0: b913 cbnz r3, 100369c8 +100369c2: f89d 3004 ldrb.w r3, [sp, #4] +100369c6: b37b cbz r3, 10036a28 +100369c8: 692b ldr r3, [r5, #16] +100369ca: f013 0f60 tst.w r3, #96 ; 0x60 +100369ce: d128 bne.n 10036a22 +100369d0: e002 b.n 100369d8 +100369d2: b34c cbz r4, 10036a28 +100369d4: f8c6 4088 str.w r4, [r6, #136] ; 0x88 +100369d8: 4628 mov r0, r5 +100369da: 4631 mov r1, r6 +100369dc: f7ff ff08 bl 100367f0 +100369e0: e022 b.n 10036a28 +100369e2: f412 7f80 tst.w r2, #256 ; 0x100 +100369e6: bf0c ite eq +100369e8: 2300 moveq r3, #0 +100369ea: 2302 movne r3, #2 +100369ec: f3c2 2240 ubfx r2, r2, #9, #1 +100369f0: 431a orrs r2, r3 +100369f2: 2a02 cmp r2, #2 +100369f4: d008 beq.n 10036a08 +100369f6: 2a03 cmp r2, #3 +100369f8: d006 beq.n 10036a08 +100369fa: 2a01 cmp r2, #1 +100369fc: bf14 ite ne +100369fe: f104 0010 addne.w r0, r4, #16 +10036a02: f104 000a addeq.w r0, r4, #10 +10036a06: e000 b.n 10036a0a +10036a08: 1d20 adds r0, r4, #4 +10036a0a: f105 019c add.w r1, r5, #156 ; 0x9c +10036a0e: 2206 movs r2, #6 +10036a10: f7e6 f9d4 bl 1001cdbc +10036a14: 3000 adds r0, #0 +10036a16: bf18 it ne +10036a18: 2001 movne r0, #1 +10036a1a: e777 b.n 1003690c +10036a1c: f105 019c add.w r1, r5, #156 ; 0x9c +10036a20: e7aa b.n 10036978 +10036a22: 2c00 cmp r4, #0 +10036a24: d1d6 bne.n 100369d4 +10036a26: e7d7 b.n 100369d8 +10036a28: b003 add sp, #12 +10036a2a: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +10036a2e : +10036a2e: f89d 0000 ldrb.w r0, [sp] +10036a32: b978 cbnz r0, 10036a54 +10036a34: 2a58 cmp r2, #88 ; 0x58 +10036a36: d906 bls.n 10036a46 +10036a38: f1b2 0c7f subs.w ip, r2, #127 ; 0x7f +10036a3c: f1dc 0000 rsbs r0, ip, #0 +10036a40: eb50 000c adcs.w r0, r0, ip +10036a44: e000 b.n 10036a48 +10036a46: 2001 movs r0, #1 +10036a48: f011 0f80 tst.w r1, #128 ; 0x80 +10036a4c: d100 bne.n 10036a50 +10036a4e: b908 cbnz r0, 10036a54 +10036a50: f001 027f and.w r2, r1, #127 ; 0x7f +10036a54: 2a58 cmp r2, #88 ; 0x58 +10036a56: d902 bls.n 10036a5e +10036a58: 2a7f cmp r2, #127 ; 0x7f +10036a5a: bf18 it ne +10036a5c: 461a movne r2, r3 +10036a5e: 4610 mov r0, r2 +10036a60: 4770 bx lr + +10036a62 : +10036a62: 3901 subs r1, #1 +10036a64: 290d cmp r1, #13 +10036a66: d808 bhi.n 10036a7a +10036a68: f241 3325 movw r3, #4901 ; 0x1325 +10036a6c: 5cc3 ldrb r3, [r0, r3] +10036a6e: f013 0f0b tst.w r3, #11 +10036a72: bf0c ite eq +10036a74: 2000 moveq r0, #0 +10036a76: 2001 movne r0, #1 +10036a78: 4770 bx lr +10036a7a: 2000 movs r0, #0 +10036a7c: 4770 bx lr + ... + +10036a80 : +10036a80: 3804 subs r0, #4 +10036a82: b2c0 uxtb r0, r0 +10036a84: 2883 cmp r0, #131 ; 0x83 +10036a86: bf9a itte ls +10036a88: 4b01 ldrls r3, [pc, #4] ; (10036a90 ) +10036a8a: 5c18 ldrbls r0, [r3, r0] +10036a8c: 2000 movhi r0, #0 +10036a8e: 4770 bx lr +10036a90: 1004ad6e .word 0x1004ad6e + +10036a94 : +10036a94: 3801 subs r0, #1 +10036a96: b2c0 uxtb r0, r0 +10036a98: 2812 cmp r0, #18 +10036a9a: bf9a itte ls +10036a9c: 4b01 ldrls r3, [pc, #4] ; (10036aa4 ) +10036a9e: 5c18 ldrbls r0, [r3, r0] +10036aa0: 2002 movhi r0, #2 +10036aa2: 4770 bx lr +10036aa4: 1004adf2 .word 0x1004adf2 + +10036aa8 : +10036aa8: 2000 movs r0, #0 +10036aaa: 5c0b ldrb r3, [r1, r0] +10036aac: f013 0f80 tst.w r3, #128 ; 0x80 +10036ab0: d04c beq.n 10036b4c +10036ab2: f003 037f and.w r3, r3, #127 ; 0x7f +10036ab6: 2b16 cmp r3, #22 +10036ab8: d030 beq.n 10036b1c +10036aba: d812 bhi.n 10036ae2 +10036abc: 2b0b cmp r3, #11 +10036abe: d029 beq.n 10036b14 +10036ac0: d807 bhi.n 10036ad2 +10036ac2: 2b02 cmp r3, #2 +10036ac4: d022 beq.n 10036b0c +10036ac6: 2b04 cmp r3, #4 +10036ac8: d140 bne.n 10036b4c +10036aca: 8813 ldrh r3, [r2, #0] +10036acc: f043 0302 orr.w r3, r3, #2 +10036ad0: e03b b.n 10036b4a +10036ad2: 2b0c cmp r3, #12 +10036ad4: d026 beq.n 10036b24 +10036ad6: 2b12 cmp r3, #18 +10036ad8: d138 bne.n 10036b4c +10036ada: 8813 ldrh r3, [r2, #0] +10036adc: f043 0320 orr.w r3, r3, #32 +10036ae0: e033 b.n 10036b4a +10036ae2: 2b30 cmp r3, #48 ; 0x30 +10036ae4: d026 beq.n 10036b34 +10036ae6: d807 bhi.n 10036af8 +10036ae8: 2b18 cmp r3, #24 +10036aea: d01f beq.n 10036b2c +10036aec: 2b24 cmp r3, #36 ; 0x24 +10036aee: d12d bne.n 10036b4c +10036af0: 8813 ldrh r3, [r2, #0] +10036af2: f043 0380 orr.w r3, r3, #128 ; 0x80 +10036af6: e028 b.n 10036b4a +10036af8: 2b60 cmp r3, #96 ; 0x60 +10036afa: d01f beq.n 10036b3c +10036afc: 2b6c cmp r3, #108 ; 0x6c +10036afe: d021 beq.n 10036b44 +10036b00: 2b48 cmp r3, #72 ; 0x48 +10036b02: d123 bne.n 10036b4c +10036b04: 8813 ldrh r3, [r2, #0] +10036b06: f443 7300 orr.w r3, r3, #512 ; 0x200 +10036b0a: e01e b.n 10036b4a +10036b0c: 8813 ldrh r3, [r2, #0] +10036b0e: f043 0301 orr.w r3, r3, #1 +10036b12: e01a b.n 10036b4a +10036b14: 8813 ldrh r3, [r2, #0] +10036b16: f043 0304 orr.w r3, r3, #4 +10036b1a: e016 b.n 10036b4a +10036b1c: 8813 ldrh r3, [r2, #0] +10036b1e: f043 0308 orr.w r3, r3, #8 +10036b22: e012 b.n 10036b4a +10036b24: 8813 ldrh r3, [r2, #0] +10036b26: f043 0310 orr.w r3, r3, #16 +10036b2a: e00e b.n 10036b4a +10036b2c: 8813 ldrh r3, [r2, #0] +10036b2e: f043 0340 orr.w r3, r3, #64 ; 0x40 +10036b32: e00a b.n 10036b4a +10036b34: 8813 ldrh r3, [r2, #0] +10036b36: f443 7380 orr.w r3, r3, #256 ; 0x100 +10036b3a: e006 b.n 10036b4a +10036b3c: 8813 ldrh r3, [r2, #0] +10036b3e: f443 6380 orr.w r3, r3, #1024 ; 0x400 +10036b42: e002 b.n 10036b4a +10036b44: 8813 ldrh r3, [r2, #0] +10036b46: f443 6300 orr.w r3, r3, #2048 ; 0x800 +10036b4a: 8013 strh r3, [r2, #0] +10036b4c: 3001 adds r0, #1 +10036b4e: 2810 cmp r0, #16 +10036b50: d1ab bne.n 10036aaa +10036b52: 4770 bx lr + +10036b54 : +10036b54: 6883 ldr r3, [r0, #8] +10036b56: 2001 movs r0, #1 +10036b58: 7c99 ldrb r1, [r3, #18] +10036b5a: 7c5a ldrb r2, [r3, #17] +10036b5c: 7559 strb r1, [r3, #21] +10036b5e: 7cd9 ldrb r1, [r3, #19] +10036b60: 751a strb r2, [r3, #20] +10036b62: 7599 strb r1, [r3, #22] +10036b64: 75d9 strb r1, [r3, #23] +10036b66: 761a strb r2, [r3, #24] +10036b68: 765a strb r2, [r3, #25] +10036b6a: 769a strb r2, [r3, #26] +10036b6c: 76da strb r2, [r3, #27] +10036b6e: 4770 bx lr + +10036b70 : +10036b70: f500 52a0 add.w r2, r0, #5120 ; 0x1400 +10036b74: b510 push {r4, lr} +10036b76: 2103 movs r1, #3 +10036b78: 3209 adds r2, #9 +10036b7a: 4604 mov r4, r0 +10036b7c: f000 fed5 bl 1003792a +10036b80: f241 73a8 movw r3, #6056 ; 0x17a8 +10036b84: 58e0 ldr r0, [r4, r3] +10036b86: b138 cbz r0, 10036b98 +10036b88: f500 52a0 add.w r2, r0, #5120 ; 0x1400 +10036b8c: 2103 movs r1, #3 +10036b8e: 3209 adds r2, #9 +10036b90: e8bd 4010 ldmia.w sp!, {r4, lr} +10036b94: f000 bec9 b.w 1003792a +10036b98: bd10 pop {r4, pc} + ... + +10036b9c : +10036b9c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10036ba0: f44f 7181 mov.w r1, #258 ; 0x102 +10036ba4: b091 sub sp, #68 ; 0x44 +10036ba6: 4604 mov r4, r0 +10036ba8: f005 fd52 bl 1003c650 +10036bac: f44f 61aa mov.w r1, #1360 ; 0x550 +10036bb0: 4607 mov r7, r0 +10036bb2: 4620 mov r0, r4 +10036bb4: f005 fd4c bl 1003c650 +10036bb8: f240 5151 movw r1, #1361 ; 0x551 +10036bbc: 4605 mov r5, r0 +10036bbe: 4620 mov r0, r4 +10036bc0: f005 fd46 bl 1003c650 +10036bc4: f240 515a movw r1, #1370 ; 0x55a +10036bc8: 4606 mov r6, r0 +10036bca: 4620 mov r0, r4 +10036bcc: f005 fd40 bl 1003c650 +10036bd0: f240 515b movw r1, #1371 ; 0x55b +10036bd4: 9002 str r0, [sp, #8] +10036bd6: 4620 mov r0, r4 +10036bd8: f005 fd3a bl 1003c650 +10036bdc: f44f 61ae mov.w r1, #1392 ; 0x570 +10036be0: 9003 str r0, [sp, #12] +10036be2: 4620 mov r0, r4 +10036be4: f005 fd34 bl 1003c650 +10036be8: f240 5171 movw r1, #1393 ; 0x571 +10036bec: 4683 mov fp, r0 +10036bee: 4620 mov r0, r4 +10036bf0: f005 fd2e bl 1003c650 +10036bf4: f04f 0900 mov.w r9, #0 +10036bf8: 4682 mov sl, r0 +10036bfa: f509 61ac add.w r1, r9, #1376 ; 0x560 +10036bfe: 4620 mov r0, r4 +10036c00: f005 fd26 bl 1003c650 +10036c04: f10d 0830 add.w r8, sp, #48 ; 0x30 +10036c08: f808 0009 strb.w r0, [r8, r9] +10036c0c: f109 0901 add.w r9, r9, #1 +10036c10: f1b9 0f08 cmp.w r9, #8 +10036c14: d1f1 bne.n 10036bfa +10036c16: 2300 movs r3, #0 +10036c18: f503 61ad add.w r1, r3, #1384 ; 0x568 +10036c1c: 4620 mov r0, r4 +10036c1e: 9301 str r3, [sp, #4] +10036c20: f005 fd16 bl 1003c650 +10036c24: 9b01 ldr r3, [sp, #4] +10036c26: f10d 0938 add.w r9, sp, #56 ; 0x38 +10036c2a: f809 0003 strb.w r0, [r9, r3] +10036c2e: 3301 adds r3, #1 +10036c30: 2b08 cmp r3, #8 +10036c32: d1f1 bne.n 10036c18 +10036c34: 2300 movs r3, #0 +10036c36: f503 61c2 add.w r1, r3, #1552 ; 0x610 +10036c3a: 4620 mov r0, r4 +10036c3c: 9301 str r3, [sp, #4] +10036c3e: f005 fd07 bl 1003c650 +10036c42: 9b01 ldr r3, [sp, #4] +10036c44: aa04 add r2, sp, #16 +10036c46: 54d0 strb r0, [r2, r3] +10036c48: 3301 adds r3, #1 +10036c4a: 2b06 cmp r3, #6 +10036c4c: d1f3 bne.n 10036c36 +10036c4e: 2300 movs r3, #0 +10036c50: f503 61c3 add.w r1, r3, #1560 ; 0x618 +10036c54: 4620 mov r0, r4 +10036c56: 9301 str r3, [sp, #4] +10036c58: f005 fcfa bl 1003c650 +10036c5c: 9b01 ldr r3, [sp, #4] +10036c5e: aa06 add r2, sp, #24 +10036c60: 54d0 strb r0, [r2, r3] +10036c62: 3301 adds r3, #1 +10036c64: 2b06 cmp r3, #6 +10036c66: d1f3 bne.n 10036c50 +10036c68: 2300 movs r3, #0 +10036c6a: f503 61e0 add.w r1, r3, #1792 ; 0x700 +10036c6e: 4620 mov r0, r4 +10036c70: 9301 str r3, [sp, #4] +10036c72: f005 fced bl 1003c650 +10036c76: 9b01 ldr r3, [sp, #4] +10036c78: aa08 add r2, sp, #32 +10036c7a: 54d0 strb r0, [r2, r3] +10036c7c: 3301 adds r3, #1 +10036c7e: 2b06 cmp r3, #6 +10036c80: d1f3 bne.n 10036c6a +10036c82: 2300 movs r3, #0 +10036c84: f503 61e1 add.w r1, r3, #1800 ; 0x708 +10036c88: 4620 mov r0, r4 +10036c8a: 9301 str r3, [sp, #4] +10036c8c: f005 fce0 bl 1003c650 +10036c90: 9b01 ldr r3, [sp, #4] +10036c92: aa0a add r2, sp, #40 ; 0x28 +10036c94: 54d0 strb r0, [r2, r3] +10036c96: 3301 adds r3, #1 +10036c98: 2b06 cmp r3, #6 +10036c9a: d1f3 bne.n 10036c84 +10036c9c: f005 02e7 and.w r2, r5, #231 ; 0xe7 +10036ca0: f44f 61aa mov.w r1, #1360 ; 0x550 +10036ca4: f042 0210 orr.w r2, r2, #16 +10036ca8: 4620 mov r0, r4 +10036caa: f005 fce6 bl 1003c67a +10036cae: f006 02e7 and.w r2, r6, #231 ; 0xe7 +10036cb2: f240 5151 movw r1, #1361 ; 0x551 +10036cb6: f042 0210 orr.w r2, r2, #16 +10036cba: 4620 mov r0, r4 +10036cbc: f005 fcdd bl 1003c67a +10036cc0: f007 0203 and.w r2, r7, #3 +10036cc4: f3c7 0381 ubfx r3, r7, #2, #2 +10036cc8: ea43 0382 orr.w r3, r3, r2, lsl #2 +10036ccc: f007 02f0 and.w r2, r7, #240 ; 0xf0 +10036cd0: 431a orrs r2, r3 +10036cd2: f44f 7181 mov.w r1, #258 ; 0x102 +10036cd6: 4620 mov r0, r4 +10036cd8: f005 fccf bl 1003c67a +10036cdc: f44f 61aa mov.w r1, #1360 ; 0x550 +10036ce0: f006 02f7 and.w r2, r6, #247 ; 0xf7 +10036ce4: 4620 mov r0, r4 +10036ce6: f005 fcc8 bl 1003c67a +10036cea: f240 515a movw r1, #1370 ; 0x55a +10036cee: 465a mov r2, fp +10036cf0: 4620 mov r0, r4 +10036cf2: f005 fcc2 bl 1003c67a +10036cf6: 4620 mov r0, r4 +10036cf8: f240 515b movw r1, #1371 ; 0x55b +10036cfc: 4652 mov r2, sl +10036cfe: f005 fcbc bl 1003c67a +10036d02: 2700 movs r7, #0 +10036d04: f507 61ac add.w r1, r7, #1376 ; 0x560 +10036d08: f819 2007 ldrb.w r2, [r9, r7] +10036d0c: 4620 mov r0, r4 +10036d0e: 3701 adds r7, #1 +10036d10: f005 fcb3 bl 1003c67a +10036d14: 2f08 cmp r7, #8 +10036d16: d1f5 bne.n 10036d04 +10036d18: 2700 movs r7, #0 +10036d1a: ab08 add r3, sp, #32 +10036d1c: f507 61c2 add.w r1, r7, #1552 ; 0x610 +10036d20: 5dda ldrb r2, [r3, r7] +10036d22: 4620 mov r0, r4 +10036d24: 3701 adds r7, #1 +10036d26: f005 fca8 bl 1003c67a +10036d2a: 2f06 cmp r7, #6 +10036d2c: d1f5 bne.n 10036d1a +10036d2e: 2700 movs r7, #0 +10036d30: ab0a add r3, sp, #40 ; 0x28 +10036d32: f507 61c3 add.w r1, r7, #1560 ; 0x618 +10036d36: 5dda ldrb r2, [r3, r7] +10036d38: 4620 mov r0, r4 +10036d3a: 3701 adds r7, #1 +10036d3c: f005 fc9d bl 1003c67a +10036d40: 2f06 cmp r7, #6 +10036d42: d1f5 bne.n 10036d30 +10036d44: f240 5151 movw r1, #1361 ; 0x551 +10036d48: f005 02f7 and.w r2, r5, #247 ; 0xf7 +10036d4c: 4620 mov r0, r4 +10036d4e: f005 fc94 bl 1003c67a +10036d52: f240 5171 movw r1, #1393 ; 0x571 +10036d56: 9a02 ldr r2, [sp, #8] +10036d58: 4620 mov r0, r4 +10036d5a: f005 fc8e bl 1003c67a +10036d5e: 4620 mov r0, r4 +10036d60: f240 5171 movw r1, #1393 ; 0x571 +10036d64: 9a03 ldr r2, [sp, #12] +10036d66: f005 fc88 bl 1003c67a +10036d6a: 2700 movs r7, #0 +10036d6c: f507 61ad add.w r1, r7, #1384 ; 0x568 +10036d70: f818 2007 ldrb.w r2, [r8, r7] +10036d74: 4620 mov r0, r4 +10036d76: 3701 adds r7, #1 +10036d78: f005 fc7f bl 1003c67a +10036d7c: 2f08 cmp r7, #8 +10036d7e: d1f5 bne.n 10036d6c +10036d80: 2700 movs r7, #0 +10036d82: ab04 add r3, sp, #16 +10036d84: f507 61e0 add.w r1, r7, #1792 ; 0x700 +10036d88: 5dda ldrb r2, [r3, r7] +10036d8a: 4620 mov r0, r4 +10036d8c: 3701 adds r7, #1 +10036d8e: f005 fc74 bl 1003c67a +10036d92: 2f06 cmp r7, #6 +10036d94: d1f5 bne.n 10036d82 +10036d96: 2700 movs r7, #0 +10036d98: ab06 add r3, sp, #24 +10036d9a: f507 61e1 add.w r1, r7, #1800 ; 0x708 +10036d9e: 5dda ldrb r2, [r3, r7] +10036da0: 4620 mov r0, r4 +10036da2: 3701 adds r7, #1 +10036da4: f005 fc69 bl 1003c67a +10036da8: 2f06 cmp r7, #6 +10036daa: d1f5 bne.n 10036d98 +10036dac: 4632 mov r2, r6 +10036dae: f44f 61aa mov.w r1, #1360 ; 0x550 +10036db2: 4620 mov r0, r4 +10036db4: f005 fc61 bl 1003c67a +10036db8: 462a mov r2, r5 +10036dba: 4620 mov r0, r4 +10036dbc: f240 5151 movw r1, #1361 ; 0x551 +10036dc0: f005 fc5b bl 1003c67a +10036dc4: f241 73b2 movw r3, #6066 ; 0x17b2 +10036dc8: 5ce2 ldrb r2, [r4, r3] +10036dca: f241 75a8 movw r5, #6056 ; 0x17a8 +10036dce: 4f13 ldr r7, [pc, #76] ; (10036e1c ) +10036dd0: f504 56bc add.w r6, r4, #6016 ; 0x1780 +10036dd4: b972 cbnz r2, 10036df4 +10036dd6: 2101 movs r1, #1 +10036dd8: 54e1 strb r1, [r4, r3] +10036dda: 5961 ldr r1, [r4, r5] +10036ddc: 4810 ldr r0, [pc, #64] ; (10036e20 ) +10036dde: 54ca strb r2, [r1, r3] +10036de0: f00b f992 bl 10042108 +10036de4: 5963 ldr r3, [r4, r5] +10036de6: f8d7 01d0 ldr.w r0, [r7, #464] ; 0x1d0 +10036dea: f503 53bc add.w r3, r3, #6016 ; 0x1780 +10036dee: 6819 ldr r1, [r3, #0] +10036df0: 6832 ldr r2, [r6, #0] +10036df2: e00e b.n 10036e12 +10036df4: 2200 movs r2, #0 +10036df6: 54e2 strb r2, [r4, r3] +10036df8: 5962 ldr r2, [r4, r5] +10036dfa: 2101 movs r1, #1 +10036dfc: 54d1 strb r1, [r2, r3] +10036dfe: 4808 ldr r0, [pc, #32] ; (10036e20 ) +10036e00: f00b f982 bl 10042108 +10036e04: 5963 ldr r3, [r4, r5] +10036e06: f8d7 01d4 ldr.w r0, [r7, #468] ; 0x1d4 +10036e0a: f503 53bc add.w r3, r3, #6016 ; 0x1780 +10036e0e: 6831 ldr r1, [r6, #0] +10036e10: 681a ldr r2, [r3, #0] +10036e12: b011 add sp, #68 ; 0x44 +10036e14: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10036e18: f00b b976 b.w 10042108 +10036e1c: 1004da10 .word 0x1004da10 +10036e20: 1004b9eb .word 0x1004b9eb + +10036e24 : +10036e24: 2947 cmp r1, #71 ; 0x47 +10036e26: d101 bne.n 10036e2c +10036e28: f7ff beb8 b.w 10036b9c +10036e2c: 4770 bx lr + +10036e2e : +10036e2e: 4770 bx lr + +10036e30 : +10036e30: b570 push {r4, r5, r6, lr} +10036e32: f500 549b add.w r4, r0, #4960 ; 0x1360 +10036e36: 4605 mov r5, r0 +10036e38: 460e mov r6, r1 +10036e3a: 3410 adds r4, #16 +10036e3c: b151 cbz r1, 10036e54 +10036e3e: f894 1036 ldrb.w r1, [r4, #54] ; 0x36 +10036e42: f7f4 ffc7 bl 1002bdd4 +10036e46: 4628 mov r0, r5 +10036e48: f894 1044 ldrb.w r1, [r4, #68] ; 0x44 +10036e4c: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10036e50: f7f4 bf9c b.w 1002bd8c +10036e54: f894 3043 ldrb.w r3, [r4, #67] ; 0x43 +10036e58: f884 3044 strb.w r3, [r4, #68] ; 0x44 +10036e5c: f7f4 ff96 bl 1002bd8c +10036e60: f894 3035 ldrb.w r3, [r4, #53] ; 0x35 +10036e64: 4628 mov r0, r5 +10036e66: f884 3036 strb.w r3, [r4, #54] ; 0x36 +10036e6a: 4631 mov r1, r6 +10036e6c: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10036e70: f7f4 bfb0 b.w 1002bdd4 + +10036e74 : +10036e74: b537 push {r0, r1, r2, r4, r5, lr} +10036e76: f241 6313 movw r3, #5651 ; 0x1613 +10036e7a: 5cc3 ldrb r3, [r0, r3] +10036e7c: 4604 mov r4, r0 +10036e7e: 2b01 cmp r3, #1 +10036e80: d118 bne.n 10036eb4 +10036e82: f241 6514 movw r5, #5652 ; 0x1614 +10036e86: 5d43 ldrb r3, [r0, r5] +10036e88: 2bff cmp r3, #255 ; 0xff +10036e8a: d013 beq.n 10036eb4 +10036e8c: 2100 movs r1, #0 +10036e8e: 2255 movs r2, #85 ; 0x55 +10036e90: f04f 33ff mov.w r3, #4294967295 +10036e94: f000 fe37 bl 10037b06 +10036e98: 5d63 ldrb r3, [r4, r5] +10036e9a: f420 2078 bic.w r0, r0, #1015808 ; 0xf8000 +10036e9e: f003 030f and.w r3, r3, #15 +10036ea2: ea40 30c3 orr.w r0, r0, r3, lsl #15 +10036ea6: 9000 str r0, [sp, #0] +10036ea8: 2100 movs r1, #0 +10036eaa: 4620 mov r0, r4 +10036eac: 2255 movs r2, #85 ; 0x55 +10036eae: 4b02 ldr r3, [pc, #8] ; (10036eb8 ) +10036eb0: f000 fe32 bl 10037b18 +10036eb4: b003 add sp, #12 +10036eb6: bd30 pop {r4, r5, pc} +10036eb8: 000fffff .word 0x000fffff + +10036ebc : +10036ebc: b570 push {r4, r5, r6, lr} +10036ebe: f640 6604 movw r6, #3588 ; 0xe04 +10036ec2: 42b1 cmp r1, r6 +10036ec4: 9804 ldr r0, [sp, #16] +10036ec6: 9d05 ldr r5, [sp, #20] +10036ec8: 9c06 ldr r4, [sp, #24] +10036eca: d03b beq.n 10036f44 +10036ecc: d807 bhi.n 10036ede +10036ece: f640 066c movw r6, #2156 ; 0x86c +10036ed2: 42b1 cmp r1, r6 +10036ed4: d053 beq.n 10036f7e +10036ed6: f5b1 6f60 cmp.w r1, #3584 ; 0xe00 +10036eda: d016 beq.n 10036f0a +10036edc: bd70 pop {r4, r5, r6, pc} +10036ede: f5b1 6f61 cmp.w r1, #3600 ; 0xe10 +10036ee2: d07a beq.n 10036fda +10036ee4: f640 6214 movw r2, #3604 ; 0xe14 +10036ee8: 4291 cmp r1, r2 +10036eea: f000 8093 beq.w 10037014 +10036eee: f640 6208 movw r2, #3592 ; 0xe08 +10036ef2: 4291 cmp r1, r2 +10036ef4: f040 80ac bne.w 10037050 +10036ef8: 2200 movs r2, #0 +10036efa: 7002 strb r2, [r0, #0] +10036efc: f3c3 3203 ubfx r2, r3, #12, #4 +10036f00: eb02 0282 add.w r2, r2, r2, lsl #2 +10036f04: f3c3 2303 ubfx r3, r3, #8, #4 +10036f08: e062 b.n 10036fd0 +10036f0a: 2204 movs r2, #4 +10036f0c: 7002 strb r2, [r0, #0] +10036f0e: 2205 movs r2, #5 +10036f10: 7042 strb r2, [r0, #1] +10036f12: 2206 movs r2, #6 +10036f14: 7082 strb r2, [r0, #2] +10036f16: 2207 movs r2, #7 +10036f18: 70c2 strb r2, [r0, #3] +10036f1a: 3d01 subs r5, #1 +10036f1c: 2200 movs r2, #0 +10036f1e: 1d11 adds r1, r2, #4 +10036f20: fa23 f101 lsr.w r1, r3, r1 +10036f24: fa23 f002 lsr.w r0, r3, r2 +10036f28: f001 010f and.w r1, r1, #15 +10036f2c: eb01 0181 add.w r1, r1, r1, lsl #2 +10036f30: f000 000f and.w r0, r0, #15 +10036f34: 3208 adds r2, #8 +10036f36: eb00 0141 add.w r1, r0, r1, lsl #1 +10036f3a: 2a20 cmp r2, #32 +10036f3c: f805 1f01 strb.w r1, [r5, #1]! +10036f40: d1ed bne.n 10036f1e +10036f42: e083 b.n 1003704c +10036f44: 2208 movs r2, #8 +10036f46: 7002 strb r2, [r0, #0] +10036f48: 2209 movs r2, #9 +10036f4a: 7042 strb r2, [r0, #1] +10036f4c: 220a movs r2, #10 +10036f4e: 7082 strb r2, [r0, #2] +10036f50: 220b movs r2, #11 +10036f52: 70c2 strb r2, [r0, #3] +10036f54: 3d01 subs r5, #1 +10036f56: 2200 movs r2, #0 +10036f58: 1d11 adds r1, r2, #4 +10036f5a: fa23 f101 lsr.w r1, r3, r1 +10036f5e: fa23 f002 lsr.w r0, r3, r2 +10036f62: f001 010f and.w r1, r1, #15 +10036f66: eb01 0181 add.w r1, r1, r1, lsl #2 +10036f6a: f000 000f and.w r0, r0, #15 +10036f6e: 3208 adds r2, #8 +10036f70: eb00 0141 add.w r1, r0, r1, lsl #1 +10036f74: 2a20 cmp r2, #32 +10036f76: f805 1f01 strb.w r1, [r5, #1]! +10036f7a: d1ed bne.n 10036f58 +10036f7c: e066 b.n 1003704c +10036f7e: f512 7f80 cmn.w r2, #256 ; 0x100 +10036f82: d11b bne.n 10036fbc +10036f84: 2201 movs r2, #1 +10036f86: 7002 strb r2, [r0, #0] +10036f88: 2202 movs r2, #2 +10036f8a: 7042 strb r2, [r0, #1] +10036f8c: 2203 movs r2, #3 +10036f8e: 7082 strb r2, [r0, #2] +10036f90: 3d01 subs r5, #1 +10036f92: 220c movs r2, #12 +10036f94: 1f10 subs r0, r2, #4 +10036f96: fa23 f102 lsr.w r1, r3, r2 +10036f9a: fa23 f000 lsr.w r0, r3, r0 +10036f9e: f001 010f and.w r1, r1, #15 +10036fa2: f000 000f and.w r0, r0, #15 +10036fa6: eb01 0181 add.w r1, r1, r1, lsl #2 +10036faa: 3208 adds r2, #8 +10036fac: eb00 0141 add.w r1, r0, r1, lsl #1 +10036fb0: 2a24 cmp r2, #36 ; 0x24 +10036fb2: f805 1f01 strb.w r1, [r5, #1]! +10036fb6: d1ed bne.n 10036f94 +10036fb8: 2303 movs r3, #3 +10036fba: e048 b.n 1003704e +10036fbc: 2aff cmp r2, #255 ; 0xff +10036fbe: d147 bne.n 10037050 +10036fc0: 2203 movs r2, #3 +10036fc2: 7002 strb r2, [r0, #0] +10036fc4: f3c3 1203 ubfx r2, r3, #4, #4 +10036fc8: eb02 0282 add.w r2, r2, r2, lsl #2 +10036fcc: f003 030f and.w r3, r3, #15 +10036fd0: eb03 0242 add.w r2, r3, r2, lsl #1 +10036fd4: 702a strb r2, [r5, #0] +10036fd6: 2301 movs r3, #1 +10036fd8: e039 b.n 1003704e +10036fda: 220c movs r2, #12 +10036fdc: 7002 strb r2, [r0, #0] +10036fde: 220d movs r2, #13 +10036fe0: 7042 strb r2, [r0, #1] +10036fe2: 220e movs r2, #14 +10036fe4: 7082 strb r2, [r0, #2] +10036fe6: 220f movs r2, #15 +10036fe8: 70c2 strb r2, [r0, #3] +10036fea: 3d01 subs r5, #1 +10036fec: 2200 movs r2, #0 +10036fee: 1d11 adds r1, r2, #4 +10036ff0: fa23 f101 lsr.w r1, r3, r1 +10036ff4: fa23 f002 lsr.w r0, r3, r2 +10036ff8: f001 010f and.w r1, r1, #15 +10036ffc: eb01 0181 add.w r1, r1, r1, lsl #2 +10037000: f000 000f and.w r0, r0, #15 +10037004: 3208 adds r2, #8 +10037006: eb00 0141 add.w r1, r0, r1, lsl #1 +1003700a: 2a20 cmp r2, #32 +1003700c: f805 1f01 strb.w r1, [r5, #1]! +10037010: d1ed bne.n 10036fee +10037012: e01b b.n 1003704c +10037014: 2210 movs r2, #16 +10037016: 7002 strb r2, [r0, #0] +10037018: 2211 movs r2, #17 +1003701a: 7042 strb r2, [r0, #1] +1003701c: 2212 movs r2, #18 +1003701e: 7082 strb r2, [r0, #2] +10037020: 2213 movs r2, #19 +10037022: 70c2 strb r2, [r0, #3] +10037024: 3d01 subs r5, #1 +10037026: 2200 movs r2, #0 +10037028: 1d11 adds r1, r2, #4 +1003702a: fa23 f101 lsr.w r1, r3, r1 +1003702e: fa23 f002 lsr.w r0, r3, r2 +10037032: f001 010f and.w r1, r1, #15 +10037036: eb01 0181 add.w r1, r1, r1, lsl #2 +1003703a: f000 000f and.w r0, r0, #15 +1003703e: 3208 adds r2, #8 +10037040: eb00 0141 add.w r1, r0, r1, lsl #1 +10037044: 2a20 cmp r2, #32 +10037046: f805 1f01 strb.w r1, [r5, #1]! +1003704a: d1ed bne.n 10037028 +1003704c: 2304 movs r3, #4 +1003704e: 7023 strb r3, [r4, #0] +10037050: bd70 pop {r4, r5, r6, pc} + ... + +10037054 : +10037054: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10037058: 461e mov r6, r3 +1003705a: b088 sub sp, #32 +1003705c: f241 6318 movw r3, #5656 ; 0x1618 +10037060: f850 a003 ldr.w sl, [r0, r3] +10037064: ab06 add r3, sp, #24 +10037066: 9300 str r3, [sp, #0] +10037068: ab07 add r3, sp, #28 +1003706a: 9301 str r3, [sp, #4] +1003706c: f10d 0317 add.w r3, sp, #23 +10037070: 460c mov r4, r1 +10037072: 9302 str r3, [sp, #8] +10037074: a910 add r1, sp, #64 ; 0x40 +10037076: 2700 movs r7, #0 +10037078: 4615 mov r5, r2 +1003707a: c90e ldmia r1, {r1, r2, r3} +1003707c: 9706 str r7, [sp, #24] +1003707e: f88d 7017 strb.w r7, [sp, #23] +10037082: 9707 str r7, [sp, #28] +10037084: f7ff ff1a bl 10036ebc +10037088: 2c01 cmp r4, #1 +1003708a: d82a bhi.n 100370e2 +1003708c: 2d03 cmp r5, #3 +1003708e: d828 bhi.n 100370e2 +10037090: 2e03 cmp r6, #3 +10037092: d826 bhi.n 100370e2 +10037094: f89d 2017 ldrb.w r2, [sp, #23] +10037098: b2fb uxtb r3, r7 +1003709a: 429a cmp r2, r3 +1003709c: d921 bls.n 100370e2 +1003709e: 1961 adds r1, r4, r5 +100370a0: 2014 movs r0, #20 +100370a2: 4431 add r1, r6 +100370a4: fb00 a101 mla r1, r0, r1, sl +100370a8: aa08 add r2, sp, #32 +100370aa: 441a add r2, r3 +100370ac: f812 3c08 ldrb.w r3, [r2, #-8] +100370b0: f812 2c04 ldrb.w r2, [r2, #-4] +100370b4: 4419 add r1, r3 +100370b6: f881 2046 strb.w r2, [r1, #70] ; 0x46 +100370ba: 490b ldr r1, [pc, #44] ; (100370e8 ) +100370bc: f04f 4080 mov.w r0, #1073741824 ; 0x40000000 +100370c0: e9d1 8902 ldrd r8, r9, [r1, #8] +100370c4: 2100 movs r1, #0 +100370c6: ea00 0008 and.w r0, r0, r8 +100370ca: ea01 0109 and.w r1, r1, r9 +100370ce: ea50 0c01 orrs.w ip, r0, r1 +100370d2: d004 beq.n 100370de +100370d4: 4805 ldr r0, [pc, #20] ; (100370ec ) +100370d6: 4619 mov r1, r3 +100370d8: b252 sxtb r2, r2 +100370da: f00b f815 bl 10042108 +100370de: 3701 adds r7, #1 +100370e0: e7d8 b.n 10037094 +100370e2: b008 add sp, #32 +100370e4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +100370e8: 10000720 .word 0x10000720 +100370ec: 1004ae19 .word 0x1004ae19 + +100370f0 : +100370f0: f241 6318 movw r3, #5656 ; 0x1618 +100370f4: 58c0 ldr r0, [r0, r3] +100370f6: 2300 movs r3, #0 +100370f8: 18c2 adds r2, r0, r3 +100370fa: 3301 adds r3, #1 +100370fc: 2100 movs r1, #0 +100370fe: 2b14 cmp r3, #20 +10037100: f882 1046 strb.w r1, [r2, #70] ; 0x46 +10037104: d1f8 bne.n 100370f8 +10037106: 4770 bx lr + +10037108 : +10037108: b5f0 push {r4, r5, r6, r7, lr} +1003710a: f241 6718 movw r7, #5656 ; 0x1618 +1003710e: 59c7 ldr r7, [r0, r7] +10037110: f897 720c ldrb.w r7, [r7, #524] ; 0x20c +10037114: b11f cbz r7, 1003711e +10037116: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +1003711a: f7ff bf9b b.w 10037054 +1003711e: bdf0 pop {r4, r5, r6, r7, pc} + +10037120 : +10037120: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10037124: f89d 8020 ldrb.w r8, [sp, #32] +10037128: 460e mov r6, r1 +1003712a: 4699 mov r9, r3 +1003712c: 4641 mov r1, r8 +1003712e: f241 6318 movw r3, #5656 ; 0x1618 +10037132: 4614 mov r4, r2 +10037134: 58c7 ldr r7, [r0, r3] +10037136: f7ff fc94 bl 10036a62 +1003713a: f108 35ff add.w r5, r8, #4294967295 +1003713e: 2800 cmp r0, #0 +10037140: b2ed uxtb r5, r5 +10037142: bf14 ite ne +10037144: 462b movne r3, r5 +10037146: 2300 moveq r3, #0 +10037148: 9a09 ldr r2, [sp, #36] ; 0x24 +1003714a: f1b8 0f0f cmp.w r8, #15 +1003714e: bf34 ite cc +10037150: 2001 movcc r0, #1 +10037152: 2000 movcs r0, #0 +10037154: bf28 it cs +10037156: 461d movcs r5, r3 +10037158: 7010 strb r0, [r2, #0] +1003715a: b378 cbz r0, 100371bc +1003715c: 2c02 cmp r4, #2 +1003715e: d005 beq.n 1003716c +10037160: 2c04 cmp r4, #4 +10037162: d003 beq.n 1003716c +10037164: 2c0b cmp r4, #11 +10037166: d001 beq.n 1003716c +10037168: 2c16 cmp r4, #22 +1003716a: d106 bne.n 1003717a +1003716c: 230e movs r3, #14 +1003716e: fb03 7306 mla r3, r3, r6, r7 +10037172: 441d add r5, r3 +10037174: f895 005a ldrb.w r0, [r5, #90] ; 0x5a +10037178: e009 b.n 1003718e +1003717a: 2c0b cmp r4, #11 +1003717c: d906 bls.n 1003718c +1003717e: 230e movs r3, #14 +10037180: fb03 7306 mla r3, r3, r6, r7 +10037184: 441d add r5, r3 +10037186: f895 0068 ldrb.w r0, [r5, #104] ; 0x68 +1003718a: e000 b.n 1003718e +1003718c: 2000 movs r0, #0 +1003718e: f1a4 030c sub.w r3, r4, #12 +10037192: 2b60 cmp r3, #96 ; 0x60 +10037194: d806 bhi.n 100371a4 +10037196: 2c16 cmp r4, #22 +10037198: d004 beq.n 100371a4 +1003719a: 19bb adds r3, r7, r6 +1003719c: f893 3076 ldrb.w r3, [r3, #118] ; 0x76 +100371a0: 4418 add r0, r3 +100371a2: b2c0 uxtb r0, r0 +100371a4: f1b9 0f00 cmp.w r9, #0 +100371a8: d108 bne.n 100371bc +100371aa: f084 0480 eor.w r4, r4, #128 ; 0x80 +100371ae: 2c47 cmp r4, #71 ; 0x47 +100371b0: d804 bhi.n 100371bc +100371b2: 443e add r6, r7 +100371b4: f896 3077 ldrb.w r3, [r6, #119] ; 0x77 +100371b8: 4418 add r0, r3 +100371ba: b2c0 uxtb r0, r0 +100371bc: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +100371c0 : +100371c0: f241 6318 movw r3, #5656 ; 0x1618 +100371c4: 58c3 ldr r3, [r0, r3] +100371c6: f893 0987 ldrb.w r0, [r3, #2439] ; 0x987 +100371ca: b168 cbz r0, 100371e8 +100371cc: 2a02 cmp r2, #2 +100371ce: 4419 add r1, r3 +100371d0: d005 beq.n 100371de +100371d2: 2a04 cmp r2, #4 +100371d4: d003 beq.n 100371de +100371d6: 2a0b cmp r2, #11 +100371d8: d001 beq.n 100371de +100371da: 2a16 cmp r2, #22 +100371dc: d102 bne.n 100371e4 +100371de: f891 0ddd ldrb.w r0, [r1, #3549] ; 0xddd +100371e2: e001 b.n 100371e8 +100371e4: f891 0ddc ldrb.w r0, [r1, #3548] ; 0xddc +100371e8: b240 sxtb r0, r0 +100371ea: 4770 bx lr + +100371ec : +100371ec: 3804 subs r0, #4 +100371ee: b2c0 uxtb r0, r0 +100371f0: 2883 cmp r0, #131 ; 0x83 +100371f2: bf9a itte ls +100371f4: 4b01 ldrls r3, [pc, #4] ; (100371fc ) +100371f6: 5c18 ldrbls r0, [r3, r0] +100371f8: 2000 movhi r0, #0 +100371fa: 4770 bx lr +100371fc: 1004ae61 .word 0x1004ae61 + +10037200 : +10037200: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10037204: 4698 mov r8, r3 +10037206: f241 6318 movw r3, #5656 ; 0x1618 +1003720a: 58c7 ldr r7, [r0, r3] +1003720c: 4604 mov r4, r0 +1003720e: f89d 0018 ldrb.w r0, [sp, #24] +10037212: 460d mov r5, r1 +10037214: 4616 mov r6, r2 +10037216: f7ff ffe9 bl 100371ec +1003721a: f241 3365 movw r3, #4965 ; 0x1365 +1003721e: 5ce4 ldrb r4, [r4, r3] +10037220: 2c02 cmp r4, #2 +10037222: d104 bne.n 1003722e +10037224: f897 3043 ldrb.w r3, [r7, #67] ; 0x43 +10037228: 2b02 cmp r3, #2 +1003722a: d101 bne.n 10037230 +1003722c: e014 b.n 10037258 +1003722e: b18c cbz r4, 10037254 +10037230: 2d01 cmp r5, #1 +10037232: d811 bhi.n 10037258 +10037234: 2e03 cmp r6, #3 +10037236: d80f bhi.n 10037258 +10037238: f1b8 0f03 cmp.w r8, #3 +1003723c: d80c bhi.n 10037258 +1003723e: 2813 cmp r0, #19 +10037240: d80a bhi.n 10037258 +10037242: 4435 add r5, r6 +10037244: 44a8 add r8, r5 +10037246: 2514 movs r5, #20 +10037248: fb05 7708 mla r7, r5, r8, r7 +1003724c: 4438 add r0, r7 +1003724e: f890 0046 ldrb.w r0, [r0, #70] ; 0x46 +10037252: e002 b.n 1003725a +10037254: 4620 mov r0, r4 +10037256: e000 b.n 1003725a +10037258: 2000 movs r0, #0 +1003725a: b240 sxtb r0, r0 +1003725c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10037260 : +10037260: b537 push {r0, r1, r2, r4, r5, lr} +10037262: 2316 movs r3, #22 +10037264: 2100 movs r1, #0 +10037266: 9300 str r3, [sp, #0] +10037268: 460a mov r2, r1 +1003726a: 460b mov r3, r1 +1003726c: 4604 mov r4, r0 +1003726e: f7ff ffc7 bl 10037200 +10037272: f241 6518 movw r5, #5656 ; 0x1618 +10037276: 5963 ldr r3, [r4, r5] +10037278: 2100 movs r1, #0 +1003727a: f883 0174 strb.w r0, [r3, #372] ; 0x174 +1003727e: 236c movs r3, #108 ; 0x6c +10037280: 9300 str r3, [sp, #0] +10037282: 460a mov r2, r1 +10037284: 460b mov r3, r1 +10037286: 4620 mov r0, r4 +10037288: f7ff ffba bl 10037200 +1003728c: 5963 ldr r3, [r4, r5] +1003728e: 2100 movs r1, #0 +10037290: f883 0175 strb.w r0, [r3, #373] ; 0x175 +10037294: 2387 movs r3, #135 ; 0x87 +10037296: 9300 str r3, [sp, #0] +10037298: 4620 mov r0, r4 +1003729a: 460b mov r3, r1 +1003729c: 460a mov r2, r1 +1003729e: f7ff ffaf bl 10037200 +100372a2: 5963 ldr r3, [r4, r5] +100372a4: f883 0176 strb.w r0, [r3, #374] ; 0x176 +100372a8: b003 add sp, #12 +100372aa: bd30 pop {r4, r5, pc} + +100372ac : +100372ac: b5f8 push {r3, r4, r5, r6, r7, lr} +100372ae: 461e mov r6, r3 +100372b0: f241 6318 movw r3, #5656 ; 0x1618 +100372b4: 460c mov r4, r1 +100372b6: 58c7 ldr r7, [r0, r3] +100372b8: f89d 0018 ldrb.w r0, [sp, #24] +100372bc: 4615 mov r5, r2 +100372be: f7ff ff95 bl 100371ec +100372c2: 2c01 cmp r4, #1 +100372c4: d80f bhi.n 100372e6 +100372c6: 2d03 cmp r5, #3 +100372c8: d80d bhi.n 100372e6 +100372ca: 2e03 cmp r6, #3 +100372cc: d80b bhi.n 100372e6 +100372ce: 2813 cmp r0, #19 +100372d0: d809 bhi.n 100372e6 +100372d2: 442c add r4, r5 +100372d4: 4426 add r6, r4 +100372d6: 2414 movs r4, #20 +100372d8: fb04 7706 mla r7, r4, r6, r7 +100372dc: f99d 301c ldrsb.w r3, [sp, #28] +100372e0: 4438 add r0, r7 +100372e2: f880 3046 strb.w r3, [r0, #70] ; 0x46 +100372e6: bdf8 pop {r3, r4, r5, r6, r7, pc} + +100372e8 : +100372e8: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +100372ec: 4a3d ldr r2, [pc, #244] ; (100373e4 ) +100372ee: 4604 mov r4, r0 +100372f0: 6810 ldr r0, [r2, #0] +100372f2: b089 sub sp, #36 ; 0x24 +100372f4: 4611 mov r1, r2 +100372f6: 9003 str r0, [sp, #12] +100372f8: f851 0f04 ldr.w r0, [r1, #4]! +100372fc: ab04 add r3, sp, #16 +100372fe: 6849 ldr r1, [r1, #4] +10037300: 2500 movs r5, #0 +10037302: c303 stmia r3!, {r0, r1} +10037304: f852 0f0c ldr.w r0, [r2, #12]! +10037308: ab06 add r3, sp, #24 +1003730a: 6851 ldr r1, [r2, #4] +1003730c: f10d 0910 add.w r9, sp, #16 +10037310: c303 stmia r3!, {r0, r1} +10037312: 2100 movs r1, #0 +10037314: 2316 movs r3, #22 +10037316: 9300 str r3, [sp, #0] +10037318: 4620 mov r0, r4 +1003731a: 460a mov r2, r1 +1003731c: 460b mov r3, r1 +1003731e: f7ff ff6f bl 10037200 +10037322: af06 add r7, sp, #24 +10037324: fa5f f880 uxtb.w r8, r0 +10037328: ab03 add r3, sp, #12 +1003732a: 5cee ldrb r6, [r5, r3] +1003732c: 2100 movs r1, #0 +1003732e: 460a mov r2, r1 +10037330: 460b mov r3, r1 +10037332: 9600 str r6, [sp, #0] +10037334: 4620 mov r0, r4 +10037336: f7ff ff63 bl 10037200 +1003733a: ebc8 0000 rsb r0, r8, r0 +1003733e: 2100 movs r1, #0 +10037340: b240 sxtb r0, r0 +10037342: 9001 str r0, [sp, #4] +10037344: 9600 str r6, [sp, #0] +10037346: 4620 mov r0, r4 +10037348: 460a mov r2, r1 +1003734a: 460b mov r3, r1 +1003734c: 3501 adds r5, #1 +1003734e: f7ff ffad bl 100372ac +10037352: 2d04 cmp r5, #4 +10037354: d1e8 bne.n 10037328 +10037356: 2100 movs r1, #0 +10037358: 236c movs r3, #108 ; 0x6c +1003735a: 9300 str r3, [sp, #0] +1003735c: 4620 mov r0, r4 +1003735e: 460a mov r2, r1 +10037360: 460b mov r3, r1 +10037362: f7ff ff4d bl 10037200 +10037366: 2500 movs r5, #0 +10037368: fa5f f880 uxtb.w r8, r0 +1003736c: f819 6005 ldrb.w r6, [r9, r5] +10037370: 2100 movs r1, #0 +10037372: 460a mov r2, r1 +10037374: 460b mov r3, r1 +10037376: 9600 str r6, [sp, #0] +10037378: 4620 mov r0, r4 +1003737a: f7ff ff41 bl 10037200 +1003737e: ebc8 0000 rsb r0, r8, r0 +10037382: 2100 movs r1, #0 +10037384: b240 sxtb r0, r0 +10037386: 9001 str r0, [sp, #4] +10037388: 9600 str r6, [sp, #0] +1003738a: 4620 mov r0, r4 +1003738c: 460a mov r2, r1 +1003738e: 460b mov r3, r1 +10037390: 3501 adds r5, #1 +10037392: f7ff ff8b bl 100372ac +10037396: 2d08 cmp r5, #8 +10037398: d1e8 bne.n 1003736c +1003739a: 2100 movs r1, #0 +1003739c: 2387 movs r3, #135 ; 0x87 +1003739e: 9300 str r3, [sp, #0] +100373a0: 4620 mov r0, r4 +100373a2: 460a mov r2, r1 +100373a4: 460b mov r3, r1 +100373a6: f7ff ff2b bl 10037200 +100373aa: 2500 movs r5, #0 +100373ac: fa5f f880 uxtb.w r8, r0 +100373b0: 5d7e ldrb r6, [r7, r5] +100373b2: 2100 movs r1, #0 +100373b4: 460a mov r2, r1 +100373b6: 460b mov r3, r1 +100373b8: 9600 str r6, [sp, #0] +100373ba: 4620 mov r0, r4 +100373bc: f7ff ff20 bl 10037200 +100373c0: ebc8 0000 rsb r0, r8, r0 +100373c4: 2100 movs r1, #0 +100373c6: b240 sxtb r0, r0 +100373c8: 9001 str r0, [sp, #4] +100373ca: 9600 str r6, [sp, #0] +100373cc: 4620 mov r0, r4 +100373ce: 460a mov r2, r1 +100373d0: 460b mov r3, r1 +100373d2: 3501 adds r5, #1 +100373d4: f7ff ff6a bl 100372ac +100373d8: 2d08 cmp r5, #8 +100373da: d1e9 bne.n 100373b0 +100373dc: b009 add sp, #36 ; 0x24 +100373de: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100373e2: bf00 nop +100373e4: 1004ae05 .word 0x1004ae05 + +100373e8 : +100373e8: b510 push {r4, lr} +100373ea: 4604 mov r4, r0 +100373ec: f7ff ff38 bl 10037260 +100373f0: 4620 mov r0, r4 +100373f2: e8bd 4010 ldmia.w sp!, {r4, lr} +100373f6: f7ff bf77 b.w 100372e8 + +100373fa : +100373fa: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +100373fe: 9f0a ldr r7, [sp, #40] ; 0x28 +10037400: f89d 902c ldrb.w r9, [sp, #44] ; 0x2c +10037404: 4605 mov r5, r0 +10037406: 460e mov r6, r1 +10037408: 4692 mov sl, r2 +1003740a: 4698 mov r8, r3 +1003740c: 2400 movs r4, #0 +1003740e: 454c cmp r4, r9 +10037410: da0f bge.n 10037432 +10037412: 5d3a ldrb r2, [r7, r4] +10037414: 4631 mov r1, r6 +10037416: 4653 mov r3, sl +10037418: f8cd 8000 str.w r8, [sp] +1003741c: 4628 mov r0, r5 +1003741e: f7fd f85d bl 100344dc +10037422: 5d3b ldrb r3, [r7, r4] +10037424: 4601 mov r1, r0 +10037426: 4632 mov r2, r6 +10037428: 4628 mov r0, r5 +1003742a: f7fc ffb2 bl 10034392 +1003742e: 3401 adds r4, #1 +10037430: e7ed b.n 1003740e +10037432: b002 add sp, #8 +10037434: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +10037438 : +10037438: b5f0 push {r4, r5, r6, r7, lr} +1003743a: 4617 mov r7, r2 +1003743c: f241 6218 movw r2, #5656 ; 0x1618 +10037440: b085 sub sp, #20 +10037442: 4604 mov r4, r0 +10037444: 468c mov ip, r1 +10037446: 5885 ldr r5, [r0, r2] +10037448: b953 cbnz r3, 10037460 +1003744a: 4b11 ldr r3, [pc, #68] ; (10037490 ) +1003744c: 6818 ldr r0, [r3, #0] +1003744e: 9002 str r0, [sp, #8] +10037450: 6b2b ldr r3, [r5, #48] ; 0x30 +10037452: b9db cbnz r3, 1003748c +10037454: ab02 add r3, sp, #8 +10037456: 9300 str r3, [sp, #0] +10037458: 2304 movs r3, #4 +1003745a: 9301 str r3, [sp, #4] +1003745c: 4620 mov r0, r4 +1003745e: e011 b.n 10037484 +10037460: 2b01 cmp r3, #1 +10037462: d102 bne.n 1003746a +10037464: ae02 add r6, sp, #8 +10037466: 4b0b ldr r3, [pc, #44] ; (10037494 ) +10037468: e003 b.n 10037472 +1003746a: 2b02 cmp r3, #2 +1003746c: d10e bne.n 1003748c +1003746e: 4b0a ldr r3, [pc, #40] ; (10037498 ) +10037470: ae02 add r6, sp, #8 +10037472: 6818 ldr r0, [r3, #0] +10037474: 6859 ldr r1, [r3, #4] +10037476: ab02 add r3, sp, #8 +10037478: c603 stmia r6!, {r0, r1} +1003747a: 9300 str r3, [sp, #0] +1003747c: 2308 movs r3, #8 +1003747e: 9301 str r3, [sp, #4] +10037480: 4620 mov r0, r4 +10037482: 4661 mov r1, ip +10037484: 6aea ldr r2, [r5, #44] ; 0x2c +10037486: 463b mov r3, r7 +10037488: f7ff ffb7 bl 100373fa +1003748c: b005 add sp, #20 +1003748e: bdf0 pop {r4, r5, r6, r7, pc} +10037490: 1004ae05 .word 0x1004ae05 +10037494: 1004ae09 .word 0x1004ae09 +10037498: 1004ae11 .word 0x1004ae11 + +1003749c : +1003749c: f241 6318 movw r3, #5656 ; 0x1618 +100374a0: 58c3 ldr r3, [r0, r3] +100374a2: b570 push {r4, r5, r6, lr} +100374a4: 6b1b ldr r3, [r3, #48] ; 0x30 +100374a6: 4606 mov r6, r0 +100374a8: 460c mov r4, r1 +100374aa: 4615 mov r5, r2 +100374ac: b91b cbnz r3, 100374b6 +100374ae: 4611 mov r1, r2 +100374b0: 4622 mov r2, r4 +100374b2: f7ff ffc1 bl 10037438 +100374b6: 4630 mov r0, r6 +100374b8: 4629 mov r1, r5 +100374ba: 4622 mov r2, r4 +100374bc: 2301 movs r3, #1 +100374be: f7ff ffbb bl 10037438 +100374c2: 4630 mov r0, r6 +100374c4: 4629 mov r1, r5 +100374c6: 4622 mov r2, r4 +100374c8: 2302 movs r3, #2 +100374ca: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +100374ce: f7ff bfb3 b.w 10037438 + +100374d2 : +100374d2: 2903 cmp r1, #3 +100374d4: d006 beq.n 100374e4 +100374d6: f990 3000 ldrsb.w r3, [r0] +100374da: 2b3f cmp r3, #63 ; 0x3f +100374dc: bfa8 it ge +100374de: 233f movge r3, #63 ; 0x3f +100374e0: b2db uxtb r3, r3 +100374e2: e000 b.n 100374e6 +100374e4: 233f movs r3, #63 ; 0x3f +100374e6: f990 2001 ldrsb.w r2, [r0, #1] +100374ea: b25b sxtb r3, r3 +100374ec: f990 0002 ldrsb.w r0, [r0, #2] +100374f0: 4293 cmp r3, r2 +100374f2: bfa8 it ge +100374f4: 4613 movge r3, r2 +100374f6: 4283 cmp r3, r0 +100374f8: bfb8 it lt +100374fa: 4618 movlt r0, r3 +100374fc: 4770 bx lr + +100374fe : +100374fe: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10037502: f241 6118 movw r1, #5656 ; 0x1618 +10037506: 5845 ldr r5, [r0, r1] +10037508: f241 3164 movw r1, #4964 ; 0x1364 +1003750c: 5c41 ldrb r1, [r0, r1] +1003750e: b085 sub sp, #20 +10037510: 2902 cmp r1, #2 +10037512: f89d 7030 ldrb.w r7, [sp, #48] ; 0x30 +10037516: f89d 4034 ldrb.w r4, [sp, #52] ; 0x34 +1003751a: d104 bne.n 10037526 +1003751c: f895 1043 ldrb.w r1, [r5, #67] ; 0x43 +10037520: 2901 cmp r1, #1 +10037522: d17b bne.n 1003761c +10037524: e001 b.n 1003752a +10037526: 2900 cmp r1, #0 +10037528: d078 beq.n 1003761c +1003752a: f895 6045 ldrb.w r6, [r5, #69] ; 0x45 +1003752e: b123 cbz r3, 1003753a +10037530: 2b01 cmp r3, #1 +10037532: f64f 73ff movw r3, #65535 ; 0xffff +10037536: bf08 it eq +10037538: 2301 moveq r3, #1 +1003753a: 2c18 cmp r4, #24 +1003753c: d023 beq.n 10037586 +1003753e: d80d bhi.n 1003755c +10037540: 2c0b cmp r4, #11 +10037542: d023 beq.n 1003758c +10037544: d804 bhi.n 10037550 +10037546: 2c02 cmp r4, #2 +10037548: d020 beq.n 1003758c +1003754a: 2c04 cmp r4, #4 +1003754c: d01e beq.n 1003758c +1003754e: e017 b.n 10037580 +10037550: 2c12 cmp r4, #18 +10037552: d018 beq.n 10037586 +10037554: 2c16 cmp r4, #22 +10037556: d019 beq.n 1003758c +10037558: 2c0c cmp r4, #12 +1003755a: e007 b.n 1003756c +1003755c: 2c60 cmp r4, #96 ; 0x60 +1003755e: d012 beq.n 10037586 +10037560: d806 bhi.n 10037570 +10037562: 2c30 cmp r4, #48 ; 0x30 +10037564: d00f beq.n 10037586 +10037566: 2c48 cmp r4, #72 ; 0x48 +10037568: d00d beq.n 10037586 +1003756a: 2c24 cmp r4, #36 ; 0x24 +1003756c: d108 bne.n 10037580 +1003756e: e00a b.n 10037586 +10037570: 2c6c cmp r4, #108 ; 0x6c +10037572: d008 beq.n 10037586 +10037574: d304 bcc.n 10037580 +10037576: 3c80 subs r4, #128 ; 0x80 +10037578: 2c07 cmp r4, #7 +1003757a: bf98 it ls +1003757c: 2002 movls r0, #2 +1003757e: d907 bls.n 10037590 +10037580: f64f 70ff movw r0, #65535 ; 0xffff +10037584: e004 b.n 10037590 +10037586: 2001 movs r0, #1 +10037588: 2300 movs r3, #0 +1003758a: e001 b.n 10037590 +1003758c: 2000 movs r0, #0 +1003758e: 4603 mov r3, r0 +10037590: b92a cbnz r2, 1003759e +10037592: f89d 4038 ldrb.w r4, [sp, #56] ; 0x38 +10037596: 3c01 subs r4, #1 +10037598: b264 sxtb r4, r4 +1003759a: b2a4 uxth r4, r4 +1003759c: e001 b.n 100375a2 +1003759e: f64f 74ff movw r4, #65535 ; 0xffff +100375a2: fa0f f983 sxth.w r9, r3 +100375a6: f1b9 3fff cmp.w r9, #4294967295 +100375aa: d037 beq.n 1003761c +100375ac: fa0f f880 sxth.w r8, r0 +100375b0: f1b8 3fff cmp.w r8, #4294967295 +100375b4: d032 beq.n 1003761c +100375b6: b224 sxth r4, r4 +100375b8: 1c63 adds r3, r4, #1 +100375ba: d02f beq.n 1003761c +100375bc: bb72 cbnz r2, 1003761c +100375be: 4611 mov r1, r2 +100375c0: a801 add r0, sp, #4 +100375c2: 220a movs r2, #10 +100375c4: f00a fea1 bl 1004230a +100375c8: 232a movs r3, #42 ; 0x2a +100375ca: 200e movs r0, #14 +100375cc: fb03 f909 mul.w r9, r3, r9 +100375d0: fb00 f808 mul.w r8, r0, r8 +100375d4: eb09 0208 add.w r2, r9, r8 +100375d8: 442a add r2, r5 +100375da: 4422 add r2, r4 +100375dc: 443a add r2, r7 +100375de: f892 3078 ldrb.w r3, [r2, #120] ; 0x78 +100375e2: f88d 3004 strb.w r3, [sp, #4] +100375e6: f892 30cc ldrb.w r3, [r2, #204] ; 0xcc +100375ea: f88d 3005 strb.w r3, [sp, #5] +100375ee: f892 3120 ldrb.w r3, [r2, #288] ; 0x120 +100375f2: f88d 3006 strb.w r3, [sp, #6] +100375f6: 1ef3 subs r3, r6, #3 +100375f8: 2b01 cmp r3, #1 +100375fa: d805 bhi.n 10037608 +100375fc: a801 add r0, sp, #4 +100375fe: 4631 mov r1, r6 +10037600: 4622 mov r2, r4 +10037602: f7ff ff66 bl 100374d2 +10037606: e00a b.n 1003761e +10037608: 2354 movs r3, #84 ; 0x54 +1003760a: fb03 9906 mla r9, r3, r6, r9 +1003760e: 44c8 add r8, r9 +10037610: 4445 add r5, r8 +10037612: 442c add r4, r5 +10037614: 4427 add r7, r4 +10037616: f897 0078 ldrb.w r0, [r7, #120] ; 0x78 +1003761a: e000 b.n 1003761e +1003761c: 203f movs r0, #63 ; 0x3f +1003761e: b240 sxtb r0, r0 +10037620: b005 add sp, #20 +10037622: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + ... + +10037628 : +10037628: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003762c: f241 6318 movw r3, #5656 ; 0x1618 +10037630: b08d sub sp, #52 ; 0x34 +10037632: 58c4 ldr r4, [r0, r3] +10037634: 9009 str r0, [sp, #36] ; 0x24 +10037636: 2700 movs r7, #0 +10037638: f04f 0c2a mov.w ip, #42 ; 0x2a +1003763c: fb0c 4507 mla r5, ip, r7, r4 +10037640: 2600 movs r6, #0 +10037642: f105 0bcc add.w fp, r5, #204 ; 0xcc +10037646: f04f 0800 mov.w r8, #0 +1003764a: f04f 0900 mov.w r9, #0 +1003764e: eb08 0305 add.w r3, r8, r5 +10037652: 2254 movs r2, #84 ; 0x54 +10037654: fb02 3209 mla r2, r2, r9, r3 +10037658: 9208 str r2, [sp, #32] +1003765a: f892 1078 ldrb.w r1, [r2, #120] ; 0x78 +1003765e: f8d4 2208 ldr.w r2, [r4, #520] ; 0x208 +10037662: 2a01 cmp r2, #1 +10037664: d112 bne.n 1003768c +10037666: f8dd c024 ldr.w ip, [sp, #36] ; 0x24 +1003766a: b2f0 uxtb r0, r6 +1003766c: f50c 52b0 add.w r2, ip, #5632 ; 0x1600 +10037670: 3218 adds r2, #24 +10037672: 6812 ldr r2, [r2, #0] +10037674: 2802 cmp r0, #2 +10037676: bf08 it eq +10037678: f892 a176 ldrbeq.w sl, [r2, #374] ; 0x176 +1003767c: d010 beq.n 100376a0 +1003767e: 2801 cmp r0, #1 +10037680: bf0c ite eq +10037682: f892 a175 ldrbeq.w sl, [r2, #373] ; 0x175 +10037686: f892 a174 ldrbne.w sl, [r2, #372] ; 0x174 +1003768a: e009 b.n 100376a0 +1003768c: f8dd c024 ldr.w ip, [sp, #36] ; 0x24 +10037690: f50c 529b add.w r2, ip, #4960 ; 0x1360 +10037694: f892 a007 ldrb.w sl, [r2, #7] +10037698: ea4f 0a4a mov.w sl, sl, lsl #1 +1003769c: fa5f fa8a uxtb.w sl, sl +100376a0: b248 sxtb r0, r1 +100376a2: 283f cmp r0, #63 ; 0x3f +100376a4: 9005 str r0, [sp, #20] +100376a6: d004 beq.n 100376b2 +100376a8: 9a08 ldr r2, [sp, #32] +100376aa: ebca 0101 rsb r1, sl, r1 +100376ae: f882 1078 strb.w r1, [r2, #120] ; 0x78 +100376b2: f8df c0c0 ldr.w ip, [pc, #192] ; 10037774 +100376b6: f04f 4280 mov.w r2, #1073741824 ; 0x40000000 +100376ba: 2300 movs r3, #0 +100376bc: e9dc 0102 ldrd r0, r1, [ip, #8] +100376c0: 4002 ands r2, r0 +100376c2: 400b ands r3, r1 +100376c4: 4313 orrs r3, r2 +100376c6: d039 beq.n 1003773c +100376c8: 9905 ldr r1, [sp, #20] +100376ca: f108 0001 add.w r0, r8, #1 +100376ce: 9a08 ldr r2, [sp, #32] +100376d0: 9000 str r0, [sp, #0] +100376d2: 9101 str r1, [sp, #4] +100376d4: f8cd a008 str.w sl, [sp, #8] +100376d8: f992 3078 ldrsb.w r3, [r2, #120] ; 0x78 +100376dc: 9006 str r0, [sp, #24] +100376de: 9303 str r3, [sp, #12] +100376e0: 4823 ldr r0, [pc, #140] ; (10037770 ) +100376e2: 4633 mov r3, r6 +100376e4: 4649 mov r1, r9 +100376e6: 463a mov r2, r7 +100376e8: f00a fd0e bl 10042108 +100376ec: fa5f f389 uxtb.w r3, r9 +100376f0: 2b02 cmp r3, #2 +100376f2: d123 bne.n 1003773c +100376f4: 2300 movs r3, #0 +100376f6: f8ad 302c strh.w r3, [sp, #44] ; 0x2c +100376fa: f88d 302e strb.w r3, [sp, #46] ; 0x2e +100376fe: f81b 3c54 ldrb.w r3, [fp, #-84] +10037702: 2104 movs r1, #4 +10037704: f88d 302c strb.w r3, [sp, #44] ; 0x2c +10037708: f89b 3000 ldrb.w r3, [fp] +1003770c: fa0f f288 sxth.w r2, r8 +10037710: f88d 302d strb.w r3, [sp, #45] ; 0x2d +10037714: f89b 3054 ldrb.w r3, [fp, #84] ; 0x54 +10037718: a80b add r0, sp, #44 ; 0x2c +1003771a: f88d 302e strb.w r3, [sp, #46] ; 0x2e +1003771e: f7ff fed8 bl 100374d2 +10037722: 9b06 ldr r3, [sp, #24] +10037724: 9003 str r0, [sp, #12] +10037726: 9300 str r3, [sp, #0] +10037728: 233f movs r3, #63 ; 0x3f +1003772a: 9301 str r3, [sp, #4] +1003772c: f8cd a008 str.w sl, [sp, #8] +10037730: 480f ldr r0, [pc, #60] ; (10037770 ) +10037732: 2103 movs r1, #3 +10037734: 463a mov r2, r7 +10037736: 4633 mov r3, r6 +10037738: f00a fce6 bl 10042108 +1003773c: f109 0901 add.w r9, r9, #1 +10037740: f1b9 0f03 cmp.w r9, #3 +10037744: d183 bne.n 1003764e +10037746: f108 0801 add.w r8, r8, #1 +1003774a: f1b8 0f0e cmp.w r8, #14 +1003774e: f10b 0b01 add.w fp, fp, #1 +10037752: f47f af7a bne.w 1003764a +10037756: 3601 adds r6, #1 +10037758: 2e03 cmp r6, #3 +1003775a: f105 050e add.w r5, r5, #14 +1003775e: f47f af70 bne.w 10037642 +10037762: 3701 adds r7, #1 +10037764: 2f02 cmp r7, #2 +10037766: f47f af67 bne.w 10037638 +1003776a: b00d add sp, #52 ; 0x34 +1003776c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10037770: 1004ae2b .word 0x1004ae2b +10037774: 10000720 .word 0x10000720 + +10037778 : +10037778: b530 push {r4, r5, lr} +1003777a: f241 6318 movw r3, #5656 ; 0x1618 +1003777e: 58c3 ldr r3, [r0, r3] +10037780: f103 00fc add.w r0, r3, #252 ; 0xfc +10037784: 2200 movs r2, #0 +10037786: 2100 movs r1, #0 +10037788: 18d4 adds r4, r2, r3 +1003778a: 440c add r4, r1 +1003778c: 3101 adds r1, #1 +1003778e: 253f movs r5, #63 ; 0x3f +10037790: 290e cmp r1, #14 +10037792: f884 5078 strb.w r5, [r4, #120] ; 0x78 +10037796: d1f7 bne.n 10037788 +10037798: 320e adds r2, #14 +1003779a: 2a2a cmp r2, #42 ; 0x2a +1003779c: d1f3 bne.n 10037786 +1003779e: 2200 movs r2, #0 +100377a0: 2100 movs r1, #0 +100377a2: 18d4 adds r4, r2, r3 +100377a4: 440c add r4, r1 +100377a6: 3101 adds r1, #1 +100377a8: 253f movs r5, #63 ; 0x3f +100377aa: 290e cmp r1, #14 +100377ac: f884 50a2 strb.w r5, [r4, #162] ; 0xa2 +100377b0: d1f7 bne.n 100377a2 +100377b2: 320e adds r2, #14 +100377b4: 2a2a cmp r2, #42 ; 0x2a +100377b6: d1f3 bne.n 100377a0 +100377b8: 3354 adds r3, #84 ; 0x54 +100377ba: 4283 cmp r3, r0 +100377bc: d1e2 bne.n 10037784 +100377be: bd30 pop {r4, r5, pc} + +100377c0 : +100377c0: b570 push {r4, r5, r6, lr} +100377c2: 2902 cmp r1, #2 +100377c4: f241 6618 movw r6, #5656 ; 0x1618 +100377c8: f89d 5010 ldrb.w r5, [sp, #16] +100377cc: f89d 4014 ldrb.w r4, [sp, #20] +100377d0: 5986 ldr r6, [r0, r6] +100377d2: d002 beq.n 100377da +100377d4: 1ec8 subs r0, r1, #3 +100377d6: 4241 negs r1, r0 +100377d8: 4141 adcs r1, r0 +100377da: 2d01 cmp r5, #1 +100377dc: d103 bne.n 100377e6 +100377de: 2c01 cmp r4, #1 +100377e0: d12b bne.n 1003783a +100377e2: 2400 movs r4, #0 +100377e4: e009 b.n 100377fa +100377e6: 2d02 cmp r5, #2 +100377e8: d102 bne.n 100377f0 +100377ea: 2c01 cmp r4, #1 +100377ec: d125 bne.n 1003783a +100377ee: e004 b.n 100377fa +100377f0: 2d03 cmp r5, #3 +100377f2: d122 bne.n 1003783a +100377f4: 2c01 cmp r4, #1 +100377f6: d120 bne.n 1003783a +100377f8: 2402 movs r4, #2 +100377fa: 2a01 cmp r2, #1 +100377fc: d11d bne.n 1003783a +100377fe: f89d 0018 ldrb.w r0, [sp, #24] +10037802: 3801 subs r0, #1 +10037804: b240 sxtb r0, r0 +10037806: 1c42 adds r2, r0, #1 +10037808: d017 beq.n 1003783a +1003780a: f89d 201c ldrb.w r2, [sp, #28] +1003780e: 2a3f cmp r2, #63 ; 0x3f +10037810: bf28 it cs +10037812: 223f movcs r2, #63 ; 0x3f +10037814: 1e9d subs r5, r3, #2 +10037816: 426b negs r3, r5 +10037818: 416b adcs r3, r5 +1003781a: 2554 movs r5, #84 ; 0x54 +1003781c: 4369 muls r1, r5 +1003781e: 252a movs r5, #42 ; 0x2a +10037820: fb05 1103 mla r1, r5, r3, r1 +10037824: 230e movs r3, #14 +10037826: fb03 1404 mla r4, r3, r4, r1 +1003782a: 4434 add r4, r6 +1003782c: 4404 add r4, r0 +1003782e: f994 3078 ldrsb.w r3, [r4, #120] ; 0x78 +10037832: 429a cmp r2, r3 +10037834: bfb8 it lt +10037836: f884 2078 strblt.w r2, [r4, #120] ; 0x78 +1003783a: bd70 pop {r4, r5, r6, pc} + +1003783c : +1003783c: b510 push {r4, lr} +1003783e: f89d 4008 ldrb.w r4, [sp, #8] +10037842: 9402 str r4, [sp, #8] +10037844: e8bd 4010 ldmia.w sp!, {r4, lr} +10037848: f7fc be48 b.w 100344dc + +1003784c : +1003784c: f241 72b1 movw r2, #6065 ; 0x17b1 +10037850: 5c82 ldrb r2, [r0, r2] +10037852: b508 push {r3, lr} +10037854: b922 cbnz r2, 10037860 +10037856: f241 6268 movw r2, #5736 ; 0x1668 +1003785a: 5883 ldr r3, [r0, r2] +1003785c: b103 cbz r3, 10037860 +1003785e: 4798 blx r3 +10037860: bd08 pop {r3, pc} + +10037862 : +10037862: f241 72b1 movw r2, #6065 ; 0x17b1 +10037866: 5c82 ldrb r2, [r0, r2] +10037868: b508 push {r3, lr} +1003786a: b922 cbnz r2, 10037876 +1003786c: f241 626c movw r2, #5740 ; 0x166c +10037870: 5883 ldr r3, [r0, r2] +10037872: b103 cbz r3, 10037876 +10037874: 4798 blx r3 +10037876: bd08 pop {r3, pc} + +10037878 : +10037878: f241 72b1 movw r2, #6065 ; 0x17b1 +1003787c: 5c82 ldrb r2, [r0, r2] +1003787e: b508 push {r3, lr} +10037880: b922 cbnz r2, 1003788c +10037882: f500 53b3 add.w r3, r0, #5728 ; 0x1660 +10037886: 681b ldr r3, [r3, #0] +10037888: b103 cbz r3, 1003788c +1003788a: 4798 blx r3 +1003788c: bd08 pop {r3, pc} + +1003788e : +1003788e: f241 72b1 movw r2, #6065 ; 0x17b1 +10037892: 5c82 ldrb r2, [r0, r2] +10037894: b508 push {r3, lr} +10037896: b922 cbnz r2, 100378a2 +10037898: f241 6264 movw r2, #5732 ; 0x1664 +1003789c: 5883 ldr r3, [r0, r2] +1003789e: b103 cbz r3, 100378a2 +100378a0: 4798 blx r3 +100378a2: bd08 pop {r3, pc} + +100378a4 : +100378a4: f241 72b1 movw r2, #6065 ; 0x17b1 +100378a8: 5c82 ldrb r2, [r0, r2] +100378aa: b508 push {r3, lr} +100378ac: b922 cbnz r2, 100378b8 +100378ae: f241 622c movw r2, #5676 ; 0x162c +100378b2: 5883 ldr r3, [r0, r2] +100378b4: b103 cbz r3, 100378b8 +100378b6: 4798 blx r3 +100378b8: bd08 pop {r3, pc} + +100378ba : +100378ba: f241 72b1 movw r2, #6065 ; 0x17b1 +100378be: 5c82 ldrb r2, [r0, r2] +100378c0: b508 push {r3, lr} +100378c2: b922 cbnz r2, 100378ce +100378c4: f241 6258 movw r2, #5720 ; 0x1658 +100378c8: 5883 ldr r3, [r0, r2] +100378ca: b103 cbz r3, 100378ce +100378cc: 4798 blx r3 +100378ce: bd08 pop {r3, pc} + +100378d0 : +100378d0: f241 72b1 movw r2, #6065 ; 0x17b1 +100378d4: 5c82 ldrb r2, [r0, r2] +100378d6: b508 push {r3, lr} +100378d8: b922 cbnz r2, 100378e4 +100378da: f241 625c movw r2, #5724 ; 0x165c +100378de: 5883 ldr r3, [r0, r2] +100378e0: b103 cbz r3, 100378e4 +100378e2: 4798 blx r3 +100378e4: bd08 pop {r3, pc} + +100378e6 : +100378e6: b5f8 push {r3, r4, r5, r6, r7, lr} +100378e8: f241 7611 movw r6, #5905 ; 0x1711 +100378ec: 2700 movs r7, #0 +100378ee: f241 6324 movw r3, #5668 ; 0x1624 +100378f2: 5587 strb r7, [r0, r6] +100378f4: 58c3 ldr r3, [r0, r3] +100378f6: 4604 mov r4, r0 +100378f8: 4798 blx r3 +100378fa: 2801 cmp r0, #1 +100378fc: 4605 mov r5, r0 +100378fe: bf18 it ne +10037900: 55a7 strbne r7, [r4, r6] +10037902: d103 bne.n 1003790c +10037904: 55a0 strb r0, [r4, r6] +10037906: 4620 mov r0, r4 +10037908: f7ff fab4 bl 10036e74 +1003790c: 4628 mov r0, r5 +1003790e: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10037910 : +10037910: f241 6328 movw r3, #5672 ; 0x1628 +10037914: b510 push {r4, lr} +10037916: 58c3 ldr r3, [r0, r3] +10037918: 4604 mov r4, r0 +1003791a: 4798 blx r3 +1003791c: 2801 cmp r0, #1 +1003791e: d103 bne.n 10037928 +10037920: 2200 movs r2, #0 +10037922: f241 7311 movw r3, #5905 ; 0x1711 +10037926: 54e2 strb r2, [r4, r3] +10037928: bd10 pop {r4, pc} + +1003792a : +1003792a: b508 push {r3, lr} +1003792c: f241 638c movw r3, #5772 ; 0x168c +10037930: 58c3 ldr r3, [r0, r3] +10037932: b103 cbz r3, 10037936 +10037934: 4798 blx r3 +10037936: bd08 pop {r3, pc} + +10037938 : +10037938: b508 push {r3, lr} +1003793a: f241 6390 movw r3, #5776 ; 0x1690 +1003793e: 58c3 ldr r3, [r0, r3] +10037940: b103 cbz r3, 10037944 +10037942: 4798 blx r3 +10037944: bd08 pop {r3, pc} + +10037946 : +10037946: b508 push {r3, lr} +10037948: f241 6398 movw r3, #5784 ; 0x1698 +1003794c: 58c3 ldr r3, [r0, r3] +1003794e: b10b cbz r3, 10037954 +10037950: 4798 blx r3 +10037952: bd08 pop {r3, pc} +10037954: 4618 mov r0, r3 +10037956: bd08 pop {r3, pc} + +10037958 : +10037958: b508 push {r3, lr} +1003795a: f241 6394 movw r3, #5780 ; 0x1694 +1003795e: 58c3 ldr r3, [r0, r3] +10037960: b10b cbz r3, 10037966 +10037962: 4798 blx r3 +10037964: bd08 pop {r3, pc} +10037966: 4618 mov r0, r3 +10037968: bd08 pop {r3, pc} + +1003796a : +1003796a: b510 push {r4, lr} +1003796c: f500 54b5 add.w r4, r0, #5792 ; 0x16a0 +10037970: 6824 ldr r4, [r4, #0] +10037972: b104 cbz r4, 10037976 +10037974: 47a0 blx r4 +10037976: bd10 pop {r4, pc} + +10037978 : +10037978: b510 push {r4, lr} +1003797a: f241 649c movw r4, #5788 ; 0x169c +1003797e: 5904 ldr r4, [r0, r4] +10037980: b104 cbz r4, 10037984 +10037982: 47a0 blx r4 +10037984: bd10 pop {r4, pc} + +10037986 : +10037986: b508 push {r3, lr} +10037988: f241 73b1 movw r3, #6065 ; 0x17b1 +1003798c: 5cc3 ldrb r3, [r0, r3] +1003798e: b12b cbz r3, 1003799c +10037990: f241 73a8 movw r3, #6056 ; 0x17a8 +10037994: 58c3 ldr r3, [r0, r3] +10037996: 2b00 cmp r3, #0 +10037998: bf18 it ne +1003799a: 4618 movne r0, r3 +1003799c: f241 6370 movw r3, #5744 ; 0x1670 +100379a0: 58c3 ldr r3, [r0, r3] +100379a2: b103 cbz r3, 100379a6 +100379a4: 4798 blx r3 +100379a6: bd08 pop {r3, pc} + +100379a8 : +100379a8: b508 push {r3, lr} +100379aa: f241 73b1 movw r3, #6065 ; 0x17b1 +100379ae: 5cc3 ldrb r3, [r0, r3] +100379b0: b12b cbz r3, 100379be +100379b2: f241 73a8 movw r3, #6056 ; 0x17a8 +100379b6: 58c3 ldr r3, [r0, r3] +100379b8: 2b00 cmp r3, #0 +100379ba: bf18 it ne +100379bc: 4618 movne r0, r3 +100379be: f241 6374 movw r3, #5748 ; 0x1674 +100379c2: 58c3 ldr r3, [r0, r3] +100379c4: b103 cbz r3, 100379c8 +100379c6: 4798 blx r3 +100379c8: bd08 pop {r3, pc} + +100379ca : +100379ca: b508 push {r3, lr} +100379cc: f241 6330 movw r3, #5680 ; 0x1630 +100379d0: 58c3 ldr r3, [r0, r3] +100379d2: b10b cbz r3, 100379d8 +100379d4: 4798 blx r3 +100379d6: bd08 pop {r3, pc} +100379d8: 4618 mov r0, r3 +100379da: bd08 pop {r3, pc} + +100379dc : +100379dc: b508 push {r3, lr} +100379de: f241 6334 movw r3, #5684 ; 0x1634 +100379e2: 58c3 ldr r3, [r0, r3] +100379e4: b10b cbz r3, 100379ea +100379e6: 4798 blx r3 +100379e8: bd08 pop {r3, pc} +100379ea: 4618 mov r0, r3 +100379ec: bd08 pop {r3, pc} + +100379ee : +100379ee: b508 push {r3, lr} +100379f0: f241 6338 movw r3, #5688 ; 0x1638 +100379f4: 58c3 ldr r3, [r0, r3] +100379f6: b103 cbz r3, 100379fa +100379f8: 4798 blx r3 +100379fa: bd08 pop {r3, pc} + +100379fc : +100379fc: b508 push {r3, lr} +100379fe: f241 63b8 movw r3, #5816 ; 0x16b8 +10037a02: 58c3 ldr r3, [r0, r3] +10037a04: b10b cbz r3, 10037a0a +10037a06: 4798 blx r3 +10037a08: bd08 pop {r3, pc} +10037a0a: 4618 mov r0, r3 +10037a0c: bd08 pop {r3, pc} + +10037a0e : +10037a0e: b508 push {r3, lr} +10037a10: f241 63bc movw r3, #5820 ; 0x16bc +10037a14: 58c3 ldr r3, [r0, r3] +10037a16: b10b cbz r3, 10037a1c +10037a18: 4798 blx r3 +10037a1a: bd08 pop {r3, pc} +10037a1c: 4618 mov r0, r3 +10037a1e: bd08 pop {r3, pc} + +10037a20 : +10037a20: b508 push {r3, lr} +10037a22: f241 633c movw r3, #5692 ; 0x163c +10037a26: 58c3 ldr r3, [r0, r3] +10037a28: b10b cbz r3, 10037a2e +10037a2a: 4798 blx r3 +10037a2c: bd08 pop {r3, pc} +10037a2e: 4618 mov r0, r3 +10037a30: bd08 pop {r3, pc} + +10037a32 : +10037a32: b508 push {r3, lr} +10037a34: f500 53b2 add.w r3, r0, #5696 ; 0x1640 +10037a38: 681b ldr r3, [r3, #0] +10037a3a: b103 cbz r3, 10037a3e +10037a3c: 4798 blx r3 +10037a3e: bd08 pop {r3, pc} + +10037a40 : +10037a40: b510 push {r4, lr} +10037a42: 460a mov r2, r1 +10037a44: 4603 mov r3, r0 +10037a46: b188 cbz r0, 10037a6c +10037a48: 6940 ldr r0, [r0, #20] +10037a4a: 6901 ldr r1, [r0, #16] +10037a4c: 06c9 lsls r1, r1, #27 +10037a4e: d408 bmi.n 10037a62 +10037a50: f241 61a4 movw r1, #5796 ; 0x16a4 +10037a54: 5844 ldr r4, [r0, r1] +10037a56: b11c cbz r4, 10037a60 +10037a58: f8d3 1100 ldr.w r1, [r3, #256] ; 0x100 +10037a5c: 47a0 blx r4 +10037a5e: bd10 pop {r4, pc} +10037a60: bd10 pop {r4, pc} +10037a62: 4619 mov r1, r3 +10037a64: e8bd 4010 ldmia.w sp!, {r4, lr} +10037a68: f7e9 bc72 b.w 10021350 +10037a6c: bd10 pop {r4, pc} + +10037a6e : +10037a6e: b510 push {r4, lr} +10037a70: f241 64a8 movw r4, #5800 ; 0x16a8 +10037a74: 5904 ldr r4, [r0, r4] +10037a76: b104 cbz r4, 10037a7a +10037a78: 47a0 blx r4 +10037a7a: bd10 pop {r4, pc} + +10037a7c : +10037a7c: b508 push {r3, lr} +10037a7e: f241 63ac movw r3, #5804 ; 0x16ac +10037a82: 58c3 ldr r3, [r0, r3] +10037a84: b103 cbz r3, 10037a88 +10037a86: 4798 blx r3 +10037a88: bd08 pop {r3, pc} + +10037a8a : +10037a8a: b508 push {r3, lr} +10037a8c: f241 63b0 movw r3, #5808 ; 0x16b0 +10037a90: 58c3 ldr r3, [r0, r3] +10037a92: b103 cbz r3, 10037a96 +10037a94: 4798 blx r3 +10037a96: bd08 pop {r3, pc} + +10037a98 : +10037a98: b508 push {r3, lr} +10037a9a: f241 63b4 movw r3, #5812 ; 0x16b4 +10037a9e: 58c3 ldr r3, [r0, r3] +10037aa0: b103 cbz r3, 10037aa4 +10037aa2: 4798 blx r3 +10037aa4: bd08 pop {r3, pc} + +10037aa6 : +10037aa6: b510 push {r4, lr} +10037aa8: f500 539b add.w r3, r0, #4960 ; 0x1360 +10037aac: f893 4045 ldrb.w r4, [r3, #69] ; 0x45 +10037ab0: 3310 adds r3, #16 +10037ab2: b114 cbz r4, 10037aba +10037ab4: 6f1b ldr r3, [r3, #112] ; 0x70 +10037ab6: 2b02 cmp r3, #2 +10037ab8: d00b beq.n 10037ad2 +10037aba: f241 6318 movw r3, #5656 ; 0x1618 +10037abe: 58c3 ldr r3, [r0, r3] +10037ac0: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +10037ac4: b92b cbnz r3, 10037ad2 +10037ac6: f500 53b6 add.w r3, r0, #5824 ; 0x16c0 +10037aca: 681b ldr r3, [r3, #0] +10037acc: b11b cbz r3, 10037ad6 +10037ace: 4798 blx r3 +10037ad0: bd10 pop {r4, pc} +10037ad2: 2000 movs r0, #0 +10037ad4: bd10 pop {r4, pc} +10037ad6: 4618 mov r0, r3 +10037ad8: bd10 pop {r4, pc} + +10037ada : +10037ada: b538 push {r3, r4, r5, lr} +10037adc: f500 549b add.w r4, r0, #4960 ; 0x1360 +10037ae0: f894 5045 ldrb.w r5, [r4, #69] ; 0x45 +10037ae4: 3410 adds r4, #16 +10037ae6: b115 cbz r5, 10037aee +10037ae8: 6f24 ldr r4, [r4, #112] ; 0x70 +10037aea: 2c02 cmp r4, #2 +10037aec: d00a beq.n 10037b04 +10037aee: f241 6418 movw r4, #5656 ; 0x1618 +10037af2: 5904 ldr r4, [r0, r4] +10037af4: f894 4e7c ldrb.w r4, [r4, #3708] ; 0xe7c +10037af8: b924 cbnz r4, 10037b04 +10037afa: f241 64c4 movw r4, #5828 ; 0x16c4 +10037afe: 5904 ldr r4, [r0, r4] +10037b00: b104 cbz r4, 10037b04 +10037b02: 47a0 blx r4 +10037b04: bd38 pop {r3, r4, r5, pc} + +10037b06 : +10037b06: b510 push {r4, lr} +10037b08: f241 64c8 movw r4, #5832 ; 0x16c8 +10037b0c: 5904 ldr r4, [r0, r4] +10037b0e: b10c cbz r4, 10037b14 +10037b10: 47a0 blx r4 +10037b12: bd10 pop {r4, pc} +10037b14: 4620 mov r0, r4 +10037b16: bd10 pop {r4, pc} + +10037b18 : +10037b18: b537 push {r0, r1, r2, r4, r5, lr} +10037b1a: f241 64cc movw r4, #5836 ; 0x16cc +10037b1e: 5904 ldr r4, [r0, r4] +10037b20: b114 cbz r4, 10037b28 +10037b22: 9d06 ldr r5, [sp, #24] +10037b24: 9500 str r5, [sp, #0] +10037b26: 47a0 blx r4 +10037b28: b003 add sp, #12 +10037b2a: bd30 pop {r4, r5, pc} + +10037b2c : +10037b2c: b508 push {r3, lr} +10037b2e: f241 6378 movw r3, #5752 ; 0x1678 +10037b32: 58c3 ldr r3, [r0, r3] +10037b34: b10b cbz r3, 10037b3a +10037b36: 4798 blx r3 +10037b38: bd08 pop {r3, pc} +10037b3a: 4618 mov r0, r3 +10037b3c: bd08 pop {r3, pc} + +10037b3e : +10037b3e: b508 push {r3, lr} +10037b40: f241 637c movw r3, #5756 ; 0x167c +10037b44: 58c3 ldr r3, [r0, r3] +10037b46: b103 cbz r3, 10037b4a +10037b48: 4798 blx r3 +10037b4a: bd08 pop {r3, pc} + +10037b4c : +10037b4c: b508 push {r3, lr} +10037b4e: f500 53b4 add.w r3, r0, #5760 ; 0x1680 +10037b52: 681b ldr r3, [r3, #0] +10037b54: b103 cbz r3, 10037b58 +10037b56: 4798 blx r3 +10037b58: bd08 pop {r3, pc} + +10037b5a : +10037b5a: b537 push {r0, r1, r2, r4, r5, lr} +10037b5c: f241 6484 movw r4, #5764 ; 0x1684 +10037b60: 5904 ldr r4, [r0, r4] +10037b62: b11c cbz r4, 10037b6c +10037b64: f89d 5018 ldrb.w r5, [sp, #24] +10037b68: 9500 str r5, [sp, #0] +10037b6a: 47a0 blx r4 +10037b6c: b003 add sp, #12 +10037b6e: bd30 pop {r4, r5, pc} + +10037b70 : +10037b70: f241 72b1 movw r2, #6065 ; 0x17b1 +10037b74: 5c82 ldrb r2, [r0, r2] +10037b76: b508 push {r3, lr} +10037b78: b922 cbnz r2, 10037b84 +10037b7a: f241 6288 movw r2, #5768 ; 0x1688 +10037b7e: 5883 ldr r3, [r0, r2] +10037b80: b103 cbz r3, 10037b84 +10037b82: 4798 blx r3 +10037b84: bd08 pop {r3, pc} + +10037b86 : +10037b86: b507 push {r0, r1, r2, lr} +10037b88: 2904 cmp r1, #4 +10037b8a: f88d 1007 strb.w r1, [sp, #7] +10037b8e: d806 bhi.n 10037b9e +10037b90: 214c movs r1, #76 ; 0x4c +10037b92: f10d 0207 add.w r2, sp, #7 +10037b96: f7ff fec8 bl 1003792a +10037b9a: 2001 movs r0, #1 +10037b9c: e000 b.n 10037ba0 +10037b9e: 2000 movs r0, #0 +10037ba0: b003 add sp, #12 +10037ba2: f85d fb04 ldr.w pc, [sp], #4 + +10037ba6 : +10037ba6: b507 push {r0, r1, r2, lr} +10037ba8: 2904 cmp r1, #4 +10037baa: f88d 1007 strb.w r1, [sp, #7] +10037bae: d806 bhi.n 10037bbe +10037bb0: 214d movs r1, #77 ; 0x4d +10037bb2: f10d 0207 add.w r2, sp, #7 +10037bb6: f7ff feb8 bl 1003792a +10037bba: 2001 movs r0, #1 +10037bbc: e000 b.n 10037bc0 +10037bbe: 2000 movs r0, #0 +10037bc0: b003 add sp, #12 +10037bc2: f85d fb04 ldr.w pc, [sp], #4 + +10037bc6 : +10037bc6: 231f movs r3, #31 +10037bc8: 8003 strh r3, [r0, #0] +10037bca: 4770 bx lr + +10037bcc : +10037bcc: 6903 ldr r3, [r0, #16] +10037bce: b530 push {r4, r5, lr} +10037bd0: 681b ldr r3, [r3, #0] +10037bd2: f241 708c movw r0, #6028 ; 0x178c +10037bd6: f8d3 2930 ldr.w r2, [r3, #2352] ; 0x930 +10037bda: f8d3 4b08 ldr.w r4, [r3, #2824] ; 0xb08 +10037bde: 501a str r2, [r3, r0] +10037be0: f241 7088 movw r0, #6024 ; 0x1788 +10037be4: 501c str r4, [r3, r0] +10037be6: f8d3 4938 ldr.w r4, [r3, #2360] ; 0x938 +10037bea: f241 7594 movw r5, #6036 ; 0x1794 +10037bee: 515c str r4, [r3, r5] +10037bf0: f8d3 4b10 ldr.w r4, [r3, #2832] ; 0xb10 +10037bf4: f241 7590 movw r5, #6032 ; 0x1790 +10037bf8: 515c str r4, [r3, r5] +10037bfa: f8d3 4928 ldr.w r4, [r3, #2344] ; 0x928 +10037bfe: f241 719c movw r1, #6044 ; 0x179c +10037c02: 505c str r4, [r3, r1] +10037c04: f8d3 1b00 ldr.w r1, [r3, #2816] ; 0xb00 +10037c08: f241 7498 movw r4, #6040 ; 0x1798 +10037c0c: f8d3 2b18 ldr.w r2, [r3, #2840] ; 0xb18 +10037c10: 5119 str r1, [r3, r4] +10037c12: f503 51bd add.w r1, r3, #6048 ; 0x17a0 +10037c16: 600a str r2, [r1, #0] +10037c18: 4418 add r0, r3 +10037c1a: bd30 pop {r4, r5, pc} + +10037c1c : +10037c1c: 6903 ldr r3, [r0, #16] +10037c1e: 2101 movs r1, #1 +10037c20: 681a ldr r2, [r3, #0] +10037c22: f241 73a4 movw r3, #6052 ; 0x17a4 +10037c26: b510 push {r4, lr} +10037c28: 54d1 strb r1, [r2, r3] +10037c2a: 4604 mov r4, r0 +10037c2c: f7e5 fa88 bl 1001d140 +10037c30: b910 cbnz r0, 10037c38 +10037c32: 4620 mov r0, r4 +10037c34: f7e5 fa8a bl 1001d14c +10037c38: 2000 movs r0, #0 +10037c3a: bd10 pop {r4, pc} + +10037c3c : +10037c3c: b538 push {r3, r4, r5, lr} +10037c3e: 6903 ldr r3, [r0, #16] +10037c40: 4605 mov r5, r0 +10037c42: 681c ldr r4, [r3, #0] +10037c44: f241 33c5 movw r3, #5061 ; 0x13c5 +10037c48: 5ce2 ldrb r2, [r4, r3] +10037c4a: f504 539f add.w r3, r4, #5088 ; 0x13e0 +10037c4e: 2a01 cmp r2, #1 +10037c50: d105 bne.n 10037c5e +10037c52: 6819 ldr r1, [r3, #0] +10037c54: 2902 cmp r1, #2 +10037c56: bf04 itt eq +10037c58: f241 31dc movweq r1, #5084 ; 0x13dc +10037c5c: 5062 streq r2, [r4, r1] +10037c5e: 681b ldr r3, [r3, #0] +10037c60: 2101 movs r1, #1 +10037c62: f241 72a4 movw r2, #6052 ; 0x17a4 +10037c66: 54a1 strb r1, [r4, r2] +10037c68: b9a3 cbnz r3, 10037c94 +10037c6a: 4628 mov r0, r5 +10037c6c: f7e5 fa68 bl 1001d140 +10037c70: b910 cbnz r0, 10037c78 +10037c72: 4628 mov r0, r5 +10037c74: f7e5 fa6a bl 1001d14c +10037c78: 4620 mov r0, r4 +10037c7a: f7eb f91a bl 10022eb2 +10037c7e: 4620 mov r0, r4 +10037c80: f7ec f85b bl 10023d3a +10037c84: 4620 mov r0, r4 +10037c86: 2101 movs r1, #1 +10037c88: f7eb ffea bl 10023c60 +10037c8c: 4620 mov r0, r4 +10037c8e: 2101 movs r1, #1 +10037c90: f7eb fe5b bl 1002394a +10037c94: 2000 movs r0, #0 +10037c96: bd38 pop {r3, r4, r5, pc} + +10037c98 : +10037c98: b570 push {r4, r5, r6, lr} +10037c9a: f500 53bc add.w r3, r0, #6016 ; 0x1780 +10037c9e: 681d ldr r5, [r3, #0] +10037ca0: 6903 ldr r3, [r0, #16] +10037ca2: 4604 mov r4, r0 +10037ca4: 07da lsls r2, r3, #31 +10037ca6: d439 bmi.n 10037d1c +10037ca8: 6923 ldr r3, [r4, #16] +10037caa: 051b lsls r3, r3, #20 +10037cac: d43a bmi.n 10037d24 +10037cae: 4620 mov r0, r4 +10037cb0: f7ea fba2 bl 100223f8 +10037cb4: 6a6b ldr r3, [r5, #36] ; 0x24 +10037cb6: 4628 mov r0, r5 +10037cb8: 4798 blx r3 +10037cba: 4620 mov r0, r4 +10037cbc: f004 fb6e bl 1003c39c +10037cc0: 2201 movs r2, #1 +10037cc2: f241 63f8 movw r3, #5880 ; 0x16f8 +10037cc6: 50e2 str r2, [r4, r3] +10037cc8: f241 7384 movw r3, #6020 ; 0x1784 +10037ccc: 58e3 ldr r3, [r4, r3] +10037cce: 4293 cmp r3, r2 +10037cd0: d119 bne.n 10037d06 +10037cd2: f241 737c movw r3, #6012 ; 0x177c +10037cd6: 58e3 ldr r3, [r4, r3] +10037cd8: b10b cbz r3, 10037cde +10037cda: 4620 mov r0, r4 +10037cdc: 4798 blx r3 +10037cde: f241 33c5 movw r3, #5061 ; 0x13c5 +10037ce2: 5ce3 ldrb r3, [r4, r3] +10037ce4: b913 cbnz r3, 10037cec +10037ce6: 4620 mov r0, r4 +10037ce8: f004 fc98 bl 1003c61c +10037cec: f241 66fc movw r6, #5884 ; 0x16fc +10037cf0: 59a3 ldr r3, [r4, r6] +10037cf2: b923 cbnz r3, 10037cfe +10037cf4: 4620 mov r0, r4 +10037cf6: f7ff fe0b bl 10037910 +10037cfa: 2301 movs r3, #1 +10037cfc: 51a3 str r3, [r4, r6] +10037cfe: 2200 movs r2, #0 +10037d00: f241 7384 movw r3, #6020 ; 0x1784 +10037d04: 50e2 str r2, [r4, r3] +10037d06: 4620 mov r0, r4 +10037d08: f7ff fe68 bl 100379dc +10037d0c: 4620 mov r0, r4 +10037d0e: f004 fb7a bl 1003c406 +10037d12: 4628 mov r0, r5 +10037d14: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10037d18: f003 bc20 b.w 1003b55c +10037d1c: 2100 movs r1, #0 +10037d1e: f7f0 fb6f bl 10028400 +10037d22: e7c1 b.n 10037ca8 +10037d24: 2100 movs r1, #0 +10037d26: 460a mov r2, r1 +10037d28: 460b mov r3, r1 +10037d2a: 2004 movs r0, #4 +10037d2c: f7d5 fd94 bl 1000d858 +10037d30: e7bd b.n 10037cae + +10037d32 : +10037d32: f001 b91d b.w 10038f70 + +10037d36 : +10037d36: f001 b8b2 b.w 10038e9e + +10037d3a : +10037d3a: f8d0 3c78 ldr.w r3, [r0, #3192] ; 0xc78 +10037d3e: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10037d42: 2b02 cmp r3, #2 +10037d44: 4604 mov r4, r0 +10037d46: d15d bne.n 10037e04 +10037d48: 6902 ldr r2, [r0, #16] +10037d4a: f241 1304 movw r3, #4356 ; 0x1104 +10037d4e: f810 9003 ldrb.w r9, [r0, r3] +10037d52: f012 0f10 tst.w r2, #16 +10037d56: f241 1308 movw r3, #4360 ; 0x1108 +10037d5a: f850 a003 ldr.w sl, [r0, r3] +10037d5e: f241 23a8 movw r3, #4776 ; 0x12a8 +10037d62: d061 beq.n 10037e28 +10037d64: 58c0 ldr r0, [r0, r3] +10037d66: f500 703d add.w r0, r0, #756 ; 0x2f4 +10037d6a: f003 fdd4 bl 1003b916 +10037d6e: f241 23ac movw r3, #4780 ; 0x12ac +10037d72: 58e0 ldr r0, [r4, r3] +10037d74: f500 703d add.w r0, r0, #756 ; 0x2f4 +10037d78: f003 fdcd bl 1003b916 +10037d7c: f241 23b0 movw r3, #4784 ; 0x12b0 +10037d80: 58e0 ldr r0, [r4, r3] +10037d82: f500 703d add.w r0, r0, #756 ; 0x2f4 +10037d86: f003 fdc6 bl 1003b916 +10037d8a: f504 5895 add.w r8, r4, #4768 ; 0x12a0 +10037d8e: f241 27a4 movw r7, #4772 ; 0x12a4 +10037d92: f8d8 6000 ldr.w r6, [r8] +10037d96: 59e5 ldr r5, [r4, r7] +10037d98: f604 4078 addw r0, r4, #3192 ; 0xc78 +10037d9c: 2100 movs r1, #0 +10037d9e: f44f 62d0 mov.w r2, #1664 ; 0x680 +10037da2: f7e5 f815 bl 1001cdd0 +10037da6: f8c8 6000 str.w r6, [r8] +10037daa: 4630 mov r0, r6 +10037dac: 51e5 str r5, [r4, r7] +10037dae: 2100 movs r1, #0 +10037db0: 462a mov r2, r5 +10037db2: f026 0603 bic.w r6, r6, #3 +10037db6: f7e5 f80b bl 1001cdd0 +10037dba: 3604 adds r6, #4 +10037dbc: f241 23a8 movw r3, #4776 ; 0x12a8 +10037dc0: f5b5 6fc6 cmp.w r5, #1584 ; 0x630 +10037dc4: 50e6 str r6, [r4, r3] +10037dc6: d30d bcc.n 10037de4 +10037dc8: f241 23ac movw r3, #4780 ; 0x12ac +10037dcc: f506 7246 add.w r2, r6, #792 ; 0x318 +10037dd0: 50e2 str r2, [r4, r3] +10037dd2: f640 1347 movw r3, #2375 ; 0x947 +10037dd6: 429d cmp r5, r3 +10037dd8: d904 bls.n 10037de4 +10037dda: f506 66c6 add.w r6, r6, #1584 ; 0x630 +10037dde: f241 23b0 movw r3, #4784 ; 0x12b0 +10037de2: 50e6 str r6, [r4, r3] +10037de4: f241 1304 movw r3, #4356 ; 0x1104 +10037de8: f804 9003 strb.w r9, [r4, r3] +10037dec: f241 1308 movw r3, #4360 ; 0x1108 +10037df0: f844 a003 str.w sl, [r4, r3] +10037df4: 2300 movs r3, #0 +10037df6: f8c4 3fdc str.w r3, [r4, #4060] ; 0xfdc +10037dfa: 2301 movs r3, #1 +10037dfc: f8c4 3fe0 str.w r3, [r4, #4064] ; 0xfe0 +10037e00: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10037e04: 2300 movs r3, #0 +10037e06: 2201 movs r2, #1 +10037e08: f8c0 3c78 str.w r3, [r0, #3192] ; 0xc78 +10037e0c: f8c0 3c7c str.w r3, [r0, #3196] ; 0xc7c +10037e10: f8c0 3c80 str.w r3, [r0, #3200] ; 0xc80 +10037e14: f8c0 3cd4 str.w r3, [r0, #3284] ; 0xcd4 +10037e18: f8c0 2cd8 str.w r2, [r0, #3288] ; 0xcd8 +10037e1c: f8c0 3fdc str.w r3, [r0, #4060] ; 0xfdc +10037e20: f8c0 2fe0 str.w r2, [r0, #4064] ; 0xfe0 +10037e24: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10037e28: 0712 lsls r2, r2, #28 +10037e2a: d5ae bpl.n 10037d8a +10037e2c: e7a8 b.n 10037d80 + +10037e2e : +10037e2e: b510 push {r4, lr} +10037e30: 4604 mov r4, r0 +10037e32: f001 f8b6 bl 10038fa2 +10037e36: f8d4 2c80 ldr.w r2, [r4, #3200] ; 0xc80 +10037e3a: 2a03 cmp r2, #3 +10037e3c: d817 bhi.n 10037e6e +10037e3e: 2100 movs r1, #0 +10037e40: 460b mov r3, r1 +10037e42: b2d2 uxtb r2, r2 +10037e44: 4620 mov r0, r4 +10037e46: f7eb f8d3 bl 10022ff0 +10037e4a: f8d4 0c80 ldr.w r0, [r4, #3200] ; 0xc80 +10037e4e: 2210 movs r2, #16 +10037e50: eb04 1000 add.w r0, r4, r0, lsl #4 +10037e54: f600 4084 addw r0, r0, #3204 ; 0xc84 +10037e58: 2100 movs r1, #0 +10037e5a: f7e4 ffb9 bl 1001cdd0 +10037e5e: f8d4 3c80 ldr.w r3, [r4, #3200] ; 0xc80 +10037e62: 2200 movs r2, #0 +10037e64: f503 734c add.w r3, r3, #816 ; 0x330 +10037e68: eb04 0383 add.w r3, r4, r3, lsl #2 +10037e6c: 605a str r2, [r3, #4] +10037e6e: 4620 mov r0, r4 +10037e70: e8bd 4010 ldmia.w sp!, {r4, lr} +10037e74: f7ff bf61 b.w 10037d3a + +10037e78 : +10037e78: 4601 mov r1, r0 +10037e7a: b5f8 push {r3, r4, r5, r6, r7, lr} +10037e7c: f241 70c8 movw r0, #6088 ; 0x17c8 +10037e80: b111 cbz r1, 10037e88 +10037e82: f003 fb4a bl 1003b51a +10037e86: e001 b.n 10037e8c +10037e88: f003 fb52 bl 1003b530 +10037e8c: 4606 mov r6, r0 +10037e8e: 2800 cmp r0, #0 +10037e90: d07f beq.n 10037f92 +10037e92: 6903 ldr r3, [r0, #16] +10037e94: 2500 movs r5, #0 +10037e96: 6818 ldr r0, [r3, #0] +10037e98: 493f ldr r1, [pc, #252] ; (10037f98 ) +10037e9a: f500 53bc add.w r3, r0, #6016 ; 0x1780 +10037e9e: 601e str r6, [r3, #0] +10037ea0: 4b3e ldr r3, [pc, #248] ; (10037f9c ) +10037ea2: f500 5497 add.w r4, r0, #4832 ; 0x12e0 +10037ea6: 6233 str r3, [r6, #32] +10037ea8: 4b3d ldr r3, [pc, #244] ; (10037fa0 ) +10037eaa: 2203 movs r2, #3 +10037eac: 6273 str r3, [r6, #36] ; 0x24 +10037eae: 4b3d ldr r3, [pc, #244] ; (10037fa4 ) +10037eb0: 3418 adds r4, #24 +10037eb2: 62b3 str r3, [r6, #40] ; 0x28 +10037eb4: 4b3c ldr r3, [pc, #240] ; (10037fa8 ) +10037eb6: 2702 movs r7, #2 +10037eb8: 6333 str r3, [r6, #48] ; 0x30 +10037eba: 4b3c ldr r3, [pc, #240] ; (10037fac ) +10037ebc: 62f3 str r3, [r6, #44] ; 0x2c +10037ebe: f241 23f8 movw r3, #4856 ; 0x12f8 +10037ec2: 54c5 strb r5, [r0, r3] +10037ec4: f500 5098 add.w r0, r0, #4864 ; 0x1300 +10037ec8: f7e4 ff70 bl 1001cdac +10037ecc: 2303 movs r3, #3 +10037ece: 6063 str r3, [r4, #4] +10037ed0: 2301 movs r3, #1 +10037ed2: f884 302c strb.w r3, [r4, #44] ; 0x2c +10037ed6: f884 3030 strb.w r3, [r4, #48] ; 0x30 +10037eda: f884 302e strb.w r3, [r4, #46] ; 0x2e +10037ede: f884 3035 strb.w r3, [r4, #53] ; 0x35 +10037ee2: f884 3037 strb.w r3, [r4, #55] ; 0x37 +10037ee6: f884 3036 strb.w r3, [r4, #54] ; 0x36 +10037eea: f884 303d strb.w r3, [r4, #61] ; 0x3d +10037eee: f884 3044 strb.w r3, [r4, #68] ; 0x44 +10037ef2: f884 3045 strb.w r3, [r4, #69] ; 0x45 +10037ef6: 2305 movs r3, #5 +10037ef8: f884 3048 strb.w r3, [r4, #72] ; 0x48 +10037efc: 4b2c ldr r3, [pc, #176] ; (10037fb0 ) +10037efe: 220b movs r2, #11 +10037f00: 781b ldrb r3, [r3, #0] +10037f02: f884 202d strb.w r2, [r4, #45] ; 0x2d +10037f06: f640 122b movw r2, #2347 ; 0x92b +10037f0a: 8662 strh r2, [r4, #50] ; 0x32 +10037f0c: f884 3049 strb.w r3, [r4, #73] ; 0x49 +10037f10: 2264 movs r2, #100 ; 0x64 +10037f12: 2359 movs r3, #89 ; 0x59 +10037f14: f884 304b strb.w r3, [r4, #75] ; 0x4b +10037f18: 6422 str r2, [r4, #64] ; 0x40 +10037f1a: 2110 movs r1, #16 +10037f1c: 4a25 ldr r2, [pc, #148] ; (10037fb4 ) +10037f1e: f884 702f strb.w r7, [r4, #47] ; 0x2f +10037f22: f884 5034 strb.w r5, [r4, #52] ; 0x34 +10037f26: f884 7038 strb.w r7, [r4, #56] ; 0x38 +10037f2a: f884 5039 strb.w r5, [r4, #57] ; 0x39 +10037f2e: f884 503a strb.w r5, [r4, #58] ; 0x3a +10037f32: f884 503b strb.w r5, [r4, #59] ; 0x3b +10037f36: f884 503c strb.w r5, [r4, #60] ; 0x3c +10037f3a: f884 503e strb.w r5, [r4, #62] ; 0x3e +10037f3e: f884 5046 strb.w r5, [r4, #70] ; 0x46 +10037f42: f884 5047 strb.w r5, [r4, #71] ; 0x47 +10037f46: f884 504a strb.w r5, [r4, #74] ; 0x4a +10037f4a: f104 004c add.w r0, r4, #76 ; 0x4c +10037f4e: f00a f86b bl 10042028 +10037f52: f104 005c add.w r0, r4, #92 ; 0x5c +10037f56: 2110 movs r1, #16 +10037f58: 4a17 ldr r2, [pc, #92] ; (10037fb8 ) +10037f5a: f00a f865 bl 10042028 +10037f5e: 230e movs r3, #14 +10037f60: f884 306f strb.w r3, [r4, #111] ; 0x6f +10037f64: 4b15 ldr r3, [pc, #84] ; (10037fbc ) +10037f66: f884 706c strb.w r7, [r4, #108] ; 0x6c +10037f6a: 781b ldrb r3, [r3, #0] +10037f6c: f884 706d strb.w r7, [r4, #109] ; 0x6d +10037f70: f884 3071 strb.w r3, [r4, #113] ; 0x71 +10037f74: 4b12 ldr r3, [pc, #72] ; (10037fc0 ) +10037f76: f884 506e strb.w r5, [r4, #110] ; 0x6e +10037f7a: 781b ldrb r3, [r3, #0] +10037f7c: f884 5073 strb.w r5, [r4, #115] ; 0x73 +10037f80: f884 3072 strb.w r3, [r4, #114] ; 0x72 +10037f84: 2304 movs r3, #4 +10037f86: f884 3074 strb.w r3, [r4, #116] ; 0x74 +10037f8a: 4b0e ldr r3, [pc, #56] ; (10037fc4 ) +10037f8c: 781b ldrb r3, [r3, #0] +10037f8e: f884 3075 strb.w r3, [r4, #117] ; 0x75 +10037f92: 4630 mov r0, r6 +10037f94: bdf8 pop {r3, r4, r5, r6, r7, pc} +10037f96: bf00 nop +10037f98: 1004aee5 .word 0x1004aee5 +10037f9c: 10038475 .word 0x10038475 +10037fa0: 10037c3d .word 0x10037c3d +10037fa4: 1003b4cf .word 0x1003b4cf +10037fa8: 10037bcd .word 0x10037bcd +10037fac: 10039ded .word 0x10039ded +10037fb0: 10055340 .word 0x10055340 +10037fb4: 1004aee9 .word 0x1004aee9 +10037fb8: 1004aeef .word 0x1004aeef +10037fbc: 10055348 .word 0x10055348 +10037fc0: 1004d9bf .word 0x1004d9bf +10037fc4: 10055354 .word 0x10055354 + +10037fc8 : +10037fc8: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +10037fcc: 4605 mov r5, r0 +10037fce: 2000 movs r0, #0 +10037fd0: 460f mov r7, r1 +10037fd2: f7ff ff51 bl 10037e78 +10037fd6: 4606 mov r6, r0 +10037fd8: 2800 cmp r0, #0 +10037fda: f000 80e6 beq.w 100381aa +10037fde: 4b7a ldr r3, [pc, #488] ; (100381c8 ) +10037fe0: 4629 mov r1, r5 +10037fe2: 6203 str r3, [r0, #32] +10037fe4: 4b79 ldr r3, [pc, #484] ; (100381cc ) +10037fe6: f241 72c8 movw r2, #6088 ; 0x17c8 +10037fea: 6243 str r3, [r0, #36] ; 0x24 +10037fec: 6903 ldr r3, [r0, #16] +10037fee: f04f 0800 mov.w r8, #0 +10037ff2: 681c ldr r4, [r3, #0] +10037ff4: 4620 mov r0, r4 +10037ff6: f7e4 fed9 bl 1001cdac +10037ffa: f104 000c add.w r0, r4, #12 +10037ffe: 2100 movs r1, #0 +10038000: f240 42dc movw r2, #1244 ; 0x4dc +10038004: f7e4 fee4 bl 1001cdd0 +10038008: f895 349e ldrb.w r3, [r5, #1182] ; 0x49e +1003800c: f504 609d add.w r0, r4, #1256 ; 0x4e8 +10038010: f884 349e strb.w r3, [r4, #1182] ; 0x49e +10038014: 2100 movs r1, #0 +10038016: f44f 7264 mov.w r2, #912 ; 0x390 +1003801a: f7e4 fed9 bl 1001cdd0 +1003801e: f504 603d add.w r0, r4, #3024 ; 0xbd0 +10038022: 2100 movs r1, #0 +10038024: 22a4 movs r2, #164 ; 0xa4 +10038026: f7e4 fed3 bl 1001cdd0 +1003802a: f241 73b4 movw r3, #6068 ; 0x17b4 +1003802e: 58ea ldr r2, [r5, r3] +10038030: 4620 mov r0, r4 +10038032: 50e2 str r2, [r4, r3] +10038034: f241 73b8 movw r3, #6072 ; 0x17b8 +10038038: 58ea ldr r2, [r5, r3] +1003803a: 50e2 str r2, [r4, r3] +1003803c: f241 73bc movw r3, #6076 ; 0x17bc +10038040: 58ea ldr r2, [r5, r3] +10038042: 50e2 str r2, [r4, r3] +10038044: f241 73ac movw r3, #6060 ; 0x17ac +10038048: 58ea ldr r2, [r5, r3] +1003804a: 50e2 str r2, [r4, r3] +1003804c: f241 7384 movw r3, #6020 ; 0x1784 +10038050: f844 8003 str.w r8, [r4, r3] +10038054: f241 72a4 movw r2, #6052 ; 0x17a4 +10038058: 2301 movs r3, #1 +1003805a: 54a3 strb r3, [r4, r2] +1003805c: f241 7211 movw r2, #5905 ; 0x1711 +10038060: f804 8002 strb.w r8, [r4, r2] +10038064: f241 72b0 movw r2, #6064 ; 0x17b0 +10038068: f804 8002 strb.w r8, [r4, r2] +1003806c: f241 72b1 movw r2, #6065 ; 0x17b1 +10038070: 54a3 strb r3, [r4, r2] +10038072: f241 72a8 movw r2, #6056 ; 0x17a8 +10038076: 50a5 str r5, [r4, r2] +10038078: f241 72b2 movw r2, #6066 ; 0x17b2 +1003807c: 54a3 strb r3, [r4, r2] +1003807e: f504 53bc add.w r3, r4, #6016 ; 0x1780 +10038082: 601e str r6, [r3, #0] +10038084: 68a3 ldr r3, [r4, #8] +10038086: 7c1a ldrb r2, [r3, #16] +10038088: 605c str r4, [r3, #4] +1003808a: 1c51 adds r1, r2, #1 +1003808c: 7419 strb r1, [r3, #16] +1003808e: 3202 adds r2, #2 +10038090: f843 4022 str.w r4, [r3, r2, lsl #2] +10038094: 886b ldrh r3, [r5, #2] +10038096: 8063 strh r3, [r4, #2] +10038098: 882b ldrh r3, [r5, #0] +1003809a: 8023 strh r3, [r4, #0] +1003809c: f007 f8fa bl 1003f294 +100380a0: f241 6330 movw r3, #5680 ; 0x1630 +100380a4: f844 8003 str.w r8, [r4, r3] +100380a8: f241 6334 movw r3, #5684 ; 0x1634 +100380ac: f844 8003 str.w r8, [r4, r3] +100380b0: f241 7378 movw r3, #6008 ; 0x1778 +100380b4: 58ea ldr r2, [r5, r3] +100380b6: 4620 mov r0, r4 +100380b8: 50e2 str r2, [r4, r3] +100380ba: f241 737c movw r3, #6012 ; 0x177c +100380be: 58ea ldr r2, [r5, r3] +100380c0: 50e2 str r2, [r4, r3] +100380c2: f7ff fbd9 bl 10037878 +100380c6: 4620 mov r0, r4 +100380c8: f7ff fbc0 bl 1003784c +100380cc: 4620 mov r0, r4 +100380ce: f004 fa03 bl 1003c4d8 +100380d2: 2801 cmp r0, #1 +100380d4: d16a bne.n 100381ac +100380d6: b917 cbnz r7, 100380de +100380d8: f504 579a add.w r7, r4, #4928 ; 0x1340 +100380dc: 3714 adds r7, #20 +100380de: 4639 mov r1, r7 +100380e0: 4630 mov r0, r6 +100380e2: f003 fab0 bl 1003b646 +100380e6: f505 51a0 add.w r1, r5, #5120 ; 0x1400 +100380ea: 2206 movs r2, #6 +100380ec: 4668 mov r0, sp +100380ee: 3109 adds r1, #9 +100380f0: f7e4 fe5c bl 1001cdac +100380f4: f89d 2000 ldrb.w r2, [sp] +100380f8: f89d 3005 ldrb.w r3, [sp, #5] +100380fc: 2aff cmp r2, #255 ; 0xff +100380fe: d112 bne.n 10038126 +10038100: f89d 2001 ldrb.w r2, [sp, #1] +10038104: 2aff cmp r2, #255 ; 0xff +10038106: d12d bne.n 10038164 +10038108: f89d 2002 ldrb.w r2, [sp, #2] +1003810c: 2aff cmp r2, #255 ; 0xff +1003810e: d129 bne.n 10038164 +10038110: f89d 2003 ldrb.w r2, [sp, #3] +10038114: 2aff cmp r2, #255 ; 0xff +10038116: d125 bne.n 10038164 +10038118: f89d 2004 ldrb.w r2, [sp, #4] +1003811c: 2aff cmp r2, #255 ; 0xff +1003811e: d121 bne.n 10038164 +10038120: 2bff cmp r3, #255 ; 0xff +10038122: d11f bne.n 10038164 +10038124: e00d b.n 10038142 +10038126: b9ea cbnz r2, 10038164 +10038128: f89d 2001 ldrb.w r2, [sp, #1] +1003812c: b9d2 cbnz r2, 10038164 +1003812e: f89d 2002 ldrb.w r2, [sp, #2] +10038132: b9ba cbnz r2, 10038164 +10038134: f89d 2003 ldrb.w r2, [sp, #3] +10038138: b9a2 cbnz r2, 10038164 +1003813a: f89d 2004 ldrb.w r2, [sp, #4] +1003813e: b98a cbnz r2, 10038164 +10038140: b983 cbnz r3, 10038164 +10038142: 2300 movs r3, #0 +10038144: f88d 3000 strb.w r3, [sp] +10038148: 23e0 movs r3, #224 ; 0xe0 +1003814a: f88d 3001 strb.w r3, [sp, #1] +1003814e: 234c movs r3, #76 ; 0x4c +10038150: f88d 3002 strb.w r3, [sp, #2] +10038154: 2387 movs r3, #135 ; 0x87 +10038156: f88d 3003 strb.w r3, [sp, #3] +1003815a: 2311 movs r3, #17 +1003815c: f88d 3004 strb.w r3, [sp, #4] +10038160: 2322 movs r3, #34 ; 0x22 +10038162: e000 b.n 10038166 +10038164: 3301 adds r3, #1 +10038166: f504 50a0 add.w r0, r4, #5120 ; 0x1400 +1003816a: 3009 adds r0, #9 +1003816c: 4669 mov r1, sp +1003816e: 2206 movs r2, #6 +10038170: f88d 3005 strb.w r3, [sp, #5] +10038174: f7e4 fe1a bl 1001cdac +10038178: f106 0014 add.w r0, r6, #20 +1003817c: 4669 mov r1, sp +1003817e: 2206 movs r2, #6 +10038180: f7e4 fe14 bl 1001cdac +10038184: f241 73a8 movw r3, #6056 ; 0x17a8 +10038188: 50ec str r4, [r5, r3] +1003818a: f505 55be add.w r5, r5, #6080 ; 0x17c0 +1003818e: 682e ldr r6, [r5, #0] +10038190: b9ae cbnz r6, 100381be +10038192: 2004 movs r0, #4 +10038194: f7e4 fdc2 bl 1001cd1c +10038198: f504 53be add.w r3, r4, #6080 ; 0x17c0 +1003819c: 6028 str r0, [r5, #0] +1003819e: 6018 str r0, [r3, #0] +100381a0: 2301 movs r3, #1 +100381a2: 7003 strb r3, [r0, #0] +100381a4: 7046 strb r6, [r0, #1] +100381a6: 7086 strb r6, [r0, #2] +100381a8: e009 b.n 100381be +100381aa: 4604 mov r4, r0 +100381ac: 4620 mov r0, r4 +100381ae: f004 f92a bl 1003c406 +100381b2: 4630 mov r0, r6 +100381b4: b126 cbz r6, 100381c0 +100381b6: f003 f9d1 bl 1003b55c +100381ba: 2000 movs r0, #0 +100381bc: e000 b.n 100381c0 +100381be: 4620 mov r0, r4 +100381c0: b002 add sp, #8 +100381c2: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100381c6: bf00 nop +100381c8: 1003844d .word 0x1003844d +100381cc: 10037c1d .word 0x10037c1d + +100381d0 : +100381d0: b510 push {r4, lr} +100381d2: 4604 mov r4, r0 +100381d4: b330 cbz r0, 10038224 +100381d6: f004 f8e1 bl 1003c39c +100381da: f241 7384 movw r3, #6020 ; 0x1784 +100381de: 58e3 ldr r3, [r4, r3] +100381e0: 2b01 cmp r3, #1 +100381e2: d11f bne.n 10038224 +100381e4: f241 62f8 movw r2, #5880 ; 0x16f8 +100381e8: 50a3 str r3, [r4, r2] +100381ea: f504 53ba add.w r3, r4, #5952 ; 0x1740 +100381ee: 3304 adds r3, #4 +100381f0: 681b ldr r3, [r3, #0] +100381f2: 2b01 cmp r3, #1 +100381f4: d103 bne.n 100381fe +100381f6: 2001 movs r0, #1 +100381f8: f7e4 ff3c bl 1001d074 +100381fc: e7f5 b.n 100381ea +100381fe: f504 53bd add.w r3, r4, #6048 ; 0x17a0 +10038202: 6898 ldr r0, [r3, #8] +10038204: f600 0078 addw r0, r0, #2168 ; 0x878 +10038208: f7e4 fdee bl 1001cde8 +1003820c: 2800 cmp r0, #0 +1003820e: d0f2 beq.n 100381f6 +10038210: f241 737c movw r3, #6012 ; 0x177c +10038214: 58e3 ldr r3, [r4, r3] +10038216: b10b cbz r3, 1003821c +10038218: 4620 mov r0, r4 +1003821a: 4798 blx r3 +1003821c: 2200 movs r2, #0 +1003821e: f241 7384 movw r3, #6020 ; 0x1784 +10038222: 50e2 str r2, [r4, r3] +10038224: bd10 pop {r4, pc} + +10038226 : +10038226: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1003822a: 4604 mov r4, r0 +1003822c: b300 cbz r0, 10038270 +1003822e: f241 73b1 movw r3, #6065 ; 0x17b1 +10038232: 5cc6 ldrb r6, [r0, r3] +10038234: b9e6 cbnz r6, 10038270 +10038236: f241 77a8 movw r7, #6056 ; 0x17a8 +1003823a: 59c5 ldr r5, [r0, r7] +1003823c: b1c5 cbz r5, 10038270 +1003823e: f505 53bc add.w r3, r5, #6016 ; 0x1780 +10038242: 4628 mov r0, r5 +10038244: f8d3 8000 ldr.w r8, [r3] +10038248: f7ea f8d6 bl 100223f8 +1003824c: f505 53be add.w r3, r5, #6080 ; 0x17c0 +10038250: 51e6 str r6, [r4, r7] +10038252: 4628 mov r0, r5 +10038254: 601e str r6, [r3, #0] +10038256: f004 f8d6 bl 1003c406 +1003825a: f504 54be add.w r4, r4, #6080 ; 0x17c0 +1003825e: 4640 mov r0, r8 +10038260: f003 f97c bl 1003b55c +10038264: 6820 ldr r0, [r4, #0] +10038266: b118 cbz r0, 10038270 +10038268: 2104 movs r1, #4 +1003826a: f7e4 fd69 bl 1001cd40 +1003826e: 6026 str r6, [r4, #0] +10038270: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10038274 <_netdev_open>: +10038274: 6903 ldr r3, [r0, #16] +10038276: b570 push {r4, r5, r6, lr} +10038278: 681c ldr r4, [r3, #0] +1003827a: 4605 mov r5, r0 +1003827c: f504 539b add.w r3, r4, #4960 ; 0x1360 +10038280: 3310 adds r3, #16 +10038282: 6edb ldr r3, [r3, #108] ; 0x6c +10038284: 2b01 cmp r3, #1 +10038286: d104 bne.n 10038292 <_netdev_open+0x1e> +10038288: 2200 movs r2, #0 +1003828a: f241 73a4 movw r3, #6052 ; 0x17a4 +1003828e: 54e2 strb r2, [r4, r3] +10038290: e04e b.n 10038330 <_netdev_open+0xbc> +10038292: f241 7384 movw r3, #6020 ; 0x1784 +10038296: 58e3 ldr r3, [r4, r3] +10038298: bb23 cbnz r3, 100382e4 <_netdev_open+0x70> +1003829a: f241 62f8 movw r2, #5880 ; 0x16f8 +1003829e: 50a3 str r3, [r4, r2] +100382a0: f241 62fc movw r2, #5884 ; 0x16fc +100382a4: 50a3 str r3, [r4, r2] +100382a6: f504 52b8 add.w r2, r4, #5888 ; 0x1700 +100382aa: 6013 str r3, [r2, #0] +100382ac: f241 7214 movw r2, #5908 ; 0x1714 +100382b0: 54a3 strb r3, [r4, r2] +100382b2: 4620 mov r0, r4 +100382b4: f7ff fb17 bl 100378e6 +100382b8: 2800 cmp r0, #0 +100382ba: d059 beq.n 10038370 <_netdev_open+0xfc> +100382bc: 4620 mov r0, r4 +100382be: f004 f94f bl 1003c560 +100382c2: 2800 cmp r0, #0 +100382c4: d054 beq.n 10038370 <_netdev_open+0xfc> +100382c6: 4620 mov r0, r4 +100382c8: f7ec fb37 bl 1002493a +100382cc: 2800 cmp r0, #0 +100382ce: d04f beq.n 10038370 <_netdev_open+0xfc> +100382d0: f241 7378 movw r3, #6008 ; 0x1778 +100382d4: 58e3 ldr r3, [r4, r3] +100382d6: b10b cbz r3, 100382dc <_netdev_open+0x68> +100382d8: 4620 mov r0, r4 +100382da: 4798 blx r3 +100382dc: 2201 movs r2, #1 +100382de: f241 7384 movw r3, #6020 ; 0x1784 +100382e2: 50e2 str r2, [r4, r3] +100382e4: f241 73a4 movw r3, #6052 ; 0x17a4 +100382e8: 2600 movs r6, #0 +100382ea: 54e6 strb r6, [r4, r3] +100382ec: f604 308c addw r0, r4, #2956 ; 0xb8c +100382f0: f8d4 1b98 ldr.w r1, [r4, #2968] ; 0xb98 +100382f4: f003 fb08 bl 1003b908 +100382f8: f504 6092 add.w r0, r4, #1168 ; 0x490 +100382fc: f44f 61fa mov.w r1, #2000 ; 0x7d0 +10038300: f003 fb02 bl 1003b908 +10038304: f241 33a8 movw r3, #5032 ; 0x13a8 +10038308: 50e6 str r6, [r4, r3] +1003830a: f504 509e add.w r0, r4, #5056 ; 0x13c0 +1003830e: f241 33d4 movw r3, #5076 ; 0x13d4 +10038312: 3008 adds r0, #8 +10038314: 58e1 ldr r1, [r4, r3] +10038316: f003 faf7 bl 1003b908 +1003831a: 4628 mov r0, r5 +1003831c: f7e4 ff10 bl 1001d140 +10038320: b918 cbnz r0, 1003832a <_netdev_open+0xb6> +10038322: 4628 mov r0, r5 +10038324: f7e4 ff10 bl 1001d148 +10038328: e002 b.n 10038330 <_netdev_open+0xbc> +1003832a: 4628 mov r0, r5 +1003832c: f7e4 ff0a bl 1001d144 +10038330: f241 73a8 movw r3, #6056 ; 0x17a8 +10038334: 58e3 ldr r3, [r4, r3] +10038336: b163 cbz r3, 10038352 <_netdev_open+0xde> +10038338: f241 7284 movw r2, #6020 ; 0x1784 +1003833c: 589a ldr r2, [r3, r2] +1003833e: b11a cbz r2, 10038348 <_netdev_open+0xd4> +10038340: f241 7211 movw r2, #5905 ; 0x1711 +10038344: 5c9a ldrb r2, [r3, r2] +10038346: b922 cbnz r2, 10038352 <_netdev_open+0xde> +10038348: f503 53bc add.w r3, r3, #6016 ; 0x1780 +1003834c: 6818 ldr r0, [r3, #0] +1003834e: f000 f81f bl 10038390 <_netdev_if2_open> +10038352: 4b0d ldr r3, [pc, #52] ; (10038388 <_netdev_open+0x114>) +10038354: 681b ldr r3, [r3, #0] +10038356: b11b cbz r3, 10038360 <_netdev_open+0xec> +10038358: 6862 ldr r2, [r4, #4] +1003835a: 2a01 cmp r2, #1 +1003835c: d100 bne.n 10038360 <_netdev_open+0xec> +1003835e: 4798 blx r3 +10038360: 4b0a ldr r3, [pc, #40] ; (1003838c <_netdev_open+0x118>) +10038362: 6818 ldr r0, [r3, #0] +10038364: b178 cbz r0, 10038386 <_netdev_open+0x112> +10038366: 6863 ldr r3, [r4, #4] +10038368: 2b01 cmp r3, #1 +1003836a: d10b bne.n 10038384 <_netdev_open+0x110> +1003836c: 4780 blx r0 +1003836e: e009 b.n 10038384 <_netdev_open+0x110> +10038370: 2200 movs r2, #0 +10038372: f241 7384 movw r3, #6020 ; 0x1784 +10038376: 4628 mov r0, r5 +10038378: 50e2 str r2, [r4, r3] +1003837a: f7e4 fee7 bl 1001d14c +1003837e: f04f 30ff mov.w r0, #4294967295 +10038382: bd70 pop {r4, r5, r6, pc} +10038384: 2000 movs r0, #0 +10038386: bd70 pop {r4, r5, r6, pc} +10038388: 1005533c .word 0x1005533c +1003838c: 10055344 .word 0x10055344 + +10038390 <_netdev_if2_open>: +10038390: b5f8 push {r3, r4, r5, r6, r7, lr} +10038392: 6903 ldr r3, [r0, #16] +10038394: 4606 mov r6, r0 +10038396: 681c ldr r4, [r3, #0] +10038398: f241 73a8 movw r3, #6056 ; 0x17a8 +1003839c: 58e5 ldr r5, [r4, r3] +1003839e: f241 7384 movw r3, #6020 ; 0x1784 +100383a2: 58eb ldr r3, [r5, r3] +100383a4: b11b cbz r3, 100383ae <_netdev_if2_open+0x1e> +100383a6: f241 7311 movw r3, #5905 ; 0x1711 +100383aa: 5ceb ldrb r3, [r5, r3] +100383ac: b923 cbnz r3, 100383b8 <_netdev_if2_open+0x28> +100383ae: f505 53bc add.w r3, r5, #6016 ; 0x1780 +100383b2: 6818 ldr r0, [r3, #0] +100383b4: f7ff ff5e bl 10038274 <_netdev_open> +100383b8: f241 7284 movw r2, #6020 ; 0x1784 +100383bc: 58a3 ldr r3, [r4, r2] +100383be: 2b00 cmp r3, #0 +100383c0: d133 bne.n 1003842a <_netdev_if2_open+0x9a> +100383c2: 58aa ldr r2, [r5, r2] +100383c4: 2a01 cmp r2, #1 +100383c6: d130 bne.n 1003842a <_netdev_if2_open+0x9a> +100383c8: f241 7211 movw r2, #5905 ; 0x1711 +100383cc: 5caa ldrb r2, [r5, r2] +100383ce: 2a01 cmp r2, #1 +100383d0: d12b bne.n 1003842a <_netdev_if2_open+0x9a> +100383d2: f241 62f8 movw r2, #5880 ; 0x16f8 +100383d6: 50a3 str r3, [r4, r2] +100383d8: f241 62fc movw r2, #5884 ; 0x16fc +100383dc: 50a3 str r3, [r4, r2] +100383de: f106 0714 add.w r7, r6, #20 +100383e2: f504 52b8 add.w r2, r4, #5888 ; 0x1700 +100383e6: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +100383ea: 6013 str r3, [r2, #0] +100383ec: 4638 mov r0, r7 +100383ee: 2206 movs r2, #6 +100383f0: 3109 adds r1, #9 +100383f2: f7e4 fcdb bl 1001cdac +100383f6: 4620 mov r0, r4 +100383f8: 4629 mov r1, r5 +100383fa: f7ff fb3f bl 10037a7c +100383fe: f241 73a5 movw r3, #6053 ; 0x17a5 +10038402: 5cea ldrb r2, [r5, r3] +10038404: 4620 mov r0, r4 +10038406: 54e2 strb r2, [r4, r3] +10038408: 2103 movs r1, #3 +1003840a: 463a mov r2, r7 +1003840c: f7ff fa8d bl 1003792a +10038410: f241 7378 movw r3, #6008 ; 0x1778 +10038414: 58e3 ldr r3, [r4, r3] +10038416: b10b cbz r3, 1003841c <_netdev_if2_open+0x8c> +10038418: 4620 mov r0, r4 +1003841a: 4798 blx r3 +1003841c: 2301 movs r3, #1 +1003841e: f241 7211 movw r2, #5905 ; 0x1711 +10038422: 54a3 strb r3, [r4, r2] +10038424: f241 7284 movw r2, #6020 ; 0x1784 +10038428: 50a3 str r3, [r4, r2] +1003842a: 2200 movs r2, #0 +1003842c: f241 73a4 movw r3, #6052 ; 0x17a4 +10038430: 54e2 strb r2, [r4, r3] +10038432: 4630 mov r0, r6 +10038434: f7e4 fe84 bl 1001d140 +10038438: b918 cbnz r0, 10038442 <_netdev_if2_open+0xb2> +1003843a: 4630 mov r0, r6 +1003843c: f7e4 fe84 bl 1001d148 +10038440: e002 b.n 10038448 <_netdev_if2_open+0xb8> +10038442: 4630 mov r0, r6 +10038444: f7e4 fe7e bl 1001d144 +10038448: 2000 movs r0, #0 +1003844a: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1003844c : +1003844c: 6903 ldr r3, [r0, #16] +1003844e: b570 push {r4, r5, r6, lr} +10038450: 681d ldr r5, [r3, #0] +10038452: f241 74ac movw r4, #6060 ; 0x17ac +10038456: 4606 mov r6, r0 +10038458: 2100 movs r1, #0 +1003845a: 5928 ldr r0, [r5, r4] +1003845c: f7e4 fd5c bl 1001cf18 +10038460: 4630 mov r0, r6 +10038462: f7ff ff95 bl 10038390 <_netdev_if2_open> +10038466: 2100 movs r1, #0 +10038468: 4606 mov r6, r0 +1003846a: 5928 ldr r0, [r5, r4] +1003846c: f7e4 fd5e bl 1001cf2c +10038470: 4630 mov r0, r6 +10038472: bd70 pop {r4, r5, r6, pc} + +10038474 : +10038474: 6903 ldr r3, [r0, #16] +10038476: b570 push {r4, r5, r6, lr} +10038478: 681d ldr r5, [r3, #0] +1003847a: f241 74ac movw r4, #6060 ; 0x17ac +1003847e: 4606 mov r6, r0 +10038480: 2100 movs r1, #0 +10038482: 5928 ldr r0, [r5, r4] +10038484: f7e4 fd48 bl 1001cf18 +10038488: 4630 mov r0, r6 +1003848a: f7ff fef3 bl 10038274 <_netdev_open> +1003848e: 2100 movs r1, #0 +10038490: 4606 mov r6, r0 +10038492: 5928 ldr r0, [r5, r4] +10038494: f7e4 fd4a bl 1001cf2c +10038498: 4630 mov r0, r6 +1003849a: bd70 pop {r4, r5, r6, pc} + +1003849c : +1003849c: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +100384a0: 4689 mov r9, r1 +100384a2: 4606 mov r6, r0 +100384a4: b188 cbz r0, 100384ca +100384a6: 6903 ldr r3, [r0, #16] +100384a8: 2200 movs r2, #0 +100384aa: 681c ldr r4, [r3, #0] +100384ac: f504 519a add.w r1, r4, #4928 ; 0x1340 +100384b0: 4620 mov r0, r4 +100384b2: 3114 adds r1, #20 +100384b4: 68a5 ldr r5, [r4, #8] +100384b6: f7ff fd87 bl 10037fc8 +100384ba: 2800 cmp r0, #0 +100384bc: f000 8095 beq.w 100385ea +100384c0: f500 50bc add.w r0, r0, #6016 ; 0x1780 +100384c4: 6800 ldr r0, [r0, #0] +100384c6: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +100384ca: f007 fda9 bl 10040020 +100384ce: 4605 mov r5, r0 +100384d0: 2800 cmp r0, #0 +100384d2: f000 8090 beq.w 100385f6 +100384d6: f241 70c8 movw r0, #6088 ; 0x17c8 +100384da: f7e4 fc1f bl 1001cd1c +100384de: 4604 mov r4, r0 +100384e0: 2800 cmp r0, #0 +100384e2: f000 8085 beq.w 100385f0 +100384e6: 4b4a ldr r3, [pc, #296] ; (10038610 ) +100384e8: 2701 movs r7, #1 +100384ea: f241 72ac movw r2, #6060 ; 0x17ac +100384ee: f241 68f8 movw r8, #5880 ; 0x16f8 +100384f2: 6085 str r5, [r0, #8] +100384f4: 1d19 adds r1, r3, #4 +100384f6: 6028 str r0, [r5, #0] +100384f8: f840 7008 str.w r7, [r0, r8] +100384fc: 5083 str r3, [r0, r2] +100384fe: f241 72b4 movw r2, #6068 ; 0x17b4 +10038502: 5081 str r1, [r0, r2] +10038504: f103 0108 add.w r1, r3, #8 +10038508: f241 72b8 movw r2, #6072 ; 0x17b8 +1003850c: 5081 str r1, [r0, r2] +1003850e: 330c adds r3, #12 +10038510: f241 72bc movw r2, #6076 ; 0x17bc +10038514: 5083 str r3, [r0, r2] +10038516: f241 73b0 movw r3, #6064 ; 0x17b0 +1003851a: 54c7 strb r7, [r0, r3] +1003851c: f241 73b1 movw r3, #6065 ; 0x17b1 +10038520: 54c6 strb r6, [r0, r3] +10038522: 7c2b ldrb r3, [r5, #16] +10038524: 19da adds r2, r3, r7 +10038526: 3302 adds r3, #2 +10038528: 742a strb r2, [r5, #16] +1003852a: f845 0023 str.w r0, [r5, r3, lsl #2] +1003852e: f241 73b2 movw r3, #6066 ; 0x17b2 +10038532: 54c6 strb r6, [r0, r3] +10038534: 2310 movs r3, #16 +10038536: 8043 strh r3, [r0, #2] +10038538: f8c0 9004 str.w r9, [r0, #4] +1003853c: f7ff fb43 bl 10037bc6 +10038540: 4620 mov r0, r4 +10038542: f7ff fc99 bl 10037e78 +10038546: 4606 mov r6, r0 +10038548: 2800 cmp r0, #0 +1003854a: d05b beq.n 10038604 +1003854c: f604 009c addw r0, r4, #2204 ; 0x89c +10038550: f7f8 fd0a bl 10030f68 +10038554: 4620 mov r0, r4 +10038556: f006 fe9d bl 1003f294 +1003855a: 2800 cmp r0, #0 +1003855c: d03d beq.n 100385da +1003855e: 4620 mov r0, r4 +10038560: f7ff f974 bl 1003784c +10038564: 4620 mov r0, r4 +10038566: f7ff f987 bl 10037878 +1003856a: 4620 mov r0, r4 +1003856c: f7ff f979 bl 10037862 +10038570: 4a28 ldr r2, [pc, #160] ; (10038614 ) +10038572: f241 7378 movw r3, #6008 ; 0x1778 +10038576: 50e2 str r2, [r4, r3] +10038578: 4a27 ldr r2, [pc, #156] ; (10038618 ) +1003857a: f241 737c movw r3, #6012 ; 0x177c +1003857e: 50e2 str r2, [r4, r3] +10038580: 4620 mov r0, r4 +10038582: f7ff fa22 bl 100379ca +10038586: b340 cbz r0, 100385da +10038588: 4620 mov r0, r4 +1003858a: f7ff fa0d bl 100379a8 +1003858e: 4620 mov r0, r4 +10038590: f003 ffa2 bl 1003c4d8 +10038594: b1c8 cbz r0, 100385ca +10038596: f504 519a add.w r1, r4, #4928 ; 0x1340 +1003859a: f504 57a0 add.w r7, r4, #5120 ; 0x1400 +1003859e: 3104 adds r1, #4 +100385a0: 3709 adds r7, #9 +100385a2: 4630 mov r0, r6 +100385a4: f003 f84f bl 1003b646 +100385a8: 4638 mov r0, r7 +100385aa: f003 fdb9 bl 1003c120 +100385ae: f106 0014 add.w r0, r6, #20 +100385b2: 4639 mov r1, r7 +100385b4: 2206 movs r2, #6 +100385b6: f7e4 fbf9 bl 1001cdac +100385ba: f504 54bc add.w r4, r4, #6016 ; 0x1780 +100385be: 4628 mov r0, r5 +100385c0: f007 fd3e bl 10040040 +100385c4: 6820 ldr r0, [r4, #0] +100385c6: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +100385ca: f241 63fc movw r3, #5884 ; 0x16fc +100385ce: f844 7008 str.w r7, [r4, r8] +100385d2: 4620 mov r0, r4 +100385d4: 50e7 str r7, [r4, r3] +100385d6: f003 ff16 bl 1003c406 +100385da: f241 6318 movw r3, #5656 ; 0x1618 +100385de: 58e0 ldr r0, [r4, r3] +100385e0: b160 cbz r0, 100385fc +100385e2: 2104 movs r1, #4 +100385e4: f7e4 fbda bl 1001cd9c +100385e8: e008 b.n 100385fc +100385ea: 4620 mov r0, r4 +100385ec: f7ff fb54 bl 10037c98 +100385f0: 4628 mov r0, r5 +100385f2: f007 fd1d bl 10040030 +100385f6: 2000 movs r0, #0 +100385f8: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +100385fc: 4630 mov r0, r6 +100385fe: f002 ffad bl 1003b55c +10038602: e7f5 b.n 100385f0 +10038604: 4620 mov r0, r4 +10038606: f241 71c8 movw r1, #6088 ; 0x17c8 +1003860a: f7e4 fb99 bl 1001cd40 +1003860e: e7ef b.n 100385f0 +10038610: 1005535c .word 0x1005535c +10038614: 10037987 .word 0x10037987 +10038618: 10040189 .word 0x10040189 + +1003861c : +1003861c: b538 push {r3, r4, r5, lr} +1003861e: 6903 ldr r3, [r0, #16] +10038620: 681c ldr r4, [r3, #0] +10038622: 68a5 ldr r5, [r4, #8] +10038624: 4628 mov r0, r5 +10038626: f007 fd13 bl 10040050 +1003862a: 4620 mov r0, r4 +1003862c: 2100 movs r1, #0 +1003862e: f7f3 fbd1 bl 1002bdd4 +10038632: 2100 movs r1, #0 +10038634: 4620 mov r0, r4 +10038636: f7f3 fba9 bl 1002bd8c +1003863a: 4620 mov r0, r4 +1003863c: f7f3 fabc bl 1002bbb8 +10038640: f241 73a8 movw r3, #6056 ; 0x17a8 +10038644: 58e0 ldr r0, [r4, r3] +10038646: f7ff fdc3 bl 100381d0 +1003864a: 4620 mov r0, r4 +1003864c: f7ff fdeb bl 10038226 +10038650: 4620 mov r0, r4 +10038652: f7ff fb21 bl 10037c98 +10038656: 4628 mov r0, r5 +10038658: f007 fcea bl 10040030 +1003865c: 2000 movs r0, #0 +1003865e: bd38 pop {r3, r4, r5, pc} + +10038660 : +10038660: b510 push {r4, lr} +10038662: 4c09 ldr r4, [pc, #36] ; (10038688 ) +10038664: 1d20 adds r0, r4, #4 +10038666: f7e4 fc13 bl 1001ce90 +1003866a: f104 0008 add.w r0, r4, #8 +1003866e: f7e4 fc0f bl 1001ce90 +10038672: f104 000c add.w r0, r4, #12 +10038676: f7e4 fc0b bl 1001ce90 +1003867a: f104 0010 add.w r0, r4, #16 +1003867e: f7e4 fc07 bl 1001ce90 +10038682: 2301 movs r3, #1 +10038684: 6023 str r3, [r4, #0] +10038686: bd10 pop {r4, pc} +10038688: 10055358 .word 0x10055358 + +1003868c : +1003868c: b510 push {r4, lr} +1003868e: 4c0a ldr r4, [pc, #40] ; (100386b8 ) +10038690: 2300 movs r3, #0 +10038692: 4620 mov r0, r4 +10038694: f840 3b04 str.w r3, [r0], #4 +10038698: f7e4 fc02 bl 1001cea0 +1003869c: f104 0008 add.w r0, r4, #8 +100386a0: f7e4 fbfe bl 1001cea0 +100386a4: f104 000c add.w r0, r4, #12 +100386a8: f7e4 fbfa bl 1001cea0 +100386ac: f104 0010 add.w r0, r4, #16 +100386b0: e8bd 4010 ldmia.w sp!, {r4, lr} +100386b4: f7e4 bbf4 b.w 1001cea0 +100386b8: 10055358 .word 0x10055358 + +100386bc : +100386bc: 6903 ldr r3, [r0, #16] +100386be: 6810 ldr r0, [r2, #0] +100386c0: 681b ldr r3, [r3, #0] +100386c2: 7801 ldrb r1, [r0, #0] +100386c4: 7840 ldrb r0, [r0, #1] +100386c6: f883 07e1 strb.w r0, [r3, #2017] ; 0x7e1 +100386ca: 6812 ldr r2, [r2, #0] +100386cc: 7892 ldrb r2, [r2, #2] +100386ce: f8a3 27e4 strh.w r2, [r3, #2020] ; 0x7e4 +100386d2: 2200 movs r2, #0 +100386d4: f883 27e2 strb.w r2, [r3, #2018] ; 0x7e2 +100386d8: b119 cbz r1, 100386e2 +100386da: 2201 movs r2, #1 +100386dc: f883 286d strb.w r2, [r3, #2157] ; 0x86d +100386e0: e001 b.n 100386e6 +100386e2: f883 186d strb.w r1, [r3, #2157] ; 0x86d +100386e6: 2000 movs r0, #0 +100386e8: 4770 bx lr + +100386ea : +100386ea: 6902 ldr r2, [r0, #16] +100386ec: 2000 movs r0, #0 +100386ee: 6812 ldr r2, [r2, #0] +100386f0: f892 286d ldrb.w r2, [r2, #2157] ; 0x86d +100386f4: 701a strb r2, [r3, #0] +100386f6: 4770 bx lr + +100386f8 : +100386f8: 6812 ldr r2, [r2, #0] +100386fa: 6903 ldr r3, [r0, #16] +100386fc: f992 2000 ldrsb.w r2, [r2] +10038700: 681b ldr r3, [r3, #0] +10038702: 2a31 cmp r2, #49 ; 0x31 +10038704: d101 bne.n 1003870a +10038706: 2100 movs r1, #0 +10038708: e002 b.n 10038710 +1003870a: 2a30 cmp r2, #48 ; 0x30 +1003870c: d103 bne.n 10038716 +1003870e: 2101 movs r1, #1 +10038710: f241 7215 movw r2, #5909 ; 0x1715 +10038714: 5499 strb r1, [r3, r2] +10038716: 2000 movs r0, #0 +10038718: 4770 bx lr + +1003871a : +1003871a: 6812 ldr r2, [r2, #0] +1003871c: 6903 ldr r3, [r0, #16] +1003871e: f992 2000 ldrsb.w r2, [r2] +10038722: 681b ldr r3, [r3, #0] +10038724: 2a31 cmp r2, #49 ; 0x31 +10038726: d101 bne.n 1003872c +10038728: 2200 movs r2, #0 +1003872a: e002 b.n 10038732 +1003872c: 2a30 cmp r2, #48 ; 0x30 +1003872e: d102 bne.n 10038736 +10038730: 2201 movs r2, #1 +10038732: f883 2875 strb.w r2, [r3, #2165] ; 0x875 +10038736: 2000 movs r0, #0 +10038738: 4770 bx lr + ... + +1003873c : +1003873c: 4a03 ldr r2, [pc, #12] ; (1003874c ) +1003873e: f3c0 030a ubfx r3, r0, #0, #11 +10038742: f3c0 3002 ubfx r0, r0, #12, #3 +10038746: 5610 ldrsb r0, [r2, r0] +10038748: 4358 muls r0, r3 +1003874a: 4770 bx lr +1003874c: 1004b3da .word 0x1004b3da + +10038750 : +10038750: b538 push {r3, r4, r5, lr} +10038752: 6903 ldr r3, [r0, #16] +10038754: 681c ldr r4, [r3, #0] +10038756: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +1003875a: b1e3 cbz r3, 10038796 +1003875c: f894 3874 ldrb.w r3, [r4, #2164] ; 0x874 +10038760: b1cb cbz r3, 10038796 +10038762: 2500 movs r5, #0 +10038764: f894 1874 ldrb.w r1, [r4, #2164] ; 0x874 +10038768: 428d cmp r5, r1 +1003876a: da09 bge.n 10038780 +1003876c: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +10038770: f853 0035 ldr.w r0, [r3, r5, lsl #3] +10038774: 3501 adds r5, #1 +10038776: 7841 ldrb r1, [r0, #1] +10038778: 3102 adds r1, #2 +1003877a: f7e4 fb0f bl 1001cd9c +1003877e: e7f1 b.n 10038764 +10038780: f8d4 0870 ldr.w r0, [r4, #2160] ; 0x870 +10038784: 00c9 lsls r1, r1, #3 +10038786: f7e4 fb09 bl 1001cd9c +1003878a: 2000 movs r0, #0 +1003878c: f884 0874 strb.w r0, [r4, #2164] ; 0x874 +10038790: f8c4 0870 str.w r0, [r4, #2160] ; 0x870 +10038794: bd38 pop {r3, r4, r5, pc} +10038796: f04f 30ff mov.w r0, #4294967295 +1003879a: bd38 pop {r3, r4, r5, pc} + +1003879c : +1003879c: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +100387a0: 6903 ldr r3, [r0, #16] +100387a2: 4617 mov r7, r2 +100387a4: 681c ldr r4, [r3, #0] +100387a6: 6813 ldr r3, [r2, #0] +100387a8: 781d ldrb r5, [r3, #0] +100387aa: 2d01 cmp r5, #1 +100387ac: d10f bne.n 100387ce +100387ae: f204 40fc addw r0, r4, #1276 ; 0x4fc +100387b2: 7859 ldrb r1, [r3, #1] +100387b4: aa01 add r2, sp, #4 +100387b6: f7ec f8af bl 10024918 +100387ba: 2801 cmp r0, #1 +100387bc: d107 bne.n 100387ce +100387be: f884 54fa strb.w r5, [r4, #1274] ; 0x4fa +100387c2: 683b ldr r3, [r7, #0] +100387c4: 785b ldrb r3, [r3, #1] +100387c6: f8c4 5500 str.w r5, [r4, #1280] ; 0x500 +100387ca: f884 34fc strb.w r3, [r4, #1276] ; 0x4fc +100387ce: 2601 movs r6, #1 +100387d0: f04f 0800 mov.w r8, #0 +100387d4: 1e73 subs r3, r6, #1 +100387d6: 42ab cmp r3, r5 +100387d8: da14 bge.n 10038804 +100387da: 683b ldr r3, [r7, #0] +100387dc: f204 40fc addw r0, r4, #1276 ; 0x4fc +100387e0: 5d99 ldrb r1, [r3, r6] +100387e2: aa01 add r2, sp, #4 +100387e4: f7ec f898 bl 10024918 +100387e8: 2801 cmp r0, #1 +100387ea: d109 bne.n 10038800 +100387ec: 683b ldr r3, [r7, #0] +100387ee: 210c movs r1, #12 +100387f0: 442b add r3, r5 +100387f2: 5d9a ldrb r2, [r3, r6] +100387f4: 9b01 ldr r3, [sp, #4] +100387f6: 4680 mov r8, r0 +100387f8: fb01 4303 mla r3, r1, r3, r4 +100387fc: f883 2504 strb.w r2, [r3, #1284] ; 0x504 +10038800: 3601 adds r6, #1 +10038802: e7e7 b.n 100387d4 +10038804: f1b8 0f00 cmp.w r8, #0 +10038808: d004 beq.n 10038814 +1003880a: 2301 movs r3, #1 +1003880c: f884 386e strb.w r3, [r4, #2158] ; 0x86e +10038810: 2000 movs r0, #0 +10038812: e001 b.n 10038818 +10038814: f06f 0015 mvn.w r0, #21 +10038818: b002 add sp, #8 +1003881a: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1003881e : +1003881e: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10038822: 6903 ldr r3, [r0, #16] +10038824: 681d ldr r5, [r3, #0] +10038826: 6813 ldr r3, [r2, #0] +10038828: f895 2874 ldrb.w r2, [r5, #2164] ; 0x874 +1003882c: 791c ldrb r4, [r3, #4] +1003882e: 681e ldr r6, [r3, #0] +10038830: 42a2 cmp r2, r4 +10038832: d329 bcc.n 10038888 +10038834: f8d5 3870 ldr.w r3, [r5, #2160] ; 0x870 +10038838: f104 5400 add.w r4, r4, #536870912 ; 0x20000000 +1003883c: 3c01 subs r4, #1 +1003883e: 6831 ldr r1, [r6, #0] +10038840: f853 0034 ldr.w r0, [r3, r4, lsl #3] +10038844: 784a ldrb r2, [r1, #1] +10038846: 7843 ldrb r3, [r0, #1] +10038848: 00e7 lsls r7, r4, #3 +1003884a: 429a cmp r2, r3 +1003884c: d011 beq.n 10038872 +1003884e: 1c99 adds r1, r3, #2 +10038850: f7e4 faa4 bl 1001cd9c +10038854: 6833 ldr r3, [r6, #0] +10038856: f8d5 8870 ldr.w r8, [r5, #2160] ; 0x870 +1003885a: 7858 ldrb r0, [r3, #1] +1003885c: 3002 adds r0, #2 +1003885e: f7e4 fa71 bl 1001cd44 +10038862: f848 0034 str.w r0, [r8, r4, lsl #3] +10038866: 6831 ldr r1, [r6, #0] +10038868: f8d5 3870 ldr.w r3, [r5, #2160] ; 0x870 +1003886c: 784a ldrb r2, [r1, #1] +1003886e: f853 0034 ldr.w r0, [r3, r4, lsl #3] +10038872: 3202 adds r2, #2 +10038874: f009 fc74 bl 10042160 +10038878: f8d5 2870 ldr.w r2, [r5, #2160] ; 0x870 +1003887c: 7933 ldrb r3, [r6, #4] +1003887e: 4417 add r7, r2 +10038880: 713b strb r3, [r7, #4] +10038882: 2000 movs r0, #0 +10038884: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10038888: f04f 30ff mov.w r0, #4294967295 +1003888c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10038890 : +10038890: b508 push {r3, lr} +10038892: 6903 ldr r3, [r0, #16] +10038894: f44f 61a1 mov.w r1, #1288 ; 0x508 +10038898: 6818 ldr r0, [r3, #0] +1003889a: 6813 ldr r3, [r2, #0] +1003889c: 681a ldr r2, [r3, #0] +1003889e: f241 6318 movw r3, #5656 ; 0x1618 +100388a2: 58c3 ldr r3, [r0, r3] +100388a4: f8c3 2180 str.w r2, [r3, #384] ; 0x180 +100388a8: f003 fef5 bl 1003c696 +100388ac: 2000 movs r0, #0 +100388ae: bd08 pop {r3, pc} + +100388b0 : +100388b0: b538 push {r3, r4, r5, lr} +100388b2: 461c mov r4, r3 +100388b4: 6903 ldr r3, [r0, #16] +100388b6: f640 6108 movw r1, #3592 ; 0xe08 +100388ba: 681d ldr r5, [r3, #0] +100388bc: f44f 427f mov.w r2, #65280 ; 0xff00 +100388c0: 4628 mov r0, r5 +100388c2: f7ff f8f0 bl 10037aa6 +100388c6: f640 016c movw r1, #2156 ; 0x86c +100388ca: 7020 strb r0, [r4, #0] +100388cc: f44f 427f mov.w r2, #65280 ; 0xff00 +100388d0: 4628 mov r0, r5 +100388d2: f7ff f8e8 bl 10037aa6 +100388d6: f640 016c movw r1, #2156 ; 0x86c +100388da: 7060 strb r0, [r4, #1] +100388dc: f44f 027f mov.w r2, #16711680 ; 0xff0000 +100388e0: 4628 mov r0, r5 +100388e2: f7ff f8e0 bl 10037aa6 +100388e6: f640 016c movw r1, #2156 ; 0x86c +100388ea: 70a0 strb r0, [r4, #2] +100388ec: f04f 427f mov.w r2, #4278190080 ; 0xff000000 +100388f0: 4628 mov r0, r5 +100388f2: f7ff f8d8 bl 10037aa6 +100388f6: f44f 6160 mov.w r1, #3584 ; 0xe00 +100388fa: 70e0 strb r0, [r4, #3] +100388fc: 22ff movs r2, #255 ; 0xff +100388fe: 4628 mov r0, r5 +10038900: f7ff f8d1 bl 10037aa6 +10038904: f44f 6160 mov.w r1, #3584 ; 0xe00 +10038908: 7120 strb r0, [r4, #4] +1003890a: f44f 427f mov.w r2, #65280 ; 0xff00 +1003890e: 4628 mov r0, r5 +10038910: f7ff f8c9 bl 10037aa6 +10038914: f44f 6160 mov.w r1, #3584 ; 0xe00 +10038918: 7160 strb r0, [r4, #5] +1003891a: f44f 027f mov.w r2, #16711680 ; 0xff0000 +1003891e: 4628 mov r0, r5 +10038920: f7ff f8c1 bl 10037aa6 +10038924: f44f 6160 mov.w r1, #3584 ; 0xe00 +10038928: 71a0 strb r0, [r4, #6] +1003892a: f04f 427f mov.w r2, #4278190080 ; 0xff000000 +1003892e: 4628 mov r0, r5 +10038930: f7ff f8b9 bl 10037aa6 +10038934: f640 6104 movw r1, #3588 ; 0xe04 +10038938: 71e0 strb r0, [r4, #7] +1003893a: 22ff movs r2, #255 ; 0xff +1003893c: 4628 mov r0, r5 +1003893e: f7ff f8b2 bl 10037aa6 +10038942: f640 6104 movw r1, #3588 ; 0xe04 +10038946: 7220 strb r0, [r4, #8] +10038948: f44f 427f mov.w r2, #65280 ; 0xff00 +1003894c: 4628 mov r0, r5 +1003894e: f7ff f8aa bl 10037aa6 +10038952: f640 6104 movw r1, #3588 ; 0xe04 +10038956: 7260 strb r0, [r4, #9] +10038958: f44f 027f mov.w r2, #16711680 ; 0xff0000 +1003895c: 4628 mov r0, r5 +1003895e: f7ff f8a2 bl 10037aa6 +10038962: f640 6104 movw r1, #3588 ; 0xe04 +10038966: 72a0 strb r0, [r4, #10] +10038968: f04f 427f mov.w r2, #4278190080 ; 0xff000000 +1003896c: 4628 mov r0, r5 +1003896e: f7ff f89a bl 10037aa6 +10038972: f44f 6161 mov.w r1, #3600 ; 0xe10 +10038976: 72e0 strb r0, [r4, #11] +10038978: 22ff movs r2, #255 ; 0xff +1003897a: 4628 mov r0, r5 +1003897c: f7ff f893 bl 10037aa6 +10038980: f44f 6161 mov.w r1, #3600 ; 0xe10 +10038984: 7320 strb r0, [r4, #12] +10038986: f44f 427f mov.w r2, #65280 ; 0xff00 +1003898a: 4628 mov r0, r5 +1003898c: f7ff f88b bl 10037aa6 +10038990: f44f 6161 mov.w r1, #3600 ; 0xe10 +10038994: 7360 strb r0, [r4, #13] +10038996: f44f 027f mov.w r2, #16711680 ; 0xff0000 +1003899a: 4628 mov r0, r5 +1003899c: f7ff f883 bl 10037aa6 +100389a0: f44f 6161 mov.w r1, #3600 ; 0xe10 +100389a4: 73a0 strb r0, [r4, #14] +100389a6: f04f 427f mov.w r2, #4278190080 ; 0xff000000 +100389aa: 4628 mov r0, r5 +100389ac: f7ff f87b bl 10037aa6 +100389b0: f640 6114 movw r1, #3604 ; 0xe14 +100389b4: 73e0 strb r0, [r4, #15] +100389b6: 22ff movs r2, #255 ; 0xff +100389b8: 4628 mov r0, r5 +100389ba: f7ff f874 bl 10037aa6 +100389be: f640 6114 movw r1, #3604 ; 0xe14 +100389c2: 7420 strb r0, [r4, #16] +100389c4: f44f 427f mov.w r2, #65280 ; 0xff00 +100389c8: 4628 mov r0, r5 +100389ca: f7ff f86c bl 10037aa6 +100389ce: f640 6114 movw r1, #3604 ; 0xe14 +100389d2: 7460 strb r0, [r4, #17] +100389d4: f44f 027f mov.w r2, #16711680 ; 0xff0000 +100389d8: 4628 mov r0, r5 +100389da: f7ff f864 bl 10037aa6 +100389de: f640 6114 movw r1, #3604 ; 0xe14 +100389e2: 74a0 strb r0, [r4, #18] +100389e4: f04f 427f mov.w r2, #4278190080 ; 0xff000000 +100389e8: 4628 mov r0, r5 +100389ea: f7ff f85c bl 10037aa6 +100389ee: 74e0 strb r0, [r4, #19] +100389f0: 2000 movs r0, #0 +100389f2: bd38 pop {r3, r4, r5, pc} + +100389f4 : +100389f4: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +100389f8: 6903 ldr r3, [r0, #16] +100389fa: 681c ldr r4, [r3, #0] +100389fc: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +10038a00: 2b00 cmp r3, #0 +10038a02: d149 bne.n 10038a98 +10038a04: f894 7874 ldrb.w r7, [r4, #2164] ; 0x874 +10038a08: 2f00 cmp r7, #0 +10038a0a: d145 bne.n 10038a98 +10038a0c: 6813 ldr r3, [r2, #0] +10038a0e: 681e ldr r6, [r3, #0] +10038a10: 2e00 cmp r6, #0 +10038a12: d03e beq.n 10038a92 +10038a14: 6858 ldr r0, [r3, #4] +10038a16: 463d mov r5, r7 +10038a18: f884 0874 strb.w r0, [r4, #2164] ; 0x874 +10038a1c: b2c0 uxtb r0, r0 +10038a1e: 00c0 lsls r0, r0, #3 +10038a20: f7e4 f990 bl 1001cd44 +10038a24: f894 2874 ldrb.w r2, [r4, #2164] ; 0x874 +10038a28: f8c4 0870 str.w r0, [r4, #2160] ; 0x870 +10038a2c: 4639 mov r1, r7 +10038a2e: 00d2 lsls r2, r2, #3 +10038a30: f009 fb9c bl 1004216c +10038a34: f894 3874 ldrb.w r3, [r4, #2164] ; 0x874 +10038a38: 429d cmp r5, r3 +10038a3a: da23 bge.n 10038a84 +10038a3c: 6833 ldr r3, [r6, #0] +10038a3e: f8d4 9870 ldr.w r9, [r4, #2160] ; 0x870 +10038a42: 7858 ldrb r0, [r3, #1] +10038a44: ea4f 08c5 mov.w r8, r5, lsl #3 +10038a48: 3002 adds r0, #2 +10038a4a: f7e4 f97b bl 1001cd44 +10038a4e: f849 0035 str.w r0, [r9, r5, lsl #3] +10038a52: 6831 ldr r1, [r6, #0] +10038a54: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +10038a58: 784a ldrb r2, [r1, #1] +10038a5a: f853 0035 ldr.w r0, [r3, r5, lsl #3] +10038a5e: 3202 adds r2, #2 +10038a60: f009 fb7e bl 10042160 +10038a64: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +10038a68: 7932 ldrb r2, [r6, #4] +10038a6a: 4443 add r3, r8 +10038a6c: 711a strb r2, [r3, #4] +10038a6e: f8d4 3870 ldr.w r3, [r4, #2160] ; 0x870 +10038a72: 3501 adds r5, #1 +10038a74: 4443 add r3, r8 +10038a76: 791b ldrb r3, [r3, #4] +10038a78: 3608 adds r6, #8 +10038a7a: f013 0f04 tst.w r3, #4 +10038a7e: bf18 it ne +10038a80: 2701 movne r7, #1 +10038a82: e7d7 b.n 10038a34 +10038a84: b12f cbz r7, 10038a92 +10038a86: 2100 movs r1, #0 +10038a88: 4620 mov r0, r4 +10038a8a: 460a mov r2, r1 +10038a8c: 2301 movs r3, #1 +10038a8e: f7e8 fd3f bl 10021510 +10038a92: 2000 movs r0, #0 +10038a94: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10038a98: f04f 30ff mov.w r0, #4294967295 +10038a9c: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +10038aa0 : +10038aa0: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10038aa4: 6903 ldr r3, [r0, #16] +10038aa6: 8897 ldrh r7, [r2, #4] +10038aa8: 681e ldr r6, [r3, #0] +10038aaa: 6815 ldr r5, [r2, #0] +10038aac: 2400 movs r4, #0 +10038aae: 4623 mov r3, r4 +10038ab0: 42bb cmp r3, r7 +10038ab2: d214 bcs.n 10038ade +10038ab4: 5ce9 ldrb r1, [r5, r3] +10038ab6: 1c5a adds r2, r3, #1 +10038ab8: 2903 cmp r1, #3 +10038aba: b292 uxth r2, r2 +10038abc: d001 beq.n 10038ac2 +10038abe: 4613 mov r3, r2 +10038ac0: e7f6 b.n 10038ab0 +10038ac2: 5caa ldrb r2, [r5, r2] +10038ac4: 1c9c adds r4, r3, #2 +10038ac6: 2a01 cmp r2, #1 +10038ac8: b2a4 uxth r4, r4 +10038aca: d1f0 bne.n 10038aae +10038acc: 3303 adds r3, #3 +10038ace: 4630 mov r0, r6 +10038ad0: fa1f f883 uxth.w r8, r3 +10038ad4: f7f3 f9b4 bl 1002be40 +10038ad8: 5528 strb r0, [r5, r4] +10038ada: 4644 mov r4, r8 +10038adc: e7e7 b.n 10038aae +10038ade: 2000 movs r0, #0 +10038ae0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10038ae4 : +10038ae4: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +10038ae8: 6903 ldr r3, [r0, #16] +10038aea: f8b2 8004 ldrh.w r8, [r2, #4] +10038aee: 681f ldr r7, [r3, #0] +10038af0: 6815 ldr r5, [r2, #0] +10038af2: 2400 movs r4, #0 +10038af4: 4544 cmp r4, r8 +10038af6: d24a bcs.n 10038b8e +10038af8: 5d2a ldrb r2, [r5, r4] +10038afa: 1c63 adds r3, r4, #1 +10038afc: b29b uxth r3, r3 +10038afe: 2a03 cmp r2, #3 +10038b00: d803 bhi.n 10038b0a +10038b02: e8df f002 tbb [pc, r2] +10038b06: 1004 .short 0x1004 +10038b08: 3620 .short 0x3620 +10038b0a: 461c mov r4, r3 +10038b0c: e7f2 b.n 10038af4 +10038b0e: 5ceb ldrb r3, [r5, r3] +10038b10: 1ca6 adds r6, r4, #2 +10038b12: 2b01 cmp r3, #1 +10038b14: b2b6 uxth r6, r6 +10038b16: d138 bne.n 10038b8a +10038b18: 3403 adds r4, #3 +10038b1a: 4638 mov r0, r7 +10038b1c: 5da9 ldrb r1, [r5, r6] +10038b1e: b2a4 uxth r4, r4 +10038b20: f7f3 f958 bl 1002bdd4 +10038b24: e030 b.n 10038b88 +10038b26: 5ceb ldrb r3, [r5, r3] +10038b28: 1ca6 adds r6, r4, #2 +10038b2a: 2b01 cmp r3, #1 +10038b2c: b2b6 uxth r6, r6 +10038b2e: d12c bne.n 10038b8a +10038b30: 5dae ldrb r6, [r5, r6] +10038b32: 4638 mov r0, r7 +10038b34: f7f3 f840 bl 1002bbb8 +10038b38: 3403 adds r4, #3 +10038b3a: 4638 mov r0, r7 +10038b3c: 4631 mov r1, r6 +10038b3e: b2a4 uxth r4, r4 +10038b40: f7f3 f924 bl 1002bd8c +10038b44: e020 b.n 10038b88 +10038b46: 5ceb ldrb r3, [r5, r3] +10038b48: 1ca6 adds r6, r4, #2 +10038b4a: 2b04 cmp r3, #4 +10038b4c: b2b6 uxth r6, r6 +10038b4e: d11c bne.n 10038b8a +10038b50: 1ce3 adds r3, r4, #3 +10038b52: b29b uxth r3, r3 +10038b54: 5da9 ldrb r1, [r5, r6] +10038b56: 5cea ldrb r2, [r5, r3] +10038b58: 1da6 adds r6, r4, #6 +10038b5a: 1d23 adds r3, r4, #4 +10038b5c: 3405 adds r4, #5 +10038b5e: b2a4 uxth r4, r4 +10038b60: 5d28 ldrb r0, [r5, r4] +10038b62: b29b uxth r3, r3 +10038b64: 5ceb ldrb r3, [r5, r3] +10038b66: 9000 str r0, [sp, #0] +10038b68: 4638 mov r0, r7 +10038b6a: b2b6 uxth r6, r6 +10038b6c: f7f3 f954 bl 1002be18 +10038b70: e00b b.n 10038b8a +10038b72: 5ceb ldrb r3, [r5, r3] +10038b74: 1ca6 adds r6, r4, #2 +10038b76: 2b01 cmp r3, #1 +10038b78: b2b6 uxth r6, r6 +10038b7a: d106 bne.n 10038b8a +10038b7c: 3403 adds r4, #3 +10038b7e: 4638 mov r0, r7 +10038b80: 5da9 ldrb r1, [r5, r6] +10038b82: b2a4 uxth r4, r4 +10038b84: f7f3 f956 bl 1002be34 +10038b88: 4626 mov r6, r4 +10038b8a: 4634 mov r4, r6 +10038b8c: e7b2 b.n 10038af4 +10038b8e: 2000 movs r0, #0 +10038b90: b002 add sp, #8 +10038b92: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + ... + +10038b98 : +10038b98: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +10038b9c: 8894 ldrh r4, [r2, #4] +10038b9e: 461e mov r6, r3 +10038ba0: 6903 ldr r3, [r0, #16] +10038ba2: 4620 mov r0, r4 +10038ba4: 4690 mov r8, r2 +10038ba6: 681f ldr r7, [r3, #0] +10038ba8: f7e4 f8cc bl 1001cd44 +10038bac: 4605 mov r5, r0 +10038bae: 2800 cmp r0, #0 +10038bb0: d03a beq.n 10038c28 +10038bb2: f8d8 1000 ldr.w r1, [r8] +10038bb6: 4622 mov r2, r4 +10038bb8: f7e4 f8f8 bl 1001cdac +10038bbc: 2300 movs r3, #0 +10038bbe: 9301 str r3, [sp, #4] +10038bc0: 9300 str r3, [sp, #0] +10038bc2: 4628 mov r0, r5 +10038bc4: 466b mov r3, sp +10038bc6: 491b ldr r1, [pc, #108] ; (10038c34 ) +10038bc8: aa01 add r2, sp, #4 +10038bca: f009 fc89 bl 100424e0 +10038bce: 9b01 ldr r3, [sp, #4] +10038bd0: 2b02 cmp r3, #2 +10038bd2: d00b beq.n 10038bec +10038bd4: 2b04 cmp r3, #4 +10038bd6: d011 beq.n 10038bfc +10038bd8: 2b01 cmp r3, #1 +10038bda: d11e bne.n 10038c1a +10038bdc: 9900 ldr r1, [sp, #0] +10038bde: 4638 mov r0, r7 +10038be0: f003 fd36 bl 1003c650 +10038be4: 4914 ldr r1, [pc, #80] ; (10038c38 ) +10038be6: 4602 mov r2, r0 +10038be8: 4630 mov r0, r6 +10038bea: e00e b.n 10038c0a +10038bec: 9900 ldr r1, [sp, #0] +10038bee: 4638 mov r0, r7 +10038bf0: f003 fd35 bl 1003c65e +10038bf4: 4911 ldr r1, [pc, #68] ; (10038c3c ) +10038bf6: 4602 mov r2, r0 +10038bf8: 4630 mov r0, r6 +10038bfa: e006 b.n 10038c0a +10038bfc: 9900 ldr r1, [sp, #0] +10038bfe: 4638 mov r0, r7 +10038c00: f003 fd34 bl 1003c66c +10038c04: 490e ldr r1, [pc, #56] ; (10038c40 ) +10038c06: 4602 mov r2, r0 +10038c08: 4630 mov r0, r6 +10038c0a: f009 fa4d bl 100420a8 +10038c0e: 4628 mov r0, r5 +10038c10: 4621 mov r1, r4 +10038c12: f7e4 f8c3 bl 1001cd9c +10038c16: 2000 movs r0, #0 +10038c18: e008 b.n 10038c2c +10038c1a: 4628 mov r0, r5 +10038c1c: 4621 mov r1, r4 +10038c1e: f7e4 f8bd bl 1001cd9c +10038c22: f06f 0015 mvn.w r0, #21 +10038c26: e001 b.n 10038c2c +10038c28: f06f 000b mvn.w r0, #11 +10038c2c: b002 add sp, #8 +10038c2e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10038c32: bf00 nop +10038c34: 1004b17c .word 0x1004b17c +10038c38: 1004b182 .word 0x1004b182 +10038c3c: 1004b189 .word 0x1004b189 +10038c40: 1004b190 .word 0x1004b190 + +10038c44 : +10038c44: b530 push {r4, r5, lr} +10038c46: 6902 ldr r2, [r0, #16] +10038c48: b087 sub sp, #28 +10038c4a: 6815 ldr r5, [r2, #0] +10038c4c: aa04 add r2, sp, #16 +10038c4e: 2400 movs r4, #0 +10038c50: 9200 str r2, [sp, #0] +10038c52: 4618 mov r0, r3 +10038c54: 4913 ldr r1, [pc, #76] ; (10038ca4 ) +10038c56: ab03 add r3, sp, #12 +10038c58: aa05 add r2, sp, #20 +10038c5a: 9405 str r4, [sp, #20] +10038c5c: 9403 str r4, [sp, #12] +10038c5e: 9404 str r4, [sp, #16] +10038c60: f009 fc3e bl 100424e0 +10038c64: 9b05 ldr r3, [sp, #20] +10038c66: 2b02 cmp r3, #2 +10038c68: d00a beq.n 10038c80 +10038c6a: 2b04 cmp r3, #4 +10038c6c: d010 beq.n 10038c90 +10038c6e: 2b01 cmp r3, #1 +10038c70: d114 bne.n 10038c9c +10038c72: 4628 mov r0, r5 +10038c74: 9903 ldr r1, [sp, #12] +10038c76: f89d 2010 ldrb.w r2, [sp, #16] +10038c7a: f003 fcfe bl 1003c67a +10038c7e: e005 b.n 10038c8c +10038c80: 4628 mov r0, r5 +10038c82: 9903 ldr r1, [sp, #12] +10038c84: f8bd 2010 ldrh.w r2, [sp, #16] +10038c88: f003 fcfe bl 1003c688 +10038c8c: 4620 mov r0, r4 +10038c8e: e007 b.n 10038ca0 +10038c90: 4628 mov r0, r5 +10038c92: 9903 ldr r1, [sp, #12] +10038c94: 9a04 ldr r2, [sp, #16] +10038c96: f003 fcfe bl 1003c696 +10038c9a: e7f7 b.n 10038c8c +10038c9c: f06f 0015 mvn.w r0, #21 +10038ca0: b007 add sp, #28 +10038ca2: bd30 pop {r4, r5, pc} +10038ca4: 1004b197 .word 0x1004b197 + +10038ca8 : +10038ca8: b538 push {r3, r4, r5, lr} +10038caa: 6804 ldr r4, [r0, #0] +10038cac: f241 73b1 movw r3, #6065 ; 0x17b1 +10038cb0: 5ce3 ldrb r3, [r4, r3] +10038cb2: 460d mov r5, r1 +10038cb4: b153 cbz r3, 10038ccc +10038cb6: 4620 mov r0, r4 +10038cb8: f44f 6100 mov.w r1, #2048 ; 0x800 +10038cbc: f7eb fdc7 bl 1002484e +10038cc0: 2801 cmp r0, #1 +10038cc2: d103 bne.n 10038ccc +10038cc4: f44f 707a mov.w r0, #1000 ; 0x3e8 +10038cc8: f7e4 f9c0 bl 1001d04c +10038ccc: f241 73b1 movw r3, #6065 ; 0x17b1 +10038cd0: 5ce3 ldrb r3, [r4, r3] +10038cd2: b1ab cbz r3, 10038d00 +10038cd4: 4620 mov r0, r4 +10038cd6: 2181 movs r1, #129 ; 0x81 +10038cd8: f7eb fdb9 bl 1002484e +10038cdc: 2801 cmp r0, #1 +10038cde: d10f bne.n 10038d00 +10038ce0: f241 73a8 movw r3, #6056 ; 0x17a8 +10038ce4: 58e3 ldr r3, [r4, r3] +10038ce6: f893 24f6 ldrb.w r2, [r3, #1270] ; 0x4f6 +10038cea: f884 24f6 strb.w r2, [r4, #1270] ; 0x4f6 +10038cee: f893 24f8 ldrb.w r2, [r3, #1272] ; 0x4f8 +10038cf2: f893 34f7 ldrb.w r3, [r3, #1271] ; 0x4f7 +10038cf6: f884 24f8 strb.w r2, [r4, #1272] ; 0x4f8 +10038cfa: f884 34f7 strb.w r3, [r4, #1271] ; 0x4f7 +10038cfe: e022 b.n 10038d46 +10038d00: f204 40fc addw r0, r4, #1276 ; 0x4fc +10038d04: 4629 mov r1, r5 +10038d06: 2200 movs r2, #0 +10038d08: f7eb fe06 bl 10024918 +10038d0c: 2801 cmp r0, #1 +10038d0e: d11c bne.n 10038d4a +10038d10: f894 34f7 ldrb.w r3, [r4, #1271] ; 0x4f7 +10038d14: f884 54f6 strb.w r5, [r4, #1270] ; 0x4f6 +10038d18: 2b01 cmp r3, #1 +10038d1a: d10e bne.n 10038d3a +10038d1c: f1a5 020a sub.w r2, r5, #10 +10038d20: 2a03 cmp r2, #3 +10038d22: d803 bhi.n 10038d2c +10038d24: 4620 mov r0, r4 +10038d26: 4629 mov r1, r5 +10038d28: 2202 movs r2, #2 +10038d2a: e00a b.n 10038d42 +10038d2c: 1e6a subs r2, r5, #1 +10038d2e: 2a03 cmp r2, #3 +10038d30: 4620 mov r0, r4 +10038d32: 4629 mov r1, r5 +10038d34: d803 bhi.n 10038d3e +10038d36: 461a mov r2, r3 +10038d38: e003 b.n 10038d42 +10038d3a: 4620 mov r0, r4 +10038d3c: 4629 mov r1, r5 +10038d3e: f890 24f8 ldrb.w r2, [r0, #1272] ; 0x4f8 +10038d42: f7f5 f865 bl 1002de10 +10038d46: 2000 movs r0, #0 +10038d48: bd38 pop {r3, r4, r5, pc} +10038d4a: f06f 0015 mvn.w r0, #21 +10038d4e: bd38 pop {r3, r4, r5, pc} + +10038d50 : +10038d50: b5f0 push {r4, r5, r6, r7, lr} +10038d52: 461d mov r5, r3 +10038d54: 6903 ldr r3, [r0, #16] +10038d56: b085 sub sp, #20 +10038d58: 681e ldr r6, [r3, #0] +10038d5a: 88d4 ldrh r4, [r2, #6] +10038d5c: 2e00 cmp r6, #0 +10038d5e: d047 beq.n 10038df0 +10038d60: b91d cbnz r5, 10038d6a +10038d62: 8095 strh r5, [r2, #4] +10038d64: f06f 0004 mvn.w r0, #4 +10038d68: e046 b.n 10038df8 +10038d6a: b114 cbz r4, 10038d72 +10038d6c: 2c01 cmp r4, #1 +10038d6e: d029 beq.n 10038dc4 +10038d70: e041 b.n 10038df6 +10038d72: 4628 mov r0, r5 +10038d74: f009 fa0c bl 10042190 +10038d78: 280c cmp r0, #12 +10038d7a: d001 beq.n 10038d80 +10038d7c: 481f ldr r0, [pc, #124] ; (10038dfc ) +10038d7e: e032 b.n 10038de6 +10038d80: 7828 ldrb r0, [r5, #0] +10038d82: 7869 ldrb r1, [r5, #1] +10038d84: f00a fd6c bl 10043860 <__key_2char2num_veneer> +10038d88: af02 add r7, sp, #8 +10038d8a: 5538 strb r0, [r7, r4] +10038d8c: 3401 adds r4, #1 +10038d8e: 2c06 cmp r4, #6 +10038d90: f105 0502 add.w r5, r5, #2 +10038d94: d1f4 bne.n 10038d80 +10038d96: 2500 movs r5, #0 +10038d98: 9500 str r5, [sp, #0] +10038d9a: 4630 mov r0, r6 +10038d9c: f44f 718d mov.w r1, #282 ; 0x11a +10038da0: 4622 mov r2, r4 +10038da2: 463b mov r3, r7 +10038da4: f7f9 feb2 bl 10032b0c +10038da8: b908 cbnz r0, 10038dae +10038daa: 4815 ldr r0, [pc, #84] ; (10038e00 ) +10038dac: e01b b.n 10038de6 +10038dae: f506 50a0 add.w r0, r6, #5120 ; 0x1400 +10038db2: 4639 mov r1, r7 +10038db4: 4622 mov r2, r4 +10038db6: 3009 adds r0, #9 +10038db8: f009 f9d2 bl 10042160 +10038dbc: 4811 ldr r0, [pc, #68] ; (10038e04 ) +10038dbe: f009 f9a3 bl 10042108 +10038dc2: e018 b.n 10038df6 +10038dc4: 4628 mov r0, r5 +10038dc6: 2100 movs r1, #0 +10038dc8: 2210 movs r2, #16 +10038dca: 4b0f ldr r3, [pc, #60] ; (10038e08 ) +10038dcc: 4798 blx r3 +10038dce: 2500 movs r5, #0 +10038dd0: ab04 add r3, sp, #16 +10038dd2: f803 0d08 strb.w r0, [r3, #-8]! +10038dd6: 21c8 movs r1, #200 ; 0xc8 +10038dd8: 9500 str r5, [sp, #0] +10038dda: 4630 mov r0, r6 +10038ddc: 4622 mov r2, r4 +10038dde: f7f9 fe95 bl 10032b0c +10038de2: b940 cbnz r0, 10038df6 +10038de4: 4809 ldr r0, [pc, #36] ; (10038e0c ) +10038de6: f009 f98f bl 10042108 +10038dea: f04f 30ff mov.w r0, #4294967295 +10038dee: e003 b.n 10038df8 +10038df0: f06f 0063 mvn.w r0, #99 ; 0x63 +10038df4: e000 b.n 10038df8 +10038df6: 2000 movs r0, #0 +10038df8: b005 add sp, #20 +10038dfa: bdf0 pop {r4, r5, r6, r7, pc} +10038dfc: 1004b1a0 .word 0x1004b1a0 +10038e00: 1004b1bc .word 0x1004b1bc +10038e04: 1004b1d7 .word 0x1004b1d7 +10038e08: 0000f965 .word 0x0000f965 +10038e0c: 1004b211 .word 0x1004b211 + +10038e10 : +10038e10: 4608 mov r0, r1 +10038e12: 4611 mov r1, r2 +10038e14: 461a mov r2, r3 +10038e16: f7d6 b8f1 b.w 1000effc + +10038e1a : +10038e1a: b530 push {r4, r5, lr} +10038e1c: 4608 mov r0, r1 +10038e1e: b085 sub sp, #20 +10038e20: 460d mov r5, r1 +10038e22: f009 f9b5 bl 10042190 +10038e26: f5b0 7f80 cmp.w r0, #256 ; 0x100 +10038e2a: d822 bhi.n 10038e72 +10038e2c: f240 1001 movw r0, #257 ; 0x101 +10038e30: f7e3 ff9e bl 1001cd70 +10038e34: 4604 mov r4, r0 +10038e36: b1e0 cbz r0, 10038e72 +10038e38: 4628 mov r0, r5 +10038e3a: f009 f9a9 bl 10042190 +10038e3e: 4629 mov r1, r5 +10038e40: 4602 mov r2, r0 +10038e42: 4620 mov r0, r4 +10038e44: f7e3 ffb2 bl 1001cdac +10038e48: 2100 movs r1, #0 +10038e4a: 2210 movs r2, #16 +10038e4c: 4668 mov r0, sp +10038e4e: f7e3 ffbf bl 1001cdd0 +10038e52: 4628 mov r0, r5 +10038e54: f009 f99c bl 10042190 +10038e58: 4669 mov r1, sp +10038e5a: f8ad 0004 strh.w r0, [sp, #4] +10038e5e: 4622 mov r2, r4 +10038e60: f648 4002 movw r0, #35842 ; 0x8c02 +10038e64: f7d6 f8ca bl 1000effc +10038e68: 4620 mov r0, r4 +10038e6a: f240 1101 movw r1, #257 ; 0x101 +10038e6e: f7e3 ff95 bl 1001cd9c +10038e72: b005 add sp, #20 +10038e74: bd30 pop {r4, r5, pc} + +10038e76 : +10038e76: b51f push {r0, r1, r2, r3, r4, lr} +10038e78: 4604 mov r4, r0 +10038e7a: 2100 movs r1, #0 +10038e7c: 4668 mov r0, sp +10038e7e: 2210 movs r2, #16 +10038e80: f7e3 ffa6 bl 1001cdd0 +10038e84: 6c23 ldr r3, [r4, #64] ; 0x40 +10038e86: f648 3019 movw r0, #35609 ; 0x8b19 +10038e8a: 9300 str r3, [sp, #0] +10038e8c: 6c63 ldr r3, [r4, #68] ; 0x44 +10038e8e: 4669 mov r1, sp +10038e90: 2200 movs r2, #0 +10038e92: f8ad 3004 strh.w r3, [sp, #4] +10038e96: f7d6 f8b1 bl 1000effc +10038e9a: b004 add sp, #16 +10038e9c: bd10 pop {r4, pc} + +10038e9e : +10038e9e: b51f push {r0, r1, r2, r3, r4, lr} +10038ea0: 4604 mov r4, r0 +10038ea2: 2100 movs r1, #0 +10038ea4: 4668 mov r0, sp +10038ea6: 2210 movs r2, #16 +10038ea8: f7e3 ff92 bl 1001cdd0 +10038eac: 2200 movs r2, #0 +10038eae: 6422 str r2, [r4, #64] ; 0x40 +10038eb0: 6462 str r2, [r4, #68] ; 0x44 +10038eb2: f8a4 204a strh.w r2, [r4, #74] ; 0x4a +10038eb6: f648 3019 movw r0, #35609 ; 0x8b19 +10038eba: 4669 mov r1, sp +10038ebc: f8ad 2006 strh.w r2, [sp, #6] +10038ec0: f7d6 f89c bl 1000effc +10038ec4: b004 add sp, #16 +10038ec6: bd10 pop {r4, pc} + +10038ec8 : +10038ec8: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +10038eca: f240 1001 movw r0, #257 ; 0x101 +10038ece: 4616 mov r6, r2 +10038ed0: 461d mov r5, r3 +10038ed2: f7e3 ff4d bl 1001cd70 +10038ed6: 4604 mov r4, r0 +10038ed8: b1d0 cbz r0, 10038f10 +10038eda: 480e ldr r0, [pc, #56] ; (10038f14 ) +10038edc: f009 f958 bl 10042190 +10038ee0: 490c ldr r1, [pc, #48] ; (10038f14 ) +10038ee2: 4602 mov r2, r0 +10038ee4: 4620 mov r0, r4 +10038ee6: f7e3 ff61 bl 1001cdac +10038eea: 4668 mov r0, sp +10038eec: 2100 movs r1, #0 +10038eee: 2210 movs r2, #16 +10038ef0: f7e3 ff6e bl 1001cdd0 +10038ef4: f648 4002 movw r0, #35842 ; 0x8c02 +10038ef8: 4669 mov r1, sp +10038efa: 4622 mov r2, r4 +10038efc: 9600 str r6, [sp, #0] +10038efe: f8ad 5004 strh.w r5, [sp, #4] +10038f02: f7d6 f87b bl 1000effc +10038f06: 4620 mov r0, r4 +10038f08: f240 1101 movw r1, #257 ; 0x101 +10038f0c: f7e3 ff46 bl 1001cd9c +10038f10: b004 add sp, #16 +10038f12: bd70 pop {r4, r5, r6, pc} +10038f14: 1004b22d .word 0x1004b22d + +10038f18 : +10038f18: b530 push {r4, r5, lr} +10038f1a: f240 1001 movw r0, #257 ; 0x101 +10038f1e: b085 sub sp, #20 +10038f20: 460d mov r5, r1 +10038f22: f7e3 ff25 bl 1001cd70 +10038f26: 4604 mov r4, r0 +10038f28: b1e8 cbz r0, 10038f66 +10038f2a: 4810 ldr r0, [pc, #64] ; (10038f6c ) +10038f2c: f009 f930 bl 10042190 +10038f30: 490e ldr r1, [pc, #56] ; (10038f6c ) +10038f32: 4602 mov r2, r0 +10038f34: 4620 mov r0, r4 +10038f36: f7e3 ff39 bl 1001cdac +10038f3a: 4668 mov r0, sp +10038f3c: 2100 movs r1, #0 +10038f3e: 2210 movs r2, #16 +10038f40: f7e3 ff46 bl 1001cdd0 +10038f44: f10d 0002 add.w r0, sp, #2 +10038f48: 4629 mov r1, r5 +10038f4a: 2206 movs r2, #6 +10038f4c: f7e3 ff2e bl 1001cdac +10038f50: f648 4002 movw r0, #35842 ; 0x8c02 +10038f54: 4669 mov r1, sp +10038f56: 4622 mov r2, r4 +10038f58: f7d6 f850 bl 1000effc +10038f5c: 4620 mov r0, r4 +10038f5e: f240 1101 movw r1, #257 ; 0x101 +10038f62: f7e3 ff1b bl 1001cd9c +10038f66: b005 add sp, #20 +10038f68: bd30 pop {r4, r5, pc} +10038f6a: bf00 nop +10038f6c: 1004b237 .word 0x1004b237 + +10038f70 : +10038f70: b51f push {r0, r1, r2, r3, r4, lr} +10038f72: 4604 mov r4, r0 +10038f74: 2100 movs r1, #0 +10038f76: 4668 mov r0, sp +10038f78: 2210 movs r2, #16 +10038f7a: f7e3 ff29 bl 1001cdd0 +10038f7e: 2301 movs r3, #1 +10038f80: f10d 0002 add.w r0, sp, #2 +10038f84: f104 019c add.w r1, r4, #156 ; 0x9c +10038f88: 2206 movs r2, #6 +10038f8a: f88d 3001 strb.w r3, [sp, #1] +10038f8e: f7e3 ff0d bl 1001cdac +10038f92: f648 3015 movw r0, #35605 ; 0x8b15 +10038f96: 4669 mov r1, sp +10038f98: 2200 movs r2, #0 +10038f9a: f7d6 f82f bl 1000effc +10038f9e: b004 add sp, #16 +10038fa0: bd10 pop {r4, pc} + +10038fa2 : +10038fa2: b51f push {r0, r1, r2, r3, r4, lr} +10038fa4: 2100 movs r1, #0 +10038fa6: 4668 mov r0, sp +10038fa8: 2210 movs r2, #16 +10038faa: f7e3 ff11 bl 1001cdd0 +10038fae: 2301 movs r3, #1 +10038fb0: f10d 0002 add.w r0, sp, #2 +10038fb4: 2100 movs r1, #0 +10038fb6: 2206 movs r2, #6 +10038fb8: f88d 3001 strb.w r3, [sp, #1] +10038fbc: f7e3 ff08 bl 1001cdd0 +10038fc0: f648 3015 movw r0, #35605 ; 0x8b15 +10038fc4: 4669 mov r1, sp +10038fc6: 2200 movs r2, #0 +10038fc8: f7d6 f818 bl 1000effc +10038fcc: b005 add sp, #20 +10038fce: f85d fb04 ldr.w pc, [sp], #4 + +10038fd2 : +10038fd2: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +10038fd4: 2300 movs r3, #0 +10038fd6: 4604 mov r4, r0 +10038fd8: 4616 mov r6, r2 +10038fda: 9302 str r3, [sp, #8] +10038fdc: 9303 str r3, [sp, #12] +10038fde: 460d mov r5, r1 +10038fe0: b111 cbz r1, 10038fe8 +10038fe2: 3a04 subs r2, #4 +10038fe4: 2afc cmp r2, #252 ; 0xfc +10038fe6: d909 bls.n 10038ffc +10038fe8: 6923 ldr r3, [r4, #16] +10038fea: 2d00 cmp r5, #0 +10038fec: f423 7380 bic.w r3, r3, #256 ; 0x100 +10038ff0: 6123 str r3, [r4, #16] +10038ff2: bf14 ite ne +10038ff4: f06f 0015 mvnne.w r0, #21 +10038ff8: 2000 moveq r0, #0 +10038ffa: e073 b.n 100390e4 +10038ffc: 9300 str r3, [sp, #0] +10038ffe: 4608 mov r0, r1 +10039000: aa02 add r2, sp, #8 +10039002: 4631 mov r1, r6 +10039004: ab03 add r3, sp, #12 +10039006: f00a fbbb bl 10043780 <__rtw_parse_wpa_ie_veneer> +1003900a: 2801 cmp r0, #1 +1003900c: d10b bne.n 10039026 +1003900e: 2302 movs r3, #2 +10039010: f8c4 3c78 str.w r3, [r4, #3192] ; 0xc78 +10039014: 2304 movs r3, #4 +10039016: f8c4 3fdc str.w r3, [r4, #4060] ; 0xfdc +1003901a: f504 5080 add.w r0, r4, #4096 ; 0x1000 +1003901e: 4629 mov r1, r5 +10039020: 4632 mov r2, r6 +10039022: f7e3 fec3 bl 1001cdac +10039026: 2300 movs r3, #0 +10039028: 9300 str r3, [sp, #0] +1003902a: 4628 mov r0, r5 +1003902c: 4631 mov r1, r6 +1003902e: aa02 add r2, sp, #8 +10039030: ab03 add r3, sp, #12 +10039032: f00a fb3d bl 100436b0 <__rtw_parse_wpa2_ie_veneer> +10039036: 2801 cmp r0, #1 +10039038: d10b bne.n 10039052 +1003903a: 2302 movs r3, #2 +1003903c: f8c4 3c78 str.w r3, [r4, #3192] ; 0xc78 +10039040: 2307 movs r3, #7 +10039042: f8c4 3fdc str.w r3, [r4, #4060] ; 0xfdc +10039046: f504 5080 add.w r0, r4, #4096 ; 0x1000 +1003904a: 4629 mov r1, r5 +1003904c: 4632 mov r2, r6 +1003904e: f7e3 fead bl 1001cdac +10039052: 9a02 ldr r2, [sp, #8] +10039054: 2300 movs r3, #0 +10039056: 3a01 subs r2, #1 +10039058: 2a0f cmp r2, #15 +1003905a: d81e bhi.n 1003909a +1003905c: e8df f002 tbb [pc, r2] +10039060: 181d0c08 .word 0x181d0c08 +10039064: 0e1d1d1d .word 0x0e1d1d1d +10039068: 1d1d1d1d .word 0x1d1d1d1d +1003906c: 131d1d1d .word 0x131d1d1d +10039070: f8c4 3cd4 str.w r3, [r4, #3284] ; 0xcd4 +10039074: 2301 movs r3, #1 +10039076: e00e b.n 10039096 +10039078: 2201 movs r2, #1 +1003907a: e00a b.n 10039092 +1003907c: 2302 movs r3, #2 +1003907e: f8c4 3cd4 str.w r3, [r4, #3284] ; 0xcd4 +10039082: 2304 movs r3, #4 +10039084: e007 b.n 10039096 +10039086: 2304 movs r3, #4 +10039088: f8c4 3cd4 str.w r3, [r4, #3284] ; 0xcd4 +1003908c: 2306 movs r3, #6 +1003908e: e002 b.n 10039096 +10039090: 2205 movs r2, #5 +10039092: f8c4 2cd4 str.w r2, [r4, #3284] ; 0xcd4 +10039096: f8c4 3fe0 str.w r3, [r4, #4064] ; 0xfe0 +1003909a: 9a03 ldr r2, [sp, #12] +1003909c: 2300 movs r3, #0 +1003909e: 3a01 subs r2, #1 +100390a0: 2a0f cmp r2, #15 +100390a2: d81e bhi.n 100390e2 +100390a4: e8df f002 tbb [pc, r2] +100390a8: 181d0c08 .word 0x181d0c08 +100390ac: 0e1d1d1d .word 0x0e1d1d1d +100390b0: 1d1d1d1d .word 0x1d1d1d1d +100390b4: 131d1d1d .word 0x131d1d1d +100390b8: f8c4 3c7c str.w r3, [r4, #3196] ; 0xc7c +100390bc: 2301 movs r3, #1 +100390be: e00e b.n 100390de +100390c0: 2201 movs r2, #1 +100390c2: e00a b.n 100390da +100390c4: 2302 movs r3, #2 +100390c6: f8c4 3c7c str.w r3, [r4, #3196] ; 0xc7c +100390ca: 2304 movs r3, #4 +100390cc: e007 b.n 100390de +100390ce: 2304 movs r3, #4 +100390d0: f8c4 3c7c str.w r3, [r4, #3196] ; 0xc7c +100390d4: 2306 movs r3, #6 +100390d6: e002 b.n 100390de +100390d8: 2205 movs r2, #5 +100390da: f8c4 2c7c str.w r2, [r4, #3196] ; 0xc7c +100390de: f8c4 3fe0 str.w r3, [r4, #4064] ; 0xfe0 +100390e2: 2000 movs r0, #0 +100390e4: b004 add sp, #16 +100390e6: bd70 pop {r4, r5, r6, pc} + +100390e8 : +100390e8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100390ec: b378 cbz r0, 1003914e +100390ee: b371 cbz r1, 1003914e +100390f0: 3101 adds r1, #1 +100390f2: 2300 movs r3, #0 +100390f4: 4293 cmp r3, r2 +100390f6: da2a bge.n 1003914e +100390f8: f811 4c01 ldrb.w r4, [r1, #-1] +100390fc: 2c60 cmp r4, #96 ; 0x60 +100390fe: d804 bhi.n 1003910a +10039100: 2c41 cmp r4, #65 ; 0x41 +10039102: bf34 ite cc +10039104: 2630 movcc r6, #48 ; 0x30 +10039106: 2641 movcs r6, #65 ; 0x41 +10039108: e000 b.n 1003910c +1003910a: 2661 movs r6, #97 ; 0x61 +1003910c: 780d ldrb r5, [r1, #0] +1003910e: 2d60 cmp r5, #96 ; 0x60 +10039110: d804 bhi.n 1003911c +10039112: 2d41 cmp r5, #65 ; 0x41 +10039114: bf34 ite cc +10039116: 2730 movcc r7, #48 ; 0x30 +10039118: 2741 movcs r7, #65 ; 0x41 +1003911a: e000 b.n 1003911e +1003911c: 2761 movs r7, #97 ; 0x61 +1003911e: 2c41 cmp r4, #65 ; 0x41 +10039120: bf34 ite cc +10039122: f04f 0800 movcc.w r8, #0 +10039126: f04f 080a movcs.w r8, #10 +1003912a: 1ba4 subs r4, r4, r6 +1003912c: 2d41 cmp r5, #65 ; 0x41 +1003912e: ebc7 0705 rsb r7, r7, r5 +10039132: eb08 0504 add.w r5, r8, r4 +10039136: bf34 ite cc +10039138: f04f 0c00 movcc.w ip, #0 +1003913c: f04f 0c0a movcs.w ip, #10 +10039140: eb07 1505 add.w r5, r7, r5, lsl #4 +10039144: 4465 add r5, ip +10039146: 54c5 strb r5, [r0, r3] +10039148: 3102 adds r1, #2 +1003914a: 3301 adds r3, #1 +1003914c: e7d2 b.n 100390f4 +1003914e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + ... + +10039154 : +10039154: b570 push {r4, r5, r6, lr} +10039156: 461d mov r5, r3 +10039158: 6903 ldr r3, [r0, #16] +1003915a: 4616 mov r6, r2 +1003915c: 681c ldr r4, [r3, #0] +1003915e: f504 5495 add.w r4, r4, #4768 ; 0x12a0 +10039162: 3414 adds r4, #20 +10039164: 4620 mov r0, r4 +10039166: f009 f813 bl 10042190 +1003916a: b282 uxth r2, r0 +1003916c: 1e53 subs r3, r2, #1 +1003916e: 2b3e cmp r3, #62 ; 0x3e +10039170: 80b2 strh r2, [r6, #4] +10039172: d802 bhi.n 1003917a +10039174: 4628 mov r0, r5 +10039176: 4621 mov r1, r4 +10039178: e00c b.n 10039194 +1003917a: 4808 ldr r0, [pc, #32] ; (1003919c ) +1003917c: f009 f808 bl 10042190 +10039180: 2840 cmp r0, #64 ; 0x40 +10039182: d109 bne.n 10039198 +10039184: 4805 ldr r0, [pc, #20] ; (1003919c ) +10039186: f009 f803 bl 10042190 +1003918a: 4904 ldr r1, [pc, #16] ; (1003919c ) +1003918c: 4602 mov r2, r0 +1003918e: 80b0 strh r0, [r6, #4] +10039190: b292 uxth r2, r2 +10039192: 4628 mov r0, r5 +10039194: f7e3 fe0a bl 1001cdac +10039198: 2000 movs r0, #0 +1003919a: bd70 pop {r4, r5, r6, pc} +1003919c: 100531be .word 0x100531be + +100391a0 : +100391a0: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +100391a4: 461d mov r5, r3 +100391a6: 6903 ldr r3, [r0, #16] +100391a8: 4680 mov r8, r0 +100391aa: f44f 7040 mov.w r0, #768 ; 0x300 +100391ae: 4617 mov r7, r2 +100391b0: 681c ldr r4, [r3, #0] +100391b2: f7e3 fdc7 bl 1001cd44 +100391b6: 2100 movs r1, #0 +100391b8: 4606 mov r6, r0 +100391ba: f44f 7240 mov.w r2, #768 ; 0x300 +100391be: f7e3 fe07 bl 1001cdd0 +100391c2: 88ba ldrh r2, [r7, #4] +100391c4: 4620 mov r0, r4 +100391c6: 4629 mov r1, r5 +100391c8: 4633 mov r3, r6 +100391ca: f7e9 f9c3 bl 10022554 +100391ce: f5b0 7f40 cmp.w r0, #768 ; 0x300 +100391d2: 4607 mov r7, r0 +100391d4: dc49 bgt.n 1003926a +100391d6: f8d4 3fdc ldr.w r3, [r4, #4060] ; 0xfdc +100391da: 2b04 cmp r3, #4 +100391dc: d001 beq.n 100391e2 +100391de: 2b07 cmp r3, #7 +100391e0: d112 bne.n 10039208 +100391e2: 2130 movs r1, #48 ; 0x30 +100391e4: aa01 add r2, sp, #4 +100391e6: 463b mov r3, r7 +100391e8: 4630 mov r0, r6 +100391ea: f00a fb81 bl 100438f0 <__rtw_get_ie_veneer> +100391ee: f8bd 2004 ldrh.w r2, [sp, #4] +100391f2: 4601 mov r1, r0 +100391f4: 4620 mov r0, r4 +100391f6: f7f2 f90f bl 1002b418 +100391fa: f504 5195 add.w r1, r4, #4768 ; 0x12a0 +100391fe: 4620 mov r0, r4 +10039200: 3114 adds r1, #20 +10039202: 462a mov r2, r5 +10039204: f7f2 f8ae bl 1002b364 +10039208: f107 050e add.w r5, r7, #14 +1003920c: 4628 mov r0, r5 +1003920e: f7e3 fd99 bl 1001cd44 +10039212: 4604 mov r4, r0 +10039214: 2100 movs r1, #0 +10039216: 462a mov r2, r5 +10039218: f104 090e add.w r9, r4, #14 +1003921c: f7e3 fdd8 bl 1001cdd0 +10039220: 4648 mov r0, r9 +10039222: 4631 mov r1, r6 +10039224: 463a mov r2, r7 +10039226: f7e3 fdc1 bl 1001cdac +1003922a: f8d8 3010 ldr.w r3, [r8, #16] +1003922e: f8d3 8000 ldr.w r8, [r3] +10039232: f8d8 3010 ldr.w r3, [r8, #16] +10039236: f013 0310 ands.w r3, r3, #16 +1003923a: d014 beq.n 10039266 +1003923c: f508 6047 add.w r0, r8, #3184 ; 0xc70 +10039240: f104 010c add.w r1, r4, #12 +10039244: 2202 movs r2, #2 +10039246: f7e3 fdb1 bl 1001cdac +1003924a: f8b8 3c70 ldrh.w r3, [r8, #3184] ; 0xc70 +1003924e: 3b01 subs r3, #1 +10039250: b29b uxth r3, r3 +10039252: 2b04 cmp r3, #4 +10039254: d902 bls.n 1003925c +10039256: 2305 movs r3, #5 +10039258: f8a8 3c70 strh.w r3, [r8, #3184] ; 0xc70 +1003925c: 4640 mov r0, r8 +1003925e: 4649 mov r1, r9 +10039260: 463a mov r2, r7 +10039262: f7e8 fab5 bl 100217d0 +10039266: 2700 movs r7, #0 +10039268: e003 b.n 10039272 +1003926a: 2500 movs r5, #0 +1003926c: 462c mov r4, r5 +1003926e: f04f 37ff mov.w r7, #4294967295 +10039272: b126 cbz r6, 1003927e +10039274: 4630 mov r0, r6 +10039276: f44f 7140 mov.w r1, #768 ; 0x300 +1003927a: f7e3 fd8f bl 1001cd9c +1003927e: b11c cbz r4, 10039288 +10039280: 4620 mov r0, r4 +10039282: 4629 mov r1, r5 +10039284: f7e3 fd8a bl 1001cd9c +10039288: 4638 mov r0, r7 +1003928a: b003 add sp, #12 +1003928c: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +10039290 : +10039290: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10039294: 4d28 ldr r5, [pc, #160] ; (10039338 ) +10039296: 4607 mov r7, r0 +10039298: f8d5 0084 ldr.w r0, [r5, #132] ; 0x84 +1003929c: f008 ff34 bl 10042108 +100392a0: 2601 movs r6, #1 +100392a2: 2400 movs r4, #0 +100392a4: f006 0803 and.w r8, r6, #3 +100392a8: f1b8 0f01 cmp.w r8, #1 +100392ac: d104 bne.n 100392b8 +100392ae: f8d5 0094 ldr.w r0, [r5, #148] ; 0x94 +100392b2: 4621 mov r1, r4 +100392b4: f008 ff28 bl 10042108 +100392b8: 4621 mov r1, r4 +100392ba: 4638 mov r0, r7 +100392bc: f8d5 9098 ldr.w r9, [r5, #152] ; 0x98 +100392c0: f003 f9d4 bl 1003c66c +100392c4: 4601 mov r1, r0 +100392c6: 4648 mov r0, r9 +100392c8: f008 ff1e bl 10042108 +100392cc: f1b8 0f00 cmp.w r8, #0 +100392d0: d104 bne.n 100392dc +100392d2: 4b19 ldr r3, [pc, #100] ; (10039338 ) +100392d4: f8d3 009c ldr.w r0, [r3, #156] ; 0x9c +100392d8: f008 ff16 bl 10042108 +100392dc: 3404 adds r4, #4 +100392de: f5b4 7f40 cmp.w r4, #768 ; 0x300 +100392e2: f106 0601 add.w r6, r6, #1 +100392e6: d1dd bne.n 100392a4 +100392e8: 26c1 movs r6, #193 ; 0xc1 +100392ea: f44f 6480 mov.w r4, #1024 ; 0x400 +100392ee: f006 0803 and.w r8, r6, #3 +100392f2: f1b8 0f01 cmp.w r8, #1 +100392f6: d104 bne.n 10039302 +100392f8: f8d5 0094 ldr.w r0, [r5, #148] ; 0x94 +100392fc: 4621 mov r1, r4 +100392fe: f008 ff03 bl 10042108 +10039302: 4621 mov r1, r4 +10039304: 4638 mov r0, r7 +10039306: f8d5 9098 ldr.w r9, [r5, #152] ; 0x98 +1003930a: f003 f9af bl 1003c66c +1003930e: 4601 mov r1, r0 +10039310: 4648 mov r0, r9 +10039312: f008 fef9 bl 10042108 +10039316: f1b8 0f00 cmp.w r8, #0 +1003931a: d104 bne.n 10039326 +1003931c: 4b06 ldr r3, [pc, #24] ; (10039338 ) +1003931e: f8d3 009c ldr.w r0, [r3, #156] ; 0x9c +10039322: f008 fef1 bl 10042108 +10039326: 3404 adds r4, #4 +10039328: f5b4 6f00 cmp.w r4, #2048 ; 0x800 +1003932c: f106 0601 add.w r6, r6, #1 +10039330: d1dd bne.n 100392ee +10039332: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10039336: bf00 nop +10039338: 1004da10 .word 0x1004da10 + +1003933c : +1003933c: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +10039340: 4e14 ldr r6, [pc, #80] ; (10039394 ) +10039342: 4680 mov r8, r0 +10039344: f8d6 0088 ldr.w r0, [r6, #136] ; 0x88 +10039348: f008 fede bl 10042108 +1003934c: 2501 movs r5, #1 +1003934e: f44f 6400 mov.w r4, #2048 ; 0x800 +10039352: f005 0703 and.w r7, r5, #3 +10039356: 2f01 cmp r7, #1 +10039358: d104 bne.n 10039364 +1003935a: f8d6 0094 ldr.w r0, [r6, #148] ; 0x94 +1003935e: 4621 mov r1, r4 +10039360: f008 fed2 bl 10042108 +10039364: 4621 mov r1, r4 +10039366: 4640 mov r0, r8 +10039368: f8d6 9098 ldr.w r9, [r6, #152] ; 0x98 +1003936c: f003 f97e bl 1003c66c +10039370: 4601 mov r1, r0 +10039372: 4648 mov r0, r9 +10039374: f008 fec8 bl 10042108 +10039378: b927 cbnz r7, 10039384 +1003937a: 4b06 ldr r3, [pc, #24] ; (10039394 ) +1003937c: f8d3 009c ldr.w r0, [r3, #156] ; 0x9c +10039380: f008 fec2 bl 10042108 +10039384: 3404 adds r4, #4 +10039386: f5b4 5f80 cmp.w r4, #4096 ; 0x1000 +1003938a: f105 0501 add.w r5, r5, #1 +1003938e: d1e0 bne.n 10039352 +10039390: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} +10039394: 1004da10 .word 0x1004da10 + +10039398 : +10039398: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1003939c: 4d1b ldr r5, [pc, #108] ; (1003940c ) +1003939e: 2116 movs r1, #22 +100393a0: f10d 0207 add.w r2, sp, #7 +100393a4: 4680 mov r8, r0 +100393a6: f7fe fac7 bl 10037938 +100393aa: f8d5 008c ldr.w r0, [r5, #140] ; 0x8c +100393ae: f008 feab bl 10042108 +100393b2: f8d5 008c ldr.w r0, [r5, #140] ; 0x8c +100393b6: 2100 movs r1, #0 +100393b8: f008 fea6 bl 10042108 +100393bc: 2400 movs r4, #0 +100393be: 4640 mov r0, r8 +100393c0: 2100 movs r1, #0 +100393c2: 4622 mov r2, r4 +100393c4: f04f 33ff mov.w r3, #4294967295 +100393c8: f7fe fb9d bl 10037b06 +100393cc: 1c66 adds r6, r4, #1 +100393ce: f006 0703 and.w r7, r6, #3 +100393d2: 2f01 cmp r7, #1 +100393d4: 4681 mov r9, r0 +100393d6: d012 beq.n 100393fe +100393d8: f8d5 0098 ldr.w r0, [r5, #152] ; 0x98 +100393dc: 4649 mov r1, r9 +100393de: f008 fe93 bl 10042108 +100393e2: b137 cbz r7, 100393f2 +100393e4: f5b6 7f80 cmp.w r6, #256 ; 0x100 +100393e8: 4634 mov r4, r6 +100393ea: d1e8 bne.n 100393be +100393ec: b003 add sp, #12 +100393ee: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +100393f2: 4b06 ldr r3, [pc, #24] ; (1003940c ) +100393f4: f8d3 009c ldr.w r0, [r3, #156] ; 0x9c +100393f8: f008 fe86 bl 10042108 +100393fc: e7f2 b.n 100393e4 +100393fe: f8d5 0094 ldr.w r0, [r5, #148] ; 0x94 +10039402: 4621 mov r1, r4 +10039404: f008 fe80 bl 10042108 +10039408: e7e6 b.n 100393d8 +1003940a: bf00 nop +1003940c: 1004da10 .word 0x1004da10 + +10039410 : +10039410: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10039414: 6903 ldr r3, [r0, #16] +10039416: b086 sub sp, #24 +10039418: 681e ldr r6, [r3, #0] +1003941a: 6810 ldr r0, [r2, #0] +1003941c: 49aa ldr r1, [pc, #680] ; (100396c8 ) +1003941e: ab03 add r3, sp, #12 +10039420: aa04 add r2, sp, #16 +10039422: f009 f85d bl 100424e0 +10039426: 9c04 ldr r4, [sp, #16] +10039428: 0e23 lsrs r3, r4, #24 +1003942a: 3b70 subs r3, #112 ; 0x70 +1003942c: 0c21 lsrs r1, r4, #16 +1003942e: 2b0f cmp r3, #15 +10039430: f200 831b bhi.w 10039a6a +10039434: e8df f013 tbh [pc, r3, lsl #1] +10039438: 00270010 .word 0x00270010 +1003943c: 00650060 .word 0x00650060 +10039440: 007d0077 .word 0x007d0077 +10039444: 00a20099 .word 0x00a20099 +10039448: 00c600b4 .word 0x00c600b4 +1003944c: 03190319 .word 0x03190319 +10039450: 03190319 .word 0x03190319 +10039454: 00d60319 .word 0x00d60319 +10039458: b2c9 uxtb r1, r1 +1003945a: 2902 cmp r1, #2 +1003945c: d009 beq.n 10039472 +1003945e: 2904 cmp r1, #4 +10039460: d00c beq.n 1003947c +10039462: 2901 cmp r1, #1 +10039464: f040 8301 bne.w 10039a6a +10039468: 4b98 ldr r3, [pc, #608] ; (100396cc ) +1003946a: b2a4 uxth r4, r4 +1003946c: f8d3 50a0 ldr.w r5, [r3, #160] ; 0xa0 +10039470: e01b b.n 100394aa +10039472: 4b96 ldr r3, [pc, #600] ; (100396cc ) +10039474: b2a4 uxth r4, r4 +10039476: f8d3 50a4 ldr.w r5, [r3, #164] ; 0xa4 +1003947a: e025 b.n 100394c8 +1003947c: 4b93 ldr r3, [pc, #588] ; (100396cc ) +1003947e: b2a4 uxth r4, r4 +10039480: f8d3 50a8 ldr.w r5, [r3, #168] ; 0xa8 +10039484: e02e b.n 100394e4 +10039486: b2c9 uxtb r1, r1 +10039488: 2902 cmp r1, #2 +1003948a: d013 beq.n 100394b4 +1003948c: 2904 cmp r1, #4 +1003948e: d020 beq.n 100394d2 +10039490: 2901 cmp r1, #1 +10039492: f040 82ea bne.w 10039a6a +10039496: b2a4 uxth r4, r4 +10039498: 4630 mov r0, r6 +1003949a: 4621 mov r1, r4 +1003949c: f89d 200c ldrb.w r2, [sp, #12] +100394a0: f003 f8eb bl 1003c67a +100394a4: 4b89 ldr r3, [pc, #548] ; (100396cc ) +100394a6: f8d3 50ac ldr.w r5, [r3, #172] ; 0xac +100394aa: 4630 mov r0, r6 +100394ac: 4621 mov r1, r4 +100394ae: f003 f8cf bl 1003c650 +100394b2: e01b b.n 100394ec +100394b4: b2a4 uxth r4, r4 +100394b6: 4630 mov r0, r6 +100394b8: 4621 mov r1, r4 +100394ba: f8bd 200c ldrh.w r2, [sp, #12] +100394be: f003 f8e3 bl 1003c688 +100394c2: 4b82 ldr r3, [pc, #520] ; (100396cc ) +100394c4: f8d3 50b0 ldr.w r5, [r3, #176] ; 0xb0 +100394c8: 4630 mov r0, r6 +100394ca: 4621 mov r1, r4 +100394cc: f003 f8c7 bl 1003c65e +100394d0: e00c b.n 100394ec +100394d2: b2a4 uxth r4, r4 +100394d4: 4630 mov r0, r6 +100394d6: 4621 mov r1, r4 +100394d8: 9a03 ldr r2, [sp, #12] +100394da: f003 f8dc bl 1003c696 +100394de: 4b7b ldr r3, [pc, #492] ; (100396cc ) +100394e0: f8d3 50b4 ldr.w r5, [r3, #180] ; 0xb4 +100394e4: 4630 mov r0, r6 +100394e6: 4621 mov r1, r4 +100394e8: f003 f8c0 bl 1003c66c +100394ec: 4602 mov r2, r0 +100394ee: 4621 mov r1, r4 +100394f0: 4628 mov r0, r5 +100394f2: f008 fe09 bl 10042108 +100394f6: e2b8 b.n 10039a6a +100394f8: 4b74 ldr r3, [pc, #464] ; (100396cc ) +100394fa: b2a4 uxth r4, r4 +100394fc: f8d3 50b8 ldr.w r5, [r3, #184] ; 0xb8 +10039500: e00a b.n 10039518 +10039502: b2a4 uxth r4, r4 +10039504: 9b03 ldr r3, [sp, #12] +10039506: 4630 mov r0, r6 +10039508: 4621 mov r1, r4 +1003950a: f04f 32ff mov.w r2, #4294967295 +1003950e: f7fe fae4 bl 10037ada +10039512: 4b6e ldr r3, [pc, #440] ; (100396cc ) +10039514: f8d3 50bc ldr.w r5, [r3, #188] ; 0xbc +10039518: 4630 mov r0, r6 +1003951a: 4621 mov r1, r4 +1003951c: f04f 32ff mov.w r2, #4294967295 +10039520: f7fe fac1 bl 10037aa6 +10039524: e7e2 b.n 100394ec +10039526: 4b69 ldr r3, [pc, #420] ; (100396cc ) +10039528: b2cd uxtb r5, r1 +1003952a: f8d3 70c0 ldr.w r7, [r3, #192] ; 0xc0 +1003952e: b2a4 uxth r4, r4 +10039530: e00d b.n 1003954e +10039532: 9b03 ldr r3, [sp, #12] +10039534: b2cd uxtb r5, r1 +10039536: b2a4 uxth r4, r4 +10039538: 9300 str r3, [sp, #0] +1003953a: 4630 mov r0, r6 +1003953c: f04f 33ff mov.w r3, #4294967295 +10039540: 4629 mov r1, r5 +10039542: 4622 mov r2, r4 +10039544: f7fe fae8 bl 10037b18 +10039548: 4b60 ldr r3, [pc, #384] ; (100396cc ) +1003954a: f8d3 70c4 ldr.w r7, [r3, #196] ; 0xc4 +1003954e: 4629 mov r1, r5 +10039550: 4622 mov r2, r4 +10039552: 4630 mov r0, r6 +10039554: f04f 33ff mov.w r3, #4294967295 +10039558: f7fe fad5 bl 10037b06 +1003955c: 4629 mov r1, r5 +1003955e: 4603 mov r3, r0 +10039560: 4622 mov r2, r4 +10039562: 4638 mov r0, r7 +10039564: f008 fdd0 bl 10042108 +10039568: e27f b.n 10039a6a +1003956a: f024 417f bic.w r1, r4, #4278190080 ; 0xff000000 +1003956e: f101 4380 add.w r3, r1, #1073741824 ; 0x40000000 +10039572: 681a ldr r2, [r3, #0] +10039574: 4b55 ldr r3, [pc, #340] ; (100396cc ) +10039576: f8d3 00c8 ldr.w r0, [r3, #200] ; 0xc8 +1003957a: e00e b.n 1003959a +1003957c: 9b03 ldr r3, [sp, #12] +1003957e: f024 447f bic.w r4, r4, #4278190080 ; 0xff000000 +10039582: f104 4480 add.w r4, r4, #1073741824 ; 0x40000000 +10039586: 6023 str r3, [r4, #0] +10039588: 9904 ldr r1, [sp, #16] +1003958a: f021 417f bic.w r1, r1, #4278190080 ; 0xff000000 +1003958e: f101 4380 add.w r3, r1, #1073741824 ; 0x40000000 +10039592: 681a ldr r2, [r3, #0] +10039594: 4b4d ldr r3, [pc, #308] ; (100396cc ) +10039596: f8d3 00cc ldr.w r0, [r3, #204] ; 0xcc +1003959a: f041 4180 orr.w r1, r1, #1073741824 ; 0x40000000 +1003959e: e7a8 b.n 100394f2 +100395a0: f011 01ff ands.w r1, r1, #255 ; 0xff +100395a4: d00b beq.n 100395be +100395a6: 2901 cmp r1, #1 +100395a8: f040 825f bne.w 10039a6a +100395ac: 9b03 ldr r3, [sp, #12] +100395ae: f886 1b72 strb.w r1, [r6, #2930] ; 0xb72 +100395b2: 2b64 cmp r3, #100 ; 0x64 +100395b4: bf28 it cs +100395b6: 2364 movcs r3, #100 ; 0x64 +100395b8: f886 3b73 strb.w r3, [r6, #2931] ; 0xb73 +100395bc: e255 b.n 10039a6a +100395be: f886 1b72 strb.w r1, [r6, #2930] ; 0xb72 +100395c2: e252 b.n 10039a6a +100395c4: 9a03 ldr r2, [sp, #12] +100395c6: f011 0fff tst.w r1, #255 ; 0xff +100395ca: f002 020f and.w r2, r2, #15 +100395ce: bf18 it ne +100395d0: f042 0210 orrne.w r2, r2, #16 +100395d4: 4630 mov r0, r6 +100395d6: f240 61d9 movw r1, #1753 ; 0x6d9 +100395da: ea42 1242 orr.w r2, r2, r2, lsl #5 +100395de: f003 f853 bl 1003c688 +100395e2: e242 b.n 10039a6a +100395e4: b2c9 uxtb r1, r1 +100395e6: 2922 cmp r1, #34 ; 0x22 +100395e8: f000 80aa beq.w 10039740 +100395ec: dc16 bgt.n 1003961c +100395ee: 2911 cmp r1, #17 +100395f0: d066 beq.n 100396c0 +100395f2: dc0d bgt.n 10039610 +100395f4: 2906 cmp r1, #6 +100395f6: d039 beq.n 1003966c +100395f8: 2909 cmp r1, #9 +100395fa: d045 beq.n 10039688 +100395fc: 2905 cmp r1, #5 +100395fe: f040 8234 bne.w 10039a6a +10039602: f506 603d add.w r0, r6, #3024 ; 0xbd0 +10039606: f106 019c add.w r1, r6, #156 ; 0x9c +1003960a: f7f4 f9d3 bl 1002d9b4 +1003960e: e22c b.n 10039a6a +10039610: 2913 cmp r1, #19 +10039612: d06a beq.n 100396ea +10039614: db5c blt.n 100396d0 +10039616: 2917 cmp r1, #23 +10039618: d074 beq.n 10039704 +1003961a: e226 b.n 10039a6a +1003961c: 29cc cmp r1, #204 ; 0xcc +1003961e: f000 80bc beq.w 1003979a +10039622: dc19 bgt.n 10039658 +10039624: 29c0 cmp r1, #192 ; 0xc0 +10039626: f000 809d beq.w 10039764 +1003962a: 29c1 cmp r1, #193 ; 0xc1 +1003962c: f000 80a4 beq.w 10039778 +10039630: 29aa cmp r1, #170 ; 0xaa +10039632: f040 821a bne.w 10039a6a +10039636: 9b03 ldr r3, [sp, #12] +10039638: f003 037f and.w r3, r3, #127 ; 0x7f +1003963c: 2b3f cmp r3, #63 ; 0x3f +1003963e: bf84 itt hi +10039640: 23ff movhi r3, #255 ; 0xff +10039642: 9303 strhi r3, [sp, #12] +10039644: 4b21 ldr r3, [pc, #132] ; (100396cc ) +10039646: 9903 ldr r1, [sp, #12] +10039648: f8d3 00dc ldr.w r0, [r3, #220] ; 0xdc +1003964c: f008 fd5c bl 10042108 +10039650: 9b03 ldr r3, [sp, #12] +10039652: f241 72c4 movw r2, #6084 ; 0x17c4 +10039656: e083 b.n 10039760 +10039658: 29ee cmp r1, #238 ; 0xee +1003965a: f000 8199 beq.w 10039990 +1003965e: 29fd cmp r1, #253 ; 0xfd +10039660: f000 81ed beq.w 10039a3e +10039664: 29dd cmp r1, #221 ; 0xdd +10039666: f040 8200 bne.w 10039a6a +1003966a: e0c4 b.n 100397f6 +1003966c: 4630 mov r0, r6 +1003966e: aa05 add r2, sp, #20 +10039670: 2117 movs r1, #23 +10039672: f7fe f961 bl 10037938 +10039676: f004 040f and.w r4, r4, #15 +1003967a: 4630 mov r0, r6 +1003967c: 2117 movs r1, #23 +1003967e: aa05 add r2, sp, #20 +10039680: 9405 str r4, [sp, #20] +10039682: f7fe f952 bl 1003792a +10039686: e1f0 b.n 10039a6a +10039688: f606 37e8 addw r7, r6, #3048 ; 0xbe8 +1003968c: 4638 mov r0, r7 +1003968e: a905 add r1, sp, #20 +10039690: f7e3 fc32 bl 1001cef8 +10039694: 2400 movs r4, #0 +10039696: 1933 adds r3, r6, r4 +10039698: f606 38ec addw r8, r6, #3052 ; 0xbec +1003969c: f8d3 5bec ldr.w r5, [r3, #3052] ; 0xbec +100396a0: 44a0 add r8, r4 +100396a2: 4640 mov r0, r8 +100396a4: 4629 mov r1, r5 +100396a6: f7e3 fc5b bl 1001cf60 +100396aa: b908 cbnz r0, 100396b0 +100396ac: 682d ldr r5, [r5, #0] +100396ae: e7f8 b.n 100396a2 +100396b0: 3408 adds r4, #8 +100396b2: 2c28 cmp r4, #40 ; 0x28 +100396b4: d1ef bne.n 10039696 +100396b6: 4638 mov r0, r7 +100396b8: a905 add r1, sp, #20 +100396ba: f7e3 fc25 bl 1001cf08 +100396be: e1d4 b.n 10039a6a +100396c0: 9b03 ldr r3, [sp, #12] +100396c2: f241 72a6 movw r2, #6054 ; 0x17a6 +100396c6: e04b b.n 10039760 +100396c8: 1004b19a .word 0x1004b19a +100396cc: 1004da10 .word 0x1004da10 +100396d0: f506 5697 add.w r6, r6, #4832 ; 0x12e0 +100396d4: 3618 adds r6, #24 +100396d6: 2e00 cmp r6, #0 +100396d8: f000 81c7 beq.w 10039a6a +100396dc: 9b03 ldr r3, [sp, #12] +100396de: 2b03 cmp r3, #3 +100396e0: f200 81c3 bhi.w 10039a6a +100396e4: f886 3046 strb.w r3, [r6, #70] ; 0x46 +100396e8: e1bf b.n 10039a6a +100396ea: f506 5697 add.w r6, r6, #4832 ; 0x12e0 +100396ee: 3618 adds r6, #24 +100396f0: 2e00 cmp r6, #0 +100396f2: f000 81ba beq.w 10039a6a +100396f6: 9b03 ldr r3, [sp, #12] +100396f8: 2b02 cmp r3, #2 +100396fa: f200 81b6 bhi.w 10039a6a +100396fe: f886 3045 strb.w r3, [r6, #69] ; 0x45 +10039702: e1b2 b.n 10039a6a +10039704: 4cba ldr r4, [pc, #744] ; (100399f0 ) +10039706: 9903 ldr r1, [sp, #12] +10039708: f8d4 00d0 ldr.w r0, [r4, #208] ; 0xd0 +1003970c: f008 fcfc bl 10042108 +10039710: f206 40fc addw r0, r6, #1276 ; 0x4fc +10039714: 9903 ldr r1, [sp, #12] +10039716: 2200 movs r2, #0 +10039718: f7eb f8fe bl 10024918 +1003971c: 2801 cmp r0, #1 +1003971e: d10b bne.n 10039738 +10039720: f89d 100c ldrb.w r1, [sp, #12] +10039724: 4630 mov r0, r6 +10039726: f886 14f6 strb.w r1, [r6, #1270] ; 0x4f6 +1003972a: f896 24f8 ldrb.w r2, [r6, #1272] ; 0x4f8 +1003972e: f896 34f7 ldrb.w r3, [r6, #1271] ; 0x4f7 +10039732: f7f4 fb6d bl 1002de10 +10039736: e198 b.n 10039a6a +10039738: f8d4 00d4 ldr.w r0, [r4, #212] ; 0xd4 +1003973c: 9903 ldr r1, [sp, #12] +1003973e: e17b b.n 10039a38 +10039740: 4bab ldr r3, [pc, #684] ; (100399f0 ) +10039742: 4aac ldr r2, [pc, #688] ; (100399f4 ) +10039744: f8d3 00d8 ldr.w r0, [r3, #216] ; 0xd8 +10039748: 49ab ldr r1, [pc, #684] ; (100399f8 ) +1003974a: 9b03 ldr r3, [sp, #12] +1003974c: 2b00 cmp r3, #0 +1003974e: bf18 it ne +10039750: 4611 movne r1, r2 +10039752: f008 fcd9 bl 10042108 +10039756: 4630 mov r0, r6 +10039758: 9903 ldr r1, [sp, #12] +1003975a: f7fd fb69 bl 10036e30 +1003975e: e184 b.n 10039a6a +10039760: 54b3 strb r3, [r6, r2] +10039762: e182 b.n 10039a6a +10039764: 4630 mov r0, r6 +10039766: 2300 movs r3, #0 +10039768: 2101 movs r1, #1 +1003976a: aa05 add r2, sp, #20 +1003976c: f7fe f904 bl 10037978 +10039770: 4b9f ldr r3, [pc, #636] ; (100399f0 ) +10039772: f8d3 00e0 ldr.w r0, [r3, #224] ; 0xe0 +10039776: e00e b.n 10039796 +10039778: 4630 mov r0, r6 +1003977a: 2101 movs r1, #1 +1003977c: aa03 add r2, sp, #12 +1003977e: 2300 movs r3, #0 +10039780: f7fe f8f3 bl 1003796a +10039784: 4630 mov r0, r6 +10039786: 2300 movs r3, #0 +10039788: 2101 movs r1, #1 +1003978a: aa05 add r2, sp, #20 +1003978c: f7fe f8f4 bl 10037978 +10039790: 4b97 ldr r3, [pc, #604] ; (100399f0 ) +10039792: f8d3 00e4 ldr.w r0, [r3, #228] ; 0xe4 +10039796: 9905 ldr r1, [sp, #20] +10039798: e14e b.n 10039a38 +1003979a: f8dd 900c ldr.w r9, [sp, #12] +1003979e: f1b9 0f00 cmp.w r9, #0 +100397a2: f040 8162 bne.w 10039a6a +100397a6: 4f95 ldr r7, [pc, #596] ; (100399fc ) +100397a8: f241 6318 movw r3, #5656 ; 0x1618 +100397ac: f856 8003 ldr.w r8, [r6, r3] +100397b0: f04f 4280 mov.w r2, #1073741824 ; 0x40000000 +100397b4: 2300 movs r3, #0 +100397b6: e9d7 4502 ldrd r4, r5, [r7, #8] +100397ba: 4322 orrs r2, r4 +100397bc: 432b orrs r3, r5 +100397be: e9c7 2302 strd r2, r3, [r7, #8] +100397c2: 4b8b ldr r3, [pc, #556] ; (100399f0 ) +100397c4: f241 7ac4 movw sl, #6084 ; 0x17c4 +100397c8: f8d3 00e8 ldr.w r0, [r3, #232] ; 0xe8 +100397cc: f816 100a ldrb.w r1, [r6, sl] +100397d0: f008 fc9a bl 10042108 +100397d4: f816 000a ldrb.w r0, [r6, sl] +100397d8: f7fd f95c bl 10036a94 +100397dc: f898 3034 ldrb.w r3, [r8, #52] ; 0x34 +100397e0: b2c2 uxtb r2, r0 +100397e2: 9300 str r3, [sp, #0] +100397e4: 4630 mov r0, r6 +100397e6: 4649 mov r1, r9 +100397e8: f8d8 302c ldr.w r3, [r8, #44] ; 0x2c +100397ec: f7fe f826 bl 1003783c +100397f0: e9c7 4502 strd r4, r5, [r7, #8] +100397f4: e139 b.n 10039a6a +100397f6: 9b03 ldr r3, [sp, #12] +100397f8: b91b cbnz r3, 10039802 +100397fa: 4630 mov r0, r6 +100397fc: f7ff fd48 bl 10039290 +10039800: e133 b.n 10039a6a +10039802: 2b01 cmp r3, #1 +10039804: d103 bne.n 1003980e +10039806: 4630 mov r0, r6 +10039808: f7ff fd98 bl 1003933c +1003980c: e12d b.n 10039a6a +1003980e: 2b02 cmp r3, #2 +10039810: d103 bne.n 1003981a +10039812: 4630 mov r0, r6 +10039814: f7ff fdc0 bl 10039398 +10039818: e127 b.n 10039a6a +1003981a: 2b03 cmp r3, #3 +1003981c: d160 bne.n 100398e0 +1003981e: 4c74 ldr r4, [pc, #464] ; (100399f0 ) +10039820: f241 6318 movw r3, #5656 ; 0x1618 +10039824: f8d4 00ec ldr.w r0, [r4, #236] ; 0xec +10039828: 58f5 ldr r5, [r6, r3] +1003982a: f008 fc6d bl 10042108 +1003982e: f44f 427f mov.w r2, #65280 ; 0xff00 +10039832: f640 6108 movw r1, #3592 ; 0xe08 +10039836: 4630 mov r0, r6 +10039838: f8d4 70f0 ldr.w r7, [r4, #240] ; 0xf0 +1003983c: f7fe f933 bl 10037aa6 +10039840: 4601 mov r1, r0 +10039842: 4638 mov r0, r7 +10039844: f008 fc60 bl 10042108 +10039848: f06f 02ff mvn.w r2, #255 ; 0xff +1003984c: f640 016c movw r1, #2156 ; 0x86c +10039850: 4630 mov r0, r6 +10039852: f8d4 70f4 ldr.w r7, [r4, #244] ; 0xf4 +10039856: f7fe f926 bl 10037aa6 +1003985a: 4601 mov r1, r0 +1003985c: 4638 mov r0, r7 +1003985e: f008 fc53 bl 10042108 +10039862: f04f 32ff mov.w r2, #4294967295 +10039866: f44f 6160 mov.w r1, #3584 ; 0xe00 +1003986a: 4630 mov r0, r6 +1003986c: f8d4 70f8 ldr.w r7, [r4, #248] ; 0xf8 +10039870: f7fe f919 bl 10037aa6 +10039874: 4601 mov r1, r0 +10039876: 4638 mov r0, r7 +10039878: f008 fc46 bl 10042108 +1003987c: f04f 32ff mov.w r2, #4294967295 +10039880: f640 6104 movw r1, #3588 ; 0xe04 +10039884: 4630 mov r0, r6 +10039886: f8d4 70fc ldr.w r7, [r4, #252] ; 0xfc +1003988a: f7fe f90c bl 10037aa6 +1003988e: 4601 mov r1, r0 +10039890: 4638 mov r0, r7 +10039892: f008 fc39 bl 10042108 +10039896: f04f 32ff mov.w r2, #4294967295 +1003989a: f44f 6161 mov.w r1, #3600 ; 0xe10 +1003989e: 4630 mov r0, r6 +100398a0: f8d4 7100 ldr.w r7, [r4, #256] ; 0x100 +100398a4: f7fe f8ff bl 10037aa6 +100398a8: 4601 mov r1, r0 +100398aa: 4638 mov r0, r7 +100398ac: f008 fc2c bl 10042108 +100398b0: f04f 32ff mov.w r2, #4294967295 +100398b4: f640 6114 movw r1, #3604 ; 0xe14 +100398b8: 4630 mov r0, r6 +100398ba: f8d4 7104 ldr.w r7, [r4, #260] ; 0x104 +100398be: f7fe f8f2 bl 10037aa6 +100398c2: 4601 mov r1, r0 +100398c4: 4638 mov r0, r7 +100398c6: f008 fc1f bl 10042108 +100398ca: f896 149e ldrb.w r1, [r6, #1182] ; 0x49e +100398ce: f8d4 0108 ldr.w r0, [r4, #264] ; 0x108 +100398d2: f008 fc19 bl 10042108 +100398d6: f8d4 010c ldr.w r0, [r4, #268] ; 0x10c +100398da: f895 103e ldrb.w r1, [r5, #62] ; 0x3e +100398de: e0ab b.n 10039a38 +100398e0: 2b04 cmp r3, #4 +100398e2: d13a bne.n 1003995a +100398e4: f44f 7000 mov.w r0, #512 ; 0x200 +100398e8: f7e3 fa42 bl 1001cd70 +100398ec: 4607 mov r7, r0 +100398ee: 2800 cmp r0, #0 +100398f0: f000 80bb beq.w 10039a6a +100398f4: 2500 movs r5, #0 +100398f6: 9500 str r5, [sp, #0] +100398f8: 4630 mov r0, r6 +100398fa: 4629 mov r1, r5 +100398fc: f44f 7200 mov.w r2, #512 ; 0x200 +10039900: 463b mov r3, r7 +10039902: f7f9 f88d bl 10032a20 +10039906: 2801 cmp r0, #1 +10039908: d005 beq.n 10039916 +1003990a: 4638 mov r0, r7 +1003990c: f44f 7100 mov.w r1, #512 ; 0x200 +10039910: f7e3 fa44 bl 1001cd9c +10039914: e0a9 b.n 10039a6a +10039916: 483a ldr r0, [pc, #232] ; (10039a00 ) +10039918: f008 fbf6 bl 10042108 +1003991c: 4839 ldr r0, [pc, #228] ; (10039a04 ) +1003991e: 4629 mov r1, r5 +10039920: f008 fbf2 bl 10042108 +10039924: 2400 movs r4, #0 +10039926: 197e adds r6, r7, r5 +10039928: 5d31 ldrb r1, [r6, r4] +1003992a: 4837 ldr r0, [pc, #220] ; (10039a08 ) +1003992c: 3401 adds r4, #1 +1003992e: f008 fbeb bl 10042108 +10039932: 2c08 cmp r4, #8 +10039934: d1f7 bne.n 10039926 +10039936: 4835 ldr r0, [pc, #212] ; (10039a0c ) +10039938: f008 fbe6 bl 10042108 +1003993c: 5d31 ldrb r1, [r6, r4] +1003993e: 4832 ldr r0, [pc, #200] ; (10039a08 ) +10039940: 3401 adds r4, #1 +10039942: f008 fbe1 bl 10042108 +10039946: 2c10 cmp r4, #16 +10039948: d1f8 bne.n 1003993c +1003994a: 482d ldr r0, [pc, #180] ; (10039a00 ) +1003994c: 3510 adds r5, #16 +1003994e: f008 fbdb bl 10042108 +10039952: f5b5 7f00 cmp.w r5, #512 ; 0x200 +10039956: d1e1 bne.n 1003991c +10039958: e7d7 b.n 1003990a +1003995a: 2b05 cmp r3, #5 +1003995c: f040 8085 bne.w 10039a6a +10039960: 2400 movs r4, #0 +10039962: f10d 010a add.w r1, sp, #10 +10039966: 4630 mov r0, r6 +10039968: f8ad 400a strh.w r4, [sp, #10] +1003996c: f8ad 4014 strh.w r4, [sp, #20] +10039970: f002 fad1 bl 1003bf16 +10039974: 4630 mov r0, r6 +10039976: 4621 mov r1, r4 +10039978: ab05 add r3, sp, #20 +1003997a: 9400 str r4, [sp, #0] +1003997c: 2203 movs r2, #3 +1003997e: f002 fa5f bl 1003be40 +10039982: f8bd 1014 ldrh.w r1, [sp, #20] +10039986: f8bd 300a ldrh.w r3, [sp, #10] +1003998a: 4821 ldr r0, [pc, #132] ; (10039a10 ) +1003998c: 1ac9 subs r1, r1, r3 +1003998e: e053 b.n 10039a38 +10039990: 9b03 ldr r3, [sp, #12] +10039992: 4c17 ldr r4, [pc, #92] ; (100399f0 ) +10039994: 2b0f cmp r3, #15 +10039996: d13d bne.n 10039a14 +10039998: aa05 add r2, sp, #20 +1003999a: 4630 mov r0, r6 +1003999c: 2109 movs r1, #9 +1003999e: f7fd ffdb bl 10037958 +100399a2: 9905 ldr r1, [sp, #20] +100399a4: f8d4 0110 ldr.w r0, [r4, #272] ; 0x110 +100399a8: f008 fbae bl 10042108 +100399ac: f8d4 0114 ldr.w r0, [r4, #276] ; 0x114 +100399b0: f008 fbaa bl 10042108 +100399b4: f8d4 0118 ldr.w r0, [r4, #280] ; 0x118 +100399b8: f008 fba6 bl 10042108 +100399bc: f8d4 011c ldr.w r0, [r4, #284] ; 0x11c +100399c0: f008 fba2 bl 10042108 +100399c4: f8d4 0120 ldr.w r0, [r4, #288] ; 0x120 +100399c8: f008 fb9e bl 10042108 +100399cc: f8d4 0124 ldr.w r0, [r4, #292] ; 0x124 +100399d0: f008 fb9a bl 10042108 +100399d4: f8d4 0128 ldr.w r0, [r4, #296] ; 0x128 +100399d8: f008 fb96 bl 10042108 +100399dc: f8d4 012c ldr.w r0, [r4, #300] ; 0x12c +100399e0: f008 fb92 bl 10042108 +100399e4: f8d4 0130 ldr.w r0, [r4, #304] ; 0x130 +100399e8: f008 fb8e bl 10042108 +100399ec: e03d b.n 10039a6a +100399ee: bf00 nop +100399f0: 1004da10 .word 0x1004da10 +100399f4: 1004b244 .word 0x1004b244 +100399f8: 1004b24b .word 0x1004b24b +100399fc: 10000720 .word 0x10000720 +10039a00: 1004b9eb .word 0x1004b9eb +10039a04: 1004b253 .word 0x1004b253 +10039a08: 1004b25b .word 0x1004b25b +10039a0c: 1004b259 .word 0x1004b259 +10039a10: 1004b261 .word 0x1004b261 +10039a14: f241 6318 movw r3, #5656 ; 0x1618 +10039a18: 2109 movs r1, #9 +10039a1a: aa03 add r2, sp, #12 +10039a1c: 4630 mov r0, r6 +10039a1e: 58f5 ldr r5, [r6, r3] +10039a20: f7fd ff91 bl 10037946 +10039a24: 2109 movs r1, #9 +10039a26: 4630 mov r0, r6 +10039a28: aa05 add r2, sp, #20 +10039a2a: f7fd ff95 bl 10037958 +10039a2e: 9905 ldr r1, [sp, #20] +10039a30: f8d4 0110 ldr.w r0, [r4, #272] ; 0x110 +10039a34: f8c5 11b0 str.w r1, [r5, #432] ; 0x1b0 +10039a38: f008 fb66 bl 10042108 +10039a3c: e015 b.n 10039a6a +10039a3e: f241 6318 movw r3, #5656 ; 0x1618 +10039a42: f89d 200c ldrb.w r2, [sp, #12] +10039a46: f44f 6145 mov.w r1, #3152 ; 0xc50 +10039a4a: 4630 mov r0, r6 +10039a4c: 58f4 ldr r4, [r6, r3] +10039a4e: f002 fe14 bl 1003c67a +10039a52: f44f 6145 mov.w r1, #3152 ; 0xc50 +10039a56: 4630 mov r0, r6 +10039a58: f002 fdfa bl 1003c650 +10039a5c: 4601 mov r1, r0 +10039a5e: 4805 ldr r0, [pc, #20] ; (10039a74 ) +10039a60: f008 fb52 bl 10042108 +10039a64: 9b03 ldr r3, [sp, #12] +10039a66: f884 378c strb.w r3, [r4, #1932] ; 0x78c +10039a6a: 2000 movs r0, #0 +10039a6c: b006 add sp, #24 +10039a6e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10039a72: bf00 nop +10039a74: 1004b281 .word 0x1004b281 + +10039a78 : +10039a78: 1e43 subs r3, r0, #1 +10039a7a: 2b02 cmp r3, #2 +10039a7c: d804 bhi.n 10039a88 +10039a7e: 4b04 ldr r3, [pc, #16] ; (10039a90 ) +10039a80: 3002 adds r0, #2 +10039a82: 7018 strb r0, [r3, #0] +10039a84: 2000 movs r0, #0 +10039a86: 4770 bx lr +10039a88: f04f 30ff mov.w r0, #4294967295 +10039a8c: 4770 bx lr +10039a8e: bf00 nop +10039a90: 1004d9c0 .word 0x1004d9c0 + +10039a94 : +10039a94: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} +10039a98: 4698 mov r8, r3 +10039a9a: 6903 ldr r3, [r0, #16] +10039a9c: 6810 ldr r0, [r2, #0] +10039a9e: 681c ldr r4, [r3, #0] +10039aa0: 2300 movs r3, #0 +10039aa2: 9303 str r3, [sp, #12] +10039aa4: f241 7314 movw r3, #5908 ; 0x1714 +10039aa8: 5ce5 ldrb r5, [r4, r3] +10039aaa: f504 5697 add.w r6, r4, #4832 ; 0x12e0 +10039aae: 1e6b subs r3, r5, #1 +10039ab0: 425d negs r5, r3 +10039ab2: f106 0618 add.w r6, r6, #24 +10039ab6: 415d adcs r5, r3 +10039ab8: f896 306e ldrb.w r3, [r6, #110] ; 0x6e +10039abc: b10b cbz r3, 10039ac2 +10039abe: f045 0502 orr.w r5, r5, #2 +10039ac2: 491e ldr r1, [pc, #120] ; (10039b3c ) +10039ac4: aa03 add r2, sp, #12 +10039ac6: f008 fd0b bl 100424e0 +10039aca: 9f03 ldr r7, [sp, #12] +10039acc: bb87 cbnz r7, 10039b30 +10039ace: f241 6318 movw r3, #5656 ; 0x1618 +10039ad2: f854 9003 ldr.w r9, [r4, r3] +10039ad6: f003 fd3b bl 1003d550 +10039ada: f241 7314 movw r3, #5908 ; 0x1714 +10039ade: 5ce1 ldrb r1, [r4, r3] +10039ae0: 4682 mov sl, r0 +10039ae2: 4817 ldr r0, [pc, #92] ; (10039b40 ) +10039ae4: f008 fb10 bl 10042108 +10039ae8: f241 6314 movw r3, #5652 ; 0x1614 +10039aec: 5ce2 ldrb r2, [r4, r3] +10039aee: f896 106e ldrb.w r1, [r6, #110] ; 0x6e +10039af2: 4814 ldr r0, [pc, #80] ; (10039b44 ) +10039af4: f008 fb08 bl 10042108 +10039af8: fa5f f18a uxtb.w r1, sl +10039afc: 4812 ldr r0, [pc, #72] ; (10039b48 ) +10039afe: f008 fb03 bl 10042108 +10039b02: f10d 030b add.w r3, sp, #11 +10039b06: 9700 str r7, [sp, #0] +10039b08: 4620 mov r0, r4 +10039b0a: 21c8 movs r1, #200 ; 0xc8 +10039b0c: 2201 movs r2, #1 +10039b0e: f7f8 ff87 bl 10032a20 +10039b12: f894 149e ldrb.w r1, [r4, #1182] ; 0x49e +10039b16: f89d 200b ldrb.w r2, [sp, #11] +10039b1a: f899 3045 ldrb.w r3, [r9, #69] ; 0x45 +10039b1e: 480b ldr r0, [pc, #44] ; (10039b4c ) +10039b20: f008 faf2 bl 10042108 +10039b24: 4640 mov r0, r8 +10039b26: 490a ldr r1, [pc, #40] ; (10039b50 ) +10039b28: 462a mov r2, r5 +10039b2a: f008 fabd bl 100420a8 +10039b2e: e000 b.n 10039b32 +10039b30: 603d str r5, [r7, #0] +10039b32: 2000 movs r0, #0 +10039b34: b004 add sp, #16 +10039b36: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10039b3a: bf00 nop +10039b3c: 1004b17f .word 0x1004b17f +10039b40: 1004b291 .word 0x1004b291 +10039b44: 1004b2a0 .word 0x1004b2a0 +10039b48: 1004b2b3 .word 0x1004b2b3 +10039b4c: 1004b2c4 .word 0x1004b2c4 +10039b50: 1004b190 .word 0x1004b190 + +10039b54 : +10039b54: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +10039b58: 4615 mov r5, r2 +10039b5a: 461e mov r6, r3 +10039b5c: 88d3 ldrh r3, [r2, #6] +10039b5e: 6902 ldr r2, [r0, #16] +10039b60: b087 sub sp, #28 +10039b62: 6814 ldr r4, [r2, #0] +10039b64: 2c00 cmp r4, #0 +10039b66: f000 80ae beq.w 10039cc6 +10039b6a: b91e cbnz r6, 10039b74 +10039b6c: 80ae strh r6, [r5, #4] +10039b6e: f06f 0004 mvn.w r0, #4 +10039b72: e125 b.n 10039dc0 +10039b74: 3b02 subs r3, #2 +10039b76: 2b07 cmp r3, #7 +10039b78: f200 809f bhi.w 10039cba +10039b7c: e8df f003 tbb [pc, r3] +10039b80: 524d0430 .word 0x524d0430 +10039b84: 615b9d57 .word 0x615b9d57 +10039b88: 88ac ldrh r4, [r5, #4] +10039b8a: 2300 movs r3, #0 +10039b8c: 4620 mov r0, r4 +10039b8e: 9304 str r3, [sp, #16] +10039b90: 9305 str r3, [sp, #20] +10039b92: f7e3 f8d7 bl 1001cd44 +10039b96: 4607 mov r7, r0 +10039b98: b1f8 cbz r0, 10039bda +10039b9a: 6829 ldr r1, [r5, #0] +10039b9c: 88aa ldrh r2, [r5, #4] +10039b9e: f7e3 f905 bl 1001cdac +10039ba2: 4638 mov r0, r7 +10039ba4: 4988 ldr r1, [pc, #544] ; (10039dc8 ) +10039ba6: aa04 add r2, sp, #16 +10039ba8: ab05 add r3, sp, #20 +10039baa: f008 fc99 bl 100424e0 +10039bae: 3001 adds r0, #1 +10039bb0: 4630 mov r0, r6 +10039bb2: d103 bne.n 10039bbc +10039bb4: 4985 ldr r1, [pc, #532] ; (10039dcc ) +10039bb6: 220c movs r2, #12 +10039bb8: 2322 movs r3, #34 ; 0x22 +10039bba: e002 b.n 10039bc2 +10039bbc: 4984 ldr r1, [pc, #528] ; (10039dd0 ) +10039bbe: 9a04 ldr r2, [sp, #16] +10039bc0: 9b05 ldr r3, [sp, #20] +10039bc2: f008 fa71 bl 100420a8 +10039bc6: 4630 mov r0, r6 +10039bc8: f008 fae2 bl 10042190 +10039bcc: 3001 adds r0, #1 +10039bce: 80a8 strh r0, [r5, #4] +10039bd0: 4621 mov r1, r4 +10039bd2: 4638 mov r0, r7 +10039bd4: f7e3 f8e2 bl 1001cd9c +10039bd8: e06f b.n 10039cba +10039bda: f06f 040b mvn.w r4, #11 +10039bde: e06d b.n 10039cbc +10039be0: f241 410b movw r1, #5131 ; 0x140b +10039be4: 5c61 ldrb r1, [r4, r1] +10039be6: f241 4309 movw r3, #5129 ; 0x1409 +10039bea: 5ce2 ldrb r2, [r4, r3] +10039bec: f241 430a movw r3, #5130 ; 0x140a +10039bf0: 5ce3 ldrb r3, [r4, r3] +10039bf2: 9100 str r1, [sp, #0] +10039bf4: f241 410c movw r1, #5132 ; 0x140c +10039bf8: 5c61 ldrb r1, [r4, r1] +10039bfa: 4630 mov r0, r6 +10039bfc: 9101 str r1, [sp, #4] +10039bfe: f241 410d movw r1, #5133 ; 0x140d +10039c02: 5c61 ldrb r1, [r4, r1] +10039c04: 9102 str r1, [sp, #8] +10039c06: f241 410e movw r1, #5134 ; 0x140e +10039c0a: 5c61 ldrb r1, [r4, r1] +10039c0c: 9103 str r1, [sp, #12] +10039c0e: 4971 ldr r1, [pc, #452] ; (10039dd4 ) +10039c10: f008 fa4a bl 100420a8 +10039c14: 2312 movs r3, #18 +10039c16: 80ab strh r3, [r5, #4] +10039c18: e04f b.n 10039cba +10039c1a: 6923 ldr r3, [r4, #16] +10039c1c: 6828 ldr r0, [r5, #0] +10039c1e: 06de lsls r6, r3, #27 +10039c20: d454 bmi.n 10039ccc +10039c22: e035 b.n 10039c90 +10039c24: 6923 ldr r3, [r4, #16] +10039c26: 6828 ldr r0, [r5, #0] +10039c28: 06d9 lsls r1, r3, #27 +10039c2a: d426 bmi.n 10039c7a +10039c2c: e030 b.n 10039c90 +10039c2e: 6923 ldr r3, [r4, #16] +10039c30: 06db lsls r3, r3, #27 +10039c32: d430 bmi.n 10039c96 +10039c34: e02c b.n 10039c90 +10039c36: 462a mov r2, r5 +10039c38: 4633 mov r3, r6 +10039c3a: f7ff ff2b bl 10039a94 +10039c3e: 4604 mov r4, r0 +10039c40: e03c b.n 10039cbc +10039c42: 2100 movs r1, #0 +10039c44: 2210 movs r2, #16 +10039c46: 4b64 ldr r3, [pc, #400] ; (10039dd8 ) +10039c48: 4630 mov r0, r6 +10039c4a: 4798 blx r3 +10039c4c: 2700 movs r7, #0 +10039c4e: ab06 add r3, sp, #24 +10039c50: f803 0d04 strb.w r0, [r3, #-4]! +10039c54: 21c8 movs r1, #200 ; 0xc8 +10039c56: 9700 str r7, [sp, #0] +10039c58: 4620 mov r0, r4 +10039c5a: 2201 movs r2, #1 +10039c5c: f7f8 fee0 bl 10032a20 +10039c60: b1b0 cbz r0, 10039c90 +10039c62: 495e ldr r1, [pc, #376] ; (10039ddc ) +10039c64: f89d 2014 ldrb.w r2, [sp, #20] +10039c68: 4630 mov r0, r6 +10039c6a: f008 fa1d bl 100420a8 +10039c6e: 4630 mov r0, r6 +10039c70: f008 fa8e bl 10042190 +10039c74: 463c mov r4, r7 +10039c76: 80a8 strh r0, [r5, #4] +10039c78: e020 b.n 10039cbc +10039c7a: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +10039c7e: 2b04 cmp r3, #4 +10039c80: d106 bne.n 10039c90 +10039c82: 4957 ldr r1, [pc, #348] ; (10039de0 ) +10039c84: aa05 add r2, sp, #20 +10039c86: f008 fc2b bl 100424e0 +10039c8a: 9805 ldr r0, [sp, #20] +10039c8c: 2800 cmp r0, #0 +10039c8e: d151 bne.n 10039d34 +10039c90: f04f 34ff mov.w r4, #4294967295 +10039c94: e012 b.n 10039cbc +10039c96: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +10039c9a: 2b04 cmp r3, #4 +10039c9c: d1f8 bne.n 10039c90 +10039c9e: f8d4 3fdc ldr.w r3, [r4, #4060] ; 0xfdc +10039ca2: 4a50 ldr r2, [pc, #320] ; (10039de4 ) +10039ca4: 2b07 cmp r3, #7 +10039ca6: 4950 ldr r1, [pc, #320] ; (10039de8 ) +10039ca8: bf18 it ne +10039caa: 2200 movne r2, #0 +10039cac: 4630 mov r0, r6 +10039cae: f008 f9fb bl 100420a8 +10039cb2: 4630 mov r0, r6 +10039cb4: f008 fa6c bl 10042190 +10039cb8: 80a8 strh r0, [r5, #4] +10039cba: 2400 movs r4, #0 +10039cbc: 200a movs r0, #10 +10039cbe: f7e3 f9c5 bl 1001d04c +10039cc2: 4620 mov r0, r4 +10039cc4: e07c b.n 10039dc0 +10039cc6: f06f 0063 mvn.w r0, #99 ; 0x63 +10039cca: e079 b.n 10039dc0 +10039ccc: 4944 ldr r1, [pc, #272] ; (10039de0 ) +10039cce: aa04 add r2, sp, #16 +10039cd0: f008 fc06 bl 100424e0 +10039cd4: 9b04 ldr r3, [sp, #16] +10039cd6: 2b00 cmp r3, #0 +10039cd8: d0da beq.n 10039c90 +10039cda: f604 4844 addw r8, r4, #3140 ; 0xc44 +10039cde: 4640 mov r0, r8 +10039ce0: a905 add r1, sp, #20 +10039ce2: f7e3 f909 bl 1001cef8 +10039ce6: f604 4934 addw r9, r4, #3124 ; 0xc34 +10039cea: f8d4 6c34 ldr.w r6, [r4, #3124] ; 0xc34 +10039cee: 2400 movs r4, #0 +10039cf0: 4648 mov r0, r9 +10039cf2: 4631 mov r1, r6 +10039cf4: f7e3 f934 bl 1001cf60 +10039cf8: b988 cbnz r0, 10039d1e +10039cfa: 9804 ldr r0, [sp, #16] +10039cfc: 2206 movs r2, #6 +10039cfe: fb02 0004 mla r0, r2, r4, r0 +10039d02: f5a6 718a sub.w r1, r6, #276 ; 0x114 +10039d06: 3004 adds r0, #4 +10039d08: f7e3 f850 bl 1001cdac +10039d0c: 9b04 ldr r3, [sp, #16] +10039d0e: 1c67 adds r7, r4, #1 +10039d10: 681b ldr r3, [r3, #0] +10039d12: 429f cmp r7, r3 +10039d14: d202 bcs.n 10039d1c +10039d16: 6836 ldr r6, [r6, #0] +10039d18: 463c mov r4, r7 +10039d1a: e7e9 b.n 10039cf0 +10039d1c: 463c mov r4, r7 +10039d1e: 4640 mov r0, r8 +10039d20: a905 add r1, sp, #20 +10039d22: f7e3 f8f1 bl 1001cf08 +10039d26: 9b04 ldr r3, [sp, #16] +10039d28: 681a ldr r2, [r3, #0] +10039d2a: 42a2 cmp r2, r4 +10039d2c: bf94 ite ls +10039d2e: 601a strls r2, [r3, #0] +10039d30: 601c strhi r4, [r3, #0] +10039d32: e03b b.n 10039dac +10039d34: 2300 movs r3, #0 +10039d36: 2264 movs r2, #100 ; 0x64 +10039d38: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +10039d3c: e880 000c stmia.w r0, {r2, r3} +10039d40: 3109 adds r1, #9 +10039d42: 2206 movs r2, #6 +10039d44: 3008 adds r0, #8 +10039d46: f7e3 f831 bl 1001cdac +10039d4a: 9e05 ldr r6, [sp, #20] +10039d4c: f8d4 30dc ldr.w r3, [r4, #220] ; 0xdc +10039d50: f504 708a add.w r0, r4, #276 ; 0x114 +10039d54: 81f3 strh r3, [r6, #14] +10039d56: f7e9 fdd9 bl 1002390c +10039d5a: 8803 ldrh r3, [r0, #0] +10039d5c: 9805 ldr r0, [sp, #20] +10039d5e: 8233 strh r3, [r6, #16] +10039d60: f8d4 30e0 ldr.w r3, [r4, #224] ; 0xe0 +10039d64: 3013 adds r0, #19 +10039d66: f8a0 3021 strh.w r3, [r0, #33] ; 0x21 +10039d6a: f104 01a8 add.w r1, r4, #168 ; 0xa8 +10039d6e: f8d4 20a4 ldr.w r2, [r4, #164] ; 0xa4 +10039d72: f7e3 f81b bl 1001cdac +10039d76: 9b05 ldr r3, [sp, #20] +10039d78: f8d4 20a4 ldr.w r2, [r4, #164] ; 0xa4 +10039d7c: f103 0040 add.w r0, r3, #64 ; 0x40 +10039d80: 749a strb r2, [r3, #18] +10039d82: f8d4 20e4 ldr.w r2, [r4, #228] ; 0xe4 +10039d86: f883 2033 strb.w r2, [r3, #51] ; 0x33 +10039d8a: f8d4 20d0 ldr.w r2, [r4, #208] ; 0xd0 +10039d8e: f8b4 1462 ldrh.w r1, [r4, #1122] ; 0x462 +10039d92: 871a strh r2, [r3, #56] ; 0x38 +10039d94: b169 cbz r1, 10039db2 +10039d96: 2201 movs r2, #1 +10039d98: f883 203a strb.w r2, [r3, #58] ; 0x3a +10039d9c: f8b4 2462 ldrh.w r2, [r4, #1122] ; 0x462 +10039da0: f204 4165 addw r1, r4, #1125 ; 0x465 +10039da4: 63da str r2, [r3, #60] ; 0x3c +10039da6: 2210 movs r2, #16 +10039da8: f7e3 f800 bl 1001cdac +10039dac: 2400 movs r4, #0 +10039dae: 80ac strh r4, [r5, #4] +10039db0: e784 b.n 10039cbc +10039db2: f883 103a strb.w r1, [r3, #58] ; 0x3a +10039db6: 63d9 str r1, [r3, #60] ; 0x3c +10039db8: 2210 movs r2, #16 +10039dba: f7e3 f809 bl 1001cdd0 +10039dbe: e7f5 b.n 10039dac +10039dc0: b007 add sp, #28 +10039dc2: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +10039dc6: bf00 nop +10039dc8: 1004b2ec .word 0x1004b2ec +10039dcc: 1004b2fe .word 0x1004b2fe +10039dd0: 1004b304 .word 0x1004b304 +10039dd4: 1004b328 .word 0x1004b328 +10039dd8: 0000f965 .word 0x0000f965 +10039ddc: 1004b8fb .word 0x1004b8fb +10039de0: 1004b17f .word 0x1004b17f +10039de4: 00400004 .word 0x00400004 +10039de8: 10049e34 .word 0x10049e34 + +10039dec : +10039dec: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10039df0: 6903 ldr r3, [r0, #16] +10039df2: 460c mov r4, r1 +10039df4: f648 311b movw r1, #35611 ; 0x8b1b +10039df8: 428a cmp r2, r1 +10039dfa: b09d sub sp, #116 ; 0x74 +10039dfc: 4680 mov r8, r0 +10039dfe: 681d ldr r5, [r3, #0] +10039e00: f000 818d beq.w 1003a11e +10039e04: dc3b bgt.n 10039e7e +10039e06: f648 3107 movw r1, #35591 ; 0x8b07 +10039e0a: 428a cmp r2, r1 +10039e0c: f000 83bd beq.w 1003a58a +10039e10: dc18 bgt.n 10039e44 +10039e12: f648 3104 movw r1, #35588 ; 0x8b04 +10039e16: 428a cmp r2, r1 +10039e18: f000 8409 beq.w 1003a62e +10039e1c: dc06 bgt.n 10039e2c +10039e1e: f648 13f0 movw r3, #35312 ; 0x89f0 +10039e22: 429a cmp r2, r3 +10039e24: f000 8494 beq.w 1003a750 +10039e28: f000 bcea b.w 1003a800 +10039e2c: f648 3305 movw r3, #35589 ; 0x8b05 +10039e30: 429a cmp r2, r3 +10039e32: f000 8401 beq.w 1003a638 +10039e36: f648 3306 movw r3, #35590 ; 0x8b06 +10039e3a: 429a cmp r2, r3 +10039e3c: f000 836b beq.w 1003a516 +10039e40: f000 bcde b.w 1003a800 +10039e44: f648 3318 movw r3, #35608 ; 0x8b18 +10039e48: 429a cmp r2, r3 +10039e4a: f000 83fe beq.w 1003a64a +10039e4e: dc0a bgt.n 10039e66 +10039e50: f648 3309 movw r3, #35593 ; 0x8b09 +10039e54: 429a cmp r2, r3 +10039e56: f000 83a5 beq.w 1003a5a4 +10039e5a: f648 3314 movw r3, #35604 ; 0x8b14 +10039e5e: 429a cmp r2, r3 +10039e60: d055 beq.n 10039f0e +10039e62: f000 bccd b.w 1003a800 +10039e66: f648 3319 movw r3, #35609 ; 0x8b19 +10039e6a: 429a cmp r2, r3 +10039e6c: f000 8416 beq.w 1003a69c +10039e70: f648 331a movw r3, #35610 ; 0x8b1a +10039e74: 429a cmp r2, r3 +10039e76: f000 80b7 beq.w 10039fe8 +10039e7a: f000 bcc1 b.w 1003a800 +10039e7e: f648 3338 movw r3, #35640 ; 0x8b38 +10039e82: 429a cmp r2, r3 +10039e84: f000 8425 beq.w 1003a6d2 +10039e88: dc1e bgt.n 10039ec8 +10039e8a: f648 3334 movw r3, #35636 ; 0x8b34 +10039e8e: 429a cmp r2, r3 +10039e90: f000 81c0 beq.w 1003a214 +10039e94: dc06 bgt.n 10039ea4 +10039e96: f648 3332 movw r3, #35634 ; 0x8b32 +10039e9a: 429a cmp r2, r3 +10039e9c: f000 814e beq.w 1003a13c +10039ea0: f000 bcae b.w 1003a800 +10039ea4: f648 3335 movw r3, #35637 ; 0x8b35 +10039ea8: 429a cmp r2, r3 +10039eaa: f000 82c8 beq.w 1003a43e +10039eae: f648 3337 movw r3, #35639 ; 0x8b37 +10039eb2: 429a cmp r2, r3 +10039eb4: f040 84a4 bne.w 1003a800 +10039eb8: 4628 mov r0, r5 +10039eba: 6921 ldr r1, [r4, #16] +10039ebc: 8aa2 ldrh r2, [r4, #20] +10039ebe: 8ae3 ldrh r3, [r4, #22] +10039ec0: f7ea fe6f bl 10024ba2 +10039ec4: f000 bc03 b.w 1003a6ce +10039ec8: f648 33fd movw r3, #35837 ; 0x8bfd +10039ecc: 429a cmp r2, r3 +10039ece: f000 8375 beq.w 1003a5bc +10039ed2: dc10 bgt.n 10039ef6 +10039ed4: f648 33fb movw r3, #35835 ; 0x8bfb +10039ed8: 429a cmp r2, r3 +10039eda: f000 842c beq.w 1003a736 +10039ede: f648 33fc movw r3, #35836 ; 0x8bfc +10039ee2: 429a cmp r2, r3 +10039ee4: f040 848c bne.w 1003a800 +10039ee8: 2100 movs r1, #0 +10039eea: f104 0210 add.w r2, r4, #16 +10039eee: 6923 ldr r3, [r4, #16] +10039ef0: f7ff f930 bl 10039154 +10039ef4: e3eb b.n 1003a6ce +10039ef6: f648 33fe movw r3, #35838 ; 0x8bfe +10039efa: 429a cmp r2, r3 +10039efc: f000 834b beq.w 1003a596 +10039f00: f648 33ff movw r3, #35839 ; 0x8bff +10039f04: 429a cmp r2, r3 +10039f06: f000 82ca beq.w 1003a49e +10039f0a: f000 bc79 b.w 1003a800 +10039f0e: 2300 movs r3, #0 +10039f10: f885 37e0 strb.w r3, [r5, #2016] ; 0x7e0 +10039f14: 4628 mov r0, r5 +10039f16: f44f 6108 mov.w r1, #2176 ; 0x880 +10039f1a: f7ea fc98 bl 1002484e +10039f1e: 2801 cmp r0, #1 +10039f20: f000 83d2 beq.w 1003a6c8 +10039f24: 4628 mov r0, r5 +10039f26: f44f 61fa mov.w r1, #2000 ; 0x7d0 +10039f2a: 4aae ldr r2, [pc, #696] ; (1003a1e4 ) +10039f2c: f7f1 fec0 bl 1002bcb0 <_rtw_pwr_wakeup> +10039f30: 2800 cmp r0, #0 +10039f32: f000 80d8 beq.w 1003a0e6 +10039f36: f241 7384 movw r3, #6020 ; 0x1784 +10039f3a: 58eb ldr r3, [r5, r3] +10039f3c: 2b00 cmp r3, #0 +10039f3e: f000 80d2 beq.w 1003a0e6 +10039f42: 7c63 ldrb r3, [r4, #17] +10039f44: 2b01 cmp r3, #1 +10039f46: f040 83bf bne.w 1003a6c8 +10039f4a: f994 3012 ldrsb.w r3, [r4, #18] +10039f4e: b9ab cbnz r3, 10039f7c +10039f50: f994 3013 ldrsb.w r3, [r4, #19] +10039f54: b993 cbnz r3, 10039f7c +10039f56: f994 3014 ldrsb.w r3, [r4, #20] +10039f5a: b97b cbnz r3, 10039f7c +10039f5c: f994 3015 ldrsb.w r3, [r4, #21] +10039f60: b963 cbnz r3, 10039f7c +10039f62: f994 7016 ldrsb.w r7, [r4, #22] +10039f66: b94f cbnz r7, 10039f7c +10039f68: f994 6017 ldrsb.w r6, [r4, #23] +10039f6c: 2e01 cmp r6, #1 +10039f6e: d105 bne.n 10039f7c +10039f70: 692a ldr r2, [r5, #16] +10039f72: f012 0301 ands.w r3, r2, #1 +10039f76: f040 8446 bne.w 1003a806 +10039f7a: e0fa b.n 1003a172 +10039f7c: f105 0634 add.w r6, r5, #52 ; 0x34 +10039f80: 4630 mov r0, r6 +10039f82: a912 add r1, sp, #72 ; 0x48 +10039f84: f8d5 9fdc ldr.w r9, [r5, #4060] ; 0xfdc +10039f88: f7e2 ffb6 bl 1001cef8 +10039f8c: 6aeb ldr r3, [r5, #44] ; 0x2c +10039f8e: f105 0a2c add.w sl, r5, #44 ; 0x2c +10039f92: 61eb str r3, [r5, #28] +10039f94: 4650 mov r0, sl +10039f96: 69e9 ldr r1, [r5, #28] +10039f98: f7e2 ffe2 bl 1001cf60 +10039f9c: 2801 cmp r0, #1 +10039f9e: f104 0712 add.w r7, r4, #18 +10039fa2: d014 beq.n 10039fce +10039fa4: f8d5 801c ldr.w r8, [r5, #28] +10039fa8: 4639 mov r1, r7 +10039faa: 4640 mov r0, r8 +10039fac: f850 3b20 ldr.w r3, [r0], #32 +10039fb0: 2206 movs r2, #6 +10039fb2: 61eb str r3, [r5, #28] +10039fb4: f7e2 ff02 bl 1001cdbc +10039fb8: 2801 cmp r0, #1 +10039fba: d1eb bne.n 10039f94 +10039fbc: 4628 mov r0, r5 +10039fbe: f8d8 107c ldr.w r1, [r8, #124] ; 0x7c +10039fc2: f002 fd07 bl 1003c9d4 +10039fc6: b910 cbnz r0, 10039fce +10039fc8: 4630 mov r0, r6 +10039fca: a912 add r1, sp, #72 ; 0x48 +10039fcc: e089 b.n 1003a0e2 +10039fce: 4630 mov r0, r6 +10039fd0: a912 add r1, sp, #72 ; 0x48 +10039fd2: f7e2 ff99 bl 1001cf08 +10039fd6: 4649 mov r1, r9 +10039fd8: 4628 mov r0, r5 +10039fda: f002 fd74 bl 1003cac6 +10039fde: 4628 mov r0, r5 +10039fe0: 4639 mov r1, r7 +10039fe2: f002 fbb1 bl 1003c748 +10039fe6: e08e b.n 1003a106 +10039fe8: f895 386d ldrb.w r3, [r5, #2157] ; 0x86d +10039fec: b17b cbz r3, 1003a00e +10039fee: f205 70e7 addw r0, r5, #2023 ; 0x7e7 +10039ff2: 6921 ldr r1, [r4, #16] +10039ff4: 8aa2 ldrh r2, [r4, #20] +10039ff6: f7e2 fed9 bl 1001cdac +10039ffa: 8aa3 ldrh r3, [r4, #20] +10039ffc: 2600 movs r6, #0 +10039ffe: 442b add r3, r5 +1003a000: f883 67e7 strb.w r6, [r3, #2023] ; 0x7e7 +1003a004: f7d2 f9b4 bl 1000c370 +1003a008: b908 cbnz r0, 1003a00e +1003a00a: f885 686c strb.w r6, [r5, #2156] ; 0x86c +1003a00e: f8d8 3010 ldr.w r3, [r8, #16] +1003a012: 6926 ldr r6, [r4, #16] +1003a014: 681d ldr r5, [r3, #0] +1003a016: 2300 movs r3, #0 +1003a018: f885 37e0 strb.w r3, [r5, #2016] ; 0x7e0 +1003a01c: 4628 mov r0, r5 +1003a01e: f44f 6108 mov.w r1, #2176 ; 0x880 +1003a022: f7ea fc14 bl 1002484e +1003a026: 2801 cmp r0, #1 +1003a028: f000 834e beq.w 1003a6c8 +1003a02c: 4628 mov r0, r5 +1003a02e: f44f 61fa mov.w r1, #2000 ; 0x7d0 +1003a032: 4a6d ldr r2, [pc, #436] ; (1003a1e8 ) +1003a034: f7f1 fe3c bl 1002bcb0 <_rtw_pwr_wakeup> +1003a038: 2800 cmp r0, #0 +1003a03a: d054 beq.n 1003a0e6 +1003a03c: f241 7384 movw r3, #6020 ; 0x1784 +1003a040: 58eb ldr r3, [r5, r3] +1003a042: 2b00 cmp r3, #0 +1003a044: d04f beq.n 1003a0e6 +1003a046: 8aa3 ldrh r3, [r4, #20] +1003a048: 2b20 cmp r3, #32 +1003a04a: d864 bhi.n 1003a116 +1003a04c: 692b ldr r3, [r5, #16] +1003a04e: f013 0810 ands.w r8, r3, #16 +1003a052: d148 bne.n 1003a0e6 +1003a054: f205 70d4 addw r0, r5, #2004 ; 0x7d4 +1003a058: f001 fc58 bl 1003b90c +1003a05c: 8ae3 ldrh r3, [r4, #22] +1003a05e: f8d5 7fdc ldr.w r7, [r5, #4060] ; 0xfdc +1003a062: 2b00 cmp r3, #0 +1003a064: f000 8085 beq.w 1003a172 +1003a068: 8aa3 ldrh r3, [r4, #20] +1003a06a: 2b00 cmp r3, #0 +1003a06c: f000 8081 beq.w 1003a172 +1003a070: 2b1f cmp r3, #31 +1003a072: bf94 ite ls +1003a074: 461c movls r4, r3 +1003a076: 2420 movhi r4, #32 +1003a078: 4641 mov r1, r8 +1003a07a: a812 add r0, sp, #72 ; 0x48 +1003a07c: 2228 movs r2, #40 ; 0x28 +1003a07e: f7e2 fea7 bl 1001cdd0 +1003a082: 4631 mov r1, r6 +1003a084: a813 add r0, sp, #76 ; 0x4c +1003a086: 4622 mov r2, r4 +1003a088: f105 0634 add.w r6, r5, #52 ; 0x34 +1003a08c: 9412 str r4, [sp, #72] ; 0x48 +1003a08e: f7e2 fe8d bl 1001cdac +1003a092: 4630 mov r0, r6 +1003a094: a90d add r1, sp, #52 ; 0x34 +1003a096: f7e2 ff2f bl 1001cef8 +1003a09a: 6aeb ldr r3, [r5, #44] ; 0x2c +1003a09c: f105 082c add.w r8, r5, #44 ; 0x2c +1003a0a0: 61eb str r3, [r5, #28] +1003a0a2: 4640 mov r0, r8 +1003a0a4: 69e9 ldr r1, [r5, #28] +1003a0a6: f7e2 ff5b bl 1001cf60 +1003a0aa: 2801 cmp r0, #1 +1003a0ac: d01f beq.n 1003a0ee +1003a0ae: 69ec ldr r4, [r5, #28] +1003a0b0: a913 add r1, sp, #76 ; 0x4c +1003a0b2: 4620 mov r0, r4 +1003a0b4: f850 3b2c ldr.w r3, [r0], #44 +1003a0b8: 9a12 ldr r2, [sp, #72] ; 0x48 +1003a0ba: 61eb str r3, [r5, #28] +1003a0bc: f7e2 fe7e bl 1001cdbc +1003a0c0: 2801 cmp r0, #1 +1003a0c2: d1ee bne.n 1003a0a2 +1003a0c4: 6aa2 ldr r2, [r4, #40] ; 0x28 +1003a0c6: 9b12 ldr r3, [sp, #72] ; 0x48 +1003a0c8: 429a cmp r2, r3 +1003a0ca: d1ea bne.n 1003a0a2 +1003a0cc: 692b ldr r3, [r5, #16] +1003a0ce: 069b lsls r3, r3, #26 +1003a0d0: f100 83a7 bmi.w 1003a822 +1003a0d4: 4628 mov r0, r5 +1003a0d6: 6fe1 ldr r1, [r4, #124] ; 0x7c +1003a0d8: f002 fc7c bl 1003c9d4 +1003a0dc: b938 cbnz r0, 1003a0ee +1003a0de: 4630 mov r0, r6 +1003a0e0: a90d add r1, sp, #52 ; 0x34 +1003a0e2: f7e2 ff11 bl 1001cf08 +1003a0e6: f04f 3aff mov.w sl, #4294967295 +1003a0ea: f000 be34 b.w 1003ad56 +1003a0ee: 4630 mov r0, r6 +1003a0f0: a90d add r1, sp, #52 ; 0x34 +1003a0f2: f7e2 ff09 bl 1001cf08 +1003a0f6: 4639 mov r1, r7 +1003a0f8: 4628 mov r0, r5 +1003a0fa: f002 fce4 bl 1003cac6 +1003a0fe: 4628 mov r0, r5 +1003a100: a912 add r1, sp, #72 ; 0x48 +1003a102: f002 fbe3 bl 1003c8cc +1003a106: f1d0 0001 rsbs r0, r0, #1 +1003a10a: bf38 it cc +1003a10c: 2000 movcc r0, #0 +1003a10e: f1c0 0a00 rsb sl, r0, #0 +1003a112: f000 be20 b.w 1003ad56 +1003a116: f06f 0a06 mvn.w sl, #6 +1003a11a: f000 be1c b.w 1003ad56 +1003a11e: 692b ldr r3, [r5, #16] +1003a120: 6920 ldr r0, [r4, #16] +1003a122: f013 0f41 tst.w r3, #65 ; 0x41 +1003a126: d0de beq.n 1003a0e6 +1003a128: f8d5 20a4 ldr.w r2, [r5, #164] ; 0xa4 +1003a12c: f105 01a8 add.w r1, r5, #168 ; 0xa8 +1003a130: 82a2 strh r2, [r4, #20] +1003a132: f7e2 fe3b bl 1001cdac +1003a136: 2301 movs r3, #1 +1003a138: 82e3 strh r3, [r4, #22] +1003a13a: e3c0 b.n 1003a8be +1003a13c: 8ae3 ldrh r3, [r4, #22] +1003a13e: f3c3 030b ubfx r3, r3, #0, #12 +1003a142: 2b0a cmp r3, #10 +1003a144: f200 835c bhi.w 1003a800 +1003a148: e8df f013 tbh [pc, r3, lsl #1] +1003a14c: 03b903b9 .word 0x03b903b9 +1003a150: 03b903b9 .word 0x03b903b9 +1003a154: 0016000b .word 0x0016000b +1003a158: 03b9002a .word 0x03b9002a +1003a15c: 035a03b9 .word 0x035a03b9 +1003a160: 03b9 .short 0x03b9 +1003a162: 6923 ldr r3, [r4, #16] +1003a164: f241 1204 movw r2, #4356 ; 0x1104 +1003a168: b113 cbz r3, 1003a170 +1003a16a: 2301 movs r3, #1 +1003a16c: 54ab strb r3, [r5, r2] +1003a16e: e3a6 b.n 1003a8be +1003a170: 54ab strb r3, [r5, r2] +1003a172: 469a mov sl, r3 +1003a174: f000 bdef b.w 1003ad56 +1003a178: f8d5 3fe0 ldr.w r3, [r5, #4064] ; 0xfe0 +1003a17c: 2b00 cmp r3, #0 +1003a17e: d0f8 beq.n 1003a172 +1003a180: 6923 ldr r3, [r4, #16] +1003a182: 2b00 cmp r3, #0 +1003a184: d0f5 beq.n 1003a172 +1003a186: 2301 movs r3, #1 +1003a188: f8c5 3fe0 str.w r3, [r5, #4064] ; 0xfe0 +1003a18c: 2300 movs r3, #0 +1003a18e: f8c5 3c7c str.w r3, [r5, #3196] ; 0xc7c +1003a192: f8c5 3cd4 str.w r3, [r5, #3284] ; 0xcd4 +1003a196: f8c5 3c78 str.w r3, [r5, #3192] ; 0xc78 +1003a19a: f8c5 3fdc str.w r3, [r5, #4060] ; 0xfdc +1003a19e: e7e8 b.n 1003a172 +1003a1a0: 692b ldr r3, [r5, #16] +1003a1a2: 07de lsls r6, r3, #31 +1003a1a4: f100 8344 bmi.w 1003a830 +1003a1a8: 6921 ldr r1, [r4, #16] +1003a1aa: f8d8 3010 ldr.w r3, [r8, #16] +1003a1ae: f001 0003 and.w r0, r1, #3 +1003a1b2: 2803 cmp r0, #3 +1003a1b4: 681a ldr r2, [r3, #0] +1003a1b6: d108 bne.n 1003a1ca +1003a1b8: 2300 movs r3, #0 +1003a1ba: 2102 movs r1, #2 +1003a1bc: f8c2 3fe0 str.w r3, [r2, #4064] ; 0xfe0 +1003a1c0: f8c2 1fdc str.w r1, [r2, #4060] ; 0xfdc +1003a1c4: f8c2 0c78 str.w r0, [r2, #3192] ; 0xc78 +1003a1c8: e7d3 b.n 1003a172 +1003a1ca: f011 0302 ands.w r3, r1, #2 +1003a1ce: d00d beq.n 1003a1ec +1003a1d0: 2101 movs r1, #1 +1003a1d2: 2300 movs r3, #0 +1003a1d4: f8c2 3fe0 str.w r3, [r2, #4064] ; 0xfe0 +1003a1d8: f8c2 1fdc str.w r1, [r2, #4060] ; 0xfdc +1003a1dc: f8c2 1c78 str.w r1, [r2, #3192] ; 0xc78 +1003a1e0: e7c7 b.n 1003a172 +1003a1e2: bf00 nop +1003a1e4: 1004b3bb .word 0x1004b3bb +1003a1e8: 1004b3aa .word 0x1004b3aa +1003a1ec: 07c8 lsls r0, r1, #31 +1003a1ee: d508 bpl.n 1003a202 +1003a1f0: f8d2 1fdc ldr.w r1, [r2, #4060] ; 0xfdc +1003a1f4: 2903 cmp r1, #3 +1003a1f6: d8bc bhi.n 1003a172 +1003a1f8: f8c2 3fdc str.w r3, [r2, #4060] ; 0xfdc +1003a1fc: f8c2 3c78 str.w r3, [r2, #3192] ; 0xc78 +1003a200: e7b7 b.n 1003a172 +1003a202: f011 0f04 tst.w r1, #4 +1003a206: bf0c ite eq +1003a208: f06f 0a15 mvneq.w sl, #21 +1003a20c: f04f 0a00 movne.w sl, #0 +1003a210: f000 bda1 b.w 1003ad56 +1003a214: f895 386d ldrb.w r3, [r5, #2157] ; 0x86d +1003a218: b18b cbz r3, 1003a23e +1003a21a: 6923 ldr r3, [r4, #16] +1003a21c: f605 0008 addw r0, r5, #2056 ; 0x808 +1003a220: 8c9b ldrh r3, [r3, #36] ; 0x24 +1003a222: f885 37e6 strb.w r3, [r5, #2022] ; 0x7e6 +1003a226: 6923 ldr r3, [r4, #16] +1003a228: 8cda ldrh r2, [r3, #38] ; 0x26 +1003a22a: f8a5 2828 strh.w r2, [r5, #2088] ; 0x828 +1003a22e: 6921 ldr r1, [r4, #16] +1003a230: 3128 adds r1, #40 ; 0x28 +1003a232: f7e2 fdbb bl 1001cdac +1003a236: 7da3 ldrb r3, [r4, #22] +1003a238: 3b01 subs r3, #1 +1003a23a: f885 382a strb.w r3, [r5, #2090] ; 0x82a +1003a23e: 6926 ldr r6, [r4, #16] +1003a240: 8cf7 ldrh r7, [r6, #38] ; 0x26 +1003a242: 3740 adds r7, #64 ; 0x40 +1003a244: 4638 mov r0, r7 +1003a246: f7e2 fd7d bl 1001cd44 +1003a24a: 4605 mov r5, r0 +1003a24c: 2800 cmp r0, #0 +1003a24e: f43f af4a beq.w 1003a0e6 +1003a252: 2100 movs r1, #0 +1003a254: 463a mov r2, r7 +1003a256: f7e2 fdbb bl 1001cdd0 +1003a25a: 2303 movs r3, #3 +1003a25c: 4628 mov r0, r5 +1003a25e: f840 3b04 str.w r3, [r0], #4 +1003a262: 21ff movs r1, #255 ; 0xff +1003a264: 2206 movs r2, #6 +1003a266: f7e2 fdb3 bl 1001cdd0 +1003a26a: 8cb3 ldrh r3, [r6, #36] ; 0x24 +1003a26c: 2b03 cmp r3, #3 +1003a26e: f63f af3a bhi.w 1003a0e6 +1003a272: e8df f003 tbb [pc, r3] +1003a276: 0802 .short 0x0802 +1003a278: 0604 .short 0x0604 +1003a27a: 49b5 ldr r1, [pc, #724] ; (1003a550 ) +1003a27c: e004 b.n 1003a288 +1003a27e: 49b5 ldr r1, [pc, #724] ; (1003a554 ) +1003a280: e002 b.n 1003a288 +1003a282: 49b5 ldr r1, [pc, #724] ; (1003a558 ) +1003a284: e000 b.n 1003a288 +1003a286: 49b5 ldr r1, [pc, #724] ; (1003a55c ) +1003a288: f105 090c add.w r9, r5, #12 +1003a28c: 2210 movs r2, #16 +1003a28e: 4648 mov r0, r9 +1003a290: f007 ff8a bl 100421a8 +1003a294: 6833 ldr r3, [r6, #0] +1003a296: 071a lsls r2, r3, #28 +1003a298: bf44 itt mi +1003a29a: 2301 movmi r3, #1 +1003a29c: 772b strbmi r3, [r5, #28] +1003a29e: 8cb3 ldrh r3, [r6, #36] ; 0x24 +1003a2a0: 2b01 cmp r3, #1 +1003a2a2: d004 beq.n 1003a2ae +1003a2a4: 6833 ldr r3, [r6, #0] +1003a2a6: 075b lsls r3, r3, #29 +1003a2a8: bf44 itt mi +1003a2aa: 2300 movmi r3, #0 +1003a2ac: 772b strbmi r3, [r5, #28] +1003a2ae: 7da3 ldrb r3, [r4, #22] +1003a2b0: 3b01 subs r3, #1 +1003a2b2: f885 3024 strb.w r3, [r5, #36] ; 0x24 +1003a2b6: 6833 ldr r3, [r6, #0] +1003a2b8: 079c lsls r4, r3, #30 +1003a2ba: d506 bpl.n 1003a2ca +1003a2bc: f105 0025 add.w r0, r5, #37 ; 0x25 +1003a2c0: f106 010c add.w r1, r6, #12 +1003a2c4: 2208 movs r2, #8 +1003a2c6: f7e2 fd71 bl 1001cdac +1003a2ca: 8cf3 ldrh r3, [r6, #38] ; 0x26 +1003a2cc: b13b cbz r3, 1003a2de +1003a2ce: 85eb strh r3, [r5, #46] ; 0x2e +1003a2d0: f105 0030 add.w r0, r5, #48 ; 0x30 +1003a2d4: f106 0128 add.w r1, r6, #40 ; 0x28 +1003a2d8: 8cf2 ldrh r2, [r6, #38] ; 0x26 +1003a2da: f7e2 fd67 bl 1001cdac +1003a2de: f8d8 3010 ldr.w r3, [r8, #16] +1003a2e2: 681c ldr r4, [r3, #0] +1003a2e4: 2300 movs r3, #0 +1003a2e6: 622b str r3, [r5, #32] +1003a2e8: 76eb strb r3, [r5, #27] +1003a2ea: 8deb ldrh r3, [r5, #46] ; 0x2e +1003a2ec: 3330 adds r3, #48 ; 0x30 +1003a2ee: 429f cmp r7, r3 +1003a2f0: f0c0 82b1 bcc.w 1003a856 +1003a2f4: 686b ldr r3, [r5, #4] +1003a2f6: 3301 adds r3, #1 +1003a2f8: f040 82ad bne.w 1003a856 +1003a2fc: 892a ldrh r2, [r5, #8] +1003a2fe: f64f 73ff movw r3, #65535 ; 0xffff +1003a302: 429a cmp r2, r3 +1003a304: f040 82a7 bne.w 1003a856 +1003a308: f895 3024 ldrb.w r3, [r5, #36] ; 0x24 +1003a30c: 2b03 cmp r3, #3 +1003a30e: f200 82a2 bhi.w 1003a856 +1003a312: 4648 mov r0, r9 +1003a314: 4991 ldr r1, [pc, #580] ; (1003a55c ) +1003a316: f007 ff2f bl 10042178 +1003a31a: 4683 mov fp, r0 +1003a31c: 2800 cmp r0, #0 +1003a31e: d16d bne.n 1003a3fc +1003a320: 2301 movs r3, #1 +1003a322: f8c4 0fe0 str.w r0, [r4, #4064] ; 0xfe0 +1003a326: f8c4 3c7c str.w r3, [r4, #3196] ; 0xc7c +1003a32a: f8c4 3cd4 str.w r3, [r4, #3284] ; 0xcd4 +1003a32e: f895 8024 ldrb.w r8, [r5, #36] ; 0x24 +1003a332: 8deb ldrh r3, [r5, #46] ; 0x2e +1003a334: f1b8 0f04 cmp.w r8, #4 +1003a338: d87c bhi.n 1003a434 +1003a33a: 2b00 cmp r3, #0 +1003a33c: f000 828b beq.w 1003a856 +1003a340: 2b05 cmp r3, #5 +1003a342: bf8c ite hi +1003a344: f04f 0a0d movhi.w sl, #13 +1003a348: f04f 0a05 movls.w sl, #5 +1003a34c: f10a 090c add.w r9, sl, #12 +1003a350: 4648 mov r0, r9 +1003a352: f7e2 fcf7 bl 1001cd44 +1003a356: 4606 mov r6, r0 +1003a358: b908 cbnz r0, 1003a35e +1003a35a: 2300 movs r3, #0 +1003a35c: e27d b.n 1003a85a +1003a35e: 4659 mov r1, fp +1003a360: 464a mov r2, r9 +1003a362: f7e2 fd35 bl 1001cdd0 +1003a366: f1ba 0f0d cmp.w sl, #13 +1003a36a: f8c6 a008 str.w sl, [r6, #8] +1003a36e: f8c6 9000 str.w r9, [r6] +1003a372: d104 bne.n 1003a37e +1003a374: 2305 movs r3, #5 +1003a376: f8c4 3c7c str.w r3, [r4, #3196] ; 0xc7c +1003a37a: f8c4 3cd4 str.w r3, [r4, #3284] ; 0xcd4 +1003a37e: f048 4300 orr.w r3, r8, #2147483648 ; 0x80000000 +1003a382: 6073 str r3, [r6, #4] +1003a384: f106 030c add.w r3, r6, #12 +1003a388: 4618 mov r0, r3 +1003a38a: f105 0130 add.w r1, r5, #48 ; 0x30 +1003a38e: 4652 mov r2, sl +1003a390: 9300 str r3, [sp, #0] +1003a392: f7e2 fd0b bl 1001cdac +1003a396: 4620 mov r0, r4 +1003a398: f44f 61fa mov.w r1, #2000 ; 0x7d0 +1003a39c: 4a70 ldr r2, [pc, #448] ; (1003a560 ) +1003a39e: f7f1 fc87 bl 1002bcb0 <_rtw_pwr_wakeup> +1003a3a2: 9b00 ldr r3, [sp, #0] +1003a3a4: 2800 cmp r0, #0 +1003a3a6: f000 824e beq.w 1003a846 +1003a3aa: f895 a01c ldrb.w sl, [r5, #28] +1003a3ae: f1ba 0f00 cmp.w sl, #0 +1003a3b2: d009 beq.n 1003a3c8 +1003a3b4: 4620 mov r0, r4 +1003a3b6: 4631 mov r1, r6 +1003a3b8: f002 fb96 bl 1003cae8 +1003a3bc: 2800 cmp r0, #0 +1003a3be: bf0c ite eq +1003a3c0: f06f 045e mvneq.w r4, #94 ; 0x5e +1003a3c4: 2400 movne r4, #0 +1003a3c6: e240 b.n 1003a84a +1003a3c8: f1b8 0f04 cmp.w r8, #4 +1003a3cc: f000 823b beq.w 1003a846 +1003a3d0: f604 4b78 addw fp, r4, #3192 ; 0xc78 +1003a3d4: eb0b 1008 add.w r0, fp, r8, lsl #4 +1003a3d8: 4619 mov r1, r3 +1003a3da: 300c adds r0, #12 +1003a3dc: 68b2 ldr r2, [r6, #8] +1003a3de: f7e2 fce5 bl 1001cdac +1003a3e2: 68b3 ldr r3, [r6, #8] +1003a3e4: eb04 0288 add.w r2, r4, r8, lsl #2 +1003a3e8: f8c2 3cc4 str.w r3, [r2, #3268] ; 0xcc4 +1003a3ec: 4620 mov r0, r4 +1003a3ee: 4659 mov r1, fp +1003a3f0: 4642 mov r2, r8 +1003a3f2: 4653 mov r3, sl +1003a3f4: f7e9 ff64 bl 100242c0 +1003a3f8: 4654 mov r4, sl +1003a3fa: e226 b.n 1003a84a +1003a3fc: 4648 mov r0, r9 +1003a3fe: 4955 ldr r1, [pc, #340] ; (1003a554 ) +1003a400: f007 feba bl 10042178 +1003a404: b938 cbnz r0, 1003a416 +1003a406: 2307 movs r3, #7 +1003a408: f8c4 3fdc str.w r3, [r4, #4060] ; 0xfdc +1003a40c: 2302 movs r3, #2 +1003a40e: f8c4 3c7c str.w r3, [r4, #3196] ; 0xc7c +1003a412: f8c4 3cd4 str.w r3, [r4, #3284] ; 0xcd4 +1003a416: 4648 mov r0, r9 +1003a418: 494f ldr r1, [pc, #316] ; (1003a558 ) +1003a41a: f007 fead bl 10042178 +1003a41e: 2800 cmp r0, #0 +1003a420: d19b bne.n 1003a35a +1003a422: 2307 movs r3, #7 +1003a424: f8c4 3fdc str.w r3, [r4, #4060] ; 0xfdc +1003a428: 2304 movs r3, #4 +1003a42a: f8c4 3c7c str.w r3, [r4, #3196] ; 0xc7c +1003a42e: f8c4 3cd4 str.w r3, [r4, #3284] ; 0xcd4 +1003a432: e792 b.n 1003a35a +1003a434: f06f 0a15 mvn.w sl, #21 +1003a438: 4628 mov r0, r5 +1003a43a: 4639 mov r1, r7 +1003a43c: e1da b.n 1003a7f4 +1003a43e: f8d5 3c7c ldr.w r3, [r5, #3196] ; 0xc7c +1003a442: 2200 movs r2, #0 +1003a444: 6926 ldr r6, [r4, #16] +1003a446: 82e2 strh r2, [r4, #22] +1003a448: 2b05 cmp r3, #5 +1003a44a: f63f ae4c bhi.w 1003a0e6 +1003a44e: a101 add r1, pc, #4 ; (adr r1, 1003a454 ) +1003a450: f851 f023 ldr.w pc, [r1, r3, lsl #2] +1003a454: 1003a46d .word 0x1003a46d +1003a458: 1003a471 .word 0x1003a471 +1003a45c: 1003a495 .word 0x1003a495 +1003a460: 1003a0e7 .word 0x1003a0e7 +1003a464: 1003a499 .word 0x1003a499 +1003a468: 1003a471 .word 0x1003a471 +1003a46c: 84b2 strh r2, [r6, #36] ; 0x24 +1003a46e: e226 b.n 1003a8be +1003a470: 2301 movs r3, #1 +1003a472: 84b3 strh r3, [r6, #36] ; 0x24 +1003a474: f8d5 3c80 ldr.w r3, [r5, #3200] ; 0xc80 +1003a478: f106 0028 add.w r0, r6, #40 ; 0x28 +1003a47c: 82e3 strh r3, [r4, #22] +1003a47e: b29b uxth r3, r3 +1003a480: eb05 1103 add.w r1, r5, r3, lsl #4 +1003a484: f601 4184 addw r1, r1, #3204 ; 0xc84 +1003a488: 2210 movs r2, #16 +1003a48a: f7e2 fc8f bl 1001cdac +1003a48e: 2310 movs r3, #16 +1003a490: 84f3 strh r3, [r6, #38] ; 0x26 +1003a492: e214 b.n 1003a8be +1003a494: 2302 movs r3, #2 +1003a496: e000 b.n 1003a49a +1003a498: 2303 movs r3, #3 +1003a49a: 84b3 strh r3, [r6, #36] ; 0x24 +1003a49c: e20f b.n 1003a8be +1003a49e: f895 386d ldrb.w r3, [r5, #2157] ; 0x86d +1003a4a2: b153 cbz r3, 1003a4ba +1003a4a4: f605 002b addw r0, r5, #2091 ; 0x82b +1003a4a8: 6921 ldr r1, [r4, #16] +1003a4aa: 8aa2 ldrh r2, [r4, #20] +1003a4ac: f7e2 fc7e bl 1001cdac +1003a4b0: 8aa3 ldrh r3, [r4, #20] +1003a4b2: 441d add r5, r3 +1003a4b4: 2300 movs r3, #0 +1003a4b6: f885 382b strb.w r3, [r5, #2091] ; 0x82b +1003a4ba: f8d8 3010 ldr.w r3, [r8, #16] +1003a4be: 6925 ldr r5, [r4, #16] +1003a4c0: 681e ldr r6, [r3, #0] +1003a4c2: f241 73b1 movw r3, #6065 ; 0x17b1 +1003a4c6: 5cf0 ldrb r0, [r6, r3] +1003a4c8: 8aa3 ldrh r3, [r4, #20] +1003a4ca: 1e5a subs r2, r3, #1 +1003a4cc: 2a3e cmp r2, #62 ; 0x3e +1003a4ce: d808 bhi.n 1003a4e2 +1003a4d0: 4824 ldr r0, [pc, #144] ; (1003a564 ) +1003a4d2: 2100 movs r1, #0 +1003a4d4: 2241 movs r2, #65 ; 0x41 +1003a4d6: f7e2 fc7b bl 1001cdd0 +1003a4da: f506 5095 add.w r0, r6, #4768 ; 0x12a0 +1003a4de: 3014 adds r0, #20 +1003a4e0: e014 b.n 1003a50c +1003a4e2: 2b40 cmp r3, #64 ; 0x40 +1003a4e4: f47f adff bne.w 1003a0e6 +1003a4e8: 4b1f ldr r3, [pc, #124] ; (1003a568 ) +1003a4ea: 2800 cmp r0, #0 +1003a4ec: bf14 ite ne +1003a4ee: 2028 movne r0, #40 ; 0x28 +1003a4f0: 2000 moveq r0, #0 +1003a4f2: 4418 add r0, r3 +1003a4f4: 4629 mov r1, r5 +1003a4f6: 2220 movs r2, #32 +1003a4f8: f7fe fdf6 bl 100390e8 +1003a4fc: f506 5095 add.w r0, r6, #4768 ; 0x12a0 +1003a500: 3014 adds r0, #20 +1003a502: 2100 movs r1, #0 +1003a504: 2241 movs r2, #65 ; 0x41 +1003a506: f7e2 fc63 bl 1001cdd0 +1003a50a: 4816 ldr r0, [pc, #88] ; (1003a564 ) +1003a50c: 4629 mov r1, r5 +1003a50e: 8aa2 ldrh r2, [r4, #20] +1003a510: f7e2 fc4c bl 1001cdac +1003a514: e1d3 b.n 1003a8be +1003a516: 4628 mov r0, r5 +1003a518: f44f 61fa mov.w r1, #2000 ; 0x7d0 +1003a51c: 4a13 ldr r2, [pc, #76] ; (1003a56c ) +1003a51e: f7f1 fbc7 bl 1002bcb0 <_rtw_pwr_wakeup> +1003a522: 2800 cmp r0, #0 +1003a524: f43f addf beq.w 1003a0e6 +1003a528: f241 7311 movw r3, #5905 ; 0x1711 +1003a52c: 5ceb ldrb r3, [r5, r3] +1003a52e: 2b00 cmp r3, #0 +1003a530: f43f add9 beq.w 1003a0e6 +1003a534: 6923 ldr r3, [r4, #16] +1003a536: 2b03 cmp r3, #3 +1003a538: f200 80c6 bhi.w 1003a6c8 +1003a53c: e8df f003 tbb [pc, r3] +1003a540: 04061802 .word 0x04061802 +1003a544: 2402 movs r4, #2 +1003a546: e014 b.n 1003a572 +1003a548: 2404 movs r4, #4 +1003a54a: e012 b.n 1003a572 +1003a54c: 2401 movs r4, #1 +1003a54e: e010 b.n 1003a572 +1003a550: 1004b346 .word 0x1004b346 +1003a554: 1004b34f .word 0x1004b34f +1003a558: 1004b354 .word 0x1004b354 +1003a55c: 1004b34b .word 0x1004b34b +1003a560: 1004b397 .word 0x1004b397 +1003a564: 100531be .word 0x100531be +1003a568: 100531ff .word 0x100531ff +1003a56c: 1004b3ca .word 0x1004b3ca +1003a570: 2400 movs r4, #0 +1003a572: 4628 mov r0, r5 +1003a574: 4621 mov r1, r4 +1003a576: f002 fa2d bl 1003c9d4 +1003a57a: 2800 cmp r0, #0 +1003a57c: f43f adb3 beq.w 1003a0e6 +1003a580: 4628 mov r0, r5 +1003a582: 4621 mov r1, r4 +1003a584: f7f3 fbea bl 1002dd5c +1003a588: e199 b.n 1003a8be +1003a58a: 692a ldr r2, [r5, #16] +1003a58c: f012 0108 ands.w r1, r2, #8 +1003a590: f040 816c bne.w 1003a86c +1003a594: e163 b.n 1003a85e +1003a596: 2100 movs r1, #0 +1003a598: f104 0210 add.w r2, r4, #16 +1003a59c: 6923 ldr r3, [r4, #16] +1003a59e: f7fe fdff bl 100391a0 +1003a5a2: e094 b.n 1003a6ce +1003a5a4: 692b ldr r3, [r5, #16] +1003a5a6: f013 0301 ands.w r3, r3, #1 +1003a5aa: f000 816b beq.w 1003a884 +1003a5ae: f995 3b74 ldrsb.w r3, [r5, #2932] ; 0xb74 +1003a5b2: 425b negs r3, r3 +1003a5b4: 6123 str r3, [r4, #16] +1003a5b6: 2300 movs r3, #0 +1003a5b8: 7523 strb r3, [r4, #20] +1003a5ba: e5da b.n 1003a172 +1003a5bc: 7c23 ldrb r3, [r4, #16] +1003a5be: b32b cbz r3, 1003a60c +1003a5c0: 2b01 cmp r3, #1 +1003a5c2: d025 beq.n 1003a610 +1003a5c4: 2b02 cmp r3, #2 +1003a5c6: d019 beq.n 1003a5fc +1003a5c8: 2b03 cmp r3, #3 +1003a5ca: d023 beq.n 1003a614 +1003a5cc: 2b04 cmp r3, #4 +1003a5ce: d017 beq.n 1003a600 +1003a5d0: 2b05 cmp r3, #5 +1003a5d2: d021 beq.n 1003a618 +1003a5d4: 2b06 cmp r3, #6 +1003a5d6: d015 beq.n 1003a604 +1003a5d8: 2b07 cmp r3, #7 +1003a5da: d015 beq.n 1003a608 +1003a5dc: 2b08 cmp r3, #8 +1003a5de: d015 beq.n 1003a60c +1003a5e0: 2b09 cmp r3, #9 +1003a5e2: d015 beq.n 1003a610 +1003a5e4: 2b0a cmp r3, #10 +1003a5e6: d015 beq.n 1003a614 +1003a5e8: f1a3 020b sub.w r2, r3, #11 +1003a5ec: 2a12 cmp r2, #18 +1003a5ee: d913 bls.n 1003a618 +1003a5f0: 3b1e subs r3, #30 +1003a5f2: 2b98 cmp r3, #152 ; 0x98 +1003a5f4: bf94 ite ls +1003a5f6: 2121 movls r1, #33 ; 0x21 +1003a5f8: 2120 movhi r1, #32 +1003a5fa: e00e b.n 1003a61a +1003a5fc: 2122 movs r1, #34 ; 0x22 +1003a5fe: e00c b.n 1003a61a +1003a600: 2124 movs r1, #36 ; 0x24 +1003a602: e00a b.n 1003a61a +1003a604: 2147 movs r1, #71 ; 0x47 +1003a606: e008 b.n 1003a61a +1003a608: 2158 movs r1, #88 ; 0x58 +1003a60a: e006 b.n 1003a61a +1003a60c: 2120 movs r1, #32 +1003a60e: e004 b.n 1003a61a +1003a610: 2121 movs r1, #33 ; 0x21 +1003a612: e002 b.n 1003a61a +1003a614: 2123 movs r1, #35 ; 0x23 +1003a616: e000 b.n 1003a61a +1003a618: 212a movs r1, #42 ; 0x2a +1003a61a: 4628 mov r0, r5 +1003a61c: 2201 movs r2, #1 +1003a61e: f7e8 fd60 bl 100230e2 +1003a622: f1b0 0a01 subs.w sl, r0, #1 +1003a626: bf18 it ne +1003a628: f06f 0a00 mvnne.w sl, #0 +1003a62c: e393 b.n 1003ad56 +1003a62e: 4618 mov r0, r3 +1003a630: 7da1 ldrb r1, [r4, #22] +1003a632: f7fe fb39 bl 10038ca8 +1003a636: e04a b.n 1003a6ce +1003a638: 692b ldr r3, [r5, #16] +1003a63a: f013 0301 ands.w r3, r3, #1 +1003a63e: f040 8126 bne.w 1003a88e +1003a642: f895 24f6 ldrb.w r2, [r5, #1270] ; 0x4f6 +1003a646: 75a2 strb r2, [r4, #22] +1003a648: e593 b.n 1003a172 +1003a64a: 2300 movs r3, #0 +1003a64c: 4628 mov r0, r5 +1003a64e: f44f 61fa mov.w r1, #2000 ; 0x7d0 +1003a652: 4aa3 ldr r2, [pc, #652] ; (1003a8e0 ) +1003a654: 6926 ldr r6, [r4, #16] +1003a656: 930d str r3, [sp, #52] ; 0x34 +1003a658: f7f1 fb2a bl 1002bcb0 <_rtw_pwr_wakeup> +1003a65c: 2800 cmp r0, #0 +1003a65e: f43f ad42 beq.w 1003a0e6 +1003a662: f241 63f8 movw r3, #5880 ; 0x16f8 +1003a666: 58eb ldr r3, [r5, r3] +1003a668: 2b00 cmp r3, #0 +1003a66a: f47f ad3c bne.w 1003a0e6 +1003a66e: f241 7384 movw r3, #6020 ; 0x1784 +1003a672: 58eb ldr r3, [r5, r3] +1003a674: 2b00 cmp r3, #0 +1003a676: f43f ad36 beq.w 1003a0e6 +1003a67a: f241 7311 movw r3, #5905 ; 0x1711 +1003a67e: 5ceb ldrb r3, [r5, r3] +1003a680: 2b00 cmp r3, #0 +1003a682: f43f ad30 beq.w 1003a0e6 +1003a686: f895 3488 ldrb.w r3, [r5, #1160] ; 0x488 +1003a68a: 2b01 cmp r3, #1 +1003a68c: f000 8113 beq.w 1003a8b6 +1003a690: 692f ldr r7, [r5, #16] +1003a692: f417 6708 ands.w r7, r7, #2176 ; 0x880 +1003a696: f040 810e bne.w 1003a8b6 +1003a69a: e0fc b.n 1003a896 +1003a69c: f241 33ec movw r3, #5100 ; 0x13ec +1003a6a0: 5ceb ldrb r3, [r5, r3] +1003a6a2: b11b cbz r3, 1003a6ac +1003a6a4: f241 63f8 movw r3, #5880 ; 0x16f8 +1003a6a8: 58eb ldr r3, [r5, r3] +1003a6aa: b96b cbnz r3, 1003a6c8 +1003a6ac: 26c9 movs r6, #201 ; 0xc9 +1003a6ae: 692b ldr r3, [r5, #16] +1003a6b0: f413 6f08 tst.w r3, #2176 ; 0x880 +1003a6b4: f040 8139 bne.w 1003a92a +1003a6b8: f8b5 3048 ldrh.w r3, [r5, #72] ; 0x48 +1003a6bc: 82e3 strh r3, [r4, #22] +1003a6be: 2300 movs r3, #0 +1003a6c0: 642b str r3, [r5, #64] ; 0x40 +1003a6c2: f8a5 3048 strh.w r3, [r5, #72] ; 0x48 +1003a6c6: e554 b.n 1003a172 +1003a6c8: f06f 0a15 mvn.w sl, #21 +1003a6cc: e343 b.n 1003ad56 +1003a6ce: 4682 mov sl, r0 +1003a6d0: e341 b.n 1003ad56 +1003a6d2: f895 386d ldrb.w r3, [r5, #2157] ; 0x86d +1003a6d6: b133 cbz r3, 1003a6e6 +1003a6d8: f7d1 fe4a bl 1000c370 +1003a6dc: b118 cbz r0, 1003a6e6 +1003a6de: f7d1 fe4d bl 1000c37c +1003a6e2: f885 086c strb.w r0, [r5, #2156] ; 0x86c +1003a6e6: 8aa5 ldrh r5, [r4, #20] +1003a6e8: 6926 ldr r6, [r4, #16] +1003a6ea: f7e2 fa81 bl 1001cbf0 +1003a6ee: 2000 movs r0, #0 +1003a6f0: f001 f9e4 bl 1003babc +1003a6f4: f7e2 fa7e bl 1001cbf4 +1003a6f8: 4628 mov r0, r5 +1003a6fa: f001 f9fb bl 1003baf4 +1003a6fe: 4604 mov r4, r0 +1003a700: b178 cbz r0, 1003a722 +1003a702: 462a mov r2, r5 +1003a704: 6940 ldr r0, [r0, #20] +1003a706: 4631 mov r1, r6 +1003a708: f7e2 fb50 bl 1001cdac +1003a70c: 4629 mov r1, r5 +1003a70e: 4620 mov r0, r4 +1003a710: f000 fe30 bl 1003b374 +1003a714: 2000 movs r0, #0 +1003a716: 4621 mov r1, r4 +1003a718: f001 fa0c bl 1003bb34 +1003a71c: f04f 0a00 mov.w sl, #0 +1003a720: e001 b.n 1003a726 +1003a722: f04f 3aff mov.w sl, #4294967295 +1003a726: f7e2 fa63 bl 1001cbf0 +1003a72a: 2000 movs r0, #0 +1003a72c: f001 f9d0 bl 1003bad0 +1003a730: f7e2 fa60 bl 1001cbf4 +1003a734: e30f b.n 1003ad56 +1003a736: 7c23 ldrb r3, [r4, #16] +1003a738: b10b cbz r3, 1003a73e +1003a73a: 2307 movs r3, #7 +1003a73c: e000 b.n 1003a740 +1003a73e: 2306 movs r3, #6 +1003a740: 4628 mov r0, r5 +1003a742: 2109 movs r1, #9 +1003a744: aa12 add r2, sp, #72 ; 0x48 +1003a746: f88d 3048 strb.w r3, [sp, #72] ; 0x48 +1003a74a: f7fd f8fc bl 10037946 +1003a74e: e0b6 b.n 1003a8be +1003a750: 2320 movs r3, #32 +1003a752: 2100 movs r1, #0 +1003a754: 2211 movs r2, #17 +1003a756: a80d add r0, sp, #52 ; 0x34 +1003a758: f8ad 3018 strh.w r3, [sp, #24] +1003a75c: 9107 str r1, [sp, #28] +1003a75e: f007 fdd4 bl 1004230a +1003a762: a809 add r0, sp, #36 ; 0x24 +1003a764: f104 0110 add.w r1, r4, #16 +1003a768: 2210 movs r2, #16 +1003a76a: f7e2 fb1f bl 1001cdac +1003a76e: f8bd 9028 ldrh.w r9, [sp, #40] ; 0x28 +1003a772: f109 0001 add.w r0, r9, #1 +1003a776: f7e2 fafb bl 1001cd70 +1003a77a: 9002 str r0, [sp, #8] +1003a77c: 2800 cmp r0, #0 +1003a77e: d03c beq.n 1003a7fa +1003a780: 9909 ldr r1, [sp, #36] ; 0x24 +1003a782: 464a mov r2, r9 +1003a784: f7e2 fb12 bl 1001cdac +1003a788: 9b02 ldr r3, [sp, #8] +1003a78a: 4956 ldr r1, [pc, #344] ; (1003a8e4 ) +1003a78c: 4618 mov r0, r3 +1003a78e: aa0d add r2, sp, #52 ; 0x34 +1003a790: 9307 str r3, [sp, #28] +1003a792: f007 fea5 bl 100424e0 +1003a796: a80d add r0, sp, #52 ; 0x34 +1003a798: f007 fcfa bl 10042190 +1003a79c: 4607 mov r7, r0 +1003a79e: b100 cbz r0, 1003a7a2 +1003a7a0: 1c47 adds r7, r0, #1 +1003a7a2: 9b07 ldr r3, [sp, #28] +1003a7a4: 4d50 ldr r5, [pc, #320] ; (1003a8e8 ) +1003a7a6: 443b add r3, r7 +1003a7a8: 9307 str r3, [sp, #28] +1003a7aa: f04f 36ff mov.w r6, #4294967295 +1003a7ae: 3601 adds r6, #1 +1003a7b0: 2e1a cmp r6, #26 +1003a7b2: d009 beq.n 1003a7c8 +1003a7b4: 4628 mov r0, r5 +1003a7b6: a90d add r1, sp, #52 ; 0x34 +1003a7b8: f007 fcde bl 10042178 +1003a7bc: f1a5 0a08 sub.w sl, r5, #8 +1003a7c0: 3518 adds r5, #24 +1003a7c2: 2800 cmp r0, #0 +1003a7c4: d1f3 bne.n 1003a7ae +1003a7c6: e0b7 b.n 1003a938 +1003a7c8: 2100 movs r1, #0 +1003a7ca: 9101 str r1, [sp, #4] +1003a7cc: 460d mov r5, r1 +1003a7ce: f06f 0a5e mvn.w sl, #94 ; 0x5e +1003a7d2: 9802 ldr r0, [sp, #8] +1003a7d4: 4649 mov r1, r9 +1003a7d6: f7e2 fae1 bl 1001cd9c +1003a7da: f04f 0800 mov.w r8, #0 +1003a7de: 4646 mov r6, r8 +1003a7e0: b11d cbz r5, 1003a7ea +1003a7e2: 4628 mov r0, r5 +1003a7e4: 9901 ldr r1, [sp, #4] +1003a7e6: f7e2 fad9 bl 1001cd9c +1003a7ea: 2e00 cmp r6, #0 +1003a7ec: f000 82b3 beq.w 1003ad56 +1003a7f0: 4630 mov r0, r6 +1003a7f2: 4641 mov r1, r8 +1003a7f4: f7e2 fad2 bl 1001cd9c +1003a7f8: e2ad b.n 1003ad56 +1003a7fa: f06f 0a0b mvn.w sl, #11 +1003a7fe: e2aa b.n 1003ad56 +1003a800: f06f 0a5e mvn.w sl, #94 ; 0x5e +1003a804: e2a7 b.n 1003ad56 +1003a806: f885 67e0 strb.w r6, [r5, #2016] ; 0x7e0 +1003a80a: 4628 mov r0, r5 +1003a80c: f7e8 fb51 bl 10022eb2 +1003a810: 4628 mov r0, r5 +1003a812: f7e9 fa92 bl 10023d3a +1003a816: 4628 mov r0, r5 +1003a818: 4631 mov r1, r6 +1003a81a: f7e9 fa21 bl 10023c60 +1003a81e: 46ba mov sl, r7 +1003a820: e299 b.n 1003ad56 +1003a822: 6fe2 ldr r2, [r4, #124] ; 0x7c +1003a824: f8d5 30f8 ldr.w r3, [r5, #248] ; 0xf8 +1003a828: 429a cmp r2, r3 +1003a82a: f47f ac3a bne.w 1003a0a2 +1003a82e: e451 b.n 1003a0d4 +1003a830: 4628 mov r0, r5 +1003a832: f7e8 fb3e bl 10022eb2 +1003a836: 4628 mov r0, r5 +1003a838: f7e9 fa7f bl 10023d3a +1003a83c: 4628 mov r0, r5 +1003a83e: 2101 movs r1, #1 +1003a840: f7e9 fa0e bl 10023c60 +1003a844: e4b0 b.n 1003a1a8 +1003a846: f06f 045e mvn.w r4, #94 ; 0x5e +1003a84a: 4630 mov r0, r6 +1003a84c: 4649 mov r1, r9 +1003a84e: f7e2 faa5 bl 1001cd9c +1003a852: 46a2 mov sl, r4 +1003a854: e5f0 b.n 1003a438 +1003a856: f06f 0315 mvn.w r3, #21 +1003a85a: 469a mov sl, r3 +1003a85c: e5ec b.n 1003a438 +1003a85e: f012 0360 ands.w r3, r2, #96 ; 0x60 +1003a862: d006 beq.n 1003a872 +1003a864: 2301 movs r3, #1 +1003a866: 6123 str r3, [r4, #16] +1003a868: 468a mov sl, r1 +1003a86a: e274 b.n 1003ad56 +1003a86c: 2302 movs r3, #2 +1003a86e: 6123 str r3, [r4, #16] +1003a870: e025 b.n 1003a8be +1003a872: f012 0210 ands.w r2, r2, #16 +1003a876: d002 beq.n 1003a87e +1003a878: 2203 movs r2, #3 +1003a87a: 6122 str r2, [r4, #16] +1003a87c: e479 b.n 1003a172 +1003a87e: 6122 str r2, [r4, #16] +1003a880: 4692 mov sl, r2 +1003a882: e268 b.n 1003ad56 +1003a884: 2201 movs r2, #1 +1003a886: 6123 str r3, [r4, #16] +1003a888: 7523 strb r3, [r4, #20] +1003a88a: 7562 strb r2, [r4, #21] +1003a88c: e471 b.n 1003a172 +1003a88e: f8d5 30e4 ldr.w r3, [r5, #228] ; 0xe4 +1003a892: 75a3 strb r3, [r4, #22] +1003a894: e013 b.n 1003a8be +1003a896: 4628 mov r0, r5 +1003a898: f44f 6118 mov.w r1, #2432 ; 0x980 +1003a89c: f7e9 ffd7 bl 1002484e +1003a8a0: 2801 cmp r0, #1 +1003a8a2: 4680 mov r8, r0 +1003a8a4: d10e bne.n 1003a8c4 +1003a8a6: 4628 mov r0, r5 +1003a8a8: f44f 6100 mov.w r1, #2048 ; 0x800 +1003a8ac: f7e9 ffcf bl 1002484e +1003a8b0: b108 cbz r0, 1003a8b6 +1003a8b2: f885 84e1 strb.w r8, [r5, #1249] ; 0x4e1 +1003a8b6: 4628 mov r0, r5 +1003a8b8: 2101 movs r1, #1 +1003a8ba: f7e9 fa4f bl 10023d5c +1003a8be: f04f 0a00 mov.w sl, #0 +1003a8c2: e248 b.n 1003ad56 +1003a8c4: 642e str r6, [r5, #64] ; 0x40 +1003a8c6: 8ae3 ldrh r3, [r4, #22] +1003a8c8: f3c3 030b ubfx r3, r3, #0, #12 +1003a8cc: f8a5 304a strh.w r3, [r5, #74] ; 0x4a +1003a8d0: 8aa3 ldrh r3, [r4, #20] +1003a8d2: f8a5 7048 strh.w r7, [r5, #72] ; 0x48 +1003a8d6: 646b str r3, [r5, #68] ; 0x44 +1003a8d8: 8aa3 ldrh r3, [r4, #20] +1003a8da: b93b cbnz r3, 1003a8ec +1003a8dc: 2100 movs r1, #0 +1003a8de: e01e b.n 1003a91e +1003a8e0: 1004aefc .word 0x1004aefc +1003a8e4: 1004b359 .word 0x1004b359 +1003a8e8: 1004af14 .word 0x1004af14 +1003a8ec: 2e00 cmp r6, #0 +1003a8ee: d0f5 beq.n 1003a8dc +1003a8f0: 2204 movs r2, #4 +1003a8f2: a80d add r0, sp, #52 ; 0x34 +1003a8f4: 4631 mov r1, r6 +1003a8f6: f007 fc33 bl 10042160 +1003a8fa: 9a0d ldr r2, [sp, #52] ; 0x34 +1003a8fc: 1e53 subs r3, r2, #1 +1003a8fe: 2b1f cmp r3, #31 +1003a900: d8ec bhi.n 1003a8dc +1003a902: ac1c add r4, sp, #112 ; 0x70 +1003a904: 1d31 adds r1, r6, #4 +1003a906: a813 add r0, sp, #76 ; 0x4c +1003a908: f844 2d28 str.w r2, [r4, #-40]! +1003a90c: f007 fc28 bl 10042160 +1003a910: 9a0d ldr r2, [sp, #52] ; 0x34 +1003a912: 4639 mov r1, r7 +1003a914: 4630 mov r0, r6 +1003a916: 3204 adds r2, #4 +1003a918: f007 fc28 bl 1004216c +1003a91c: 4621 mov r1, r4 +1003a91e: 4628 mov r0, r5 +1003a920: 2201 movs r2, #1 +1003a922: f002 f8a8 bl 1003ca76 +1003a926: f7ff bbee b.w 1003a106 +1003a92a: 201e movs r0, #30 +1003a92c: f7e2 fb8e bl 1001d04c +1003a930: 3e01 subs r6, #1 +1003a932: f47f aebc bne.w 1003a6ae +1003a936: e6bf b.n 1003a6b8 +1003a938: f8da 5000 ldr.w r5, [sl] +1003a93c: f648 13ef movw r3, #35311 ; 0x89ef +1003a940: 429d cmp r5, r3 +1003a942: f240 81e5 bls.w 1003ad10 +1003a946: 4682 mov sl, r0 +1003a948: 9004 str r0, [sp, #16] +1003a94a: a80d add r0, sp, #52 ; 0x34 +1003a94c: 49a4 ldr r1, [pc, #656] ; (1003abe0 ) +1003a94e: f007 fc13 bl 10042178 +1003a952: b918 cbnz r0, 1003a95c +1003a954: f640 2128 movw r1, #2600 ; 0xa28 +1003a958: 9101 str r1, [sp, #4] +1003a95a: e01c b.n 1003a996 +1003a95c: a80d add r0, sp, #52 ; 0x34 +1003a95e: 49a1 ldr r1, [pc, #644] ; (1003abe4 ) +1003a960: f007 fc0a bl 10042178 +1003a964: 2800 cmp r0, #0 +1003a966: d0f5 beq.n 1003a954 +1003a968: a80d add r0, sp, #52 ; 0x34 +1003a96a: 499f ldr r1, [pc, #636] ; (1003abe8 ) +1003a96c: f007 fc04 bl 10042178 +1003a970: 2800 cmp r0, #0 +1003a972: d0ef beq.n 1003a954 +1003a974: a80d add r0, sp, #52 ; 0x34 +1003a976: 499d ldr r1, [pc, #628] ; (1003abec ) +1003a978: f007 fbfe bl 10042178 +1003a97c: 2800 cmp r0, #0 +1003a97e: d0e9 beq.n 1003a954 +1003a980: a80d add r0, sp, #52 ; 0x34 +1003a982: 499b ldr r1, [pc, #620] ; (1003abf0 ) +1003a984: f007 fbf8 bl 10042178 +1003a988: f640 2328 movw r3, #2600 ; 0xa28 +1003a98c: 2800 cmp r0, #0 +1003a98e: bf18 it ne +1003a990: f44f 6380 movne.w r3, #1024 ; 0x400 +1003a994: 9301 str r3, [sp, #4] +1003a996: 9801 ldr r0, [sp, #4] +1003a998: f7e2 f9ea bl 1001cd70 +1003a99c: 4605 mov r5, r0 +1003a99e: 2800 cmp r0, #0 +1003a9a0: f000 81ce beq.w 1003ad40 +1003a9a4: 2318 movs r3, #24 +1003a9a6: 4373 muls r3, r6 +1003a9a8: ebc7 0709 rsb r7, r7, r9 +1003a9ac: 9703 str r7, [sp, #12] +1003a9ae: 4f91 ldr r7, [pc, #580] ; (1003abf4 ) +1003a9b0: 9305 str r3, [sp, #20] +1003a9b2: 441f add r7, r3 +1003a9b4: 88ba ldrh r2, [r7, #4] +1003a9b6: f412 43e0 ands.w r3, r2, #28672 ; 0x7000 +1003a9ba: d078 beq.n 1003aaae +1003a9bc: f3c2 020a ubfx r2, r2, #0, #11 +1003a9c0: 2a00 cmp r2, #0 +1003a9c2: d074 beq.n 1003aaae +1003a9c4: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +1003a9c8: d04e beq.n 1003aa68 +1003a9ca: d806 bhi.n 1003a9da +1003a9cc: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 +1003a9d0: f040 81b9 bne.w 1003ad46 +1003a9d4: f04f 0b00 mov.w fp, #0 +1003a9d8: e009 b.n 1003a9ee +1003a9da: f5b3 4f80 cmp.w r3, #16384 ; 0x4000 +1003a9de: d01e beq.n 1003aa1e +1003a9e0: f5b3 4fc0 cmp.w r3, #24576 ; 0x6000 +1003a9e4: f040 81af bne.w 1003ad46 +1003a9e8: f04f 0b00 mov.w fp, #0 +1003a9ec: e054 b.n 1003aa98 +1003a9ee: a807 add r0, sp, #28 +1003a9f0: a906 add r1, sp, #24 +1003a9f2: f007 fbdf bl 100421b4 +1003a9f6: b148 cbz r0, 1003aa0c +1003a9f8: aa08 add r2, sp, #32 +1003a9fa: 497f ldr r1, [pc, #508] ; (1003abf8 ) +1003a9fc: f007 fd70 bl 100424e0 +1003aa00: 9a08 ldr r2, [sp, #32] +1003aa02: f805 200b strb.w r2, [r5, fp] +1003aa06: f10b 0b01 add.w fp, fp, #1 +1003aa0a: e7f0 b.n 1003a9ee +1003aa0c: 88ba ldrh r2, [r7, #4] +1003aa0e: fa1f f18b uxth.w r1, fp +1003aa12: f3c2 020a ubfx r2, r2, #0, #11 +1003aa16: f8ad b028 strh.w fp, [sp, #40] ; 0x28 +1003aa1a: 4291 cmp r1, r2 +1003aa1c: e020 b.n 1003aa60 +1003aa1e: f04f 0c00 mov.w ip, #0 +1003aa22: a807 add r0, sp, #28 +1003aa24: a906 add r1, sp, #24 +1003aa26: f8cd c000 str.w ip, [sp] +1003aa2a: f007 fbc3 bl 100421b4 +1003aa2e: f8dd c000 ldr.w ip, [sp] +1003aa32: b158 cbz r0, 1003aa4c +1003aa34: 4970 ldr r1, [pc, #448] ; (1003abf8 ) +1003aa36: aa08 add r2, sp, #32 +1003aa38: f007 fd52 bl 100424e0 +1003aa3c: f8dd c000 ldr.w ip, [sp] +1003aa40: 9b08 ldr r3, [sp, #32] +1003aa42: f845 302c str.w r3, [r5, ip, lsl #2] +1003aa46: f10c 0c01 add.w ip, ip, #1 +1003aa4a: e7ea b.n 1003aa22 +1003aa4c: 88ba ldrh r2, [r7, #4] +1003aa4e: ea4f 0b8c mov.w fp, ip, lsl #2 +1003aa52: f8ad c028 strh.w ip, [sp, #40] ; 0x28 +1003aa56: f3c2 020a ubfx r2, r2, #0, #11 +1003aa5a: fa1f fc8c uxth.w ip, ip +1003aa5e: 4594 cmp ip, r2 +1003aa60: dd1a ble.n 1003aa98 +1003aa62: f8ad 2028 strh.w r2, [sp, #40] ; 0x28 +1003aa66: e017 b.n 1003aa98 +1003aa68: 9b03 ldr r3, [sp, #12] +1003aa6a: 2b00 cmp r3, #0 +1003aa6c: dd0d ble.n 1003aa8a +1003aa6e: b29b uxth r3, r3 +1003aa70: 4293 cmp r3, r2 +1003aa72: bfd6 itet le +1003aa74: 9b03 ldrle r3, [sp, #12] +1003aa76: f8ad 2028 strhgt.w r2, [sp, #40] ; 0x28 +1003aa7a: f8ad 3028 strhle.w r3, [sp, #40] ; 0x28 +1003aa7e: 9907 ldr r1, [sp, #28] +1003aa80: f8bd 2028 ldrh.w r2, [sp, #40] ; 0x28 +1003aa84: f7e2 f992 bl 1001cdac +1003aa88: e004 b.n 1003aa94 +1003aa8a: 2301 movs r3, #1 +1003aa8c: f8ad 3028 strh.w r3, [sp, #40] ; 0x28 +1003aa90: 2300 movs r3, #0 +1003aa92: 7003 strb r3, [r0, #0] +1003aa94: f8bd b028 ldrh.w fp, [sp, #40] ; 0x28 +1003aa98: 88ba ldrh r2, [r7, #4] +1003aa9a: 0510 lsls r0, r2, #20 +1003aa9c: d50b bpl.n 1003aab6 +1003aa9e: f8bd 1028 ldrh.w r1, [sp, #40] ; 0x28 +1003aaa2: f3c2 020a ubfx r2, r2, #0, #11 +1003aaa6: 4291 cmp r1, r2 +1003aaa8: f040 8150 bne.w 1003ad4c +1003aaac: e003 b.n 1003aab6 +1003aaae: 2300 movs r3, #0 +1003aab0: f8ad 3028 strh.w r3, [sp, #40] ; 0x28 +1003aab4: 469b mov fp, r3 +1003aab6: 88ba ldrh r2, [r7, #4] +1003aab8: 0511 lsls r1, r2, #20 +1003aaba: d512 bpl.n 1003aae2 +1003aabc: 4610 mov r0, r2 +1003aabe: 9200 str r2, [sp, #0] +1003aac0: f7fd fe3c bl 1003873c +1003aac4: 4450 add r0, sl +1003aac6: 2810 cmp r0, #16 +1003aac8: 9a00 ldr r2, [sp, #0] +1003aaca: dc0a bgt.n 1003aae2 +1003aacc: f1ba 0f00 cmp.w sl, #0 +1003aad0: d001 beq.n 1003aad6 +1003aad2: 9b04 ldr r3, [sp, #16] +1003aad4: 9309 str r3, [sp, #36] ; 0x24 +1003aad6: a809 add r0, sp, #36 ; 0x24 +1003aad8: 4450 add r0, sl +1003aada: 4629 mov r1, r5 +1003aadc: f1ca 0210 rsb r2, sl, #16 +1003aae0: e007 b.n 1003aaf2 +1003aae2: f402 41c0 and.w r1, r2, #24576 ; 0x6000 +1003aae6: f5b1 4fc0 cmp.w r1, #24576 ; 0x6000 +1003aaea: d105 bne.n 1003aaf8 +1003aaec: 9809 ldr r0, [sp, #36] ; 0x24 +1003aaee: 9907 ldr r1, [sp, #28] +1003aaf0: 9a03 ldr r2, [sp, #12] +1003aaf2: f7e2 f95b bl 1001cdac +1003aaf6: e019 b.n 1003ab2c +1003aaf8: b962 cbnz r2, 1003ab14 +1003aafa: 88f8 ldrh r0, [r7, #6] +1003aafc: 0502 lsls r2, r0, #20 +1003aafe: d509 bpl.n 1003ab14 +1003ab00: f7fd fe1c bl 1003873c +1003ab04: 2810 cmp r0, #16 +1003ab06: dc05 bgt.n 1003ab14 +1003ab08: f1ba 0f00 cmp.w sl, #0 +1003ab0c: d00e beq.n 1003ab2c +1003ab0e: 9b04 ldr r3, [sp, #16] +1003ab10: 9309 str r3, [sp, #36] ; 0x24 +1003ab12: e00b b.n 1003ab2c +1003ab14: 45cb cmp fp, r9 +1003ab16: 9809 ldr r0, [sp, #36] ; 0x24 +1003ab18: 4629 mov r1, r5 +1003ab1a: bf8c ite hi +1003ab1c: f109 32ff addhi.w r2, r9, #4294967295 +1003ab20: 465a movls r2, fp +1003ab22: f7e2 f943 bl 1001cdac +1003ab26: 9b04 ldr r3, [sp, #16] +1003ab28: f8ad 302a strh.w r3, [sp, #42] ; 0x2a +1003ab2c: 4649 mov r1, r9 +1003ab2e: 9802 ldr r0, [sp, #8] +1003ab30: f7e2 f934 bl 1001cd9c +1003ab34: 4a2f ldr r2, [pc, #188] ; (1003abf4 ) +1003ab36: 9905 ldr r1, [sp, #20] +1003ab38: 5853 ldr r3, [r2, r1] +1003ab3a: 07db lsls r3, r3, #31 +1003ab3c: d40d bmi.n 1003ab5a +1003ab3e: f8b7 b004 ldrh.w fp, [r7, #4] +1003ab42: 4658 mov r0, fp +1003ab44: f7fd fdfa bl 1003873c +1003ab48: f41b 6f00 tst.w fp, #2048 ; 0x800 +1003ab4c: 4603 mov r3, r0 +1003ab4e: d010 beq.n 1003ab72 +1003ab50: 4482 add sl, r0 +1003ab52: f1ba 0f10 cmp.w sl, #16 +1003ab56: d90d bls.n 1003ab74 +1003ab58: e00b b.n 1003ab72 +1003ab5a: f8b7 a006 ldrh.w sl, [r7, #6] +1003ab5e: 4650 mov r0, sl +1003ab60: f7fd fdec bl 1003873c +1003ab64: f41a 6f00 tst.w sl, #2048 ; 0x800 +1003ab68: 4603 mov r3, r0 +1003ab6a: d002 beq.n 1003ab72 +1003ab6c: 2810 cmp r0, #16 +1003ab6e: d901 bls.n 1003ab74 +1003ab70: e008 b.n 1003ab84 +1003ab72: b93b cbnz r3, 1003ab84 +1003ab74: 4628 mov r0, r5 +1003ab76: 9901 ldr r1, [sp, #4] +1003ab78: f7e2 f910 bl 1001cd9c +1003ab7c: 2300 movs r3, #0 +1003ab7e: ad09 add r5, sp, #36 ; 0x24 +1003ab80: 9302 str r3, [sp, #8] +1003ab82: e000 b.n 1003ab86 +1003ab84: 9502 str r5, [sp, #8] +1003ab86: 4b1d ldr r3, [pc, #116] ; (1003abfc ) +1003ab88: 4640 mov r0, r8 +1003ab8a: f853 6026 ldr.w r6, [r3, r6, lsl #2] +1003ab8e: 2100 movs r1, #0 +1003ab90: aa09 add r2, sp, #36 ; 0x24 +1003ab92: 462b mov r3, r5 +1003ab94: 47b0 blx r6 +1003ab96: f8b7 8006 ldrh.w r8, [r7, #6] +1003ab9a: 4682 mov sl, r0 +1003ab9c: f418 4fe0 tst.w r8, #28672 ; 0x7000 +1003aba0: f000 80b0 beq.w 1003ad04 +1003aba4: f3c8 060a ubfx r6, r8, #0, #11 +1003aba8: 2e00 cmp r6, #0 +1003abaa: f000 80ab beq.w 1003ad04 +1003abae: a812 add r0, sp, #72 ; 0x48 +1003abb0: 2100 movs r1, #0 +1003abb2: 2214 movs r2, #20 +1003abb4: f007 fba9 bl 1004230a +1003abb8: f418 6f00 tst.w r8, #2048 ; 0x800 +1003abbc: d006 beq.n 1003abcc +1003abbe: 4640 mov r0, r8 +1003abc0: f7fd fdbc bl 1003873c +1003abc4: 2810 cmp r0, #16 +1003abc6: dc01 bgt.n 1003abcc +1003abc8: 46b3 mov fp, r6 +1003abca: e001 b.n 1003abd0 +1003abcc: f8bd b028 ldrh.w fp, [sp, #40] ; 0x28 +1003abd0: a80d add r0, sp, #52 ; 0x34 +1003abd2: 4903 ldr r1, [pc, #12] ; (1003abe0 ) +1003abd4: f007 fad0 bl 10042178 +1003abd8: b990 cbnz r0, 1003ac00 +1003abda: f640 2828 movw r8, #2600 ; 0xa28 +1003abde: e02b b.n 1003ac38 +1003abe0: 1004b35e .word 0x1004b35e +1003abe4: 1004b369 .word 0x1004b369 +1003abe8: 1004b374 .word 0x1004b374 +1003abec: 1004b37e .word 0x1004b37e +1003abf0: 1004b388 .word 0x1004b388 +1003abf4: 1004af0c .word 0x1004af0c +1003abf8: 1004b38f .word 0x1004b38f +1003abfc: 1004d9c4 .word 0x1004d9c4 +1003ac00: a80d add r0, sp, #52 ; 0x34 +1003ac02: 4957 ldr r1, [pc, #348] ; (1003ad60 ) +1003ac04: f007 fab8 bl 10042178 +1003ac08: 2800 cmp r0, #0 +1003ac0a: d0e6 beq.n 1003abda +1003ac0c: a80d add r0, sp, #52 ; 0x34 +1003ac0e: 4955 ldr r1, [pc, #340] ; (1003ad64 ) +1003ac10: f007 fab2 bl 10042178 +1003ac14: 2800 cmp r0, #0 +1003ac16: d0e0 beq.n 1003abda +1003ac18: a80d add r0, sp, #52 ; 0x34 +1003ac1a: 4953 ldr r1, [pc, #332] ; (1003ad68 ) +1003ac1c: f007 faac bl 10042178 +1003ac20: 2800 cmp r0, #0 +1003ac22: d0da beq.n 1003abda +1003ac24: a80d add r0, sp, #52 ; 0x34 +1003ac26: 4951 ldr r1, [pc, #324] ; (1003ad6c ) +1003ac28: f007 faa6 bl 10042178 +1003ac2c: f640 2828 movw r8, #2600 ; 0xa28 +1003ac30: 2800 cmp r0, #0 +1003ac32: bf18 it ne +1003ac34: f44f 6880 movne.w r8, #1024 ; 0x400 +1003ac38: 4640 mov r0, r8 +1003ac3a: f7e2 f899 bl 1001cd70 +1003ac3e: 4606 mov r6, r0 +1003ac40: 2800 cmp r0, #0 +1003ac42: d059 beq.n 1003acf8 +1003ac44: 88fa ldrh r2, [r7, #6] +1003ac46: f402 42e0 and.w r2, r2, #28672 ; 0x7000 +1003ac4a: f5b2 5f00 cmp.w r2, #8192 ; 0x2000 +1003ac4e: d041 beq.n 1003acd4 +1003ac50: f5b2 4f80 cmp.w r2, #16384 ; 0x4000 +1003ac54: d004 beq.n 1003ac60 +1003ac56: f5b2 5f80 cmp.w r2, #4096 ; 0x1000 +1003ac5a: d150 bne.n 1003acfe +1003ac5c: 2700 movs r7, #0 +1003ac5e: e018 b.n 1003ac92 +1003ac60: 2700 movs r7, #0 +1003ac62: e034 b.n 1003acce +1003ac64: 4942 ldr r1, [pc, #264] ; (1003ad70 ) +1003ac66: 5dea ldrb r2, [r5, r7] +1003ac68: a812 add r0, sp, #72 ; 0x48 +1003ac6a: f007 fa1d bl 100420a8 +1003ac6e: a812 add r0, sp, #72 ; 0x48 +1003ac70: f007 fa8e bl 10042190 +1003ac74: 4602 mov r2, r0 +1003ac76: 4630 mov r0, r6 +1003ac78: 9200 str r2, [sp, #0] +1003ac7a: f007 fa89 bl 10042190 +1003ac7e: 9a00 ldr r2, [sp, #0] +1003ac80: 1811 adds r1, r2, r0 +1003ac82: 3101 adds r1, #1 +1003ac84: 4541 cmp r1, r8 +1003ac86: d807 bhi.n 1003ac98 +1003ac88: 4430 add r0, r6 +1003ac8a: a912 add r1, sp, #72 ; 0x48 +1003ac8c: f7e2 f88e bl 1001cdac +1003ac90: 3701 adds r7, #1 +1003ac92: 455f cmp r7, fp +1003ac94: dbe6 blt.n 1003ac64 +1003ac96: e021 b.n 1003acdc +1003ac98: f06f 0a06 mvn.w sl, #6 +1003ac9c: e059 b.n 1003ad52 +1003ac9e: 4934 ldr r1, [pc, #208] ; (1003ad70 ) +1003aca0: f855 2027 ldr.w r2, [r5, r7, lsl #2] +1003aca4: a812 add r0, sp, #72 ; 0x48 +1003aca6: f007 f9ff bl 100420a8 +1003acaa: a812 add r0, sp, #72 ; 0x48 +1003acac: f007 fa70 bl 10042190 +1003acb0: 4602 mov r2, r0 +1003acb2: 4630 mov r0, r6 +1003acb4: 9200 str r2, [sp, #0] +1003acb6: f007 fa6b bl 10042190 +1003acba: 9a00 ldr r2, [sp, #0] +1003acbc: 1811 adds r1, r2, r0 +1003acbe: 3101 adds r1, #1 +1003acc0: 4541 cmp r1, r8 +1003acc2: d8e9 bhi.n 1003ac98 +1003acc4: 4430 add r0, r6 +1003acc6: a912 add r1, sp, #72 ; 0x48 +1003acc8: f7e2 f870 bl 1001cdac +1003accc: 3701 adds r7, #1 +1003acce: 455f cmp r7, fp +1003acd0: dbe5 blt.n 1003ac9e +1003acd2: e003 b.n 1003acdc +1003acd4: 4629 mov r1, r5 +1003acd6: 465a mov r2, fp +1003acd8: f7e2 f868 bl 1001cdac +1003acdc: 4630 mov r0, r6 +1003acde: f007 fa57 bl 10042190 +1003ace2: 1c42 adds r2, r0, #1 +1003ace4: 454a cmp r2, r9 +1003ace6: 82a2 strh r2, [r4, #20] +1003ace8: 6920 ldr r0, [r4, #16] +1003acea: 4631 mov r1, r6 +1003acec: bf88 it hi +1003acee: f109 32ff addhi.w r2, r9, #4294967295 +1003acf2: f7e2 f85b bl 1001cdac +1003acf6: e02c b.n 1003ad52 +1003acf8: f06f 0a0b mvn.w sl, #11 +1003acfc: e029 b.n 1003ad52 +1003acfe: f04f 3aff mov.w sl, #4294967295 +1003ad02: e026 b.n 1003ad52 +1003ad04: f04f 0800 mov.w r8, #0 +1003ad08: f8a4 8014 strh.w r8, [r4, #20] +1003ad0c: 4646 mov r6, r8 +1003ad0e: e020 b.n 1003ad52 +1003ad10: 4b18 ldr r3, [pc, #96] ; (1003ad74 ) +1003ad12: f04f 36ff mov.w r6, #4294967295 +1003ad16: 3601 adds r6, #1 +1003ad18: 2e1a cmp r6, #26 +1003ad1a: d00d beq.n 1003ad38 +1003ad1c: f993 2008 ldrsb.w r2, [r3, #8] +1003ad20: b10a cbz r2, 1003ad26 +1003ad22: 3318 adds r3, #24 +1003ad24: e7f7 b.n 1003ad16 +1003ad26: 6859 ldr r1, [r3, #4] +1003ad28: f8da 2004 ldr.w r2, [sl, #4] +1003ad2c: 4291 cmp r1, r2 +1003ad2e: d1f8 bne.n 1003ad22 +1003ad30: 9504 str r5, [sp, #16] +1003ad32: f04f 0a04 mov.w sl, #4 +1003ad36: e608 b.n 1003a94a +1003ad38: 2200 movs r2, #0 +1003ad3a: 9201 str r2, [sp, #4] +1003ad3c: 4615 mov r5, r2 +1003ad3e: e005 b.n 1003ad4c +1003ad40: f06f 0a0b mvn.w sl, #11 +1003ad44: e545 b.n 1003a7d2 +1003ad46: f04f 3aff mov.w sl, #4294967295 +1003ad4a: e542 b.n 1003a7d2 +1003ad4c: f06f 0a15 mvn.w sl, #21 +1003ad50: e53f b.n 1003a7d2 +1003ad52: 9d02 ldr r5, [sp, #8] +1003ad54: e544 b.n 1003a7e0 +1003ad56: 4650 mov r0, sl +1003ad58: b01d add sp, #116 ; 0x74 +1003ad5a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1003ad5e: bf00 nop +1003ad60: 1004b369 .word 0x1004b369 +1003ad64: 1004b374 .word 0x1004b374 +1003ad68: 1004b37e .word 0x1004b37e +1003ad6c: 1004b388 .word 0x1004b388 +1003ad70: 1004b392 .word 0x1004b392 +1003ad74: 1004af0c .word 0x1004af0c + +1003ad78 : +1003ad78: 2001 movs r0, #1 +1003ad7a: 4770 bx lr + +1003ad7c : +1003ad7c: 2300 movs r3, #0 +1003ad7e: 608b str r3, [r1, #8] +1003ad80: 60cb str r3, [r1, #12] +1003ad82: 2001 movs r0, #1 +1003ad84: 4770 bx lr + +1003ad86 : +1003ad86: 4770 bx lr + +1003ad88 : +1003ad88: b570 push {r4, r5, r6, lr} +1003ad8a: b08a sub sp, #40 ; 0x28 +1003ad8c: 2100 movs r1, #0 +1003ad8e: 2601 movs r6, #1 +1003ad90: 2220 movs r2, #32 +1003ad92: 4604 mov r4, r0 +1003ad94: a802 add r0, sp, #8 +1003ad96: f88d 1000 strb.w r1, [sp] +1003ad9a: f88d 1001 strb.w r1, [sp, #1] +1003ad9e: f88d 1002 strb.w r1, [sp, #2] +1003ada2: f88d 1003 strb.w r1, [sp, #3] +1003ada6: f88d 1004 strb.w r1, [sp, #4] +1003adaa: f88d 6005 strb.w r6, [sp, #5] +1003adae: f007 f9dd bl 1004216c +1003adb2: f10d 001a add.w r0, sp, #26 +1003adb6: 4669 mov r1, sp +1003adb8: 2206 movs r2, #6 +1003adba: f88d 6019 strb.w r6, [sp, #25] +1003adbe: f007 f9cf bl 10042160 +1003adc2: 4b16 ldr r3, [pc, #88] ; (1003ae1c ) +1003adc4: 6818 ldr r0, [r3, #0] +1003adc6: b318 cbz r0, 1003ae10 +1003adc8: a902 add r1, sp, #8 +1003adca: f648 3214 movw r2, #35604 ; 0x8b14 +1003adce: f7ff f80d bl 10039dec +1003add2: f894 386d ldrb.w r3, [r4, #2157] ; 0x86d +1003add6: 4605 mov r5, r0 +1003add8: b1eb cbz r3, 1003ae16 +1003adda: f894 27e2 ldrb.w r2, [r4, #2018] ; 0x7e2 +1003adde: f894 37e1 ldrb.w r3, [r4, #2017] ; 0x7e1 +1003ade2: 429a cmp r2, r3 +1003ade4: d20f bcs.n 1003ae06 +1003ade6: 4b0e ldr r3, [pc, #56] ; (1003ae20 ) +1003ade8: 781a ldrb r2, [r3, #0] +1003adea: b9a2 cbnz r2, 1003ae16 +1003adec: f204 70d4 addw r0, r4, #2004 ; 0x7d4 +1003adf0: f64e 2160 movw r1, #60000 ; 0xea60 +1003adf4: 701e strb r6, [r3, #0] +1003adf6: f000 fd87 bl 1003b908 +1003adfa: f894 37e2 ldrb.w r3, [r4, #2018] ; 0x7e2 +1003adfe: 4433 add r3, r6 +1003ae00: f884 37e2 strb.w r3, [r4, #2018] ; 0x7e2 +1003ae04: e007 b.n 1003ae16 +1003ae06: 4620 mov r0, r4 +1003ae08: 4906 ldr r1, [pc, #24] ; (1003ae24 ) +1003ae0a: f7fe f806 bl 10038e1a +1003ae0e: e002 b.n 1003ae16 +1003ae10: f04f 30ff mov.w r0, #4294967295 +1003ae14: e000 b.n 1003ae18 +1003ae16: 4628 mov r0, r5 +1003ae18: b00a add sp, #40 ; 0x28 +1003ae1a: bd70 pop {r4, r5, r6, pc} +1003ae1c: 10055548 .word 0x10055548 +1003ae20: 100530d4 .word 0x100530d4 +1003ae24: 1004a5cd .word 0x1004a5cd + +1003ae28 : +1003ae28: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1003ae2c: 4604 mov r4, r0 +1003ae2e: b08c sub sp, #48 ; 0x30 +1003ae30: 460f mov r7, r1 +1003ae32: f504 5588 add.w r5, r4, #4352 ; 0x1100 +1003ae36: f7f0 fbe7 bl 1002b608 +1003ae3a: 2064 movs r0, #100 ; 0x64 +1003ae3c: f7e2 f906 bl 1001d04c +1003ae40: 682b ldr r3, [r5, #0] +1003ae42: b1bb cbz r3, 1003ae74 +1003ae44: f7e2 f8b0 bl 1001cfa8 +1003ae48: 682b ldr r3, [r5, #0] +1003ae4a: 4606 mov r6, r0 +1003ae4c: ebc3 0800 rsb r8, r3, r0 +1003ae50: 203c movs r0, #60 ; 0x3c +1003ae52: f7e2 f8d7 bl 1001d004 +1003ae56: 4580 cmp r8, r0 +1003ae58: d20c bcs.n 1003ae74 +1003ae5a: 2201 movs r2, #1 +1003ae5c: f241 1304 movw r3, #4356 ; 0x1104 +1003ae60: 54e2 strb r2, [r4, r3] +1003ae62: 2300 movs r3, #0 +1003ae64: 602b str r3, [r5, #0] +1003ae66: f241 1308 movw r3, #4360 ; 0x1108 +1003ae6a: 50e6 str r6, [r4, r3] +1003ae6c: 4620 mov r0, r4 +1003ae6e: f7ff ff8b bl 1003ad88 +1003ae72: e002 b.n 1003ae7a +1003ae74: f7e2 f898 bl 1001cfa8 +1003ae78: 6028 str r0, [r5, #0] +1003ae7a: a805 add r0, sp, #20 +1003ae7c: 2100 movs r1, #0 +1003ae7e: 221c movs r2, #28 +1003ae80: f7e1 ffa6 bl 1001cdd0 +1003ae84: 9b05 ldr r3, [sp, #20] +1003ae86: b117 cbz r7, 1003ae8e +1003ae88: f043 0304 orr.w r3, r3, #4 +1003ae8c: e001 b.n 1003ae92 +1003ae8e: f043 0308 orr.w r3, r3, #8 +1003ae92: 9305 str r3, [sp, #20] +1003ae94: f10d 001a add.w r0, sp, #26 +1003ae98: 2301 movs r3, #1 +1003ae9a: f104 0174 add.w r1, r4, #116 ; 0x74 +1003ae9e: 2206 movs r2, #6 +1003aea0: f88d 3019 strb.w r3, [sp, #25] +1003aea4: f7e1 ff82 bl 1001cdac +1003aea8: a801 add r0, sp, #4 +1003aeaa: 2100 movs r1, #0 +1003aeac: 2210 movs r2, #16 +1003aeae: f7e1 ff8f bl 1001cdd0 +1003aeb2: f504 54bc add.w r4, r4, #6016 ; 0x1780 +1003aeb6: 231c movs r3, #28 +1003aeb8: f8ad 3008 strh.w r3, [sp, #8] +1003aebc: 6820 ldr r0, [r4, #0] +1003aebe: f648 4106 movw r1, #35846 ; 0x8c06 +1003aec2: aa01 add r2, sp, #4 +1003aec4: ab05 add r3, sp, #20 +1003aec6: f7fd ffa3 bl 10038e10 +1003aeca: b00c add sp, #48 ; 0x30 +1003aecc: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1003aed0 : +1003aed0: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003aed4: 688d ldr r5, [r1, #8] +1003aed6: 4604 mov r4, r0 +1003aed8: 460e mov r6, r1 +1003aeda: f600 29c4 addw r9, r0, #2756 ; 0xac4 +1003aede: 2d00 cmp r5, #0 +1003aee0: f000 80d6 beq.w 1003b090 +1003aee4: 6f8b ldr r3, [r1, #120] ; 0x78 +1003aee6: 4628 mov r0, r5 +1003aee8: 612b str r3, [r5, #16] +1003aeea: 6f09 ldr r1, [r1, #112] ; 0x70 +1003aeec: f000 fa73 bl 1003b3d6 +1003aef0: 6f33 ldr r3, [r6, #112] ; 0x70 +1003aef2: 622b str r3, [r5, #32] +1003aef4: 6923 ldr r3, [r4, #16] +1003aef6: 06df lsls r7, r3, #27 +1003aef8: d515 bpl.n 1003af26 +1003aefa: 46b0 mov r8, r6 +1003aefc: f818 7f36 ldrb.w r7, [r8, #54]! +1003af00: f504 51a0 add.w r1, r4, #5120 ; 0x1400 +1003af04: 4640 mov r0, r8 +1003af06: 3109 adds r1, #9 +1003af08: 2206 movs r2, #6 +1003af0a: f7e1 ff57 bl 1001cdbc +1003af0e: b950 cbnz r0, 1003af26 +1003af10: f241 7315 movw r3, #5909 ; 0x1715 +1003af14: 5ce3 ldrb r3, [r4, r3] +1003af16: f007 0701 and.w r7, r7, #1 +1003af1a: 2b00 cmp r3, #0 +1003af1c: f000 80bf beq.w 1003b09e +1003af20: 2f00 cmp r7, #0 +1003af22: f000 80b5 beq.w 1003b090 +1003af26: f504 53bc add.w r3, r4, #6016 ; 0x1780 +1003af2a: 681b ldr r3, [r3, #0] +1003af2c: 61eb str r3, [r5, #28] +1003af2e: 692b ldr r3, [r5, #16] +1003af30: 8998 ldrh r0, [r3, #12] +1003af32: f7e1 fe97 bl 1001cc64 <_htons> +1003af36: f648 038e movw r3, #34958 ; 0x888e +1003af3a: 4298 cmp r0, r3 +1003af3c: 692b ldr r3, [r5, #16] +1003af3e: d116 bne.n 1003af6e +1003af40: f241 22f5 movw r2, #4853 ; 0x12f5 +1003af44: 5ca2 ldrb r2, [r4, r2] +1003af46: b192 cbz r2, 1003af6e +1003af48: 7bda ldrb r2, [r3, #15] +1003af4a: 2a03 cmp r2, #3 +1003af4c: d00f beq.n 1003af6e +1003af4e: f504 603d add.w r0, r4, #3024 ; 0xbd0 +1003af52: f106 0142 add.w r1, r6, #66 ; 0x42 +1003af56: f7f2 fd2d bl 1002d9b4 +1003af5a: 2800 cmp r0, #0 +1003af5c: f000 8098 beq.w 1003b090 +1003af60: 6929 ldr r1, [r5, #16] +1003af62: 6a2a ldr r2, [r5, #32] +1003af64: 2300 movs r3, #0 +1003af66: 200d movs r0, #13 +1003af68: f7d2 fc76 bl 1000d858 +1003af6c: e090 b.n 1003b090 +1003af6e: 8998 ldrh r0, [r3, #12] +1003af70: f7e1 fe78 bl 1001cc64 <_htons> +1003af74: f648 038e movw r3, #34958 ; 0x888e +1003af78: 4298 cmp r0, r3 +1003af7a: f8d4 3fdc ldr.w r3, [r4, #4060] ; 0xfdc +1003af7e: d143 bne.n 1003b008 +1003af80: 2b03 cmp r3, #3 +1003af82: d001 beq.n 1003af88 +1003af84: 2b06 cmp r3, #6 +1003af86: d13f bne.n 1003b008 +1003af88: f504 603d add.w r0, r4, #3024 ; 0xbd0 +1003af8c: f106 0142 add.w r1, r6, #66 ; 0x42 +1003af90: f8d5 a010 ldr.w sl, [r5, #16] +1003af94: f7f2 fd0e bl 1002d9b4 +1003af98: 4680 mov r8, r0 +1003af9a: 2800 cmp r0, #0 +1003af9c: d078 beq.n 1003b090 +1003af9e: 6923 ldr r3, [r4, #16] +1003afa0: 06d8 lsls r0, r3, #27 +1003afa2: f140 80a6 bpl.w 1003b0f2 +1003afa6: f8d8 20fc ldr.w r2, [r8, #252] ; 0xfc +1003afaa: f202 128b addw r2, r2, #395 ; 0x18b +1003afae: eb04 0282 add.w r2, r4, r2, lsl #2 +1003afb2: f8d2 7c78 ldr.w r7, [r2, #3192] ; 0xc78 +1003afb6: 2f00 cmp r7, #0 +1003afb8: d06a beq.n 1003b090 +1003afba: f89a 200f ldrb.w r2, [sl, #15] +1003afbe: 2a03 cmp r2, #3 +1003afc0: d00b beq.n 1003afda +1003afc2: 2300 movs r3, #0 +1003afc4: 200d movs r0, #13 +1003afc6: 6929 ldr r1, [r5, #16] +1003afc8: 6a2a ldr r2, [r5, #32] +1003afca: f7d2 fc45 bl 1000d858 +1003afce: 2300 movs r3, #0 +1003afd0: f8c7 3304 str.w r3, [r7, #772] ; 0x304 +1003afd4: f8c7 3308 str.w r3, [r7, #776] ; 0x308 +1003afd8: e05a b.n 1003b090 +1003afda: 0719 lsls r1, r3, #28 +1003afdc: d50d bpl.n 1003affa +1003afde: f8d7 3304 ldr.w r3, [r7, #772] ; 0x304 +1003afe2: b953 cbnz r3, 1003affa +1003afe4: f8d7 3308 ldr.w r3, [r7, #776] ; 0x308 +1003afe8: b93b cbnz r3, 1003affa +1003afea: f44f 70fa mov.w r0, #500 ; 0x1f4 +1003afee: f7e2 f82d bl 1001d04c +1003aff2: 4620 mov r0, r4 +1003aff4: 4641 mov r1, r8 +1003aff6: f7ef f88f bl 1002a118 +1003affa: 692b ldr r3, [r5, #16] +1003affc: f8c7 30d4 str.w r3, [r7, #212] ; 0xd4 +1003b000: 6a2b ldr r3, [r5, #32] +1003b002: f8c7 30d8 str.w r3, [r7, #216] ; 0xd8 +1003b006: e085 b.n 1003b114 +1003b008: 2b04 cmp r3, #4 +1003b00a: d001 beq.n 1003b010 +1003b00c: 2b07 cmp r3, #7 +1003b00e: d131 bne.n 1003b074 +1003b010: 692b ldr r3, [r5, #16] +1003b012: 8998 ldrh r0, [r3, #12] +1003b014: f7e1 fe26 bl 1001cc64 <_htons> +1003b018: f648 038e movw r3, #34958 ; 0x888e +1003b01c: 4298 cmp r0, r3 +1003b01e: d129 bne.n 1003b074 +1003b020: f504 603d add.w r0, r4, #3024 ; 0xbd0 +1003b024: f106 0142 add.w r1, r6, #66 ; 0x42 +1003b028: f7f2 fcc4 bl 1002d9b4 +1003b02c: 4680 mov r8, r0 +1003b02e: b378 cbz r0, 1003b090 +1003b030: 6923 ldr r3, [r4, #16] +1003b032: 06da lsls r2, r3, #27 +1003b034: d563 bpl.n 1003b0fe +1003b036: f8d0 20fc ldr.w r2, [r0, #252] ; 0xfc +1003b03a: f202 128b addw r2, r2, #395 ; 0x18b +1003b03e: eb04 0282 add.w r2, r4, r2, lsl #2 +1003b042: f8d2 7c78 ldr.w r7, [r2, #3192] ; 0xc78 +1003b046: b31f cbz r7, 1003b090 +1003b048: 071b lsls r3, r3, #28 +1003b04a: d509 bpl.n 1003b060 +1003b04c: f8d7 3304 ldr.w r3, [r7, #772] ; 0x304 +1003b050: b933 cbnz r3, 1003b060 +1003b052: f8d7 3308 ldr.w r3, [r7, #776] ; 0x308 +1003b056: b91b cbnz r3, 1003b060 +1003b058: 4620 mov r0, r4 +1003b05a: 4641 mov r1, r8 +1003b05c: f7ef f85c bl 1002a118 +1003b060: 692b ldr r3, [r5, #16] +1003b062: f8c7 30d4 str.w r3, [r7, #212] ; 0xd4 +1003b066: 6a2b ldr r3, [r5, #32] +1003b068: f8c7 30d8 str.w r3, [r7, #216] ; 0xd8 +1003b06c: 6923 ldr r3, [r4, #16] +1003b06e: 06d8 lsls r0, r3, #27 +1003b070: d44b bmi.n 1003b10a +1003b072: e00b b.n 1003b08c +1003b074: 4628 mov r0, r5 +1003b076: f000 fd77 bl 1003bb68 +1003b07a: 2300 movs r3, #0 +1003b07c: 60b3 str r3, [r6, #8] +1003b07e: 4630 mov r0, r6 +1003b080: 4649 mov r1, r9 +1003b082: f7f0 fffd bl 1002c080 +1003b086: 2001 movs r0, #1 +1003b088: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003b08c: 071b lsls r3, r3, #28 +1003b08e: d441 bmi.n 1003b114 +1003b090: 4630 mov r0, r6 +1003b092: 4649 mov r1, r9 +1003b094: f7f0 fff4 bl 1002c080 +1003b098: 2000 movs r0, #0 +1003b09a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003b09e: f8d4 3c14 ldr.w r3, [r4, #3092] ; 0xc14 +1003b0a2: 2b03 cmp r3, #3 +1003b0a4: f77f af3c ble.w 1003af20 +1003b0a8: b167 cbz r7, 1003b0c4 +1003b0aa: 4620 mov r0, r4 +1003b0ac: f7f2 fcd8 bl 1002da60 +1003b0b0: 2800 cmp r0, #0 +1003b0b2: f43f af38 beq.w 1003af26 +1003b0b6: 4628 mov r0, r5 +1003b0b8: 2101 movs r1, #1 +1003b0ba: 224a movs r2, #74 ; 0x4a +1003b0bc: f000 f99b bl 1003b3f6 +1003b0c0: 4680 mov r8, r0 +1003b0c2: e008 b.n 1003b0d6 +1003b0c4: f504 603d add.w r0, r4, #3024 ; 0xbd0 +1003b0c8: 4641 mov r1, r8 +1003b0ca: f7f2 fc73 bl 1002d9b4 +1003b0ce: 2800 cmp r0, #0 +1003b0d0: f43f af29 beq.w 1003af26 +1003b0d4: 46b8 mov r8, r7 +1003b0d6: f504 53bc add.w r3, r4, #6016 ; 0x1780 +1003b0da: 6819 ldr r1, [r3, #0] +1003b0dc: 4628 mov r0, r5 +1003b0de: 61e9 str r1, [r5, #28] +1003b0e0: f000 f9f5 bl 1003b4ce +1003b0e4: 2f00 cmp r7, #0 +1003b0e6: d0c8 beq.n 1003b07a +1003b0e8: f1b8 0f00 cmp.w r8, #0 +1003b0ec: d0c5 beq.n 1003b07a +1003b0ee: 4645 mov r5, r8 +1003b0f0: e719 b.n 1003af26 +1003b0f2: 0719 lsls r1, r3, #28 +1003b0f4: d5cc bpl.n 1003b090 +1003b0f6: f241 22a8 movw r2, #4776 ; 0x12a8 +1003b0fa: 58a7 ldr r7, [r4, r2] +1003b0fc: e75b b.n 1003afb6 +1003b0fe: 071a lsls r2, r3, #28 +1003b100: d5c6 bpl.n 1003b090 +1003b102: f241 22a8 movw r2, #4776 ; 0x12a8 +1003b106: 58a7 ldr r7, [r4, r2] +1003b108: e79d b.n 1003b046 +1003b10a: 4620 mov r0, r4 +1003b10c: 4641 mov r1, r8 +1003b10e: f7ef fe8d bl 1002ae2c +1003b112: e7bd b.n 1003b090 +1003b114: 4620 mov r0, r4 +1003b116: 4641 mov r1, r8 +1003b118: f7ef ff44 bl 1002afa4 +1003b11c: e7b8 b.n 1003b090 + ... + +1003b120 : +1003b120: b508 push {r3, lr} +1003b122: f7e1 fd65 bl 1001cbf0 +1003b126: 4b04 ldr r3, [pc, #16] ; (1003b138 ) +1003b128: 681a ldr r2, [r3, #0] +1003b12a: 3201 adds r2, #1 +1003b12c: 601a str r2, [r3, #0] +1003b12e: e8bd 4008 ldmia.w sp!, {r3, lr} +1003b132: f7e1 bd5f b.w 1001cbf4 +1003b136: bf00 nop +1003b138: 1005553c .word 0x1005553c + +1003b13c : +1003b13c: b510 push {r4, lr} +1003b13e: f7e1 fd57 bl 1001cbf0 +1003b142: 4b04 ldr r3, [pc, #16] ; (1003b154 ) +1003b144: 2200 movs r2, #0 +1003b146: 681c ldr r4, [r3, #0] +1003b148: 601a str r2, [r3, #0] +1003b14a: f7e1 fd53 bl 1001cbf4 +1003b14e: 4620 mov r0, r4 +1003b150: bd10 pop {r4, pc} +1003b152: bf00 nop +1003b154: 1005553c .word 0x1005553c + +1003b158 : +1003b158: b538 push {r3, r4, r5, lr} +1003b15a: 2100 movs r1, #0 +1003b15c: f44f 72dc mov.w r2, #440 ; 0x1b8 +1003b160: 480e ldr r0, [pc, #56] ; (1003b19c ) +1003b162: f007 f803 bl 1004216c +1003b166: 4a0e ldr r2, [pc, #56] ; (1003b1a0 ) +1003b168: 4b0e ldr r3, [pc, #56] ; (1003b1a4 ) +1003b16a: 6815 ldr r5, [r2, #0] +1003b16c: 4a0b ldr r2, [pc, #44] ; (1003b19c ) +1003b16e: 601b str r3, [r3, #0] +1003b170: 2100 movs r1, #0 +1003b172: 461c mov r4, r3 +1003b174: 42a9 cmp r1, r5 +1003b176: f102 002c add.w r0, r2, #44 ; 0x2c +1003b17a: da08 bge.n 1003b18e +1003b17c: f840 3c28 str.w r3, [r0, #-40] +1003b180: f840 4c2c str.w r4, [r0, #-44] +1003b184: 3101 adds r1, #1 +1003b186: 601a str r2, [r3, #0] +1003b188: 4613 mov r3, r2 +1003b18a: 4602 mov r2, r0 +1003b18c: e7f2 b.n 1003b174 +1003b18e: 4a06 ldr r2, [pc, #24] ; (1003b1a8 ) +1003b190: 6063 str r3, [r4, #4] +1003b192: 2300 movs r3, #0 +1003b194: 6013 str r3, [r2, #0] +1003b196: 4a05 ldr r2, [pc, #20] ; (1003b1ac ) +1003b198: 6013 str r3, [r2, #0] +1003b19a: bd38 pop {r3, r4, r5, pc} +1003b19c: 10055370 .word 0x10055370 +1003b1a0: 1004da08 .word 0x1004da08 +1003b1a4: 1005552c .word 0x1005552c +1003b1a8: 1005536c .word 0x1005536c +1003b1ac: 10055538 .word 0x10055538 + +1003b1b0 : +1003b1b0: b570 push {r4, r5, r6, lr} +1003b1b2: 2100 movs r1, #0 +1003b1b4: f44f 5250 mov.w r2, #13312 ; 0x3400 +1003b1b8: 480e ldr r0, [pc, #56] ; (1003b1f4 ) +1003b1ba: f006 ffd7 bl 1004216c +1003b1be: 4a0e ldr r2, [pc, #56] ; (1003b1f8 ) +1003b1c0: 4b0e ldr r3, [pc, #56] ; (1003b1fc ) +1003b1c2: 6816 ldr r6, [r2, #0] +1003b1c4: 2200 movs r2, #0 +1003b1c6: 601b str r3, [r3, #0] +1003b1c8: 4611 mov r1, r2 +1003b1ca: 461c mov r4, r3 +1003b1cc: 42b1 cmp r1, r6 +1003b1ce: da09 bge.n 1003b1e4 +1003b1d0: 4d08 ldr r5, [pc, #32] ; (1003b1f4 ) +1003b1d2: 3101 adds r1, #1 +1003b1d4: 1950 adds r0, r2, r5 +1003b1d6: 5154 str r4, [r2, r5] +1003b1d8: 6043 str r3, [r0, #4] +1003b1da: f502 62d0 add.w r2, r2, #1664 ; 0x680 +1003b1de: 6018 str r0, [r3, #0] +1003b1e0: 4603 mov r3, r0 +1003b1e2: e7f3 b.n 1003b1cc +1003b1e4: 4a06 ldr r2, [pc, #24] ; (1003b200 ) +1003b1e6: 6063 str r3, [r4, #4] +1003b1e8: 2300 movs r3, #0 +1003b1ea: 6013 str r3, [r2, #0] +1003b1ec: 4a05 ldr r2, [pc, #20] ; (1003b204 ) +1003b1ee: 6013 str r3, [r2, #0] +1003b1f0: bd70 pop {r4, r5, r6, pc} +1003b1f2: bf00 nop +1003b1f4: 100555c4 .word 0x100555c4 +1003b1f8: 1004da0c .word 0x1004da0c +1003b1fc: 100555bc .word 0x100555bc +1003b200: 10055528 .word 0x10055528 +1003b204: 10055534 .word 0x10055534 + +1003b208 : +1003b208: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1003b20c: 4e35 ldr r6, [pc, #212] ; (1003b2e4 ) +1003b20e: 4680 mov r8, r0 +1003b210: f7e1 fcee bl 1001cbf0 +1003b214: 6834 ldr r4, [r6, #0] +1003b216: 42b4 cmp r4, r6 +1003b218: d00b beq.n 1003b232 +1003b21a: e894 000c ldmia.w r4, {r2, r3} +1003b21e: 6053 str r3, [r2, #4] +1003b220: 601a str r2, [r3, #0] +1003b222: 4b31 ldr r3, [pc, #196] ; (1003b2e8 ) +1003b224: 6024 str r4, [r4, #0] +1003b226: 681a ldr r2, [r3, #0] +1003b228: 6064 str r4, [r4, #4] +1003b22a: 3201 adds r2, #1 +1003b22c: 601a str r2, [r3, #0] +1003b22e: 3408 adds r4, #8 +1003b230: e000 b.n 1003b234 +1003b232: 2400 movs r4, #0 +1003b234: f7e1 fcde bl 1001cbf4 +1003b238: b924 cbnz r4, 1003b244 +1003b23a: 492c ldr r1, [pc, #176] ; (1003b2ec ) +1003b23c: 482c ldr r0, [pc, #176] ; (1003b2f0 ) +1003b23e: f006 ff63 bl 10042108 +1003b242: e04b b.n 1003b2dc +1003b244: 2100 movs r1, #0 +1003b246: 2224 movs r2, #36 ; 0x24 +1003b248: 4620 mov r0, r4 +1003b24a: f006 ff8f bl 1004216c +1003b24e: f7e1 fccf bl 1001cbf0 +1003b252: 4b28 ldr r3, [pc, #160] ; (1003b2f4 ) +1003b254: 681d ldr r5, [r3, #0] +1003b256: 429d cmp r5, r3 +1003b258: d00b beq.n 1003b272 +1003b25a: e895 000c ldmia.w r5, {r2, r3} +1003b25e: 6053 str r3, [r2, #4] +1003b260: 601a str r2, [r3, #0] +1003b262: 4b25 ldr r3, [pc, #148] ; (1003b2f8 ) +1003b264: 602d str r5, [r5, #0] +1003b266: 681a ldr r2, [r3, #0] +1003b268: 606d str r5, [r5, #4] +1003b26a: 3201 adds r2, #1 +1003b26c: 601a str r2, [r3, #0] +1003b26e: 3508 adds r5, #8 +1003b270: e000 b.n 1003b274 +1003b272: 2500 movs r5, #0 +1003b274: f7e1 fcbe bl 1001cbf4 +1003b278: 4f1b ldr r7, [pc, #108] ; (1003b2e8 ) +1003b27a: b9b5 cbnz r5, 1003b2aa +1003b27c: 491b ldr r1, [pc, #108] ; (1003b2ec ) +1003b27e: 481f ldr r0, [pc, #124] ; (1003b2fc ) +1003b280: f006 ff42 bl 10042108 +1003b284: f7e1 fcb4 bl 1001cbf0 +1003b288: 6872 ldr r2, [r6, #4] +1003b28a: f1a4 0308 sub.w r3, r4, #8 +1003b28e: 6073 str r3, [r6, #4] +1003b290: f844 6c08 str.w r6, [r4, #-8] +1003b294: f844 2c04 str.w r2, [r4, #-4] +1003b298: 6013 str r3, [r2, #0] +1003b29a: 683b ldr r3, [r7, #0] +1003b29c: 3b01 subs r3, #1 +1003b29e: 603b str r3, [r7, #0] +1003b2a0: f7e1 fca8 bl 1001cbf4 +1003b2a4: 4628 mov r0, r5 +1003b2a6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1003b2aa: 4b15 ldr r3, [pc, #84] ; (1003b300 ) +1003b2ac: 683a ldr r2, [r7, #0] +1003b2ae: 6819 ldr r1, [r3, #0] +1003b2b0: 60e5 str r5, [r4, #12] +1003b2b2: 428a cmp r2, r1 +1003b2b4: bfc8 it gt +1003b2b6: 601a strgt r2, [r3, #0] +1003b2b8: 4b0f ldr r3, [pc, #60] ; (1003b2f8 ) +1003b2ba: 6125 str r5, [r4, #16] +1003b2bc: 681a ldr r2, [r3, #0] +1003b2be: 4b11 ldr r3, [pc, #68] ; (1003b304 ) +1003b2c0: 6165 str r5, [r4, #20] +1003b2c2: 6819 ldr r1, [r3, #0] +1003b2c4: 428a cmp r2, r1 +1003b2c6: bfc8 it gt +1003b2c8: 601a strgt r2, [r3, #0] +1003b2ca: f108 0303 add.w r3, r8, #3 +1003b2ce: f023 0303 bic.w r3, r3, #3 +1003b2d2: 442b add r3, r5 +1003b2d4: 61a3 str r3, [r4, #24] +1003b2d6: 2301 movs r3, #1 +1003b2d8: f8c5 3674 str.w r3, [r5, #1652] ; 0x674 +1003b2dc: 4620 mov r0, r4 +1003b2de: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1003b2e2: bf00 nop +1003b2e4: 1005552c .word 0x1005552c +1003b2e8: 1005536c .word 0x1005536c +1003b2ec: 1004b4b8 .word 0x1004b4b8 +1003b2f0: 1004b3ef .word 0x1004b3ef +1003b2f4: 100555bc .word 0x100555bc +1003b2f8: 10055528 .word 0x10055528 +1003b2fc: 1004b406 .word 0x1004b406 +1003b300: 10055538 .word 0x10055538 +1003b304: 10055534 .word 0x10055534 + +1003b308 : +1003b308: b510 push {r4, lr} +1003b30a: 4604 mov r4, r0 +1003b30c: f7e1 fc70 bl 1001cbf0 +1003b310: 68e0 ldr r0, [r4, #12] +1003b312: f200 6074 addw r0, r0, #1652 ; 0x674 +1003b316: f7e1 fee1 bl 1001d0dc +1003b31a: b170 cbz r0, 1003b33a +1003b31c: 4a10 ldr r2, [pc, #64] ; (1003b360 ) +1003b31e: 68e0 ldr r0, [r4, #12] +1003b320: 6851 ldr r1, [r2, #4] +1003b322: f1a0 0308 sub.w r3, r0, #8 +1003b326: 6053 str r3, [r2, #4] +1003b328: f840 2c08 str.w r2, [r0, #-8] +1003b32c: f840 1c04 str.w r1, [r0, #-4] +1003b330: 600b str r3, [r1, #0] +1003b332: 4b0c ldr r3, [pc, #48] ; (1003b364 ) +1003b334: 681a ldr r2, [r3, #0] +1003b336: 3a01 subs r2, #1 +1003b338: 601a str r2, [r3, #0] +1003b33a: 4a0b ldr r2, [pc, #44] ; (1003b368 ) +1003b33c: f1a4 0308 sub.w r3, r4, #8 +1003b340: 6851 ldr r1, [r2, #4] +1003b342: 6053 str r3, [r2, #4] +1003b344: f844 2c08 str.w r2, [r4, #-8] +1003b348: f844 1c04 str.w r1, [r4, #-4] +1003b34c: 600b str r3, [r1, #0] +1003b34e: 4b07 ldr r3, [pc, #28] ; (1003b36c ) +1003b350: e8bd 4010 ldmia.w sp!, {r4, lr} +1003b354: 681a ldr r2, [r3, #0] +1003b356: 3a01 subs r2, #1 +1003b358: 601a str r2, [r3, #0] +1003b35a: f7e1 bc4b b.w 1001cbf4 +1003b35e: bf00 nop +1003b360: 100555bc .word 0x100555bc +1003b364: 10055528 .word 0x10055528 +1003b368: 1005552c .word 0x1005552c +1003b36c: 1005536c .word 0x1005536c + +1003b370 : +1003b370: f7ff bfca b.w 1003b308 + +1003b374 : +1003b374: 4603 mov r3, r0 +1003b376: b510 push {r4, lr} +1003b378: 6940 ldr r0, [r0, #20] +1003b37a: 6a1c ldr r4, [r3, #32] +1003b37c: 1842 adds r2, r0, r1 +1003b37e: 4421 add r1, r4 +1003b380: 615a str r2, [r3, #20] +1003b382: 6219 str r1, [r3, #32] +1003b384: 699b ldr r3, [r3, #24] +1003b386: 429a cmp r2, r3 +1003b388: d908 bls.n 1003b39c +1003b38a: f240 216e movw r1, #622 ; 0x26e +1003b38e: 4a04 ldr r2, [pc, #16] ; (1003b3a0 ) +1003b390: 4804 ldr r0, [pc, #16] ; (1003b3a4 ) +1003b392: f006 feb9 bl 10042108 +1003b396: f7e1 fc2f bl 1001cbf8 +1003b39a: e7fe b.n 1003b39a +1003b39c: bd10 pop {r4, pc} +1003b39e: bf00 nop +1003b3a0: 1004b448 .word 0x1004b448 +1003b3a4: 1004b41f .word 0x1004b41f + +1003b3a8 : +1003b3a8: 6903 ldr r3, [r0, #16] +1003b3aa: 440b add r3, r1 +1003b3ac: 6103 str r3, [r0, #16] +1003b3ae: 6943 ldr r3, [r0, #20] +1003b3b0: 4419 add r1, r3 +1003b3b2: 6141 str r1, [r0, #20] +1003b3b4: 4770 bx lr + +1003b3b6 : +1003b3b6: 3103 adds r1, #3 +1003b3b8: b538 push {r3, r4, r5, lr} +1003b3ba: f021 0403 bic.w r4, r1, #3 +1003b3be: 4420 add r0, r4 +1003b3c0: f7ff ff22 bl 1003b208 +1003b3c4: 4605 mov r5, r0 +1003b3c6: b110 cbz r0, 1003b3ce +1003b3c8: 4621 mov r1, r4 +1003b3ca: f7ff ffed bl 1003b3a8 +1003b3ce: 4628 mov r0, r5 +1003b3d0: bd38 pop {r3, r4, r5, pc} + +1003b3d2 : +1003b3d2: 6980 ldr r0, [r0, #24] +1003b3d4: 4770 bx lr + +1003b3d6 : +1003b3d6: 6903 ldr r3, [r0, #16] +1003b3d8: 4419 add r1, r3 +1003b3da: 6141 str r1, [r0, #20] +1003b3dc: 4770 bx lr + +1003b3de : +1003b3de: 6a02 ldr r2, [r0, #32] +1003b3e0: 4603 mov r3, r0 +1003b3e2: 4291 cmp r1, r2 +1003b3e4: d805 bhi.n 1003b3f2 +1003b3e6: 1a52 subs r2, r2, r1 +1003b3e8: 6202 str r2, [r0, #32] +1003b3ea: 6900 ldr r0, [r0, #16] +1003b3ec: 4408 add r0, r1 +1003b3ee: 6118 str r0, [r3, #16] +1003b3f0: 4770 bx lr +1003b3f2: 2000 movs r0, #0 +1003b3f4: 4770 bx lr + +1003b3f6 : +1003b3f6: b538 push {r3, r4, r5, lr} +1003b3f8: 4611 mov r1, r2 +1003b3fa: 4604 mov r4, r0 +1003b3fc: 6a00 ldr r0, [r0, #32] +1003b3fe: f7ff ffda bl 1003b3b6 +1003b402: 4605 mov r5, r0 +1003b404: b148 cbz r0, 1003b41a +1003b406: 6a21 ldr r1, [r4, #32] +1003b408: f7ff ffb4 bl 1003b374 +1003b40c: 6928 ldr r0, [r5, #16] +1003b40e: 6921 ldr r1, [r4, #16] +1003b410: 6a22 ldr r2, [r4, #32] +1003b412: f006 fea5 bl 10042160 +1003b416: 69e3 ldr r3, [r4, #28] +1003b418: 61eb str r3, [r5, #28] +1003b41a: 4628 mov r0, r5 +1003b41c: bd38 pop {r3, r4, r5, pc} + +1003b41e : +1003b41e: 68c2 ldr r2, [r0, #12] +1003b420: 6943 ldr r3, [r0, #20] +1003b422: 6900 ldr r0, [r0, #16] +1003b424: 4413 add r3, r2 +1003b426: 1a18 subs r0, r3, r0 +1003b428: 4770 bx lr + +1003b42a <_rtw_open_pktfile>: +1003b42a: 6903 ldr r3, [r0, #16] +1003b42c: 6a02 ldr r2, [r0, #32] +1003b42e: 6008 str r0, [r1, #0] +1003b430: 60cb str r3, [r1, #12] +1003b432: 610b str r3, [r1, #16] +1003b434: 614a str r2, [r1, #20] +1003b436: 604a str r2, [r1, #4] +1003b438: 608b str r3, [r1, #8] +1003b43a: 4770 bx lr + +1003b43c <_rtw_pktfile_read>: +1003b43c: b570 push {r4, r5, r6, lr} +1003b43e: 4615 mov r5, r2 +1003b440: 4604 mov r4, r0 +1003b442: 460e mov r6, r1 +1003b444: f7ff ffeb bl 1003b41e +1003b448: 42a8 cmp r0, r5 +1003b44a: bf38 it cc +1003b44c: 4605 movcc r5, r0 +1003b44e: b126 cbz r6, 1003b45a <_rtw_pktfile_read+0x1e> +1003b450: 4630 mov r0, r6 +1003b452: 6921 ldr r1, [r4, #16] +1003b454: 462a mov r2, r5 +1003b456: f7e1 fca9 bl 1001cdac +1003b45a: 6923 ldr r3, [r4, #16] +1003b45c: 4628 mov r0, r5 +1003b45e: 442b add r3, r5 +1003b460: 6123 str r3, [r4, #16] +1003b462: 6863 ldr r3, [r4, #4] +1003b464: 1b5b subs r3, r3, r5 +1003b466: 6063 str r3, [r4, #4] +1003b468: bd70 pop {r4, r5, r6, pc} + +1003b46a : +1003b46a: 4770 bx lr + +1003b46c : +1003b46c: 2300 movs r3, #0 +1003b46e: 60cb str r3, [r1, #12] +1003b470: 610b str r3, [r1, #16] +1003b472: 2001 movs r0, #1 +1003b474: 4770 bx lr + +1003b476 : +1003b476: 4770 bx lr + +1003b478 : +1003b478: 4608 mov r0, r1 +1003b47a: 69c9 ldr r1, [r1, #28] +1003b47c: f7ff bf78 b.w 1003b370 + +1003b480 : +1003b480: b510 push {r4, lr} +1003b482: 460c mov r4, r1 +1003b484: 6f49 ldr r1, [r1, #116] ; 0x74 +1003b486: b109 cbz r1, 1003b48c +1003b488: f7ff fff6 bl 1003b478 +1003b48c: 2300 movs r3, #0 +1003b48e: 6763 str r3, [r4, #116] ; 0x74 +1003b490: bd10 pop {r4, pc} + +1003b492 : +1003b492: b537 push {r0, r1, r2, r4, r5, lr} +1003b494: 4604 mov r4, r0 +1003b496: b1c0 cbz r0, 1003b4ca +1003b498: f241 73b1 movw r3, #6065 ; 0x17b1 +1003b49c: 5cc3 ldrb r3, [r0, r3] +1003b49e: b113 cbz r3, 1003b4a6 +1003b4a0: f241 73a8 movw r3, #6056 ; 0x17a8 +1003b4a4: 58c4 ldr r4, [r0, r3] +1003b4a6: f604 05c8 addw r5, r4, #2248 ; 0x8c8 +1003b4aa: 4628 mov r0, r5 +1003b4ac: a901 add r1, sp, #4 +1003b4ae: f7e1 fd23 bl 1001cef8 +1003b4b2: 4620 mov r0, r4 +1003b4b4: f7f3 fcab bl 1002ee0e +1003b4b8: b118 cbz r0, 1003b4c2 +1003b4ba: f504 50bb add.w r0, r4, #5984 ; 0x1760 +1003b4be: f7e1 fe79 bl 1001d1b4 +1003b4c2: 4628 mov r0, r5 +1003b4c4: a901 add r1, sp, #4 +1003b4c6: f7e1 fd1f bl 1001cf08 +1003b4ca: b003 add sp, #12 +1003b4cc: bd30 pop {r4, r5, pc} + +1003b4ce : +1003b4ce: b537 push {r0, r1, r2, r4, r5, lr} +1003b4d0: 690b ldr r3, [r1, #16] +1003b4d2: 9001 str r0, [sp, #4] +1003b4d4: 681d ldr r5, [r3, #0] +1003b4d6: 4628 mov r0, r5 +1003b4d8: f7e8 fa08 bl 100238ec +1003b4dc: f605 04c8 addw r4, r5, #2248 ; 0x8c8 +1003b4e0: b168 cbz r0, 1003b4fe +1003b4e2: 4628 mov r0, r5 +1003b4e4: a901 add r1, sp, #4 +1003b4e6: f7f4 fb4d bl 1002fb84 +1003b4ea: 2800 cmp r0, #0 +1003b4ec: db07 blt.n 1003b4fe +1003b4ee: e9d4 231a ldrd r2, r3, [r4, #104] ; 0x68 +1003b4f2: 3201 adds r2, #1 +1003b4f4: f143 0300 adc.w r3, r3, #0 +1003b4f8: e9c4 231a strd r2, r3, [r4, #104] ; 0x68 +1003b4fc: e00a b.n 1003b514 +1003b4fe: e9d4 231c ldrd r2, r3, [r4, #112] ; 0x70 +1003b502: 9801 ldr r0, [sp, #4] +1003b504: 3201 adds r2, #1 +1003b506: f143 0300 adc.w r3, r3, #0 +1003b50a: e9c4 231c strd r2, r3, [r4, #112] ; 0x70 +1003b50e: 69c1 ldr r1, [r0, #28] +1003b510: f7ff ff2e bl 1003b370 +1003b514: 2000 movs r0, #0 +1003b516: b003 add sp, #12 +1003b518: bd30 pop {r4, r5, pc} + +1003b51a : +1003b51a: b538 push {r3, r4, r5, lr} +1003b51c: 4604 mov r4, r0 +1003b51e: 2008 movs r0, #8 +1003b520: 460d mov r5, r1 +1003b522: f000 f855 bl 1003b5d0 +1003b526: b110 cbz r0, 1003b52e +1003b528: 6903 ldr r3, [r0, #16] +1003b52a: 601d str r5, [r3, #0] +1003b52c: 605c str r4, [r3, #4] +1003b52e: bd38 pop {r3, r4, r5, pc} + +1003b530 : +1003b530: b5f8 push {r3, r4, r5, r6, r7, lr} +1003b532: 4606 mov r6, r0 +1003b534: 2008 movs r0, #8 +1003b536: f000 f84b bl 1003b5d0 +1003b53a: 4604 mov r4, r0 +1003b53c: b160 cbz r0, 1003b558 +1003b53e: 6907 ldr r7, [r0, #16] +1003b540: 4630 mov r0, r6 +1003b542: f7e1 fbeb bl 1001cd1c +1003b546: 4605 mov r5, r0 +1003b548: 6038 str r0, [r7, #0] +1003b54a: b920 cbnz r0, 1003b556 +1003b54c: 4620 mov r0, r4 +1003b54e: f000 f86d bl 1003b62c +1003b552: 462c mov r4, r5 +1003b554: e000 b.n 1003b558 +1003b556: 607e str r6, [r7, #4] +1003b558: 4620 mov r0, r4 +1003b55a: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1003b55c : +1003b55c: b510 push {r4, lr} +1003b55e: 4604 mov r4, r0 +1003b560: b150 cbz r0, 1003b578 +1003b562: 6903 ldr r3, [r0, #16] +1003b564: 6818 ldr r0, [r3, #0] +1003b566: b138 cbz r0, 1003b578 +1003b568: 6859 ldr r1, [r3, #4] +1003b56a: f7e1 fbe9 bl 1001cd40 +1003b56e: 4620 mov r0, r4 +1003b570: e8bd 4010 ldmia.w sp!, {r4, lr} +1003b574: f000 b85a b.w 1003b62c +1003b578: bd10 pop {r4, pc} + ... + +1003b57c : +1003b57c: b5f8 push {r3, r4, r5, r6, r7, lr} +1003b57e: 4607 mov r7, r0 +1003b580: f7e1 fb36 bl 1001cbf0 +1003b584: 4b0f ldr r3, [pc, #60] ; (1003b5c4 ) +1003b586: 2500 movs r5, #0 +1003b588: 681c ldr r4, [r3, #0] +1003b58a: 461e mov r6, r3 +1003b58c: 480d ldr r0, [pc, #52] ; (1003b5c4 ) +1003b58e: 4621 mov r1, r4 +1003b590: f7e1 fce6 bl 1001cf60 +1003b594: b930 cbnz r0, 1003b5a4 +1003b596: 68a3 ldr r3, [r4, #8] +1003b598: 4625 mov r5, r4 +1003b59a: 681b ldr r3, [r3, #0] +1003b59c: 42bb cmp r3, r7 +1003b59e: d001 beq.n 1003b5a4 +1003b5a0: 6824 ldr r4, [r4, #0] +1003b5a2: e7f3 b.n 1003b58c +1003b5a4: f7e1 fb26 bl 1001cbf4 +1003b5a8: 42b4 cmp r4, r6 +1003b5aa: d105 bne.n 1003b5b8 +1003b5ac: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +1003b5b0: 4805 ldr r0, [pc, #20] ; (1003b5c8 ) +1003b5b2: 4906 ldr r1, [pc, #24] ; (1003b5cc ) +1003b5b4: f006 bda8 b.w 10042108 +1003b5b8: 68ab ldr r3, [r5, #8] +1003b5ba: 689a ldr r2, [r3, #8] +1003b5bc: 6858 ldr r0, [r3, #4] +1003b5be: 4790 blx r2 +1003b5c0: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003b5c2: bf00 nop +1003b5c4: 10055540 .word 0x10055540 +1003b5c8: 1004b520 .word 0x1004b520 +1003b5cc: 1004b508 .word 0x1004b508 + +1003b5d0 : +1003b5d0: b570 push {r4, r5, r6, lr} +1003b5d2: 4605 mov r5, r0 +1003b5d4: 2034 movs r0, #52 ; 0x34 +1003b5d6: f7e1 fbb5 bl 1001cd44 +1003b5da: 4604 mov r4, r0 +1003b5dc: b920 cbnz r0, 1003b5e8 +1003b5de: 4910 ldr r1, [pc, #64] ; (1003b620 ) +1003b5e0: 4810 ldr r0, [pc, #64] ; (1003b624 ) +1003b5e2: f006 fd91 bl 10042108 +1003b5e6: e019 b.n 1003b61c +1003b5e8: 2100 movs r1, #0 +1003b5ea: 2234 movs r2, #52 ; 0x34 +1003b5ec: f006 fdbe bl 1004216c +1003b5f0: 2d00 cmp r5, #0 +1003b5f2: dd13 ble.n 1003b61c +1003b5f4: 4628 mov r0, r5 +1003b5f6: f7e1 fba5 bl 1001cd44 +1003b5fa: 4606 mov r6, r0 +1003b5fc: 6120 str r0, [r4, #16] +1003b5fe: b948 cbnz r0, 1003b614 +1003b600: 4907 ldr r1, [pc, #28] ; (1003b620 ) +1003b602: 4809 ldr r0, [pc, #36] ; (1003b628 ) +1003b604: f006 fd80 bl 10042108 +1003b608: 4620 mov r0, r4 +1003b60a: 2134 movs r1, #52 ; 0x34 +1003b60c: f7e1 fbc6 bl 1001cd9c +1003b610: 4630 mov r0, r6 +1003b612: bd70 pop {r4, r5, r6, pc} +1003b614: 2100 movs r1, #0 +1003b616: 462a mov r2, r5 +1003b618: f006 fda8 bl 1004216c +1003b61c: 4620 mov r0, r4 +1003b61e: bd70 pop {r4, r5, r6, pc} +1003b620: 1004b924 .word 0x1004b924 +1003b624: 1004b553 .word 0x1004b553 +1003b628: 1004b576 .word 0x1004b576 + +1003b62c : +1003b62c: b510 push {r4, lr} +1003b62e: 4604 mov r4, r0 +1003b630: 6900 ldr r0, [r0, #16] +1003b632: b110 cbz r0, 1003b63a +1003b634: 2100 movs r1, #0 +1003b636: f7e1 fbb1 bl 1001cd9c +1003b63a: 4620 mov r0, r4 +1003b63c: 2100 movs r1, #0 +1003b63e: e8bd 4010 ldmia.w sp!, {r4, lr} +1003b642: f7e1 bbab b.w 1001cd9c + +1003b646 : +1003b646: b508 push {r3, lr} +1003b648: f006 fd9c bl 10042184 +1003b64c: 2000 movs r0, #0 +1003b64e: bd08 pop {r3, pc} + +1003b650 : +1003b650: b508 push {r3, lr} +1003b652: 4804 ldr r0, [pc, #16] ; (1003b664 ) +1003b654: f7e1 fbc4 bl 1001cde0 +1003b658: 4a03 ldr r2, [pc, #12] ; (1003b668 ) +1003b65a: 2300 movs r3, #0 +1003b65c: 6013 str r3, [r2, #0] +1003b65e: 4a03 ldr r2, [pc, #12] ; (1003b66c ) +1003b660: 6013 str r3, [r2, #0] +1003b662: bd08 pop {r3, pc} +1003b664: 10055540 .word 0x10055540 +1003b668: 10055578 .word 0x10055578 +1003b66c: 1005557c .word 0x1005557c + +1003b670 : +1003b670: 4b0e ldr r3, [pc, #56] ; (1003b6ac ) +1003b672: b510 push {r4, lr} +1003b674: 681a ldr r2, [r3, #0] +1003b676: 2a00 cmp r2, #0 +1003b678: dd03 ble.n 1003b682 +1003b67a: 480d ldr r0, [pc, #52] ; (1003b6b0 ) +1003b67c: 490d ldr r1, [pc, #52] ; (1003b6b4 ) +1003b67e: f006 fd43 bl 10042108 +1003b682: f7e1 fab5 bl 1001cbf0 +1003b686: 4c0c ldr r4, [pc, #48] ; (1003b6b8 ) +1003b688: 4620 mov r0, r4 +1003b68a: 6821 ldr r1, [r4, #0] +1003b68c: f7e1 fc68 bl 1001cf60 +1003b690: b940 cbnz r0, 1003b6a4 +1003b692: 6824 ldr r4, [r4, #0] +1003b694: 4620 mov r0, r4 +1003b696: f7e1 fbb9 bl 1001ce0c +1003b69a: 4620 mov r0, r4 +1003b69c: 210c movs r1, #12 +1003b69e: f7e1 fb7d bl 1001cd9c +1003b6a2: e7f0 b.n 1003b686 +1003b6a4: e8bd 4010 ldmia.w sp!, {r4, lr} +1003b6a8: f7e1 baa4 b.w 1001cbf4 +1003b6ac: 10055578 .word 0x10055578 +1003b6b0: 1004b59a .word 0x1004b59a +1003b6b4: 1004b964 .word 0x1004b964 +1003b6b8: 10055540 .word 0x10055540 + +1003b6bc : +1003b6bc: 6883 ldr r3, [r0, #8] +1003b6be: b537 push {r0, r1, r2, r4, r5, lr} +1003b6c0: 4604 mov r4, r0 +1003b6c2: 2b00 cmp r3, #0 +1003b6c4: d043 beq.n 1003b74e +1003b6c6: 6802 ldr r2, [r0, #0] +1003b6c8: 2a00 cmp r2, #0 +1003b6ca: d133 bne.n 1003b734 +1003b6cc: 4b21 ldr r3, [pc, #132] ; (1003b754 ) +1003b6ce: 4822 ldr r0, [pc, #136] ; (1003b758 ) +1003b6d0: 9300 str r3, [sp, #0] +1003b6d2: f04f 31ff mov.w r1, #4294967295 +1003b6d6: 4613 mov r3, r2 +1003b6d8: f7e1 fd76 bl 1001d1c8 +1003b6dc: 6020 str r0, [r4, #0] +1003b6de: b930 cbnz r0, 1003b6ee +1003b6e0: 481e ldr r0, [pc, #120] ; (1003b75c ) +1003b6e2: 491f ldr r1, [pc, #124] ; (1003b760 ) +1003b6e4: b003 add sp, #12 +1003b6e6: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1003b6ea: f006 bd0d b.w 10042108 +1003b6ee: 200c movs r0, #12 +1003b6f0: f7e1 fb3e bl 1001cd70 +1003b6f4: 4605 mov r5, r0 +1003b6f6: b950 cbnz r0, 1003b70e +1003b6f8: 4919 ldr r1, [pc, #100] ; (1003b760 ) +1003b6fa: 481a ldr r0, [pc, #104] ; (1003b764 ) +1003b6fc: f006 fd04 bl 10042108 +1003b700: 6820 ldr r0, [r4, #0] +1003b702: f04f 31ff mov.w r1, #4294967295 +1003b706: f7e1 fd6f bl 1001d1e8 +1003b70a: 6025 str r5, [r4, #0] +1003b70c: e01f b.n 1003b74e +1003b70e: 6084 str r4, [r0, #8] +1003b710: f7e1 fa6e bl 1001cbf0 +1003b714: 4914 ldr r1, [pc, #80] ; (1003b768 ) +1003b716: 4628 mov r0, r5 +1003b718: f7e1 fb6c bl 1001cdf4 +1003b71c: f7e1 fa6a bl 1001cbf4 +1003b720: 4a12 ldr r2, [pc, #72] ; (1003b76c ) +1003b722: 6813 ldr r3, [r2, #0] +1003b724: 3301 adds r3, #1 +1003b726: 6013 str r3, [r2, #0] +1003b728: 4a11 ldr r2, [pc, #68] ; (1003b770 ) +1003b72a: 6811 ldr r1, [r2, #0] +1003b72c: 428b cmp r3, r1 +1003b72e: dd0e ble.n 1003b74e +1003b730: 6013 str r3, [r2, #0] +1003b732: e00c b.n 1003b74e +1003b734: 4610 mov r0, r2 +1003b736: f7e1 fd63 bl 1001d200 +1003b73a: 2801 cmp r0, #1 +1003b73c: d107 bne.n 1003b74e +1003b73e: 6820 ldr r0, [r4, #0] +1003b740: f04f 31ff mov.w r1, #4294967295 +1003b744: b003 add sp, #12 +1003b746: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1003b74a: f7e1 bd65 b.w 1001d218 +1003b74e: b003 add sp, #12 +1003b750: bd30 pop {r4, r5, pc} +1003b752: bf00 nop +1003b754: 1003b57d .word 0x1003b57d +1003b758: 1004a820 .word 0x1004a820 +1003b75c: 1004b5bf .word 0x1004b5bf +1003b760: 1004b919 .word 0x1004b919 +1003b764: 1004b5d9 .word 0x1004b5d9 +1003b768: 10055540 .word 0x10055540 +1003b76c: 10055578 .word 0x10055578 +1003b770: 1005557c .word 0x1005557c + +1003b774 : +1003b774: b573 push {r0, r1, r4, r5, r6, lr} +1003b776: 4b2d ldr r3, [pc, #180] ; (1003b82c ) +1003b778: 4604 mov r4, r0 +1003b77a: 7c1b ldrb r3, [r3, #16] +1003b77c: 460e mov r6, r1 +1003b77e: 2b00 cmp r3, #0 +1003b780: d051 beq.n 1003b826 +1003b782: 6802 ldr r2, [r0, #0] +1003b784: 2a00 cmp r2, #0 +1003b786: d131 bne.n 1003b7ec +1003b788: 4b29 ldr r3, [pc, #164] ; (1003b830 ) +1003b78a: 482a ldr r0, [pc, #168] ; (1003b834 ) +1003b78c: 9300 str r3, [sp, #0] +1003b78e: f04f 31ff mov.w r1, #4294967295 +1003b792: 4613 mov r3, r2 +1003b794: f7e1 fd18 bl 1001d1c8 +1003b798: 6020 str r0, [r4, #0] +1003b79a: b920 cbnz r0, 1003b7a6 +1003b79c: 4926 ldr r1, [pc, #152] ; (1003b838 ) +1003b79e: 4827 ldr r0, [pc, #156] ; (1003b83c ) +1003b7a0: f006 fcb2 bl 10042108 +1003b7a4: e02c b.n 1003b800 +1003b7a6: 200c movs r0, #12 +1003b7a8: f7e1 fae2 bl 1001cd70 +1003b7ac: 4605 mov r5, r0 +1003b7ae: b950 cbnz r0, 1003b7c6 +1003b7b0: 4921 ldr r1, [pc, #132] ; (1003b838 ) +1003b7b2: 4823 ldr r0, [pc, #140] ; (1003b840 ) +1003b7b4: f006 fca8 bl 10042108 +1003b7b8: 6820 ldr r0, [r4, #0] +1003b7ba: f04f 31ff mov.w r1, #4294967295 +1003b7be: f7e1 fd13 bl 1001d1e8 +1003b7c2: 6025 str r5, [r4, #0] +1003b7c4: e02f b.n 1003b826 +1003b7c6: 6084 str r4, [r0, #8] +1003b7c8: f7e1 fa12 bl 1001cbf0 +1003b7cc: 491d ldr r1, [pc, #116] ; (1003b844 ) +1003b7ce: 4628 mov r0, r5 +1003b7d0: f7e1 fb10 bl 1001cdf4 +1003b7d4: f7e1 fa0e bl 1001cbf4 +1003b7d8: 4a1b ldr r2, [pc, #108] ; (1003b848 ) +1003b7da: 6813 ldr r3, [r2, #0] +1003b7dc: 3301 adds r3, #1 +1003b7de: 6013 str r3, [r2, #0] +1003b7e0: 4a1a ldr r2, [pc, #104] ; (1003b84c ) +1003b7e2: 6811 ldr r1, [r2, #0] +1003b7e4: 428b cmp r3, r1 +1003b7e6: dd0b ble.n 1003b800 +1003b7e8: 6013 str r3, [r2, #0] +1003b7ea: e009 b.n 1003b800 +1003b7ec: 4610 mov r0, r2 +1003b7ee: f7e1 fd07 bl 1001d200 +1003b7f2: 2801 cmp r0, #1 +1003b7f4: d104 bne.n 1003b800 +1003b7f6: 6820 ldr r0, [r4, #0] +1003b7f8: f04f 31ff mov.w r1, #4294967295 +1003b7fc: f7e1 fd0c bl 1001d218 +1003b800: 6824 ldr r4, [r4, #0] +1003b802: b184 cbz r4, 1003b826 +1003b804: 4630 mov r0, r6 +1003b806: f7e1 fbf1 bl 1001cfec +1003b80a: f04f 32ff mov.w r2, #4294967295 +1003b80e: 4601 mov r1, r0 +1003b810: 4620 mov r0, r4 +1003b812: f7e1 fd0d bl 1001d230 +1003b816: b930 cbnz r0, 1003b826 +1003b818: 480d ldr r0, [pc, #52] ; (1003b850 ) +1003b81a: 4907 ldr r1, [pc, #28] ; (1003b838 ) +1003b81c: b002 add sp, #8 +1003b81e: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003b822: f006 bc71 b.w 10042108 +1003b826: b002 add sp, #8 +1003b828: bd70 pop {r4, r5, r6, pc} +1003b82a: bf00 nop +1003b82c: 10055548 .word 0x10055548 +1003b830: 1003b57d .word 0x1003b57d +1003b834: 1004a820 .word 0x1004a820 +1003b838: 1004b516 .word 0x1004b516 +1003b83c: 1004b5bf .word 0x1004b5bf +1003b840: 1004b5d9 .word 0x1004b5d9 +1003b844: 10055540 .word 0x10055540 +1003b848: 10055578 .word 0x10055578 +1003b84c: 1005557c .word 0x1005557c +1003b850: 1004b5fa .word 0x1004b5fa + +1003b854 : +1003b854: 6803 ldr r3, [r0, #0] +1003b856: b570 push {r4, r5, r6, lr} +1003b858: 4605 mov r5, r0 +1003b85a: b1e3 cbz r3, 1003b896 +1003b85c: f7e1 f9c8 bl 1001cbf0 +1003b860: 4b0d ldr r3, [pc, #52] ; (1003b898 ) +1003b862: 681c ldr r4, [r3, #0] +1003b864: 461e mov r6, r3 +1003b866: 480c ldr r0, [pc, #48] ; (1003b898 ) +1003b868: 4621 mov r1, r4 +1003b86a: f7e1 fb79 bl 1001cf60 +1003b86e: b920 cbnz r0, 1003b87a +1003b870: 68a3 ldr r3, [r4, #8] +1003b872: 681a ldr r2, [r3, #0] +1003b874: 682b ldr r3, [r5, #0] +1003b876: 429a cmp r2, r3 +1003b878: d104 bne.n 1003b884 +1003b87a: f7e1 f9bb bl 1001cbf4 +1003b87e: 42b4 cmp r4, r6 +1003b880: d102 bne.n 1003b888 +1003b882: bd70 pop {r4, r5, r6, pc} +1003b884: 6824 ldr r4, [r4, #0] +1003b886: e7ee b.n 1003b866 +1003b888: 6828 ldr r0, [r5, #0] +1003b88a: f04f 31ff mov.w r1, #4294967295 +1003b88e: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003b892: f7e1 bcc1 b.w 1001d218 +1003b896: bd70 pop {r4, r5, r6, pc} +1003b898: 10055540 .word 0x10055540 + +1003b89c : +1003b89c: 6803 ldr r3, [r0, #0] +1003b89e: b570 push {r4, r5, r6, lr} +1003b8a0: 4605 mov r5, r0 +1003b8a2: b33b cbz r3, 1003b8f4 +1003b8a4: f7e1 f9a4 bl 1001cbf0 +1003b8a8: 4b13 ldr r3, [pc, #76] ; (1003b8f8 ) +1003b8aa: 681c ldr r4, [r3, #0] +1003b8ac: 461e mov r6, r3 +1003b8ae: 4812 ldr r0, [pc, #72] ; (1003b8f8 ) +1003b8b0: 4621 mov r1, r4 +1003b8b2: f7e1 fb55 bl 1001cf60 +1003b8b6: b970 cbnz r0, 1003b8d6 +1003b8b8: 68a3 ldr r3, [r4, #8] +1003b8ba: 681a ldr r2, [r3, #0] +1003b8bc: 682b ldr r3, [r5, #0] +1003b8be: 429a cmp r2, r3 +1003b8c0: d107 bne.n 1003b8d2 +1003b8c2: 4620 mov r0, r4 +1003b8c4: f7e1 faa2 bl 1001ce0c +1003b8c8: 4620 mov r0, r4 +1003b8ca: 210c movs r1, #12 +1003b8cc: f7e1 fa66 bl 1001cd9c +1003b8d0: e001 b.n 1003b8d6 +1003b8d2: 6824 ldr r4, [r4, #0] +1003b8d4: e7eb b.n 1003b8ae +1003b8d6: f7e1 f98d bl 1001cbf4 +1003b8da: 42b4 cmp r4, r6 +1003b8dc: d00a beq.n 1003b8f4 +1003b8de: 6828 ldr r0, [r5, #0] +1003b8e0: f04f 31ff mov.w r1, #4294967295 +1003b8e4: f7e1 fc80 bl 1001d1e8 +1003b8e8: 2300 movs r3, #0 +1003b8ea: 602b str r3, [r5, #0] +1003b8ec: 4b03 ldr r3, [pc, #12] ; (1003b8fc ) +1003b8ee: 681a ldr r2, [r3, #0] +1003b8f0: 3a01 subs r2, #1 +1003b8f2: 601a str r2, [r3, #0] +1003b8f4: bd70 pop {r4, r5, r6, pc} +1003b8f6: bf00 nop +1003b8f8: 10055540 .word 0x10055540 +1003b8fc: 10055578 .word 0x10055578 + +1003b900 : +1003b900: 6082 str r2, [r0, #8] +1003b902: 6043 str r3, [r0, #4] +1003b904: f7ff beda b.w 1003b6bc + +1003b908 : +1003b908: f7ff bf34 b.w 1003b774 + +1003b90c : +1003b90c: b508 push {r3, lr} +1003b90e: f7ff ffa1 bl 1003b854 +1003b912: 2000 movs r0, #0 +1003b914: bd08 pop {r3, pc} + +1003b916 : +1003b916: f7ff bfc1 b.w 1003b89c + ... + +1003b91c : +1003b91c: 4b02 ldr r3, [pc, #8] ; (1003b928 ) +1003b91e: 681b ldr r3, [r3, #0] +1003b920: 1a18 subs r0, r3, r0 +1003b922: bf18 it ne +1003b924: 2001 movne r0, #1 +1003b926: 4770 bx lr +1003b928: 10055548 .word 0x10055548 + +1003b92c : +1003b92c: b570 push {r4, r5, r6, lr} +1003b92e: 460c mov r4, r1 +1003b930: 4606 mov r6, r0 +1003b932: b970 cbnz r0, 1003b952 +1003b934: 4601 mov r1, r0 +1003b936: f7e1 f9c1 bl 1001ccbc +1003b93a: f7ff fc0d bl 1003b158 +1003b93e: f7ff fc37 bl 1003b1b0 +1003b942: f7ff fbfb bl 1003b13c +1003b946: f7ff fe83 bl 1003b650 +1003b94a: f7fc fe89 bl 10038660 +1003b94e: 4630 mov r0, r6 +1003b950: e007 b.n 1003b962 +1003b952: 2801 cmp r0, #1 +1003b954: d103 bne.n 1003b95e +1003b956: 4b13 ldr r3, [pc, #76] ; (1003b9a4 ) +1003b958: 6818 ldr r0, [r3, #0] +1003b95a: b910 cbnz r0, 1003b962 +1003b95c: e01f b.n 1003b99e +1003b95e: 4812 ldr r0, [pc, #72] ; (1003b9a8 ) +1003b960: e01a b.n 1003b998 +1003b962: 4621 mov r1, r4 +1003b964: f7fc fd9a bl 1003849c +1003b968: 4601 mov r1, r0 +1003b96a: b190 cbz r0, 1003b992 +1003b96c: 2318 movs r3, #24 +1003b96e: 4373 muls r3, r6 +1003b970: 4a0c ldr r2, [pc, #48] ; (1003b9a4 ) +1003b972: 2400 movs r4, #0 +1003b974: 18d5 adds r5, r2, r3 +1003b976: 606c str r4, [r5, #4] +1003b978: 60ac str r4, [r5, #8] +1003b97a: 60ec str r4, [r5, #12] +1003b97c: 742c strb r4, [r5, #16] +1003b97e: 50d0 str r0, [r2, r3] +1003b980: 4630 mov r0, r6 +1003b982: f101 0214 add.w r2, r1, #20 +1003b986: f7de f9f5 bl 10019d74 +1003b98a: 2301 movs r3, #1 +1003b98c: 742b strb r3, [r5, #16] +1003b98e: 4620 mov r0, r4 +1003b990: bd70 pop {r4, r5, r6, pc} +1003b992: f7fc fe7b bl 1003868c +1003b996: 4805 ldr r0, [pc, #20] ; (1003b9ac ) +1003b998: 4905 ldr r1, [pc, #20] ; (1003b9b0 ) +1003b99a: f006 fbb5 bl 10042108 +1003b99e: f04f 30ff mov.w r0, #4294967295 +1003b9a2: bd70 pop {r4, r5, r6, pc} +1003b9a4: 10055548 .word 0x10055548 +1003b9a8: 1004b61a .word 0x1004b61a +1003b9ac: 1004b635 .word 0x1004b635 +1003b9b0: 1004b4f9 .word 0x1004b4f9 + +1003b9b4 : +1003b9b4: b5f8 push {r3, r4, r5, r6, r7, lr} +1003b9b6: 4c2c ldr r4, [pc, #176] ; (1003ba68 ) +1003b9b8: 7c23 ldrb r3, [r4, #16] +1003b9ba: 6826 ldr r6, [r4, #0] +1003b9bc: 2b00 cmp r3, #0 +1003b9be: d051 beq.n 1003ba64 +1003b9c0: 6933 ldr r3, [r6, #16] +1003b9c2: 2201 movs r2, #1 +1003b9c4: 681d ldr r5, [r3, #0] +1003b9c6: f241 7304 movw r3, #5892 ; 0x1704 +1003b9ca: f505 50b8 add.w r0, r5, #5888 ; 0x1700 +1003b9ce: 54ea strb r2, [r5, r3] +1003b9d0: 3018 adds r0, #24 +1003b9d2: f7e1 fbef bl 1001d1b4 +1003b9d6: f7e1 f90b bl 1001cbf0 +1003b9da: 2300 movs r3, #0 +1003b9dc: 68a2 ldr r2, [r4, #8] +1003b9de: 68e7 ldr r7, [r4, #12] +1003b9e0: 7423 strb r3, [r4, #16] +1003b9e2: f884 3028 strb.w r3, [r4, #40] ; 0x28 +1003b9e6: 6a23 ldr r3, [r4, #32] +1003b9e8: 4417 add r7, r2 +1003b9ea: 441f add r7, r3 +1003b9ec: 6a63 ldr r3, [r4, #36] ; 0x24 +1003b9ee: 441f add r7, r3 +1003b9f0: f7e1 f900 bl 1001cbf4 +1003b9f4: b14f cbz r7, 1003ba0a +1003b9f6: 491d ldr r1, [pc, #116] ; (1003ba6c ) +1003b9f8: 463a mov r2, r7 +1003b9fa: 481d ldr r0, [pc, #116] ; (1003ba70 ) +1003b9fc: f006 fb84 bl 10042108 +1003ba00: f44f 707a mov.w r0, #1000 ; 0x3e8 +1003ba04: f7e1 fb36 bl 1001d074 +1003ba08: e7e5 b.n 1003b9d6 +1003ba0a: 2064 movs r0, #100 ; 0x64 +1003ba0c: f7e1 fb32 bl 1001d074 +1003ba10: f505 53b8 add.w r3, r5, #5888 ; 0x1700 +1003ba14: 331c adds r3, #28 +1003ba16: 681b ldr r3, [r3, #0] +1003ba18: b163 cbz r3, 1003ba34 +1003ba1a: f505 53b8 add.w r3, r5, #5888 ; 0x1700 +1003ba1e: 3304 adds r3, #4 +1003ba20: 781b ldrb r3, [r3, #0] +1003ba22: 2b02 cmp r3, #2 +1003ba24: d006 beq.n 1003ba34 +1003ba26: 4813 ldr r0, [pc, #76] ; (1003ba74 ) +1003ba28: 4910 ldr r1, [pc, #64] ; (1003ba6c ) +1003ba2a: f006 fb6d bl 10042108 +1003ba2e: f44f 707a mov.w r0, #1000 ; 0x3e8 +1003ba32: e7eb b.n 1003ba0c +1003ba34: 4630 mov r0, r6 +1003ba36: f7fc fdf1 bl 1003861c +1003ba3a: f7fc fe27 bl 1003868c +1003ba3e: f7ff fe17 bl 1003b670 +1003ba42: 2000 movs r0, #0 +1003ba44: 7420 strb r0, [r4, #16] +1003ba46: f884 0028 strb.w r0, [r4, #40] ; 0x28 +1003ba4a: 6020 str r0, [r4, #0] +1003ba4c: 6060 str r0, [r4, #4] +1003ba4e: 60a0 str r0, [r4, #8] +1003ba50: 60e0 str r0, [r4, #12] +1003ba52: 61a0 str r0, [r4, #24] +1003ba54: 61e0 str r0, [r4, #28] +1003ba56: 6220 str r0, [r4, #32] +1003ba58: 6260 str r0, [r4, #36] ; 0x24 +1003ba5a: 4601 mov r1, r0 +1003ba5c: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +1003ba60: f7e1 b93a b.w 1001ccd8 +1003ba64: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003ba66: bf00 nop +1003ba68: 10055548 .word 0x10055548 +1003ba6c: 1004b953 .word 0x1004b953 +1003ba70: 1004b656 .word 0x1004b656 +1003ba74: 1004b676 .word 0x1004b676 + +1003ba78 : +1003ba78: 2218 movs r2, #24 +1003ba7a: b508 push {r3, lr} +1003ba7c: 4350 muls r0, r2 +1003ba7e: 4b08 ldr r3, [pc, #32] ; (1003baa0 ) +1003ba80: 181a adds r2, r3, r0 +1003ba82: 5818 ldr r0, [r3, r0] +1003ba84: 7c13 ldrb r3, [r2, #16] +1003ba86: b143 cbz r3, 1003ba9a +1003ba88: b920 cbnz r0, 1003ba94 +1003ba8a: 4906 ldr r1, [pc, #24] ; (1003baa4 ) +1003ba8c: 4806 ldr r0, [pc, #24] ; (1003baa8 ) +1003ba8e: f006 fb3b bl 10042108 +1003ba92: e002 b.n 1003ba9a +1003ba94: 6a03 ldr r3, [r0, #32] +1003ba96: 4798 blx r3 +1003ba98: bd08 pop {r3, pc} +1003ba9a: f04f 30ff mov.w r0, #4294967295 +1003ba9e: bd08 pop {r3, pc} +1003baa0: 10055548 .word 0x10055548 +1003baa4: 1004b4c2 .word 0x1004b4c2 +1003baa8: 1004b68d .word 0x1004b68d + +1003baac : +1003baac: 4b02 ldr r3, [pc, #8] ; (1003bab8 ) +1003baae: 2218 movs r2, #24 +1003bab0: fb02 3000 mla r0, r2, r0, r3 +1003bab4: 7c00 ldrb r0, [r0, #16] +1003bab6: 4770 bx lr +1003bab8: 10055548 .word 0x10055548 + +1003babc : +1003babc: 4b03 ldr r3, [pc, #12] ; (1003bacc ) +1003babe: 2218 movs r2, #24 +1003bac0: fb02 3000 mla r0, r2, r0, r3 +1003bac4: 6883 ldr r3, [r0, #8] +1003bac6: 3301 adds r3, #1 +1003bac8: 6083 str r3, [r0, #8] +1003baca: 4770 bx lr +1003bacc: 10055548 .word 0x10055548 + +1003bad0 : +1003bad0: 4b03 ldr r3, [pc, #12] ; (1003bae0 ) +1003bad2: 2218 movs r2, #24 +1003bad4: fb02 3000 mla r0, r2, r0, r3 +1003bad8: 6883 ldr r3, [r0, #8] +1003bada: 3b01 subs r3, #1 +1003badc: 6083 str r3, [r0, #8] +1003bade: 4770 bx lr +1003bae0: 10055548 .word 0x10055548 + +1003bae4 : +1003bae4: 4b02 ldr r3, [pc, #8] ; (1003baf0 ) +1003bae6: 2218 movs r2, #24 +1003bae8: fb02 3000 mla r0, r2, r0, r3 +1003baec: 6840 ldr r0, [r0, #4] +1003baee: 4770 bx lr +1003baf0: 10055548 .word 0x10055548 + +1003baf4 : +1003baf4: b508 push {r3, lr} +1003baf6: 4b0b ldr r3, [pc, #44] ; (1003bb24 ) +1003baf8: 681a ldr r2, [r3, #0] +1003bafa: 4b0b ldr r3, [pc, #44] ; (1003bb28 ) +1003bafc: 3a02 subs r2, #2 +1003bafe: 681b ldr r3, [r3, #0] +1003bb00: 429a cmp r2, r3 +1003bb02: dd0b ble.n 1003bb1c +1003bb04: 4b09 ldr r3, [pc, #36] ; (1003bb2c ) +1003bb06: 681a ldr r2, [r3, #0] +1003bb08: 4b09 ldr r3, [pc, #36] ; (1003bb30 ) +1003bb0a: 3a02 subs r2, #2 +1003bb0c: 681b ldr r3, [r3, #0] +1003bb0e: 429a cmp r2, r3 +1003bb10: dd04 ble.n 1003bb1c +1003bb12: e8bd 4008 ldmia.w sp!, {r3, lr} +1003bb16: 214a movs r1, #74 ; 0x4a +1003bb18: f7ff bc4d b.w 1003b3b6 +1003bb1c: f7ff fb00 bl 1003b120 +1003bb20: 2000 movs r0, #0 +1003bb22: bd08 pop {r3, pc} +1003bb24: 1004da08 .word 0x1004da08 +1003bb28: 1005536c .word 0x1005536c +1003bb2c: 1004da0c .word 0x1004da0c +1003bb30: 10055528 .word 0x10055528 + +1003bb34 : +1003bb34: b508 push {r3, lr} +1003bb36: 1c43 adds r3, r0, #1 +1003bb38: d105 bne.n 1003bb46 +1003bb3a: e8bd 4008 ldmia.w sp!, {r3, lr} +1003bb3e: 4807 ldr r0, [pc, #28] ; (1003bb5c ) +1003bb40: 4907 ldr r1, [pc, #28] ; (1003bb60 ) +1003bb42: f006 bae1 b.w 10042108 +1003bb46: 2218 movs r2, #24 +1003bb48: fb02 f300 mul.w r3, r2, r0 +1003bb4c: 4a05 ldr r2, [pc, #20] ; (1003bb64 ) +1003bb4e: 4608 mov r0, r1 +1003bb50: 58d3 ldr r3, [r2, r3] +1003bb52: 61cb str r3, [r1, #28] +1003bb54: 6a9a ldr r2, [r3, #40] ; 0x28 +1003bb56: 4619 mov r1, r3 +1003bb58: 4790 blx r2 +1003bb5a: bd08 pop {r3, pc} +1003bb5c: 1004a15f .word 0x1004a15f +1003bb60: 1004b4e6 .word 0x1004b4e6 +1003bb64: 10055548 .word 0x10055548 + +1003bb68 : +1003bb68: b570 push {r4, r5, r6, lr} +1003bb6a: 4604 mov r4, r0 +1003bb6c: b928 cbnz r0, 1003bb7a +1003bb6e: 4825 ldr r0, [pc, #148] ; (1003bc04 ) +1003bb70: 4925 ldr r1, [pc, #148] ; (1003bc08 ) +1003bb72: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003bb76: f006 bac7 b.w 10042108 +1003bb7a: 69c0 ldr r0, [r0, #28] +1003bb7c: f7ff fece bl 1003b91c +1003bb80: 1c43 adds r3, r0, #1 +1003bb82: 4605 mov r5, r0 +1003bb84: d0f3 beq.n 1003bb6e +1003bb86: 4e21 ldr r6, [pc, #132] ; (1003bc0c ) +1003bb88: f7e1 f832 bl 1001cbf0 +1003bb8c: 2318 movs r3, #24 +1003bb8e: fb03 6305 mla r3, r3, r5, r6 +1003bb92: 7c1a ldrb r2, [r3, #16] +1003bb94: b18a cbz r2, 1003bbba +1003bb96: 68da ldr r2, [r3, #12] +1003bb98: 3201 adds r2, #1 +1003bb9a: 60da str r2, [r3, #12] +1003bb9c: f7e1 f82a bl 1001cbf4 +1003bba0: 6921 ldr r1, [r4, #16] +1003bba2: 7b0b ldrb r3, [r1, #12] +1003bba4: 2b08 cmp r3, #8 +1003bba6: d011 beq.n 1003bbcc +1003bba8: 2318 movs r3, #24 +1003bbaa: fb03 6305 mla r3, r3, r5, r6 +1003bbae: 4628 mov r0, r5 +1003bbb0: 605c str r4, [r3, #4] +1003bbb2: 6a21 ldr r1, [r4, #32] +1003bbb4: f7de f9ae bl 10019f14 +1003bbb8: e011 b.n 1003bbde +1003bbba: 4620 mov r0, r4 +1003bbbc: 69e1 ldr r1, [r4, #28] +1003bbbe: f7ff fbd7 bl 1003b370 +1003bbc2: 4911 ldr r1, [pc, #68] ; (1003bc08 ) +1003bbc4: 4812 ldr r0, [pc, #72] ; (1003bc10 ) +1003bbc6: f006 fa9f bl 10042108 +1003bbca: e017 b.n 1003bbfc +1003bbcc: 7b4b ldrb r3, [r1, #13] +1003bbce: 2b00 cmp r3, #0 +1003bbd0: d1ea bne.n 1003bba8 +1003bbd2: 4628 mov r0, r5 +1003bbd4: 311e adds r1, #30 +1003bbd6: f7de f96f bl 10019eb8 +1003bbda: 2800 cmp r0, #0 +1003bbdc: d1e4 bne.n 1003bba8 +1003bbde: 4620 mov r0, r4 +1003bbe0: 69e1 ldr r1, [r4, #28] +1003bbe2: f7ff fbc5 bl 1003b370 +1003bbe6: 2318 movs r3, #24 +1003bbe8: fb03 6505 mla r5, r3, r5, r6 +1003bbec: 2300 movs r3, #0 +1003bbee: 606b str r3, [r5, #4] +1003bbf0: 3508 adds r5, #8 +1003bbf2: f7e0 fffd bl 1001cbf0 +1003bbf6: 686b ldr r3, [r5, #4] +1003bbf8: 3b01 subs r3, #1 +1003bbfa: 606b str r3, [r5, #4] +1003bbfc: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003bc00: f7e0 bff8 b.w 1001cbf4 +1003bc04: 1004b6b7 .word 0x1004b6b7 +1003bc08: 1004b945 .word 0x1004b945 +1003bc0c: 10055548 .word 0x10055548 +1003bc10: 1004a15f .word 0x1004a15f + +1003bc14 : +1003bc14: f7fd bf30 b.w 10039a78 + +1003bc18 : +1003bc18: b538 push {r3, r4, r5, lr} +1003bc1a: 2205 movs r2, #5 +1003bc1c: 4604 mov r4, r0 +1003bc1e: 460d mov r5, r1 +1003bc20: 4608 mov r0, r1 +1003bc22: 491e ldr r1, [pc, #120] ; (1003bc9c ) +1003bc24: f006 fa96 bl 10042154 +1003bc28: 4b1d ldr r3, [pc, #116] ; (1003bca0 ) +1003bc2a: 2800 cmp r0, #0 +1003bc2c: bf14 ite ne +1003bc2e: 2018 movne r0, #24 +1003bc30: 2000 moveq r0, #0 +1003bc32: 5818 ldr r0, [r3, r0] +1003bc34: b358 cbz r0, 1003bc8e +1003bc36: 6903 ldr r3, [r0, #16] +1003bc38: f241 72b0 movw r2, #6064 ; 0x17b0 +1003bc3c: 681b ldr r3, [r3, #0] +1003bc3e: 5c9a ldrb r2, [r3, r2] +1003bc40: b912 cbnz r2, 1003bc48 +1003bc42: f241 72a8 movw r2, #6056 ; 0x17a8 +1003bc46: 589b ldr r3, [r3, r2] +1003bc48: f503 539b add.w r3, r3, #4960 ; 0x1360 +1003bc4c: 3310 adds r3, #16 +1003bc4e: 69db ldr r3, [r3, #28] +1003bc50: f1b3 4f00 cmp.w r3, #2147483648 ; 0x80000000 +1003bc54: d10d bne.n 1003bc72 +1003bc56: f648 3306 movw r3, #35590 ; 0x8b06 +1003bc5a: 429c cmp r4, r3 +1003bc5c: d01b beq.n 1003bc96 +1003bc5e: f648 3314 movw r3, #35604 ; 0x8b14 +1003bc62: 429c cmp r4, r3 +1003bc64: d017 beq.n 1003bc96 +1003bc66: f024 0202 bic.w r2, r4, #2 +1003bc6a: f648 3318 movw r3, #35608 ; 0x8b18 +1003bc6e: 429a cmp r2, r3 +1003bc70: d011 beq.n 1003bc96 +1003bc72: f5a4 4309 sub.w r3, r4, #35072 ; 0x8900 +1003bc76: 3bf0 subs r3, #240 ; 0xf0 +1003bc78: 2b0f cmp r3, #15 +1003bc7a: d903 bls.n 1003bc84 +1003bc7c: f5a4 430b sub.w r3, r4, #35584 ; 0x8b00 +1003bc80: 2bff cmp r3, #255 ; 0xff +1003bc82: d808 bhi.n 1003bc96 +1003bc84: 6ac3 ldr r3, [r0, #44] ; 0x2c +1003bc86: 4629 mov r1, r5 +1003bc88: 4622 mov r2, r4 +1003bc8a: 4798 blx r3 +1003bc8c: bd38 pop {r3, r4, r5, pc} +1003bc8e: 4805 ldr r0, [pc, #20] ; (1003bca4 ) +1003bc90: 4905 ldr r1, [pc, #20] ; (1003bca8 ) +1003bc92: f006 fa39 bl 10042108 +1003bc96: f04f 30ff mov.w r0, #4294967295 +1003bc9a: bd38 pop {r3, r4, r5, pc} +1003bc9c: 1004a159 .word 0x1004a159 +1003bca0: 10055548 .word 0x10055548 +1003bca4: 1004a15f .word 0x1004a15f +1003bca8: 1004b933 .word 0x1004b933 + +1003bcac : +1003bcac: 2801 cmp r0, #1 +1003bcae: d805 bhi.n 1003bcbc +1003bcb0: 4b03 ldr r3, [pc, #12] ; (1003bcc0 ) +1003bcb2: 2218 movs r2, #24 +1003bcb4: fb02 3000 mla r0, r2, r0, r3 +1003bcb8: 7c00 ldrb r0, [r0, #16] +1003bcba: 4770 bx lr +1003bcbc: 2000 movs r0, #0 +1003bcbe: 4770 bx lr +1003bcc0: 10055548 .word 0x10055548 + +1003bcc4 : +1003bcc4: b537 push {r0, r1, r2, r4, r5, lr} +1003bcc6: 4605 mov r5, r0 +1003bcc8: f7e0 ff92 bl 1001cbf0 +1003bccc: 2318 movs r3, #24 +1003bcce: 436b muls r3, r5 +1003bcd0: 4a20 ldr r2, [pc, #128] ; (1003bd54 ) +1003bcd2: 18d1 adds r1, r2, r3 +1003bcd4: 7c09 ldrb r1, [r1, #16] +1003bcd6: b1a9 cbz r1, 1003bd04 +1003bcd8: 58d0 ldr r0, [r2, r3] +1003bcda: 6b03 ldr r3, [r0, #48] ; 0x30 +1003bcdc: 4798 blx r3 +1003bcde: 6943 ldr r3, [r0, #20] +1003bce0: 4604 mov r4, r0 +1003bce2: 9300 str r3, [sp, #0] +1003bce4: 491c ldr r1, [pc, #112] ; (1003bd58 ) +1003bce6: 6862 ldr r2, [r4, #4] +1003bce8: 68e3 ldr r3, [r4, #12] +1003bcea: 481c ldr r0, [pc, #112] ; (1003bd5c ) +1003bcec: f006 fa0c bl 10042108 +1003bcf0: 6923 ldr r3, [r4, #16] +1003bcf2: 481b ldr r0, [pc, #108] ; (1003bd60 ) +1003bcf4: 9300 str r3, [sp, #0] +1003bcf6: 69a3 ldr r3, [r4, #24] +1003bcf8: 4917 ldr r1, [pc, #92] ; (1003bd58 ) +1003bcfa: 9301 str r3, [sp, #4] +1003bcfc: 6822 ldr r2, [r4, #0] +1003bcfe: 68a3 ldr r3, [r4, #8] +1003bd00: f006 fa02 bl 10042108 +1003bd04: f7e0 ff76 bl 1001cbf4 +1003bd08: bb15 cbnz r5, 1003bd50 +1003bd0a: 4b16 ldr r3, [pc, #88] ; (1003bd64 ) +1003bd0c: 681c ldr r4, [r3, #0] +1003bd0e: f7e1 fa0d bl 1001d12c +1003bd12: 4622 mov r2, r4 +1003bd14: 4603 mov r3, r0 +1003bd16: 4910 ldr r1, [pc, #64] ; (1003bd58 ) +1003bd18: 4813 ldr r0, [pc, #76] ; (1003bd68 ) +1003bd1a: f006 f9f5 bl 10042108 +1003bd1e: 4b13 ldr r3, [pc, #76] ; (1003bd6c ) +1003bd20: 490d ldr r1, [pc, #52] ; (1003bd58 ) +1003bd22: 681a ldr r2, [r3, #0] +1003bd24: 4b12 ldr r3, [pc, #72] ; (1003bd70 ) +1003bd26: 4813 ldr r0, [pc, #76] ; (1003bd74 ) +1003bd28: 681b ldr r3, [r3, #0] +1003bd2a: f006 f9ed bl 10042108 +1003bd2e: 4b12 ldr r3, [pc, #72] ; (1003bd78 ) +1003bd30: 4909 ldr r1, [pc, #36] ; (1003bd58 ) +1003bd32: 681a ldr r2, [r3, #0] +1003bd34: 4b11 ldr r3, [pc, #68] ; (1003bd7c ) +1003bd36: 4812 ldr r0, [pc, #72] ; (1003bd80 ) +1003bd38: 681b ldr r3, [r3, #0] +1003bd3a: f006 f9e5 bl 10042108 +1003bd3e: 4b11 ldr r3, [pc, #68] ; (1003bd84 ) +1003bd40: 4811 ldr r0, [pc, #68] ; (1003bd88 ) +1003bd42: 4905 ldr r1, [pc, #20] ; (1003bd58 ) +1003bd44: 681a ldr r2, [r3, #0] +1003bd46: b003 add sp, #12 +1003bd48: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1003bd4c: f006 b9dc b.w 10042108 +1003bd50: b003 add sp, #12 +1003bd52: bd30 pop {r4, r5, pc} +1003bd54: 10055548 .word 0x10055548 +1003bd58: 1004b4d2 .word 0x1004b4d2 +1003bd5c: 1004b6ca .word 0x1004b6ca +1003bd60: 1004b704 .word 0x1004b704 +1003bd64: 10051784 .word 0x10051784 +1003bd68: 1004b74e .word 0x1004b74e +1003bd6c: 10055538 .word 0x10055538 +1003bd70: 1005536c .word 0x1005536c +1003bd74: 1004b786 .word 0x1004b786 +1003bd78: 10055534 .word 0x10055534 +1003bd7c: 10055528 .word 0x10055528 +1003bd80: 1004b7b8 .word 0x1004b7b8 +1003bd84: 1005557c .word 0x1005557c +1003bd88: 1004b7ec .word 0x1004b7ec + +1003bd8c : +1003bd8c: b510 push {r4, lr} +1003bd8e: 4b09 ldr r3, [pc, #36] ; (1003bdb4 ) +1003bd90: 7c1c ldrb r4, [r3, #16] +1003bd92: b144 cbz r4, 1003bda6 +1003bd94: 681b ldr r3, [r3, #0] +1003bd96: 691b ldr r3, [r3, #16] +1003bd98: 681a ldr r2, [r3, #0] +1003bd9a: f241 23a8 movw r3, #4776 ; 0x12a8 +1003bd9e: 58d3 ldr r3, [r2, r3] +1003bda0: f8d3 0308 ldr.w r0, [r3, #776] ; 0x308 +1003bda4: bd10 pop {r4, pc} +1003bda6: 4904 ldr r1, [pc, #16] ; (1003bdb8 ) +1003bda8: 4804 ldr r0, [pc, #16] ; (1003bdbc ) +1003bdaa: f006 f9ad bl 10042108 +1003bdae: 4620 mov r0, r4 +1003bdb0: bd10 pop {r4, pc} +1003bdb2: bf00 nop +1003bdb4: 10055548 .word 0x10055548 +1003bdb8: 1004b900 .word 0x1004b900 +1003bdbc: 1004a15f .word 0x1004a15f + +1003bdc0 : +1003bdc0: 4b0f ldr r3, [pc, #60] ; (1003be00 ) +1003bdc2: b510 push {r4, lr} +1003bdc4: 681b ldr r3, [r3, #0] +1003bdc6: b10b cbz r3, 1003bdcc +1003bdc8: 691b ldr r3, [r3, #16] +1003bdca: 681c ldr r4, [r3, #0] +1003bdcc: 6920 ldr r0, [r4, #16] +1003bdce: 06c3 lsls r3, r0, #27 +1003bdd0: d501 bpl.n 1003bdd6 +1003bdd2: 2000 movs r0, #0 +1003bdd4: bd10 pop {r4, pc} +1003bdd6: f8d4 3c7c ldr.w r3, [r4, #3196] ; 0xc7c +1003bdda: 2b01 cmp r3, #1 +1003bddc: d906 bls.n 1003bdec +1003bdde: 2b05 cmp r3, #5 +1003bde0: d004 beq.n 1003bdec +1003bde2: f7ff ffd3 bl 1003bd8c +1003bde6: 2801 cmp r0, #1 +1003bde8: d106 bne.n 1003bdf8 +1003bdea: 6920 ldr r0, [r4, #16] +1003bdec: f000 0001 and.w r0, r0, #1 +1003bdf0: f080 0001 eor.w r0, r0, #1 +1003bdf4: 4240 negs r0, r0 +1003bdf6: bd10 pop {r4, pc} +1003bdf8: f04f 30ff mov.w r0, #4294967295 +1003bdfc: bd10 pop {r4, pc} +1003bdfe: bf00 nop +1003be00: 10055548 .word 0x10055548 + +1003be04 : +1003be04: b508 push {r3, lr} +1003be06: f241 63d0 movw r3, #5840 ; 0x16d0 +1003be0a: 58c3 ldr r3, [r0, r3] +1003be0c: 4798 blx r3 +1003be0e: bd08 pop {r3, pc} + +1003be10 : +1003be10: b508 push {r3, lr} +1003be12: f241 63dc movw r3, #5852 ; 0x16dc +1003be16: 58c3 ldr r3, [r0, r3] +1003be18: 4798 blx r3 +1003be1a: bd08 pop {r3, pc} + +1003be1c : +1003be1c: 4603 mov r3, r0 +1003be1e: f000 0001 and.w r0, r0, #1 +1003be22: f080 0001 eor.w r0, r0, #1 +1003be26: 0799 lsls r1, r3, #30 +1003be28: bf5c itt pl +1003be2a: 3001 addpl r0, #1 +1003be2c: b2c0 uxtbpl r0, r0 +1003be2e: 075a lsls r2, r3, #29 +1003be30: bf5c itt pl +1003be32: 3001 addpl r0, #1 +1003be34: b2c0 uxtbpl r0, r0 +1003be36: 071b lsls r3, r3, #28 +1003be38: bf5c itt pl +1003be3a: 3001 addpl r0, #1 +1003be3c: b2c0 uxtbpl r0, r0 +1003be3e: 4770 bx lr + +1003be40 : +1003be40: b513 push {r0, r1, r4, lr} +1003be42: f89d 4010 ldrb.w r4, [sp, #16] +1003be46: 9400 str r4, [sp, #0] +1003be48: f241 64d8 movw r4, #5848 ; 0x16d8 +1003be4c: 5904 ldr r4, [r0, r4] +1003be4e: 47a0 blx r4 +1003be50: b002 add sp, #8 +1003be52: bd10 pop {r4, pc} + +1003be54 : +1003be54: b5f8 push {r3, r4, r5, r6, r7, lr} +1003be56: 460e mov r6, r1 +1003be58: 4615 mov r5, r2 +1003be5a: 461c mov r4, r3 +1003be5c: b983 cbnz r3, 1003be80 +1003be5e: 4b09 ldr r3, [pc, #36] ; (1003be84 ) +1003be60: 4620 mov r0, r4 +1003be62: 681f ldr r7, [r3, #0] +1003be64: f7e0 fb4c bl 1001c500 +1003be68: 462a mov r2, r5 +1003be6a: 4631 mov r1, r6 +1003be6c: 2307 movs r3, #7 +1003be6e: 4638 mov r0, r7 +1003be70: f7e3 ff5c bl 1001fd2c +1003be74: b2c5 uxtb r5, r0 +1003be76: 4620 mov r0, r4 +1003be78: f7e0 fb5a bl 1001c530 +1003be7c: 4628 mov r0, r5 +1003be7e: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003be80: 2000 movs r0, #0 +1003be82: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003be84: 400000e8 .word 0x400000e8 + +1003be88 : +1003be88: b5f8 push {r3, r4, r5, r6, r7, lr} +1003be8a: 460e mov r6, r1 +1003be8c: 4615 mov r5, r2 +1003be8e: 461c mov r4, r3 +1003be90: b983 cbnz r3, 1003beb4 +1003be92: 4b09 ldr r3, [pc, #36] ; (1003beb8 ) +1003be94: 4620 mov r0, r4 +1003be96: 681f ldr r7, [r3, #0] +1003be98: f7e0 fb32 bl 1001c500 +1003be9c: 462a mov r2, r5 +1003be9e: 4631 mov r1, r6 +1003bea0: 2307 movs r3, #7 +1003bea2: 4638 mov r0, r7 +1003bea4: f7e3 ff50 bl 1001fd48 +1003bea8: b2c5 uxtb r5, r0 +1003beaa: 4620 mov r0, r4 +1003beac: f7e0 fb40 bl 1001c530 +1003beb0: 4628 mov r0, r5 +1003beb2: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003beb4: 2000 movs r0, #0 +1003beb6: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003beb8: 400000e8 .word 0x400000e8 + +1003bebc : +1003bebc: b537 push {r0, r1, r2, r4, r5, lr} +1003bebe: f89d 5018 ldrb.w r5, [sp, #24] +1003bec2: f500 54b7 add.w r4, r0, #5856 ; 0x16e0 +1003bec6: 9500 str r5, [sp, #0] +1003bec8: 6824 ldr r4, [r4, #0] +1003beca: 47a0 blx r4 +1003becc: b003 add sp, #12 +1003bece: bd30 pop {r4, r5, pc} + +1003bed0 : +1003bed0: 07c3 lsls r3, r0, #31 +1003bed2: d403 bmi.n 1003bedc +1003bed4: 780b ldrb r3, [r1, #0] +1003bed6: 7013 strb r3, [r2, #0] +1003bed8: 784b ldrb r3, [r1, #1] +1003beda: 7053 strb r3, [r2, #1] +1003bedc: 0783 lsls r3, r0, #30 +1003bede: d403 bmi.n 1003bee8 +1003bee0: 788b ldrb r3, [r1, #2] +1003bee2: 7093 strb r3, [r2, #2] +1003bee4: 78cb ldrb r3, [r1, #3] +1003bee6: 70d3 strb r3, [r2, #3] +1003bee8: 0743 lsls r3, r0, #29 +1003beea: d403 bmi.n 1003bef4 +1003beec: 790b ldrb r3, [r1, #4] +1003beee: 7113 strb r3, [r2, #4] +1003bef0: 794b ldrb r3, [r1, #5] +1003bef2: 7153 strb r3, [r2, #5] +1003bef4: 0703 lsls r3, r0, #28 +1003bef6: d403 bmi.n 1003bf00 +1003bef8: 798b ldrb r3, [r1, #6] +1003befa: 7193 strb r3, [r2, #6] +1003befc: 79cb ldrb r3, [r1, #7] +1003befe: 71d3 strb r3, [r2, #7] +1003bf00: 4770 bx lr + +1003bf02 : +1003bf02: b513 push {r0, r1, r4, lr} +1003bf04: f89d 4010 ldrb.w r4, [sp, #16] +1003bf08: 9400 str r4, [sp, #0] +1003bf0a: f241 64e4 movw r4, #5860 ; 0x16e4 +1003bf0e: 5904 ldr r4, [r0, r4] +1003bf10: 47a0 blx r4 +1003bf12: b002 add sp, #8 +1003bf14: bd10 pop {r4, pc} + +1003bf16 : +1003bf16: b538 push {r3, r4, r5, lr} +1003bf18: 2201 movs r2, #1 +1003bf1a: 460d mov r5, r1 +1003bf1c: 2100 movs r1, #0 +1003bf1e: 4604 mov r4, r0 +1003bf20: f7ff ff70 bl 1003be04 +1003bf24: 2100 movs r1, #0 +1003bf26: 460a mov r2, r1 +1003bf28: 4620 mov r0, r4 +1003bf2a: f7ff ff71 bl 1003be10 +1003bf2e: 2100 movs r1, #0 +1003bf30: 8028 strh r0, [r5, #0] +1003bf32: 460a mov r2, r1 +1003bf34: 4620 mov r0, r4 +1003bf36: f7ff ff65 bl 1003be04 +1003bf3a: 2001 movs r0, #1 +1003bf3c: bd38 pop {r3, r4, r5, pc} + +1003bf3e : +1003bf3e: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1003bf42: b085 sub sp, #20 +1003bf44: 2400 movs r4, #0 +1003bf46: 4699 mov r9, r3 +1003bf48: ab04 add r3, sp, #16 +1003bf4a: f823 4d02 strh.w r4, [r3, #-2]! +1003bf4e: 4688 mov r8, r1 +1003bf50: 4617 mov r7, r2 +1003bf52: 9400 str r4, [sp, #0] +1003bf54: 2204 movs r2, #4 +1003bf56: 4621 mov r1, r4 +1003bf58: 4605 mov r5, r0 +1003bf5a: f7ff ff71 bl 1003be40 +1003bf5e: f8bd 300e ldrh.w r3, [sp, #14] +1003bf62: eb08 0207 add.w r2, r8, r7 +1003bf66: 429a cmp r2, r3 +1003bf68: dc16 bgt.n 1003bf98 +1003bf6a: 4628 mov r0, r5 +1003bf6c: 4621 mov r1, r4 +1003bf6e: 2201 movs r2, #1 +1003bf70: f7ff ff48 bl 1003be04 +1003bf74: f241 63d4 movw r3, #5844 ; 0x16d4 +1003bf78: 58ee ldr r6, [r5, r3] +1003bf7a: 4628 mov r0, r5 +1003bf7c: 4621 mov r1, r4 +1003bf7e: 4642 mov r2, r8 +1003bf80: 463b mov r3, r7 +1003bf82: f8cd 9000 str.w r9, [sp] +1003bf86: 9401 str r4, [sp, #4] +1003bf88: 47b0 blx r6 +1003bf8a: 4628 mov r0, r5 +1003bf8c: 4621 mov r1, r4 +1003bf8e: 4622 mov r2, r4 +1003bf90: f7ff ff38 bl 1003be04 +1003bf94: 2001 movs r0, #1 +1003bf96: e000 b.n 1003bf9a +1003bf98: 4620 mov r0, r4 +1003bf9a: b005 add sp, #20 +1003bf9c: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +1003bfa0 : +1003bfa0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003bfa4: b087 sub sp, #28 +1003bfa6: 2400 movs r4, #0 +1003bfa8: 4698 mov r8, r3 +1003bfaa: ab06 add r3, sp, #24 +1003bfac: f823 4d0a strh.w r4, [r3, #-10]! +1003bfb0: 460e mov r6, r1 +1003bfb2: 4617 mov r7, r2 +1003bfb4: 9400 str r4, [sp, #0] +1003bfb6: 4621 mov r1, r4 +1003bfb8: 2204 movs r2, #4 +1003bfba: 4682 mov sl, r0 +1003bfbc: f7ff ff40 bl 1003be40 +1003bfc0: f8bd 000e ldrh.w r0, [sp, #14] +1003bfc4: 19f3 adds r3, r6, r7 +1003bfc6: 4283 cmp r3, r0 +1003bfc8: dd01 ble.n 1003bfce +1003bfca: 2000 movs r0, #0 +1003bfcc: e0a5 b.n 1003c11a +1003bfce: f7e0 fecf bl 1001cd70 +1003bfd2: 4605 mov r5, r0 +1003bfd4: 2800 cmp r0, #0 +1003bfd6: d0f8 beq.n 1003bfca +1003bfd8: 4650 mov r0, sl +1003bfda: 4621 mov r1, r4 +1003bfdc: f8bd 200e ldrh.w r2, [sp, #14] +1003bfe0: 462b mov r3, r5 +1003bfe2: f7ff ffac bl 1003bf3e +1003bfe6: 4681 mov r9, r0 +1003bfe8: 2800 cmp r0, #0 +1003bfea: f000 8090 beq.w 1003c10e +1003bfee: 2101 movs r1, #1 +1003bff0: 460a mov r2, r1 +1003bff2: 4650 mov r0, sl +1003bff4: f7ff ff06 bl 1003be04 +1003bff8: a804 add r0, sp, #16 +1003bffa: 21ff movs r1, #255 ; 0xff +1003bffc: 2208 movs r2, #8 +1003bffe: f7e0 fee7 bl 1001cdd0 +1003c002: f016 0401 ands.w r4, r6, #1 +1003c006: f3c6 0bc7 ubfx fp, r6, #3, #8 +1003c00a: f006 0307 and.w r3, r6, #7 +1003c00e: d019 beq.n 1003c044 +1003c010: f898 0000 ldrb.w r0, [r8] +1003c014: 5daa ldrb r2, [r5, r6] +1003c016: 4282 cmp r2, r0 +1003c018: d010 beq.n 1003c03c +1003c01a: 2101 movs r1, #1 +1003c01c: 105a asrs r2, r3, #1 +1003c01e: fa01 f202 lsl.w r2, r1, r2 +1003c022: 19a9 adds r1, r5, r6 +1003c024: f811 4c01 ldrb.w r4, [r1, #-1] +1003c028: a906 add r1, sp, #24 +1003c02a: 4419 add r1, r3 +1003c02c: 43d2 mvns r2, r2 +1003c02e: f002 020f and.w r2, r2, #15 +1003c032: f801 4c09 strb.w r4, [r1, #-9] +1003c036: f801 0c08 strb.w r0, [r1, #-8] +1003c03a: e000 b.n 1003c03e +1003c03c: 220f movs r2, #15 +1003c03e: 3301 adds r3, #1 +1003c040: 2401 movs r4, #1 +1003c042: e03f b.n 1003c0c4 +1003c044: 220f movs r2, #15 +1003c046: e03d b.n 1003c0c4 +1003c048: f815 c001 ldrb.w ip, [r5, r1] +1003c04c: 4584 cmp ip, r0 +1003c04e: d00e beq.n 1003c06e +1003c050: ea4f 0c63 mov.w ip, r3, asr #1 +1003c054: fa0e fe0c lsl.w lr, lr, ip +1003c058: ea22 020e bic.w r2, r2, lr +1003c05c: f10d 0e18 add.w lr, sp, #24 +1003c060: 4473 add r3, lr +1003c062: f803 0c08 strb.w r0, [r3, #-8] +1003c066: 4429 add r1, r5 +1003c068: 7849 ldrb r1, [r1, #1] +1003c06a: f803 1c07 strb.w r1, [r3, #-7] +1003c06e: 3401 adds r4, #1 +1003c070: 2a0f cmp r2, #15 +1003c072: d13b bne.n 1003c0ec +1003c074: 42bc cmp r4, r7 +1003c076: d045 beq.n 1003c104 +1003c078: 2208 movs r2, #8 +1003c07a: f10b 0b01 add.w fp, fp, #1 +1003c07e: a804 add r0, sp, #16 +1003c080: 21ff movs r1, #255 ; 0xff +1003c082: f7e0 fea5 bl 1001cdd0 +1003c086: fa5f fb8b uxtb.w fp, fp +1003c08a: 2300 movs r3, #0 +1003c08c: 220f movs r2, #15 +1003c08e: 42a7 cmp r7, r4 +1003c090: d0ee beq.n 1003c070 +1003c092: ebc4 0e07 rsb lr, r4, r7 +1003c096: f1be 0f01 cmp.w lr, #1 +1003c09a: f818 0004 ldrb.w r0, [r8, r4] +1003c09e: eb06 0104 add.w r1, r6, r4 +1003c0a2: d0d1 beq.n 1003c048 +1003c0a4: f815 e001 ldrb.w lr, [r5, r1] +1003c0a8: 4586 cmp lr, r0 +1003c0aa: d10e bne.n 1003c0ca +1003c0ac: eb08 0e04 add.w lr, r8, r4 +1003c0b0: 4429 add r1, r5 +1003c0b2: f89e e001 ldrb.w lr, [lr, #1] +1003c0b6: 7849 ldrb r1, [r1, #1] +1003c0b8: 458e cmp lr, r1 +1003c0ba: d106 bne.n 1003c0ca +1003c0bc: 3402 adds r4, #2 +1003c0be: 42bc cmp r4, r7 +1003c0c0: d0d6 beq.n 1003c070 +1003c0c2: 3302 adds r3, #2 +1003c0c4: 2b07 cmp r3, #7 +1003c0c6: dde2 ble.n 1003c08e +1003c0c8: e7d2 b.n 1003c070 +1003c0ca: 1059 asrs r1, r3, #1 +1003c0cc: f04f 0e01 mov.w lr, #1 +1003c0d0: fa0e f101 lsl.w r1, lr, r1 +1003c0d4: ea22 0201 bic.w r2, r2, r1 +1003c0d8: a906 add r1, sp, #24 +1003c0da: 4419 add r1, r3 +1003c0dc: f801 0c08 strb.w r0, [r1, #-8] +1003c0e0: eb08 0004 add.w r0, r8, r4 +1003c0e4: 7840 ldrb r0, [r0, #1] +1003c0e6: f801 0c07 strb.w r0, [r1, #-7] +1003c0ea: e7e7 b.n 1003c0bc +1003c0ec: 2300 movs r3, #0 +1003c0ee: 9300 str r3, [sp, #0] +1003c0f0: 4650 mov r0, sl +1003c0f2: 4659 mov r1, fp +1003c0f4: ab04 add r3, sp, #16 +1003c0f6: f7ff fee1 bl 1003bebc +1003c0fa: fa5f f980 uxtb.w r9, r0 +1003c0fe: f1b9 0f00 cmp.w r9, #0 +1003c102: d1b7 bne.n 1003c074 +1003c104: 4650 mov r0, sl +1003c106: 2101 movs r1, #1 +1003c108: 2200 movs r2, #0 +1003c10a: f7ff fe7b bl 1003be04 +1003c10e: 4628 mov r0, r5 +1003c110: f8bd 100e ldrh.w r1, [sp, #14] +1003c114: f7e0 fe42 bl 1001cd9c +1003c118: 4648 mov r0, r9 +1003c11a: b007 add sp, #28 +1003c11c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1003c120 : +1003c120: b573 push {r0, r1, r4, r5, r6, lr} +1003c122: 4605 mov r5, r0 +1003c124: 2800 cmp r0, #0 +1003c126: d058 beq.n 1003c1da +1003c128: 4b2d ldr r3, [pc, #180] ; (1003c1e0 ) +1003c12a: 681a ldr r2, [r3, #0] +1003c12c: 461e mov r6, r3 +1003c12e: b18a cbz r2, 1003c154 +1003c130: 2400 movs r4, #0 +1003c132: 6832 ldr r2, [r6, #0] +1003c134: eb04 0344 add.w r3, r4, r4, lsl #1 +1003c138: 18d1 adds r1, r2, r3 +1003c13a: 5cd0 ldrb r0, [r2, r3] +1003c13c: 7849 ldrb r1, [r1, #1] +1003c13e: f007 fb8f bl 10043860 <__key_2char2num_veneer> +1003c142: f80d 0004 strb.w r0, [sp, r4] +1003c146: 3401 adds r4, #1 +1003c148: 2c06 cmp r4, #6 +1003c14a: d1f2 bne.n 1003c132 +1003c14c: 4628 mov r0, r5 +1003c14e: 4669 mov r1, sp +1003c150: 4622 mov r2, r4 +1003c152: e002 b.n 1003c15a +1003c154: 4668 mov r0, sp +1003c156: 4629 mov r1, r5 +1003c158: 2206 movs r2, #6 +1003c15a: f7e0 fe27 bl 1001cdac +1003c15e: f89d 3000 ldrb.w r3, [sp] +1003c162: 2bff cmp r3, #255 ; 0xff +1003c164: d114 bne.n 1003c190 +1003c166: f89d 3001 ldrb.w r3, [sp, #1] +1003c16a: 2bff cmp r3, #255 ; 0xff +1003c16c: d135 bne.n 1003c1da +1003c16e: f89d 3002 ldrb.w r3, [sp, #2] +1003c172: 2bff cmp r3, #255 ; 0xff +1003c174: d131 bne.n 1003c1da +1003c176: f89d 3003 ldrb.w r3, [sp, #3] +1003c17a: 2bff cmp r3, #255 ; 0xff +1003c17c: d12d bne.n 1003c1da +1003c17e: f89d 3004 ldrb.w r3, [sp, #4] +1003c182: 2bff cmp r3, #255 ; 0xff +1003c184: d129 bne.n 1003c1da +1003c186: f89d 3005 ldrb.w r3, [sp, #5] +1003c18a: 2bff cmp r3, #255 ; 0xff +1003c18c: d125 bne.n 1003c1da +1003c18e: e00f b.n 1003c1b0 +1003c190: bb1b cbnz r3, 1003c1da +1003c192: f89d 3001 ldrb.w r3, [sp, #1] +1003c196: bb03 cbnz r3, 1003c1da +1003c198: f89d 3002 ldrb.w r3, [sp, #2] +1003c19c: b9eb cbnz r3, 1003c1da +1003c19e: f89d 3003 ldrb.w r3, [sp, #3] +1003c1a2: b9d3 cbnz r3, 1003c1da +1003c1a4: f89d 3004 ldrb.w r3, [sp, #4] +1003c1a8: b9bb cbnz r3, 1003c1da +1003c1aa: f89d 3005 ldrb.w r3, [sp, #5] +1003c1ae: b9a3 cbnz r3, 1003c1da +1003c1b0: 22e0 movs r2, #224 ; 0xe0 +1003c1b2: f88d 2001 strb.w r2, [sp, #1] +1003c1b6: 224c movs r2, #76 ; 0x4c +1003c1b8: f88d 2002 strb.w r2, [sp, #2] +1003c1bc: 2287 movs r2, #135 ; 0x87 +1003c1be: 2300 movs r3, #0 +1003c1c0: f88d 2003 strb.w r2, [sp, #3] +1003c1c4: 4628 mov r0, r5 +1003c1c6: 4669 mov r1, sp +1003c1c8: 2206 movs r2, #6 +1003c1ca: f88d 3000 strb.w r3, [sp] +1003c1ce: f88d 3004 strb.w r3, [sp, #4] +1003c1d2: f88d 3005 strb.w r3, [sp, #5] +1003c1d6: f7e0 fde9 bl 1001cdac +1003c1da: b002 add sp, #8 +1003c1dc: bd70 pop {r4, r5, r6, pc} +1003c1de: bf00 nop +1003c1e0: 10055350 .word 0x10055350 + +1003c1e4 : +1003c1e4: b530 push {r4, r5, lr} +1003c1e6: f8d0 2094 ldr.w r2, [r0, #148] ; 0x94 +1003c1ea: b087 sub sp, #28 +1003c1ec: f100 05a4 add.w r5, r0, #164 ; 0xa4 +1003c1f0: 2300 movs r3, #0 +1003c1f2: 4604 mov r4, r0 +1003c1f4: a902 add r1, sp, #8 +1003c1f6: 4628 mov r0, r5 +1003c1f8: 3a0c subs r2, #12 +1003c1fa: 9303 str r3, [sp, #12] +1003c1fc: 9304 str r3, [sp, #16] +1003c1fe: 9305 str r3, [sp, #20] +1003c200: f007 fb9e bl 10043940 <__rtw_get_wpa_ie_veneer> +1003c204: b160 cbz r0, 1003c220 +1003c206: 9902 ldr r1, [sp, #8] +1003c208: b151 cbz r1, 1003c220 +1003c20a: ab05 add r3, sp, #20 +1003c20c: 9300 str r3, [sp, #0] +1003c20e: 3102 adds r1, #2 +1003c210: aa03 add r2, sp, #12 +1003c212: ab04 add r3, sp, #16 +1003c214: f007 fab4 bl 10043780 <__rtw_parse_wpa_ie_veneer> +1003c218: 2801 cmp r0, #1 +1003c21a: d015 beq.n 1003c248 +1003c21c: 2000 movs r0, #0 +1003c21e: e01c b.n 1003c25a +1003c220: f8d4 2094 ldr.w r2, [r4, #148] ; 0x94 +1003c224: 4628 mov r0, r5 +1003c226: a902 add r1, sp, #8 +1003c228: 3a0c subs r2, #12 +1003c22a: f007 fad1 bl 100437d0 <__rtw_get_wpa2_ie_veneer> +1003c22e: 2800 cmp r0, #0 +1003c230: d0f4 beq.n 1003c21c +1003c232: 9902 ldr r1, [sp, #8] +1003c234: 2900 cmp r1, #0 +1003c236: d0f1 beq.n 1003c21c +1003c238: ab05 add r3, sp, #20 +1003c23a: 9300 str r3, [sp, #0] +1003c23c: 3102 adds r1, #2 +1003c23e: aa03 add r2, sp, #12 +1003c240: ab04 add r3, sp, #16 +1003c242: f007 fa35 bl 100436b0 <__rtw_parse_wpa2_ie_veneer> +1003c246: e7e7 b.n 1003c218 +1003c248: 9b04 ldr r3, [sp, #16] +1003c24a: f8c4 33a0 str.w r3, [r4, #928] ; 0x3a0 +1003c24e: 9b03 ldr r3, [sp, #12] +1003c250: f8c4 339c str.w r3, [r4, #924] ; 0x39c +1003c254: 9b05 ldr r3, [sp, #20] +1003c256: f8c4 33a4 str.w r3, [r4, #932] ; 0x3a4 +1003c25a: b007 add sp, #28 +1003c25c: bd30 pop {r4, r5, pc} + +1003c25e : +1003c25e: b570 push {r4, r5, r6, lr} +1003c260: f100 0598 add.w r5, r0, #152 ; 0x98 +1003c264: b086 sub sp, #24 +1003c266: 2300 movs r3, #0 +1003c268: 4604 mov r4, r0 +1003c26a: 4628 mov r0, r5 +1003c26c: f8ad 300a strh.w r3, [sp, #10] +1003c270: 9303 str r3, [sp, #12] +1003c272: 9304 str r3, [sp, #16] +1003c274: f7e7 fb4a bl 1002390c +1003c278: 2202 movs r2, #2 +1003c27a: 4601 mov r1, r0 +1003c27c: f10d 000a add.w r0, sp, #10 +1003c280: f7e0 fd94 bl 1001cdac +1003c284: f8bd 300a ldrh.w r3, [sp, #10] +1003c288: f003 0310 and.w r3, r3, #16 +1003c28c: b29b uxth r3, r3 +1003c28e: b113 cbz r3, 1003c296 +1003c290: 2601 movs r6, #1 +1003c292: 6526 str r6, [r4, #80] ; 0x50 +1003c294: e002 b.n 1003c29c +1003c296: f884 3398 strb.w r3, [r4, #920] ; 0x398 +1003c29a: 461e mov r6, r3 +1003c29c: 2200 movs r2, #0 +1003c29e: ab03 add r3, sp, #12 +1003c2a0: 9200 str r2, [sp, #0] +1003c2a2: 9301 str r3, [sp, #4] +1003c2a4: 4628 mov r0, r5 +1003c2a6: f8d4 1094 ldr.w r1, [r4, #148] ; 0x94 +1003c2aa: ab04 add r3, sp, #16 +1003c2ac: f007 fb78 bl 100439a0 <__rtw_get_sec_ie_veneer> +1003c2b0: f8d4 3094 ldr.w r3, [r4, #148] ; 0x94 +1003c2b4: f104 05a4 add.w r5, r4, #164 ; 0xa4 +1003c2b8: 3b0c subs r3, #12 +1003c2ba: 4628 mov r0, r5 +1003c2bc: 2130 movs r1, #48 ; 0x30 +1003c2be: aa04 add r2, sp, #16 +1003c2c0: f007 fb16 bl 100438f0 <__rtw_get_ie_veneer> +1003c2c4: 9b04 ldr r3, [sp, #16] +1003c2c6: b903 cbnz r3, 1003c2ca +1003c2c8: b108 cbz r0, 1003c2ce +1003c2ca: 2303 movs r3, #3 +1003c2cc: e005 b.n 1003c2da +1003c2ce: 9b03 ldr r3, [sp, #12] +1003c2d0: b10b cbz r3, 1003c2d6 +1003c2d2: 2302 movs r3, #2 +1003c2d4: e001 b.n 1003c2da +1003c2d6: b116 cbz r6, 1003c2de +1003c2d8: 2301 movs r3, #1 +1003c2da: f884 3398 strb.w r3, [r4, #920] ; 0x398 +1003c2de: 4620 mov r0, r4 +1003c2e0: f7ff ff80 bl 1003c1e4 +1003c2e4: f8d4 3094 ldr.w r3, [r4, #148] ; 0x94 +1003c2e8: 4628 mov r0, r5 +1003c2ea: 212d movs r1, #45 ; 0x2d +1003c2ec: aa05 add r2, sp, #20 +1003c2ee: 3b0c subs r3, #12 +1003c2f0: f007 fafe bl 100438f0 <__rtw_get_ie_veneer> +1003c2f4: b130 cbz r0, 1003c304 +1003c2f6: 9b05 ldr r3, [sp, #20] +1003c2f8: b123 cbz r3, 1003c304 +1003c2fa: 7883 ldrb r3, [r0, #2] +1003c2fc: 78c2 ldrb r2, [r0, #3] +1003c2fe: ea43 2302 orr.w r3, r3, r2, lsl #8 +1003c302: e000 b.n 1003c306 +1003c304: 2300 movs r3, #0 +1003c306: f8a4 33a8 strh.w r3, [r4, #936] ; 0x3a8 +1003c30a: f8d4 3094 ldr.w r3, [r4, #148] ; 0x94 +1003c30e: 4628 mov r0, r5 +1003c310: 213d movs r1, #61 ; 0x3d +1003c312: aa05 add r2, sp, #20 +1003c314: 3b0c subs r3, #12 +1003c316: f007 faeb bl 100438f0 <__rtw_get_ie_veneer> +1003c31a: b118 cbz r0, 1003c324 +1003c31c: 9b05 ldr r3, [sp, #20] +1003c31e: b10b cbz r3, 1003c324 +1003c320: 78c3 ldrb r3, [r0, #3] +1003c322: e000 b.n 1003c326 +1003c324: 2300 movs r3, #0 +1003c326: f884 33aa strb.w r3, [r4, #938] ; 0x3aa +1003c32a: b006 add sp, #24 +1003c32c: bd70 pop {r4, r5, r6, pc} + +1003c32e : +1003c32e: b570 push {r4, r5, r6, lr} +1003c330: f500 5397 add.w r3, r0, #4832 ; 0x12e0 +1003c334: f893 2047 ldrb.w r2, [r3, #71] ; 0x47 +1003c338: 2500 movs r5, #0 +1003c33a: f880 2924 strb.w r2, [r0, #2340] ; 0x924 +1003c33e: f893 2048 ldrb.w r2, [r3, #72] ; 0x48 +1003c342: 2601 movs r6, #1 +1003c344: f880 2925 strb.w r2, [r0, #2341] ; 0x925 +1003c348: f880 2926 strb.w r2, [r0, #2342] ; 0x926 +1003c34c: 221e movs r2, #30 +1003c34e: f8c0 64a0 str.w r6, [r0, #1184] ; 0x4a0 +1003c352: f8c0 5458 str.w r5, [r0, #1112] ; 0x458 +1003c356: f880 5fcc strb.w r5, [r0, #4044] ; 0xfcc +1003c35a: f8c0 2428 str.w r2, [r0, #1064] ; 0x428 +1003c35e: f893 2052 ldrb.w r2, [r3, #82] ; 0x52 +1003c362: 3318 adds r3, #24 +1003c364: f8c0 2fd0 str.w r2, [r0, #4048] ; 0xfd0 +1003c368: f893 303b ldrb.w r3, [r3, #59] ; 0x3b +1003c36c: f8c0 5c78 str.w r5, [r0, #3192] ; 0xc78 +1003c370: f8c0 3fd4 str.w r3, [r0, #4052] ; 0xfd4 +1003c374: f8c0 5c7c str.w r5, [r0, #3196] ; 0xc7c +1003c378: f8c0 5c80 str.w r5, [r0, #3200] ; 0xc80 +1003c37c: f8c0 5cd4 str.w r5, [r0, #3284] ; 0xcd4 +1003c380: f8c0 6cd8 str.w r6, [r0, #3288] ; 0xcd8 +1003c384: f8c0 5fdc str.w r5, [r0, #4060] ; 0xfdc +1003c388: f8c0 6fe0 str.w r6, [r0, #4064] ; 0xfe0 +1003c38c: 4604 mov r4, r0 +1003c38e: f7fb fa7e bl 1003788e +1003c392: f241 73a7 movw r3, #6055 ; 0x17a7 +1003c396: 54e5 strb r5, [r4, r3] +1003c398: 4630 mov r0, r6 +1003c39a: bd70 pop {r4, r5, r6, pc} + +1003c39c : +1003c39c: b510 push {r4, lr} +1003c39e: f241 73b1 movw r3, #6065 ; 0x17b1 +1003c3a2: 5cc3 ldrb r3, [r0, r3] +1003c3a4: 4604 mov r4, r0 +1003c3a6: b923 cbnz r3, 1003c3b2 +1003c3a8: f500 509e add.w r0, r0, #5056 ; 0x13c0 +1003c3ac: 3008 adds r0, #8 +1003c3ae: f7ff fab2 bl 1003b916 +1003c3b2: f204 70d4 addw r0, r4, #2004 ; 0x7d4 +1003c3b6: f7ff faae bl 1003b916 +1003c3ba: 6923 ldr r3, [r4, #16] +1003c3bc: 06da lsls r2, r3, #27 +1003c3be: d51d bpl.n 1003c3fc +1003c3c0: f241 23a8 movw r3, #4776 ; 0x12a8 +1003c3c4: 58e0 ldr r0, [r4, r3] +1003c3c6: f500 703d add.w r0, r0, #756 ; 0x2f4 +1003c3ca: f7ff faa4 bl 1003b916 +1003c3ce: f241 23ac movw r3, #4780 ; 0x12ac +1003c3d2: 58e0 ldr r0, [r4, r3] +1003c3d4: f500 703d add.w r0, r0, #756 ; 0x2f4 +1003c3d8: f7ff fa9d bl 1003b916 +1003c3dc: f241 23b0 movw r3, #4784 ; 0x12b0 +1003c3e0: 58e0 ldr r0, [r4, r3] +1003c3e2: f500 703d add.w r0, r0, #756 ; 0x2f4 +1003c3e6: f7ff fa96 bl 1003b916 +1003c3ea: f604 308c addw r0, r4, #2956 ; 0xb8c +1003c3ee: f7ff fa92 bl 1003b916 +1003c3f2: 4620 mov r0, r4 +1003c3f4: e8bd 4010 ldmia.w sp!, {r4, lr} +1003c3f8: f7fb ba6a b.w 100378d0 +1003c3fc: 071b lsls r3, r3, #28 +1003c3fe: d5f4 bpl.n 1003c3ea +1003c400: f241 23a8 movw r3, #4776 ; 0x12a8 +1003c404: e7ec b.n 1003c3e0 + +1003c406 : +1003c406: b510 push {r4, lr} +1003c408: 4604 mov r4, r0 +1003c40a: f500 609d add.w r0, r0, #1256 ; 0x4e8 +1003c40e: f7e8 faeb bl 100249e8 +1003c412: f604 0078 addw r0, r4, #2168 ; 0x878 +1003c416: f7e6 faab bl 10022970 +1003c41a: f604 008c addw r0, r4, #2188 ; 0x88c +1003c41e: f7e6 faa6 bl 1002296e +1003c422: f104 000c add.w r0, r4, #12 +1003c426: f7e7 fa8e bl 10023946 +1003c42a: f8d4 3bd0 ldr.w r3, [r4, #3024] ; 0xbd0 +1003c42e: b13b cbz r3, 1003c440 +1003c430: 4620 mov r0, r4 +1003c432: f7f1 fb15 bl 1002da60 +1003c436: 4601 mov r1, r0 +1003c438: b110 cbz r0, 1003c440 +1003c43a: 4620 mov r0, r4 +1003c43c: f7f1 f9e9 bl 1002d812 +1003c440: f604 00c8 addw r0, r4, #2248 ; 0x8c8 +1003c444: f7f2 ff00 bl 1002f248 <_rtw_free_xmit_priv> +1003c448: f504 603d add.w r0, r4, #3024 ; 0xbd0 +1003c44c: f7f1 f958 bl 1002d700 <_rtw_free_sta_priv> +1003c450: f504 602c add.w r0, r4, #2752 ; 0xac0 +1003c454: f7ef febd bl 1002c1d2 <_rtw_free_recv_priv> +1003c458: 4620 mov r0, r4 +1003c45a: f7ef fc1f bl 1002bc9c +1003c45e: f604 4078 addw r0, r4, #3192 ; 0xc78 +1003c462: f7f1 f82e bl 1002d4c2 +1003c466: 4620 mov r0, r4 +1003c468: f7fb fa1c bl 100378a4 +1003c46c: f241 73a8 movw r3, #6056 ; 0x17a8 +1003c470: 58e2 ldr r2, [r4, r3] +1003c472: b10a cbz r2, 1003c478 +1003c474: 2100 movs r1, #0 +1003c476: 50d1 str r1, [r2, r3] +1003c478: 2001 movs r0, #1 +1003c47a: bd10 pop {r4, pc} + +1003c47c : +1003c47c: b538 push {r3, r4, r5, lr} +1003c47e: 4604 mov r4, r0 +1003c480: f7fb fa05 bl 1003788e +1003c484: 2100 movs r1, #0 +1003c486: f241 73a7 movw r3, #6055 ; 0x17a7 +1003c48a: 54e1 strb r1, [r4, r3] +1003c48c: 231e movs r3, #30 +1003c48e: f8c4 3428 str.w r3, [r4, #1064] ; 0x428 +1003c492: f504 509b add.w r0, r4, #4960 ; 0x1360 +1003c496: 2200 movs r2, #0 +1003c498: f504 6513 add.w r5, r4, #2352 ; 0x930 +1003c49c: 2300 movs r3, #0 +1003c49e: f880 1066 strb.w r1, [r0, #102] ; 0x66 +1003c4a2: 6481 str r1, [r0, #72] ; 0x48 +1003c4a4: f8c0 1080 str.w r1, [r0, #128] ; 0x80 +1003c4a8: e9c5 2300 strd r2, r3, [r5] +1003c4ac: f604 3508 addw r5, r4, #2824 ; 0xb08 +1003c4b0: e9c5 2300 strd r2, r3, [r5] +1003c4b4: 6923 ldr r3, [r4, #16] +1003c4b6: f884 1488 strb.w r1, [r4, #1160] ; 0x488 +1003c4ba: f423 6308 bic.w r3, r3, #2176 ; 0x880 +1003c4be: 6123 str r3, [r4, #16] +1003c4c0: f880 1078 strb.w r1, [r0, #120] ; 0x78 +1003c4c4: f8c4 15c0 str.w r1, [r4, #1472] ; 0x5c0 +1003c4c8: f604 308c addw r0, r4, #2956 ; 0xb8c +1003c4cc: f8d4 1b98 ldr.w r1, [r4, #2968] ; 0xb98 +1003c4d0: f7ff fa1a bl 1003b908 +1003c4d4: 2001 movs r0, #1 +1003c4d6: bd38 pop {r3, r4, r5, pc} + +1003c4d8 : +1003c4d8: b538 push {r3, r4, r5, lr} +1003c4da: 4604 mov r4, r0 +1003c4dc: f600 0078 addw r0, r0, #2168 ; 0x878 +1003c4e0: f7e6 fa3e bl 10022960 +1003c4e4: b908 cbnz r0, 1003c4ea +1003c4e6: 2500 movs r5, #0 +1003c4e8: e038 b.n 1003c55c +1003c4ea: f8c4 4888 str.w r4, [r4, #2184] ; 0x888 +1003c4ee: f604 008c addw r0, r4, #2188 ; 0x88c +1003c4f2: f7e6 fa3a bl 1002296a +1003c4f6: 2800 cmp r0, #0 +1003c4f8: d0f5 beq.n 1003c4e6 +1003c4fa: 4620 mov r0, r4 +1003c4fc: f7f0 ffa8 bl 1002d450 +1003c500: 2800 cmp r0, #0 +1003c502: d0f0 beq.n 1003c4e6 +1003c504: 4620 mov r0, r4 +1003c506: f7e7 fa12 bl 1002392e +1003c50a: 2800 cmp r0, #0 +1003c50c: d0eb beq.n 1003c4e6 +1003c50e: 4620 mov r0, r4 +1003c510: f7ec fdc0 bl 10029094 +1003c514: 2800 cmp r0, #0 +1003c516: d0e6 beq.n 1003c4e6 +1003c518: f604 00c8 addw r0, r4, #2248 ; 0x8c8 +1003c51c: 4621 mov r1, r4 +1003c51e: f7f2 ff05 bl 1002f32c <_rtw_init_xmit_priv> +1003c522: 2800 cmp r0, #0 +1003c524: d0df beq.n 1003c4e6 +1003c526: f504 602c add.w r0, r4, #2752 ; 0xac0 +1003c52a: 4621 mov r1, r4 +1003c52c: f7ef fd0e bl 1002bf4c <_rtw_init_recv_priv> +1003c530: 2800 cmp r0, #0 +1003c532: d0d8 beq.n 1003c4e6 +1003c534: 4620 mov r0, r4 +1003c536: f7f1 f828 bl 1002d58a <_rtw_init_sta_priv> +1003c53a: 2800 cmp r0, #0 +1003c53c: d0d3 beq.n 1003c4e6 +1003c53e: f8c4 4c30 str.w r4, [r4, #3120] ; 0xc30 +1003c542: 4620 mov r0, r4 +1003c544: f7f1 fa74 bl 1002da30 +1003c548: 4620 mov r0, r4 +1003c54a: f7ef fb3d bl 1002bbc8 +1003c54e: 4620 mov r0, r4 +1003c550: f7ff feed bl 1003c32e +1003c554: 4605 mov r5, r0 +1003c556: 4620 mov r0, r4 +1003c558: f7fb f9af bl 100378ba +1003c55c: 4628 mov r0, r5 +1003c55e: bd38 pop {r3, r4, r5, pc} + +1003c560 : +1003c560: b537 push {r0, r1, r2, r4, r5, lr} +1003c562: 4b26 ldr r3, [pc, #152] ; (1003c5fc ) +1003c564: 4604 mov r4, r0 +1003c566: f500 50ba add.w r0, r0, #5952 ; 0x1740 +1003c56a: e88d 0018 stmia.w sp, {r3, r4} +1003c56e: 4924 ldr r1, [pc, #144] ; (1003c600 ) +1003c570: f44f 62b8 mov.w r2, #1472 ; 0x5c0 +1003c574: 2301 movs r3, #1 +1003c576: 3008 adds r0, #8 +1003c578: f7e0 fe00 bl 1001d17c +1003c57c: 4b21 ldr r3, [pc, #132] ; (1003c604 ) +1003c57e: 4605 mov r5, r0 +1003c580: e88d 0018 stmia.w sp, {r3, r4} +1003c584: f504 50bb add.w r0, r4, #5984 ; 0x1760 +1003c588: 491f ldr r1, [pc, #124] ; (1003c608 ) +1003c58a: f44f 7280 mov.w r2, #256 ; 0x100 +1003c58e: 2301 movs r3, #1 +1003c590: f7e0 fdf4 bl 1001d17c +1003c594: 2801 cmp r0, #1 +1003c596: d103 bne.n 1003c5a0 +1003c598: 1e6b subs r3, r5, #1 +1003c59a: 425d negs r5, r3 +1003c59c: 415d adcs r5, r3 +1003c59e: e000 b.n 1003c5a2 +1003c5a0: 2500 movs r5, #0 +1003c5a2: 4b1a ldr r3, [pc, #104] ; (1003c60c ) +1003c5a4: f504 50b8 add.w r0, r4, #5888 ; 0x1700 +1003c5a8: e88d 0018 stmia.w sp, {r3, r4} +1003c5ac: 4918 ldr r1, [pc, #96] ; (1003c610 ) +1003c5ae: f44f 7280 mov.w r2, #256 ; 0x100 +1003c5b2: 2302 movs r3, #2 +1003c5b4: 3018 adds r0, #24 +1003c5b6: f7e0 fde1 bl 1001d17c +1003c5ba: 4b16 ldr r3, [pc, #88] ; (1003c614 ) +1003c5bc: 2801 cmp r0, #1 +1003c5be: f504 50b9 add.w r0, r4, #5920 ; 0x1720 +1003c5c2: e88d 0018 stmia.w sp, {r3, r4} +1003c5c6: f100 0010 add.w r0, r0, #16 +1003c5ca: 4913 ldr r1, [pc, #76] ; (1003c618 ) +1003c5cc: f44f 7200 mov.w r2, #512 ; 0x200 +1003c5d0: f04f 0302 mov.w r3, #2 +1003c5d4: bf18 it ne +1003c5d6: 2500 movne r5, #0 +1003c5d8: f7e0 fdd0 bl 1001d17c +1003c5dc: 2801 cmp r0, #1 +1003c5de: d105 bne.n 1003c5ec +1003c5e0: f504 50b9 add.w r0, r4, #5920 ; 0x1720 +1003c5e4: 301c adds r0, #28 +1003c5e6: f7e0 fc43 bl 1001ce70 +1003c5ea: e000 b.n 1003c5ee +1003c5ec: 2500 movs r5, #0 +1003c5ee: 4620 mov r0, r4 +1003c5f0: f7fb fa4b bl 10037a8a +1003c5f4: 4628 mov r0, r5 +1003c5f6: b003 add sp, #12 +1003c5f8: bd30 pop {r4, r5, pc} +1003c5fa: bf00 nop +1003c5fc: 1002d1c5 .word 0x1002d1c5 +1003c600: 1004cc52 .word 0x1004cc52 +1003c604: 1002fb29 .word 0x1002fb29 +1003c608: 1004cc63 .word 0x1004cc63 +1003c60c: 100401c1 .word 0x100401c1 +1003c610: 1004cc74 .word 0x1004cc74 +1003c614: 10022aad .word 0x10022aad +1003c618: 1004cc89 .word 0x1004cc89 + +1003c61c : +1003c61c: b510 push {r4, lr} +1003c61e: 4604 mov r4, r0 +1003c620: f500 50b9 add.w r0, r0, #5920 ; 0x1720 +1003c624: 3010 adds r0, #16 +1003c626: f7e0 fdbb bl 1001d1a0 +1003c62a: f504 50b8 add.w r0, r4, #5888 ; 0x1700 +1003c62e: 3018 adds r0, #24 +1003c630: f7e0 fdb6 bl 1001d1a0 +1003c634: f504 50ba add.w r0, r4, #5952 ; 0x1740 +1003c638: 3008 adds r0, #8 +1003c63a: f7e0 fdb1 bl 1001d1a0 +1003c63e: f504 50bb add.w r0, r4, #5984 ; 0x1760 +1003c642: f7e0 fdad bl 1001d1a0 +1003c646: 4620 mov r0, r4 +1003c648: e8bd 4010 ldmia.w sp!, {r4, lr} +1003c64c: f7fb ba24 b.w 10037a98 + +1003c650 : +1003c650: b508 push {r3, lr} +1003c652: 2200 movs r2, #0 +1003c654: f8d0 38a4 ldr.w r3, [r0, #2212] ; 0x8a4 +1003c658: 6880 ldr r0, [r0, #8] +1003c65a: 4798 blx r3 +1003c65c: bd08 pop {r3, pc} + +1003c65e : +1003c65e: b508 push {r3, lr} +1003c660: 2200 movs r2, #0 +1003c662: f8d0 38a8 ldr.w r3, [r0, #2216] ; 0x8a8 +1003c666: 6880 ldr r0, [r0, #8] +1003c668: 4798 blx r3 +1003c66a: bd08 pop {r3, pc} + +1003c66c : +1003c66c: b508 push {r3, lr} +1003c66e: 2200 movs r2, #0 +1003c670: f8d0 38ac ldr.w r3, [r0, #2220] ; 0x8ac +1003c674: 6880 ldr r0, [r0, #8] +1003c676: 4798 blx r3 +1003c678: bd08 pop {r3, pc} + +1003c67a : +1003c67a: b510 push {r4, lr} +1003c67c: 2300 movs r3, #0 +1003c67e: f8d0 48b0 ldr.w r4, [r0, #2224] ; 0x8b0 +1003c682: 6880 ldr r0, [r0, #8] +1003c684: 47a0 blx r4 +1003c686: bd10 pop {r4, pc} + +1003c688 : +1003c688: b510 push {r4, lr} +1003c68a: 2300 movs r3, #0 +1003c68c: f8d0 48b4 ldr.w r4, [r0, #2228] ; 0x8b4 +1003c690: 6880 ldr r0, [r0, #8] +1003c692: 47a0 blx r4 +1003c694: bd10 pop {r4, pc} + +1003c696 : +1003c696: b510 push {r4, lr} +1003c698: 2300 movs r3, #0 +1003c69a: f8d0 48b8 ldr.w r4, [r0, #2232] ; 0x8b8 +1003c69e: 6880 ldr r0, [r0, #8] +1003c6a0: 47a0 blx r4 +1003c6a2: bd10 pop {r4, pc} + +1003c6a4 : +1003c6a4: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1003c6a8: f100 0534 add.w r5, r0, #52 ; 0x34 +1003c6ac: 4604 mov r4, r0 +1003c6ae: a901 add r1, sp, #4 +1003c6b0: f100 080c add.w r8, r0, #12 +1003c6b4: 4628 mov r0, r5 +1003c6b6: f7e0 fc1f bl 1001cef8 +1003c6ba: f06f 0201 mvn.w r2, #1 +1003c6be: f8c4 2094 str.w r2, [r4, #148] ; 0x94 +1003c6c2: 6922 ldr r2, [r4, #16] +1003c6c4: 6ae3 ldr r3, [r4, #44] ; 0x2c +1003c6c6: f042 0280 orr.w r2, r2, #128 ; 0x80 +1003c6ca: 2601 movs r6, #1 +1003c6cc: 6122 str r2, [r4, #16] +1003c6ce: 61e3 str r3, [r4, #28] +1003c6d0: 7566 strb r6, [r4, #21] +1003c6d2: f104 002c add.w r0, r4, #44 ; 0x2c +1003c6d6: f7e0 fc3d bl 1001cf54 +1003c6da: 4607 mov r7, r0 +1003c6dc: 42b7 cmp r7, r6 +1003c6de: 4628 mov r0, r5 +1003c6e0: a901 add r1, sp, #4 +1003c6e2: d10f bne.n 1003c704 +1003c6e4: f7e0 fc10 bl 1001cf08 +1003c6e8: 6923 ldr r3, [r4, #16] +1003c6ea: f023 0380 bic.w r3, r3, #128 ; 0x80 +1003c6ee: 6123 str r3, [r4, #16] +1003c6f0: f894 3488 ldrb.w r3, [r4, #1160] ; 0x488 +1003c6f4: b10b cbz r3, 1003c6fa +1003c6f6: 2001 movs r0, #1 +1003c6f8: e022 b.n 1003c740 +1003c6fa: 4620 mov r0, r4 +1003c6fc: f104 014c add.w r1, r4, #76 ; 0x4c +1003c700: 463a mov r2, r7 +1003c702: e01b b.n 1003c73c +1003c704: f7e0 fc00 bl 1001cf08 +1003c708: 4640 mov r0, r8 +1003c70a: f7e7 fcbb bl 10024084 +1003c70e: 2801 cmp r0, #1 +1003c710: d108 bne.n 1003c724 +1003c712: 2300 movs r3, #0 +1003c714: 7563 strb r3, [r4, #21] +1003c716: f204 402c addw r0, r4, #1068 ; 0x42c +1003c71a: f641 1164 movw r1, #6500 ; 0x1964 +1003c71e: f7ff f8f3 bl 1003b908 +1003c722: e7e8 b.n 1003c6f6 +1003c724: 6923 ldr r3, [r4, #16] +1003c726: f023 0380 bic.w r3, r3, #128 ; 0x80 +1003c72a: 6123 str r3, [r4, #16] +1003c72c: f894 3488 ldrb.w r3, [r4, #1160] ; 0x488 +1003c730: 2b00 cmp r3, #0 +1003c732: d1e0 bne.n 1003c6f6 +1003c734: 4620 mov r0, r4 +1003c736: f104 014c add.w r1, r4, #76 ; 0x4c +1003c73a: 4632 mov r2, r6 +1003c73c: f7e6 fddc bl 100232f8 +1003c740: b002 add sp, #8 +1003c742: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + ... + +1003c748 : +1003c748: b5f0 push {r4, r5, r6, r7, lr} +1003c74a: 2600 movs r6, #0 +1003c74c: b091 sub sp, #68 ; 0x44 +1003c74e: 460c mov r4, r1 +1003c750: 4605 mov r5, r0 +1003c752: 4631 mov r1, r6 +1003c754: a806 add r0, sp, #24 +1003c756: 2228 movs r2, #40 ; 0x28 +1003c758: 9605 str r6, [sp, #20] +1003c75a: f7e0 fb39 bl 1001cdd0 +1003c75e: 7823 ldrb r3, [r4, #0] +1003c760: b953 cbnz r3, 1003c778 +1003c762: 7863 ldrb r3, [r4, #1] +1003c764: b9cb cbnz r3, 1003c79a +1003c766: 78a3 ldrb r3, [r4, #2] +1003c768: b9bb cbnz r3, 1003c79a +1003c76a: 78e3 ldrb r3, [r4, #3] +1003c76c: b9ab cbnz r3, 1003c79a +1003c76e: 7923 ldrb r3, [r4, #4] +1003c770: b99b cbnz r3, 1003c79a +1003c772: 7963 ldrb r3, [r4, #5] +1003c774: b98b cbnz r3, 1003c79a +1003c776: e080 b.n 1003c87a +1003c778: 2bff cmp r3, #255 ; 0xff +1003c77a: d10e bne.n 1003c79a +1003c77c: 7863 ldrb r3, [r4, #1] +1003c77e: 2bff cmp r3, #255 ; 0xff +1003c780: d10b bne.n 1003c79a +1003c782: 78a3 ldrb r3, [r4, #2] +1003c784: 2bff cmp r3, #255 ; 0xff +1003c786: d108 bne.n 1003c79a +1003c788: 78e3 ldrb r3, [r4, #3] +1003c78a: 2bff cmp r3, #255 ; 0xff +1003c78c: d105 bne.n 1003c79a +1003c78e: 7923 ldrb r3, [r4, #4] +1003c790: 2bff cmp r3, #255 ; 0xff +1003c792: d102 bne.n 1003c79a +1003c794: 7963 ldrb r3, [r4, #5] +1003c796: 2bff cmp r3, #255 ; 0xff +1003c798: d071 beq.n 1003c87e +1003c79a: 484a ldr r0, [pc, #296] ; (1003c8c4 ) +1003c79c: f005 fcb4 bl 10042108 +1003c7a0: 78e0 ldrb r0, [r4, #3] +1003c7a2: 78a3 ldrb r3, [r4, #2] +1003c7a4: 7821 ldrb r1, [r4, #0] +1003c7a6: 7862 ldrb r2, [r4, #1] +1003c7a8: 9000 str r0, [sp, #0] +1003c7aa: 7920 ldrb r0, [r4, #4] +1003c7ac: 4f46 ldr r7, [pc, #280] ; (1003c8c8 ) +1003c7ae: 9001 str r0, [sp, #4] +1003c7b0: 7960 ldrb r0, [r4, #5] +1003c7b2: f105 060c add.w r6, r5, #12 +1003c7b6: 9002 str r0, [sp, #8] +1003c7b8: f8d7 0140 ldr.w r0, [r7, #320] ; 0x140 +1003c7bc: f005 fca4 bl 10042108 +1003c7c0: a904 add r1, sp, #16 +1003c7c2: 4630 mov r0, r6 +1003c7c4: f7e0 fb98 bl 1001cef8 +1003c7c8: 692b ldr r3, [r5, #16] +1003c7ca: 0519 lsls r1, r3, #20 +1003c7cc: d40f bmi.n 1003c7ee +1003c7ce: 061a lsls r2, r3, #24 +1003c7d0: d457 bmi.n 1003c882 +1003c7d2: f013 0f41 tst.w r3, #65 ; 0x41 +1003c7d6: d00a beq.n 1003c7ee +1003c7d8: f105 009c add.w r0, r5, #156 ; 0x9c +1003c7dc: 4621 mov r1, r4 +1003c7de: 2206 movs r2, #6 +1003c7e0: f7e0 faec bl 1001cdbc +1003c7e4: 2801 cmp r0, #1 +1003c7e6: d14e bne.n 1003c886 +1003c7e8: 692b ldr r3, [r5, #16] +1003c7ea: 071a lsls r2, r3, #28 +1003c7ec: d549 bpl.n 1003c882 +1003c7ee: 79a3 ldrb r3, [r4, #6] +1003c7f0: 2b23 cmp r3, #35 ; 0x23 +1003c7f2: d12a bne.n 1003c84a +1003c7f4: 79e3 ldrb r3, [r4, #7] +1003c7f6: 2b40 cmp r3, #64 ; 0x40 +1003c7f8: d127 bne.n 1003c84a +1003c7fa: a805 add r0, sp, #20 +1003c7fc: f104 0108 add.w r1, r4, #8 +1003c800: 2204 movs r2, #4 +1003c802: f7e0 fad3 bl 1001cdac +1003c806: 9b05 ldr r3, [sp, #20] +1003c808: b1fb cbz r3, 1003c84a +1003c80a: 482e ldr r0, [pc, #184] ; (1003c8c4 ) +1003c80c: f005 fc7c bl 10042108 +1003c810: 9905 ldr r1, [sp, #20] +1003c812: f8d7 0144 ldr.w r0, [r7, #324] ; 0x144 +1003c816: 3101 adds r1, #1 +1003c818: f005 fc76 bl 10042108 +1003c81c: 9905 ldr r1, [sp, #20] +1003c81e: a807 add r0, sp, #28 +1003c820: f811 2b01 ldrb.w r2, [r1], #1 +1003c824: 9206 str r2, [sp, #24] +1003c826: f7e0 fac1 bl 1001cdac +1003c82a: f895 386d ldrb.w r3, [r5, #2157] ; 0x86d +1003c82e: b163 cbz r3, 1003c84a +1003c830: 9b05 ldr r3, [sp, #20] +1003c832: f205 70e7 addw r0, r5, #2023 ; 0x7e7 +1003c836: 781a ldrb r2, [r3, #0] +1003c838: 1c59 adds r1, r3, #1 +1003c83a: f7e0 fab7 bl 1001cdac +1003c83e: 9b05 ldr r3, [sp, #20] +1003c840: 2200 movs r2, #0 +1003c842: 781b ldrb r3, [r3, #0] +1003c844: 442b add r3, r5 +1003c846: f883 27e7 strb.w r2, [r3, #2023] ; 0x7e7 +1003c84a: f105 004c add.w r0, r5, #76 ; 0x4c +1003c84e: a906 add r1, sp, #24 +1003c850: 2228 movs r2, #40 ; 0x28 +1003c852: f7e0 faab bl 1001cdac +1003c856: 4621 mov r1, r4 +1003c858: f105 0074 add.w r0, r5, #116 ; 0x74 +1003c85c: 2206 movs r2, #6 +1003c85e: f7e0 faa5 bl 1001cdac +1003c862: 692b ldr r3, [r5, #16] +1003c864: 2401 movs r4, #1 +1003c866: 0519 lsls r1, r3, #20 +1003c868: f885 4438 strb.w r4, [r5, #1080] ; 0x438 +1003c86c: d522 bpl.n 1003c8b4 +1003c86e: 756c strb r4, [r5, #21] +1003c870: 4630 mov r0, r6 +1003c872: a904 add r1, sp, #16 +1003c874: f7e0 fb48 bl 1001cf08 +1003c878: e021 b.n 1003c8be +1003c87a: 461c mov r4, r3 +1003c87c: e01f b.n 1003c8be +1003c87e: 4634 mov r4, r6 +1003c880: e01d b.n 1003c8be +1003c882: 2401 movs r4, #1 +1003c884: e7f4 b.n 1003c870 +1003c886: 4628 mov r0, r5 +1003c888: f7e6 fb13 bl 10022eb2 +1003c88c: 692b ldr r3, [r5, #16] +1003c88e: 07db lsls r3, r3, #31 +1003c890: d40c bmi.n 1003c8ac +1003c892: 4628 mov r0, r5 +1003c894: 2101 movs r1, #1 +1003c896: f7e7 f9e3 bl 10023c60 +1003c89a: 692b ldr r3, [r5, #16] +1003c89c: 0658 lsls r0, r3, #25 +1003c89e: d5a6 bpl.n 1003c7ee +1003c8a0: f023 0340 bic.w r3, r3, #64 ; 0x40 +1003c8a4: f043 0320 orr.w r3, r3, #32 +1003c8a8: 612b str r3, [r5, #16] +1003c8aa: e7a0 b.n 1003c7ee +1003c8ac: 4628 mov r0, r5 +1003c8ae: f7e7 fa44 bl 10023d3a +1003c8b2: e7ee b.n 1003c892 +1003c8b4: 4628 mov r0, r5 +1003c8b6: f7ff fef5 bl 1003c6a4 +1003c8ba: 4604 mov r4, r0 +1003c8bc: e7d8 b.n 1003c870 +1003c8be: 4620 mov r0, r4 +1003c8c0: b011 add sp, #68 ; 0x44 +1003c8c2: bdf0 pop {r4, r5, r6, r7, pc} +1003c8c4: 1004b9eb .word 0x1004b9eb +1003c8c8: 1004da10 .word 0x1004da10 + +1003c8cc : +1003c8cc: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1003c8ce: 4604 mov r4, r0 +1003c8d0: 483e ldr r0, [pc, #248] ; (1003c9cc ) +1003c8d2: 460d mov r5, r1 +1003c8d4: f005 fc18 bl 10042108 +1003c8d8: 4b3d ldr r3, [pc, #244] ; (1003c9d0 ) +1003c8da: 1d2f adds r7, r5, #4 +1003c8dc: f8d3 0144 ldr.w r0, [r3, #324] ; 0x144 +1003c8e0: 4639 mov r1, r7 +1003c8e2: f005 fc11 bl 10042108 +1003c8e6: f241 7311 movw r3, #5905 ; 0x1711 +1003c8ea: 5ce3 ldrb r3, [r4, r3] +1003c8ec: b333 cbz r3, 1003c93c +1003c8ee: f104 060c add.w r6, r4, #12 +1003c8f2: 4630 mov r0, r6 +1003c8f4: a901 add r1, sp, #4 +1003c8f6: f7e0 faff bl 1001cef8 +1003c8fa: 6923 ldr r3, [r4, #16] +1003c8fc: 051a lsls r2, r3, #20 +1003c8fe: d409 bmi.n 1003c914 +1003c900: 061a lsls r2, r3, #24 +1003c902: d415 bmi.n 1003c930 +1003c904: f003 0309 and.w r3, r3, #9 +1003c908: 2b09 cmp r3, #9 +1003c90a: d019 beq.n 1003c940 +1003c90c: 6923 ldr r3, [r4, #16] +1003c90e: f013 0f41 tst.w r3, #65 ; 0x41 +1003c912: d120 bne.n 1003c956 +1003c914: 4629 mov r1, r5 +1003c916: f104 004c add.w r0, r4, #76 ; 0x4c +1003c91a: 2228 movs r2, #40 ; 0x28 +1003c91c: f7e0 fa46 bl 1001cdac +1003c920: 2300 movs r3, #0 +1003c922: f884 3438 strb.w r3, [r4, #1080] ; 0x438 +1003c926: 6923 ldr r3, [r4, #16] +1003c928: 0519 lsls r1, r3, #20 +1003c92a: d546 bpl.n 1003c9ba +1003c92c: 2301 movs r3, #1 +1003c92e: 7563 strb r3, [r4, #21] +1003c930: 2401 movs r4, #1 +1003c932: 4630 mov r0, r6 +1003c934: a901 add r1, sp, #4 +1003c936: f7e0 fae7 bl 1001cf08 +1003c93a: e043 b.n 1003c9c4 +1003c93c: 461c mov r4, r3 +1003c93e: e041 b.n 1003c9c4 +1003c940: 4620 mov r0, r4 +1003c942: f7e6 fab6 bl 10022eb2 +1003c946: 4620 mov r0, r4 +1003c948: f7e7 f9f7 bl 10023d3a +1003c94c: 4620 mov r0, r4 +1003c94e: 2101 movs r1, #1 +1003c950: f7e7 f986 bl 10023c60 +1003c954: e7da b.n 1003c90c +1003c956: 6ce2 ldr r2, [r4, #76] ; 0x4c +1003c958: 682b ldr r3, [r5, #0] +1003c95a: 429a cmp r2, r3 +1003c95c: d111 bne.n 1003c982 +1003c95e: 4639 mov r1, r7 +1003c960: f104 0050 add.w r0, r4, #80 ; 0x50 +1003c964: f7e0 fa2a bl 1001cdbc +1003c968: 2801 cmp r0, #1 +1003c96a: 4601 mov r1, r0 +1003c96c: d109 bne.n 1003c982 +1003c96e: 6923 ldr r3, [r4, #16] +1003c970: 071b lsls r3, r3, #28 +1003c972: d419 bmi.n 1003c9a8 +1003c974: 4620 mov r0, r4 +1003c976: f104 017c add.w r1, r4, #124 ; 0x7c +1003c97a: f7e6 ffe8 bl 1002394e +1003c97e: 2800 cmp r0, #0 +1003c980: d1d6 bne.n 1003c930 +1003c982: 4620 mov r0, r4 +1003c984: f7e6 fa95 bl 10022eb2 +1003c988: 6923 ldr r3, [r4, #16] +1003c98a: 07df lsls r7, r3, #31 +1003c98c: d411 bmi.n 1003c9b2 +1003c98e: 4620 mov r0, r4 +1003c990: 2101 movs r1, #1 +1003c992: f7e7 f965 bl 10023c60 +1003c996: 6923 ldr r3, [r4, #16] +1003c998: 0658 lsls r0, r3, #25 +1003c99a: d5bb bpl.n 1003c914 +1003c99c: f023 0340 bic.w r3, r3, #64 ; 0x40 +1003c9a0: f043 0320 orr.w r3, r3, #32 +1003c9a4: 6123 str r3, [r4, #16] +1003c9a6: e7b5 b.n 1003c914 +1003c9a8: 4620 mov r0, r4 +1003c9aa: 460a mov r2, r1 +1003c9ac: f7e6 fc6f bl 1002328e +1003c9b0: e7b0 b.n 1003c914 +1003c9b2: 4620 mov r0, r4 +1003c9b4: f7e7 f9c1 bl 10023d3a +1003c9b8: e7e9 b.n 1003c98e +1003c9ba: 4620 mov r0, r4 +1003c9bc: f7ff fe72 bl 1003c6a4 +1003c9c0: 4604 mov r4, r0 +1003c9c2: e7b6 b.n 1003c932 +1003c9c4: 4620 mov r0, r4 +1003c9c6: b003 add sp, #12 +1003c9c8: bdf0 pop {r4, r5, r6, r7, pc} +1003c9ca: bf00 nop +1003c9cc: 1004b9eb .word 0x1004b9eb +1003c9d0: 1004da10 .word 0x1004da10 + +1003c9d4 : +1003c9d4: f8d0 30f8 ldr.w r3, [r0, #248] ; 0xf8 +1003c9d8: b573 push {r0, r1, r4, r5, r6, lr} +1003c9da: 428b cmp r3, r1 +1003c9dc: 4604 mov r4, r0 +1003c9de: 460d mov r5, r1 +1003c9e0: d046 beq.n 1003ca70 +1003c9e2: f100 060c add.w r6, r0, #12 +1003c9e6: 4630 mov r0, r6 +1003c9e8: a901 add r1, sp, #4 +1003c9ea: f7e0 fa85 bl 1001cef8 +1003c9ee: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +1003c9f2: 2b04 cmp r3, #4 +1003c9f4: d106 bne.n 1003ca04 +1003c9f6: f04f 33ff mov.w r3, #4294967295 +1003c9fa: f8c4 3094 str.w r3, [r4, #148] ; 0x94 +1003c9fe: 4620 mov r0, r4 +1003ca00: f7e5 fd81 bl 10022506 +1003ca04: 6923 ldr r3, [r4, #16] +1003ca06: 07da lsls r2, r3, #31 +1003ca08: d528 bpl.n 1003ca5c +1003ca0a: 4620 mov r0, r4 +1003ca0c: f7e6 fa51 bl 10022eb2 +1003ca10: 6923 ldr r3, [r4, #16] +1003ca12: f013 0f41 tst.w r3, #65 ; 0x41 +1003ca16: d003 beq.n 1003ca20 +1003ca18: 4620 mov r0, r4 +1003ca1a: 2101 movs r1, #1 +1003ca1c: f7e7 f920 bl 10023c60 +1003ca20: 6923 ldr r3, [r4, #16] +1003ca22: 07db lsls r3, r3, #31 +1003ca24: d51f bpl.n 1003ca66 +1003ca26: 4620 mov r0, r4 +1003ca28: f7e7 f987 bl 10023d3a +1003ca2c: 2d01 cmp r5, #1 +1003ca2e: f8c4 50f8 str.w r5, [r4, #248] ; 0xf8 +1003ca32: d007 beq.n 1003ca44 +1003ca34: d303 bcc.n 1003ca3e +1003ca36: 2d04 cmp r5, #4 +1003ca38: d006 beq.n 1003ca48 +1003ca3a: 2300 movs r3, #0 +1003ca3c: e000 b.n 1003ca40 +1003ca3e: 2320 movs r3, #32 +1003ca40: 6123 str r3, [r4, #16] +1003ca42: e006 b.n 1003ca52 +1003ca44: 2308 movs r3, #8 +1003ca46: e7fb b.n 1003ca40 +1003ca48: 2310 movs r3, #16 +1003ca4a: 6123 str r3, [r4, #16] +1003ca4c: 4620 mov r0, r4 +1003ca4e: f7e5 fd2f bl 100224b0 +1003ca52: 4630 mov r0, r6 +1003ca54: a901 add r1, sp, #4 +1003ca56: f7e0 fa57 bl 1001cf08 +1003ca5a: e009 b.n 1003ca70 +1003ca5c: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +1003ca60: 2b00 cmp r3, #0 +1003ca62: d0d2 beq.n 1003ca0a +1003ca64: e7d4 b.n 1003ca10 +1003ca66: f8d4 30f8 ldr.w r3, [r4, #248] ; 0xf8 +1003ca6a: 2b01 cmp r3, #1 +1003ca6c: d9db bls.n 1003ca26 +1003ca6e: e7dd b.n 1003ca2c +1003ca70: 2001 movs r0, #1 +1003ca72: b002 add sp, #8 +1003ca74: bd70 pop {r4, r5, r6, pc} + +1003ca76 : +1003ca76: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +1003ca78: 460e mov r6, r1 +1003ca7a: 4617 mov r7, r2 +1003ca7c: 4604 mov r4, r0 +1003ca7e: b1f8 cbz r0, 1003cac0 +1003ca80: f241 7311 movw r3, #5905 ; 0x1711 +1003ca84: 5cc3 ldrb r3, [r0, r3] +1003ca86: b12b cbz r3, 1003ca94 +1003ca88: 6903 ldr r3, [r0, #16] +1003ca8a: f413 6f08 tst.w r3, #2176 ; 0x880 +1003ca8e: d003 beq.n 1003ca98 +1003ca90: 2401 movs r4, #1 +1003ca92: e015 b.n 1003cac0 +1003ca94: 461c mov r4, r3 +1003ca96: e013 b.n 1003cac0 +1003ca98: f890 3488 ldrb.w r3, [r0, #1160] ; 0x488 +1003ca9c: 2b01 cmp r3, #1 +1003ca9e: d0f9 beq.n 1003ca94 +1003caa0: f104 050c add.w r5, r4, #12 +1003caa4: 4628 mov r0, r5 +1003caa6: a901 add r1, sp, #4 +1003caa8: f7e0 fa26 bl 1001cef8 +1003caac: 4620 mov r0, r4 +1003caae: 4631 mov r1, r6 +1003cab0: 463a mov r2, r7 +1003cab2: f7e6 fc21 bl 100232f8 +1003cab6: a901 add r1, sp, #4 +1003cab8: 4604 mov r4, r0 +1003caba: 4628 mov r0, r5 +1003cabc: f7e0 fa24 bl 1001cf08 +1003cac0: 4620 mov r0, r4 +1003cac2: b003 add sp, #12 +1003cac4: bdf0 pop {r4, r5, r6, r7, pc} + +1003cac6 : +1003cac6: b508 push {r3, lr} +1003cac8: 460b mov r3, r1 +1003caca: 2b03 cmp r3, #3 +1003cacc: f8c0 3fdc str.w r3, [r0, #4060] ; 0xfdc +1003cad0: bf84 itt hi +1003cad2: 2302 movhi r3, #2 +1003cad4: f8c0 3c78 strhi.w r3, [r0, #3192] ; 0xc78 +1003cad8: f600 4178 addw r1, r0, #3192 ; 0xc78 +1003cadc: f7e7 fbc8 bl 10024270 +1003cae0: 1e43 subs r3, r0, #1 +1003cae2: 4258 negs r0, r3 +1003cae4: 4158 adcs r0, r3 +1003cae6: bd08 pop {r3, pc} + +1003cae8 : +1003cae8: b5f8 push {r3, r4, r5, r6, r7, lr} +1003caea: 684d ldr r5, [r1, #4] +1003caec: 4604 mov r4, r0 +1003caee: f025 4540 bic.w r5, r5, #3221225472 ; 0xc0000000 +1003caf2: 2d04 cmp r5, #4 +1003caf4: 460e mov r6, r1 +1003caf6: dc25 bgt.n 1003cb44 +1003caf8: 688a ldr r2, [r1, #8] +1003cafa: 2a05 cmp r2, #5 +1003cafc: d003 beq.n 1003cb06 +1003cafe: 2a0d cmp r2, #13 +1003cb00: d103 bne.n 1003cb0a +1003cb02: 2305 movs r3, #5 +1003cb04: e002 b.n 1003cb0c +1003cb06: 2301 movs r3, #1 +1003cb08: e000 b.n 1003cb0c +1003cb0a: 2300 movs r3, #0 +1003cb0c: f604 4778 addw r7, r4, #3192 ; 0xc78 +1003cb10: eb07 1005 add.w r0, r7, r5, lsl #4 +1003cb14: f8c4 3c7c str.w r3, [r4, #3196] ; 0xc7c +1003cb18: f106 010c add.w r1, r6, #12 +1003cb1c: 300c adds r0, #12 +1003cb1e: f7e0 f945 bl 1001cdac +1003cb22: 68b3 ldr r3, [r6, #8] +1003cb24: eb04 0285 add.w r2, r4, r5, lsl #2 +1003cb28: f8c2 3cc4 str.w r3, [r2, #3268] ; 0xcc4 +1003cb2c: 4620 mov r0, r4 +1003cb2e: f8c4 5c80 str.w r5, [r4, #3200] ; 0xc80 +1003cb32: 4639 mov r1, r7 +1003cb34: 462a mov r2, r5 +1003cb36: 2301 movs r3, #1 +1003cb38: f7e7 fbc2 bl 100242c0 +1003cb3c: 3000 adds r0, #0 +1003cb3e: bf18 it ne +1003cb40: 2001 movne r0, #1 +1003cb42: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003cb44: 2000 movs r0, #0 +1003cb46: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1003cb48 : +1003cb48: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1003cb4c: 6807 ldr r7, [r0, #0] +1003cb4e: 4604 mov r4, r0 +1003cb50: 2600 movs r6, #0 +1003cb52: 2e80 cmp r6, #128 ; 0x80 +1003cb54: fa5f f886 uxtb.w r8, r6 +1003cb58: f04f 0500 mov.w r5, #0 +1003cb5c: d013 beq.n 1003cb86 +1003cb5e: b2ea uxtb r2, r5 +1003cb60: 2a03 cmp r2, #3 +1003cb62: bf0c ite eq +1003cb64: 2380 moveq r3, #128 ; 0x80 +1003cb66: 2300 movne r3, #0 +1003cb68: 4638 mov r0, r7 +1003cb6a: 4641 mov r1, r8 +1003cb6c: f002 fef8 bl 1003f960 +1003cb70: 462a mov r2, r5 +1003cb72: 4638 mov r0, r7 +1003cb74: 4631 mov r1, r6 +1003cb76: 2300 movs r3, #0 +1003cb78: 3501 adds r5, #1 +1003cb7a: f002 feea bl 1003f952 +1003cb7e: 2d10 cmp r5, #16 +1003cb80: d1ed bne.n 1003cb5e +1003cb82: 3601 adds r6, #1 +1003cb84: e7e5 b.n 1003cb52 +1003cb86: 2313 movs r3, #19 +1003cb88: 2200 movs r2, #0 +1003cb8a: f884 316e strb.w r3, [r4, #366] ; 0x16e +1003cb8e: 4629 mov r1, r5 +1003cb90: 2301 movs r3, #1 +1003cb92: 3501 adds r5, #1 +1003cb94: f884 316b strb.w r3, [r4, #363] ; 0x16b +1003cb98: f884 3193 strb.w r3, [r4, #403] ; 0x193 +1003cb9c: f8a4 2178 strh.w r2, [r4, #376] ; 0x178 +1003cba0: f8a4 217a strh.w r2, [r4, #378] ; 0x17a +1003cba4: f8a4 217c strh.w r2, [r4, #380] ; 0x17c +1003cba8: f8a4 217e strh.w r2, [r4, #382] ; 0x17e +1003cbac: f8a4 2180 strh.w r2, [r4, #384] ; 0x180 +1003cbb0: f8c4 2184 str.w r2, [r4, #388] ; 0x184 +1003cbb4: f8c4 21a0 str.w r2, [r4, #416] ; 0x1a0 +1003cbb8: f8a4 2188 strh.w r2, [r4, #392] ; 0x188 +1003cbbc: f884 216f strb.w r2, [r4, #367] ; 0x16f +1003cbc0: f884 215c strb.w r2, [r4, #348] ; 0x15c +1003cbc4: f884 2192 strb.w r2, [r4, #402] ; 0x192 +1003cbc8: f884 2191 strb.w r2, [r4, #401] ; 0x191 +1003cbcc: f884 2194 strb.w r2, [r4, #404] ; 0x194 +1003cbd0: 4638 mov r0, r7 +1003cbd2: 4613 mov r3, r2 +1003cbd4: b2ed uxtb r5, r5 +1003cbd6: f002 fec3 bl 1003f960 +1003cbda: 2d80 cmp r5, #128 ; 0x80 +1003cbdc: d1d3 bne.n 1003cb86 +1003cbde: 23ff movs r3, #255 ; 0xff +1003cbe0: f884 316d strb.w r3, [r4, #365] ; 0x16d +1003cbe4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1003cbe8 : +1003cbe8: e92d 4ff1 stmdb sp!, {r0, r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003cbec: f8d0 9000 ldr.w r9, [r0] +1003cbf0: 4688 mov r8, r1 +1003cbf2: 4614 mov r4, r2 +1003cbf4: f891 103b ldrb.w r1, [r1, #59] ; 0x3b +1003cbf8: 2201 movs r2, #1 +1003cbfa: 4605 mov r5, r0 +1003cbfc: 4648 mov r0, r9 +1003cbfe: 461e mov r6, r3 +1003cc00: f89d b028 ldrb.w fp, [sp, #40] ; 0x28 +1003cc04: f002 fea7 bl 1003f956 +1003cc08: f898 1012 ldrb.w r1, [r8, #18] +1003cc0c: f004 027f and.w r2, r4, #127 ; 0x7f +1003cc10: 428a cmp r2, r1 +1003cc12: d904 bls.n 1003cc1e +1003cc14: f024 037f bic.w r3, r4, #127 ; 0x7f +1003cc18: ea43 0701 orr.w r7, r3, r1 +1003cc1c: e004 b.n 1003cc28 +1003cc1e: f898 7013 ldrb.w r7, [r8, #19] +1003cc22: 42ba cmp r2, r7 +1003cc24: bf28 it cs +1003cc26: 4627 movcs r7, r4 +1003cc28: b916 cbnz r6, 1003cc30 +1003cc2a: f000 0a7f and.w sl, r0, #127 ; 0x7f +1003cc2e: e019 b.n 1003cc64 +1003cc30: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003cc34: 2201 movs r2, #1 +1003cc36: 4648 mov r0, r9 +1003cc38: f002 fe8d bl 1003f956 +1003cc3c: 4927 ldr r1, [pc, #156] ; (1003ccdc ) +1003cc3e: f007 027f and.w r2, r7, #127 ; 0x7f +1003cc42: f811 a002 ldrb.w sl, [r1, r2] +1003cc46: f000 0007 and.w r0, r0, #7 +1003cc4a: ea40 0aca orr.w sl, r0, sl, lsl #3 +1003cc4e: f06a 0a7f orn sl, sl, #127 ; 0x7f +1003cc52: 4628 mov r0, r5 +1003cc54: f44f 6186 mov.w r1, #1072 ; 0x430 +1003cc58: f04f 3201 mov.w r2, #16843009 ; 0x1010101 +1003cc5c: fa5f fa8a uxtb.w sl, sl +1003cc60: f001 fd6e bl 1003e740 +1003cc64: 4a1e ldr r2, [pc, #120] ; (1003cce0 ) +1003cc66: f44f 7400 mov.w r4, #512 ; 0x200 +1003cc6a: 2500 movs r5, #0 +1003cc6c: f102 0308 add.w r3, r2, #8 +1003cc70: e9d3 2300 ldrd r2, r3, [r3] +1003cc74: 4014 ands r4, r2 +1003cc76: 401d ands r5, r3 +1003cc78: ea54 0305 orrs.w r3, r4, r5 +1003cc7c: d004 beq.n 1003cc88 +1003cc7e: 4a19 ldr r2, [pc, #100] ; (1003cce4 ) +1003cc80: 4639 mov r1, r7 +1003cc82: 6990 ldr r0, [r2, #24] +1003cc84: f005 fa40 bl 10042108 +1003cc88: 4648 mov r0, r9 +1003cc8a: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003cc8e: 463b mov r3, r7 +1003cc90: 2200 movs r2, #0 +1003cc92: f002 fe65 bl 1003f960 +1003cc96: 4653 mov r3, sl +1003cc98: 4648 mov r0, r9 +1003cc9a: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003cc9e: 2201 movs r2, #1 +1003cca0: f002 fe5e bl 1003f960 +1003cca4: f898 403b ldrb.w r4, [r8, #59] ; 0x3b +1003cca8: 4648 mov r0, r9 +1003ccaa: 4621 mov r1, r4 +1003ccac: 2205 movs r2, #5 +1003ccae: f002 fe52 bl 1003f956 +1003ccb2: f00b 0b03 and.w fp, fp, #3 +1003ccb6: f000 03fc and.w r3, r0, #252 ; 0xfc +1003ccba: 4621 mov r1, r4 +1003ccbc: 4648 mov r0, r9 +1003ccbe: ea43 030b orr.w r3, r3, fp +1003ccc2: 2205 movs r2, #5 +1003ccc4: f002 fe4c bl 1003f960 +1003ccc8: 4641 mov r1, r8 +1003ccca: f891 203b ldrb.w r2, [r1, #59] ; 0x3b +1003ccce: 4648 mov r0, r9 +1003ccd0: 2301 movs r3, #1 +1003ccd2: b001 add sp, #4 +1003ccd4: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003ccd8: f002 be44 b.w 1003f964 +1003ccdc: 1004dc2b .word 0x1004dc2b +1003cce0: 10000720 .word 0x10000720 +1003cce4: 1004da10 .word 0x1004da10 + +1003cce8 : +1003cce8: b570 push {r4, r5, r6, lr} +1003ccea: 3201 adds r2, #1 +1003ccec: 6806 ldr r6, [r0, #0] +1003ccee: 460d mov r5, r1 +1003ccf0: b2d4 uxtb r4, r2 +1003ccf2: 7cab ldrb r3, [r5, #18] +1003ccf4: 42a3 cmp r3, r4 +1003ccf6: d30d bcc.n 1003cd14 +1003ccf8: 4630 mov r0, r6 +1003ccfa: f895 103b ldrb.w r1, [r5, #59] ; 0x3b +1003ccfe: 08e2 lsrs r2, r4, #3 +1003cd00: f002 fe22 bl 1003f948 +1003cd04: f004 0307 and.w r3, r4, #7 +1003cd08: 40d8 lsrs r0, r3 +1003cd0a: 07c3 lsls r3, r0, #31 +1003cd0c: d403 bmi.n 1003cd16 +1003cd0e: 3401 adds r4, #1 +1003cd10: b2e4 uxtb r4, r4 +1003cd12: e7ee b.n 1003ccf2 +1003cd14: 2400 movs r4, #0 +1003cd16: 4620 mov r0, r4 +1003cd18: bd70 pop {r4, r5, r6, pc} + +1003cd1a : +1003cd1a: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} +1003cd1e: 3a01 subs r2, #1 +1003cd20: 2500 movs r5, #0 +1003cd22: f8d0 8000 ldr.w r8, [r0] +1003cd26: 460c mov r4, r1 +1003cd28: 4699 mov r9, r3 +1003cd2a: b2d6 uxtb r6, r2 +1003cd2c: 462f mov r7, r5 +1003cd2e: 7ce3 ldrb r3, [r4, #19] +1003cd30: b272 sxtb r2, r6 +1003cd32: 429a cmp r2, r3 +1003cd34: db16 blt.n 1003cd64 +1003cd36: 10d2 asrs r2, r2, #3 +1003cd38: 4640 mov r0, r8 +1003cd3a: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +1003cd3e: f002 fe03 bl 1003f948 +1003cd42: b2f2 uxtb r2, r6 +1003cd44: f002 0307 and.w r3, r2, #7 +1003cd48: 40d8 lsrs r0, r3 +1003cd4a: 07c3 lsls r3, r0, #31 +1003cd4c: d507 bpl.n 1003cd5e +1003cd4e: 3701 adds r7, #1 +1003cd50: b2ff uxtb r7, r7 +1003cd52: 454f cmp r7, r9 +1003cd54: d007 beq.n 1003cd66 +1003cd56: 7ce3 ldrb r3, [r4, #19] +1003cd58: 4293 cmp r3, r2 +1003cd5a: d204 bcs.n 1003cd66 +1003cd5c: 4615 mov r5, r2 +1003cd5e: 3a01 subs r2, #1 +1003cd60: b2d6 uxtb r6, r2 +1003cd62: e7e4 b.n 1003cd2e +1003cd64: 462a mov r2, r5 +1003cd66: 4610 mov r0, r2 +1003cd68: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + +1003cd6c : +1003cd6c: 7b4a ldrb r2, [r1, #13] +1003cd6e: b513 push {r0, r1, r4, lr} +1003cd70: 2a2d cmp r2, #45 ; 0x2d +1003cd72: f891 4036 ldrb.w r4, [r1, #54] ; 0x36 +1003cd76: d902 bls.n 1003cd7e +1003cd78: f891 2040 ldrb.w r2, [r1, #64] ; 0x40 +1003cd7c: e005 b.n 1003cd8a +1003cd7e: 2a19 cmp r2, #25 +1003cd80: bf8c ite hi +1003cd82: f891 2041 ldrbhi.w r2, [r1, #65] ; 0x41 +1003cd86: f891 2042 ldrbls.w r2, [r1, #66] ; 0x42 +1003cd8a: 9400 str r4, [sp, #0] +1003cd8c: 2300 movs r3, #0 +1003cd8e: f7ff ff2b bl 1003cbe8 +1003cd92: b002 add sp, #8 +1003cd94: bd10 pop {r4, pc} + +1003cd96 : +1003cd96: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1003cd9a: 6807 ldr r7, [r0, #0] +1003cd9c: 460c mov r4, r1 +1003cd9e: 2200 movs r2, #0 +1003cda0: f891 103b ldrb.w r1, [r1, #59] ; 0x3b +1003cda4: 4606 mov r6, r0 +1003cda6: 4638 mov r0, r7 +1003cda8: f002 fdd5 bl 1003f956 +1003cdac: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +1003cdb0: f000 057f and.w r5, r0, #127 ; 0x7f +1003cdb4: f020 087f bic.w r8, r0, #127 ; 0x7f +1003cdb8: 7460 strb r0, [r4, #17] +1003cdba: 2205 movs r2, #5 +1003cdbc: 4638 mov r0, r7 +1003cdbe: f002 fdca bl 1003f956 +1003cdc2: 7ca3 ldrb r3, [r4, #18] +1003cdc4: f000 0703 and.w r7, r0, #3 +1003cdc8: 429d cmp r5, r3 +1003cdca: fa5f f888 uxtb.w r8, r8 +1003cdce: f884 703a strb.w r7, [r4, #58] ; 0x3a +1003cdd2: d108 bne.n 1003cde6 +1003cdd4: 7be2 ldrb r2, [r4, #15] +1003cdd6: 2a01 cmp r2, #1 +1003cdd8: d124 bne.n 1003ce24 +1003cdda: f1b8 0f00 cmp.w r8, #0 +1003cdde: d121 bne.n 1003ce24 +1003cde0: f043 0380 orr.w r3, r3, #128 ; 0x80 +1003cde4: e010 b.n 1003ce08 +1003cde6: f1a5 0211 sub.w r2, r5, #17 +1003cdea: 2a02 cmp r2, #2 +1003cdec: d802 bhi.n 1003cdf4 +1003cdee: 7be2 ldrb r2, [r4, #15] +1003cdf0: 2a01 cmp r2, #1 +1003cdf2: d011 beq.n 1003ce18 +1003cdf4: 429d cmp r5, r3 +1003cdf6: d206 bcs.n 1003ce06 +1003cdf8: 4630 mov r0, r6 +1003cdfa: 4621 mov r1, r4 +1003cdfc: 462a mov r2, r5 +1003cdfe: f7ff ff73 bl 1003cce8 +1003ce02: 4603 mov r3, r0 +1003ce04: e000 b.n 1003ce08 +1003ce06: 7463 strb r3, [r4, #17] +1003ce08: 461a mov r2, r3 +1003ce0a: 9700 str r7, [sp, #0] +1003ce0c: 4630 mov r0, r6 +1003ce0e: 4621 mov r1, r4 +1003ce10: 2301 movs r3, #1 +1003ce12: f7ff fee9 bl 1003cbe8 +1003ce16: e005 b.n 1003ce24 +1003ce18: f1b8 0f00 cmp.w r8, #0 +1003ce1c: d1ec bne.n 1003cdf8 +1003ce1e: f045 0380 orr.w r3, r5, #128 ; 0x80 +1003ce22: e7f1 b.n 1003ce08 +1003ce24: b002 add sp, #8 +1003ce26: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1003ce2a : +1003ce2a: b573 push {r0, r1, r4, r5, r6, lr} +1003ce2c: 2205 movs r2, #5 +1003ce2e: 460c mov r4, r1 +1003ce30: 4605 mov r5, r0 +1003ce32: f891 103b ldrb.w r1, [r1, #59] ; 0x3b +1003ce36: 6800 ldr r0, [r0, #0] +1003ce38: f002 fd8d bl 1003f956 +1003ce3c: 7c63 ldrb r3, [r4, #17] +1003ce3e: 7ca2 ldrb r2, [r4, #18] +1003ce40: f003 067f and.w r6, r3, #127 ; 0x7f +1003ce44: f000 0003 and.w r0, r0, #3 +1003ce48: f023 037f bic.w r3, r3, #127 ; 0x7f +1003ce4c: 9000 str r0, [sp, #0] +1003ce4e: 4296 cmp r6, r2 +1003ce50: bf94 ite ls +1003ce52: ea43 0206 orrls.w r2, r3, r6 +1003ce56: 431a orrhi r2, r3 +1003ce58: 4628 mov r0, r5 +1003ce5a: 4621 mov r1, r4 +1003ce5c: 2300 movs r3, #0 +1003ce5e: f7ff fec3 bl 1003cbe8 +1003ce62: b002 add sp, #8 +1003ce64: bd70 pop {r4, r5, r6, pc} + ... + +1003ce68 : +1003ce68: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +1003ce6c: 6807 ldr r7, [r0, #0] +1003ce6e: f891 603b ldrb.w r6, [r1, #59] ; 0x3b +1003ce72: 2201 movs r2, #1 +1003ce74: 4605 mov r5, r0 +1003ce76: 460c mov r4, r1 +1003ce78: 4638 mov r0, r7 +1003ce7a: 4631 mov r1, r6 +1003ce7c: f002 fd6b bl 1003f956 +1003ce80: 0602 lsls r2, r0, #24 +1003ce82: d537 bpl.n 1003cef4 +1003ce84: 4638 mov r0, r7 +1003ce86: 4631 mov r1, r6 +1003ce88: 2202 movs r2, #2 +1003ce8a: f002 fd64 bl 1003f956 +1003ce8e: 0603 lsls r3, r0, #24 +1003ce90: d530 bpl.n 1003cef4 +1003ce92: f000 0040 and.w r0, r0, #64 ; 0x40 +1003ce96: f000 08ff and.w r8, r0, #255 ; 0xff +1003ce9a: b1d0 cbz r0, 1003ced2 +1003ce9c: 4628 mov r0, r5 +1003ce9e: f44f 6186 mov.w r1, #1072 ; 0x430 +1003cea2: 4a16 ldr r2, [pc, #88] ; (1003cefc ) +1003cea4: f001 fc4c bl 1003e740 +1003cea8: 4631 mov r1, r6 +1003ceaa: 4638 mov r0, r7 +1003ceac: 2200 movs r2, #0 +1003ceae: f002 fd52 bl 1003f956 +1003ceb2: 4631 mov r1, r6 +1003ceb4: 4680 mov r8, r0 +1003ceb6: 2205 movs r2, #5 +1003ceb8: 4638 mov r0, r7 +1003ceba: f002 fd4c bl 1003f956 +1003cebe: f000 0003 and.w r0, r0, #3 +1003cec2: 9000 str r0, [sp, #0] +1003cec4: 4621 mov r1, r4 +1003cec6: 4628 mov r0, r5 +1003cec8: 4642 mov r2, r8 +1003ceca: 2300 movs r3, #0 +1003cecc: f7ff fe8c bl 1003cbe8 +1003ced0: e010 b.n 1003cef4 +1003ced2: f894 303d ldrb.w r3, [r4, #61] ; 0x3d +1003ced6: 4628 mov r0, r5 +1003ced8: 3301 adds r3, #1 +1003ceda: f884 303d strb.w r3, [r4, #61] ; 0x3d +1003cede: 4621 mov r1, r4 +1003cee0: f7ff ffa3 bl 1003ce2a +1003cee4: 4628 mov r0, r5 +1003cee6: f44f 6186 mov.w r1, #1072 ; 0x430 +1003ceea: 4a04 ldr r2, [pc, #16] ; (1003cefc ) +1003ceec: f001 fc28 bl 1003e740 +1003cef0: f884 803d strb.w r8, [r4, #61] ; 0x3d +1003cef4: b002 add sp, #8 +1003cef6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1003cefa: bf00 nop +1003cefc: 01010000 .word 0x01010000 + +1003cf00 : +1003cf00: e92d 4fe3 stmdb sp!, {r0, r1, r5, r6, r7, r8, r9, sl, fp, lr} +1003cf04: 460d mov r5, r1 +1003cf06: 4693 mov fp, r2 +1003cf08: 4680 mov r8, r0 +1003cf0a: 2200 movs r2, #0 +1003cf0c: 6800 ldr r0, [r0, #0] +1003cf0e: f891 103b ldrb.w r1, [r1, #59] ; 0x3b +1003cf12: f002 fd20 bl 1003f956 +1003cf16: 7caa ldrb r2, [r5, #18] +1003cf18: f000 067f and.w r6, r0, #127 ; 0x7f +1003cf1c: f895 a036 ldrb.w sl, [r5, #54] ; 0x36 +1003cf20: 4296 cmp r6, r2 +1003cf22: 746e strb r6, [r5, #17] +1003cf24: f885 a03a strb.w sl, [r5, #58] ; 0x3a +1003cf28: bf94 ite ls +1003cf2a: 4602 movls r2, r0 +1003cf2c: 4616 movhi r6, r2 +1003cf2e: 465f mov r7, fp +1003cf30: f04f 0900 mov.w r9, #0 +1003cf34: fa5f f389 uxtb.w r3, r9 +1003cf38: 455b cmp r3, fp +1003cf3a: d20b bcs.n 1003cf54 +1003cf3c: 0613 lsls r3, r2, #24 +1003cf3e: d503 bpl.n 1003cf48 +1003cf40: 3f01 subs r7, #1 +1003cf42: f017 07ff ands.w r7, r7, #255 ; 0xff +1003cf46: d004 beq.n 1003cf52 +1003cf48: f1a6 0312 sub.w r3, r6, #18 +1003cf4c: 2b01 cmp r3, #1 +1003cf4e: d81b bhi.n 1003cf88 +1003cf50: e00a b.n 1003cf68 +1003cf52: 4632 mov r2, r6 +1003cf54: f8cd a000 str.w sl, [sp] +1003cf58: 4640 mov r0, r8 +1003cf5a: 4629 mov r1, r5 +1003cf5c: 2300 movs r3, #0 +1003cf5e: f7ff fe43 bl 1003cbe8 +1003cf62: b002 add sp, #8 +1003cf64: e8bd 8fe0 ldmia.w sp!, {r5, r6, r7, r8, r9, sl, fp, pc} +1003cf68: 4632 mov r2, r6 +1003cf6a: 4640 mov r0, r8 +1003cf6c: 4629 mov r1, r5 +1003cf6e: 2301 movs r3, #1 +1003cf70: f7ff fed3 bl 1003cd1a +1003cf74: 3f01 subs r7, #1 +1003cf76: f060 007f orn r0, r0, #127 ; 0x7f +1003cf7a: f017 07ff ands.w r7, r7, #255 ; 0xff +1003cf7e: b2c2 uxtb r2, r0 +1003cf80: f109 0901 add.w r9, r9, #1 +1003cf84: d1d6 bne.n 1003cf34 +1003cf86: e7e5 b.n 1003cf54 +1003cf88: 7cea ldrb r2, [r5, #19] +1003cf8a: 4296 cmp r6, r2 +1003cf8c: d9e2 bls.n 1003cf54 +1003cf8e: 4632 mov r2, r6 +1003cf90: 4640 mov r0, r8 +1003cf92: 4629 mov r1, r5 +1003cf94: 463b mov r3, r7 +1003cf96: f7ff fec0 bl 1003cd1a +1003cf9a: 4602 mov r2, r0 +1003cf9c: e7da b.n 1003cf54 + ... + +1003cfa0 : +1003cfa0: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003cfa4: 4605 mov r5, r0 +1003cfa6: f895 30ab ldrb.w r3, [r5, #171] ; 0xab +1003cfaa: 460c mov r4, r1 +1003cfac: 6800 ldr r0, [r0, #0] +1003cfae: 2b00 cmp r3, #0 +1003cfb0: d05d beq.n 1003d06e +1003cfb2: 6a8f ldr r7, [r1, #40] ; 0x28 +1003cfb4: 2f00 cmp r7, #0 +1003cfb6: d05a beq.n 1003d06e +1003cfb8: 8fcb ldrh r3, [r1, #62] ; 0x3e +1003cfba: f8b1 802c ldrh.w r8, [r1, #44] ; 0x2c +1003cfbe: 3301 adds r3, #1 +1003cfc0: 87cb strh r3, [r1, #62] ; 0x3e +1003cfc2: 7c8e ldrb r6, [r1, #18] +1003cfc4: 2200 movs r2, #0 +1003cfc6: f891 103b ldrb.w r1, [r1, #59] ; 0x3b +1003cfca: f002 fcc4 bl 1003f956 +1003cfce: f894 3039 ldrb.w r3, [r4, #57] ; 0x39 +1003cfd2: f8d4 9028 ldr.w r9, [r4, #40] ; 0x28 +1003cfd6: 2b04 cmp r3, #4 +1003cfd8: f8d4 c044 ldr.w ip, [r4, #68] ; 0x44 +1003cfdc: f8b4 a022 ldrh.w sl, [r4, #34] ; 0x22 +1003cfe0: 8ca1 ldrh r1, [r4, #36] ; 0x24 +1003cfe2: d844 bhi.n 1003d06e +1003cfe4: f000 027f and.w r2, r0, #127 ; 0x7f +1003cfe8: 42b2 cmp r2, r6 +1003cfea: d903 bls.n 1003cff4 +1003cfec: f000 0080 and.w r0, r0, #128 ; 0x80 +1003cff0: 4330 orrs r0, r6 +1003cff2: 4632 mov r2, r6 +1003cff4: 4b1f ldr r3, [pc, #124] ; (1003d074 ) +1003cff6: 5c1b ldrb r3, [r3, r0] +1003cff8: 4543 cmp r3, r8 +1003cffa: d206 bcs.n 1003d00a +1003cffc: 4628 mov r0, r5 +1003cffe: 4621 mov r1, r4 +1003d000: 2201 movs r2, #1 +1003d002: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003d006: f7ff bf7b b.w 1003cf00 +1003d00a: b2bb uxth r3, r7 +1003d00c: 2b0e cmp r3, #14 +1003d00e: d80e bhi.n 1003d02e +1003d010: 085a lsrs r2, r3, #1 +1003d012: 4451 add r1, sl +1003d014: 4291 cmp r1, r2 +1003d016: dcf1 bgt.n 1003cffc +1003d018: 8ba1 ldrh r1, [r4, #28] +1003d01a: eb02 0393 add.w r3, r2, r3, lsr #2 +1003d01e: 4299 cmp r1, r3 +1003d020: dd25 ble.n 1003d06e +1003d022: 4628 mov r0, r5 +1003d024: 4621 mov r1, r4 +1003d026: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003d02a: f7ff beb4 b.w 1003cd96 +1003d02e: f894 003b ldrb.w r0, [r4, #59] ; 0x3b +1003d032: b960 cbnz r0, 1003d04e +1003d034: 085e lsrs r6, r3, #1 +1003d036: 42b1 cmp r1, r6 +1003d038: d203 bcs.n 1003d042 +1003d03a: 4b0f ldr r3, [pc, #60] ; (1003d078 ) +1003d03c: 2101 movs r1, #1 +1003d03e: 7019 strb r1, [r3, #0] +1003d040: e005 b.n 1003d04e +1003d042: eb06 03d3 add.w r3, r6, r3, lsr #3 +1003d046: 4299 cmp r1, r3 +1003d048: bfc4 itt gt +1003d04a: 4b0b ldrgt r3, [pc, #44] ; (1003d078 ) +1003d04c: 7018 strbgt r0, [r3, #0] +1003d04e: 2364 movs r3, #100 ; 0x64 +1003d050: fb03 f309 mul.w r3, r3, r9 +1003d054: 4909 ldr r1, [pc, #36] ; (1003d07c ) +1003d056: fbb3 f3fc udiv r3, r3, ip +1003d05a: f1c3 0364 rsb r3, r3, #100 ; 0x64 +1003d05e: 5c89 ldrb r1, [r1, r2] +1003d060: b2db uxtb r3, r3 +1003d062: 4299 cmp r1, r3 +1003d064: d8dd bhi.n 1003d022 +1003d066: 4906 ldr r1, [pc, #24] ; (1003d080 ) +1003d068: 5c8a ldrb r2, [r1, r2] +1003d06a: 429a cmp r2, r3 +1003d06c: d3c6 bcc.n 1003cffc +1003d06e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003d072: bf00 nop +1003d074: 1004dc3f .word 0x1004dc3f +1003d078: 10055580 .word 0x10055580 +1003d07c: 1004dc53 .word 0x1004dc53 +1003d080: 1004dc67 .word 0x1004dc67 + +1003d084 : +1003d084: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003d088: 780e ldrb r6, [r1, #0] +1003d08a: 4a7d ldr r2, [pc, #500] ; (1003d280 ) +1003d08c: ebc6 03c6 rsb r3, r6, r6, lsl #3 +1003d090: f8d0 9000 ldr.w r9, [r0] +1003d094: b085 sub sp, #20 +1003d096: 4682 mov sl, r0 +1003d098: 4688 mov r8, r1 +1003d09a: eb02 0b03 add.w fp, r2, r3 +1003d09e: 2400 movs r4, #0 +1003d0a0: 4648 mov r0, r9 +1003d0a2: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003d0a6: 4622 mov r2, r4 +1003d0a8: f002 fc4e bl 1003f948 +1003d0ac: f898 3035 ldrb.w r3, [r8, #53] ; 0x35 +1003d0b0: f81b 7004 ldrb.w r7, [fp, r4] +1003d0b4: 2b02 cmp r3, #2 +1003d0b6: ea07 0700 and.w r7, r7, r0 +1003d0ba: d104 bne.n 1003d0c6 +1003d0bc: f014 0fff tst.w r4, #255 ; 0xff +1003d0c0: bf08 it eq +1003d0c2: f007 07f0 andeq.w r7, r7, #240 ; 0xf0 +1003d0c6: 4d6f ldr r5, [pc, #444] ; (1003d284 ) +1003d0c8: 2100 movs r1, #0 +1003d0ca: f44f 7000 mov.w r0, #512 ; 0x200 +1003d0ce: e9d5 2302 ldrd r2, r3, [r5, #8] +1003d0d2: 4002 ands r2, r0 +1003d0d4: 400b ands r3, r1 +1003d0d6: ea52 0103 orrs.w r1, r2, r3 +1003d0da: d00f beq.n 1003d0fc +1003d0dc: 4b6a ldr r3, [pc, #424] ; (1003d288 ) +1003d0de: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003d0e2: 6a1b ldr r3, [r3, #32] +1003d0e4: 4622 mov r2, r4 +1003d0e6: 4648 mov r0, r9 +1003d0e8: 9303 str r3, [sp, #12] +1003d0ea: f002 fc2d bl 1003f948 +1003d0ee: 9b03 ldr r3, [sp, #12] +1003d0f0: 4601 mov r1, r0 +1003d0f2: 4622 mov r2, r4 +1003d0f4: 4618 mov r0, r3 +1003d0f6: 463b mov r3, r7 +1003d0f8: f005 f806 bl 10042108 +1003d0fc: 4622 mov r2, r4 +1003d0fe: 4648 mov r0, r9 +1003d100: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003d104: 463b mov r3, r7 +1003d106: 3401 adds r4, #1 +1003d108: f002 fc23 bl 1003f952 +1003d10c: 2c07 cmp r4, #7 +1003d10e: d1c7 bne.n 1003d0a0 +1003d110: 2e08 cmp r6, #8 +1003d112: d80f bhi.n 1003d134 +1003d114: e8df f006 tbb [pc, r6] +1003d118: 10051005 .word 0x10051005 +1003d11c: 18181005 .word 0x18181005 +1003d120: 20 .byte 0x20 +1003d121: 00 .byte 0x00 +1003d122: 231b movs r3, #27 +1003d124: f888 3040 strb.w r3, [r8, #64] ; 0x40 +1003d128: 2317 movs r3, #23 +1003d12a: f888 3041 strb.w r3, [r8, #65] ; 0x41 +1003d12e: 2314 movs r3, #20 +1003d130: f888 3042 strb.w r3, [r8, #66] ; 0x42 +1003d134: 2406 movs r4, #6 +1003d136: e01e b.n 1003d176 +1003d138: 2313 movs r3, #19 +1003d13a: f888 3040 strb.w r3, [r8, #64] ; 0x40 +1003d13e: 230f movs r3, #15 +1003d140: f888 3041 strb.w r3, [r8, #65] ; 0x41 +1003d144: 230c movs r3, #12 +1003d146: e7f3 b.n 1003d130 +1003d148: 230b movs r3, #11 +1003d14a: f888 3040 strb.w r3, [r8, #64] ; 0x40 +1003d14e: 2307 movs r3, #7 +1003d150: f888 3041 strb.w r3, [r8, #65] ; 0x41 +1003d154: 2304 movs r3, #4 +1003d156: e7eb b.n 1003d130 +1003d158: 2303 movs r3, #3 +1003d15a: f888 3040 strb.w r3, [r8, #64] ; 0x40 +1003d15e: 2302 movs r3, #2 +1003d160: f888 3041 strb.w r3, [r8, #65] ; 0x41 +1003d164: 2300 movs r3, #0 +1003d166: e7e3 b.n 1003d130 +1003d168: f002 fbee bl 1003f948 +1003d16c: f010 000f ands.w r0, r0, #15 +1003d170: d10b bne.n 1003d18a +1003d172: 3c01 subs r4, #1 +1003d174: b2e4 uxtb r4, r4 +1003d176: 2c06 cmp r4, #6 +1003d178: 4648 mov r0, r9 +1003d17a: 4622 mov r2, r4 +1003d17c: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003d180: d0f2 beq.n 1003d168 +1003d182: f002 fbe1 bl 1003f948 +1003d186: b2c0 uxtb r0, r0 +1003d188: b178 cbz r0, 1003d1aa +1003d18a: f04f 0c07 mov.w ip, #7 +1003d18e: fa20 f30c lsr.w r3, r0, ip +1003d192: 07d9 lsls r1, r3, #31 +1003d194: d504 bpl.n 1003d1a0 +1003d196: eb0c 0cc4 add.w ip, ip, r4, lsl #3 +1003d19a: fa5f f78c uxtb.w r7, ip +1003d19e: e007 b.n 1003d1b0 +1003d1a0: f10c 3cff add.w ip, ip, #4294967295 +1003d1a4: fa5f fc8c uxtb.w ip, ip +1003d1a8: e7f1 b.n 1003d18e +1003d1aa: 2c00 cmp r4, #0 +1003d1ac: d1e1 bne.n 1003d172 +1003d1ae: 4627 mov r7, r4 +1003d1b0: 2400 movs r4, #0 +1003d1b2: b2e6 uxtb r6, r4 +1003d1b4: 2e06 cmp r6, #6 +1003d1b6: 4648 mov r0, r9 +1003d1b8: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003d1bc: d105 bne.n 1003d1ca +1003d1be: 4632 mov r2, r6 +1003d1c0: f002 fbc2 bl 1003f948 +1003d1c4: f000 000f and.w r0, r0, #15 +1003d1c8: e003 b.n 1003d1d2 +1003d1ca: 4622 mov r2, r4 +1003d1cc: f002 fbbc bl 1003f948 +1003d1d0: b2c0 uxtb r0, r0 +1003d1d2: b160 cbz r0, 1003d1ee +1003d1d4: 2100 movs r1, #0 +1003d1d6: fa20 f201 lsr.w r2, r0, r1 +1003d1da: 07d2 lsls r2, r2, #31 +1003d1dc: b2cb uxtb r3, r1 +1003d1de: d503 bpl.n 1003d1e8 +1003d1e0: eb03 03c6 add.w r3, r3, r6, lsl #3 +1003d1e4: b2db uxtb r3, r3 +1003d1e6: e006 b.n 1003d1f6 +1003d1e8: 3101 adds r1, #1 +1003d1ea: 2908 cmp r1, #8 +1003d1ec: d1f3 bne.n 1003d1d6 +1003d1ee: 3401 adds r4, #1 +1003d1f0: 2c07 cmp r4, #7 +1003d1f2: d1de bne.n 1003d1b2 +1003d1f4: 2300 movs r3, #0 +1003d1f6: f888 3013 strb.w r3, [r8, #19] +1003d1fa: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003d1fe: 2200 movs r2, #0 +1003d200: f888 7012 strb.w r7, [r8, #18] +1003d204: 4648 mov r0, r9 +1003d206: 9303 str r3, [sp, #12] +1003d208: f002 fba5 bl 1003f956 +1003d20c: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003d210: f000 0b7f and.w fp, r0, #127 ; 0x7f +1003d214: 2200 movs r2, #0 +1003d216: 4648 mov r0, r9 +1003d218: f002 fb9d bl 1003f956 +1003d21c: 45bb cmp fp, r7 +1003d21e: f020 007f bic.w r0, r0, #127 ; 0x7f +1003d222: b2c0 uxtb r0, r0 +1003d224: 9b03 ldr r3, [sp, #12] +1003d226: d904 bls.n 1003d232 +1003d228: ea40 0b07 orr.w fp, r0, r7 +1003d22c: fa5f fb8b uxtb.w fp, fp +1003d230: e003 b.n 1003d23a +1003d232: 459b cmp fp, r3 +1003d234: bf38 it cc +1003d236: ea40 0b03 orrcc.w fp, r0, r3 +1003d23a: e9d5 0102 ldrd r0, r1, [r5, #8] +1003d23e: f44f 7400 mov.w r4, #512 ; 0x200 +1003d242: 2500 movs r5, #0 +1003d244: 4004 ands r4, r0 +1003d246: 400d ands r5, r1 +1003d248: ea54 0105 orrs.w r1, r4, r5 +1003d24c: d005 beq.n 1003d25a +1003d24e: 4a0e ldr r2, [pc, #56] ; (1003d288 ) +1003d250: 4659 mov r1, fp +1003d252: 6a50 ldr r0, [r2, #36] ; 0x24 +1003d254: 463a mov r2, r7 +1003d256: f004 ff57 bl 10042108 +1003d25a: f898 3036 ldrb.w r3, [r8, #54] ; 0x36 +1003d25e: 4650 mov r0, sl +1003d260: 9300 str r3, [sp, #0] +1003d262: 4641 mov r1, r8 +1003d264: 465a mov r2, fp +1003d266: 2300 movs r3, #0 +1003d268: f7ff fcbe bl 1003cbe8 +1003d26c: f898 103b ldrb.w r1, [r8, #59] ; 0x3b +1003d270: 4648 mov r0, r9 +1003d272: 2203 movs r2, #3 +1003d274: 2300 movs r3, #0 +1003d276: b005 add sp, #20 +1003d278: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003d27c: f002 bb70 b.w 1003f960 +1003d280: 1004dbec .word 0x1004dbec +1003d284: 10000720 .word 0x10000720 +1003d288: 1004da10 .word 0x1004da10 + +1003d28c : +1003d28c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003d290: f891 9000 ldrb.w r9, [r1] +1003d294: b085 sub sp, #20 +1003d296: f009 097f and.w r9, r9, #127 ; 0x7f +1003d29a: f1b9 0f06 cmp.w r9, #6 +1003d29e: 4682 mov sl, r0 +1003d2a0: 460e mov r6, r1 +1003d2a2: 6805 ldr r5, [r0, #0] +1003d2a4: 784a ldrb r2, [r1, #1] +1003d2a6: f891 b002 ldrb.w fp, [r1, #2] +1003d2aa: d84a bhi.n 1003d342 +1003d2ac: 2358 movs r3, #88 ; 0x58 +1003d2ae: fb03 0309 mla r3, r3, r9, r0 +1003d2b2: ea4f 11db mov.w r1, fp, lsr #7 +1003d2b6: f503 78ae add.w r8, r3, #348 ; 0x15c +1003d2ba: f888 1038 strb.w r1, [r8, #56] ; 0x38 +1003d2be: f3cb 04c0 ubfx r4, fp, #3, #1 +1003d2c2: f3cb 1180 ubfx r1, fp, #6, #1 +1003d2c6: f503 73ac add.w r3, r3, #344 ; 0x158 +1003d2ca: f888 903b strb.w r9, [r8, #59] ; 0x3b +1003d2ce: f888 1037 strb.w r1, [r8, #55] ; 0x37 +1003d2d2: 2c00 cmp r4, #0 +1003d2d4: d135 bne.n 1003d342 +1003d2d6: f00b 0b03 and.w fp, fp, #3 +1003d2da: f002 0c1f and.w ip, r2, #31 +1003d2de: 09d7 lsrs r7, r2, #7 +1003d2e0: f883 c004 strb.w ip, [r3, #4] +1003d2e4: f888 b035 strb.w fp, [r8, #53] ; 0x35 +1003d2e8: f888 b036 strb.w fp, [r8, #54] ; 0x36 +1003d2ec: f888 700f strb.w r7, [r8, #15] +1003d2f0: 1933 adds r3, r6, r4 +1003d2f2: 4622 mov r2, r4 +1003d2f4: 78db ldrb r3, [r3, #3] +1003d2f6: 4628 mov r0, r5 +1003d2f8: 4649 mov r1, r9 +1003d2fa: 3401 adds r4, #1 +1003d2fc: f8cd c00c str.w ip, [sp, #12] +1003d300: f002 fb27 bl 1003f952 +1003d304: 2c04 cmp r4, #4 +1003d306: f8dd c00c ldr.w ip, [sp, #12] +1003d30a: d1f1 bne.n 1003d2f0 +1003d30c: 4b0e ldr r3, [pc, #56] ; (1003d348 ) +1003d30e: f44f 7400 mov.w r4, #512 ; 0x200 +1003d312: 2500 movs r5, #0 +1003d314: e9d3 2302 ldrd r2, r3, [r3, #8] +1003d318: 4014 ands r4, r2 +1003d31a: 401d ands r5, r3 +1003d31c: ea54 0305 orrs.w r3, r4, r5 +1003d320: d008 beq.n 1003d334 +1003d322: 4b0a ldr r3, [pc, #40] ; (1003d34c ) +1003d324: f8cd b000 str.w fp, [sp] +1003d328: 6a98 ldr r0, [r3, #40] ; 0x28 +1003d32a: 4649 mov r1, r9 +1003d32c: 4662 mov r2, ip +1003d32e: 463b mov r3, r7 +1003d330: f004 feea bl 10042108 +1003d334: 4650 mov r0, sl +1003d336: 4641 mov r1, r8 +1003d338: b005 add sp, #20 +1003d33a: e8bd 4ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003d33e: f7ff bea1 b.w 1003d084 +1003d342: b005 add sp, #20 +1003d344: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1003d348: 10000720 .word 0x10000720 +1003d34c: 1004da10 .word 0x1004da10 + +1003d350 : +1003d350: b510 push {r4, lr} +1003d352: 460b mov r3, r1 +1003d354: 4604 mov r4, r0 +1003d356: b188 cbz r0, 1003d37c +1003d358: 2906 cmp r1, #6 +1003d35a: d80f bhi.n 1003d37c +1003d35c: 2158 movs r1, #88 ; 0x58 +1003d35e: fb01 0103 mla r1, r1, r3, r0 +1003d362: f501 71ae add.w r1, r1, #348 ; 0x15c +1003d366: 734a strb r2, [r1, #13] +1003d368: f881 303b strb.w r3, [r1, #59] ; 0x3b +1003d36c: f890 311b ldrb.w r3, [r0, #283] ; 0x11b +1003d370: b123 cbz r3, 1003d37c +1003d372: f7ff fcfb bl 1003cd6c +1003d376: 2300 movs r3, #0 +1003d378: f884 311b strb.w r3, [r4, #283] ; 0x11b +1003d37c: bd10 pop {r4, pc} + +1003d37e : +1003d37e: b5f0 push {r4, r5, r6, r7, lr} +1003d380: f890 6030 ldrb.w r6, [r0, #48] ; 0x30 +1003d384: f890 7021 ldrb.w r7, [r0, #33] ; 0x21 +1003d388: 0636 lsls r6, r6, #24 +1003d38a: f890 5028 ldrb.w r5, [r0, #40] ; 0x28 +1003d38e: ea46 4607 orr.w r6, r6, r7, lsl #16 +1003d392: f890 7035 ldrb.w r7, [r0, #53] ; 0x35 +1003d396: f890 4034 ldrb.w r4, [r0, #52] ; 0x34 +1003d39a: ea46 3607 orr.w r6, r6, r7, lsl #12 +1003d39e: f005 07f0 and.w r7, r5, #240 ; 0xf0 +1003d3a2: ea46 4607 orr.w r6, r6, r7, lsl #16 +1003d3a6: f005 050f and.w r5, r5, #15 +1003d3aa: ea46 2505 orr.w r5, r6, r5, lsl #8 +1003d3ae: 09e7 lsrs r7, r4, #7 +1003d3b0: f3c4 1600 ubfx r6, r4, #4, #1 +1003d3b4: ea46 0687 orr.w r6, r6, r7, lsl #2 +1003d3b8: f3c4 07c0 ubfx r7, r4, #3, #1 +1003d3bc: ea46 0647 orr.w r6, r6, r7, lsl #1 +1003d3c0: f3c4 1780 ubfx r7, r4, #6, #1 +1003d3c4: ea46 06c7 orr.w r6, r6, r7, lsl #3 +1003d3c8: f3c4 0480 ubfx r4, r4, #2, #1 +1003d3cc: ea46 1404 orr.w r4, r6, r4, lsl #4 +1003d3d0: f411 4f70 tst.w r1, #61440 ; 0xf000 +1003d3d4: ea45 0404 orr.w r4, r5, r4 +1003d3d8: f890 6036 ldrb.w r6, [r0, #54] ; 0x36 +1003d3dc: f890 7037 ldrb.w r7, [r0, #55] ; 0x37 +1003d3e0: f890 c038 ldrb.w ip, [r0, #56] ; 0x38 +1003d3e4: f890 5039 ldrb.w r5, [r0, #57] ; 0x39 +1003d3e8: d004 beq.n 1003d3f4 +1003d3ea: ea84 0001 eor.w r0, r4, r1 +1003d3ee: f410 4f70 tst.w r0, #61440 ; 0xf000 +1003d3f2: d133 bne.n 1003d45c +1003d3f4: f011 6f70 tst.w r1, #251658240 ; 0xf000000 +1003d3f8: d004 beq.n 1003d404 +1003d3fa: ea84 0001 eor.w r0, r4, r1 +1003d3fe: f010 6f70 tst.w r0, #251658240 ; 0xf000000 +1003d402: d12b bne.n 1003d45c +1003d404: f021 407f bic.w r0, r1, #4278190080 ; 0xff000000 +1003d408: f420 4070 bic.w r0, r0, #61440 ; 0xf000 +1003d40c: 4004 ands r4, r0 +1003d40e: 4284 cmp r4, r0 +1003d410: d124 bne.n 1003d45c +1003d412: 0708 lsls r0, r1, #28 +1003d414: d020 beq.n 1003d458 +1003d416: f011 0f01 tst.w r1, #1 +1003d41a: bf14 ite ne +1003d41c: 20ff movne r0, #255 ; 0xff +1003d41e: 2000 moveq r0, #0 +1003d420: 078c lsls r4, r1, #30 +1003d422: bf48 it mi +1003d424: f440 407f orrmi.w r0, r0, #65280 ; 0xff00 +1003d428: 074c lsls r4, r1, #29 +1003d42a: bf48 it mi +1003d42c: f440 007f orrmi.w r0, r0, #16711680 ; 0xff0000 +1003d430: 0709 lsls r1, r1, #28 +1003d432: ea4f 410c mov.w r1, ip, lsl #16 +1003d436: ea41 2107 orr.w r1, r1, r7, lsl #8 +1003d43a: ea41 0106 orr.w r1, r1, r6 +1003d43e: ea41 6105 orr.w r1, r1, r5, lsl #24 +1003d442: bf48 it mi +1003d444: f040 407f orrmi.w r0, r0, #4278190080 ; 0xff000000 +1003d448: 404a eors r2, r1 +1003d44a: 4210 tst r0, r2 +1003d44c: d106 bne.n 1003d45c +1003d44e: 4218 tst r0, r3 +1003d450: bf14 ite ne +1003d452: 2000 movne r0, #0 +1003d454: 2001 moveq r0, #1 +1003d456: bdf0 pop {r4, r5, r6, r7, pc} +1003d458: 2001 movs r0, #1 +1003d45a: bdf0 pop {r4, r5, r6, r7, pc} +1003d45c: 2000 movs r0, #0 +1003d45e: bdf0 pop {r4, r5, r6, r7, pc} + +1003d460 : +1003d460: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003d464: 4d1b ldr r5, [pc, #108] ; (1003d4d4 ) +1003d466: 2700 movs r7, #0 +1003d468: 4681 mov r9, r0 +1003d46a: f505 7a04 add.w sl, r5, #528 ; 0x210 +1003d46e: 46b8 mov r8, r7 +1003d470: 463e mov r6, r7 +1003d472: 2401 movs r4, #1 +1003d474: 4555 cmp r5, sl +1003d476: d02b beq.n 1003d4d0 +1003d478: f855 1c04 ldr.w r1, [r5, #-4] +1003d47c: 682b ldr r3, [r5, #0] +1003d47e: f011 4f40 tst.w r1, #3221225472 ; 0xc0000000 +1003d482: d013 beq.n 1003d4ac +1003d484: 2900 cmp r1, #0 +1003d486: da08 bge.n 1003d49a +1003d488: f3c1 7201 ubfx r2, r1, #28, #2 +1003d48c: 2a03 cmp r2, #3 +1003d48e: d014 beq.n 1003d4ba +1003d490: 2a02 cmp r2, #2 +1003d492: d115 bne.n 1003d4c0 +1003d494: f086 0401 eor.w r4, r6, #1 +1003d498: e018 b.n 1003d4cc +1003d49a: b9a6 cbnz r6, 1003d4c6 +1003d49c: 4648 mov r0, r9 +1003d49e: 4641 mov r1, r8 +1003d4a0: 463a mov r2, r7 +1003d4a2: f7ff ff6c bl 1003d37e +1003d4a6: b180 cbz r0, 1003d4ca +1003d4a8: 2601 movs r6, #1 +1003d4aa: e00e b.n 1003d4ca +1003d4ac: b174 cbz r4, 1003d4cc +1003d4ae: 4648 mov r0, r9 +1003d4b0: f04f 32ff mov.w r2, #4294967295 +1003d4b4: f000 f88e bl 1003d5d4 +1003d4b8: e000 b.n 1003d4bc +1003d4ba: 2600 movs r6, #0 +1003d4bc: 2401 movs r4, #1 +1003d4be: e005 b.n 1003d4cc +1003d4c0: 461f mov r7, r3 +1003d4c2: 4688 mov r8, r1 +1003d4c4: e002 b.n 1003d4cc +1003d4c6: 2400 movs r4, #0 +1003d4c8: e000 b.n 1003d4cc +1003d4ca: 4634 mov r4, r6 +1003d4cc: 3508 adds r5, #8 +1003d4ce: e7d1 b.n 1003d474 +1003d4d0: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003d4d4: 1004dd10 .word 0x1004dd10 + +1003d4d8 : +1003d4d8: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003d4dc: 4d1b ldr r5, [pc, #108] ; (1003d54c ) +1003d4de: 2700 movs r7, #0 +1003d4e0: 4681 mov r9, r0 +1003d4e2: f505 6acf add.w sl, r5, #1656 ; 0x678 +1003d4e6: 46b8 mov r8, r7 +1003d4e8: 463e mov r6, r7 +1003d4ea: 2401 movs r4, #1 +1003d4ec: 4555 cmp r5, sl +1003d4ee: d02b beq.n 1003d548 +1003d4f0: f855 1c04 ldr.w r1, [r5, #-4] +1003d4f4: 682b ldr r3, [r5, #0] +1003d4f6: f011 4f40 tst.w r1, #3221225472 ; 0xc0000000 +1003d4fa: d013 beq.n 1003d524 +1003d4fc: 2900 cmp r1, #0 +1003d4fe: da08 bge.n 1003d512 +1003d500: f3c1 7201 ubfx r2, r1, #28, #2 +1003d504: 2a03 cmp r2, #3 +1003d506: d014 beq.n 1003d532 +1003d508: 2a02 cmp r2, #2 +1003d50a: d115 bne.n 1003d538 +1003d50c: f086 0401 eor.w r4, r6, #1 +1003d510: e018 b.n 1003d544 +1003d512: b9a6 cbnz r6, 1003d53e +1003d514: 4648 mov r0, r9 +1003d516: 4641 mov r1, r8 +1003d518: 463a mov r2, r7 +1003d51a: f7ff ff30 bl 1003d37e +1003d51e: b180 cbz r0, 1003d542 +1003d520: 2601 movs r6, #1 +1003d522: e00e b.n 1003d542 +1003d524: b174 cbz r4, 1003d544 +1003d526: 4648 mov r0, r9 +1003d528: f04f 32ff mov.w r2, #4294967295 +1003d52c: f000 f871 bl 1003d612 +1003d530: e000 b.n 1003d534 +1003d532: 2600 movs r6, #0 +1003d534: 2401 movs r4, #1 +1003d536: e005 b.n 1003d544 +1003d538: 461f mov r7, r3 +1003d53a: 4688 mov r8, r1 +1003d53c: e002 b.n 1003d544 +1003d53e: 2400 movs r4, #0 +1003d540: e000 b.n 1003d544 +1003d542: 4634 mov r4, r6 +1003d544: 3508 adds r5, #8 +1003d546: e7d1 b.n 1003d4ec +1003d548: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003d54c: 1004df20 .word 0x1004df20 + +1003d550 : +1003d550: 201a movs r0, #26 +1003d552: 4770 bx lr + +1003d554 : +1003d554: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +1003d556: 4c0b ldr r4, [pc, #44] ; (1003d584 ) +1003d558: 2301 movs r3, #1 +1003d55a: 4605 mov r5, r0 +1003d55c: 7303 strb r3, [r0, #12] +1003d55e: 6083 str r3, [r0, #8] +1003d560: f104 0690 add.w r6, r4, #144 ; 0x90 +1003d564: 68a3 ldr r3, [r4, #8] +1003d566: 1f21 subs r1, r4, #4 +1003d568: 9300 str r3, [sp, #0] +1003d56a: 68e3 ldr r3, [r4, #12] +1003d56c: 4628 mov r0, r5 +1003d56e: 9301 str r3, [sp, #4] +1003d570: 6923 ldr r3, [r4, #16] +1003d572: 3418 adds r4, #24 +1003d574: 9302 str r3, [sp, #8] +1003d576: c90e ldmia r1, {r1, r2, r3} +1003d578: f000 f834 bl 1003d5e4 +1003d57c: 42b4 cmp r4, r6 +1003d57e: d1f1 bne.n 1003d564 +1003d580: b004 add sp, #16 +1003d582: bd70 pop {r4, r5, r6, pc} +1003d584: 1004dc80 .word 0x1004dc80 + +1003d588 : +1003d588: b537 push {r0, r1, r2, r4, r5, lr} +1003d58a: 29fe cmp r1, #254 ; 0xfe +1003d58c: 4614 mov r4, r2 +1003d58e: 9a06 ldr r2, [sp, #24] +1003d590: d003 beq.n 1003d59a +1003d592: f640 75fe movw r5, #4094 ; 0xffe +1003d596: 42a9 cmp r1, r5 +1003d598: d105 bne.n 1003d5a6 +1003d59a: 201e movs r0, #30 +1003d59c: b003 add sp, #12 +1003d59e: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1003d5a2: f001 b8e4 b.w 1003e76e +1003d5a6: 4619 mov r1, r3 +1003d5a8: 9400 str r4, [sp, #0] +1003d5aa: 4b04 ldr r3, [pc, #16] ; (1003d5bc ) +1003d5ac: f001 f8d4 bl 1003e758 +1003d5b0: 2001 movs r0, #1 +1003d5b2: b003 add sp, #12 +1003d5b4: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1003d5b8: f001 b8db b.w 1003e772 +1003d5bc: 000fffff .word 0x000fffff + +1003d5c0 : +1003d5c0: b507 push {r0, r1, r2, lr} +1003d5c2: 2300 movs r3, #0 +1003d5c4: 9100 str r1, [sp, #0] +1003d5c6: f7ff ffdf bl 1003d588 +1003d5ca: b003 add sp, #12 +1003d5cc: f85d fb04 ldr.w pc, [sp], #4 + +1003d5d0 : +1003d5d0: f001 b8b0 b.w 1003e734 + +1003d5d4 : +1003d5d4: b508 push {r3, lr} +1003d5d6: f001 f8b9 bl 1003e74c +1003d5da: e8bd 4008 ldmia.w sp!, {r3, lr} +1003d5de: 2001 movs r0, #1 +1003d5e0: f001 b8c7 b.w 1003e772 + +1003d5e4 : +1003d5e4: b5f0 push {r4, r5, r6, r7, lr} +1003d5e6: 9c05 ldr r4, [sp, #20] +1003d5e8: 9e06 ldr r6, [sp, #24] +1003d5ea: 2cfe cmp r4, #254 ; 0xfe +1003d5ec: 9d07 ldr r5, [sp, #28] +1003d5ee: d003 beq.n 1003d5f8 +1003d5f0: f640 77fe movw r7, #4094 ; 0xffe +1003d5f4: 42bc cmp r4, r7 +1003d5f6: d104 bne.n 1003d602 +1003d5f8: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +1003d5fc: 2032 movs r0, #50 ; 0x32 +1003d5fe: f001 b8b6 b.w 1003e76e +1003d602: 9405 str r4, [sp, #20] +1003d604: 9606 str r6, [sp, #24] +1003d606: 9507 str r5, [sp, #28] +1003d608: 6800 ldr r0, [r0, #0] +1003d60a: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +1003d60e: f7f9 bd7b b.w 10037108 + +1003d612 : +1003d612: 29fe cmp r1, #254 ; 0xfe +1003d614: b510 push {r4, lr} +1003d616: bf08 it eq +1003d618: 2032 moveq r0, #50 ; 0x32 +1003d61a: d002 beq.n 1003d622 +1003d61c: 29fd cmp r1, #253 ; 0xfd +1003d61e: d103 bne.n 1003d628 +1003d620: 2005 movs r0, #5 +1003d622: f001 f8a4 bl 1003e76e +1003d626: e013 b.n 1003d650 +1003d628: 29fc cmp r1, #252 ; 0xfc +1003d62a: bf08 it eq +1003d62c: 2001 moveq r0, #1 +1003d62e: d0f8 beq.n 1003d622 +1003d630: 29fb cmp r1, #251 ; 0xfb +1003d632: bf08 it eq +1003d634: 2032 moveq r0, #50 ; 0x32 +1003d636: d006 beq.n 1003d646 +1003d638: 29fa cmp r1, #250 ; 0xfa +1003d63a: bf08 it eq +1003d63c: 2005 moveq r0, #5 +1003d63e: d002 beq.n 1003d646 +1003d640: 29f9 cmp r1, #249 ; 0xf9 +1003d642: d103 bne.n 1003d64c +1003d644: 2001 movs r0, #1 +1003d646: f001 f894 bl 1003e772 +1003d64a: e001 b.n 1003d650 +1003d64c: f001 f87e bl 1003e74c +1003d650: e8bd 4010 ldmia.w sp!, {r4, lr} +1003d654: 2001 movs r0, #1 +1003d656: f001 b88c b.w 1003e772 + +1003d65a : +1003d65a: b5f0 push {r4, r5, r6, r7, lr} +1003d65c: f89d 7014 ldrb.w r7, [sp, #20] +1003d660: f89d 6018 ldrb.w r6, [sp, #24] +1003d664: f89d 501c ldrb.w r5, [sp, #28] +1003d668: f89d 4020 ldrb.w r4, [sp, #32] +1003d66c: 9705 str r7, [sp, #20] +1003d66e: 9606 str r6, [sp, #24] +1003d670: 9507 str r5, [sp, #28] +1003d672: 9408 str r4, [sp, #32] +1003d674: 6800 ldr r0, [r0, #0] +1003d676: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +1003d67a: f7fa b8a1 b.w 100377c0 + ... + +1003d680 : +1003d680: 293f cmp r1, #63 ; 0x3f +1003d682: d874 bhi.n 1003d76e +1003d684: e8df f001 tbb [pc, r1] +1003d688: 2b282025 .word 0x2b282025 +1003d68c: 2233302e .word 0x2233302e +1003d690: 423f3c36 .word 0x423f3c36 +1003d694: 4e4b4845 .word 0x4e4b4845 +1003d698: 5a575451 .word 0x5a575451 +1003d69c: 6663605d .word 0x6663605d +1003d6a0: 716e6c69 .word 0x716e6c69 +1003d6a4: 73737373 .word 0x73737373 +1003d6a8: 73737373 .word 0x73737373 +1003d6ac: 73737373 .word 0x73737373 +1003d6b0: 73737373 .word 0x73737373 +1003d6b4: 73737373 .word 0x73737373 +1003d6b8: 73737373 .word 0x73737373 +1003d6bc: 73737373 .word 0x73737373 +1003d6c0: 73737373 .word 0x73737373 +1003d6c4: 39737373 .word 0x39737373 +1003d6c8: 6242 str r2, [r0, #36] ; 0x24 +1003d6ca: 4770 bx lr +1003d6cc: f880 2032 strb.w r2, [r0, #50] ; 0x32 +1003d6d0: 4770 bx lr +1003d6d2: f880 2021 strb.w r2, [r0, #33] ; 0x21 +1003d6d6: 4770 bx lr +1003d6d8: f880 2028 strb.w r2, [r0, #40] ; 0x28 +1003d6dc: 4770 bx lr +1003d6de: f880 20af strb.w r2, [r0, #175] ; 0xaf +1003d6e2: 4770 bx lr +1003d6e4: 62c2 str r2, [r0, #44] ; 0x2c +1003d6e6: 4770 bx lr +1003d6e8: f880 2030 strb.w r2, [r0, #48] ; 0x30 +1003d6ec: 4770 bx lr +1003d6ee: f880 2031 strb.w r2, [r0, #49] ; 0x31 +1003d6f2: 4770 bx lr +1003d6f4: f880 2033 strb.w r2, [r0, #51] ; 0x33 +1003d6f8: 4770 bx lr +1003d6fa: f880 2048 strb.w r2, [r0, #72] ; 0x48 +1003d6fe: 4770 bx lr +1003d700: f880 2034 strb.w r2, [r0, #52] ; 0x34 +1003d704: 4770 bx lr +1003d706: f880 2035 strb.w r2, [r0, #53] ; 0x35 +1003d70a: 4770 bx lr +1003d70c: f880 203a strb.w r2, [r0, #58] ; 0x3a +1003d710: 4770 bx lr +1003d712: f880 203b strb.w r2, [r0, #59] ; 0x3b +1003d716: 4770 bx lr +1003d718: f880 203c strb.w r2, [r0, #60] ; 0x3c +1003d71c: 4770 bx lr +1003d71e: f880 203d strb.w r2, [r0, #61] ; 0x3d +1003d722: 4770 bx lr +1003d724: f880 2037 strb.w r2, [r0, #55] ; 0x37 +1003d728: 4770 bx lr +1003d72a: f880 2039 strb.w r2, [r0, #57] ; 0x39 +1003d72e: 4770 bx lr +1003d730: f880 2036 strb.w r2, [r0, #54] ; 0x36 +1003d734: 4770 bx lr +1003d736: f880 2038 strb.w r2, [r0, #56] ; 0x38 +1003d73a: 4770 bx lr +1003d73c: f880 203e strb.w r2, [r0, #62] ; 0x3e +1003d740: 4770 bx lr +1003d742: f880 203f strb.w r2, [r0, #63] ; 0x3f +1003d746: 4770 bx lr +1003d748: f880 2040 strb.w r2, [r0, #64] ; 0x40 +1003d74c: 4770 bx lr +1003d74e: f880 2041 strb.w r2, [r0, #65] ; 0x41 +1003d752: 4770 bx lr +1003d754: f880 2042 strb.w r2, [r0, #66] ; 0x42 +1003d758: 4770 bx lr +1003d75a: f880 2049 strb.w r2, [r0, #73] ; 0x49 +1003d75e: 4770 bx lr +1003d760: f880 204a strb.w r2, [r0, #74] ; 0x4a +1003d764: 4b02 ldr r3, [pc, #8] ; (1003d770 ) +1003d766: 701a strb r2, [r3, #0] +1003d768: 4770 bx lr +1003d76a: 4b01 ldr r3, [pc, #4] ; (1003d770 ) +1003d76c: 705a strb r2, [r3, #1] +1003d76e: 4770 bx lr +1003d770: 10000720 .word 0x10000720 + +1003d774 : +1003d774: 391c subs r1, #28 +1003d776: 2918 cmp r1, #24 +1003d778: d84d bhi.n 1003d816 +1003d77a: e8df f001 tbb [pc, r1] +1003d77e: 0f0d .short 0x0f0d +1003d780: 17151311 .word 0x17151311 +1003d784: 3e1d1b19 .word 0x3e1d1b19 +1003d788: 2623211f .word 0x2623211f +1003d78c: 322f2c29 .word 0x322f2c29 +1003d790: 443b3835 .word 0x443b3835 +1003d794: 4741 .short 0x4741 +1003d796: 4a .byte 0x4a +1003d797: 00 .byte 0x00 +1003d798: 6502 str r2, [r0, #80] ; 0x50 +1003d79a: 4770 bx lr +1003d79c: 6542 str r2, [r0, #84] ; 0x54 +1003d79e: 4770 bx lr +1003d7a0: 6582 str r2, [r0, #88] ; 0x58 +1003d7a2: 4770 bx lr +1003d7a4: 65c2 str r2, [r0, #92] ; 0x5c +1003d7a6: 4770 bx lr +1003d7a8: 6602 str r2, [r0, #96] ; 0x60 +1003d7aa: 4770 bx lr +1003d7ac: 6642 str r2, [r0, #100] ; 0x64 +1003d7ae: 4770 bx lr +1003d7b0: 6682 str r2, [r0, #104] ; 0x68 +1003d7b2: 4770 bx lr +1003d7b4: 66c2 str r2, [r0, #108] ; 0x6c +1003d7b6: 4770 bx lr +1003d7b8: 6702 str r2, [r0, #112] ; 0x70 +1003d7ba: 4770 bx lr +1003d7bc: 6782 str r2, [r0, #120] ; 0x78 +1003d7be: 4770 bx lr +1003d7c0: 67c2 str r2, [r0, #124] ; 0x7c +1003d7c2: 4770 bx lr +1003d7c4: f8c0 2080 str.w r2, [r0, #128] ; 0x80 +1003d7c8: 4770 bx lr +1003d7ca: f8c0 2084 str.w r2, [r0, #132] ; 0x84 +1003d7ce: 4770 bx lr +1003d7d0: f8c0 2088 str.w r2, [r0, #136] ; 0x88 +1003d7d4: 4770 bx lr +1003d7d6: f8c0 208c str.w r2, [r0, #140] ; 0x8c +1003d7da: 4770 bx lr +1003d7dc: f8c0 2748 str.w r2, [r0, #1864] ; 0x748 +1003d7e0: 4770 bx lr +1003d7e2: f8c0 274c str.w r2, [r0, #1868] ; 0x74c +1003d7e6: 4770 bx lr +1003d7e8: f8c0 2750 str.w r2, [r0, #1872] ; 0x750 +1003d7ec: 4770 bx lr +1003d7ee: f8c0 2090 str.w r2, [r0, #144] ; 0x90 +1003d7f2: 4770 bx lr +1003d7f4: f8c0 2094 str.w r2, [r0, #148] ; 0x94 +1003d7f8: 4770 bx lr +1003d7fa: f8c0 20a4 str.w r2, [r0, #164] ; 0xa4 +1003d7fe: 4770 bx lr +1003d800: f8c0 209c str.w r2, [r0, #156] ; 0x9c +1003d804: 4770 bx lr +1003d806: f8c0 2098 str.w r2, [r0, #152] ; 0x98 +1003d80a: 4770 bx lr +1003d80c: f8c0 25b0 str.w r2, [r0, #1456] ; 0x5b0 +1003d810: 4770 bx lr +1003d812: f8c0 20a0 str.w r2, [r0, #160] ; 0xa0 +1003d816: 4770 bx lr + +1003d818 : +1003d818: 2947 cmp r1, #71 ; 0x47 +1003d81a: bf04 itt eq +1003d81c: eb00 0082 addeq.w r0, r0, r2, lsl #2 +1003d820: f8c0 313c streq.w r3, [r0, #316] ; 0x13c +1003d824: 4770 bx lr + ... + +1003d828 : +1003d828: 293c cmp r1, #60 ; 0x3c +1003d82a: d044 beq.n 1003d8b6 +1003d82c: d815 bhi.n 1003d85a +1003d82e: 2937 cmp r1, #55 ; 0x37 +1003d830: d026 beq.n 1003d880 +1003d832: d80a bhi.n 1003d84a +1003d834: 2907 cmp r1, #7 +1003d836: d028 beq.n 1003d88a +1003d838: d802 bhi.n 1003d840 +1003d83a: 2901 cmp r1, #1 +1003d83c: d023 beq.n 1003d886 +1003d83e: 4770 bx lr +1003d840: 2935 cmp r1, #53 ; 0x35 +1003d842: d025 beq.n 1003d890 +1003d844: 2936 cmp r1, #54 ; 0x36 +1003d846: d026 beq.n 1003d896 +1003d848: 4770 bx lr +1003d84a: 2939 cmp r1, #57 ; 0x39 +1003d84c: d029 beq.n 1003d8a2 +1003d84e: d325 bcc.n 1003d89c +1003d850: 293a cmp r1, #58 ; 0x3a +1003d852: d029 beq.n 1003d8a8 +1003d854: 293b cmp r1, #59 ; 0x3b +1003d856: d02a beq.n 1003d8ae +1003d858: 4770 bx lr +1003d85a: 2942 cmp r1, #66 ; 0x42 +1003d85c: d03a beq.n 1003d8d4 +1003d85e: d807 bhi.n 1003d870 +1003d860: 293e cmp r1, #62 ; 0x3e +1003d862: d02e beq.n 1003d8c2 +1003d864: d32a bcc.n 1003d8bc +1003d866: 2940 cmp r1, #64 ; 0x40 +1003d868: d02e beq.n 1003d8c8 +1003d86a: 2941 cmp r1, #65 ; 0x41 +1003d86c: d02f beq.n 1003d8ce +1003d86e: 4770 bx lr +1003d870: 2944 cmp r1, #68 ; 0x44 +1003d872: d035 beq.n 1003d8e0 +1003d874: d331 bcc.n 1003d8da +1003d876: 2945 cmp r1, #69 ; 0x45 +1003d878: d035 beq.n 1003d8e6 +1003d87a: 2946 cmp r1, #70 ; 0x46 +1003d87c: d036 beq.n 1003d8ec +1003d87e: 4770 bx lr +1003d880: f880 20a8 strb.w r2, [r0, #168] ; 0xa8 +1003d884: 4770 bx lr +1003d886: 6242 str r2, [r0, #36] ; 0x24 +1003d888: 4770 bx lr +1003d88a: f880 2032 strb.w r2, [r0, #50] ; 0x32 +1003d88e: 4770 bx lr +1003d890: f880 20a9 strb.w r2, [r0, #169] ; 0xa9 +1003d894: 4770 bx lr +1003d896: f880 20aa strb.w r2, [r0, #170] ; 0xaa +1003d89a: 4770 bx lr +1003d89c: f880 20ab strb.w r2, [r0, #171] ; 0xab +1003d8a0: 4770 bx lr +1003d8a2: f880 20ac strb.w r2, [r0, #172] ; 0xac +1003d8a6: 4770 bx lr +1003d8a8: f880 20ad strb.w r2, [r0, #173] ; 0xad +1003d8ac: 4770 bx lr +1003d8ae: 4911 ldr r1, [pc, #68] ; (1003d8f4 ) +1003d8b0: e9c1 2302 strd r2, r3, [r1, #8] +1003d8b4: 4770 bx lr +1003d8b6: 4b0f ldr r3, [pc, #60] ; (1003d8f4 ) +1003d8b8: 611a str r2, [r3, #16] +1003d8ba: 4770 bx lr +1003d8bc: f880 2756 strb.w r2, [r0, #1878] ; 0x756 +1003d8c0: 4770 bx lr +1003d8c2: f880 2757 strb.w r2, [r0, #1879] ; 0x757 +1003d8c6: 4770 bx lr +1003d8c8: f880 20b1 strb.w r2, [r0, #177] ; 0xb1 +1003d8cc: 4770 bx lr +1003d8ce: f880 20b2 strb.w r2, [r0, #178] ; 0xb2 +1003d8d2: 4770 bx lr +1003d8d4: f880 20b3 strb.w r2, [r0, #179] ; 0xb3 +1003d8d8: 4770 bx lr +1003d8da: f880 20b4 strb.w r2, [r0, #180] ; 0xb4 +1003d8de: 4770 bx lr +1003d8e0: f880 20b6 strb.w r2, [r0, #182] ; 0xb6 +1003d8e4: 4770 bx lr +1003d8e6: f880 20b5 strb.w r2, [r0, #181] ; 0xb5 +1003d8ea: 4770 bx lr +1003d8ec: f880 2741 strb.w r2, [r0, #1857] ; 0x741 +1003d8f0: 4770 bx lr +1003d8f2: bf00 nop +1003d8f4: 10000720 .word 0x10000720 + +1003d8f8 : +1003d8f8: 6ac2 ldr r2, [r0, #44] ; 0x2c +1003d8fa: f246 139f movw r3, #24991 ; 0x619f +1003d8fe: 4013 ands r3, r2 +1003d900: 2b00 cmp r3, #0 +1003d902: f640 0124 movw r1, #2084 ; 0x824 +1003d906: f640 0304 movw r3, #2052 ; 0x804 +1003d90a: bf08 it eq +1003d90c: 4619 moveq r1, r3 +1003d90e: bf14 ite ne +1003d910: f44f 7200 movne.w r2, #512 ; 0x200 +1003d914: f44f 3280 moveq.w r2, #65536 ; 0x10000 +1003d918: b570 push {r4, r5, r6, lr} +1003d91a: 4606 mov r6, r0 +1003d91c: f000 ff19 bl 1003e752 +1003d920: 6af2 ldr r2, [r6, #44] ; 0x2c +1003d922: f246 139f movw r3, #24991 ; 0x619f +1003d926: 4013 ands r3, r2 +1003d928: f640 0108 movw r1, #2056 ; 0x808 +1003d92c: f640 4204 movw r2, #3076 ; 0xc04 +1003d930: 2b00 cmp r3, #0 +1003d932: bf18 it ne +1003d934: 4611 movne r1, r2 +1003d936: 77b0 strb r0, [r6, #30] +1003d938: 220f movs r2, #15 +1003d93a: 4630 mov r0, r6 +1003d93c: f000 ff09 bl 1003e752 +1003d940: 4b09 ldr r3, [pc, #36] ; (1003d968 ) +1003d942: f04f 4200 mov.w r2, #2147483648 ; 0x80000000 +1003d946: e9d3 4502 ldrd r4, r5, [r3, #8] +1003d94a: 2300 movs r3, #0 +1003d94c: 4022 ands r2, r4 +1003d94e: 402b ands r3, r5 +1003d950: ea52 0103 orrs.w r1, r2, r3 +1003d954: 77f0 strb r0, [r6, #31] +1003d956: d102 bne.n 1003d95e +1003d958: 4630 mov r0, r6 +1003d95a: f000 fa69 bl 1003de30 +1003d95e: 23ff movs r3, #255 ; 0xff +1003d960: f886 30e2 strb.w r3, [r6, #226] ; 0xe2 +1003d964: bd70 pop {r4, r5, r6, pc} +1003d966: bf00 nop +1003d968: 10000720 .word 0x10000720 + +1003d96c : +1003d96c: b510 push {r4, lr} +1003d96e: 4604 mov r4, r0 +1003d970: f7ff ffc2 bl 1003d8f8 +1003d974: 4620 mov r0, r4 +1003d976: f000 fb1b bl 1003dfb0 +1003d97a: 4620 mov r0, r4 +1003d97c: f000 f8a5 bl 1003daca +1003d980: 4620 mov r0, r4 +1003d982: f000 f918 bl 1003dbb6 +1003d986: 4620 mov r0, r4 +1003d988: f001 f81a bl 1003e9c0 +1003d98c: 4620 mov r0, r4 +1003d98e: f000 fa11 bl 1003ddb4 +1003d992: 4620 mov r0, r4 +1003d994: f000 ff98 bl 1003e8c8 +1003d998: 4620 mov r0, r4 +1003d99a: f000 ff72 bl 1003e882 +1003d99e: 6ae2 ldr r2, [r4, #44] ; 0x2c +1003d9a0: f246 139f movw r3, #24991 ; 0x619f +1003d9a4: 4013 ands r3, r2 +1003d9a6: b13b cbz r3, 1003d9b8 +1003d9a8: f5b2 5f00 cmp.w r2, #8192 ; 0x2000 +1003d9ac: d104 bne.n 1003d9b8 +1003d9ae: 4620 mov r0, r4 +1003d9b0: e8bd 4010 ldmia.w sp!, {r4, lr} +1003d9b4: f7ff b8c8 b.w 1003cb48 +1003d9b8: bd10 pop {r4, pc} + +1003d9ba : +1003d9ba: 6ec3 ldr r3, [r0, #108] ; 0x6c +1003d9bc: 781b ldrb r3, [r3, #0] +1003d9be: 2b01 cmp r3, #1 +1003d9c0: d10d bne.n 1003d9de +1003d9c2: 6e43 ldr r3, [r0, #100] ; 0x64 +1003d9c4: 781b ldrb r3, [r3, #0] +1003d9c6: 2b01 cmp r3, #1 +1003d9c8: d103 bne.n 1003d9d2 +1003d9ca: 6f03 ldr r3, [r0, #112] ; 0x70 +1003d9cc: 781b ldrb r3, [r3, #0] +1003d9ce: 3b02 subs r3, #2 +1003d9d0: e007 b.n 1003d9e2 +1003d9d2: 2b02 cmp r3, #2 +1003d9d4: d107 bne.n 1003d9e6 +1003d9d6: 6f03 ldr r3, [r0, #112] ; 0x70 +1003d9d8: 781b ldrb r3, [r3, #0] +1003d9da: 3302 adds r3, #2 +1003d9dc: e001 b.n 1003d9e2 +1003d9de: 6f03 ldr r3, [r0, #112] ; 0x70 +1003d9e0: 781b ldrb r3, [r3, #0] +1003d9e2: f880 3020 strb.w r3, [r0, #32] +1003d9e6: 2300 movs r3, #0 +1003d9e8: 461a mov r2, r3 +1003d9ea: 18c1 adds r1, r0, r3 +1003d9ec: f8d1 113c ldr.w r1, [r1, #316] ; 0x13c +1003d9f0: b109 cbz r1, 1003d9f6 +1003d9f2: 3201 adds r2, #1 +1003d9f4: b2d2 uxtb r2, r2 +1003d9f6: 3304 adds r3, #4 +1003d9f8: 2b1c cmp r3, #28 +1003d9fa: d1f6 bne.n 1003d9ea +1003d9fc: 2a01 cmp r2, #1 +1003d9fe: bf16 itet ne +1003da00: 2300 movne r3, #0 +1003da02: f880 20b0 strbeq.w r2, [r0, #176] ; 0xb0 +1003da06: f880 30b0 strbne.w r3, [r0, #176] ; 0xb0 +1003da0a: 4770 bx lr + +1003da0c : +1003da0c: b510 push {r4, lr} +1003da0e: 4604 mov r4, r0 +1003da10: f7ff ffd3 bl 1003d9ba +1003da14: 4620 mov r0, r4 +1003da16: f000 fcc5 bl 1003e3a4 +1003da1a: 4620 mov r0, r4 +1003da1c: f000 ffc6 bl 1003e9ac +1003da20: f8d4 3088 ldr.w r3, [r4, #136] ; 0x88 +1003da24: 4620 mov r0, r4 +1003da26: 781b ldrb r3, [r3, #0] +1003da28: 2b01 cmp r3, #1 +1003da2a: d10a bne.n 1003da42 +1003da2c: f000 fb1e bl 1003e06c +1003da30: 4620 mov r0, r4 +1003da32: f894 158c ldrb.w r1, [r4, #1420] ; 0x58c +1003da36: f000 f92d bl 1003dc94 +1003da3a: 4620 mov r0, r4 +1003da3c: f000 fcc8 bl 1003e3d0 +1003da40: e015 b.n 1003da6e +1003da42: f000 f82b bl 1003da9c +1003da46: 4620 mov r0, r4 +1003da48: f000 fb7c bl 1003e144 +1003da4c: f894 158c ldrb.w r1, [r4, #1420] ; 0x58c +1003da50: 4620 mov r0, r4 +1003da52: f000 f91f bl 1003dc94 +1003da56: 4620 mov r0, r4 +1003da58: f000 fcba bl 1003e3d0 +1003da5c: 4620 mov r0, r4 +1003da5e: f001 f80c bl 1003ea7a +1003da62: 4620 mov r0, r4 +1003da64: f000 f9bb bl 1003ddde +1003da68: 4620 mov r0, r4 +1003da6a: f000 ff26 bl 1003e8ba +1003da6e: 2300 movs r3, #0 +1003da70: f884 33d8 strb.w r3, [r4, #984] ; 0x3d8 +1003da74: bd10 pop {r4, pc} + ... + +1003da78 : +1003da78: 2901 cmp r1, #1 +1003da7a: d004 beq.n 1003da86 +1003da7c: d308 bcc.n 1003da90 +1003da7e: 2902 cmp r1, #2 +1003da80: d003 beq.n 1003da8a +1003da82: 2000 movs r0, #0 +1003da84: 4770 bx lr +1003da86: 4803 ldr r0, [pc, #12] ; (1003da94 ) +1003da88: 4770 bx lr +1003da8a: f200 1029 addw r0, r0, #297 ; 0x129 +1003da8e: 4770 bx lr +1003da90: 4801 ldr r0, [pc, #4] ; (1003da98 ) +1003da92: 4770 bx lr +1003da94: 10000738 .word 0x10000738 +1003da98: 100006e0 .word 0x100006e0 + +1003da9c : +1003da9c: b510 push {r4, lr} +1003da9e: 2102 movs r1, #2 +1003daa0: 4604 mov r4, r0 +1003daa2: f7ff ffe9 bl 1003da78 +1003daa6: 6a63 ldr r3, [r4, #36] ; 0x24 +1003daa8: f413 5300 ands.w r3, r3, #8192 ; 0x2000 +1003daac: d008 beq.n 1003dac0 +1003daae: 6ae2 ldr r2, [r4, #44] ; 0x2c +1003dab0: 2301 movs r3, #1 +1003dab2: f412 5f08 tst.w r2, #8704 ; 0x2200 +1003dab6: f884 3127 strb.w r3, [r4, #295] ; 0x127 +1003daba: d003 beq.n 1003dac4 +1003dabc: 2300 movs r3, #0 +1003dabe: e001 b.n 1003dac4 +1003dac0: f884 3127 strb.w r3, [r4, #295] ; 0x127 +1003dac4: f884 3125 strb.w r3, [r4, #293] ; 0x125 +1003dac8: bd10 pop {r4, pc} + +1003daca : +1003daca: 6ac2 ldr r2, [r0, #44] ; 0x2c +1003dacc: f246 139f movw r3, #24991 ; 0x619f +1003dad0: 4013 ands r3, r2 +1003dad2: b510 push {r4, lr} +1003dad4: 4604 mov r4, r0 +1003dad6: b393 cbz r3, 1003db3e +1003dad8: f640 0196 movw r1, #2198 ; 0x896 +1003dadc: f24c 3250 movw r2, #50000 ; 0xc350 +1003dae0: f000 fe2b bl 1003e73a +1003dae4: 4620 mov r0, r4 +1003dae6: f640 0192 movw r1, #2194 ; 0x892 +1003daea: f64f 72ff movw r2, #65535 ; 0xffff +1003daee: f000 fe24 bl 1003e73a +1003daf2: 4620 mov r0, r4 +1003daf4: f640 0198 movw r1, #2200 ; 0x898 +1003daf8: f06f 02af mvn.w r2, #175 ; 0xaf +1003dafc: f000 fe20 bl 1003e740 +1003db00: 4620 mov r0, r4 +1003db02: f640 019c movw r1, #2204 ; 0x89c +1003db06: f04f 32ff mov.w r2, #4294967295 +1003db0a: f000 fe19 bl 1003e740 +1003db0e: 22ff movs r2, #255 ; 0xff +1003db10: 4620 mov r0, r4 +1003db12: 4613 mov r3, r2 +1003db14: f640 6128 movw r1, #3624 ; 0xe28 +1003db18: f000 fe18 bl 1003e74c +1003db1c: 4620 mov r0, r4 +1003db1e: f44f 6109 mov.w r1, #2192 ; 0x890 +1003db22: f44f 62e0 mov.w r2, #1792 ; 0x700 +1003db26: 2301 movs r3, #1 +1003db28: f000 fe10 bl 1003e74c +1003db2c: 4620 mov r0, r4 +1003db2e: f640 410c movw r1, #3084 ; 0xc0c +1003db32: 2280 movs r2, #128 ; 0x80 +1003db34: 2301 movs r3, #1 +1003db36: e8bd 4010 ldmia.w sp!, {r4, lr} +1003db3a: f000 be07 b.w 1003e74c +1003db3e: bd10 pop {r4, pc} + +1003db40 : +1003db40: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1003db44: 6ac6 ldr r6, [r0, #44] ; 0x2c +1003db46: f246 149f movw r4, #24991 ; 0x619f +1003db4a: 4034 ands r4, r6 +1003db4c: 4605 mov r5, r0 +1003db4e: 460f mov r7, r1 +1003db50: 4613 mov r3, r2 +1003db52: b17c cbz r4, 1003db74 +1003db54: f640 414c movw r1, #3148 ; 0xc4c +1003db58: 22ff movs r2, #255 ; 0xff +1003db5a: b2db uxtb r3, r3 +1003db5c: f000 fdf6 bl 1003e74c +1003db60: 4628 mov r0, r5 +1003db62: b2fb uxtb r3, r7 +1003db64: f640 414c movw r1, #3148 ; 0xc4c +1003db68: f44f 027f mov.w r2, #16711680 ; 0xff0000 +1003db6c: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1003db70: f000 bdec b.w 1003e74c +1003db74: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1003db78 : +1003db78: b570 push {r4, r5, r6, lr} +1003db7a: 460d mov r5, r1 +1003db7c: 4604 mov r4, r0 +1003db7e: f44f 61a4 mov.w r1, #1312 ; 0x520 +1003db82: f44f 4200 mov.w r2, #32768 ; 0x8000 +1003db86: b94d cbnz r5, 1003db9c +1003db88: 2301 movs r3, #1 +1003db8a: f000 fddc bl 1003e746 +1003db8e: 4620 mov r0, r4 +1003db90: f240 5124 movw r1, #1316 ; 0x524 +1003db94: f44f 6200 mov.w r2, #2048 ; 0x800 +1003db98: 462b mov r3, r5 +1003db9a: e008 b.n 1003dbae +1003db9c: 2300 movs r3, #0 +1003db9e: f000 fdd2 bl 1003e746 +1003dba2: 4620 mov r0, r4 +1003dba4: f240 5124 movw r1, #1316 ; 0x524 +1003dba8: f44f 6200 mov.w r2, #2048 ; 0x800 +1003dbac: 2301 movs r3, #1 +1003dbae: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003dbb2: f000 bdc8 b.w 1003e746 + +1003dbb6 : +1003dbb6: b538 push {r3, r4, r5, lr} +1003dbb8: 2102 movs r1, #2 +1003dbba: 4604 mov r4, r0 +1003dbbc: f7ff ff5c bl 1003da78 +1003dbc0: 6823 ldr r3, [r4, #0] +1003dbc2: f241 326a movw r2, #4970 ; 0x136a +1003dbc6: 5c9a ldrb r2, [r3, r2] +1003dbc8: 4605 mov r5, r0 +1003dbca: 3200 adds r2, #0 +1003dbcc: bf18 it ne +1003dbce: 2201 movne r2, #1 +1003dbd0: f884 2123 strb.w r2, [r4, #291] ; 0x123 +1003dbd4: f241 326c movw r2, #4972 ; 0x136c +1003dbd8: 5c9a ldrb r2, [r3, r2] +1003dbda: f884 2126 strb.w r2, [r4, #294] ; 0x126 +1003dbde: f241 326b movw r2, #4971 ; 0x136b +1003dbe2: 5c9b ldrb r3, [r3, r2] +1003dbe4: 3300 adds r3, #0 +1003dbe6: bf18 it ne +1003dbe8: 2301 movne r3, #1 +1003dbea: 7283 strb r3, [r0, #10] +1003dbec: f894 3123 ldrb.w r3, [r4, #291] ; 0x123 +1003dbf0: b9ab cbnz r3, 1003dc1e +1003dbf2: 6823 ldr r3, [r4, #0] +1003dbf4: f241 326d movw r2, #4973 ; 0x136d +1003dbf8: 5c9b ldrb r3, [r3, r2] +1003dbfa: b903 cbnz r3, 1003dbfe +1003dbfc: 23f5 movs r3, #245 ; 0xf5 +1003dbfe: 6ae2 ldr r2, [r4, #44] ; 0x2c +1003dc00: f884 3120 strb.w r3, [r4, #288] ; 0x120 +1003dc04: f246 139f movw r3, #24991 ; 0x619f +1003dc08: 4013 ands r3, r2 +1003dc0a: b15b cbz r3, 1003dc24 +1003dc0c: 4620 mov r0, r4 +1003dc0e: f640 414c movw r1, #3148 ; 0xc4c +1003dc12: f44f 7240 mov.w r2, #768 ; 0x300 +1003dc16: 2300 movs r3, #0 +1003dc18: f000 fd98 bl 1003e74c +1003dc1c: e002 b.n 1003dc24 +1003dc1e: 230a movs r3, #10 +1003dc20: f884 3120 strb.w r3, [r4, #288] ; 0x120 +1003dc24: 2307 movs r3, #7 +1003dc26: f884 3121 strb.w r3, [r4, #289] ; 0x121 +1003dc2a: 2214 movs r2, #20 +1003dc2c: 2300 movs r3, #0 +1003dc2e: f884 3124 strb.w r3, [r4, #292] ; 0x124 +1003dc32: f884 3127 strb.w r3, [r4, #295] ; 0x127 +1003dc36: 702a strb r2, [r5, #0] +1003dc38: 2208 movs r2, #8 +1003dc3a: 706a strb r2, [r5, #1] +1003dc3c: 2232 movs r2, #50 ; 0x32 +1003dc3e: 70ea strb r2, [r5, #3] +1003dc40: 2101 movs r1, #1 +1003dc42: 221c movs r2, #28 +1003dc44: 712a strb r2, [r5, #4] +1003dc46: 71ab strb r3, [r5, #6] +1003dc48: 71eb strb r3, [r5, #7] +1003dc4a: 716b strb r3, [r5, #5] +1003dc4c: 726b strb r3, [r5, #9] +1003dc4e: 7229 strb r1, [r5, #8] +1003dc50: 4620 mov r0, r4 +1003dc52: f7ff ff91 bl 1003db78 +1003dc56: 6ae2 ldr r2, [r4, #44] ; 0x2c +1003dc58: f246 139f movw r3, #24991 ; 0x619f +1003dc5c: 4013 ands r3, r2 +1003dc5e: b143 cbz r3, 1003dc72 +1003dc60: 4620 mov r0, r4 +1003dc62: f640 1108 movw r1, #2312 ; 0x908 +1003dc66: f04f 32ff mov.w r2, #4294967295 +1003dc6a: f44f 7302 mov.w r3, #520 ; 0x208 +1003dc6e: f000 fd6d bl 1003e74c +1003dc72: 6ae3 ldr r3, [r4, #44] ; 0x2c +1003dc74: 049b lsls r3, r3, #18 +1003dc76: d507 bpl.n 1003dc88 +1003dc78: 4620 mov r0, r4 +1003dc7a: f640 6124 movw r1, #3620 ; 0xe24 +1003dc7e: f44f 1240 mov.w r2, #3145728 ; 0x300000 +1003dc82: 2301 movs r3, #1 +1003dc84: f000 fd62 bl 1003e74c +1003dc88: f894 3120 ldrb.w r3, [r4, #288] ; 0x120 +1003dc8c: 3330 adds r3, #48 ; 0x30 +1003dc8e: 732b strb r3, [r5, #12] +1003dc90: bd38 pop {r3, r4, r5, pc} + ... + +1003dc94 : +1003dc94: e92d 4f70 stmdb sp!, {r4, r5, r6, r8, r9, sl, fp, lr} +1003dc98: 4689 mov r9, r1 +1003dc9a: 2102 movs r1, #2 +1003dc9c: 4605 mov r5, r0 +1003dc9e: f7ff feeb bl 1003da78 +1003dca2: 6a6b ldr r3, [r5, #36] ; 0x24 +1003dca4: 4606 mov r6, r0 +1003dca6: 049b lsls r3, r3, #18 +1003dca8: d405 bmi.n 1003dcb6 +1003dcaa: 7803 ldrb r3, [r0, #0] +1003dcac: f885 3120 strb.w r3, [r5, #288] ; 0x120 +1003dcb0: 7843 ldrb r3, [r0, #1] +1003dcb2: f885 3121 strb.w r3, [r5, #289] ; 0x121 +1003dcb6: 4c3d ldr r4, [pc, #244] ; (1003ddac ) +1003dcb8: 2100 movs r1, #0 +1003dcba: f44f 3000 mov.w r0, #131072 ; 0x20000 +1003dcbe: e9d4 2302 ldrd r2, r3, [r4, #8] +1003dcc2: 4002 ands r2, r0 +1003dcc4: 400b ands r3, r1 +1003dcc6: ea52 0103 orrs.w r1, r2, r3 +1003dcca: d009 beq.n 1003dce0 +1003dccc: 4b38 ldr r3, [pc, #224] ; (1003ddb0 ) +1003dcce: f996 1003 ldrsb.w r1, [r6, #3] +1003dcd2: 6e58 ldr r0, [r3, #100] ; 0x64 +1003dcd4: f995 2120 ldrsb.w r2, [r5, #288] ; 0x120 +1003dcd8: f995 3121 ldrsb.w r3, [r5, #289] ; 0x121 +1003dcdc: f004 fa14 bl 10042108 +1003dce0: 6eeb ldr r3, [r5, #108] ; 0x6c +1003dce2: 781a ldrb r2, [r3, #0] +1003dce4: 78f3 ldrb r3, [r6, #3] +1003dce6: b11a cbz r2, 1003dcf0 +1003dce8: 2a01 cmp r2, #1 +1003dcea: bf04 itt eq +1003dcec: 3302 addeq r3, #2 +1003dcee: b2db uxtbeq r3, r3 +1003dcf0: fa5f fa83 uxtb.w sl, r3 +1003dcf4: f886 a004 strb.w sl, [r6, #4] +1003dcf8: f44f 3200 mov.w r2, #131072 ; 0x20000 +1003dcfc: 2300 movs r3, #0 +1003dcfe: e9d4 0102 ldrd r0, r1, [r4, #8] +1003dd02: 4002 ands r2, r0 +1003dd04: 400b ands r3, r1 +1003dd06: ea52 0103 orrs.w r1, r2, r3 +1003dd0a: d006 beq.n 1003dd1a +1003dd0c: 4a28 ldr r2, [pc, #160] ; (1003ddb0 ) +1003dd0e: 7ab1 ldrb r1, [r6, #10] +1003dd10: 6e90 ldr r0, [r2, #104] ; 0x68 +1003dd12: f895 2127 ldrb.w r2, [r5, #295] ; 0x127 +1003dd16: f004 f9f7 bl 10042108 +1003dd1a: 7ab2 ldrb r2, [r6, #10] +1003dd1c: 2a01 cmp r2, #1 +1003dd1e: d10b bne.n 1003dd38 +1003dd20: f895 10ab ldrb.w r1, [r5, #171] ; 0xab +1003dd24: f895 2127 ldrb.w r2, [r5, #295] ; 0x127 +1003dd28: b921 cbnz r1, 1003dd34 +1003dd2a: b91a cbnz r2, 1003dd34 +1003dd2c: 217f movs r1, #127 ; 0x7f +1003dd2e: 4628 mov r0, r5 +1003dd30: 460a mov r2, r1 +1003dd32: e036 b.n 1003dda2 +1003dd34: 2a00 cmp r2, #0 +1003dd36: d0f9 beq.n 1003dd2c +1003dd38: 6aea ldr r2, [r5, #44] ; 0x2c +1003dd3a: f412 5f08 tst.w r2, #8704 ; 0x2200 +1003dd3e: d018 beq.n 1003dd72 +1003dd40: 7b32 ldrb r2, [r6, #12] +1003dd42: 454a cmp r2, r9 +1003dd44: d907 bls.n 1003dd56 +1003dd46: f895 1127 ldrb.w r1, [r5, #295] ; 0x127 +1003dd4a: 2901 cmp r1, #1 +1003dd4c: d103 bne.n 1003dd56 +1003dd4e: ebc9 0202 rsb r2, r9, r2 +1003dd52: b2d2 uxtb r2, r2 +1003dd54: e000 b.n 1003dd58 +1003dd56: 2200 movs r2, #0 +1003dd58: f895 1120 ldrb.w r1, [r5, #288] ; 0x120 +1003dd5c: eb0a 0301 add.w r3, sl, r1 +1003dd60: 1a9a subs r2, r3, r2 +1003dd62: f895 3121 ldrb.w r3, [r5, #289] ; 0x121 +1003dd66: b2d2 uxtb r2, r2 +1003dd68: fa5f fb82 uxtb.w fp, r2 +1003dd6c: 1ad2 subs r2, r2, r3 +1003dd6e: fa5f f882 uxtb.w r8, r2 +1003dd72: f44f 3200 mov.w r2, #131072 ; 0x20000 +1003dd76: 2300 movs r3, #0 +1003dd78: e9d4 0102 ldrd r0, r1, [r4, #8] +1003dd7c: 4002 ands r2, r0 +1003dd7e: 400b ands r3, r1 +1003dd80: ea52 0103 orrs.w r1, r2, r3 +1003dd84: fa4f fb8b sxtb.w fp, fp +1003dd88: fa4f f488 sxtb.w r4, r8 +1003dd8c: d006 beq.n 1003dd9c +1003dd8e: 4b08 ldr r3, [pc, #32] ; (1003ddb0 ) +1003dd90: 4649 mov r1, r9 +1003dd92: 6ed8 ldr r0, [r3, #108] ; 0x6c +1003dd94: 465a mov r2, fp +1003dd96: 4623 mov r3, r4 +1003dd98: f004 f9b6 bl 10042108 +1003dd9c: 4628 mov r0, r5 +1003dd9e: 4621 mov r1, r4 +1003dda0: 465a mov r2, fp +1003dda2: e8bd 4f70 ldmia.w sp!, {r4, r5, r6, r8, r9, sl, fp, lr} +1003dda6: f7ff becb b.w 1003db40 +1003ddaa: bf00 nop +1003ddac: 10000720 .word 0x10000720 +1003ddb0: 1004da10 .word 0x1004da10 + +1003ddb4 : +1003ddb4: b538 push {r3, r4, r5, lr} +1003ddb6: 2101 movs r1, #1 +1003ddb8: 4605 mov r5, r0 +1003ddba: f7ff fe5d bl 1003da78 +1003ddbe: 4604 mov r4, r0 +1003ddc0: 4628 mov r0, r5 +1003ddc2: f005 fe05 bl 100439d0 <__ROM_odm_GetDefaultCrytaltalCap_veneer> +1003ddc6: 2301 movs r3, #1 +1003ddc8: 70a3 strb r3, [r4, #2] +1003ddca: 2314 movs r3, #20 +1003ddcc: 77a3 strb r3, [r4, #30] +1003ddce: 230a movs r3, #10 +1003ddd0: 77e3 strb r3, [r4, #31] +1003ddd2: 2350 movs r3, #80 ; 0x50 +1003ddd4: 70e0 strb r0, [r4, #3] +1003ddd6: 7120 strb r0, [r4, #4] +1003ddd8: f884 3020 strb.w r3, [r4, #32] +1003dddc: bd38 pop {r3, r4, r5, pc} + +1003ddde : +1003ddde: 6a42 ldr r2, [r0, #36] ; 0x24 +1003dde0: 4603 mov r3, r0 +1003dde2: 0452 lsls r2, r2, #17 +1003dde4: d50a bpl.n 1003ddfc +1003dde6: f890 20ab ldrb.w r2, [r0, #171] ; 0xab +1003ddea: b112 cbz r2, 1003ddf2 +1003ddec: f890 20b0 ldrb.w r2, [r0, #176] ; 0xb0 +1003ddf0: b912 cbnz r2, 1003ddf8 +1003ddf2: 4618 mov r0, r3 +1003ddf4: f005 bd0c b.w 10043810 <__ROM_ODM_CfoTrackingReset_veneer> +1003ddf8: f005 bd82 b.w 10043900 <__ROM_odm_CfoTrackingFlow_veneer> +1003ddfc: 4770 bx lr + +1003ddfe : +1003ddfe: b570 push {r4, r5, r6, lr} +1003de00: 4606 mov r6, r0 +1003de02: 460d mov r5, r1 +1003de04: 2101 movs r1, #1 +1003de06: 4614 mov r4, r2 +1003de08: f7ff fe36 bl 1003da78 +1003de0c: 6a73 ldr r3, [r6, #36] ; 0x24 +1003de0e: 0459 lsls r1, r3, #17 +1003de10: d50d bpl.n 1003de2e +1003de12: 78ab ldrb r3, [r5, #2] +1003de14: b15b cbz r3, 1003de2e +1003de16: f994 3000 ldrsb.w r3, [r4] +1003de1a: 6083 str r3, [r0, #8] +1003de1c: f994 3001 ldrsb.w r3, [r4, #1] +1003de20: 60c3 str r3, [r0, #12] +1003de22: 6943 ldr r3, [r0, #20] +1003de24: 1c5a adds r2, r3, #1 +1003de26: bf0c ite eq +1003de28: 2300 moveq r3, #0 +1003de2a: 3301 addne r3, #1 +1003de2c: 6143 str r3, [r0, #20] +1003de2e: bd70 pop {r4, r5, r6, pc} + +1003de30 : +1003de30: 4903 ldr r1, [pc, #12] ; (1003de40 ) +1003de32: 2304 movs r3, #4 +1003de34: 610b str r3, [r1, #16] +1003de36: 2200 movs r2, #0 +1003de38: 2300 movs r3, #0 +1003de3a: e9c1 2302 strd r2, r3, [r1, #8] +1003de3e: 4770 bx lr +1003de40: 10000720 .word 0x10000720 + +1003de44 : +1003de44: b570 push {r4, r5, r6, lr} +1003de46: f890 3570 ldrb.w r3, [r0, #1392] ; 0x570 +1003de4a: 4604 mov r4, r0 +1003de4c: 460d mov r5, r1 +1003de4e: 6806 ldr r6, [r0, #0] +1003de50: 2b00 cmp r3, #0 +1003de52: d141 bne.n 1003ded8 +1003de54: f890 358c ldrb.w r3, [r0, #1420] ; 0x58c +1003de58: 428b cmp r3, r1 +1003de5a: d02c beq.n 1003deb6 +1003de5c: f890 3573 ldrb.w r3, [r0, #1395] ; 0x573 +1003de60: b923 cbnz r3, 1003de6c +1003de62: f890 3593 ldrb.w r3, [r0, #1427] ; 0x593 +1003de66: 429d cmp r5, r3 +1003de68: bf28 it cs +1003de6a: 461d movcs r5, r3 +1003de6c: 6a63 ldr r3, [r4, #36] ; 0x24 +1003de6e: 049b lsls r3, r3, #18 +1003de70: d503 bpl.n 1003de7a +1003de72: 4620 mov r0, r4 +1003de74: 4629 mov r1, r5 +1003de76: f7ff ff0d bl 1003dc94 +1003de7a: f894 3021 ldrb.w r3, [r4, #33] ; 0x21 +1003de7e: f013 0f1c tst.w r3, #28 +1003de82: d016 beq.n 1003deb2 +1003de84: 2100 movs r1, #0 +1003de86: 4630 mov r0, r6 +1003de88: f7f8 f8aa bl 10035fe0 +1003de8c: 6ae2 ldr r2, [r4, #44] ; 0x2c +1003de8e: f246 139f movw r3, #24991 ; 0x619f +1003de92: 4013 ands r3, r2 +1003de94: 2b00 cmp r3, #0 +1003de96: 4620 mov r0, r4 +1003de98: f44f 6145 mov.w r1, #3152 ; 0xc50 +1003de9c: bf0c ite eq +1003de9e: f04f 32ff moveq.w r2, #4294967295 +1003dea2: 227f movne r2, #127 ; 0x7f +1003dea4: 462b mov r3, r5 +1003dea6: f000 fc51 bl 1003e74c +1003deaa: 4630 mov r0, r6 +1003deac: 2101 movs r1, #1 +1003deae: f7f8 f897 bl 10035fe0 +1003deb2: f884 558c strb.w r5, [r4, #1420] ; 0x58c +1003deb6: 4b09 ldr r3, [pc, #36] ; (1003dedc ) +1003deb8: 2201 movs r2, #1 +1003deba: e9d3 0102 ldrd r0, r1, [r3, #8] +1003debe: 2300 movs r3, #0 +1003dec0: 4002 ands r2, r0 +1003dec2: 400b ands r3, r1 +1003dec4: ea52 0103 orrs.w r1, r2, r3 +1003dec8: d006 beq.n 1003ded8 +1003deca: 4b05 ldr r3, [pc, #20] ; (1003dee0 ) +1003decc: 4629 mov r1, r5 +1003dece: 6b18 ldr r0, [r3, #48] ; 0x30 +1003ded0: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003ded4: f004 b918 b.w 10042108 +1003ded8: bd70 pop {r4, r5, r6, pc} +1003deda: bf00 nop +1003dedc: 10000720 .word 0x10000720 +1003dee0: 1004da10 .word 0x1004da10 + +1003dee4 : +1003dee4: b570 push {r4, r5, r6, lr} +1003dee6: 460d mov r5, r1 +1003dee8: 2100 movs r1, #0 +1003deea: 4604 mov r4, r0 +1003deec: 4616 mov r6, r2 +1003deee: f7ff fdc3 bl 1003da78 +1003def2: 69c1 ldr r1, [r0, #28] +1003def4: f242 7210 movw r2, #10000 ; 0x2710 +1003def8: 4291 cmp r1, r2 +1003defa: f894 3594 ldrb.w r3, [r4, #1428] ; 0x594 +1003defe: d91f bls.n 1003df40 +1003df00: f894 259b ldrb.w r2, [r4, #1435] ; 0x59b +1003df04: 2a03 cmp r2, #3 +1003df06: bf1c itt ne +1003df08: 3201 addne r2, #1 +1003df0a: f884 259b strbne.w r2, [r4, #1435] ; 0x59b +1003df0e: f894 259c ldrb.w r2, [r4, #1436] ; 0x59c +1003df12: 42b2 cmp r2, r6 +1003df14: d204 bcs.n 1003df20 +1003df16: 2201 movs r2, #1 +1003df18: f884 659c strb.w r6, [r4, #1436] ; 0x59c +1003df1c: f884 259b strb.w r2, [r4, #1435] ; 0x59b +1003df20: f894 259b ldrb.w r2, [r4, #1435] ; 0x59b +1003df24: 2a02 cmp r2, #2 +1003df26: d924 bls.n 1003df72 +1003df28: f894 259c ldrb.w r2, [r4, #1436] ; 0x59c +1003df2c: f894 3593 ldrb.w r3, [r4, #1427] ; 0x593 +1003df30: 1c51 adds r1, r2, #1 +1003df32: 4299 cmp r1, r3 +1003df34: bfbc itt lt +1003df36: 1c93 addlt r3, r2, #2 +1003df38: b2db uxtblt r3, r3 +1003df3a: f44f 62e1 mov.w r2, #1800 ; 0x708 +1003df3e: e003 b.n 1003df48 +1003df40: f8d4 25a0 ldr.w r2, [r4, #1440] ; 0x5a0 +1003df44: b11a cbz r2, 1003df4e +1003df46: 3a01 subs r2, #1 +1003df48: f8c4 25a0 str.w r2, [r4, #1440] ; 0x5a0 +1003df4c: e011 b.n 1003df72 +1003df4e: f894 159b ldrb.w r1, [r4, #1435] ; 0x59b +1003df52: 2902 cmp r1, #2 +1003df54: d80b bhi.n 1003df6e +1003df56: f894 359c ldrb.w r3, [r4, #1436] ; 0x59c +1003df5a: 1e5a subs r2, r3, #1 +1003df5c: 42aa cmp r2, r5 +1003df5e: bfcd iteet gt +1003df60: 1e9a subgt r2, r3, #2 +1003df62: f884 559c strble.w r5, [r4, #1436] ; 0x59c +1003df66: 462b movle r3, r5 +1003df68: f884 259c strbgt.w r2, [r4, #1436] ; 0x59c +1003df6c: e001 b.n 1003df72 +1003df6e: f884 259b strb.w r2, [r4, #1435] ; 0x59b +1003df72: 4618 mov r0, r3 +1003df74: bd70 pop {r4, r5, r6, pc} + +1003df76 : +1003df76: b570 push {r4, r5, r6, lr} +1003df78: f890 3597 ldrb.w r3, [r0, #1431] ; 0x597 +1003df7c: 4604 mov r4, r0 +1003df7e: 428b cmp r3, r1 +1003df80: 460d mov r5, r1 +1003df82: 6806 ldr r6, [r0, #0] +1003df84: d00d beq.n 1003dfa2 +1003df86: 2100 movs r1, #0 +1003df88: 4630 mov r0, r6 +1003df8a: f7f8 f829 bl 10035fe0 +1003df8e: 4620 mov r0, r4 +1003df90: f640 210a movw r1, #2570 ; 0xa0a +1003df94: 462a mov r2, r5 +1003df96: f000 fbcd bl 1003e734 +1003df9a: 4630 mov r0, r6 +1003df9c: 2101 movs r1, #1 +1003df9e: f7f8 f81f bl 10035fe0 +1003dfa2: f894 3597 ldrb.w r3, [r4, #1431] ; 0x597 +1003dfa6: f884 5597 strb.w r5, [r4, #1431] ; 0x597 +1003dfaa: f884 3596 strb.w r3, [r4, #1430] ; 0x596 +1003dfae: bd70 pop {r4, r5, r6, pc} + +1003dfb0 : +1003dfb0: 6ac2 ldr r2, [r0, #44] ; 0x2c +1003dfb2: b538 push {r3, r4, r5, lr} +1003dfb4: f246 139f movw r3, #24991 ; 0x619f +1003dfb8: 2500 movs r5, #0 +1003dfba: 4013 ands r3, r2 +1003dfbc: 42ab cmp r3, r5 +1003dfbe: bf0c ite eq +1003dfc0: f04f 32ff moveq.w r2, #4294967295 +1003dfc4: 227f movne r2, #127 ; 0x7f +1003dfc6: f880 5570 strb.w r5, [r0, #1392] ; 0x570 +1003dfca: f880 5571 strb.w r5, [r0, #1393] ; 0x571 +1003dfce: f880 5572 strb.w r5, [r0, #1394] ; 0x572 +1003dfd2: f44f 6145 mov.w r1, #3152 ; 0xc50 +1003dfd6: 4604 mov r4, r0 +1003dfd8: f000 fbbb bl 1003e752 +1003dfdc: 2323 movs r3, #35 ; 0x23 +1003dfde: f8c4 3578 str.w r3, [r4, #1400] ; 0x578 +1003dfe2: 2328 movs r3, #40 ; 0x28 +1003dfe4: f8c4 357c str.w r3, [r4, #1404] ; 0x57c +1003dfe8: f44f 73c8 mov.w r3, #400 ; 0x190 +1003dfec: f8c4 3580 str.w r3, [r4, #1408] ; 0x580 +1003dff0: f44f 737a mov.w r3, #1000 ; 0x3e8 +1003dff4: f8c4 3584 str.w r3, [r4, #1412] ; 0x584 +1003dff8: 230a movs r3, #10 +1003dffa: f884 3590 strb.w r3, [r4, #1424] ; 0x590 +1003dffe: 230c movs r3, #12 +1003e000: f884 3591 strb.w r3, [r4, #1425] ; 0x591 +1003e004: 23fc movs r3, #252 ; 0xfc +1003e006: f884 3592 strb.w r3, [r4, #1426] ; 0x592 +1003e00a: 23ff movs r3, #255 ; 0xff +1003e00c: 2232 movs r2, #50 ; 0x32 +1003e00e: f884 3596 strb.w r3, [r4, #1430] ; 0x596 +1003e012: 2383 movs r3, #131 ; 0x83 +1003e014: f884 3597 strb.w r3, [r4, #1431] ; 0x597 +1003e018: f884 258e strb.w r2, [r4, #1422] ; 0x58e +1003e01c: 2320 movs r3, #32 +1003e01e: 223e movs r2, #62 ; 0x3e +1003e020: f884 058c strb.w r0, [r4, #1420] ; 0x58c +1003e024: f884 359c strb.w r3, [r4, #1436] ; 0x59c +1003e028: f884 559b strb.w r5, [r4, #1435] ; 0x59b +1003e02c: f884 55a6 strb.w r5, [r4, #1446] ; 0x5a6 +1003e030: f884 55a7 strb.w r5, [r4, #1447] ; 0x5a7 +1003e034: f884 35a4 strb.w r3, [r4, #1444] ; 0x5a4 +1003e038: f884 35a5 strb.w r3, [r4, #1445] ; 0x5a5 +1003e03c: f884 2593 strb.w r2, [r4, #1427] ; 0x593 +1003e040: f884 3594 strb.w r3, [r4, #1428] ; 0x594 +1003e044: f8c4 55a0 str.w r5, [r4, #1440] ; 0x5a0 +1003e048: bd38 pop {r3, r4, r5, pc} + +1003e04a : +1003e04a: 6a43 ldr r3, [r0, #36] ; 0x24 +1003e04c: f003 0309 and.w r3, r3, #9 +1003e050: 2b09 cmp r3, #9 +1003e052: d108 bne.n 1003e066 +1003e054: f8d0 3084 ldr.w r3, [r0, #132] ; 0x84 +1003e058: 781a ldrb r2, [r3, #0] +1003e05a: b922 cbnz r2, 1003e066 +1003e05c: f890 3572 ldrb.w r3, [r0, #1394] ; 0x572 +1003e060: b113 cbz r3, 1003e068 +1003e062: f880 2572 strb.w r2, [r0, #1394] ; 0x572 +1003e066: 2301 movs r3, #1 +1003e068: 4618 mov r0, r3 +1003e06a: 4770 bx lr + +1003e06c : +1003e06c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003e070: 2100 movs r1, #0 +1003e072: 4680 mov r8, r0 +1003e074: f7ff fd00 bl 1003da78 +1003e078: 4605 mov r5, r0 +1003e07a: 4640 mov r0, r8 +1003e07c: f898 40ad ldrb.w r4, [r8, #173] ; 0xad +1003e080: f7ff ffe3 bl 1003e04a +1003e084: 2801 cmp r0, #1 +1003e086: d03e beq.n 1003e106 +1003e088: 69ea ldr r2, [r5, #28] +1003e08a: 2a1e cmp r2, #30 +1003e08c: d902 bls.n 1003e094 +1003e08e: f104 0309 add.w r3, r4, #9 +1003e092: e007 b.n 1003e0a4 +1003e094: 2a0f cmp r2, #15 +1003e096: d901 bls.n 1003e09c +1003e098: 1de3 adds r3, r4, #7 +1003e09a: e003 b.n 1003e0a4 +1003e09c: 2a03 cmp r2, #3 +1003e09e: bf8c ite hi +1003e0a0: 1d63 addhi r3, r4, #5 +1003e0a2: 1ce3 addls r3, r4, #3 +1003e0a4: f898 10ad ldrb.w r1, [r8, #173] ; 0xad +1003e0a8: f898 0741 ldrb.w r0, [r8, #1857] ; 0x741 +1003e0ac: 292a cmp r1, #42 ; 0x2a +1003e0ae: bfc6 itte gt +1003e0b0: f1a1 0a0a subgt.w sl, r1, #10 +1003e0b4: fa5f fa8a uxtbgt.w sl, sl +1003e0b8: f04f 0a20 movle.w sl, #32 +1003e0bc: 2800 cmp r0, #0 +1003e0be: b2db uxtb r3, r3 +1003e0c0: bf0c ite eq +1003e0c2: f04f 093e moveq.w r9, #62 ; 0x3e +1003e0c6: f04f 0930 movne.w r9, #48 ; 0x30 +1003e0ca: 454b cmp r3, r9 +1003e0cc: d803 bhi.n 1003e0d6 +1003e0ce: 459a cmp sl, r3 +1003e0d0: bf2c ite cs +1003e0d2: 46d1 movcs r9, sl +1003e0d4: 4699 movcc r9, r3 +1003e0d6: 4b0d ldr r3, [pc, #52] ; (1003e10c ) +1003e0d8: 2401 movs r4, #1 +1003e0da: 2500 movs r5, #0 +1003e0dc: e9d3 6702 ldrd r6, r7, [r3, #8] +1003e0e0: 4034 ands r4, r6 +1003e0e2: 403d ands r5, r7 +1003e0e4: ea54 0305 orrs.w r3, r4, r5 +1003e0e8: d007 beq.n 1003e0fa +1003e0ea: 4809 ldr r0, [pc, #36] ; (1003e110 ) +1003e0ec: f004 f80c bl 10042108 +1003e0f0: 4808 ldr r0, [pc, #32] ; (1003e114 ) +1003e0f2: 213e movs r1, #62 ; 0x3e +1003e0f4: 4652 mov r2, sl +1003e0f6: f004 f807 bl 10042108 +1003e0fa: 4640 mov r0, r8 +1003e0fc: 4649 mov r1, r9 +1003e0fe: e8bd 47f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003e102: f7ff be9f b.w 1003de44 +1003e106: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003e10a: bf00 nop +1003e10c: 10000720 .word 0x10000720 +1003e110: 1004ccdb .word 0x1004ccdb +1003e114: 1004cc94 .word 0x1004cc94 + +1003e118 : +1003e118: f890 30ab ldrb.w r3, [r0, #171] ; 0xab +1003e11c: b143 cbz r3, 1003e130 +1003e11e: f44f 7340 mov.w r3, #768 ; 0x300 +1003e122: f44f 7000 mov.w r0, #512 ; 0x200 +1003e126: e881 0009 stmia.w r1, {r0, r3} +1003e12a: f44f 6380 mov.w r3, #1024 ; 0x400 +1003e12e: e007 b.n 1003e140 +1003e130: f44f 637a mov.w r3, #4000 ; 0xfa0 +1003e134: f44f 62fa mov.w r2, #2000 ; 0x7d0 +1003e138: e881 000c stmia.w r1, {r2, r3} +1003e13c: f241 3388 movw r3, #5000 ; 0x1388 +1003e140: 608b str r3, [r1, #8] +1003e142: 4770 bx lr + +1003e144 : +1003e144: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003e148: 2100 movs r1, #0 +1003e14a: b08b sub sp, #44 ; 0x2c +1003e14c: 4606 mov r6, r0 +1003e14e: f7ff fc93 bl 1003da78 +1003e152: 4681 mov r9, r0 +1003e154: 4630 mov r0, r6 +1003e156: f896 758c ldrb.w r7, [r6, #1420] ; 0x58c +1003e15a: f7ff ff76 bl 1003e04a +1003e15e: 2801 cmp r0, #1 +1003e160: f000 8112 beq.w 1003e388 +1003e164: f896 3125 ldrb.w r3, [r6, #293] ; 0x125 +1003e168: f896 20ab ldrb.w r2, [r6, #171] ; 0xab +1003e16c: 2b01 cmp r3, #1 +1003e16e: bf0b itete eq +1003e170: f896 4124 ldrbeq.w r4, [r6, #292] ; 0x124 +1003e174: 2500 movne r5, #0 +1003e176: 9403 streq r4, [sp, #12] +1003e178: 9503 strne r5, [sp, #12] +1003e17a: b13a cbz r2, 1003e18c +1003e17c: f896 b5a6 ldrb.w fp, [r6, #1446] ; 0x5a6 +1003e180: f1db 0b01 rsbs fp, fp, #1 +1003e184: bf38 it cc +1003e186: f04f 0b00 movcc.w fp, #0 +1003e18a: e000 b.n 1003e18e +1003e18c: 4693 mov fp, r2 +1003e18e: fa5f fb8b uxtb.w fp, fp +1003e192: b942 cbnz r2, 1003e1a6 +1003e194: f896 a5a6 ldrb.w sl, [r6, #1446] ; 0x5a6 +1003e198: f1ba 0101 subs.w r1, sl, #1 +1003e19c: f1d1 0a00 rsbs sl, r1, #0 +1003e1a0: eb5a 0a01 adcs.w sl, sl, r1 +1003e1a4: e001 b.n 1003e1aa +1003e1a6: f04f 0a00 mov.w sl, #0 +1003e1aa: fa5f fa8a uxtb.w sl, sl +1003e1ae: b1d2 cbz r2, 1003e1e6 +1003e1b0: f896 30b6 ldrb.w r3, [r6, #182] ; 0xb6 +1003e1b4: f896 80ad ldrb.w r8, [r6, #173] ; 0xad +1003e1b8: 2b01 cmp r3, #1 +1003e1ba: bf14 ite ne +1003e1bc: 230f movne r3, #15 +1003e1be: 230a moveq r3, #10 +1003e1c0: 4443 add r3, r8 +1003e1c2: 2b5a cmp r3, #90 ; 0x5a +1003e1c4: dd01 ble.n 1003e1ca +1003e1c6: 235a movs r3, #90 ; 0x5a +1003e1c8: e002 b.n 1003e1d0 +1003e1ca: 2b1f cmp r3, #31 +1003e1cc: bfd8 it le +1003e1ce: 2320 movle r3, #32 +1003e1d0: f1b8 0f1f cmp.w r8, #31 +1003e1d4: f886 3593 strb.w r3, [r6, #1427] ; 0x593 +1003e1d8: d908 bls.n 1003e1ec +1003e1da: f1b8 0f3e cmp.w r8, #62 ; 0x3e +1003e1de: bf28 it cs +1003e1e0: f04f 083e movcs.w r8, #62 ; 0x3e +1003e1e4: e004 b.n 1003e1f0 +1003e1e6: 232a movs r3, #42 ; 0x2a +1003e1e8: f886 3593 strb.w r3, [r6, #1427] ; 0x593 +1003e1ec: f04f 0820 mov.w r8, #32 +1003e1f0: 4b67 ldr r3, [pc, #412] ; (1003e390 ) +1003e1f2: 2001 movs r0, #1 +1003e1f4: 2100 movs r1, #0 +1003e1f6: e9d3 4502 ldrd r4, r5, [r3, #8] +1003e1fa: 4020 ands r0, r4 +1003e1fc: 4029 ands r1, r5 +1003e1fe: ea50 0501 orrs.w r5, r0, r1 +1003e202: 461c mov r4, r3 +1003e204: d00e beq.n 1003e224 +1003e206: f8d9 101c ldr.w r1, [r9, #28] +1003e20a: f896 30ad ldrb.w r3, [r6, #173] ; 0xad +1003e20e: 9100 str r1, [sp, #0] +1003e210: 4860 ldr r0, [pc, #384] ; (1003e394 ) +1003e212: 4639 mov r1, r7 +1003e214: f003 ff78 bl 10042108 +1003e218: 485f ldr r0, [pc, #380] ; (1003e398 ) +1003e21a: f896 1593 ldrb.w r1, [r6, #1427] ; 0x593 +1003e21e: 4642 mov r2, r8 +1003e220: f003 ff72 bl 10042108 +1003e224: f896 30ab ldrb.w r3, [r6, #171] ; 0xab +1003e228: b93b cbnz r3, 1003e23a +1003e22a: f886 8594 strb.w r8, [r6, #1428] ; 0x594 +1003e22e: f1ba 0f00 cmp.w sl, #0 +1003e232: d017 beq.n 1003e264 +1003e234: f886 859c strb.w r8, [r6, #1436] ; 0x59c +1003e238: e014 b.n 1003e264 +1003e23a: 2001 movs r0, #1 +1003e23c: 2100 movs r1, #0 +1003e23e: e9d4 2302 ldrd r2, r3, [r4, #8] +1003e242: 4002 ands r2, r0 +1003e244: 400b ands r3, r1 +1003e246: ea52 0003 orrs.w r0, r2, r3 +1003e24a: d004 beq.n 1003e256 +1003e24c: 4853 ldr r0, [pc, #332] ; (1003e39c ) +1003e24e: f896 159c ldrb.w r1, [r6, #1436] ; 0x59c +1003e252: f003 ff59 bl 10042108 +1003e256: 4630 mov r0, r6 +1003e258: 4641 mov r1, r8 +1003e25a: 463a mov r2, r7 +1003e25c: f7ff fe42 bl 1003dee4 +1003e260: f886 0594 strb.w r0, [r6, #1428] ; 0x594 +1003e264: 2201 movs r2, #1 +1003e266: 2300 movs r3, #0 +1003e268: e9d4 0102 ldrd r0, r1, [r4, #8] +1003e26c: 4002 ands r2, r0 +1003e26e: 400b ands r3, r1 +1003e270: ea52 0103 orrs.w r1, r2, r3 +1003e274: d004 beq.n 1003e280 +1003e276: 484a ldr r0, [pc, #296] ; (1003e3a0 ) +1003e278: f896 1594 ldrb.w r1, [r6, #1428] ; 0x594 +1003e27c: f003 ff44 bl 10042108 +1003e280: f896 30ab ldrb.w r3, [r6, #171] ; 0xab +1003e284: b163 cbz r3, 1003e2a0 +1003e286: f1bb 0f00 cmp.w fp, #0 +1003e28a: d109 bne.n 1003e2a0 +1003e28c: f896 33d8 ldrb.w r3, [r6, #984] ; 0x3d8 +1003e290: 2b04 cmp r3, #4 +1003e292: d805 bhi.n 1003e2a0 +1003e294: f896 30ac ldrb.w r3, [r6, #172] ; 0xac +1003e298: b113 cbz r3, 1003e2a0 +1003e29a: 2320 movs r3, #32 +1003e29c: f886 3594 strb.w r3, [r6, #1428] ; 0x594 +1003e2a0: f896 3593 ldrb.w r3, [r6, #1427] ; 0x593 +1003e2a4: f896 2594 ldrb.w r2, [r6, #1428] ; 0x594 +1003e2a8: a907 add r1, sp, #28 +1003e2aa: 429a cmp r2, r3 +1003e2ac: bf88 it hi +1003e2ae: f886 3594 strbhi.w r3, [r6, #1428] ; 0x594 +1003e2b2: 4630 mov r0, r6 +1003e2b4: f7ff ff30 bl 1003e118 +1003e2b8: f896 30ab ldrb.w r3, [r6, #171] ; 0xab +1003e2bc: f896 1594 ldrb.w r1, [r6, #1428] ; 0x594 +1003e2c0: b37b cbz r3, 1003e322 +1003e2c2: f1bb 0f00 cmp.w fp, #0 +1003e2c6: d00e beq.n 1003e2e6 +1003e2c8: 2300 movs r3, #0 +1003e2ca: f886 359b strb.w r3, [r6, #1435] ; 0x59b +1003e2ce: f896 30ad ldrb.w r3, [r6, #173] ; 0xad +1003e2d2: 2b3d cmp r3, #61 ; 0x3d +1003e2d4: d803 bhi.n 1003e2de +1003e2d6: 42bb cmp r3, r7 +1003e2d8: bf28 it cs +1003e2da: 461f movcs r7, r3 +1003e2dc: e02f b.n 1003e33e +1003e2de: 2f3d cmp r7, #61 ; 0x3d +1003e2e0: bf98 it ls +1003e2e2: 273e movls r7, #62 ; 0x3e +1003e2e4: e033 b.n 1003e34e +1003e2e6: f8d9 301c ldr.w r3, [r9, #28] +1003e2ea: 9a09 ldr r2, [sp, #36] ; 0x24 +1003e2ec: 4293 cmp r3, r2 +1003e2ee: d901 bls.n 1003e2f4 +1003e2f0: 3704 adds r7, #4 +1003e2f2: e008 b.n 1003e306 +1003e2f4: 9a08 ldr r2, [sp, #32] +1003e2f6: 4293 cmp r3, r2 +1003e2f8: d901 bls.n 1003e2fe +1003e2fa: 3702 adds r7, #2 +1003e2fc: e003 b.n 1003e306 +1003e2fe: 9a07 ldr r2, [sp, #28] +1003e300: 4293 cmp r3, r2 +1003e302: d201 bcs.n 1003e308 +1003e304: 3f02 subs r7, #2 +1003e306: b2ff uxtb r7, r7 +1003e308: f896 23d8 ldrb.w r2, [r6, #984] ; 0x3d8 +1003e30c: 2a04 cmp r2, #4 +1003e30e: d81e bhi.n 1003e34e +1003e310: f5b3 7f40 cmp.w r3, #768 ; 0x300 +1003e314: d21b bcs.n 1003e34e +1003e316: f896 30ac ldrb.w r3, [r6, #172] ; 0xac +1003e31a: 2b00 cmp r3, #0 +1003e31c: bf18 it ne +1003e31e: 460f movne r7, r1 +1003e320: e015 b.n 1003e34e +1003e322: f1ba 0f00 cmp.w sl, #0 +1003e326: d111 bne.n 1003e34c +1003e328: f8d9 301c ldr.w r3, [r9, #28] +1003e32c: 9a09 ldr r2, [sp, #36] ; 0x24 +1003e32e: 4293 cmp r3, r2 +1003e330: d901 bls.n 1003e336 +1003e332: 3704 adds r7, #4 +1003e334: e003 b.n 1003e33e +1003e336: 9a08 ldr r2, [sp, #32] +1003e338: 4293 cmp r3, r2 +1003e33a: d902 bls.n 1003e342 +1003e33c: 3702 adds r7, #2 +1003e33e: b2ff uxtb r7, r7 +1003e340: e005 b.n 1003e34e +1003e342: 9a07 ldr r2, [sp, #28] +1003e344: 4293 cmp r3, r2 +1003e346: d202 bcs.n 1003e34e +1003e348: 3f02 subs r7, #2 +1003e34a: e7f8 b.n 1003e33e +1003e34c: 2720 movs r7, #32 +1003e34e: 428f cmp r7, r1 +1003e350: bf28 it cs +1003e352: 4639 movcs r1, r7 +1003e354: f896 3593 ldrb.w r3, [r6, #1427] ; 0x593 +1003e358: b2c9 uxtb r1, r1 +1003e35a: 4299 cmp r1, r3 +1003e35c: bf28 it cs +1003e35e: 4619 movcs r1, r3 +1003e360: 6a73 ldr r3, [r6, #36] ; 0x24 +1003e362: 049b lsls r3, r3, #18 +1003e364: d507 bpl.n 1003e376 +1003e366: f896 3125 ldrb.w r3, [r6, #293] ; 0x125 +1003e36a: 2b01 cmp r3, #1 +1003e36c: d103 bne.n 1003e376 +1003e36e: 9c03 ldr r4, [sp, #12] +1003e370: 42a1 cmp r1, r4 +1003e372: bf28 it cs +1003e374: 4621 movcs r1, r4 +1003e376: 4630 mov r0, r6 +1003e378: f7ff fd64 bl 1003de44 +1003e37c: f896 30ab ldrb.w r3, [r6, #171] ; 0xab +1003e380: f886 85a4 strb.w r8, [r6, #1444] ; 0x5a4 +1003e384: f886 35a6 strb.w r3, [r6, #1446] ; 0x5a6 +1003e388: b00b add sp, #44 ; 0x2c +1003e38a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1003e38e: bf00 nop +1003e390: 10000720 .word 0x10000720 +1003e394: 1004ccc1 .word 0x1004ccc1 +1003e398: 1004cc94 .word 0x1004cc94 +1003e39c: 1004ccef .word 0x1004ccef +1003e3a0: 1004ccad .word 0x1004ccad + +1003e3a4 : +1003e3a4: 6802 ldr r2, [r0, #0] +1003e3a6: f502 539b add.w r3, r2, #4960 ; 0x1360 +1003e3aa: f893 1045 ldrb.w r1, [r3, #69] ; 0x45 +1003e3ae: 3310 adds r3, #16 +1003e3b0: b111 cbz r1, 1003e3b8 +1003e3b2: 6f1b ldr r3, [r3, #112] ; 0x70 +1003e3b4: 2b02 cmp r3, #2 +1003e3b6: d00a beq.n 1003e3ce +1003e3b8: 6a43 ldr r3, [r0, #36] ; 0x24 +1003e3ba: 071b lsls r3, r3, #28 +1003e3bc: d507 bpl.n 1003e3ce +1003e3be: f241 6318 movw r3, #5656 ; 0x1618 +1003e3c2: 58d3 ldr r3, [r2, r3] +1003e3c4: f893 3e7c ldrb.w r3, [r3, #3708] ; 0xe7c +1003e3c8: b90b cbnz r3, 1003e3ce +1003e3ca: f005 b9a1 b.w 10043710 <__ROM_odm_FalseAlarmCounterStatistics_veneer> +1003e3ce: 4770 bx lr + +1003e3d0 : +1003e3d0: b510 push {r4, lr} +1003e3d2: 2100 movs r1, #0 +1003e3d4: 4604 mov r4, r0 +1003e3d6: f7ff fb4f bl 1003da78 +1003e3da: 6a63 ldr r3, [r4, #36] ; 0x24 +1003e3dc: f003 0328 and.w r3, r3, #40 ; 0x28 +1003e3e0: 2b28 cmp r3, #40 ; 0x28 +1003e3e2: d120 bne.n 1003e426 +1003e3e4: f894 303a ldrb.w r3, [r4, #58] ; 0x3a +1003e3e8: b9eb cbnz r3, 1003e426 +1003e3ea: f894 30ab ldrb.w r3, [r4, #171] ; 0xab +1003e3ee: b14b cbz r3, 1003e404 +1003e3f0: f894 3741 ldrb.w r3, [r4, #1857] ; 0x741 +1003e3f4: b96b cbnz r3, 1003e412 +1003e3f6: f894 30ad ldrb.w r3, [r4, #173] ; 0xad +1003e3fa: 2b19 cmp r3, #25 +1003e3fc: d80b bhi.n 1003e416 +1003e3fe: 3b0b subs r3, #11 +1003e400: 2b0e cmp r3, #14 +1003e402: d90a bls.n 1003e41a +1003e404: 6983 ldr r3, [r0, #24] +1003e406: f5b3 7f7a cmp.w r3, #1000 ; 0x3e8 +1003e40a: bf8c ite hi +1003e40c: 2183 movhi r1, #131 ; 0x83 +1003e40e: 2140 movls r1, #64 ; 0x40 +1003e410: e004 b.n 1003e41c +1003e412: 2140 movs r1, #64 ; 0x40 +1003e414: e002 b.n 1003e41c +1003e416: 21cd movs r1, #205 ; 0xcd +1003e418: e000 b.n 1003e41c +1003e41a: 2183 movs r1, #131 ; 0x83 +1003e41c: 4620 mov r0, r4 +1003e41e: e8bd 4010 ldmia.w sp!, {r4, lr} +1003e422: f7ff bda8 b.w 1003df76 +1003e426: bd10 pop {r4, pc} + +1003e428 : +1003e428: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003e42c: 4698 mov r8, r3 +1003e42e: 781b ldrb r3, [r3, #0] +1003e430: 4605 mov r5, r0 +1003e432: 2b03 cmp r3, #3 +1003e434: 460c mov r4, r1 +1003e436: 4616 mov r6, r2 +1003e438: d845 bhi.n 1003e4c6 +1003e43a: f8d0 33d0 ldr.w r3, [r0, #976] ; 0x3d0 +1003e43e: 3301 adds r3, #1 +1003e440: f8c0 33d0 str.w r3, [r0, #976] ; 0x3d0 +1003e444: 7952 ldrb r2, [r2, #5] +1003e446: f002 031f and.w r3, r2, #31 +1003e44a: 0952 lsrs r2, r2, #5 +1003e44c: 3a01 subs r2, #1 +1003e44e: 2a06 cmp r2, #6 +1003e450: d818 bhi.n 1003e484 +1003e452: e8df f002 tbb [pc, r2] +1003e456: 1711 .short 0x1711 +1003e458: 1709170e .word 0x1709170e +1003e45c: 04 .byte 0x04 +1003e45d: 00 .byte 0x00 +1003e45e: ebc3 13c3 rsb r3, r3, r3, lsl #7 +1003e462: 005f lsls r7, r3, #1 +1003e464: 3f35 subs r7, #53 ; 0x35 +1003e466: e00b b.n 1003e480 +1003e468: ebc3 13c3 rsb r3, r3, r3, lsl #7 +1003e46c: 005f lsls r7, r3, #1 +1003e46e: 3f23 subs r7, #35 ; 0x23 +1003e470: e006 b.n 1003e480 +1003e472: f06f 070a mvn.w r7, #10 +1003e476: e001 b.n 1003e47c +1003e478: f06f 0703 mvn.w r7, #3 +1003e47c: 1aff subs r7, r7, r3 +1003e47e: 007f lsls r7, r7, #1 +1003e480: b2ff uxtb r7, r7 +1003e482: e000 b.n 1003e486 +1003e484: 2700 movs r7, #0 +1003e486: b278 sxtb r0, r7 +1003e488: f005 fa12 bl 100438b0 <__ROM_odm_QueryRxPwrPercentage_veneer> +1003e48c: 2828 cmp r0, #40 ; 0x28 +1003e48e: 7020 strb r0, [r4, #0] +1003e490: 70e7 strb r7, [r4, #3] +1003e492: d902 bls.n 1003e49a +1003e494: f895 3040 ldrb.w r3, [r5, #64] ; 0x40 +1003e498: b173 cbz r3, 1003e4b8 +1003e49a: 7932 ldrb r2, [r6, #4] +1003e49c: 2a40 cmp r2, #64 ; 0x40 +1003e49e: d80d bhi.n 1003e4bc +1003e4a0: 2a13 cmp r2, #19 +1003e4a2: f04f 0364 mov.w r3, #100 ; 0x64 +1003e4a6: d90a bls.n 1003e4be +1003e4a8: f1c2 0240 rsb r2, r2, #64 ; 0x40 +1003e4ac: 4353 muls r3, r2 +1003e4ae: 212c movs r1, #44 ; 0x2c +1003e4b0: fb93 f3f1 sdiv r3, r3, r1 +1003e4b4: b2db uxtb r3, r3 +1003e4b6: e002 b.n 1003e4be +1003e4b8: 2364 movs r3, #100 ; 0x64 +1003e4ba: e000 b.n 1003e4be +1003e4bc: 2300 movs r3, #0 +1003e4be: 7063 strb r3, [r4, #1] +1003e4c0: 7120 strb r0, [r4, #4] +1003e4c2: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003e4c6: f8d0 33d4 ldr.w r3, [r0, #980] ; 0x3d4 +1003e4ca: f890 a01f ldrb.w sl, [r0, #31] +1003e4ce: 3301 adds r3, #1 +1003e4d0: f8c0 33d4 str.w r3, [r0, #980] ; 0x3d4 +1003e4d4: 7810 ldrb r0, [r2, #0] +1003e4d6: f00a 0a01 and.w sl, sl, #1 +1003e4da: f000 003f and.w r0, r0, #63 ; 0x3f +1003e4de: 3837 subs r0, #55 ; 0x37 +1003e4e0: 0040 lsls r0, r0, #1 +1003e4e2: b240 sxtb r0, r0 +1003e4e4: f005 f9e4 bl 100438b0 <__ROM_odm_QueryRxPwrPercentage_veneer> +1003e4e8: 70a0 strb r0, [r4, #2] +1003e4ea: f896 9004 ldrb.w r9, [r6, #4] +1003e4ee: 4607 mov r7, r0 +1003e4f0: ea4f 0959 mov.w r9, r9, lsr #1 +1003e4f4: f1a9 096e sub.w r9, r9, #110 ; 0x6e +1003e4f8: fa5f f989 uxtb.w r9, r9 +1003e4fc: fa4f f089 sxtb.w r0, r9 +1003e500: f005 f9d6 bl 100438b0 <__ROM_odm_QueryRxPwrPercentage_veneer> +1003e504: f884 9003 strb.w r9, [r4, #3] +1003e508: 7020 strb r0, [r4, #0] +1003e50a: f996 000d ldrsb.w r0, [r6, #13] +1003e50e: f005 fa0f bl 10043930 <__ROM_odm_EVMdbToPercentage_veneer> +1003e512: 4641 mov r1, r8 +1003e514: 7060 strb r0, [r4, #1] +1003e516: f106 0209 add.w r2, r6, #9 +1003e51a: 4628 mov r0, r5 +1003e51c: f7ff fc6f bl 1003ddfe +1003e520: f1ba 0f00 cmp.w sl, #0 +1003e524: d000 beq.n 1003e528 +1003e526: 7127 strb r7, [r4, #4] +1003e528: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +1003e52c : +1003e52c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +1003e530: 7853 ldrb r3, [r2, #1] +1003e532: 2bff cmp r3, #255 ; 0xff +1003e534: f000 8099 beq.w 1003e66a +1003e538: eb00 0383 add.w r3, r0, r3, lsl #2 +1003e53c: f8d3 413c ldr.w r4, [r3, #316] ; 0x13c +1003e540: 2c00 cmp r4, #0 +1003e542: f000 8092 beq.w 1003e66a +1003e546: 7893 ldrb r3, [r2, #2] +1003e548: 2b00 cmp r3, #0 +1003e54a: f000 808e beq.w 1003e66a +1003e54e: 7913 ldrb r3, [r2, #4] +1003e550: b123 cbz r3, 1003e55c +1003e552: f890 33d8 ldrb.w r3, [r0, #984] ; 0x3d8 +1003e556: 3301 adds r3, #1 +1003e558: f880 33d8 strb.w r3, [r0, #984] ; 0x3d8 +1003e55c: 7813 ldrb r3, [r2, #0] +1003e55e: f880 30e0 strb.w r3, [r0, #224] ; 0xe0 +1003e562: 78d7 ldrb r7, [r2, #3] +1003e564: f8d4 6314 ldr.w r6, [r4, #788] ; 0x314 +1003e568: f8d4 5318 ldr.w r5, [r4, #792] ; 0x318 +1003e56c: b917 cbnz r7, 1003e574 +1003e56e: 7912 ldrb r2, [r2, #4] +1003e570: 2a00 cmp r2, #0 +1003e572: d07a beq.n 1003e66a +1003e574: 2b03 cmp r3, #3 +1003e576: f504 7748 add.w r7, r4, #800 ; 0x320 +1003e57a: d91b bls.n 1003e5b4 +1003e57c: 788b ldrb r3, [r1, #2] +1003e57e: 2d00 cmp r5, #0 +1003e580: f880 30b7 strb.w r3, [r0, #183] ; 0xb7 +1003e584: 780a ldrb r2, [r1, #0] +1003e586: dc01 bgt.n 1003e58c +1003e588: 4615 mov r5, r2 +1003e58a: e009 b.n 1003e5a0 +1003e58c: 2113 movs r1, #19 +1003e58e: 42aa cmp r2, r5 +1003e590: fb01 3505 mla r5, r1, r5, r3 +1003e594: f04f 0214 mov.w r2, #20 +1003e598: fb95 f5f2 sdiv r5, r5, r2 +1003e59c: bf88 it hi +1003e59e: 3501 addhi r5, #1 +1003e5a0: e9d7 2300 ldrd r2, r3, [r7] +1003e5a4: 1892 adds r2, r2, r2 +1003e5a6: eb43 0303 adc.w r3, r3, r3 +1003e5aa: 2001 movs r0, #1 +1003e5ac: 2100 movs r1, #0 +1003e5ae: 4302 orrs r2, r0 +1003e5b0: 430b orrs r3, r1 +1003e5b2: e016 b.n 1003e5e2 +1003e5b4: 780b ldrb r3, [r1, #0] +1003e5b6: 2e00 cmp r6, #0 +1003e5b8: f880 30b7 strb.w r3, [r0, #183] ; 0xb7 +1003e5bc: 780b ldrb r3, [r1, #0] +1003e5be: dc01 bgt.n 1003e5c4 +1003e5c0: 461e mov r6, r3 +1003e5c2: e009 b.n 1003e5d8 +1003e5c4: 2113 movs r1, #19 +1003e5c6: 42b3 cmp r3, r6 +1003e5c8: fb01 3606 mla r6, r1, r6, r3 +1003e5cc: f04f 0214 mov.w r2, #20 +1003e5d0: fb96 f6f2 sdiv r6, r6, r2 +1003e5d4: bf88 it hi +1003e5d6: 3601 addhi r6, #1 +1003e5d8: e9d7 2300 ldrd r2, r3, [r7] +1003e5dc: 1892 adds r2, r2, r2 +1003e5de: eb43 0303 adc.w r3, r3, r3 +1003e5e2: e9c7 2300 strd r2, r3, [r7] +1003e5e6: f894 3328 ldrb.w r3, [r4, #808] ; 0x328 +1003e5ea: f04f 0a00 mov.w sl, #0 +1003e5ee: 2b3f cmp r3, #63 ; 0x3f +1003e5f0: bf8c ite hi +1003e5f2: 2340 movhi r3, #64 ; 0x40 +1003e5f4: 3301 addls r3, #1 +1003e5f6: f884 3328 strb.w r3, [r4, #808] ; 0x328 +1003e5fa: f894 8328 ldrb.w r8, [r4, #808] ; 0x328 +1003e5fe: 46d1 mov r9, sl +1003e600: fa5f f38a uxtb.w r3, sl +1003e604: 4543 cmp r3, r8 +1003e606: d20a bcs.n 1003e61e +1003e608: e9d7 0100 ldrd r0, r1, [r7] +1003e60c: 4652 mov r2, sl +1003e60e: f004 fc57 bl 10042ec0 <__aeabi_llsr> +1003e612: f000 0001 and.w r0, r0, #1 +1003e616: 4481 add r9, r0 +1003e618: f10a 0a01 add.w sl, sl, #1 +1003e61c: e7f0 b.n 1003e600 +1003e61e: f1b8 0f40 cmp.w r8, #64 ; 0x40 +1003e622: d10f bne.n 1003e644 +1003e624: ea4f 1909 mov.w r9, r9, lsl #4 +1003e628: f1b9 0f40 cmp.w r9, #64 ; 0x40 +1003e62c: bf28 it cs +1003e62e: f04f 0940 movcs.w r9, #64 ; 0x40 +1003e632: f1c9 0840 rsb r8, r9, #64 ; 0x40 +1003e636: fb05 f909 mul.w r9, r5, r9 +1003e63a: fb06 9808 mla r8, r6, r8, r9 +1003e63e: ea4f 1398 mov.w r3, r8, lsr #6 +1003e642: e00c b.n 1003e65e +1003e644: f1b8 0f00 cmp.w r8, #0 +1003e648: d008 beq.n 1003e65c +1003e64a: ebc9 0308 rsb r3, r9, r8 +1003e64e: fb05 f909 mul.w r9, r5, r9 +1003e652: fb06 9903 mla r9, r6, r3, r9 +1003e656: fbb9 f3f8 udiv r3, r9, r8 +1003e65a: e000 b.n 1003e65e +1003e65c: 4643 mov r3, r8 +1003e65e: f8c4 6314 str.w r6, [r4, #788] ; 0x314 +1003e662: f8c4 5318 str.w r5, [r4, #792] ; 0x318 +1003e666: f8c4 3310 str.w r3, [r4, #784] ; 0x310 +1003e66a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + +1003e66e : +1003e66e: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1003e672: 4604 mov r4, r0 +1003e674: 461e mov r6, r3 +1003e676: 460f mov r7, r1 +1003e678: 4615 mov r5, r2 +1003e67a: f7ff fed5 bl 1003e428 +1003e67e: f894 3740 ldrb.w r3, [r4, #1856] ; 0x740 +1003e682: 2b01 cmp r3, #1 +1003e684: d007 beq.n 1003e696 +1003e686: 4620 mov r0, r4 +1003e688: 4639 mov r1, r7 +1003e68a: 4632 mov r2, r6 +1003e68c: 462b mov r3, r5 +1003e68e: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1003e692: f7ff bf4b b.w 1003e52c +1003e696: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1003e69a : +1003e69a: f7ff bfe8 b.w 1003e66e + +1003e69e : +1003e69e: b508 push {r3, lr} +1003e6a0: 6ac3 ldr r3, [r0, #44] ; 0x2c +1003e6a2: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +1003e6a6: d107 bne.n 1003e6b8 +1003e6a8: b911 cbnz r1, 1003e6b0 +1003e6aa: f001 ff13 bl 100404d4 +1003e6ae: e003 b.n 1003e6b8 +1003e6b0: 2901 cmp r1, #1 +1003e6b2: d101 bne.n 1003e6b8 +1003e6b4: f001 ffc2 bl 1004063c +1003e6b8: 2000 movs r0, #0 +1003e6ba: bd08 pop {r3, pc} + +1003e6bc : +1003e6bc: 6ac3 ldr r3, [r0, #44] ; 0x2c +1003e6be: b510 push {r4, lr} +1003e6c0: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +1003e6c4: 4604 mov r4, r0 +1003e6c6: d110 bne.n 1003e6ea +1003e6c8: f890 3035 ldrb.w r3, [r0, #53] ; 0x35 +1003e6cc: 2b02 cmp r3, #2 +1003e6ce: d102 bne.n 1003e6d6 +1003e6d0: f001 ff3c bl 1004054c +1003e6d4: e006 b.n 1003e6e4 +1003e6d6: 2b03 cmp r3, #3 +1003e6d8: d102 bne.n 1003e6e0 +1003e6da: f001 ff87 bl 100405ec +1003e6de: e001 b.n 1003e6e4 +1003e6e0: f001 ff5c bl 1004059c +1003e6e4: 4620 mov r0, r4 +1003e6e6: f001 ffc5 bl 10040674 +1003e6ea: 2000 movs r0, #0 +1003e6ec: bd10 pop {r4, pc} + +1003e6ee : +1003e6ee: b508 push {r3, lr} +1003e6f0: 6ac3 ldr r3, [r0, #44] ; 0x2c +1003e6f2: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +1003e6f6: d10c bne.n 1003e712 +1003e6f8: b911 cbnz r1, 1003e700 +1003e6fa: f7fe feed bl 1003d4d8 +1003e6fe: e008 b.n 1003e712 +1003e700: 2901 cmp r1, #1 +1003e702: d102 bne.n 1003e70a +1003e704: f7fe feac bl 1003d460 +1003e708: e003 b.n 1003e712 +1003e70a: 2904 cmp r1, #4 +1003e70c: d101 bne.n 1003e712 +1003e70e: f7fe ff21 bl 1003d554 +1003e712: 2000 movs r0, #0 +1003e714: bd08 pop {r3, pc} + +1003e716 : +1003e716: b508 push {r3, lr} +1003e718: 6ac3 ldr r3, [r0, #44] ; 0x2c +1003e71a: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +1003e71e: d101 bne.n 1003e724 +1003e720: f001 fdb8 bl 10040294 +1003e724: 2000 movs r0, #0 +1003e726: bd08 pop {r3, pc} + +1003e728 : +1003e728: 6800 ldr r0, [r0, #0] +1003e72a: f7fd bf91 b.w 1003c650 + +1003e72e : +1003e72e: 6800 ldr r0, [r0, #0] +1003e730: f7fd bf9c b.w 1003c66c + +1003e734 : +1003e734: 6800 ldr r0, [r0, #0] +1003e736: f7fd bfa0 b.w 1003c67a + +1003e73a : +1003e73a: 6800 ldr r0, [r0, #0] +1003e73c: f7fd bfa4 b.w 1003c688 + +1003e740 : +1003e740: 6800 ldr r0, [r0, #0] +1003e742: f7fd bfa8 b.w 1003c696 + +1003e746 : +1003e746: 6800 ldr r0, [r0, #0] +1003e748: f7f5 bce4 b.w 10034114 + +1003e74c : +1003e74c: 6800 ldr r0, [r0, #0] +1003e74e: f7f5 bce1 b.w 10034114 + +1003e752 : +1003e752: 6800 ldr r0, [r0, #0] +1003e754: f7f5 bcc8 b.w 100340e8 + +1003e758 : +1003e758: 6800 ldr r0, [r0, #0] +1003e75a: f7f5 bd57 b.w 1003420c + +1003e75e : +1003e75e: 6800 ldr r0, [r0, #0] +1003e760: f7f5 bd48 b.w 100341f4 + +1003e764 : +1003e764: 4608 mov r0, r1 +1003e766: 4611 mov r1, r2 +1003e768: 461a mov r2, r3 +1003e76a: f7de bb1f b.w 1001cdac + +1003e76e : +1003e76e: f7de bc81 b.w 1001d074 + +1003e772 : +1003e772: f7de bc89 b.w 1001d088 + ... + +1003e778 : +1003e778: 4603 mov r3, r0 +1003e77a: 6adb ldr r3, [r3, #44] ; 0x2c +1003e77c: b510 push {r4, lr} +1003e77e: 2b10 cmp r3, #16 +1003e780: 6800 ldr r0, [r0, #0] +1003e782: d00a beq.n 1003e79a +1003e784: f5b3 7f80 cmp.w r3, #256 ; 0x100 +1003e788: d007 beq.n 1003e79a +1003e78a: 2b80 cmp r3, #128 ; 0x80 +1003e78c: d005 beq.n 1003e79a +1003e78e: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +1003e792: d002 beq.n 1003e79a +1003e794: f5b3 4f80 cmp.w r3, #16384 ; 0x4000 +1003e798: d105 bne.n 1003e7a6 +1003e79a: f44f 6148 mov.w r1, #3200 ; 0xc80 +1003e79e: 4a0a ldr r2, [pc, #40] ; (1003e7c8 ) +1003e7a0: f7f5 fca2 bl 100340e8 +1003e7a4: 4604 mov r4, r0 +1003e7a6: 2300 movs r3, #0 +1003e7a8: 4a08 ldr r2, [pc, #32] ; (1003e7cc ) +1003e7aa: b2d8 uxtb r0, r3 +1003e7ac: f852 2023 ldr.w r2, [r2, r3, lsl #2] +1003e7b0: f5b2 1f80 cmp.w r2, #1048576 ; 0x100000 +1003e7b4: bf28 it cs +1003e7b6: 0d92 lsrcs r2, r2, #22 +1003e7b8: 4294 cmp r4, r2 +1003e7ba: d003 beq.n 1003e7c4 +1003e7bc: 3301 adds r3, #1 +1003e7be: 2b2b cmp r3, #43 ; 0x2b +1003e7c0: d1f2 bne.n 1003e7a8 +1003e7c2: 4618 mov r0, r3 +1003e7c4: bd10 pop {r4, pc} +1003e7c6: bf00 nop +1003e7c8: ffc00000 .word 0xffc00000 +1003e7cc: 1004cd28 .word 0x1004cd28 + +1003e7d0 : +1003e7d0: b510 push {r4, lr} +1003e7d2: 4604 mov r4, r0 +1003e7d4: f7ff ffd0 bl 1003e778 +1003e7d8: 6823 ldr r3, [r4, #0] +1003e7da: f241 6218 movw r2, #5656 ; 0x1618 +1003e7de: 589b ldr r3, [r3, r2] +1003e7e0: 2201 movs r2, #1 +1003e7e2: f884 2786 strb.w r2, [r4, #1926] ; 0x786 +1003e7e6: 2200 movs r2, #0 +1003e7e8: f884 2784 strb.w r2, [r4, #1924] ; 0x784 +1003e7ec: f884 2785 strb.w r2, [r4, #1925] ; 0x785 +1003e7f0: f8d4 2098 ldr.w r2, [r4, #152] ; 0x98 +1003e7f4: 7812 ldrb r2, [r2, #0] +1003e7f6: f1d2 0201 rsbs r2, r2, #1 +1003e7fa: bf38 it cc +1003e7fc: 2200 movcc r2, #0 +1003e7fe: f884 2787 strb.w r2, [r4, #1927] ; 0x787 +1003e802: f893 2044 ldrb.w r2, [r3, #68] ; 0x44 +1003e806: f884 278d strb.w r2, [r4, #1933] ; 0x78d +1003e80a: f893 2044 ldrb.w r2, [r3, #68] ; 0x44 +1003e80e: f884 278f strb.w r2, [r4, #1935] ; 0x78f +1003e812: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 +1003e816: f884 378e strb.w r3, [r4, #1934] ; 0x78e +1003e81a: 6ae3 ldr r3, [r4, #44] ; 0x2c +1003e81c: 2b10 cmp r3, #16 +1003e81e: d007 beq.n 1003e830 +1003e820: f5b3 7f80 cmp.w r3, #256 ; 0x100 +1003e824: d004 beq.n 1003e830 +1003e826: 2b80 cmp r3, #128 ; 0x80 +1003e828: d002 beq.n 1003e830 +1003e82a: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +1003e82e: d106 bne.n 1003e83e +1003e830: 282b cmp r0, #43 ; 0x2b +1003e832: bf28 it cs +1003e834: 201e movcs r0, #30 +1003e836: f884 0bd7 strb.w r0, [r4, #3031] ; 0xbd7 +1003e83a: 2314 movs r3, #20 +1003e83c: e005 b.n 1003e84a +1003e83e: 2825 cmp r0, #37 ; 0x25 +1003e840: bf28 it cs +1003e842: 2018 movcs r0, #24 +1003e844: f884 0bd7 strb.w r0, [r4, #3031] ; 0xbd7 +1003e848: 2318 movs r3, #24 +1003e84a: f884 3bd8 strb.w r3, [r4, #3032] ; 0xbd8 +1003e84e: f894 3bd8 ldrb.w r3, [r4, #3032] ; 0xbd8 +1003e852: f894 2bd7 ldrb.w r2, [r4, #3031] ; 0xbd7 +1003e856: f884 3bd6 strb.w r3, [r4, #3030] ; 0xbd6 +1003e85a: f884 37a9 strb.w r3, [r4, #1961] ; 0x7a9 +1003e85e: 2300 movs r3, #0 +1003e860: f884 37ab strb.w r3, [r4, #1963] ; 0x7ab +1003e864: f884 37ac strb.w r3, [r4, #1964] ; 0x7ac +1003e868: f884 37aa strb.w r3, [r4, #1962] ; 0x7aa +1003e86c: f884 2bd2 strb.w r2, [r4, #3026] ; 0xbd2 +1003e870: f884 27ad strb.w r2, [r4, #1965] ; 0x7ad +1003e874: f884 37af strb.w r3, [r4, #1967] ; 0x7af +1003e878: f884 37b0 strb.w r3, [r4, #1968] ; 0x7b0 +1003e87c: f884 37ae strb.w r3, [r4, #1966] ; 0x7ae +1003e880: bd10 pop {r4, pc} + +1003e882 : +1003e882: f7ff bfa5 b.w 1003e7d0 + +1003e886 : +1003e886: 6a43 ldr r3, [r0, #36] ; 0x24 +1003e888: b513 push {r0, r1, r4, lr} +1003e88a: 01db lsls r3, r3, #7 +1003e88c: 4604 mov r4, r0 +1003e88e: 6802 ldr r2, [r0, #0] +1003e890: d511 bpl.n 1003e8b6 +1003e892: f890 1788 ldrb.w r1, [r0, #1928] ; 0x788 +1003e896: b941 cbnz r1, 1003e8aa +1003e898: 2303 movs r3, #3 +1003e89a: 9300 str r3, [sp, #0] +1003e89c: 2242 movs r2, #66 ; 0x42 +1003e89e: f44f 3340 mov.w r3, #196608 ; 0x30000 +1003e8a2: f7ff ff59 bl 1003e758 +1003e8a6: 2301 movs r3, #1 +1003e8a8: e003 b.n 1003e8b2 +1003e8aa: 4610 mov r0, r2 +1003e8ac: f003 f95e bl 10041b6c +1003e8b0: 2300 movs r3, #0 +1003e8b2: f884 3788 strb.w r3, [r4, #1928] ; 0x788 +1003e8b6: b002 add sp, #8 +1003e8b8: bd10 pop {r4, pc} + +1003e8ba : +1003e8ba: f890 3021 ldrb.w r3, [r0, #33] ; 0x21 +1003e8be: 2b10 cmp r3, #16 +1003e8c0: d101 bne.n 1003e8c6 +1003e8c2: f7ff bfe0 b.w 1003e886 +1003e8c6: 4770 bx lr + +1003e8c8 : +1003e8c8: 2300 movs r3, #0 +1003e8ca: f880 3630 strb.w r3, [r0, #1584] ; 0x630 +1003e8ce: 4770 bx lr + +1003e8d0 : +1003e8d0: 2301 movs r3, #1 +1003e8d2: f880 311b strb.w r3, [r0, #283] ; 0x11b +1003e8d6: 4770 bx lr + +1003e8d8 : +1003e8d8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003e8dc: b087 sub sp, #28 +1003e8de: f8d0 9000 ldr.w r9, [r0] +1003e8e2: f10d 0a04 add.w sl, sp, #4 +1003e8e6: f241 6318 movw r3, #5656 ; 0x1618 +1003e8ea: 4604 mov r4, r0 +1003e8ec: 2100 movs r1, #0 +1003e8ee: 4650 mov r0, sl +1003e8f0: 2214 movs r2, #20 +1003e8f2: f859 5003 ldr.w r5, [r9, r3] +1003e8f6: f003 fd08 bl 1004230a +1003e8fa: f894 30ab ldrb.w r3, [r4, #171] ; 0xab +1003e8fe: 2b01 cmp r3, #1 +1003e900: d151 bne.n 1003e9a6 +1003e902: f884 3630 strb.w r3, [r4, #1584] ; 0x630 +1003e906: 2300 movs r3, #0 +1003e908: 461f mov r7, r3 +1003e90a: 26ff movs r6, #255 ; 0xff +1003e90c: 469b mov fp, r3 +1003e90e: 18e2 adds r2, r4, r3 +1003e910: f8d2 113c ldr.w r1, [r2, #316] ; 0x13c +1003e914: b1c9 cbz r1, 1003e94a +1003e916: f891 2108 ldrb.w r2, [r1, #264] ; 0x108 +1003e91a: 07d2 lsls r2, r2, #31 +1003e91c: d415 bmi.n 1003e94a +1003e91e: f8d1 2310 ldr.w r2, [r1, #784] ; 0x310 +1003e922: 1c50 adds r0, r2, #1 +1003e924: d011 beq.n 1003e94a +1003e926: f8d1 1100 ldr.w r1, [r1, #256] ; 0x100 +1003e92a: f10d 0c18 add.w ip, sp, #24 +1003e92e: 1c78 adds r0, r7, #1 +1003e930: 4296 cmp r6, r2 +1003e932: bfa8 it ge +1003e934: 4616 movge r6, r2 +1003e936: eb0c 0787 add.w r7, ip, r7, lsl #2 +1003e93a: 4593 cmp fp, r2 +1003e93c: bfb8 it lt +1003e93e: 4693 movlt fp, r2 +1003e940: ea41 4202 orr.w r2, r1, r2, lsl #16 +1003e944: f847 2c14 str.w r2, [r7, #-20] +1003e948: b2c7 uxtb r7, r0 +1003e94a: 3304 adds r3, #4 +1003e94c: 2b1c cmp r3, #28 +1003e94e: d1de bne.n 1003e90e +1003e950: f04f 0800 mov.w r8, #0 +1003e954: 45b8 cmp r8, r7 +1003e956: da10 bge.n 1003e97a +1003e958: f85a 2028 ldr.w r2, [sl, r8, lsl #2] +1003e95c: b152 cbz r2, 1003e974 +1003e95e: 6ae3 ldr r3, [r4, #44] ; 0x2c +1003e960: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +1003e964: d106 bne.n 1003e974 +1003e966: b2d1 uxtb r1, r2 +1003e968: f505 7000 add.w r0, r5, #512 ; 0x200 +1003e96c: f3c2 4207 ubfx r2, r2, #16, #8 +1003e970: f7fe fcee bl 1003d350 +1003e974: f108 0801 add.w r8, r8, #1 +1003e978: e7ec b.n 1003e954 +1003e97a: 2eff cmp r6, #255 ; 0xff +1003e97c: bf04 itt eq +1003e97e: 2300 moveq r3, #0 +1003e980: f8c5 31bc streq.w r3, [r5, #444] ; 0x1bc +1003e984: f241 6318 movw r3, #5656 ; 0x1618 +1003e988: f859 3003 ldr.w r3, [r9, r3] +1003e98c: bf18 it ne +1003e98e: f8c5 61bc strne.w r6, [r5, #444] ; 0x1bc +1003e992: f8d3 21bc ldr.w r2, [r3, #444] ; 0x1bc +1003e996: f8c5 b1c0 str.w fp, [r5, #448] ; 0x1c0 +1003e99a: f8c3 21c4 str.w r2, [r3, #452] ; 0x1c4 +1003e99e: f8d5 31c4 ldr.w r3, [r5, #452] ; 0x1c4 +1003e9a2: f884 30ad strb.w r3, [r4, #173] ; 0xad +1003e9a6: b007 add sp, #28 +1003e9a8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +1003e9ac : +1003e9ac: 6a42 ldr r2, [r0, #36] ; 0x24 +1003e9ae: 06d2 lsls r2, r2, #27 +1003e9b0: d505 bpl.n 1003e9be +1003e9b2: f890 3021 ldrb.w r3, [r0, #33] ; 0x21 +1003e9b6: 2b10 cmp r3, #16 +1003e9b8: d101 bne.n 1003e9be +1003e9ba: f7ff bf8d b.w 1003e8d8 +1003e9be: 4770 bx lr + +1003e9c0 : +1003e9c0: 2301 movs r3, #1 +1003e9c2: f880 3755 strb.w r3, [r0, #1877] ; 0x755 +1003e9c6: f880 3754 strb.w r3, [r0, #1876] ; 0x754 +1003e9ca: 2300 movs r3, #0 +1003e9cc: f880 3758 strb.w r3, [r0, #1880] ; 0x758 +1003e9d0: f880 375b strb.w r3, [r0, #1883] ; 0x75b +1003e9d4: 2332 movs r3, #50 ; 0x32 +1003e9d6: 2223 movs r2, #35 ; 0x23 +1003e9d8: f880 3756 strb.w r3, [r0, #1878] ; 0x756 +1003e9dc: 2314 movs r3, #20 +1003e9de: f880 2759 strb.w r2, [r0, #1881] ; 0x759 +1003e9e2: f880 3757 strb.w r3, [r0, #1879] ; 0x757 +1003e9e6: 4770 bx lr + +1003e9e8 : +1003e9e8: b570 push {r4, r5, r6, lr} +1003e9ea: 781d ldrb r5, [r3, #0] +1003e9ec: f890 4756 ldrb.w r4, [r0, #1878] ; 0x756 +1003e9f0: 2d02 cmp r5, #2 +1003e9f2: f890 6757 ldrb.w r6, [r0, #1879] ; 0x757 +1003e9f6: d006 beq.n 1003ea06 +1003e9f8: 2d03 cmp r5, #3 +1003e9fa: d106 bne.n 1003ea0a +1003e9fc: 3405 adds r4, #5 +1003e9fe: 3605 adds r6, #5 +1003ea00: b2e4 uxtb r4, r4 +1003ea02: b2f6 uxtb r6, r6 +1003ea04: e001 b.n 1003ea0a +1003ea06: 3405 adds r4, #5 +1003ea08: b2e4 uxtb r4, r4 +1003ea0a: 42a1 cmp r1, r4 +1003ea0c: dc04 bgt.n 1003ea18 +1003ea0e: 42b1 cmp r1, r6 +1003ea10: bfd4 ite le +1003ea12: 2103 movle r1, #3 +1003ea14: 2102 movgt r1, #2 +1003ea16: e000 b.n 1003ea1a +1003ea18: 2101 movs r1, #1 +1003ea1a: 428d cmp r5, r1 +1003ea1c: d100 bne.n 1003ea20 +1003ea1e: b112 cbz r2, 1003ea26 +1003ea20: 7019 strb r1, [r3, #0] +1003ea22: 2001 movs r0, #1 +1003ea24: bd70 pop {r4, r5, r6, pc} +1003ea26: 4610 mov r0, r2 +1003ea28: bd70 pop {r4, r5, r6, pc} + +1003ea2a : +1003ea2a: b5f8 push {r3, r4, r5, r6, r7, lr} +1003ea2c: 6803 ldr r3, [r0, #0] +1003ea2e: f241 62f8 movw r2, #5880 ; 0x16f8 +1003ea32: 589b ldr r3, [r3, r2] +1003ea34: 4605 mov r5, r0 +1003ea36: b9fb cbnz r3, 1003ea78 +1003ea38: f890 3754 ldrb.w r3, [r0, #1876] ; 0x754 +1003ea3c: b1e3 cbz r3, 1003ea78 +1003ea3e: 4606 mov r6, r0 +1003ea40: f100 071c add.w r7, r0, #28 +1003ea44: f8d6 413c ldr.w r4, [r6, #316] ; 0x13c +1003ea48: b194 cbz r4, 1003ea70 +1003ea4a: f894 2108 ldrb.w r2, [r4, #264] ; 0x108 +1003ea4e: f012 0201 ands.w r2, r2, #1 +1003ea52: d10d bne.n 1003ea70 +1003ea54: 4628 mov r0, r5 +1003ea56: f8d4 1310 ldr.w r1, [r4, #784] ; 0x310 +1003ea5a: f204 3332 addw r3, r4, #818 ; 0x332 +1003ea5e: f7ff ffc3 bl 1003e9e8 +1003ea62: 2801 cmp r0, #1 +1003ea64: d104 bne.n 1003ea70 +1003ea66: 4620 mov r0, r4 +1003ea68: f894 1332 ldrb.w r1, [r4, #818] ; 0x332 +1003ea6c: f7f8 ffe8 bl 10037a40 +1003ea70: 3604 adds r6, #4 +1003ea72: 42be cmp r6, r7 +1003ea74: d1e6 bne.n 1003ea44 +1003ea76: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003ea78: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1003ea7a : +1003ea7a: 6a42 ldr r2, [r0, #36] ; 0x24 +1003ea7c: 0792 lsls r2, r2, #30 +1003ea7e: d505 bpl.n 1003ea8c +1003ea80: f890 3021 ldrb.w r3, [r0, #33] ; 0x21 +1003ea84: 2b10 cmp r3, #16 +1003ea86: d101 bne.n 1003ea8c +1003ea88: f7ff bfcf b.w 1003ea2a +1003ea8c: 4770 bx lr + ... + +1003ea90 : +1003ea90: eb00 0181 add.w r1, r0, r1, lsl #2 +1003ea94: f8d1 113c ldr.w r1, [r1, #316] ; 0x13c +1003ea98: 2900 cmp r1, #0 +1003ea9a: d062 beq.n 1003eb62 +1003ea9c: f891 117c ldrb.w r1, [r1, #380] ; 0x17c +1003eaa0: 290b cmp r1, #11 +1003eaa2: d80d bhi.n 1003eac0 +1003eaa4: 2909 cmp r1, #9 +1003eaa6: d222 bcs.n 1003eaee +1003eaa8: 2902 cmp r1, #2 +1003eaaa: d010 beq.n 1003eace +1003eaac: d803 bhi.n 1003eab6 +1003eaae: 2901 cmp r1, #1 +1003eab0: d142 bne.n 1003eb38 +1003eab2: 230f movs r3, #15 +1003eab4: e052 b.n 1003eb5c +1003eab6: 2903 cmp r1, #3 +1003eab8: d010 beq.n 1003eadc +1003eaba: 2904 cmp r1, #4 +1003eabc: d007 beq.n 1003eace +1003eabe: e03b b.n 1003eb38 +1003eac0: 2942 cmp r1, #66 ; 0x42 +1003eac2: d024 beq.n 1003eb0e +1003eac4: 2944 cmp r1, #68 ; 0x44 +1003eac6: d02a beq.n 1003eb1e +1003eac8: 2914 cmp r1, #20 +1003eaca: d135 bne.n 1003eb38 +1003eacc: e00f b.n 1003eaee +1003eace: 2b01 cmp r3, #1 +1003ead0: bf14 ite ne +1003ead2: f44f 637f movne.w r3, #4080 ; 0xff0 +1003ead6: f44f 6370 moveq.w r3, #3840 ; 0xf00 +1003eada: e03f b.n 1003eb5c +1003eadc: 2b01 cmp r3, #1 +1003eade: d02e beq.n 1003eb3e +1003eae0: 2b02 cmp r3, #2 +1003eae2: f640 73f5 movw r3, #4085 ; 0xff5 +1003eae6: bf08 it eq +1003eae8: f44f 637f moveq.w r3, #4080 ; 0xff0 +1003eaec: e036 b.n 1003eb5c +1003eaee: f890 1032 ldrb.w r1, [r0, #50] ; 0x32 +1003eaf2: 2901 cmp r1, #1 +1003eaf4: d82e bhi.n 1003eb54 +1003eaf6: 2b01 cmp r3, #1 +1003eaf8: d024 beq.n 1003eb44 +1003eafa: 2b02 cmp r3, #2 +1003eafc: d025 beq.n 1003eb4a +1003eafe: 6ec3 ldr r3, [r0, #108] ; 0x6c +1003eb00: 4919 ldr r1, [pc, #100] ; (1003eb68 ) +1003eb02: 7818 ldrb r0, [r3, #0] +1003eb04: 4b19 ldr r3, [pc, #100] ; (1003eb6c ) +1003eb06: 2801 cmp r0, #1 +1003eb08: bf08 it eq +1003eb0a: 460b moveq r3, r1 +1003eb0c: e026 b.n 1003eb5c +1003eb0e: 2b01 cmp r3, #1 +1003eb10: d01e beq.n 1003eb50 +1003eb12: 2b02 cmp r3, #2 +1003eb14: 4b16 ldr r3, [pc, #88] ; (1003eb70 ) +1003eb16: bf18 it ne +1003eb18: f04f 33ff movne.w r3, #4294967295 +1003eb1c: e01e b.n 1003eb5c +1003eb1e: f890 1032 ldrb.w r1, [r0, #50] ; 0x32 +1003eb22: 2903 cmp r1, #3 +1003eb24: d116 bne.n 1003eb54 +1003eb26: 2b01 cmp r3, #1 +1003eb28: d016 beq.n 1003eb58 +1003eb2a: 4912 ldr r1, [pc, #72] ; (1003eb74 ) +1003eb2c: 4812 ldr r0, [pc, #72] ; (1003eb78 ) +1003eb2e: 2b02 cmp r3, #2 +1003eb30: bf14 ite ne +1003eb32: 4603 movne r3, r0 +1003eb34: 460b moveq r3, r1 +1003eb36: e011 b.n 1003eb5c +1003eb38: f06f 4370 mvn.w r3, #4026531840 ; 0xf0000000 +1003eb3c: e00e b.n 1003eb5c +1003eb3e: f44f 6370 mov.w r3, #3840 ; 0xf00 +1003eb42: e00b b.n 1003eb5c +1003eb44: f44f 2370 mov.w r3, #983040 ; 0xf0000 +1003eb48: e008 b.n 1003eb5c +1003eb4a: f44f 237f mov.w r3, #1044480 ; 0xff000 +1003eb4e: e005 b.n 1003eb5c +1003eb50: 4b0a ldr r3, [pc, #40] ; (1003eb7c ) +1003eb52: e003 b.n 1003eb5c +1003eb54: 2300 movs r3, #0 +1003eb56: e001 b.n 1003eb5c +1003eb58: f44f 137e mov.w r3, #4161536 ; 0x3f8000 +1003eb5c: ea03 0002 and.w r0, r3, r2 +1003eb60: 4770 bx lr +1003eb62: 4610 mov r0, r2 +1003eb64: 4770 bx lr +1003eb66: bf00 nop +1003eb68: 000ff015 .word 0x000ff015 +1003eb6c: 000ff005 .word 0x000ff005 +1003eb70: fffff000 .word 0xfffff000 +1003eb74: 003ff000 .word 0x003ff000 +1003eb78: 003ff010 .word 0x003ff010 +1003eb7c: fc3f0000 .word 0xfc3f0000 + +1003eb80 <_ReadEfuseInfo8195a>: +1003eb80: b570 push {r4, r5, r6, lr} +1003eb82: f5ad 7d02 sub.w sp, sp, #520 ; 0x208 +1003eb86: 4604 mov r4, r0 +1003eb88: a902 add r1, sp, #8 +1003eb8a: f7f4 f8f6 bl 10032d7a +1003eb8e: 4620 mov r0, r4 +1003eb90: a902 add r1, sp, #8 +1003eb92: f7f4 f811 bl 10032bb8 +1003eb96: f241 4608 movw r6, #5128 ; 0x1408 +1003eb9a: 4620 mov r0, r4 +1003eb9c: a902 add r1, sp, #8 +1003eb9e: f7f4 f83a bl 10032c16 +1003eba2: 4620 mov r0, r4 +1003eba4: 5da2 ldrb r2, [r4, r6] +1003eba6: a902 add r1, sp, #8 +1003eba8: f7f4 f8dc bl 10032d64 +1003ebac: 4b25 ldr r3, [pc, #148] ; (1003ec44 <_ReadEfuseInfo8195a+0xc4>) +1003ebae: 5da2 ldrb r2, [r4, r6] +1003ebb0: 6818 ldr r0, [r3, #0] +1003ebb2: 889b ldrh r3, [r3, #4] +1003ebb4: f504 55a0 add.w r5, r4, #5120 ; 0x1400 +1003ebb8: 3508 adds r5, #8 +1003ebba: 9000 str r0, [sp, #0] +1003ebbc: f8ad 3004 strh.w r3, [sp, #4] +1003ebc0: b142 cbz r2, 1003ebd4 <_ReadEfuseInfo8195a+0x54> +1003ebc2: 2300 movs r3, #0 +1003ebc4: 18ea adds r2, r5, r3 +1003ebc6: f81d 1003 ldrb.w r1, [sp, r3] +1003ebca: 3301 adds r3, #1 +1003ebcc: 2b06 cmp r3, #6 +1003ebce: 7051 strb r1, [r2, #1] +1003ebd0: d1f8 bne.n 1003ebc4 <_ReadEfuseInfo8195a+0x44> +1003ebd2: e005 b.n 1003ebe0 <_ReadEfuseInfo8195a+0x60> +1003ebd4: 1c68 adds r0, r5, #1 +1003ebd6: f50d 7191 add.w r1, sp, #290 ; 0x122 +1003ebda: 2206 movs r2, #6 +1003ebdc: f7de f8e6 bl 1001cdac +1003ebe0: f241 4508 movw r5, #5128 ; 0x1408 +1003ebe4: 5d62 ldrb r2, [r4, r5] +1003ebe6: 4620 mov r0, r4 +1003ebe8: a902 add r1, sp, #8 +1003ebea: f7f4 f86f bl 10032ccc +1003ebee: 5d62 ldrb r2, [r4, r5] +1003ebf0: f241 6318 movw r3, #5656 ; 0x1618 +1003ebf4: 58e3 ldr r3, [r4, r3] +1003ebf6: b91a cbnz r2, 1003ec00 <_ReadEfuseInfo8195a+0x80> +1003ebf8: f89d 2139 ldrb.w r2, [sp, #313] ; 0x139 +1003ebfc: 0952 lsrs r2, r2, #5 +1003ebfe: e000 b.n 1003ec02 <_ReadEfuseInfo8195a+0x82> +1003ec00: 2200 movs r2, #0 +1003ec02: f883 2040 strb.w r2, [r3, #64] ; 0x40 +1003ec06: f241 4508 movw r5, #5128 ; 0x1408 +1003ec0a: 4620 mov r0, r4 +1003ec0c: a902 add r1, sp, #8 +1003ec0e: 5d62 ldrb r2, [r4, r5] +1003ec10: f7f4 f8e8 bl 10032de4 +1003ec14: 4620 mov r0, r4 +1003ec16: a902 add r1, sp, #8 +1003ec18: 5d62 ldrb r2, [r4, r5] +1003ec1a: f7f4 f906 bl 10032e2a +1003ec1e: 4620 mov r0, r4 +1003ec20: a902 add r1, sp, #8 +1003ec22: 5d62 ldrb r2, [r4, r5] +1003ec24: f7f4 f90d bl 10032e42 +1003ec28: 4620 mov r0, r4 +1003ec2a: a902 add r1, sp, #8 +1003ec2c: 5d62 ldrb r2, [r4, r5] +1003ec2e: f7f4 f8f1 bl 10032e14 +1003ec32: 4620 mov r0, r4 +1003ec34: a902 add r1, sp, #8 +1003ec36: 5d62 ldrb r2, [r4, r5] +1003ec38: f7f4 f917 bl 10032e6a +1003ec3c: f50d 7d02 add.w sp, sp, #520 ; 0x208 +1003ec40: bd70 pop {r4, r5, r6, pc} +1003ec42: bf00 nop +1003ec44: 1004cde4 .word 0x1004cde4 + +1003ec48 : +1003ec48: b570 push {r4, r5, r6, lr} +1003ec4a: f241 6318 movw r3, #5656 ; 0x1618 +1003ec4e: 6885 ldr r5, [r0, #8] +1003ec50: 58c6 ldr r6, [r0, r3] +1003ec52: 4604 mov r4, r0 +1003ec54: f001 fb12 bl 1004027c +1003ec58: 2304 movs r3, #4 +1003ec5a: 746b strb r3, [r5, #17] +1003ec5c: 2305 movs r3, #5 +1003ec5e: 74ab strb r3, [r5, #18] +1003ec60: 2306 movs r3, #6 +1003ec62: 74eb strb r3, [r5, #19] +1003ec64: 2103 movs r1, #3 +1003ec66: 2307 movs r3, #7 +1003ec68: f886 1dec strb.w r1, [r6, #3564] ; 0xdec +1003ec6c: f886 3deb strb.w r3, [r6, #3563] ; 0xdeb +1003ec70: 4620 mov r0, r4 +1003ec72: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003ec76: f7f7 bf6d b.w 10036b54 + ... + +1003ec7c : +1003ec7c: b530 push {r4, r5, lr} +1003ec7e: f241 7311 movw r3, #5905 ; 0x1711 +1003ec82: 5cc4 ldrb r4, [r0, r3] +1003ec84: b085 sub sp, #20 +1003ec86: 2c01 cmp r4, #1 +1003ec88: 4605 mov r5, r0 +1003ec8a: d10e bne.n 1003ecaa +1003ec8c: aa04 add r2, sp, #16 +1003ec8e: 2300 movs r3, #0 +1003ec90: f802 3d01 strb.w r3, [r2, #-1]! +1003ec94: 213f movs r1, #63 ; 0x3f +1003ec96: f7f8 fe48 bl 1003792a +1003ec9a: 4b06 ldr r3, [pc, #24] ; (1003ecb4 ) +1003ec9c: 4628 mov r0, r5 +1003ec9e: 9300 str r3, [sp, #0] +1003eca0: 21ff movs r1, #255 ; 0xff +1003eca2: 220f movs r2, #15 +1003eca4: 4623 mov r3, r4 +1003eca6: f001 f95b bl 1003ff60 +1003ecaa: f7de fa5d bl 1001d168 +1003ecae: 2001 movs r0, #1 +1003ecb0: b005 add sp, #20 +1003ecb2: bd30 pop {r4, r5, pc} +1003ecb4: 1004e594 .word 0x1004e594 + +1003ecb8 <_InitPowerOn>: +1003ecb8: b51f push {r0, r1, r2, r3, r4, lr} +1003ecba: 213f movs r1, #63 ; 0x3f +1003ecbc: f10d 020e add.w r2, sp, #14 +1003ecc0: 4604 mov r4, r0 +1003ecc2: f7f8 fe39 bl 10037938 +1003ecc6: f89d 200e ldrb.w r2, [sp, #14] +1003ecca: b9b2 cbnz r2, 1003ecfa <_InitPowerOn+0x42> +1003eccc: 211c movs r1, #28 +1003ecce: 4620 mov r0, r4 +1003ecd0: f7fd fcd3 bl 1003c67a +1003ecd4: 4b17 ldr r3, [pc, #92] ; (1003ed34 <_InitPowerOn+0x7c>) +1003ecd6: 4620 mov r0, r4 +1003ecd8: 9300 str r3, [sp, #0] +1003ecda: 21ff movs r1, #255 ; 0xff +1003ecdc: 220f movs r2, #15 +1003ecde: 2301 movs r3, #1 +1003ece0: f001 f93e bl 1003ff60 +1003ece4: 2801 cmp r0, #1 +1003ece6: d107 bne.n 1003ecf8 <_InitPowerOn+0x40> +1003ece8: aa04 add r2, sp, #16 +1003ecea: f802 0d01 strb.w r0, [r2, #-1]! +1003ecee: 213f movs r1, #63 ; 0x3f +1003ecf0: 4620 mov r0, r4 +1003ecf2: f7f8 fe1a bl 1003792a +1003ecf6: e000 b.n 1003ecfa <_InitPowerOn+0x42> +1003ecf8: b1c8 cbz r0, 1003ed2e <_InitPowerOn+0x76> +1003ecfa: f44f 7180 mov.w r1, #256 ; 0x100 +1003ecfe: 4620 mov r0, r4 +1003ed00: f7fd fcad bl 1003c65e +1003ed04: f440 62c7 orr.w r2, r0, #1592 ; 0x638 +1003ed08: f042 0207 orr.w r2, r2, #7 +1003ed0c: b292 uxth r2, r2 +1003ed0e: f44f 7180 mov.w r1, #256 ; 0x100 +1003ed12: 4620 mov r0, r4 +1003ed14: f7fd fcb8 bl 1003c688 +1003ed18: 2104 movs r1, #4 +1003ed1a: 4620 mov r0, r4 +1003ed1c: f7fd fca6 bl 1003c66c +1003ed20: 2104 movs r1, #4 +1003ed22: f440 7280 orr.w r2, r0, #256 ; 0x100 +1003ed26: 4620 mov r0, r4 +1003ed28: f7fd fcb5 bl 1003c696 +1003ed2c: 2001 movs r0, #1 +1003ed2e: b004 add sp, #16 +1003ed30: bd10 pop {r4, pc} +1003ed32: bf00 nop +1003ed34: 1004e634 .word 0x1004e634 + +1003ed38 : +1003ed38: b510 push {r4, lr} +1003ed3a: 4604 mov r4, r0 +1003ed3c: f7ff ffbc bl 1003ecb8 <_InitPowerOn> +1003ed40: 4b08 ldr r3, [pc, #32] ; (1003ed64 ) +1003ed42: 681a ldr r2, [r3, #0] +1003ed44: f241 4308 movw r3, #5128 ; 0x1408 +1003ed48: f3c2 1000 ubfx r0, r2, #4, #1 +1003ed4c: 18e1 adds r1, r4, r3 +1003ed4e: f082 0220 eor.w r2, r2, #32 +1003ed52: 7288 strb r0, [r1, #10] +1003ed54: f3c2 1240 ubfx r2, r2, #5, #1 +1003ed58: 54e2 strb r2, [r4, r3] +1003ed5a: 4620 mov r0, r4 +1003ed5c: e8bd 4010 ldmia.w sp!, {r4, lr} +1003ed60: f7ff bf0e b.w 1003eb80 <_ReadEfuseInfo8195a> +1003ed64: 400000e0 .word 0x400000e0 + +1003ed68 <_InitDriverInfoSize>: +1003ed68: 460a mov r2, r1 +1003ed6a: f240 610f movw r1, #1551 ; 0x60f +1003ed6e: f7fd bc84 b.w 1003c67a + +1003ed72 <_InitNetworkType>: +1003ed72: b510 push {r4, lr} +1003ed74: f44f 7180 mov.w r1, #256 ; 0x100 +1003ed78: 4604 mov r4, r0 +1003ed7a: f7fd fc77 bl 1003c66c +1003ed7e: f420 3240 bic.w r2, r0, #196608 ; 0x30000 +1003ed82: f44f 7180 mov.w r1, #256 ; 0x100 +1003ed86: 4620 mov r0, r4 +1003ed88: f442 3200 orr.w r2, r2, #131072 ; 0x20000 +1003ed8c: e8bd 4010 ldmia.w sp!, {r4, lr} +1003ed90: f7fd bc81 b.w 1003c696 + +1003ed94 <_InitWMACSetting>: +1003ed94: b538 push {r3, r4, r5, lr} +1003ed96: f241 6318 movw r3, #5656 ; 0x1618 +1003ed9a: 58c5 ldr r5, [r0, r3] +1003ed9c: 4a18 ldr r2, [pc, #96] ; (1003ee00 <_InitWMACSetting+0x6c>) +1003ed9e: 4604 mov r4, r0 +1003eda0: 62aa str r2, [r5, #40] ; 0x28 +1003eda2: f44f 61c1 mov.w r1, #1544 ; 0x608 +1003eda6: f7fd fc76 bl 1003c696 +1003edaa: f44f 61c4 mov.w r1, #1568 ; 0x620 +1003edae: f04f 32ff mov.w r2, #4294967295 +1003edb2: 4620 mov r0, r4 +1003edb4: f7fd fc6f bl 1003c696 +1003edb8: f240 6124 movw r1, #1572 ; 0x624 +1003edbc: f04f 32ff mov.w r2, #4294967295 +1003edc0: 4620 mov r0, r4 +1003edc2: f7fd fc68 bl 1003c696 +1003edc6: f240 61a4 movw r1, #1700 ; 0x6a4 +1003edca: f64f 72ff movw r2, #65535 ; 0xffff +1003edce: 4620 mov r0, r4 +1003edd0: f7fd fc5a bl 1003c688 +1003edd4: f240 61a2 movw r1, #1698 ; 0x6a2 +1003edd8: f44f 6280 mov.w r2, #1024 ; 0x400 +1003eddc: 4620 mov r0, r4 +1003edde: f7fd fc53 bl 1003c688 +1003ede2: f44f 61d4 mov.w r1, #1696 ; 0x6a0 +1003ede6: f64f 72ff movw r2, #65535 ; 0xffff +1003edea: 4620 mov r0, r4 +1003edec: f7fd fc4c bl 1003c688 +1003edf0: 4620 mov r0, r4 +1003edf2: f7f1 fb68 bl 100304c6 +1003edf6: 2300 movs r3, #0 +1003edf8: f8a5 3e0c strh.w r3, [r5, #3596] ; 0xe0c +1003edfc: bd38 pop {r3, r4, r5, pc} +1003edfe: bf00 nop +1003ee00: 700860ce .word 0x700860ce + +1003ee04 <_InitAdaptiveCtrl>: +1003ee04: b510 push {r4, lr} +1003ee06: f44f 6188 mov.w r1, #1088 ; 0x440 +1003ee0a: 4604 mov r4, r0 +1003ee0c: f7fd fc2e bl 1003c66c +1003ee10: 4a0c ldr r2, [pc, #48] ; (1003ee44 <_InitAdaptiveCtrl+0x40>) +1003ee12: 0d03 lsrs r3, r0, #20 +1003ee14: 051b lsls r3, r3, #20 +1003ee16: 431a orrs r2, r3 +1003ee18: 4620 mov r0, r4 +1003ee1a: f44f 6188 mov.w r1, #1088 ; 0x440 +1003ee1e: f7fd fc3a bl 1003c696 +1003ee22: 4620 mov r0, r4 +1003ee24: f44f 6185 mov.w r1, #1064 ; 0x428 +1003ee28: f241 0210 movw r2, #4112 ; 0x1010 +1003ee2c: f7fd fc2c bl 1003c688 +1003ee30: 4620 mov r0, r4 +1003ee32: f240 412a movw r1, #1066 ; 0x42a +1003ee36: f243 0230 movw r2, #12336 ; 0x3030 +1003ee3a: e8bd 4010 ldmia.w sp!, {r4, lr} +1003ee3e: f7fd bc23 b.w 1003c688 +1003ee42: bf00 nop +1003ee44: 000ffff1 .word 0x000ffff1 + +1003ee48 <_InitEDCA>: +1003ee48: b510 push {r4, lr} +1003ee4a: f44f 6185 mov.w r1, #1064 ; 0x428 +1003ee4e: 4604 mov r4, r0 +1003ee50: f241 020a movw r2, #4106 ; 0x100a +1003ee54: f7fd fc18 bl 1003c688 +1003ee58: 4620 mov r0, r4 +1003ee5a: f240 613a movw r1, #1594 ; 0x63a +1003ee5e: f241 020a movw r2, #4106 ; 0x100a +1003ee62: f7fd fc11 bl 1003c688 +1003ee66: 4620 mov r0, r4 +1003ee68: f240 5114 movw r1, #1300 ; 0x514 +1003ee6c: f241 020a movw r2, #4106 ; 0x100a +1003ee70: f7fd fc0a bl 1003c688 +1003ee74: 4620 mov r0, r4 +1003ee76: f240 5116 movw r1, #1302 ; 0x516 +1003ee7a: f241 020a movw r2, #4106 ; 0x100a +1003ee7e: f7fd fc03 bl 1003c688 +1003ee82: 4620 mov r0, r4 +1003ee84: f44f 61a1 mov.w r1, #1288 ; 0x508 +1003ee88: 4a0b ldr r2, [pc, #44] ; (1003eeb8 <_InitEDCA+0x70>) +1003ee8a: f7fd fc04 bl 1003c696 +1003ee8e: 4620 mov r0, r4 +1003ee90: f240 510c movw r1, #1292 ; 0x50c +1003ee94: f24a 424f movw r2, #42063 ; 0xa44f +1003ee98: f7fd fbfd bl 1003c696 +1003ee9c: 4620 mov r0, r4 +1003ee9e: f240 5104 movw r1, #1284 ; 0x504 +1003eea2: 4a06 ldr r2, [pc, #24] ; (1003eebc <_InitEDCA+0x74>) +1003eea4: f7fd fbf7 bl 1003c696 +1003eea8: 4620 mov r0, r4 +1003eeaa: f44f 61a0 mov.w r1, #1280 ; 0x500 +1003eeae: 4a04 ldr r2, [pc, #16] ; (1003eec0 <_InitEDCA+0x78>) +1003eeb0: e8bd 4010 ldmia.w sp!, {r4, lr} +1003eeb4: f7fd bbef b.w 1003c696 +1003eeb8: 005ea42b .word 0x005ea42b +1003eebc: 005ea324 .word 0x005ea324 +1003eec0: 002fa226 .word 0x002fa226 + +1003eec4 <_InitRateFallback>: +1003eec4: b510 push {r4, lr} +1003eec6: f44f 6186 mov.w r1, #1072 ; 0x430 +1003eeca: 4604 mov r4, r0 +1003eecc: 2200 movs r2, #0 +1003eece: f7fd fbe2 bl 1003c696 +1003eed2: 4620 mov r0, r4 +1003eed4: f240 4134 movw r1, #1076 ; 0x434 +1003eed8: 4a08 ldr r2, [pc, #32] ; (1003eefc <_InitRateFallback+0x38>) +1003eeda: f7fd fbdc bl 1003c696 +1003eede: 4620 mov r0, r4 +1003eee0: f44f 6187 mov.w r1, #1080 ; 0x438 +1003eee4: 4a06 ldr r2, [pc, #24] ; (1003ef00 <_InitRateFallback+0x3c>) +1003eee6: f7fd fbd6 bl 1003c696 +1003eeea: 4620 mov r0, r4 +1003eeec: f240 413c movw r1, #1084 ; 0x43c +1003eef0: 4a04 ldr r2, [pc, #16] ; (1003ef04 <_InitRateFallback+0x40>) +1003eef2: e8bd 4010 ldmia.w sp!, {r4, lr} +1003eef6: f7fd bbce b.w 1003c696 +1003eefa: bf00 nop +1003eefc: 10080404 .word 0x10080404 +1003ef00: 04030201 .word 0x04030201 +1003ef04: 08070605 .word 0x08070605 + +1003ef08 <_InitRetryFunction>: +1003ef08: b510 push {r4, lr} +1003ef0a: f44f 6184 mov.w r1, #1056 ; 0x420 +1003ef0e: 4604 mov r4, r0 +1003ef10: f7fd fb9e bl 1003c650 +1003ef14: f060 027f orn r2, r0, #127 ; 0x7f +1003ef18: f44f 6184 mov.w r1, #1056 ; 0x420 +1003ef1c: 4620 mov r0, r4 +1003ef1e: b2d2 uxtb r2, r2 +1003ef20: f7fd fbab bl 1003c67a +1003ef24: 4620 mov r0, r4 +1003ef26: f44f 61c8 mov.w r1, #1600 ; 0x640 +1003ef2a: 2240 movs r2, #64 ; 0x40 +1003ef2c: e8bd 4010 ldmia.w sp!, {r4, lr} +1003ef30: f7fd bba3 b.w 1003c67a + +1003ef34 <_InitOperationMode>: +1003ef34: b538 push {r3, r4, r5, lr} +1003ef36: f241 6318 movw r3, #5656 ; 0x1618 +1003ef3a: 58c5 ldr r5, [r0, r3] +1003ef3c: f890 34f9 ldrb.w r3, [r0, #1273] ; 0x4f9 +1003ef40: f240 6103 movw r1, #1539 ; 0x603 +1003ef44: 3b02 subs r3, #2 +1003ef46: b2db uxtb r3, r3 +1003ef48: 2b0e cmp r3, #14 +1003ef4a: bf96 itet ls +1003ef4c: 4a0a ldrls r2, [pc, #40] ; (1003ef78 <_InitOperationMode+0x44>) +1003ef4e: 2200 movhi r2, #0 +1003ef50: 5cd2 ldrbls r2, [r2, r3] +1003ef52: 4604 mov r4, r0 +1003ef54: f7fd fb91 bl 1003c67a +1003ef58: f895 303c ldrb.w r3, [r5, #60] ; 0x3c +1003ef5c: b11b cbz r3, 1003ef66 <_InitOperationMode+0x32> +1003ef5e: 2b03 cmp r3, #3 +1003ef60: d001 beq.n 1003ef66 <_InitOperationMode+0x32> +1003ef62: 2200 movs r2, #0 +1003ef64: e000 b.n 1003ef68 <_InitOperationMode+0x34> +1003ef66: 2250 movs r2, #80 ; 0x50 +1003ef68: 4620 mov r0, r4 +1003ef6a: f240 415c movw r1, #1116 ; 0x45c +1003ef6e: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1003ef72: f7fd bb82 b.w 1003c67a +1003ef76: bf00 nop +1003ef78: 1004cdea .word 0x1004cdea + +1003ef7c <_InitInterrupt>: +1003ef7c: b510 push {r4, lr} +1003ef7e: 2180 movs r1, #128 ; 0x80 +1003ef80: 4604 mov r4, r0 +1003ef82: 2200 movs r2, #0 +1003ef84: f7fd fb87 bl 1003c696 +1003ef88: 4620 mov r0, r4 +1003ef8a: f44f 7198 mov.w r1, #304 ; 0x130 +1003ef8e: 2200 movs r2, #0 +1003ef90: f7fd fb81 bl 1003c696 +1003ef94: 4620 mov r0, r4 +1003ef96: f44f 719c mov.w r1, #312 ; 0x138 +1003ef9a: 2200 movs r2, #0 +1003ef9c: f7fd fb7b bl 1003c696 +1003efa0: 4620 mov r0, r4 +1003efa2: f44f 717b mov.w r1, #1004 ; 0x3ec +1003efa6: 2200 movs r2, #0 +1003efa8: f7fd fb75 bl 1003c696 +1003efac: 4620 mov r0, r4 +1003efae: f7f1 fc31 bl 10030814 +1003efb2: 4620 mov r0, r4 +1003efb4: e8bd 4010 ldmia.w sp!, {r4, lr} +1003efb8: f7f7 baee b.w 10036598 + +1003efbc : +1003efbc: e92d 43f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, lr} +1003efc0: f247 5330 movw r3, #30000 ; 0x7530 +1003efc4: b085 sub sp, #20 +1003efc6: 4604 mov r4, r0 +1003efc8: 9303 str r3, [sp, #12] +1003efca: f241 6318 movw r3, #5656 ; 0x1618 +1003efce: 58c7 ldr r7, [r0, r3] +1003efd0: f7de f8c0 bl 1001d154 +1003efd4: 4620 mov r0, r4 +1003efd6: f7ff fe6f bl 1003ecb8 <_InitPowerOn> +1003efda: b908 cbnz r0, 1003efe0 +1003efdc: 2000 movs r0, #0 +1003efde: e151 b.n 1003f284 +1003efe0: 2301 movs r3, #1 +1003efe2: f504 559b add.w r5, r4, #4960 ; 0x1360 +1003efe6: f241 72a5 movw r2, #6053 ; 0x17a5 +1003efea: 54a3 strb r3, [r4, r2] +1003efec: 3510 adds r5, #16 +1003efee: f887 31a4 strb.w r3, [r7, #420] ; 0x1a4 +1003eff2: 7eab ldrb r3, [r5, #26] +1003eff4: 2b01 cmp r3, #1 +1003eff6: bf04 itt eq +1003eff8: 2302 moveq r3, #2 +1003effa: 672b streq r3, [r5, #112] ; 0x70 +1003effc: f241 6318 movw r3, #5656 ; 0x1618 +1003f000: 58e3 ldr r3, [r4, r3] +1003f002: 681a ldr r2, [r3, #0] +1003f004: 3a01 subs r2, #1 +1003f006: 2a01 cmp r2, #1 +1003f008: d804 bhi.n 1003f014 +1003f00a: 691a ldr r2, [r3, #16] +1003f00c: 1e91 subs r1, r2, #2 +1003f00e: 424a negs r2, r1 +1003f010: 414a adcs r2, r1 +1003f012: e000 b.n 1003f016 +1003f014: 2200 movs r2, #0 +1003f016: 2104 movs r1, #4 +1003f018: f883 103b strb.w r1, [r3, #59] ; 0x3b +1003f01c: b912 cbnz r2, 1003f024 +1003f01e: 2203 movs r2, #3 +1003f020: f883 203c strb.w r2, [r3, #60] ; 0x3c +1003f024: 2306 movs r3, #6 +1003f026: f887 3034 strb.w r3, [r7, #52] ; 0x34 +1003f02a: 4620 mov r0, r4 +1003f02c: f7f5 f91a bl 10034264 +1003f030: 2801 cmp r0, #1 +1003f032: f040 8127 bne.w 1003f284 +1003f036: 4620 mov r0, r4 +1003f038: f7f5 f921 bl 1003427e +1003f03c: 2801 cmp r0, #1 +1003f03e: f040 8121 bne.w 1003f284 +1003f042: 4620 mov r0, r4 +1003f044: f7f5 f9a3 bl 1003438e +1003f048: 2801 cmp r0, #1 +1003f04a: 4606 mov r6, r0 +1003f04c: f040 811a bne.w 1003f284 +1003f050: 4620 mov r0, r4 +1003f052: f44f 6100 mov.w r1, #2048 ; 0x800 +1003f056: f04f 7280 mov.w r2, #16777216 ; 0x1000000 +1003f05a: 4633 mov r3, r6 +1003f05c: f7f5 f85a bl 10034114 +1003f060: 4620 mov r0, r4 +1003f062: f44f 6100 mov.w r1, #2048 ; 0x800 +1003f066: f04f 7200 mov.w r2, #33554432 ; 0x2000000 +1003f06a: 4633 mov r3, r6 +1003f06c: f7f5 f852 bl 10034114 +1003f070: 2218 movs r2, #24 +1003f072: 4b86 ldr r3, [pc, #536] ; (1003f28c ) +1003f074: 4620 mov r0, r4 +1003f076: 2100 movs r1, #0 +1003f078: f7f5 f8bc bl 100341f4 +1003f07c: f504 5397 add.w r3, r4, #4832 ; 0x12e0 +1003f080: f8c7 01a0 str.w r0, [r7, #416] ; 0x1a0 +1003f084: f893 2062 ldrb.w r2, [r3, #98] ; 0x62 +1003f088: f241 6318 movw r3, #5656 ; 0x1618 +1003f08c: 58e3 ldr r3, [r4, r3] +1003f08e: f893 3deb ldrb.w r3, [r3, #3563] ; 0xdeb +1003f092: f013 0901 ands.w r9, r3, #1 +1003f096: d005 beq.n 1003f0a4 +1003f098: 2a00 cmp r2, #0 +1003f09a: bf0c ite eq +1003f09c: f04f 090c moveq.w r9, #12 +1003f0a0: f04f 0930 movne.w r9, #48 ; 0x30 +1003f0a4: f003 0102 and.w r1, r3, #2 +1003f0a8: f001 08ff and.w r8, r1, #255 ; 0xff +1003f0ac: b129 cbz r1, 1003f0ba +1003f0ae: 2a00 cmp r2, #0 +1003f0b0: bf0c ite eq +1003f0b2: f04f 0802 moveq.w r8, #2 +1003f0b6: f04f 0820 movne.w r8, #32 +1003f0ba: f003 0304 and.w r3, r3, #4 +1003f0be: f003 06ff and.w r6, r3, #255 ; 0xff +1003f0c2: b11b cbz r3, 1003f0cc +1003f0c4: 2a00 cmp r2, #0 +1003f0c6: bf0c ite eq +1003f0c8: 2602 moveq r6, #2 +1003f0ca: 2620 movne r6, #32 +1003f0cc: 4632 mov r2, r6 +1003f0ce: f44f 7105 mov.w r1, #532 ; 0x214 +1003f0d2: 4620 mov r0, r4 +1003f0d4: f7fd fad1 bl 1003c67a +1003f0d8: f049 4300 orr.w r3, r9, #2147483648 ; 0x80000000 +1003f0dc: f1c9 09f3 rsb r9, r9, #243 ; 0xf3 +1003f0e0: ea43 2208 orr.w r2, r3, r8, lsl #8 +1003f0e4: ebc8 0809 rsb r8, r8, r9 +1003f0e8: ebc6 0608 rsb r6, r6, r8 +1003f0ec: f44f 7100 mov.w r1, #512 ; 0x200 +1003f0f0: ea42 4206 orr.w r2, r2, r6, lsl #16 +1003f0f4: 4620 mov r0, r4 +1003f0f6: f7fd face bl 1003c696 +1003f0fa: f240 4124 movw r1, #1060 ; 0x424 +1003f0fe: 22f4 movs r2, #244 ; 0xf4 +1003f100: 4620 mov r0, r4 +1003f102: f7fd faba bl 1003c67a +1003f106: f240 4125 movw r1, #1061 ; 0x425 +1003f10a: 22f4 movs r2, #244 ; 0xf4 +1003f10c: 4620 mov r0, r4 +1003f10e: f7fd fab4 bl 1003c67a +1003f112: f240 415d movw r1, #1117 ; 0x45d +1003f116: 22f4 movs r2, #244 ; 0xf4 +1003f118: 4620 mov r0, r4 +1003f11a: f7fd faae bl 1003c67a +1003f11e: f44f 718a mov.w r1, #276 ; 0x114 +1003f122: 22f4 movs r2, #244 ; 0xf4 +1003f124: 4620 mov r0, r4 +1003f126: f7fd faa8 bl 1003c67a +1003f12a: f240 2109 movw r1, #521 ; 0x209 +1003f12e: 22f4 movs r2, #244 ; 0xf4 +1003f130: 4620 mov r0, r4 +1003f132: f7fd faa2 bl 1003c67a +1003f136: f240 4157 movw r1, #1111 ; 0x457 +1003f13a: 22fc movs r2, #252 ; 0xfc +1003f13c: 4620 mov r0, r4 +1003f13e: f7fd fa9c bl 1003c67a +1003f142: 22fc movs r2, #252 ; 0xfc +1003f144: f240 2129 movw r1, #553 ; 0x229 +1003f148: 4620 mov r0, r4 +1003f14a: f7fd fa96 bl 1003c67a +1003f14e: f240 212a movw r1, #554 ; 0x22a +1003f152: 4620 mov r0, r4 +1003f154: f7fd fa7c bl 1003c650 +1003f158: f040 0202 orr.w r2, r0, #2 +1003f15c: f240 212a movw r1, #554 ; 0x22a +1003f160: b2d2 uxtb r2, r2 +1003f162: 4620 mov r0, r4 +1003f164: f7fd fa89 bl 1003c67a +1003f168: 4620 mov r0, r4 +1003f16a: f7f3 fc16 bl 1003299a +1003f16e: 2801 cmp r0, #1 +1003f170: 4680 mov r8, r0 +1003f172: f47f af33 bne.w 1003efdc +1003f176: f44f 7186 mov.w r1, #268 ; 0x10c +1003f17a: 4620 mov r0, r4 +1003f17c: f7fd fa6f bl 1003c65e +1003f180: f000 0207 and.w r2, r0, #7 +1003f184: f442 4275 orr.w r2, r2, #62720 ; 0xf500 +1003f188: f44f 7186 mov.w r1, #268 ; 0x10c +1003f18c: f042 02b0 orr.w r2, r2, #176 ; 0xb0 +1003f190: 4620 mov r0, r4 +1003f192: f7fd fa79 bl 1003c688 +1003f196: f44f 718b mov.w r1, #278 ; 0x116 +1003f19a: f643 727f movw r2, #16255 ; 0x3f7f +1003f19e: 4620 mov r0, r4 +1003f1a0: f7fd fa72 bl 1003c688 +1003f1a4: 2211 movs r2, #17 +1003f1a6: f44f 7182 mov.w r1, #260 ; 0x104 +1003f1aa: 4620 mov r0, r4 +1003f1ac: f7fd fa65 bl 1003c67a +1003f1b0: 2104 movs r1, #4 +1003f1b2: 4620 mov r0, r4 +1003f1b4: f7ff fdd8 bl 1003ed68 <_InitDriverInfoSize> +1003f1b8: 4620 mov r0, r4 +1003f1ba: f7f7 fcd9 bl 10036b70 +1003f1be: 4620 mov r0, r4 +1003f1c0: f7ff fdd7 bl 1003ed72 <_InitNetworkType> +1003f1c4: 4620 mov r0, r4 +1003f1c6: f7ff fde5 bl 1003ed94 <_InitWMACSetting> +1003f1ca: 4620 mov r0, r4 +1003f1cc: f7ff fe1a bl 1003ee04 <_InitAdaptiveCtrl> +1003f1d0: 4620 mov r0, r4 +1003f1d2: f7ff fe39 bl 1003ee48 <_InitEDCA> +1003f1d6: 4620 mov r0, r4 +1003f1d8: f7ff fe74 bl 1003eec4 <_InitRateFallback> +1003f1dc: 4620 mov r0, r4 +1003f1de: f7ff fe93 bl 1003ef08 <_InitRetryFunction> +1003f1e2: 4620 mov r0, r4 +1003f1e4: f7ff fea6 bl 1003ef34 <_InitOperationMode> +1003f1e8: 4620 mov r0, r4 +1003f1ea: f7f3 fb28 bl 1003283e +1003f1ee: 4620 mov r0, r4 +1003f1f0: f7ff fec4 bl 1003ef7c <_InitInterrupt> +1003f1f4: 4620 mov r0, r4 +1003f1f6: f7f3 fb5a bl 100328ae <_InitBurstPktLen_8195AB> +1003f1fa: f44f 6198 mov.w r1, #1216 ; 0x4c0 +1003f1fe: f44f 5240 mov.w r2, #12288 ; 0x3000 +1003f202: 4620 mov r0, r4 +1003f204: f7fd fa40 bl 1003c688 +1003f208: f240 41c2 movw r1, #1218 ; 0x4c2 +1003f20c: f44f 5240 mov.w r2, #12288 ; 0x3000 +1003f210: 4620 mov r0, r4 +1003f212: f7fd fa39 bl 1003c688 +1003f216: 4620 mov r0, r4 +1003f218: f7ee fe6f bl 1002defa +1003f21c: 2600 movs r6, #0 +1003f21e: f241 3324 movw r3, #4900 ; 0x1324 +1003f222: 5ce1 ldrb r1, [r4, r3] +1003f224: 4620 mov r0, r4 +1003f226: 4633 mov r3, r6 +1003f228: 4632 mov r2, r6 +1003f22a: 9600 str r6, [sp, #0] +1003f22c: f7f8 fc95 bl 10037b5a +1003f230: f240 41cc movw r1, #1228 ; 0x4cc +1003f234: 4a16 ldr r2, [pc, #88] ; (1003f290 ) +1003f236: 4620 mov r0, r4 +1003f238: f7fd fa2d bl 1003c696 +1003f23c: 22ff movs r2, #255 ; 0xff +1003f23e: f240 4123 movw r1, #1059 ; 0x423 +1003f242: 4620 mov r0, r4 +1003f244: f7fd fa19 bl 1003c67a +1003f248: 4620 mov r0, r4 +1003f24a: f000 fc3b bl 1003fac4 +1003f24e: f44f 7180 mov.w r1, #256 ; 0x100 +1003f252: 4620 mov r0, r4 +1003f254: f7fd f9fc bl 1003c650 +1003f258: f060 023f orn r2, r0, #63 ; 0x3f +1003f25c: f44f 7180 mov.w r1, #256 ; 0x100 +1003f260: b2d2 uxtb r2, r2 +1003f262: 4620 mov r0, r4 +1003f264: f7fd fa09 bl 1003c67a +1003f268: 4620 mov r0, r4 +1003f26a: 2140 movs r1, #64 ; 0x40 +1003f26c: aa03 add r2, sp, #12 +1003f26e: f7f8 fb5c bl 1003792a +1003f272: 4620 mov r0, r4 +1003f274: 672e str r6, [r5, #112] ; 0x70 +1003f276: 4631 mov r1, r6 +1003f278: 4632 mov r2, r6 +1003f27a: f002 fb05 bl 10041888 +1003f27e: f887 8c90 strb.w r8, [r7, #3216] ; 0xc90 +1003f282: 4640 mov r0, r8 +1003f284: b005 add sp, #20 +1003f286: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} +1003f28a: bf00 nop +1003f28c: 000fffff .word 0x000fffff +1003f290: 0201ffff .word 0x0201ffff + +1003f294 : +1003f294: b570 push {r4, r5, r6, lr} +1003f296: f241 73b1 movw r3, #6065 ; 0x17b1 +1003f29a: 5cc3 ldrb r3, [r0, r3] +1003f29c: 4605 mov r5, r0 +1003f29e: f500 54b1 add.w r4, r0, #5664 ; 0x1620 +1003f2a2: b953 cbnz r3, 1003f2ba +1003f2a4: f44f 606a mov.w r0, #3744 ; 0xea0 +1003f2a8: f7dd fd38 bl 1001cd1c +1003f2ac: f241 6318 movw r3, #5656 ; 0x1618 +1003f2b0: 1c06 adds r6, r0, #0 +1003f2b2: 50e8 str r0, [r5, r3] +1003f2b4: bf18 it ne +1003f2b6: 2601 movne r6, #1 +1003f2b8: e000 b.n 1003f2bc +1003f2ba: 2601 movs r6, #1 +1003f2bc: f44f 626a mov.w r2, #3744 ; 0xea0 +1003f2c0: f241 631c movw r3, #5660 ; 0x161c +1003f2c4: 50ea str r2, [r5, r3] +1003f2c6: 4620 mov r0, r4 +1003f2c8: f7f3 faf6 bl 100328b8 +1003f2cc: 4b14 ldr r3, [pc, #80] ; (1003f320 ) +1003f2ce: 4630 mov r0, r6 +1003f2d0: 6063 str r3, [r4, #4] +1003f2d2: 4b14 ldr r3, [pc, #80] ; (1003f324 ) +1003f2d4: 60a3 str r3, [r4, #8] +1003f2d6: 4b14 ldr r3, [pc, #80] ; (1003f328 ) +1003f2d8: 6123 str r3, [r4, #16] +1003f2da: 4b14 ldr r3, [pc, #80] ; (1003f32c ) +1003f2dc: 6163 str r3, [r4, #20] +1003f2de: 4b14 ldr r3, [pc, #80] ; (1003f330 ) +1003f2e0: 61a3 str r3, [r4, #24] +1003f2e2: 4b14 ldr r3, [pc, #80] ; (1003f334 ) +1003f2e4: 61e3 str r3, [r4, #28] +1003f2e6: 4b14 ldr r3, [pc, #80] ; (1003f338 ) +1003f2e8: 6223 str r3, [r4, #32] +1003f2ea: 4b14 ldr r3, [pc, #80] ; (1003f33c ) +1003f2ec: 6463 str r3, [r4, #68] ; 0x44 +1003f2ee: 4b14 ldr r3, [pc, #80] ; (1003f340 ) +1003f2f0: 64a3 str r3, [r4, #72] ; 0x48 +1003f2f2: 4b14 ldr r3, [pc, #80] ; (1003f344 ) +1003f2f4: 64e3 str r3, [r4, #76] ; 0x4c +1003f2f6: 4b14 ldr r3, [pc, #80] ; (1003f348 ) +1003f2f8: 6523 str r3, [r4, #80] ; 0x50 +1003f2fa: 4b14 ldr r3, [pc, #80] ; (1003f34c ) +1003f2fc: 6563 str r3, [r4, #84] ; 0x54 +1003f2fe: 4b14 ldr r3, [pc, #80] ; (1003f350 ) +1003f300: 65a3 str r3, [r4, #88] ; 0x58 +1003f302: 4b14 ldr r3, [pc, #80] ; (1003f354 ) +1003f304: 66e3 str r3, [r4, #108] ; 0x6c +1003f306: 4b14 ldr r3, [pc, #80] ; (1003f358 ) +1003f308: 6723 str r3, [r4, #112] ; 0x70 +1003f30a: 4b14 ldr r3, [pc, #80] ; (1003f35c ) +1003f30c: 6763 str r3, [r4, #116] ; 0x74 +1003f30e: 4b14 ldr r3, [pc, #80] ; (1003f360 ) +1003f310: 67a3 str r3, [r4, #120] ; 0x78 +1003f312: 4b14 ldr r3, [pc, #80] ; (1003f364 ) +1003f314: f8c4 3098 str.w r3, [r4, #152] ; 0x98 +1003f318: 4b13 ldr r3, [pc, #76] ; (1003f368 ) +1003f31a: f8c4 309c str.w r3, [r4, #156] ; 0x9c +1003f31e: bd70 pop {r4, r5, r6, pc} +1003f320: 1003efbd .word 0x1003efbd +1003f324: 1003ec7d .word 0x1003ec7d +1003f328: 100302d5 .word 0x100302d5 +1003f32c: 10030415 .word 0x10030415 +1003f330: 10030431 .word 0x10030431 +1003f334: 10031075 .word 0x10031075 +1003f338: 10031083 .word 0x10031083 +1003f33c: 10032999 .word 0x10032999 +1003f340: 1003ec49 .word 0x1003ec49 +1003f344: 1003ed39 .word 0x1003ed39 +1003f348: 1003085d .word 0x1003085d +1003f34c: 100308a9 .word 0x100308a9 +1003f350: 10030ccd .word 0x10030ccd +1003f354: 10033291 .word 0x10033291 +1003f358: 10033f51 .word 0x10033f51 +1003f35c: 100340c5 .word 0x100340c5 +1003f360: 10033fe5 .word 0x10033fe5 +1003f364: 10031833 .word 0x10031833 +1003f368: 100317f7 .word 0x100317f7 + +1003f36c : +1003f36c: b510 push {r4, lr} +1003f36e: b15b cbz r3, 1003f388 +1003f370: 2a0b cmp r2, #11 +1003f372: d809 bhi.n 1003f388 +1003f374: f241 62fc movw r2, #5884 ; 0x16fc +1003f378: 5882 ldr r2, [r0, r2] +1003f37a: 2a01 cmp r2, #1 +1003f37c: d004 beq.n 1003f388 +1003f37e: 461a mov r2, r3 +1003f380: f000 fdcc bl 1003ff1c +1003f384: 2001 movs r0, #1 +1003f386: bd10 pop {r4, pc} +1003f388: 2000 movs r0, #0 +1003f38a: bd10 pop {r4, pc} + +1003f38c : +1003f38c: 4770 bx lr + +1003f38e : +1003f38e: 460b mov r3, r1 +1003f390: 2201 movs r2, #1 +1003f392: 2100 movs r1, #0 +1003f394: f7ff bfea b.w 1003f36c + +1003f398 : +1003f398: b507 push {r0, r1, r2, lr} +1003f39a: 2300 movs r3, #0 +1003f39c: f88d 3006 strb.w r3, [sp, #6] +1003f3a0: f241 63fc movw r3, #5884 ; 0x16fc +1003f3a4: 58c3 ldr r3, [r0, r3] +1003f3a6: f001 0101 and.w r1, r1, #1 +1003f3aa: 2b01 cmp r3, #1 +1003f3ac: f88d 1004 strb.w r1, [sp, #4] +1003f3b0: f88d 2005 strb.w r2, [sp, #5] +1003f3b4: d003 beq.n 1003f3be +1003f3b6: 2101 movs r1, #1 +1003f3b8: aa01 add r2, sp, #4 +1003f3ba: f000 fdaf bl 1003ff1c +1003f3be: b003 add sp, #12 +1003f3c0: f85d fb04 ldr.w pc, [sp], #4 + +1003f3c4 : +1003f3c4: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} +1003f3c8: 4607 mov r7, r0 +1003f3ca: 468a mov sl, r1 +1003f3cc: 4691 mov r9, r2 +1003f3ce: a802 add r0, sp, #8 +1003f3d0: 2207 movs r2, #7 +1003f3d2: 2100 movs r1, #0 +1003f3d4: 4698 mov r8, r3 +1003f3d6: 9e0d ldr r6, [sp, #52] ; 0x34 +1003f3d8: f002 ff97 bl 1004230a +1003f3dc: 4b26 ldr r3, [pc, #152] ; (1003f478 ) +1003f3de: f44f 7200 mov.w r2, #512 ; 0x200 +1003f3e2: e9d3 4502 ldrd r4, r5, [r3, #8] +1003f3e6: 2300 movs r3, #0 +1003f3e8: 4014 ands r4, r2 +1003f3ea: 401d ands r5, r3 +1003f3ec: ea54 0305 orrs.w r3, r4, r5 +1003f3f0: d009 beq.n 1003f406 +1003f3f2: 4b22 ldr r3, [pc, #136] ; (1003f47c ) +1003f3f4: f8cd 8000 str.w r8, [sp] +1003f3f8: 9601 str r6, [sp, #4] +1003f3fa: 6ad8 ldr r0, [r3, #44] ; 0x2c +1003f3fc: 4920 ldr r1, [pc, #128] ; (1003f480 ) +1003f3fe: 4652 mov r2, sl +1003f400: 464b mov r3, r9 +1003f402: f002 fe81 bl 10042108 +1003f406: f89d 3009 ldrb.w r3, [sp, #9] +1003f40a: f009 091f and.w r9, r9, #31 +1003f40e: f003 0360 and.w r3, r3, #96 ; 0x60 +1003f412: ea43 0909 orr.w r9, r3, r9 +1003f416: f89d 3030 ldrb.w r3, [sp, #48] ; 0x30 +1003f41a: f008 0803 and.w r8, r8, #3 +1003f41e: 2b00 cmp r3, #0 +1003f420: bf0c ite eq +1003f422: 2300 moveq r3, #0 +1003f424: 2380 movne r3, #128 ; 0x80 +1003f426: ea43 0909 orr.w r9, r3, r9 +1003f42a: f89d 300a ldrb.w r3, [sp, #10] +1003f42e: f88d 600b strb.w r6, [sp, #11] +1003f432: f023 0303 bic.w r3, r3, #3 +1003f436: ea48 0803 orr.w r8, r8, r3 +1003f43a: f3c6 2307 ubfx r3, r6, #8, #8 +1003f43e: f88d 300c strb.w r3, [sp, #12] +1003f442: f3c6 4307 ubfx r3, r6, #16, #8 +1003f446: f88d 300d strb.w r3, [sp, #13] +1003f44a: f241 63fc movw r3, #5884 ; 0x16fc +1003f44e: 58fb ldr r3, [r7, r3] +1003f450: 0e36 lsrs r6, r6, #24 +1003f452: 2b01 cmp r3, #1 +1003f454: f88d a008 strb.w sl, [sp, #8] +1003f458: f88d 9009 strb.w r9, [sp, #9] +1003f45c: f88d 800a strb.w r8, [sp, #10] +1003f460: f88d 600e strb.w r6, [sp, #14] +1003f464: d004 beq.n 1003f470 +1003f466: 4638 mov r0, r7 +1003f468: 2140 movs r1, #64 ; 0x40 +1003f46a: aa02 add r2, sp, #8 +1003f46c: f000 fd56 bl 1003ff1c +1003f470: b004 add sp, #16 +1003f472: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1003f476: bf00 nop +1003f478: 10000720 .word 0x10000720 +1003f47c: 1004da10 .word 0x1004da10 +1003f480: 1004cdff .word 0x1004cdff + +1003f484 : +1003f484: b530 push {r4, r5, lr} +1003f486: b085 sub sp, #20 +1003f488: 4604 mov r4, r0 +1003f48a: 460d mov r5, r1 +1003f48c: 220b movs r2, #11 +1003f48e: a801 add r0, sp, #4 +1003f490: 2100 movs r1, #0 +1003f492: f002 ff3a bl 1004230a +1003f496: f504 539b add.w r3, r4, #4960 ; 0x1360 +1003f49a: 3310 adds r3, #16 +1003f49c: f893 2094 ldrb.w r2, [r3, #148] ; 0x94 +1003f4a0: 2d00 cmp r5, #0 +1003f4a2: bf0c ite eq +1003f4a4: 200c moveq r0, #12 +1003f4a6: 2000 movne r0, #0 +1003f4a8: b11a cbz r2, 1003f4b2 +1003f4aa: 3201 adds r2, #1 +1003f4ac: b2d1 uxtb r1, r2 +1003f4ae: 2202 movs r2, #2 +1003f4b0: e000 b.n 1003f4b4 +1003f4b2: 2101 movs r1, #1 +1003f4b4: f88d 5004 strb.w r5, [sp, #4] +1003f4b8: 7a5d ldrb r5, [r3, #9] +1003f4ba: f88d 1006 strb.w r1, [sp, #6] +1003f4be: ea42 1205 orr.w r2, r2, r5, lsl #4 +1003f4c2: f88d 2005 strb.w r2, [sp, #5] +1003f4c6: f241 3236 movw r2, #4918 ; 0x1336 +1003f4ca: 5ca2 ldrb r2, [r4, r2] +1003f4cc: f88d 0008 strb.w r0, [sp, #8] +1003f4d0: f88d 2007 strb.w r2, [sp, #7] +1003f4d4: 2240 movs r2, #64 ; 0x40 +1003f4d6: f88d 2009 strb.w r2, [sp, #9] +1003f4da: f893 2090 ldrb.w r2, [r3, #144] ; 0x90 +1003f4de: f88d 200b strb.w r2, [sp, #11] +1003f4e2: f893 2091 ldrb.w r2, [r3, #145] ; 0x91 +1003f4e6: f88d 200c strb.w r2, [sp, #12] +1003f4ea: f893 2092 ldrb.w r2, [r3, #146] ; 0x92 +1003f4ee: f893 3093 ldrb.w r3, [r3, #147] ; 0x93 +1003f4f2: f88d 200d strb.w r2, [sp, #13] +1003f4f6: f88d 300e strb.w r3, [sp, #14] +1003f4fa: f241 63fc movw r3, #5884 ; 0x16fc +1003f4fe: 58e3 ldr r3, [r4, r3] +1003f500: 2b01 cmp r3, #1 +1003f502: d004 beq.n 1003f50e +1003f504: 4620 mov r0, r4 +1003f506: 2120 movs r1, #32 +1003f508: aa01 add r2, sp, #4 +1003f50a: f000 fd07 bl 1003ff1c +1003f50e: b005 add sp, #20 +1003f510: bd30 pop {r4, r5, pc} + ... + +1003f514 : +1003f514: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003f518: 2901 cmp r1, #1 +1003f51a: b08f sub sp, #60 ; 0x3c +1003f51c: 4605 mov r5, r0 +1003f51e: 468a mov sl, r1 +1003f520: f040 8177 bne.w 1003f812 +1003f524: f8b0 26a0 ldrh.w r2, [r0, #1696] ; 0x6a0 +1003f528: f44f 61d5 mov.w r1, #1704 ; 0x6a8 +1003f52c: ea6f 4282 mvn.w r2, r2, lsl #18 +1003f530: ea6f 4292 mvn.w r2, r2, lsr #18 +1003f534: b292 uxth r2, r2 +1003f536: f7fd f8a7 bl 1003c688 +1003f53a: f44f 6080 mov.w r0, #1024 ; 0x400 +1003f53e: f7dd fc17 bl 1001cd70 +1003f542: 4604 mov r4, r0 +1003f544: 2800 cmp r0, #0 +1003f546: f000 8164 beq.w 1003f812 +1003f54a: a80a add r0, sp, #40 ; 0x28 +1003f54c: 2100 movs r1, #0 +1003f54e: 2210 movs r2, #16 +1003f550: f7dd fc3e bl 1001cdd0 +1003f554: 4bb0 ldr r3, [pc, #704] ; (1003f818 ) +1003f556: f04f 0800 mov.w r8, #0 +1003f55a: 6818 ldr r0, [r3, #0] +1003f55c: f505 57a0 add.w r7, r5, #5120 ; 0x1400 +1003f560: 889b ldrh r3, [r3, #4] +1003f562: 9008 str r0, [sp, #32] +1003f564: a908 add r1, sp, #32 +1003f566: f104 002c add.w r0, r4, #44 ; 0x2c +1003f56a: 2206 movs r2, #6 +1003f56c: f8a4 8028 strh.w r8, [r4, #40] ; 0x28 +1003f570: 3709 adds r7, #9 +1003f572: f8ad 3024 strh.w r3, [sp, #36] ; 0x24 +1003f576: 940c str r4, [sp, #48] ; 0x30 +1003f578: f105 0998 add.w r9, r5, #152 ; 0x98 +1003f57c: f7dd fc16 bl 1001cdac +1003f580: 4639 mov r1, r7 +1003f582: 2206 movs r2, #6 +1003f584: f104 0032 add.w r0, r4, #50 ; 0x32 +1003f588: f7dd fc10 bl 1001cdac +1003f58c: 4648 mov r0, r9 +1003f58e: f7ee fc6a bl 1002de66 +1003f592: 2206 movs r2, #6 +1003f594: 4601 mov r1, r0 +1003f596: f104 0038 add.w r0, r4, #56 ; 0x38 +1003f59a: f7dd fc07 bl 1001cdac +1003f59e: 8fe3 ldrh r3, [r4, #62] ; 0x3e +1003f5a0: f505 768a add.w r6, r5, #276 ; 0x114 +1003f5a4: f003 030f and.w r3, r3, #15 +1003f5a8: 87e3 strh r3, [r4, #62] ; 0x3e +1003f5aa: 8d23 ldrh r3, [r4, #40] ; 0x28 +1003f5ac: 4630 mov r0, r6 +1003f5ae: f023 03fc bic.w r3, r3, #252 ; 0xfc +1003f5b2: f043 0380 orr.w r3, r3, #128 ; 0x80 +1003f5b6: 8523 strh r3, [r4, #40] ; 0x28 +1003f5b8: 2320 movs r3, #32 +1003f5ba: 9306 str r3, [sp, #24] +1003f5bc: f7e4 f9b5 bl 1002392a +1003f5c0: 2202 movs r2, #2 +1003f5c2: 4601 mov r1, r0 +1003f5c4: f104 0048 add.w r0, r4, #72 ; 0x48 +1003f5c8: f7dd fbf0 bl 1001cdac +1003f5cc: 9b06 ldr r3, [sp, #24] +1003f5ce: 4630 mov r0, r6 +1003f5d0: 3302 adds r3, #2 +1003f5d2: 9306 str r3, [sp, #24] +1003f5d4: f7e4 f99a bl 1002390c +1003f5d8: 2202 movs r2, #2 +1003f5da: 4601 mov r1, r0 +1003f5dc: f104 004a add.w r0, r4, #74 ; 0x4a +1003f5e0: f7dd fbe4 bl 1001cdac +1003f5e4: f8d5 25f8 ldr.w r2, [r5, #1528] ; 0x5f8 +1003f5e8: 9b06 ldr r3, [sp, #24] +1003f5ea: f002 0203 and.w r2, r2, #3 +1003f5ee: 3302 adds r3, #2 +1003f5f0: 2a03 cmp r2, #3 +1003f5f2: f104 004c add.w r0, r4, #76 ; 0x4c +1003f5f6: 9306 str r3, [sp, #24] +1003f5f8: d109 bne.n 1003f60e +1003f5fa: f8d5 2110 ldr.w r2, [r5, #272] ; 0x110 +1003f5fe: f505 7190 add.w r1, r5, #288 ; 0x120 +1003f602: 3a0c subs r2, #12 +1003f604: 441a add r2, r3 +1003f606: 9206 str r2, [sp, #24] +1003f608: f7dd fbd0 bl 1001cdac +1003f60c: e040 b.n 1003f690 +1003f60e: ae06 add r6, sp, #24 +1003f610: 4641 mov r1, r8 +1003f612: f8d5 20a4 ldr.w r2, [r5, #164] ; 0xa4 +1003f616: f105 03a8 add.w r3, r5, #168 ; 0xa8 +1003f61a: 9600 str r6, [sp, #0] +1003f61c: f004 f898 bl 10043750 <__rtw_set_ie_veneer> +1003f620: f105 03fc add.w r3, r5, #252 ; 0xfc +1003f624: 4602 mov r2, r0 +1003f626: 4618 mov r0, r3 +1003f628: 9204 str r2, [sp, #16] +1003f62a: 9303 str r3, [sp, #12] +1003f62c: f004 f880 bl 10043730 <__rtw_get_rateset_len_veneer> +1003f630: 9a04 ldr r2, [sp, #16] +1003f632: 4683 mov fp, r0 +1003f634: 4651 mov r1, sl +1003f636: 4610 mov r0, r2 +1003f638: 9b03 ldr r3, [sp, #12] +1003f63a: f1bb 0f08 cmp.w fp, #8 +1003f63e: bf34 ite cc +1003f640: 465a movcc r2, fp +1003f642: 2208 movcs r2, #8 +1003f644: 9600 str r6, [sp, #0] +1003f646: f004 f883 bl 10043750 <__rtw_set_ie_veneer> +1003f64a: 4652 mov r2, sl +1003f64c: f105 03e4 add.w r3, r5, #228 ; 0xe4 +1003f650: 9600 str r6, [sp, #0] +1003f652: 2103 movs r1, #3 +1003f654: f004 f87c bl 10043750 <__rtw_set_ie_veneer> +1003f658: f8d5 25f8 ldr.w r2, [r5, #1528] ; 0x5f8 +1003f65c: 4603 mov r3, r0 +1003f65e: f002 0203 and.w r2, r2, #3 +1003f662: 2a01 cmp r2, #1 +1003f664: d108 bne.n 1003f678 +1003f666: ab0e add r3, sp, #56 ; 0x38 +1003f668: f843 8d1c str.w r8, [r3, #-28]! +1003f66c: 2106 movs r1, #6 +1003f66e: 9600 str r6, [sp, #0] +1003f670: 2202 movs r2, #2 +1003f672: f004 f86d bl 10043750 <__rtw_set_ie_veneer> +1003f676: 4603 mov r3, r0 +1003f678: f1bb 0f08 cmp.w fp, #8 +1003f67c: d908 bls.n 1003f690 +1003f67e: 4618 mov r0, r3 +1003f680: 9600 str r6, [sp, #0] +1003f682: 2132 movs r1, #50 ; 0x32 +1003f684: f1ab 0208 sub.w r2, fp, #8 +1003f688: f505 7382 add.w r3, r5, #260 ; 0x104 +1003f68c: f004 f860 bl 10043750 <__rtw_set_ie_veneer> +1003f690: 9b06 ldr r3, [sp, #24] +1003f692: 4648 mov r0, r9 +1003f694: f103 0228 add.w r2, r3, #40 ; 0x28 +1003f698: f5b2 7f00 cmp.w r2, #512 ; 0x200 +1003f69c: bf88 it hi +1003f69e: 2300 movhi r3, #0 +1003f6a0: 3328 adds r3, #40 ; 0x28 +1003f6a2: f013 027f ands.w r2, r3, #127 ; 0x7f +1003f6a6: bf18 it ne +1003f6a8: 2201 movne r2, #1 +1003f6aa: eb02 1ad3 add.w sl, r2, r3, lsr #7 +1003f6ae: fa5f fa8a uxtb.w sl, sl +1003f6b2: f1ba 0f01 cmp.w sl, #1 +1003f6b6: bf08 it eq +1003f6b8: f04f 0a02 moveq.w sl, #2 +1003f6bc: ea4f 1aca mov.w sl, sl, lsl #7 +1003f6c0: 2302 movs r3, #2 +1003f6c2: f88d 3029 strb.w r3, [sp, #41] ; 0x29 +1003f6c6: f241 02a4 movw r2, #4260 ; 0x10a4 +1003f6ca: f10a 0328 add.w r3, sl, #40 ; 0x28 +1003f6ce: 52e2 strh r2, [r4, r3] +1003f6d0: 18e6 adds r6, r4, r3 +1003f6d2: f8b5 36a0 ldrh.w r3, [r5, #1696] ; 0x6a0 +1003f6d6: f04f 0b00 mov.w fp, #0 +1003f6da: ea6f 4383 mvn.w r3, r3, lsl #18 +1003f6de: ea6f 4393 mvn.w r3, r3, lsr #18 +1003f6e2: 8073 strh r3, [r6, #2] +1003f6e4: f7ee fbbf bl 1002de66 +1003f6e8: 2206 movs r2, #6 +1003f6ea: 4601 mov r1, r0 +1003f6ec: 1d30 adds r0, r6, #4 +1003f6ee: f7dd fb5d bl 1001cdac +1003f6f2: f106 000a add.w r0, r6, #10 +1003f6f6: 4639 mov r1, r7 +1003f6f8: 2206 movs r2, #6 +1003f6fa: f7dd fb57 bl 1001cdac +1003f6fe: eb04 010a add.w r1, r4, sl +1003f702: 2210 movs r2, #16 +1003f704: f8cd b000 str.w fp, [sp] +1003f708: f8cd b004 str.w fp, [sp, #4] +1003f70c: 4628 mov r0, r5 +1003f70e: 2301 movs r3, #1 +1003f710: f7f3 fd5f bl 100331d2 +1003f714: 2303 movs r3, #3 +1003f716: f88d 302a strb.w r3, [sp, #42] ; 0x2a +1003f71a: f10a 0380 add.w r3, sl, #128 ; 0x80 +1003f71e: b29b uxth r3, r3 +1003f720: 4648 mov r0, r9 +1003f722: f103 0828 add.w r8, r3, #40 ; 0x28 +1003f726: 9305 str r3, [sp, #20] +1003f728: f7ee fb9d bl 1002de66 +1003f72c: f8d5 10f8 ldr.w r1, [r5, #248] ; 0xf8 +1003f730: eb04 0608 add.w r6, r4, r8 +1003f734: 2901 cmp r1, #1 +1003f736: f824 b008 strh.w fp, [r4, r8] +1003f73a: 4603 mov r3, r0 +1003f73c: f106 0204 add.w r2, r6, #4 +1003f740: f106 0b0a add.w fp, r6, #10 +1003f744: d016 beq.n 1003f774 +1003f746: 2904 cmp r1, #4 +1003f748: d12d bne.n 1003f7a6 +1003f74a: f44f 7100 mov.w r1, #512 ; 0x200 +1003f74e: 4610 mov r0, r2 +1003f750: f824 1008 strh.w r1, [r4, r8] +1003f754: 2206 movs r2, #6 +1003f756: 4619 mov r1, r3 +1003f758: f7dd fb28 bl 1001cdac +1003f75c: 4648 mov r0, r9 +1003f75e: f7ee fb82 bl 1002de66 +1003f762: 2206 movs r2, #6 +1003f764: 4601 mov r1, r0 +1003f766: 4658 mov r0, fp +1003f768: f7dd fb20 bl 1001cdac +1003f76c: f106 0010 add.w r0, r6, #16 +1003f770: 4639 mov r1, r7 +1003f772: e028 b.n 1003f7c6 +1003f774: f44f 7180 mov.w r1, #256 ; 0x100 +1003f778: f824 1008 strh.w r1, [r4, r8] +1003f77c: 4648 mov r0, r9 +1003f77e: 9303 str r3, [sp, #12] +1003f780: 9204 str r2, [sp, #16] +1003f782: f7ee fb70 bl 1002de66 +1003f786: 9a04 ldr r2, [sp, #16] +1003f788: 4601 mov r1, r0 +1003f78a: 4610 mov r0, r2 +1003f78c: 2206 movs r2, #6 +1003f78e: f7dd fb0d bl 1001cdac +1003f792: 4658 mov r0, fp +1003f794: 4639 mov r1, r7 +1003f796: 2206 movs r2, #6 +1003f798: f7dd fb08 bl 1001cdac +1003f79c: 9b03 ldr r3, [sp, #12] +1003f79e: f106 0010 add.w r0, r6, #16 +1003f7a2: 4619 mov r1, r3 +1003f7a4: e00f b.n 1003f7c6 +1003f7a6: 4619 mov r1, r3 +1003f7a8: 4610 mov r0, r2 +1003f7aa: 2206 movs r2, #6 +1003f7ac: f7dd fafe bl 1001cdac +1003f7b0: 4639 mov r1, r7 +1003f7b2: 4658 mov r0, fp +1003f7b4: 2206 movs r2, #6 +1003f7b6: f7dd faf9 bl 1001cdac +1003f7ba: 4648 mov r0, r9 +1003f7bc: f7ee fb53 bl 1002de66 +1003f7c0: 4601 mov r1, r0 +1003f7c2: f106 0010 add.w r0, r6, #16 +1003f7c6: 2206 movs r2, #6 +1003f7c8: f7dd faf0 bl 1001cdac +1003f7cc: 8af3 ldrh r3, [r6, #22] +1003f7ce: 9905 ldr r1, [sp, #20] +1003f7d0: f003 030f and.w r3, r3, #15 +1003f7d4: 82f3 strh r3, [r6, #22] +1003f7d6: f834 3008 ldrh.w r3, [r4, r8] +1003f7da: 4628 mov r0, r5 +1003f7dc: f023 03fc bic.w r3, r3, #252 ; 0xfc +1003f7e0: f043 0348 orr.w r3, r3, #72 ; 0x48 +1003f7e4: f824 3008 strh.w r3, [r4, r8] +1003f7e8: 2300 movs r3, #0 +1003f7ea: 9300 str r3, [sp, #0] +1003f7ec: 9301 str r3, [sp, #4] +1003f7ee: 4421 add r1, r4 +1003f7f0: 2218 movs r2, #24 +1003f7f2: f50a 7a80 add.w sl, sl, #256 ; 0x100 +1003f7f6: f7f3 fcec bl 100331d2 +1003f7fa: fa1f f38a uxth.w r3, sl +1003f7fe: 4628 mov r0, r5 +1003f800: a90a add r1, sp, #40 ; 0x28 +1003f802: 930d str r3, [sp, #52] ; 0x34 +1003f804: f7ff fdc3 bl 1003f38e +1003f808: 4620 mov r0, r4 +1003f80a: f44f 6180 mov.w r1, #1024 ; 0x400 +1003f80e: f7dd fac5 bl 1001cd9c +1003f812: b00f add sp, #60 ; 0x3c +1003f814: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1003f818: 1004cdf9 .word 0x1004cdf9 + +1003f81c : +1003f81c: 2901 cmp r1, #1 +1003f81e: d101 bne.n 1003f824 +1003f820: f7ff be78 b.w 1003f514 +1003f824: 4770 bx lr + +1003f826 : +1003f826: e92d 43f7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, lr} +1003f82a: 7812 ldrb r2, [r2, #0] +1003f82c: 4604 mov r4, r0 +1003f82e: f002 051f and.w r5, r2, #31 +1003f832: f3c2 1740 ubfx r7, r2, #5, #1 +1003f836: eb04 1245 add.w r2, r4, r5, lsl #5 +1003f83a: f8d2 2708 ldr.w r2, [r2, #1800] ; 0x708 +1003f83e: f241 6018 movw r0, #5656 ; 0x1618 +1003f842: 5820 ldr r0, [r4, r0] +1003f844: f021 4670 bic.w r6, r1, #4026531840 ; 0xf0000000 +1003f848: ea4f 7911 mov.w r9, r1, lsr #28 +1003f84c: b18a cbz r2, 1003f872 +1003f84e: f894 84f7 ldrb.w r8, [r4, #1271] ; 0x4f7 +1003f852: b133 cbz r3, 1003f862 +1003f854: 4632 mov r2, r6 +1003f856: f500 7000 add.w r0, r0, #512 ; 0x200 +1003f85a: 4629 mov r1, r5 +1003f85c: f7ff f918 bl 1003ea90 +1003f860: 4606 mov r6, r0 +1003f862: 9700 str r7, [sp, #0] +1003f864: 9601 str r6, [sp, #4] +1003f866: 4620 mov r0, r4 +1003f868: 4629 mov r1, r5 +1003f86a: 464a mov r2, r9 +1003f86c: 4643 mov r3, r8 +1003f86e: f7ff fda9 bl 1003f3c4 +1003f872: b003 add sp, #12 +1003f874: e8bd 83f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, pc} + +1003f878 : +1003f878: b538 push {r3, r4, r5, lr} +1003f87a: 4605 mov r5, r0 +1003f87c: b149 cbz r1, 1003f892 +1003f87e: 2901 cmp r1, #1 +1003f880: d00a beq.n 1003f898 +1003f882: 2902 cmp r1, #2 +1003f884: d00b beq.n 1003f89e +1003f886: 2903 cmp r1, #3 +1003f888: bf0c ite eq +1003f88a: f44f 64d0 moveq.w r4, #1664 ; 0x680 +1003f88e: 2400 movne r4, #0 +1003f890: e007 b.n 1003f8a2 +1003f892: f44f 64ca mov.w r4, #1616 ; 0x650 +1003f896: e004 b.n 1003f8a2 +1003f898: f44f 64cc mov.w r4, #1632 ; 0x660 +1003f89c: e001 b.n 1003f8a2 +1003f89e: f44f 64ce mov.w r4, #1648 ; 0x670 +1003f8a2: 4628 mov r0, r5 +1003f8a4: f44f 71a0 mov.w r1, #320 ; 0x140 +1003f8a8: f7fc fee0 bl 1003c66c +1003f8ac: f420 627f bic.w r2, r0, #4080 ; 0xff0 +1003f8b0: f022 020f bic.w r2, r2, #15 +1003f8b4: 4628 mov r0, r5 +1003f8b6: f44f 71a0 mov.w r1, #320 ; 0x140 +1003f8ba: 4322 orrs r2, r4 +1003f8bc: f7fc feeb bl 1003c696 +1003f8c0: 2000 movs r0, #0 +1003f8c2: bd38 pop {r3, r4, r5, pc} + +1003f8c4 : +1003f8c4: b570 push {r4, r5, r6, lr} +1003f8c6: 460d mov r5, r1 +1003f8c8: 2101 movs r1, #1 +1003f8ca: 4604 mov r4, r0 +1003f8cc: 4616 mov r6, r2 +1003f8ce: f7ff ffd3 bl 1003f878 +1003f8d2: f505 6101 add.w r1, r5, #2064 ; 0x810 +1003f8d6: 4620 mov r0, r4 +1003f8d8: eb06 1101 add.w r1, r6, r1, lsl #4 +1003f8dc: f7fc feb8 bl 1003c650 +1003f8e0: bd70 pop {r4, r5, r6, pc} + +1003f8e2 : +1003f8e2: b5f8 push {r3, r4, r5, r6, r7, lr} +1003f8e4: 460d mov r5, r1 +1003f8e6: 2101 movs r1, #1 +1003f8e8: 4616 mov r6, r2 +1003f8ea: 461f mov r7, r3 +1003f8ec: 4604 mov r4, r0 +1003f8ee: f7ff ffc3 bl 1003f878 +1003f8f2: f505 6101 add.w r1, r5, #2064 ; 0x810 +1003f8f6: 4620 mov r0, r4 +1003f8f8: eb06 1101 add.w r1, r6, r1, lsl #4 +1003f8fc: 463a mov r2, r7 +1003f8fe: f7fc febc bl 1003c67a +1003f902: 2000 movs r0, #0 +1003f904: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1003f906 : +1003f906: b570 push {r4, r5, r6, lr} +1003f908: 460d mov r5, r1 +1003f90a: 2101 movs r1, #1 +1003f90c: 4604 mov r4, r0 +1003f90e: 4616 mov r6, r2 +1003f910: f7ff ffb2 bl 1003f878 +1003f914: f505 5189 add.w r1, r5, #4384 ; 0x1120 +1003f918: 4620 mov r0, r4 +1003f91a: eb06 01c1 add.w r1, r6, r1, lsl #3 +1003f91e: f7fc fe97 bl 1003c650 +1003f922: bd70 pop {r4, r5, r6, pc} + +1003f924 : +1003f924: b5f8 push {r3, r4, r5, r6, r7, lr} +1003f926: 460d mov r5, r1 +1003f928: 2101 movs r1, #1 +1003f92a: 4616 mov r6, r2 +1003f92c: 461f mov r7, r3 +1003f92e: 4604 mov r4, r0 +1003f930: f7ff ffa2 bl 1003f878 +1003f934: f505 5189 add.w r1, r5, #4384 ; 0x1120 +1003f938: 4620 mov r0, r4 +1003f93a: eb06 01c1 add.w r1, r6, r1, lsl #3 +1003f93e: 463a mov r2, r7 +1003f940: f7fc fe9b bl 1003c67a +1003f944: 2000 movs r0, #0 +1003f946: bdf8 pop {r3, r4, r5, r6, r7, pc} + +1003f948 : +1003f948: b508 push {r3, lr} +1003f94a: f7ff ffdc bl 1003f906 +1003f94e: b2c0 uxtb r0, r0 +1003f950: bd08 pop {r3, pc} + +1003f952 : +1003f952: f7ff bfe7 b.w 1003f924 + +1003f956 : +1003f956: b508 push {r3, lr} +1003f958: f7ff ffb4 bl 1003f8c4 +1003f95c: b2c0 uxtb r0, r0 +1003f95e: bd08 pop {r3, pc} + +1003f960 : +1003f960: f7ff bfbf b.w 1003f8e2 + +1003f964 : +1003f964: b570 push {r4, r5, r6, lr} +1003f966: 4606 mov r6, r0 +1003f968: 4615 mov r5, r2 +1003f96a: b13b cbz r3, 1003f97c +1003f96c: 2300 movs r3, #0 +1003f96e: 838b strh r3, [r1, #28] +1003f970: 83cb strh r3, [r1, #30] +1003f972: 840b strh r3, [r1, #32] +1003f974: 844b strh r3, [r1, #34] ; 0x22 +1003f976: 848b strh r3, [r1, #36] ; 0x24 +1003f978: 628b str r3, [r1, #40] ; 0x28 +1003f97a: 858b strh r3, [r1, #44] ; 0x2c +1003f97c: 4629 mov r1, r5 +1003f97e: 4630 mov r0, r6 +1003f980: 2203 movs r2, #3 +1003f982: f7ff ff9f bl 1003f8c4 +1003f986: f000 03bf and.w r3, r0, #191 ; 0xbf +1003f98a: 4629 mov r1, r5 +1003f98c: 4630 mov r0, r6 +1003f98e: 2203 movs r2, #3 +1003f990: f043 0380 orr.w r3, r3, #128 ; 0x80 +1003f994: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003f998: f7ff bfa3 b.w 1003f8e2 + +1003f99c : +1003f99c: b570 push {r4, r5, r6, lr} +1003f99e: 2203 movs r2, #3 +1003f9a0: 4605 mov r5, r0 +1003f9a2: 460c mov r4, r1 +1003f9a4: f7ff ff8e bl 1003f8c4 +1003f9a8: f040 0340 orr.w r3, r0, #64 ; 0x40 +1003f9ac: 4621 mov r1, r4 +1003f9ae: 4628 mov r0, r5 +1003f9b0: 2203 movs r2, #3 +1003f9b2: b2db uxtb r3, r3 +1003f9b4: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003f9b8: f7ff bf93 b.w 1003f8e2 + +1003f9bc : +1003f9bc: f241 6318 movw r3, #5656 ; 0x1618 +1003f9c0: b530 push {r4, r5, lr} +1003f9c2: 58c4 ldr r4, [r0, r3] +1003f9c4: 2010 movs r0, #16 +1003f9c6: 3801 subs r0, #1 +1003f9c8: b2c0 uxtb r0, r0 +1003f9ca: 1823 adds r3, r4, r0 +1003f9cc: f893 1e2c ldrb.w r1, [r3, #3628] ; 0xe2c +1003f9d0: b169 cbz r1, 1003f9ee +1003f9d2: 2308 movs r3, #8 +1003f9d4: 1e5a subs r2, r3, #1 +1003f9d6: b2d2 uxtb r2, r2 +1003f9d8: fa21 f502 lsr.w r5, r1, r2 +1003f9dc: 07ed lsls r5, r5, #31 +1003f9de: d503 bpl.n 1003f9e8 +1003f9e0: eb03 00c0 add.w r0, r3, r0, lsl #3 +1003f9e4: b2c0 uxtb r0, r0 +1003f9e6: bd30 pop {r4, r5, pc} +1003f9e8: b10a cbz r2, 1003f9ee +1003f9ea: 4613 mov r3, r2 +1003f9ec: e7f2 b.n 1003f9d4 +1003f9ee: 2800 cmp r0, #0 +1003f9f0: d1e9 bne.n 1003f9c6 +1003f9f2: bd30 pop {r4, r5, pc} + +1003f9f4 : +1003f9f4: f241 6318 movw r3, #5656 ; 0x1618 +1003f9f8: 58c3 ldr r3, [r0, r3] +1003f9fa: eb03 03d1 add.w r3, r3, r1, lsr #3 +1003f9fe: f893 0e2c ldrb.w r0, [r3, #3628] ; 0xe2c +1003fa02: f001 0107 and.w r1, r1, #7 +1003fa06: 40c8 lsrs r0, r1 +1003fa08: f000 0001 and.w r0, r0, #1 +1003fa0c: 4770 bx lr + +1003fa0e : +1003fa0e: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1003fa12: 6805 ldr r5, [r0, #0] +1003fa14: 460c mov r4, r1 +1003fa16: 4628 mov r0, r5 +1003fa18: f891 103b ldrb.w r1, [r1, #59] ; 0x3b +1003fa1c: 4617 mov r7, r2 +1003fa1e: f7ff ffbd bl 1003f99c +1003fa22: 2014 movs r0, #20 +1003fa24: f7dd fb30 bl 1001d088 +1003fa28: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +1003fa2c: 2206 movs r2, #6 +1003fa2e: 4628 mov r0, r5 +1003fa30: f7ff ff48 bl 1003f8c4 +1003fa34: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +1003fa38: 4606 mov r6, r0 +1003fa3a: 2207 movs r2, #7 +1003fa3c: 4628 mov r0, r5 +1003fa3e: f7ff ff41 bl 1003f8c4 +1003fa42: b2f6 uxtb r6, r6 +1003fa44: b2c0 uxtb r0, r0 +1003fa46: ea46 2600 orr.w r6, r6, r0, lsl #8 +1003fa4a: 62a6 str r6, [r4, #40] ; 0x28 +1003fa4c: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +1003fa50: 220a movs r2, #10 +1003fa52: 4628 mov r0, r5 +1003fa54: f7ff ff36 bl 1003f8c4 +1003fa58: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +1003fa5c: 4606 mov r6, r0 +1003fa5e: 220b movs r2, #11 +1003fa60: 4628 mov r0, r5 +1003fa62: f7ff ff2f bl 1003f8c4 +1003fa66: b2f6 uxtb r6, r6 +1003fa68: b2c0 uxtb r0, r0 +1003fa6a: ea46 2600 orr.w r6, r6, r0, lsl #8 +1003fa6e: 2300 movs r3, #0 +1003fa70: 83a6 strh r6, [r4, #28] +1003fa72: 6463 str r3, [r4, #68] ; 0x44 +1003fa74: 2601 movs r6, #1 +1003fa76: f106 020b add.w r2, r6, #11 +1003fa7a: 4628 mov r0, r5 +1003fa7c: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +1003fa80: b2d2 uxtb r2, r2 +1003fa82: f7ff ff1f bl 1003f8c4 +1003fa86: eb04 0346 add.w r3, r4, r6, lsl #1 +1003fa8a: b2c0 uxtb r0, r0 +1003fa8c: 8398 strh r0, [r3, #28] +1003fa8e: 6c63 ldr r3, [r4, #68] ; 0x44 +1003fa90: fb00 3006 mla r0, r0, r6, r3 +1003fa94: 3601 adds r6, #1 +1003fa96: 2e05 cmp r6, #5 +1003fa98: 6460 str r0, [r4, #68] ; 0x44 +1003fa9a: d1ec bne.n 1003fa76 +1003fa9c: 6aa3 ldr r3, [r4, #40] ; 0x28 +1003fa9e: f894 103b ldrb.w r1, [r4, #59] ; 0x3b +1003faa2: 4418 add r0, r3 +1003faa4: 6460 str r0, [r4, #68] ; 0x44 +1003faa6: 2209 movs r2, #9 +1003faa8: 4628 mov r0, r5 +1003faaa: f7ff ff0b bl 1003f8c4 +1003faae: b2c0 uxtb r0, r0 +1003fab0: 85a0 strh r0, [r4, #44] ; 0x2c +1003fab2: 4621 mov r1, r4 +1003fab4: 4628 mov r0, r5 +1003fab6: f894 203b ldrb.w r2, [r4, #59] ; 0x3b +1003faba: 463b mov r3, r7 +1003fabc: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1003fac0: f7ff bf50 b.w 1003f964 + +1003fac4 : +1003fac4: b5f8 push {r3, r4, r5, r6, r7, lr} +1003fac6: f241 6318 movw r3, #5656 ; 0x1618 +1003faca: 58c7 ldr r7, [r0, r3] +1003facc: 2201 movs r2, #1 +1003face: f887 21ac strb.w r2, [r7, #428] ; 0x1ac +1003fad2: 2200 movs r2, #0 +1003fad4: f887 21ad strb.w r2, [r7, #429] ; 0x1ad +1003fad8: f887 21ae strb.w r2, [r7, #430] ; 0x1ae +1003fadc: 58c6 ldr r6, [r0, r3] +1003fade: 4b40 ldr r3, [pc, #256] ; (1003fbe0 ) +1003fae0: 4605 mov r5, r0 +1003fae2: f8c6 31b0 str.w r3, [r6, #432] ; 0x1b0 +1003fae6: f500 5397 add.w r3, r0, #4832 ; 0x12e0 +1003faea: 3318 adds r3, #24 +1003faec: f893 3071 ldrb.w r3, [r3, #113] ; 0x71 +1003faf0: f506 7400 add.w r4, r6, #512 ; 0x200 +1003faf4: 2b01 cmp r3, #1 +1003faf6: d06e beq.n 1003fbd6 +1003faf8: 2300 movs r3, #0 +1003fafa: f8d6 21b0 ldr.w r2, [r6, #432] ; 0x1b0 +1003fafe: 4620 mov r0, r4 +1003fb00: 2101 movs r1, #1 +1003fb02: f7fd fe91 bl 1003d828 +1003fb06: 4620 mov r0, r4 +1003fb08: 211d movs r1, #29 +1003fb0a: f605 1228 addw r2, r5, #2344 ; 0x928 +1003fb0e: f7fd fe31 bl 1003d774 +1003fb12: 4620 mov r0, r4 +1003fb14: 211e movs r1, #30 +1003fb16: f505 6230 add.w r2, r5, #2816 ; 0xb00 +1003fb1a: f7fd fe2b bl 1003d774 +1003fb1e: 4620 mov r0, r4 +1003fb20: 211f movs r1, #31 +1003fb22: f205 42f9 addw r2, r5, #1273 ; 0x4f9 +1003fb26: f7fd fe25 bl 1003d774 +1003fb2a: f106 0235 add.w r2, r6, #53 ; 0x35 +1003fb2e: 4620 mov r0, r4 +1003fb30: 2121 movs r1, #33 ; 0x21 +1003fb32: f7fd fe1f bl 1003d774 +1003fb36: 4620 mov r0, r4 +1003fb38: 2122 movs r1, #34 ; 0x22 +1003fb3a: f605 427c addw r2, r5, #3196 ; 0xc7c +1003fb3e: f7fd fe19 bl 1003d774 +1003fb42: f106 022c add.w r2, r6, #44 ; 0x2c +1003fb46: 4620 mov r0, r4 +1003fb48: 2123 movs r1, #35 ; 0x23 +1003fb4a: f7fd fe13 bl 1003d774 +1003fb4e: f106 0234 add.w r2, r6, #52 ; 0x34 +1003fb52: 4620 mov r0, r4 +1003fb54: 2124 movs r1, #36 ; 0x24 +1003fb56: f7fd fe0d bl 1003d774 +1003fb5a: f505 52bd add.w r2, r5, #6048 ; 0x17a0 +1003fb5e: 4620 mov r0, r4 +1003fb60: 2130 movs r1, #48 ; 0x30 +1003fb62: 3204 adds r2, #4 +1003fb64: f7fd fe06 bl 1003d774 +1003fb68: f505 5299 add.w r2, r5, #4896 ; 0x1320 +1003fb6c: 4620 mov r0, r4 +1003fb6e: 2131 movs r1, #49 ; 0x31 +1003fb70: 3211 adds r2, #17 +1003fb72: f7fd fdff bl 1003d774 +1003fb76: f106 0230 add.w r2, r6, #48 ; 0x30 +1003fb7a: 4620 mov r0, r4 +1003fb7c: 2120 movs r1, #32 +1003fb7e: f7fd fdf9 bl 1003d774 +1003fb82: f106 021e add.w r2, r6, #30 +1003fb86: 4620 mov r0, r4 +1003fb88: 2125 movs r1, #37 ; 0x25 +1003fb8a: f7fd fdf3 bl 1003d774 +1003fb8e: 4620 mov r0, r4 +1003fb90: 2129 movs r1, #41 ; 0x29 +1003fb92: f105 0214 add.w r2, r5, #20 +1003fb96: f7fd fded bl 1003d774 +1003fb9a: f505 529c add.w r2, r5, #4992 ; 0x1380 +1003fb9e: 4620 mov r0, r4 +1003fba0: 212a movs r1, #42 ; 0x2a +1003fba2: 3208 adds r2, #8 +1003fba4: f7fd fde6 bl 1003d774 +1003fba8: 2600 movs r6, #0 +1003fbaa: b2b2 uxth r2, r6 +1003fbac: 4620 mov r0, r4 +1003fbae: 2147 movs r1, #71 ; 0x47 +1003fbb0: 2300 movs r3, #0 +1003fbb2: 3601 adds r6, #1 +1003fbb4: f7fd fe30 bl 1003d818 +1003fbb8: 2e05 cmp r6, #5 +1003fbba: d1f6 bne.n 1003fbaa +1003fbbc: f241 3331 movw r3, #4913 ; 0x1331 +1003fbc0: 5ceb ldrb r3, [r5, r3] +1003fbc2: b91b cbnz r3, 1003fbcc +1003fbc4: f507 7000 add.w r0, r7, #512 ; 0x200 +1003fbc8: f7fd fed0 bl 1003d96c +1003fbcc: 22ff movs r2, #255 ; 0xff +1003fbce: f241 73c4 movw r3, #6084 ; 0x17c4 +1003fbd2: 54ea strb r2, [r5, r3] +1003fbd4: bdf8 pop {r3, r4, r5, r6, r7, pc} +1003fbd6: 4b03 ldr r3, [pc, #12] ; (1003fbe4 ) +1003fbd8: f8c6 31b0 str.w r3, [r6, #432] ; 0x1b0 +1003fbdc: e78c b.n 1003faf8 +1003fbde: bf00 nop +1003fbe0: 051040bf .word 0x051040bf +1003fbe4: 051060bf .word 0x051060bf + +1003fbe8 : +1003fbe8: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +1003fbec: 2301 movs r3, #1 +1003fbee: f88d 3007 strb.w r3, [sp, #7] +1003fbf2: f241 6318 movw r3, #5656 ; 0x1618 +1003fbf6: 58c7 ldr r7, [r0, r3] +1003fbf8: f241 73a8 movw r3, #6056 ; 0x17a8 +1003fbfc: f850 a003 ldr.w sl, [r0, r3] +1003fc00: f241 7311 movw r3, #5905 ; 0x1711 +1003fc04: 5cc5 ldrb r5, [r0, r3] +1003fc06: 4604 mov r4, r0 +1003fc08: 2d00 cmp r5, #0 +1003fc0a: d05b beq.n 1003fcc4 +1003fc0c: 212d movs r1, #45 ; 0x2d +1003fc0e: f10d 0207 add.w r2, sp, #7 +1003fc12: f7f7 fe91 bl 10037938 +1003fc16: 2d01 cmp r5, #1 +1003fc18: d154 bne.n 1003fcc4 +1003fc1a: 6923 ldr r3, [r4, #16] +1003fc1c: 4620 mov r0, r4 +1003fc1e: f3c3 09c0 ubfx r9, r3, #3, #1 +1003fc22: f7e4 fdea bl 100247fa +1003fc26: f894 87c4 ldrb.w r8, [r4, #1988] ; 0x7c4 +1003fc2a: b2c6 uxtb r6, r0 +1003fc2c: f118 0800 adds.w r8, r8, #0 +1003fc30: bf18 it ne +1003fc32: f04f 0801 movne.w r8, #1 +1003fc36: f1ba 0f00 cmp.w sl, #0 +1003fc3a: d006 beq.n 1003fc4a +1003fc3c: 4620 mov r0, r4 +1003fc3e: 4629 mov r1, r5 +1003fc40: f7e4 fe05 bl 1002484e +1003fc44: 2801 cmp r0, #1 +1003fc46: bf08 it eq +1003fc48: 2601 moveq r6, #1 +1003fc4a: f507 7500 add.w r5, r7, #512 ; 0x200 +1003fc4e: 4628 mov r0, r5 +1003fc50: 2139 movs r1, #57 ; 0x39 +1003fc52: fa5f f289 uxtb.w r2, r9 +1003fc56: 2300 movs r3, #0 +1003fc58: f7fd fde6 bl 1003d828 +1003fc5c: 4628 mov r0, r5 +1003fc5e: 2138 movs r1, #56 ; 0x38 +1003fc60: b2f2 uxtb r2, r6 +1003fc62: 2300 movs r3, #0 +1003fc64: f7fd fde0 bl 1003d828 +1003fc68: 2146 movs r1, #70 ; 0x46 +1003fc6a: fa5f f288 uxtb.w r2, r8 +1003fc6e: 2300 movs r3, #0 +1003fc70: 4628 mov r0, r5 +1003fc72: f7fd fdd9 bl 1003d828 +1003fc76: f241 71a8 movw r1, #6056 ; 0x17a8 +1003fc7a: 5861 ldr r1, [r4, r1] +1003fc7c: f241 6218 movw r2, #5656 ; 0x1618 +1003fc80: 58a3 ldr r3, [r4, r2] +1003fc82: b151 cbz r1, 1003fc9a +1003fc84: 588a ldr r2, [r1, r2] +1003fc86: f8d3 11bc ldr.w r1, [r3, #444] ; 0x1bc +1003fc8a: f8d2 21bc ldr.w r2, [r2, #444] ; 0x1bc +1003fc8e: b111 cbz r1, 1003fc96 +1003fc90: b11a cbz r2, 1003fc9a +1003fc92: 4291 cmp r1, r2 +1003fc94: dd01 ble.n 1003fc9a +1003fc96: f8c3 21bc str.w r2, [r3, #444] ; 0x1bc +1003fc9a: 6922 ldr r2, [r4, #16] +1003fc9c: f012 0f01 tst.w r2, #1 +1003fca0: f8d3 21bc ldr.w r2, [r3, #444] ; 0x1bc +1003fca4: d102 bne.n 1003fcac +1003fca6: b90a cbnz r2, 1003fcac +1003fca8: f8c3 21c4 str.w r2, [r3, #452] ; 0x1c4 +1003fcac: f8c3 21c4 str.w r2, [r3, #452] ; 0x1c4 +1003fcb0: f8d7 21c4 ldr.w r2, [r7, #452] ; 0x1c4 +1003fcb4: 4628 mov r0, r5 +1003fcb6: 213a movs r1, #58 ; 0x3a +1003fcb8: 17d3 asrs r3, r2, #31 +1003fcba: f7fd fdb5 bl 1003d828 +1003fcbe: 4628 mov r0, r5 +1003fcc0: f7fd fea4 bl 1003da0c +1003fcc4: b002 add sp, #8 +1003fcc6: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + ... + +1003fccc : +1003fccc: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1003fcd0: f241 6418 movw r4, #5656 ; 0x1618 +1003fcd4: 4606 mov r6, r0 +1003fcd6: 5900 ldr r0, [r0, r4] +1003fcd8: 2100 movs r1, #0 +1003fcda: f500 70d6 add.w r0, r0, #428 ; 0x1ac +1003fcde: 2254 movs r2, #84 ; 0x54 +1003fce0: f7dd f876 bl 1001cdd0 +1003fce4: 5935 ldr r5, [r6, r4] +1003fce6: 2100 movs r1, #0 +1003fce8: f505 7400 add.w r4, r5, #512 ; 0x200 +1003fcec: 4620 mov r0, r4 +1003fcee: 2204 movs r2, #4 +1003fcf0: f7dd f86e bl 1001cdd0 +1003fcf4: 4620 mov r0, r4 +1003fcf6: 2100 movs r1, #0 +1003fcf8: 2210 movs r2, #16 +1003fcfa: f8c5 6200 str.w r6, [r5, #512] ; 0x200 +1003fcfe: f7fd fcbf bl 1003d680 +1003fd02: 4620 mov r0, r4 +1003fd04: 2102 movs r1, #2 +1003fd06: 8872 ldrh r2, [r6, #2] +1003fd08: f7fd fcba bl 1003d680 +1003fd0c: 4620 mov r0, r4 +1003fd0e: 210a movs r1, #10 +1003fd10: f895 203d ldrb.w r2, [r5, #61] ; 0x3d +1003fd14: f7fd fcb4 bl 1003d680 +1003fd18: 4620 mov r0, r4 +1003fd1a: 2104 movs r1, #4 +1003fd1c: f44f 5200 mov.w r2, #8192 ; 0x2000 +1003fd20: f7fd fcae bl 1003d680 +1003fd24: 4b1e ldr r3, [pc, #120] ; (1003fda0 ) +1003fd26: 4620 mov r0, r4 +1003fd28: 681f ldr r7, [r3, #0] +1003fd2a: 2106 movs r1, #6 +1003fd2c: 2200 movs r2, #0 +1003fd2e: f7fd fca7 bl 1003d680 +1003fd32: 4620 mov r0, r4 +1003fd34: 2105 movs r1, #5 +1003fd36: f3c7 1203 ubfx r2, r7, #4, #4 +1003fd3a: f7fd fca1 bl 1003d680 +1003fd3e: 686a ldr r2, [r5, #4] +1003fd40: 4620 mov r0, r4 +1003fd42: 1e53 subs r3, r2, #1 +1003fd44: 425a negs r2, r3 +1003fd46: 415a adcs r2, r3 +1003fd48: 2103 movs r1, #3 +1003fd4a: f7fd fc99 bl 1003d680 +1003fd4e: 4620 mov r0, r4 +1003fd50: 211b movs r1, #27 +1003fd52: 2220 movs r2, #32 +1003fd54: f7fd fc94 bl 1003d680 +1003fd58: 4620 mov r0, r4 +1003fd5a: 2114 movs r1, #20 +1003fd5c: 8baa ldrh r2, [r5, #28] +1003fd5e: f7fd fc8f bl 1003d680 +1003fd62: f241 3342 movw r3, #4930 ; 0x1342 +1003fd66: 5cf2 ldrb r2, [r6, r3] +1003fd68: 4620 mov r0, r4 +1003fd6a: 2116 movs r1, #22 +1003fd6c: f7fd fc88 bl 1003d680 +1003fd70: f895 303c ldrb.w r3, [r5, #60] ; 0x3c +1003fd74: 2b03 cmp r3, #3 +1003fd76: d105 bne.n 1003fd84 +1003fd78: 4620 mov r0, r4 +1003fd7a: 2107 movs r1, #7 +1003fd7c: 2200 movs r2, #0 +1003fd7e: 2300 movs r3, #0 +1003fd80: f7fd fd52 bl 1003d828 +1003fd84: f04f 63a0 mov.w r3, #83886080 ; 0x5000000 +1003fd88: f8c5 31b0 str.w r3, [r5, #432] ; 0x1b0 +1003fd8c: 4620 mov r0, r4 +1003fd8e: 2101 movs r1, #1 +1003fd90: f04f 62a0 mov.w r2, #83886080 ; 0x5000000 +1003fd94: 2300 movs r3, #0 +1003fd96: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +1003fd9a: f7fd bd45 b.w 1003d828 +1003fd9e: bf00 nop +1003fda0: 400001f0 .word 0x400001f0 + +1003fda4 : +1003fda4: 4770 bx lr + +1003fda6 : +1003fda6: b570 push {r4, r5, r6, lr} +1003fda8: 2205 movs r2, #5 +1003fdaa: 4605 mov r5, r0 +1003fdac: 460c mov r4, r1 +1003fdae: f7ff fdd2 bl 1003f956 +1003fdb2: 4621 mov r1, r4 +1003fdb4: f000 03fb and.w r3, r0, #251 ; 0xfb +1003fdb8: 2205 movs r2, #5 +1003fdba: 4628 mov r0, r5 +1003fdbc: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003fdc0: f7ff bdce b.w 1003f960 + +1003fdc4 : +1003fdc4: b570 push {r4, r5, r6, lr} +1003fdc6: 2205 movs r2, #5 +1003fdc8: 4605 mov r5, r0 +1003fdca: 460c mov r4, r1 +1003fdcc: f7ff fdc3 bl 1003f956 +1003fdd0: f040 0304 orr.w r3, r0, #4 +1003fdd4: 4621 mov r1, r4 +1003fdd6: 4628 mov r0, r5 +1003fdd8: 2205 movs r2, #5 +1003fdda: b2db uxtb r3, r3 +1003fddc: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +1003fde0: f7ff bdbe b.w 1003f960 + +1003fde4 : +1003fde4: f241 6318 movw r3, #5656 ; 0x1618 +1003fde8: 58c1 ldr r1, [r0, r3] +1003fdea: 2300 movs r3, #0 +1003fdec: 461a mov r2, r3 +1003fdee: 18c8 adds r0, r1, r3 +1003fdf0: f890 0e2c ldrb.w r0, [r0, #3628] ; 0xe2c +1003fdf4: 3301 adds r3, #1 +1003fdf6: 2b10 cmp r3, #16 +1003fdf8: ea42 0200 orr.w r2, r2, r0 +1003fdfc: d1f7 bne.n 1003fdee +1003fdfe: b11a cbz r2, 1003fe08 +1003fe00: 2301 movs r3, #1 +1003fe02: f881 3e3c strb.w r3, [r1, #3644] ; 0xe3c +1003fe06: 4770 bx lr +1003fe08: f881 2e3c strb.w r2, [r1, #3644] ; 0xe3c +1003fe0c: 4770 bx lr + +1003fe0e : +1003fe0e: b530 push {r4, r5, lr} +1003fe10: f241 6418 movw r4, #5656 ; 0x1618 +1003fe14: 5905 ldr r5, [r0, r4] +1003fe16: f001 0407 and.w r4, r1, #7 +1003fe1a: eb05 03d1 add.w r3, r5, r1, lsr #3 +1003fe1e: 2501 movs r5, #1 +1003fe20: fa05 f404 lsl.w r4, r5, r4 +1003fe24: b94a cbnz r2, 1003fe3a +1003fe26: f893 2e2c ldrb.w r2, [r3, #3628] ; 0xe2c +1003fe2a: ea22 0404 bic.w r4, r2, r4 +1003fe2e: f883 4e2c strb.w r4, [r3, #3628] ; 0xe2c +1003fe32: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1003fe36: f7ff bfc5 b.w 1003fdc4 +1003fe3a: f893 2e2c ldrb.w r2, [r3, #3628] ; 0xe2c +1003fe3e: 4314 orrs r4, r2 +1003fe40: f883 4e2c strb.w r4, [r3, #3628] ; 0xe2c +1003fe44: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1003fe48: f7ff bfad b.w 1003fda6 + +1003fe4c : +1003fe4c: b5f8 push {r3, r4, r5, r6, r7, lr} +1003fe4e: 780b ldrb r3, [r1, #0] +1003fe50: 784c ldrb r4, [r1, #1] +1003fe52: 079b lsls r3, r3, #30 +1003fe54: bf48 it mi +1003fe56: 788f ldrbmi r7, [r1, #2] +1003fe58: 4606 mov r6, r0 +1003fe5a: 460d mov r5, r1 +1003fe5c: bf58 it pl +1003fe5e: 4627 movpl r7, r4 +1003fe60: 42bc cmp r4, r7 +1003fe62: d809 bhi.n 1003fe78 +1003fe64: 782a ldrb r2, [r5, #0] +1003fe66: 4621 mov r1, r4 +1003fe68: 4630 mov r0, r6 +1003fe6a: f002 0201 and.w r2, r2, #1 +1003fe6e: 3401 adds r4, #1 +1003fe70: f7ff ffcd bl 1003fe0e +1003fe74: b2e4 uxtb r4, r4 +1003fe76: e7f3 b.n 1003fe60 +1003fe78: 4630 mov r0, r6 +1003fe7a: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +1003fe7e: f7ff bfb1 b.w 1003fde4 + ... + +1003fe84 : +1003fe84: b570 push {r4, r5, r6, lr} +1003fe86: 4b21 ldr r3, [pc, #132] ; (1003ff0c ) +1003fe88: 6818 ldr r0, [r3, #0] +1003fe8a: 784b ldrb r3, [r1, #1] +1003fe8c: b913 cbnz r3, 1003fe94 +1003fe8e: 788b ldrb r3, [r1, #2] +1003fe90: b9f3 cbnz r3, 1003fed0 +1003fe92: bd70 pop {r4, r5, r6, pc} +1003fe94: 688a ldr r2, [r1, #8] +1003fe96: b285 uxth r5, r0 +1003fe98: 441d add r5, r3 +1003fe9a: eb02 16c3 add.w r6, r2, r3, lsl #7 +1003fe9e: 4b1c ldr r3, [pc, #112] ; (1003ff10 ) +1003fea0: f240 7287 movw r2, #1927 ; 0x787 +1003fea4: 01ed lsls r5, r5, #7 +1003fea6: f405 6578 and.w r5, r5, #3968 ; 0xf80 +1003feaa: 801a strh r2, [r3, #0] +1003feac: 4a19 ldr r2, [pc, #100] ; (1003ff14 ) +1003feae: f105 4380 add.w r3, r5, #1073741824 ; 0x40000000 +1003feb2: f503 2308 add.w r3, r3, #557056 ; 0x88000 +1003feb6: 442a add r2, r5 +1003feb8: 1b74 subs r4, r6, r5 +1003feba: 441c add r4, r3 +1003febc: f104 4440 add.w r4, r4, #3221225472 ; 0xc0000000 +1003fec0: f5a4 2408 sub.w r4, r4, #557056 ; 0x88000 +1003fec4: 6824 ldr r4, [r4, #0] +1003fec6: f843 4b04 str.w r4, [r3], #4 +1003feca: 4293 cmp r3, r2 +1003fecc: d1f4 bne.n 1003feb8 +1003fece: e7de b.n 1003fe8e +1003fed0: 688c ldr r4, [r1, #8] +1003fed2: b280 uxth r0, r0 +1003fed4: 4418 add r0, r3 +1003fed6: eb04 14c3 add.w r4, r4, r3, lsl #7 +1003feda: 4b0d ldr r3, [pc, #52] ; (1003ff10 ) +1003fedc: f240 7287 movw r2, #1927 ; 0x787 +1003fee0: 01c0 lsls r0, r0, #7 +1003fee2: f400 6078 and.w r0, r0, #3968 ; 0xf80 +1003fee6: 801a strh r2, [r3, #0] +1003fee8: 4a0b ldr r2, [pc, #44] ; (1003ff18 ) +1003feea: f100 4380 add.w r3, r0, #1073741824 ; 0x40000000 +1003feee: f503 2308 add.w r3, r3, #557056 ; 0x88000 +1003fef2: 4402 add r2, r0 +1003fef4: 1a21 subs r1, r4, r0 +1003fef6: 4419 add r1, r3 +1003fef8: f101 4140 add.w r1, r1, #3221225472 ; 0xc0000000 +1003fefc: f5a1 2108 sub.w r1, r1, #557056 ; 0x88000 +1003ff00: 6809 ldr r1, [r1, #0] +1003ff02: f843 1b04 str.w r1, [r3], #4 +1003ff06: 4293 cmp r3, r2 +1003ff08: d1f4 bne.n 1003fef4 +1003ff0a: bd70 pop {r4, r5, r6, pc} +1003ff0c: 40080424 .word 0x40080424 +1003ff10: 40080140 .word 0x40080140 +1003ff14: 40088038 .word 0x40088038 +1003ff18: 40088040 .word 0x40088040 + +1003ff1c : +1003ff1c: b508 push {r3, lr} +1003ff1e: 460b mov r3, r1 +1003ff20: 2b20 cmp r3, #32 +1003ff22: 4611 mov r1, r2 +1003ff24: f241 6218 movw r2, #5656 ; 0x1618 +1003ff28: 5882 ldr r2, [r0, r2] +1003ff2a: d012 beq.n 1003ff52 +1003ff2c: d805 bhi.n 1003ff3a +1003ff2e: b19b cbz r3, 1003ff58 +1003ff30: 2b01 cmp r3, #1 +1003ff32: d113 bne.n 1003ff5c +1003ff34: f7ff ff8a bl 1003fe4c +1003ff38: e010 b.n 1003ff5c +1003ff3a: 2b40 cmp r3, #64 ; 0x40 +1003ff3c: d004 beq.n 1003ff48 +1003ff3e: 2bc2 cmp r3, #194 ; 0xc2 +1003ff40: d10c bne.n 1003ff5c +1003ff42: f7f6 fb21 bl 10036588 +1003ff46: e009 b.n 1003ff5c +1003ff48: f502 7000 add.w r0, r2, #512 ; 0x200 +1003ff4c: f7fd f99e bl 1003d28c +1003ff50: e004 b.n 1003ff5c +1003ff52: f7f6 fa17 bl 10036384 +1003ff56: e001 b.n 1003ff5c +1003ff58: f7ff ff94 bl 1003fe84 +1003ff5c: 2000 movs r0, #0 +1003ff5e: bd08 pop {r3, pc} + +1003ff60 : +1003ff60: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} +1003ff64: 9c0c ldr r4, [sp, #48] ; 0x30 +1003ff66: 4607 mov r7, r0 +1003ff68: 9100 str r1, [sp, #0] +1003ff6a: 4693 mov fp, r2 +1003ff6c: 9301 str r3, [sp, #4] +1003ff6e: 2500 movs r5, #0 +1003ff70: 78e1 ldrb r1, [r4, #3] +1003ff72: 7922 ldrb r2, [r4, #4] +1003ff74: 0908 lsrs r0, r1, #4 +1003ff76: f001 010f and.w r1, r1, #15 +1003ff7a: ea1b 0f01 tst.w fp, r1 +1003ff7e: f8b4 a000 ldrh.w sl, [r4] +1003ff82: f894 c002 ldrb.w ip, [r4, #2] +1003ff86: ea4f 1212 mov.w r2, r2, lsr #4 +1003ff8a: 7966 ldrb r6, [r4, #5] +1003ff8c: f894 8006 ldrb.w r8, [r4, #6] +1003ff90: d03e beq.n 10040010 +1003ff92: 9b00 ldr r3, [sp, #0] +1003ff94: ea1c 0f03 tst.w ip, r3 +1003ff98: d03a beq.n 10040010 +1003ff9a: 9b01 ldr r3, [sp, #4] +1003ff9c: 4203 tst r3, r0 +1003ff9e: d037 beq.n 10040010 +1003ffa0: 3a01 subs r2, #1 +1003ffa2: 2a03 cmp r2, #3 +1003ffa4: d834 bhi.n 10040010 +1003ffa6: e8df f002 tbb [pc, r2] +1003ffaa: 1902 .short 0x1902 +1003ffac: 3528 .short 0x3528 +1003ffae: 4651 mov r1, sl +1003ffb0: 4638 mov r0, r7 +1003ffb2: f7fc fb4d bl 1003c650 +1003ffb6: ea20 0006 bic.w r0, r0, r6 +1003ffba: b2c2 uxtb r2, r0 +1003ffbc: ea08 0606 and.w r6, r8, r6 +1003ffc0: 4638 mov r0, r7 +1003ffc2: 4651 mov r1, sl +1003ffc4: 4332 orrs r2, r6 +1003ffc6: f7fc fb58 bl 1003c67a +1003ffca: e021 b.n 10040010 +1003ffcc: 2201 movs r2, #1 +1003ffce: f241 3188 movw r1, #5000 ; 0x1388 +1003ffd2: 4589 cmp r9, r1 +1003ffd4: f105 0501 add.w r5, r5, #1 +1003ffd8: d81e bhi.n 10040018 +1003ffda: b9ca cbnz r2, 10040010 +1003ffdc: 4638 mov r0, r7 +1003ffde: 4651 mov r1, sl +1003ffe0: f7fc fb36 bl 1003c650 +1003ffe4: ea08 0206 and.w r2, r8, r6 +1003ffe8: 4030 ands r0, r6 +1003ffea: 4290 cmp r0, r2 +1003ffec: 46a9 mov r9, r5 +1003ffee: d0ed beq.n 1003ffcc +1003fff0: 200a movs r0, #10 +1003fff2: f7dd f849 bl 1001d088 +1003fff6: 2200 movs r2, #0 +1003fff8: e7e9 b.n 1003ffce +1003fffa: f1b8 0f00 cmp.w r8, #0 +1003fffe: d101 bne.n 10040004 +10040000: 4650 mov r0, sl +10040002: e003 b.n 1004000c +10040004: f44f 707a mov.w r0, #1000 ; 0x3e8 +10040008: fb00 f00a mul.w r0, r0, sl +1004000c: f7dd f83c bl 1001d088 +10040010: 3408 adds r4, #8 +10040012: e7ad b.n 1003ff70 +10040014: 2001 movs r0, #1 +10040016: e000 b.n 1004001a +10040018: 2000 movs r0, #0 +1004001a: b003 add sp, #12 +1004001c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + +10040020 : +10040020: b508 push {r3, lr} +10040022: 4b02 ldr r3, [pc, #8] ; (1004002c ) +10040024: 6818 ldr r0, [r3, #0] +10040026: b100 cbz r0, 1004002a +10040028: 4780 blx r0 +1004002a: bd08 pop {r3, pc} +1004002c: 1004ce20 .word 0x1004ce20 + +10040030 : +10040030: b508 push {r3, lr} +10040032: 4b02 ldr r3, [pc, #8] ; (1004003c ) +10040034: 685b ldr r3, [r3, #4] +10040036: b103 cbz r3, 1004003a +10040038: 4798 blx r3 +1004003a: bd08 pop {r3, pc} +1004003c: 1004ce20 .word 0x1004ce20 + +10040040 : +10040040: b508 push {r3, lr} +10040042: 4b02 ldr r3, [pc, #8] ; (1004004c ) +10040044: 689b ldr r3, [r3, #8] +10040046: b103 cbz r3, 1004004a +10040048: 4798 blx r3 +1004004a: bd08 pop {r3, pc} +1004004c: 1004ce20 .word 0x1004ce20 + +10040050 : +10040050: b508 push {r3, lr} +10040052: 4b02 ldr r3, [pc, #8] ; (1004005c ) +10040054: 68db ldr r3, [r3, #12] +10040056: b103 cbz r3, 1004005a +10040058: 4798 blx r3 +1004005a: bd08 pop {r3, pc} +1004005c: 1004ce20 .word 0x1004ce20 + +10040060 : +10040060: b508 push {r3, lr} +10040062: 2024 movs r0, #36 ; 0x24 +10040064: f7dc fe84 bl 1001cd70 +10040068: b1a0 cbz r0, 10040094 +1004006a: 4b0b ldr r3, [pc, #44] ; (10040098 ) +1004006c: 681a ldr r2, [r3, #0] +1004006e: f042 0201 orr.w r2, r2, #1 +10040072: 601a str r2, [r3, #0] +10040074: 681a ldr r2, [r3, #0] +10040076: f042 0202 orr.w r2, r2, #2 +1004007a: 601a str r2, [r3, #0] +1004007c: f853 2c34 ldr.w r2, [r3, #-52] +10040080: f042 0204 orr.w r2, r2, #4 +10040084: f843 2c34 str.w r2, [r3, #-52] +10040088: f853 2c30 ldr.w r2, [r3, #-48] +1004008c: f442 3280 orr.w r2, r2, #65536 ; 0x10000 +10040090: f843 2c30 str.w r2, [r3, #-48] +10040094: bd08 pop {r3, pc} +10040096: bf00 nop +10040098: 40000244 .word 0x40000244 + +1004009c : +1004009c: b508 push {r3, lr} +1004009e: b110 cbz r0, 100400a6 +100400a0: 2124 movs r1, #36 ; 0x24 +100400a2: f7dc fe7b bl 1001cd9c +100400a6: 4b0b ldr r3, [pc, #44] ; (100400d4 ) +100400a8: 681b ldr r3, [r3, #0] +100400aa: 4b0b ldr r3, [pc, #44] ; (100400d8 ) +100400ac: 681a ldr r2, [r3, #0] +100400ae: f422 3280 bic.w r2, r2, #65536 ; 0x10000 +100400b2: 601a str r2, [r3, #0] +100400b4: f853 2c04 ldr.w r2, [r3, #-4] +100400b8: f022 0204 bic.w r2, r2, #4 +100400bc: f843 2c04 str.w r2, [r3, #-4] +100400c0: 6b1a ldr r2, [r3, #48] ; 0x30 +100400c2: f022 0201 bic.w r2, r2, #1 +100400c6: 631a str r2, [r3, #48] ; 0x30 +100400c8: 6b1a ldr r2, [r3, #48] ; 0x30 +100400ca: f022 0202 bic.w r2, r2, #2 +100400ce: 631a str r2, [r3, #48] ; 0x30 +100400d0: bd08 pop {r3, pc} +100400d2: bf00 nop +100400d4: 40080000 .word 0x40080000 +100400d8: 40000214 .word 0x40000214 + +100400dc : +100400dc: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100400e0: f8df 8048 ldr.w r8, [pc, #72] ; 1004012c +100400e4: b088 sub sp, #32 +100400e6: 4604 mov r4, r0 +100400e8: 230f movs r3, #15 +100400ea: 9002 str r0, [sp, #8] +100400ec: 270e movs r7, #14 +100400ee: 4e0d ldr r6, [pc, #52] ; (10040124 ) +100400f0: 4668 mov r0, sp +100400f2: 9301 str r3, [sp, #4] +100400f4: 4d0c ldr r5, [pc, #48] ; (10040128 ) +100400f6: f8cd 8000 str.w r8, [sp] +100400fa: 9703 str r7, [sp, #12] +100400fc: 47b0 blx r6 +100400fe: 4668 mov r0, sp +10040100: 47a8 blx r5 +10040102: 2310 movs r3, #16 +10040104: eb0d 0003 add.w r0, sp, r3 +10040108: 9305 str r3, [sp, #20] +1004010a: 9406 str r4, [sp, #24] +1004010c: f8cd 8010 str.w r8, [sp, #16] +10040110: 9707 str r7, [sp, #28] +10040112: 47b0 blx r6 +10040114: a804 add r0, sp, #16 +10040116: 47a8 blx r5 +10040118: 2301 movs r3, #1 +1004011a: 7723 strb r3, [r4, #28] +1004011c: 7763 strb r3, [r4, #29] +1004011e: b008 add sp, #32 +10040120: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10040124: 00004029 .word 0x00004029 +10040128: 000040f1 .word 0x000040f1 +1004012c: 10040235 .word 0x10040235 + +10040130 : +10040130: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10040134: 7f03 ldrb r3, [r0, #28] +10040136: b088 sub sp, #32 +10040138: 4604 mov r4, r0 +1004013a: b1e3 cbz r3, 10040176 +1004013c: f8df 8044 ldr.w r8, [pc, #68] ; 10040184 +10040140: 230f movs r3, #15 +10040142: 9002 str r0, [sp, #8] +10040144: 270e movs r7, #14 +10040146: 4668 mov r0, sp +10040148: 4e0c ldr r6, [pc, #48] ; (1004017c ) +1004014a: 9301 str r3, [sp, #4] +1004014c: 4d0c ldr r5, [pc, #48] ; (10040180 ) +1004014e: f8cd 8000 str.w r8, [sp] +10040152: 9703 str r7, [sp, #12] +10040154: 47b0 blx r6 +10040156: 4668 mov r0, sp +10040158: 47a8 blx r5 +1004015a: 2310 movs r3, #16 +1004015c: eb0d 0003 add.w r0, sp, r3 +10040160: 9305 str r3, [sp, #20] +10040162: 9406 str r4, [sp, #24] +10040164: f8cd 8010 str.w r8, [sp, #16] +10040168: 9707 str r7, [sp, #28] +1004016a: 47b0 blx r6 +1004016c: a804 add r0, sp, #16 +1004016e: 47a8 blx r5 +10040170: 2300 movs r3, #0 +10040172: 7763 strb r3, [r4, #29] +10040174: 7723 strb r3, [r4, #28] +10040176: b008 add sp, #32 +10040178: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +1004017c: 0000418d .word 0x0000418d +10040180: 00004091 .word 0x00004091 +10040184: 10040235 .word 0x10040235 + +10040188 : +10040188: b510 push {r4, lr} +1004018a: f241 73b1 movw r3, #6065 ; 0x17b1 +1004018e: 5cc3 ldrb r3, [r0, r3] +10040190: 4604 mov r4, r0 +10040192: b12b cbz r3, 100401a0 +10040194: f241 73a8 movw r3, #6056 ; 0x17a8 +10040198: 58c3 ldr r3, [r0, r3] +1004019a: 2b00 cmp r3, #0 +1004019c: bf18 it ne +1004019e: 461c movne r4, r3 +100401a0: f241 63fc movw r3, #5884 ; 0x16fc +100401a4: 58e3 ldr r3, [r4, r3] +100401a6: b953 cbnz r3, 100401be +100401a8: f241 6374 movw r3, #5748 ; 0x1674 +100401ac: 58e3 ldr r3, [r4, r3] +100401ae: b10b cbz r3, 100401b4 +100401b0: 4620 mov r0, r4 +100401b2: 4798 blx r3 +100401b4: 4620 mov r0, r4 +100401b6: e8bd 4010 ldmia.w sp!, {r4, lr} +100401ba: f7f7 bc18 b.w 100379ee +100401be: bd10 pop {r4, pc} + +100401c0 : +100401c0: b570 push {r4, r5, r6, lr} +100401c2: 4604 mov r4, r0 +100401c4: f504 55b9 add.w r5, r4, #5920 ; 0x1720 +100401c8: 4818 ldr r0, [pc, #96] ; (1004022c ) +100401ca: 4e19 ldr r6, [pc, #100] ; (10040230 ) +100401cc: f7dd f83c bl 1001d248 +100401d0: 4628 mov r0, r5 +100401d2: 6035 str r5, [r6, #0] +100401d4: f7dc fe32 bl 1001ce3c +100401d8: 4628 mov r0, r5 +100401da: f7dc fe49 bl 1001ce70 +100401de: f504 53b8 add.w r3, r4, #5888 ; 0x1700 +100401e2: 791a ldrb r2, [r3, #4] +100401e4: f504 50b8 add.w r0, r4, #5888 ; 0x1700 +100401e8: 3018 adds r0, #24 +100401ea: b98a cbnz r2, 10040210 +100401ec: 6902 ldr r2, [r0, #16] +100401ee: b97a cbnz r2, 10040210 +100401f0: f504 52b7 add.w r2, r4, #5856 ; 0x16e0 +100401f4: 3218 adds r2, #24 +100401f6: 6812 ldr r2, [r2, #0] +100401f8: 2a01 cmp r2, #1 +100401fa: d009 beq.n 10040210 +100401fc: f504 52b7 add.w r2, r4, #5856 ; 0x16e0 +10040200: 321c adds r2, #28 +10040202: 6812 ldr r2, [r2, #0] +10040204: 2a01 cmp r2, #1 +10040206: d003 beq.n 10040210 +10040208: 4620 mov r0, r4 +1004020a: f7f7 fc8f bl 10037b2c +1004020e: e7e3 b.n 100401d8 +10040210: 2102 movs r1, #2 +10040212: f241 7204 movw r2, #5892 ; 0x1704 +10040216: 54a1 strb r1, [r4, r2] +10040218: 300c adds r0, #12 +1004021a: 2200 movs r2, #0 +1004021c: 6032 str r2, [r6, #0] +1004021e: f7dc fe0d bl 1001ce3c +10040222: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10040226: f7dd b819 b.w 1001d25c +1004022a: bf00 nop +1004022c: 1004ce30 .word 0x1004ce30 +10040230: 10055584 .word 0x10055584 + +10040234 : +10040234: b538 push {r3, r4, r5, lr} +10040236: 6804 ldr r4, [r0, #0] +10040238: f241 6318 movw r3, #5656 ; 0x1618 +1004023c: 4605 mov r5, r0 +1004023e: 58e0 ldr r0, [r4, r3] +10040240: f890 3e7c ldrb.w r3, [r0, #3708] ; 0xe7c +10040244: b11b cbz r3, 1004024e +10040246: f500 6067 add.w r0, r0, #3696 ; 0xe70 +1004024a: f7f5 f92d bl 100354a8 +1004024e: 7f6b ldrb r3, [r5, #29] +10040250: b17b cbz r3, 10040272 +10040252: 4620 mov r0, r4 +10040254: f7f0 fb22 bl 1003089c +10040258: 4620 mov r0, r4 +1004025a: f7f0 fa93 bl 10030784 +1004025e: 4b06 ldr r3, [pc, #24] ; (10040278 ) +10040260: 681b ldr r3, [r3, #0] +10040262: b133 cbz r3, 10040272 +10040264: b110 cbz r0, 1004026c +10040266: 4618 mov r0, r3 +10040268: f7dc fdf0 bl 1001ce4c +1004026c: 4620 mov r0, r4 +1004026e: f7f0 fae1 bl 10030834 +10040272: 2001 movs r0, #1 +10040274: bd38 pop {r3, r4, r5, pc} +10040276: bf00 nop +10040278: 10055584 .word 0x10055584 + +1004027c : +1004027c: 4a03 ldr r2, [pc, #12] ; (1004028c ) +1004027e: 4b04 ldr r3, [pc, #16] ; (10040290 ) +10040280: 68d1 ldr r1, [r2, #12] +10040282: 6952 ldr r2, [r2, #20] +10040284: 6019 str r1, [r3, #0] +10040286: 605a str r2, [r3, #4] +10040288: 4770 bx lr +1004028a: bf00 nop +1004028c: 10047f0c .word 0x10047f0c +10040290: 100006d4 .word 0x100006d4 + +10040294 : +10040294: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} +10040298: 4f54 ldr r7, [pc, #336] ; (100403ec ) +1004029a: f04f 0800 mov.w r8, #0 +1004029e: 4605 mov r5, r0 +100402a0: f507 7942 add.w r9, r7, #776 ; 0x308 +100402a4: 4644 mov r4, r8 +100402a6: 4646 mov r6, r8 +100402a8: 2301 movs r3, #1 +100402aa: 454f cmp r7, r9 +100402ac: f000 809c beq.w 100403e8 +100402b0: f857 1c04 ldr.w r1, [r7, #-4] +100402b4: 683a ldr r2, [r7, #0] +100402b6: f011 4f40 tst.w r1, #3221225472 ; 0xc0000000 +100402ba: f000 8083 beq.w 100403c4 +100402be: 2900 cmp r1, #0 +100402c0: da0a bge.n 100402d8 +100402c2: f3c1 7001 ubfx r0, r1, #28, #2 +100402c6: 2803 cmp r0, #3 +100402c8: f000 8082 beq.w 100403d0 +100402cc: 2802 cmp r0, #2 +100402ce: f040 8082 bne.w 100403d6 +100402d2: f086 0301 eor.w r3, r6, #1 +100402d6: e085 b.n 100403e4 +100402d8: 2e00 cmp r6, #0 +100402da: f040 8082 bne.w 100403e2 +100402de: f895 0030 ldrb.w r0, [r5, #48] ; 0x30 +100402e2: f895 c021 ldrb.w ip, [r5, #33] ; 0x21 +100402e6: 0600 lsls r0, r0, #24 +100402e8: f895 1028 ldrb.w r1, [r5, #40] ; 0x28 +100402ec: ea40 400c orr.w r0, r0, ip, lsl #16 +100402f0: f895 c035 ldrb.w ip, [r5, #53] ; 0x35 +100402f4: f895 3034 ldrb.w r3, [r5, #52] ; 0x34 +100402f8: ea40 300c orr.w r0, r0, ip, lsl #12 +100402fc: f001 0cf0 and.w ip, r1, #240 ; 0xf0 +10040300: ea40 400c orr.w r0, r0, ip, lsl #16 +10040304: f001 010f and.w r1, r1, #15 +10040308: ea40 2101 orr.w r1, r0, r1, lsl #8 +1004030c: ea4f 1cd3 mov.w ip, r3, lsr #7 +10040310: f3c3 1000 ubfx r0, r3, #4, #1 +10040314: ea40 008c orr.w r0, r0, ip, lsl #2 +10040318: f3c3 0cc0 ubfx ip, r3, #3, #1 +1004031c: ea40 004c orr.w r0, r0, ip, lsl #1 +10040320: f3c3 1c80 ubfx ip, r3, #6, #1 +10040324: ea40 00cc orr.w r0, r0, ip, lsl #3 +10040328: f3c3 0380 ubfx r3, r3, #2, #1 +1004032c: ea40 1303 orr.w r3, r0, r3, lsl #4 +10040330: f414 4f70 tst.w r4, #61440 ; 0xf000 +10040334: ea41 0303 orr.w r3, r1, r3 +10040338: f895 0036 ldrb.w r0, [r5, #54] ; 0x36 +1004033c: f895 c037 ldrb.w ip, [r5, #55] ; 0x37 +10040340: f895 a038 ldrb.w sl, [r5, #56] ; 0x38 +10040344: f895 1039 ldrb.w r1, [r5, #57] ; 0x39 +10040348: d004 beq.n 10040354 +1004034a: ea84 0b03 eor.w fp, r4, r3 +1004034e: f41b 4f70 tst.w fp, #61440 ; 0xf000 +10040352: d144 bne.n 100403de +10040354: f014 6f70 tst.w r4, #251658240 ; 0xf000000 +10040358: d004 beq.n 10040364 +1004035a: ea84 0b03 eor.w fp, r4, r3 +1004035e: f01b 6f70 tst.w fp, #251658240 ; 0xf000000 +10040362: d13e bne.n 100403e2 +10040364: f023 4b7f bic.w fp, r3, #4278190080 ; 0xff000000 +10040368: f42b 4b70 bic.w fp, fp, #61440 ; 0xf000 +1004036c: f024 437f bic.w r3, r4, #4278190080 ; 0xff000000 +10040370: ea0b 0b04 and.w fp, fp, r4 +10040374: f423 4370 bic.w r3, r3, #61440 ; 0xf000 +10040378: 459b cmp fp, r3 +1004037a: d132 bne.n 100403e2 +1004037c: 0723 lsls r3, r4, #28 +1004037e: d02d beq.n 100403dc +10040380: ea4f 4a0a mov.w sl, sl, lsl #16 +10040384: f014 0f01 tst.w r4, #1 +10040388: ea4a 2c0c orr.w ip, sl, ip, lsl #8 +1004038c: bf14 ite ne +1004038e: 23ff movne r3, #255 ; 0xff +10040390: 2300 moveq r3, #0 +10040392: ea4c 0000 orr.w r0, ip, r0 +10040396: f014 0f02 tst.w r4, #2 +1004039a: bf18 it ne +1004039c: f443 437f orrne.w r3, r3, #65280 ; 0xff00 +100403a0: ea40 6101 orr.w r1, r0, r1, lsl #24 +100403a4: f014 0f04 tst.w r4, #4 +100403a8: bf18 it ne +100403aa: f443 037f orrne.w r3, r3, #16711680 ; 0xff0000 +100403ae: ea88 0101 eor.w r1, r8, r1 +100403b2: f014 0f08 tst.w r4, #8 +100403b6: bf18 it ne +100403b8: f043 437f orrne.w r3, r3, #4278190080 ; 0xff000000 +100403bc: 430a orrs r2, r1 +100403be: 4213 tst r3, r2 +100403c0: d10f bne.n 100403e2 +100403c2: e00b b.n 100403dc +100403c4: b173 cbz r3, 100403e4 +100403c6: 4628 mov r0, r5 +100403c8: b2d2 uxtb r2, r2 +100403ca: f7fd f901 bl 1003d5d0 +100403ce: e000 b.n 100403d2 +100403d0: 2600 movs r6, #0 +100403d2: 2301 movs r3, #1 +100403d4: e006 b.n 100403e4 +100403d6: 4690 mov r8, r2 +100403d8: 460c mov r4, r1 +100403da: e003 b.n 100403e4 +100403dc: 2601 movs r6, #1 +100403de: 4633 mov r3, r6 +100403e0: e000 b.n 100403e4 +100403e2: 2300 movs r3, #0 +100403e4: 3708 adds r7, #8 +100403e6: e760 b.n 100402aa +100403e8: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} +100403ec: 1004e6d8 .word 0x1004e6d8 + +100403f0 : +100403f0: b5f0 push {r4, r5, r6, r7, lr} +100403f2: f890 6030 ldrb.w r6, [r0, #48] ; 0x30 +100403f6: f890 7021 ldrb.w r7, [r0, #33] ; 0x21 +100403fa: 0636 lsls r6, r6, #24 +100403fc: f890 5028 ldrb.w r5, [r0, #40] ; 0x28 +10040400: ea46 4607 orr.w r6, r6, r7, lsl #16 +10040404: f890 7035 ldrb.w r7, [r0, #53] ; 0x35 +10040408: f890 4034 ldrb.w r4, [r0, #52] ; 0x34 +1004040c: ea46 3607 orr.w r6, r6, r7, lsl #12 +10040410: f005 07f0 and.w r7, r5, #240 ; 0xf0 +10040414: ea46 4607 orr.w r6, r6, r7, lsl #16 +10040418: f005 050f and.w r5, r5, #15 +1004041c: ea46 2505 orr.w r5, r6, r5, lsl #8 +10040420: 09e7 lsrs r7, r4, #7 +10040422: f3c4 1600 ubfx r6, r4, #4, #1 +10040426: ea46 0687 orr.w r6, r6, r7, lsl #2 +1004042a: f3c4 07c0 ubfx r7, r4, #3, #1 +1004042e: ea46 0647 orr.w r6, r6, r7, lsl #1 +10040432: f3c4 1780 ubfx r7, r4, #6, #1 +10040436: ea46 06c7 orr.w r6, r6, r7, lsl #3 +1004043a: f3c4 0480 ubfx r4, r4, #2, #1 +1004043e: ea46 1404 orr.w r4, r6, r4, lsl #4 +10040442: f411 4f70 tst.w r1, #61440 ; 0xf000 +10040446: ea45 0404 orr.w r4, r5, r4 +1004044a: f890 6036 ldrb.w r6, [r0, #54] ; 0x36 +1004044e: f890 7037 ldrb.w r7, [r0, #55] ; 0x37 +10040452: f890 c038 ldrb.w ip, [r0, #56] ; 0x38 +10040456: f890 5039 ldrb.w r5, [r0, #57] ; 0x39 +1004045a: d004 beq.n 10040466 +1004045c: ea84 0001 eor.w r0, r4, r1 +10040460: f410 4f70 tst.w r0, #61440 ; 0xf000 +10040464: d133 bne.n 100404ce +10040466: f011 6f70 tst.w r1, #251658240 ; 0xf000000 +1004046a: d004 beq.n 10040476 +1004046c: ea84 0001 eor.w r0, r4, r1 +10040470: f010 6f70 tst.w r0, #251658240 ; 0xf000000 +10040474: d12b bne.n 100404ce +10040476: f021 407f bic.w r0, r1, #4278190080 ; 0xff000000 +1004047a: f420 4070 bic.w r0, r0, #61440 ; 0xf000 +1004047e: 4004 ands r4, r0 +10040480: 4284 cmp r4, r0 +10040482: d124 bne.n 100404ce +10040484: 0708 lsls r0, r1, #28 +10040486: d020 beq.n 100404ca +10040488: f011 0f01 tst.w r1, #1 +1004048c: bf14 ite ne +1004048e: 20ff movne r0, #255 ; 0xff +10040490: 2000 moveq r0, #0 +10040492: 078c lsls r4, r1, #30 +10040494: bf48 it mi +10040496: f440 407f orrmi.w r0, r0, #65280 ; 0xff00 +1004049a: 074c lsls r4, r1, #29 +1004049c: bf48 it mi +1004049e: f440 007f orrmi.w r0, r0, #16711680 ; 0xff0000 +100404a2: 0709 lsls r1, r1, #28 +100404a4: ea4f 410c mov.w r1, ip, lsl #16 +100404a8: ea41 2107 orr.w r1, r1, r7, lsl #8 +100404ac: ea41 0106 orr.w r1, r1, r6 +100404b0: ea41 6105 orr.w r1, r1, r5, lsl #24 +100404b4: bf48 it mi +100404b6: f040 407f orrmi.w r0, r0, #4278190080 ; 0xff000000 +100404ba: 404a eors r2, r1 +100404bc: 4210 tst r0, r2 +100404be: d106 bne.n 100404ce +100404c0: 4218 tst r0, r3 +100404c2: bf14 ite ne +100404c4: 2000 movne r0, #0 +100404c6: 2001 moveq r0, #1 +100404c8: bdf0 pop {r4, r5, r6, r7, pc} +100404ca: 2001 movs r0, #1 +100404cc: bdf0 pop {r4, r5, r6, r7, pc} +100404ce: 2000 movs r0, #0 +100404d0: bdf0 pop {r4, r5, r6, r7, pc} + ... + +100404d4 : +100404d4: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +100404d8: 4d1b ldr r5, [pc, #108] ; (10040548 ) +100404da: 2700 movs r7, #0 +100404dc: 4681 mov r9, r0 +100404de: f505 6ab9 add.w sl, r5, #1480 ; 0x5c8 +100404e2: 46b8 mov r8, r7 +100404e4: 463e mov r6, r7 +100404e6: 2401 movs r4, #1 +100404e8: 4555 cmp r5, sl +100404ea: d02a beq.n 10040542 +100404ec: f855 1c04 ldr.w r1, [r5, #-4] +100404f0: 682b ldr r3, [r5, #0] +100404f2: f011 4f40 tst.w r1, #3221225472 ; 0xc0000000 +100404f6: d013 beq.n 10040520 +100404f8: 2900 cmp r1, #0 +100404fa: da08 bge.n 1004050e +100404fc: f3c1 7201 ubfx r2, r1, #28, #2 +10040500: 2a03 cmp r2, #3 +10040502: d013 beq.n 1004052c +10040504: 2a02 cmp r2, #2 +10040506: d114 bne.n 10040532 +10040508: f086 0401 eor.w r4, r6, #1 +1004050c: e017 b.n 1004053e +1004050e: b99e cbnz r6, 10040538 +10040510: 4648 mov r0, r9 +10040512: 4641 mov r1, r8 +10040514: 463a mov r2, r7 +10040516: f7ff ff6b bl 100403f0 +1004051a: b178 cbz r0, 1004053c +1004051c: 2601 movs r6, #1 +1004051e: e00d b.n 1004053c +10040520: b16c cbz r4, 1004053e +10040522: 4648 mov r0, r9 +10040524: 461a mov r2, r3 +10040526: f7fd f84b bl 1003d5c0 +1004052a: e000 b.n 1004052e +1004052c: 2600 movs r6, #0 +1004052e: 2401 movs r4, #1 +10040530: e005 b.n 1004053e +10040532: 461f mov r7, r3 +10040534: 4688 mov r8, r1 +10040536: e002 b.n 1004053e +10040538: 2400 movs r4, #0 +1004053a: e000 b.n 1004053e +1004053c: 4634 mov r4, r6 +1004053e: 3508 adds r5, #8 +10040540: e7d2 b.n 100404e8 +10040542: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10040546: bf00 nop +10040548: 1004eb14 .word 0x1004eb14 + +1004054c : +1004054c: b510 push {r4, lr} +1004054e: f600 11f7 addw r1, r0, #2551 ; 0x9f7 +10040552: 4604 mov r4, r0 +10040554: 4a0d ldr r2, [pc, #52] ; (1004058c ) +10040556: 231e movs r3, #30 +10040558: f7fe f904 bl 1003e764 +1004055c: 4620 mov r0, r4 +1004055e: f604 2115 addw r1, r4, #2581 ; 0xa15 +10040562: 4a0b ldr r2, [pc, #44] ; (10040590 ) +10040564: 231e movs r3, #30 +10040566: f7fe f8fd bl 1003e764 +1004056a: 4620 mov r0, r4 +1004056c: f604 11bb addw r1, r4, #2491 ; 0x9bb +10040570: 4a08 ldr r2, [pc, #32] ; (10040594 ) +10040572: 231e movs r3, #30 +10040574: f7fe f8f6 bl 1003e764 +10040578: 4620 mov r0, r4 +1004057a: f604 11d9 addw r1, r4, #2521 ; 0x9d9 +1004057e: 4a06 ldr r2, [pc, #24] ; (10040598 ) +10040580: 231e movs r3, #30 +10040582: e8bd 4010 ldmia.w sp!, {r4, lr} +10040586: f7fe b8ed b.w 1003e764 +1004058a: bf00 nop +1004058c: 1004ea1c .word 0x1004ea1c +10040590: 1004ead2 .word 0x1004ead2 +10040594: 1004f116 .word 0x1004f116 +10040598: 1004ea58 .word 0x1004ea58 + +1004059c : +1004059c: b510 push {r4, lr} +1004059e: f600 11f7 addw r1, r0, #2551 ; 0x9f7 +100405a2: 4604 mov r4, r0 +100405a4: 4a0d ldr r2, [pc, #52] ; (100405dc ) +100405a6: 231e movs r3, #30 +100405a8: f7fe f8dc bl 1003e764 +100405ac: 4620 mov r0, r4 +100405ae: f604 2115 addw r1, r4, #2581 ; 0xa15 +100405b2: 4a0b ldr r2, [pc, #44] ; (100405e0 ) +100405b4: 231e movs r3, #30 +100405b6: f7fe f8d5 bl 1003e764 +100405ba: 4620 mov r0, r4 +100405bc: f604 11bb addw r1, r4, #2491 ; 0x9bb +100405c0: 4a08 ldr r2, [pc, #32] ; (100405e4 ) +100405c2: 231e movs r3, #30 +100405c4: f7fe f8ce bl 1003e764 +100405c8: 4620 mov r0, r4 +100405ca: f604 11d9 addw r1, r4, #2521 ; 0x9d9 +100405ce: 4a06 ldr r2, [pc, #24] ; (100405e8 ) +100405d0: 231e movs r3, #30 +100405d2: e8bd 4010 ldmia.w sp!, {r4, lr} +100405d6: f7fe b8c5 b.w 1003e764 +100405da: bf00 nop +100405dc: 1004eaf0 .word 0x1004eaf0 +100405e0: 1004eab4 .word 0x1004eab4 +100405e4: 1004ea76 .word 0x1004ea76 +100405e8: 1004ea3a .word 0x1004ea3a + +100405ec : +100405ec: b510 push {r4, lr} +100405ee: f600 11f7 addw r1, r0, #2551 ; 0x9f7 +100405f2: 4604 mov r4, r0 +100405f4: 4a0d ldr r2, [pc, #52] ; (1004062c ) +100405f6: 231e movs r3, #30 +100405f8: f7fe f8b4 bl 1003e764 +100405fc: 4620 mov r0, r4 +100405fe: f604 2115 addw r1, r4, #2581 ; 0xa15 +10040602: 4a0b ldr r2, [pc, #44] ; (10040630 ) +10040604: 231e movs r3, #30 +10040606: f7fe f8ad bl 1003e764 +1004060a: 4620 mov r0, r4 +1004060c: f604 11bb addw r1, r4, #2491 ; 0x9bb +10040610: 4a08 ldr r2, [pc, #32] ; (10040634 ) +10040612: 231e movs r3, #30 +10040614: f7fe f8a6 bl 1003e764 +10040618: 4620 mov r0, r4 +1004061a: f604 11d9 addw r1, r4, #2521 ; 0x9d9 +1004061e: 4a06 ldr r2, [pc, #24] ; (10040638 ) +10040620: 231e movs r3, #30 +10040622: e8bd 4010 ldmia.w sp!, {r4, lr} +10040626: f7fe b89d b.w 1003e764 +1004062a: bf00 nop +1004062c: 1004f0f6 .word 0x1004f0f6 +10040630: 1004ea94 .word 0x1004ea94 +10040634: 1004e9fc .word 0x1004e9fc +10040638: 1004e9dc .word 0x1004e9dc + +1004063c : +1004063c: b57f push {r0, r1, r2, r3, r4, r5, r6, lr} +1004063e: 4c0c ldr r4, [pc, #48] ; (10040670 ) +10040640: 4606 mov r6, r0 +10040642: f504 6593 add.w r5, r4, #1176 ; 0x498 +10040646: 78a0 ldrb r0, [r4, #2] +10040648: f814 1c01 ldrb.w r1, [r4, #-1] +1004064c: 9000 str r0, [sp, #0] +1004064e: 78e0 ldrb r0, [r4, #3] +10040650: 7822 ldrb r2, [r4, #0] +10040652: 9001 str r0, [sp, #4] +10040654: 7920 ldrb r0, [r4, #4] +10040656: 7863 ldrb r3, [r4, #1] +10040658: 9002 str r0, [sp, #8] +1004065a: 7960 ldrb r0, [r4, #5] +1004065c: 3407 adds r4, #7 +1004065e: 9003 str r0, [sp, #12] +10040660: 4630 mov r0, r6 +10040662: f7fc fffa bl 1003d65a +10040666: 42ac cmp r4, r5 +10040668: d1ed bne.n 10040646 +1004066a: b004 add sp, #16 +1004066c: bd70 pop {r4, r5, r6, pc} +1004066e: bf00 nop +10040670: 1004ce46 .word 0x1004ce46 + +10040674 : +10040674: b510 push {r4, lr} +10040676: f600 2133 addw r1, r0, #2611 ; 0xa33 +1004067a: 4604 mov r4, r0 +1004067c: 4a06 ldr r2, [pc, #24] ; (10040698 ) +1004067e: 231e movs r3, #30 +10040680: f7fe f870 bl 1003e764 +10040684: 4620 mov r0, r4 +10040686: f604 2151 addw r1, r4, #2641 ; 0xa51 +1004068a: 4a04 ldr r2, [pc, #16] ; (1004069c ) +1004068c: 231e movs r3, #30 +1004068e: e8bd 4010 ldmia.w sp!, {r4, lr} +10040692: f7fe b867 b.w 1003e764 +10040696: bf00 nop +10040698: 1004f0d8 .word 0x1004f0d8 +1004069c: 10055588 .word 0x10055588 + +100406a0 : +100406a0: f8d0 30a4 ldr.w r3, [r0, #164] ; 0xa4 +100406a4: 881b ldrh r3, [r3, #0] +100406a6: 2b02 cmp r3, #2 +100406a8: d005 beq.n 100406b6 +100406aa: 2b04 cmp r3, #4 +100406ac: d003 beq.n 100406b6 +100406ae: 2b0b cmp r3, #11 +100406b0: d001 beq.n 100406b6 +100406b2: 2b16 cmp r3, #22 +100406b4: d105 bne.n 100406c2 +100406b6: f600 13bb addw r3, r0, #2491 ; 0x9bb +100406ba: 600b str r3, [r1, #0] +100406bc: f600 10d9 addw r0, r0, #2521 ; 0x9d9 +100406c0: e004 b.n 100406cc +100406c2: f600 13f7 addw r3, r0, #2551 ; 0x9f7 +100406c6: 600b str r3, [r1, #0] +100406c8: f600 2015 addw r0, r0, #2581 ; 0xa15 +100406cc: 6010 str r0, [r2, #0] +100406ce: 4770 bx lr + +100406d0 : +100406d0: f600 2333 addw r3, r0, #2611 ; 0xa33 +100406d4: f600 2051 addw r0, r0, #2641 ; 0xa51 +100406d8: 600b str r3, [r1, #0] +100406da: 6010 str r0, [r2, #0] +100406dc: 4770 bx lr + ... + +100406e0 : +100406e0: 4b06 ldr r3, [pc, #24] ; (100406fc ) +100406e2: 7919 ldrb r1, [r3, #4] +100406e4: f890 37b2 ldrb.w r3, [r0, #1970] ; 0x7b2 +100406e8: f001 013f and.w r1, r1, #63 ; 0x3f +100406ec: 4419 add r1, r3 +100406ee: b249 sxtb r1, r1 +100406f0: f381 0106 usat r1, #6, r1 +100406f4: b2c9 uxtb r1, r1 +100406f6: f003 b8bb b.w 10043870 <__ROM_odm_SetCrystalCap_veneer> +100406fa: bf00 nop +100406fc: 10000738 .word 0x10000738 + +10040700 : +10040700: b5f8 push {r3, r4, r5, r6, r7, lr} +10040702: f890 249e ldrb.w r2, [r0, #1182] ; 0x49e +10040706: f241 6318 movw r3, #5656 ; 0x1618 +1004070a: 58c3 ldr r3, [r0, r3] +1004070c: f1a2 0122 sub.w r1, r2, #34 ; 0x22 +10040710: 2901 cmp r1, #1 +10040712: f503 7400 add.w r4, r3, #512 ; 0x200 +10040716: f893 3034 ldrb.w r3, [r3, #52] ; 0x34 +1004071a: d903 bls.n 10040724 +1004071c: 2a2a cmp r2, #42 ; 0x2a +1004071e: d001 beq.n 10040724 +10040720: 2a58 cmp r2, #88 ; 0x58 +10040722: d14b bne.n 100407bc +10040724: f1a3 020c sub.w r2, r3, #12 +10040728: 2a01 cmp r2, #1 +1004072a: d801 bhi.n 10040730 +1004072c: 4b25 ldr r3, [pc, #148] ; (100407c4 ) +1004072e: e002 b.n 10040736 +10040730: 2b0e cmp r3, #14 +10040732: d141 bne.n 100407b8 +10040734: 4b24 ldr r3, [pc, #144] ; (100407c8 ) +10040736: 7859 ldrb r1, [r3, #1] +10040738: 781a ldrb r2, [r3, #0] +1004073a: 795f ldrb r7, [r3, #5] +1004073c: eb02 2201 add.w r2, r2, r1, lsl #8 +10040740: 7899 ldrb r1, [r3, #2] +10040742: 7a5e ldrb r6, [r3, #9] +10040744: eb02 4201 add.w r2, r2, r1, lsl #16 +10040748: 78d9 ldrb r1, [r3, #3] +1004074a: 7b5d ldrb r5, [r3, #13] +1004074c: eb02 6201 add.w r2, r2, r1, lsl #24 +10040750: 7919 ldrb r1, [r3, #4] +10040752: 4620 mov r0, r4 +10040754: eb01 2707 add.w r7, r1, r7, lsl #8 +10040758: 7999 ldrb r1, [r3, #6] +1004075a: eb07 4701 add.w r7, r7, r1, lsl #16 +1004075e: 79d9 ldrb r1, [r3, #7] +10040760: eb07 6701 add.w r7, r7, r1, lsl #24 +10040764: 7a19 ldrb r1, [r3, #8] +10040766: eb01 2606 add.w r6, r1, r6, lsl #8 +1004076a: 7a99 ldrb r1, [r3, #10] +1004076c: eb06 4601 add.w r6, r6, r1, lsl #16 +10040770: 7ad9 ldrb r1, [r3, #11] +10040772: eb06 6601 add.w r6, r6, r1, lsl #24 +10040776: 7b19 ldrb r1, [r3, #12] +10040778: eb01 2505 add.w r5, r1, r5, lsl #8 +1004077c: 7b99 ldrb r1, [r3, #14] +1004077e: 7bdb ldrb r3, [r3, #15] +10040780: eb05 4501 add.w r5, r5, r1, lsl #16 +10040784: f640 2122 movw r1, #2594 ; 0xa22 +10040788: eb05 6503 add.w r5, r5, r3, lsl #24 +1004078c: f7fd ffd8 bl 1003e740 +10040790: 4620 mov r0, r4 +10040792: 463a mov r2, r7 +10040794: f640 2126 movw r1, #2598 ; 0xa26 +10040798: f7fd ffd2 bl 1003e740 +1004079c: 4620 mov r0, r4 +1004079e: 4632 mov r2, r6 +100407a0: f640 219a movw r1, #2714 ; 0xa9a +100407a4: f7fd ffcc bl 1003e740 +100407a8: 4620 mov r0, r4 +100407aa: 462a mov r2, r5 +100407ac: f44f 612a mov.w r1, #2720 ; 0xaa0 +100407b0: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +100407b4: f7fd bfc4 b.w 1003e740 +100407b8: 4b04 ldr r3, [pc, #16] ; (100407cc ) +100407ba: e7bc b.n 10040736 +100407bc: 2b0e cmp r3, #14 +100407be: d1b5 bne.n 1004072c +100407c0: e7b8 b.n 10040734 +100407c2: bf00 nop +100407c4: 1004cdd4 .word 0x1004cdd4 +100407c8: 1004cd05 .word 0x1004cd05 +100407cc: 1004cd15 .word 0x1004cd15 + +100407d0 : +100407d0: 6803 ldr r3, [r0, #0] +100407d2: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} +100407d6: 4614 mov r4, r2 +100407d8: f241 6218 movw r2, #5656 ; 0x1618 +100407dc: 589e ldr r6, [r3, r2] +100407de: f8d0 30a4 ldr.w r3, [r0, #164] ; 0xa4 +100407e2: 4680 mov r8, r0 +100407e4: 881b ldrh r3, [r3, #0] +100407e6: 460d mov r5, r1 +100407e8: b92b cbnz r3, 100407f6 +100407ea: f890 00e2 ldrb.w r0, [r0, #226] ; 0xe2 +100407ee: 28ff cmp r0, #255 ; 0xff +100407f0: d001 beq.n 100407f6 +100407f2: f7f6 f94f bl 10036a94 +100407f6: 2d01 cmp r5, #1 +100407f8: d16b bne.n 100408d2 +100407fa: eb08 0304 add.w r3, r8, r4 +100407fe: f893 2bda ldrb.w r2, [r3, #3034] ; 0xbda +10040802: f8d8 7000 ldr.w r7, [r8] +10040806: f883 2bdc strb.w r2, [r3, #3036] ; 0xbdc +1004080a: f893 2bdb ldrb.w r2, [r3, #3035] ; 0xbdb +1004080e: f883 2bdd strb.w r2, [r3, #3037] ; 0xbdd +10040812: f888 5bdf strb.w r5, [r8, #3039] ; 0xbdf +10040816: f888 5be1 strb.w r5, [r8, #3041] ; 0xbe1 +1004081a: 2c00 cmp r4, #0 +1004081c: d153 bne.n 100408c6 +1004081e: 4621 mov r1, r4 +10040820: 4623 mov r3, r4 +10040822: 4638 mov r0, r7 +10040824: f896 2034 ldrb.w r2, [r6, #52] ; 0x34 +10040828: f7f6 fe06 bl 10037438 +1004082c: 4621 mov r1, r4 +1004082e: 462b mov r3, r5 +10040830: 4638 mov r0, r7 +10040832: f896 2034 ldrb.w r2, [r6, #52] ; 0x34 +10040836: f7f6 fdff bl 10037438 +1004083a: 4621 mov r1, r4 +1004083c: f896 2034 ldrb.w r2, [r6, #52] ; 0x34 +10040840: 2302 movs r3, #2 +10040842: 4638 mov r0, r7 +10040844: f7f6 fdf8 bl 10037438 +10040848: 4b23 ldr r3, [pc, #140] ; (100408d8 ) +1004084a: f04f 7280 mov.w r2, #16777216 ; 0x1000000 +1004084e: e9d3 4502 ldrd r4, r5, [r3, #8] +10040852: 2300 movs r3, #0 +10040854: 4022 ands r2, r4 +10040856: 402b ands r3, r5 +10040858: ea52 0103 orrs.w r1, r2, r3 +1004085c: d033 beq.n 100408c6 +1004085e: f896 1034 ldrb.w r1, [r6, #52] ; 0x34 +10040862: f996 0076 ldrsb.w r0, [r6, #118] ; 0x76 +10040866: 1e4b subs r3, r1, #1 +10040868: 4433 add r3, r6 +1004086a: f893 205a ldrb.w r2, [r3, #90] ; 0x5a +1004086e: f893 3068 ldrb.w r3, [r3, #104] ; 0x68 +10040872: 9000 str r0, [sp, #0] +10040874: f996 0077 ldrsb.w r0, [r6, #119] ; 0x77 +10040878: 4c18 ldr r4, [pc, #96] ; (100408dc ) +1004087a: 9001 str r0, [sp, #4] +1004087c: 6be0 ldr r0, [r4, #60] ; 0x3c +1004087e: f001 fc43 bl 10042108 +10040882: 6c20 ldr r0, [r4, #64] ; 0x40 +10040884: f998 1bdd ldrsb.w r1, [r8, #3037] ; 0xbdd +10040888: f001 fc3e bl 10042108 +1004088c: 6c60 ldr r0, [r4, #68] ; 0x44 +1004088e: f998 1bdc ldrsb.w r1, [r8, #3036] ; 0xbdc +10040892: f001 fc39 bl 10042108 +10040896: f04f 32ff mov.w r2, #4294967295 +1004089a: f640 016c movw r1, #2156 ; 0x86c +1004089e: 4638 mov r0, r7 +100408a0: 6ca5 ldr r5, [r4, #72] ; 0x48 +100408a2: f7f3 fc21 bl 100340e8 +100408a6: 4601 mov r1, r0 +100408a8: 4628 mov r0, r5 +100408aa: f001 fc2d bl 10042108 +100408ae: f640 6114 movw r1, #3604 ; 0xe14 +100408b2: 4638 mov r0, r7 +100408b4: f04f 32ff mov.w r2, #4294967295 +100408b8: 6ce4 ldr r4, [r4, #76] ; 0x4c +100408ba: f7f3 fc15 bl 100340e8 +100408be: 4601 mov r1, r0 +100408c0: 4620 mov r0, r4 +100408c2: f001 fc21 bl 10042108 +100408c6: 4638 mov r0, r7 +100408c8: b002 add sp, #8 +100408ca: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} +100408ce: f7ff bf17 b.w 10040700 +100408d2: b002 add sp, #8 +100408d4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100408d8: 10000720 .word 0x10000720 +100408dc: 1004da10 .word 0x1004da10 + +100408e0 : +100408e0: 2321 movs r3, #33 ; 0x21 +100408e2: 7003 strb r3, [r0, #0] +100408e4: 232b movs r3, #43 ; 0x2b +100408e6: 7043 strb r3, [r0, #1] +100408e8: 2308 movs r3, #8 +100408ea: 7083 strb r3, [r0, #2] +100408ec: 2304 movs r3, #4 +100408ee: 70c3 strb r3, [r0, #3] +100408f0: 2301 movs r3, #1 +100408f2: 7103 strb r3, [r0, #4] +100408f4: 2342 movs r3, #66 ; 0x42 +100408f6: 6083 str r3, [r0, #8] +100408f8: 4b06 ldr r3, [pc, #24] ; (10040914 ) +100408fa: 60c3 str r3, [r0, #12] +100408fc: 4b06 ldr r3, [pc, #24] ; (10040918 ) +100408fe: 6103 str r3, [r0, #16] +10040900: 4b06 ldr r3, [pc, #24] ; (1004091c ) +10040902: 6143 str r3, [r0, #20] +10040904: 4b06 ldr r3, [pc, #24] ; (10040920 ) +10040906: 6183 str r3, [r0, #24] +10040908: 4b06 ldr r3, [pc, #24] ; (10040924 ) +1004090a: 61c3 str r3, [r0, #28] +1004090c: 4b06 ldr r3, [pc, #24] ; (10040928 ) +1004090e: 6203 str r3, [r0, #32] +10040910: 4770 bx lr +10040912: bf00 nop +10040914: 100407d1 .word 0x100407d1 +10040918: 10041b3d .word 0x10041b3d +1004091c: 10041829 .word 0x10041829 +10040920: 100406a1 .word 0x100406a1 +10040924: 100406d1 .word 0x100406d1 +10040928: 100406e1 .word 0x100406e1 + +1004092c : +1004092c: f241 6318 movw r3, #5656 ; 0x1618 +10040930: b573 push {r0, r1, r4, r5, r6, lr} +10040932: 58c5 ldr r5, [r0, r3] +10040934: f640 6128 movw r1, #3624 ; 0xe28 +10040938: f505 7400 add.w r4, r5, #512 ; 0x200 +1004093c: 4620 mov r0, r4 +1004093e: f06f 02ff mvn.w r2, #255 ; 0xff +10040942: 2300 movs r3, #0 +10040944: f7fd ff02 bl 1003e74c +10040948: 2301 movs r3, #1 +1004094a: 9300 str r3, [sp, #0] +1004094c: 4620 mov r0, r4 +1004094e: 2100 movs r1, #0 +10040950: 22ef movs r2, #239 ; 0xef +10040952: f44f 2300 mov.w r3, #524288 ; 0x80000 +10040956: f7fd feff bl 1003e758 +1004095a: f44f 3300 mov.w r3, #131072 ; 0x20000 +1004095e: 9300 str r3, [sp, #0] +10040960: 4620 mov r0, r4 +10040962: 2100 movs r1, #0 +10040964: 2230 movs r2, #48 ; 0x30 +10040966: 4b56 ldr r3, [pc, #344] ; (10040ac0 ) +10040968: f7fd fef6 bl 1003e758 +1004096c: 230f movs r3, #15 +1004096e: 9300 str r3, [sp, #0] +10040970: 4620 mov r0, r4 +10040972: 2100 movs r1, #0 +10040974: 2231 movs r2, #49 ; 0x31 +10040976: 4b52 ldr r3, [pc, #328] ; (10040ac0 ) +10040978: f7fd feee bl 1003e758 +1004097c: f647 73f7 movw r3, #32759 ; 0x7ff7 +10040980: 9300 str r3, [sp, #0] +10040982: 4620 mov r0, r4 +10040984: 2100 movs r1, #0 +10040986: 2232 movs r2, #50 ; 0x32 +10040988: 4b4d ldr r3, [pc, #308] ; (10040ac0 ) +1004098a: f7fd fee5 bl 1003e758 +1004098e: f44f 6318 mov.w r3, #2432 ; 0x980 +10040992: 9300 str r3, [sp, #0] +10040994: 4620 mov r0, r4 +10040996: 2100 movs r1, #0 +10040998: 22df movs r2, #223 ; 0xdf +1004099a: 4b49 ldr r3, [pc, #292] ; (10040ac0 ) +1004099c: f7fd fedc bl 1003e758 +100409a0: 4b48 ldr r3, [pc, #288] ; (10040ac4 ) +100409a2: 4620 mov r0, r4 +100409a4: 9300 str r3, [sp, #0] +100409a6: 2100 movs r1, #0 +100409a8: 2256 movs r2, #86 ; 0x56 +100409aa: 4b45 ldr r3, [pc, #276] ; (10040ac0 ) +100409ac: f7fd fed4 bl 1003e758 +100409b0: 4620 mov r0, r4 +100409b2: f640 6128 movw r1, #3624 ; 0xe28 +100409b6: f06f 02ff mvn.w r2, #255 ; 0xff +100409ba: 4b43 ldr r3, [pc, #268] ; (10040ac8 ) +100409bc: f7fd fec6 bl 1003e74c +100409c0: 4620 mov r0, r4 +100409c2: f44f 6163 mov.w r1, #3632 ; 0xe30 +100409c6: f04f 32ff mov.w r2, #4294967295 +100409ca: 4b40 ldr r3, [pc, #256] ; (10040acc ) +100409cc: f7fd febe bl 1003e74c +100409d0: 4620 mov r0, r4 +100409d2: f640 6134 movw r1, #3636 ; 0xe34 +100409d6: f04f 32ff mov.w r2, #4294967295 +100409da: 4b3d ldr r3, [pc, #244] ; (10040ad0 ) +100409dc: f7fd feb6 bl 1003e74c +100409e0: 4620 mov r0, r4 +100409e2: f640 6138 movw r1, #3640 ; 0xe38 +100409e6: f04f 32ff mov.w r2, #4294967295 +100409ea: 4b3a ldr r3, [pc, #232] ; (10040ad4 ) +100409ec: f7fd feae bl 1003e74c +100409f0: 4620 mov r0, r4 +100409f2: f640 613c movw r1, #3644 ; 0xe3c +100409f6: f04f 32ff mov.w r2, #4294967295 +100409fa: 4b37 ldr r3, [pc, #220] ; (10040ad8 ) +100409fc: f7fd fea6 bl 1003e74c +10040a00: 4620 mov r0, r4 +10040a02: f640 614c movw r1, #3660 ; 0xe4c +10040a06: f04f 32ff mov.w r2, #4294967295 +10040a0a: 4b34 ldr r3, [pc, #208] ; (10040adc ) +10040a0c: f7fd fe9e bl 1003e74c +10040a10: 4620 mov r0, r4 +10040a12: f640 6148 movw r1, #3656 ; 0xe48 +10040a16: f04f 32ff mov.w r2, #4294967295 +10040a1a: f04f 4379 mov.w r3, #4177526784 ; 0xf9000000 +10040a1e: f7fd fe95 bl 1003e74c +10040a22: f640 6148 movw r1, #3656 ; 0xe48 +10040a26: f04f 32ff mov.w r2, #4294967295 +10040a2a: f04f 4378 mov.w r3, #4160749568 ; 0xf8000000 +10040a2e: 4620 mov r0, r4 +10040a30: f7fd fe8c bl 1003e74c +10040a34: 200a movs r0, #10 +10040a36: f7fd fe9a bl 1003e76e +10040a3a: 4620 mov r0, r4 +10040a3c: f640 6128 movw r1, #3624 ; 0xe28 +10040a40: f06f 02ff mvn.w r2, #255 ; 0xff +10040a44: 2300 movs r3, #0 +10040a46: f7fd fe81 bl 1003e74c +10040a4a: f44f 73c0 mov.w r3, #384 ; 0x180 +10040a4e: 9300 str r3, [sp, #0] +10040a50: 4620 mov r0, r4 +10040a52: 2100 movs r1, #0 +10040a54: 22df movs r2, #223 ; 0xdf +10040a56: 4b1a ldr r3, [pc, #104] ; (10040ac0 ) +10040a58: f7fd fe7e bl 1003e758 +10040a5c: 4b18 ldr r3, [pc, #96] ; (10040ac0 ) +10040a5e: 2100 movs r1, #0 +10040a60: 2208 movs r2, #8 +10040a62: 4620 mov r0, r4 +10040a64: f7fd fe7b bl 1003e75e +10040a68: f640 61ac movw r1, #3756 ; 0xeac +10040a6c: f8c5 0d90 str.w r0, [r5, #3472] ; 0xd90 +10040a70: f04f 32ff mov.w r2, #4294967295 +10040a74: 4620 mov r0, r4 +10040a76: f7fd fe6c bl 1003e752 +10040a7a: f640 6194 movw r1, #3732 ; 0xe94 +10040a7e: 4605 mov r5, r0 +10040a80: f04f 32ff mov.w r2, #4294967295 +10040a84: 4620 mov r0, r4 +10040a86: f7fd fe64 bl 1003e752 +10040a8a: f640 619c movw r1, #3740 ; 0xe9c +10040a8e: 4606 mov r6, r0 +10040a90: f04f 32ff mov.w r2, #4294967295 +10040a94: 4620 mov r0, r4 +10040a96: f7fd fe5c bl 1003e752 +10040a9a: f015 5580 ands.w r5, r5, #268435456 ; 0x10000000 +10040a9e: d10a bne.n 10040ab6 +10040aa0: f3c6 4609 ubfx r6, r6, #16, #10 +10040aa4: f5b6 7fa1 cmp.w r6, #322 ; 0x142 +10040aa8: d007 beq.n 10040aba +10040aaa: f3c0 4009 ubfx r0, r0, #16, #10 +10040aae: 3842 subs r0, #66 ; 0x42 +10040ab0: bf18 it ne +10040ab2: 2001 movne r0, #1 +10040ab4: e002 b.n 10040abc +10040ab6: 2000 movs r0, #0 +10040ab8: e000 b.n 10040abc +10040aba: 4628 mov r0, r5 +10040abc: b002 add sp, #8 +10040abe: bd70 pop {r4, r5, r6, pc} +10040ac0: 000fffff .word 0x000fffff +10040ac4: 0005102a .word 0x0005102a +10040ac8: 00808000 .word 0x00808000 +10040acc: 18008c1c .word 0x18008c1c +10040ad0: 38008c1c .word 0x38008c1c +10040ad4: 821403ff .word 0x821403ff +10040ad8: 28160000 .word 0x28160000 +10040adc: 00462911 .word 0x00462911 + +10040ae0 : +10040ae0: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10040ae4: f241 6318 movw r3, #5656 ; 0x1618 +10040ae8: 58c7 ldr r7, [r0, r3] +10040aea: b085 sub sp, #20 +10040aec: f507 7400 add.w r4, r7, #512 ; 0x200 +10040af0: 4620 mov r0, r4 +10040af2: f640 6128 movw r1, #3624 ; 0xe28 +10040af6: f06f 02ff mvn.w r2, #255 ; 0xff +10040afa: 2300 movs r3, #0 +10040afc: 2601 movs r6, #1 +10040afe: f7fd fe25 bl 1003e74c +10040b02: f44f 3b40 mov.w fp, #196608 ; 0x30000 +10040b06: 4620 mov r0, r4 +10040b08: 2100 movs r1, #0 +10040b0a: 22ef movs r2, #239 ; 0xef +10040b0c: f44f 2300 mov.w r3, #524288 ; 0x80000 +10040b10: 9600 str r6, [sp, #0] +10040b12: f7fd fe21 bl 1003e758 +10040b16: f04f 0a0f mov.w sl, #15 +10040b1a: 4620 mov r0, r4 +10040b1c: 2100 movs r1, #0 +10040b1e: 2230 movs r2, #48 ; 0x30 +10040b20: 4bc4 ldr r3, [pc, #784] ; (10040e34 ) +10040b22: f8cd b000 str.w fp, [sp] +10040b26: f7fd fe17 bl 1003e758 +10040b2a: 4620 mov r0, r4 +10040b2c: 2100 movs r1, #0 +10040b2e: 2231 movs r2, #49 ; 0x31 +10040b30: 4bc0 ldr r3, [pc, #768] ; (10040e34 ) +10040b32: f8cd a000 str.w sl, [sp] +10040b36: f7fd fe0f bl 1003e758 +10040b3a: 4bbf ldr r3, [pc, #764] ; (10040e38 ) +10040b3c: 4620 mov r0, r4 +10040b3e: 9300 str r3, [sp, #0] +10040b40: 2100 movs r1, #0 +10040b42: 2232 movs r2, #50 ; 0x32 +10040b44: 4bbb ldr r3, [pc, #748] ; (10040e34 ) +10040b46: f44f 6918 mov.w r9, #2432 ; 0x980 +10040b4a: f7fd fe05 bl 1003e758 +10040b4e: 4620 mov r0, r4 +10040b50: 2100 movs r1, #0 +10040b52: 22df movs r2, #223 ; 0xdf +10040b54: 4bb7 ldr r3, [pc, #732] ; (10040e34 ) +10040b56: f8cd 9000 str.w r9, [sp] +10040b5a: f7fd fdfd bl 1003e758 +10040b5e: 4bb7 ldr r3, [pc, #732] ; (10040e3c ) +10040b60: 4620 mov r0, r4 +10040b62: 9300 str r3, [sp, #0] +10040b64: 2100 movs r1, #0 +10040b66: 2256 movs r2, #86 ; 0x56 +10040b68: 4bb2 ldr r3, [pc, #712] ; (10040e34 ) +10040b6a: f7fd fdf5 bl 1003e758 +10040b6e: 4620 mov r0, r4 +10040b70: f640 6128 movw r1, #3624 ; 0xe28 +10040b74: f06f 02ff mvn.w r2, #255 ; 0xff +10040b78: 4bb1 ldr r3, [pc, #708] ; (10040e40 ) +10040b7a: f7fd fde7 bl 1003e74c +10040b7e: 4620 mov r0, r4 +10040b80: f44f 6164 mov.w r1, #3648 ; 0xe40 +10040b84: f04f 32ff mov.w r2, #4294967295 +10040b88: 4bae ldr r3, [pc, #696] ; (10040e44 ) +10040b8a: f7fd fddf bl 1003e74c +10040b8e: 4620 mov r0, r4 +10040b90: f640 6144 movw r1, #3652 ; 0xe44 +10040b94: f04f 32ff mov.w r2, #4294967295 +10040b98: 4bab ldr r3, [pc, #684] ; (10040e48 ) +10040b9a: f7fd fdd7 bl 1003e74c +10040b9e: 4620 mov r0, r4 +10040ba0: f44f 6163 mov.w r1, #3632 ; 0xe30 +10040ba4: f04f 32ff mov.w r2, #4294967295 +10040ba8: 4ba8 ldr r3, [pc, #672] ; (10040e4c ) +10040baa: f7fd fdcf bl 1003e74c +10040bae: 4620 mov r0, r4 +10040bb0: f640 6134 movw r1, #3636 ; 0xe34 +10040bb4: f04f 32ff mov.w r2, #4294967295 +10040bb8: 4ba5 ldr r3, [pc, #660] ; (10040e50 ) +10040bba: f7fd fdc7 bl 1003e74c +10040bbe: 4620 mov r0, r4 +10040bc0: f640 6138 movw r1, #3640 ; 0xe38 +10040bc4: f04f 32ff mov.w r2, #4294967295 +10040bc8: 4ba2 ldr r3, [pc, #648] ; (10040e54 ) +10040bca: f7fd fdbf bl 1003e74c +10040bce: 4620 mov r0, r4 +10040bd0: f640 613c movw r1, #3644 ; 0xe3c +10040bd4: f04f 32ff mov.w r2, #4294967295 +10040bd8: 4b9f ldr r3, [pc, #636] ; (10040e58 ) +10040bda: f7fd fdb7 bl 1003e74c +10040bde: 4620 mov r0, r4 +10040be0: f640 614c movw r1, #3660 ; 0xe4c +10040be4: f04f 32ff mov.w r2, #4294967295 +10040be8: 4b9c ldr r3, [pc, #624] ; (10040e5c ) +10040bea: f7fd fdaf bl 1003e74c +10040bee: 4620 mov r0, r4 +10040bf0: f640 6148 movw r1, #3656 ; 0xe48 +10040bf4: f04f 32ff mov.w r2, #4294967295 +10040bf8: f04f 4379 mov.w r3, #4177526784 ; 0xf9000000 +10040bfc: f7fd fda6 bl 1003e74c +10040c00: f640 6148 movw r1, #3656 ; 0xe48 +10040c04: f04f 32ff mov.w r2, #4294967295 +10040c08: f04f 4378 mov.w r3, #4160749568 ; 0xf8000000 +10040c0c: 4620 mov r0, r4 +10040c0e: f7fd fd9d bl 1003e74c +10040c12: 200a movs r0, #10 +10040c14: f7fd fdab bl 1003e76e +10040c18: f44f 78c0 mov.w r8, #384 ; 0x180 +10040c1c: 4620 mov r0, r4 +10040c1e: f640 6128 movw r1, #3624 ; 0xe28 +10040c22: f06f 02ff mvn.w r2, #255 ; 0xff +10040c26: 2300 movs r3, #0 +10040c28: f7fd fd90 bl 1003e74c +10040c2c: 4b81 ldr r3, [pc, #516] ; (10040e34 ) +10040c2e: 4620 mov r0, r4 +10040c30: 2100 movs r1, #0 +10040c32: 22df movs r2, #223 ; 0xdf +10040c34: f8cd 8000 str.w r8, [sp] +10040c38: f7fd fd8e bl 1003e758 +10040c3c: f640 61ac movw r1, #3756 ; 0xeac +10040c40: f04f 32ff mov.w r2, #4294967295 +10040c44: 4620 mov r0, r4 +10040c46: f7fd fd84 bl 1003e752 +10040c4a: f640 6194 movw r1, #3732 ; 0xe94 +10040c4e: 4605 mov r5, r0 +10040c50: f04f 32ff mov.w r2, #4294967295 +10040c54: 4620 mov r0, r4 +10040c56: f7fd fd7c bl 1003e752 +10040c5a: f640 619c movw r1, #3740 ; 0xe9c +10040c5e: 4684 mov ip, r0 +10040c60: f04f 32ff mov.w r2, #4294967295 +10040c64: 4620 mov r0, r4 +10040c66: f8cd c00c str.w ip, [sp, #12] +10040c6a: f7fd fd72 bl 1003e752 +10040c6e: f015 5580 ands.w r5, r5, #268435456 ; 0x10000000 +10040c72: f8dd c00c ldr.w ip, [sp, #12] +10040c76: f040 80d4 bne.w 10040e22 +10040c7a: 4a79 ldr r2, [pc, #484] ; (10040e60 ) +10040c7c: ea0c 0202 and.w r2, ip, r2 +10040c80: f1b2 7fa1 cmp.w r2, #21102592 ; 0x1420000 +10040c84: f000 80cf beq.w 10040e26 +10040c88: f3c0 4309 ubfx r3, r0, #16, #10 +10040c8c: 2b42 cmp r3, #66 ; 0x42 +10040c8e: f000 80ca beq.w 10040e26 +10040c92: f042 4e00 orr.w lr, r2, #2147483648 ; 0x80000000 +10040c96: f44e 4ef8 orr.w lr, lr, #31744 ; 0x7c00 +10040c9a: ea4e 0303 orr.w r3, lr, r3 +10040c9e: 4620 mov r0, r4 +10040ca0: f44f 6164 mov.w r1, #3648 ; 0xe40 +10040ca4: f04f 32ff mov.w r2, #4294967295 +10040ca8: f7fd fd50 bl 1003e74c +10040cac: 462b mov r3, r5 +10040cae: 4620 mov r0, r4 +10040cb0: f640 6128 movw r1, #3624 ; 0xe28 +10040cb4: f06f 02ff mvn.w r2, #255 ; 0xff +10040cb8: f7fd fd48 bl 1003e74c +10040cbc: 4629 mov r1, r5 +10040cbe: 4620 mov r0, r4 +10040cc0: 22ef movs r2, #239 ; 0xef +10040cc2: f44f 2300 mov.w r3, #524288 ; 0x80000 +10040cc6: 9600 str r6, [sp, #0] +10040cc8: f7fd fd46 bl 1003e758 +10040ccc: 4629 mov r1, r5 +10040cce: 4620 mov r0, r4 +10040cd0: 2230 movs r2, #48 ; 0x30 +10040cd2: 4b58 ldr r3, [pc, #352] ; (10040e34 ) +10040cd4: f8cd b000 str.w fp, [sp] +10040cd8: f7fd fd3e bl 1003e758 +10040cdc: 4629 mov r1, r5 +10040cde: 4620 mov r0, r4 +10040ce0: 2231 movs r2, #49 ; 0x31 +10040ce2: 4b54 ldr r3, [pc, #336] ; (10040e34 ) +10040ce4: f8cd a000 str.w sl, [sp] +10040ce8: f7fd fd36 bl 1003e758 +10040cec: 4b5d ldr r3, [pc, #372] ; (10040e64 ) +10040cee: 4629 mov r1, r5 +10040cf0: 9300 str r3, [sp, #0] +10040cf2: 4620 mov r0, r4 +10040cf4: 2232 movs r2, #50 ; 0x32 +10040cf6: 4b4f ldr r3, [pc, #316] ; (10040e34 ) +10040cf8: f7fd fd2e bl 1003e758 +10040cfc: 4629 mov r1, r5 +10040cfe: 4620 mov r0, r4 +10040d00: 22df movs r2, #223 ; 0xdf +10040d02: 4b4c ldr r3, [pc, #304] ; (10040e34 ) +10040d04: f8cd 9000 str.w r9, [sp] +10040d08: f7fd fd26 bl 1003e758 +10040d0c: 4b4b ldr r3, [pc, #300] ; (10040e3c ) +10040d0e: 4629 mov r1, r5 +10040d10: 9300 str r3, [sp, #0] +10040d12: 4620 mov r0, r4 +10040d14: 2256 movs r2, #86 ; 0x56 +10040d16: 4b47 ldr r3, [pc, #284] ; (10040e34 ) +10040d18: f7fd fd1e bl 1003e758 +10040d1c: 4620 mov r0, r4 +10040d1e: f640 6128 movw r1, #3624 ; 0xe28 +10040d22: f06f 02ff mvn.w r2, #255 ; 0xff +10040d26: 4b46 ldr r3, [pc, #280] ; (10040e40 ) +10040d28: f7fd fd10 bl 1003e74c +10040d2c: 4620 mov r0, r4 +10040d2e: f640 6144 movw r1, #3652 ; 0xe44 +10040d32: f04f 32ff mov.w r2, #4294967295 +10040d36: 4b44 ldr r3, [pc, #272] ; (10040e48 ) +10040d38: f7fd fd08 bl 1003e74c +10040d3c: 4620 mov r0, r4 +10040d3e: f44f 6163 mov.w r1, #3632 ; 0xe30 +10040d42: f04f 32ff mov.w r2, #4294967295 +10040d46: 4b42 ldr r3, [pc, #264] ; (10040e50 ) +10040d48: f7fd fd00 bl 1003e74c +10040d4c: 4620 mov r0, r4 +10040d4e: f640 6134 movw r1, #3636 ; 0xe34 +10040d52: f04f 32ff mov.w r2, #4294967295 +10040d56: 4b3d ldr r3, [pc, #244] ; (10040e4c ) +10040d58: f7fd fcf8 bl 1003e74c +10040d5c: 4620 mov r0, r4 +10040d5e: f640 6138 movw r1, #3640 ; 0xe38 +10040d62: f04f 32ff mov.w r2, #4294967295 +10040d66: 4b40 ldr r3, [pc, #256] ; (10040e68 ) +10040d68: f7fd fcf0 bl 1003e74c +10040d6c: 4620 mov r0, r4 +10040d6e: f640 613c movw r1, #3644 ; 0xe3c +10040d72: f04f 32ff mov.w r2, #4294967295 +10040d76: 4b3d ldr r3, [pc, #244] ; (10040e6c ) +10040d78: f7fd fce8 bl 1003e74c +10040d7c: 4620 mov r0, r4 +10040d7e: f640 614c movw r1, #3660 ; 0xe4c +10040d82: f04f 32ff mov.w r2, #4294967295 +10040d86: 4b3a ldr r3, [pc, #232] ; (10040e70 ) +10040d88: f7fd fce0 bl 1003e74c +10040d8c: 4620 mov r0, r4 +10040d8e: f640 6148 movw r1, #3656 ; 0xe48 +10040d92: f04f 32ff mov.w r2, #4294967295 +10040d96: f04f 4379 mov.w r3, #4177526784 ; 0xf9000000 +10040d9a: f7fd fcd7 bl 1003e74c +10040d9e: f640 6148 movw r1, #3656 ; 0xe48 +10040da2: f04f 32ff mov.w r2, #4294967295 +10040da6: f04f 4378 mov.w r3, #4160749568 ; 0xf8000000 +10040daa: 4620 mov r0, r4 +10040dac: f7fd fcce bl 1003e74c +10040db0: 200a movs r0, #10 +10040db2: f7fd fcdc bl 1003e76e +10040db6: 462b mov r3, r5 +10040db8: 4620 mov r0, r4 +10040dba: f640 6128 movw r1, #3624 ; 0xe28 +10040dbe: f06f 02ff mvn.w r2, #255 ; 0xff +10040dc2: f7fd fcc3 bl 1003e74c +10040dc6: 4629 mov r1, r5 +10040dc8: 4620 mov r0, r4 +10040dca: 22df movs r2, #223 ; 0xdf +10040dcc: 4b19 ldr r3, [pc, #100] ; (10040e34 ) +10040dce: f8cd 8000 str.w r8, [sp] +10040dd2: f7fd fcc1 bl 1003e758 +10040dd6: f8d7 3d90 ldr.w r3, [r7, #3472] ; 0xd90 +10040dda: 4629 mov r1, r5 +10040ddc: 9300 str r3, [sp, #0] +10040dde: 4620 mov r0, r4 +10040de0: 4b14 ldr r3, [pc, #80] ; (10040e34 ) +10040de2: 2208 movs r2, #8 +10040de4: f7fd fcb8 bl 1003e758 +10040de8: f640 61ac movw r1, #3756 ; 0xeac +10040dec: f04f 32ff mov.w r2, #4294967295 +10040df0: 4620 mov r0, r4 +10040df2: f7fd fcae bl 1003e752 +10040df6: f640 61a4 movw r1, #3748 ; 0xea4 +10040dfa: 4605 mov r5, r0 +10040dfc: f04f 32ff mov.w r2, #4294967295 +10040e00: 4620 mov r0, r4 +10040e02: f7fd fca6 bl 1003e752 +10040e06: 012b lsls r3, r5, #4 +10040e08: d40f bmi.n 10040e2a +10040e0a: f3c0 4009 ubfx r0, r0, #16, #10 +10040e0e: f5b0 7f99 cmp.w r0, #306 ; 0x132 +10040e12: d00a beq.n 10040e2a +10040e14: f3c5 4509 ubfx r5, r5, #16, #10 +10040e18: 2d36 cmp r5, #54 ; 0x36 +10040e1a: bf14 ite ne +10040e1c: 2003 movne r0, #3 +10040e1e: 4630 moveq r0, r6 +10040e20: e004 b.n 10040e2c +10040e22: 2000 movs r0, #0 +10040e24: e002 b.n 10040e2c +10040e26: 4628 mov r0, r5 +10040e28: e000 b.n 10040e2c +10040e2a: 4630 mov r0, r6 +10040e2c: b005 add sp, #20 +10040e2e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10040e32: bf00 nop +10040e34: 000fffff .word 0x000fffff +10040e38: 000f1173 .word 0x000f1173 +10040e3c: 0005100a .word 0x0005100a +10040e40: 00808000 .word 0x00808000 +10040e44: 01007c00 .word 0x01007c00 +10040e48: 01004800 .word 0x01004800 +10040e4c: 10008c1c .word 0x10008c1c +10040e50: 30008c1c .word 0x30008c1c +10040e54: 82160fff .word 0x82160fff +10040e58: 28160000 .word 0x28160000 +10040e5c: 00462911 .word 0x00462911 +10040e60: 03ff0000 .word 0x03ff0000 +10040e64: 000f7ff2 .word 0x000f7ff2 +10040e68: 82160000 .word 0x82160000 +10040e6c: 28160fff .word 0x28160fff +10040e70: 0046a911 .word 0x0046a911 + +10040e74 <_PHY_PathAFillIQKMatrix8195A>: +10040e74: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10040e78: 461e mov r6, r3 +10040e7a: 2eff cmp r6, #255 ; 0xff +10040e7c: f241 6318 movw r3, #5656 ; 0x1618 +10040e80: 4690 mov r8, r2 +10040e82: 58c5 ldr r5, [r0, r3] +10040e84: f000 80bf beq.w 10041006 <_PHY_PathAFillIQKMatrix8195A+0x192> +10040e88: 2900 cmp r1, #0 +10040e8a: f000 80bc beq.w 10041006 <_PHY_PathAFillIQKMatrix8195A+0x192> +10040e8e: f505 7400 add.w r4, r5, #512 ; 0x200 +10040e92: f44f 6148 mov.w r1, #3200 ; 0xc80 +10040e96: f04f 32ff mov.w r2, #4294967295 +10040e9a: 4620 mov r0, r4 +10040e9c: f7fd fc59 bl 1003e752 +10040ea0: 0173 lsls r3, r6, #5 +10040ea2: f858 2003 ldr.w r2, [r8, r3] +10040ea6: 0d87 lsrs r7, r0, #22 +10040ea8: 0591 lsls r1, r2, #22 +10040eaa: bf44 itt mi +10040eac: ea6f 5282 mvnmi.w r2, r2, lsl #22 +10040eb0: ea6f 5292 mvnmi.w r2, r2, lsr #22 +10040eb4: eb08 0603 add.w r6, r8, r3 +10040eb8: fb07 f802 mul.w r8, r7, r2 +10040ebc: 4620 mov r0, r4 +10040ebe: ea4f 2318 mov.w r3, r8, lsr #8 +10040ec2: f44f 6148 mov.w r1, #3200 ; 0xc80 +10040ec6: f240 32ff movw r2, #1023 ; 0x3ff +10040eca: f7fd fc3f bl 1003e74c +10040ece: f04f 4200 mov.w r2, #2147483648 ; 0x80000000 +10040ed2: f3c8 13c0 ubfx r3, r8, #7, #1 +10040ed6: 4620 mov r0, r4 +10040ed8: f640 414c movw r1, #3148 ; 0xc4c +10040edc: f7fd fc36 bl 1003e74c +10040ee0: 6873 ldr r3, [r6, #4] +10040ee2: 4620 mov r0, r4 +10040ee4: 059a lsls r2, r3, #22 +10040ee6: bf44 itt mi +10040ee8: ea6f 5383 mvnmi.w r3, r3, lsl #22 +10040eec: ea6f 5393 mvnmi.w r3, r3, lsr #22 +10040ef0: 435f muls r7, r3 +10040ef2: ea4f 2817 mov.w r8, r7, lsr #8 +10040ef6: f3c8 1383 ubfx r3, r8, #6, #4 +10040efa: f640 4194 movw r1, #3220 ; 0xc94 +10040efe: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +10040f02: f7fd fc23 bl 1003e74c +10040f06: f640 4194 movw r1, #3220 ; 0xc94 +10040f0a: f8c5 1d30 str.w r1, [r5, #3376] ; 0xd30 +10040f0e: f04f 32ff mov.w r2, #4294967295 +10040f12: 4620 mov r0, r4 +10040f14: f7fd fc1d bl 1003e752 +10040f18: f008 033f and.w r3, r8, #63 ; 0x3f +10040f1c: f8c5 0d34 str.w r0, [r5, #3380] ; 0xd34 +10040f20: f44f 6148 mov.w r1, #3200 ; 0xc80 +10040f24: 4620 mov r0, r4 +10040f26: f44f 127c mov.w r2, #4128768 ; 0x3f0000 +10040f2a: f7fd fc0f bl 1003e74c +10040f2e: f44f 6148 mov.w r1, #3200 ; 0xc80 +10040f32: f8c5 1d38 str.w r1, [r5, #3384] ; 0xd38 +10040f36: f04f 32ff mov.w r2, #4294967295 +10040f3a: 4620 mov r0, r4 +10040f3c: f7fd fc09 bl 1003e752 +10040f40: f3c7 13c0 ubfx r3, r7, #7, #1 +10040f44: f8c5 0d3c str.w r0, [r5, #3388] ; 0xd3c +10040f48: f640 414c movw r1, #3148 ; 0xc4c +10040f4c: 4620 mov r0, r4 +10040f4e: f04f 5200 mov.w r2, #536870912 ; 0x20000000 +10040f52: f7fd fbfb bl 1003e74c +10040f56: f640 414c movw r1, #3148 ; 0xc4c +10040f5a: f8c5 1d40 str.w r1, [r5, #3392] ; 0xd40 +10040f5e: 4620 mov r0, r4 +10040f60: f04f 32ff mov.w r2, #4294967295 +10040f64: f7fd fbf5 bl 1003e752 +10040f68: f89d 3018 ldrb.w r3, [sp, #24] +10040f6c: f8c5 0d44 str.w r0, [r5, #3396] ; 0xd44 +10040f70: b1bb cbz r3, 10040fa2 <_PHY_PathAFillIQKMatrix8195A+0x12e> +10040f72: f44f 614a mov.w r1, #3232 ; 0xca0 +10040f76: f8c5 1d68 str.w r1, [r5, #3432] ; 0xd68 +10040f7a: f04f 32ff mov.w r2, #4294967295 +10040f7e: 4620 mov r0, r4 +10040f80: f7fd fbe7 bl 1003e752 +10040f84: f640 4114 movw r1, #3092 ; 0xc14 +10040f88: f8c5 0d6c str.w r0, [r5, #3436] ; 0xd6c +10040f8c: f8c5 1d60 str.w r1, [r5, #3424] ; 0xd60 +10040f90: 4620 mov r0, r4 +10040f92: f04f 32ff mov.w r2, #4294967295 +10040f96: f7fd fbdc bl 1003e752 +10040f9a: f8c5 0d64 str.w r0, [r5, #3428] ; 0xd64 +10040f9e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +10040fa2: 4620 mov r0, r4 +10040fa4: f640 4114 movw r1, #3092 ; 0xc14 +10040fa8: f240 32ff movw r2, #1023 ; 0x3ff +10040fac: 68b3 ldr r3, [r6, #8] +10040fae: f7fd fbcd bl 1003e74c +10040fb2: 68f3 ldr r3, [r6, #12] +10040fb4: 4620 mov r0, r4 +10040fb6: f003 033f and.w r3, r3, #63 ; 0x3f +10040fba: f640 4114 movw r1, #3092 ; 0xc14 +10040fbe: f44f 427c mov.w r2, #64512 ; 0xfc00 +10040fc2: f7fd fbc3 bl 1003e74c +10040fc6: f640 4114 movw r1, #3092 ; 0xc14 +10040fca: f8c5 1d60 str.w r1, [r5, #3424] ; 0xd60 +10040fce: f04f 32ff mov.w r2, #4294967295 +10040fd2: 4620 mov r0, r4 +10040fd4: f7fd fbbd bl 1003e752 +10040fd8: 68f3 ldr r3, [r6, #12] +10040fda: f8c5 0d64 str.w r0, [r5, #3428] ; 0xd64 +10040fde: f44f 614a mov.w r1, #3232 ; 0xca0 +10040fe2: 4620 mov r0, r4 +10040fe4: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +10040fe8: f3c3 1383 ubfx r3, r3, #6, #4 +10040fec: f7fd fbae bl 1003e74c +10040ff0: f44f 614a mov.w r1, #3232 ; 0xca0 +10040ff4: f8c5 1d68 str.w r1, [r5, #3432] ; 0xd68 +10040ff8: 4620 mov r0, r4 +10040ffa: f04f 32ff mov.w r2, #4294967295 +10040ffe: f7fd fba8 bl 1003e752 +10041002: f8c5 0d6c str.w r0, [r5, #3436] ; 0xd6c +10041006: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1004100a <_PHY_PathBFillIQKMatrix8195A>: +1004100a: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1004100e: 461e mov r6, r3 +10041010: 2eff cmp r6, #255 ; 0xff +10041012: f241 6318 movw r3, #5656 ; 0x1618 +10041016: 4617 mov r7, r2 +10041018: 58c5 ldr r5, [r0, r3] +1004101a: f000 80b2 beq.w 10041182 <_PHY_PathBFillIQKMatrix8195A+0x178> +1004101e: 2900 cmp r1, #0 +10041020: f000 80af beq.w 10041182 <_PHY_PathBFillIQKMatrix8195A+0x178> +10041024: f505 7400 add.w r4, r5, #512 ; 0x200 +10041028: f04f 32ff mov.w r2, #4294967295 +1004102c: f640 4188 movw r1, #3208 ; 0xc88 +10041030: 4620 mov r0, r4 +10041032: f7fd fb8e bl 1003e752 +10041036: eb07 1746 add.w r7, r7, r6, lsl #5 +1004103a: 693e ldr r6, [r7, #16] +1004103c: ea4f 5890 mov.w r8, r0, lsr #22 +10041040: 05b2 lsls r2, r6, #22 +10041042: bf44 itt mi +10041044: ea6f 5686 mvnmi.w r6, r6, lsl #22 +10041048: ea6f 5696 mvnmi.w r6, r6, lsr #22 +1004104c: fb08 f606 mul.w r6, r8, r6 +10041050: 4620 mov r0, r4 +10041052: 0a33 lsrs r3, r6, #8 +10041054: f640 4188 movw r1, #3208 ; 0xc88 +10041058: f240 32ff movw r2, #1023 ; 0x3ff +1004105c: f7fd fb76 bl 1003e74c +10041060: f3c6 13c0 ubfx r3, r6, #7, #1 +10041064: 4620 mov r0, r4 +10041066: f640 414c movw r1, #3148 ; 0xc4c +1004106a: f04f 6200 mov.w r2, #134217728 ; 0x8000000 +1004106e: f7fd fb6d bl 1003e74c +10041072: 6979 ldr r1, [r7, #20] +10041074: 4620 mov r0, r4 +10041076: 058b lsls r3, r1, #22 +10041078: bf44 itt mi +1004107a: ea6f 5181 mvnmi.w r1, r1, lsl #22 +1004107e: ea6f 5191 mvnmi.w r1, r1, lsr #22 +10041082: fb08 f601 mul.w r6, r8, r1 +10041086: ea4f 2816 mov.w r8, r6, lsr #8 +1004108a: f3c8 1383 ubfx r3, r8, #6, #4 +1004108e: f640 419c movw r1, #3228 ; 0xc9c +10041092: f04f 4270 mov.w r2, #4026531840 ; 0xf0000000 +10041096: f7fd fb59 bl 1003e74c +1004109a: f640 419c movw r1, #3228 ; 0xc9c +1004109e: f8c5 1d48 str.w r1, [r5, #3400] ; 0xd48 +100410a2: f04f 32ff mov.w r2, #4294967295 +100410a6: 4620 mov r0, r4 +100410a8: f7fd fb53 bl 1003e752 +100410ac: f008 033f and.w r3, r8, #63 ; 0x3f +100410b0: f8c5 0d4c str.w r0, [r5, #3404] ; 0xd4c +100410b4: f640 4188 movw r1, #3208 ; 0xc88 +100410b8: 4620 mov r0, r4 +100410ba: f44f 127c mov.w r2, #4128768 ; 0x3f0000 +100410be: f7fd fb45 bl 1003e74c +100410c2: f640 4188 movw r1, #3208 ; 0xc88 +100410c6: f8c5 1d50 str.w r1, [r5, #3408] ; 0xd50 +100410ca: f04f 32ff mov.w r2, #4294967295 +100410ce: 4620 mov r0, r4 +100410d0: f7fd fb3f bl 1003e752 +100410d4: f3c6 13c0 ubfx r3, r6, #7, #1 +100410d8: f8c5 0d54 str.w r0, [r5, #3412] ; 0xd54 +100410dc: f640 414c movw r1, #3148 ; 0xc4c +100410e0: 4620 mov r0, r4 +100410e2: f04f 7200 mov.w r2, #33554432 ; 0x2000000 +100410e6: f7fd fb31 bl 1003e74c +100410ea: f640 414c movw r1, #3148 ; 0xc4c +100410ee: f8c5 1d58 str.w r1, [r5, #3416] ; 0xd58 +100410f2: 4620 mov r0, r4 +100410f4: f04f 32ff mov.w r2, #4294967295 +100410f8: f7fd fb2b bl 1003e752 +100410fc: f89d 3018 ldrb.w r3, [sp, #24] +10041100: f8c5 0d5c str.w r0, [r5, #3420] ; 0xd5c +10041104: b15b cbz r3, 1004111e <_PHY_PathBFillIQKMatrix8195A+0x114> +10041106: f640 411c movw r1, #3100 ; 0xc1c +1004110a: f8c5 1d70 str.w r1, [r5, #3440] ; 0xd70 +1004110e: 4620 mov r0, r4 +10041110: f04f 32ff mov.w r2, #4294967295 +10041114: f7fd fb1d bl 1003e752 +10041118: f8c5 0d74 str.w r0, [r5, #3444] ; 0xd74 +1004111c: e026 b.n 1004116c <_PHY_PathBFillIQKMatrix8195A+0x162> +1004111e: 4620 mov r0, r4 +10041120: f640 411c movw r1, #3100 ; 0xc1c +10041124: f240 32ff movw r2, #1023 ; 0x3ff +10041128: 69bb ldr r3, [r7, #24] +1004112a: f7fd fb0f bl 1003e74c +1004112e: 69fb ldr r3, [r7, #28] +10041130: 4620 mov r0, r4 +10041132: f003 033f and.w r3, r3, #63 ; 0x3f +10041136: f640 411c movw r1, #3100 ; 0xc1c +1004113a: f44f 427c mov.w r2, #64512 ; 0xfc00 +1004113e: f7fd fb05 bl 1003e74c +10041142: f640 411c movw r1, #3100 ; 0xc1c +10041146: f8c5 1d70 str.w r1, [r5, #3440] ; 0xd70 +1004114a: f04f 32ff mov.w r2, #4294967295 +1004114e: 4620 mov r0, r4 +10041150: f7fd faff bl 1003e752 +10041154: 69fb ldr r3, [r7, #28] +10041156: f8c5 0d74 str.w r0, [r5, #3444] ; 0xd74 +1004115a: f640 4178 movw r1, #3192 ; 0xc78 +1004115e: 4620 mov r0, r4 +10041160: f44f 4270 mov.w r2, #61440 ; 0xf000 +10041164: f3c3 1383 ubfx r3, r3, #6, #4 +10041168: f7fd faf0 bl 1003e74c +1004116c: f640 4178 movw r1, #3192 ; 0xc78 +10041170: f8c5 1d78 str.w r1, [r5, #3448] ; 0xd78 +10041174: 4620 mov r0, r4 +10041176: f04f 32ff mov.w r2, #4294967295 +1004117a: f7fd faea bl 1003e752 +1004117e: f8c5 0d7c str.w r0, [r5, #3452] ; 0xd7c +10041182: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +10041186 <_PHY_SaveADDARegisters8195A>: +10041186: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1004118a: 461f mov r7, r3 +1004118c: f241 6318 movw r3, #5656 ; 0x1618 +10041190: 58c3 ldr r3, [r0, r3] +10041192: 460d mov r5, r1 +10041194: 4616 mov r6, r2 +10041196: f503 7800 add.w r8, r3, #512 ; 0x200 +1004119a: 2400 movs r4, #0 +1004119c: 42bc cmp r4, r7 +1004119e: d00a beq.n 100411b6 <_PHY_SaveADDARegisters8195A+0x30> +100411a0: f855 1024 ldr.w r1, [r5, r4, lsl #2] +100411a4: 4640 mov r0, r8 +100411a6: f04f 32ff mov.w r2, #4294967295 +100411aa: f7fd fad2 bl 1003e752 +100411ae: f846 0024 str.w r0, [r6, r4, lsl #2] +100411b2: 3401 adds r4, #1 +100411b4: e7f2 b.n 1004119c <_PHY_SaveADDARegisters8195A+0x16> +100411b6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +100411ba <_PHY_SaveMACRegisters8195A>: +100411ba: b5f8 push {r3, r4, r5, r6, r7, lr} +100411bc: f241 6318 movw r3, #5656 ; 0x1618 +100411c0: 58c7 ldr r7, [r0, r3] +100411c2: 460e mov r6, r1 +100411c4: 4615 mov r5, r2 +100411c6: f507 7700 add.w r7, r7, #512 ; 0x200 +100411ca: 2400 movs r4, #0 +100411cc: 5931 ldr r1, [r6, r4] +100411ce: 4638 mov r0, r7 +100411d0: f7fd faaa bl 1003e728 +100411d4: 5128 str r0, [r5, r4] +100411d6: 3404 adds r4, #4 +100411d8: 2c0c cmp r4, #12 +100411da: d1f7 bne.n 100411cc <_PHY_SaveMACRegisters8195A+0x12> +100411dc: 4638 mov r0, r7 +100411de: 68f1 ldr r1, [r6, #12] +100411e0: f7fd faa5 bl 1003e72e +100411e4: 60e8 str r0, [r5, #12] +100411e6: bdf8 pop {r3, r4, r5, r6, r7, pc} + +100411e8 <_PHY_ReloadADDARegisters8195A>: +100411e8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +100411ec: 461f mov r7, r3 +100411ee: f241 6318 movw r3, #5656 ; 0x1618 +100411f2: 58c3 ldr r3, [r0, r3] +100411f4: 460d mov r5, r1 +100411f6: 4616 mov r6, r2 +100411f8: f503 7800 add.w r8, r3, #512 ; 0x200 +100411fc: 2400 movs r4, #0 +100411fe: 42bc cmp r4, r7 +10041200: d00a beq.n 10041218 <_PHY_ReloadADDARegisters8195A+0x30> +10041202: f855 1024 ldr.w r1, [r5, r4, lsl #2] +10041206: f856 3024 ldr.w r3, [r6, r4, lsl #2] +1004120a: 4640 mov r0, r8 +1004120c: f04f 32ff mov.w r2, #4294967295 +10041210: f7fd fa9c bl 1003e74c +10041214: 3401 adds r4, #1 +10041216: e7f2 b.n 100411fe <_PHY_ReloadADDARegisters8195A+0x16> +10041218: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + +1004121c <_PHY_ReloadMACRegisters8195A>: +1004121c: b5f8 push {r3, r4, r5, r6, r7, lr} +1004121e: f241 6318 movw r3, #5656 ; 0x1618 +10041222: 58c7 ldr r7, [r0, r3] +10041224: 460e mov r6, r1 +10041226: 4615 mov r5, r2 +10041228: f507 7700 add.w r7, r7, #512 ; 0x200 +1004122c: 2400 movs r4, #0 +1004122e: 5931 ldr r1, [r6, r4] +10041230: 5d2a ldrb r2, [r5, r4] +10041232: 4638 mov r0, r7 +10041234: 3404 adds r4, #4 +10041236: f7fd fa7d bl 1003e734 +1004123a: 2c0c cmp r4, #12 +1004123c: d1f7 bne.n 1004122e <_PHY_ReloadMACRegisters8195A+0x12> +1004123e: 4638 mov r0, r7 +10041240: 68f1 ldr r1, [r6, #12] +10041242: 68ea ldr r2, [r5, #12] +10041244: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10041248: f7fd ba7a b.w 1003e740 + +1004124c <_PHY_PathADDAOn8195A>: +1004124c: f241 6218 movw r2, #5656 ; 0x1618 +10041250: b570 push {r4, r5, r6, lr} +10041252: 5885 ldr r5, [r0, r2] +10041254: 460e mov r6, r1 +10041256: f505 7500 add.w r5, r5, #512 ; 0x200 +1004125a: b933 cbnz r3, 1004126a <_PHY_PathADDAOn8195A+0x1e> +1004125c: 4628 mov r0, r5 +1004125e: 6809 ldr r1, [r1, #0] +10041260: f04f 32ff mov.w r2, #4294967295 +10041264: 4b07 ldr r3, [pc, #28] ; (10041284 <_PHY_PathADDAOn8195A+0x38>) +10041266: f7fd fa71 bl 1003e74c +1004126a: 2400 movs r4, #0 +1004126c: 1933 adds r3, r6, r4 +1004126e: 6859 ldr r1, [r3, #4] +10041270: 4628 mov r0, r5 +10041272: f04f 32ff mov.w r2, #4294967295 +10041276: 4b03 ldr r3, [pc, #12] ; (10041284 <_PHY_PathADDAOn8195A+0x38>) +10041278: 3404 adds r4, #4 +1004127a: f7fd fa67 bl 1003e74c +1004127e: 2c3c cmp r4, #60 ; 0x3c +10041280: d1f4 bne.n 1004126c <_PHY_PathADDAOn8195A+0x20> +10041282: bd70 pop {r4, r5, r6, pc} +10041284: 03c00014 .word 0x03c00014 + +10041288 <_PHY_MACSettingCalibration8195A>: +10041288: f241 6318 movw r3, #5656 ; 0x1618 +1004128c: b570 push {r4, r5, r6, lr} +1004128e: 58c5 ldr r5, [r0, r3] +10041290: 460c mov r4, r1 +10041292: f505 7500 add.w r5, r5, #512 ; 0x200 +10041296: 4616 mov r6, r2 +10041298: 4628 mov r0, r5 +1004129a: 6809 ldr r1, [r1, #0] +1004129c: 223f movs r2, #63 ; 0x3f +1004129e: f7fd fa49 bl 1003e734 +100412a2: 6872 ldr r2, [r6, #4] +100412a4: 4628 mov r0, r5 +100412a6: 6861 ldr r1, [r4, #4] +100412a8: f002 02f7 and.w r2, r2, #247 ; 0xf7 +100412ac: f7fd fa42 bl 1003e734 +100412b0: 68b2 ldr r2, [r6, #8] +100412b2: 4628 mov r0, r5 +100412b4: 68a1 ldr r1, [r4, #8] +100412b6: f002 02f7 and.w r2, r2, #247 ; 0xf7 +100412ba: f7fd fa3b bl 1003e734 +100412be: 68f2 ldr r2, [r6, #12] +100412c0: 4628 mov r0, r5 +100412c2: 68e1 ldr r1, [r4, #12] +100412c4: f002 02df and.w r2, r2, #223 ; 0xdf +100412c8: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +100412cc: f7fd ba32 b.w 1003e734 + +100412d0 <_PHY_PIModeSwitch8195A>: +100412d0: b570 push {r4, r5, r6, lr} +100412d2: f241 6318 movw r3, #5656 ; 0x1618 +100412d6: 58c5 ldr r5, [r0, r3] +100412d8: 2900 cmp r1, #0 +100412da: bf0c ite eq +100412dc: f04f 7480 moveq.w r4, #16777216 ; 0x1000000 +100412e0: f04f 2401 movne.w r4, #16777472 ; 0x1000100 +100412e4: f505 7500 add.w r5, r5, #512 ; 0x200 +100412e8: 4628 mov r0, r5 +100412ea: 4623 mov r3, r4 +100412ec: f44f 6102 mov.w r1, #2080 ; 0x820 +100412f0: f04f 32ff mov.w r2, #4294967295 +100412f4: f7fd fa2a bl 1003e74c +100412f8: 4628 mov r0, r5 +100412fa: 4623 mov r3, r4 +100412fc: f640 0128 movw r1, #2088 ; 0x828 +10041300: f04f 32ff mov.w r2, #4294967295 +10041304: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10041308: f7fd ba20 b.w 1003e74c + +1004130c : +1004130c: e92d 47f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, r9, sl, lr} +10041310: 4691 mov r9, r2 +10041312: 4a4a ldr r2, [pc, #296] ; (1004143c ) +10041314: ea4f 1849 mov.w r8, r9, lsl #5 +10041318: 8812 ldrh r2, [r2, #0] +1004131a: eb01 0408 add.w r4, r1, r8 +1004131e: eb01 1c43 add.w ip, r1, r3, lsl #5 +10041322: 2000 movs r0, #0 +10041324: f8ad 2004 strh.w r2, [sp, #4] +10041328: 4666 mov r6, ip +1004132a: 4625 mov r5, r4 +1004132c: 4602 mov r2, r0 +1004132e: f012 0f01 tst.w r2, #1 +10041332: ea4f 0a82 mov.w sl, r2, lsl #2 +10041336: f854 7022 ldr.w r7, [r4, r2, lsl #2] +1004133a: bf08 it eq +1004133c: f85c a022 ldreq.w sl, [ip, r2, lsl #2] +10041340: d00f beq.n 10041362 +10041342: f417 7f00 tst.w r7, #512 ; 0x200 +10041346: f85c a00a ldr.w sl, [ip, sl] +1004134a: bf1c itt ne +1004134c: ea6f 5787 mvnne.w r7, r7, lsl #22 +10041350: ea6f 5797 mvnne.w r7, r7, lsr #22 +10041354: f41a 7f00 tst.w sl, #512 ; 0x200 +10041358: bf1c itt ne +1004135a: ea6f 5a8a mvnne.w sl, sl, lsl #22 +1004135e: ea6f 5a9a mvnne.w sl, sl, lsr #22 +10041362: 4557 cmp r7, sl +10041364: bfcc ite gt +10041366: ebca 0707 rsbgt r7, sl, r7 +1004136a: ebc7 070a rsble r7, r7, sl +1004136e: 2f05 cmp r7, #5 +10041370: d924 bls.n 100413bc +10041372: f022 0704 bic.w r7, r2, #4 +10041376: 2f02 cmp r7, #2 +10041378: d11d bne.n 100413b6 +1004137a: b9e0 cbnz r0, 100413b6 +1004137c: e895 0480 ldmia.w r5, {r7, sl} +10041380: 44ba add sl, r7 +10041382: f1ba 0f00 cmp.w sl, #0 +10041386: d106 bne.n 10041396 +10041388: f10d 0a08 add.w sl, sp, #8 +1004138c: eb0a 0792 add.w r7, sl, r2, lsr #2 +10041390: f807 3c04 strb.w r3, [r7, #-4] +10041394: e012 b.n 100413bc +10041396: e896 0480 ldmia.w r6, {r7, sl} +1004139a: 44ba add sl, r7 +1004139c: f1ba 0f00 cmp.w sl, #0 +100413a0: d106 bne.n 100413b0 +100413a2: f10d 0a08 add.w sl, sp, #8 +100413a6: eb0a 0792 add.w r7, sl, r2, lsr #2 +100413aa: f807 9c04 strb.w r9, [r7, #-4] +100413ae: e005 b.n 100413bc +100413b0: 2001 movs r0, #1 +100413b2: 4090 lsls r0, r2 +100413b4: e002 b.n 100413bc +100413b6: 2701 movs r7, #1 +100413b8: 4097 lsls r7, r2 +100413ba: 4338 orrs r0, r7 +100413bc: 3201 adds r2, #1 +100413be: 2a08 cmp r2, #8 +100413c0: f106 0604 add.w r6, r6, #4 +100413c4: f105 0504 add.w r5, r5, #4 +100413c8: d1b1 bne.n 1004132e +100413ca: b9b8 cbnz r0, 100413fc +100413cc: f89d 3004 ldrb.w r3, [sp, #4] +100413d0: 2bff cmp r3, #255 ; 0xff +100413d2: d006 beq.n 100413e2 +100413d4: 015b lsls r3, r3, #5 +100413d6: 18ca adds r2, r1, r3 +100413d8: 58cb ldr r3, [r1, r3] +100413da: 660b str r3, [r1, #96] ; 0x60 +100413dc: 6853 ldr r3, [r2, #4] +100413de: 664b str r3, [r1, #100] ; 0x64 +100413e0: e000 b.n 100413e4 +100413e2: 2001 movs r0, #1 +100413e4: f89d 3005 ldrb.w r3, [sp, #5] +100413e8: 2bff cmp r3, #255 ; 0xff +100413ea: d023 beq.n 10041434 +100413ec: eb01 1343 add.w r3, r1, r3, lsl #5 +100413f0: 691a ldr r2, [r3, #16] +100413f2: 670a str r2, [r1, #112] ; 0x70 +100413f4: 695b ldr r3, [r3, #20] +100413f6: 674b str r3, [r1, #116] ; 0x74 +100413f8: 2000 movs r0, #0 +100413fa: e01b b.n 10041434 +100413fc: 0783 lsls r3, r0, #30 +100413fe: d104 bne.n 1004140a +10041400: f851 3008 ldr.w r3, [r1, r8] +10041404: 660b str r3, [r1, #96] ; 0x60 +10041406: 6863 ldr r3, [r4, #4] +10041408: 664b str r3, [r1, #100] ; 0x64 +1004140a: f010 0f0c tst.w r0, #12 +1004140e: d103 bne.n 10041418 +10041410: 68a3 ldr r3, [r4, #8] +10041412: 668b str r3, [r1, #104] ; 0x68 +10041414: 68e3 ldr r3, [r4, #12] +10041416: 66cb str r3, [r1, #108] ; 0x6c +10041418: f010 0f30 tst.w r0, #48 ; 0x30 +1004141c: d103 bne.n 10041426 +1004141e: 6923 ldr r3, [r4, #16] +10041420: 670b str r3, [r1, #112] ; 0x70 +10041422: 6963 ldr r3, [r4, #20] +10041424: 674b str r3, [r1, #116] ; 0x74 +10041426: f010 00c0 ands.w r0, r0, #192 ; 0xc0 +1004142a: d1e5 bne.n 100413f8 +1004142c: 69a3 ldr r3, [r4, #24] +1004142e: 678b str r3, [r1, #120] ; 0x78 +10041430: 69e3 ldr r3, [r4, #28] +10041432: 67cb str r3, [r1, #124] ; 0x7c +10041434: b002 add sp, #8 +10041436: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +1004143a: bf00 nop +1004143c: 1004d2e0 .word 0x1004d2e0 + +10041440 : +10041440: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10041444: 4698 mov r8, r3 +10041446: f241 6318 movw r3, #5656 ; 0x1618 +1004144a: 58c6 ldr r6, [r0, r3] +1004144c: b0a5 sub sp, #148 ; 0x94 +1004144e: f506 7400 add.w r4, r6, #512 ; 0x200 +10041452: 4605 mov r5, r0 +10041454: 4689 mov r9, r1 +10041456: 4617 mov r7, r2 +10041458: f44f 6145 mov.w r1, #3152 ; 0xc50 +1004145c: 22ff movs r2, #255 ; 0xff +1004145e: 4620 mov r0, r4 +10041460: f7fd f977 bl 1003e752 +10041464: f640 4158 movw r1, #3160 ; 0xc58 +10041468: 9004 str r0, [sp, #16] +1004146a: 22ff movs r2, #255 ; 0xff +1004146c: 4620 mov r0, r4 +1004146e: f7fd f970 bl 1003e752 +10041472: f8df e340 ldr.w lr, [pc, #832] ; 100417b4 +10041476: f10d 0c50 add.w ip, sp, #80 ; 0x50 +1004147a: e8be 000f ldmia.w lr!, {r0, r1, r2, r3} +1004147e: e8ac 000f stmia.w ip!, {r0, r1, r2, r3} +10041482: e8be 000f ldmia.w lr!, {r0, r1, r2, r3} +10041486: e8ac 000f stmia.w ip!, {r0, r1, r2, r3} +1004148a: e8be 000f ldmia.w lr!, {r0, r1, r2, r3} +1004148e: e8ac 000f stmia.w ip!, {r0, r1, r2, r3} +10041492: e89e 000f ldmia.w lr, {r0, r1, r2, r3} +10041496: f10d 0a1c add.w sl, sp, #28 +1004149a: e88c 000f stmia.w ip, {r0, r1, r2, r3} +1004149e: f10e 0310 add.w r3, lr, #16 +100414a2: f10d 0c2c add.w ip, sp, #44 ; 0x2c +100414a6: f10e 0e20 add.w lr, lr, #32 +100414aa: cb0f ldmia r3, {r0, r1, r2, r3} +100414ac: e88a 000f stmia.w sl, {r0, r1, r2, r3} +100414b0: e8be 000f ldmia.w lr!, {r0, r1, r2, r3} +100414b4: e8ac 000f stmia.w ip!, {r0, r1, r2, r3} +100414b8: e8be 000f ldmia.w lr!, {r0, r1, r2, r3} +100414bc: e8ac 000f stmia.w ip!, {r0, r1, r2, r3} +100414c0: f8de 3000 ldr.w r3, [lr] +100414c4: f8cc 3000 str.w r3, [ip] +100414c8: b99f cbnz r7, 100414f2 +100414ca: 2310 movs r3, #16 +100414cc: 4628 mov r0, r5 +100414ce: a914 add r1, sp, #80 ; 0x50 +100414d0: f606 4298 addw r2, r6, #3224 ; 0xc98 +100414d4: f7ff fe57 bl 10041186 <_PHY_SaveADDARegisters8195A> +100414d8: 4628 mov r0, r5 +100414da: 4651 mov r1, sl +100414dc: f606 42d8 addw r2, r6, #3288 ; 0xcd8 +100414e0: f7ff fe6b bl 100411ba <_PHY_SaveMACRegisters8195A> +100414e4: 4628 mov r0, r5 +100414e6: a90b add r1, sp, #44 ; 0x2c +100414e8: f606 520c addw r2, r6, #3340 ; 0xd0c +100414ec: 2309 movs r3, #9 +100414ee: f7ff fe4a bl 10041186 <_PHY_SaveADDARegisters8195A> +100414f2: 4628 mov r0, r5 +100414f4: a914 add r1, sp, #80 ; 0x50 +100414f6: 2201 movs r2, #1 +100414f8: 4643 mov r3, r8 +100414fa: f7ff fea7 bl 1004124c <_PHY_PathADDAOn8195A> +100414fe: b947 cbnz r7, 10041512 +10041500: 4620 mov r0, r4 +10041502: f44f 6102 mov.w r1, #2080 ; 0x820 +10041506: f44f 7280 mov.w r2, #256 ; 0x100 +1004150a: f7fd f922 bl 1003e752 +1004150e: f886 09a0 strb.w r0, [r6, #2464] ; 0x9a0 +10041512: f896 39a0 ldrb.w r3, [r6, #2464] ; 0x9a0 +10041516: b91b cbnz r3, 10041520 +10041518: 4628 mov r0, r5 +1004151a: 2101 movs r1, #1 +1004151c: f7ff fed8 bl 100412d0 <_PHY_PIModeSwitch8195A> +10041520: f640 1148 movw r1, #2376 ; 0x948 +10041524: f04f 32ff mov.w r2, #4294967295 +10041528: 4620 mov r0, r4 +1004152a: f7fd f912 bl 1003e752 +1004152e: 2100 movs r1, #0 +10041530: 22b0 movs r2, #176 ; 0xb0 +10041532: 4b96 ldr r3, [pc, #600] ; (1004178c ) +10041534: 4683 mov fp, r0 +10041536: 4620 mov r0, r4 +10041538: f7fd f911 bl 1003e75e +1004153c: f44f 6100 mov.w r1, #2048 ; 0x800 +10041540: 9005 str r0, [sp, #20] +10041542: f04f 7280 mov.w r2, #16777216 ; 0x1000000 +10041546: 4620 mov r0, r4 +10041548: 2300 movs r3, #0 +1004154a: f7fd f8ff bl 1003e74c +1004154e: 4620 mov r0, r4 +10041550: f640 4104 movw r1, #3076 ; 0xc04 +10041554: f04f 32ff mov.w r2, #4294967295 +10041558: 4b8d ldr r3, [pc, #564] ; (10041790 ) +1004155a: f7fd f8f7 bl 1003e74c +1004155e: 4620 mov r0, r4 +10041560: f640 4108 movw r1, #3080 ; 0xc08 +10041564: f04f 32ff mov.w r2, #4294967295 +10041568: 4b8a ldr r3, [pc, #552] ; (10041794 ) +1004156a: f7fd f8ef bl 1003e74c +1004156e: f606 4ad8 addw sl, r6, #3288 ; 0xcd8 +10041572: 4b89 ldr r3, [pc, #548] ; (10041798 ) +10041574: 4620 mov r0, r4 +10041576: f640 0174 movw r1, #2164 ; 0x874 +1004157a: f04f 32ff mov.w r2, #4294967295 +1004157e: f7fd f8e5 bl 1003e74c +10041582: 4628 mov r0, r5 +10041584: a907 add r1, sp, #28 +10041586: 4652 mov r2, sl +10041588: f7ff fe7e bl 10041288 <_PHY_MACSettingCalibration8195A> +1004158c: 4620 mov r0, r4 +1004158e: f640 6128 movw r1, #3624 ; 0xe28 +10041592: f06f 02ff mvn.w r2, #255 ; 0xff +10041596: 4b81 ldr r3, [pc, #516] ; (1004179c ) +10041598: f7fd f8d8 bl 1003e74c +1004159c: 4620 mov r0, r4 +1004159e: f44f 6164 mov.w r1, #3648 ; 0xe40 +100415a2: f04f 32ff mov.w r2, #4294967295 +100415a6: 4b7e ldr r3, [pc, #504] ; (100417a0 ) +100415a8: f7fd f8d0 bl 1003e74c +100415ac: 4620 mov r0, r4 +100415ae: f640 6144 movw r1, #3652 ; 0xe44 +100415b2: f04f 32ff mov.w r2, #4294967295 +100415b6: 4b7b ldr r3, [pc, #492] ; (100417a4 ) +100415b8: f7fd f8c8 bl 1003e74c +100415bc: 4628 mov r0, r5 +100415be: 4641 mov r1, r8 +100415c0: f7ff f9b4 bl 1004092c +100415c4: 2801 cmp r0, #1 +100415c6: d11f bne.n 10041608 +100415c8: 4620 mov r0, r4 +100415ca: f640 6128 movw r1, #3624 ; 0xe28 +100415ce: f06f 02ff mvn.w r2, #255 ; 0xff +100415d2: 2300 movs r3, #0 +100415d4: f7fd f8ba bl 1003e74c +100415d8: 2100 movs r1, #0 +100415da: 2208 movs r2, #8 +100415dc: 4b6b ldr r3, [pc, #428] ; (1004178c ) +100415de: 4620 mov r0, r4 +100415e0: f7fd f8bd bl 1003e75e +100415e4: 4b70 ldr r3, [pc, #448] ; (100417a8 ) +100415e6: f8c6 0dac str.w r0, [r6, #3500] ; 0xdac +100415ea: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +100415ee: e9d3 0102 ldrd r0, r1, [r3, #8] +100415f2: 2300 movs r3, #0 +100415f4: 4002 ands r2, r0 +100415f6: 400b ands r3, r1 +100415f8: ea52 0103 orrs.w r1, r2, r3 +100415fc: d00b beq.n 10041616 +100415fe: 4b6b ldr r3, [pc, #428] ; (100417ac ) +10041600: 6d18 ldr r0, [r3, #80] ; 0x50 +10041602: f000 fd81 bl 10042108 +10041606: e006 b.n 10041616 +10041608: 4628 mov r0, r5 +1004160a: 4641 mov r1, r8 +1004160c: f7ff f98e bl 1004092c +10041610: 2801 cmp r0, #1 +10041612: d11f bne.n 10041654 +10041614: e7d8 b.n 100415c8 +10041616: ea4f 1c47 mov.w ip, r7, lsl #5 +1004161a: eb09 030c add.w r3, r9, ip +1004161e: f640 6194 movw r1, #3732 ; 0xe94 +10041622: f04f 32ff mov.w r2, #4294967295 +10041626: 4620 mov r0, r4 +10041628: 9302 str r3, [sp, #8] +1004162a: f8cd c00c str.w ip, [sp, #12] +1004162e: f7fd f890 bl 1003e752 +10041632: f8dd c00c ldr.w ip, [sp, #12] +10041636: f3c0 4009 ubfx r0, r0, #16, #10 +1004163a: f849 000c str.w r0, [r9, ip] +1004163e: f640 619c movw r1, #3740 ; 0xe9c +10041642: 4620 mov r0, r4 +10041644: f04f 32ff mov.w r2, #4294967295 +10041648: f7fd f883 bl 1003e752 +1004164c: 9b02 ldr r3, [sp, #8] +1004164e: f3c0 4009 ubfx r0, r0, #16, #10 +10041652: 6058 str r0, [r3, #4] +10041654: 4628 mov r0, r5 +10041656: 4641 mov r1, r8 +10041658: f7ff fa42 bl 10040ae0 +1004165c: 2803 cmp r0, #3 +1004165e: d10f bne.n 10041680 +10041660: 4b51 ldr r3, [pc, #324] ; (100417a8 ) +10041662: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10041666: e9d3 0102 ldrd r0, r1, [r3, #8] +1004166a: 2300 movs r3, #0 +1004166c: 4002 ands r2, r0 +1004166e: 400b ands r3, r1 +10041670: ea52 0103 orrs.w r1, r2, r3 +10041674: d00b beq.n 1004168e +10041676: 4b4d ldr r3, [pc, #308] ; (100417ac ) +10041678: 6d58 ldr r0, [r3, #84] ; 0x54 +1004167a: f000 fd45 bl 10042108 +1004167e: e006 b.n 1004168e +10041680: 4628 mov r0, r5 +10041682: 4641 mov r1, r8 +10041684: f7ff fa2c bl 10040ae0 +10041688: 2803 cmp r0, #3 +1004168a: d119 bne.n 100416c0 +1004168c: e7e8 b.n 10041660 +1004168e: f640 61a4 movw r1, #3748 ; 0xea4 +10041692: f04f 32ff mov.w r2, #4294967295 +10041696: 4620 mov r0, r4 +10041698: f7fd f85b bl 1003e752 +1004169c: eb09 1947 add.w r9, r9, r7, lsl #5 +100416a0: f3c0 4009 ubfx r0, r0, #16, #10 +100416a4: f8c9 0008 str.w r0, [r9, #8] +100416a8: f640 61ac movw r1, #3756 ; 0xeac +100416ac: 4620 mov r0, r4 +100416ae: f04f 32ff mov.w r2, #4294967295 +100416b2: f7fd f84e bl 1003e752 +100416b6: f3c0 4009 ubfx r0, r0, #16, #10 +100416ba: f8c9 000c str.w r0, [r9, #12] +100416be: e00f b.n 100416e0 +100416c0: b970 cbnz r0, 100416e0 +100416c2: 4b39 ldr r3, [pc, #228] ; (100417a8 ) +100416c4: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +100416c8: e9d3 0102 ldrd r0, r1, [r3, #8] +100416cc: 2300 movs r3, #0 +100416ce: 4002 ands r2, r0 +100416d0: 400b ands r3, r1 +100416d2: ea52 0103 orrs.w r1, r2, r3 +100416d6: d003 beq.n 100416e0 +100416d8: 4b34 ldr r3, [pc, #208] ; (100417ac ) +100416da: 6d98 ldr r0, [r3, #88] ; 0x58 +100416dc: f000 fd14 bl 10042108 +100416e0: 4620 mov r0, r4 +100416e2: f640 6128 movw r1, #3624 ; 0xe28 +100416e6: f06f 02ff mvn.w r2, #255 ; 0xff +100416ea: 2300 movs r3, #0 +100416ec: f7fd f82e bl 1003e74c +100416f0: 2f00 cmp r7, #0 +100416f2: d047 beq.n 10041784 +100416f4: f896 19a0 ldrb.w r1, [r6, #2464] ; 0x9a0 +100416f8: b911 cbnz r1, 10041700 +100416fa: 4628 mov r0, r5 +100416fc: f7ff fde8 bl 100412d0 <_PHY_PIModeSwitch8195A> +10041700: 4628 mov r0, r5 +10041702: 2310 movs r3, #16 +10041704: a914 add r1, sp, #80 ; 0x50 +10041706: f606 4298 addw r2, r6, #3224 ; 0xc98 +1004170a: f7ff fd6d bl 100411e8 <_PHY_ReloadADDARegisters8195A> +1004170e: 4628 mov r0, r5 +10041710: a907 add r1, sp, #28 +10041712: 4652 mov r2, sl +10041714: f7ff fd82 bl 1004121c <_PHY_ReloadMACRegisters8195A> +10041718: 4628 mov r0, r5 +1004171a: a90b add r1, sp, #44 ; 0x2c +1004171c: f606 520c addw r2, r6, #3340 ; 0xd0c +10041720: 2309 movs r3, #9 +10041722: f7ff fd61 bl 100411e8 <_PHY_ReloadADDARegisters8195A> +10041726: 4620 mov r0, r4 +10041728: f640 1148 movw r1, #2376 ; 0x948 +1004172c: f04f 32ff mov.w r2, #4294967295 +10041730: 465b mov r3, fp +10041732: f7fd f80b bl 1003e74c +10041736: 9d05 ldr r5, [sp, #20] +10041738: 4620 mov r0, r4 +1004173a: 9500 str r5, [sp, #0] +1004173c: 2100 movs r1, #0 +1004173e: 22b0 movs r2, #176 ; 0xb0 +10041740: 4b12 ldr r3, [pc, #72] ; (1004178c ) +10041742: f7fd f809 bl 1003e758 +10041746: 4620 mov r0, r4 +10041748: f44f 6145 mov.w r1, #3152 ; 0xc50 +1004174c: 22ff movs r2, #255 ; 0xff +1004174e: 2350 movs r3, #80 ; 0x50 +10041750: f7fc fffc bl 1003e74c +10041754: 9d04 ldr r5, [sp, #16] +10041756: 4620 mov r0, r4 +10041758: f44f 6145 mov.w r1, #3152 ; 0xc50 +1004175c: 22ff movs r2, #255 ; 0xff +1004175e: b2eb uxtb r3, r5 +10041760: f7fc fff4 bl 1003e74c +10041764: 4620 mov r0, r4 +10041766: f44f 6163 mov.w r1, #3632 ; 0xe30 +1004176a: f04f 32ff mov.w r2, #4294967295 +1004176e: 4b10 ldr r3, [pc, #64] ; (100417b0 ) +10041770: f7fc ffec bl 1003e74c +10041774: 4620 mov r0, r4 +10041776: f640 6134 movw r1, #3636 ; 0xe34 +1004177a: f04f 32ff mov.w r2, #4294967295 +1004177e: 4b0c ldr r3, [pc, #48] ; (100417b0 ) +10041780: f7fc ffe4 bl 1003e74c +10041784: b025 add sp, #148 ; 0x94 +10041786: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +1004178a: bf00 nop +1004178c: 000fffff .word 0x000fffff +10041790: 03a05600 .word 0x03a05600 +10041794: 000800e4 .word 0x000800e4 +10041798: 25204000 .word 0x25204000 +1004179c: 00808000 .word 0x00808000 +100417a0: 01007c00 .word 0x01007c00 +100417a4: 01004800 .word 0x01004800 +100417a8: 10000720 .word 0x10000720 +100417ac: 1004da10 .word 0x1004da10 +100417b0: 01008c00 .word 0x01008c00 +100417b4: 1004d2e4 .word 0x1004d2e4 + +100417b8 : +100417b8: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} +100417ba: f640 5103 movw r1, #3331 ; 0xd03 +100417be: 4604 mov r4, r0 +100417c0: 6807 ldr r7, [r0, #0] +100417c2: f7fc ffb1 bl 1003e728 +100417c6: 4605 mov r5, r0 +100417c8: f015 0670 ands.w r6, r5, #112 ; 0x70 +100417cc: bf19 ittee ne +100417ce: f640 5103 movwne r1, #3331 ; 0xd03 +100417d2: f005 028f andne.w r2, r5, #143 ; 0x8f +100417d6: f240 5122 movweq r1, #1314 ; 0x522 +100417da: 22ff moveq r2, #255 ; 0xff +100417dc: 4620 mov r0, r4 +100417de: f7fc ffa9 bl 1003e734 +100417e2: 2100 movs r1, #0 +100417e4: 2218 movs r2, #24 +100417e6: f640 73ff movw r3, #4095 ; 0xfff +100417ea: 4638 mov r0, r7 +100417ec: f7f2 fd02 bl 100341f4 +100417f0: f440 4000 orr.w r0, r0, #32768 ; 0x8000 +100417f4: 9000 str r0, [sp, #0] +100417f6: 2100 movs r1, #0 +100417f8: 4620 mov r0, r4 +100417fa: 2218 movs r2, #24 +100417fc: f640 73ff movw r3, #4095 ; 0xfff +10041800: f7fc ffaa bl 1003e758 +10041804: 2064 movs r0, #100 ; 0x64 +10041806: f7fc ffb2 bl 1003e76e +1004180a: 4620 mov r0, r4 +1004180c: b11e cbz r6, 10041816 +1004180e: f640 5103 movw r1, #3331 ; 0xd03 +10041812: 462a mov r2, r5 +10041814: e002 b.n 1004181c +10041816: f240 5122 movw r1, #1314 ; 0x522 +1004181a: 4632 mov r2, r6 +1004181c: b003 add sp, #12 +1004181e: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +10041822: f7fc bf87 b.w 1003e734 + ... + +10041828 : +10041828: b538 push {r3, r4, r5, lr} +1004182a: 6a43 ldr r3, [r0, #36] ; 0x24 +1004182c: 4604 mov r4, r0 +1004182e: 015b lsls r3, r3, #5 +10041830: d525 bpl.n 1004187e +10041832: 2529 movs r5, #41 ; 0x29 +10041834: f8d4 3084 ldr.w r3, [r4, #132] ; 0x84 +10041838: 781b ldrb r3, [r3, #0] +1004183a: b12b cbz r3, 10041848 +1004183c: 3d01 subs r5, #1 +1004183e: d003 beq.n 10041848 +10041840: 2032 movs r0, #50 ; 0x32 +10041842: f7fc ff94 bl 1003e76e +10041846: e7f5 b.n 10041834 +10041848: 2301 movs r3, #1 +1004184a: f884 3a91 strb.w r3, [r4, #2705] ; 0xa91 +1004184e: 4620 mov r0, r4 +10041850: 2100 movs r1, #0 +10041852: f7ff ffb1 bl 100417b8 +10041856: 2300 movs r3, #0 +10041858: f884 3a91 strb.w r3, [r4, #2705] ; 0xa91 +1004185c: 4b08 ldr r3, [pc, #32] ; (10041880 ) +1004185e: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10041862: e9d3 0102 ldrd r0, r1, [r3, #8] +10041866: 2300 movs r3, #0 +10041868: 4002 ands r2, r0 +1004186a: 400b ands r3, r1 +1004186c: ea52 0103 orrs.w r1, r2, r3 +10041870: d005 beq.n 1004187e +10041872: 4b04 ldr r3, [pc, #16] ; (10041884 ) +10041874: 6e18 ldr r0, [r3, #96] ; 0x60 +10041876: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} +1004187a: f000 bc45 b.w 10042108 +1004187e: bd38 pop {r3, r4, r5, pc} +10041880: 10000720 .word 0x10000720 +10041884: 1004da10 .word 0x1004da10 + +10041888 : +10041888: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +1004188c: 4fa7 ldr r7, [pc, #668] ; (10041b2c ) +1004188e: b0af sub sp, #188 ; 0xbc +10041890: f241 6318 movw r3, #5656 ; 0x1618 +10041894: ae05 add r6, sp, #20 +10041896: 58c4 ldr r4, [r0, r3] +10041898: 4605 mov r5, r0 +1004189a: 4688 mov r8, r1 +1004189c: 4694 mov ip, r2 +1004189e: cf0f ldmia r7!, {r0, r1, r2, r3} +100418a0: c60f stmia r6!, {r0, r1, r2, r3} +100418a2: cf0f ldmia r7!, {r0, r1, r2, r3} +100418a4: c60f stmia r6!, {r0, r1, r2, r3} +100418a6: 683b ldr r3, [r7, #0] +100418a8: 6033 str r3, [r6, #0] +100418aa: f8d4 3224 ldr.w r3, [r4, #548] ; 0x224 +100418ae: 015b lsls r3, r3, #5 +100418b0: f140 8138 bpl.w 10041b24 +100418b4: f504 7700 add.w r7, r4, #512 ; 0x200 +100418b8: f1bc 0f00 cmp.w ip, #0 +100418bc: d10a bne.n 100418d4 +100418be: f1b8 0f00 cmp.w r8, #0 +100418c2: d041 beq.n 10041948 +100418c4: 4628 mov r0, r5 +100418c6: a905 add r1, sp, #20 +100418c8: f604 42e8 addw r2, r4, #3304 ; 0xce8 +100418cc: 2309 movs r3, #9 +100418ce: f7ff fc8b bl 100411e8 <_PHY_ReloadADDARegisters8195A> +100418d2: e127 b.n 10041b24 +100418d4: 2600 movs r6, #0 +100418d6: f504 6317 add.w r3, r4, #2416 ; 0x970 +100418da: 4433 add r3, r6 +100418dc: f8d3 13c0 ldr.w r1, [r3, #960] ; 0x3c0 +100418e0: f8d3 33c4 ldr.w r3, [r3, #964] ; 0x3c4 +100418e4: b151 cbz r1, 100418fc +100418e6: b14b cbz r3, 100418fc +100418e8: 4638 mov r0, r7 +100418ea: f04f 32ff mov.w r2, #4294967295 +100418ee: 3608 adds r6, #8 +100418f0: f7fc ff2c bl 1003e74c +100418f4: 2e18 cmp r6, #24 +100418f6: d1ee bne.n 100418d6 +100418f8: 2600 movs r6, #0 +100418fa: e000 b.n 100418fe +100418fc: 26ff movs r6, #255 ; 0xff +100418fe: f504 6956 add.w r9, r4, #3424 ; 0xd60 +10041902: f04f 0a00 mov.w sl, #0 +10041906: e899 000a ldmia.w r9, {r1, r3} +1004190a: b169 cbz r1, 10041928 +1004190c: b163 cbz r3, 10041928 +1004190e: 4638 mov r0, r7 +10041910: f04f 32ff mov.w r2, #4294967295 +10041914: f10a 0a08 add.w sl, sl, #8 +10041918: f7fc ff18 bl 1003e74c +1004191c: f1ba 0f10 cmp.w sl, #16 +10041920: f109 0908 add.w r9, r9, #8 +10041924: d001 beq.n 1004192a +10041926: e7ee b.n 10041906 +10041928: 26ff movs r6, #255 ; 0xff +1004192a: f8d4 3dac ldr.w r3, [r4, #3500] ; 0xdac +1004192e: 2b00 cmp r3, #0 +10041930: d0c5 beq.n 100418be +10041932: 9300 str r3, [sp, #0] +10041934: 4638 mov r0, r7 +10041936: 2100 movs r1, #0 +10041938: 2208 movs r2, #8 +1004193a: 4b7d ldr r3, [pc, #500] ; (10041b30 ) +1004193c: f7fc ff0c bl 1003e758 +10041940: 2e00 cmp r6, #0 +10041942: f000 80ef beq.w 10041b24 +10041946: e7ba b.n 100418be +10041948: f640 1148 movw r1, #2376 ; 0x948 +1004194c: f04f 32ff mov.w r2, #4294967295 +10041950: 4638 mov r0, r7 +10041952: f7fc fefe bl 1003e752 +10041956: 22b0 movs r2, #176 ; 0xb0 +10041958: 4683 mov fp, r0 +1004195a: 4641 mov r1, r8 +1004195c: 4638 mov r0, r7 +1004195e: 4b74 ldr r3, [pc, #464] ; (10041b30 ) +10041960: f7fc fefd bl 1003e75e +10041964: 4642 mov r2, r8 +10041966: 9003 str r0, [sp, #12] +10041968: 2300 movs r3, #0 +1004196a: f10d 0838 add.w r8, sp, #56 ; 0x38 +1004196e: f842 3008 str.w r3, [r2, r8] +10041972: eb08 0102 add.w r1, r8, r2 +10041976: 3204 adds r2, #4 +10041978: 2a20 cmp r2, #32 +1004197a: 620b str r3, [r1, #32] +1004197c: 640b str r3, [r1, #64] ; 0x40 +1004197e: 660b str r3, [r1, #96] ; 0x60 +10041980: d1f2 bne.n 10041968 +10041982: 4699 mov r9, r3 +10041984: 26ff movs r6, #255 ; 0xff +10041986: 469a mov sl, r3 +10041988: 4628 mov r0, r5 +1004198a: a90e add r1, sp, #56 ; 0x38 +1004198c: 4652 mov r2, sl +1004198e: 2300 movs r3, #0 +10041990: f7ff fd56 bl 10041440 +10041994: f1ba 0f01 cmp.w sl, #1 +10041998: d108 bne.n 100419ac +1004199a: 4628 mov r0, r5 +1004199c: a90e add r1, sp, #56 ; 0x38 +1004199e: 2200 movs r2, #0 +100419a0: 4653 mov r3, sl +100419a2: f7ff fcb3 bl 1004130c +100419a6: b318 cbz r0, 100419f0 +100419a8: 2600 movs r6, #0 +100419aa: e028 b.n 100419fe +100419ac: f1ba 0f02 cmp.w sl, #2 +100419b0: d11e bne.n 100419f0 +100419b2: 4628 mov r0, r5 +100419b4: a90e add r1, sp, #56 ; 0x38 +100419b6: 2200 movs r2, #0 +100419b8: 4653 mov r3, sl +100419ba: f7ff fca7 bl 1004130c +100419be: 2800 cmp r0, #0 +100419c0: d1f2 bne.n 100419a8 +100419c2: 4628 mov r0, r5 +100419c4: a90e add r1, sp, #56 ; 0x38 +100419c6: 2201 movs r2, #1 +100419c8: 4653 mov r3, sl +100419ca: f7ff fc9f bl 1004130c +100419ce: b970 cbnz r0, 100419ee +100419d0: ab25 add r3, sp, #148 ; 0x94 +100419d2: aa2d add r2, sp, #180 ; 0xb4 +100419d4: f853 1f04 ldr.w r1, [r3, #4]! +100419d8: 4293 cmp r3, r2 +100419da: 4489 add r9, r1 +100419dc: d1fa bne.n 100419d4 +100419de: f1b9 0f00 cmp.w r9, #0 +100419e2: bf0c ite eq +100419e4: 26ff moveq r6, #255 ; 0xff +100419e6: 2603 movne r6, #3 +100419e8: f04f 0a08 mov.w sl, #8 +100419ec: e000 b.n 100419f0 +100419ee: 2601 movs r6, #1 +100419f0: f10a 0a01 add.w sl, sl, #1 +100419f4: fa5f fa8a uxtb.w sl, sl +100419f8: f1ba 0f02 cmp.w sl, #2 +100419fc: d9c4 bls.n 10041988 +100419fe: ab0e add r3, sp, #56 ; 0x38 +10041a00: a82e add r0, sp, #184 ; 0xb8 +10041a02: 681a ldr r2, [r3, #0] +10041a04: 6899 ldr r1, [r3, #8] +10041a06: f8d3 a010 ldr.w sl, [r3, #16] +10041a0a: f8d3 c018 ldr.w ip, [r3, #24] +10041a0e: 3320 adds r3, #32 +10041a10: 4283 cmp r3, r0 +10041a12: d1f6 bne.n 10041a02 +10041a14: 2eff cmp r6, #255 ; 0xff +10041a16: d019 beq.n 10041a4c +10041a18: a92e add r1, sp, #184 ; 0xb8 +10041a1a: eb01 1346 add.w r3, r1, r6, lsl #5 +10041a1e: f853 1c7c ldr.w r1, [r3, #-124] +10041a22: f853 2c80 ldr.w r2, [r3, #-128] +10041a26: f8c4 1978 str.w r1, [r4, #2424] ; 0x978 +10041a2a: f853 ac70 ldr.w sl, [r3, #-112] +10041a2e: f853 1c6c ldr.w r1, [r3, #-108] +10041a32: f8c4 2974 str.w r2, [r4, #2420] ; 0x974 +10041a36: f8c4 1980 str.w r1, [r4, #2432] ; 0x980 +10041a3a: f8c4 a97c str.w sl, [r4, #2428] ; 0x97c +10041a3e: f853 1c78 ldr.w r1, [r3, #-120] +10041a42: f853 cc68 ldr.w ip, [r3, #-104] +10041a46: f04f 0901 mov.w r9, #1 +10041a4a: e00b b.n 10041a64 +10041a4c: f44f 7380 mov.w r3, #256 ; 0x100 +10041a50: f8c4 397c str.w r3, [r4, #2428] ; 0x97c +10041a54: f8c4 3974 str.w r3, [r4, #2420] ; 0x974 +10041a58: 2300 movs r3, #0 +10041a5a: f8c4 3980 str.w r3, [r4, #2432] ; 0x980 +10041a5e: f8c4 3978 str.w r3, [r4, #2424] ; 0x978 +10041a62: 4699 mov r9, r3 +10041a64: b172 cbz r2, 10041a84 +10041a66: f1d1 0101 rsbs r1, r1, #1 +10041a6a: bf38 it cc +10041a6c: 2100 movcc r1, #0 +10041a6e: 9100 str r1, [sp, #0] +10041a70: 4628 mov r0, r5 +10041a72: 4649 mov r1, r9 +10041a74: aa0e add r2, sp, #56 ; 0x38 +10041a76: 4633 mov r3, r6 +10041a78: f8cd c008 str.w ip, [sp, #8] +10041a7c: f7ff f9fa bl 10040e74 <_PHY_PathAFillIQKMatrix8195A> +10041a80: f8dd c008 ldr.w ip, [sp, #8] +10041a84: f1ba 0f00 cmp.w sl, #0 +10041a88: d00a beq.n 10041aa0 +10041a8a: f1dc 0301 rsbs r3, ip, #1 +10041a8e: bf38 it cc +10041a90: 2300 movcc r3, #0 +10041a92: 9300 str r3, [sp, #0] +10041a94: 4628 mov r0, r5 +10041a96: 4649 mov r1, r9 +10041a98: 4642 mov r2, r8 +10041a9a: 4633 mov r3, r6 +10041a9c: f7ff fab5 bl 1004100a <_PHY_PathBFillIQKMatrix8195A> +10041aa0: f894 0034 ldrb.w r0, [r4, #52] ; 0x34 +10041aa4: f000 fa8c bl 10041fc0 +10041aa8: 2e03 cmp r6, #3 +10041aaa: d815 bhi.n 10041ad8 +10041aac: 2324 movs r3, #36 ; 0x24 +10041aae: f504 7e00 add.w lr, r4, #512 ; 0x200 +10041ab2: fb03 ee00 mla lr, r3, r0, lr +10041ab6: eb08 1646 add.w r6, r8, r6, lsl #5 +10041aba: 2300 movs r3, #0 +10041abc: 58f2 ldr r2, [r6, r3] +10041abe: eb0e 0103 add.w r1, lr, r3 +10041ac2: 3304 adds r3, #4 +10041ac4: 2b20 cmp r3, #32 +10041ac6: f8c1 27c4 str.w r2, [r1, #1988] ; 0x7c4 +10041aca: d1f7 bne.n 10041abc +10041acc: 2324 movs r3, #36 ; 0x24 +10041ace: fb03 4000 mla r0, r3, r0, r4 +10041ad2: 2301 movs r3, #1 +10041ad4: f880 39c0 strb.w r3, [r0, #2496] ; 0x9c0 +10041ad8: 4628 mov r0, r5 +10041ada: a905 add r1, sp, #20 +10041adc: f604 42e8 addw r2, r4, #3304 ; 0xce8 +10041ae0: 2309 movs r3, #9 +10041ae2: f7ff fb50 bl 10041186 <_PHY_SaveADDARegisters8195A> +10041ae6: 4638 mov r0, r7 +10041ae8: f640 1148 movw r1, #2376 ; 0x948 +10041aec: f04f 32ff mov.w r2, #4294967295 +10041af0: 465b mov r3, fp +10041af2: f7fc fe2b bl 1003e74c +10041af6: 9a03 ldr r2, [sp, #12] +10041af8: 4638 mov r0, r7 +10041afa: 9200 str r2, [sp, #0] +10041afc: 2100 movs r1, #0 +10041afe: 22b0 movs r2, #176 ; 0xb0 +10041b00: 4b0b ldr r3, [pc, #44] ; (10041b30 ) +10041b02: f7fc fe29 bl 1003e758 +10041b06: 4b0b ldr r3, [pc, #44] ; (10041b34 ) +10041b08: f04f 6280 mov.w r2, #67108864 ; 0x4000000 +10041b0c: e9d3 0102 ldrd r0, r1, [r3, #8] +10041b10: 2300 movs r3, #0 +10041b12: 4002 ands r2, r0 +10041b14: 400b ands r3, r1 +10041b16: ea52 0103 orrs.w r1, r2, r3 +10041b1a: d003 beq.n 10041b24 +10041b1c: 4b06 ldr r3, [pc, #24] ; (10041b38 ) +10041b1e: 6dd8 ldr r0, [r3, #92] ; 0x5c +10041b20: f000 faf2 bl 10042108 +10041b24: b02f add sp, #188 ; 0xbc +10041b26: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10041b2a: bf00 nop +10041b2c: 1004d358 .word 0x1004d358 +10041b30: 000fffff .word 0x000fffff +10041b34: 10000720 .word 0x10000720 +10041b38: 1004da10 .word 0x1004da10 + +10041b3c : +10041b3c: b570 push {r4, r5, r6, lr} +10041b3e: 6805 ldr r5, [r0, #0] +10041b40: 4604 mov r4, r0 +10041b42: 4616 mov r6, r2 +10041b44: f000 fa18 bl 10041f78 +10041b48: 2100 movs r1, #0 +10041b4a: f884 678f strb.w r6, [r4, #1935] ; 0x78f +10041b4e: 4628 mov r0, r5 +10041b50: 460a mov r2, r1 +10041b52: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +10041b56: f7ff be97 b.w 10041888 + +10041b5a : +10041b5a: 6ac3 ldr r3, [r0, #44] ; 0x2c +10041b5c: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +10041b60: d102 bne.n 10041b68 +10041b62: 4608 mov r0, r1 +10041b64: f7fe bebc b.w 100408e0 +10041b68: 4770 bx lr + ... + +10041b6c : +10041b6c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10041b70: f241 6318 movw r3, #5656 ; 0x1618 +10041b74: 58c4 ldr r4, [r0, r3] +10041b76: b09d sub sp, #116 ; 0x74 +10041b78: f504 7600 add.w r6, r4, #512 ; 0x200 +10041b7c: f8d4 32a4 ldr.w r3, [r4, #676] ; 0x2a4 +10041b80: 4630 mov r0, r6 +10041b82: a913 add r1, sp, #76 ; 0x4c +10041b84: 881f ldrh r7, [r3, #0] +10041b86: f7ff ffe8 bl 10041b5a +10041b8a: f8d4 32a4 ldr.w r3, [r4, #676] ; 0x2a4 +10041b8e: 2202 movs r2, #2 +10041b90: 801a strh r2, [r3, #0] +10041b92: ab0e add r3, sp, #56 ; 0x38 +10041b94: 9300 str r3, [sp, #0] +10041b96: 4630 mov r0, r6 +10041b98: a909 add r1, sp, #36 ; 0x24 +10041b9a: aa0a add r2, sp, #40 ; 0x28 +10041b9c: ab0d add r3, sp, #52 ; 0x34 +10041b9e: 9d19 ldr r5, [sp, #100] ; 0x64 +10041ba0: 47a8 blx r5 +10041ba2: f8d4 32a4 ldr.w r3, [r4, #676] ; 0x2a4 +10041ba6: 220c movs r2, #12 +10041ba8: 801a strh r2, [r3, #0] +10041baa: ab10 add r3, sp, #64 ; 0x40 +10041bac: 9300 str r3, [sp, #0] +10041bae: 4630 mov r0, r6 +10041bb0: a90b add r1, sp, #44 ; 0x2c +10041bb2: aa0c add r2, sp, #48 ; 0x30 +10041bb4: ab0f add r3, sp, #60 ; 0x3c +10041bb6: 9d19 ldr r5, [sp, #100] ; 0x64 +10041bb8: 47a8 blx r5 +10041bba: 4630 mov r0, r6 +10041bbc: a911 add r1, sp, #68 ; 0x44 +10041bbe: aa12 add r2, sp, #72 ; 0x48 +10041bc0: 9b1a ldr r3, [sp, #104] ; 0x68 +10041bc2: 4798 blx r3 +10041bc4: f8d4 32a4 ldr.w r3, [r4, #676] ; 0x2a4 +10041bc8: 4630 mov r0, r6 +10041bca: 801f strh r7, [r3, #0] +10041bcc: f8d4 39a4 ldr.w r3, [r4, #2468] ; 0x9a4 +10041bd0: 2100 movs r1, #0 +10041bd2: 3301 adds r3, #1 +10041bd4: f8c4 39a4 str.w r3, [r4, #2468] ; 0x9a4 +10041bd8: 2301 movs r3, #1 +10041bda: f884 3985 strb.w r3, [r4, #2437] ; 0x985 +10041bde: 9a15 ldr r2, [sp, #84] ; 0x54 +10041be0: f44f 437c mov.w r3, #64512 ; 0xfc00 +10041be4: f7fc fdbb bl 1003e75e +10041be8: f894 3987 ldrb.w r3, [r4, #2439] ; 0x987 +10041bec: 2b00 cmp r3, #0 +10041bee: f000 81bd beq.w 10041f6c +10041bf2: f894 3044 ldrb.w r3, [r4, #68] ; 0x44 +10041bf6: 3b01 subs r3, #1 +10041bf8: b2db uxtb r3, r3 +10041bfa: 2bfd cmp r3, #253 ; 0xfd +10041bfc: f200 81b6 bhi.w 10041f6c +10041c00: 49b9 ldr r1, [pc, #740] ; (10041ee8 ) +10041c02: f04f 0900 mov.w r9, #0 +10041c06: f04f 7880 mov.w r8, #16777216 ; 0x1000000 +10041c0a: e9d1 2302 ldrd r2, r3, [r1, #8] +10041c0e: ea03 0309 and.w r3, r3, r9 +10041c12: ea02 0208 and.w r2, r2, r8 +10041c16: ea52 0503 orrs.w r5, r2, r3 +10041c1a: 4689 mov r9, r1 +10041c1c: b2c5 uxtb r5, r0 +10041c1e: d004 beq.n 10041c2a +10041c20: 4bb2 ldr r3, [pc, #712] ; (10041eec ) +10041c22: 4629 mov r1, r5 +10041c24: 6b58 ldr r0, [r3, #52] ; 0x34 +10041c26: f000 fa6f bl 10042108 +10041c2a: f894 3999 ldrb.w r3, [r4, #2457] ; 0x999 +10041c2e: f89d 004f ldrb.w r0, [sp, #79] ; 0x4f +10041c32: 18e2 adds r2, r4, r3 +10041c34: 3301 adds r3, #1 +10041c36: b2db uxtb r3, r3 +10041c38: 4283 cmp r3, r0 +10041c3a: f882 5991 strb.w r5, [r2, #2449] ; 0x991 +10041c3e: f884 3999 strb.w r3, [r4, #2457] ; 0x999 +10041c42: bf04 itt eq +10041c44: 2300 moveq r3, #0 +10041c46: f884 3999 strbeq.w r3, [r4, #2457] ; 0x999 +10041c4a: 2300 movs r3, #0 +10041c4c: 4619 mov r1, r3 +10041c4e: 461a mov r2, r3 +10041c50: b2df uxtb r7, r3 +10041c52: 4287 cmp r7, r0 +10041c54: d208 bcs.n 10041c68 +10041c56: 18f7 adds r7, r6, r3 +10041c58: f897 7791 ldrb.w r7, [r7, #1937] ; 0x791 +10041c5c: b117 cbz r7, 10041c64 +10041c5e: 3201 adds r2, #1 +10041c60: 4439 add r1, r7 +10041c62: b2d2 uxtb r2, r2 +10041c64: 3301 adds r3, #1 +10041c66: e7f3 b.n 10041c50 +10041c68: b112 cbz r2, 10041c70 +10041c6a: fbb1 f5f2 udiv r5, r1, r2 +10041c6e: b2ed uxtb r5, r5 +10041c70: f894 798d ldrb.w r7, [r4, #2445] ; 0x98d +10041c74: f894 398e ldrb.w r3, [r4, #2446] ; 0x98e +10041c78: 42bd cmp r5, r7 +10041c7a: f894 898f ldrb.w r8, [r4, #2447] ; 0x98f +10041c7e: bf8c ite hi +10041c80: ebc7 0705 rsbhi r7, r7, r5 +10041c84: ebc5 0707 rsbls r7, r5, r7 +10041c88: 429d cmp r5, r3 +10041c8a: bf8c ite hi +10041c8c: ebc3 0305 rsbhi r3, r3, r5 +10041c90: ebc5 0303 rsbls r3, r5, r3 +10041c94: f89d 204e ldrb.w r2, [sp, #78] ; 0x4e +10041c98: 4545 cmp r5, r8 +10041c9a: b2db uxtb r3, r3 +10041c9c: bf8c ite hi +10041c9e: ebc8 0805 rsbhi r8, r8, r5 +10041ca2: ebc5 0808 rsbls r8, r5, r8 +10041ca6: 429a cmp r2, r3 +10041ca8: b2ff uxtb r7, r7 +10041caa: fa5f f888 uxtb.w r8, r8 +10041cae: d805 bhi.n 10041cbc +10041cb0: 9b18 ldr r3, [sp, #96] ; 0x60 +10041cb2: f884 598e strb.w r5, [r4, #2446] ; 0x98e +10041cb6: b10b cbz r3, 10041cbc +10041cb8: 4630 mov r0, r6 +10041cba: 4798 blx r3 +10041cbc: b117 cbz r7, 10041cc4 +10041cbe: f894 3987 ldrb.w r3, [r4, #2439] ; 0x987 +10041cc2: b943 cbnz r3, 10041cd6 +10041cc4: f89d 2050 ldrb.w r2, [sp, #80] ; 0x50 +10041cc8: 2300 movs r3, #0 +10041cca: 2a00 cmp r2, #0 +10041ccc: f000 80be beq.w 10041e4c +10041cd0: f884 39ae strb.w r3, [r4, #2478] ; 0x9ae +10041cd4: e0ba b.n 10041e4c +10041cd6: f894 e044 ldrb.w lr, [r4, #68] ; 0x44 +10041cda: f04f 7280 mov.w r2, #16777216 ; 0x1000000 +10041cde: 4575 cmp r5, lr +10041ce0: bf8c ite hi +10041ce2: ebce 0705 rsbhi r7, lr, r5 +10041ce6: ebc5 070e rsbls r7, r5, lr +10041cea: 2300 movs r3, #0 +10041cec: e9d9 0102 ldrd r0, r1, [r9, #8] +10041cf0: b2ff uxtb r7, r7 +10041cf2: 4002 ands r2, r0 +10041cf4: 400b ands r3, r1 +10041cf6: 2f1d cmp r7, #29 +10041cf8: bf28 it cs +10041cfa: 271d movcs r7, #29 +10041cfc: ea52 0a03 orrs.w sl, r2, r3 +10041d00: d009 beq.n 10041d16 +10041d02: f894 303d ldrb.w r3, [r4, #61] ; 0x3d +10041d06: 4639 mov r1, r7 +10041d08: 9300 str r3, [sp, #0] +10041d0a: 4b78 ldr r3, [pc, #480] ; (10041eec ) +10041d0c: 462a mov r2, r5 +10041d0e: 6b98 ldr r0, [r3, #56] ; 0x38 +10041d10: 4673 mov r3, lr +10041d12: f000 f9f9 bl 10042108 +10041d16: f894 3044 ldrb.w r3, [r4, #68] ; 0x44 +10041d1a: f894 19af ldrb.w r1, [r4, #2479] ; 0x9af +10041d1e: 42ab cmp r3, r5 +10041d20: f894 29ab ldrb.w r2, [r4, #2475] ; 0x9ab +10041d24: f894 39b2 ldrb.w r3, [r4, #2482] ; 0x9b2 +10041d28: f884 19b0 strb.w r1, [r4, #2480] ; 0x9b0 +10041d2c: d213 bcs.n 10041d56 +10041d2e: 990b ldr r1, [sp, #44] ; 0x2c +10041d30: 5dc8 ldrb r0, [r1, r7] +10041d32: f884 09af strb.w r0, [r4, #2479] ; 0x9af +10041d36: 5dc9 ldrb r1, [r1, r7] +10041d38: f884 29ac strb.w r2, [r4, #2476] ; 0x9ac +10041d3c: 9a09 ldr r2, [sp, #36] ; 0x24 +10041d3e: f884 1dda strb.w r1, [r4, #3546] ; 0xdda +10041d42: 5dd1 ldrb r1, [r2, r7] +10041d44: f884 19ab strb.w r1, [r4, #2475] ; 0x9ab +10041d48: 5dd2 ldrb r2, [r2, r7] +10041d4a: f884 39b3 strb.w r3, [r4, #2483] ; 0x9b3 +10041d4e: f884 2ddb strb.w r2, [r4, #3547] ; 0xddb +10041d52: 9a11 ldr r2, [sp, #68] ; 0x44 +10041d54: e016 b.n 10041d84 +10041d56: 990c ldr r1, [sp, #48] ; 0x30 +10041d58: 5dc8 ldrb r0, [r1, r7] +10041d5a: 4240 negs r0, r0 +10041d5c: f884 09af strb.w r0, [r4, #2479] ; 0x9af +10041d60: 5dc9 ldrb r1, [r1, r7] +10041d62: f884 29ac strb.w r2, [r4, #2476] ; 0x9ac +10041d66: 4249 negs r1, r1 +10041d68: 9a0a ldr r2, [sp, #40] ; 0x28 +10041d6a: f884 1dda strb.w r1, [r4, #3546] ; 0xdda +10041d6e: 5dd1 ldrb r1, [r2, r7] +10041d70: 4249 negs r1, r1 +10041d72: f884 19ab strb.w r1, [r4, #2475] ; 0x9ab +10041d76: 5dd2 ldrb r2, [r2, r7] +10041d78: f884 39b3 strb.w r3, [r4, #2483] ; 0x9b3 +10041d7c: 4252 negs r2, r2 +10041d7e: f884 2ddb strb.w r2, [r4, #3547] ; 0xddb +10041d82: 9a12 ldr r2, [sp, #72] ; 0x48 +10041d84: f812 9007 ldrb.w r9, [r2, r7] +10041d88: f89d b04d ldrb.w fp, [sp, #77] ; 0x4d +10041d8c: f884 99b2 strb.w r9, [r4, #2482] ; 0x9b2 +10041d90: f89d e04c ldrb.w lr, [sp, #76] ; 0x4c +10041d94: ebb9 0903 subs.w r9, r9, r3 +10041d98: f10b 33ff add.w r3, fp, #4294967295 +10041d9c: b2db uxtb r3, r3 +10041d9e: f89d c050 ldrb.w ip, [sp, #80] ; 0x50 +10041da2: 9305 str r3, [sp, #20] +10041da4: f10e 33ff add.w r3, lr, #4294967295 +10041da8: f504 7000 add.w r0, r4, #512 ; 0x200 +10041dac: b2db uxtb r3, r3 +10041dae: bf18 it ne +10041db0: f04f 0901 movne.w r9, #1 +10041db4: f8cd c010 str.w ip, [sp, #16] +10041db8: 9306 str r3, [sp, #24] +10041dba: 9002 str r0, [sp, #8] +10041dbc: 4601 mov r1, r0 +10041dbe: 2200 movs r2, #0 +10041dc0: f8dd a010 ldr.w sl, [sp, #16] +10041dc4: b2d3 uxtb r3, r2 +10041dc6: 4553 cmp r3, sl +10041dc8: d245 bcs.n 10041e56 +10041dca: f8dd a008 ldr.w sl, [sp, #8] +10041dce: 1b0b subs r3, r1, r4 +10041dd0: 4453 add r3, sl +10041dd2: f893 05b0 ldrb.w r0, [r3, #1456] ; 0x5b0 +10041dd6: f893 a5af ldrb.w sl, [r3, #1455] ; 0x5af +10041dda: 3201 adds r2, #1 +10041ddc: 4550 cmp r0, sl +10041dde: bf14 ite ne +10041de0: ebc0 000a rsbne r0, r0, sl +10041de4: 2000 moveq r0, #0 +10041de6: f893 a5ab ldrb.w sl, [r3, #1451] ; 0x5ab +10041dea: f883 05ae strb.w r0, [r3, #1454] ; 0x5ae +10041dee: f893 05ac ldrb.w r0, [r3, #1452] ; 0x5ac +10041df2: 3101 adds r1, #1 +10041df4: 4550 cmp r0, sl +10041df6: bf14 ite ne +10041df8: ebc0 000a rsbne r0, r0, sl +10041dfc: 2000 moveq r0, #0 +10041dfe: f883 05aa strb.w r0, [r3, #1450] ; 0x5aa +10041e02: f893 a5ae ldrb.w sl, [r3, #1454] ; 0x5ae +10041e06: f893 09d2 ldrb.w r0, [r3, #2514] ; 0x9d2 +10041e0a: f893 c5aa ldrb.w ip, [r3, #1450] ; 0x5aa +10041e0e: 4450 add r0, sl +10041e10: b2c0 uxtb r0, r0 +10041e12: f893 a9d6 ldrb.w sl, [r3, #2518] ; 0x9d6 +10041e16: 4583 cmp fp, r0 +10041e18: 44e2 add sl, ip +10041e1a: bfd8 it le +10041e1c: f8dd c014 ldrle.w ip, [sp, #20] +10041e20: f8cd a01c str.w sl, [sp, #28] +10041e24: fa5f fa8a uxtb.w sl, sl +10041e28: f883 05ad strb.w r0, [r3, #1453] ; 0x5ad +10041e2c: bfd8 it le +10041e2e: f883 c5ad strble.w ip, [r3, #1453] ; 0x5ad +10041e32: 45d6 cmp lr, sl +10041e34: f883 09d0 strb.w r0, [r3, #2512] ; 0x9d0 +10041e38: bfd8 it le +10041e3a: 9806 ldrle r0, [sp, #24] +10041e3c: f883 a5a9 strb.w sl, [r3, #1449] ; 0x5a9 +10041e40: f883 a9d4 strb.w sl, [r3, #2516] ; 0x9d4 +10041e44: bfd8 it le +10041e46: f883 05a9 strble.w r0, [r3, #1449] ; 0x5a9 +10041e4a: e7b9 b.n 10041dc0 +10041e4c: 4422 add r2, r4 +10041e4e: f882 39aa strb.w r3, [r2, #2474] ; 0x9aa +10041e52: f04f 0900 mov.w r9, #0 +10041e56: f994 39ae ldrsb.w r3, [r4, #2478] ; 0x9ae +10041e5a: b91b cbnz r3, 10041e64 +10041e5c: f994 39aa ldrsb.w r3, [r4, #2474] ; 0x9aa +10041e60: 2b00 cmp r3, #0 +10041e62: d047 beq.n 10041ef4 +10041e64: 2f00 cmp r7, #0 +10041e66: d045 beq.n 10041ef4 +10041e68: f894 3987 ldrb.w r3, [r4, #2439] ; 0x987 +10041e6c: 2b00 cmp r3, #0 +10041e6e: d041 beq.n 10041ef4 +10041e70: 2301 movs r3, #1 +10041e72: f884 39b1 strb.w r3, [r4, #2481] ; 0x9b1 +10041e76: f894 3044 ldrb.w r3, [r4, #68] ; 0x44 +10041e7a: 42ab cmp r3, r5 +10041e7c: f8d4 322c ldr.w r3, [r4, #556] ; 0x22c +10041e80: d21e bcs.n 10041ec0 +10041e82: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +10041e86: d00b beq.n 10041ea0 +10041e88: f89d 3050 ldrb.w r3, [sp, #80] ; 0x50 +10041e8c: b383 cbz r3, 10041ef0 +10041e8e: f894 3dd4 ldrb.w r3, [r4, #3540] ; 0xdd4 +10041e92: f884 3dd6 strb.w r3, [r4, #3542] ; 0xdd6 +10041e96: f894 3dd0 ldrb.w r3, [r4, #3536] ; 0xdd0 +10041e9a: f884 3dd2 strb.w r3, [r4, #3538] ; 0xdd2 +10041e9e: e027 b.n 10041ef0 +10041ea0: f04f 0a00 mov.w sl, #0 +10041ea4: f89d 3050 ldrb.w r3, [sp, #80] ; 0x50 +10041ea8: fa5f f28a uxtb.w r2, sl +10041eac: 4293 cmp r3, r2 +10041eae: f10a 0a01 add.w sl, sl, #1 +10041eb2: d9e9 bls.n 10041e88 +10041eb4: 4630 mov r0, r6 +10041eb6: 2101 movs r1, #1 +10041eb8: 2300 movs r3, #0 +10041eba: 9f16 ldr r7, [sp, #88] ; 0x58 +10041ebc: 47b8 blx r7 +10041ebe: e7f1 b.n 10041ea4 +10041ec0: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 +10041ec4: d1e0 bne.n 10041e88 +10041ec6: f04f 0a00 mov.w sl, #0 +10041eca: f89d 3050 ldrb.w r3, [sp, #80] ; 0x50 +10041ece: fa5f f28a uxtb.w r2, sl +10041ed2: 4293 cmp r3, r2 +10041ed4: f10a 0a01 add.w sl, sl, #1 +10041ed8: d9d6 bls.n 10041e88 +10041eda: 4630 mov r0, r6 +10041edc: 2101 movs r1, #1 +10041ede: 2300 movs r3, #0 +10041ee0: 9f16 ldr r7, [sp, #88] ; 0x58 +10041ee2: 47b8 blx r7 +10041ee4: e7f1 b.n 10041eca +10041ee6: bf00 nop +10041ee8: 10000720 .word 0x10000720 +10041eec: 1004da10 .word 0x1004da10 +10041ef0: f884 598d strb.w r5, [r4, #2445] ; 0x98d +10041ef4: f1b9 0f00 cmp.w r9, #0 +10041ef8: d009 beq.n 10041f0e +10041efa: f894 3987 ldrb.w r3, [r4, #2439] ; 0x987 +10041efe: b133 cbz r3, 10041f0e +10041f00: f894 3044 ldrb.w r3, [r4, #68] ; 0x44 +10041f04: 2bff cmp r3, #255 ; 0xff +10041f06: d002 beq.n 10041f0e +10041f08: 4630 mov r0, r6 +10041f0a: 9b1b ldr r3, [sp, #108] ; 0x6c +10041f0c: 4798 blx r3 +10041f0e: f89d 304e ldrb.w r3, [sp, #78] ; 0x4e +10041f12: 4543 cmp r3, r8 +10041f14: d808 bhi.n 10041f28 +10041f16: f894 3c94 ldrb.w r3, [r4, #3220] ; 0xc94 +10041f1a: b92b cbnz r3, 10041f28 +10041f1c: 4630 mov r0, r6 +10041f1e: 4641 mov r1, r8 +10041f20: 462a mov r2, r5 +10041f22: 2308 movs r3, #8 +10041f24: 9f17 ldr r7, [sp, #92] ; 0x5c +10041f26: 47b8 blx r7 +10041f28: f894 3044 ldrb.w r3, [r4, #68] ; 0x44 +10041f2c: 4630 mov r0, r6 +10041f2e: 3b05 subs r3, #5 +10041f30: b2db uxtb r3, r3 +10041f32: 429d cmp r5, r3 +10041f34: f04f 0100 mov.w r1, #0 +10041f38: f04f 0286 mov.w r2, #134 ; 0x86 +10041f3c: f04f 33ff mov.w r3, #4294967295 +10041f40: d905 bls.n 10041f4e +10041f42: f7fc fc0c bl 1003e75e +10041f46: 282a cmp r0, #42 ; 0x2a +10041f48: d00d beq.n 10041f66 +10041f4a: 232a movs r3, #42 ; 0x2a +10041f4c: e004 b.n 10041f58 +10041f4e: f7fc fc06 bl 1003e75e +10041f52: 283b cmp r0, #59 ; 0x3b +10041f54: d007 beq.n 10041f66 +10041f56: 233b movs r3, #59 ; 0x3b +10041f58: 9300 str r3, [sp, #0] +10041f5a: 4630 mov r0, r6 +10041f5c: 2100 movs r1, #0 +10041f5e: 2286 movs r2, #134 ; 0x86 +10041f60: 4b04 ldr r3, [pc, #16] ; (10041f74 ) +10041f62: f7fc fbf9 bl 1003e758 +10041f66: 2300 movs r3, #0 +10041f68: f884 3984 strb.w r3, [r4, #2436] ; 0x984 +10041f6c: b01d add sp, #116 ; 0x74 +10041f6e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10041f72: bf00 nop +10041f74: 000fffff .word 0x000fffff + +10041f78 : +10041f78: 6803 ldr r3, [r0, #0] +10041f7a: 881b ldrh r3, [r3, #0] +10041f7c: 3b0b subs r3, #11 +10041f7e: b29b uxth r3, r3 +10041f80: 2b01 cmp r3, #1 +10041f82: d81c bhi.n 10041fbe +10041f84: 2200 movs r2, #0 +10041f86: f44f 7380 mov.w r3, #256 ; 0x100 +10041f8a: 3224 adds r2, #36 ; 0x24 +10041f8c: f8c0 37dc str.w r3, [r0, #2012] ; 0x7dc +10041f90: f8c0 37d4 str.w r3, [r0, #2004] ; 0x7d4 +10041f94: f8c0 37cc str.w r3, [r0, #1996] ; 0x7cc +10041f98: f8c0 37c4 str.w r3, [r0, #1988] ; 0x7c4 +10041f9c: f5b2 7ffc cmp.w r2, #504 ; 0x1f8 +10041fa0: f04f 0300 mov.w r3, #0 +10041fa4: f8c0 37e0 str.w r3, [r0, #2016] ; 0x7e0 +10041fa8: f8c0 37d8 str.w r3, [r0, #2008] ; 0x7d8 +10041fac: f8c0 37d0 str.w r3, [r0, #2000] ; 0x7d0 +10041fb0: f8c0 37c8 str.w r3, [r0, #1992] ; 0x7c8 +10041fb4: f880 37c0 strb.w r3, [r0, #1984] ; 0x7c0 +10041fb8: f100 0024 add.w r0, r0, #36 ; 0x24 +10041fbc: d1e3 bne.n 10041f86 +10041fbe: 4770 bx lr + +10041fc0 : +10041fc0: b5f0 push {r4, r5, r6, r7, lr} +10041fc2: 4b13 ldr r3, [pc, #76] ; (10042010 ) +10041fc4: b091 sub sp, #68 ; 0x44 +10041fc6: aa01 add r2, sp, #4 +10041fc8: 4605 mov r5, r0 +10041fca: f103 0738 add.w r7, r3, #56 ; 0x38 +10041fce: 4616 mov r6, r2 +10041fd0: 6818 ldr r0, [r3, #0] +10041fd2: 6859 ldr r1, [r3, #4] +10041fd4: 4614 mov r4, r2 +10041fd6: c403 stmia r4!, {r0, r1} +10041fd8: 3308 adds r3, #8 +10041fda: 42bb cmp r3, r7 +10041fdc: 4622 mov r2, r4 +10041fde: d1f7 bne.n 10041fd0 +10041fe0: 8819 ldrh r1, [r3, #0] +10041fe2: 789b ldrb r3, [r3, #2] +10041fe4: 2d0e cmp r5, #14 +10041fe6: 8021 strh r1, [r4, #0] +10041fe8: 70a3 strb r3, [r4, #2] +10041fea: d90d bls.n 10042008 +10041fec: 2300 movs r3, #0 +10041fee: 18f2 adds r2, r6, r3 +10041ff0: 7b92 ldrb r2, [r2, #14] +10041ff2: f103 000e add.w r0, r3, #14 +10041ff6: 42aa cmp r2, r5 +10041ff8: b2c0 uxtb r0, r0 +10041ffa: d102 bne.n 10042002 +10041ffc: 380d subs r0, #13 +10041ffe: b2c0 uxtb r0, r0 +10042000: e003 b.n 1004200a +10042002: 3301 adds r3, #1 +10042004: 2b2d cmp r3, #45 ; 0x2d +10042006: d1f2 bne.n 10041fee +10042008: 2000 movs r0, #0 +1004200a: b011 add sp, #68 ; 0x44 +1004200c: bdf0 pop {r4, r5, r6, r7, pc} +1004200e: bf00 nop +10042010: 1004d37c .word 0x1004d37c + +10042014 : +10042014: b508 push {r3, lr} +10042016: 4b03 ldr r3, [pc, #12] ; (10042024 ) +10042018: 4798 blx r3 +1004201a: e8bd 4008 ldmia.w sp!, {r3, lr} +1004201e: f000 b93f b.w 100422a0 +10042022: bf00 nop +10042024: 0002d7d1 .word 0x0002d7d1 + +10042028 : +10042028: b40c push {r2, r3} +1004202a: b5f0 push {r4, r5, r6, r7, lr} +1004202c: 4b1b ldr r3, [pc, #108] ; (1004209c ) +1004202e: 4f1c ldr r7, [pc, #112] ; (100420a0 ) +10042030: 681d ldr r5, [r3, #0] +10042032: 683b ldr r3, [r7, #0] +10042034: b09d sub sp, #116 ; 0x74 +10042036: 4606 mov r6, r0 +10042038: 460c mov r4, r1 +1004203a: b91b cbnz r3, 10042044 +1004203c: f7ff ffea bl 10042014 +10042040: 2301 movs r3, #1 +10042042: 603b str r3, [r7, #0] +10042044: 2c00 cmp r4, #0 +10042046: da04 bge.n 10042052 +10042048: 238b movs r3, #139 ; 0x8b +1004204a: 602b str r3, [r5, #0] +1004204c: f04f 30ff mov.w r0, #4294967295 +10042050: e01e b.n 10042090 +10042052: f44f 7302 mov.w r3, #520 ; 0x208 +10042056: f8ad 3014 strh.w r3, [sp, #20] +1004205a: bf14 ite ne +1004205c: f104 33ff addne.w r3, r4, #4294967295 +10042060: 4623 moveq r3, r4 +10042062: 9304 str r3, [sp, #16] +10042064: 9307 str r3, [sp, #28] +10042066: f64f 73ff movw r3, #65535 ; 0xffff +1004206a: f8ad 3016 strh.w r3, [sp, #22] +1004206e: ab23 add r3, sp, #140 ; 0x8c +10042070: 9602 str r6, [sp, #8] +10042072: 9606 str r6, [sp, #24] +10042074: 9301 str r3, [sp, #4] +10042076: 4628 mov r0, r5 +10042078: a902 add r1, sp, #8 +1004207a: 9a22 ldr r2, [sp, #136] ; 0x88 +1004207c: 4e09 ldr r6, [pc, #36] ; (100420a4 ) +1004207e: 47b0 blx r6 +10042080: 1c43 adds r3, r0, #1 +10042082: bfbc itt lt +10042084: 238b movlt r3, #139 ; 0x8b +10042086: 602b strlt r3, [r5, #0] +10042088: b114 cbz r4, 10042090 +1004208a: 9b02 ldr r3, [sp, #8] +1004208c: 2200 movs r2, #0 +1004208e: 701a strb r2, [r3, #0] +10042090: b01d add sp, #116 ; 0x74 +10042092: e8bd 40f0 ldmia.w sp!, {r4, r5, r6, r7, lr} +10042096: b002 add sp, #8 +10042098: 4770 bx lr +1004209a: bf00 nop +1004209c: 10001c60 .word 0x10001c60 +100420a0: 100555a8 .word 0x100555a8 +100420a4: 0002f661 .word 0x0002f661 + +100420a8 : +100420a8: b40e push {r1, r2, r3} +100420aa: b570 push {r4, r5, r6, lr} +100420ac: 4b13 ldr r3, [pc, #76] ; (100420fc ) +100420ae: 4d14 ldr r5, [pc, #80] ; (10042100 ) +100420b0: 681e ldr r6, [r3, #0] +100420b2: 682b ldr r3, [r5, #0] +100420b4: b09d sub sp, #116 ; 0x74 +100420b6: 4604 mov r4, r0 +100420b8: b91b cbnz r3, 100420c2 +100420ba: f7ff ffab bl 10042014 +100420be: 2301 movs r3, #1 +100420c0: 602b str r3, [r5, #0] +100420c2: f44f 7302 mov.w r3, #520 ; 0x208 +100420c6: f8ad 3014 strh.w r3, [sp, #20] +100420ca: f06f 4300 mvn.w r3, #2147483648 ; 0x80000000 +100420ce: 9304 str r3, [sp, #16] +100420d0: 9307 str r3, [sp, #28] +100420d2: f64f 73ff movw r3, #65535 ; 0xffff +100420d6: f8ad 3016 strh.w r3, [sp, #22] +100420da: ab22 add r3, sp, #136 ; 0x88 +100420dc: 9402 str r4, [sp, #8] +100420de: 9406 str r4, [sp, #24] +100420e0: 9301 str r3, [sp, #4] +100420e2: 9a21 ldr r2, [sp, #132] ; 0x84 +100420e4: 4630 mov r0, r6 +100420e6: a902 add r1, sp, #8 +100420e8: 4c06 ldr r4, [pc, #24] ; (10042104 ) +100420ea: 47a0 blx r4 +100420ec: 9b02 ldr r3, [sp, #8] +100420ee: 2200 movs r2, #0 +100420f0: 701a strb r2, [r3, #0] +100420f2: b01d add sp, #116 ; 0x74 +100420f4: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} +100420f8: b003 add sp, #12 +100420fa: 4770 bx lr +100420fc: 10001c60 .word 0x10001c60 +10042100: 100555a8 .word 0x100555a8 +10042104: 0002f661 .word 0x0002f661 + +10042108 : +10042108: b40f push {r0, r1, r2, r3} +1004210a: 4b0e ldr r3, [pc, #56] ; (10042144 ) +1004210c: b537 push {r0, r1, r2, r4, r5, lr} +1004210e: 4d0e ldr r5, [pc, #56] ; (10042148 ) +10042110: 681c ldr r4, [r3, #0] +10042112: 682b ldr r3, [r5, #0] +10042114: b91b cbnz r3, 1004211e +10042116: f7ff ff7d bl 10042014 +1004211a: 2301 movs r3, #1 +1004211c: 602b str r3, [r5, #0] +1004211e: ab07 add r3, sp, #28 +10042120: 9301 str r3, [sp, #4] +10042122: 68a1 ldr r1, [r4, #8] +10042124: 9a06 ldr r2, [sp, #24] +10042126: 4620 mov r0, r4 +10042128: 4d08 ldr r5, [pc, #32] ; (1004214c ) +1004212a: 47a8 blx r5 +1004212c: 68a1 ldr r1, [r4, #8] +1004212e: 4605 mov r5, r0 +10042130: 4b07 ldr r3, [pc, #28] ; (10042150 ) +10042132: 4620 mov r0, r4 +10042134: 4798 blx r3 +10042136: 4628 mov r0, r5 +10042138: b003 add sp, #12 +1004213a: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +1004213e: b004 add sp, #16 +10042140: 4770 bx lr +10042142: bf00 nop +10042144: 10001c60 .word 0x10001c60 +10042148: 100555a8 .word 0x100555a8 +1004214c: 0002f661 .word 0x0002f661 +10042150: 0002ef8d .word 0x0002ef8d + +10042154 : +10042154: b508 push {r3, lr} +10042156: 4b01 ldr r3, [pc, #4] ; (1004215c ) +10042158: 4798 blx r3 +1004215a: bd08 pop {r3, pc} +1004215c: 00028ae1 .word 0x00028ae1 + +10042160 : +10042160: b508 push {r3, lr} +10042162: 4b01 ldr r3, [pc, #4] ; (10042168 ) +10042164: 4798 blx r3 +10042166: bd08 pop {r3, pc} +10042168: 00028b49 .word 0x00028b49 + +1004216c : +1004216c: b508 push {r3, lr} +1004216e: 4b01 ldr r3, [pc, #4] ; (10042174 ) +10042170: 4798 blx r3 +10042172: bd08 pop {r3, pc} +10042174: 00028cb5 .word 0x00028cb5 + +10042178 : +10042178: b508 push {r3, lr} +1004217a: 4b01 ldr r3, [pc, #4] ; (10042180 ) +1004217c: 4798 blx r3 +1004217e: bd08 pop {r3, pc} +10042180: 00028e55 .word 0x00028e55 + +10042184 : +10042184: b508 push {r3, lr} +10042186: 4b01 ldr r3, [pc, #4] ; (1004218c ) +10042188: 4798 blx r3 +1004218a: bd08 pop {r3, pc} +1004218c: 00028ec9 .word 0x00028ec9 + +10042190 : +10042190: b508 push {r3, lr} +10042192: 4b01 ldr r3, [pc, #4] ; (10042198 ) +10042194: 4798 blx r3 +10042196: bd08 pop {r3, pc} +10042198: 00028f15 .word 0x00028f15 + +1004219c : +1004219c: b508 push {r3, lr} +1004219e: 4b01 ldr r3, [pc, #4] ; (100421a4 ) +100421a0: 4798 blx r3 +100421a2: bd08 pop {r3, pc} +100421a4: 00028fc5 .word 0x00028fc5 + +100421a8 : +100421a8: b508 push {r3, lr} +100421aa: 4b01 ldr r3, [pc, #4] ; (100421b0 ) +100421ac: 4798 blx r3 +100421ae: bd08 pop {r3, pc} +100421b0: 0002907d .word 0x0002907d + +100421b4 : +100421b4: b508 push {r3, lr} +100421b6: 4b01 ldr r3, [pc, #4] ; (100421bc ) +100421b8: 4798 blx r3 +100421ba: bd08 pop {r3, pc} +100421bc: 0002960d .word 0x0002960d + +100421c0 : +100421c0: b508 push {r3, lr} +100421c2: 4b01 ldr r3, [pc, #4] ; (100421c8 ) +100421c4: 4798 blx r3 +100421c6: bd08 pop {r3, pc} +100421c8: 00029619 .word 0x00029619 + +100421cc : +100421cc: 4b02 ldr r3, [pc, #8] ; (100421d8 ) +100421ce: 2258 movs r2, #88 ; 0x58 +100421d0: 601a str r2, [r3, #0] +100421d2: f04f 30ff mov.w r0, #4294967295 +100421d6: 4770 bx lr +100421d8: 10000bc4 .word 0x10000bc4 + +100421dc : +100421dc: 2802 cmp r0, #2 +100421de: d804 bhi.n 100421ea +100421e0: f44f 5300 mov.w r3, #8192 ; 0x2000 +100421e4: 604b str r3, [r1, #4] +100421e6: 2000 movs r0, #0 +100421e8: 4770 bx lr +100421ea: 4b03 ldr r3, [pc, #12] ; (100421f8 ) +100421ec: 2209 movs r2, #9 +100421ee: 601a str r2, [r3, #0] +100421f0: f04f 30ff mov.w r0, #4294967295 +100421f4: 4770 bx lr +100421f6: bf00 nop +100421f8: 10000bc4 .word 0x10000bc4 + +100421fc : +100421fc: 2802 cmp r0, #2 +100421fe: bfcc ite gt +10042200: f04f 30ff movgt.w r0, #4294967295 +10042204: 2001 movle r0, #1 +10042206: 4770 bx lr + +10042208 : +10042208: 4b02 ldr r3, [pc, #8] ; (10042214 ) +1004220a: 2258 movs r2, #88 ; 0x58 +1004220c: 601a str r2, [r3, #0] +1004220e: f04f 30ff mov.w r0, #4294967295 +10042212: 4770 bx lr +10042214: 10000bc4 .word 0x10000bc4 + +10042218 : +10042218: 4b02 ldr r3, [pc, #8] ; (10042224 ) +1004221a: 2258 movs r2, #88 ; 0x58 +1004221c: 601a str r2, [r3, #0] +1004221e: f04f 30ff mov.w r0, #4294967295 +10042222: 4770 bx lr +10042224: 10000bc4 .word 0x10000bc4 + +10042228 : +10042228: 4b04 ldr r3, [pc, #16] ; (1004223c ) +1004222a: 681a ldr r2, [r3, #0] +1004222c: b90a cbnz r2, 10042232 +1004222e: 4a04 ldr r2, [pc, #16] ; (10042240 ) +10042230: 601a str r2, [r3, #0] +10042232: 681a ldr r2, [r3, #0] +10042234: 4410 add r0, r2 +10042236: 6018 str r0, [r3, #0] +10042238: 4610 mov r0, r2 +1004223a: 4770 bx lr +1004223c: 100555ac .word 0x100555ac +10042240: 10067adc .word 0x10067adc + +10042244 : +10042244: b570 push {r4, r5, r6, lr} +10042246: 460e mov r6, r1 +10042248: 4615 mov r5, r2 +1004224a: 2400 movs r4, #0 +1004224c: 42ac cmp r4, r5 +1004224e: da04 bge.n 1004225a +10042250: 5d30 ldrb r0, [r6, r4] +10042252: 4b03 ldr r3, [pc, #12] ; (10042260 ) +10042254: 4798 blx r3 +10042256: 3401 adds r4, #1 +10042258: e7f8 b.n 1004224c +1004225a: 4628 mov r0, r5 +1004225c: bd70 pop {r4, r5, r6, pc} +1004225e: bf00 nop +10042260: 000002d9 .word 0x000002d9 + +10042264 : +10042264: b510 push {r4, lr} +10042266: 490b ldr r1, [pc, #44] ; (10042294 ) +10042268: 4604 mov r4, r0 +1004226a: f7ff ff85 bl 10042178 +1004226e: b178 cbz r0, 10042290 +10042270: 4620 mov r0, r4 +10042272: 4909 ldr r1, [pc, #36] ; (10042298 ) +10042274: f7ff ff80 bl 10042178 +10042278: b148 cbz r0, 1004228e +1004227a: 4620 mov r0, r4 +1004227c: 4907 ldr r1, [pc, #28] ; (1004229c ) +1004227e: f7ff ff7b bl 10042178 +10042282: 2800 cmp r0, #0 +10042284: bf14 ite ne +10042286: f04f 30ff movne.w r0, #4294967295 +1004228a: 2002 moveq r0, #2 +1004228c: bd10 pop {r4, pc} +1004228e: 2001 movs r0, #1 +10042290: bd10 pop {r4, pc} +10042292: bf00 nop +10042294: 1004d3b7 .word 0x1004d3b7 +10042298: 1004d3c6 .word 0x1004d3c6 +1004229c: 1004d3be .word 0x1004d3be + +100422a0 : +100422a0: 4b08 ldr r3, [pc, #32] ; (100422c4 ) +100422a2: 4a09 ldr r2, [pc, #36] ; (100422c8 ) +100422a4: 601a str r2, [r3, #0] +100422a6: 4a09 ldr r2, [pc, #36] ; (100422cc ) +100422a8: 605a str r2, [r3, #4] +100422aa: 4a09 ldr r2, [pc, #36] ; (100422d0 ) +100422ac: 609a str r2, [r3, #8] +100422ae: 4a09 ldr r2, [pc, #36] ; (100422d4 ) +100422b0: 60da str r2, [r3, #12] +100422b2: 4a09 ldr r2, [pc, #36] ; (100422d8 ) +100422b4: 611a str r2, [r3, #16] +100422b6: 4a09 ldr r2, [pc, #36] ; (100422dc ) +100422b8: 615a str r2, [r3, #20] +100422ba: 4a09 ldr r2, [pc, #36] ; (100422e0 ) +100422bc: 619a str r2, [r3, #24] +100422be: 4a09 ldr r2, [pc, #36] ; (100422e4 ) +100422c0: 61da str r2, [r3, #28] +100422c2: 4770 bx lr +100422c4: 10000760 .word 0x10000760 +100422c8: 100421cd .word 0x100421cd +100422cc: 100421dd .word 0x100421dd +100422d0: 100421fd .word 0x100421fd +100422d4: 10042209 .word 0x10042209 +100422d8: 10042265 .word 0x10042265 +100422dc: 10042219 .word 0x10042219 +100422e0: 10042245 .word 0x10042245 +100422e4: 10042229 .word 0x10042229 + +100422e8 : +100422e8: 4b02 ldr r3, [pc, #8] ; (100422f4 ) +100422ea: 4601 mov r1, r0 +100422ec: 6818 ldr r0, [r3, #0] +100422ee: f000 b859 b.w 100423a4 <_malloc_r> +100422f2: bf00 nop +100422f4: 1004f198 .word 0x1004f198 + +100422f8 : +100422f8: b510 push {r4, lr} +100422fa: 2300 movs r3, #0 +100422fc: 4293 cmp r3, r2 +100422fe: d003 beq.n 10042308 +10042300: 5ccc ldrb r4, [r1, r3] +10042302: 54c4 strb r4, [r0, r3] +10042304: 3301 adds r3, #1 +10042306: e7f9 b.n 100422fc +10042308: bd10 pop {r4, pc} + +1004230a : +1004230a: 4402 add r2, r0 +1004230c: 4603 mov r3, r0 +1004230e: 4293 cmp r3, r2 +10042310: d002 beq.n 10042318 +10042312: f803 1b01 strb.w r1, [r3], #1 +10042316: e7fa b.n 1004230e +10042318: 4770 bx lr + ... + +1004231c <_free_r>: +1004231c: b530 push {r4, r5, lr} +1004231e: 2900 cmp r1, #0 +10042320: d03c beq.n 1004239c <_free_r+0x80> +10042322: f851 2c04 ldr.w r2, [r1, #-4] +10042326: 1f0b subs r3, r1, #4 +10042328: 491d ldr r1, [pc, #116] ; (100423a0 <_free_r+0x84>) +1004232a: 2a00 cmp r2, #0 +1004232c: bfb8 it lt +1004232e: 189b addlt r3, r3, r2 +10042330: 680a ldr r2, [r1, #0] +10042332: 460c mov r4, r1 +10042334: b912 cbnz r2, 1004233c <_free_r+0x20> +10042336: 605a str r2, [r3, #4] +10042338: 600b str r3, [r1, #0] +1004233a: bd30 pop {r4, r5, pc} +1004233c: 4293 cmp r3, r2 +1004233e: d20d bcs.n 1004235c <_free_r+0x40> +10042340: 6819 ldr r1, [r3, #0] +10042342: 1858 adds r0, r3, r1 +10042344: 4290 cmp r0, r2 +10042346: d103 bne.n 10042350 <_free_r+0x34> +10042348: 585a ldr r2, [r3, r1] +1004234a: 4411 add r1, r2 +1004234c: 6842 ldr r2, [r0, #4] +1004234e: 6019 str r1, [r3, #0] +10042350: 605a str r2, [r3, #4] +10042352: 6023 str r3, [r4, #0] +10042354: bd30 pop {r4, r5, pc} +10042356: 4299 cmp r1, r3 +10042358: d803 bhi.n 10042362 <_free_r+0x46> +1004235a: 460a mov r2, r1 +1004235c: 6851 ldr r1, [r2, #4] +1004235e: 2900 cmp r1, #0 +10042360: d1f9 bne.n 10042356 <_free_r+0x3a> +10042362: 6814 ldr r4, [r2, #0] +10042364: 1915 adds r5, r2, r4 +10042366: 429d cmp r5, r3 +10042368: d10a bne.n 10042380 <_free_r+0x64> +1004236a: 681b ldr r3, [r3, #0] +1004236c: 4423 add r3, r4 +1004236e: 18d0 adds r0, r2, r3 +10042370: 4288 cmp r0, r1 +10042372: 6013 str r3, [r2, #0] +10042374: d112 bne.n 1004239c <_free_r+0x80> +10042376: 6808 ldr r0, [r1, #0] +10042378: 4403 add r3, r0 +1004237a: 6013 str r3, [r2, #0] +1004237c: 684b ldr r3, [r1, #4] +1004237e: e00c b.n 1004239a <_free_r+0x7e> +10042380: d902 bls.n 10042388 <_free_r+0x6c> +10042382: 230c movs r3, #12 +10042384: 6003 str r3, [r0, #0] +10042386: bd30 pop {r4, r5, pc} +10042388: 6818 ldr r0, [r3, #0] +1004238a: 181c adds r4, r3, r0 +1004238c: 428c cmp r4, r1 +1004238e: d103 bne.n 10042398 <_free_r+0x7c> +10042390: 680c ldr r4, [r1, #0] +10042392: 6849 ldr r1, [r1, #4] +10042394: 4420 add r0, r4 +10042396: 6018 str r0, [r3, #0] +10042398: 6059 str r1, [r3, #4] +1004239a: 6053 str r3, [r2, #4] +1004239c: bd30 pop {r4, r5, pc} +1004239e: bf00 nop +100423a0: 100555b4 .word 0x100555b4 + +100423a4 <_malloc_r>: +100423a4: b570 push {r4, r5, r6, lr} +100423a6: 1ccd adds r5, r1, #3 +100423a8: f025 0503 bic.w r5, r5, #3 +100423ac: 3508 adds r5, #8 +100423ae: 2d0c cmp r5, #12 +100423b0: bf38 it cc +100423b2: 250c movcc r5, #12 +100423b4: 2d00 cmp r5, #0 +100423b6: 4606 mov r6, r0 +100423b8: db3f blt.n 1004243a <_malloc_r+0x96> +100423ba: 428d cmp r5, r1 +100423bc: d33d bcc.n 1004243a <_malloc_r+0x96> +100423be: 4b21 ldr r3, [pc, #132] ; (10042444 <_malloc_r+0xa0>) +100423c0: 681c ldr r4, [r3, #0] +100423c2: 4618 mov r0, r3 +100423c4: 4621 mov r1, r4 +100423c6: b1a1 cbz r1, 100423f2 <_malloc_r+0x4e> +100423c8: 680b ldr r3, [r1, #0] +100423ca: 1b5b subs r3, r3, r5 +100423cc: d40e bmi.n 100423ec <_malloc_r+0x48> +100423ce: 2b0b cmp r3, #11 +100423d0: d903 bls.n 100423da <_malloc_r+0x36> +100423d2: 600b str r3, [r1, #0] +100423d4: 18cc adds r4, r1, r3 +100423d6: 50cd str r5, [r1, r3] +100423d8: e01f b.n 1004241a <_malloc_r+0x76> +100423da: 428c cmp r4, r1 +100423dc: d102 bne.n 100423e4 <_malloc_r+0x40> +100423de: 6862 ldr r2, [r4, #4] +100423e0: 6002 str r2, [r0, #0] +100423e2: e01a b.n 1004241a <_malloc_r+0x76> +100423e4: 684b ldr r3, [r1, #4] +100423e6: 6063 str r3, [r4, #4] +100423e8: 460c mov r4, r1 +100423ea: e016 b.n 1004241a <_malloc_r+0x76> +100423ec: 460c mov r4, r1 +100423ee: 6849 ldr r1, [r1, #4] +100423f0: e7e9 b.n 100423c6 <_malloc_r+0x22> +100423f2: 4c15 ldr r4, [pc, #84] ; (10042448 <_malloc_r+0xa4>) +100423f4: 6823 ldr r3, [r4, #0] +100423f6: b91b cbnz r3, 10042400 <_malloc_r+0x5c> +100423f8: 4630 mov r0, r6 +100423fa: f000 f861 bl 100424c0 <_sbrk_r> +100423fe: 6020 str r0, [r4, #0] +10042400: 4629 mov r1, r5 +10042402: 4630 mov r0, r6 +10042404: f000 f85c bl 100424c0 <_sbrk_r> +10042408: 1c43 adds r3, r0, #1 +1004240a: 4601 mov r1, r0 +1004240c: d015 beq.n 1004243a <_malloc_r+0x96> +1004240e: 1cc4 adds r4, r0, #3 +10042410: f024 0403 bic.w r4, r4, #3 +10042414: 4284 cmp r4, r0 +10042416: d10a bne.n 1004242e <_malloc_r+0x8a> +10042418: 6025 str r5, [r4, #0] +1004241a: f104 000b add.w r0, r4, #11 +1004241e: 1d23 adds r3, r4, #4 +10042420: f020 0007 bic.w r0, r0, #7 +10042424: 1ac3 subs r3, r0, r3 +10042426: d00b beq.n 10042440 <_malloc_r+0x9c> +10042428: 425a negs r2, r3 +1004242a: 50e2 str r2, [r4, r3] +1004242c: bd70 pop {r4, r5, r6, pc} +1004242e: 4630 mov r0, r6 +10042430: 1a61 subs r1, r4, r1 +10042432: f000 f845 bl 100424c0 <_sbrk_r> +10042436: 3001 adds r0, #1 +10042438: d1ee bne.n 10042418 <_malloc_r+0x74> +1004243a: 230c movs r3, #12 +1004243c: 6033 str r3, [r6, #0] +1004243e: 2000 movs r0, #0 +10042440: bd70 pop {r4, r5, r6, pc} +10042442: bf00 nop +10042444: 100555b4 .word 0x100555b4 +10042448: 100555b0 .word 0x100555b0 + +1004244c : +1004244c: 4b19 ldr r3, [pc, #100] ; (100424b4 ) +1004244e: b510 push {r4, lr} +10042450: 681c ldr r4, [r3, #0] +10042452: 6ba3 ldr r3, [r4, #56] ; 0x38 +10042454: b9d3 cbnz r3, 1004248c +10042456: 2018 movs r0, #24 +10042458: f7ff ff46 bl 100422e8 +1004245c: f243 330e movw r3, #13070 ; 0x330e +10042460: 63a0 str r0, [r4, #56] ; 0x38 +10042462: 8003 strh r3, [r0, #0] +10042464: f64a 33cd movw r3, #43981 ; 0xabcd +10042468: 8043 strh r3, [r0, #2] +1004246a: f241 2334 movw r3, #4660 ; 0x1234 +1004246e: 8083 strh r3, [r0, #4] +10042470: f24e 636d movw r3, #58989 ; 0xe66d +10042474: 80c3 strh r3, [r0, #6] +10042476: f64d 63ec movw r3, #57068 ; 0xdeec +1004247a: 8103 strh r3, [r0, #8] +1004247c: 2305 movs r3, #5 +1004247e: 8143 strh r3, [r0, #10] +10042480: 230b movs r3, #11 +10042482: 8183 strh r3, [r0, #12] +10042484: 2201 movs r2, #1 +10042486: 2300 movs r3, #0 +10042488: e9c0 2304 strd r2, r3, [r0, #16] +1004248c: 6ba1 ldr r1, [r4, #56] ; 0x38 +1004248e: 4c0a ldr r4, [pc, #40] ; (100424b8 ) +10042490: 690a ldr r2, [r1, #16] +10042492: 6948 ldr r0, [r1, #20] +10042494: 4354 muls r4, r2 +10042496: 4b09 ldr r3, [pc, #36] ; (100424bc ) +10042498: fb03 4000 mla r0, r3, r0, r4 +1004249c: fba2 2303 umull r2, r3, r2, r3 +100424a0: 3201 adds r2, #1 +100424a2: 4403 add r3, r0 +100424a4: f143 0300 adc.w r3, r3, #0 +100424a8: e9c1 2304 strd r2, r3, [r1, #16] +100424ac: f023 4000 bic.w r0, r3, #2147483648 ; 0x80000000 +100424b0: bd10 pop {r4, pc} +100424b2: bf00 nop +100424b4: 1004f198 .word 0x1004f198 +100424b8: 5851f42d .word 0x5851f42d +100424bc: 4c957f2d .word 0x4c957f2d + +100424c0 <_sbrk_r>: +100424c0: b538 push {r3, r4, r5, lr} +100424c2: 4c06 ldr r4, [pc, #24] ; (100424dc <_sbrk_r+0x1c>) +100424c4: 2300 movs r3, #0 +100424c6: 4605 mov r5, r0 +100424c8: 4608 mov r0, r1 +100424ca: 6023 str r3, [r4, #0] +100424cc: f000 fcde bl 10042e8c <_sbrk> +100424d0: 1c43 adds r3, r0, #1 +100424d2: d102 bne.n 100424da <_sbrk_r+0x1a> +100424d4: 6823 ldr r3, [r4, #0] +100424d6: b103 cbz r3, 100424da <_sbrk_r+0x1a> +100424d8: 602b str r3, [r5, #0] +100424da: bd38 pop {r3, r4, r5, pc} +100424dc: 1004f3e4 .word 0x1004f3e4 + +100424e0 : +100424e0: b40e push {r1, r2, r3} +100424e2: b530 push {r4, r5, lr} +100424e4: b09c sub sp, #112 ; 0x70 +100424e6: ac1f add r4, sp, #124 ; 0x7c +100424e8: f44f 7201 mov.w r2, #516 ; 0x204 +100424ec: f854 5b04 ldr.w r5, [r4], #4 +100424f0: f8ad 2014 strh.w r2, [sp, #20] +100424f4: 9002 str r0, [sp, #8] +100424f6: 9006 str r0, [sp, #24] +100424f8: f000 f81e bl 10042538 +100424fc: 4b0b ldr r3, [pc, #44] ; (1004252c ) +100424fe: 9003 str r0, [sp, #12] +10042500: 930b str r3, [sp, #44] ; 0x2c +10042502: 2300 movs r3, #0 +10042504: 930f str r3, [sp, #60] ; 0x3c +10042506: 9314 str r3, [sp, #80] ; 0x50 +10042508: f64f 73ff movw r3, #65535 ; 0xffff +1004250c: f8ad 3016 strh.w r3, [sp, #22] +10042510: 4b07 ldr r3, [pc, #28] ; (10042530 ) +10042512: 9007 str r0, [sp, #28] +10042514: a902 add r1, sp, #8 +10042516: 6818 ldr r0, [r3, #0] +10042518: 462a mov r2, r5 +1004251a: 4623 mov r3, r4 +1004251c: 9401 str r4, [sp, #4] +1004251e: f000 f86d bl 100425fc <__ssvfiscanf_r> +10042522: b01c add sp, #112 ; 0x70 +10042524: e8bd 4030 ldmia.w sp!, {r4, r5, lr} +10042528: b003 add sp, #12 +1004252a: 4770 bx lr +1004252c: 10042535 .word 0x10042535 +10042530: 1004f198 .word 0x1004f198 + +10042534 <__seofread>: +10042534: 2000 movs r0, #0 +10042536: 4770 bx lr + +10042538 : +10042538: 4603 mov r3, r0 +1004253a: f813 2b01 ldrb.w r2, [r3], #1 +1004253e: 2a00 cmp r2, #0 +10042540: d1fb bne.n 1004253a +10042542: 1a18 subs r0, r3, r0 +10042544: 3801 subs r0, #1 +10042546: 4770 bx lr + +10042548 <_sungetc_r>: +10042548: b538 push {r3, r4, r5, lr} +1004254a: 1c4b adds r3, r1, #1 +1004254c: 4614 mov r4, r2 +1004254e: d102 bne.n 10042556 <_sungetc_r+0xe> +10042550: f04f 30ff mov.w r0, #4294967295 +10042554: bd38 pop {r3, r4, r5, pc} +10042556: 8993 ldrh r3, [r2, #12] +10042558: b2cd uxtb r5, r1 +1004255a: f023 0320 bic.w r3, r3, #32 +1004255e: 8193 strh r3, [r2, #12] +10042560: 6b53 ldr r3, [r2, #52] ; 0x34 +10042562: 6852 ldr r2, [r2, #4] +10042564: b183 cbz r3, 10042588 <_sungetc_r+0x40> +10042566: 6ba3 ldr r3, [r4, #56] ; 0x38 +10042568: 429a cmp r2, r3 +1004256a: da07 bge.n 1004257c <_sungetc_r+0x34> +1004256c: 6823 ldr r3, [r4, #0] +1004256e: 1e5a subs r2, r3, #1 +10042570: 6022 str r2, [r4, #0] +10042572: f803 5c01 strb.w r5, [r3, #-1] +10042576: 6863 ldr r3, [r4, #4] +10042578: 3301 adds r3, #1 +1004257a: e01f b.n 100425bc <_sungetc_r+0x74> +1004257c: 4621 mov r1, r4 +1004257e: f000 f98b bl 10042898 <__submore> +10042582: 2800 cmp r0, #0 +10042584: d0f2 beq.n 1004256c <_sungetc_r+0x24> +10042586: e7e3 b.n 10042550 <_sungetc_r+0x8> +10042588: 6921 ldr r1, [r4, #16] +1004258a: 6823 ldr r3, [r4, #0] +1004258c: b151 cbz r1, 100425a4 <_sungetc_r+0x5c> +1004258e: 428b cmp r3, r1 +10042590: d908 bls.n 100425a4 <_sungetc_r+0x5c> +10042592: f813 0c01 ldrb.w r0, [r3, #-1] +10042596: 42a8 cmp r0, r5 +10042598: d104 bne.n 100425a4 <_sungetc_r+0x5c> +1004259a: 3b01 subs r3, #1 +1004259c: 3201 adds r2, #1 +1004259e: 6023 str r3, [r4, #0] +100425a0: 6062 str r2, [r4, #4] +100425a2: bd38 pop {r3, r4, r5, pc} +100425a4: 63e3 str r3, [r4, #60] ; 0x3c +100425a6: f104 0344 add.w r3, r4, #68 ; 0x44 +100425aa: 6363 str r3, [r4, #52] ; 0x34 +100425ac: 2303 movs r3, #3 +100425ae: 63a3 str r3, [r4, #56] ; 0x38 +100425b0: 4623 mov r3, r4 +100425b2: 6422 str r2, [r4, #64] ; 0x40 +100425b4: f803 5f46 strb.w r5, [r3, #70]! +100425b8: 6023 str r3, [r4, #0] +100425ba: 2301 movs r3, #1 +100425bc: 6063 str r3, [r4, #4] +100425be: 4628 mov r0, r5 +100425c0: bd38 pop {r3, r4, r5, pc} + +100425c2 <__ssrefill_r>: +100425c2: b510 push {r4, lr} +100425c4: 460c mov r4, r1 +100425c6: 6b49 ldr r1, [r1, #52] ; 0x34 +100425c8: b169 cbz r1, 100425e6 <__ssrefill_r+0x24> +100425ca: f104 0344 add.w r3, r4, #68 ; 0x44 +100425ce: 4299 cmp r1, r3 +100425d0: d001 beq.n 100425d6 <__ssrefill_r+0x14> +100425d2: f7ff fea3 bl 1004231c <_free_r> +100425d6: 6c23 ldr r3, [r4, #64] ; 0x40 +100425d8: 2000 movs r0, #0 +100425da: 6360 str r0, [r4, #52] ; 0x34 +100425dc: 6063 str r3, [r4, #4] +100425de: b113 cbz r3, 100425e6 <__ssrefill_r+0x24> +100425e0: 6be3 ldr r3, [r4, #60] ; 0x3c +100425e2: 6023 str r3, [r4, #0] +100425e4: bd10 pop {r4, pc} +100425e6: 6923 ldr r3, [r4, #16] +100425e8: f04f 30ff mov.w r0, #4294967295 +100425ec: 6023 str r3, [r4, #0] +100425ee: 2300 movs r3, #0 +100425f0: 6063 str r3, [r4, #4] +100425f2: 89a3 ldrh r3, [r4, #12] +100425f4: f043 0320 orr.w r3, r3, #32 +100425f8: 81a3 strh r3, [r4, #12] +100425fa: bd10 pop {r4, pc} + +100425fc <__ssvfiscanf_r>: +100425fc: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} +10042600: f5ad 7d24 sub.w sp, sp, #656 ; 0x290 +10042604: 9301 str r3, [sp, #4] +10042606: 2300 movs r3, #0 +10042608: 9346 str r3, [sp, #280] ; 0x118 +1004260a: 9347 str r3, [sp, #284] ; 0x11c +1004260c: 4b9d ldr r3, [pc, #628] ; (10042884 <__ssvfiscanf_r+0x288>) +1004260e: f10d 090c add.w r9, sp, #12 +10042612: 93a2 str r3, [sp, #648] ; 0x288 +10042614: 4b9c ldr r3, [pc, #624] ; (10042888 <__ssvfiscanf_r+0x28c>) +10042616: 4607 mov r7, r0 +10042618: 460c mov r4, r1 +1004261a: 4690 mov r8, r2 +1004261c: f8cd 9120 str.w r9, [sp, #288] ; 0x120 +10042620: 93a3 str r3, [sp, #652] ; 0x28c +10042622: f898 5000 ldrb.w r5, [r8] +10042626: 2d00 cmp r5, #0 +10042628: f000 8124 beq.w 10042874 <__ssvfiscanf_r+0x278> +1004262c: 4997 ldr r1, [pc, #604] ; (1004288c <__ssvfiscanf_r+0x290>) +1004262e: 680b ldr r3, [r1, #0] +10042630: 468a mov sl, r1 +10042632: 442b add r3, r5 +10042634: 785a ldrb r2, [r3, #1] +10042636: f002 0208 and.w r2, r2, #8 +1004263a: f002 03ff and.w r3, r2, #255 ; 0xff +1004263e: b1ea cbz r2, 1004267c <__ssvfiscanf_r+0x80> +10042640: 6863 ldr r3, [r4, #4] +10042642: 2b00 cmp r3, #0 +10042644: dd10 ble.n 10042668 <__ssvfiscanf_r+0x6c> +10042646: 6823 ldr r3, [r4, #0] +10042648: f8da 2000 ldr.w r2, [sl] +1004264c: 7819 ldrb r1, [r3, #0] +1004264e: 440a add r2, r1 +10042650: 7852 ldrb r2, [r2, #1] +10042652: 0715 lsls r5, r2, #28 +10042654: d50e bpl.n 10042674 <__ssvfiscanf_r+0x78> +10042656: 9a47 ldr r2, [sp, #284] ; 0x11c +10042658: 3301 adds r3, #1 +1004265a: 3201 adds r2, #1 +1004265c: 9247 str r2, [sp, #284] ; 0x11c +1004265e: 6862 ldr r2, [r4, #4] +10042660: 6023 str r3, [r4, #0] +10042662: 3a01 subs r2, #1 +10042664: 6062 str r2, [r4, #4] +10042666: e7eb b.n 10042640 <__ssvfiscanf_r+0x44> +10042668: 9ba3 ldr r3, [sp, #652] ; 0x28c +1004266a: 4638 mov r0, r7 +1004266c: 4621 mov r1, r4 +1004266e: 4798 blx r3 +10042670: 2800 cmp r0, #0 +10042672: d0e8 beq.n 10042646 <__ssvfiscanf_r+0x4a> +10042674: f108 0601 add.w r6, r8, #1 +10042678: 46b0 mov r8, r6 +1004267a: e7d2 b.n 10042622 <__ssvfiscanf_r+0x26> +1004267c: 2d25 cmp r5, #37 ; 0x25 +1004267e: f108 0601 add.w r6, r8, #1 +10042682: d14f bne.n 10042724 <__ssvfiscanf_r+0x128> +10042684: 9345 str r3, [sp, #276] ; 0x114 +10042686: 9343 str r3, [sp, #268] ; 0x10c +10042688: f898 3001 ldrb.w r3, [r8, #1] +1004268c: 2b2a cmp r3, #42 ; 0x2a +1004268e: d103 bne.n 10042698 <__ssvfiscanf_r+0x9c> +10042690: 2310 movs r3, #16 +10042692: 9343 str r3, [sp, #268] ; 0x10c +10042694: f108 0602 add.w r6, r8, #2 +10042698: 7831 ldrb r1, [r6, #0] +1004269a: 4635 mov r5, r6 +1004269c: f1a1 0330 sub.w r3, r1, #48 ; 0x30 +100426a0: 2b09 cmp r3, #9 +100426a2: f106 0601 add.w r6, r6, #1 +100426a6: d806 bhi.n 100426b6 <__ssvfiscanf_r+0xba> +100426a8: 9b45 ldr r3, [sp, #276] ; 0x114 +100426aa: 220a movs r2, #10 +100426ac: fb02 1303 mla r3, r2, r3, r1 +100426b0: 3b30 subs r3, #48 ; 0x30 +100426b2: 9345 str r3, [sp, #276] ; 0x114 +100426b4: e7f0 b.n 10042698 <__ssvfiscanf_r+0x9c> +100426b6: f8df 81dc ldr.w r8, [pc, #476] ; 10042894 <__ssvfiscanf_r+0x298> +100426ba: 2203 movs r2, #3 +100426bc: 4640 mov r0, r8 +100426be: f000 fa7b bl 10042bb8 +100426c2: b140 cbz r0, 100426d6 <__ssvfiscanf_r+0xda> +100426c4: ebc8 0800 rsb r8, r8, r0 +100426c8: 2001 movs r0, #1 +100426ca: fa00 f008 lsl.w r0, r0, r8 +100426ce: 9b43 ldr r3, [sp, #268] ; 0x10c +100426d0: 4635 mov r5, r6 +100426d2: 4303 orrs r3, r0 +100426d4: 9343 str r3, [sp, #268] ; 0x10c +100426d6: 1c6e adds r6, r5, #1 +100426d8: 782d ldrb r5, [r5, #0] +100426da: 2d67 cmp r5, #103 ; 0x67 +100426dc: d80f bhi.n 100426fe <__ssvfiscanf_r+0x102> +100426de: 2d65 cmp r5, #101 ; 0x65 +100426e0: d278 bcs.n 100427d4 <__ssvfiscanf_r+0x1d8> +100426e2: 2d5b cmp r5, #91 ; 0x5b +100426e4: d054 beq.n 10042790 <__ssvfiscanf_r+0x194> +100426e6: d805 bhi.n 100426f4 <__ssvfiscanf_r+0xf8> +100426e8: 2d00 cmp r5, #0 +100426ea: f000 80c5 beq.w 10042878 <__ssvfiscanf_r+0x27c> +100426ee: 2d25 cmp r5, #37 ; 0x25 +100426f0: d018 beq.n 10042724 <__ssvfiscanf_r+0x128> +100426f2: e071 b.n 100427d8 <__ssvfiscanf_r+0x1dc> +100426f4: 2d63 cmp r5, #99 ; 0x63 +100426f6: d057 beq.n 100427a8 <__ssvfiscanf_r+0x1ac> +100426f8: 2d64 cmp r5, #100 ; 0x64 +100426fa: d03f beq.n 1004277c <__ssvfiscanf_r+0x180> +100426fc: e06c b.n 100427d8 <__ssvfiscanf_r+0x1dc> +100426fe: 2d70 cmp r5, #112 ; 0x70 +10042700: d032 beq.n 10042768 <__ssvfiscanf_r+0x16c> +10042702: d807 bhi.n 10042714 <__ssvfiscanf_r+0x118> +10042704: 2d6e cmp r5, #110 ; 0x6e +10042706: d055 beq.n 100427b4 <__ssvfiscanf_r+0x1b8> +10042708: d83a bhi.n 10042780 <__ssvfiscanf_r+0x184> +1004270a: 2d69 cmp r5, #105 ; 0x69 +1004270c: d164 bne.n 100427d8 <__ssvfiscanf_r+0x1dc> +1004270e: 2300 movs r3, #0 +10042710: 9344 str r3, [sp, #272] ; 0x110 +10042712: e039 b.n 10042788 <__ssvfiscanf_r+0x18c> +10042714: 2d75 cmp r5, #117 ; 0x75 +10042716: d031 beq.n 1004277c <__ssvfiscanf_r+0x180> +10042718: 2d78 cmp r5, #120 ; 0x78 +1004271a: d029 beq.n 10042770 <__ssvfiscanf_r+0x174> +1004271c: 2d73 cmp r5, #115 ; 0x73 +1004271e: d15b bne.n 100427d8 <__ssvfiscanf_r+0x1dc> +10042720: 2302 movs r3, #2 +10042722: e03f b.n 100427a4 <__ssvfiscanf_r+0x1a8> +10042724: 6863 ldr r3, [r4, #4] +10042726: 2b00 cmp r3, #0 +10042728: dd0d ble.n 10042746 <__ssvfiscanf_r+0x14a> +1004272a: 6823 ldr r3, [r4, #0] +1004272c: 781a ldrb r2, [r3, #0] +1004272e: 42aa cmp r2, r5 +10042730: f040 80a0 bne.w 10042874 <__ssvfiscanf_r+0x278> +10042734: 3301 adds r3, #1 +10042736: 6862 ldr r2, [r4, #4] +10042738: 6023 str r3, [r4, #0] +1004273a: 9b47 ldr r3, [sp, #284] ; 0x11c +1004273c: 3a01 subs r2, #1 +1004273e: 3301 adds r3, #1 +10042740: 6062 str r2, [r4, #4] +10042742: 9347 str r3, [sp, #284] ; 0x11c +10042744: e798 b.n 10042678 <__ssvfiscanf_r+0x7c> +10042746: 9ba3 ldr r3, [sp, #652] ; 0x28c +10042748: 4638 mov r0, r7 +1004274a: 4621 mov r1, r4 +1004274c: 4798 blx r3 +1004274e: 2800 cmp r0, #0 +10042750: d0eb beq.n 1004272a <__ssvfiscanf_r+0x12e> +10042752: 9846 ldr r0, [sp, #280] ; 0x118 +10042754: 2800 cmp r0, #0 +10042756: f000 808f beq.w 10042878 <__ssvfiscanf_r+0x27c> +1004275a: 89a3 ldrh r3, [r4, #12] +1004275c: f013 0f40 tst.w r3, #64 ; 0x40 +10042760: bf18 it ne +10042762: f04f 30ff movne.w r0, #4294967295 +10042766: e089 b.n 1004287c <__ssvfiscanf_r+0x280> +10042768: 9b43 ldr r3, [sp, #268] ; 0x10c +1004276a: f043 0320 orr.w r3, r3, #32 +1004276e: 9343 str r3, [sp, #268] ; 0x10c +10042770: 9b43 ldr r3, [sp, #268] ; 0x10c +10042772: f443 7300 orr.w r3, r3, #512 ; 0x200 +10042776: 9343 str r3, [sp, #268] ; 0x10c +10042778: 2310 movs r3, #16 +1004277a: e002 b.n 10042782 <__ssvfiscanf_r+0x186> +1004277c: 230a movs r3, #10 +1004277e: e000 b.n 10042782 <__ssvfiscanf_r+0x186> +10042780: 2308 movs r3, #8 +10042782: 2d6e cmp r5, #110 ; 0x6e +10042784: 9344 str r3, [sp, #272] ; 0x110 +10042786: dc01 bgt.n 1004278c <__ssvfiscanf_r+0x190> +10042788: 2303 movs r3, #3 +1004278a: e00b b.n 100427a4 <__ssvfiscanf_r+0x1a8> +1004278c: 2304 movs r3, #4 +1004278e: e009 b.n 100427a4 <__ssvfiscanf_r+0x1a8> +10042790: 4631 mov r1, r6 +10042792: 4648 mov r0, r9 +10042794: f000 fa44 bl 10042c20 <__sccl> +10042798: 9b43 ldr r3, [sp, #268] ; 0x10c +1004279a: 4606 mov r6, r0 +1004279c: f043 0340 orr.w r3, r3, #64 ; 0x40 +100427a0: 9343 str r3, [sp, #268] ; 0x10c +100427a2: 2301 movs r3, #1 +100427a4: 9349 str r3, [sp, #292] ; 0x124 +100427a6: e01b b.n 100427e0 <__ssvfiscanf_r+0x1e4> +100427a8: 9b43 ldr r3, [sp, #268] ; 0x10c +100427aa: f043 0340 orr.w r3, r3, #64 ; 0x40 +100427ae: 9343 str r3, [sp, #268] ; 0x10c +100427b0: 2300 movs r3, #0 +100427b2: e7f7 b.n 100427a4 <__ssvfiscanf_r+0x1a8> +100427b4: 9a43 ldr r2, [sp, #268] ; 0x10c +100427b6: 06d0 lsls r0, r2, #27 +100427b8: f53f af5e bmi.w 10042678 <__ssvfiscanf_r+0x7c> +100427bc: f012 0f01 tst.w r2, #1 +100427c0: 9a01 ldr r2, [sp, #4] +100427c2: 9b47 ldr r3, [sp, #284] ; 0x11c +100427c4: f102 0104 add.w r1, r2, #4 +100427c8: 9101 str r1, [sp, #4] +100427ca: 6812 ldr r2, [r2, #0] +100427cc: bf14 ite ne +100427ce: 8013 strhne r3, [r2, #0] +100427d0: 6013 streq r3, [r2, #0] +100427d2: e751 b.n 10042678 <__ssvfiscanf_r+0x7c> +100427d4: 2305 movs r3, #5 +100427d6: e7e5 b.n 100427a4 <__ssvfiscanf_r+0x1a8> +100427d8: 2303 movs r3, #3 +100427da: 9349 str r3, [sp, #292] ; 0x124 +100427dc: 230a movs r3, #10 +100427de: 9344 str r3, [sp, #272] ; 0x110 +100427e0: 6863 ldr r3, [r4, #4] +100427e2: 2b00 cmp r3, #0 +100427e4: dd03 ble.n 100427ee <__ssvfiscanf_r+0x1f2> +100427e6: 9b43 ldr r3, [sp, #268] ; 0x10c +100427e8: 0659 lsls r1, r3, #25 +100427ea: d511 bpl.n 10042810 <__ssvfiscanf_r+0x214> +100427ec: e018 b.n 10042820 <__ssvfiscanf_r+0x224> +100427ee: 9ba3 ldr r3, [sp, #652] ; 0x28c +100427f0: 4638 mov r0, r7 +100427f2: 4621 mov r1, r4 +100427f4: 4798 blx r3 +100427f6: 2800 cmp r0, #0 +100427f8: d0f5 beq.n 100427e6 <__ssvfiscanf_r+0x1ea> +100427fa: e7aa b.n 10042752 <__ssvfiscanf_r+0x156> +100427fc: 9a47 ldr r2, [sp, #284] ; 0x11c +100427fe: 3201 adds r2, #1 +10042800: 9247 str r2, [sp, #284] ; 0x11c +10042802: 6862 ldr r2, [r4, #4] +10042804: 3a01 subs r2, #1 +10042806: 2a00 cmp r2, #0 +10042808: 6062 str r2, [r4, #4] +1004280a: dd13 ble.n 10042834 <__ssvfiscanf_r+0x238> +1004280c: 3301 adds r3, #1 +1004280e: 6023 str r3, [r4, #0] +10042810: 6823 ldr r3, [r4, #0] +10042812: f8da 2000 ldr.w r2, [sl] +10042816: 7819 ldrb r1, [r3, #0] +10042818: 440a add r2, r1 +1004281a: 7852 ldrb r2, [r2, #1] +1004281c: 0712 lsls r2, r2, #28 +1004281e: d4ed bmi.n 100427fc <__ssvfiscanf_r+0x200> +10042820: 9b49 ldr r3, [sp, #292] ; 0x124 +10042822: 2b02 cmp r3, #2 +10042824: dc0d bgt.n 10042842 <__ssvfiscanf_r+0x246> +10042826: 4638 mov r0, r7 +10042828: a943 add r1, sp, #268 ; 0x10c +1004282a: 4622 mov r2, r4 +1004282c: ab01 add r3, sp, #4 +1004282e: f000 f86d bl 1004290c <_scanf_chars> +10042832: e019 b.n 10042868 <__ssvfiscanf_r+0x26c> +10042834: 9ba3 ldr r3, [sp, #652] ; 0x28c +10042836: 4638 mov r0, r7 +10042838: 4621 mov r1, r4 +1004283a: 4798 blx r3 +1004283c: 2800 cmp r0, #0 +1004283e: d0e7 beq.n 10042810 <__ssvfiscanf_r+0x214> +10042840: e787 b.n 10042752 <__ssvfiscanf_r+0x156> +10042842: 2b04 cmp r3, #4 +10042844: dc06 bgt.n 10042854 <__ssvfiscanf_r+0x258> +10042846: 4638 mov r0, r7 +10042848: a943 add r1, sp, #268 ; 0x10c +1004284a: 4622 mov r2, r4 +1004284c: ab01 add r3, sp, #4 +1004284e: f000 f8bd bl 100429cc <_scanf_i> +10042852: e009 b.n 10042868 <__ssvfiscanf_r+0x26c> +10042854: 4b0e ldr r3, [pc, #56] ; (10042890 <__ssvfiscanf_r+0x294>) +10042856: 2b00 cmp r3, #0 +10042858: f43f af0e beq.w 10042678 <__ssvfiscanf_r+0x7c> +1004285c: 4638 mov r0, r7 +1004285e: a943 add r1, sp, #268 ; 0x10c +10042860: 4622 mov r2, r4 +10042862: ab01 add r3, sp, #4 +10042864: f3af 8000 nop.w +10042868: 2801 cmp r0, #1 +1004286a: d003 beq.n 10042874 <__ssvfiscanf_r+0x278> +1004286c: 2802 cmp r0, #2 +1004286e: f47f af03 bne.w 10042678 <__ssvfiscanf_r+0x7c> +10042872: e76e b.n 10042752 <__ssvfiscanf_r+0x156> +10042874: 9846 ldr r0, [sp, #280] ; 0x118 +10042876: e001 b.n 1004287c <__ssvfiscanf_r+0x280> +10042878: f04f 30ff mov.w r0, #4294967295 +1004287c: f50d 7d24 add.w sp, sp, #656 ; 0x290 +10042880: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} +10042884: 10042549 .word 0x10042549 +10042888: 100425c3 .word 0x100425c3 +1004288c: 1004f134 .word 0x1004f134 +10042890: 00000000 .word 0x00000000 +10042894: 1004d4cf .word 0x1004d4cf + +10042898 <__submore>: +10042898: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +1004289c: 460c mov r4, r1 +1004289e: 6b49 ldr r1, [r1, #52] ; 0x34 +100428a0: f104 0344 add.w r3, r4, #68 ; 0x44 +100428a4: 4299 cmp r1, r3 +100428a6: d11a bne.n 100428de <__submore+0x46> +100428a8: f44f 6180 mov.w r1, #1024 ; 0x400 +100428ac: f7ff fd7a bl 100423a4 <_malloc_r> +100428b0: b918 cbnz r0, 100428ba <__submore+0x22> +100428b2: f04f 30ff mov.w r0, #4294967295 +100428b6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100428ba: f44f 6380 mov.w r3, #1024 ; 0x400 +100428be: 63a3 str r3, [r4, #56] ; 0x38 +100428c0: f894 3046 ldrb.w r3, [r4, #70] ; 0x46 +100428c4: 6360 str r0, [r4, #52] ; 0x34 +100428c6: f880 33ff strb.w r3, [r0, #1023] ; 0x3ff +100428ca: f894 3045 ldrb.w r3, [r4, #69] ; 0x45 +100428ce: f200 30fd addw r0, r0, #1021 ; 0x3fd +100428d2: 7043 strb r3, [r0, #1] +100428d4: f894 3044 ldrb.w r3, [r4, #68] ; 0x44 +100428d8: 7003 strb r3, [r0, #0] +100428da: 6020 str r0, [r4, #0] +100428dc: e012 b.n 10042904 <__submore+0x6c> +100428de: 6ba6 ldr r6, [r4, #56] ; 0x38 +100428e0: 0077 lsls r7, r6, #1 +100428e2: 463a mov r2, r7 +100428e4: f000 f976 bl 10042bd4 <_realloc_r> +100428e8: 4605 mov r5, r0 +100428ea: 2800 cmp r0, #0 +100428ec: d0e1 beq.n 100428b2 <__submore+0x1a> +100428ee: eb00 0806 add.w r8, r0, r6 +100428f2: 4640 mov r0, r8 +100428f4: 4629 mov r1, r5 +100428f6: 4632 mov r2, r6 +100428f8: f7ff fcfe bl 100422f8 +100428fc: f8c4 8000 str.w r8, [r4] +10042900: 6365 str r5, [r4, #52] ; 0x34 +10042902: 63a7 str r7, [r4, #56] ; 0x38 +10042904: 2000 movs r0, #0 +10042906: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + ... + +1004290c <_scanf_chars>: +1004290c: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} +10042910: 4615 mov r5, r2 +10042912: 688a ldr r2, [r1, #8] +10042914: 4680 mov r8, r0 +10042916: 460c mov r4, r1 +10042918: b932 cbnz r2, 10042928 <_scanf_chars+0x1c> +1004291a: 698a ldr r2, [r1, #24] +1004291c: 2a00 cmp r2, #0 +1004291e: bf14 ite ne +10042920: f04f 32ff movne.w r2, #4294967295 +10042924: 2201 moveq r2, #1 +10042926: 608a str r2, [r1, #8] +10042928: 6822 ldr r2, [r4, #0] +1004292a: 06d1 lsls r1, r2, #27 +1004292c: d403 bmi.n 10042936 <_scanf_chars+0x2a> +1004292e: 681a ldr r2, [r3, #0] +10042930: 1d11 adds r1, r2, #4 +10042932: 6019 str r1, [r3, #0] +10042934: 6817 ldr r7, [r2, #0] +10042936: 2600 movs r6, #0 +10042938: 69a0 ldr r0, [r4, #24] +1004293a: b9e0 cbnz r0, 10042976 <_scanf_chars+0x6a> +1004293c: 6823 ldr r3, [r4, #0] +1004293e: 3601 adds r6, #1 +10042940: 06da lsls r2, r3, #27 +10042942: d404 bmi.n 1004294e <_scanf_chars+0x42> +10042944: 682b ldr r3, [r5, #0] +10042946: 3701 adds r7, #1 +10042948: 781b ldrb r3, [r3, #0] +1004294a: f807 3c01 strb.w r3, [r7, #-1] +1004294e: 682a ldr r2, [r5, #0] +10042950: 686b ldr r3, [r5, #4] +10042952: 3201 adds r2, #1 +10042954: 602a str r2, [r5, #0] +10042956: 68a2 ldr r2, [r4, #8] +10042958: 3b01 subs r3, #1 +1004295a: 3a01 subs r2, #1 +1004295c: 606b str r3, [r5, #4] +1004295e: 60a2 str r2, [r4, #8] +10042960: b312 cbz r2, 100429a8 <_scanf_chars+0x9c> +10042962: 2b00 cmp r3, #0 +10042964: dce8 bgt.n 10042938 <_scanf_chars+0x2c> +10042966: f8d4 3180 ldr.w r3, [r4, #384] ; 0x180 +1004296a: 4640 mov r0, r8 +1004296c: 4629 mov r1, r5 +1004296e: 4798 blx r3 +10042970: 2800 cmp r0, #0 +10042972: d0e1 beq.n 10042938 <_scanf_chars+0x2c> +10042974: e018 b.n 100429a8 <_scanf_chars+0x9c> +10042976: 2801 cmp r0, #1 +10042978: d107 bne.n 1004298a <_scanf_chars+0x7e> +1004297a: 682a ldr r2, [r5, #0] +1004297c: 7811 ldrb r1, [r2, #0] +1004297e: 6962 ldr r2, [r4, #20] +10042980: 5c52 ldrb r2, [r2, r1] +10042982: 2a00 cmp r2, #0 +10042984: d1da bne.n 1004293c <_scanf_chars+0x30> +10042986: b1ee cbz r6, 100429c4 <_scanf_chars+0xb8> +10042988: e00e b.n 100429a8 <_scanf_chars+0x9c> +1004298a: 2802 cmp r0, #2 +1004298c: d001 beq.n 10042992 <_scanf_chars+0x86> +1004298e: b14e cbz r6, 100429a4 <_scanf_chars+0x98> +10042990: e00a b.n 100429a8 <_scanf_chars+0x9c> +10042992: 682a ldr r2, [r5, #0] +10042994: 490c ldr r1, [pc, #48] ; (100429c8 <_scanf_chars+0xbc>) +10042996: 7812 ldrb r2, [r2, #0] +10042998: 6809 ldr r1, [r1, #0] +1004299a: 440a add r2, r1 +1004299c: 7852 ldrb r2, [r2, #1] +1004299e: 0713 lsls r3, r2, #28 +100429a0: d5cc bpl.n 1004293c <_scanf_chars+0x30> +100429a2: e7f4 b.n 1004298e <_scanf_chars+0x82> +100429a4: 2801 cmp r0, #1 +100429a6: d00d beq.n 100429c4 <_scanf_chars+0xb8> +100429a8: 6823 ldr r3, [r4, #0] +100429aa: f013 0310 ands.w r3, r3, #16 +100429ae: d105 bne.n 100429bc <_scanf_chars+0xb0> +100429b0: 68e2 ldr r2, [r4, #12] +100429b2: 3201 adds r2, #1 +100429b4: 60e2 str r2, [r4, #12] +100429b6: 69a2 ldr r2, [r4, #24] +100429b8: b102 cbz r2, 100429bc <_scanf_chars+0xb0> +100429ba: 703b strb r3, [r7, #0] +100429bc: 6923 ldr r3, [r4, #16] +100429be: 2000 movs r0, #0 +100429c0: 441e add r6, r3 +100429c2: 6126 str r6, [r4, #16] +100429c4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} +100429c8: 1004f134 .word 0x1004f134 + +100429cc <_scanf_i>: +100429cc: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +100429d0: b089 sub sp, #36 ; 0x24 +100429d2: 460c mov r4, r1 +100429d4: 4698 mov r8, r3 +100429d6: a905 add r1, sp, #20 +100429d8: 4b73 ldr r3, [pc, #460] ; (10042ba8 <_scanf_i+0x1dc>) +100429da: 9102 str r1, [sp, #8] +100429dc: 4681 mov r9, r0 +100429de: 4616 mov r6, r2 +100429e0: e893 0007 ldmia.w r3, {r0, r1, r2} +100429e4: 9b02 ldr r3, [sp, #8] +100429e6: e883 0007 stmia.w r3, {r0, r1, r2} +100429ea: 69a3 ldr r3, [r4, #24] +100429ec: 4a6f ldr r2, [pc, #444] ; (10042bac <_scanf_i+0x1e0>) +100429ee: 4970 ldr r1, [pc, #448] ; (10042bb0 <_scanf_i+0x1e4>) +100429f0: 2b03 cmp r3, #3 +100429f2: bf08 it eq +100429f4: 4611 moveq r1, r2 +100429f6: 68a3 ldr r3, [r4, #8] +100429f8: 9103 str r1, [sp, #12] +100429fa: 1e5a subs r2, r3, #1 +100429fc: f5b2 7fae cmp.w r2, #348 ; 0x15c +10042a00: d907 bls.n 10042a12 <_scanf_i+0x46> +10042a02: f46f 75ae mvn.w r5, #348 ; 0x15c +10042a06: eb03 0a05 add.w sl, r3, r5 +10042a0a: f240 135d movw r3, #349 ; 0x15d +10042a0e: 60a3 str r3, [r4, #8] +10042a10: e001 b.n 10042a16 <_scanf_i+0x4a> +10042a12: f04f 0a00 mov.w sl, #0 +10042a16: 6823 ldr r3, [r4, #0] +10042a18: f104 071c add.w r7, r4, #28 +10042a1c: f443 6350 orr.w r3, r3, #3328 ; 0xd00 +10042a20: 6023 str r3, [r4, #0] +10042a22: 46bb mov fp, r7 +10042a24: 2300 movs r3, #0 +10042a26: 6832 ldr r2, [r6, #0] +10042a28: a905 add r1, sp, #20 +10042a2a: f851 0023 ldr.w r0, [r1, r3, lsl #2] +10042a2e: 7811 ldrb r1, [r2, #0] +10042a30: 2202 movs r2, #2 +10042a32: 9301 str r3, [sp, #4] +10042a34: f000 f8c0 bl 10042bb8 +10042a38: 9b01 ldr r3, [sp, #4] +10042a3a: 2800 cmp r0, #0 +10042a3c: d035 beq.n 10042aaa <_scanf_i+0xde> +10042a3e: 2b01 cmp r3, #1 +10042a40: d10b bne.n 10042a5a <_scanf_i+0x8e> +10042a42: 6862 ldr r2, [r4, #4] +10042a44: b92a cbnz r2, 10042a52 <_scanf_i+0x86> +10042a46: 2208 movs r2, #8 +10042a48: 6062 str r2, [r4, #4] +10042a4a: 6822 ldr r2, [r4, #0] +10042a4c: f442 7200 orr.w r2, r2, #512 ; 0x200 +10042a50: 6022 str r2, [r4, #0] +10042a52: 6822 ldr r2, [r4, #0] +10042a54: f422 62a0 bic.w r2, r2, #1280 ; 0x500 +10042a58: e00b b.n 10042a72 <_scanf_i+0xa6> +10042a5a: 2b02 cmp r3, #2 +10042a5c: d10a bne.n 10042a74 <_scanf_i+0xa8> +10042a5e: 6822 ldr r2, [r4, #0] +10042a60: f402 61c0 and.w r1, r2, #1536 ; 0x600 +10042a64: f5b1 7f00 cmp.w r1, #512 ; 0x200 +10042a68: d11f bne.n 10042aaa <_scanf_i+0xde> +10042a6a: 2110 movs r1, #16 +10042a6c: 6061 str r1, [r4, #4] +10042a6e: f442 7280 orr.w r2, r2, #256 ; 0x100 +10042a72: 6022 str r2, [r4, #0] +10042a74: 68a2 ldr r2, [r4, #8] +10042a76: 1e51 subs r1, r2, #1 +10042a78: 60a1 str r1, [r4, #8] +10042a7a: b1b2 cbz r2, 10042aaa <_scanf_i+0xde> +10042a7c: 6832 ldr r2, [r6, #0] +10042a7e: f10b 0501 add.w r5, fp, #1 +10042a82: 1c51 adds r1, r2, #1 +10042a84: 6031 str r1, [r6, #0] +10042a86: 7812 ldrb r2, [r2, #0] +10042a88: f88b 2000 strb.w r2, [fp] +10042a8c: 6872 ldr r2, [r6, #4] +10042a8e: 3a01 subs r2, #1 +10042a90: 2a00 cmp r2, #0 +10042a92: 6072 str r2, [r6, #4] +10042a94: dc08 bgt.n 10042aa8 <_scanf_i+0xdc> +10042a96: 9301 str r3, [sp, #4] +10042a98: f8d4 2180 ldr.w r2, [r4, #384] ; 0x180 +10042a9c: 4648 mov r0, r9 +10042a9e: 4631 mov r1, r6 +10042aa0: 4790 blx r2 +10042aa2: 9b01 ldr r3, [sp, #4] +10042aa4: 2800 cmp r0, #0 +10042aa6: d141 bne.n 10042b2c <_scanf_i+0x160> +10042aa8: 46ab mov fp, r5 +10042aaa: 3301 adds r3, #1 +10042aac: 2b03 cmp r3, #3 +10042aae: d1ba bne.n 10042a26 <_scanf_i+0x5a> +10042ab0: 6863 ldr r3, [r4, #4] +10042ab2: b90b cbnz r3, 10042ab8 <_scanf_i+0xec> +10042ab4: 230a movs r3, #10 +10042ab6: 6063 str r3, [r4, #4] +10042ab8: 6863 ldr r3, [r4, #4] +10042aba: 493e ldr r1, [pc, #248] ; (10042bb4 <_scanf_i+0x1e8>) +10042abc: 6960 ldr r0, [r4, #20] +10042abe: 1ac9 subs r1, r1, r3 +10042ac0: f000 f8ae bl 10042c20 <__sccl> +10042ac4: 465d mov r5, fp +10042ac6: f04f 0b00 mov.w fp, #0 +10042aca: 68a3 ldr r3, [r4, #8] +10042acc: 2b00 cmp r3, #0 +10042ace: d02f beq.n 10042b30 <_scanf_i+0x164> +10042ad0: 6832 ldr r2, [r6, #0] +10042ad2: 6960 ldr r0, [r4, #20] +10042ad4: 7811 ldrb r1, [r2, #0] +10042ad6: 5c40 ldrb r0, [r0, r1] +10042ad8: b350 cbz r0, 10042b30 <_scanf_i+0x164> +10042ada: 2930 cmp r1, #48 ; 0x30 +10042adc: 6821 ldr r1, [r4, #0] +10042ade: d10b bne.n 10042af8 <_scanf_i+0x12c> +10042ae0: 0508 lsls r0, r1, #20 +10042ae2: d509 bpl.n 10042af8 <_scanf_i+0x12c> +10042ae4: f10b 0b01 add.w fp, fp, #1 +10042ae8: f1ba 0f00 cmp.w sl, #0 +10042aec: d00b beq.n 10042b06 <_scanf_i+0x13a> +10042aee: 3301 adds r3, #1 +10042af0: f10a 3aff add.w sl, sl, #4294967295 +10042af4: 60a3 str r3, [r4, #8] +10042af6: e006 b.n 10042b06 <_scanf_i+0x13a> +10042af8: f421 6110 bic.w r1, r1, #2304 ; 0x900 +10042afc: 6021 str r1, [r4, #0] +10042afe: 7813 ldrb r3, [r2, #0] +10042b00: 3501 adds r5, #1 +10042b02: f805 3c01 strb.w r3, [r5, #-1] +10042b06: 6873 ldr r3, [r6, #4] +10042b08: 3b01 subs r3, #1 +10042b0a: 2b00 cmp r3, #0 +10042b0c: 6073 str r3, [r6, #4] +10042b0e: dd03 ble.n 10042b18 <_scanf_i+0x14c> +10042b10: 6833 ldr r3, [r6, #0] +10042b12: 3301 adds r3, #1 +10042b14: 6033 str r3, [r6, #0] +10042b16: e005 b.n 10042b24 <_scanf_i+0x158> +10042b18: f8d4 3180 ldr.w r3, [r4, #384] ; 0x180 +10042b1c: 4648 mov r0, r9 +10042b1e: 4631 mov r1, r6 +10042b20: 4798 blx r3 +10042b22: b928 cbnz r0, 10042b30 <_scanf_i+0x164> +10042b24: 68a3 ldr r3, [r4, #8] +10042b26: 3b01 subs r3, #1 +10042b28: 60a3 str r3, [r4, #8] +10042b2a: e7ce b.n 10042aca <_scanf_i+0xfe> +10042b2c: f04f 0b00 mov.w fp, #0 +10042b30: 6823 ldr r3, [r4, #0] +10042b32: 05d9 lsls r1, r3, #23 +10042b34: d50d bpl.n 10042b52 <_scanf_i+0x186> +10042b36: 42bd cmp r5, r7 +10042b38: d909 bls.n 10042b4e <_scanf_i+0x182> +10042b3a: f815 1c01 ldrb.w r1, [r5, #-1] +10042b3e: f8d4 317c ldr.w r3, [r4, #380] ; 0x17c +10042b42: 4648 mov r0, r9 +10042b44: 4632 mov r2, r6 +10042b46: 4798 blx r3 +10042b48: f105 3aff add.w sl, r5, #4294967295 +10042b4c: 4655 mov r5, sl +10042b4e: 42bd cmp r5, r7 +10042b50: d026 beq.n 10042ba0 <_scanf_i+0x1d4> +10042b52: 6822 ldr r2, [r4, #0] +10042b54: f012 0210 ands.w r2, r2, #16 +10042b58: d11b bne.n 10042b92 <_scanf_i+0x1c6> +10042b5a: 702a strb r2, [r5, #0] +10042b5c: 6863 ldr r3, [r4, #4] +10042b5e: 4648 mov r0, r9 +10042b60: 4639 mov r1, r7 +10042b62: 9e03 ldr r6, [sp, #12] +10042b64: 47b0 blx r6 +10042b66: 6822 ldr r2, [r4, #0] +10042b68: f8d8 3000 ldr.w r3, [r8] +10042b6c: f012 0f20 tst.w r2, #32 +10042b70: d107 bne.n 10042b82 <_scanf_i+0x1b6> +10042b72: 07d2 lsls r2, r2, #31 +10042b74: d505 bpl.n 10042b82 <_scanf_i+0x1b6> +10042b76: 1d1a adds r2, r3, #4 +10042b78: f8c8 2000 str.w r2, [r8] +10042b7c: 681b ldr r3, [r3, #0] +10042b7e: 8018 strh r0, [r3, #0] +10042b80: e004 b.n 10042b8c <_scanf_i+0x1c0> +10042b82: 1d1a adds r2, r3, #4 +10042b84: f8c8 2000 str.w r2, [r8] +10042b88: 681b ldr r3, [r3, #0] +10042b8a: 6018 str r0, [r3, #0] +10042b8c: 68e3 ldr r3, [r4, #12] +10042b8e: 3301 adds r3, #1 +10042b90: 60e3 str r3, [r4, #12] +10042b92: 6923 ldr r3, [r4, #16] +10042b94: 1bed subs r5, r5, r7 +10042b96: 44ab add fp, r5 +10042b98: 445b add r3, fp +10042b9a: 6123 str r3, [r4, #16] +10042b9c: 2000 movs r0, #0 +10042b9e: e000 b.n 10042ba2 <_scanf_i+0x1d6> +10042ba0: 2001 movs r0, #1 +10042ba2: b009 add sp, #36 ; 0x24 +10042ba4: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10042ba8: 1004d4d4 .word 0x1004d4d4 +10042bac: 10042c85 .word 0x10042c85 +10042bb0: 10042d89 .word 0x10042d89 +10042bb4: 1004d4f0 .word 0x1004d4f0 + +10042bb8 : +10042bb8: b510 push {r4, lr} +10042bba: b2c9 uxtb r1, r1 +10042bbc: 4402 add r2, r0 +10042bbe: 4290 cmp r0, r2 +10042bc0: 4603 mov r3, r0 +10042bc2: d005 beq.n 10042bd0 +10042bc4: 781c ldrb r4, [r3, #0] +10042bc6: 3001 adds r0, #1 +10042bc8: 428c cmp r4, r1 +10042bca: d1f8 bne.n 10042bbe +10042bcc: 4618 mov r0, r3 +10042bce: bd10 pop {r4, pc} +10042bd0: 2000 movs r0, #0 +10042bd2: bd10 pop {r4, pc} + +10042bd4 <_realloc_r>: +10042bd4: b5f8 push {r3, r4, r5, r6, r7, lr} +10042bd6: 4606 mov r6, r0 +10042bd8: 4614 mov r4, r2 +10042bda: 460d mov r5, r1 +10042bdc: b921 cbnz r1, 10042be8 <_realloc_r+0x14> +10042bde: 4611 mov r1, r2 +10042be0: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} +10042be4: f7ff bbde b.w 100423a4 <_malloc_r> +10042be8: b91a cbnz r2, 10042bf2 <_realloc_r+0x1e> +10042bea: f7ff fb97 bl 1004231c <_free_r> +10042bee: 4620 mov r0, r4 +10042bf0: bdf8 pop {r3, r4, r5, r6, r7, pc} +10042bf2: f000 f941 bl 10042e78 <_malloc_usable_size_r> +10042bf6: 42a0 cmp r0, r4 +10042bf8: d20e bcs.n 10042c18 <_realloc_r+0x44> +10042bfa: 4630 mov r0, r6 +10042bfc: 4621 mov r1, r4 +10042bfe: f7ff fbd1 bl 100423a4 <_malloc_r> +10042c02: 4607 mov r7, r0 +10042c04: b150 cbz r0, 10042c1c <_realloc_r+0x48> +10042c06: 4629 mov r1, r5 +10042c08: 4622 mov r2, r4 +10042c0a: f7ff fb75 bl 100422f8 +10042c0e: 4630 mov r0, r6 +10042c10: 4629 mov r1, r5 +10042c12: f7ff fb83 bl 1004231c <_free_r> +10042c16: e001 b.n 10042c1c <_realloc_r+0x48> +10042c18: 4628 mov r0, r5 +10042c1a: bdf8 pop {r3, r4, r5, r6, r7, pc} +10042c1c: 4638 mov r0, r7 +10042c1e: bdf8 pop {r3, r4, r5, r6, r7, pc} + +10042c20 <__sccl>: +10042c20: b5f0 push {r4, r5, r6, r7, lr} +10042c22: 780b ldrb r3, [r1, #0] +10042c24: 2b5e cmp r3, #94 ; 0x5e +10042c26: d002 beq.n 10042c2e <__sccl+0xe> +10042c28: 1c4c adds r4, r1, #1 +10042c2a: 2100 movs r1, #0 +10042c2c: e002 b.n 10042c34 <__sccl+0x14> +10042c2e: 1c8c adds r4, r1, #2 +10042c30: 784b ldrb r3, [r1, #1] +10042c32: 2101 movs r1, #1 +10042c34: 2200 movs r2, #0 +10042c36: 5481 strb r1, [r0, r2] +10042c38: 3201 adds r2, #1 +10042c3a: f5b2 7f80 cmp.w r2, #256 ; 0x100 +10042c3e: d1fa bne.n 10042c36 <__sccl+0x16> +10042c40: b90b cbnz r3, 10042c46 <__sccl+0x26> +10042c42: 1e65 subs r5, r4, #1 +10042c44: e01b b.n 10042c7e <__sccl+0x5e> +10042c46: f1c1 0701 rsb r7, r1, #1 +10042c4a: b2fe uxtb r6, r7 +10042c4c: 54c6 strb r6, [r0, r3] +10042c4e: 1c62 adds r2, r4, #1 +10042c50: f812 1c01 ldrb.w r1, [r2, #-1] +10042c54: 1e55 subs r5, r2, #1 +10042c56: 292d cmp r1, #45 ; 0x2d +10042c58: 4614 mov r4, r2 +10042c5a: d004 beq.n 10042c66 <__sccl+0x46> +10042c5c: 295d cmp r1, #93 ; 0x5d +10042c5e: d00d beq.n 10042c7c <__sccl+0x5c> +10042c60: b169 cbz r1, 10042c7e <__sccl+0x5e> +10042c62: 460b mov r3, r1 +10042c64: e7f1 b.n 10042c4a <__sccl+0x2a> +10042c66: 7815 ldrb r5, [r2, #0] +10042c68: 2d5d cmp r5, #93 ; 0x5d +10042c6a: d0fa beq.n 10042c62 <__sccl+0x42> +10042c6c: 429d cmp r5, r3 +10042c6e: dbf8 blt.n 10042c62 <__sccl+0x42> +10042c70: 3301 adds r3, #1 +10042c72: 42ab cmp r3, r5 +10042c74: 54c6 strb r6, [r0, r3] +10042c76: dbfb blt.n 10042c70 <__sccl+0x50> +10042c78: 3202 adds r2, #2 +10042c7a: e7e9 b.n 10042c50 <__sccl+0x30> +10042c7c: 4615 mov r5, r2 +10042c7e: 4628 mov r0, r5 +10042c80: bdf0 pop {r4, r5, r6, r7, pc} + ... + +10042c84 <_strtol_r>: +10042c84: 4684 mov ip, r0 +10042c86: 483f ldr r0, [pc, #252] ; (10042d84 <_strtol_r+0x100>) +10042c88: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10042c8c: f8d0 8000 ldr.w r8, [r0] +10042c90: 460e mov r6, r1 +10042c92: 4634 mov r4, r6 +10042c94: f814 5b01 ldrb.w r5, [r4], #1 +10042c98: eb08 0005 add.w r0, r8, r5 +10042c9c: 7840 ldrb r0, [r0, #1] +10042c9e: f000 0008 and.w r0, r0, #8 +10042ca2: f000 07ff and.w r7, r0, #255 ; 0xff +10042ca6: b108 cbz r0, 10042cac <_strtol_r+0x28> +10042ca8: 4626 mov r6, r4 +10042caa: e7f2 b.n 10042c92 <_strtol_r+0xe> +10042cac: 2d2d cmp r5, #45 ; 0x2d +10042cae: d103 bne.n 10042cb8 <_strtol_r+0x34> +10042cb0: 1cb4 adds r4, r6, #2 +10042cb2: 7875 ldrb r5, [r6, #1] +10042cb4: 2701 movs r7, #1 +10042cb6: e003 b.n 10042cc0 <_strtol_r+0x3c> +10042cb8: 2d2b cmp r5, #43 ; 0x2b +10042cba: bf04 itt eq +10042cbc: 7875 ldrbeq r5, [r6, #1] +10042cbe: 1cb4 addeq r4, r6, #2 +10042cc0: f033 0010 bics.w r0, r3, #16 +10042cc4: d10d bne.n 10042ce2 <_strtol_r+0x5e> +10042cc6: 2d30 cmp r5, #48 ; 0x30 +10042cc8: d108 bne.n 10042cdc <_strtol_r+0x58> +10042cca: 7820 ldrb r0, [r4, #0] +10042ccc: f000 00df and.w r0, r0, #223 ; 0xdf +10042cd0: 2858 cmp r0, #88 ; 0x58 +10042cd2: d151 bne.n 10042d78 <_strtol_r+0xf4> +10042cd4: 7865 ldrb r5, [r4, #1] +10042cd6: 2310 movs r3, #16 +10042cd8: 3402 adds r4, #2 +10042cda: e002 b.n 10042ce2 <_strtol_r+0x5e> +10042cdc: 2b00 cmp r3, #0 +10042cde: bf08 it eq +10042ce0: 230a moveq r3, #10 +10042ce2: 2f00 cmp r7, #0 +10042ce4: bf0c ite eq +10042ce6: f06f 4a00 mvneq.w sl, #2147483648 ; 0x80000000 +10042cea: f04f 4a00 movne.w sl, #2147483648 ; 0x80000000 +10042cee: fbba f9f3 udiv r9, sl, r3 +10042cf2: fb03 aa19 mls sl, r3, r9, sl +10042cf6: 2600 movs r6, #0 +10042cf8: 4630 mov r0, r6 +10042cfa: eb08 0b05 add.w fp, r8, r5 +10042cfe: f89b b001 ldrb.w fp, [fp, #1] +10042d02: f01b 0f04 tst.w fp, #4 +10042d06: d001 beq.n 10042d0c <_strtol_r+0x88> +10042d08: 3d30 subs r5, #48 ; 0x30 +10042d0a: e00b b.n 10042d24 <_strtol_r+0xa0> +10042d0c: f01b 0b03 ands.w fp, fp, #3 +10042d10: d01b beq.n 10042d4a <_strtol_r+0xc6> +10042d12: f1bb 0f01 cmp.w fp, #1 +10042d16: bf14 ite ne +10042d18: f04f 0b57 movne.w fp, #87 ; 0x57 +10042d1c: f04f 0b37 moveq.w fp, #55 ; 0x37 +10042d20: ebcb 0505 rsb r5, fp, r5 +10042d24: 429d cmp r5, r3 +10042d26: da10 bge.n 10042d4a <_strtol_r+0xc6> +10042d28: f1b6 3fff cmp.w r6, #4294967295 +10042d2c: d00a beq.n 10042d44 <_strtol_r+0xc0> +10042d2e: 4548 cmp r0, r9 +10042d30: d806 bhi.n 10042d40 <_strtol_r+0xbc> +10042d32: d101 bne.n 10042d38 <_strtol_r+0xb4> +10042d34: 4555 cmp r5, sl +10042d36: dc03 bgt.n 10042d40 <_strtol_r+0xbc> +10042d38: fb03 5000 mla r0, r3, r0, r5 +10042d3c: 2601 movs r6, #1 +10042d3e: e001 b.n 10042d44 <_strtol_r+0xc0> +10042d40: f04f 36ff mov.w r6, #4294967295 +10042d44: f814 5b01 ldrb.w r5, [r4], #1 +10042d48: e7d7 b.n 10042cfa <_strtol_r+0x76> +10042d4a: 1c73 adds r3, r6, #1 +10042d4c: d10c bne.n 10042d68 <_strtol_r+0xe4> +10042d4e: 2f00 cmp r7, #0 +10042d50: f04f 0322 mov.w r3, #34 ; 0x22 +10042d54: bf0c ite eq +10042d56: f06f 4000 mvneq.w r0, #2147483648 ; 0x80000000 +10042d5a: f04f 4000 movne.w r0, #2147483648 ; 0x80000000 +10042d5e: f8cc 3000 str.w r3, [ip] +10042d62: b92a cbnz r2, 10042d70 <_strtol_r+0xec> +10042d64: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10042d68: b107 cbz r7, 10042d6c <_strtol_r+0xe8> +10042d6a: 4240 negs r0, r0 +10042d6c: b142 cbz r2, 10042d80 <_strtol_r+0xfc> +10042d6e: b106 cbz r6, 10042d72 <_strtol_r+0xee> +10042d70: 1e61 subs r1, r4, #1 +10042d72: 6011 str r1, [r2, #0] +10042d74: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10042d78: 2b00 cmp r3, #0 +10042d7a: bf08 it eq +10042d7c: 2308 moveq r3, #8 +10042d7e: e7b0 b.n 10042ce2 <_strtol_r+0x5e> +10042d80: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10042d84: 1004f134 .word 0x1004f134 + +10042d88 <_strtoul_r>: +10042d88: 4684 mov ip, r0 +10042d8a: 483a ldr r0, [pc, #232] ; (10042e74 <_strtoul_r+0xec>) +10042d8c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} +10042d90: f8d0 8000 ldr.w r8, [r0] +10042d94: 460e mov r6, r1 +10042d96: 4634 mov r4, r6 +10042d98: f814 5b01 ldrb.w r5, [r4], #1 +10042d9c: eb08 0005 add.w r0, r8, r5 +10042da0: 7840 ldrb r0, [r0, #1] +10042da2: f000 0008 and.w r0, r0, #8 +10042da6: f000 07ff and.w r7, r0, #255 ; 0xff +10042daa: b108 cbz r0, 10042db0 <_strtoul_r+0x28> +10042dac: 4626 mov r6, r4 +10042dae: e7f2 b.n 10042d96 <_strtoul_r+0xe> +10042db0: 2d2d cmp r5, #45 ; 0x2d +10042db2: d103 bne.n 10042dbc <_strtoul_r+0x34> +10042db4: 1cb4 adds r4, r6, #2 +10042db6: 7875 ldrb r5, [r6, #1] +10042db8: 2701 movs r7, #1 +10042dba: e003 b.n 10042dc4 <_strtoul_r+0x3c> +10042dbc: 2d2b cmp r5, #43 ; 0x2b +10042dbe: bf04 itt eq +10042dc0: 7875 ldrbeq r5, [r6, #1] +10042dc2: 1cb4 addeq r4, r6, #2 +10042dc4: f033 0010 bics.w r0, r3, #16 +10042dc8: d10d bne.n 10042de6 <_strtoul_r+0x5e> +10042dca: 2d30 cmp r5, #48 ; 0x30 +10042dcc: d108 bne.n 10042de0 <_strtoul_r+0x58> +10042dce: 7820 ldrb r0, [r4, #0] +10042dd0: f000 00df and.w r0, r0, #223 ; 0xdf +10042dd4: 2858 cmp r0, #88 ; 0x58 +10042dd6: d147 bne.n 10042e68 <_strtoul_r+0xe0> +10042dd8: 7865 ldrb r5, [r4, #1] +10042dda: 2310 movs r3, #16 +10042ddc: 3402 adds r4, #2 +10042dde: e002 b.n 10042de6 <_strtoul_r+0x5e> +10042de0: 2b00 cmp r3, #0 +10042de2: bf08 it eq +10042de4: 230a moveq r3, #10 +10042de6: f04f 39ff mov.w r9, #4294967295 +10042dea: fbb9 f9f3 udiv r9, r9, r3 +10042dee: fb03 fa09 mul.w sl, r3, r9 +10042df2: 2600 movs r6, #0 +10042df4: ea6f 0a0a mvn.w sl, sl +10042df8: 4630 mov r0, r6 +10042dfa: eb08 0b05 add.w fp, r8, r5 +10042dfe: f89b b001 ldrb.w fp, [fp, #1] +10042e02: f01b 0f04 tst.w fp, #4 +10042e06: d001 beq.n 10042e0c <_strtoul_r+0x84> +10042e08: 3d30 subs r5, #48 ; 0x30 +10042e0a: e00b b.n 10042e24 <_strtoul_r+0x9c> +10042e0c: f01b 0b03 ands.w fp, fp, #3 +10042e10: d01a beq.n 10042e48 <_strtoul_r+0xc0> +10042e12: f1bb 0f01 cmp.w fp, #1 +10042e16: bf14 ite ne +10042e18: f04f 0b57 movne.w fp, #87 ; 0x57 +10042e1c: f04f 0b37 moveq.w fp, #55 ; 0x37 +10042e20: ebcb 0505 rsb r5, fp, r5 +10042e24: 429d cmp r5, r3 +10042e26: da0f bge.n 10042e48 <_strtoul_r+0xc0> +10042e28: 2e00 cmp r6, #0 +10042e2a: db08 blt.n 10042e3e <_strtoul_r+0xb6> +10042e2c: 4548 cmp r0, r9 +10042e2e: d806 bhi.n 10042e3e <_strtoul_r+0xb6> +10042e30: d101 bne.n 10042e36 <_strtoul_r+0xae> +10042e32: 4555 cmp r5, sl +10042e34: dc03 bgt.n 10042e3e <_strtoul_r+0xb6> +10042e36: fb03 5000 mla r0, r3, r0, r5 +10042e3a: 2601 movs r6, #1 +10042e3c: e001 b.n 10042e42 <_strtoul_r+0xba> +10042e3e: f04f 36ff mov.w r6, #4294967295 +10042e42: f814 5b01 ldrb.w r5, [r4], #1 +10042e46: e7d8 b.n 10042dfa <_strtoul_r+0x72> +10042e48: 2e00 cmp r6, #0 +10042e4a: da05 bge.n 10042e58 <_strtoul_r+0xd0> +10042e4c: 2322 movs r3, #34 ; 0x22 +10042e4e: f8cc 3000 str.w r3, [ip] +10042e52: f04f 30ff mov.w r0, #4294967295 +10042e56: e001 b.n 10042e5c <_strtoul_r+0xd4> +10042e58: b107 cbz r7, 10042e5c <_strtoul_r+0xd4> +10042e5a: 4240 negs r0, r0 +10042e5c: b142 cbz r2, 10042e70 <_strtoul_r+0xe8> +10042e5e: b106 cbz r6, 10042e62 <_strtoul_r+0xda> +10042e60: 1e61 subs r1, r4, #1 +10042e62: 6011 str r1, [r2, #0] +10042e64: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10042e68: 2b00 cmp r3, #0 +10042e6a: bf08 it eq +10042e6c: 2308 moveq r3, #8 +10042e6e: e7ba b.n 10042de6 <_strtoul_r+0x5e> +10042e70: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} +10042e74: 1004f134 .word 0x1004f134 + +10042e78 <_malloc_usable_size_r>: +10042e78: f851 0c04 ldr.w r0, [r1, #-4] +10042e7c: 2800 cmp r0, #0 +10042e7e: da02 bge.n 10042e86 <_malloc_usable_size_r+0xe> +10042e80: 3904 subs r1, #4 +10042e82: 580b ldr r3, [r1, r0] +10042e84: 4418 add r0, r3 +10042e86: 3804 subs r0, #4 +10042e88: 4770 bx lr + ... + +10042e8c <_sbrk>: +10042e8c: 4a09 ldr r2, [pc, #36] ; (10042eb4 <_sbrk+0x28>) +10042e8e: 6813 ldr r3, [r2, #0] +10042e90: b163 cbz r3, 10042eac <_sbrk+0x20> +10042e92: 4418 add r0, r3 +10042e94: 4669 mov r1, sp +10042e96: 4288 cmp r0, r1 +10042e98: d802 bhi.n 10042ea0 <_sbrk+0x14> +10042e9a: 6010 str r0, [r2, #0] +10042e9c: 4618 mov r0, r3 +10042e9e: 4770 bx lr +10042ea0: 4b05 ldr r3, [pc, #20] ; (10042eb8 <_sbrk+0x2c>) +10042ea2: 220c movs r2, #12 +10042ea4: 601a str r2, [r3, #0] +10042ea6: f04f 30ff mov.w r0, #4294967295 +10042eaa: 4770 bx lr +10042eac: 4b03 ldr r3, [pc, #12] ; (10042ebc <_sbrk+0x30>) +10042eae: 6013 str r3, [r2, #0] +10042eb0: e7ef b.n 10042e92 <_sbrk+0x6> +10042eb2: bf00 nop +10042eb4: 100555b8 .word 0x100555b8 +10042eb8: 1004f3e4 .word 0x1004f3e4 +10042ebc: 10067adc .word 0x10067adc + +10042ec0 <__aeabi_llsr>: +10042ec0: 40d0 lsrs r0, r2 +10042ec2: 1c0b adds r3, r1, #0 +10042ec4: 40d1 lsrs r1, r2 +10042ec6: 469c mov ip, r3 +10042ec8: 3a20 subs r2, #32 +10042eca: 40d3 lsrs r3, r2 +10042ecc: 4318 orrs r0, r3 +10042ece: 4252 negs r2, r2 +10042ed0: 4663 mov r3, ip +10042ed2: 4093 lsls r3, r2 +10042ed4: 4318 orrs r0, r3 +10042ed6: 4770 bx lr + +10042ed8 <__aeabi_drsub>: +10042ed8: f081 4100 eor.w r1, r1, #2147483648 ; 0x80000000 +10042edc: e002 b.n 10042ee4 <__adddf3> +10042ede: bf00 nop + +10042ee0 <__aeabi_dsub>: +10042ee0: f083 4300 eor.w r3, r3, #2147483648 ; 0x80000000 + +10042ee4 <__adddf3>: +10042ee4: b530 push {r4, r5, lr} +10042ee6: ea4f 0441 mov.w r4, r1, lsl #1 +10042eea: ea4f 0543 mov.w r5, r3, lsl #1 +10042eee: ea94 0f05 teq r4, r5 +10042ef2: bf08 it eq +10042ef4: ea90 0f02 teqeq r0, r2 +10042ef8: bf1f itttt ne +10042efa: ea54 0c00 orrsne.w ip, r4, r0 +10042efe: ea55 0c02 orrsne.w ip, r5, r2 +10042f02: ea7f 5c64 mvnsne.w ip, r4, asr #21 +10042f06: ea7f 5c65 mvnsne.w ip, r5, asr #21 +10042f0a: f000 80e2 beq.w 100430d2 <__adddf3+0x1ee> +10042f0e: ea4f 5454 mov.w r4, r4, lsr #21 +10042f12: ebd4 5555 rsbs r5, r4, r5, lsr #21 +10042f16: bfb8 it lt +10042f18: 426d neglt r5, r5 +10042f1a: dd0c ble.n 10042f36 <__adddf3+0x52> +10042f1c: 442c add r4, r5 +10042f1e: ea80 0202 eor.w r2, r0, r2 +10042f22: ea81 0303 eor.w r3, r1, r3 +10042f26: ea82 0000 eor.w r0, r2, r0 +10042f2a: ea83 0101 eor.w r1, r3, r1 +10042f2e: ea80 0202 eor.w r2, r0, r2 +10042f32: ea81 0303 eor.w r3, r1, r3 +10042f36: 2d36 cmp r5, #54 ; 0x36 +10042f38: bf88 it hi +10042f3a: bd30 pophi {r4, r5, pc} +10042f3c: f011 4f00 tst.w r1, #2147483648 ; 0x80000000 +10042f40: ea4f 3101 mov.w r1, r1, lsl #12 +10042f44: f44f 1c80 mov.w ip, #1048576 ; 0x100000 +10042f48: ea4c 3111 orr.w r1, ip, r1, lsr #12 +10042f4c: d002 beq.n 10042f54 <__adddf3+0x70> +10042f4e: 4240 negs r0, r0 +10042f50: eb61 0141 sbc.w r1, r1, r1, lsl #1 +10042f54: f013 4f00 tst.w r3, #2147483648 ; 0x80000000 +10042f58: ea4f 3303 mov.w r3, r3, lsl #12 +10042f5c: ea4c 3313 orr.w r3, ip, r3, lsr #12 +10042f60: d002 beq.n 10042f68 <__adddf3+0x84> +10042f62: 4252 negs r2, r2 +10042f64: eb63 0343 sbc.w r3, r3, r3, lsl #1 +10042f68: ea94 0f05 teq r4, r5 +10042f6c: f000 80a7 beq.w 100430be <__adddf3+0x1da> +10042f70: f1a4 0401 sub.w r4, r4, #1 +10042f74: f1d5 0e20 rsbs lr, r5, #32 +10042f78: db0d blt.n 10042f96 <__adddf3+0xb2> +10042f7a: fa02 fc0e lsl.w ip, r2, lr +10042f7e: fa22 f205 lsr.w r2, r2, r5 +10042f82: 1880 adds r0, r0, r2 +10042f84: f141 0100 adc.w r1, r1, #0 +10042f88: fa03 f20e lsl.w r2, r3, lr +10042f8c: 1880 adds r0, r0, r2 +10042f8e: fa43 f305 asr.w r3, r3, r5 +10042f92: 4159 adcs r1, r3 +10042f94: e00e b.n 10042fb4 <__adddf3+0xd0> +10042f96: f1a5 0520 sub.w r5, r5, #32 +10042f9a: f10e 0e20 add.w lr, lr, #32 +10042f9e: 2a01 cmp r2, #1 +10042fa0: fa03 fc0e lsl.w ip, r3, lr +10042fa4: bf28 it cs +10042fa6: f04c 0c02 orrcs.w ip, ip, #2 +10042faa: fa43 f305 asr.w r3, r3, r5 +10042fae: 18c0 adds r0, r0, r3 +10042fb0: eb51 71e3 adcs.w r1, r1, r3, asr #31 +10042fb4: f001 4500 and.w r5, r1, #2147483648 ; 0x80000000 +10042fb8: d507 bpl.n 10042fca <__adddf3+0xe6> +10042fba: f04f 0e00 mov.w lr, #0 +10042fbe: f1dc 0c00 rsbs ip, ip, #0 +10042fc2: eb7e 0000 sbcs.w r0, lr, r0 +10042fc6: eb6e 0101 sbc.w r1, lr, r1 +10042fca: f5b1 1f80 cmp.w r1, #1048576 ; 0x100000 +10042fce: d31b bcc.n 10043008 <__adddf3+0x124> +10042fd0: f5b1 1f00 cmp.w r1, #2097152 ; 0x200000 +10042fd4: d30c bcc.n 10042ff0 <__adddf3+0x10c> +10042fd6: 0849 lsrs r1, r1, #1 +10042fd8: ea5f 0030 movs.w r0, r0, rrx +10042fdc: ea4f 0c3c mov.w ip, ip, rrx +10042fe0: f104 0401 add.w r4, r4, #1 +10042fe4: ea4f 5244 mov.w r2, r4, lsl #21 +10042fe8: f512 0f80 cmn.w r2, #4194304 ; 0x400000 +10042fec: f080 809a bcs.w 10043124 <__adddf3+0x240> +10042ff0: f1bc 4f00 cmp.w ip, #2147483648 ; 0x80000000 +10042ff4: bf08 it eq +10042ff6: ea5f 0c50 movseq.w ip, r0, lsr #1 +10042ffa: f150 0000 adcs.w r0, r0, #0 +10042ffe: eb41 5104 adc.w r1, r1, r4, lsl #20 +10043002: ea41 0105 orr.w r1, r1, r5 +10043006: bd30 pop {r4, r5, pc} +10043008: ea5f 0c4c movs.w ip, ip, lsl #1 +1004300c: 4140 adcs r0, r0 +1004300e: eb41 0101 adc.w r1, r1, r1 +10043012: f411 1f80 tst.w r1, #1048576 ; 0x100000 +10043016: f1a4 0401 sub.w r4, r4, #1 +1004301a: d1e9 bne.n 10042ff0 <__adddf3+0x10c> +1004301c: f091 0f00 teq r1, #0 +10043020: bf04 itt eq +10043022: 4601 moveq r1, r0 +10043024: 2000 moveq r0, #0 +10043026: fab1 f381 clz r3, r1 +1004302a: bf08 it eq +1004302c: 3320 addeq r3, #32 +1004302e: f1a3 030b sub.w r3, r3, #11 +10043032: f1b3 0220 subs.w r2, r3, #32 +10043036: da0c bge.n 10043052 <__adddf3+0x16e> +10043038: 320c adds r2, #12 +1004303a: dd08 ble.n 1004304e <__adddf3+0x16a> +1004303c: f102 0c14 add.w ip, r2, #20 +10043040: f1c2 020c rsb r2, r2, #12 +10043044: fa01 f00c lsl.w r0, r1, ip +10043048: fa21 f102 lsr.w r1, r1, r2 +1004304c: e00c b.n 10043068 <__adddf3+0x184> +1004304e: f102 0214 add.w r2, r2, #20 +10043052: bfd8 it le +10043054: f1c2 0c20 rsble ip, r2, #32 +10043058: fa01 f102 lsl.w r1, r1, r2 +1004305c: fa20 fc0c lsr.w ip, r0, ip +10043060: bfdc itt le +10043062: ea41 010c orrle.w r1, r1, ip +10043066: 4090 lslle r0, r2 +10043068: 1ae4 subs r4, r4, r3 +1004306a: bfa2 ittt ge +1004306c: eb01 5104 addge.w r1, r1, r4, lsl #20 +10043070: 4329 orrge r1, r5 +10043072: bd30 popge {r4, r5, pc} +10043074: ea6f 0404 mvn.w r4, r4 +10043078: 3c1f subs r4, #31 +1004307a: da1c bge.n 100430b6 <__adddf3+0x1d2> +1004307c: 340c adds r4, #12 +1004307e: dc0e bgt.n 1004309e <__adddf3+0x1ba> +10043080: f104 0414 add.w r4, r4, #20 +10043084: f1c4 0220 rsb r2, r4, #32 +10043088: fa20 f004 lsr.w r0, r0, r4 +1004308c: fa01 f302 lsl.w r3, r1, r2 +10043090: ea40 0003 orr.w r0, r0, r3 +10043094: fa21 f304 lsr.w r3, r1, r4 +10043098: ea45 0103 orr.w r1, r5, r3 +1004309c: bd30 pop {r4, r5, pc} +1004309e: f1c4 040c rsb r4, r4, #12 +100430a2: f1c4 0220 rsb r2, r4, #32 +100430a6: fa20 f002 lsr.w r0, r0, r2 +100430aa: fa01 f304 lsl.w r3, r1, r4 +100430ae: ea40 0003 orr.w r0, r0, r3 +100430b2: 4629 mov r1, r5 +100430b4: bd30 pop {r4, r5, pc} +100430b6: fa21 f004 lsr.w r0, r1, r4 +100430ba: 4629 mov r1, r5 +100430bc: bd30 pop {r4, r5, pc} +100430be: f094 0f00 teq r4, #0 +100430c2: f483 1380 eor.w r3, r3, #1048576 ; 0x100000 +100430c6: bf06 itte eq +100430c8: f481 1180 eoreq.w r1, r1, #1048576 ; 0x100000 +100430cc: 3401 addeq r4, #1 +100430ce: 3d01 subne r5, #1 +100430d0: e74e b.n 10042f70 <__adddf3+0x8c> +100430d2: ea7f 5c64 mvns.w ip, r4, asr #21 +100430d6: bf18 it ne +100430d8: ea7f 5c65 mvnsne.w ip, r5, asr #21 +100430dc: d029 beq.n 10043132 <__adddf3+0x24e> +100430de: ea94 0f05 teq r4, r5 +100430e2: bf08 it eq +100430e4: ea90 0f02 teqeq r0, r2 +100430e8: d005 beq.n 100430f6 <__adddf3+0x212> +100430ea: ea54 0c00 orrs.w ip, r4, r0 +100430ee: bf04 itt eq +100430f0: 4619 moveq r1, r3 +100430f2: 4610 moveq r0, r2 +100430f4: bd30 pop {r4, r5, pc} +100430f6: ea91 0f03 teq r1, r3 +100430fa: bf1e ittt ne +100430fc: 2100 movne r1, #0 +100430fe: 2000 movne r0, #0 +10043100: bd30 popne {r4, r5, pc} +10043102: ea5f 5c54 movs.w ip, r4, lsr #21 +10043106: d105 bne.n 10043114 <__adddf3+0x230> +10043108: 0040 lsls r0, r0, #1 +1004310a: 4149 adcs r1, r1 +1004310c: bf28 it cs +1004310e: f041 4100 orrcs.w r1, r1, #2147483648 ; 0x80000000 +10043112: bd30 pop {r4, r5, pc} +10043114: f514 0480 adds.w r4, r4, #4194304 ; 0x400000 +10043118: bf3c itt cc +1004311a: f501 1180 addcc.w r1, r1, #1048576 ; 0x100000 +1004311e: bd30 popcc {r4, r5, pc} +10043120: f001 4500 and.w r5, r1, #2147483648 ; 0x80000000 +10043124: f045 41fe orr.w r1, r5, #2130706432 ; 0x7f000000 +10043128: f441 0170 orr.w r1, r1, #15728640 ; 0xf00000 +1004312c: f04f 0000 mov.w r0, #0 +10043130: bd30 pop {r4, r5, pc} +10043132: ea7f 5c64 mvns.w ip, r4, asr #21 +10043136: bf1a itte ne +10043138: 4619 movne r1, r3 +1004313a: 4610 movne r0, r2 +1004313c: ea7f 5c65 mvnseq.w ip, r5, asr #21 +10043140: bf1c itt ne +10043142: 460b movne r3, r1 +10043144: 4602 movne r2, r0 +10043146: ea50 3401 orrs.w r4, r0, r1, lsl #12 +1004314a: bf06 itte eq +1004314c: ea52 3503 orrseq.w r5, r2, r3, lsl #12 +10043150: ea91 0f03 teqeq r1, r3 +10043154: f441 2100 orrne.w r1, r1, #524288 ; 0x80000 +10043158: bd30 pop {r4, r5, pc} +1004315a: bf00 nop + +1004315c <__aeabi_ui2d>: +1004315c: f090 0f00 teq r0, #0 +10043160: bf04 itt eq +10043162: 2100 moveq r1, #0 +10043164: 4770 bxeq lr +10043166: b530 push {r4, r5, lr} +10043168: f44f 6480 mov.w r4, #1024 ; 0x400 +1004316c: f104 0432 add.w r4, r4, #50 ; 0x32 +10043170: f04f 0500 mov.w r5, #0 +10043174: f04f 0100 mov.w r1, #0 +10043178: e750 b.n 1004301c <__adddf3+0x138> +1004317a: bf00 nop + +1004317c <__aeabi_i2d>: +1004317c: f090 0f00 teq r0, #0 +10043180: bf04 itt eq +10043182: 2100 moveq r1, #0 +10043184: 4770 bxeq lr +10043186: b530 push {r4, r5, lr} +10043188: f44f 6480 mov.w r4, #1024 ; 0x400 +1004318c: f104 0432 add.w r4, r4, #50 ; 0x32 +10043190: f010 4500 ands.w r5, r0, #2147483648 ; 0x80000000 +10043194: bf48 it mi +10043196: 4240 negmi r0, r0 +10043198: f04f 0100 mov.w r1, #0 +1004319c: e73e b.n 1004301c <__adddf3+0x138> +1004319e: bf00 nop + +100431a0 <__aeabi_f2d>: +100431a0: 0042 lsls r2, r0, #1 +100431a2: ea4f 01e2 mov.w r1, r2, asr #3 +100431a6: ea4f 0131 mov.w r1, r1, rrx +100431aa: ea4f 7002 mov.w r0, r2, lsl #28 +100431ae: bf1f itttt ne +100431b0: f012 437f andsne.w r3, r2, #4278190080 ; 0xff000000 +100431b4: f093 4f7f teqne r3, #4278190080 ; 0xff000000 +100431b8: f081 5160 eorne.w r1, r1, #939524096 ; 0x38000000 +100431bc: 4770 bxne lr +100431be: f092 0f00 teq r2, #0 +100431c2: bf14 ite ne +100431c4: f093 4f7f teqne r3, #4278190080 ; 0xff000000 +100431c8: 4770 bxeq lr +100431ca: b530 push {r4, r5, lr} +100431cc: f44f 7460 mov.w r4, #896 ; 0x380 +100431d0: f001 4500 and.w r5, r1, #2147483648 ; 0x80000000 +100431d4: f021 4100 bic.w r1, r1, #2147483648 ; 0x80000000 +100431d8: e720 b.n 1004301c <__adddf3+0x138> +100431da: bf00 nop + +100431dc <__aeabi_ul2d>: +100431dc: ea50 0201 orrs.w r2, r0, r1 +100431e0: bf08 it eq +100431e2: 4770 bxeq lr +100431e4: b530 push {r4, r5, lr} +100431e6: f04f 0500 mov.w r5, #0 +100431ea: e00a b.n 10043202 <__aeabi_l2d+0x16> + +100431ec <__aeabi_l2d>: +100431ec: ea50 0201 orrs.w r2, r0, r1 +100431f0: bf08 it eq +100431f2: 4770 bxeq lr +100431f4: b530 push {r4, r5, lr} +100431f6: f011 4500 ands.w r5, r1, #2147483648 ; 0x80000000 +100431fa: d502 bpl.n 10043202 <__aeabi_l2d+0x16> +100431fc: 4240 negs r0, r0 +100431fe: eb61 0141 sbc.w r1, r1, r1, lsl #1 +10043202: f44f 6480 mov.w r4, #1024 ; 0x400 +10043206: f104 0432 add.w r4, r4, #50 ; 0x32 +1004320a: ea5f 5c91 movs.w ip, r1, lsr #22 +1004320e: f43f aedc beq.w 10042fca <__adddf3+0xe6> +10043212: f04f 0203 mov.w r2, #3 +10043216: ea5f 0cdc movs.w ip, ip, lsr #3 +1004321a: bf18 it ne +1004321c: 3203 addne r2, #3 +1004321e: ea5f 0cdc movs.w ip, ip, lsr #3 +10043222: bf18 it ne +10043224: 3203 addne r2, #3 +10043226: eb02 02dc add.w r2, r2, ip, lsr #3 +1004322a: f1c2 0320 rsb r3, r2, #32 +1004322e: fa00 fc03 lsl.w ip, r0, r3 +10043232: fa20 f002 lsr.w r0, r0, r2 +10043236: fa01 fe03 lsl.w lr, r1, r3 +1004323a: ea40 000e orr.w r0, r0, lr +1004323e: fa21 f102 lsr.w r1, r1, r2 +10043242: 4414 add r4, r2 +10043244: e6c1 b.n 10042fca <__adddf3+0xe6> +10043246: bf00 nop + +10043248 <__aeabi_dmul>: +10043248: b570 push {r4, r5, r6, lr} +1004324a: f04f 0cff mov.w ip, #255 ; 0xff +1004324e: f44c 6ce0 orr.w ip, ip, #1792 ; 0x700 +10043252: ea1c 5411 ands.w r4, ip, r1, lsr #20 +10043256: bf1d ittte ne +10043258: ea1c 5513 andsne.w r5, ip, r3, lsr #20 +1004325c: ea94 0f0c teqne r4, ip +10043260: ea95 0f0c teqne r5, ip +10043264: f000 f8de bleq 10043424 <__aeabi_dmul+0x1dc> +10043268: 442c add r4, r5 +1004326a: ea81 0603 eor.w r6, r1, r3 +1004326e: ea21 514c bic.w r1, r1, ip, lsl #21 +10043272: ea23 534c bic.w r3, r3, ip, lsl #21 +10043276: ea50 3501 orrs.w r5, r0, r1, lsl #12 +1004327a: bf18 it ne +1004327c: ea52 3503 orrsne.w r5, r2, r3, lsl #12 +10043280: f441 1180 orr.w r1, r1, #1048576 ; 0x100000 +10043284: f443 1380 orr.w r3, r3, #1048576 ; 0x100000 +10043288: d038 beq.n 100432fc <__aeabi_dmul+0xb4> +1004328a: fba0 ce02 umull ip, lr, r0, r2 +1004328e: f04f 0500 mov.w r5, #0 +10043292: fbe1 e502 umlal lr, r5, r1, r2 +10043296: f006 4200 and.w r2, r6, #2147483648 ; 0x80000000 +1004329a: fbe0 e503 umlal lr, r5, r0, r3 +1004329e: f04f 0600 mov.w r6, #0 +100432a2: fbe1 5603 umlal r5, r6, r1, r3 +100432a6: f09c 0f00 teq ip, #0 +100432aa: bf18 it ne +100432ac: f04e 0e01 orrne.w lr, lr, #1 +100432b0: f1a4 04ff sub.w r4, r4, #255 ; 0xff +100432b4: f5b6 7f00 cmp.w r6, #512 ; 0x200 +100432b8: f564 7440 sbc.w r4, r4, #768 ; 0x300 +100432bc: d204 bcs.n 100432c8 <__aeabi_dmul+0x80> +100432be: ea5f 0e4e movs.w lr, lr, lsl #1 +100432c2: 416d adcs r5, r5 +100432c4: eb46 0606 adc.w r6, r6, r6 +100432c8: ea42 21c6 orr.w r1, r2, r6, lsl #11 +100432cc: ea41 5155 orr.w r1, r1, r5, lsr #21 +100432d0: ea4f 20c5 mov.w r0, r5, lsl #11 +100432d4: ea40 505e orr.w r0, r0, lr, lsr #21 +100432d8: ea4f 2ece mov.w lr, lr, lsl #11 +100432dc: f1b4 0cfd subs.w ip, r4, #253 ; 0xfd +100432e0: bf88 it hi +100432e2: f5bc 6fe0 cmphi.w ip, #1792 ; 0x700 +100432e6: d81e bhi.n 10043326 <__aeabi_dmul+0xde> +100432e8: f1be 4f00 cmp.w lr, #2147483648 ; 0x80000000 +100432ec: bf08 it eq +100432ee: ea5f 0e50 movseq.w lr, r0, lsr #1 +100432f2: f150 0000 adcs.w r0, r0, #0 +100432f6: eb41 5104 adc.w r1, r1, r4, lsl #20 +100432fa: bd70 pop {r4, r5, r6, pc} +100432fc: f006 4600 and.w r6, r6, #2147483648 ; 0x80000000 +10043300: ea46 0101 orr.w r1, r6, r1 +10043304: ea40 0002 orr.w r0, r0, r2 +10043308: ea81 0103 eor.w r1, r1, r3 +1004330c: ebb4 045c subs.w r4, r4, ip, lsr #1 +10043310: bfc2 ittt gt +10043312: ebd4 050c rsbsgt r5, r4, ip +10043316: ea41 5104 orrgt.w r1, r1, r4, lsl #20 +1004331a: bd70 popgt {r4, r5, r6, pc} +1004331c: f441 1180 orr.w r1, r1, #1048576 ; 0x100000 +10043320: f04f 0e00 mov.w lr, #0 +10043324: 3c01 subs r4, #1 +10043326: f300 80ab bgt.w 10043480 <__aeabi_dmul+0x238> +1004332a: f114 0f36 cmn.w r4, #54 ; 0x36 +1004332e: bfde ittt le +10043330: 2000 movle r0, #0 +10043332: f001 4100 andle.w r1, r1, #2147483648 ; 0x80000000 +10043336: bd70 pople {r4, r5, r6, pc} +10043338: f1c4 0400 rsb r4, r4, #0 +1004333c: 3c20 subs r4, #32 +1004333e: da35 bge.n 100433ac <__aeabi_dmul+0x164> +10043340: 340c adds r4, #12 +10043342: dc1b bgt.n 1004337c <__aeabi_dmul+0x134> +10043344: f104 0414 add.w r4, r4, #20 +10043348: f1c4 0520 rsb r5, r4, #32 +1004334c: fa00 f305 lsl.w r3, r0, r5 +10043350: fa20 f004 lsr.w r0, r0, r4 +10043354: fa01 f205 lsl.w r2, r1, r5 +10043358: ea40 0002 orr.w r0, r0, r2 +1004335c: f001 4200 and.w r2, r1, #2147483648 ; 0x80000000 +10043360: f021 4100 bic.w r1, r1, #2147483648 ; 0x80000000 +10043364: eb10 70d3 adds.w r0, r0, r3, lsr #31 +10043368: fa21 f604 lsr.w r6, r1, r4 +1004336c: eb42 0106 adc.w r1, r2, r6 +10043370: ea5e 0e43 orrs.w lr, lr, r3, lsl #1 +10043374: bf08 it eq +10043376: ea20 70d3 biceq.w r0, r0, r3, lsr #31 +1004337a: bd70 pop {r4, r5, r6, pc} +1004337c: f1c4 040c rsb r4, r4, #12 +10043380: f1c4 0520 rsb r5, r4, #32 +10043384: fa00 f304 lsl.w r3, r0, r4 +10043388: fa20 f005 lsr.w r0, r0, r5 +1004338c: fa01 f204 lsl.w r2, r1, r4 +10043390: ea40 0002 orr.w r0, r0, r2 +10043394: f001 4100 and.w r1, r1, #2147483648 ; 0x80000000 +10043398: eb10 70d3 adds.w r0, r0, r3, lsr #31 +1004339c: f141 0100 adc.w r1, r1, #0 +100433a0: ea5e 0e43 orrs.w lr, lr, r3, lsl #1 +100433a4: bf08 it eq +100433a6: ea20 70d3 biceq.w r0, r0, r3, lsr #31 +100433aa: bd70 pop {r4, r5, r6, pc} +100433ac: f1c4 0520 rsb r5, r4, #32 +100433b0: fa00 f205 lsl.w r2, r0, r5 +100433b4: ea4e 0e02 orr.w lr, lr, r2 +100433b8: fa20 f304 lsr.w r3, r0, r4 +100433bc: fa01 f205 lsl.w r2, r1, r5 +100433c0: ea43 0302 orr.w r3, r3, r2 +100433c4: fa21 f004 lsr.w r0, r1, r4 +100433c8: f001 4100 and.w r1, r1, #2147483648 ; 0x80000000 +100433cc: fa21 f204 lsr.w r2, r1, r4 +100433d0: ea20 0002 bic.w r0, r0, r2 +100433d4: eb00 70d3 add.w r0, r0, r3, lsr #31 +100433d8: ea5e 0e43 orrs.w lr, lr, r3, lsl #1 +100433dc: bf08 it eq +100433de: ea20 70d3 biceq.w r0, r0, r3, lsr #31 +100433e2: bd70 pop {r4, r5, r6, pc} +100433e4: f094 0f00 teq r4, #0 +100433e8: d10f bne.n 1004340a <__aeabi_dmul+0x1c2> +100433ea: f001 4600 and.w r6, r1, #2147483648 ; 0x80000000 +100433ee: 0040 lsls r0, r0, #1 +100433f0: eb41 0101 adc.w r1, r1, r1 +100433f4: f411 1f80 tst.w r1, #1048576 ; 0x100000 +100433f8: bf08 it eq +100433fa: 3c01 subeq r4, #1 +100433fc: d0f7 beq.n 100433ee <__aeabi_dmul+0x1a6> +100433fe: ea41 0106 orr.w r1, r1, r6 +10043402: f095 0f00 teq r5, #0 +10043406: bf18 it ne +10043408: 4770 bxne lr +1004340a: f003 4600 and.w r6, r3, #2147483648 ; 0x80000000 +1004340e: 0052 lsls r2, r2, #1 +10043410: eb43 0303 adc.w r3, r3, r3 +10043414: f413 1f80 tst.w r3, #1048576 ; 0x100000 +10043418: bf08 it eq +1004341a: 3d01 subeq r5, #1 +1004341c: d0f7 beq.n 1004340e <__aeabi_dmul+0x1c6> +1004341e: ea43 0306 orr.w r3, r3, r6 +10043422: 4770 bx lr +10043424: ea94 0f0c teq r4, ip +10043428: ea0c 5513 and.w r5, ip, r3, lsr #20 +1004342c: bf18 it ne +1004342e: ea95 0f0c teqne r5, ip +10043432: d00c beq.n 1004344e <__aeabi_dmul+0x206> +10043434: ea50 0641 orrs.w r6, r0, r1, lsl #1 +10043438: bf18 it ne +1004343a: ea52 0643 orrsne.w r6, r2, r3, lsl #1 +1004343e: d1d1 bne.n 100433e4 <__aeabi_dmul+0x19c> +10043440: ea81 0103 eor.w r1, r1, r3 +10043444: f001 4100 and.w r1, r1, #2147483648 ; 0x80000000 +10043448: f04f 0000 mov.w r0, #0 +1004344c: bd70 pop {r4, r5, r6, pc} +1004344e: ea50 0641 orrs.w r6, r0, r1, lsl #1 +10043452: bf06 itte eq +10043454: 4610 moveq r0, r2 +10043456: 4619 moveq r1, r3 +10043458: ea52 0643 orrsne.w r6, r2, r3, lsl #1 +1004345c: d019 beq.n 10043492 <__aeabi_dmul+0x24a> +1004345e: ea94 0f0c teq r4, ip +10043462: d102 bne.n 1004346a <__aeabi_dmul+0x222> +10043464: ea50 3601 orrs.w r6, r0, r1, lsl #12 +10043468: d113 bne.n 10043492 <__aeabi_dmul+0x24a> +1004346a: ea95 0f0c teq r5, ip +1004346e: d105 bne.n 1004347c <__aeabi_dmul+0x234> +10043470: ea52 3603 orrs.w r6, r2, r3, lsl #12 +10043474: bf1c itt ne +10043476: 4610 movne r0, r2 +10043478: 4619 movne r1, r3 +1004347a: d10a bne.n 10043492 <__aeabi_dmul+0x24a> +1004347c: ea81 0103 eor.w r1, r1, r3 +10043480: f001 4100 and.w r1, r1, #2147483648 ; 0x80000000 +10043484: f041 41fe orr.w r1, r1, #2130706432 ; 0x7f000000 +10043488: f441 0170 orr.w r1, r1, #15728640 ; 0xf00000 +1004348c: f04f 0000 mov.w r0, #0 +10043490: bd70 pop {r4, r5, r6, pc} +10043492: f041 41fe orr.w r1, r1, #2130706432 ; 0x7f000000 +10043496: f441 0178 orr.w r1, r1, #16252928 ; 0xf80000 +1004349a: bd70 pop {r4, r5, r6, pc} + +1004349c <__aeabi_ddiv>: +1004349c: b570 push {r4, r5, r6, lr} +1004349e: f04f 0cff mov.w ip, #255 ; 0xff +100434a2: f44c 6ce0 orr.w ip, ip, #1792 ; 0x700 +100434a6: ea1c 5411 ands.w r4, ip, r1, lsr #20 +100434aa: bf1d ittte ne +100434ac: ea1c 5513 andsne.w r5, ip, r3, lsr #20 +100434b0: ea94 0f0c teqne r4, ip +100434b4: ea95 0f0c teqne r5, ip +100434b8: f000 f8a7 bleq 1004360a <__aeabi_ddiv+0x16e> +100434bc: eba4 0405 sub.w r4, r4, r5 +100434c0: ea81 0e03 eor.w lr, r1, r3 +100434c4: ea52 3503 orrs.w r5, r2, r3, lsl #12 +100434c8: ea4f 3101 mov.w r1, r1, lsl #12 +100434cc: f000 8088 beq.w 100435e0 <__aeabi_ddiv+0x144> +100434d0: ea4f 3303 mov.w r3, r3, lsl #12 +100434d4: f04f 5580 mov.w r5, #268435456 ; 0x10000000 +100434d8: ea45 1313 orr.w r3, r5, r3, lsr #4 +100434dc: ea43 6312 orr.w r3, r3, r2, lsr #24 +100434e0: ea4f 2202 mov.w r2, r2, lsl #8 +100434e4: ea45 1511 orr.w r5, r5, r1, lsr #4 +100434e8: ea45 6510 orr.w r5, r5, r0, lsr #24 +100434ec: ea4f 2600 mov.w r6, r0, lsl #8 +100434f0: f00e 4100 and.w r1, lr, #2147483648 ; 0x80000000 +100434f4: 429d cmp r5, r3 +100434f6: bf08 it eq +100434f8: 4296 cmpeq r6, r2 +100434fa: f144 04fd adc.w r4, r4, #253 ; 0xfd +100434fe: f504 7440 add.w r4, r4, #768 ; 0x300 +10043502: d202 bcs.n 1004350a <__aeabi_ddiv+0x6e> +10043504: 085b lsrs r3, r3, #1 +10043506: ea4f 0232 mov.w r2, r2, rrx +1004350a: 1ab6 subs r6, r6, r2 +1004350c: eb65 0503 sbc.w r5, r5, r3 +10043510: 085b lsrs r3, r3, #1 +10043512: ea4f 0232 mov.w r2, r2, rrx +10043516: f44f 1080 mov.w r0, #1048576 ; 0x100000 +1004351a: f44f 2c00 mov.w ip, #524288 ; 0x80000 +1004351e: ebb6 0e02 subs.w lr, r6, r2 +10043522: eb75 0e03 sbcs.w lr, r5, r3 +10043526: bf22 ittt cs +10043528: 1ab6 subcs r6, r6, r2 +1004352a: 4675 movcs r5, lr +1004352c: ea40 000c orrcs.w r0, r0, ip +10043530: 085b lsrs r3, r3, #1 +10043532: ea4f 0232 mov.w r2, r2, rrx +10043536: ebb6 0e02 subs.w lr, r6, r2 +1004353a: eb75 0e03 sbcs.w lr, r5, r3 +1004353e: bf22 ittt cs +10043540: 1ab6 subcs r6, r6, r2 +10043542: 4675 movcs r5, lr +10043544: ea40 005c orrcs.w r0, r0, ip, lsr #1 +10043548: 085b lsrs r3, r3, #1 +1004354a: ea4f 0232 mov.w r2, r2, rrx +1004354e: ebb6 0e02 subs.w lr, r6, r2 +10043552: eb75 0e03 sbcs.w lr, r5, r3 +10043556: bf22 ittt cs +10043558: 1ab6 subcs r6, r6, r2 +1004355a: 4675 movcs r5, lr +1004355c: ea40 009c orrcs.w r0, r0, ip, lsr #2 +10043560: 085b lsrs r3, r3, #1 +10043562: ea4f 0232 mov.w r2, r2, rrx +10043566: ebb6 0e02 subs.w lr, r6, r2 +1004356a: eb75 0e03 sbcs.w lr, r5, r3 +1004356e: bf22 ittt cs +10043570: 1ab6 subcs r6, r6, r2 +10043572: 4675 movcs r5, lr +10043574: ea40 00dc orrcs.w r0, r0, ip, lsr #3 +10043578: ea55 0e06 orrs.w lr, r5, r6 +1004357c: d018 beq.n 100435b0 <__aeabi_ddiv+0x114> +1004357e: ea4f 1505 mov.w r5, r5, lsl #4 +10043582: ea45 7516 orr.w r5, r5, r6, lsr #28 +10043586: ea4f 1606 mov.w r6, r6, lsl #4 +1004358a: ea4f 03c3 mov.w r3, r3, lsl #3 +1004358e: ea43 7352 orr.w r3, r3, r2, lsr #29 +10043592: ea4f 02c2 mov.w r2, r2, lsl #3 +10043596: ea5f 1c1c movs.w ip, ip, lsr #4 +1004359a: d1c0 bne.n 1004351e <__aeabi_ddiv+0x82> +1004359c: f411 1f80 tst.w r1, #1048576 ; 0x100000 +100435a0: d10b bne.n 100435ba <__aeabi_ddiv+0x11e> +100435a2: ea41 0100 orr.w r1, r1, r0 +100435a6: f04f 0000 mov.w r0, #0 +100435aa: f04f 4c00 mov.w ip, #2147483648 ; 0x80000000 +100435ae: e7b6 b.n 1004351e <__aeabi_ddiv+0x82> +100435b0: f411 1f80 tst.w r1, #1048576 ; 0x100000 +100435b4: bf04 itt eq +100435b6: 4301 orreq r1, r0 +100435b8: 2000 moveq r0, #0 +100435ba: f1b4 0cfd subs.w ip, r4, #253 ; 0xfd +100435be: bf88 it hi +100435c0: f5bc 6fe0 cmphi.w ip, #1792 ; 0x700 +100435c4: f63f aeaf bhi.w 10043326 <__aeabi_dmul+0xde> +100435c8: ebb5 0c03 subs.w ip, r5, r3 +100435cc: bf04 itt eq +100435ce: ebb6 0c02 subseq.w ip, r6, r2 +100435d2: ea5f 0c50 movseq.w ip, r0, lsr #1 +100435d6: f150 0000 adcs.w r0, r0, #0 +100435da: eb41 5104 adc.w r1, r1, r4, lsl #20 +100435de: bd70 pop {r4, r5, r6, pc} +100435e0: f00e 4e00 and.w lr, lr, #2147483648 ; 0x80000000 +100435e4: ea4e 3111 orr.w r1, lr, r1, lsr #12 +100435e8: eb14 045c adds.w r4, r4, ip, lsr #1 +100435ec: bfc2 ittt gt +100435ee: ebd4 050c rsbsgt r5, r4, ip +100435f2: ea41 5104 orrgt.w r1, r1, r4, lsl #20 +100435f6: bd70 popgt {r4, r5, r6, pc} +100435f8: f441 1180 orr.w r1, r1, #1048576 ; 0x100000 +100435fc: f04f 0e00 mov.w lr, #0 +10043600: 3c01 subs r4, #1 +10043602: e690 b.n 10043326 <__aeabi_dmul+0xde> +10043604: ea45 0e06 orr.w lr, r5, r6 +10043608: e68d b.n 10043326 <__aeabi_dmul+0xde> +1004360a: ea0c 5513 and.w r5, ip, r3, lsr #20 +1004360e: ea94 0f0c teq r4, ip +10043612: bf08 it eq +10043614: ea95 0f0c teqeq r5, ip +10043618: f43f af3b beq.w 10043492 <__aeabi_dmul+0x24a> +1004361c: ea94 0f0c teq r4, ip +10043620: d10a bne.n 10043638 <__aeabi_ddiv+0x19c> +10043622: ea50 3401 orrs.w r4, r0, r1, lsl #12 +10043626: f47f af34 bne.w 10043492 <__aeabi_dmul+0x24a> +1004362a: ea95 0f0c teq r5, ip +1004362e: f47f af25 bne.w 1004347c <__aeabi_dmul+0x234> +10043632: 4610 mov r0, r2 +10043634: 4619 mov r1, r3 +10043636: e72c b.n 10043492 <__aeabi_dmul+0x24a> +10043638: ea95 0f0c teq r5, ip +1004363c: d106 bne.n 1004364c <__aeabi_ddiv+0x1b0> +1004363e: ea52 3503 orrs.w r5, r2, r3, lsl #12 +10043642: f43f aefd beq.w 10043440 <__aeabi_dmul+0x1f8> +10043646: 4610 mov r0, r2 +10043648: 4619 mov r1, r3 +1004364a: e722 b.n 10043492 <__aeabi_dmul+0x24a> +1004364c: ea50 0641 orrs.w r6, r0, r1, lsl #1 +10043650: bf18 it ne +10043652: ea52 0643 orrsne.w r6, r2, r3, lsl #1 +10043656: f47f aec5 bne.w 100433e4 <__aeabi_dmul+0x19c> +1004365a: ea50 0441 orrs.w r4, r0, r1, lsl #1 +1004365e: f47f af0d bne.w 1004347c <__aeabi_dmul+0x234> +10043662: ea52 0543 orrs.w r5, r2, r3, lsl #1 +10043666: f47f aeeb bne.w 10043440 <__aeabi_dmul+0x1f8> +1004366a: e712 b.n 10043492 <__aeabi_dmul+0x24a> + +1004366c <__aeabi_d2uiz>: +1004366c: 004a lsls r2, r1, #1 +1004366e: d211 bcs.n 10043694 <__aeabi_d2uiz+0x28> +10043670: f512 1200 adds.w r2, r2, #2097152 ; 0x200000 +10043674: d211 bcs.n 1004369a <__aeabi_d2uiz+0x2e> +10043676: d50d bpl.n 10043694 <__aeabi_d2uiz+0x28> +10043678: f46f 7378 mvn.w r3, #992 ; 0x3e0 +1004367c: ebb3 5262 subs.w r2, r3, r2, asr #21 +10043680: d40e bmi.n 100436a0 <__aeabi_d2uiz+0x34> +10043682: ea4f 23c1 mov.w r3, r1, lsl #11 +10043686: f043 4300 orr.w r3, r3, #2147483648 ; 0x80000000 +1004368a: ea43 5350 orr.w r3, r3, r0, lsr #21 +1004368e: fa23 f002 lsr.w r0, r3, r2 +10043692: 4770 bx lr +10043694: f04f 0000 mov.w r0, #0 +10043698: 4770 bx lr +1004369a: ea50 3001 orrs.w r0, r0, r1, lsl #12 +1004369e: d102 bne.n 100436a6 <__aeabi_d2uiz+0x3a> +100436a0: f04f 30ff mov.w r0, #4294967295 +100436a4: 4770 bx lr +100436a6: f04f 0000 mov.w r0, #0 +100436aa: 4770 bx lr +100436ac: 0000 movs r0, r0 + ... + +100436b0 <__rtw_parse_wpa2_ie_veneer>: +100436b0: b401 push {r0} +100436b2: 4802 ldr r0, [pc, #8] ; (100436bc <__rtw_parse_wpa2_ie_veneer+0xc>) +100436b4: 4684 mov ip, r0 +100436b6: bc01 pop {r0} +100436b8: 4760 bx ip +100436ba: bf00 nop +100436bc: 000138ad .word 0x000138ad + +100436c0 <__rt_md5_hmac_veneer>: +100436c0: b401 push {r0} +100436c2: 4802 ldr r0, [pc, #8] ; (100436cc <__rt_md5_hmac_veneer+0xc>) +100436c4: 4684 mov ip, r0 +100436c6: bc01 pop {r0} +100436c8: 4760 bx ip +100436ca: bf00 nop +100436cc: 000132d5 .word 0x000132d5 + +100436d0 <__aes_80211_decrypt_veneer>: +100436d0: b401 push {r0} +100436d2: 4802 ldr r0, [pc, #8] ; (100436dc <__aes_80211_decrypt_veneer+0xc>) +100436d4: 4684 mov ip, r0 +100436d6: bc01 pop {r0} +100436d8: 4760 bx ip +100436da: bf00 nop +100436dc: 000151ad .word 0x000151ad + +100436e0 <__rt_md5_final_veneer>: +100436e0: b401 push {r0} +100436e2: 4802 ldr r0, [pc, #8] ; (100436ec <__rt_md5_final_veneer+0xc>) +100436e4: 4684 mov ip, r0 +100436e6: bc01 pop {r0} +100436e8: 4760 bx ip +100436ea: bf00 nop +100436ec: 0001327d .word 0x0001327d + +100436f0 <__AES_UnWRAP_veneer>: +100436f0: b401 push {r0} +100436f2: 4802 ldr r0, [pc, #8] ; (100436fc <__AES_UnWRAP_veneer+0xc>) +100436f4: 4684 mov ip, r0 +100436f6: bc01 pop {r0} +100436f8: 4760 bx ip +100436fa: bf00 nop +100436fc: 00012701 .word 0x00012701 + +10043700 <__tkip_80211_decrypt_veneer>: +10043700: b401 push {r0} +10043702: 4802 ldr r0, [pc, #8] ; (1004370c <__tkip_80211_decrypt_veneer+0xc>) +10043704: 4684 mov ip, r0 +10043706: bc01 pop {r0} +10043708: 4760 bx ip +1004370a: bf00 nop +1004370c: 000149d5 .word 0x000149d5 + +10043710 <__ROM_odm_FalseAlarmCounterStatistics_veneer>: +10043710: b401 push {r0} +10043712: 4802 ldr r0, [pc, #8] ; (1004371c <__ROM_odm_FalseAlarmCounterStatistics_veneer+0xc>) +10043714: 4684 mov ip, r0 +10043716: bc01 pop {r0} +10043718: 4760 bx ip +1004371a: bf00 nop +1004371c: 000183cd .word 0x000183cd + +10043720 <__rtw_get_wps_ie_veneer>: +10043720: b401 push {r0} +10043722: 4802 ldr r0, [pc, #8] ; (1004372c <__rtw_get_wps_ie_veneer+0xc>) +10043724: 4684 mov ip, r0 +10043726: bc01 pop {r0} +10043728: 4760 bx ip +1004372a: bf00 nop +1004372c: 00013a15 .word 0x00013a15 + +10043730 <__rtw_get_rateset_len_veneer>: +10043730: b401 push {r0} +10043732: 4802 ldr r0, [pc, #8] ; (1004373c <__rtw_get_rateset_len_veneer+0xc>) +10043734: 4684 mov ip, r0 +10043736: bc01 pop {r0} +10043738: 4760 bx ip +1004373a: bf00 nop +1004373c: 00013611 .word 0x00013611 + +10043740 <__rom_psk_PasswordHash_veneer>: +10043740: b401 push {r0} +10043742: 4802 ldr r0, [pc, #8] ; (1004374c <__rom_psk_PasswordHash_veneer+0xc>) +10043744: 4684 mov ip, r0 +10043746: bc01 pop {r0} +10043748: 4760 bx ip +1004374a: bf00 nop +1004374c: 00013e9d .word 0x00013e9d + +10043750 <__rtw_set_ie_veneer>: +10043750: b401 push {r0} +10043752: 4802 ldr r0, [pc, #8] ; (1004375c <__rtw_set_ie_veneer+0xc>) +10043754: 4684 mov ip, r0 +10043756: bc01 pop {r0} +10043758: 4760 bx ip +1004375a: bf00 nop +1004375c: 0001352d .word 0x0001352d + +10043760 <__rtw_get_wps_attr_content_veneer>: +10043760: b401 push {r0} +10043762: 4802 ldr r0, [pc, #8] ; (1004376c <__rtw_get_wps_attr_content_veneer+0xc>) +10043764: 4684 mov ip, r0 +10043766: bc01 pop {r0} +10043768: 4760 bx ip +1004376a: bf00 nop +1004376c: 00013b49 .word 0x00013b49 + +10043770 <__rt_arc4_crypt_veneer>: +10043770: b401 push {r0} +10043772: 4802 ldr r0, [pc, #8] ; (1004377c <__rt_arc4_crypt_veneer+0xc>) +10043774: 4684 mov ip, r0 +10043776: bc01 pop {r0} +10043778: 4760 bx ip +1004377a: bf00 nop +1004377c: 00012901 .word 0x00012901 + +10043780 <__rtw_parse_wpa_ie_veneer>: +10043780: b401 push {r0} +10043782: 4802 ldr r0, [pc, #8] ; (1004378c <__rtw_parse_wpa_ie_veneer+0xc>) +10043784: 4684 mov ip, r0 +10043786: bc01 pop {r0} +10043788: 4760 bx ip +1004378a: bf00 nop +1004378c: 000137d1 .word 0x000137d1 + +10043790 <__GetArgc_veneer>: +10043790: b401 push {r0} +10043792: 4802 ldr r0, [pc, #8] ; (1004379c <__GetArgc_veneer+0xc>) +10043794: 4684 mov ip, r0 +10043796: bc01 pop {r0} +10043798: 4760 bx ip +1004379a: bf00 nop +1004379c: 0000e8c9 .word 0x0000e8c9 + +100437a0 <__rt_hmac_sha1_veneer>: +100437a0: b401 push {r0} +100437a2: 4802 ldr r0, [pc, #8] ; (100437ac <__rt_hmac_sha1_veneer+0xc>) +100437a4: 4684 mov ip, r0 +100437a6: bc01 pop {r0} +100437a8: 4760 bx ip +100437aa: bf00 nop +100437ac: 00015909 .word 0x00015909 + +100437b0 <__rt_md5_append_veneer>: +100437b0: b401 push {r0} +100437b2: 4802 ldr r0, [pc, #8] ; (100437bc <__rt_md5_append_veneer+0xc>) +100437b4: 4684 mov ip, r0 +100437b6: bc01 pop {r0} +100437b8: 4760 bx ip +100437ba: bf00 nop +100437bc: 000131f5 .word 0x000131f5 + +100437c0 <__rtw_get_bit_value_from_ieee_value_veneer>: +100437c0: b401 push {r0} +100437c2: 4802 ldr r0, [pc, #8] ; (100437cc <__rtw_get_bit_value_from_ieee_value_veneer+0xc>) +100437c4: 4684 mov ip, r0 +100437c6: bc01 pop {r0} +100437c8: 4760 bx ip +100437ca: bf00 nop +100437cc: 00013449 .word 0x00013449 + +100437d0 <__rtw_get_wpa2_ie_veneer>: +100437d0: b401 push {r0} +100437d2: 4802 ldr r0, [pc, #8] ; (100437dc <__rtw_get_wpa2_ie_veneer+0xc>) +100437d4: 4684 mov ip, r0 +100437d6: bc01 pop {r0} +100437d8: 4760 bx ip +100437da: bf00 nop +100437dc: 000136c9 .word 0x000136c9 + +100437e0 <__rt_md5_init_veneer>: +100437e0: b401 push {r0} +100437e2: 4802 ldr r0, [pc, #8] ; (100437ec <__rt_md5_init_veneer+0xc>) +100437e4: 4684 mov ip, r0 +100437e6: bc01 pop {r0} +100437e8: 4760 bx ip +100437ea: bf00 nop +100437ec: 000131c1 .word 0x000131c1 + +100437f0 <__HalRuartRTSCtrlRtl8195a_veneer>: +100437f0: b401 push {r0} +100437f2: 4802 ldr r0, [pc, #8] ; (100437fc <__HalRuartRTSCtrlRtl8195a_veneer+0xc>) +100437f4: 4684 mov ip, r0 +100437f6: bc01 pop {r0} +100437f8: 4760 bx ip +100437fa: bf00 nop +100437fc: 000042bd .word 0x000042bd + +10043800 <__rtw_seccalctkipmic_veneer>: +10043800: b401 push {r0} +10043802: 4802 ldr r0, [pc, #8] ; (1004380c <__rtw_seccalctkipmic_veneer+0xc>) +10043804: 4684 mov ip, r0 +10043806: bc01 pop {r0} +10043808: 4760 bx ip +1004380a: bf00 nop +1004380c: 0001449d .word 0x0001449d + +10043810 <__ROM_ODM_CfoTrackingReset_veneer>: +10043810: b401 push {r0} +10043812: 4802 ldr r0, [pc, #8] ; (1004381c <__ROM_ODM_CfoTrackingReset_veneer+0xc>) +10043814: 4684 mov ip, r0 +10043816: bc01 pop {r0} +10043818: 4760 bx ip +1004381a: bf00 nop +1004381c: 000187e9 .word 0x000187e9 + +10043820 <__rtw_ieee802_11_parse_elems_veneer>: +10043820: b401 push {r0} +10043822: 4802 ldr r0, [pc, #8] ; (1004382c <__rtw_ieee802_11_parse_elems_veneer+0xc>) +10043824: 4684 mov ip, r0 +10043826: bc01 pop {r0} +10043828: 4760 bx ip +1004382a: bf00 nop +1004382c: 00013b91 .word 0x00013b91 + +10043830 <__rtw_set_fixed_ie_veneer>: +10043830: b401 push {r0} +10043832: 4802 ldr r0, [pc, #8] ; (1004383c <__rtw_set_fixed_ie_veneer+0xc>) +10043834: 4684 mov ip, r0 +10043836: bc01 pop {r0} +10043838: 4760 bx ip +1004383a: bf00 nop +1004383c: 0001350d .word 0x0001350d + +10043840 <__rt_arc4_init_veneer>: +10043840: b401 push {r0} +10043842: 4802 ldr r0, [pc, #8] ; (1004384c <__rt_arc4_init_veneer+0xc>) +10043844: 4684 mov ip, r0 +10043846: bc01 pop {r0} +10043848: 4760 bx ip +1004384a: bf00 nop +1004384c: 000128bd .word 0x000128bd + +10043850 <__rtw_check_network_type_veneer>: +10043850: b401 push {r0} +10043852: 4802 ldr r0, [pc, #8] ; (1004385c <__rtw_check_network_type_veneer+0xc>) +10043854: 4684 mov ip, r0 +10043856: bc01 pop {r0} +10043858: 4760 bx ip +1004385a: bf00 nop +1004385c: 000134dd .word 0x000134dd + +10043860 <__key_2char2num_veneer>: +10043860: b401 push {r0} +10043862: 4802 ldr r0, [pc, #8] ; (1004386c <__key_2char2num_veneer+0xc>) +10043864: 4684 mov ip, r0 +10043866: bc01 pop {r0} +10043868: 4760 bx ip +1004386a: bf00 nop +1004386c: 00013db9 .word 0x00013db9 + +10043870 <__ROM_odm_SetCrystalCap_veneer>: +10043870: b401 push {r0} +10043872: 4802 ldr r0, [pc, #8] ; (1004387c <__ROM_odm_SetCrystalCap_veneer+0xc>) +10043874: 4684 mov ip, r0 +10043876: bc01 pop {r0} +10043878: 4760 bx ip +1004387a: bf00 nop +1004387c: 00018771 .word 0x00018771 + +10043880 <__AES_WRAP_veneer>: +10043880: b401 push {r0} +10043882: 4802 ldr r0, [pc, #8] ; (1004388c <__AES_WRAP_veneer+0xc>) +10043884: 4684 mov ip, r0 +10043886: bc01 pop {r0} +10043888: 4760 bx ip +1004388a: bf00 nop +1004388c: 000125c9 .word 0x000125c9 + +10043890 <__HalDelayUs_veneer>: +10043890: b401 push {r0} +10043892: 4802 ldr r0, [pc, #8] ; (1004389c <__HalDelayUs_veneer+0xc>) +10043894: 4684 mov ip, r0 +10043896: bc01 pop {r0} +10043898: 4760 bx ip +1004389a: bf00 nop +1004389c: 00000899 .word 0x00000899 + +100438a0 <__rtw_secmicsetkey_veneer>: +100438a0: b401 push {r0} +100438a2: 4802 ldr r0, [pc, #8] ; (100438ac <__rtw_secmicsetkey_veneer+0xc>) +100438a4: 4684 mov ip, r0 +100438a6: bc01 pop {r0} +100438a8: 4760 bx ip +100438aa: bf00 nop +100438ac: 000143d9 .word 0x000143d9 + +100438b0 <__ROM_odm_QueryRxPwrPercentage_veneer>: +100438b0: b401 push {r0} +100438b2: 4802 ldr r0, [pc, #8] ; (100438bc <__ROM_odm_QueryRxPwrPercentage_veneer+0xc>) +100438b4: 4684 mov ip, r0 +100438b6: bc01 pop {r0} +100438b8: 4760 bx ip +100438ba: bf00 nop +100438bc: 0001829d .word 0x0001829d + +100438c0 <__rom_psk_CalcGTK_veneer>: +100438c0: b401 push {r0} +100438c2: 4802 ldr r0, [pc, #8] ; (100438cc <__rom_psk_CalcGTK_veneer+0xc>) +100438c4: 4684 mov ip, r0 +100438c6: bc01 pop {r0} +100438c8: 4760 bx ip +100438ca: bf00 nop +100438cc: 00013ed5 .word 0x00013ed5 + +100438d0 <__rtw_set_supported_rate_veneer>: +100438d0: b401 push {r0} +100438d2: 4802 ldr r0, [pc, #8] ; (100438dc <__rtw_set_supported_rate_veneer+0xc>) +100438d4: 4684 mov ip, r0 +100438d6: bc01 pop {r0} +100438d8: 4760 bx ip +100438da: bf00 nop +100438dc: 00013591 .word 0x00013591 + +100438e0 <__aes_80211_encrypt_veneer>: +100438e0: b401 push {r0} +100438e2: 4802 ldr r0, [pc, #8] ; (100438ec <__aes_80211_encrypt_veneer+0xc>) +100438e4: 4684 mov ip, r0 +100438e6: bc01 pop {r0} +100438e8: 4760 bx ip +100438ea: bf00 nop +100438ec: 00014e29 .word 0x00014e29 + +100438f0 <__rtw_get_ie_veneer>: +100438f0: b401 push {r0} +100438f2: 4802 ldr r0, [pc, #8] ; (100438fc <__rtw_get_ie_veneer+0xc>) +100438f4: 4684 mov ip, r0 +100438f6: bc01 pop {r0} +100438f8: 4760 bx ip +100438fa: bf00 nop +100438fc: 0001355d .word 0x0001355d + +10043900 <__ROM_odm_CfoTrackingFlow_veneer>: +10043900: b401 push {r0} +10043902: 4802 ldr r0, [pc, #8] ; (1004390c <__ROM_odm_CfoTrackingFlow_veneer+0xc>) +10043904: 4684 mov ip, r0 +10043906: bc01 pop {r0} +10043908: 4760 bx ip +1004390a: bf00 nop +1004390c: 00018811 .word 0x00018811 + +10043910 <__rtw_secgetmic_veneer>: +10043910: b401 push {r0} +10043912: 4802 ldr r0, [pc, #8] ; (1004391c <__rtw_secgetmic_veneer+0xc>) +10043914: 4684 mov ip, r0 +10043916: bc01 pop {r0} +10043918: 4760 bx ip +1004391a: bf00 nop +1004391c: 00014435 .word 0x00014435 + +10043920 <__PHY_SetBBReg_8195A_veneer>: +10043920: b401 push {r0} +10043922: 4802 ldr r0, [pc, #8] ; (1004392c <__PHY_SetBBReg_8195A_veneer+0xc>) +10043924: 4684 mov ip, r0 +10043926: bc01 pop {r0} +10043928: 4760 bx ip +1004392a: bf00 nop +1004392c: 00018239 .word 0x00018239 + +10043930 <__ROM_odm_EVMdbToPercentage_veneer>: +10043930: b401 push {r0} +10043932: 4802 ldr r0, [pc, #8] ; (1004393c <__ROM_odm_EVMdbToPercentage_veneer+0xc>) +10043934: 4684 mov ip, r0 +10043936: bc01 pop {r0} +10043938: 4760 bx ip +1004393a: bf00 nop +1004393c: 000182bd .word 0x000182bd + +10043940 <__rtw_get_wpa_ie_veneer>: +10043940: b401 push {r0} +10043942: 4802 ldr r0, [pc, #8] ; (1004394c <__rtw_get_wpa_ie_veneer+0xc>) +10043944: 4684 mov ip, r0 +10043946: bc01 pop {r0} +10043948: 4760 bx ip +1004394a: bf00 nop +1004394c: 0001362d .word 0x0001362d + +10043950 <__HalRuartGetCRtl8195a_veneer>: +10043950: b401 push {r0} +10043952: 4802 ldr r0, [pc, #8] ; (1004395c <__HalRuartGetCRtl8195a_veneer+0xc>) +10043954: 4684 mov ip, r0 +10043956: bc01 pop {r0} +10043958: 4760 bx ip +1004395a: bf00 nop +1004395c: 0000429d .word 0x0000429d + +10043960 <__HalRuartResetRxFifoRtl8195a_veneer>: +10043960: b401 push {r0} +10043962: 4802 ldr r0, [pc, #8] ; (1004396c <__HalRuartResetRxFifoRtl8195a_veneer+0xc>) +10043964: 4684 mov ip, r0 +10043966: bc01 pop {r0} +10043968: 4760 bx ip +1004396a: bf00 nop +1004396c: 00005775 .word 0x00005775 + +10043970 <__rtw_secmicappend_veneer>: +10043970: b401 push {r0} +10043972: 4802 ldr r0, [pc, #8] ; (1004397c <__rtw_secmicappend_veneer+0xc>) +10043974: 4684 mov ip, r0 +10043976: bc01 pop {r0} +10043978: 4760 bx ip +1004397a: bf00 nop +1004397c: 00014419 .word 0x00014419 + +10043980 <__wep_80211_encrypt_veneer>: +10043980: b401 push {r0} +10043982: 4802 ldr r0, [pc, #8] ; (1004398c <__wep_80211_encrypt_veneer+0xc>) +10043984: 4684 mov ip, r0 +10043986: bc01 pop {r0} +10043988: 4760 bx ip +1004398a: bf00 nop +1004398c: 00014295 .word 0x00014295 + +10043990 <__wep_80211_decrypt_veneer>: +10043990: b401 push {r0} +10043992: 4802 ldr r0, [pc, #8] ; (1004399c <__wep_80211_decrypt_veneer+0xc>) +10043994: 4684 mov ip, r0 +10043996: bc01 pop {r0} +10043998: 4760 bx ip +1004399a: bf00 nop +1004399c: 000142f5 .word 0x000142f5 + +100439a0 <__rtw_get_sec_ie_veneer>: +100439a0: b401 push {r0} +100439a2: 4802 ldr r0, [pc, #8] ; (100439ac <__rtw_get_sec_ie_veneer+0xc>) +100439a4: 4684 mov ip, r0 +100439a6: bc01 pop {r0} +100439a8: 4760 bx ip +100439aa: bf00 nop +100439ac: 00013965 .word 0x00013965 + +100439b0 <__tkip_80211_encrypt_veneer>: +100439b0: b401 push {r0} +100439b2: 4802 ldr r0, [pc, #8] ; (100439bc <__tkip_80211_encrypt_veneer+0xc>) +100439b4: 4684 mov ip, r0 +100439b6: bc01 pop {r0} +100439b8: 4760 bx ip +100439ba: bf00 nop +100439bc: 00014941 .word 0x00014941 + +100439c0 <__rom_psk_CalcPTK_veneer>: +100439c0: b401 push {r0} +100439c2: 4802 ldr r0, [pc, #8] ; (100439cc <__rom_psk_CalcPTK_veneer+0xc>) +100439c4: 4684 mov ip, r0 +100439c6: bc01 pop {r0} +100439c8: 4760 bx ip +100439ca: bf00 nop +100439cc: 00013f69 .word 0x00013f69 + +100439d0 <__ROM_odm_GetDefaultCrytaltalCap_veneer>: +100439d0: b401 push {r0} +100439d2: 4802 ldr r0, [pc, #8] ; (100439dc <__ROM_odm_GetDefaultCrytaltalCap_veneer+0xc>) +100439d4: 4684 mov ip, r0 +100439d6: bc01 pop {r0} +100439d8: 4760 bx ip +100439da: bf00 nop +100439dc: 000187d5 .word 0x000187d5 + +100439e0 <__HalGdmaChDisRtl8195a_veneer>: +100439e0: b401 push {r0} +100439e2: 4802 ldr r0, [pc, #8] ; (100439ec <__HalGdmaChDisRtl8195a_veneer+0xc>) +100439e4: 4684 mov ip, r0 +100439e6: bc01 pop {r0} +100439e8: 4760 bx ip +100439ea: bf00 nop +100439ec: 00005e6d .word 0x00005e6d + +100439f0 <__phy_CalculateBitShift_veneer>: +100439f0: b401 push {r0} +100439f2: 4802 ldr r0, [pc, #8] ; (100439fc <__phy_CalculateBitShift_veneer+0xc>) +100439f4: 4684 mov ip, r0 +100439f6: bc01 pop {r0} +100439f8: 4760 bx ip +100439fa: bf00 nop +100439fc: 00018221 .word 0x00018221 + +10043a00 <__RuartLock_veneer>: +10043a00: b401 push {r0} +10043a02: 4802 ldr r0, [pc, #8] ; (10043a0c <__RuartLock_veneer+0xc>) +10043a04: 4684 mov ip, r0 +10043a06: bc01 pop {r0} +10043a08: 4760 bx ip +10043a0a: bf00 nop +10043a0c: 00004cc9 .word 0x00004cc9 + +10043a10 <__PHY_QueryBBReg_8195A_veneer>: +10043a10: b401 push {r0} +10043a12: 4802 ldr r0, [pc, #8] ; (10043a1c <__PHY_QueryBBReg_8195A_veneer+0xc>) +10043a14: 4684 mov ip, r0 +10043a16: bc01 pop {r0} +10043a18: 4760 bx ip +10043a1a: bf00 nop +10043a1c: 00018279 .word 0x00018279 + +10043a20 <__RuartUnLock_veneer>: +10043a20: b401 push {r0} +10043a22: 4802 ldr r0, [pc, #8] ; (10043a2c <__RuartUnLock_veneer+0xc>) +10043a24: 4684 mov ip, r0 +10043a26: bc01 pop {r0} +10043a28: 4760 bx ip +10043a2a: bf00 nop +10043a2c: 00004ced .word 0x00004ced + +10043a30 <__GetArgv_veneer>: +10043a30: b401 push {r0} +10043a32: 4802 ldr r0, [pc, #8] ; (10043a3c <__GetArgv_veneer+0xc>) +10043a34: 4684 mov ip, r0 +10043a36: bc01 pop {r0} +10043a38: 4760 bx ip +10043a3a: bf00 nop +10043a3c: 0000e8f9 .word 0x0000e8f9 diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.axf b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.axf new file mode 100644 index 0000000..71a160e Binary files /dev/null and b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.axf differ diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.map b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.map new file mode 100644 index 0000000..a088218 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.map @@ -0,0 +1,27526 @@ +Archive member included because of file (symbol) + +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o (gBoot_Gpio_Adapter) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) (HalCommonInit) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_tls.o (rtl_cryptoEngine_init) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + application/Debug/obj/efuse_api.o (ReadEfuseContant1) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o (HalLogUartSetBaudRate) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + application/Debug/obj/sys_api.o (HalJtagPinOff) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) (InitSoCPM) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) (SpicReadIDRtl8195A) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) (ShowRamBuildInfo) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/cloud_link.o (gn_connect) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/wifi_simple_config.o (rtk_restart_simple_config) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + application/Debug/obj/wifi_conf.o (set_hidden_ssid) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) (rtw_clearstakey_cmd) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) (rtw_free_mlme_priv_ie_data) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) (rtw_is_channel_set_contains_channel) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + application/Debug/obj/wifi_promisc.o (_promisc_deinit) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) (init_wpa_sta_info) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) (rtw_ps_processor) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) (rtw_free_recvframe) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) (rtw_wep_encrypt) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) (rtw_alloc_stainfo) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) (networktype_to_raid_ex) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) (_rtw_init_sta_xmit_priv) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) (rtl8195a_recv_tasklet) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) (rtl8195a_dequeue_xmitbuf) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) (rtl8195a_update_txdesc) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) (PHY_SetBBReg_8195A_Safe) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) (TDMAChangeStateTask) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) (PHY_RF6052SetBandwidth8195A) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) (rtl8195a_query_rx_desc_status) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) (hal_com_get_channel_plan) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) (PHY_InitTxPowerByRate) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) (rtw_hal_init) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) (rtw_os_indicate_connect) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) (indicate_wx_custom_event) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) (rtw_os_recv_resource_init) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) (skb_fail_get_and_rst) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) (_rtw_open_pktfile) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) (rtw_alloc_etherdev_with_old_priv) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) (alloc_etherdev) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) (rom_e_rtw_msgp_str_) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) (Efuse_PowerSwitch) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) (rtw_macaddr_cfg) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) (rtw_cancel_all_timer) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) (rtw_read8) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) (rtw_set_802_11_bssid) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) (InitialRateUpdate) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) (ODM_GetVersion_MP_8195A_PHY_REG) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) (odm_ConfigBB_AGC_8195A) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) (ODM_CmnInfoPtrArrayHook) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) (phydm_NHMInit) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) (Phydm_CheckAdaptivity) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) (ODM_CfoTrackingInit) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) (ODM_InitDebugSetting) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) (ODM_Write_DIG) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) (ODM_PhyStatusQuery) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) (ODM_Write1Byte) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) (odm_TXPowerTrackingInit) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) (odm_RSSIMonitorInit) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) (rtl8195ab_set_hal_ops) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) (rtl8195A_card_enable_flow) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) (CheckFwRsvdPageContent) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) (ReadRateMask8) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) (H2CCmdCommon) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) (HalPwrSeqCmdParsing) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) (hci_dvobj_init) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) (hci_lxbus_intf_stop) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) (rtw_interrupt_thread) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) (lextra_bus_dma_Interrupt) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) (init_rom_wlan_ram_map) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) (ODM_ReadAndConfig_MP_8195A_MAC_REG) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) (ODM_ReadAndConfig_MP_8195A_RadioA) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) (PHY_IQCalibrate_8195A) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) (ODM_TXPowerTrackingCallback_ThermalMeter) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + application/Debug/obj/atcmd_lwip.o (rtl_snprintf) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) (init_rom_libgloss_ram_map) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + application/Debug/obj/uart_fw_update.o (xModemStart) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + application/Debug/obj/uart_fw_update.o (xmodem_loguart_init) +../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) (XmRxBufPoll) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + application/Debug/obj/cJSON.o (floor) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + application/Debug/obj/cJSON.o (pow) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) (__ieee754_pow) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) (__ieee754_sqrt) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fabs.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) (fabs) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_finite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) (finite) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fpclassify.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) (__fpclassifyd) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_lib_ver.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) (__fdlib_version) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_matherr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) (matherr) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_nan.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) (nan) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) (rint) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) (scalbn) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_copysign.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) (copysign) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) + application/Debug/obj/cJSON.o (__ctype_ptr__) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) (__errno) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) (_impure_ptr) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + application/Debug/obj/sntp.o (localtime) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) (localtime_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + application/Debug/obj/cJSON.o (malloc) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcmp.o) + application/Debug/obj/ff.o (memcmp) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcpy-stub.o) + application/Debug/obj/heap_5.o (memcpy) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memset.o) + application/Debug/obj/log_service.o (memset) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + application/Debug/obj/rtc_api.o (mktime) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) (__tzcalc_limits) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) (_free_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) (_malloc_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + application/Debug/obj/heap_5.o (printf) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + application/Debug/obj/heap_5.o (puts) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + application/Debug/obj/igmp.o (rand) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) (_sbrk_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + application/Debug/obj/cJSON.o (sprintf) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + application/Debug/obj/wifi_conf.o (sscanf) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) (__seofread) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + application/Debug/obj/cipher.o (strcasecmp) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strchr.o) + application/Debug/obj/cJSON.o (strchr) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcmp.o) + application/Debug/obj/ff_driver.o (strcmp) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcpy.o) + application/Debug/obj/cJSON.o (strcpy) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strlen.o) + application/Debug/obj/wifi_simple_config.o (strlen) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strncmp.o) + application/Debug/obj/cJSON.o (strncmp) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + application/Debug/obj/wigadget.o (strtok_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) (_svfprintf_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) (__ssvfscanf_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) (__tz_lock) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) (_daylight) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) (__submore) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) (_vfprintf_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) (_printf_i) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) (_scanf_chars) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) (__swbuf_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) (_write_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) (__swsetup_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) (_close_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-div.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) (div) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) (_fflush_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) (__sinit) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) (__sfvwrite_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) (_fwalk) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) (__gettzinfo) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) (_lseek_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) (__smakebuf_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memchr-stub.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) (memchr) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memmove.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) (memmove) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) (_realloc_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) (_read_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sccl.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) (__sccl) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) (_strtol_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) (_strtoul_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) (_fstat_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) (_isatty_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-msizer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) (_malloc_usable_size_r) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) (_close) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) (_fstat) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) (_isatty) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) (_lseek) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) (_read) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) (_sbrk) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) (_write) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_lshrdi3.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) (__aeabi_llsr) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + application/Debug/obj/cJSON.o (__aeabi_dsub) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) + application/Debug/obj/dhcp.o (__aeabi_dmul) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) (__aeabi_dcmpeq) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixdfsi.o) + application/Debug/obj/cJSON.o (__aeabi_d2iz) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunsdfsi.o) + application/Debug/obj/dhcp.o (__aeabi_d2uiz) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_truncdfsf2.o) + application/Debug/obj/shtc1.o (__aeabi_d2f) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) + application/Debug/obj/cloud_link.o (__aeabi_fadd) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) + application/Debug/obj/pwmout_api.o (__aeabi_fmul) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) + application/Debug/obj/pwmout_api.o (__aeabi_fcmplt) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixsfsi.o) + application/Debug/obj/pwmout_api.o (__aeabi_f2iz) +/opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunssfsi.o) + application/Debug/obj/pwmout_api.o (__aeabi_f2uiz) + +Discarded input sections + + .text 0x00000000 0x0 application/Debug/obj/system_8195a.o + .data 0x00000000 0x0 application/Debug/obj/system_8195a.o + .bss 0x00000000 0x0 application/Debug/obj/system_8195a.o + .text.Rand2 0x00000000 0x68 application/Debug/obj/system_8195a.o + .text.SystemGetCpuClk + 0x00000000 0xc application/Debug/obj/system_8195a.o + .text.SystemInit + 0x00000000 0x14 application/Debug/obj/system_8195a.o + .data.z.8570 0x00000000 0x4 application/Debug/obj/system_8195a.o + .data.y.8569 0x00000000 0x4 application/Debug/obj/system_8195a.o + .data.c.8571 0x00000000 0x4 application/Debug/obj/system_8195a.o + .text 0x00000000 0x0 application/Debug/obj/atcmd_ethernet.o + .data 0x00000000 0x0 application/Debug/obj/atcmd_ethernet.o + .bss 0x00000000 0x0 application/Debug/obj/atcmd_ethernet.o + .debug_info 0x00000000 0x79 application/Debug/obj/atcmd_ethernet.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/atcmd_ethernet.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/atcmd_ethernet.o + .debug_line 0x00000000 0x1d application/Debug/obj/atcmd_ethernet.o + .debug_str 0x00000000 0x214 application/Debug/obj/atcmd_ethernet.o + .comment 0x00000000 0x71 application/Debug/obj/atcmd_ethernet.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/atcmd_ethernet.o + .text 0x00000000 0x0 application/Debug/obj/atcmd_lwip.o + .data 0x00000000 0x0 application/Debug/obj/atcmd_lwip.o + .bss 0x00000000 0x0 application/Debug/obj/atcmd_lwip.o + .text.atcmd_lwip_set_tt_mode + 0x00000000 0xc application/Debug/obj/atcmd_lwip.o + .text.atcmd_lwip_is_autorecv_mode + 0x00000000 0x10 application/Debug/obj/atcmd_lwip.o + .text.atcmd_lwip_set_autorecv_mode + 0x00000000 0xc application/Debug/obj/atcmd_lwip.o + .text.atcmd_lwip_erase_info + 0x00000000 0xc application/Debug/obj/atcmd_lwip.o + .text.atcmd_lwip_read_info_from_flash + 0x00000000 0x14 application/Debug/obj/atcmd_lwip.o + .text 0x00000000 0x0 application/Debug/obj/atcmd_sys.o + .data 0x00000000 0x0 application/Debug/obj/atcmd_sys.o + .bss 0x00000000 0x0 application/Debug/obj/atcmd_sys.o + .text 0x00000000 0x0 application/Debug/obj/atcmd_wifi.o + .data 0x00000000 0x0 application/Debug/obj/atcmd_wifi.o + .bss 0x00000000 0x0 application/Debug/obj/atcmd_wifi.o + .text.atcmd_wifi_read_info_from_flash + 0x00000000 0x14 application/Debug/obj/atcmd_wifi.o + .text 0x00000000 0x0 application/Debug/obj/log_service.o + .data 0x00000000 0x0 application/Debug/obj/log_service.o + .bss 0x00000000 0x0 application/Debug/obj/log_service.o + .text.fAT_exit + 0x00000000 0x18 application/Debug/obj/log_service.o + .text.hash_index + 0x00000000 0x2c application/Debug/obj/log_service.o + .text.log_add_new_command + 0x00000000 0x48 application/Debug/obj/log_service.o + .text.print_help_msg + 0x00000000 0x4 application/Debug/obj/log_service.o + .text.log_service_lock_timeout + 0x00000000 0xc application/Debug/obj/log_service.o + .text.log_service_lock_init + 0x00000000 0xc application/Debug/obj/log_service.o + .text.at_log_init + 0x00000000 0xc application/Debug/obj/log_service.o + .data.at_log_items + 0x00000000 0x20 application/Debug/obj/log_service.o + .text 0x00000000 0x0 application/Debug/obj/low_level_io.o + .data 0x00000000 0x0 application/Debug/obj/low_level_io.o + .bss 0x00000000 0x0 application/Debug/obj/low_level_io.o + .data.tmp 0x00000000 0x4 application/Debug/obj/low_level_io.o + .debug_info 0x00000000 0xb1 application/Debug/obj/low_level_io.o + .debug_abbrev 0x00000000 0x6a application/Debug/obj/low_level_io.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/low_level_io.o + .debug_line 0x00000000 0x136 application/Debug/obj/low_level_io.o + .debug_str 0x00000000 0x240 application/Debug/obj/low_level_io.o + .comment 0x00000000 0x71 application/Debug/obj/low_level_io.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/low_level_io.o + .text 0x00000000 0x0 application/Debug/obj/rtl_consol.o + .data 0x00000000 0x0 application/Debug/obj/rtl_consol.o + .bss 0x00000000 0x0 application/Debug/obj/rtl_consol.o + .text 0x00000000 0x0 application/Debug/obj/wifi_eap_config.o + .data 0x00000000 0x0 application/Debug/obj/wifi_eap_config.o + .bss 0x00000000 0x0 application/Debug/obj/wifi_eap_config.o + .text.eap_disconnected_hdl + 0x00000000 0x28 application/Debug/obj/wifi_eap_config.o + .text.set_eap_phase + 0x00000000 0xc application/Debug/obj/wifi_eap_config.o + .text.reset_config + 0x00000000 0x40 application/Debug/obj/wifi_eap_config.o + .text.judge_station_disconnect + 0x00000000 0x50 application/Debug/obj/wifi_eap_config.o + .text.eap_start + 0x00000000 0x8 application/Debug/obj/wifi_eap_config.o + .text.eap_cert_init + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .text.eap_client_cert_free + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .text.eap_server_cert_free + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .text.eap_cert_setup + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .bss.eap_target_ssid + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .bss.eap_client_key_pwd + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .data.max_buf_bio_size + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .bss.eap_client_cert + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .bss.eap_identity + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .rodata.str1.4 + 0x00000000 0x8 application/Debug/obj/wifi_eap_config.o + .bss.eap_password + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .bss.eap_ca_cert + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .bss.eap_client_key + 0x00000000 0x4 application/Debug/obj/wifi_eap_config.o + .text 0x00000000 0x0 application/Debug/obj/wifi_p2p_config.o + .data 0x00000000 0x0 application/Debug/obj/wifi_p2p_config.o + .bss 0x00000000 0x0 application/Debug/obj/wifi_p2p_config.o + .debug_info 0x00000000 0x80 application/Debug/obj/wifi_p2p_config.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/wifi_p2p_config.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/wifi_p2p_config.o + .debug_line 0x00000000 0x1d application/Debug/obj/wifi_p2p_config.o + .debug_str 0x00000000 0x23c application/Debug/obj/wifi_p2p_config.o + .comment 0x00000000 0x71 application/Debug/obj/wifi_p2p_config.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/wifi_p2p_config.o + .text 0x00000000 0x0 application/Debug/obj/wifi_wps_config.o + .data 0x00000000 0x0 application/Debug/obj/wifi_wps_config.o + .bss 0x00000000 0x0 application/Debug/obj/wifi_wps_config.o + .text.wifi_p2p_wps_success + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wifi_p2p_wps_failed + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wps_registrar_init + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wps_registrar_deinit + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wps_registrar_alloc + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wps_registrar_process_msg + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wps_registrar_get_msg + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wps_registrar_add_pin + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wps_registrar_button_pushed + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wps_registrar_wps_cancel + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wpas_wsc_ap_send_eap_reqidentity + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wpas_wsc_ap_check_eap_rspidentity + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wpas_wsc_registrar_send_eap_fail + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.wpas_wsc_registrar_handle_recvd + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.eap_wsc_server_process_hdl + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .text.eap_wsc_server_reset + 0x00000000 0x4 application/Debug/obj/wifi_wps_config.o + .debug_info 0x00000000 0x3e6 application/Debug/obj/wifi_wps_config.o + .debug_abbrev 0x00000000 0xfc application/Debug/obj/wifi_wps_config.o + .debug_loc 0x00000000 0xe7 application/Debug/obj/wifi_wps_config.o + .debug_aranges + 0x00000000 0x98 application/Debug/obj/wifi_wps_config.o + .debug_ranges 0x00000000 0x88 application/Debug/obj/wifi_wps_config.o + .debug_line 0x00000000 0x2c6 application/Debug/obj/wifi_wps_config.o + .debug_str 0x00000000 0x456 application/Debug/obj/wifi_wps_config.o + .comment 0x00000000 0x71 application/Debug/obj/wifi_wps_config.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/wifi_wps_config.o + .debug_frame 0x00000000 0x110 application/Debug/obj/wifi_wps_config.o + .text 0x00000000 0x0 application/Debug/obj/wifi_conf.o + .data 0x00000000 0x0 application/Debug/obj/wifi_conf.o + .bss 0x00000000 0x0 application/Debug/obj/wifi_conf.o + .text.wifi_is_up + 0x00000000 0x1c application/Debug/obj/wifi_conf.o + .text.wifi_is_ready_to_transceive + 0x00000000 0x30 application/Debug/obj/wifi_conf.o + .text.wifi_get_mac_address + 0x00000000 0x40 application/Debug/obj/wifi_conf.o + .text.wifi_enable_powersave + 0x00000000 0x10 application/Debug/obj/wifi_conf.o + .text.wifi_disable_powersave + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_get_ap_info + 0x00000000 0x78 application/Debug/obj/wifi_conf.o + .text.wifi_get_drv_ability + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_set_country + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_set_channel_plan + 0x00000000 0x34 application/Debug/obj/wifi_conf.o + .text.wifi_get_rssi + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_get_channel + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_register_multicast_address + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_unregister_multicast_address + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_set_mib + 0x00000000 0x8 application/Debug/obj/wifi_conf.o + .text.wifi_rf_on + 0x00000000 0x4 application/Debug/obj/wifi_conf.o + .text.wifi_rf_off + 0x00000000 0x4 application/Debug/obj/wifi_conf.o + .text.wifi_set_power_mode + 0x00000000 0x10 application/Debug/obj/wifi_conf.o + .text.wifi_set_tdma_param + 0x00000000 0x20 application/Debug/obj/wifi_conf.o + .text.wifi_set_lps_dtim + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_get_lps_dtim + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_get_last_error + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_set_network_mode + 0x00000000 0x18 application/Debug/obj/wifi_conf.o + .text.wifi_set_wps_phase + 0x00000000 0x4 application/Debug/obj/wifi_conf.o + .text.wifi_restart_ap + 0x00000000 0x158 application/Debug/obj/wifi_conf.o + .text.wifi_get_autoreconnect + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_add_custom_ie + 0x00000000 0x10 application/Debug/obj/wifi_conf.o + .text.wifi_update_custom_ie + 0x00000000 0x10 application/Debug/obj/wifi_conf.o + .text.wifi_del_custom_ie + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_enable_forwarding + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_disable_forwarding + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text.wifi_set_ch_deauth + 0x00000000 0xc application/Debug/obj/wifi_conf.o + .text 0x00000000 0x0 application/Debug/obj/wifi_ind.o + .data 0x00000000 0x0 application/Debug/obj/wifi_ind.o + .bss 0x00000000 0x0 application/Debug/obj/wifi_ind.o + .text.wifi_manager_init + 0x00000000 0x4 application/Debug/obj/wifi_ind.o + .text.rtw_wifi_manager_deinit + 0x00000000 0x4 application/Debug/obj/wifi_ind.o + .text 0x00000000 0x0 application/Debug/obj/wifi_promisc.o + .data 0x00000000 0x0 application/Debug/obj/wifi_promisc.o + .bss 0x00000000 0x0 application/Debug/obj/wifi_promisc.o + .text.promisc_callback_all + 0x00000000 0x64 application/Debug/obj/wifi_promisc.o + .text.promisc_callback + 0x00000000 0x60 application/Debug/obj/wifi_promisc.o + .text.retrieve_frame + 0x00000000 0x30 application/Debug/obj/wifi_promisc.o + .text.cmd_promisc + 0x00000000 0x224 application/Debug/obj/wifi_promisc.o + .rodata.str1.4 + 0x00000000 0x94 application/Debug/obj/wifi_promisc.o + .bss.eth_buffer + 0x00000000 0x8 application/Debug/obj/wifi_promisc.o + .text 0x00000000 0x0 application/Debug/obj/wifi_simple_config.o + .data 0x00000000 0x0 application/Debug/obj/wifi_simple_config.o + .bss 0x00000000 0x0 application/Debug/obj/wifi_simple_config.o + .text.init_simple_config_lib_config + 0x00000000 0x70 application/Debug/obj/wifi_simple_config.o + .text.stop_simple_config + 0x00000000 0xc application/Debug/obj/wifi_simple_config.o + .text 0x00000000 0x0 application/Debug/obj/wifi_util.o + .data 0x00000000 0x0 application/Debug/obj/wifi_util.o + .bss 0x00000000 0x0 application/Debug/obj/wifi_util.o + .text.iw_ioctl + 0x00000000 0x20 application/Debug/obj/wifi_util.o + .text.is_broadcast_ether_addr + 0x00000000 0x24 application/Debug/obj/wifi_util.o + .text.wext_enable_powersave + 0x00000000 0x84 application/Debug/obj/wifi_util.o + .text.wext_disable_powersave + 0x00000000 0x78 application/Debug/obj/wifi_util.o + .text.wext_set_tdma_param + 0x00000000 0x88 application/Debug/obj/wifi_util.o + .text.wext_set_lps_dtim + 0x00000000 0x70 application/Debug/obj/wifi_util.o + .text.wext_get_lps_dtim + 0x00000000 0x94 application/Debug/obj/wifi_util.o + .text.wext_set_tos_value + 0x00000000 0xa4 application/Debug/obj/wifi_util.o + .text.wext_get_tx_power + 0x00000000 0x70 application/Debug/obj/wifi_util.o + .text.wext_set_country + 0x00000000 0x44 application/Debug/obj/wifi_util.o + .text.wext_get_rssi + 0x00000000 0x48 application/Debug/obj/wifi_util.o + .text.wext_private_command_with_retval + 0x00000000 0xb4 application/Debug/obj/wifi_util.o + .text.wext_register_multicast_address + 0x00000000 0x44 application/Debug/obj/wifi_util.o + .text.wext_unregister_multicast_address + 0x00000000 0x44 application/Debug/obj/wifi_util.o + .text.wext_send_eapol + 0x00000000 0x50 application/Debug/obj/wifi_util.o + .text.wext_set_gen_ie + 0x00000000 0x50 application/Debug/obj/wifi_util.o + .text.wext_get_autoreconnect + 0x00000000 0x6c application/Debug/obj/wifi_util.o + .text.wext_get_drv_ability + 0x00000000 0x3c application/Debug/obj/wifi_util.o + .text.wext_add_custom_ie + 0x00000000 0x8c application/Debug/obj/wifi_util.o + .text.wext_update_custom_ie + 0x00000000 0x8c application/Debug/obj/wifi_util.o + .text.wext_del_custom_ie + 0x00000000 0x64 application/Debug/obj/wifi_util.o + .text.wext_enable_forwarding + 0x00000000 0x70 application/Debug/obj/wifi_util.o + .text.wext_disable_forwarding + 0x00000000 0x70 application/Debug/obj/wifi_util.o + .text.wext_set_ch_deauth + 0x00000000 0x3c application/Debug/obj/wifi_util.o + .text.wext_set_adaptivity_th_l2h_ini + 0x00000000 0xc application/Debug/obj/wifi_util.o + .text.wext_get_auto_chl + 0x00000000 0x30 application/Debug/obj/wifi_util.o + .text.wext_del_station + 0x00000000 0x4 application/Debug/obj/wifi_util.o + .text.wext_init_mac_filter + 0x00000000 0x3c application/Debug/obj/wifi_util.o + .text.wext_deinit_mac_filter + 0x00000000 0x40 application/Debug/obj/wifi_util.o + .text.wext_add_mac_filter + 0x00000000 0x50 application/Debug/obj/wifi_util.o + .text.wext_del_mac_filter + 0x00000000 0x50 application/Debug/obj/wifi_util.o + .rodata.__func__.7809 + 0x00000000 0x14 application/Debug/obj/wifi_util.o + .rodata.__func__.8066 + 0x00000000 0x18 application/Debug/obj/wifi_util.o + .rodata.__func__.8079 + 0x00000000 0x14 application/Debug/obj/wifi_util.o + .text 0x00000000 0x0 application/Debug/obj/lwip_netconf.o + .data 0x00000000 0x0 application/Debug/obj/lwip_netconf.o + .bss 0x00000000 0x0 application/Debug/obj/lwip_netconf.o + .text.LwIP_GetMASK + 0x00000000 0x4 application/Debug/obj/lwip_netconf.o + .text.LwIP_GetBC + 0x00000000 0x8 application/Debug/obj/lwip_netconf.o + .text.LwIP_GetDNS + 0x00000000 0x10 application/Debug/obj/lwip_netconf.o + .text.LwIP_SetDNS + 0x00000000 0x8 application/Debug/obj/lwip_netconf.o + .text 0x00000000 0x0 application/Debug/obj/ping_test.o + .data 0x00000000 0x0 application/Debug/obj/ping_test.o + .bss 0x00000000 0x0 application/Debug/obj/ping_test.o + .text.cmd_ping + 0x00000000 0x150 application/Debug/obj/ping_test.o + .text.do_ping_test + 0x00000000 0xc4 application/Debug/obj/ping_test.o + .rodata.__FUNCTION__.6662 + 0x00000000 0x10 application/Debug/obj/ping_test.o + .text 0x00000000 0x0 application/Debug/obj/ssl_client.o + .data 0x00000000 0x0 application/Debug/obj/ssl_client.o + .bss 0x00000000 0x0 application/Debug/obj/ssl_client.o + .text.my_malloc + 0x00000000 0x20 application/Debug/obj/ssl_client.o + .text.my_debug + 0x00000000 0x14 application/Debug/obj/ssl_client.o + .text.my_random + 0x00000000 0x10 application/Debug/obj/ssl_client.o + .text.ssl_client + 0x00000000 0x210 application/Debug/obj/ssl_client.o + .text.start_ssl_client + 0x00000000 0x4c application/Debug/obj/ssl_client.o + .text.do_ssl_connect + 0x00000000 0x70 application/Debug/obj/ssl_client.o + .text.cmd_ssl_client + 0x00000000 0x2c application/Debug/obj/ssl_client.o + .bss.server_host + 0x00000000 0x10 application/Debug/obj/ssl_client.o + .rodata.__FUNCTION__.8530 + 0x00000000 0x10 application/Debug/obj/ssl_client.o + .rodata.__FUNCTION__.8523 + 0x00000000 0x14 application/Debug/obj/ssl_client.o + .rodata.__FUNCTION__.8519 + 0x00000000 0xc application/Debug/obj/ssl_client.o + .bss.is_task 0x00000000 0x4 application/Debug/obj/ssl_client.o + .bss.fail.8529 + 0x00000000 0x4 application/Debug/obj/ssl_client.o + .bss.success.8528 + 0x00000000 0x4 application/Debug/obj/ssl_client.o + .bss.min_heap_size + 0x00000000 0x4 application/Debug/obj/ssl_client.o + .rodata.str1.4 + 0x00000000 0x2d0 application/Debug/obj/ssl_client.o + .debug_info 0x00000000 0x2642 application/Debug/obj/ssl_client.o + .debug_abbrev 0x00000000 0x3ae application/Debug/obj/ssl_client.o + .debug_loc 0x00000000 0x3ad application/Debug/obj/ssl_client.o + .debug_aranges + 0x00000000 0x50 application/Debug/obj/ssl_client.o + .debug_ranges 0x00000000 0x60 application/Debug/obj/ssl_client.o + .debug_line 0x00000000 0x521 application/Debug/obj/ssl_client.o + .debug_str 0x00000000 0x1a9d application/Debug/obj/ssl_client.o + .comment 0x00000000 0x71 application/Debug/obj/ssl_client.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ssl_client.o + .debug_frame 0x00000000 0xc0 application/Debug/obj/ssl_client.o + .text 0x00000000 0x0 application/Debug/obj/ssl_client_ext.o + .data 0x00000000 0x0 application/Debug/obj/ssl_client_ext.o + .bss 0x00000000 0x0 application/Debug/obj/ssl_client_ext.o + .text.ssl_client_ext_init + 0x00000000 0x4 application/Debug/obj/ssl_client_ext.o + .text.ssl_client_ext_free + 0x00000000 0x4 application/Debug/obj/ssl_client_ext.o + .text.ssl_client_ext_setup + 0x00000000 0x4 application/Debug/obj/ssl_client_ext.o + .debug_info 0x00000000 0x1adb application/Debug/obj/ssl_client_ext.o + .debug_abbrev 0x00000000 0x1e2 application/Debug/obj/ssl_client_ext.o + .debug_loc 0x00000000 0x21 application/Debug/obj/ssl_client_ext.o + .debug_aranges + 0x00000000 0x30 application/Debug/obj/ssl_client_ext.o + .debug_ranges 0x00000000 0x20 application/Debug/obj/ssl_client_ext.o + .debug_line 0x00000000 0x2b7 application/Debug/obj/ssl_client_ext.o + .debug_str 0x00000000 0x17df application/Debug/obj/ssl_client_ext.o + .comment 0x00000000 0x71 application/Debug/obj/ssl_client_ext.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ssl_client_ext.o + .debug_frame 0x00000000 0x40 application/Debug/obj/ssl_client_ext.o + .text 0x00000000 0x0 application/Debug/obj/tcptest.o + .data 0x00000000 0x0 application/Debug/obj/tcptest.o + .bss 0x00000000 0x0 application/Debug/obj/tcptest.o + .text.tcp_client_func + 0x00000000 0x300 application/Debug/obj/tcptest.o + .text.tcp_client_handler + 0x00000000 0x7c application/Debug/obj/tcptest.o + .text.tcp_server_func + 0x00000000 0x274 application/Debug/obj/tcptest.o + .text.tcp_server_handler + 0x00000000 0x70 application/Debug/obj/tcptest.o + .text.udp_client_func + 0x00000000 0x310 application/Debug/obj/tcptest.o + .text.udp_client_handler + 0x00000000 0xa0 application/Debug/obj/tcptest.o + .text.udp_server_func + 0x00000000 0x1b8 application/Debug/obj/tcptest.o + .text.udp_server_handler + 0x00000000 0x70 application/Debug/obj/tcptest.o + .text.km_parser + 0x00000000 0xb8 application/Debug/obj/tcptest.o + .text.cmd_tcp 0x00000000 0x350 application/Debug/obj/tcptest.o + .text.cmd_udp 0x00000000 0x450 application/Debug/obj/tcptest.o + .rodata 0x00000000 0x14 application/Debug/obj/tcptest.o + .bss.tcp_client_data + 0x00000000 0x40 application/Debug/obj/tcptest.o + .bss.g_tcp_client_task + 0x00000000 0x4 application/Debug/obj/tcptest.o + .bss.tcp_server_data + 0x00000000 0x40 application/Debug/obj/tcptest.o + .bss.g_udp_server_task + 0x00000000 0x4 application/Debug/obj/tcptest.o + .rodata.__func__.6721 + 0x00000000 0x10 application/Debug/obj/tcptest.o + .rodata.__func__.6668 + 0x00000000 0x10 application/Debug/obj/tcptest.o + .bss.udp_server_data + 0x00000000 0x40 application/Debug/obj/tcptest.o + .bss.udp_client_data + 0x00000000 0x40 application/Debug/obj/tcptest.o + .bss.g_udp_client_task + 0x00000000 0x4 application/Debug/obj/tcptest.o + .rodata.str1.4 + 0x00000000 0xac0 application/Debug/obj/tcptest.o + .rodata.__func__.6688 + 0x00000000 0x10 application/Debug/obj/tcptest.o + .bss.g_tcp_server_task + 0x00000000 0x4 application/Debug/obj/tcptest.o + .rodata.__func__.6636 + 0x00000000 0x10 application/Debug/obj/tcptest.o + .bss.g_udp_terminate + 0x00000000 0x1 application/Debug/obj/tcptest.o + .bss.g_tcp_terminate + 0x00000000 0x1 application/Debug/obj/tcptest.o + .debug_info 0x00000000 0x2259 application/Debug/obj/tcptest.o + .debug_abbrev 0x00000000 0x333 application/Debug/obj/tcptest.o + .debug_loc 0x00000000 0x1483 application/Debug/obj/tcptest.o + .debug_aranges + 0x00000000 0x70 application/Debug/obj/tcptest.o + .debug_ranges 0x00000000 0x78 application/Debug/obj/tcptest.o + .debug_line 0x00000000 0x8c4 application/Debug/obj/tcptest.o + .debug_str 0x00000000 0x75f application/Debug/obj/tcptest.o + .comment 0x00000000 0x71 application/Debug/obj/tcptest.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/tcptest.o + .debug_frame 0x00000000 0x1a8 application/Debug/obj/tcptest.o + .text 0x00000000 0x0 application/Debug/obj/uart_adapter.o + .data 0x00000000 0x0 application/Debug/obj/uart_adapter.o + .bss 0x00000000 0x0 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_send_stream_done + 0x00000000 0xc application/Debug/obj/uart_adapter.o + .text.uartadapter_gpio_irq + 0x00000000 0x14 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_irq + 0x00000000 0x68 application/Debug/obj/uart_adapter.o + .text.uartadapter_gtimer_timeout_handler + 0x00000000 0x1c application/Debug/obj/uart_adapter.o + .text.uartadapter_mdns_start + 0x00000000 0x18c application/Debug/obj/uart_adapter.o + .text.uartadapter_disconnect_handler + 0x00000000 0x70 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_read + 0x00000000 0xf8 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_write + 0x00000000 0x6c application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_gpio_wakeup_callback + 0x00000000 0x14 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_open + 0x00000000 0xa0 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_baud + 0x00000000 0x2c application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_para + 0x00000000 0x44 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_getpara + 0x00000000 0x40 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_init + 0x00000000 0x58 application/Debug/obj/uart_adapter.o + .text.uartadapter_flashread + 0x00000000 0x8c application/Debug/obj/uart_adapter.o + .text.uartadapter_flashwrite + 0x00000000 0x8c application/Debug/obj/uart_adapter.o + .text.uartadapter_flasherase + 0x00000000 0x20 application/Debug/obj/uart_adapter.o + .text.uartadapter_exception_thread + 0x00000000 0xdc application/Debug/obj/uart_adapter.o + .text.uartadapter_systemreload + 0x00000000 0x18 application/Debug/obj/uart_adapter.o + .text.uartadapter_gpio_init + 0x00000000 0x78 application/Debug/obj/uart_adapter.o + .text.uartadapter_gpio_led_mode + 0x00000000 0x90 application/Debug/obj/uart_adapter.o + .text.uartadapter_strncmp + 0x00000000 0x4c application/Debug/obj/uart_adapter.o + .text.uartadapter_control_write_tcp_info_into_flash + 0x00000000 0x50 application/Debug/obj/uart_adapter.o + .text.uartadapter_control_read_tcp_info_and_connect + 0x00000000 0x118 application/Debug/obj/uart_adapter.o + .text.uartadapter_control_get_req_handle + 0x00000000 0xb8 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcpclient + 0x00000000 0x1a8 application/Debug/obj/uart_adapter.o + .text.uartadapter_control_set_req_handle + 0x00000000 0x56c application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_transmit_client_thread + 0x00000000 0x3c application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_transmit_client_forever_thread + 0x00000000 0x64 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcpserver + 0x00000000 0x178 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_chat_server_thread + 0x00000000 0x28 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_control_server_thread + 0x00000000 0x28 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_transmit_server_thread + 0x00000000 0x38 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_send_data + 0x00000000 0xd0 application/Debug/obj/uart_adapter.o + .text.uartadapter_uart_rx_thread + 0x00000000 0xd0 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_send_control + 0x00000000 0x80 application/Debug/obj/uart_adapter.o + .text.uartadapter_control_process + 0x00000000 0x168 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_except_handler + 0x00000000 0x278 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_chat_socket_handler + 0x00000000 0xb8 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_control_socket_handler + 0x00000000 0x88 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_transmit_socket_handler + 0x00000000 0x98 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_chat_listen_socket_handler + 0x00000000 0x160 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_control_listen_socket_handler + 0x00000000 0x160 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_transmit_listen_socket_handler + 0x00000000 0x160 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_select_restart_handler + 0x00000000 0x180 application/Debug/obj/uart_adapter.o + .text.uartadapter_tcp_select_thread + 0x00000000 0x388 application/Debug/obj/uart_adapter.o + .text.uartadapter_connect_wifi + 0x00000000 0x98 application/Debug/obj/uart_adapter.o + .text.uartadapter_load_wifi_config + 0x00000000 0x148 application/Debug/obj/uart_adapter.o + .text.uartadapter_auto_reconnect + 0x00000000 0x150 application/Debug/obj/uart_adapter.o + .text.uartadapter_simple_config + 0x00000000 0x34 application/Debug/obj/uart_adapter.o + .text.uartadapter_auto_connect + 0x00000000 0x1a4 application/Debug/obj/uart_adapter.o + .text.uartadapter_socket_init + 0x00000000 0x108 application/Debug/obj/uart_adapter.o + .text.uartadapter_init + 0x00000000 0x170 application/Debug/obj/uart_adapter.o + .text.example_uart_adapter_init + 0x00000000 0x10 application/Debug/obj/uart_adapter.o + .text.uartadapter_print_irq_rx_count + 0x00000000 0x254 application/Debug/obj/uart_adapter.o + .text.uartadapter_reset_irq_rx_count + 0x00000000 0x30 application/Debug/obj/uart_adapter.o + .text.uartadapter_set_debug_print + 0x00000000 0xc application/Debug/obj/uart_adapter.o + .text.cmd_uart_adapter + 0x00000000 0x260 application/Debug/obj/uart_adapter.o + .rodata.__FUNCTION__.14586 + 0x00000000 0x24 application/Debug/obj/uart_adapter.o + .rodata.__FUNCTION__.14872 + 0x00000000 0x14 application/Debug/obj/uart_adapter.o + .rodata.__FUNCTION__.14701 + 0x00000000 0x20 application/Debug/obj/uart_adapter.o + .bss.ua_tcp_server_ip + 0x00000000 0x10 application/Debug/obj/uart_adapter.o + .bss.ua_wifi_connected + 0x00000000 0x4 application/Debug/obj/uart_adapter.o + .bss.ua_global_socket + 0x00000000 0x4 application/Debug/obj/uart_adapter.o + .rodata.__FUNCTION__.14823 + 0x00000000 0x1c application/Debug/obj/uart_adapter.o + .rodata.__FUNCTION__.14855 + 0x00000000 0x14 application/Debug/obj/uart_adapter.o + .bss.gpio_rx_wake + 0x00000000 0x14 application/Debug/obj/uart_adapter.o + .bss.ua_reconnect_ip_change + 0x00000000 0x4 application/Debug/obj/uart_adapter.o + .rodata.str1.4 + 0x00000000 0x18b8 application/Debug/obj/uart_adapter.o + .bss.ua_exception_sema + 0x00000000 0x4 application/Debug/obj/uart_adapter.o + .rodata.__func__.14853 + 0x00000000 0x14 application/Debug/obj/uart_adapter.o + .bss.ua_gpio_irq_happen + 0x00000000 0x4 application/Debug/obj/uart_adapter.o + .rodata.__FUNCTION__.14558 + 0x00000000 0x30 application/Debug/obj/uart_adapter.o + .rodata.__FUNCTION__.14849 + 0x00000000 0x20 application/Debug/obj/uart_adapter.o + .bss.ua_print_sema + 0x00000000 0x4 application/Debug/obj/uart_adapter.o + .bss.ua_debug_print_en + 0x00000000 0x4 application/Debug/obj/uart_adapter.o + .bss.ua_reconnect_started + 0x00000000 0x4 application/Debug/obj/uart_adapter.o + .debug_info 0x00000000 0x98dc application/Debug/obj/uart_adapter.o + .debug_abbrev 0x00000000 0x664 application/Debug/obj/uart_adapter.o + .debug_loc 0x00000000 0x3382 application/Debug/obj/uart_adapter.o + .debug_aranges + 0x00000000 0x1e8 application/Debug/obj/uart_adapter.o + .debug_ranges 0x00000000 0x288 application/Debug/obj/uart_adapter.o + .debug_line 0x00000000 0x1c5a application/Debug/obj/uart_adapter.o + .debug_str 0x00000000 0x3b4a application/Debug/obj/uart_adapter.o + .comment 0x00000000 0x71 application/Debug/obj/uart_adapter.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/uart_adapter.o + .debug_frame 0x00000000 0x6c0 application/Debug/obj/uart_adapter.o + .text 0x00000000 0x0 application/Debug/obj/uart_ymodem.o + .data 0x00000000 0x0 application/Debug/obj/uart_ymodem.o + .bss 0x00000000 0x0 application/Debug/obj/uart_ymodem.o + .text.uarty_irq + 0x00000000 0x44 application/Debug/obj/uart_ymodem.o + .text.uart_init + 0x00000000 0x54 application/Debug/obj/uart_ymodem.o + .text.uart_sendbyte + 0x00000000 0x4 application/Debug/obj/uart_ymodem.o + .text.uart_recvbytetimeout + 0x00000000 0x24 application/Debug/obj/uart_ymodem.o + .text.uart_rxempty + 0x00000000 0x2c application/Debug/obj/uart_ymodem.o + .text.ymodem_flashwrite + 0x00000000 0x70 application/Debug/obj/uart_ymodem.o + .text.uart_ymodem_init + 0x00000000 0x44 application/Debug/obj/uart_ymodem.o + .text.uart_ymodem_deinit + 0x00000000 0x20 application/Debug/obj/uart_ymodem.o + .text.buf_filelen + 0x00000000 0x38 application/Debug/obj/uart_ymodem.o + .text.modem_cancle + 0x00000000 0x30 application/Debug/obj/uart_ymodem.o + .text.start_next_round + 0x00000000 0x6c application/Debug/obj/uart_ymodem.o + .text.data_write_to_flash + 0x00000000 0xac application/Debug/obj/uart_ymodem.o + .text.block_num_check + 0x00000000 0x50 application/Debug/obj/uart_ymodem.o + .text.calc_file_name_size + 0x00000000 0x6c application/Debug/obj/uart_ymodem.o + .text.crc_check + 0x00000000 0xd0 application/Debug/obj/uart_ymodem.o + .text.set_signature + 0x00000000 0x7c application/Debug/obj/uart_ymodem.o + .text.uart_ymodem_thread + 0x00000000 0x258 application/Debug/obj/uart_ymodem.o + .text.uart_ymodem + 0x00000000 0xa8 application/Debug/obj/uart_ymodem.o + .rodata.__FUNCTION__.12115 + 0x00000000 0xc application/Debug/obj/uart_ymodem.o + .bss.offset.12026 + 0x00000000 0x4 application/Debug/obj/uart_ymodem.o + .data.first_time.12089 + 0x00000000 0x4 application/Debug/obj/uart_ymodem.o + .rodata.str1.4 + 0x00000000 0x200 application/Debug/obj/uart_ymodem.o + .data.flags.12028 + 0x00000000 0x4 application/Debug/obj/uart_ymodem.o + .debug_info 0x00000000 0x2cc4 application/Debug/obj/uart_ymodem.o + .debug_abbrev 0x00000000 0x4e5 application/Debug/obj/uart_ymodem.o + .debug_loc 0x00000000 0x10a2 application/Debug/obj/uart_ymodem.o + .debug_aranges + 0x00000000 0xa8 application/Debug/obj/uart_ymodem.o + .debug_ranges 0x00000000 0x178 application/Debug/obj/uart_ymodem.o + .debug_line 0x00000000 0x976 application/Debug/obj/uart_ymodem.o + .debug_str 0x00000000 0x1cc5 application/Debug/obj/uart_ymodem.o + .comment 0x00000000 0x71 application/Debug/obj/uart_ymodem.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/uart_ymodem.o + .debug_frame 0x00000000 0x1e4 application/Debug/obj/uart_ymodem.o + .text 0x00000000 0x0 application/Debug/obj/update.o + .data 0x00000000 0x0 application/Debug/obj/update.o + .bss 0x00000000 0x0 application/Debug/obj/update.o + .text 0x00000000 0x0 application/Debug/obj/wlan_network.o + .data 0x00000000 0x0 application/Debug/obj/wlan_network.o + .bss 0x00000000 0x0 application/Debug/obj/wlan_network.o + .bss.uart_rx_interrupt_sema + 0x00000000 0x4 application/Debug/obj/wlan_network.o + .text 0x00000000 0x0 application/Debug/obj/api_lib.o + .data 0x00000000 0x0 application/Debug/obj/api_lib.o + .bss 0x00000000 0x0 application/Debug/obj/api_lib.o + .text.netconn_close_shutdown + 0x00000000 0x3c application/Debug/obj/api_lib.o + .text.netconn_disconnect + 0x00000000 0x38 application/Debug/obj/api_lib.o + .text.netconn_sendto + 0x00000000 0x14 application/Debug/obj/api_lib.o + .text.netconn_close + 0x00000000 0x8 application/Debug/obj/api_lib.o + .text.netconn_shutdown + 0x00000000 0x18 application/Debug/obj/api_lib.o + .text.netconn_join_leave_group + 0x00000000 0x40 application/Debug/obj/api_lib.o + .text.netconn_abort + 0x00000000 0x20 application/Debug/obj/api_lib.o + .text 0x00000000 0x0 application/Debug/obj/api_msg.o + .data 0x00000000 0x0 application/Debug/obj/api_msg.o + .bss 0x00000000 0x0 application/Debug/obj/api_msg.o + .text.do_disconnect + 0x00000000 0x2c application/Debug/obj/api_msg.o + .text.do_close + 0x00000000 0x60 application/Debug/obj/api_msg.o + .text.do_join_leave_group + 0x00000000 0x58 application/Debug/obj/api_msg.o + .text 0x00000000 0x0 application/Debug/obj/err.o + .data 0x00000000 0x0 application/Debug/obj/err.o + .bss 0x00000000 0x0 application/Debug/obj/err.o + .text.lwip_strerr + 0x00000000 0x10 application/Debug/obj/err.o + .rodata.str1.4 + 0x00000000 0x128 application/Debug/obj/err.o + .rodata.err_strerr + 0x00000000 0x40 application/Debug/obj/err.o + .debug_info 0x00000000 0xf1 application/Debug/obj/err.o + .debug_abbrev 0x00000000 0x93 application/Debug/obj/err.o + .debug_loc 0x00000000 0x21 application/Debug/obj/err.o + .debug_aranges + 0x00000000 0x20 application/Debug/obj/err.o + .debug_ranges 0x00000000 0x10 application/Debug/obj/err.o + .debug_line 0x00000000 0x10d application/Debug/obj/err.o + .debug_str 0x00000000 0x241 application/Debug/obj/err.o + .comment 0x00000000 0x71 application/Debug/obj/err.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/err.o + .debug_frame 0x00000000 0x20 application/Debug/obj/err.o + .text 0x00000000 0x0 application/Debug/obj/netbuf.o + .data 0x00000000 0x0 application/Debug/obj/netbuf.o + .bss 0x00000000 0x0 application/Debug/obj/netbuf.o + .text.netbuf_new + 0x00000000 0x18 application/Debug/obj/netbuf.o + .text.netbuf_alloc + 0x00000000 0x2c application/Debug/obj/netbuf.o + .text.netbuf_chain + 0x00000000 0x24 application/Debug/obj/netbuf.o + .text.netbuf_data + 0x00000000 0x28 application/Debug/obj/netbuf.o + .text.netbuf_next + 0x00000000 0x1c application/Debug/obj/netbuf.o + .text.netbuf_first + 0x00000000 0x8 application/Debug/obj/netbuf.o + .text 0x00000000 0x0 application/Debug/obj/netdb.o + .data 0x00000000 0x0 application/Debug/obj/netdb.o + .bss 0x00000000 0x0 application/Debug/obj/netdb.o + .text.lwip_gethostbyname_r + 0x00000000 0xb0 application/Debug/obj/netdb.o + .text.lwip_freeaddrinfo + 0x00000000 0x18 application/Debug/obj/netdb.o + .text.lwip_getaddrinfo + 0x00000000 0xec application/Debug/obj/netdb.o + .text 0x00000000 0x0 application/Debug/obj/netifapi.o + .data 0x00000000 0x0 application/Debug/obj/netifapi.o + .bss 0x00000000 0x0 application/Debug/obj/netifapi.o + .debug_info 0x00000000 0x79 application/Debug/obj/netifapi.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/netifapi.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/netifapi.o + .debug_line 0x00000000 0x1d application/Debug/obj/netifapi.o + .debug_str 0x00000000 0x224 application/Debug/obj/netifapi.o + .comment 0x00000000 0x71 application/Debug/obj/netifapi.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/netifapi.o + .text 0x00000000 0x0 application/Debug/obj/sockets.o + .data 0x00000000 0x0 application/Debug/obj/sockets.o + .bss 0x00000000 0x0 application/Debug/obj/sockets.o + .text.lwip_getaddrname + 0x00000000 0x94 application/Debug/obj/sockets.o + .text.lwip_getsockopt_internal + 0x00000000 0x1cc application/Debug/obj/sockets.o + .text.lwip_recv + 0x00000000 0x14 application/Debug/obj/sockets.o + .text.lwip_shutdown + 0x00000000 0x84 application/Debug/obj/sockets.o + .text.lwip_getpeername + 0x00000000 0x8 application/Debug/obj/sockets.o + .text.lwip_getsockname + 0x00000000 0x8 application/Debug/obj/sockets.o + .text.lwip_getsockopt + 0x00000000 0x184 application/Debug/obj/sockets.o + .text.lwip_ioctl + 0x00000000 0x74 application/Debug/obj/sockets.o + .text.lwip_fcntl + 0x00000000 0x60 application/Debug/obj/sockets.o + .text.lwip_allocsocketsd + 0x00000000 0x44 application/Debug/obj/sockets.o + .text.lwip_setsockrcvevent + 0x00000000 0x30 application/Debug/obj/sockets.o + .text.lwip_selectevindicate + 0x00000000 0x94 application/Debug/obj/sockets.o + .rodata.str1.4 + 0x00000000 0x34 application/Debug/obj/sockets.o + .text 0x00000000 0x0 application/Debug/obj/tcpip.o + .data 0x00000000 0x0 application/Debug/obj/tcpip.o + .bss 0x00000000 0x0 application/Debug/obj/tcpip.o + .text.pbuf_free_int + 0x00000000 0x4 application/Debug/obj/tcpip.o + .text.tcpip_untimeout + 0x00000000 0x38 application/Debug/obj/tcpip.o + .text.tcpip_callbackmsg_new + 0x00000000 0x18 application/Debug/obj/tcpip.o + .text.tcpip_callbackmsg_delete + 0x00000000 0x8 application/Debug/obj/tcpip.o + .text.tcpip_trycallback + 0x00000000 0x24 application/Debug/obj/tcpip.o + .text.pbuf_free_callback + 0x00000000 0x10 application/Debug/obj/tcpip.o + .text.mem_free_callback + 0x00000000 0x10 application/Debug/obj/tcpip.o + .text 0x00000000 0x0 application/Debug/obj/autoip.o + .data 0x00000000 0x0 application/Debug/obj/autoip.o + .bss 0x00000000 0x0 application/Debug/obj/autoip.o + .text.autoip_set_struct + 0x00000000 0x14 application/Debug/obj/autoip.o + .text.autoip_network_changed + 0x00000000 0x1c application/Debug/obj/autoip.o + .text.autoip_stop + 0x00000000 0x10 application/Debug/obj/autoip.o + .text 0x00000000 0x0 application/Debug/obj/icmp.o + .data 0x00000000 0x0 application/Debug/obj/icmp.o + .bss 0x00000000 0x0 application/Debug/obj/icmp.o + .text 0x00000000 0x0 application/Debug/obj/igmp.o + .data 0x00000000 0x0 application/Debug/obj/igmp.o + .bss 0x00000000 0x0 application/Debug/obj/igmp.o + .text.igmp_dump_group_list + 0x00000000 0x10 application/Debug/obj/igmp.o + .text.igmp_stop + 0x00000000 0x64 application/Debug/obj/igmp.o + .text 0x00000000 0x0 application/Debug/obj/inet.o + .data 0x00000000 0x0 application/Debug/obj/inet.o + .bss 0x00000000 0x0 application/Debug/obj/inet.o + .debug_info 0x00000000 0x79 application/Debug/obj/inet.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/inet.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/inet.o + .debug_line 0x00000000 0x1d application/Debug/obj/inet.o + .debug_str 0x00000000 0x226 application/Debug/obj/inet.o + .comment 0x00000000 0x71 application/Debug/obj/inet.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/inet.o + .text 0x00000000 0x0 application/Debug/obj/inet_chksum.o + .data 0x00000000 0x0 application/Debug/obj/inet_chksum.o + .bss 0x00000000 0x0 application/Debug/obj/inet_chksum.o + .text.inet_chksum_pseudo_partial + 0x00000000 0xb8 application/Debug/obj/inet_chksum.o + .text 0x00000000 0x0 application/Debug/obj/ip.o + .data 0x00000000 0x0 application/Debug/obj/ip.o + .bss 0x00000000 0x0 application/Debug/obj/ip.o + .text 0x00000000 0x0 application/Debug/obj/ip_addr.o + .data 0x00000000 0x0 application/Debug/obj/ip_addr.o + .bss 0x00000000 0x0 application/Debug/obj/ip_addr.o + .text.ip4_addr_netmask_valid + 0x00000000 0x30 application/Debug/obj/ip_addr.o + .text 0x00000000 0x0 application/Debug/obj/ip_frag.o + .data 0x00000000 0x0 application/Debug/obj/ip_frag.o + .bss 0x00000000 0x0 application/Debug/obj/ip_frag.o + .text 0x00000000 0x0 application/Debug/obj/def.o + .data 0x00000000 0x0 application/Debug/obj/def.o + .bss 0x00000000 0x0 application/Debug/obj/def.o + .text 0x00000000 0x0 application/Debug/obj/dhcp.o + .data 0x00000000 0x0 application/Debug/obj/dhcp.o + .bss 0x00000000 0x0 application/Debug/obj/dhcp.o + .text.dhcp_set_struct + 0x00000000 0x14 application/Debug/obj/dhcp.o + .text.dhcp_cleanup + 0x00000000 0x14 application/Debug/obj/dhcp.o + .text.dhcp_inform + 0x00000000 0xd8 application/Debug/obj/dhcp.o + .text.dhcp_network_changed + 0x00000000 0x40 application/Debug/obj/dhcp.o + .text 0x00000000 0x0 application/Debug/obj/dns.o + .data 0x00000000 0x0 application/Debug/obj/dns.o + .bss 0x00000000 0x0 application/Debug/obj/dns.o + .text.dns_getserver + 0x00000000 0x18 application/Debug/obj/dns.o + .text 0x00000000 0x0 application/Debug/obj/init.o + .data 0x00000000 0x0 application/Debug/obj/init.o + .bss 0x00000000 0x0 application/Debug/obj/init.o + .text 0x00000000 0x0 application/Debug/obj/lwip_timers.o + .data 0x00000000 0x0 application/Debug/obj/lwip_timers.o + .bss 0x00000000 0x0 application/Debug/obj/lwip_timers.o + .text 0x00000000 0x0 application/Debug/obj/mem.o + .data 0x00000000 0x0 application/Debug/obj/mem.o + .bss 0x00000000 0x0 application/Debug/obj/mem.o + .text.mem_calloc + 0x00000000 0x1c application/Debug/obj/mem.o + .text 0x00000000 0x0 application/Debug/obj/memp.o + .data 0x00000000 0x0 application/Debug/obj/memp.o + .bss 0x00000000 0x0 application/Debug/obj/memp.o + .text 0x00000000 0x0 application/Debug/obj/netif.o + .data 0x00000000 0x0 application/Debug/obj/netif.o + .bss 0x00000000 0x0 application/Debug/obj/netif.o + .text.netif_find + 0x00000000 0x44 application/Debug/obj/netif.o + .text.netif_remove + 0x00000000 0x60 application/Debug/obj/netif.o + .text.netif_set_link_up + 0x00000000 0x50 application/Debug/obj/netif.o + .text.netif_set_link_down + 0x00000000 0x14 application/Debug/obj/netif.o + .text 0x00000000 0x0 application/Debug/obj/pbuf.o + .data 0x00000000 0x0 application/Debug/obj/pbuf.o + .bss 0x00000000 0x0 application/Debug/obj/pbuf.o + .text.pbuf_dechain + 0x00000000 0x28 application/Debug/obj/pbuf.o + .text.pbuf_take + 0x00000000 0x48 application/Debug/obj/pbuf.o + .text.pbuf_get_at + 0x00000000 0x24 application/Debug/obj/pbuf.o + .text.pbuf_memcmp + 0x00000000 0x70 application/Debug/obj/pbuf.o + .text.pbuf_memfind + 0x00000000 0x4c application/Debug/obj/pbuf.o + .text.pbuf_strstr + 0x00000000 0x44 application/Debug/obj/pbuf.o + .text 0x00000000 0x0 application/Debug/obj/raw.o + .data 0x00000000 0x0 application/Debug/obj/raw.o + .bss 0x00000000 0x0 application/Debug/obj/raw.o + .text 0x00000000 0x0 application/Debug/obj/stats.o + .data 0x00000000 0x0 application/Debug/obj/stats.o + .bss 0x00000000 0x0 application/Debug/obj/stats.o + .debug_info 0x00000000 0x79 application/Debug/obj/stats.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/stats.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/stats.o + .debug_line 0x00000000 0x1d application/Debug/obj/stats.o + .debug_str 0x00000000 0x222 application/Debug/obj/stats.o + .comment 0x00000000 0x71 application/Debug/obj/stats.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/stats.o + .text 0x00000000 0x0 application/Debug/obj/sys.o + .data 0x00000000 0x0 application/Debug/obj/sys.o + .bss 0x00000000 0x0 application/Debug/obj/sys.o + .text.sys_msleep + 0x00000000 0x2c application/Debug/obj/sys.o + .debug_info 0x00000000 0x1a5 application/Debug/obj/sys.o + .debug_abbrev 0x00000000 0xe8 application/Debug/obj/sys.o + .debug_loc 0x00000000 0x47 application/Debug/obj/sys.o + .debug_aranges + 0x00000000 0x20 application/Debug/obj/sys.o + .debug_ranges 0x00000000 0x10 application/Debug/obj/sys.o + .debug_line 0x00000000 0x182 application/Debug/obj/sys.o + .debug_str 0x00000000 0x29f application/Debug/obj/sys.o + .comment 0x00000000 0x71 application/Debug/obj/sys.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/sys.o + .debug_frame 0x00000000 0x2c application/Debug/obj/sys.o + .text 0x00000000 0x0 application/Debug/obj/tcp.o + .data 0x00000000 0x0 application/Debug/obj/tcp.o + .bss 0x00000000 0x0 application/Debug/obj/tcp.o + .text.tcp_setprio + 0x00000000 0x4 application/Debug/obj/tcp.o + .text.tcp_next_iss + 0x00000000 0x18 application/Debug/obj/tcp.o + .text.tcp_debug_state_str + 0x00000000 0xc application/Debug/obj/tcp.o + .rodata.tcp_state_str + 0x00000000 0x2c application/Debug/obj/tcp.o + .rodata.str1.4 + 0x00000000 0x78 application/Debug/obj/tcp.o + .text 0x00000000 0x0 application/Debug/obj/tcp_in.o + .data 0x00000000 0x0 application/Debug/obj/tcp_in.o + .bss 0x00000000 0x0 application/Debug/obj/tcp_in.o + .text 0x00000000 0x0 application/Debug/obj/tcp_out.o + .data 0x00000000 0x0 application/Debug/obj/tcp_out.o + .bss 0x00000000 0x0 application/Debug/obj/tcp_out.o + .text 0x00000000 0x0 application/Debug/obj/udp.o + .data 0x00000000 0x0 application/Debug/obj/udp.o + .bss 0x00000000 0x0 application/Debug/obj/udp.o + .text 0x00000000 0x0 application/Debug/obj/etharp.o + .data 0x00000000 0x0 application/Debug/obj/etharp.o + .bss 0x00000000 0x0 application/Debug/obj/etharp.o + .text.etharp_find_addr + 0x00000000 0x38 application/Debug/obj/etharp.o + .text 0x00000000 0x0 application/Debug/obj/ethernetif.o + .data 0x00000000 0x0 application/Debug/obj/ethernetif.o + .bss 0x00000000 0x0 application/Debug/obj/ethernetif.o + .text.low_level_output_mii + 0x00000000 0x44 application/Debug/obj/ethernetif.o + .text.ethernetif_mii_recv + 0x00000000 0x78 application/Debug/obj/ethernetif.o + .text.ethernetif_mii_init + 0x00000000 0x2c application/Debug/obj/ethernetif.o + .text.arp_timeout_exist + 0x00000000 0x2c application/Debug/obj/ethernetif.o + .text.lwip_PRE_SLEEP_PROCESSING + 0x00000000 0x20 application/Debug/obj/ethernetif.o + .text 0x00000000 0x0 application/Debug/obj/lwip_intf.o + .data 0x00000000 0x0 application/Debug/obj/lwip_intf.o + .bss 0x00000000 0x0 application/Debug/obj/lwip_intf.o + .text.netif_get_hwaddr + 0x00000000 0x14 application/Debug/obj/lwip_intf.o + .text.netif_pre_sleep_processing + 0x00000000 0x4 application/Debug/obj/lwip_intf.o + .text 0x00000000 0x0 application/Debug/obj/sys_arch.o + .data 0x00000000 0x0 application/Debug/obj/sys_arch.o + .bss 0x00000000 0x0 application/Debug/obj/sys_arch.o + .text.sys_arch_timeouts + 0x00000000 0x44 application/Debug/obj/sys_arch.o + .text.sys_thread_new + 0x00000000 0x6c application/Debug/obj/sys_arch.o + .text.sys_thread_delete + 0x00000000 0x84 application/Debug/obj/sys_arch.o + .text.sys_assert + 0x00000000 0x8 application/Debug/obj/sys_arch.o + .text.sys_jiffies + 0x00000000 0x4 application/Debug/obj/sys_arch.o + .text 0x00000000 0x0 application/Debug/obj/dhcps.o + .data 0x00000000 0x0 application/Debug/obj/dhcps.o + .bss 0x00000000 0x0 application/Debug/obj/dhcps.o + .text 0x00000000 0x0 application/Debug/obj/sntp.o + .data 0x00000000 0x0 application/Debug/obj/sntp.o + .bss 0x00000000 0x0 application/Debug/obj/sntp.o + .text.sntp_retry + 0x00000000 0x2c application/Debug/obj/sntp.o + .text.sntp_recv + 0x00000000 0xd8 application/Debug/obj/sntp.o + .text.sntp_send_request + 0x00000000 0x64 application/Debug/obj/sntp.o + .text.sntp_request + 0x00000000 0x40 application/Debug/obj/sntp.o + .text.sntp_dns_found + 0x00000000 0xc application/Debug/obj/sntp.o + .text.sntp_get_lasttime + 0x00000000 0x24 application/Debug/obj/sntp.o + .text.sntp_gen_system_time + 0x00000000 0x98 application/Debug/obj/sntp.o + .text.sntp_init + 0x00000000 0x3c application/Debug/obj/sntp.o + .text.sntp_stop + 0x00000000 0x24 application/Debug/obj/sntp.o + .bss.sntp_update_tick + 0x00000000 0x4 application/Debug/obj/sntp.o + .bss.sntp_update_usec + 0x00000000 0x4 application/Debug/obj/sntp.o + .bss.sntp_update_sec + 0x00000000 0x4 application/Debug/obj/sntp.o + .rodata.str1.4 + 0x00000000 0x10 application/Debug/obj/sntp.o + .bss.sntp_pcb 0x00000000 0x4 application/Debug/obj/sntp.o + .bss.sntp_retry_timeout + 0x00000000 0x4 application/Debug/obj/sntp.o + .debug_info 0x00000000 0xcec application/Debug/obj/sntp.o + .debug_abbrev 0x00000000 0x339 application/Debug/obj/sntp.o + .debug_loc 0x00000000 0x4d1 application/Debug/obj/sntp.o + .debug_aranges + 0x00000000 0x60 application/Debug/obj/sntp.o + .debug_ranges 0x00000000 0xc0 application/Debug/obj/sntp.o + .debug_line 0x00000000 0x588 application/Debug/obj/sntp.o + .debug_str 0x00000000 0x6f0 application/Debug/obj/sntp.o + .comment 0x00000000 0x71 application/Debug/obj/sntp.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/sntp.o + .debug_frame 0x00000000 0xf8 application/Debug/obj/sntp.o + .text 0x00000000 0x0 application/Debug/obj/mDNSPlatform.o + .data 0x00000000 0x0 application/Debug/obj/mDNSPlatform.o + .bss 0x00000000 0x0 application/Debug/obj/mDNSPlatform.o + .text.mDNSPlatformCustomInit + 0x00000000 0x14 application/Debug/obj/mDNSPlatform.o + .text.mDNSPlatformHtons + 0x00000000 0x4 application/Debug/obj/mDNSPlatform.o + .text.mDNSPlatformInetAddr + 0x00000000 0x4 application/Debug/obj/mDNSPlatform.o + .text.mDNSPlatformHostname + 0x00000000 0x8 application/Debug/obj/mDNSPlatform.o + .rodata.str1.4 + 0x00000000 0x8 application/Debug/obj/mDNSPlatform.o + .debug_info 0x00000000 0x407 application/Debug/obj/mDNSPlatform.o + .debug_abbrev 0x00000000 0x17a application/Debug/obj/mDNSPlatform.o + .debug_loc 0x00000000 0x42 application/Debug/obj/mDNSPlatform.o + .debug_aranges + 0x00000000 0x38 application/Debug/obj/mDNSPlatform.o + .debug_ranges 0x00000000 0x28 application/Debug/obj/mDNSPlatform.o + .debug_line 0x00000000 0x27a application/Debug/obj/mDNSPlatform.o + .debug_str 0x00000000 0x3ba application/Debug/obj/mDNSPlatform.o + .comment 0x00000000 0x71 application/Debug/obj/mDNSPlatform.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/mDNSPlatform.o + .debug_frame 0x00000000 0x50 application/Debug/obj/mDNSPlatform.o + .text 0x00000000 0x0 application/Debug/obj/heap_5.o + .data 0x00000000 0x0 application/Debug/obj/heap_5.o + .bss 0x00000000 0x0 application/Debug/obj/heap_5.o + .text.dump_mem_block_list + 0x00000000 0x34 application/Debug/obj/heap_5.o + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0xc application/Debug/obj/heap_5.o + .text.pvPortReAlloc + 0x00000000 0xa4 application/Debug/obj/heap_5.o + .rodata.str1.4 + 0x00000000 0x40 application/Debug/obj/heap_5.o + .text 0x00000000 0x0 application/Debug/obj/port.o + .data 0x00000000 0x0 application/Debug/obj/port.o + .bss 0x00000000 0x0 application/Debug/obj/port.o + .text.vPortEndScheduler + 0x00000000 0x4 application/Debug/obj/port.o + .text 0x00000000 0x0 application/Debug/obj/cmsis_os.o + .data 0x00000000 0x0 application/Debug/obj/cmsis_os.o + .bss 0x00000000 0x0 application/Debug/obj/cmsis_os.o + .text._osTimerCallbackFreeRTOS + 0x00000000 0x10 application/Debug/obj/cmsis_os.o + .text.find_signal_by_thread + 0x00000000 0x74 application/Debug/obj/cmsis_os.o + .text.osKernelInitialize + 0x00000000 0x4 application/Debug/obj/cmsis_os.o + .text.osKernelStart + 0x00000000 0xc application/Debug/obj/cmsis_os.o + .text.osKernelSysTick + 0x00000000 0x4 application/Debug/obj/cmsis_os.o + .text.osThreadCreate + 0x00000000 0xf0 application/Debug/obj/cmsis_os.o + .text.osThreadGetId + 0x00000000 0x4 application/Debug/obj/cmsis_os.o + .text.osThreadTerminate + 0x00000000 0xa8 application/Debug/obj/cmsis_os.o + .text.osThreadYield + 0x00000000 0xc application/Debug/obj/cmsis_os.o + .text.osThreadSetPriority + 0x00000000 0x14 application/Debug/obj/cmsis_os.o + .text.osThreadGetPriority + 0x00000000 0x10 application/Debug/obj/cmsis_os.o + .text.osTimerCreate + 0x00000000 0x30 application/Debug/obj/cmsis_os.o + .text.osTimerStart + 0x00000000 0x8c application/Debug/obj/cmsis_os.o + .text.osTimerStop + 0x00000000 0x54 application/Debug/obj/cmsis_os.o + .text.osTimerDelete + 0x00000000 0x24 application/Debug/obj/cmsis_os.o + .text.osSignalSet + 0x00000000 0x70 application/Debug/obj/cmsis_os.o + .text.osSignalClear + 0x00000000 0x50 application/Debug/obj/cmsis_os.o + .text.osSignalWait + 0x00000000 0x80 application/Debug/obj/cmsis_os.o + .text.osMutexCreate + 0x00000000 0x8 application/Debug/obj/cmsis_os.o + .text.osMutexWait + 0x00000000 0x2c application/Debug/obj/cmsis_os.o + .text.osMutexRelease + 0x00000000 0x50 application/Debug/obj/cmsis_os.o + .text.osMutexDelete + 0x00000000 0x10 application/Debug/obj/cmsis_os.o + .text.osSemaphoreCreate + 0x00000000 0x2c application/Debug/obj/cmsis_os.o + .text.osSemaphoreWait + 0x00000000 0x2c application/Debug/obj/cmsis_os.o + .text.osSemaphoreRelease + 0x00000000 0x50 application/Debug/obj/cmsis_os.o + .text.osSemaphoreDelete + 0x00000000 0x10 application/Debug/obj/cmsis_os.o + .text.osPoolCreate + 0x00000000 0x74 application/Debug/obj/cmsis_os.o + .text.osPoolAlloc + 0x00000000 0x7c application/Debug/obj/cmsis_os.o + .text.osPoolCAlloc + 0x00000000 0x18 application/Debug/obj/cmsis_os.o + .text.osPoolFree + 0x00000000 0x5c application/Debug/obj/cmsis_os.o + .text.osMessageCreate + 0x00000000 0x8 application/Debug/obj/cmsis_os.o + .text.osMessagePut + 0x00000000 0x5c application/Debug/obj/cmsis_os.o + .text.osMessageGet + 0x00000000 0x60 application/Debug/obj/cmsis_os.o + .text.osMailCreate + 0x00000000 0x6c application/Debug/obj/cmsis_os.o + .text.osMailAlloc + 0x00000000 0x48 application/Debug/obj/cmsis_os.o + .text.osMailCAlloc + 0x00000000 0x1c application/Debug/obj/cmsis_os.o + .text.osMailPut + 0x00000000 0x5c application/Debug/obj/cmsis_os.o + .text.osMailGet + 0x00000000 0x88 application/Debug/obj/cmsis_os.o + .text.osMailFree + 0x00000000 0x14 application/Debug/obj/cmsis_os.o + .text.calloc_freertos + 0x00000000 0x1c application/Debug/obj/cmsis_os.o + .bss.pThreadSignalMapHead + 0x00000000 0x4 application/Debug/obj/cmsis_os.o + .rodata.__FUNCTION__.4859 + 0x00000000 0x10 application/Debug/obj/cmsis_os.o + .rodata.__FUNCTION__.4816 + 0x00000000 0x18 application/Debug/obj/cmsis_os.o + .rodata.str1.4 + 0x00000000 0xc0 application/Debug/obj/cmsis_os.o + .rodata.__FUNCTION__.4826 + 0x00000000 0x18 application/Debug/obj/cmsis_os.o + .bss.pThreadSignalMapTail + 0x00000000 0x4 application/Debug/obj/cmsis_os.o + .text 0x00000000 0x0 application/Debug/obj/croutine.o + .data 0x00000000 0x0 application/Debug/obj/croutine.o + .bss 0x00000000 0x0 application/Debug/obj/croutine.o + .text.xCoRoutineCreate + 0x00000000 0xcc application/Debug/obj/croutine.o + .text.vCoRoutineAddToDelayedList + 0x00000000 0x4c application/Debug/obj/croutine.o + .text.vCoRoutineSchedule + 0x00000000 0x1b4 application/Debug/obj/croutine.o + .text.xCoRoutineRemoveFromEventList + 0x00000000 0x34 application/Debug/obj/croutine.o + .bss.xDelayedCoRoutineList1 + 0x00000000 0x14 application/Debug/obj/croutine.o + .bss.xPassedTicks + 0x00000000 0x4 application/Debug/obj/croutine.o + .bss.xPendingReadyCoRoutineList + 0x00000000 0x14 application/Debug/obj/croutine.o + .bss.pxCurrentCoRoutine + 0x00000000 0x4 application/Debug/obj/croutine.o + .bss.xDelayedCoRoutineList2 + 0x00000000 0x14 application/Debug/obj/croutine.o + .bss.xCoRoutineTickCount + 0x00000000 0x4 application/Debug/obj/croutine.o + .bss.xLastTickCount + 0x00000000 0x4 application/Debug/obj/croutine.o + .bss.pxDelayedCoRoutineList + 0x00000000 0x4 application/Debug/obj/croutine.o + .bss.pxReadyCoRoutineLists + 0x00000000 0x28 application/Debug/obj/croutine.o + .bss.uxTopCoRoutineReadyPriority + 0x00000000 0x4 application/Debug/obj/croutine.o + .bss.pxOverflowDelayedCoRoutineList + 0x00000000 0x4 application/Debug/obj/croutine.o + .debug_info 0x00000000 0x779 application/Debug/obj/croutine.o + .debug_abbrev 0x00000000 0x281 application/Debug/obj/croutine.o + .debug_loc 0x00000000 0x28d application/Debug/obj/croutine.o + .debug_aranges + 0x00000000 0x38 application/Debug/obj/croutine.o + .debug_ranges 0x00000000 0xb0 application/Debug/obj/croutine.o + .debug_line 0x00000000 0x386 application/Debug/obj/croutine.o + .debug_str 0x00000000 0x638 application/Debug/obj/croutine.o + .comment 0x00000000 0x71 application/Debug/obj/croutine.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/croutine.o + .debug_frame 0x00000000 0x98 application/Debug/obj/croutine.o + .text 0x00000000 0x0 application/Debug/obj/event_groups.o + .data 0x00000000 0x0 application/Debug/obj/event_groups.o + .bss 0x00000000 0x0 application/Debug/obj/event_groups.o + .text.xEventGroupCreate + 0x00000000 0x1c application/Debug/obj/event_groups.o + .text.xEventGroupWaitBits + 0x00000000 0xac application/Debug/obj/event_groups.o + .text.xEventGroupClearBits + 0x00000000 0x1c application/Debug/obj/event_groups.o + .text.xEventGroupGetBitsFromISR + 0x00000000 0x14 application/Debug/obj/event_groups.o + .text.xEventGroupSetBits + 0x00000000 0x68 application/Debug/obj/event_groups.o + .text.xEventGroupSync + 0x00000000 0x84 application/Debug/obj/event_groups.o + .text.vEventGroupDelete + 0x00000000 0x2c application/Debug/obj/event_groups.o + .text.vEventGroupSetBitsCallback + 0x00000000 0x4 application/Debug/obj/event_groups.o + .text.vEventGroupClearBitsCallback + 0x00000000 0x1c application/Debug/obj/event_groups.o + .debug_info 0x00000000 0x96e application/Debug/obj/event_groups.o + .debug_abbrev 0x00000000 0x2a6 application/Debug/obj/event_groups.o + .debug_loc 0x00000000 0x93d application/Debug/obj/event_groups.o + .debug_aranges + 0x00000000 0x60 application/Debug/obj/event_groups.o + .debug_ranges 0x00000000 0xc0 application/Debug/obj/event_groups.o + .debug_line 0x00000000 0x40a application/Debug/obj/event_groups.o + .debug_str 0x00000000 0x690 application/Debug/obj/event_groups.o + .comment 0x00000000 0x71 application/Debug/obj/event_groups.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/event_groups.o + .debug_frame 0x00000000 0x100 application/Debug/obj/event_groups.o + .text 0x00000000 0x0 application/Debug/obj/list.o + .data 0x00000000 0x0 application/Debug/obj/list.o + .bss 0x00000000 0x0 application/Debug/obj/list.o + .text 0x00000000 0x0 application/Debug/obj/queue.o + .data 0x00000000 0x0 application/Debug/obj/queue.o + .bss 0x00000000 0x0 application/Debug/obj/queue.o + .text.xQueueGiveMutexRecursive + 0x00000000 0x2c application/Debug/obj/queue.o + .text.xQueueTakeMutexRecursive + 0x00000000 0x34 application/Debug/obj/queue.o + .text.xQueueReceiveFromISR + 0x00000000 0x64 application/Debug/obj/queue.o + .text.xQueuePeekFromISR + 0x00000000 0x34 application/Debug/obj/queue.o + .text.uxQueueSpacesAvailable + 0x00000000 0x18 application/Debug/obj/queue.o + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0x4 application/Debug/obj/queue.o + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0xc application/Debug/obj/queue.o + .text.xQueueIsQueueFullFromISR + 0x00000000 0xc application/Debug/obj/queue.o + .text.xQueueCRSend + 0x00000000 0x84 application/Debug/obj/queue.o + .text.xQueueCRReceive + 0x00000000 0x88 application/Debug/obj/queue.o + .text.xQueueCRSendFromISR + 0x00000000 0x34 application/Debug/obj/queue.o + .text.xQueueCRReceiveFromISR + 0x00000000 0x50 application/Debug/obj/queue.o + .text 0x00000000 0x0 application/Debug/obj/tasks.o + .data 0x00000000 0x0 application/Debug/obj/tasks.o + .bss 0x00000000 0x0 application/Debug/obj/tasks.o + .text.vTaskResume + 0x00000000 0x80 application/Debug/obj/tasks.o + .text.xTaskResumeFromISR + 0x00000000 0xa0 application/Debug/obj/tasks.o + .text.vTaskEndScheduler + 0x00000000 0x18 application/Debug/obj/tasks.o + .text.uxTaskGetNumberOfTasks + 0x00000000 0xc application/Debug/obj/tasks.o + .text.vTaskDelayUntil + 0x00000000 0x78 application/Debug/obj/tasks.o + .text.vTaskSuspend + 0x00000000 0xb0 application/Debug/obj/tasks.o + .text.vTaskPlaceOnUnorderedEventList + 0x00000000 0x68 application/Debug/obj/tasks.o + .text.xTaskRemoveFromUnorderedEventList + 0x00000000 0x60 application/Debug/obj/tasks.o + .text.xTaskGetCurrentTaskHandle + 0x00000000 0xc application/Debug/obj/tasks.o + .text.uxTaskResetEventItemValue + 0x00000000 0x18 application/Debug/obj/tasks.o + .text 0x00000000 0x0 application/Debug/obj/timers.o + .data 0x00000000 0x0 application/Debug/obj/timers.o + .bss 0x00000000 0x0 application/Debug/obj/timers.o + .text.xTimerGetTimerDaemonTaskHandle + 0x00000000 0xc application/Debug/obj/timers.o + .text.pcTimerGetTimerName + 0x00000000 0x4 application/Debug/obj/timers.o + .text.pvTimerGetTimerID + 0x00000000 0x4 application/Debug/obj/timers.o + .text.xTimerPendFunctionCallFromISR + 0x00000000 0x28 application/Debug/obj/timers.o + .text.xTimerPendFunctionCall + 0x00000000 0x28 application/Debug/obj/timers.o + .text 0x00000000 0x0 application/Debug/obj/device_lock.o + .data 0x00000000 0x0 application/Debug/obj/device_lock.o + .bss 0x00000000 0x0 application/Debug/obj/device_lock.o + .text 0x00000000 0x0 application/Debug/obj/freertos_service.o + .data 0x00000000 0x0 application/Debug/obj/freertos_service.o + .bss 0x00000000 0x0 application/Debug/obj/freertos_service.o + .text 0x00000000 0x0 application/Debug/obj/mailbox.o + .data 0x00000000 0x0 application/Debug/obj/mailbox.o + .bss 0x00000000 0x0 application/Debug/obj/mailbox.o + .text.RtlMBoxIdToHdl + 0x00000000 0x74 application/Debug/obj/mailbox.o + .text.RtlMailboxCreate + 0x00000000 0x110 application/Debug/obj/mailbox.o + .text.RtlMailboxDel + 0x00000000 0x58 application/Debug/obj/mailbox.o + .text.RtlMailboxSendToBack + 0x00000000 0x90 application/Debug/obj/mailbox.o + .text.RtlMailboxSendToFront + 0x00000000 0x8c application/Debug/obj/mailbox.o + .text.RtlMailboxReceive + 0x00000000 0x7c application/Debug/obj/mailbox.o + .text.RtlMailboxPeek + 0x00000000 0x84 application/Debug/obj/mailbox.o + .text.RtlMailboxMsgWaiting + 0x00000000 0x40 application/Debug/obj/mailbox.o + .bss.MBox_Entry + 0x00000000 0x10 application/Debug/obj/mailbox.o + .rodata.str1.4 + 0x00000000 0x2f0 application/Debug/obj/mailbox.o + .debug_info 0x00000000 0xdab application/Debug/obj/mailbox.o + .debug_abbrev 0x00000000 0x2bf application/Debug/obj/mailbox.o + .debug_loc 0x00000000 0x940 application/Debug/obj/mailbox.o + .debug_aranges + 0x00000000 0x58 application/Debug/obj/mailbox.o + .debug_ranges 0x00000000 0xe0 application/Debug/obj/mailbox.o + .debug_line 0x00000000 0x512 application/Debug/obj/mailbox.o + .debug_str 0x00000000 0x64f application/Debug/obj/mailbox.o + .comment 0x00000000 0x71 application/Debug/obj/mailbox.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/mailbox.o + .debug_frame 0x00000000 0x104 application/Debug/obj/mailbox.o + .text 0x00000000 0x0 application/Debug/obj/osdep_api.o + .data 0x00000000 0x0 application/Debug/obj/osdep_api.o + .bss 0x00000000 0x0 application/Debug/obj/osdep_api.o + .text.RtlTimerCallbckEntry + 0x00000000 0x2c application/Debug/obj/osdep_api.o + .text.RtlMalloc + 0x00000000 0x18 application/Debug/obj/osdep_api.o + .text.RtlZmalloc + 0x00000000 0x28 application/Debug/obj/osdep_api.o + .text.RtlMfree + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlMalloc2d + 0x00000000 0x50 application/Debug/obj/osdep_api.o + .text.RtlMfree2d + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlDownSemaWithTimeout + 0x00000000 0x18 application/Debug/obj/osdep_api.o + .text.RtlMutexInit + 0x00000000 0x10 application/Debug/obj/osdep_api.o + .text.RtlMutexFree + 0x00000000 0x8 application/Debug/obj/osdep_api.o + .text.RtlSpinlockInit + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlSpinlockFree + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlSpinlock + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlSpinunlock + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlSpinlockEx + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlSpinunlockEx + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlGetCurrentTime + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlSleepSchedulable + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlUsleepOS + 0x00000000 0x10 application/Debug/obj/osdep_api.o + .text.RtlMdelayOS + 0x00000000 0xc application/Debug/obj/osdep_api.o + .text.RtlYieldOS + 0x00000000 0x4 application/Debug/obj/osdep_api.o + .text.RtlModular64 + 0x00000000 0x90 application/Debug/obj/osdep_api.o + .text.RtlTimerCreate + 0x00000000 0xfc application/Debug/obj/osdep_api.o + .text.RtlTimerDelete + 0x00000000 0x78 application/Debug/obj/osdep_api.o + .text.RtlTimerStart + 0x00000000 0xb4 application/Debug/obj/osdep_api.o + .text.RtlTimerStop + 0x00000000 0x88 application/Debug/obj/osdep_api.o + .text.RtlTimerReset + 0x00000000 0x98 application/Debug/obj/osdep_api.o + .text.RtlTimerChangePeriod + 0x00000000 0x98 application/Debug/obj/osdep_api.o + .rodata.__FUNCTION__.4871 + 0x00000000 0xc application/Debug/obj/osdep_api.o + .rodata.str1.4 + 0x00000000 0x390 application/Debug/obj/osdep_api.o + .text 0x00000000 0x0 application/Debug/obj/osdep_service.o + .data 0x00000000 0x0 application/Debug/obj/osdep_service.o + .bss 0x00000000 0x0 application/Debug/obj/osdep_service.o + .text.worker_thread_main + 0x00000000 0x40 application/Debug/obj/osdep_service.o + .text._htonl 0x00000000 0x4 application/Debug/obj/osdep_service.o + .text._ntohl 0x00000000 0x4 application/Debug/obj/osdep_service.o + .text.RTW_STATUS_CODE + 0x00000000 0x8 application/Debug/obj/osdep_service.o + .text.rtw_atoi + 0x00000000 0x54 application/Debug/obj/osdep_service.o + .text._rtw_vmalloc + 0x00000000 0x20 application/Debug/obj/osdep_service.o + .text._rtw_malloc + 0x00000000 0x14 application/Debug/obj/osdep_service.o + .text._rtw_zmalloc + 0x00000000 0x14 application/Debug/obj/osdep_service.o + .text._rtw_mfree + 0x00000000 0x10 application/Debug/obj/osdep_service.o + .text.del_mem_usage + 0x00000000 0x4 application/Debug/obj/osdep_service.o + .text.rtw_vmalloc + 0x00000000 0x24 application/Debug/obj/osdep_service.o + .text.rtw_malloc2d + 0x00000000 0x34 application/Debug/obj/osdep_service.o + .text.rtw_mfree2d + 0x00000000 0x1c application/Debug/obj/osdep_service.o + .text.rtw_mutex_get + 0x00000000 0x10 application/Debug/obj/osdep_service.o + .text.rtw_enter_critical_from_isr + 0x00000000 0x10 application/Debug/obj/osdep_service.o + .text.rtw_exit_critical_from_isr + 0x00000000 0x10 application/Debug/obj/osdep_service.o + .text.rtw_spinlock_irqsave + 0x00000000 0x10 application/Debug/obj/osdep_service.o + .text.rtw_spinunlock_irqsave + 0x00000000 0x14 application/Debug/obj/osdep_service.o + .text.rtw_init_xqueue + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.rtw_push_to_xqueue + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.rtw_pop_from_xqueue + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.rtw_deinit_xqueue + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.rtw_get_time_interval_ms + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.rtw_yield_os + 0x00000000 0x14 application/Debug/obj/osdep_service.o + .text.ATOMIC_READ + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.ATOMIC_ADD + 0x00000000 0x14 application/Debug/obj/osdep_service.o + .text.ATOMIC_SUB + 0x00000000 0x14 application/Debug/obj/osdep_service.o + .text.ATOMIC_DEC + 0x00000000 0x14 application/Debug/obj/osdep_service.o + .text.ATOMIC_ADD_RETURN + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.ATOMIC_SUB_RETURN + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.ATOMIC_DEC_RETURN + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text.rtw_create_worker_thread + 0x00000000 0x6c application/Debug/obj/osdep_service.o + .text.rtw_delete_worker_thread + 0x00000000 0x28 application/Debug/obj/osdep_service.o + .text.rtw_get_scheduler_state + 0x00000000 0x18 application/Debug/obj/osdep_service.o + .text 0x00000000 0x0 application/Debug/obj/tcm_heap.o + .data 0x00000000 0x0 application/Debug/obj/tcm_heap.o + .bss 0x00000000 0x0 application/Debug/obj/tcm_heap.o + .text.tcm_heap_dump + 0x00000000 0x40 application/Debug/obj/tcm_heap.o + .text.alloc_test + 0x00000000 0x78 application/Debug/obj/tcm_heap.o + .text.tcm_heap_freeSpace + 0x00000000 0x48 application/Debug/obj/tcm_heap.o + .text.tcm_heap_testRun + 0x00000000 0x50 application/Debug/obj/tcm_heap.o + .rodata.str1.4 + 0x00000000 0x64 application/Debug/obj/tcm_heap.o + .text 0x00000000 0x0 application/Debug/obj/analogin_api.o + .data 0x00000000 0x0 application/Debug/obj/analogin_api.o + .bss 0x00000000 0x0 application/Debug/obj/analogin_api.o + .text.analogin_init + 0x00000000 0x13c application/Debug/obj/analogin_api.o + .text.analogin_read + 0x00000000 0x44 application/Debug/obj/analogin_api.o + .text.analogin_read_u16 + 0x00000000 0x3c application/Debug/obj/analogin_api.o + .text.analogin_deinit + 0x00000000 0x8 application/Debug/obj/analogin_api.o + .debug_info 0x00000000 0x17ce application/Debug/obj/analogin_api.o + .debug_abbrev 0x00000000 0x256 application/Debug/obj/analogin_api.o + .debug_loc 0x00000000 0x3f8 application/Debug/obj/analogin_api.o + .debug_aranges + 0x00000000 0x38 application/Debug/obj/analogin_api.o + .debug_ranges 0x00000000 0x28 application/Debug/obj/analogin_api.o + .debug_line 0x00000000 0x402 application/Debug/obj/analogin_api.o + .debug_str 0x00000000 0x1715 application/Debug/obj/analogin_api.o + .comment 0x00000000 0x71 application/Debug/obj/analogin_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/analogin_api.o + .debug_frame 0x00000000 0x80 application/Debug/obj/analogin_api.o + .text 0x00000000 0x0 application/Debug/obj/dma_api.o + .data 0x00000000 0x0 application/Debug/obj/dma_api.o + .bss 0x00000000 0x0 application/Debug/obj/dma_api.o + .text.dma_memcpy_aggr_init + 0x00000000 0x14 application/Debug/obj/dma_api.o + .text.dma_memcpy_init + 0x00000000 0x14 application/Debug/obj/dma_api.o + .text.dma_memcpy_deinit + 0x00000000 0xc application/Debug/obj/dma_api.o + .text.dma_memcpy + 0x00000000 0x4 application/Debug/obj/dma_api.o + .text.dma_memcpy_aggr + 0x00000000 0x4 application/Debug/obj/dma_api.o + .debug_info 0x00000000 0xde2 application/Debug/obj/dma_api.o + .debug_abbrev 0x00000000 0x204 application/Debug/obj/dma_api.o + .debug_loc 0x00000000 0x1a7 application/Debug/obj/dma_api.o + .debug_aranges + 0x00000000 0x40 application/Debug/obj/dma_api.o + .debug_ranges 0x00000000 0x30 application/Debug/obj/dma_api.o + .debug_line 0x00000000 0x2fe application/Debug/obj/dma_api.o + .debug_str 0x00000000 0xe23 application/Debug/obj/dma_api.o + .comment 0x00000000 0x71 application/Debug/obj/dma_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/dma_api.o + .debug_frame 0x00000000 0x70 application/Debug/obj/dma_api.o + .text 0x00000000 0x0 application/Debug/obj/efuse_api.o + .data 0x00000000 0x0 application/Debug/obj/efuse_api.o + .bss 0x00000000 0x0 application/Debug/obj/efuse_api.o + .text.efuse_get_remaining_length + 0x00000000 0x8 application/Debug/obj/efuse_api.o + .text.efuse_mtp_read + 0x00000000 0x4 application/Debug/obj/efuse_api.o + .text.efuse_mtp_write + 0x00000000 0xf8 application/Debug/obj/efuse_api.o + .text.efuse_otp_read + 0x00000000 0x34 application/Debug/obj/efuse_api.o + .text.efuse_otp_write + 0x00000000 0x40 application/Debug/obj/efuse_api.o + .text.efuse_disable_jtag + 0x00000000 0xc application/Debug/obj/efuse_api.o + .debug_info 0x00000000 0x8db application/Debug/obj/efuse_api.o + .debug_abbrev 0x00000000 0x1fc application/Debug/obj/efuse_api.o + .debug_loc 0x00000000 0x2cd application/Debug/obj/efuse_api.o + .debug_aranges + 0x00000000 0x48 application/Debug/obj/efuse_api.o + .debug_ranges 0x00000000 0x38 application/Debug/obj/efuse_api.o + .debug_line 0x00000000 0x304 application/Debug/obj/efuse_api.o + .debug_str 0x00000000 0x82f application/Debug/obj/efuse_api.o + .comment 0x00000000 0x71 application/Debug/obj/efuse_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/efuse_api.o + .debug_frame 0x00000000 0xac application/Debug/obj/efuse_api.o + .text 0x00000000 0x0 application/Debug/obj/ethernet_api.o + .data 0x00000000 0x0 application/Debug/obj/ethernet_api.o + .bss 0x00000000 0x0 application/Debug/obj/ethernet_api.o + .text.ethernet_irq_hook + 0x00000000 0xc application/Debug/obj/ethernet_api.o + .text.ethernet_set_descnum + 0x00000000 0xc application/Debug/obj/ethernet_api.o + .text.ethernet_trx_pre_setting + 0x00000000 0x18 application/Debug/obj/ethernet_api.o + .text.ethernet_init + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .text.ethernet_free + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .text.ethernet_write + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .text.ethernet_send + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .text.ethernet_receive + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .text.ethernet_read + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .text.ethernet_address + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .text.ethernet_link + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .text.ethernet_set_link + 0x00000000 0x4 application/Debug/obj/ethernet_api.o + .debug_info 0x00000000 0x889 application/Debug/obj/ethernet_api.o + .debug_abbrev 0x00000000 0x1e9 application/Debug/obj/ethernet_api.o + .debug_loc 0x00000000 0xe7 application/Debug/obj/ethernet_api.o + .debug_aranges + 0x00000000 0x78 application/Debug/obj/ethernet_api.o + .debug_ranges 0x00000000 0x68 application/Debug/obj/ethernet_api.o + .debug_line 0x00000000 0x366 application/Debug/obj/ethernet_api.o + .debug_str 0x00000000 0x959 application/Debug/obj/ethernet_api.o + .comment 0x00000000 0x71 application/Debug/obj/ethernet_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ethernet_api.o + .debug_frame 0x00000000 0xd8 application/Debug/obj/ethernet_api.o + .text 0x00000000 0x0 application/Debug/obj/ethernet_mii.o + .data 0x00000000 0x0 application/Debug/obj/ethernet_mii.o + .bss 0x00000000 0x0 application/Debug/obj/ethernet_mii.o + .text.mii_rx_thread + 0x00000000 0x64 application/Debug/obj/ethernet_mii.o + .text.dhcp_start_mii + 0x00000000 0x4c application/Debug/obj/ethernet_mii.o + .text.ethernet_demo + 0x00000000 0x1fc application/Debug/obj/ethernet_mii.o + .text.mii_intr_handler + 0x00000000 0x7c application/Debug/obj/ethernet_mii.o + .text.ethernet_mii_init + 0x00000000 0xa0 application/Debug/obj/ethernet_mii.o + .text.rltk_mii_recv + 0x00000000 0x44 application/Debug/obj/ethernet_mii.o + .text.rltk_mii_send + 0x00000000 0x8c application/Debug/obj/ethernet_mii.o + .bss.pTmpRxPktBuf + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .bss.pTmpTxPktBuf + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .bss.TX_BUFFER + 0x00000000 0x5f0 application/Debug/obj/ethernet_mii.o + .bss.pTmpRxDesc + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .bss.ethernet_if_default + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .bss.mii_rx_sema + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .bss.RX_BUFFER + 0x00000000 0x5f0 application/Debug/obj/ethernet_mii.o + .rodata.str1.4 + 0x00000000 0x184 application/Debug/obj/ethernet_mii.o + .bss.mii_linkup_sema + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .rodata.__FUNCTION__.12497 + 0x00000000 0x10 application/Debug/obj/ethernet_mii.o + .rodata.__FUNCTION__.12480 + 0x00000000 0x10 application/Debug/obj/ethernet_mii.o + .rodata.__FUNCTION__.12470 + 0x00000000 0x10 application/Debug/obj/ethernet_mii.o + .bss.pTmpTxDesc + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .bss.mii_tx_mutex + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .data.dhcp_ethernet_mii + 0x00000000 0x4 application/Debug/obj/ethernet_mii.o + .debug_info 0x00000000 0x14da application/Debug/obj/ethernet_mii.o + .debug_abbrev 0x00000000 0x350 application/Debug/obj/ethernet_mii.o + .debug_loc 0x00000000 0x401 application/Debug/obj/ethernet_mii.o + .debug_aranges + 0x00000000 0x50 application/Debug/obj/ethernet_mii.o + .debug_ranges 0x00000000 0x60 application/Debug/obj/ethernet_mii.o + .debug_line 0x00000000 0x888 application/Debug/obj/ethernet_mii.o + .debug_str 0x00000000 0xd94 application/Debug/obj/ethernet_mii.o + .comment 0x00000000 0x71 application/Debug/obj/ethernet_mii.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ethernet_mii.o + .debug_frame 0x00000000 0xd0 application/Debug/obj/ethernet_mii.o + .text 0x00000000 0x0 application/Debug/obj/flash_api.o + .data 0x00000000 0x0 application/Debug/obj/flash_api.o + .bss 0x00000000 0x0 application/Debug/obj/flash_api.o + .text.flash_write_protect + 0x00000000 0x38 application/Debug/obj/flash_api.o + .text.flash_erase_block + 0x00000000 0x38 application/Debug/obj/flash_api.o + .text.flash_burst_write + 0x00000000 0x140 application/Debug/obj/flash_api.o + .text.flash_burst_read + 0x00000000 0x50 application/Debug/obj/flash_api.o + .text.flash_get_status + 0x00000000 0x40 application/Debug/obj/flash_api.o + .text.flash_set_status + 0x00000000 0x70 application/Debug/obj/flash_api.o + .text.flash_reset_status + 0x00000000 0x48 application/Debug/obj/flash_api.o + .text.flash_get_extend_addr + 0x00000000 0x40 application/Debug/obj/flash_api.o + .text.flash_set_extend_addr + 0x00000000 0x70 application/Debug/obj/flash_api.o + .text 0x00000000 0x0 application/Debug/obj/gpio_api.o + .data 0x00000000 0x0 application/Debug/obj/gpio_api.o + .bss 0x00000000 0x0 application/Debug/obj/gpio_api.o + .text.gpio_set_hal_pin_mode + 0x00000000 0x28 application/Debug/obj/gpio_api.o + .text.gpio_change_dir + 0x00000000 0x68 application/Debug/obj/gpio_api.o + .text.gpio_direct_write + 0x00000000 0x28 application/Debug/obj/gpio_api.o + .text.gpio_pull_ctrl + 0x00000000 0x8 application/Debug/obj/gpio_api.o + .text.gpio_deinit + 0x00000000 0x8 application/Debug/obj/gpio_api.o + .rodata.GPIO_SWPORT_DDR_TBL + 0x00000000 0x4 application/Debug/obj/gpio_api.o + .text 0x00000000 0x0 application/Debug/obj/gpio_irq_api.o + .data 0x00000000 0x0 application/Debug/obj/gpio_irq_api.o + .bss 0x00000000 0x0 application/Debug/obj/gpio_irq_api.o + .text.gpio_irq_free + 0x00000000 0x1c application/Debug/obj/gpio_irq_api.o + .text.gpio_irq_disable + 0x00000000 0x10 application/Debug/obj/gpio_irq_api.o + .text.gpio_irq_deinit + 0x00000000 0x8 application/Debug/obj/gpio_irq_api.o + .text.gpio_irq_pull_ctrl + 0x00000000 0x8 application/Debug/obj/gpio_irq_api.o + .text.gpio_irq_set_event + 0x00000000 0x74 application/Debug/obj/gpio_irq_api.o + .rodata.str1.4 + 0x00000000 0x30 application/Debug/obj/gpio_irq_api.o + .text 0x00000000 0x0 application/Debug/obj/i2c_api.o + .data 0x00000000 0x0 application/Debug/obj/i2c_api.o + .bss 0x00000000 0x0 application/Debug/obj/i2c_api.o + .text.i2c_init + 0x00000000 0x19c application/Debug/obj/i2c_api.o + .text.i2c_frequency + 0x00000000 0x50 application/Debug/obj/i2c_api.o + .text.i2c_start + 0x00000000 0x4 application/Debug/obj/i2c_api.o + .text.i2c_stop + 0x00000000 0x4 application/Debug/obj/i2c_api.o + .text.i2c_read + 0x00000000 0xc8 application/Debug/obj/i2c_api.o + .text.i2c_write + 0x00000000 0xc8 application/Debug/obj/i2c_api.o + .text.i2c_byte_read + 0x00000000 0x44 application/Debug/obj/i2c_api.o + .text.i2c_byte_write + 0x00000000 0x40 application/Debug/obj/i2c_api.o + .text.i2c_reset + 0x00000000 0x10 application/Debug/obj/i2c_api.o + .text.i2c_restart_enable + 0x00000000 0x68 application/Debug/obj/i2c_api.o + .text.i2c_restart_disable + 0x00000000 0x68 application/Debug/obj/i2c_api.o + .text.i2c_set_user_callback + 0x00000000 0x28 application/Debug/obj/i2c_api.o + .text.i2c_clear_user_callback + 0x00000000 0x2c application/Debug/obj/i2c_api.o + .text.i2c_enable_control + 0x00000000 0x14 application/Debug/obj/i2c_api.o + .text.i2c_slave_address + 0x00000000 0x28 application/Debug/obj/i2c_api.o + .text.i2c_slave_mode + 0x00000000 0x30 application/Debug/obj/i2c_api.o + .text.i2c_slave_receive + 0x00000000 0x8 application/Debug/obj/i2c_api.o + .text.i2c_slave_read + 0x00000000 0x74 application/Debug/obj/i2c_api.o + .text.i2c_slave_write + 0x00000000 0x28 application/Debug/obj/i2c_api.o + .text.i2c_slave_set_for_rd_req + 0x00000000 0x28 application/Debug/obj/i2c_api.o + .text.i2c_slave_set_for_data_nak + 0x00000000 0x3c application/Debug/obj/i2c_api.o + .bss.i2c_target_addr + 0x00000000 0x8 application/Debug/obj/i2c_api.o + .rodata.PinMap_I2C_SDA + 0x00000000 0xb4 application/Debug/obj/i2c_api.o + .rodata.PinMap_I2C_SCL + 0x00000000 0xb4 application/Debug/obj/i2c_api.o + .bss.i2ctxtranbuf + 0x00000000 0x40 application/Debug/obj/i2c_api.o + .bss.i2crxtranbuf + 0x00000000 0x40 application/Debug/obj/i2c_api.o + .debug_info 0x00000000 0x295b application/Debug/obj/i2c_api.o + .debug_abbrev 0x00000000 0x3fd application/Debug/obj/i2c_api.o + .debug_loc 0x00000000 0x1078 application/Debug/obj/i2c_api.o + .debug_aranges + 0x00000000 0xc0 application/Debug/obj/i2c_api.o + .debug_ranges 0x00000000 0xb0 application/Debug/obj/i2c_api.o + .debug_line 0x00000000 0x792 application/Debug/obj/i2c_api.o + .debug_str 0x00000000 0x20f4 application/Debug/obj/i2c_api.o + .comment 0x00000000 0x71 application/Debug/obj/i2c_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/i2c_api.o + .debug_frame 0x00000000 0x244 application/Debug/obj/i2c_api.o + .text 0x00000000 0x0 application/Debug/obj/i2s_api.o + .data 0x00000000 0x0 application/Debug/obj/i2s_api.o + .bss 0x00000000 0x0 application/Debug/obj/i2s_api.o + .text.i2s_init + 0x00000000 0xf4 application/Debug/obj/i2s_api.o + .text.i2s_set_dma_buffer + 0x00000000 0x7c application/Debug/obj/i2s_api.o + .text.i2s_tx_irq_handler + 0x00000000 0x8 application/Debug/obj/i2s_api.o + .text.i2s_rx_irq_handler + 0x00000000 0x8 application/Debug/obj/i2s_api.o + .text.i2s_set_direction + 0x00000000 0x14 application/Debug/obj/i2s_api.o + .text.i2s_set_param + 0x00000000 0x34 application/Debug/obj/i2s_api.o + .text.i2s_deinit + 0x00000000 0x4 application/Debug/obj/i2s_api.o + .text.i2s_get_tx_page + 0x00000000 0x1c application/Debug/obj/i2s_api.o + .text.i2s_send_page + 0x00000000 0x4c application/Debug/obj/i2s_api.o + .text.i2s_recv_page + 0x00000000 0x8 application/Debug/obj/i2s_api.o + .text.i2s_enable + 0x00000000 0x4 application/Debug/obj/i2s_api.o + .text.i2s_disable + 0x00000000 0x4 application/Debug/obj/i2s_api.o + .rodata.PinMap_I2S_RX + 0x00000000 0x48 application/Debug/obj/i2s_api.o + .rodata.PinMap_I2S_TX + 0x00000000 0x60 application/Debug/obj/i2s_api.o + .rodata.str1.4 + 0x00000000 0x10c application/Debug/obj/i2s_api.o + .rodata.I2SDefaultSetting + 0x00000000 0x14 application/Debug/obj/i2s_api.o + .rodata.__FUNCTION__.8927 + 0x00000000 0xc application/Debug/obj/i2s_api.o + .rodata.PinMap_I2S_CLK + 0x00000000 0x60 application/Debug/obj/i2s_api.o + .rodata.__FUNCTION__.8937 + 0x00000000 0x14 application/Debug/obj/i2s_api.o + .rodata.PinMap_I2S_WS + 0x00000000 0x60 application/Debug/obj/i2s_api.o + .debug_info 0x00000000 0x17f8 application/Debug/obj/i2s_api.o + .debug_abbrev 0x00000000 0x32e application/Debug/obj/i2s_api.o + .debug_loc 0x00000000 0x6fb application/Debug/obj/i2s_api.o + .debug_aranges + 0x00000000 0x78 application/Debug/obj/i2s_api.o + .debug_ranges 0x00000000 0x80 application/Debug/obj/i2s_api.o + .debug_line 0x00000000 0x4d6 application/Debug/obj/i2s_api.o + .debug_str 0x00000000 0x1428 application/Debug/obj/i2s_api.o + .comment 0x00000000 0x71 application/Debug/obj/i2s_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/i2s_api.o + .debug_frame 0x00000000 0x110 application/Debug/obj/i2s_api.o + .text 0x00000000 0x0 application/Debug/obj/log_uart_api.o + .data 0x00000000 0x0 application/Debug/obj/log_uart_api.o + .bss 0x00000000 0x0 application/Debug/obj/log_uart_api.o + .text.log_uart_init + 0x00000000 0x118 application/Debug/obj/log_uart_api.o + .text.log_uart_free + 0x00000000 0x68 application/Debug/obj/log_uart_api.o + .text.log_uart_baud + 0x00000000 0x50 application/Debug/obj/log_uart_api.o + .text.log_uart_format + 0x00000000 0x6c application/Debug/obj/log_uart_api.o + .text.log_uart_irq_handler + 0x00000000 0x8 application/Debug/obj/log_uart_api.o + .text.log_uart_irq_set + 0x00000000 0x60 application/Debug/obj/log_uart_api.o + .text.log_uart_getc + 0x00000000 0x28 application/Debug/obj/log_uart_api.o + .text.log_uart_putc + 0x00000000 0x28 application/Debug/obj/log_uart_api.o + .text.log_uart_readable + 0x00000000 0x1c application/Debug/obj/log_uart_api.o + .text.log_uart_writable + 0x00000000 0x1c application/Debug/obj/log_uart_api.o + .text.log_uart_clear + 0x00000000 0x14 application/Debug/obj/log_uart_api.o + .text.log_uart_clear_tx + 0x00000000 0x10 application/Debug/obj/log_uart_api.o + .text.log_uart_clear_rx + 0x00000000 0x10 application/Debug/obj/log_uart_api.o + .text.log_uart_break_set + 0x00000000 0x10 application/Debug/obj/log_uart_api.o + .text.log_uart_break_clear + 0x00000000 0x10 application/Debug/obj/log_uart_api.o + .text.log_uart_tx_comp_handler + 0x00000000 0x8 application/Debug/obj/log_uart_api.o + .text.log_uart_rx_comp_handler + 0x00000000 0x8 application/Debug/obj/log_uart_api.o + .text.log_uart_line_status_handler + 0x00000000 0x8 application/Debug/obj/log_uart_api.o + .text.log_uart_recv + 0x00000000 0x4 application/Debug/obj/log_uart_api.o + .text.log_uart_send + 0x00000000 0x4 application/Debug/obj/log_uart_api.o + .text.log_uart_recv_stream + 0x00000000 0x4 application/Debug/obj/log_uart_api.o + .text.log_uart_send_stream + 0x00000000 0x4 application/Debug/obj/log_uart_api.o + .text.log_uart_recv_stream_timeout + 0x00000000 0x70 application/Debug/obj/log_uart_api.o + .text.log_uart_send_stream_abort + 0x00000000 0x10 application/Debug/obj/log_uart_api.o + .text.log_uart_recv_stream_abort + 0x00000000 0x10 application/Debug/obj/log_uart_api.o + .text.log_uart_disable + 0x00000000 0x4 application/Debug/obj/log_uart_api.o + .text.log_uart_enable + 0x00000000 0x4 application/Debug/obj/log_uart_api.o + .text.log_uart_raed_lsr + 0x00000000 0xc application/Debug/obj/log_uart_api.o + .text.log_uart_raed_msr + 0x00000000 0xc application/Debug/obj/log_uart_api.o + .rodata.str1.4 + 0x00000000 0x178 application/Debug/obj/log_uart_api.o + .rodata.log_uart_support_rate + 0x00000000 0x28 application/Debug/obj/log_uart_api.o + .debug_info 0x00000000 0x17f2 application/Debug/obj/log_uart_api.o + .debug_abbrev 0x00000000 0x3b3 application/Debug/obj/log_uart_api.o + .debug_loc 0x00000000 0xa84 application/Debug/obj/log_uart_api.o + .debug_aranges + 0x00000000 0x100 application/Debug/obj/log_uart_api.o + .debug_ranges 0x00000000 0x120 application/Debug/obj/log_uart_api.o + .debug_line 0x00000000 0x64b application/Debug/obj/log_uart_api.o + .debug_str 0x00000000 0x1165 application/Debug/obj/log_uart_api.o + .comment 0x00000000 0x71 application/Debug/obj/log_uart_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/log_uart_api.o + .debug_frame 0x00000000 0x260 application/Debug/obj/log_uart_api.o + .text 0x00000000 0x0 application/Debug/obj/nfc_api.o + .data 0x00000000 0x0 application/Debug/obj/nfc_api.o + .bss 0x00000000 0x0 application/Debug/obj/nfc_api.o + .text.nfc_tagwrite_callback + 0x00000000 0x14 application/Debug/obj/nfc_api.o + .text.nfc_event_callback + 0x00000000 0x1c application/Debug/obj/nfc_api.o + .text.nfc_tagread_callback + 0x00000000 0x24 application/Debug/obj/nfc_api.o + .text.nfc_cache_read_callback + 0x00000000 0x14 application/Debug/obj/nfc_api.o + .text.nfc_init + 0x00000000 0x34 application/Debug/obj/nfc_api.o + .text.nfc_free + 0x00000000 0xc application/Debug/obj/nfc_api.o + .text.nfc_read + 0x00000000 0xc application/Debug/obj/nfc_api.o + .text.nfc_write + 0x00000000 0xc application/Debug/obj/nfc_api.o + .text.nfc_event + 0x00000000 0x10 application/Debug/obj/nfc_api.o + .text.nfc_power + 0x00000000 0x4 application/Debug/obj/nfc_api.o + .text.nfc_cache_write + 0x00000000 0x70 application/Debug/obj/nfc_api.o + .text.nfc_cache_raed + 0x00000000 0x20 application/Debug/obj/nfc_api.o + .text.nfc_status + 0x00000000 0x8 application/Debug/obj/nfc_api.o + .debug_info 0x00000000 0xce7 application/Debug/obj/nfc_api.o + .debug_abbrev 0x00000000 0x26b application/Debug/obj/nfc_api.o + .debug_loc 0x00000000 0x55e application/Debug/obj/nfc_api.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/nfc_api.o + .debug_ranges 0x00000000 0x70 application/Debug/obj/nfc_api.o + .debug_line 0x00000000 0x3cc application/Debug/obj/nfc_api.o + .debug_str 0x00000000 0xb1c application/Debug/obj/nfc_api.o + .comment 0x00000000 0x71 application/Debug/obj/nfc_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/nfc_api.o + .debug_frame 0x00000000 0x130 application/Debug/obj/nfc_api.o + .text 0x00000000 0x0 application/Debug/obj/pinmap.o + .data 0x00000000 0x0 application/Debug/obj/pinmap.o + .bss 0x00000000 0x0 application/Debug/obj/pinmap.o + .text 0x00000000 0x0 application/Debug/obj/pinmap_common.o + .data 0x00000000 0x0 application/Debug/obj/pinmap_common.o + .bss 0x00000000 0x0 application/Debug/obj/pinmap_common.o + .text.pinmap_pinout + 0x00000000 0x4 application/Debug/obj/pinmap_common.o + .text 0x00000000 0x0 application/Debug/obj/port_api.o + .data 0x00000000 0x0 application/Debug/obj/port_api.o + .bss 0x00000000 0x0 application/Debug/obj/port_api.o + .text.port_pin + 0x00000000 0x8 application/Debug/obj/port_api.o + .text.port_dir + 0x00000000 0x54 application/Debug/obj/port_api.o + .text.port_init + 0x00000000 0x8c application/Debug/obj/port_api.o + .text.port_mode + 0x00000000 0x30 application/Debug/obj/port_api.o + .text.port_write + 0x00000000 0xb8 application/Debug/obj/port_api.o + .text.port_read + 0x00000000 0x78 application/Debug/obj/port_api.o + .rodata.Default_Port_PinDef + 0x00000000 0x64 application/Debug/obj/port_api.o + .rodata.str1.4 + 0x00000000 0x74 application/Debug/obj/port_api.o + .debug_info 0x00000000 0xd30 application/Debug/obj/port_api.o + .debug_abbrev 0x00000000 0x22f application/Debug/obj/port_api.o + .debug_loc 0x00000000 0x3f3 application/Debug/obj/port_api.o + .debug_aranges + 0x00000000 0x48 application/Debug/obj/port_api.o + .debug_ranges 0x00000000 0x38 application/Debug/obj/port_api.o + .debug_line 0x00000000 0x40c application/Debug/obj/port_api.o + .debug_str 0x00000000 0xca6 application/Debug/obj/port_api.o + .comment 0x00000000 0x71 application/Debug/obj/port_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/port_api.o + .debug_frame 0x00000000 0xd0 application/Debug/obj/port_api.o + .text 0x00000000 0x0 application/Debug/obj/pwmout_api.o + .data 0x00000000 0x0 application/Debug/obj/pwmout_api.o + .bss 0x00000000 0x0 application/Debug/obj/pwmout_api.o + .text.pwmout_free + 0x00000000 0x8 application/Debug/obj/pwmout_api.o + .text.pwmout_write + 0x00000000 0x48 application/Debug/obj/pwmout_api.o + .text.pwmout_read + 0x00000000 0x34 application/Debug/obj/pwmout_api.o + .text.pwmout_period_us + 0x00000000 0x4c application/Debug/obj/pwmout_api.o + .text.pwmout_init + 0x00000000 0xb0 application/Debug/obj/pwmout_api.o + .text.pwmout_period + 0x00000000 0x20 application/Debug/obj/pwmout_api.o + .text.pwmout_period_ms + 0x00000000 0xc application/Debug/obj/pwmout_api.o + .text.pwmout_pulsewidth + 0x00000000 0x34 application/Debug/obj/pwmout_api.o + .text.pwmout_pulsewidth_ms + 0x00000000 0x2c application/Debug/obj/pwmout_api.o + .text.pwmout_pulsewidth_us + 0x00000000 0x28 application/Debug/obj/pwmout_api.o + .rodata.PinMap_PWM + 0x00000000 0xcc application/Debug/obj/pwmout_api.o + .rodata.str1.4 + 0x00000000 0x84 application/Debug/obj/pwmout_api.o + .rodata.__FUNCTION__.8878 + 0x00000000 0xc application/Debug/obj/pwmout_api.o + .debug_info 0x00000000 0xf0e application/Debug/obj/pwmout_api.o + .debug_abbrev 0x00000000 0x2c1 application/Debug/obj/pwmout_api.o + .debug_loc 0x00000000 0x7ac application/Debug/obj/pwmout_api.o + .debug_aranges + 0x00000000 0x68 application/Debug/obj/pwmout_api.o + .debug_ranges 0x00000000 0xa8 application/Debug/obj/pwmout_api.o + .debug_line 0x00000000 0x424 application/Debug/obj/pwmout_api.o + .debug_str 0x00000000 0xc92 application/Debug/obj/pwmout_api.o + .comment 0x00000000 0x71 application/Debug/obj/pwmout_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pwmout_api.o + .debug_frame 0x00000000 0x114 application/Debug/obj/pwmout_api.o + .text 0x00000000 0x0 application/Debug/obj/rtc_api.o + .data 0x00000000 0x0 application/Debug/obj/rtc_api.o + .bss 0x00000000 0x0 application/Debug/obj/rtc_api.o + .text.sw_rtc_tick_handler + 0x00000000 0xb0 application/Debug/obj/rtc_api.o + .text.rtc_init + 0x00000000 0x30 application/Debug/obj/rtc_api.o + .text.rtc_free + 0x00000000 0x24 application/Debug/obj/rtc_api.o + .text.rtc_isenabled + 0x00000000 0xc application/Debug/obj/rtc_api.o + .text.rtc_read + 0x00000000 0xc application/Debug/obj/rtc_api.o + .text.rtc_write + 0x00000000 0x50 application/Debug/obj/rtc_api.o + .bss.rtc_timeinfo + 0x00000000 0x24 application/Debug/obj/rtc_api.o + .bss.sw_rtc 0x00000000 0x2c application/Debug/obj/rtc_api.o + .rodata.dim 0x00000000 0x10 application/Debug/obj/rtc_api.o + .bss.sw_rtc_en + 0x00000000 0x4 application/Debug/obj/rtc_api.o + .debug_info 0x00000000 0xa22 application/Debug/obj/rtc_api.o + .debug_abbrev 0x00000000 0x29d application/Debug/obj/rtc_api.o + .debug_loc 0x00000000 0x1d0 application/Debug/obj/rtc_api.o + .debug_aranges + 0x00000000 0x48 application/Debug/obj/rtc_api.o + .debug_ranges 0x00000000 0x90 application/Debug/obj/rtc_api.o + .debug_line 0x00000000 0x3d2 application/Debug/obj/rtc_api.o + .debug_str 0x00000000 0xa27 application/Debug/obj/rtc_api.o + .comment 0x00000000 0x71 application/Debug/obj/rtc_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rtc_api.o + .debug_frame 0x00000000 0x9c application/Debug/obj/rtc_api.o + .text 0x00000000 0x0 application/Debug/obj/serial_api.o + .data 0x00000000 0x0 application/Debug/obj/serial_api.o + .bss 0x00000000 0x0 application/Debug/obj/serial_api.o + .text.serial_free + 0x00000000 0x4c application/Debug/obj/serial_api.o + .text.serial_readable + 0x00000000 0x18 application/Debug/obj/serial_api.o + .text.serial_writable + 0x00000000 0x18 application/Debug/obj/serial_api.o + .text.serial_clear + 0x00000000 0x8 application/Debug/obj/serial_api.o + .text.serial_clear_tx + 0x00000000 0x8 application/Debug/obj/serial_api.o + .text.serial_clear_rx + 0x00000000 0x8 application/Debug/obj/serial_api.o + .text.serial_pinout_tx + 0x00000000 0xc application/Debug/obj/serial_api.o + .text.serial_break_set + 0x00000000 0x18 application/Debug/obj/serial_api.o + .text.serial_break_clear + 0x00000000 0x18 application/Debug/obj/serial_api.o + .text.serial_send_comp_handler + 0x00000000 0xc application/Debug/obj/serial_api.o + .text.serial_recv_comp_handler + 0x00000000 0xc application/Debug/obj/serial_api.o + .text.serial_recv_blocked + 0x00000000 0x34 application/Debug/obj/serial_api.o + .text.serial_send_blocked + 0x00000000 0x10 application/Debug/obj/serial_api.o + .text.serial_recv_stream + 0x00000000 0x10 application/Debug/obj/serial_api.o + .text.serial_send_stream + 0x00000000 0x2c application/Debug/obj/serial_api.o + .text.serial_recv_stream_dma + 0x00000000 0x64 application/Debug/obj/serial_api.o + .text.serial_send_stream_dma + 0x00000000 0x64 application/Debug/obj/serial_api.o + .text.serial_recv_stream_dma_timeout + 0x00000000 0xe4 application/Debug/obj/serial_api.o + .text.serial_send_stream_abort + 0x00000000 0x34 application/Debug/obj/serial_api.o + .text.serial_recv_stream_abort + 0x00000000 0x2c application/Debug/obj/serial_api.o + .text.serial_disable + 0x00000000 0x8 application/Debug/obj/serial_api.o + .text.serial_enable + 0x00000000 0x8 application/Debug/obj/serial_api.o + .text.serial_recv_stream_timeout + 0x00000000 0xa0 application/Debug/obj/serial_api.o + .text.serial_hook_lock + 0x00000000 0xc application/Debug/obj/serial_api.o + .text.serial_raed_lsr + 0x00000000 0x14 application/Debug/obj/serial_api.o + .text.serial_raed_msr + 0x00000000 0x14 application/Debug/obj/serial_api.o + .bss.serial_dma_en + 0x00000000 0xc application/Debug/obj/serial_api.o + .text 0x00000000 0x0 application/Debug/obj/sleep.o + .data 0x00000000 0x0 application/Debug/obj/sleep.o + .bss 0x00000000 0x0 application/Debug/obj/sleep.o + .text.sleep_ex + 0x00000000 0x14 application/Debug/obj/sleep.o + .text.standby_wakeup_event_add + 0x00000000 0x60 application/Debug/obj/sleep.o + .text.standby_wakeup_event_del + 0x00000000 0x58 application/Debug/obj/sleep.o + .text.deepstandby_ex + 0x00000000 0x18 application/Debug/obj/sleep.o + .text.deepsleep_ex + 0x00000000 0x28 application/Debug/obj/sleep.o + .bss.DStandbyWakeupEvent + 0x00000000 0x8 application/Debug/obj/sleep.o + .text 0x00000000 0x0 application/Debug/obj/spdio_api.o + .data 0x00000000 0x0 application/Debug/obj/spdio_api.o + .bss 0x00000000 0x0 application/Debug/obj/spdio_api.o + .text.spdio_rx_done_cb + 0x00000000 0x30 application/Debug/obj/spdio_api.o + .text.spdio_tx_done_cb + 0x00000000 0x20 application/Debug/obj/spdio_api.o + .text.spdio_tx + 0x00000000 0x14 application/Debug/obj/spdio_api.o + .text.spdio_structinit + 0x00000000 0x18 application/Debug/obj/spdio_api.o + .text.spdio_init + 0x00000000 0x64 application/Debug/obj/spdio_api.o + .text.spdio_deinit + 0x00000000 0x24 application/Debug/obj/spdio_api.o + .rodata.str1.4 + 0x00000000 0xec application/Debug/obj/spdio_api.o + .bss.g_spdio_priv + 0x00000000 0x4 application/Debug/obj/spdio_api.o + .debug_info 0x00000000 0x57b application/Debug/obj/spdio_api.o + .debug_abbrev 0x00000000 0x1a5 application/Debug/obj/spdio_api.o + .debug_loc 0x00000000 0x341 application/Debug/obj/spdio_api.o + .debug_aranges + 0x00000000 0x48 application/Debug/obj/spdio_api.o + .debug_ranges 0x00000000 0x38 application/Debug/obj/spdio_api.o + .debug_line 0x00000000 0x254 application/Debug/obj/spdio_api.o + .debug_str 0x00000000 0x3f4 application/Debug/obj/spdio_api.o + .comment 0x00000000 0x71 application/Debug/obj/spdio_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/spdio_api.o + .debug_frame 0x00000000 0xa0 application/Debug/obj/spdio_api.o + .text 0x00000000 0x0 application/Debug/obj/spi_api.o + .data 0x00000000 0x0 application/Debug/obj/spi_api.o + .bss 0x00000000 0x0 application/Debug/obj/spi_api.o + .text.spi_bus_tx_done_callback + 0x00000000 0x14 application/Debug/obj/spi_api.o + .text.spi_tx_done_callback + 0x00000000 0x24 application/Debug/obj/spi_api.o + .text.spi_rx_done_callback + 0x00000000 0x20 application/Debug/obj/spi_api.o + .text.spi_init + 0x00000000 0x1c8 application/Debug/obj/spi_api.o + .text.spi_free + 0x00000000 0x3c application/Debug/obj/spi_api.o + .text.spi_format + 0x00000000 0xdc application/Debug/obj/spi_api.o + .text.spi_frequency + 0x00000000 0x4 application/Debug/obj/spi_api.o + .text.spi_slave_select + 0x00000000 0x4c application/Debug/obj/spi_api.o + .text.spi_slave_select_bypin + 0x00000000 0x8c application/Debug/obj/spi_api.o + .text.spi_master_write + 0x00000000 0x34 application/Debug/obj/spi_api.o + .text.spi_slave_receive + 0x00000000 0x24 application/Debug/obj/spi_api.o + .text.spi_slave_read + 0x00000000 0x1c application/Debug/obj/spi_api.o + .text.spi_slave_write + 0x00000000 0x20 application/Debug/obj/spi_api.o + .text.spi_busy + 0x00000000 0xc application/Debug/obj/spi_api.o + .text.spi_flush_rx_fifo + 0x00000000 0x3c application/Debug/obj/spi_api.o + .text.spi_slave_read_stream + 0x00000000 0x54 application/Debug/obj/spi_api.o + .text.spi_slave_write_stream + 0x00000000 0x54 application/Debug/obj/spi_api.o + .text.spi_master_read_stream + 0x00000000 0x7c application/Debug/obj/spi_api.o + .text.spi_master_write_stream + 0x00000000 0x54 application/Debug/obj/spi_api.o + .text.spi_master_write_read_stream + 0x00000000 0xb8 application/Debug/obj/spi_api.o + .text.spi_slave_read_stream_timeout + 0x00000000 0x114 application/Debug/obj/spi_api.o + .text.spi_irq_hook + 0x00000000 0xc application/Debug/obj/spi_api.o + .text.spi_bus_tx_done_irq_hook + 0x00000000 0xc application/Debug/obj/spi_api.o + .text.spi_enable + 0x00000000 0x4 application/Debug/obj/spi_api.o + .text.spi_disable + 0x00000000 0x4 application/Debug/obj/spi_api.o + .text.spi_slave_read_stream_dma + 0x00000000 0x84 application/Debug/obj/spi_api.o + .text.spi_slave_write_stream_dma + 0x00000000 0x84 application/Debug/obj/spi_api.o + .text.spi_master_write_read_stream_dma + 0x00000000 0xcc application/Debug/obj/spi_api.o + .text.spi_master_read_stream_dma + 0x00000000 0xbc application/Debug/obj/spi_api.o + .text.spi_master_write_stream_dma + 0x00000000 0x84 application/Debug/obj/spi_api.o + .text.spi_slave_read_stream_dma_timeout + 0x00000000 0x114 application/Debug/obj/spi_api.o + .bss.SPI0_IS_AS_SLAVE + 0x00000000 0x1 application/Debug/obj/spi_api.o + .rodata.CSWTCH.61 + 0x00000000 0xc application/Debug/obj/spi_api.o + .rodata.CSWTCH.62 + 0x00000000 0xc application/Debug/obj/spi_api.o + .rodata.PinMap_SSI_MOSI + 0x00000000 0x6c application/Debug/obj/spi_api.o + .rodata.str1.4 + 0x00000000 0x478 application/Debug/obj/spi_api.o + .rodata.PinMap_SSI_MISO + 0x00000000 0x6c application/Debug/obj/spi_api.o + .bss.SpiGdmaOp + 0x00000000 0x28 application/Debug/obj/spi_api.o + .debug_info 0x00000000 0x3224 application/Debug/obj/spi_api.o + .debug_abbrev 0x00000000 0x448 application/Debug/obj/spi_api.o + .debug_loc 0x00000000 0x1c96 application/Debug/obj/spi_api.o + .debug_aranges + 0x00000000 0x110 application/Debug/obj/spi_api.o + .debug_ranges 0x00000000 0x100 application/Debug/obj/spi_api.o + .debug_line 0x00000000 0x92e application/Debug/obj/spi_api.o + .debug_str 0x00000000 0x203f application/Debug/obj/spi_api.o + .comment 0x00000000 0x71 application/Debug/obj/spi_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/spi_api.o + .debug_frame 0x00000000 0x32c application/Debug/obj/spi_api.o + .text 0x00000000 0x0 application/Debug/obj/sys_api.o + .data 0x00000000 0x0 application/Debug/obj/sys_api.o + .bss 0x00000000 0x0 application/Debug/obj/sys_api.o + .text.sys_jtag_off + 0x00000000 0x4 application/Debug/obj/sys_api.o + .text.sys_clear_ota_signature + 0x00000000 0x114 application/Debug/obj/sys_api.o + .text.sys_recover_ota_signature + 0x00000000 0x174 application/Debug/obj/sys_api.o + .text.sys_log_uart_on + 0x00000000 0x4 application/Debug/obj/sys_api.o + .text.sys_log_uart_off + 0x00000000 0x4 application/Debug/obj/sys_api.o + .text.sys_adc_calibration + 0x00000000 0xf4 application/Debug/obj/sys_api.o + .text.sys_sdram_off + 0x00000000 0x4 application/Debug/obj/sys_api.o + .rodata.str1.4 + 0x00000000 0xd4 application/Debug/obj/sys_api.o + .text 0x00000000 0x0 application/Debug/obj/timer_api.o + .data 0x00000000 0x0 application/Debug/obj/timer_api.o + .bss 0x00000000 0x0 application/Debug/obj/timer_api.o + .text.gtimer_timeout_handler + 0x00000000 0x30 application/Debug/obj/timer_api.o + .text.gtimer_init + 0x00000000 0x7c application/Debug/obj/timer_api.o + .text.gtimer_deinit + 0x00000000 0x4 application/Debug/obj/timer_api.o + .text.gtimer_read_tick + 0x00000000 0x10 application/Debug/obj/timer_api.o + .text.gtimer_read_us + 0x00000000 0x20 application/Debug/obj/timer_api.o + .text.gtimer_reload + 0x00000000 0x8 application/Debug/obj/timer_api.o + .text.gtimer_start + 0x00000000 0x14 application/Debug/obj/timer_api.o + .text.gtimer_start_one_shout + 0x00000000 0x28 application/Debug/obj/timer_api.o + .text.gtimer_start_periodical + 0x00000000 0x30 application/Debug/obj/timer_api.o + .text.gtimer_stop + 0x00000000 0x8 application/Debug/obj/timer_api.o + .rodata.str1.4 + 0x00000000 0x70 application/Debug/obj/timer_api.o + .debug_info 0x00000000 0xe78 application/Debug/obj/timer_api.o + .debug_abbrev 0x00000000 0x31e application/Debug/obj/timer_api.o + .debug_loc 0x00000000 0x6e7 application/Debug/obj/timer_api.o + .debug_aranges + 0x00000000 0x68 application/Debug/obj/timer_api.o + .debug_ranges 0x00000000 0xe8 application/Debug/obj/timer_api.o + .debug_line 0x00000000 0x447 application/Debug/obj/timer_api.o + .debug_str 0x00000000 0xb2e application/Debug/obj/timer_api.o + .comment 0x00000000 0x71 application/Debug/obj/timer_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/timer_api.o + .debug_frame 0x00000000 0xec application/Debug/obj/timer_api.o + .text 0x00000000 0x0 application/Debug/obj/us_ticker.o + .data 0x00000000 0x0 application/Debug/obj/us_ticker.o + .bss 0x00000000 0x0 application/Debug/obj/us_ticker.o + .text._us_ticker_irq_handler + 0x00000000 0x4 application/Debug/obj/us_ticker.o + .text.us_ticker_init + 0x00000000 0x68 application/Debug/obj/us_ticker.o + .text.us_ticker_set_interrupt + 0x00000000 0x38 application/Debug/obj/us_ticker.o + .text.us_ticker_disable_interrupt + 0x00000000 0x18 application/Debug/obj/us_ticker.o + .text.us_ticker_clear_interrupt + 0x00000000 0x18 application/Debug/obj/us_ticker.o + .rodata.__FUNCTION__.8855 + 0x00000000 0x10 application/Debug/obj/us_ticker.o + .rodata.str1.4 + 0x00000000 0x1c application/Debug/obj/us_ticker.o + .bss.us_ticker_inited + 0x00000000 0x4 application/Debug/obj/us_ticker.o + .bss.TimerAdapter + 0x00000000 0x20 application/Debug/obj/us_ticker.o + .text 0x00000000 0x0 application/Debug/obj/us_ticker_api.o + .data 0x00000000 0x0 application/Debug/obj/us_ticker_api.o + .bss 0x00000000 0x0 application/Debug/obj/us_ticker_api.o + .text.us_ticker_set_handler + 0x00000000 0x14 application/Debug/obj/us_ticker_api.o + .text.us_ticker_irq_handler + 0x00000000 0x4c application/Debug/obj/us_ticker_api.o + .text.us_ticker_insert_event + 0x00000000 0x4c application/Debug/obj/us_ticker_api.o + .text.us_ticker_remove_event + 0x00000000 0x4c application/Debug/obj/us_ticker_api.o + .bss.head 0x00000000 0x4 application/Debug/obj/us_ticker_api.o + .bss.event_handler + 0x00000000 0x4 application/Debug/obj/us_ticker_api.o + .debug_info 0x00000000 0x74d application/Debug/obj/us_ticker_api.o + .debug_abbrev 0x00000000 0x20c application/Debug/obj/us_ticker_api.o + .debug_loc 0x00000000 0x1ce application/Debug/obj/us_ticker_api.o + .debug_aranges + 0x00000000 0x38 application/Debug/obj/us_ticker_api.o + .debug_ranges 0x00000000 0x78 application/Debug/obj/us_ticker_api.o + .debug_line 0x00000000 0x34d application/Debug/obj/us_ticker_api.o + .debug_str 0x00000000 0x8e3 application/Debug/obj/us_ticker_api.o + .comment 0x00000000 0x71 application/Debug/obj/us_ticker_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/us_ticker_api.o + .debug_frame 0x00000000 0x78 application/Debug/obj/us_ticker_api.o + .text 0x00000000 0x0 application/Debug/obj/wait_api.o + .data 0x00000000 0x0 application/Debug/obj/wait_api.o + .bss 0x00000000 0x0 application/Debug/obj/wait_api.o + .text.wait_us 0x00000000 0x18 application/Debug/obj/wait_api.o + .text.wait 0x00000000 0x18 application/Debug/obj/wait_api.o + .text.wait_ms 0x00000000 0xc application/Debug/obj/wait_api.o + .debug_info 0x00000000 0x13c application/Debug/obj/wait_api.o + .debug_abbrev 0x00000000 0xcf application/Debug/obj/wait_api.o + .debug_loc 0x00000000 0x62 application/Debug/obj/wait_api.o + .debug_aranges + 0x00000000 0x30 application/Debug/obj/wait_api.o + .debug_ranges 0x00000000 0x20 application/Debug/obj/wait_api.o + .debug_line 0x00000000 0x196 application/Debug/obj/wait_api.o + .debug_str 0x00000000 0x23f application/Debug/obj/wait_api.o + .comment 0x00000000 0x71 application/Debug/obj/wait_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/wait_api.o + .debug_frame 0x00000000 0x54 application/Debug/obj/wait_api.o + .text 0x00000000 0x0 application/Debug/obj/wdt_api.o + .data 0x00000000 0x0 application/Debug/obj/wdt_api.o + .bss 0x00000000 0x0 application/Debug/obj/wdt_api.o + .text.watchdog_init + 0x00000000 0x4 application/Debug/obj/wdt_api.o + .text.watchdog_start + 0x00000000 0x4 application/Debug/obj/wdt_api.o + .text.watchdog_stop + 0x00000000 0x4 application/Debug/obj/wdt_api.o + .text.watchdog_refresh + 0x00000000 0x4 application/Debug/obj/wdt_api.o + .text.watchdog_irq_init + 0x00000000 0x10 application/Debug/obj/wdt_api.o + .debug_info 0x00000000 0x5f1 application/Debug/obj/wdt_api.o + .debug_abbrev 0x00000000 0x17e application/Debug/obj/wdt_api.o + .debug_loc 0x00000000 0x63 application/Debug/obj/wdt_api.o + .debug_aranges + 0x00000000 0x40 application/Debug/obj/wdt_api.o + .debug_ranges 0x00000000 0x30 application/Debug/obj/wdt_api.o + .debug_line 0x00000000 0x2d6 application/Debug/obj/wdt_api.o + .debug_str 0x00000000 0x7de application/Debug/obj/wdt_api.o + .comment 0x00000000 0x71 application/Debug/obj/wdt_api.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/wdt_api.o + .debug_frame 0x00000000 0x68 application/Debug/obj/wdt_api.o + .text 0x00000000 0x0 application/Debug/obj/hal_32k.o + .data 0x00000000 0x0 application/Debug/obj/hal_32k.o + .bss 0x00000000 0x0 application/Debug/obj/hal_32k.o + .text.WDGIrqHandle + 0x00000000 0x30 application/Debug/obj/hal_32k.o + .text.WDGInitial + 0x00000000 0xc8 application/Debug/obj/hal_32k.o + .text.WDGIrqInitial + 0x00000000 0x50 application/Debug/obj/hal_32k.o + .text.WDGStart + 0x00000000 0x18 application/Debug/obj/hal_32k.o + .text.WDGStop 0x00000000 0x18 application/Debug/obj/hal_32k.o + .text.WDGRefresh + 0x00000000 0x1c application/Debug/obj/hal_32k.o + .text.WDGIrqCallBackReg + 0x00000000 0xc application/Debug/obj/hal_32k.o + .bss.WDGAdapter + 0x00000000 0x3c application/Debug/obj/hal_32k.o + .text 0x00000000 0x0 application/Debug/obj/hal_adc.o + .data 0x00000000 0x0 application/Debug/obj/hal_adc.o + .bss 0x00000000 0x0 application/Debug/obj/hal_adc.o + .text.HalADCOpInit + 0x00000000 0x38 application/Debug/obj/hal_adc.o + .text.ADCGDMAISRHandle + 0x00000000 0x74 application/Debug/obj/hal_adc.o + .text.ADCISRHandle + 0x00000000 0x68 application/Debug/obj/hal_adc.o + .text.RtkADCGetMngtAdpt + 0x00000000 0xc0 application/Debug/obj/hal_adc.o + .text.RtkADCFreeMngtAdpt + 0x00000000 0x5c application/Debug/obj/hal_adc.o + .text.RtkADCPinMuxInit + 0x00000000 0x30 application/Debug/obj/hal_adc.o + .text.RtkADCInit + 0x00000000 0x2a0 application/Debug/obj/hal_adc.o + .text.RtkADCReceive + 0x00000000 0x5c application/Debug/obj/hal_adc.o + .text.RtkADCReceiveBuf + 0x00000000 0x1a4 application/Debug/obj/hal_adc.o + .text.RtkADCRxManualRotate + 0x00000000 0x314 application/Debug/obj/hal_adc.o + .text.RtkADCGetSalHnd + 0x00000000 0x14 application/Debug/obj/hal_adc.o + .text.RtkADCFreeSalHnd + 0x00000000 0x8 application/Debug/obj/hal_adc.o + .text.RtkADCLoadDefault + 0x00000000 0x58 application/Debug/obj/hal_adc.o + .text.RtkADCDisablePS + 0x00000000 0x38 application/Debug/obj/hal_adc.o + .text.RtkADCEnablePS + 0x00000000 0x30 application/Debug/obj/hal_adc.o + .text.RtkADCDeInit + 0x00000000 0x180 application/Debug/obj/hal_adc.o + .bss.SalAdcInitialFlag + 0x00000000 0x1 application/Debug/obj/hal_adc.o + .rodata.str1.4 + 0x00000000 0x538 application/Debug/obj/hal_adc.o + .bss.ADCDatBuf + 0x00000000 0x8 application/Debug/obj/hal_adc.o + .rodata.__func__.9347 + 0x00000000 0xc application/Debug/obj/hal_adc.o + .bss.SalAdcEnableState + 0x00000000 0x1 application/Debug/obj/hal_adc.o + .bss.ADCFullStsFlag + 0x00000000 0x1 application/Debug/obj/hal_adc.o + .bss.SalAdcInitialDatKeep + 0x00000000 0x28 application/Debug/obj/hal_adc.o + .debug_info 0x00000000 0x24aa application/Debug/obj/hal_adc.o + .debug_abbrev 0x00000000 0x3c8 application/Debug/obj/hal_adc.o + .debug_loc 0x00000000 0x1201 application/Debug/obj/hal_adc.o + .debug_aranges + 0x00000000 0x98 application/Debug/obj/hal_adc.o + .debug_ranges 0x00000000 0x160 application/Debug/obj/hal_adc.o + .debug_line 0x00000000 0x904 application/Debug/obj/hal_adc.o + .debug_str 0x00000000 0x1873 application/Debug/obj/hal_adc.o + .comment 0x00000000 0x71 application/Debug/obj/hal_adc.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hal_adc.o + .debug_frame 0x00000000 0x1e4 application/Debug/obj/hal_adc.o + .text 0x00000000 0x0 application/Debug/obj/hal_gdma.o + .data 0x00000000 0x0 application/Debug/obj/hal_gdma.o + .bss 0x00000000 0x0 application/Debug/obj/hal_gdma.o + .text.HalGdmaMemIrqHandler + 0x00000000 0x24 application/Debug/obj/hal_gdma.o + .text.HalGdmaOn + 0x00000000 0x10 application/Debug/obj/hal_gdma.o + .text.HalGdmaOff + 0x00000000 0x10 application/Debug/obj/hal_gdma.o + .text.HalGdmaChInit + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .text.HalGdmaChDis + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .text.HalGdmaChEn + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .text.HalGdmaChSeting + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .text.HalGdmaChBlockSeting + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .text.HalGdmaChIsrEn + 0x00000000 0x10 application/Debug/obj/hal_gdma.o + .text.HalGdmaChIsrDis + 0x00000000 0x10 application/Debug/obj/hal_gdma.o + .text.HalGdmaChIsrClean + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .text.HalGdmaChCleanAutoSrc + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .text.HalGdmaChCleanAutoDst + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .text.HalGdmaChnlRegister + 0x00000000 0x60 application/Debug/obj/hal_gdma.o + .text.HalGdmaChnlUnRegister + 0x00000000 0x68 application/Debug/obj/hal_gdma.o + .text.HalGdmaChnlAlloc + 0x00000000 0x3c application/Debug/obj/hal_gdma.o + .text.HalGdmaChnlFree + 0x00000000 0x2c application/Debug/obj/hal_gdma.o + .text.HalGdmaMemCpyAggrInit + 0x00000000 0xf0 application/Debug/obj/hal_gdma.o + .text.HalGdmaMultiBlockSetting + 0x00000000 0xd0 application/Debug/obj/hal_gdma.o + .text.HalGdmaLLPMemAlign + 0x00000000 0xa4 application/Debug/obj/hal_gdma.o + .text.HalGdmaMemAggr + 0x00000000 0x84 application/Debug/obj/hal_gdma.o + .text.HalGdmaMemCpyInit + 0x00000000 0xdc application/Debug/obj/hal_gdma.o + .text.HalGdmaMemCpyDeInit + 0x00000000 0x28 application/Debug/obj/hal_gdma.o + .text.HalGdmaMemCpy + 0x00000000 0xc8 application/Debug/obj/hal_gdma.o + .rodata.__FUNCTION__.8682 + 0x00000000 0x14 application/Debug/obj/hal_gdma.o + .rodata.HalGdmaChnlEn + 0x00000000 0xc application/Debug/obj/hal_gdma.o + .rodata.__FUNCTION__.8696 + 0x00000000 0x10 application/Debug/obj/hal_gdma.o + .rodata.__FUNCTION__.8641 + 0x00000000 0x18 application/Debug/obj/hal_gdma.o + .rodata.GDMA_Chnl_Option + 0x00000000 0x34 application/Debug/obj/hal_gdma.o + .rodata.GDMA_Multi_Block_Chnl_Option + 0x00000000 0x14 application/Debug/obj/hal_gdma.o + .rodata.str1.4 + 0x00000000 0xa4 application/Debug/obj/hal_gdma.o + .bss.HalGdmaReg + 0x00000000 0x4 application/Debug/obj/hal_gdma.o + .rodata.__FUNCTION__.8674 + 0x00000000 0x10 application/Debug/obj/hal_gdma.o + .text 0x00000000 0x0 application/Debug/obj/hal_gpio.o + .data 0x00000000 0x0 application/Debug/obj/hal_gpio.o + .bss 0x00000000 0x0 application/Debug/obj/hal_gpio.o + .text.HAL_GPIO_IP_DeInit + 0x00000000 0x24 application/Debug/obj/hal_gpio.o + .text.HAL_GPIO_DeInit + 0x00000000 0x30 application/Debug/obj/hal_gpio.o + .text 0x00000000 0x0 application/Debug/obj/hal_i2c.o + .data 0x00000000 0x0 application/Debug/obj/hal_i2c.o + .bss 0x00000000 0x0 application/Debug/obj/hal_i2c.o + .text.HalI2COpInit_Patch + 0x00000000 0x168 application/Debug/obj/hal_i2c.o + .text.I2CISRHandle_Patch + 0x00000000 0x7fc application/Debug/obj/hal_i2c.o + .text.RtkI2CInitForPS + 0x00000000 0x40 application/Debug/obj/hal_i2c.o + .text.RtkI2CDisablePS + 0x00000000 0x8c application/Debug/obj/hal_i2c.o + .text.RtkI2CEnablePS + 0x00000000 0x88 application/Debug/obj/hal_i2c.o + .text.RtkI2CDeInitForPS + 0x00000000 0x74 application/Debug/obj/hal_i2c.o + .text.RtkI2CSend_Patch + 0x00000000 0x8f4 application/Debug/obj/hal_i2c.o + .text.RtkI2CReceive_Patch + 0x00000000 0x8e4 application/Debug/obj/hal_i2c.o + .text.RtkI2CGetMngtAdpt + 0x00000000 0xfc application/Debug/obj/hal_i2c.o + .text.RtkI2CFreeMngtAdpt + 0x00000000 0x74 application/Debug/obj/hal_i2c.o + .text.RtkI2CGetSalHnd + 0x00000000 0x20 application/Debug/obj/hal_i2c.o + .text.RtkI2CFreeSalHnd + 0x00000000 0x8 application/Debug/obj/hal_i2c.o + .text.RtkSalI2CSts + 0x00000000 0x34 application/Debug/obj/hal_i2c.o + .bss.HalI2C3TxGdmaAdpt + 0x00000000 0x68 application/Debug/obj/hal_i2c.o + .bss.I2C3IrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.HalI2C0RxGdmaAdpt + 0x00000000 0x68 application/Debug/obj/hal_i2c.o + .bss.SalI2C2UserCBAdpt + 0x00000000 0x58 application/Debug/obj/hal_i2c.o + .bss.HalI2C2TxGdmaAdpt + 0x00000000 0x68 application/Debug/obj/hal_i2c.o + .bss.HalI2C3RxGdmaAdpt + 0x00000000 0x68 application/Debug/obj/hal_i2c.o + .bss.SalI2C0DmaUserDef + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.SalI2C0HndPriv + 0x00000000 0x38 application/Debug/obj/hal_i2c.o + .bss.I2C0TxGdmaIrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.HalI2C2InitData + 0x00000000 0x28 application/Debug/obj/hal_i2c.o + .bss.SalI2C3DmaUserDef + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.SalI2C2MngtAdpt + 0x00000000 0x4c application/Debug/obj/hal_i2c.o + .bss.I2C1TxGdmaIrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.I2C2IrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.I2C2TxGdmaIrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.SalI2C0MngtAdpt + 0x00000000 0x4c application/Debug/obj/hal_i2c.o + .bss.HalI2C2RxGdmaAdpt + 0x00000000 0x68 application/Debug/obj/hal_i2c.o + .bss.HalI2C2GdmaOp + 0x00000000 0x28 application/Debug/obj/hal_i2c.o + .bss.HalI2COpSAL + 0x00000000 0x34 application/Debug/obj/hal_i2c.o + .bss.HalI2C0InitData + 0x00000000 0x28 application/Debug/obj/hal_i2c.o + .bss.I2C0IrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.SalI2C0UserCBAdpt + 0x00000000 0x58 application/Debug/obj/hal_i2c.o + .bss.I2C0RxGdmaIrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.SalI2C2DmaUserDef + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.SalI2C1UserCBAdpt + 0x00000000 0x58 application/Debug/obj/hal_i2c.o + .bss.HalI2C1TxGdmaAdpt + 0x00000000 0x68 application/Debug/obj/hal_i2c.o + .bss.I2C3RxGdmaIrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.SalI2C3HndPriv + 0x00000000 0x38 application/Debug/obj/hal_i2c.o + .bss.I2C1RxGdmaIrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.I2C3TxGdmaIrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.HalI2C3InitData + 0x00000000 0x28 application/Debug/obj/hal_i2c.o + .bss.SalI2C3MngtAdpt + 0x00000000 0x4c application/Debug/obj/hal_i2c.o + .bss.SalI2C0UserCB + 0x00000000 0x2c application/Debug/obj/hal_i2c.o + .bss.HalI2C1GdmaOp + 0x00000000 0x28 application/Debug/obj/hal_i2c.o + .bss.HalI2C1RxGdmaAdpt + 0x00000000 0x68 application/Debug/obj/hal_i2c.o + .bss.HalI2C0GdmaOp + 0x00000000 0x28 application/Debug/obj/hal_i2c.o + .bss.SalI2C1UserCB + 0x00000000 0x2c application/Debug/obj/hal_i2c.o + .bss.SalI2C1DmaUserDef + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.I2C2RxGdmaIrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .bss.HalI2C0TxGdmaAdpt + 0x00000000 0x68 application/Debug/obj/hal_i2c.o + .bss.HalI2C1InitData + 0x00000000 0x28 application/Debug/obj/hal_i2c.o + .bss.SalI2C3UserCBAdpt + 0x00000000 0x58 application/Debug/obj/hal_i2c.o + .bss.SalI2C1MngtAdpt + 0x00000000 0x4c application/Debug/obj/hal_i2c.o + .bss.HalI2C3GdmaOp + 0x00000000 0x28 application/Debug/obj/hal_i2c.o + .bss.SalI2C1HndPriv + 0x00000000 0x38 application/Debug/obj/hal_i2c.o + .bss.SalI2C2HndPriv + 0x00000000 0x38 application/Debug/obj/hal_i2c.o + .bss.SalI2C2UserCB + 0x00000000 0x2c application/Debug/obj/hal_i2c.o + .bss.SalI2C3UserCB + 0x00000000 0x2c application/Debug/obj/hal_i2c.o + .rodata.str1.4 + 0x00000000 0x7ac application/Debug/obj/hal_i2c.o + .bss.I2C1IrqHandleDat + 0x00000000 0x10 application/Debug/obj/hal_i2c.o + .debug_info 0x00000000 0x386d application/Debug/obj/hal_i2c.o + .debug_abbrev 0x00000000 0x440 application/Debug/obj/hal_i2c.o + .debug_loc 0x00000000 0x2d8e application/Debug/obj/hal_i2c.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/hal_i2c.o + .debug_ranges 0x00000000 0xd0 application/Debug/obj/hal_i2c.o + .debug_line 0x00000000 0xecd application/Debug/obj/hal_i2c.o + .debug_str 0x00000000 0x1f5a application/Debug/obj/hal_i2c.o + .comment 0x00000000 0x71 application/Debug/obj/hal_i2c.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hal_i2c.o + .debug_frame 0x00000000 0x194 application/Debug/obj/hal_i2c.o + .text 0x00000000 0x0 application/Debug/obj/hal_i2s.o + .data 0x00000000 0x0 application/Debug/obj/hal_i2s.o + .bss 0x00000000 0x0 application/Debug/obj/hal_i2s.o + .text.I2SISRHandle + 0x00000000 0xcc application/Debug/obj/hal_i2s.o + .text.RtkI2SInit + 0x00000000 0x244 application/Debug/obj/hal_i2s.o + .text.RtkI2SDeInit + 0x00000000 0xf0 application/Debug/obj/hal_i2s.o + .text.RtkI2SEnable + 0x00000000 0x3c application/Debug/obj/hal_i2s.o + .text.RtkI2SDisable + 0x00000000 0x3c application/Debug/obj/hal_i2s.o + .text.RtkI2SIoCtrl + 0x00000000 0x4 application/Debug/obj/hal_i2s.o + .text.RtkI2SPowerCtrl + 0x00000000 0x4 application/Debug/obj/hal_i2s.o + .text.RtkI2SLoadDefault + 0x00000000 0x64 application/Debug/obj/hal_i2s.o + .text.HalI2SOpInit + 0x00000000 0xa4 application/Debug/obj/hal_i2s.o + .text.HalI2SInit + 0x00000000 0x40 application/Debug/obj/hal_i2s.o + .text.HalI2SDisable + 0x00000000 0x28 application/Debug/obj/hal_i2s.o + .text.HalI2SEnable + 0x00000000 0x28 application/Debug/obj/hal_i2s.o + .text.HalI2SDeInit + 0x00000000 0x68 application/Debug/obj/hal_i2s.o + .rodata.str1.4 + 0x00000000 0x1c8 application/Debug/obj/hal_i2s.o + .bfsram.data 0x00000000 0x3c application/Debug/obj/hal_i2s.o + .debug_info 0x00000000 0x1408 application/Debug/obj/hal_i2s.o + .debug_abbrev 0x00000000 0x3ce application/Debug/obj/hal_i2s.o + .debug_loc 0x00000000 0x711 application/Debug/obj/hal_i2s.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/hal_i2s.o + .debug_ranges 0x00000000 0x118 application/Debug/obj/hal_i2s.o + .debug_line 0x00000000 0x5b0 application/Debug/obj/hal_i2s.o + .debug_str 0x00000000 0xe79 application/Debug/obj/hal_i2s.o + .comment 0x00000000 0x71 application/Debug/obj/hal_i2s.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hal_i2s.o + .debug_frame 0x00000000 0x180 application/Debug/obj/hal_i2s.o + .text 0x00000000 0x0 application/Debug/obj/hal_mii.o + .data 0x00000000 0x0 application/Debug/obj/hal_mii.o + .bss 0x00000000 0x0 application/Debug/obj/hal_mii.o + .text.HalMiiInit + 0x00000000 0x18 application/Debug/obj/hal_mii.o + .text.HalMiiDeInit + 0x00000000 0x4 application/Debug/obj/hal_mii.o + .text.HalMiiWriteData + 0x00000000 0x4 application/Debug/obj/hal_mii.o + .text.HalMiiSendPacket + 0x00000000 0x4 application/Debug/obj/hal_mii.o + .text.HalMiiReceivePacket + 0x00000000 0x4 application/Debug/obj/hal_mii.o + .text.HalMiiReadData + 0x00000000 0x4 application/Debug/obj/hal_mii.o + .text.HalMiiGetMacAddress + 0x00000000 0x4 application/Debug/obj/hal_mii.o + .text.HalMiiGetLinkStatus + 0x00000000 0x4 application/Debug/obj/hal_mii.o + .text.HalMiiForceLink + 0x00000000 0x4 application/Debug/obj/hal_mii.o + .bss.HalEtherAdp + 0x00000000 0x2c application/Debug/obj/hal_mii.o + .debug_info 0x00000000 0x892 application/Debug/obj/hal_mii.o + .debug_abbrev 0x00000000 0x1e9 application/Debug/obj/hal_mii.o + .debug_loc 0x00000000 0xe7 application/Debug/obj/hal_mii.o + .debug_aranges + 0x00000000 0x60 application/Debug/obj/hal_mii.o + .debug_ranges 0x00000000 0x50 application/Debug/obj/hal_mii.o + .debug_line 0x00000000 0x31b application/Debug/obj/hal_mii.o + .debug_str 0x00000000 0x9fd application/Debug/obj/hal_mii.o + .comment 0x00000000 0x71 application/Debug/obj/hal_mii.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hal_mii.o + .debug_frame 0x00000000 0xa8 application/Debug/obj/hal_mii.o + .text 0x00000000 0x0 application/Debug/obj/hal_nfc.o + .data 0x00000000 0x0 application/Debug/obj/hal_nfc.o + .bss 0x00000000 0x0 application/Debug/obj/hal_nfc.o + .text.HalNFCOpInit + 0x00000000 0x4 application/Debug/obj/hal_nfc.o + .debug_info 0x00000000 0x4db application/Debug/obj/hal_nfc.o + .debug_abbrev 0x00000000 0x116 application/Debug/obj/hal_nfc.o + .debug_aranges + 0x00000000 0x20 application/Debug/obj/hal_nfc.o + .debug_ranges 0x00000000 0x10 application/Debug/obj/hal_nfc.o + .debug_line 0x00000000 0x258 application/Debug/obj/hal_nfc.o + .debug_str 0x00000000 0x72e application/Debug/obj/hal_nfc.o + .comment 0x00000000 0x71 application/Debug/obj/hal_nfc.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hal_nfc.o + .debug_frame 0x00000000 0x20 application/Debug/obj/hal_nfc.o + .text 0x00000000 0x0 application/Debug/obj/hal_pcm.o + .data 0x00000000 0x0 application/Debug/obj/hal_pcm.o + .bss 0x00000000 0x0 application/Debug/obj/hal_pcm.o + .text.HalPcmOpInit + 0x00000000 0x40 application/Debug/obj/hal_pcm.o + .debug_info 0x00000000 0x13d application/Debug/obj/hal_pcm.o + .debug_abbrev 0x00000000 0xb6 application/Debug/obj/hal_pcm.o + .debug_aranges + 0x00000000 0x20 application/Debug/obj/hal_pcm.o + .debug_ranges 0x00000000 0x10 application/Debug/obj/hal_pcm.o + .debug_line 0x00000000 0xeb application/Debug/obj/hal_pcm.o + .debug_str 0x00000000 0x292 application/Debug/obj/hal_pcm.o + .comment 0x00000000 0x71 application/Debug/obj/hal_pcm.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hal_pcm.o + .debug_frame 0x00000000 0x2c application/Debug/obj/hal_pcm.o + .text 0x00000000 0x0 application/Debug/obj/hal_pwm.o + .data 0x00000000 0x0 application/Debug/obj/hal_pwm.o + .bss 0x00000000 0x0 application/Debug/obj/hal_pwm.o + .text.HAL_Pwm_Init + 0x00000000 0x74 application/Debug/obj/hal_pwm.o + .text.HAL_Pwm_Enable + 0x00000000 0x2c application/Debug/obj/hal_pwm.o + .text.HAL_Pwm_Disable + 0x00000000 0x2c application/Debug/obj/hal_pwm.o + .text.HAL_Pwm_SetDuty + 0x00000000 0x2c application/Debug/obj/hal_pwm.o + .rodata.PWMTimerIdx + 0x00000000 0x4 application/Debug/obj/hal_pwm.o + .rodata.str1.4 + 0x00000000 0xe8 application/Debug/obj/hal_pwm.o + .debug_info 0x00000000 0x811 application/Debug/obj/hal_pwm.o + .debug_abbrev 0x00000000 0x208 application/Debug/obj/hal_pwm.o + .debug_loc 0x00000000 0x2f9 application/Debug/obj/hal_pwm.o + .debug_aranges + 0x00000000 0x38 application/Debug/obj/hal_pwm.o + .debug_ranges 0x00000000 0x28 application/Debug/obj/hal_pwm.o + .debug_line 0x00000000 0x358 application/Debug/obj/hal_pwm.o + .debug_str 0x00000000 0x916 application/Debug/obj/hal_pwm.o + .comment 0x00000000 0x71 application/Debug/obj/hal_pwm.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hal_pwm.o + .debug_frame 0x00000000 0x70 application/Debug/obj/hal_pwm.o + .text 0x00000000 0x0 application/Debug/obj/hal_sdr_controller.o + .data 0x00000000 0x0 application/Debug/obj/hal_sdr_controller.o + .bss 0x00000000 0x0 application/Debug/obj/hal_sdr_controller.o + .text 0x00000000 0x0 application/Debug/obj/hal_ssi.o + .data 0x00000000 0x0 application/Debug/obj/hal_ssi.o + .bss 0x00000000 0x0 application/Debug/obj/hal_ssi.o + .text.HalSsiOpInit + 0x00000000 0x130 application/Debug/obj/hal_ssi.o + .text.HalSsiTxSingleBlkChnl + 0x00000000 0xc4 application/Debug/obj/hal_ssi.o + .text.HalSsiTxGdmaInit + 0x00000000 0x14 application/Debug/obj/hal_ssi.o + .text.HalSsiTxGdmaDeInit + 0x00000000 0x30 application/Debug/obj/hal_ssi.o + .text.HalSsiTxMultiBlkChnl + 0x00000000 0xc0 application/Debug/obj/hal_ssi.o + .text.HalSsiDmaSend + 0x00000000 0x88 application/Debug/obj/hal_ssi.o + .text.HalSsiRxSingleBlkChnl + 0x00000000 0xc4 application/Debug/obj/hal_ssi.o + .text.HalSsiRxGdmaInit + 0x00000000 0x14 application/Debug/obj/hal_ssi.o + .text.HalSsiRxGdmaDeInit + 0x00000000 0x30 application/Debug/obj/hal_ssi.o + .text.HalSsiRxMultiBlkChnl + 0x00000000 0xc0 application/Debug/obj/hal_ssi.o + .text.HalSsiDmaRecv + 0x00000000 0x88 application/Debug/obj/hal_ssi.o + .text.HalSsiInit + 0x00000000 0x94 application/Debug/obj/hal_ssi.o + .text.HalSsiEnable + 0x00000000 0x28 application/Debug/obj/hal_ssi.o + .text.HalSsiDeInit + 0x00000000 0xa8 application/Debug/obj/hal_ssi.o + .text.HalSsiDisable + 0x00000000 0x2c application/Debug/obj/hal_ssi.o + .text.HalSsiEnterCritical + 0x00000000 0x4 application/Debug/obj/hal_ssi.o + .text.HalSsiExitCritical + 0x00000000 0x4 application/Debug/obj/hal_ssi.o + .text.HalSsiTimeout + 0x00000000 0x4 application/Debug/obj/hal_ssi.o + .text.HalSsiStopRecv + 0x00000000 0x4 application/Debug/obj/hal_ssi.o + .text.HalSsiSetFormat + 0x00000000 0x4 application/Debug/obj/hal_ssi.o + .rodata.SpiDefaultSetting + 0x00000000 0x50 application/Debug/obj/hal_ssi.o + .rodata.Ssi2_TX_GDMA_Chnl_Option + 0x00000000 0x1c application/Debug/obj/hal_ssi.o + .rodata.str1.4 + 0x00000000 0x19c application/Debug/obj/hal_ssi.o + .rodata.Ssi_MultiBlk_GDMA_Chnl_Option + 0x00000000 0x14 application/Debug/obj/hal_ssi.o + .rodata.Ssi2_RX_GDMA_Chnl_Option + 0x00000000 0x1c application/Debug/obj/hal_ssi.o + .debug_info 0x00000000 0x23a9 application/Debug/obj/hal_ssi.o + .debug_abbrev 0x00000000 0x39f application/Debug/obj/hal_ssi.o + .debug_loc 0x00000000 0x978 application/Debug/obj/hal_ssi.o + .debug_aranges + 0x00000000 0xb8 application/Debug/obj/hal_ssi.o + .debug_ranges 0x00000000 0xa8 application/Debug/obj/hal_ssi.o + .debug_line 0x00000000 0x6d5 application/Debug/obj/hal_ssi.o + .debug_str 0x00000000 0x1c9a application/Debug/obj/hal_ssi.o + .comment 0x00000000 0x71 application/Debug/obj/hal_ssi.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hal_ssi.o + .debug_frame 0x00000000 0x208 application/Debug/obj/hal_ssi.o + .text 0x00000000 0x0 application/Debug/obj/hal_timer.o + .data 0x00000000 0x0 application/Debug/obj/hal_timer.o + .bss 0x00000000 0x0 application/Debug/obj/hal_timer.o + .text 0x00000000 0x0 application/Debug/obj/hal_uart.o + .data 0x00000000 0x0 application/Debug/obj/hal_uart.o + .bss 0x00000000 0x0 application/Debug/obj/hal_uart.o + .text.HalRuartAdapterInit + 0x00000000 0x34 application/Debug/obj/hal_uart.o + .text.HalRuartTxGdmaInit + 0x00000000 0x128 application/Debug/obj/hal_uart.o + .text.HalRuartTxGdmaDeInit + 0x00000000 0x30 application/Debug/obj/hal_uart.o + .text.HalRuartRxGdmaInit + 0x00000000 0x138 application/Debug/obj/hal_uart.o + .text.HalRuartRxGdmaDeInit + 0x00000000 0x30 application/Debug/obj/hal_uart.o + .text.HalRuartRxIndHook + 0x00000000 0x1c application/Debug/obj/hal_uart.o + .text.HalRuartResetTxFifo + 0x00000000 0x4 application/Debug/obj/hal_uart.o + .text.HalRuartResetRxFifo + 0x00000000 0x4 application/Debug/obj/hal_uart.o + .text.HalRuartResetTRxFifo + 0x00000000 0x4 application/Debug/obj/hal_uart.o + .text.HalRuartDisable + 0x00000000 0x28 application/Debug/obj/hal_uart.o + .text.HalRuartEnable + 0x00000000 0x28 application/Debug/obj/hal_uart.o + .text.HalRuartDeInit + 0x00000000 0x64 application/Debug/obj/hal_uart.o + .text.HalRuartEnterCritical + 0x00000000 0x4 application/Debug/obj/hal_uart.o + .text.HalRuartExitCritical + 0x00000000 0x4 application/Debug/obj/hal_uart.o + .text.HalRuartDmaSend + 0x00000000 0x70 application/Debug/obj/hal_uart.o + .text.HalRuartDmaRecv + 0x00000000 0x64 application/Debug/obj/hal_uart.o + .rodata.Uart2_TX_GDMA_MB_Chnl_Option + 0x00000000 0xc application/Debug/obj/hal_uart.o + .rodata.Uart_GDMA_MB_Chnl_Option + 0x00000000 0x14 application/Debug/obj/hal_uart.o + .rodata.Uart2_RX_GDMA_Chnl_Option + 0x00000000 0x1c application/Debug/obj/hal_uart.o + .rodata.str1.4 + 0x00000000 0x174 application/Debug/obj/hal_uart.o + .rodata.Uart2_RX_GDMA_MB_Chnl_Option + 0x00000000 0xc application/Debug/obj/hal_uart.o + .rodata.Uart2_TX_GDMA_Chnl_Option + 0x00000000 0x1c application/Debug/obj/hal_uart.o + .text 0x00000000 0x0 application/Debug/obj/freertos_pmu.o + .data 0x00000000 0x0 application/Debug/obj/freertos_pmu.o + .bss 0x00000000 0x0 application/Debug/obj/freertos_pmu.o + .text.add_wakeup_event + 0x00000000 0x10 application/Debug/obj/freertos_pmu.o + .text.del_wakeup_event + 0x00000000 0x14 application/Debug/obj/freertos_pmu.o + .text.register_sleep_callback_by_module + 0x00000000 0x44 application/Debug/obj/freertos_pmu.o + .text.register_pre_sleep_callback + 0x00000000 0x28 application/Debug/obj/freertos_pmu.o + .text.register_post_sleep_callback + 0x00000000 0x28 application/Debug/obj/freertos_pmu.o + .text.set_pll_reserved + 0x00000000 0xc application/Debug/obj/freertos_pmu.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_adc.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_adc.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_adc.o + .text.HalADCInit8195a + 0x00000000 0x224 application/Debug/obj/rtl8195a_adc.o + .text.HalADCDeInit8195a + 0x00000000 0x14 application/Debug/obj/rtl8195a_adc.o + .text.HalADCEnableRtl8195a + 0x00000000 0x58 application/Debug/obj/rtl8195a_adc.o + .text.HalADCIntrCtrl8195a + 0x00000000 0x10 application/Debug/obj/rtl8195a_adc.o + .text.HalADCReceiveRtl8195a + 0x00000000 0xc application/Debug/obj/rtl8195a_adc.o + .text.HalADCReadRegRtl8195a + 0x00000000 0xc application/Debug/obj/rtl8195a_adc.o + .rodata.str1.4 + 0x00000000 0xcc application/Debug/obj/rtl8195a_adc.o + .debug_info 0x00000000 0x8c6 application/Debug/obj/rtl8195a_adc.o + .debug_abbrev 0x00000000 0x1ad application/Debug/obj/rtl8195a_adc.o + .debug_loc 0x00000000 0x3db application/Debug/obj/rtl8195a_adc.o + .debug_aranges + 0x00000000 0x48 application/Debug/obj/rtl8195a_adc.o + .debug_ranges 0x00000000 0x38 application/Debug/obj/rtl8195a_adc.o + .debug_line 0x00000000 0x444 application/Debug/obj/rtl8195a_adc.o + .debug_str 0x00000000 0x956 application/Debug/obj/rtl8195a_adc.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_adc.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rtl8195a_adc.o + .debug_frame 0x00000000 0x84 application/Debug/obj/rtl8195a_adc.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_gdma.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_gdma.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_gdma.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_gpio.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_gpio.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_gpio.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_i2c.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_i2c.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_i2c.o + .text.HalI2CSendRtl8195a_Patch + 0x00000000 0x70 application/Debug/obj/rtl8195a_i2c.o + .text.HalI2CMassSendRtl8195a_Patch + 0x00000000 0x88 application/Debug/obj/rtl8195a_i2c.o + .text.HalI2CSetCLKRtl8195a_Patch + 0x00000000 0x2a8 application/Debug/obj/rtl8195a_i2c.o + .text.HalI2CInit8195a_Patch + 0x00000000 0x2c4 application/Debug/obj/rtl8195a_i2c.o + .text.HalI2CEnableRtl8195a_Patch + 0x00000000 0x94 application/Debug/obj/rtl8195a_i2c.o + .rodata.__func__.8622 + 0x00000000 0x1c application/Debug/obj/rtl8195a_i2c.o + .rodata.str1.4 + 0x00000000 0x2cc application/Debug/obj/rtl8195a_i2c.o + .debug_info 0x00000000 0x138d application/Debug/obj/rtl8195a_i2c.o + .debug_abbrev 0x00000000 0x237 application/Debug/obj/rtl8195a_i2c.o + .debug_loc 0x00000000 0xad2 application/Debug/obj/rtl8195a_i2c.o + .debug_aranges + 0x00000000 0x40 application/Debug/obj/rtl8195a_i2c.o + .debug_ranges 0x00000000 0x30 application/Debug/obj/rtl8195a_i2c.o + .debug_line 0x00000000 0x4ca application/Debug/obj/rtl8195a_i2c.o + .debug_str 0x00000000 0xb73 application/Debug/obj/rtl8195a_i2c.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_i2c.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rtl8195a_i2c.o + .debug_frame 0x00000000 0xcc application/Debug/obj/rtl8195a_i2c.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_i2s.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_i2s.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SInitRtl8195a_Patch + 0x00000000 0xfc application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SSetRateRtl8195a + 0x00000000 0x48 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SSetWordLenRtl8195a + 0x00000000 0x28 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SSetChNumRtl8195a + 0x00000000 0x28 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SSetPageNumRtl8195a + 0x00000000 0x28 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SSetPageSizeRtl8195a + 0x00000000 0x2c application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SSetDirectionRtl8195a + 0x00000000 0x2c application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SSetDMABufRtl8195a + 0x00000000 0x78 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SGetTxPageRtl8195a + 0x00000000 0x20 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SGetRxPageRtl8195a + 0x00000000 0x20 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SPageSendRtl8195a + 0x00000000 0x4c application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SPageRecvRtl8195a + 0x00000000 0x64 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SClearAllOwnBitRtl8195a + 0x00000000 0x34 application/Debug/obj/rtl8195a_i2s.o + .text.HalI2SDMACtrlRtl8195a + 0x00000000 0x4 application/Debug/obj/rtl8195a_i2s.o + .rodata.str1.4 + 0x00000000 0x8c application/Debug/obj/rtl8195a_i2s.o + .debug_info 0x00000000 0xfd9 application/Debug/obj/rtl8195a_i2s.o + .debug_abbrev 0x00000000 0x216 application/Debug/obj/rtl8195a_i2s.o + .debug_loc 0x00000000 0x920 application/Debug/obj/rtl8195a_i2s.o + .debug_aranges + 0x00000000 0x88 application/Debug/obj/rtl8195a_i2s.o + .debug_ranges 0x00000000 0x78 application/Debug/obj/rtl8195a_i2s.o + .debug_line 0x00000000 0x485 application/Debug/obj/rtl8195a_i2s.o + .debug_str 0x00000000 0xa3b application/Debug/obj/rtl8195a_i2s.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_i2s.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rtl8195a_i2s.o + .debug_frame 0x00000000 0x194 application/Debug/obj/rtl8195a_i2s.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_mii.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_mii.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_mii.o + .text.Mii_ISR 0x00000000 0xbc application/Debug/obj/rtl8195a_mii.o + .text.HalMiiRwPhyRegRtl8195a.part.0 + 0x00000000 0x14 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiRwPhyRegRtl8195a + 0x00000000 0x40 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiInitIrqRtl8195a + 0x00000000 0x48 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiDeInitRtl8195a + 0x00000000 0x88 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiWriteDataRtl8195a + 0x00000000 0x110 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiSendPacketRtl8195a + 0x00000000 0x38 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiReceivePacketRtl8195a + 0x00000000 0x60 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiReadDataRtl8195a + 0x00000000 0xb8 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiGetMacAddressRtl8195a + 0x00000000 0x20 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiGetLinkStatusRtl8195a + 0x00000000 0x14 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiForceLinkRtl8195a + 0x00000000 0x148 application/Debug/obj/rtl8195a_mii.o + .text.HalMiiInitRtl8195a + 0x00000000 0x380 application/Debug/obj/rtl8195a_mii.o + .bss.RxDesc 0x00000000 0x4 application/Debug/obj/rtl8195a_mii.o + .bss.TxDesc 0x00000000 0x4 application/Debug/obj/rtl8195a_mii.o + .bss.pTxDataBuf + 0x00000000 0x4 application/Debug/obj/rtl8195a_mii.o + .bss.TxDescWrPtr + 0x00000000 0x1 application/Debug/obj/rtl8195a_mii.o + .bss.pRxDataBuf + 0x00000000 0x4 application/Debug/obj/rtl8195a_mii.o + .rodata.str1.4 + 0x00000000 0x254 application/Debug/obj/rtl8195a_mii.o + .bss.RxDescRdPtr + 0x00000000 0x1 application/Debug/obj/rtl8195a_mii.o + .bss.CurrDataLen + 0x00000000 0x4 application/Debug/obj/rtl8195a_mii.o + .debug_info 0x00000000 0x1085 application/Debug/obj/rtl8195a_mii.o + .debug_abbrev 0x00000000 0x37c application/Debug/obj/rtl8195a_mii.o + .debug_loc 0x00000000 0x6ef application/Debug/obj/rtl8195a_mii.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/rtl8195a_mii.o + .debug_ranges 0x00000000 0xa8 application/Debug/obj/rtl8195a_mii.o + .debug_line 0x00000000 0x6a7 application/Debug/obj/rtl8195a_mii.o + .debug_str 0x00000000 0xaf1 application/Debug/obj/rtl8195a_mii.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_mii.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rtl8195a_mii.o + .debug_frame 0x00000000 0x174 application/Debug/obj/rtl8195a_mii.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_nfc.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_nfc.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_nfc.o + .text.LPIrqHandle + 0x00000000 0x64 application/Debug/obj/rtl8195a_nfc.o + .text.WriteA2NMailbox + 0x00000000 0x78 application/Debug/obj/rtl8195a_nfc.o + .text.A2NWriteInQueue + 0x00000000 0xbc application/Debug/obj/rtl8195a_nfc.o + .text.A2NWriteDeQueue + 0x00000000 0xb0 application/Debug/obj/rtl8195a_nfc.o + .text.N2AReadTag + 0x00000000 0x4 application/Debug/obj/rtl8195a_nfc.o + .text.A2NWriteCatch + 0x00000000 0x44 application/Debug/obj/rtl8195a_nfc.o + .text.A2NReadCatch + 0x00000000 0x24 application/Debug/obj/rtl8195a_nfc.o + .text.N2AWriteTag + 0x00000000 0xc application/Debug/obj/rtl8195a_nfc.o + .text.N2AReadCatch + 0x00000000 0x24 application/Debug/obj/rtl8195a_nfc.o + .text.NFCReaderPresent + 0x00000000 0x30 application/Debug/obj/rtl8195a_nfc.o + .text.N2AMailboxState + 0x00000000 0x50 application/Debug/obj/rtl8195a_nfc.o + .text.NFC25MClkReq + 0x00000000 0x44 application/Debug/obj/rtl8195a_nfc.o + .text.NFCRoutine + 0x00000000 0x8c application/Debug/obj/rtl8195a_nfc.o + .text.NFCTaskHandle + 0x00000000 0x2c application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCDmemInit + 0x00000000 0x30 application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCDeinit + 0x00000000 0x70 application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCRead32 + 0x00000000 0xa4 application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCWrite32 + 0x00000000 0x9c application/Debug/obj/rtl8195a_nfc.o + .text.NFCIrqHandle + 0x00000000 0x28 application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCInit + 0x00000000 0x128 application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCFwFullMEM + 0x00000000 0x90 application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCFwDownload + 0x00000000 0xc4 application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCDbgRead32 + 0x00000000 0xa0 application/Debug/obj/rtl8195a_nfc.o + .text.HalNFCDbgWrite32 + 0x00000000 0x98 application/Debug/obj/rtl8195a_nfc.o + .data.NFCFWDMEM + 0x00000000 0x2f8 application/Debug/obj/rtl8195a_nfc.o + .data.NFCFWIMEM + 0x00000000 0x4384 application/Debug/obj/rtl8195a_nfc.o + .bss.LpPeriIrqFunTable + 0x00000000 0x80 application/Debug/obj/rtl8195a_nfc.o + .bss.LpPeriIrqDataTable + 0x00000000 0x80 application/Debug/obj/rtl8195a_nfc.o + .rodata.str1.4 + 0x00000000 0x230 application/Debug/obj/rtl8195a_nfc.o + .debug_info 0x00000000 0x18f3 application/Debug/obj/rtl8195a_nfc.o + .debug_abbrev 0x00000000 0x334 application/Debug/obj/rtl8195a_nfc.o + .debug_loc 0x00000000 0x10ad application/Debug/obj/rtl8195a_nfc.o + .debug_aranges + 0x00000000 0xd8 application/Debug/obj/rtl8195a_nfc.o + .debug_ranges 0x00000000 0x108 application/Debug/obj/rtl8195a_nfc.o + .debug_line 0x00000000 0x84d application/Debug/obj/rtl8195a_nfc.o + .debug_str 0x00000000 0xdf2 application/Debug/obj/rtl8195a_nfc.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_nfc.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rtl8195a_nfc.o + .debug_frame 0x00000000 0x2bc application/Debug/obj/rtl8195a_nfc.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_pwm.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_pwm.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_pwm.o + .text.Pwm_SetTimerTick_8195a + 0x00000000 0x8c application/Debug/obj/rtl8195a_pwm.o + .text.HAL_Pwm_SetDuty_8195a + 0x00000000 0x90 application/Debug/obj/rtl8195a_pwm.o + .text.HAL_Pwm_Init_8195a + 0x00000000 0x30 application/Debug/obj/rtl8195a_pwm.o + .text.HAL_Pwm_Enable_8195a + 0x00000000 0x2c application/Debug/obj/rtl8195a_pwm.o + .text.HAL_Pwm_Disable_8195a + 0x00000000 0x2c application/Debug/obj/rtl8195a_pwm.o + .rodata.__FUNCTION__.8570 + 0x00000000 0x18 application/Debug/obj/rtl8195a_pwm.o + .rodata.str1.4 + 0x00000000 0x70 application/Debug/obj/rtl8195a_pwm.o + .debug_info 0x00000000 0x942 application/Debug/obj/rtl8195a_pwm.o + .debug_abbrev 0x00000000 0x1dc application/Debug/obj/rtl8195a_pwm.o + .debug_loc 0x00000000 0x3a7 application/Debug/obj/rtl8195a_pwm.o + .debug_aranges + 0x00000000 0x40 application/Debug/obj/rtl8195a_pwm.o + .debug_ranges 0x00000000 0x30 application/Debug/obj/rtl8195a_pwm.o + .debug_line 0x00000000 0x389 application/Debug/obj/rtl8195a_pwm.o + .debug_str 0x00000000 0x9fc application/Debug/obj/rtl8195a_pwm.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_pwm.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rtl8195a_pwm.o + .debug_frame 0x00000000 0x9c application/Debug/obj/rtl8195a_pwm.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_ssi.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_ssi.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_ssi.o + .text.SsiRxGdmaIrqHandle + 0x00000000 0x3c application/Debug/obj/rtl8195a_ssi.o + .text.SsiTxGdmaIrqHandle + 0x00000000 0x50 application/Debug/obj/rtl8195a_ssi.o + .text._SsiWriteInterruptRtl8195a + 0x00000000 0x180 application/Debug/obj/rtl8195a_ssi.o + .text._SsiReadInterruptRtl8195a + 0x00000000 0x118 application/Debug/obj/rtl8195a_ssi.o + .text._SsiIrqHandleRtl8195a + 0x00000000 0x13c application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiPinmuxEnableRtl8195a_Patch + 0x00000000 0x138 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiInitRtl8195a_Patch + 0x00000000 0x4ac application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiPinmuxDisableRtl8195a + 0x00000000 0x150 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiDeInitRtl8195a + 0x00000000 0x68 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiClockOnRtl8195a + 0x00000000 0x98 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiClockOffRtl8195a + 0x00000000 0x98 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiSetFormatRtl8195a + 0x00000000 0x1b4 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiSetSclkRtl8195a + 0x00000000 0x100 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiIntReadRtl8195a + 0x00000000 0xd4 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiTxFIFOThresholdRtl8195a + 0x00000000 0x18 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiIntWriteRtl8195a + 0x00000000 0x90 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiEnterCriticalRtl8195a + 0x00000000 0x30 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiExitCriticalRtl8195a + 0x00000000 0x30 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiIsTimeoutRtl8195a + 0x00000000 0x28 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiStopRecvRtl8195a + 0x00000000 0xbc application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiTxGdmaLoadDefRtl8195a + 0x00000000 0x11c application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiRxGdmaLoadDefRtl8195a + 0x00000000 0xf4 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiDmaInitRtl8195a + 0x00000000 0x140 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiDmaSendRtl8195a + 0x00000000 0xc0 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiDmaSendMultiBlockRtl8195a + 0x00000000 0x140 application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiDmaRecvRtl8195a + 0x00000000 0xdc application/Debug/obj/rtl8195a_ssi.o + .text.HalSsiDmaRecvMultiBlockRtl8195a + 0x00000000 0x140 application/Debug/obj/rtl8195a_ssi.o + .rodata.str1.4 + 0x00000000 0xd1c application/Debug/obj/rtl8195a_ssi.o + .debug_info 0x00000000 0x2b2d application/Debug/obj/rtl8195a_ssi.o + .debug_abbrev 0x00000000 0x384 application/Debug/obj/rtl8195a_ssi.o + .debug_loc 0x00000000 0x2400 application/Debug/obj/rtl8195a_ssi.o + .debug_aranges + 0x00000000 0xf0 application/Debug/obj/rtl8195a_ssi.o + .debug_ranges 0x00000000 0x128 application/Debug/obj/rtl8195a_ssi.o + .debug_line 0x00000000 0xd9a application/Debug/obj/rtl8195a_ssi.o + .debug_str 0x00000000 0x19dc application/Debug/obj/rtl8195a_ssi.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_ssi.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rtl8195a_ssi.o + .debug_frame 0x00000000 0x370 application/Debug/obj/rtl8195a_ssi.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_timer.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_timer.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_timer.o + .text.HalTimerIrqDisRtl8195a + 0x00000000 0x18 application/Debug/obj/rtl8195a_timer.o + .text.HalTimerClearIsrRtl8195a + 0x00000000 0x10 application/Debug/obj/rtl8195a_timer.o + .text 0x00000000 0x0 application/Debug/obj/rtl8195a_uart.o + .data 0x00000000 0x0 application/Debug/obj/rtl8195a_uart.o + .bss 0x00000000 0x0 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartResetTxFifoRtl8195a + 0x00000000 0x58 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartResetTRxFifoRtl8195a + 0x00000000 0x78 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartDumpBaudRateTableRtl8195a + 0x00000000 0x1dc application/Debug/obj/rtl8195a_uart.o + .text.HalRuartEnableRtl8195a + 0x00000000 0x78 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartDisableRtl8195a + 0x00000000 0x78 application/Debug/obj/rtl8195a_uart.o + .text._UartTxDmaIrqHandle_Patch + 0x00000000 0x50 application/Debug/obj/rtl8195a_uart.o + .text._UartRxDmaIrqHandle_Patch + 0x00000000 0x68 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartDmaRecvRtl8195a_Patch + 0x00000000 0xe8 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartMultiBlkDmaSendRtl8195a + 0x00000000 0x1a8 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartMultiBlkDmaRecvRtl8195a + 0x00000000 0x188 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartEnterCriticalRtl8195a + 0x00000000 0x30 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartExitCriticalRtl8195a + 0x00000000 0x30 application/Debug/obj/rtl8195a_uart.o + .text.HalRuartDumpRegRtl8195a + 0x00000000 0x4c application/Debug/obj/rtl8195a_uart.o + .text 0x00000000 0x0 application/Debug/obj/bignum.o + .data 0x00000000 0x0 application/Debug/obj/bignum.o + .bss 0x00000000 0x0 application/Debug/obj/bignum.o + .text.mpi_get_digit + 0x00000000 0x44 application/Debug/obj/bignum.o + .text.mpi_sub_hlp + 0x00000000 0x60 application/Debug/obj/bignum.o + .text.mpi_mul_hlp + 0x00000000 0x918 application/Debug/obj/bignum.o + .text.mpi_grow.part.1 + 0x00000000 0x6c application/Debug/obj/bignum.o + .text.mpi_mod_int.part.4 + 0x00000000 0x54 application/Debug/obj/bignum.o + .text.mpi_init + 0x00000000 0x10 application/Debug/obj/bignum.o + .text.mpi_free + 0x00000000 0x3c application/Debug/obj/bignum.o + .text.mpi_grow + 0x00000000 0x28 application/Debug/obj/bignum.o + .text.mpi_shrink + 0x00000000 0xb4 application/Debug/obj/bignum.o + .text.mpi_copy + 0x00000000 0x80 application/Debug/obj/bignum.o + .text.mpi_swap + 0x00000000 0x2c application/Debug/obj/bignum.o + .text.mpi_safe_cond_assign + 0x00000000 0xa0 application/Debug/obj/bignum.o + .text.mpi_safe_cond_swap + 0x00000000 0xb0 application/Debug/obj/bignum.o + .text.mpi_lset + 0x00000000 0x40 application/Debug/obj/bignum.o + .text.mpi_get_bit + 0x00000000 0x20 application/Debug/obj/bignum.o + .text.mpi_set_bit + 0x00000000 0x68 application/Debug/obj/bignum.o + .text.mpi_lsb 0x00000000 0x44 application/Debug/obj/bignum.o + .text.mpi_msb 0x00000000 0x44 application/Debug/obj/bignum.o + .text.mpi_size + 0x00000000 0xc application/Debug/obj/bignum.o + .text.mpi_read_binary + 0x00000000 0xa0 application/Debug/obj/bignum.o + .text.mpi_write_binary + 0x00000000 0x4c application/Debug/obj/bignum.o + .text.mpi_shift_l + 0x00000000 0xc4 application/Debug/obj/bignum.o + .text.mpi_shift_r + 0x00000000 0x7c application/Debug/obj/bignum.o + .text.mpi_cmp_abs + 0x00000000 0xb4 application/Debug/obj/bignum.o + .text.mpi_montmul.isra.3 + 0x00000000 0xdc application/Debug/obj/bignum.o + .text.mpi_cmp_mpi + 0x00000000 0xd0 application/Debug/obj/bignum.o + .text.mpi_cmp_int + 0x00000000 0x2c application/Debug/obj/bignum.o + .text.mpi_add_abs + 0x00000000 0xfc application/Debug/obj/bignum.o + .text.mpi_sub_abs + 0x00000000 0x98 application/Debug/obj/bignum.o + .text.mpi_add_mpi + 0x00000000 0x50 application/Debug/obj/bignum.o + .text.mpi_sub_mpi + 0x00000000 0x50 application/Debug/obj/bignum.o + .text.mpi_add_int + 0x00000000 0x2c application/Debug/obj/bignum.o + .text.mpi_sub_int + 0x00000000 0x2c application/Debug/obj/bignum.o + .text.mpi_mul_mpi + 0x00000000 0x11c application/Debug/obj/bignum.o + .text.mpi_read_string + 0x00000000 0x16c application/Debug/obj/bignum.o + .text.mpi_mul_int + 0x00000000 0x1c application/Debug/obj/bignum.o + .text.mpi_div_mpi + 0x00000000 0x50c application/Debug/obj/bignum.o + .text.mpi_div_int + 0x00000000 0x30 application/Debug/obj/bignum.o + .text.mpi_mod_mpi + 0x00000000 0x64 application/Debug/obj/bignum.o + .text.mpi_mod_int + 0x00000000 0x3c application/Debug/obj/bignum.o + .text.mpi_write_hlp + 0x00000000 0x74 application/Debug/obj/bignum.o + .text.mpi_write_string + 0x00000000 0x124 application/Debug/obj/bignum.o + .text.mpi_check_small_factors + 0x00000000 0x4c application/Debug/obj/bignum.o + .text.mpi_exp_mod + 0x00000000 0x624 application/Debug/obj/bignum.o + .text.mpi_gcd 0x00000000 0x118 application/Debug/obj/bignum.o + .text.mpi_fill_random + 0x00000000 0x38 application/Debug/obj/bignum.o + .text.mpi_miller_rabin + 0x00000000 0x1f4 application/Debug/obj/bignum.o + .text.mpi_inv_mod + 0x00000000 0x308 application/Debug/obj/bignum.o + .text.mpi_is_prime + 0x00000000 0x5c application/Debug/obj/bignum.o + .text.mpi_gen_prime + 0x00000000 0x170 application/Debug/obj/bignum.o + .rodata.str1.4 + 0x00000000 0x14 application/Debug/obj/bignum.o + .rodata.small_prime + 0x00000000 0x2a0 application/Debug/obj/bignum.o + .debug_info 0x00000000 0x4520 application/Debug/obj/bignum.o + .debug_abbrev 0x00000000 0x4b6 application/Debug/obj/bignum.o + .debug_loc 0x00000000 0x7b7a application/Debug/obj/bignum.o + .debug_aranges + 0x00000000 0x1a8 application/Debug/obj/bignum.o + .debug_ranges 0x00000000 0x820 application/Debug/obj/bignum.o + .debug_line 0x00000000 0x1357 application/Debug/obj/bignum.o + .debug_str 0x00000000 0x71a application/Debug/obj/bignum.o + .comment 0x00000000 0x71 application/Debug/obj/bignum.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/bignum.o + .debug_frame 0x00000000 0x644 application/Debug/obj/bignum.o + .text 0x00000000 0x0 application/Debug/obj/cJSON.o + .data 0x00000000 0x0 application/Debug/obj/cJSON.o + .bss 0x00000000 0x0 application/Debug/obj/cJSON.o + .text.cJSON_strcasecmp + 0x00000000 0x9c application/Debug/obj/cJSON.o + .text.parse_hex4 + 0x00000000 0xd8 application/Debug/obj/cJSON.o + .text.cJSON_New_Item + 0x00000000 0x20 application/Debug/obj/cJSON.o + .text.cJSON_strdup + 0x00000000 0x28 application/Debug/obj/cJSON.o + .text.create_reference + 0x00000000 0x48 application/Debug/obj/cJSON.o + .text.print_string_ptr + 0x00000000 0xfc application/Debug/obj/cJSON.o + .text.parse_string.isra.0 + 0x00000000 0x1f0 application/Debug/obj/cJSON.o + .text.print_value + 0x00000000 0x5d0 application/Debug/obj/cJSON.o + .text.cJSON_GetErrorPtr + 0x00000000 0xc application/Debug/obj/cJSON.o + .text.cJSON_InitHooks + 0x00000000 0x44 application/Debug/obj/cJSON.o + .text.cJSON_Delete + 0x00000000 0x44 application/Debug/obj/cJSON.o + .text.parse_number + 0x00000000 0x1f8 application/Debug/obj/cJSON.o + .text.parse_value + 0x00000000 0x358 application/Debug/obj/cJSON.o + .text.cJSON_ParseWithOpts + 0x00000000 0x94 application/Debug/obj/cJSON.o + .text.cJSON_Parse + 0x00000000 0x8 application/Debug/obj/cJSON.o + .text.cJSON_Print + 0x00000000 0x8 application/Debug/obj/cJSON.o + .text.cJSON_PrintUnformatted + 0x00000000 0x8 application/Debug/obj/cJSON.o + .text.cJSON_GetArraySize + 0x00000000 0x14 application/Debug/obj/cJSON.o + .text.cJSON_GetArrayItem + 0x00000000 0x18 application/Debug/obj/cJSON.o + .text.cJSON_GetObjectItem + 0x00000000 0x20 application/Debug/obj/cJSON.o + .text.cJSON_AddItemToArray + 0x00000000 0x1c application/Debug/obj/cJSON.o + .text.cJSON_AddItemToObject + 0x00000000 0x38 application/Debug/obj/cJSON.o + .text.cJSON_AddItemReferenceToArray + 0x00000000 0x24 application/Debug/obj/cJSON.o + .text.cJSON_AddItemReferenceToObject + 0x00000000 0x1c application/Debug/obj/cJSON.o + .text.cJSON_DetachItemFromArray + 0x00000000 0x48 application/Debug/obj/cJSON.o + .text.cJSON_DeleteItemFromArray + 0x00000000 0x10 application/Debug/obj/cJSON.o + .text.cJSON_DetachItemFromObject + 0x00000000 0x30 application/Debug/obj/cJSON.o + .text.cJSON_DeleteItemFromObject + 0x00000000 0x10 application/Debug/obj/cJSON.o + .text.cJSON_ReplaceItemInArray + 0x00000000 0x40 application/Debug/obj/cJSON.o + .text.cJSON_ReplaceItemInObject + 0x00000000 0x4c application/Debug/obj/cJSON.o + .text.cJSON_CreateNull + 0x00000000 0x10 application/Debug/obj/cJSON.o + .text.cJSON_CreateTrue + 0x00000000 0x10 application/Debug/obj/cJSON.o + .text.cJSON_CreateFalse + 0x00000000 0x10 application/Debug/obj/cJSON.o + .text.cJSON_CreateBool + 0x00000000 0x14 application/Debug/obj/cJSON.o + .text.cJSON_CreateNumber + 0x00000000 0x24 application/Debug/obj/cJSON.o + .text.cJSON_CreateString + 0x00000000 0x1c application/Debug/obj/cJSON.o + .text.cJSON_CreateArray + 0x00000000 0x10 application/Debug/obj/cJSON.o + .text.cJSON_CreateObject + 0x00000000 0x10 application/Debug/obj/cJSON.o + .text.cJSON_CreateIntArray + 0x00000000 0x68 application/Debug/obj/cJSON.o + .text.cJSON_CreateFloatArray + 0x00000000 0x74 application/Debug/obj/cJSON.o + .text.cJSON_CreateDoubleArray + 0x00000000 0x68 application/Debug/obj/cJSON.o + .text.cJSON_CreateStringArray + 0x00000000 0x48 application/Debug/obj/cJSON.o + .text.cJSON_Duplicate + 0x00000000 0x90 application/Debug/obj/cJSON.o + .text.cJSON_Minify + 0x00000000 0xb8 application/Debug/obj/cJSON.o + .rodata.firstByteMark + 0x00000000 0x8 application/Debug/obj/cJSON.o + .data.cJSON_free + 0x00000000 0x4 application/Debug/obj/cJSON.o + .rodata.str1.4 + 0x00000000 0x44 application/Debug/obj/cJSON.o + .bss.ep 0x00000000 0x4 application/Debug/obj/cJSON.o + .data.cJSON_malloc + 0x00000000 0x4 application/Debug/obj/cJSON.o + .debug_info 0x00000000 0x2135 application/Debug/obj/cJSON.o + .debug_abbrev 0x00000000 0x4da application/Debug/obj/cJSON.o + .debug_loc 0x00000000 0x3ad1 application/Debug/obj/cJSON.o + .debug_aranges + 0x00000000 0x178 application/Debug/obj/cJSON.o + .debug_ranges 0x00000000 0x428 application/Debug/obj/cJSON.o + .debug_line 0x00000000 0xaab application/Debug/obj/cJSON.o + .debug_str 0x00000000 0x799 application/Debug/obj/cJSON.o + .comment 0x00000000 0x71 application/Debug/obj/cJSON.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/cJSON.o + .debug_frame 0x00000000 0x4c0 application/Debug/obj/cJSON.o + .text 0x00000000 0x0 application/Debug/obj/http_client.o + .data 0x00000000 0x0 application/Debug/obj/http_client.o + .bss 0x00000000 0x0 application/Debug/obj/http_client.o + .text.http_strstr + 0x00000000 0x3c application/Debug/obj/http_client.o + .text.http_free + 0x00000000 0x4 application/Debug/obj/http_client.o + .text.http_post_header + 0x00000000 0xf8 application/Debug/obj/http_client.o + .text.http_get_header + 0x00000000 0x60 application/Debug/obj/http_client.o + .text.http_response_header + 0x00000000 0x60 application/Debug/obj/http_client.o + .text.http_response_body + 0x00000000 0x74 application/Debug/obj/http_client.o + .rodata.str1.4 + 0x00000000 0xc8 application/Debug/obj/http_client.o + .debug_info 0x00000000 0x82d application/Debug/obj/http_client.o + .debug_abbrev 0x00000000 0x217 application/Debug/obj/http_client.o + .debug_loc 0x00000000 0x5a1 application/Debug/obj/http_client.o + .debug_aranges + 0x00000000 0x48 application/Debug/obj/http_client.o + .debug_ranges 0x00000000 0x118 application/Debug/obj/http_client.o + .debug_line 0x00000000 0x286 application/Debug/obj/http_client.o + .debug_str 0x00000000 0x374 application/Debug/obj/http_client.o + .comment 0x00000000 0x71 application/Debug/obj/http_client.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/http_client.o + .debug_frame 0x00000000 0xc8 application/Debug/obj/http_client.o + .text 0x00000000 0x0 application/Debug/obj/uart_socket.o + .data 0x00000000 0x0 application/Debug/obj/uart_socket.o + .bss 0x00000000 0x0 application/Debug/obj/uart_socket.o + .text.uart_action_handler + 0x00000000 0x110 application/Debug/obj/uart_socket.o + .text.uart_send_stream_done + 0x00000000 0x28 application/Debug/obj/uart_socket.o + .text.uart_irq + 0x00000000 0x74 application/Debug/obj/uart_socket.o + .text.uart_open + 0x00000000 0x118 application/Debug/obj/uart_socket.o + .text.uart_close + 0x00000000 0x78 application/Debug/obj/uart_socket.o + .text.uart_read + 0x00000000 0xf0 application/Debug/obj/uart_socket.o + .text.uart_write + 0x00000000 0x5c application/Debug/obj/uart_socket.o + .text.uart_socket_example + 0x00000000 0x174 application/Debug/obj/uart_socket.o + .text.uart_socket + 0x00000000 0x44 application/Debug/obj/uart_socket.o + .rodata 0x00000000 0x10 application/Debug/obj/uart_socket.o + .rodata.__FUNCTION__.11898 + 0x00000000 0xc application/Debug/obj/uart_socket.o + .rodata.str1.4 + 0x00000000 0x248 application/Debug/obj/uart_socket.o + .rodata.__FUNCTION__.11851 + 0x00000000 0xc application/Debug/obj/uart_socket.o + .rodata.__func__.11849 + 0x00000000 0xc application/Debug/obj/uart_socket.o + .rodata.__func__.11856 + 0x00000000 0xc application/Debug/obj/uart_socket.o + .debug_info 0x00000000 0x27e5 application/Debug/obj/uart_socket.o + .debug_abbrev 0x00000000 0x455 application/Debug/obj/uart_socket.o + .debug_loc 0x00000000 0x6f1 application/Debug/obj/uart_socket.o + .debug_aranges + 0x00000000 0x60 application/Debug/obj/uart_socket.o + .debug_ranges 0x00000000 0x68 application/Debug/obj/uart_socket.o + .debug_line 0x00000000 0x804 application/Debug/obj/uart_socket.o + .debug_str 0x00000000 0x1b69 application/Debug/obj/uart_socket.o + .comment 0x00000000 0x71 application/Debug/obj/uart_socket.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/uart_socket.o + .debug_frame 0x00000000 0x124 application/Debug/obj/uart_socket.o + .text 0x00000000 0x0 application/Debug/obj/webserver.o + .data 0x00000000 0x0 application/Debug/obj/webserver.o + .bss 0x00000000 0x0 application/Debug/obj/webserver.o + .text.LoadWifiSetting + 0x00000000 0x2c application/Debug/obj/webserver.o + .text.RestartSoftAP + 0x00000000 0x40 application/Debug/obj/webserver.o + .text.GenerateIndexHtmlPage.constprop.2 + 0x00000000 0x234 application/Debug/obj/webserver.o + .text.LoadWifiConfig + 0x00000000 0xf8 application/Debug/obj/webserver.o + .text.StoreApInfo + 0x00000000 0x13c application/Debug/obj/webserver.o + .text.EraseApinfo + 0x00000000 0x24 application/Debug/obj/webserver.o + .text.web_atoi + 0x00000000 0x58 application/Debug/obj/webserver.o + .text.ProcessPostMessage.isra.0.constprop.7 + 0x00000000 0x210 application/Debug/obj/webserver.o + .text.vBasicWEBServer + 0x00000000 0x1fc application/Debug/obj/webserver.o + .text.start_web_server + 0x00000000 0x6c application/Debug/obj/webserver.o + .text.stop_web_server + 0x00000000 0x80 application/Debug/obj/webserver.o + .bss.cDynamicPage.12859 + 0x00000000 0xc80 application/Debug/obj/webserver.o + .bss.wifi_setting + 0x00000000 0x70 application/Debug/obj/webserver.o + .bss.pxHTTPListener + 0x00000000 0x4 application/Debug/obj/webserver.o + .rodata.str1.4 + 0x00000000 0xf20 application/Debug/obj/webserver.o + .bss.LocalBuf.12864 + 0x00000000 0x320 application/Debug/obj/webserver.o + .bss.webs_terminate + 0x00000000 0x1 application/Debug/obj/webserver.o + .bss.webs_sema + 0x00000000 0x4 application/Debug/obj/webserver.o + .bss.webs_task + 0x00000000 0x4 application/Debug/obj/webserver.o + .debug_info 0x00000000 0x2a95 application/Debug/obj/webserver.o + .debug_abbrev 0x00000000 0x3fa application/Debug/obj/webserver.o + .debug_loc 0x00000000 0x79b application/Debug/obj/webserver.o + .debug_aranges + 0x00000000 0x70 application/Debug/obj/webserver.o + .debug_ranges 0x00000000 0x108 application/Debug/obj/webserver.o + .debug_line 0x00000000 0x9c0 application/Debug/obj/webserver.o + .debug_str 0x00000000 0x14b2 application/Debug/obj/webserver.o + .comment 0x00000000 0x71 application/Debug/obj/webserver.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/webserver.o + .debug_frame 0x00000000 0x164 application/Debug/obj/webserver.o + .text 0x00000000 0x0 application/Debug/obj/xml.o + .data 0x00000000 0x0 application/Debug/obj/xml.o + .bss 0x00000000 0x0 application/Debug/obj/xml.o + .text.xml_tree_size + 0x00000000 0x124 application/Debug/obj/xml.o + .text.str_strip + 0x00000000 0x9c application/Debug/obj/xml.o + .text._xml_new_element + 0x00000000 0x78 application/Debug/obj/xml.o + .text._xml_element_count + 0x00000000 0x38 application/Debug/obj/xml.o + .text._xml_find_element + 0x00000000 0x3c application/Debug/obj/xml.o + .text._xml_path_count + 0x00000000 0x1b4 application/Debug/obj/xml.o + .text._xml_find_path + 0x00000000 0x1bc application/Debug/obj/xml.o + .text._xml_dump_tree + 0x00000000 0x1b8 application/Debug/obj/xml.o + .text.xml_strstr + 0x00000000 0x3c application/Debug/obj/xml.o + .text._parse_tag + 0x00000000 0x1e8 application/Debug/obj/xml.o + .text.xml_free + 0x00000000 0x4 application/Debug/obj/xml.o + .text.xml_doc_name + 0x00000000 0x1c4 application/Debug/obj/xml.o + .text.xml_new_element + 0x00000000 0x7c application/Debug/obj/xml.o + .text.xml_new_text + 0x00000000 0x2c application/Debug/obj/xml.o + .text.xml_is_element + 0x00000000 0x14 application/Debug/obj/xml.o + .text.xml_is_text + 0x00000000 0x14 application/Debug/obj/xml.o + .text.xml_delete_tree + 0x00000000 0x60 application/Debug/obj/xml.o + .text.xml_add_child + 0x00000000 0x24 application/Debug/obj/xml.o + .text._xml_parse_doc + 0x00000000 0x238 application/Debug/obj/xml.o + .text.xml_parse_doc + 0x00000000 0x22c application/Debug/obj/xml.o + .text.xml_parse + 0x00000000 0x6c application/Debug/obj/xml.o + .text._xml_copy_tree + 0x00000000 0x4c application/Debug/obj/xml.o + .text.xml_copy_tree + 0x00000000 0x40 application/Debug/obj/xml.o + .text.xml_clear_child + 0x00000000 0x14 application/Debug/obj/xml.o + .text.xml_text_child + 0x00000000 0x18 application/Debug/obj/xml.o + .text.xml_set_text + 0x00000000 0x38 application/Debug/obj/xml.o + .text.xml_find_element + 0x00000000 0x44 application/Debug/obj/xml.o + .text.xml_find_path + 0x00000000 0x44 application/Debug/obj/xml.o + .text.xml_delete_set + 0x00000000 0x18 application/Debug/obj/xml.o + .text.xml_dump_tree + 0x00000000 0x30 application/Debug/obj/xml.o + .text.xml_dump_tree_ex + 0x00000000 0xc0 application/Debug/obj/xml.o + .text.xml_set_attribute + 0x00000000 0x338 application/Debug/obj/xml.o + .text.xml_get_attribute + 0x00000000 0xf0 application/Debug/obj/xml.o + .rodata.str1.4 + 0x00000000 0x150 application/Debug/obj/xml.o + .debug_info 0x00000000 0x4a52 application/Debug/obj/xml.o + .debug_abbrev 0x00000000 0x434 application/Debug/obj/xml.o + .debug_loc 0x00000000 0x402f application/Debug/obj/xml.o + .debug_aranges + 0x00000000 0x120 application/Debug/obj/xml.o + .debug_ranges 0x00000000 0xab8 application/Debug/obj/xml.o + .debug_line 0x00000000 0xe53 application/Debug/obj/xml.o + .debug_str 0x00000000 0x76a application/Debug/obj/xml.o + .comment 0x00000000 0x71 application/Debug/obj/xml.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/xml.o + .debug_frame 0x00000000 0x3f0 application/Debug/obj/xml.o + .text 0x00000000 0x0 application/Debug/obj/example_entry.o + .data 0x00000000 0x0 application/Debug/obj/example_entry.o + .bss 0x00000000 0x0 application/Debug/obj/example_entry.o + .text 0x00000000 0x0 application/Debug/obj/example_uart_atcmd.o + .data 0x00000000 0x0 application/Debug/obj/example_uart_atcmd.o + .bss 0x00000000 0x0 application/Debug/obj/example_uart_atcmd.o + .bss.uart_at_dma_tx_sema + 0x00000000 0x4 application/Debug/obj/example_uart_atcmd.o + .text 0x00000000 0x0 application/Debug/obj/ff_driver.o + .data 0x00000000 0x0 application/Debug/obj/ff_driver.o + .bss 0x00000000 0x0 application/Debug/obj/ff_driver.o + .text.FATFS_RegisterDiskDriver + 0x00000000 0x1c application/Debug/obj/ff_driver.o + .text.FATFS_UnRegisterDiskDriver + 0x00000000 0x24 application/Debug/obj/ff_driver.o + .text.FATFS_getDrivernum + 0x00000000 0x24 application/Debug/obj/ff_driver.o + .bss.disk 0x00000000 0x8 application/Debug/obj/ff_driver.o + .debug_info 0x00000000 0x2fb application/Debug/obj/ff_driver.o + .debug_abbrev 0x00000000 0x17f application/Debug/obj/ff_driver.o + .debug_loc 0x00000000 0x10d application/Debug/obj/ff_driver.o + .debug_aranges + 0x00000000 0x30 application/Debug/obj/ff_driver.o + .debug_ranges 0x00000000 0x38 application/Debug/obj/ff_driver.o + .debug_line 0x00000000 0x155 application/Debug/obj/ff_driver.o + .debug_str 0x00000000 0x2f5 application/Debug/obj/ff_driver.o + .comment 0x00000000 0x71 application/Debug/obj/ff_driver.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ff_driver.o + .debug_frame 0x00000000 0x48 application/Debug/obj/ff_driver.o + .text 0x00000000 0x0 application/Debug/obj/diskio.o + .data 0x00000000 0x0 application/Debug/obj/diskio.o + .bss 0x00000000 0x0 application/Debug/obj/diskio.o + .text.disk_status + 0x00000000 0x20 application/Debug/obj/diskio.o + .text.disk_initialize + 0x00000000 0x20 application/Debug/obj/diskio.o + .text.disk_read + 0x00000000 0x2c application/Debug/obj/diskio.o + .text.disk_write + 0x00000000 0x2c application/Debug/obj/diskio.o + .text.disk_ioctl + 0x00000000 0x20 application/Debug/obj/diskio.o + .text.get_fattime + 0x00000000 0x8 application/Debug/obj/diskio.o + .debug_info 0x00000000 0x402 application/Debug/obj/diskio.o + .debug_abbrev 0x00000000 0x180 application/Debug/obj/diskio.o + .debug_loc 0x00000000 0x2e6 application/Debug/obj/diskio.o + .debug_aranges + 0x00000000 0x48 application/Debug/obj/diskio.o + .debug_ranges 0x00000000 0x38 application/Debug/obj/diskio.o + .debug_line 0x00000000 0x198 application/Debug/obj/diskio.o + .debug_str 0x00000000 0x2d2 application/Debug/obj/diskio.o + .comment 0x00000000 0x71 application/Debug/obj/diskio.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/diskio.o + .debug_frame 0x00000000 0xa0 application/Debug/obj/diskio.o + .text 0x00000000 0x0 application/Debug/obj/ff.o + .data 0x00000000 0x0 application/Debug/obj/ff.o + .bss 0x00000000 0x0 application/Debug/obj/ff.o + .text.get_ldnumber + 0x00000000 0x44 application/Debug/obj/ff.o + .text.validate + 0x00000000 0x2c application/Debug/obj/ff.o + .text.get_fileinfo + 0x00000000 0xf4 application/Debug/obj/ff.o + .text.sync_window.part.1 + 0x00000000 0x4c application/Debug/obj/ff.o + .text.sync_fs 0x00000000 0xd4 application/Debug/obj/ff.o + .text.move_window + 0x00000000 0x34 application/Debug/obj/ff.o + .text.check_fs + 0x00000000 0x88 application/Debug/obj/ff.o + .text.find_volume + 0x00000000 0x314 application/Debug/obj/ff.o + .text.get_fat.part.5 + 0x00000000 0xc4 application/Debug/obj/ff.o + .text.dir_sdi 0x00000000 0xa0 application/Debug/obj/ff.o + .text.put_fat.part.6 + 0x00000000 0xf8 application/Debug/obj/ff.o + .text.create_chain + 0x00000000 0xc8 application/Debug/obj/ff.o + .text.dir_next + 0x00000000 0x138 application/Debug/obj/ff.o + .text.dir_remove + 0x00000000 0x5c application/Debug/obj/ff.o + .text.dir_find.part.7 + 0x00000000 0x160 application/Debug/obj/ff.o + .text.follow_path + 0x00000000 0x2ec application/Debug/obj/ff.o + .text.remove_chain.part.8 + 0x00000000 0x60 application/Debug/obj/ff.o + .text.dir_read.constprop.9 + 0x00000000 0x114 application/Debug/obj/ff.o + .text.dir_register + 0x00000000 0x2d8 application/Debug/obj/ff.o + .text.clust2sect + 0x00000000 0x18 application/Debug/obj/ff.o + .text.get_fat 0x00000000 0x14 application/Debug/obj/ff.o + .text.put_fat 0x00000000 0x1c application/Debug/obj/ff.o + .text.f_mount 0x00000000 0x5c application/Debug/obj/ff.o + .text.f_open 0x00000000 0x184 application/Debug/obj/ff.o + .text.f_read 0x00000000 0x150 application/Debug/obj/ff.o + .text.f_write 0x00000000 0x198 application/Debug/obj/ff.o + .text.f_sync 0x00000000 0xa8 application/Debug/obj/ff.o + .text.f_close 0x00000000 0x1c application/Debug/obj/ff.o + .text.f_lseek 0x00000000 0x164 application/Debug/obj/ff.o + .text.f_opendir + 0x00000000 0x88 application/Debug/obj/ff.o + .text.f_closedir + 0x00000000 0x10 application/Debug/obj/ff.o + .text.f_readdir + 0x00000000 0x5c application/Debug/obj/ff.o + .text.f_stat 0x00000000 0x50 application/Debug/obj/ff.o + .text.f_getfree + 0x00000000 0xfc application/Debug/obj/ff.o + .text.f_truncate + 0x00000000 0xe4 application/Debug/obj/ff.o + .text.f_unlink + 0x00000000 0xd0 application/Debug/obj/ff.o + .text.f_mkdir 0x00000000 0x214 application/Debug/obj/ff.o + .text.f_chmod 0x00000000 0x5c application/Debug/obj/ff.o + .text.f_utime 0x00000000 0x60 application/Debug/obj/ff.o + .text.f_rename + 0x00000000 0x168 application/Debug/obj/ff.o + .bss.LfnBuf 0x00000000 0x200 application/Debug/obj/ff.o + .bss.Fsid 0x00000000 0x2 application/Debug/obj/ff.o + .rodata.str1.4 + 0x00000000 0x14 application/Debug/obj/ff.o + .rodata.ExCvt 0x00000000 0x80 application/Debug/obj/ff.o + .rodata.LfnOfs + 0x00000000 0x10 application/Debug/obj/ff.o + .bss.FatFs 0x00000000 0x4 application/Debug/obj/ff.o + .debug_info 0x00000000 0x3814 application/Debug/obj/ff.o + .debug_abbrev 0x00000000 0x379 application/Debug/obj/ff.o + .debug_loc 0x00000000 0x4d82 application/Debug/obj/ff.o + .debug_aranges + 0x00000000 0x158 application/Debug/obj/ff.o + .debug_ranges 0x00000000 0x658 application/Debug/obj/ff.o + .debug_line 0x00000000 0xfa5 application/Debug/obj/ff.o + .debug_str 0x00000000 0x77f application/Debug/obj/ff.o + .comment 0x00000000 0x71 application/Debug/obj/ff.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ff.o + .debug_frame 0x00000000 0x4e8 application/Debug/obj/ff.o + .text 0x00000000 0x0 application/Debug/obj/ccsbcs.o + .data 0x00000000 0x0 application/Debug/obj/ccsbcs.o + .bss 0x00000000 0x0 application/Debug/obj/ccsbcs.o + .text.ff_convert + 0x00000000 0x4c application/Debug/obj/ccsbcs.o + .text.ff_wtoupper + 0x00000000 0x60 application/Debug/obj/ccsbcs.o + .rodata.Tbl 0x00000000 0x100 application/Debug/obj/ccsbcs.o + .rodata.lower.4259 + 0x00000000 0x3dc application/Debug/obj/ccsbcs.o + .rodata.upper.4260 + 0x00000000 0x3dc application/Debug/obj/ccsbcs.o + .debug_info 0x00000000 0x18e application/Debug/obj/ccsbcs.o + .debug_abbrev 0x00000000 0xb1 application/Debug/obj/ccsbcs.o + .debug_loc 0x00000000 0x190 application/Debug/obj/ccsbcs.o + .debug_aranges + 0x00000000 0x28 application/Debug/obj/ccsbcs.o + .debug_ranges 0x00000000 0x18 application/Debug/obj/ccsbcs.o + .debug_line 0x00000000 0x130 application/Debug/obj/ccsbcs.o + .debug_str 0x00000000 0x22b application/Debug/obj/ccsbcs.o + .comment 0x00000000 0x71 application/Debug/obj/ccsbcs.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ccsbcs.o + .debug_frame 0x00000000 0x44 application/Debug/obj/ccsbcs.o + .text 0x00000000 0x0 application/Debug/obj/sdcard.o + .data 0x00000000 0x0 application/Debug/obj/sdcard.o + .bss 0x00000000 0x0 application/Debug/obj/sdcard.o + .debug_info 0x00000000 0x5d application/Debug/obj/sdcard.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/sdcard.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/sdcard.o + .debug_line 0x00000000 0x1d application/Debug/obj/sdcard.o + .debug_str 0x00000000 0x1e8 application/Debug/obj/sdcard.o + .comment 0x00000000 0x71 application/Debug/obj/sdcard.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/sdcard.o + .text 0x00000000 0x0 application/Debug/obj/uart_fw_update.o + .data 0x00000000 0x0 application/Debug/obj/uart_fw_update.o + .bss 0x00000000 0x0 application/Debug/obj/uart_fw_update.o + .fwu.text 0x00000000 0xf70 application/Debug/obj/uart_fw_update.o + .fwu.rodata 0x00000000 0x8 application/Debug/obj/uart_fw_update.o + .fwu.data 0x00000000 0x4f8 application/Debug/obj/uart_fw_update.o + .rodata.str1.4 + 0x00000000 0x598 application/Debug/obj/uart_fw_update.o + .debug_info 0x00000000 0x21ad application/Debug/obj/uart_fw_update.o + .debug_abbrev 0x00000000 0x495 application/Debug/obj/uart_fw_update.o + .debug_loc 0x00000000 0x1651 application/Debug/obj/uart_fw_update.o + .debug_aranges + 0x00000000 0xb0 application/Debug/obj/uart_fw_update.o + .debug_ranges 0x00000000 0xd0 application/Debug/obj/uart_fw_update.o + .debug_line 0x00000000 0x937 application/Debug/obj/uart_fw_update.o + .debug_str 0x00000000 0x14aa application/Debug/obj/uart_fw_update.o + .comment 0x00000000 0x71 application/Debug/obj/uart_fw_update.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/uart_fw_update.o + .debug_frame 0x00000000 0x250 application/Debug/obj/uart_fw_update.o + .text 0x00000000 0x0 application/Debug/obj/main.o + .data 0x00000000 0x0 application/Debug/obj/main.o + .bss 0x00000000 0x0 application/Debug/obj/main.o + .sdram.text 0x00000000 0x0 application/Debug/obj/stdlib_patch.o + .sdram.data 0x00000000 0x0 application/Debug/obj/stdlib_patch.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/stdlib_patch.o + .sdram.text.VSprintfPatch + 0x00000000 0x2d8 application/Debug/obj/stdlib_patch.o + .sdram.text.simple_strtoull_patch.isra.0 + 0x00000000 0x24 application/Debug/obj/stdlib_patch.o + .sdram.text.DiagSscanfPatch + 0x00000000 0x5c0 application/Debug/obj/stdlib_patch.o + .sdram.text.DiagStrtokPatch + 0x00000000 0x68 application/Debug/obj/stdlib_patch.o + .sdram.text.DiagStrstrPatch + 0x00000000 0x3c application/Debug/obj/stdlib_patch.o + .sdram.text.DiagSnPrintfPatch + 0x00000000 0x2e8 application/Debug/obj/stdlib_patch.o + .sdram.text.DiagPrintfPatch + 0x00000000 0x1c application/Debug/obj/stdlib_patch.o + .sdram.text.DiagSPrintfPatch + 0x00000000 0x18 application/Debug/obj/stdlib_patch.o + .sdram.bss._buffer.4204 + 0x00000000 0x4 application/Debug/obj/stdlib_patch.o + .sdram.rodata.str1.4 + 0x00000000 0x14 application/Debug/obj/stdlib_patch.o + .debug_info 0x00000000 0xc57 application/Debug/obj/stdlib_patch.o + .debug_abbrev 0x00000000 0x2ac application/Debug/obj/stdlib_patch.o + .debug_loc 0x00000000 0x1b3c application/Debug/obj/stdlib_patch.o + .debug_aranges + 0x00000000 0x58 application/Debug/obj/stdlib_patch.o + .debug_ranges 0x00000000 0x1f8 application/Debug/obj/stdlib_patch.o + .debug_line 0x00000000 0x512 application/Debug/obj/stdlib_patch.o + .debug_str 0x00000000 0x44a application/Debug/obj/stdlib_patch.o + .comment 0x00000000 0x71 application/Debug/obj/stdlib_patch.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/stdlib_patch.o + .debug_frame 0x00000000 0x134 application/Debug/obj/stdlib_patch.o + .sdram.text 0x00000000 0x0 application/Debug/obj/aes.o + .sdram.data 0x00000000 0x0 application/Debug/obj/aes.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/aes.o + .sdram.text.polarssl_aes_init + 0x00000000 0xc application/Debug/obj/aes.o + .sdram.text.aes_free + 0x00000000 0x18 application/Debug/obj/aes.o + .sdram.text.aes_setkey_enc + 0x00000000 0x21c application/Debug/obj/aes.o + .sdram.text.aes_setkey_dec + 0x00000000 0x164 application/Debug/obj/aes.o + .sdram.text.aes_crypt_ecb + 0x00000000 0x998 application/Debug/obj/aes.o + .sdram.text.aes_crypt_cbc + 0x00000000 0x298 application/Debug/obj/aes.o + .sdram.text.aes_crypt_cfb128 + 0x00000000 0x7c application/Debug/obj/aes.o + .sdram.text.aes_crypt_cfb8 + 0x00000000 0x84 application/Debug/obj/aes.o + .sdram.text.aes_crypt_ctr + 0x00000000 0x68 application/Debug/obj/aes.o + .sdram.rodata.FSb + 0x00000000 0x100 application/Debug/obj/aes.o + .sdram.rodata.RT0 + 0x00000000 0x400 application/Debug/obj/aes.o + .sdram.rodata.RT1 + 0x00000000 0x400 application/Debug/obj/aes.o + .sdram.rodata.RT2 + 0x00000000 0x400 application/Debug/obj/aes.o + .sdram.rodata.RT3 + 0x00000000 0x400 application/Debug/obj/aes.o + .sdram.rodata.RCON + 0x00000000 0x28 application/Debug/obj/aes.o + .sdram.rodata.FT0 + 0x00000000 0x400 application/Debug/obj/aes.o + .sdram.rodata.FT1 + 0x00000000 0x400 application/Debug/obj/aes.o + .sdram.rodata.FT2 + 0x00000000 0x400 application/Debug/obj/aes.o + .sdram.rodata.FT3 + 0x00000000 0x400 application/Debug/obj/aes.o + .sdram.rodata.RSb + 0x00000000 0x100 application/Debug/obj/aes.o + .debug_info 0x00000000 0x1070 application/Debug/obj/aes.o + .debug_abbrev 0x00000000 0x2a4 application/Debug/obj/aes.o + .debug_loc 0x00000000 0x158d application/Debug/obj/aes.o + .debug_aranges + 0x00000000 0x60 application/Debug/obj/aes.o + .debug_ranges 0x00000000 0xf8 application/Debug/obj/aes.o + .debug_line 0x00000000 0x947 application/Debug/obj/aes.o + .debug_str 0x00000000 0x54e application/Debug/obj/aes.o + .comment 0x00000000 0x71 application/Debug/obj/aes.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/aes.o + .debug_frame 0x00000000 0x14c application/Debug/obj/aes.o + .sdram.text 0x00000000 0x0 application/Debug/obj/aesni.o + .sdram.data 0x00000000 0x0 application/Debug/obj/aesni.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/aesni.o + .debug_info 0x00000000 0x79 application/Debug/obj/aesni.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/aesni.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/aesni.o + .debug_line 0x00000000 0x1d application/Debug/obj/aesni.o + .debug_str 0x00000000 0x223 application/Debug/obj/aesni.o + .comment 0x00000000 0x71 application/Debug/obj/aesni.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/aesni.o + .sdram.text 0x00000000 0x0 application/Debug/obj/arc4.o + .sdram.data 0x00000000 0x0 application/Debug/obj/arc4.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/arc4.o + .sdram.text.arc4_init + 0x00000000 0xc application/Debug/obj/arc4.o + .sdram.text.arc4_free + 0x00000000 0x18 application/Debug/obj/arc4.o + .sdram.text.arc4_setup + 0x00000000 0x4c application/Debug/obj/arc4.o + .sdram.text.arc4_crypt + 0x00000000 0x54 application/Debug/obj/arc4.o + .debug_info 0x00000000 0x2ec application/Debug/obj/arc4.o + .debug_abbrev 0x00000000 0x185 application/Debug/obj/arc4.o + .debug_loc 0x00000000 0x278 application/Debug/obj/arc4.o + .debug_aranges + 0x00000000 0x38 application/Debug/obj/arc4.o + .debug_ranges 0x00000000 0x28 application/Debug/obj/arc4.o + .debug_line 0x00000000 0x209 application/Debug/obj/arc4.o + .debug_str 0x00000000 0x297 application/Debug/obj/arc4.o + .comment 0x00000000 0x71 application/Debug/obj/arc4.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/arc4.o + .debug_frame 0x00000000 0x6c application/Debug/obj/arc4.o + .sdram.text 0x00000000 0x0 application/Debug/obj/asn1parse.o + .sdram.data 0x00000000 0x0 application/Debug/obj/asn1parse.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_len + 0x00000000 0xa0 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_tag + 0x00000000 0x28 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_bool + 0x00000000 0x34 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_int + 0x00000000 0x4c application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_mpi + 0x00000000 0x28 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_bitstring + 0x00000000 0x48 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_bitstring_null + 0x00000000 0x34 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_sequence_of + 0x00000000 0x84 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_alg + 0x00000000 0x98 application/Debug/obj/asn1parse.o + .sdram.text.asn1_get_alg_null + 0x00000000 0x40 application/Debug/obj/asn1parse.o + .sdram.text.asn1_free_named_data + 0x00000000 0x28 application/Debug/obj/asn1parse.o + .sdram.text.asn1_free_named_data_list + 0x00000000 0x28 application/Debug/obj/asn1parse.o + .sdram.text.asn1_find_named_data + 0x00000000 0x30 application/Debug/obj/asn1parse.o + .debug_info 0x00000000 0xabe application/Debug/obj/asn1parse.o + .debug_abbrev 0x00000000 0x236 application/Debug/obj/asn1parse.o + .debug_loc 0x00000000 0x713 application/Debug/obj/asn1parse.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/asn1parse.o + .debug_ranges 0x00000000 0x70 application/Debug/obj/asn1parse.o + .debug_line 0x00000000 0x49b application/Debug/obj/asn1parse.o + .debug_str 0x00000000 0x57a application/Debug/obj/asn1parse.o + .comment 0x00000000 0x71 application/Debug/obj/asn1parse.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/asn1parse.o + .debug_frame 0x00000000 0x194 application/Debug/obj/asn1parse.o + .sdram.text 0x00000000 0x0 application/Debug/obj/asn1write.o + .sdram.data 0x00000000 0x0 application/Debug/obj/asn1write.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/asn1write.o + .debug_info 0x00000000 0x79 application/Debug/obj/asn1write.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/asn1write.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/asn1write.o + .debug_line 0x00000000 0x1d application/Debug/obj/asn1write.o + .debug_str 0x00000000 0x227 application/Debug/obj/asn1write.o + .comment 0x00000000 0x71 application/Debug/obj/asn1write.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/asn1write.o + .sdram.text 0x00000000 0x0 application/Debug/obj/base64.o + .sdram.data 0x00000000 0x0 application/Debug/obj/base64.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/base64.o + .sdram.text.base64_encode + 0x00000000 0x128 application/Debug/obj/base64.o + .sdram.text.base64_decode + 0x00000000 0x138 application/Debug/obj/base64.o + .sdram.rodata.base64_enc_map + 0x00000000 0x40 application/Debug/obj/base64.o + .sdram.rodata.base64_dec_map + 0x00000000 0x80 application/Debug/obj/base64.o + .debug_info 0x00000000 0x23f application/Debug/obj/base64.o + .debug_abbrev 0x00000000 0xc0 application/Debug/obj/base64.o + .debug_loc 0x00000000 0x795 application/Debug/obj/base64.o + .debug_aranges + 0x00000000 0x28 application/Debug/obj/base64.o + .debug_ranges 0x00000000 0x18 application/Debug/obj/base64.o + .debug_line 0x00000000 0x342 application/Debug/obj/base64.o + .debug_str 0x00000000 0x283 application/Debug/obj/base64.o + .comment 0x00000000 0x71 application/Debug/obj/base64.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/base64.o + .debug_frame 0x00000000 0x5c application/Debug/obj/base64.o + .sdram.text 0x00000000 0x0 application/Debug/obj/blowfish.o + .sdram.data 0x00000000 0x0 application/Debug/obj/blowfish.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/blowfish.o + .debug_info 0x00000000 0x79 application/Debug/obj/blowfish.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/blowfish.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/blowfish.o + .debug_line 0x00000000 0x1d application/Debug/obj/blowfish.o + .debug_str 0x00000000 0x226 application/Debug/obj/blowfish.o + .comment 0x00000000 0x71 application/Debug/obj/blowfish.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/blowfish.o + .sdram.text 0x00000000 0x0 application/Debug/obj/camellia.o + .sdram.data 0x00000000 0x0 application/Debug/obj/camellia.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/camellia.o + .debug_info 0x00000000 0x79 application/Debug/obj/camellia.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/camellia.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/camellia.o + .debug_line 0x00000000 0x1d application/Debug/obj/camellia.o + .debug_str 0x00000000 0x226 application/Debug/obj/camellia.o + .comment 0x00000000 0x71 application/Debug/obj/camellia.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/camellia.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ccm.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ccm.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ccm.o + .debug_info 0x00000000 0x79 application/Debug/obj/ccm.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/ccm.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/ccm.o + .debug_line 0x00000000 0x1d application/Debug/obj/ccm.o + .debug_str 0x00000000 0x221 application/Debug/obj/ccm.o + .comment 0x00000000 0x71 application/Debug/obj/ccm.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ccm.o + .sdram.text 0x00000000 0x0 application/Debug/obj/certs.o + .sdram.data 0x00000000 0x0 application/Debug/obj/certs.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/certs.o + .debug_info 0x00000000 0x79 application/Debug/obj/certs.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/certs.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/certs.o + .debug_line 0x00000000 0x1d application/Debug/obj/certs.o + .debug_str 0x00000000 0x223 application/Debug/obj/certs.o + .comment 0x00000000 0x71 application/Debug/obj/certs.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/certs.o + .sdram.text 0x00000000 0x0 application/Debug/obj/cipher.o + .sdram.data 0x00000000 0x0 application/Debug/obj/cipher.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/cipher.o + .sdram.text.add_pkcs_padding + 0x00000000 0x20 application/Debug/obj/cipher.o + .sdram.text.get_pkcs_padding + 0x00000000 0x5c application/Debug/obj/cipher.o + .sdram.text.add_one_and_zeros_padding + 0x00000000 0x24 application/Debug/obj/cipher.o + .sdram.text.get_one_and_zeros_padding + 0x00000000 0x68 application/Debug/obj/cipher.o + .sdram.text.add_zeros_and_len_padding + 0x00000000 0x28 application/Debug/obj/cipher.o + .sdram.text.get_zeros_and_len_padding + 0x00000000 0x58 application/Debug/obj/cipher.o + .sdram.text.add_zeros_padding + 0x00000000 0x14 application/Debug/obj/cipher.o + .sdram.text.get_zeros_padding + 0x00000000 0x40 application/Debug/obj/cipher.o + .sdram.text.get_no_padding + 0x00000000 0x14 application/Debug/obj/cipher.o + .sdram.text.cipher_list + 0x00000000 0x44 application/Debug/obj/cipher.o + .sdram.text.cipher_info_from_type + 0x00000000 0x24 application/Debug/obj/cipher.o + .sdram.text.cipher_info_from_string + 0x00000000 0x28 application/Debug/obj/cipher.o + .sdram.text.cipher_info_from_values + 0x00000000 0x28 application/Debug/obj/cipher.o + .sdram.text.cipher_init + 0x00000000 0x8 application/Debug/obj/cipher.o + .sdram.text.cipher_free + 0x00000000 0x28 application/Debug/obj/cipher.o + .sdram.text.cipher_free_ctx + 0x00000000 0xc application/Debug/obj/cipher.o + .sdram.text.cipher_setkey + 0x00000000 0x44 application/Debug/obj/cipher.o + .sdram.text.cipher_set_iv + 0x00000000 0x40 application/Debug/obj/cipher.o + .sdram.text.cipher_reset + 0x00000000 0x18 application/Debug/obj/cipher.o + .sdram.text.cipher_update + 0x00000000 0x1e0 application/Debug/obj/cipher.o + .sdram.text.cipher_finish + 0x00000000 0xd0 application/Debug/obj/cipher.o + .sdram.text.cipher_set_padding_mode + 0x00000000 0x8c application/Debug/obj/cipher.o + .sdram.text.cipher_init_ctx + 0x00000000 0x3c application/Debug/obj/cipher.o + .sdram.text.cipher_crypt + 0x00000000 0x58 application/Debug/obj/cipher.o + .sdram.bss.supported_init + 0x00000000 0x4 application/Debug/obj/cipher.o + .debug_info 0x00000000 0x132d application/Debug/obj/cipher.o + .debug_abbrev 0x00000000 0x3db application/Debug/obj/cipher.o + .debug_loc 0x00000000 0x10f7 application/Debug/obj/cipher.o + .debug_aranges + 0x00000000 0xd8 application/Debug/obj/cipher.o + .debug_ranges 0x00000000 0x190 application/Debug/obj/cipher.o + .debug_line 0x00000000 0x6f9 application/Debug/obj/cipher.o + .debug_str 0x00000000 0xe80 application/Debug/obj/cipher.o + .comment 0x00000000 0x71 application/Debug/obj/cipher.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/cipher.o + .debug_frame 0x00000000 0x25c application/Debug/obj/cipher.o + .sdram.text 0x00000000 0x0 application/Debug/obj/cipher_wrap.o + .sdram.data 0x00000000 0x0 application/Debug/obj/cipher_wrap.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/cipher_wrap.o + .sdram.text.aes_ctx_free + 0x00000000 0x18 application/Debug/obj/cipher_wrap.o + .sdram.text.aes_ctx_alloc + 0x00000000 0x1c application/Debug/obj/cipher_wrap.o + .sdram.text.aes_setkey_dec_wrap + 0x00000000 0x4 application/Debug/obj/cipher_wrap.o + .sdram.text.aes_setkey_enc_wrap + 0x00000000 0x4 application/Debug/obj/cipher_wrap.o + .sdram.text.aes_crypt_ctr_wrap + 0x00000000 0x8 application/Debug/obj/cipher_wrap.o + .sdram.text.aes_crypt_cfb128_wrap + 0x00000000 0x8 application/Debug/obj/cipher_wrap.o + .sdram.text.aes_crypt_cbc_wrap + 0x00000000 0xc application/Debug/obj/cipher_wrap.o + .sdram.text.aes_crypt_ecb_wrap + 0x00000000 0x4 application/Debug/obj/cipher_wrap.o + .sdram.text.arc4_ctx_free + 0x00000000 0x18 application/Debug/obj/cipher_wrap.o + .sdram.text.arc4_ctx_alloc + 0x00000000 0x1c application/Debug/obj/cipher_wrap.o + .sdram.text.arc4_setkey_wrap + 0x00000000 0x1c application/Debug/obj/cipher_wrap.o + .sdram.text.arc4_crypt_stream_wrap + 0x00000000 0x4 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_info + 0x00000000 0x28 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_192_cbc_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_192_ctr_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.arc4_base_info + 0x00000000 0x28 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_128_ecb_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.cipher_definitions + 0x00000000 0x70 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_192_cfb128_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_128_cfb128_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_128_cbc_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.str1.4 + 0x00000000 0xa8 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_256_cfb128_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_256_ctr_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_128_ctr_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_256_cbc_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_192_ecb_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.bss.supported_ciphers + 0x00000000 0x38 application/Debug/obj/cipher_wrap.o + .sdram.rodata.arc4_128_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .sdram.rodata.aes_256_ecb_info + 0x00000000 0x20 application/Debug/obj/cipher_wrap.o + .debug_info 0x00000000 0xf4b application/Debug/obj/cipher_wrap.o + .debug_abbrev 0x00000000 0x276 application/Debug/obj/cipher_wrap.o + .debug_loc 0x00000000 0x556 application/Debug/obj/cipher_wrap.o + .debug_aranges + 0x00000000 0x78 application/Debug/obj/cipher_wrap.o + .debug_ranges 0x00000000 0x68 application/Debug/obj/cipher_wrap.o + .debug_line 0x00000000 0x360 application/Debug/obj/cipher_wrap.o + .debug_str 0x00000000 0xf4f application/Debug/obj/cipher_wrap.o + .comment 0x00000000 0x71 application/Debug/obj/cipher_wrap.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/cipher_wrap.o + .debug_frame 0x00000000 0x110 application/Debug/obj/cipher_wrap.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ctr_drbg.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ctr_drbg.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ctr_drbg.o + .debug_info 0x00000000 0x79 application/Debug/obj/ctr_drbg.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/ctr_drbg.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/ctr_drbg.o + .debug_line 0x00000000 0x1d application/Debug/obj/ctr_drbg.o + .debug_str 0x00000000 0x226 application/Debug/obj/ctr_drbg.o + .comment 0x00000000 0x71 application/Debug/obj/ctr_drbg.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ctr_drbg.o + .sdram.text 0x00000000 0x0 application/Debug/obj/debug.o + .sdram.data 0x00000000 0x0 application/Debug/obj/debug.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/debug.o + .debug_info 0x00000000 0x79 application/Debug/obj/debug.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/debug.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/debug.o + .debug_line 0x00000000 0x1d application/Debug/obj/debug.o + .debug_str 0x00000000 0x223 application/Debug/obj/debug.o + .comment 0x00000000 0x71 application/Debug/obj/debug.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/debug.o + .sdram.text 0x00000000 0x0 application/Debug/obj/des.o + .sdram.data 0x00000000 0x0 application/Debug/obj/des.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/des.o + .debug_info 0x00000000 0x79 application/Debug/obj/des.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/des.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/des.o + .debug_line 0x00000000 0x1d application/Debug/obj/des.o + .debug_str 0x00000000 0x221 application/Debug/obj/des.o + .comment 0x00000000 0x71 application/Debug/obj/des.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/des.o + .sdram.text 0x00000000 0x0 application/Debug/obj/dhm.o + .sdram.data 0x00000000 0x0 application/Debug/obj/dhm.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/dhm.o + .debug_info 0x00000000 0x79 application/Debug/obj/dhm.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/dhm.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/dhm.o + .debug_line 0x00000000 0x1d application/Debug/obj/dhm.o + .debug_str 0x00000000 0x221 application/Debug/obj/dhm.o + .comment 0x00000000 0x71 application/Debug/obj/dhm.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/dhm.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ecp.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ecp.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ecp.o + .debug_info 0x00000000 0x79 application/Debug/obj/ecp.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/ecp.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/ecp.o + .debug_line 0x00000000 0x1d application/Debug/obj/ecp.o + .debug_str 0x00000000 0x221 application/Debug/obj/ecp.o + .comment 0x00000000 0x71 application/Debug/obj/ecp.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ecp.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ecp_curves.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ecp_curves.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ecp_curves.o + .debug_info 0x00000000 0x79 application/Debug/obj/ecp_curves.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/ecp_curves.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/ecp_curves.o + .debug_line 0x00000000 0x1d application/Debug/obj/ecp_curves.o + .debug_str 0x00000000 0x228 application/Debug/obj/ecp_curves.o + .comment 0x00000000 0x71 application/Debug/obj/ecp_curves.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ecp_curves.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ecdh.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ecdh.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ecdh.o + .debug_info 0x00000000 0x79 application/Debug/obj/ecdh.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/ecdh.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/ecdh.o + .debug_line 0x00000000 0x1d application/Debug/obj/ecdh.o + .debug_str 0x00000000 0x222 application/Debug/obj/ecdh.o + .comment 0x00000000 0x71 application/Debug/obj/ecdh.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ecdh.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ecdsa.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ecdsa.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ecdsa.o + .debug_info 0x00000000 0x79 application/Debug/obj/ecdsa.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/ecdsa.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/ecdsa.o + .debug_line 0x00000000 0x1d application/Debug/obj/ecdsa.o + .debug_str 0x00000000 0x223 application/Debug/obj/ecdsa.o + .comment 0x00000000 0x71 application/Debug/obj/ecdsa.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ecdsa.o + .sdram.text 0x00000000 0x0 application/Debug/obj/entropy.o + .sdram.data 0x00000000 0x0 application/Debug/obj/entropy.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/entropy.o + .debug_info 0x00000000 0x79 application/Debug/obj/entropy.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/entropy.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/entropy.o + .debug_line 0x00000000 0x1d application/Debug/obj/entropy.o + .debug_str 0x00000000 0x225 application/Debug/obj/entropy.o + .comment 0x00000000 0x71 application/Debug/obj/entropy.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/entropy.o + .sdram.text 0x00000000 0x0 application/Debug/obj/entropy_poll.o + .sdram.data 0x00000000 0x0 application/Debug/obj/entropy_poll.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/entropy_poll.o + .debug_info 0x00000000 0x79 application/Debug/obj/entropy_poll.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/entropy_poll.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/entropy_poll.o + .debug_line 0x00000000 0x1d application/Debug/obj/entropy_poll.o + .debug_str 0x00000000 0x22a application/Debug/obj/entropy_poll.o + .comment 0x00000000 0x71 application/Debug/obj/entropy_poll.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/entropy_poll.o + .sdram.text 0x00000000 0x0 application/Debug/obj/error.o + .sdram.data 0x00000000 0x0 application/Debug/obj/error.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/error.o + .sdram.text.polarssl_strerror + 0x00000000 0x8 application/Debug/obj/error.o + .sdram.text.error_strerror + 0x00000000 0x8 application/Debug/obj/error.o + .debug_info 0x00000000 0x150 application/Debug/obj/error.o + .debug_abbrev 0x00000000 0xcd application/Debug/obj/error.o + .debug_aranges + 0x00000000 0x28 application/Debug/obj/error.o + .debug_ranges 0x00000000 0x18 application/Debug/obj/error.o + .debug_line 0x00000000 0xfc application/Debug/obj/error.o + .debug_str 0x00000000 0x252 application/Debug/obj/error.o + .comment 0x00000000 0x71 application/Debug/obj/error.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/error.o + .debug_frame 0x00000000 0x30 application/Debug/obj/error.o + .sdram.text 0x00000000 0x0 application/Debug/obj/gcm.o + .sdram.data 0x00000000 0x0 application/Debug/obj/gcm.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/gcm.o + .debug_info 0x00000000 0x79 application/Debug/obj/gcm.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/gcm.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/gcm.o + .debug_line 0x00000000 0x1d application/Debug/obj/gcm.o + .debug_str 0x00000000 0x221 application/Debug/obj/gcm.o + .comment 0x00000000 0x71 application/Debug/obj/gcm.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/gcm.o + .sdram.text 0x00000000 0x0 application/Debug/obj/havege.o + .sdram.data 0x00000000 0x0 application/Debug/obj/havege.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/havege.o + .debug_info 0x00000000 0x79 application/Debug/obj/havege.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/havege.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/havege.o + .debug_line 0x00000000 0x1d application/Debug/obj/havege.o + .debug_str 0x00000000 0x224 application/Debug/obj/havege.o + .comment 0x00000000 0x71 application/Debug/obj/havege.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/havege.o + .sdram.text 0x00000000 0x0 application/Debug/obj/hmac_drbg.o + .sdram.data 0x00000000 0x0 application/Debug/obj/hmac_drbg.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/hmac_drbg.o + .debug_info 0x00000000 0x79 application/Debug/obj/hmac_drbg.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/hmac_drbg.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/hmac_drbg.o + .debug_line 0x00000000 0x1d application/Debug/obj/hmac_drbg.o + .debug_str 0x00000000 0x227 application/Debug/obj/hmac_drbg.o + .comment 0x00000000 0x71 application/Debug/obj/hmac_drbg.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/hmac_drbg.o + .sdram.text 0x00000000 0x0 application/Debug/obj/md.o + .sdram.data 0x00000000 0x0 application/Debug/obj/md.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/md.o + .sdram.text.md_list + 0x00000000 0x8 application/Debug/obj/md.o + .sdram.text.md_info_from_string + 0x00000000 0xa4 application/Debug/obj/md.o + .sdram.text.md_info_from_type + 0x00000000 0x14 application/Debug/obj/md.o + .sdram.text.md_init + 0x00000000 0x8 application/Debug/obj/md.o + .sdram.text.md_free + 0x00000000 0x24 application/Debug/obj/md.o + .sdram.text.md_init_ctx + 0x00000000 0x34 application/Debug/obj/md.o + .sdram.text.md_free_ctx + 0x00000000 0xc application/Debug/obj/md.o + .sdram.text.md_starts + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.text.md_update + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.text.md_finish + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.text.md + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.text.md_file + 0x00000000 0x18 application/Debug/obj/md.o + .sdram.text.md_hmac_starts + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.text.md_hmac_update + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.text.md_hmac_finish + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.text.md_hmac_reset + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.text.md_hmac + 0x00000000 0x24 application/Debug/obj/md.o + .sdram.text.md_process + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.rodata.CSWTCH.5 + 0x00000000 0x18 application/Debug/obj/md.o + .sdram.rodata.supported_digests + 0x00000000 0x1c application/Debug/obj/md.o + .sdram.rodata.str1.4 + 0x00000000 0x30 application/Debug/obj/md.o + .debug_info 0x00000000 0x9a9 application/Debug/obj/md.o + .debug_abbrev 0x00000000 0x301 application/Debug/obj/md.o + .debug_loc 0x00000000 0x748 application/Debug/obj/md.o + .debug_aranges + 0x00000000 0xa8 application/Debug/obj/md.o + .debug_ranges 0x00000000 0x98 application/Debug/obj/md.o + .debug_line 0x00000000 0x3ac application/Debug/obj/md.o + .debug_str 0x00000000 0x544 application/Debug/obj/md.o + .comment 0x00000000 0x71 application/Debug/obj/md.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/md.o + .debug_frame 0x00000000 0x1a8 application/Debug/obj/md.o + .sdram.text 0x00000000 0x0 application/Debug/obj/md_wrap.o + .sdram.data 0x00000000 0x0 application/Debug/obj/md_wrap.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/md_wrap.o + .sdram.text.md5_file_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.md5_ctx_alloc + 0x00000000 0x10 application/Debug/obj/md_wrap.o + .sdram.text.md5_ctx_free + 0x00000000 0x24 application/Debug/obj/md_wrap.o + .sdram.text.sha1_file_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha224_file_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha224_ctx_alloc + 0x00000000 0x10 application/Debug/obj/md_wrap.o + .sdram.text.sha224_ctx_free + 0x00000000 0x24 application/Debug/obj/md_wrap.o + .sdram.text.sha256_file_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha384_file_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha384_ctx_alloc + 0x00000000 0x14 application/Debug/obj/md_wrap.o + .sdram.text.sha384_ctx_free + 0x00000000 0x24 application/Debug/obj/md_wrap.o + .sdram.text.sha512_file_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.md5_process_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.md5_hmac_reset_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.md5_hmac_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.md5_hmac_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.md5_hmac_starts_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.md5_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.md5_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.md5_starts_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha1_process_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha1_ctx_free + 0x00000000 0x18 application/Debug/obj/md_wrap.o + .sdram.text.sha1_ctx_alloc + 0x00000000 0x1c application/Debug/obj/md_wrap.o + .sdram.text.sha1_hmac_reset_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha1_hmac_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha1_hmac_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha1_hmac_starts_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha1_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha1_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha1_starts_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha224_process_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha256_process_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha224_hmac_wrap + 0x00000000 0x14 application/Debug/obj/md_wrap.o + .sdram.text.sha256_hmac_wrap + 0x00000000 0x14 application/Debug/obj/md_wrap.o + .sdram.text.sha224_hmac_reset_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha256_hmac_reset_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha224_hmac_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha256_hmac_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha224_hmac_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha256_hmac_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha224_hmac_starts_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha256_hmac_starts_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha224_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha256_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha224_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha256_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha224_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha256_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha224_starts_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha256_starts_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha256_ctx_free + 0x00000000 0x18 application/Debug/obj/md_wrap.o + .sdram.text.sha256_ctx_alloc + 0x00000000 0x1c application/Debug/obj/md_wrap.o + .sdram.text.sha384_process_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha512_process_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha384_hmac_wrap + 0x00000000 0x14 application/Debug/obj/md_wrap.o + .sdram.text.sha512_hmac_wrap + 0x00000000 0x14 application/Debug/obj/md_wrap.o + .sdram.text.sha384_hmac_reset_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha512_hmac_reset_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha384_hmac_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha512_hmac_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha384_hmac_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha512_hmac_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha384_hmac_starts_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha512_hmac_starts_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha384_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha512_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha384_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha512_finish_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha384_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha512_update_wrap + 0x00000000 0x4 application/Debug/obj/md_wrap.o + .sdram.text.sha384_starts_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha512_starts_wrap + 0x00000000 0x8 application/Debug/obj/md_wrap.o + .sdram.text.sha512_ctx_free + 0x00000000 0x18 application/Debug/obj/md_wrap.o + .sdram.text.sha512_ctx_alloc + 0x00000000 0x1c application/Debug/obj/md_wrap.o + .sdram.rodata.sha1_info + 0x00000000 0x40 application/Debug/obj/md_wrap.o + .sdram.rodata.sha256_info + 0x00000000 0x40 application/Debug/obj/md_wrap.o + .sdram.rodata.md5_info + 0x00000000 0x40 application/Debug/obj/md_wrap.o + .sdram.rodata.sha384_info + 0x00000000 0x40 application/Debug/obj/md_wrap.o + .sdram.rodata.str1.4 + 0x00000000 0x2c application/Debug/obj/md_wrap.o + .sdram.rodata.sha224_info + 0x00000000 0x40 application/Debug/obj/md_wrap.o + .sdram.rodata.sha512_info + 0x00000000 0x40 application/Debug/obj/md_wrap.o + .debug_info 0x00000000 0x22ce application/Debug/obj/md_wrap.o + .debug_abbrev 0x00000000 0x254 application/Debug/obj/md_wrap.o + .debug_loc 0x00000000 0x13f0 application/Debug/obj/md_wrap.o + .debug_aranges + 0x00000000 0x268 application/Debug/obj/md_wrap.o + .debug_ranges 0x00000000 0x258 application/Debug/obj/md_wrap.o + .debug_line 0x00000000 0x791 application/Debug/obj/md_wrap.o + .debug_str 0x00000000 0xe0a application/Debug/obj/md_wrap.o + .comment 0x00000000 0x71 application/Debug/obj/md_wrap.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/md_wrap.o + .debug_frame 0x00000000 0x540 application/Debug/obj/md_wrap.o + .sdram.text 0x00000000 0x0 application/Debug/obj/md2.o + .sdram.data 0x00000000 0x0 application/Debug/obj/md2.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/md2.o + .debug_info 0x00000000 0x79 application/Debug/obj/md2.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/md2.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/md2.o + .debug_line 0x00000000 0x1d application/Debug/obj/md2.o + .debug_str 0x00000000 0x221 application/Debug/obj/md2.o + .comment 0x00000000 0x71 application/Debug/obj/md2.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/md2.o + .sdram.text 0x00000000 0x0 application/Debug/obj/md4.o + .sdram.data 0x00000000 0x0 application/Debug/obj/md4.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/md4.o + .debug_info 0x00000000 0x79 application/Debug/obj/md4.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/md4.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/md4.o + .debug_line 0x00000000 0x1d application/Debug/obj/md4.o + .debug_str 0x00000000 0x221 application/Debug/obj/md4.o + .comment 0x00000000 0x71 application/Debug/obj/md4.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/md4.o + .sdram.text 0x00000000 0x0 application/Debug/obj/md5.o + .sdram.data 0x00000000 0x0 application/Debug/obj/md5.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/md5.o + .sdram.text.md5_init + 0x00000000 0x8 application/Debug/obj/md5.o + .sdram.text.md5_free + 0x00000000 0x18 application/Debug/obj/md5.o + .sdram.text.md5_starts + 0x00000000 0x2c application/Debug/obj/md5.o + .sdram.text.md5_process + 0x00000000 0x888 application/Debug/obj/md5.o + .sdram.text.md5_update.part.0 + 0x00000000 0x90 application/Debug/obj/md5.o + .sdram.text.md5_update + 0x00000000 0x8 application/Debug/obj/md5.o + .sdram.text.md5_finish + 0x00000000 0xc4 application/Debug/obj/md5.o + .sdram.text.md5 + 0x00000000 0x6c application/Debug/obj/md5.o + .sdram.text.md5_hmac_starts + 0x00000000 0xdc application/Debug/obj/md5.o + .sdram.text.md5_hmac_update + 0x00000000 0x8 application/Debug/obj/md5.o + .sdram.text.md5_hmac_finish + 0x00000000 0x68 application/Debug/obj/md5.o + .sdram.text.md5_hmac_reset + 0x00000000 0x34 application/Debug/obj/md5.o + .sdram.text.md5_hmac + 0x00000000 0x54 application/Debug/obj/md5.o + .sdram.rodata.md5_padding + 0x00000000 0x40 application/Debug/obj/md5.o + .debug_info 0x00000000 0xd5f application/Debug/obj/md5.o + .debug_abbrev 0x00000000 0x2f4 application/Debug/obj/md5.o + .debug_loc 0x00000000 0x1561 application/Debug/obj/md5.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/md5.o + .debug_ranges 0x00000000 0x148 application/Debug/obj/md5.o + .debug_line 0x00000000 0x6fb application/Debug/obj/md5.o + .debug_str 0x00000000 0x364 application/Debug/obj/md5.o + .comment 0x00000000 0x71 application/Debug/obj/md5.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/md5.o + .debug_frame 0x00000000 0x180 application/Debug/obj/md5.o + .sdram.text 0x00000000 0x0 application/Debug/obj/memory_buffer_alloc.o + .sdram.data 0x00000000 0x0 application/Debug/obj/memory_buffer_alloc.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/memory_buffer_alloc.o + .debug_info 0x00000000 0x79 application/Debug/obj/memory_buffer_alloc.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/memory_buffer_alloc.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/memory_buffer_alloc.o + .debug_line 0x00000000 0x1d application/Debug/obj/memory_buffer_alloc.o + .debug_str 0x00000000 0x231 application/Debug/obj/memory_buffer_alloc.o + .comment 0x00000000 0x71 application/Debug/obj/memory_buffer_alloc.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/memory_buffer_alloc.o + .sdram.text 0x00000000 0x0 application/Debug/obj/net.o + .sdram.data 0x00000000 0x0 application/Debug/obj/net.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/net.o + .sdram.text.net_connect + 0x00000000 0x68 application/Debug/obj/net.o + .sdram.text.net_bind + 0x00000000 0xe0 application/Debug/obj/net.o + .sdram.text.net_accept + 0x00000000 0x34 application/Debug/obj/net.o + .sdram.text.net_set_block + 0x00000000 0x1c application/Debug/obj/net.o + .sdram.text.net_set_nonblock + 0x00000000 0x1c application/Debug/obj/net.o + .sdram.text.net_recv + 0x00000000 0x34 application/Debug/obj/net.o + .sdram.text.net_send + 0x00000000 0x34 application/Debug/obj/net.o + .sdram.text.net_close + 0x00000000 0x14 application/Debug/obj/net.o + .sdram.rodata.str1.4 + 0x00000000 0xc application/Debug/obj/net.o + .debug_info 0x00000000 0x8f9 application/Debug/obj/net.o + .debug_abbrev 0x00000000 0x23e application/Debug/obj/net.o + .debug_loc 0x00000000 0x369 application/Debug/obj/net.o + .debug_aranges + 0x00000000 0x58 application/Debug/obj/net.o + .debug_ranges 0x00000000 0x48 application/Debug/obj/net.o + .debug_line 0x00000000 0x41e application/Debug/obj/net.o + .debug_str 0x00000000 0x47e application/Debug/obj/net.o + .comment 0x00000000 0x71 application/Debug/obj/net.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/net.o + .debug_frame 0x00000000 0xec application/Debug/obj/net.o + .sdram.text 0x00000000 0x0 application/Debug/obj/oid.o + .sdram.data 0x00000000 0x0 application/Debug/obj/oid.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/oid.o + .sdram.text.oid_sig_alg_from_asn1 + 0x00000000 0x34 application/Debug/obj/oid.o + .sdram.text.oid_get_attr_short_name + 0x00000000 0x3c application/Debug/obj/oid.o + .sdram.text.oid_get_x509_ext_type + 0x00000000 0x3c application/Debug/obj/oid.o + .sdram.text.oid_get_extended_key_usage + 0x00000000 0x3c application/Debug/obj/oid.o + .sdram.text.oid_get_sig_alg_desc + 0x00000000 0x18 application/Debug/obj/oid.o + .sdram.text.oid_get_sig_alg + 0x00000000 0x20 application/Debug/obj/oid.o + .sdram.text.oid_get_oid_by_sig_alg + 0x00000000 0x38 application/Debug/obj/oid.o + .sdram.text.oid_get_pk_alg + 0x00000000 0x3c application/Debug/obj/oid.o + .sdram.text.oid_get_oid_by_pk_alg + 0x00000000 0x38 application/Debug/obj/oid.o + .sdram.text.oid_get_cipher_alg + 0x00000000 0x3c application/Debug/obj/oid.o + .sdram.text.oid_get_md_alg + 0x00000000 0x3c application/Debug/obj/oid.o + .sdram.text.oid_get_oid_by_md + 0x00000000 0x38 application/Debug/obj/oid.o + .sdram.text.oid_get_numeric_string + 0x00000000 0xcc application/Debug/obj/oid.o + .sdram.rodata.oid_pk_alg + 0x00000000 0x50 application/Debug/obj/oid.o + .sdram.rodata.oid_cipher_alg + 0x00000000 0x3c application/Debug/obj/oid.o + .sdram.rodata.str1.4 + 0x00000000 0x9c0 application/Debug/obj/oid.o + .sdram.rodata.oid_md_alg + 0x00000000 0xb4 application/Debug/obj/oid.o + .sdram.rodata.oid_ext_key_usage + 0x00000000 0x70 application/Debug/obj/oid.o + .sdram.rodata.oid_x509_ext + 0x00000000 0x78 application/Debug/obj/oid.o + .sdram.rodata.oid_x520_attr_type + 0x00000000 0x17c application/Debug/obj/oid.o + .sdram.rodata.oid_sig_alg + 0x00000000 0x180 application/Debug/obj/oid.o + .debug_info 0x00000000 0xd23 application/Debug/obj/oid.o + .debug_abbrev 0x00000000 0x2cd application/Debug/obj/oid.o + .debug_loc 0x00000000 0x876 application/Debug/obj/oid.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/oid.o + .debug_ranges 0x00000000 0x100 application/Debug/obj/oid.o + .debug_line 0x00000000 0x32c application/Debug/obj/oid.o + .debug_str 0x00000000 0xc36 application/Debug/obj/oid.o + .comment 0x00000000 0x71 application/Debug/obj/oid.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/oid.o + .debug_frame 0x00000000 0x17c application/Debug/obj/oid.o + .sdram.text 0x00000000 0x0 application/Debug/obj/padlock.o + .sdram.data 0x00000000 0x0 application/Debug/obj/padlock.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/padlock.o + .debug_info 0x00000000 0x79 application/Debug/obj/padlock.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/padlock.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/padlock.o + .debug_line 0x00000000 0x1d application/Debug/obj/padlock.o + .debug_str 0x00000000 0x225 application/Debug/obj/padlock.o + .comment 0x00000000 0x71 application/Debug/obj/padlock.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/padlock.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pbkdf2.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pbkdf2.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pbkdf2.o + .debug_info 0x00000000 0x79 application/Debug/obj/pbkdf2.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/pbkdf2.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/pbkdf2.o + .debug_line 0x00000000 0x1d application/Debug/obj/pbkdf2.o + .debug_str 0x00000000 0x224 application/Debug/obj/pbkdf2.o + .comment 0x00000000 0x71 application/Debug/obj/pbkdf2.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pbkdf2.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pem.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pem.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pem.o + .sdram.text.pem_aes_decrypt + 0x00000000 0x12c application/Debug/obj/pem.o + .sdram.text.pem_init + 0x00000000 0x8 application/Debug/obj/pem.o + .sdram.text.pem_read_buffer + 0x00000000 0x2ac application/Debug/obj/pem.o + .sdram.text.pem_free + 0x00000000 0x2c application/Debug/obj/pem.o + .sdram.rodata.str1.4 + 0x00000000 0x70 application/Debug/obj/pem.o + .debug_info 0x00000000 0xf68 application/Debug/obj/pem.o + .debug_abbrev 0x00000000 0x329 application/Debug/obj/pem.o + .debug_loc 0x00000000 0xb6b application/Debug/obj/pem.o + .debug_aranges + 0x00000000 0x38 application/Debug/obj/pem.o + .debug_ranges 0x00000000 0x58 application/Debug/obj/pem.o + .debug_line 0x00000000 0x446 application/Debug/obj/pem.o + .debug_str 0x00000000 0xb60 application/Debug/obj/pem.o + .comment 0x00000000 0x71 application/Debug/obj/pem.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pem.o + .debug_frame 0x00000000 0x8c application/Debug/obj/pem.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pkcs5.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pkcs5.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pkcs5.o + .debug_info 0x00000000 0x79 application/Debug/obj/pkcs5.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/pkcs5.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/pkcs5.o + .debug_line 0x00000000 0x1d application/Debug/obj/pkcs5.o + .debug_str 0x00000000 0x223 application/Debug/obj/pkcs5.o + .comment 0x00000000 0x71 application/Debug/obj/pkcs5.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pkcs5.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pkcs11.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pkcs11.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pkcs11.o + .debug_info 0x00000000 0x79 application/Debug/obj/pkcs11.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/pkcs11.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/pkcs11.o + .debug_line 0x00000000 0x1d application/Debug/obj/pkcs11.o + .debug_str 0x00000000 0x224 application/Debug/obj/pkcs11.o + .comment 0x00000000 0x71 application/Debug/obj/pkcs11.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pkcs11.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pkcs12.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pkcs12.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pkcs12.o + .debug_info 0x00000000 0x79 application/Debug/obj/pkcs12.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/pkcs12.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/pkcs12.o + .debug_line 0x00000000 0x1d application/Debug/obj/pkcs12.o + .debug_str 0x00000000 0x224 application/Debug/obj/pkcs12.o + .comment 0x00000000 0x71 application/Debug/obj/pkcs12.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pkcs12.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pk.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pk.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pk.o + .sdram.text.pk_init + 0x00000000 0xc application/Debug/obj/pk.o + .sdram.text.pk_free + 0x00000000 0x24 application/Debug/obj/pk.o + .sdram.text.pk_info_from_type + 0x00000000 0x10 application/Debug/obj/pk.o + .sdram.text.pk_init_ctx + 0x00000000 0x2c application/Debug/obj/pk.o + .sdram.text.pk_init_ctx_rsa_alt + 0x00000000 0x48 application/Debug/obj/pk.o + .sdram.text.pk_can_do + 0x00000000 0x14 application/Debug/obj/pk.o + .sdram.text.pk_verify + 0x00000000 0x48 application/Debug/obj/pk.o + .sdram.text.pk_verify_ext + 0x00000000 0x68 application/Debug/obj/pk.o + .sdram.text.pk_sign + 0x00000000 0x50 application/Debug/obj/pk.o + .sdram.text.pk_decrypt + 0x00000000 0x38 application/Debug/obj/pk.o + .sdram.text.pk_encrypt + 0x00000000 0x38 application/Debug/obj/pk.o + .sdram.text.pk_get_size + 0x00000000 0x14 application/Debug/obj/pk.o + .sdram.text.pk_debug + 0x00000000 0x24 application/Debug/obj/pk.o + .sdram.text.pk_get_name + 0x00000000 0x14 application/Debug/obj/pk.o + .sdram.text.pk_get_type + 0x00000000 0xc application/Debug/obj/pk.o + .sdram.rodata.str1.4 + 0x00000000 0xc application/Debug/obj/pk.o + .debug_info 0x00000000 0xdda application/Debug/obj/pk.o + .debug_abbrev 0x00000000 0x311 application/Debug/obj/pk.o + .debug_loc 0x00000000 0xccd application/Debug/obj/pk.o + .debug_aranges + 0x00000000 0x90 application/Debug/obj/pk.o + .debug_ranges 0x00000000 0xb0 application/Debug/obj/pk.o + .debug_line 0x00000000 0x31e application/Debug/obj/pk.o + .debug_str 0x00000000 0x6df application/Debug/obj/pk.o + .comment 0x00000000 0x71 application/Debug/obj/pk.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pk.o + .debug_frame 0x00000000 0x188 application/Debug/obj/pk.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pk_wrap.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pk_wrap.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_can_do + 0x00000000 0xc application/Debug/obj/pk_wrap.o + .sdram.text.rsa_get_size + 0x00000000 0x8 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_debug + 0x00000000 0x28 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_alt_can_do + 0x00000000 0x8 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_alt_get_size + 0x00000000 0xc application/Debug/obj/pk_wrap.o + .sdram.text.rsa_alt_sign_wrap + 0x00000000 0x3c application/Debug/obj/pk_wrap.o + .sdram.text.rsa_alt_decrypt_wrap + 0x00000000 0x38 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_alt_free_wrap + 0x00000000 0x24 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_free_wrap + 0x00000000 0x18 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_alloc_wrap + 0x00000000 0x20 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_encrypt_wrap + 0x00000000 0x20 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_decrypt_wrap + 0x00000000 0x2c application/Debug/obj/pk_wrap.o + .sdram.text.rsa_sign_wrap + 0x00000000 0x20 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_verify_wrap + 0x00000000 0x44 application/Debug/obj/pk_wrap.o + .sdram.text.rsa_alt_alloc_wrap + 0x00000000 0x20 application/Debug/obj/pk_wrap.o + .sdram.rodata.rsa_info + 0x00000000 0x2c application/Debug/obj/pk_wrap.o + .sdram.rodata.rsa_alt_info + 0x00000000 0x2c application/Debug/obj/pk_wrap.o + .sdram.rodata.str1.4 + 0x00000000 0x1c application/Debug/obj/pk_wrap.o + .debug_info 0x00000000 0xf55 application/Debug/obj/pk_wrap.o + .debug_abbrev 0x00000000 0x32e application/Debug/obj/pk_wrap.o + .debug_loc 0x00000000 0x934 application/Debug/obj/pk_wrap.o + .debug_aranges + 0x00000000 0x90 application/Debug/obj/pk_wrap.o + .debug_ranges 0x00000000 0x80 application/Debug/obj/pk_wrap.o + .debug_line 0x00000000 0x41f application/Debug/obj/pk_wrap.o + .debug_str 0x00000000 0x84e application/Debug/obj/pk_wrap.o + .comment 0x00000000 0x71 application/Debug/obj/pk_wrap.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pk_wrap.o + .debug_frame 0x00000000 0x188 application/Debug/obj/pk_wrap.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pkparse.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pkparse.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pkparse.o + .sdram.text.pk_parse_key_pkcs1_der + 0x00000000 0x114 application/Debug/obj/pkparse.o + .sdram.text.pk_get_pk_alg + 0x00000000 0x64 application/Debug/obj/pkparse.o + .sdram.text.pk_parse_key_pkcs8_unencrypted_der + 0x00000000 0xb0 application/Debug/obj/pkparse.o + .sdram.text.pk_parse_key_pkcs8_encrypted_der.isra.1 + 0x00000000 0x7c application/Debug/obj/pkparse.o + .sdram.text.pk_parse_subpubkey + 0x00000000 0xfc application/Debug/obj/pkparse.o + .sdram.text.pk_parse_key + 0x00000000 0x174 application/Debug/obj/pkparse.o + .sdram.text.pk_parse_public_key + 0x00000000 0x5c application/Debug/obj/pkparse.o + .sdram.rodata.str1.4 + 0x00000000 0xfc application/Debug/obj/pkparse.o + .debug_info 0x00000000 0x1446 application/Debug/obj/pkparse.o + .debug_abbrev 0x00000000 0x2c0 application/Debug/obj/pkparse.o + .debug_loc 0x00000000 0xa43 application/Debug/obj/pkparse.o + .debug_aranges + 0x00000000 0x50 application/Debug/obj/pkparse.o + .debug_ranges 0x00000000 0x78 application/Debug/obj/pkparse.o + .debug_line 0x00000000 0x43f application/Debug/obj/pkparse.o + .debug_str 0x00000000 0x6bf application/Debug/obj/pkparse.o + .comment 0x00000000 0x71 application/Debug/obj/pkparse.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pkparse.o + .debug_frame 0x00000000 0xfc application/Debug/obj/pkparse.o + .sdram.text 0x00000000 0x0 application/Debug/obj/pkwrite.o + .sdram.data 0x00000000 0x0 application/Debug/obj/pkwrite.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/pkwrite.o + .debug_info 0x00000000 0x79 application/Debug/obj/pkwrite.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/pkwrite.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/pkwrite.o + .debug_line 0x00000000 0x1d application/Debug/obj/pkwrite.o + .debug_str 0x00000000 0x225 application/Debug/obj/pkwrite.o + .comment 0x00000000 0x71 application/Debug/obj/pkwrite.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/pkwrite.o + .sdram.text 0x00000000 0x0 application/Debug/obj/platform.o + .sdram.data 0x00000000 0x0 application/Debug/obj/platform.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/platform.o + .debug_info 0x00000000 0x79 application/Debug/obj/platform.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/platform.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/platform.o + .debug_line 0x00000000 0x1d application/Debug/obj/platform.o + .debug_str 0x00000000 0x226 application/Debug/obj/platform.o + .comment 0x00000000 0x71 application/Debug/obj/platform.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/platform.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ripemd160.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ripemd160.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ripemd160.o + .debug_info 0x00000000 0x79 application/Debug/obj/ripemd160.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/ripemd160.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/ripemd160.o + .debug_line 0x00000000 0x1d application/Debug/obj/ripemd160.o + .debug_str 0x00000000 0x227 application/Debug/obj/ripemd160.o + .comment 0x00000000 0x71 application/Debug/obj/ripemd160.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ripemd160.o + .sdram.text 0x00000000 0x0 application/Debug/obj/rsa.o + .sdram.data 0x00000000 0x0 application/Debug/obj/rsa.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/rsa.o + .sdram.text.rsa_init + 0x00000000 0x1c application/Debug/obj/rsa.o + .sdram.text.rsa_set_padding + 0x00000000 0xc application/Debug/obj/rsa.o + .sdram.text.rsa_check_pubkey + 0x00000000 0x5c application/Debug/obj/rsa.o + .sdram.text.rsa_check_privkey + 0x00000000 0x2c4 application/Debug/obj/rsa.o + .sdram.text.rsa_public + 0x00000000 0x80 application/Debug/obj/rsa.o + .sdram.text.rsa_private + 0x00000000 0x208 application/Debug/obj/rsa.o + .sdram.text.rsa_rsaes_pkcs1_v15_encrypt + 0x00000000 0xec application/Debug/obj/rsa.o + .sdram.text.rsa_pkcs1_encrypt + 0x00000000 0x18 application/Debug/obj/rsa.o + .sdram.text.rsa_rsaes_pkcs1_v15_decrypt + 0x00000000 0xfc application/Debug/obj/rsa.o + .sdram.text.rsa_pkcs1_decrypt + 0x00000000 0x18 application/Debug/obj/rsa.o + .sdram.text.rsa_rsassa_pkcs1_v15_sign + 0x00000000 0x110 application/Debug/obj/rsa.o + .sdram.text.rsa_pkcs1_sign + 0x00000000 0x18 application/Debug/obj/rsa.o + .sdram.text.rsa_rsassa_pkcs1_v15_verify + 0x00000000 0x190 application/Debug/obj/rsa.o + .sdram.text.rsa_pkcs1_verify + 0x00000000 0x18 application/Debug/obj/rsa.o + .sdram.text.rsa_free + 0x00000000 0x70 application/Debug/obj/rsa.o + .sdram.text.rsa_gen_key + 0x00000000 0x1c0 application/Debug/obj/rsa.o + .sdram.text.rsa_copy + 0x00000000 0x110 application/Debug/obj/rsa.o + .debug_info 0x00000000 0x290a application/Debug/obj/rsa.o + .debug_abbrev 0x00000000 0x3ba application/Debug/obj/rsa.o + .debug_loc 0x00000000 0x215d application/Debug/obj/rsa.o + .debug_aranges + 0x00000000 0xa0 application/Debug/obj/rsa.o + .debug_ranges 0x00000000 0xd8 application/Debug/obj/rsa.o + .debug_line 0x00000000 0x69a application/Debug/obj/rsa.o + .debug_str 0x00000000 0x766 application/Debug/obj/rsa.o + .comment 0x00000000 0x71 application/Debug/obj/rsa.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rsa.o + .debug_frame 0x00000000 0x228 application/Debug/obj/rsa.o + .sdram.text 0x00000000 0x0 application/Debug/obj/sha1.o + .sdram.data 0x00000000 0x0 application/Debug/obj/sha1.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/sha1.o + .sdram.text.sha1_init + 0x00000000 0x8 application/Debug/obj/sha1.o + .sdram.text.sha1_free + 0x00000000 0x18 application/Debug/obj/sha1.o + .sdram.text.sha1_starts + 0x00000000 0x34 application/Debug/obj/sha1.o + .sdram.text.sha1_process + 0x00000000 0x1408 application/Debug/obj/sha1.o + .sdram.text.sha1_update.part.0 + 0x00000000 0x8c application/Debug/obj/sha1.o + .sdram.text.sha1_update + 0x00000000 0x8 application/Debug/obj/sha1.o + .sdram.text.sha1_finish + 0x00000000 0xd4 application/Debug/obj/sha1.o + .sdram.text.sha1 + 0x00000000 0x74 application/Debug/obj/sha1.o + .sdram.text.sha1_hmac_starts + 0x00000000 0xec application/Debug/obj/sha1.o + .sdram.text.sha1_hmac_update + 0x00000000 0x8 application/Debug/obj/sha1.o + .sdram.text.sha1_hmac_finish + 0x00000000 0x70 application/Debug/obj/sha1.o + .sdram.text.sha1_hmac_reset + 0x00000000 0x3c application/Debug/obj/sha1.o + .sdram.text.sha1_hmac + 0x00000000 0x54 application/Debug/obj/sha1.o + .sdram.rodata.sha1_padding + 0x00000000 0x40 application/Debug/obj/sha1.o + .debug_info 0x00000000 0xd8a application/Debug/obj/sha1.o + .debug_abbrev 0x00000000 0x2dc application/Debug/obj/sha1.o + .debug_loc 0x00000000 0xb499 application/Debug/obj/sha1.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/sha1.o + .debug_ranges 0x00000000 0x150 application/Debug/obj/sha1.o + .debug_line 0x00000000 0xb90 application/Debug/obj/sha1.o + .debug_str 0x00000000 0x37c application/Debug/obj/sha1.o + .comment 0x00000000 0x71 application/Debug/obj/sha1.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/sha1.o + .debug_frame 0x00000000 0x184 application/Debug/obj/sha1.o + .sdram.text 0x00000000 0x0 application/Debug/obj/sha256.o + .sdram.data 0x00000000 0x0 application/Debug/obj/sha256.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/sha256.o + .sdram.text.sha256_init + 0x00000000 0x8 application/Debug/obj/sha256.o + .sdram.text.sha256_free + 0x00000000 0x18 application/Debug/obj/sha256.o + .sdram.text.sha256_starts + 0x00000000 0x94 application/Debug/obj/sha256.o + .sdram.text.sha256_process + 0x00000000 0x1f64 application/Debug/obj/sha256.o + .sdram.text.sha256_update.part.0 + 0x00000000 0x90 application/Debug/obj/sha256.o + .sdram.text.sha256_update + 0x00000000 0x8 application/Debug/obj/sha256.o + .sdram.text.sha256_finish + 0x00000000 0x114 application/Debug/obj/sha256.o + .sdram.text.sha256 + 0x00000000 0xdc application/Debug/obj/sha256.o + .sdram.text.sha256_hmac_starts + 0x00000000 0x168 application/Debug/obj/sha256.o + .sdram.text.sha256_hmac_update + 0x00000000 0x8 application/Debug/obj/sha256.o + .sdram.text.sha256_hmac_finish + 0x00000000 0x110 application/Debug/obj/sha256.o + .sdram.text.sha256_hmac_reset + 0x00000000 0xa4 application/Debug/obj/sha256.o + .sdram.text.sha256_hmac + 0x00000000 0x58 application/Debug/obj/sha256.o + .sdram.rodata.sha256_padding + 0x00000000 0x40 application/Debug/obj/sha256.o + .debug_info 0x00000000 0xe6c application/Debug/obj/sha256.o + .debug_abbrev 0x00000000 0x2e9 application/Debug/obj/sha256.o + .debug_loc 0x00000000 0x2a38 application/Debug/obj/sha256.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/sha256.o + .debug_ranges 0x00000000 0x1a8 application/Debug/obj/sha256.o + .debug_line 0x00000000 0xbd2 application/Debug/obj/sha256.o + .debug_str 0x00000000 0x3ac application/Debug/obj/sha256.o + .comment 0x00000000 0x71 application/Debug/obj/sha256.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/sha256.o + .debug_frame 0x00000000 0x19c application/Debug/obj/sha256.o + .sdram.text 0x00000000 0x0 application/Debug/obj/sha512.o + .sdram.data 0x00000000 0x0 application/Debug/obj/sha512.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/sha512.o + .sdram.text.sha512_init + 0x00000000 0xc application/Debug/obj/sha512.o + .sdram.text.sha512_free + 0x00000000 0x18 application/Debug/obj/sha512.o + .sdram.text.sha512_starts + 0x00000000 0x150 application/Debug/obj/sha512.o + .sdram.text.sha512_process + 0x00000000 0xe7c application/Debug/obj/sha512.o + .sdram.text.sha512_update.part.0 + 0x00000000 0xb4 application/Debug/obj/sha512.o + .sdram.text.sha512_update + 0x00000000 0x8 application/Debug/obj/sha512.o + .sdram.text.sha512_finish + 0x00000000 0x360 application/Debug/obj/sha512.o + .sdram.text.sha512 + 0x00000000 0x4c application/Debug/obj/sha512.o + .sdram.text.sha512_hmac_starts + 0x00000000 0xd4 application/Debug/obj/sha512.o + .sdram.text.sha512_hmac_update + 0x00000000 0x8 application/Debug/obj/sha512.o + .sdram.text.sha512_hmac_finish + 0x00000000 0x58 application/Debug/obj/sha512.o + .sdram.text.sha512_hmac_reset + 0x00000000 0x1c application/Debug/obj/sha512.o + .sdram.text.sha512_hmac + 0x00000000 0x58 application/Debug/obj/sha512.o + .sdram.rodata.sha512_padding + 0x00000000 0x80 application/Debug/obj/sha512.o + .sdram.rodata.K + 0x00000000 0x280 application/Debug/obj/sha512.o + .debug_info 0x00000000 0xe3c application/Debug/obj/sha512.o + .debug_abbrev 0x00000000 0x318 application/Debug/obj/sha512.o + .debug_loc 0x00000000 0x137a application/Debug/obj/sha512.o + .debug_aranges + 0x00000000 0x80 application/Debug/obj/sha512.o + .debug_ranges 0x00000000 0x108 application/Debug/obj/sha512.o + .debug_line 0x00000000 0x612 application/Debug/obj/sha512.o + .debug_str 0x00000000 0x3ac application/Debug/obj/sha512.o + .comment 0x00000000 0x71 application/Debug/obj/sha512.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/sha512.o + .debug_frame 0x00000000 0x198 application/Debug/obj/sha512.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ssl_cache.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ssl_cache.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ssl_cache.o + .sdram.text.ssl_cache_init + 0x00000000 0x1c application/Debug/obj/ssl_cache.o + .sdram.text.ssl_cache_get + 0x00000000 0xa0 application/Debug/obj/ssl_cache.o + .sdram.text.ssl_cache_set + 0x00000000 0xdc application/Debug/obj/ssl_cache.o + .sdram.text.ssl_cache_set_max_entries + 0x00000000 0x8 application/Debug/obj/ssl_cache.o + .sdram.text.ssl_cache_free + 0x00000000 0x30 application/Debug/obj/ssl_cache.o + .debug_info 0x00000000 0xc9b application/Debug/obj/ssl_cache.o + .debug_abbrev 0x00000000 0x2ce application/Debug/obj/ssl_cache.o + .debug_loc 0x00000000 0x2d2 application/Debug/obj/ssl_cache.o + .debug_aranges + 0x00000000 0x40 application/Debug/obj/ssl_cache.o + .debug_ranges 0x00000000 0x30 application/Debug/obj/ssl_cache.o + .debug_line 0x00000000 0x3c1 application/Debug/obj/ssl_cache.o + .debug_str 0x00000000 0x960 application/Debug/obj/ssl_cache.o + .comment 0x00000000 0x71 application/Debug/obj/ssl_cache.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ssl_cache.o + .debug_frame 0x00000000 0x94 application/Debug/obj/ssl_cache.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ssl_ciphersuites.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ssl_ciphersuites.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ssl_ciphersuites.o + .sdram.text.ssl_list_ciphersuites + 0x00000000 0x58 application/Debug/obj/ssl_ciphersuites.o + .sdram.text.ssl_ciphersuite_from_string + 0x00000000 0x2c application/Debug/obj/ssl_ciphersuites.o + .sdram.text.ssl_ciphersuite_from_id + 0x00000000 0x24 application/Debug/obj/ssl_ciphersuites.o + .sdram.text.ssl_get_ciphersuite_name + 0x00000000 0x24 application/Debug/obj/ssl_ciphersuites.o + .sdram.text.ssl_get_ciphersuite_id + 0x00000000 0xc application/Debug/obj/ssl_ciphersuites.o + .sdram.text.ssl_get_ciphersuite_sig_pk_alg + 0x00000000 0x30 application/Debug/obj/ssl_ciphersuites.o + .sdram.bss.supported_ciphersuites + 0x00000000 0x1c application/Debug/obj/ssl_ciphersuites.o + .sdram.rodata.str1.4 + 0x00000000 0xc4 application/Debug/obj/ssl_ciphersuites.o + .sdram.rodata.ciphersuite_definitions + 0x00000000 0x118 application/Debug/obj/ssl_ciphersuites.o + .sdram.bss.supported_init + 0x00000000 0x4 application/Debug/obj/ssl_ciphersuites.o + .sdram.rodata.ciphersuite_preference + 0x00000000 0x288 application/Debug/obj/ssl_ciphersuites.o + .debug_info 0x00000000 0x5d3 application/Debug/obj/ssl_ciphersuites.o + .debug_abbrev 0x00000000 0x19e application/Debug/obj/ssl_ciphersuites.o + .debug_loc 0x00000000 0x2a2 application/Debug/obj/ssl_ciphersuites.o + .debug_aranges + 0x00000000 0x48 application/Debug/obj/ssl_ciphersuites.o + .debug_ranges 0x00000000 0x50 application/Debug/obj/ssl_ciphersuites.o + .debug_line 0x00000000 0x1e8 application/Debug/obj/ssl_ciphersuites.o + .debug_str 0x00000000 0xc45 application/Debug/obj/ssl_ciphersuites.o + .comment 0x00000000 0x71 application/Debug/obj/ssl_ciphersuites.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ssl_ciphersuites.o + .debug_frame 0x00000000 0x90 application/Debug/obj/ssl_ciphersuites.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ssl_cli.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ssl_cli.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ssl_cli.o + .sdram.text.ssl_handshake_client_step + 0x00000000 0xba8 application/Debug/obj/ssl_cli.o + .debug_info 0x00000000 0x3047 application/Debug/obj/ssl_cli.o + .debug_abbrev 0x00000000 0x3b9 application/Debug/obj/ssl_cli.o + .debug_loc 0x00000000 0x1bec application/Debug/obj/ssl_cli.o + .debug_aranges + 0x00000000 0x20 application/Debug/obj/ssl_cli.o + .debug_ranges 0x00000000 0x360 application/Debug/obj/ssl_cli.o + .debug_line 0x00000000 0x7a7 application/Debug/obj/ssl_cli.o + .debug_str 0x00000000 0x1fb3 application/Debug/obj/ssl_cli.o + .comment 0x00000000 0x71 application/Debug/obj/ssl_cli.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ssl_cli.o + .debug_frame 0x00000000 0x38 application/Debug/obj/ssl_cli.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ssl_srv.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ssl_srv.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ssl_srv.o + .debug_info 0x00000000 0x79 application/Debug/obj/ssl_srv.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/ssl_srv.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/ssl_srv.o + .debug_line 0x00000000 0x1d application/Debug/obj/ssl_srv.o + .debug_str 0x00000000 0x225 application/Debug/obj/ssl_srv.o + .comment 0x00000000 0x71 application/Debug/obj/ssl_srv.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ssl_srv.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ssl_tls.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ssl_tls.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_calc_finished_tls_sha256 + 0x00000000 0x7c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_calc_verify_tls_sha256 + 0x00000000 0x28 application/Debug/obj/ssl_tls.o + .sdram.text.tls_prf_sha256 + 0x00000000 0xf0 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_calc_finished_tls_sha384 + 0x00000000 0x80 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_calc_verify_tls_sha384 + 0x00000000 0x28 application/Debug/obj/ssl_tls.o + .sdram.text.tls_prf_sha384 + 0x00000000 0x104 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_calc_finished_tls + 0x00000000 0x94 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_calc_verify_tls + 0x00000000 0x44 application/Debug/obj/ssl_tls.o + .sdram.text.tls1_prf + 0x00000000 0x19c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_update_checksum_md5sha1 + 0x00000000 0x20 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_calc_finished_ssl + 0x00000000 0x14c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_calc_verify_ssl + 0x00000000 0xe4 application/Debug/obj/ssl_tls.o + .sdram.text.ssl3_prf + 0x00000000 0xcc application/Debug/obj/ssl_tls.o + .sdram.text.ssl_mac + 0x00000000 0xdc application/Debug/obj/ssl_tls.o + .sdram.text.ssl_update_checksum_sha256 + 0x00000000 0xc application/Debug/obj/ssl_tls.o + .sdram.text.ssl_update_checksum_sha384 + 0x00000000 0xc application/Debug/obj/ssl_tls.o + .sdram.text.ssl_update_checksum_start + 0x00000000 0x3c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_ticket_keys_free + 0x00000000 0x28 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_add_key_cert.isra.1 + 0x00000000 0x40 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_derive_keys + 0x00000000 0x3a0 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_fetch_input + 0x00000000 0x50 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_flush_output + 0x00000000 0x38 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_write_record + 0x00000000 0x250 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_read_record + 0x00000000 0x4e8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_send_fatal_handshake_failure + 0x00000000 0x24 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_send_alert_message + 0x00000000 0x20 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_write_certificate + 0x00000000 0x124 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_parse_certificate + 0x00000000 0x21c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_write_change_cipher_spec + 0x00000000 0x24 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_parse_change_cipher_spec + 0x00000000 0x3c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_optimize_checksum + 0x00000000 0x30 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_write_finished + 0x00000000 0xb0 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_parse_finished + 0x00000000 0xec application/Debug/obj/ssl_tls.o + .sdram.text.ssl_session_init + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_endpoint + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_authmode + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_verify + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_rng + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_dbg + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_bio + 0x00000000 0x14 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_session_cache + 0x00000000 0x14 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_ciphersuites + 0x00000000 0x14 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_ciphersuites_for_version + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_ca_chain + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_own_cert + 0x00000000 0x24 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_own_cert_rsa + 0x00000000 0x5c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_own_cert_alt + 0x00000000 0x58 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_hostname + 0x00000000 0x50 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_sni + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_max_version + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_min_version + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_max_frag_len + 0x00000000 0x24 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_truncated_hmac + 0x00000000 0x18 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_renegotiation + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_legacy_renegotiation + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_renegotiation_enforced + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_session_tickets + 0x00000000 0xbc application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_session_ticket_lifetime + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_get_bytes_avail + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_get_verify_result + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_get_ciphersuite + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_get_version + 0x00000000 0x18 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_get_peer_cert + 0x00000000 0xc application/Debug/obj/ssl_tls.o + .sdram.text.ssl_handshake_step + 0x00000000 0x14 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_handshake + 0x00000000 0x2c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_write + 0x00000000 0x7c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_close_notify + 0x00000000 0x3c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_transform_free + 0x00000000 0x38 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_handshake_free + 0x00000000 0x34 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_session_free + 0x00000000 0x34 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_handshake_wrapup + 0x00000000 0x84 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_handshake_init + 0x00000000 0x140 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_init + 0x00000000 0xe8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_start_renegotiation + 0x00000000 0x1c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_renegotiate + 0x00000000 0x1c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_read + 0x00000000 0x138 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_session_reset + 0x00000000 0xc4 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_session_copy + 0x00000000 0x70 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_set_session + 0x00000000 0x2c application/Debug/obj/ssl_tls.o + .sdram.text.ssl_get_session + 0x00000000 0x20 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_free + 0x00000000 0x134 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_sig_from_pk + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_pk_alg_from_sig + 0x00000000 0x8 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_md_alg_from_hash + 0x00000000 0x18 application/Debug/obj/ssl_tls.o + .sdram.text.ssl_check_cert_usage + 0x00000000 0x4 application/Debug/obj/ssl_tls.o + .sdram.rodata 0x00000000 0x4 application/Debug/obj/ssl_tls.o + .sdram.rodata.CSWTCH.107 + 0x00000000 0x10 application/Debug/obj/ssl_tls.o + .sdram.rodata.str1.4 + 0x00000000 0x94 application/Debug/obj/ssl_tls.o + .sdram.rodata.CSWTCH.130 + 0x00000000 0x18 application/Debug/obj/ssl_tls.o + .sdram.rodata.mfl_code_to_length + 0x00000000 0x14 application/Debug/obj/ssl_tls.o + .debug_info 0x00000000 0x6e09 application/Debug/obj/ssl_tls.o + .debug_abbrev 0x00000000 0x67f application/Debug/obj/ssl_tls.o + .debug_loc 0x00000000 0x3f68 application/Debug/obj/ssl_tls.o + .debug_aranges + 0x00000000 0x2c0 application/Debug/obj/ssl_tls.o + .debug_ranges 0x00000000 0x498 application/Debug/obj/ssl_tls.o + .debug_line 0x00000000 0x14f6 application/Debug/obj/ssl_tls.o + .debug_str 0x00000000 0x28d2 application/Debug/obj/ssl_tls.o + .comment 0x00000000 0x71 application/Debug/obj/ssl_tls.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ssl_tls.o + .debug_frame 0x00000000 0x87c application/Debug/obj/ssl_tls.o + .sdram.text 0x00000000 0x0 application/Debug/obj/threading.o + .sdram.data 0x00000000 0x0 application/Debug/obj/threading.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/threading.o + .debug_info 0x00000000 0x79 application/Debug/obj/threading.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/threading.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/threading.o + .debug_line 0x00000000 0x1d application/Debug/obj/threading.o + .debug_str 0x00000000 0x227 application/Debug/obj/threading.o + .comment 0x00000000 0x71 application/Debug/obj/threading.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/threading.o + .sdram.text 0x00000000 0x0 application/Debug/obj/timing.o + .sdram.data 0x00000000 0x0 application/Debug/obj/timing.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/timing.o + .debug_info 0x00000000 0x79 application/Debug/obj/timing.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/timing.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/timing.o + .debug_line 0x00000000 0x1d application/Debug/obj/timing.o + .debug_str 0x00000000 0x224 application/Debug/obj/timing.o + .comment 0x00000000 0x71 application/Debug/obj/timing.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/timing.o + .sdram.text 0x00000000 0x0 application/Debug/obj/version.o + .sdram.data 0x00000000 0x0 application/Debug/obj/version.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/version.o + .sdram.text.version_get_number + 0x00000000 0x8 application/Debug/obj/version.o + .sdram.text.version_get_string + 0x00000000 0xc application/Debug/obj/version.o + .sdram.text.version_get_string_full + 0x00000000 0xc application/Debug/obj/version.o + .sdram.rodata.str1.4 + 0x00000000 0x18 application/Debug/obj/version.o + .sdram.rodata.version + 0x00000000 0x8 application/Debug/obj/version.o + .debug_info 0x00000000 0x179 application/Debug/obj/version.o + .debug_abbrev 0x00000000 0xed application/Debug/obj/version.o + .debug_loc 0x00000000 0x42 application/Debug/obj/version.o + .debug_aranges + 0x00000000 0x30 application/Debug/obj/version.o + .debug_ranges 0x00000000 0x20 application/Debug/obj/version.o + .debug_line 0x00000000 0x153 application/Debug/obj/version.o + .debug_str 0x00000000 0x284 application/Debug/obj/version.o + .comment 0x00000000 0x71 application/Debug/obj/version.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/version.o + .debug_frame 0x00000000 0x40 application/Debug/obj/version.o + .sdram.text 0x00000000 0x0 application/Debug/obj/version_features.o + .sdram.data 0x00000000 0x0 application/Debug/obj/version_features.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/version_features.o + .sdram.text.version_check_feature + 0x00000000 0x30 application/Debug/obj/version_features.o + .sdram.bss.features + 0x00000000 0x4 application/Debug/obj/version_features.o + .debug_info 0x00000000 0x114 application/Debug/obj/version_features.o + .debug_abbrev 0x00000000 0xc8 application/Debug/obj/version_features.o + .debug_loc 0x00000000 0x79 application/Debug/obj/version_features.o + .debug_aranges + 0x00000000 0x20 application/Debug/obj/version_features.o + .debug_ranges 0x00000000 0x10 application/Debug/obj/version_features.o + .debug_line 0x00000000 0xf3 application/Debug/obj/version_features.o + .debug_str 0x00000000 0x260 application/Debug/obj/version_features.o + .comment 0x00000000 0x71 application/Debug/obj/version_features.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/version_features.o + .debug_frame 0x00000000 0x2c application/Debug/obj/version_features.o + .sdram.text 0x00000000 0x0 application/Debug/obj/x509.o + .sdram.data 0x00000000 0x0 application/Debug/obj/x509.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/x509.o + .sdram.text.x509_get_serial + 0x00000000 0x50 application/Debug/obj/x509.o + .sdram.text.x509_get_alg_null + 0x00000000 0x10 application/Debug/obj/x509.o + .sdram.text.x509_get_alg + 0x00000000 0x10 application/Debug/obj/x509.o + .sdram.text.x509_get_name + 0x00000000 0x130 application/Debug/obj/x509.o + .sdram.text.x509_get_time + 0x00000000 0x114 application/Debug/obj/x509.o + .sdram.text.x509_get_sig + 0x00000000 0x40 application/Debug/obj/x509.o + .sdram.text.x509_get_sig_alg + 0x00000000 0x40 application/Debug/obj/x509.o + .sdram.text.x509_get_ext + 0x00000000 0x64 application/Debug/obj/x509.o + .sdram.text.x509_dn_gets + 0x00000000 0x140 application/Debug/obj/x509.o + .sdram.text.x509_serial_gets + 0x00000000 0xcc application/Debug/obj/x509.o + .sdram.text.x509_sig_alg_gets + 0x00000000 0x54 application/Debug/obj/x509.o + .sdram.text.x509_key_size_helper + 0x00000000 0x48 application/Debug/obj/x509.o + .sdram.text.x509_oid_get_description + 0x00000000 0x20 application/Debug/obj/x509.o + .sdram.text.x509_oid_get_numeric_string + 0x00000000 0x4 application/Debug/obj/x509.o + .sdram.text.x509_time_expired + 0x00000000 0x4 application/Debug/obj/x509.o + .sdram.text.x509_time_future + 0x00000000 0x4 application/Debug/obj/x509.o + .sdram.rodata.str1.4 + 0x00000000 0x60 application/Debug/obj/x509.o + .debug_info 0x00000000 0x129c application/Debug/obj/x509.o + .debug_abbrev 0x00000000 0x272 application/Debug/obj/x509.o + .debug_loc 0x00000000 0xfc6 application/Debug/obj/x509.o + .debug_aranges + 0x00000000 0x98 application/Debug/obj/x509.o + .debug_ranges 0x00000000 0xb0 application/Debug/obj/x509.o + .debug_line 0x00000000 0x5fb application/Debug/obj/x509.o + .debug_str 0x00000000 0x810 application/Debug/obj/x509.o + .comment 0x00000000 0x71 application/Debug/obj/x509.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/x509.o + .debug_frame 0x00000000 0x1d0 application/Debug/obj/x509.o + .sdram.text 0x00000000 0x0 application/Debug/obj/x509_crt.o + .sdram.data 0x00000000 0x0 application/Debug/obj/x509_crt.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/x509_crt.o + .sdram.text.x509_name_cmp + 0x00000000 0x34 application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_check_parent + 0x00000000 0x64 application/Debug/obj/x509_crt.o + .sdram.text.unlikely.x509_get_uid + 0x00000000 0x3c application/Debug/obj/x509_crt.o + .sdram.text.x509_wildcard_verify.isra.1 + 0x00000000 0x6c application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_verify_top.isra.2 + 0x00000000 0x170 application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_verify_child + 0x00000000 0x128 application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_info + 0x00000000 0x6c0 application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_verify + 0x00000000 0x14c application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_init + 0x00000000 0xc application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_free + 0x00000000 0x108 application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_parse_der + 0x00000000 0x694 application/Debug/obj/x509_crt.o + .sdram.text.x509_crt_parse + 0x00000000 0xf4 application/Debug/obj/x509_crt.o + .sdram.rodata.str1.4 + 0x00000000 0x2ec application/Debug/obj/x509_crt.o + .debug_info 0x00000000 0x3438 application/Debug/obj/x509_crt.o + .debug_abbrev 0x00000000 0x3ef application/Debug/obj/x509_crt.o + .debug_loc 0x00000000 0x3630 application/Debug/obj/x509_crt.o + .debug_aranges + 0x00000000 0x78 application/Debug/obj/x509_crt.o + .debug_ranges 0x00000000 0x2a0 application/Debug/obj/x509_crt.o + .debug_line 0x00000000 0x9c6 application/Debug/obj/x509_crt.o + .debug_str 0x00000000 0xedf application/Debug/obj/x509_crt.o + .comment 0x00000000 0x71 application/Debug/obj/x509_crt.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/x509_crt.o + .debug_frame 0x00000000 0x1b4 application/Debug/obj/x509_crt.o + .sdram.text 0x00000000 0x0 application/Debug/obj/x509_crl.o + .sdram.data 0x00000000 0x0 application/Debug/obj/x509_crl.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/x509_crl.o + .debug_info 0x00000000 0x79 application/Debug/obj/x509_crl.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/x509_crl.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/x509_crl.o + .debug_line 0x00000000 0x1d application/Debug/obj/x509_crl.o + .debug_str 0x00000000 0x226 application/Debug/obj/x509_crl.o + .comment 0x00000000 0x71 application/Debug/obj/x509_crl.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/x509_crl.o + .sdram.text 0x00000000 0x0 application/Debug/obj/x509_csr.o + .sdram.data 0x00000000 0x0 application/Debug/obj/x509_csr.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/x509_csr.o + .debug_info 0x00000000 0x79 application/Debug/obj/x509_csr.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/x509_csr.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/x509_csr.o + .debug_line 0x00000000 0x1d application/Debug/obj/x509_csr.o + .debug_str 0x00000000 0x226 application/Debug/obj/x509_csr.o + .comment 0x00000000 0x71 application/Debug/obj/x509_csr.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/x509_csr.o + .sdram.text 0x00000000 0x0 application/Debug/obj/x509_create.o + .sdram.data 0x00000000 0x0 application/Debug/obj/x509_create.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/x509_create.o + .debug_info 0x00000000 0x79 application/Debug/obj/x509_create.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/x509_create.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/x509_create.o + .debug_line 0x00000000 0x1d application/Debug/obj/x509_create.o + .debug_str 0x00000000 0x229 application/Debug/obj/x509_create.o + .comment 0x00000000 0x71 application/Debug/obj/x509_create.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/x509_create.o + .sdram.text 0x00000000 0x0 application/Debug/obj/x509write_crt.o + .sdram.data 0x00000000 0x0 application/Debug/obj/x509write_crt.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/x509write_crt.o + .debug_info 0x00000000 0x79 application/Debug/obj/x509write_crt.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/x509write_crt.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/x509write_crt.o + .debug_line 0x00000000 0x1d application/Debug/obj/x509write_crt.o + .debug_str 0x00000000 0x22b application/Debug/obj/x509write_crt.o + .comment 0x00000000 0x71 application/Debug/obj/x509write_crt.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/x509write_crt.o + .sdram.text 0x00000000 0x0 application/Debug/obj/x509write_csr.o + .sdram.data 0x00000000 0x0 application/Debug/obj/x509write_csr.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/x509write_csr.o + .debug_info 0x00000000 0x79 application/Debug/obj/x509write_csr.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/x509write_csr.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/x509write_csr.o + .debug_line 0x00000000 0x1d application/Debug/obj/x509write_csr.o + .debug_str 0x00000000 0x22b application/Debug/obj/x509write_csr.o + .comment 0x00000000 0x71 application/Debug/obj/x509write_csr.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/x509write_csr.o + .sdram.text 0x00000000 0x0 application/Debug/obj/xtea.o + .sdram.data 0x00000000 0x0 application/Debug/obj/xtea.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/xtea.o + .debug_info 0x00000000 0x79 application/Debug/obj/xtea.o + .debug_abbrev 0x00000000 0x26 application/Debug/obj/xtea.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/xtea.o + .debug_line 0x00000000 0x1d application/Debug/obj/xtea.o + .debug_str 0x00000000 0x222 application/Debug/obj/xtea.o + .comment 0x00000000 0x71 application/Debug/obj/xtea.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/xtea.o + .sdram.text 0x00000000 0x0 application/Debug/obj/rom_ssl_ram_map.o + .sdram.data 0x00000000 0x0 application/Debug/obj/rom_ssl_ram_map.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/rom_ssl_ram_map.o + .sdram.ssl_ram_map + 0x00000000 0x40 application/Debug/obj/rom_ssl_ram_map.o + .debug_info 0x00000000 0x217 application/Debug/obj/rom_ssl_ram_map.o + .debug_abbrev 0x00000000 0x99 application/Debug/obj/rom_ssl_ram_map.o + .debug_aranges + 0x00000000 0x18 application/Debug/obj/rom_ssl_ram_map.o + .debug_line 0x00000000 0x153 application/Debug/obj/rom_ssl_ram_map.o + .debug_str 0x00000000 0x3bf application/Debug/obj/rom_ssl_ram_map.o + .comment 0x00000000 0x71 application/Debug/obj/rom_ssl_ram_map.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/rom_ssl_ram_map.o + .sdram.text 0x00000000 0x0 application/Debug/obj/ssl_ram_map.o + .sdram.data 0x00000000 0x0 application/Debug/obj/ssl_ram_map.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/ssl_ram_map.o + .sdram.text.platform_set_malloc_free + 0x00000000 0xa0 application/Debug/obj/ssl_ram_map.o + .debug_info 0x00000000 0x278 application/Debug/obj/ssl_ram_map.o + .debug_abbrev 0x00000000 0xc8 application/Debug/obj/ssl_ram_map.o + .debug_loc 0x00000000 0x3e application/Debug/obj/ssl_ram_map.o + .debug_aranges + 0x00000000 0x20 application/Debug/obj/ssl_ram_map.o + .debug_ranges 0x00000000 0x10 application/Debug/obj/ssl_ram_map.o + .debug_line 0x00000000 0x234 application/Debug/obj/ssl_ram_map.o + .debug_str 0x00000000 0x3f6 application/Debug/obj/ssl_ram_map.o + .comment 0x00000000 0x71 application/Debug/obj/ssl_ram_map.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/ssl_ram_map.o + .debug_frame 0x00000000 0x34 application/Debug/obj/ssl_ram_map.o + .sdram.text 0x00000000 0x0 application/Debug/obj/cloud_link.o + .sdram.data 0x00000000 0x0 application/Debug/obj/cloud_link.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/cloud_link.o + .sdram.text.cloud_link_task + 0x00000000 0x1f8 application/Debug/obj/cloud_link.o + .sdram.text.start_cloud_link + 0x00000000 0x44 application/Debug/obj/cloud_link.o + .sdram.rodata.__FUNCTION__.14530 + 0x00000000 0x14 application/Debug/obj/cloud_link.o + .sdram.rodata.str1.4 + 0x00000000 0x154 application/Debug/obj/cloud_link.o + .debug_info 0x00000000 0x2a1d application/Debug/obj/cloud_link.o + .debug_abbrev 0x00000000 0x35a application/Debug/obj/cloud_link.o + .debug_loc 0x00000000 0x108 application/Debug/obj/cloud_link.o + .debug_aranges + 0x00000000 0x28 application/Debug/obj/cloud_link.o + .debug_ranges 0x00000000 0x18 application/Debug/obj/cloud_link.o + .debug_line 0x00000000 0x721 application/Debug/obj/cloud_link.o + .debug_str 0x00000000 0x2028 application/Debug/obj/cloud_link.o + .comment 0x00000000 0x71 application/Debug/obj/cloud_link.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/cloud_link.o + .debug_frame 0x00000000 0x4c application/Debug/obj/cloud_link.o + .sdram.text 0x00000000 0x0 application/Debug/obj/shtc1.o + .sdram.data 0x00000000 0x0 application/Debug/obj/shtc1.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/shtc1.o + .sdram.text.SHTC1_Read2BytesAndCrc + 0x00000000 0x7c application/Debug/obj/shtc1.o + .sdram.text.SHTC_Init + 0x00000000 0x80 application/Debug/obj/shtc1.o + .sdram.text.SHTC_GetTempAndHumi + 0x00000000 0xd0 application/Debug/obj/shtc1.o + .sdram.text.example_shtc1_thread + 0x00000000 0xa4 application/Debug/obj/shtc1.o + .sdram.text.example_shtc1 + 0x00000000 0x44 application/Debug/obj/shtc1.o + .sdram.bss.i2cdata_read_pos + 0x00000000 0x4 application/Debug/obj/shtc1.o + .sdram.bss.i2cdata_write + 0x00000000 0x10 application/Debug/obj/shtc1.o + .sdram.rodata.__FUNCTION__.9645 + 0x00000000 0x10 application/Debug/obj/shtc1.o + .sdram.rodata.str1.4 + 0x00000000 0xec application/Debug/obj/shtc1.o + .sdram.bss.i2cdata_read + 0x00000000 0x10 application/Debug/obj/shtc1.o + .sdram.bss.i2cmaster + 0x00000000 0x29c application/Debug/obj/shtc1.o + .debug_info 0x00000000 0x1fe7 application/Debug/obj/shtc1.o + .debug_abbrev 0x00000000 0x3df application/Debug/obj/shtc1.o + .debug_loc 0x00000000 0x326 application/Debug/obj/shtc1.o + .debug_aranges + 0x00000000 0x40 application/Debug/obj/shtc1.o + .debug_ranges 0x00000000 0x98 application/Debug/obj/shtc1.o + .debug_line 0x00000000 0x533 application/Debug/obj/shtc1.o + .debug_str 0x00000000 0x19fe application/Debug/obj/shtc1.o + .comment 0x00000000 0x71 application/Debug/obj/shtc1.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/shtc1.o + .debug_frame 0x00000000 0xa8 application/Debug/obj/shtc1.o + .sdram.text 0x00000000 0x0 application/Debug/obj/wigadget.o + .sdram.data 0x00000000 0x0 application/Debug/obj/wigadget.o + .sdram.bss 0x00000000 0x0 application/Debug/obj/wigadget.o + .sdram.text.iot_itoa + 0x00000000 0x48 application/Debug/obj/wigadget.o + .sdram.text.gen_json_data + 0x00000000 0x80 application/Debug/obj/wigadget.o + .sdram.text.encrypt_data_aes + 0x00000000 0x6c application/Debug/obj/wigadget.o + .sdram.text.decrypt_data_aes + 0x00000000 0x70 application/Debug/obj/wigadget.o + .sdram.text.iotapp_platform_reset + 0x00000000 0x34 application/Debug/obj/wigadget.o + .sdram.text.iotapp_reset_irq_handler + 0x00000000 0x20 application/Debug/obj/wigadget.o + .sdram.text.local_link + 0x00000000 0x320 application/Debug/obj/wigadget.o + .sdram.text.local_link_task + 0x00000000 0x130 application/Debug/obj/wigadget.o + .sdram.text.start_local_link + 0x00000000 0x44 application/Debug/obj/wigadget.o + .sdram.text.pair_device + 0x00000000 0x2dc application/Debug/obj/wigadget.o + .sdram.text.mdns_task + 0x00000000 0x680 application/Debug/obj/wigadget.o + .sdram.text.example_wigadget + 0x00000000 0x60 application/Debug/obj/wigadget.o + .sdram.data.seed.13176 + 0x00000000 0x4 application/Debug/obj/wigadget.o + .sdram.bss.MAC_ADD.13345 + 0x00000000 0x18 application/Debug/obj/wigadget.o + .sdram.rodata.__FUNCTION__.13264 + 0x00000000 0x14 application/Debug/obj/wigadget.o + .sdram.bss.tx_buffer + 0x00000000 0x100 application/Debug/obj/wigadget.o + .sdram.bss.rx_buffer + 0x00000000 0x100 application/Debug/obj/wigadget.o + .sdram.rodata.__FUNCTION__.13356 + 0x00000000 0x14 application/Debug/obj/wigadget.o + .sdram.rodata.__FUNCTION__.13277 + 0x00000000 0xc application/Debug/obj/wigadget.o + .sdram.bss.iot_flash + 0x00000000 0xc application/Debug/obj/wigadget.o + .sdram.rodata.str1.4 + 0x00000000 0x770 application/Debug/obj/wigadget.o + .sdram.bss.port.13347 + 0x00000000 0x8 application/Debug/obj/wigadget.o + .sdram.bss.IP.13346 + 0x00000000 0x10 application/Debug/obj/wigadget.o + .sdram.bss.aes_key + 0x00000000 0x10 application/Debug/obj/wigadget.o + .sdram.rodata.basepoint.13302 + 0x00000000 0x20 application/Debug/obj/wigadget.o + .sdram.rodata.__FUNCTION__.13238 + 0x00000000 0xc application/Debug/obj/wigadget.o + .debug_info 0x00000000 0x401d application/Debug/obj/wigadget.o + .debug_abbrev 0x00000000 0x4ee application/Debug/obj/wigadget.o + .debug_loc 0x00000000 0xe42 application/Debug/obj/wigadget.o + .debug_aranges + 0x00000000 0x78 application/Debug/obj/wigadget.o + .debug_ranges 0x00000000 0x128 application/Debug/obj/wigadget.o + .debug_line 0x00000000 0xb11 application/Debug/obj/wigadget.o + .debug_str 0x00000000 0x1572 application/Debug/obj/wigadget.o + .comment 0x00000000 0x71 application/Debug/obj/wigadget.o + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/wigadget.o + .debug_frame 0x00000000 0x190 application/Debug/obj/wigadget.o + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .text.HalHardFaultHandler_user_define + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .text.HalHardFaultHandler_Patch_c + 0x00000000 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .text.__HalReInitPlatformLogUart + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .text._ReloadImg_user_define + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .text._ReloadImg + 0x00000000 0x1c8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .text._CPUResetHandler + 0x00000000 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .text._CPUReset + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .data.pRamStartFun + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_memcmpb + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_srandom + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_random + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_align_to_be32 + 0x00000000 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_memsetw + 0x00000000 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_memsetb + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_memcpyw + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_memcpyb + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_memDump + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_cryptoEngine_init + 0x00000000 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_cryptoEngine_srcDesc_show + 0x00000000 0xf4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_cryptoEngine_init + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_cryptoEngine + 0x00000000 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_cryptoEngine_set_security_mode + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_cipher_init + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_cipher_encrypt + 0x00000000 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_cipher_decrypt + 0x00000000 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_cryptoEngine_info + 0x00000000 0xd0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_cryptoEngine_info + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_md5_init + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_md5_init + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_auth_process + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_md5_process + 0x00000000 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_md5 + 0x00000000 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_sha1_process + 0x00000000 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_sha2_process + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_md5_process + 0x00000000 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_sha1_process + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_sha2_process + 0x00000000 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_sha1_init + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_sha1_init + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_sha1 + 0x00000000 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_sha2_init + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_sha2_init + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_sha2 + 0x00000000 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_hmac_md5_init + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_md5_init + 0x00000000 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_md5 + 0x00000000 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_hmac_sha1_init + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_sha1_init + 0x00000000 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_sha1 + 0x00000000 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_hmac_sha2_init + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_sha2_init + 0x00000000 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_hmac_sha2 + 0x00000000 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_cbc_init + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_cbc_init + 0x00000000 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_cbc_encrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_cbc_encrypt + 0x00000000 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_cbc_decrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_cbc_decrypt + 0x00000000 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_ecb_init + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_ecb_init + 0x00000000 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_ecb_encrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_ecb_encrypt + 0x00000000 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_ecb_decrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_ecb_decrypt + 0x00000000 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_ctr_init + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_ctr_init + 0x00000000 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_ctr_encrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_ctr_encrypt + 0x00000000 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_aes_ctr_decrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_aes_ctr_decrypt + 0x00000000 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_3des_cbc_init + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_3des_cbc_init + 0x00000000 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_3des_cbc_encrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_3des_cbc_encrypt + 0x00000000 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_3des_cbc_decrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_3des_cbc_decrypt + 0x00000000 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_3des_ecb_init + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_3des_ecb_init + 0x00000000 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_3des_ecb_encrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_3des_ecb_encrypt + 0x00000000 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_3des_ecb_decrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_3des_ecb_decrypt + 0x00000000 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_des_cbc_init + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_des_cbc_init + 0x00000000 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_des_cbc_encrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_des_cbc_encrypt + 0x00000000 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_des_cbc_decrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_des_cbc_decrypt + 0x00000000 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_des_ecb_init + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_des_ecb_init + 0x00000000 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_des_ecb_encrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_des_ecb_encrypt + 0x00000000 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text._rtl_crypto_des_ecb_decrypt + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text.rtl_crypto_des_ecb_decrypt + 0x00000000 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .bss.g_rtl_cipherEngine + 0x00000000 0x500 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .bss._rtl_seed + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .rodata.str1.1 + 0x00000000 0x1c9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .bss.init_status.9291 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .rodata.md5_null_msg_result + 0x00000000 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .debug_info 0x00000000 0x45b2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .debug_abbrev 0x00000000 0x3fe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .debug_loc 0x00000000 0x4b26 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .debug_aranges + 0x00000000 0x2c8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .debug_ranges 0x00000000 0x478 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .debug_line 0x00000000 0xe08 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .debug_str 0x00000000 0x130e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .ARM.attributes + 0x00000000 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .debug_frame 0x00000000 0x964 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.ReadEfuseContant + 0x00000000 0x100 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.ReadEfuseContant1 + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.ReadEfuseContant2 + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.ReadEfuseContant3 + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.GetRemainingEfuseLength + 0x00000000 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.WriteEfuseContant + 0x00000000 0x10c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.WriteEfuseContant1 + 0x00000000 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.WriteEfuseContant2 + 0x00000000 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.WriteEfuseContant3 + 0x00000000 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.HALOTPOneByteReadRAM + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.HALOTPOneByteWriteRAM + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.ReadEOTPContant + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.WriteEOTPContant + 0x00000000 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text.HALJtagOff + 0x00000000 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartIrqRxRdyHandle + 0x00000000 0xa4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartIrqHandle + 0x00000000 0xf4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartSetBaudRate + 0x00000000 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartSetLineCtrl + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartSetIntEn + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartInitSetting + 0x00000000 0xc4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartRecv + 0x00000000 0xc4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartSend + 0x00000000 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartIntSend + 0x00000000 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartIntRecv + 0x00000000 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartAbortIntSend + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartAbortIntRecv + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartRstFIFO + 0x00000000 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartEnable + 0x00000000 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalLogUartDisable + 0x00000000 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalInitLogUart + 0x00000000 0x8c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text.HalDeinitLogUart + 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .rodata.str1.1 + 0x00000000 0x205 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .debug_info 0x00000000 0x10d0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .debug_abbrev 0x00000000 0x306 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .debug_loc 0x00000000 0x8c7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .debug_aranges + 0x00000000 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .debug_ranges 0x00000000 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .debug_line 0x00000000 0x617 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .debug_str 0x00000000 0xdfb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .ARM.attributes + 0x00000000 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .debug_frame 0x00000000 0x1d0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .text.HalJtagPinOff + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.SleepClkGatted + 0x00000000 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.SleepPwrGatted + 0x00000000 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.DStandby + 0x00000000 0x84 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.DSleep 0x00000000 0xec ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.MSBackupProcess + 0x00000000 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.MSReFillProcess + 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.SoCPSGPIOCtrl + 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.ChangeSoCPwrState + 0x00000000 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.SoCPwrChk + 0x00000000 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.ReadHWPwrState + 0x00000000 0x288 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.QueryRegPwrState + 0x00000000 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.SleepPG 0x00000000 0xcc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.DSTBYGpioCtrl + 0x00000000 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.DeepStandby + 0x00000000 0x100 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.DeepSleep + 0x00000000 0x148 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.DSleep_GPIO + 0x00000000 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.DSleep_Timer + 0x00000000 0xbc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.SoCPwrReinitProcess + 0x00000000 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.SoCEnterPS + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text.SoCPWRIdleTaskHandle + 0x00000000 0x9c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .bss.IdleCount.9174 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .text.startup.main + 0x00000000 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.parse_http + 0x00000000 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.arc4random + 0x00000000 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.my_random + 0x00000000 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_itoa 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.parse_line + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.reply_code + 0x00000000 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_free 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.google_retrieve_data_hook_callback + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_connect + 0x00000000 0xcc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_close + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_stream_start + 0x00000000 0x22c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_stream + 0x00000000 0x18c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_put 0x00000000 0x128 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_post 0x00000000 0x14c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_patch + 0x00000000 0x128 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_get 0x00000000 0xec ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text.gn_delete + 0x00000000 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .data.seed.8435 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .bss.data_retrieve_cb + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8523 + 0x00000000 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.str1.1 + 0x00000000 0x639 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8534 + 0x00000000 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8596 + 0x00000000 0x9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8614 + 0x00000000 0x7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8579 + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8497 + 0x00000000 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8483 + 0x00000000 0xb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8629 + 0x00000000 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .rodata.__FUNCTION__.8559 + 0x00000000 0x7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .debug_info 0x00000000 0x3de1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .debug_abbrev 0x00000000 0x566 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .debug_loc 0x00000000 0x124e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .debug_aranges + 0x00000000 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .debug_ranges 0x00000000 0x170 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .debug_line 0x00000000 0x718 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .debug_str 0x00000000 0x1b21 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .ARM.attributes + 0x00000000 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .debug_frame 0x00000000 0x23c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtk_sc_check_profile + 0x00000000 0x9c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.softAP_simpleConfig_parse + 0x00000000 0x2d0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtl_pre_parse + 0x00000000 0xb0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text._rtw_init_cmd_priv + 0x00000000 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text._rtw_free_evt_priv + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text.rtw_dequeue_cmd + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text.rtw_observequeue_cmd + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text.rtw_createbss_cmd + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text.rtw_setopmode_cmd + 0x00000000 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text.rtw_addbareq_cmd + 0x00000000 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text.rtw_rpt_timer_cfg_cmd + 0x00000000 0x5e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text.power_saving_wk_hdl + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text.rtw_c2h_wk_cmd + 0x00000000 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text._rtw_enqueue_network + 0x00000000 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_generate_random_ibss + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_get_timestampe_from_ie + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_alloc_network + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_free_network_nolock + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_find_network + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_get_oldest_wlan_network + 0x00000000 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_fwdbg_event_callback + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_get_encrypt_decrypt_from_registrypriv + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_issue_addbareq_cmd + 0x00000000 0x6a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text.OnAction_public + 0x00000000 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text.OnAction_p2p + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text.alloc_FwRsvdframe + 0x00000000 0x3a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text.send_beacon + 0x00000000 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .rodata.WFD_OUI + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .rodata.OnAction_tbl + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text.promisc_set_mgntframe + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text.promisc_issue_probereq + 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text.promisc_issue_probersp + 0x00000000 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.set_wpa_global_PSK + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .text.rtw_set_rpwm + 0x00000000 0x7a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.rtw_enqueue_recvbuf_to_head + 0x00000000 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.rtw_enqueue_recvbuf + 0x00000000 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.rtw_dequeue_recvbuf + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.amsdu_to_msdu + 0x00000000 0x27c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.check_indicate_seq + 0x00000000 0x4a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.enqueue_reorder_recvframe + 0x00000000 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.recv_indicatepkts_in_order + 0x00000000 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.rtw_reordering_ctrl_timeout_handler + 0x00000000 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .rodata.SNAP_ETH_TYPE_TDLS + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .rodata.oui_8021h + 0x00000000 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .rodata.SNAP_HDR_APPLETALK_DDP + 0x00000000 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .rodata.SNAP_ETH_TYPE_APPLETALK_DDP + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .rodata.oui_rfc1042 + 0x00000000 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .text.rtw_use_tkipkey_handler + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .text.enable_rate_adaptive + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .rodata.BROADCOM_OUI3 + 0x00000000 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .text.rtw_calculate_wlan_pkt_size_by_attribue + 0x00000000 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .text.rtw_xmit_data + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .text.rtw_sctx_chk_waring_status + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.rtl8195a_prepare_bcn_tasklet + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.get_txdesc_buf_addr + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.ClearWlPmcInterrupt8195a + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .text.SetXimtBuf + 0x00000000 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .text.FreeXimtBuf + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .text.RemapPktToTxBd + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .text.rtl8195ab_hal_xmitframe_enqueue + 0x00000000 0x4a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .rodata.str1.1 + 0x00000000 0x23 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text._8051Reset8195a + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_FirmwareSelfReset + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_FirmwareDownload + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_InitializeFirmwareVars + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_InitBeaconMaxError + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_InitAntenna_Selection + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_CheckAntenna_Selection + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_DeinitAntenna_Selection + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtw_flash_read + 0x00000000 0x3a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtw_flash_write + 0x00000000 0x3a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.Hal_EfuseParseBTCoexistInfo_8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_cal_txdesc_chksum + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .text.PHY_ConfigRFWithParaFile_8195A + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .text.phy_PowerIndexCheck8195A + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .text.PHY_GetTxPowerLevel8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .text.phy_GetSecondaryChnl_8195A + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .text.InitRsvdPgPkt + 0x00000000 0x1e4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .text.WriteTxPause + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .text.SetPwrStateReg + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .text.PS_S2ToS5State + 0x00000000 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .text.PS_S5ToS2State + 0x00000000 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .text.HalSetRPWM + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .rodata 0x00000000 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .text.PHY_ConfigRFWithTxPwrTrackParaFile + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .text.translate2dbm + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .text.rtl8195a_process_phy_info + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .text.dump_chip_info + 0x00000000 0x1cc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .text.eqNByte 0x00000000 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .text.GetU1ByteIntegerFromStringInDecimal + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .text.PHY_GetTxPowerByRateBase + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .text.phy_SetTxPowerByRateBase + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .text.phy_GetChnlIndex + 0x00000000 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .text.phy_GetChannelIndexOfTxPowerLimit + 0x00000000 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .text.PHY_SetTxPowerIndex + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_fill_h2c_cmd + 0x00000000 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_fill_fake_txdesc + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_get_txbuff_rsvd_page_num + 0x00000000 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_set_wowlan_fw + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_clear_interrupt + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_init_recv_priv + 0x00000000 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_free_recv_priv + 0x00000000 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_update_txdesc + 0x00000000 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text.rtw_hal_recv_tasklet + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .text.rtw_init_netdev_name + 0x00000000 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .text.rtw_init_io_priv + 0x00000000 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .data.if2name 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .data.ifname 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_get_auto_channel + 0x00000000 0x136 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_del_sta + 0x00000000 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .text._rtw_reordering_ctrl_timeout_handler + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .text.rtw_os_recvbuf_resource_alloc + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .text.rtw_os_recvbuf_resource_free + 0x00000000 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .text.rtw_hostapd_mlme_rx + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .text.rtw_init_recv_timer + 0x00000000 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .text.skb_assign_buf + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .text.skb_tail_pointer + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .text.skb_clone + 0x00000000 0x7c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .rodata.__FUNCTION__.17391 + 0x00000000 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .text.rtw_endofpktfile + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .text.rtw_os_can_xmit + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.timer_pending + 0x00000000 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_del_station + 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_get_auto_chl + 0x00000000 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_set_tx_power_percentage + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_wlan_rf_on + 0x00000000 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_wlan_rf_off + 0x00000000 0x9c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_wlan_check_bus + 0x00000000 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_wlan_wireless_mode + 0x00000000 0x8c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_wlan_set_wps_phase + 0x00000000 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_wlan_PRE_SLEEP_PROCESSING + 0x00000000 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rtw_ps_enable + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text.rltk_wifi_fw_test + 0x00000000 0x124 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17841 + 0x00000000 0x11 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17850 + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17834 + 0x00000000 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17865 + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .text.efuse_read8 + 0x00000000 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .text.efuse_write8 + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .text.rtw_efuse_access + 0x00000000 0xa4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .text.Efuse_ReadAllMap + 0x00000000 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .text.EFUSE_ShadowRead + 0x00000000 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .text.EFUSE_ShadowMapUpdate + 0x00000000 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .text.rtw_read_port + 0x00000000 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .text.rtw_write_port + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .text.rtw_set_chip_endian + 0x00000000 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .text.rtw_get_chip_endian + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.ODM_InitRAInfo_DummyRAM8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.PT_Mode_Sel + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.InitialRateUpdate_dummy1RAM8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.InitialRateUpdate_dummy2RAM8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.TryDone_Dummy1RAM8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.TryDone_Dummy2RAM8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.b64QamRate + 0x00000000 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.RateDownTrying_DummyRAM8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text.H2CHDL_Set_MACID_Config_DummyRAM8195A + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .bss.SS 0x00000000 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .bss.PreRate 0x00000000 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .data.PT_PENALTY + 0x00000000 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .text.ODM_GetVersion_MP_8195A_AGC_TAB + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_CommonInfoSelfReset + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_CmnInfoInit_Debug + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_CmnInfoHook_Debug + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_CmnInfoUpdate_Debug + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_HWSetting + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_BasicDbgMessage + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.ODM_InitAllTimers + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.ODM_CancelAllTimers + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.ODM_ReleaseAllTimers + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_IQCalibrate + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_AntennaDiversityInit + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_AntennaDiversity + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_SwAntDetectInit + 0x00000000 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.ODM_AsocEntry_Init + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text.odm_UpdatePowerTrainingState + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .rodata.dB_Invert_Table + 0x00000000 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text.phydm_CLMInit + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text.phydm_CLMtrigger + 0x00000000 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text.phydm_checkCLMready + 0x00000000 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text.phydm_getCLMresult + 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text.phydm_NHMInit + 0x00000000 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text.phydm_NHMtrigger + 0x00000000 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text.phydm_FalseAlarmCounterStatistics + 0x00000000 0x1e8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text.phydm_getNHMresult + 0x00000000 0x126 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .debug_info 0x00000000 0x7306 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .debug_abbrev 0x00000000 0x342 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .debug_loc 0x00000000 0x5db ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .debug_aranges + 0x00000000 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .debug_ranges 0x00000000 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .debug_line 0x00000000 0x7c2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .debug_str 0x00000000 0x5c10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .ARM.attributes + 0x00000000 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .debug_frame 0x00000000 0xe4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .text.Phydm_GetNHMCounterStatistics + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .text.Phydm_NHMCounterStatisticsReset + 0x00000000 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .text.Phydm_NHMCounterStatistics + 0x00000000 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .text.Phydm_SetTRxMux + 0x00000000 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .text.Phydm_CalNHMcnt + 0x00000000 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .text.Phydm_CheckEnvironment + 0x00000000 0x84 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .text.Phydm_SearchPwdBLowerBound + 0x00000000 0x10e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .text.ODM_ChangeDynamicInitGainThresh + 0x00000000 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .text.getIGIForDiff + 0x00000000 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .text.odm_PauseDIG + 0x00000000 0x7a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .text.odm_DigForBtHsMode + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .text.odm_InbandNoiseCalculate + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .text.odm_PauseCCKPacketDetection + 0x00000000 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .bss.bPaused.20545 + 0x00000000 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.odm_QueryRxPwrPercentage + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.odm_SignalScaleMapping_92CSeries_patch_RT_CID_819x_Lenovo + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.odm_SignalScaleMapping_92CSeries_patch_RT_CID_819x_Netcore + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.odm_SignalScaleMapping_92CSeries + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.odm_SignalScaleMapping + 0x00000000 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.odm_Init_RSSIForDM + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.ODM_MacStatusQuery + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.ODM_ConfigFWWithHeaderFile + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text.ODM_GetHWImgVersion + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_Read2Byte + 0x00000000 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_GetMACReg + 0x00000000 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_AllocateMemory + 0x00000000 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_FreeMemory + 0x00000000 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_InitializeWorkItem + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_StartWorkItem + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_StopWorkItem + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_FreeWorkItem + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_ScheduleWorkItem + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_IsWorkItemScheduled + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_StallExecution + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_sleep_ms + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_sleep_us + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_FillH2CCmd + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_GetCurrentTime + 0x00000000 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text.ODM_GetProgressingTime + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .text.odm_TXPowerTrackingCheckCE + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .text.odm_TXPowerTrackingCheckMP + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .text.odm_TXPowerTrackingCheckAP + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .text.odm_RSSIMonitorCheckMP + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .text.odm_RSSIMonitorCheckCE + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .text.odm_RSSIMonitorCheckAP + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .text.odm_RefreshRateAdaptiveMaskMP + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .text.odm_RefreshRateAdaptiveMaskCE + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .text.odm_RefreshRateAdaptiveMaskAPADSL + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .text.odm_RefreshBasicRateMask + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .text.PHY_IQCalibrate_8723B + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .text.PHY_LCCalibrate_8723B + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .text._InitRDGSetting + 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .data.NORMAL_PAGE_NUM_8821 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .data.WMM_PAGE_NUM_8812 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .data.WMM_PAGE_NUM_8821 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .data.NORMAL_PAGE_NUM_8812 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_hwpdn_flow + 0x00000000 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_resume_flow + 0x00000000 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_enter_swlps_flow + 0x00000000 0xb8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_enter_lps_flow + 0x00000000 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_suspend_flow + 0x00000000 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_leave_lps_flow + 0x00000000 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_radio_off_flow + 0x00000000 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_power_on_flow + 0x00000000 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .data.rtl8195A_leave_swlps_flow + 0x00000000 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .text.rtl8195a_set_FwRssiSetting_cmd + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .text.rtl8195a_set_FwAPReqRPT_cmd + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .text.rtl8195a_set_FwPsTuneParam_cmd + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .text.rtl8195a_set_FwBtMpOper_cmd + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .text.rtl8195a_set_FwPwrModeInIPS_cmd + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .text.rtl8195a_set_rssi_cmd + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .text.rtl8195a_set_BcnIgnoreEDCCA_cmd + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtl8195a_dm_patch + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtw_txrpt_read32 + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtw_txrpt_read16 + 0x00000000 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtw_txrpt_read_1b + 0x00000000 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtw_txrpt_write32 + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtw_txrpt_write16 + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtw_txrpt_write_1b + 0x00000000 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtw_ratemask_read32 + 0x00000000 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtw_ratemask_write32 + 0x00000000 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.ReadRateMask32 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.WriteRateMask32 + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtl8195a_adaptivity_needed + 0x00000000 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtl8195a_hal_dm_in_lps + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text.rtl8195a_HalDmWatchDog_in_LPS + 0x00000000 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .bss.oob_irq 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .text.ODM_GetVersion_MP_8195A_MAC_REG + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .text.ODM_GetVersion_MP_8195A_RadioA + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .text.ODM_ReadAndConfig_MP_8195A_RADIO_DIFF + 0x00000000 0x76 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .text.ODM_GetVersion_MP_8195A_RADIO_DIFF + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .data.Array_MP_8195A_RADIO_DIFF_LB + 0x00000000 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .data.Array_MP_8195A_RADIO_DIFF_HB + 0x00000000 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .data.Array_MP_8195A_RADIO_DIFF_MB + 0x00000000 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .text.setIqkMatrix_8195A + 0x00000000 0xcc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .text.phy_PathB_IQK_8195A + 0x00000000 0x13c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .text.phy_PathB_RxIQK8195A + 0x00000000 0x204 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .text.ODM_CheckPowerStatus + 0x00000000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .text._PHY_PathAStandBy8195A + 0x00000000 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .text.phy_SetRFPathSwitch_8195A + 0x00000000 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .text.PHY_SetRFPathSwitch_8195A + 0x00000000 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .text.ODM_ClearTxPowerTrackingState + 0x00000000 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_vprintf + 0x00000000 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_vsnprintf + 0x00000000 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_vfprintf + 0x00000000 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_memchr + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_memmove + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_strcat + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_strchr + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_strncat + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text.rtl_strstr + 0x00000000 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .fwu.text 0x00000000 0x3c4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .text.xModemTxBlock + 0x00000000 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .text.xModemEOT + 0x00000000 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .rodata.str1.1 + 0x00000000 0x143 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .debug_info 0x00000000 0xe86 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .debug_abbrev 0x00000000 0x37a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .debug_loc 0x00000000 0x77a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .debug_aranges + 0x00000000 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .debug_ranges 0x00000000 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .debug_line 0x00000000 0x455 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .debug_str 0x00000000 0x9ed ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .ARM.attributes + 0x00000000 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .debug_frame 0x00000000 0x16c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .fwu.text 0x00000000 0x270 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .rodata.str1.1 + 0x00000000 0x39 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .fwu.data 0x00000000 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .debug_info 0x00000000 0xb9a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .debug_abbrev 0x00000000 0x291 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .debug_loc 0x00000000 0x254 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .debug_aranges + 0x00000000 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .debug_ranges 0x00000000 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .debug_line 0x00000000 0x36a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .debug_str 0x00000000 0xd3b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .ARM.attributes + 0x00000000 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .debug_frame 0x00000000 0xb0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + .text 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .data 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .bss 0x00000000 0x0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .fwu.text 0x00000000 0x2e0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .rodata.str1.1 + 0x00000000 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .fwu.data 0x00000000 0x418 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .debug_info 0x00000000 0xfeb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .debug_abbrev 0x00000000 0x2ab ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .debug_loc 0x00000000 0x293 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .debug_aranges + 0x00000000 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .debug_ranges 0x00000000 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .debug_line 0x00000000 0x418 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .debug_str 0x00000000 0x102a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .ARM.attributes + 0x00000000 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .debug_frame 0x00000000 0x144 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + .text.floor 0x00000000 0x120 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + .debug_frame 0x00000000 0x38 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + .text.pow 0x00000000 0x2f8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + .rodata.str1.4 + 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + .debug_frame 0x00000000 0x38 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .text.__ieee754_pow + 0x00000000 0xab8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .rodata.dp_h 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .rodata.dp_l 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .rodata.bp 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .rodata.str1.4 + 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .debug_frame 0x00000000 0x38 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + .text.__ieee754_sqrt + 0x00000000 0x180 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + .debug_frame 0x00000000 0x34 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fabs.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fabs.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fabs.o) + .text.fabs 0x00000000 0x8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fabs.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fabs.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fabs.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_finite.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_finite.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_finite.o) + .text.finite 0x00000000 0xc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_finite.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_finite.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_finite.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fpclassify.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fpclassify.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fpclassify.o) + .text.__fpclassifyd + 0x00000000 0x50 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fpclassify.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fpclassify.o) + .debug_frame 0x00000000 0x28 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fpclassify.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_lib_ver.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_lib_ver.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_lib_ver.o) + .data.__fdlib_version + 0x00000000 0x1 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_lib_ver.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_lib_ver.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_matherr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_matherr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_matherr.o) + .text.matherr 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_matherr.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_matherr.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_matherr.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_nan.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_nan.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_nan.o) + .text.nan 0x00000000 0xc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_nan.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_nan.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_nan.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + .text.rint 0x00000000 0x118 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + .rodata.TWO52 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + .debug_frame 0x00000000 0x34 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + .text.scalbn 0x00000000 0x100 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + .debug_frame 0x00000000 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_copysign.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_copysign.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_copysign.o) + .text.copysign + 0x00000000 0x14 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_copysign.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_copysign.o) + .debug_frame 0x00000000 0x28 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_copysign.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + .text.__errno 0x00000000 0xc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + .rodata._global_impure_ptr + 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + .text.localtime + 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) + .text.localtime_r + 0x00000000 0x6 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + .text.free 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcmp.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcmp.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcmp.o) + .text.memcmp 0x00000000 0x1e /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcmp.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcmp.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcmp.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcpy-stub.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcpy-stub.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcpy-stub.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memset.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memset.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memset.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .text.validate_structure + 0x00000000 0x1a4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .text.mktime 0x00000000 0x2cc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .rodata._DAYS_BEFORE_MONTH + 0x00000000 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .rodata.DAYS_IN_MONTH + 0x00000000 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .debug_frame 0x00000000 0x54 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .text.__tzcalc_limits + 0x00000000 0x15c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .text._mktm_r 0x00000000 0x290 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .rodata.mon_lengths + 0x00000000 0x60 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .rodata.year_lengths + 0x00000000 0x8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .debug_frame 0x00000000 0x5c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + .text._printf_r + 0x00000000 0x28 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + .text.printf 0x00000000 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + .debug_frame 0x00000000 0x60 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + .text._puts_r 0x00000000 0xc0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + .text.puts 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + .debug_frame 0x00000000 0x3c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + .text.srand 0x00000000 0x54 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + .text._sprintf_r + 0x00000000 0x40 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + .text.sprintf 0x00000000 0x48 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + .debug_frame 0x00000000 0x58 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + .text._sscanf_r + 0x00000000 0x54 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .text.__sread 0x00000000 0x22 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .text.__swrite + 0x00000000 0x38 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .text.__sseek 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .text.__sclose + 0x00000000 0x8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + .text.strcasecmp + 0x00000000 0x3c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strchr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strchr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strchr.o) + .text.strchr 0x00000000 0x1a /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strchr.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strchr.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strchr.o) + .text 0x00000000 0x14 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcmp.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcmp.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcmp.o) + .ARM.attributes + 0x00000000 0x1b /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcmp.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcpy.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcpy.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcpy.o) + .text.strcpy 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcpy.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcpy.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcpy.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strlen.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strlen.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strlen.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strncmp.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strncmp.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strncmp.o) + .text.strncmp 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strncmp.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strncmp.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strncmp.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + .text.__strtok_r + 0x00000000 0x56 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + .text.strtok_r + 0x00000000 0x6 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + .debug_frame 0x00000000 0x40 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .text.__ssputs_r + 0x00000000 0xb8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .text.__ssprint_r + 0x00000000 0xf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .text._svfprintf_r + 0x00000000 0x1d8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .rodata.str1.1 + 0x00000000 0x11 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .debug_frame 0x00000000 0x88 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + .text.__tz_lock + 0x00000000 0x2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + .text.__tz_unlock + 0x00000000 0x2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + .debug_frame 0x00000000 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + .data._tzname 0x00000000 0x8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + .bss._daylight + 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + .bss._timezone + 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + .rodata.str1.1 + 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + .text._ungetc_r + 0x00000000 0xe4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + .text.ungetc 0x00000000 0x14 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .text.__sfputc_r + 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .text.__sfputs_r + 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .text.__sprint_r + 0x00000000 0x1a /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .text._vfprintf_r + 0x00000000 0x208 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .text.vfprintf + 0x00000000 0x1c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x00000000 0x11 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .debug_frame 0x00000000 0xa8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + .text._printf_common + 0x00000000 0xe4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + .text._printf_i + 0x00000000 0x228 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + .rodata.str1.1 + 0x00000000 0x22 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + .debug_frame 0x00000000 0x60 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + .text.__swbuf_r + 0x00000000 0xa8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + .text.__swbuf 0x00000000 0x14 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + .debug_frame 0x00000000 0x3c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + .text._write_r + 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + .text.__swsetup_r + 0x00000000 0xdc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + .text._close_r + 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-div.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-div.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-div.o) + .text.div 0x00000000 0x28 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-div.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-div.o) + .debug_frame 0x00000000 0x28 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-div.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + .text.__sflush_r + 0x00000000 0x106 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + .text._fflush_r + 0x00000000 0x54 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + .text.fflush 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + .debug_frame 0x00000000 0x5c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__fp_lock + 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__fp_unlock + 0x00000000 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text._cleanup_r + 0x00000000 0x32 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.std.isra.0 + 0x00000000 0x48 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__sfmoreglue + 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text._cleanup + 0x00000000 0xc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__sinit 0x00000000 0x60 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__sfp 0x00000000 0x74 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__sfp_lock_acquire + 0x00000000 0x2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__sfp_lock_release + 0x00000000 0x2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__sinit_lock_acquire + 0x00000000 0x2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__sinit_lock_release + 0x00000000 0x2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__fp_lock_all + 0x00000000 0x14 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text.__fp_unlock_all + 0x00000000 0x14 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + .text.__sfvwrite_r + 0x00000000 0x298 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + .debug_frame 0x00000000 0x3c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + .text._fwalk 0x00000000 0x38 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + .text._fwalk_reent + 0x00000000 0x3c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + .debug_frame 0x00000000 0x54 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + .text.__gettzinfo + 0x00000000 0x8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + .data.tzinfo 0x00000000 0x40 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + .text._lseek_r + 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + .text.__smakebuf_r + 0x00000000 0x98 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + .debug_frame 0x00000000 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memchr-stub.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memchr-stub.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memchr-stub.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memmove.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memmove.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memmove.o) + .text.memmove 0x00000000 0x36 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memmove.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memmove.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memmove.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + .text._read_r 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sccl.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sccl.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sccl.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + .text.strtol 0x00000000 0x1c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + .text.strtoul 0x00000000 0x1c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + .text._fstat_r + 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + .text._isatty_r + 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + .debug_frame 0x00000000 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-msizer.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-msizer.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-msizer.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + .stab 0x00000000 0x24 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + .text._close 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + .stab 0x00000000 0x18 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + 0x24 (size before relaxing) + .text._fstat 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + .stab 0x00000000 0x18 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + 0x24 (size before relaxing) + .text._isatty 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + .stab 0x00000000 0x18 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + 0x24 (size before relaxing) + .text._lseek 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + .stab 0x00000000 0x18 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + 0x24 (size before relaxing) + .text._read 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + .text 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + .stab 0x00000000 0x18 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + 0x24 (size before relaxing) + .text._write 0x00000000 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + .ARM.attributes + 0x00000000 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + .debug_frame 0x00000000 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) + .text 0x00000000 0x110 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x00000000 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + .text 0x00000000 0x50 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixdfsi.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixdfsi.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixdfsi.o) + .ARM.attributes + 0x00000000 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixdfsi.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunsdfsi.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunsdfsi.o) + .text 0x00000000 0xa0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_truncdfsf2.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_truncdfsf2.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_truncdfsf2.o) + .ARM.attributes + 0x00000000 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_truncdfsf2.o) + .text 0x00000000 0x21c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) + .ARM.attributes + 0x00000000 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) + .text 0x00000000 0x2a0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) + .ARM.attributes + 0x00000000 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) + .text 0x00000000 0xec /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) + .ARM.attributes + 0x00000000 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) + .text 0x00000000 0x4c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixsfsi.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixsfsi.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixsfsi.o) + .ARM.attributes + 0x00000000 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixsfsi.o) + .text 0x00000000 0x40 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunssfsi.o) + .data 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunssfsi.o) + .bss 0x00000000 0x0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunssfsi.o) + .ARM.attributes + 0x00000000 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunssfsi.o) + +Memory Configuration + +Name Origin Length Attributes +TCM 0x1fff0000 0x00010000 xrw +ROM_USED_RAM 0x10000bc8 0x00005438 xrw +//RECY_RAM 0x10002100 0x00003f00 xrw +BD_RAM 0x10006000 0x0006a000 xrw +RECY_RAM 0x10002100 0x00001f00 xrw +//BD_RAM 0x10004000 0x0006c000 xrw +SDRAM_RAM 0x30000000 0x00200000 xrw +*default* 0x00000000 0xffffffff + +Linker script and memory map + +LOAD application/Debug/obj/system_8195a.o +LOAD application/Debug/obj/atcmd_ethernet.o +LOAD application/Debug/obj/atcmd_lwip.o +LOAD application/Debug/obj/atcmd_sys.o +LOAD application/Debug/obj/atcmd_wifi.o +LOAD application/Debug/obj/log_service.o +LOAD application/Debug/obj/low_level_io.o +LOAD application/Debug/obj/rtl_consol.o +LOAD application/Debug/obj/wifi_eap_config.o +LOAD application/Debug/obj/wifi_p2p_config.o +LOAD application/Debug/obj/wifi_wps_config.o +LOAD application/Debug/obj/wifi_conf.o +LOAD application/Debug/obj/wifi_ind.o +LOAD application/Debug/obj/wifi_promisc.o +LOAD application/Debug/obj/wifi_simple_config.o +LOAD application/Debug/obj/wifi_util.o +LOAD application/Debug/obj/lwip_netconf.o +LOAD application/Debug/obj/ping_test.o +LOAD application/Debug/obj/ssl_client.o +LOAD application/Debug/obj/ssl_client_ext.o +LOAD application/Debug/obj/tcptest.o +LOAD application/Debug/obj/uart_adapter.o +LOAD application/Debug/obj/uart_ymodem.o +LOAD application/Debug/obj/update.o +LOAD application/Debug/obj/wlan_network.o +LOAD application/Debug/obj/api_lib.o +LOAD application/Debug/obj/api_msg.o +LOAD application/Debug/obj/err.o +LOAD application/Debug/obj/netbuf.o +LOAD application/Debug/obj/netdb.o +LOAD application/Debug/obj/netifapi.o +LOAD application/Debug/obj/sockets.o +LOAD application/Debug/obj/tcpip.o +LOAD application/Debug/obj/autoip.o +LOAD application/Debug/obj/icmp.o +LOAD application/Debug/obj/igmp.o +LOAD application/Debug/obj/inet.o +LOAD application/Debug/obj/inet_chksum.o +LOAD application/Debug/obj/ip.o +LOAD application/Debug/obj/ip_addr.o +LOAD application/Debug/obj/ip_frag.o +LOAD application/Debug/obj/def.o +LOAD application/Debug/obj/dhcp.o +LOAD application/Debug/obj/dns.o +LOAD application/Debug/obj/init.o +LOAD application/Debug/obj/lwip_timers.o +LOAD application/Debug/obj/mem.o +LOAD application/Debug/obj/memp.o +LOAD application/Debug/obj/netif.o +LOAD application/Debug/obj/pbuf.o +LOAD application/Debug/obj/raw.o +LOAD application/Debug/obj/stats.o +LOAD application/Debug/obj/sys.o +LOAD application/Debug/obj/tcp.o +LOAD application/Debug/obj/tcp_in.o +LOAD application/Debug/obj/tcp_out.o +LOAD application/Debug/obj/udp.o +LOAD application/Debug/obj/etharp.o +LOAD application/Debug/obj/ethernetif.o +LOAD application/Debug/obj/lwip_intf.o +LOAD application/Debug/obj/sys_arch.o +LOAD application/Debug/obj/dhcps.o +LOAD application/Debug/obj/sntp.o +LOAD application/Debug/obj/mDNSPlatform.o +LOAD application/Debug/obj/heap_5.o +LOAD application/Debug/obj/port.o +LOAD application/Debug/obj/cmsis_os.o +LOAD application/Debug/obj/croutine.o +LOAD application/Debug/obj/event_groups.o +LOAD application/Debug/obj/list.o +LOAD application/Debug/obj/queue.o +LOAD application/Debug/obj/tasks.o +LOAD application/Debug/obj/timers.o +LOAD application/Debug/obj/device_lock.o +LOAD application/Debug/obj/freertos_service.o +LOAD application/Debug/obj/mailbox.o +LOAD application/Debug/obj/osdep_api.o +LOAD application/Debug/obj/osdep_service.o +LOAD application/Debug/obj/tcm_heap.o +LOAD application/Debug/obj/analogin_api.o +LOAD application/Debug/obj/dma_api.o +LOAD application/Debug/obj/efuse_api.o +LOAD application/Debug/obj/ethernet_api.o +LOAD application/Debug/obj/ethernet_mii.o +LOAD application/Debug/obj/flash_api.o +LOAD application/Debug/obj/gpio_api.o +LOAD application/Debug/obj/gpio_irq_api.o +LOAD application/Debug/obj/i2c_api.o +LOAD application/Debug/obj/i2s_api.o +LOAD application/Debug/obj/log_uart_api.o +LOAD application/Debug/obj/nfc_api.o +LOAD application/Debug/obj/pinmap.o +LOAD application/Debug/obj/pinmap_common.o +LOAD application/Debug/obj/port_api.o +LOAD application/Debug/obj/pwmout_api.o +LOAD application/Debug/obj/rtc_api.o +LOAD application/Debug/obj/serial_api.o +LOAD application/Debug/obj/sleep.o +LOAD application/Debug/obj/spdio_api.o +LOAD application/Debug/obj/spi_api.o +LOAD application/Debug/obj/sys_api.o +LOAD application/Debug/obj/timer_api.o +LOAD application/Debug/obj/us_ticker.o +LOAD application/Debug/obj/us_ticker_api.o +LOAD application/Debug/obj/wait_api.o +LOAD application/Debug/obj/wdt_api.o +LOAD application/Debug/obj/hal_32k.o +LOAD application/Debug/obj/hal_adc.o +LOAD application/Debug/obj/hal_gdma.o +LOAD application/Debug/obj/hal_gpio.o +LOAD application/Debug/obj/hal_i2c.o +LOAD application/Debug/obj/hal_i2s.o +LOAD application/Debug/obj/hal_mii.o +LOAD application/Debug/obj/hal_nfc.o +LOAD application/Debug/obj/hal_pcm.o +LOAD application/Debug/obj/hal_pwm.o +LOAD application/Debug/obj/hal_sdr_controller.o +LOAD application/Debug/obj/hal_ssi.o +LOAD application/Debug/obj/hal_timer.o +LOAD application/Debug/obj/hal_uart.o +LOAD application/Debug/obj/freertos_pmu.o +LOAD application/Debug/obj/rtl8195a_adc.o +LOAD application/Debug/obj/rtl8195a_gdma.o +LOAD application/Debug/obj/rtl8195a_gpio.o +LOAD application/Debug/obj/rtl8195a_i2c.o +LOAD application/Debug/obj/rtl8195a_i2s.o +LOAD application/Debug/obj/rtl8195a_mii.o +LOAD application/Debug/obj/rtl8195a_nfc.o +LOAD application/Debug/obj/rtl8195a_pwm.o +LOAD application/Debug/obj/rtl8195a_ssi.o +LOAD application/Debug/obj/rtl8195a_timer.o +LOAD application/Debug/obj/rtl8195a_uart.o +LOAD application/Debug/obj/bignum.o +LOAD application/Debug/obj/cJSON.o +LOAD application/Debug/obj/http_client.o +LOAD application/Debug/obj/uart_socket.o +LOAD application/Debug/obj/webserver.o +LOAD application/Debug/obj/xml.o +LOAD application/Debug/obj/example_entry.o +LOAD application/Debug/obj/example_uart_atcmd.o +LOAD application/Debug/obj/ff_driver.o +LOAD application/Debug/obj/diskio.o +LOAD application/Debug/obj/ff.o +LOAD application/Debug/obj/ccsbcs.o +LOAD application/Debug/obj/sdcard.o +LOAD application/Debug/obj/uart_fw_update.o +LOAD application/Debug/obj/main.o +LOAD application/Debug/obj/stdlib_patch.o +LOAD application/Debug/obj/aes.o +LOAD application/Debug/obj/aesni.o +LOAD application/Debug/obj/arc4.o +LOAD application/Debug/obj/asn1parse.o +LOAD application/Debug/obj/asn1write.o +LOAD application/Debug/obj/base64.o +LOAD application/Debug/obj/blowfish.o +LOAD application/Debug/obj/camellia.o +LOAD application/Debug/obj/ccm.o +LOAD application/Debug/obj/certs.o +LOAD application/Debug/obj/cipher.o +LOAD application/Debug/obj/cipher_wrap.o +LOAD application/Debug/obj/ctr_drbg.o +LOAD application/Debug/obj/debug.o +LOAD application/Debug/obj/des.o +LOAD application/Debug/obj/dhm.o +LOAD application/Debug/obj/ecp.o +LOAD application/Debug/obj/ecp_curves.o +LOAD application/Debug/obj/ecdh.o +LOAD application/Debug/obj/ecdsa.o +LOAD application/Debug/obj/entropy.o +LOAD application/Debug/obj/entropy_poll.o +LOAD application/Debug/obj/error.o +LOAD application/Debug/obj/gcm.o +LOAD application/Debug/obj/havege.o +LOAD application/Debug/obj/hmac_drbg.o +LOAD application/Debug/obj/md.o +LOAD application/Debug/obj/md_wrap.o +LOAD application/Debug/obj/md2.o +LOAD application/Debug/obj/md4.o +LOAD application/Debug/obj/md5.o +LOAD application/Debug/obj/memory_buffer_alloc.o +LOAD application/Debug/obj/net.o +LOAD application/Debug/obj/oid.o +LOAD application/Debug/obj/padlock.o +LOAD application/Debug/obj/pbkdf2.o +LOAD application/Debug/obj/pem.o +LOAD application/Debug/obj/pkcs5.o +LOAD application/Debug/obj/pkcs11.o +LOAD application/Debug/obj/pkcs12.o +LOAD application/Debug/obj/pk.o +LOAD application/Debug/obj/pk_wrap.o +LOAD application/Debug/obj/pkparse.o +LOAD application/Debug/obj/pkwrite.o +LOAD application/Debug/obj/platform.o +LOAD application/Debug/obj/ripemd160.o +LOAD application/Debug/obj/rsa.o +LOAD application/Debug/obj/sha1.o +LOAD application/Debug/obj/sha256.o +LOAD application/Debug/obj/sha512.o +LOAD application/Debug/obj/ssl_cache.o +LOAD application/Debug/obj/ssl_ciphersuites.o +LOAD application/Debug/obj/ssl_cli.o +LOAD application/Debug/obj/ssl_srv.o +LOAD application/Debug/obj/ssl_tls.o +LOAD application/Debug/obj/threading.o +LOAD application/Debug/obj/timing.o +LOAD application/Debug/obj/version.o +LOAD application/Debug/obj/version_features.o +LOAD application/Debug/obj/x509.o +LOAD application/Debug/obj/x509_crt.o +LOAD application/Debug/obj/x509_crl.o +LOAD application/Debug/obj/x509_csr.o +LOAD application/Debug/obj/x509_create.o +LOAD application/Debug/obj/x509write_crt.o +LOAD application/Debug/obj/x509write_csr.o +LOAD application/Debug/obj/xtea.o +LOAD application/Debug/obj/rom_ssl_ram_map.o +LOAD application/Debug/obj/ssl_ram_map.o +LOAD application/Debug/obj/cloud_link.o +LOAD application/Debug/obj/shtc1.o +LOAD application/Debug/obj/wigadget.o +LOAD application/Debug/obj/ram_1.r.o +LOAD ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a +LOAD ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a +LOAD ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_p2p.a +LOAD ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wps.a +LOAD ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a +LOAD ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_websocket.a +LOAD ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a +START GROUP +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libg_s.a +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a +END GROUP +START GROUP +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a +LOAD /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a +END GROUP + 0x00000000 __vectors_table = 0x0 + 0x00000101 Reset_Handler = 0x101 + 0x00000109 NMI_Handler = 0x109 + 0x0000010d HardFault_Handler = 0x10d + 0x00000121 MemManage_Handler = 0x121 + 0x00000125 BusFault_Handler = 0x125 + 0x00000129 UsageFault_Handler = 0x129 + 0x00000201 HalLogUartInit = 0x201 + 0x000002d9 HalSerialPutcRtl8195a = 0x2d9 + 0x00000309 HalSerialGetcRtl8195a = 0x309 + 0x00000329 HalSerialGetIsrEnRegRtl8195a = 0x329 + 0x00000335 HalSerialSetIrqEnRegRtl8195a = 0x335 + 0x00000341 HalCpuClkConfig = 0x341 + 0x00000355 HalGetCpuClk = 0x355 + 0x0000039d HalRomInfo = 0x39d + 0x000003b5 HalGetRomInfo = 0x3b5 + 0x000003c5 HalResetVsr = 0x3c5 + 0x00000899 HalDelayUs = 0x899 + 0x000008e1 HalNMIHandler = 0x8e1 + 0x00000911 HalHardFaultHandler = 0x911 + 0x00000c09 HalMemManageHandler = 0xc09 + 0x00000c39 HalBusFaultHandler = 0xc39 + 0x00000c69 HalUsageFaultHandler = 0xc69 + 0x00000cfd HalUart0PinCtrlRtl8195A = 0xcfd + 0x00000dc9 HalUart1PinCtrlRtl8195A = 0xdc9 + 0x00000e9d HalUart2PinCtrlRtl8195A = 0xe9d + 0x00000f75 HalSPI0PinCtrlRtl8195A = 0xf75 + 0x00001015 HalSPI1PinCtrlRtl8195A = 0x1015 + 0x000010e5 HalSPI2PinCtrlRtl8195A = 0x10e5 + 0x000011b5 HalSPI0MCSPinCtrlRtl8195A = 0x11b5 + 0x00001275 HalI2C0PinCtrlRtl8195A = 0x1275 + 0x00001381 HalI2C1PinCtrlRtl8195A = 0x1381 + 0x00001459 HalI2C2PinCtrlRtl8195A = 0x1459 + 0x00001529 HalI2C3PinCtrlRtl8195A = 0x1529 + 0x00001639 HalI2S0PinCtrlRtl8195A = 0x1639 + 0x0000176d HalI2S1PinCtrlRtl8195A = 0x176d + 0x00001845 HalPCM0PinCtrlRtl8195A = 0x1845 + 0x00001949 HalPCM1PinCtrlRtl8195A = 0x1949 + 0x00001a1d HalSDIODPinCtrlRtl8195A = 0x1a1d + 0x00001a6d HalSDIOHPinCtrlRtl8195A = 0x1a6d + 0x00001ab9 HalMIIPinCtrlRtl8195A = 0x1ab9 + 0x00001b51 HalWLLEDPinCtrlRtl8195A = 0x1b51 + 0x00001c0d HalWLANT0PinCtrlRtl8195A = 0x1c0d + 0x00001c61 HalWLANT1PinCtrlRtl8195A = 0x1c61 + 0x00001cb5 HalWLBTCOEXPinCtrlRtl8195A = 0x1cb5 + 0x00001d05 HalWLBTCMDPinCtrlRtl8195A = 0x1d05 + 0x00001d59 HalNFCPinCtrlRtl8195A = 0x1d59 + 0x00001da9 HalPWM0PinCtrlRtl8195A = 0x1da9 + 0x00001ead HalPWM1PinCtrlRtl8195A = 0x1ead + 0x00001fb5 HalPWM2PinCtrlRtl8195A = 0x1fb5 + 0x000020b1 HalPWM3PinCtrlRtl8195A = 0x20b1 + 0x000021b9 HalETE0PinCtrlRtl8195A = 0x21b9 + 0x000022c1 HalETE1PinCtrlRtl8195A = 0x22c1 + 0x000023c9 HalETE2PinCtrlRtl8195A = 0x23c9 + 0x000024d1 HalETE3PinCtrlRtl8195A = 0x24d1 + 0x000025d9 HalEGTIMPinCtrlRtl8195A = 0x25d9 + 0x00002679 HalSPIFlashPinCtrlRtl8195A = 0x2679 + 0x00002725 HalSDRPinCtrlRtl8195A = 0x2725 + 0x0000280d HalJTAGPinCtrlRtl8195A = 0x280d + 0x00002861 HalTRACEPinCtrlRtl8195A = 0x2861 + 0x000028b9 HalLOGUartPinCtrlRtl8195A = 0x28b9 + 0x0000291d HalLOGUartIRPinCtrlRtl8195A = 0x291d + 0x00002981 HalSICPinCtrlRtl8195A = 0x2981 + 0x000029d9 HalEEPROMPinCtrlRtl8195A = 0x29d9 + 0x00002a31 HalDEBUGPinCtrlRtl8195A = 0x2a31 + 0x00002b39 HalPinCtrlRtl8195A = 0x2b39 + 0x00002e5d SpicRxCmdRtl8195A = 0x2e5d + 0x00002ea5 SpicWaitBusyDoneRtl8195A = 0x2ea5 + 0x00002eb5 SpicGetFlashStatusRtl8195A = 0x2eb5 + 0x00002f55 SpicWaitWipDoneRtl8195A = 0x2f55 + 0x00002f6d SpicTxCmdRtl8195A = 0x2f6d + 0x00002fc1 SpicSetFlashStatusRtl8195A = 0x2fc1 + 0x00003049 SpicCmpDataForCalibrationRtl8195A = 0x3049 + 0x00003081 SpicLoadInitParaFromClockRtl8195A = 0x3081 + 0x000030e5 SpicInitRtl8195A = 0x30e5 + 0x000031bd SpicEraseFlashRtl8195A = 0x31bd + 0x00003279 SpiFlashApp = 0x3279 + 0x000033b5 HalPeripheralIntrHandle = 0x33b5 + 0x00003439 HalSysOnIntrHandle = 0x3439 + 0x00003485 HalWdgIntrHandle = 0x3485 + 0x000034d5 HalTimer0IntrHandle = 0x34d5 + 0x00003525 HalTimer1IntrHandle = 0x3525 + 0x00003575 HalI2C3IntrHandle = 0x3575 + 0x000035c5 HalTimer2To7IntrHandle = 0x35c5 + 0x00003615 HalSpi0IntrHandle = 0x3615 + 0x00003665 HalGpioIntrHandle = 0x3665 + 0x000036b5 HalUart0IntrHandle = 0x36b5 + 0x00003705 HalSpiFlashIntrHandle = 0x3705 + 0x00003755 HalUsbOtgIntrHandle = 0x3755 + 0x000037a5 HalSdioHostIntrHandle = 0x37a5 + 0x000037f5 HalI2s0OrPcm0IntrHandle = 0x37f5 + 0x00003845 HalI2s1OrPcm1IntrHandle = 0x3845 + 0x00003895 HalWlDmaIntrHandle = 0x3895 + 0x000038e5 HalWlProtocolIntrHandle = 0x38e5 + 0x00003935 HalCryptoIntrHandle = 0x3935 + 0x00003985 HalGmacIntrHandle = 0x3985 + 0x000039d5 HalGdma0Ch0IntrHandle = 0x39d5 + 0x00003a25 HalGdma0Ch1IntrHandle = 0x3a25 + 0x00003a75 HalGdma0Ch2IntrHandle = 0x3a75 + 0x00003ac5 HalGdma0Ch3IntrHandle = 0x3ac5 + 0x00003b15 HalGdma0Ch4IntrHandle = 0x3b15 + 0x00003b65 HalGdma0Ch5IntrHandle = 0x3b65 + 0x00003bb5 HalGdma1Ch0IntrHandle = 0x3bb5 + 0x00003c05 HalGdma1Ch1IntrHandle = 0x3c05 + 0x00003c55 HalGdma1Ch2IntrHandle = 0x3c55 + 0x00003ca5 HalGdma1Ch3IntrHandle = 0x3ca5 + 0x00003cf5 HalGdma1Ch4IntrHandle = 0x3cf5 + 0x00003d45 HalGdma1Ch5IntrHandle = 0x3d45 + 0x00003d95 HalSdioDeviceIntrHandle = 0x3d95 + 0x00003de5 VectorTableInitRtl8195A = 0x3de5 + 0x00004019 VectorTableInitForOSRtl8195A = 0x4019 + 0x00004029 VectorIrqRegisterRtl8195A = 0x4029 + 0x00004091 VectorIrqUnRegisterRtl8195A = 0x4091 + 0x000040f1 VectorIrqEnRtl8195A = 0x40f1 + 0x0000418d VectorIrqDisRtl8195A = 0x418d + 0x0000422d _UartRxDmaIrqHandle = 0x422d + 0x00004281 HalRuartPutCRtl8195a = 0x4281 + 0x0000429d HalRuartGetCRtl8195a = 0x429d + 0x000042bd HalRuartRTSCtrlRtl8195a = 0x42bd + 0x000042e1 HalRuartGetDebugValueRtl8195a = 0x42e1 + 0x000043e1 HalRuartGetIMRRtl8195a = 0x43e1 + 0x0000442d HalRuartSetIMRRtl8195a = 0x442d + 0x00004465 _UartIrqHandle = 0x4465 + 0x00004681 HalRuartDmaInitRtl8195a = 0x4681 + 0x00004845 HalRuartIntDisableRtl8195a = 0x4845 + 0x00004855 HalRuartDeInitRtl8195a = 0x4855 + 0x00004985 HalRuartIntEnableRtl8195a = 0x4985 + 0x00004995 _UartTxDmaIrqHandle = 0x4995 + 0x000049d1 HalRuartRegIrqRtl8195a = 0x49d1 + 0x00004a4d HalRuartAdapterLoadDefRtl8195a = 0x4a4d + 0x00004add HalRuartTxGdmaLoadDefRtl8195a = 0x4add + 0x00004bc9 HalRuartRxGdmaLoadDefRtl8195a = 0x4bc9 + 0x00004cc9 RuartLock = 0x4cc9 + 0x00004ced RuartUnLock = 0x4ced + 0x00004d09 HalRuartIntSendRtl8195a = 0x4d09 + 0x00004e35 HalRuartDmaSendRtl8195a = 0x4e35 + 0x00004f89 HalRuartStopSendRtl8195a = 0x4f89 + 0x0000504d HalRuartIntRecvRtl8195a = 0x504d + 0x000051ad HalRuartDmaRecvRtl8195a = 0x51ad + 0x000052cd HalRuartStopRecvRtl8195a = 0x52cd + 0x00005385 RuartIsTimeout = 0x5385 + 0x000053b1 HalRuartSendRtl8195a = 0x53b1 + 0x00005599 HalRuartRecvRtl8195a = 0x5599 + 0x00005751 RuartResetRxFifoRtl8195a = 0x5751 + 0x00005775 HalRuartResetRxFifoRtl8195a = 0x5775 + 0x00005829 HalRuartInitRtl8195a = 0x5829 + 0x00005df1 HalGdmaOnOffRtl8195a = 0x5df1 + 0x00005e0d HalGdmaChIsrEnAndDisRtl8195a = 0x5e0d + 0x00005e51 HalGdmaChEnRtl8195a = 0x5e51 + 0x00005e6d HalGdmaChDisRtl8195a = 0x5e6d + 0x00005e91 HalGdamChInitRtl8195a = 0x5e91 + 0x00005ebd HalGdmaChSetingRtl8195a = 0x5ebd + 0x000060dd HalGdmaChBlockSetingRtl8195a = 0x60dd + 0x00006419 HalGdmaChIsrCleanRtl8195a = 0x6419 + 0x000064a1 HalGdmaChCleanAutoSrcRtl8195a = 0x64a1 + 0x00006501 HalGdmaChCleanAutoDstRtl8195a = 0x6501 + 0x00006561 HalEFUSEPowerSwitch8195AROM = 0x6561 + 0x000065f9 HALEFUSEOneByteReadROM = 0x65f9 + 0x00006699 HALEFUSEOneByteWriteROM = 0x6699 + 0x0000681d __rtl_memcmpb_v1_00 = 0x681d + 0x00006861 __rtl_random_v1_00 = 0x6861 + 0x00006881 __rtl_align_to_be32_v1_00 = 0x6881 + 0x00006899 __rtl_memsetw_v1_00 = 0x6899 + 0x000068ad __rtl_memsetb_v1_00 = 0x68ad + 0x000068bd __rtl_memcpyw_v1_00 = 0x68bd + 0x000068dd __rtl_memcpyb_v1_00 = 0x68dd + 0x000068f5 __rtl_memDump_v1_00 = 0x68f5 + 0x00006901 __rtl_AES_set_encrypt_key = 0x6901 + 0x00006c11 __rtl_cryptoEngine_AES_set_decrypt_key = 0x6c11 + 0x00006c95 __rtl_cryptoEngine_set_security_mode_v1_00 = 0x6c95 + 0x00006ea9 __rtl_cryptoEngine_init_v1_00 = 0x6ea9 + 0x00007055 __rtl_cryptoEngine_exit_v1_00 = 0x7055 + 0x000070b1 __rtl_cryptoEngine_reset_v1_00 = 0x70b1 + 0x000070ed __rtl_cryptoEngine_v1_00 = 0x70ed + 0x00007c69 __rtl_crypto_cipher_init_v1_00 = 0x7c69 + 0x00007c89 __rtl_crypto_cipher_encrypt_v1_00 = 0x7c89 + 0x00007cad __rtl_crypto_cipher_decrypt_v1_00 = 0x7cad + 0x00007cd5 HalSsiPinmuxEnableRtl8195a = 0x7cd5 + 0x00007e45 HalSsiEnableRtl8195a = 0x7e45 + 0x00007ef9 HalSsiDisableRtl8195a = 0x7ef9 + 0x00007fad HalSsiLoadSettingRtl8195a = 0x7fad + 0x00008521 HalSsiSetInterruptMaskRtl8195a = 0x8521 + 0x000085c9 HalSsiGetInterruptMaskRtl8195a = 0x85c9 + 0x0000863d HalSsiSetSclkPolarityRtl8195a = 0x863d + 0x00008715 HalSsiSetSclkPhaseRtl8195a = 0x8715 + 0x000087e9 HalSsiWriteRtl8195a = 0x87e9 + 0x00008861 HalSsiSetDeviceRoleRtl8195a = 0x8861 + 0x000088c9 HalSsiSetRxFifoThresholdLevelRtl8195a = 0x88c9 + 0x00008941 HalSsiSetTxFifoThresholdLevelRtl8195a = 0x8941 + 0x000089b9 HalSsiReadRtl8195a = 0x89b9 + 0x00008a2d HalSsiGetRxFifoLevelRtl8195a = 0x8a2d + 0x00008aa5 HalSsiGetTxFifoLevelRtl8195a = 0x8aa5 + 0x00008b1d HalSsiGetStatusRtl8195a = 0x8b1d + 0x00008b91 HalSsiWriteableRtl8195a = 0x8b91 + 0x00008c09 HalSsiReadableRtl8195a = 0x8c09 + 0x00008c81 HalSsiBusyRtl8195a = 0x8c81 + 0x00008cf9 HalSsiReadInterruptRtl8195a = 0x8cf9 + 0x00008efd HalSsiWriteInterruptRtl8195a = 0x8efd + 0x00009009 HalSsiSetSlaveEnableRegisterRtl8195a = 0x9009 + 0x000090d9 HalSsiGetInterruptStatusRtl8195a = 0x90d9 + 0x0000914d HalSsiInterruptEnableRtl8195a = 0x914d + 0x00009299 HalSsiInterruptDisableRtl8195a = 0x9299 + 0x000093e9 HalSsiGetRawInterruptStatusRtl8195a = 0x93e9 + 0x0000945d HalSsiGetSlaveEnableRegisterRtl8195a = 0x945d + 0x000094d1 HalSsiInitRtl8195a = 0x94d1 + 0x00009ba5 _SsiReadInterrupt = 0x9ba5 + 0x00009db1 _SsiWriteInterrupt = 0x9db1 + 0x00009eb1 _SsiIrqHandle = 0x9eb1 + 0x0000a061 HalI2CWrite32 = 0xa061 + 0x0000a09d HalI2CRead32 = 0xa09d + 0x0000a0dd HalI2CDeInit8195a = 0xa0dd + 0x0000a1f1 HalI2CSendRtl8195a = 0xa1f1 + 0x0000a25d HalI2CReceiveRtl8195a = 0xa25d + 0x0000a271 HalI2CEnableRtl8195a = 0xa271 + 0x0000a389 HalI2CIntrCtrl8195a = 0xa389 + 0x0000a3a1 HalI2CReadRegRtl8195a = 0xa3a1 + 0x0000a3b1 HalI2CWriteRegRtl8195a = 0xa3b1 + 0x0000a3c5 HalI2CSetCLKRtl8195a = 0xa3c5 + 0x0000a6e9 HalI2CMassSendRtl8195a = 0xa6e9 + 0x0000a749 HalI2CClrIntrRtl8195a = 0xa749 + 0x0000a761 HalI2CClrAllIntrRtl8195a = 0xa761 + 0x0000a775 HalI2CInit8195a = 0xa775 + 0x0000aa31 HalI2CDMACtrl8195a = 0xaa31 + 0x0000aa61 RtkI2CIoCtrl = 0xaa61 + 0x0000aa65 RtkI2CPowerCtrl = 0xaa65 + 0x0000aa69 HalI2COpInit = 0xaa69 + 0x0000ac65 I2CIsTimeout = 0xac65 + 0x0000b435 I2CTXGDMAISRHandle = 0xb435 + 0x0000b4c1 I2CRXGDMAISRHandle = 0xb4c1 + 0x0000b54d RtkI2CIrqInit = 0xb54d + 0x0000b611 RtkI2CIrqDeInit = 0xb611 + 0x0000b675 RtkI2CPinMuxInit = 0xb675 + 0x0000b7c9 RtkI2CPinMuxDeInit = 0xb7c9 + 0x0000b955 RtkI2CDMAInit = 0xb955 + 0x0000bc95 RtkI2CInit = 0xbc95 + 0x0000bdad RtkI2CDMADeInit = 0xbdad + 0x0000be4d RtkI2CDeInit = 0xbe4d + 0x0000bee5 RtkI2CSendUserAddr = 0xbee5 + 0x0000c07d RtkI2CSend = 0xc07d + 0x0000ce51 RtkI2CLoadDefault = 0xce51 + 0x0000cf21 RtkSalI2COpInit = 0xcf21 + 0x0000cf65 HalI2SWrite32 = 0xcf65 + 0x0000cf85 HalI2SRead32 = 0xcf85 + 0x0000cfa9 HalI2SDeInitRtl8195a = 0xcfa9 + 0x0000cfc9 HalI2STxRtl8195a = 0xcfc9 + 0x0000d011 HalI2SRxRtl8195a = 0xd011 + 0x0000d05d HalI2SEnableRtl8195a = 0xd05d + 0x0000d0b1 HalI2SIntrCtrlRtl8195a = 0xd0b1 + 0x0000d0d1 HalI2SReadRegRtl8195a = 0xd0d1 + 0x0000d0dd HalI2SClrIntrRtl8195a = 0xd0dd + 0x0000d0fd HalI2SClrAllIntrRtl8195a = 0xd0fd + 0x0000d11d HalI2SInitRtl8195a = 0xd11d + 0x0000d2e5 GPIO_GetIPPinName_8195a = 0xd2e5 + 0x0000d331 GPIO_GetChipPinName_8195a = 0xd331 + 0x0000d39d GPIO_PullCtrl_8195a = 0xd39d + 0x0000d421 GPIO_FuncOn_8195a = 0xd421 + 0x0000d481 GPIO_FuncOff_8195a = 0xd481 + 0x0000d4e9 GPIO_Int_Mask_8195a = 0xd4e9 + 0x0000d511 GPIO_Int_SetType_8195a = 0xd511 + 0x0000d5fd HAL_GPIO_IrqHandler_8195a = 0xd5fd + 0x0000d645 HAL_GPIO_MbedIrqHandler_8195a = 0xd645 + 0x0000d6a1 HAL_GPIO_UserIrqHandler_8195a = 0xd6a1 + 0x0000d6cd HAL_GPIO_IntCtrl_8195a = 0xd6cd + 0x0000d805 HAL_GPIO_Init_8195a = 0xd805 + 0x0000dac1 HAL_GPIO_DeInit_8195a = 0xdac1 + 0x0000dbd1 HAL_GPIO_ReadPin_8195a = 0xdbd1 + 0x0000dc91 HAL_GPIO_WritePin_8195a = 0xdc91 + 0x0000ddad HAL_GPIO_RegIrq_8195a = 0xddad + 0x0000ddf5 HAL_GPIO_UnRegIrq_8195a = 0xddf5 + 0x0000de15 HAL_GPIO_UserRegIrq_8195a = 0xde15 + 0x0000def9 HAL_GPIO_UserUnRegIrq_8195a = 0xdef9 + 0x0000dfc1 HAL_GPIO_MaskIrq_8195a = 0xdfc1 + 0x0000e061 HAL_GPIO_UnMaskIrq_8195a = 0xe061 + 0x0000e101 HAL_GPIO_IntDebounce_8195a = 0xe101 + 0x0000e1c1 HAL_GPIO_GetIPPinName_8195a = 0xe1c1 + 0x0000e1c9 HAL_GPIO_PullCtrl_8195a = 0xe1c9 + 0x0000e259 DumpForOneBytes = 0xe259 + 0x0000e419 CmdRomHelp = 0xe419 + 0x0000e491 CmdWriteWord = 0xe491 + 0x0000e505 CmdDumpHelfWord = 0xe505 + 0x0000e5f1 CmdDumpWord = 0xe5f1 + 0x0000e6f5 CmdDumpByte = 0xe6f5 + 0x0000e751 CmdSpiFlashTool = 0xe751 + 0x0000e7a9 GetRomCmdNum = 0xe7a9 + 0x0000e7ad CmdWriteByte = 0xe7ad + 0x0000e7ed Isspace = 0xe7ed + 0x0000e801 Strtoul = 0xe801 + 0x0000e8b1 ArrayInitialize = 0xe8b1 + 0x0000e8c9 GetArgc = 0xe8c9 + 0x0000e8f9 GetArgv = 0xe8f9 + 0x0000e95d UartLogCmdExecute = 0xe95d + 0x0000e9fd UartLogShowBackSpace = 0xe9fd + 0x0000ea39 UartLogRecallOldCmd = 0xea39 + 0x0000ea71 UartLogHistoryCmd = 0xea71 + 0x0000eadd UartLogCmdChk = 0xeadd + 0x0000ebf5 UartLogIrqHandle = 0xebf5 + 0x0000ecc5 RtlConsolInit = 0xecc5 + 0x0000ed49 RtlConsolTaskRom = 0xed49 + 0x0000ed79 RtlExitConsol = 0xed79 + 0x0000edcd RtlConsolRom = 0xedcd + 0x0000ee0d HalTimerOpInit = 0xee0d + 0x0000ee59 HalTimerIrq2To7Handle = 0xee59 + 0x0000ef09 HalGetTimerIdRtl8195a = 0xef09 + 0x0000ef3d HalTimerInitRtl8195a = 0xef3d + 0x0000f069 HalTimerDisRtl8195a = 0xf069 + 0x0000f089 HalTimerEnRtl8195a = 0xf089 + 0x0000f0a9 HalTimerReadCountRtl8195a = 0xf0a9 + 0x0000f0bd HalTimerIrqClearRtl8195a = 0xf0bd + 0x0000f0d1 HalTimerDumpRegRtl8195a = 0xf0d1 + 0x0000f129 VSprintf = 0xf129 + 0x0000f39d DiagPrintf = 0xf39d + 0x0000f3b9 DiagSPrintf = 0xf3b9 + 0x0000f3d1 DiagSnPrintf = 0xf3d1 + 0x0000f3ed prvDiagPrintf = 0xf3ed + 0x0000f40d prvDiagSPrintf = 0xf40d + 0x0000f429 _memcmp = 0xf429 + 0x0000f465 _memcpy = 0xf465 + 0x0000f511 _memset = 0xf511 + 0x0000f585 Rand = 0xf585 + 0x0000f60d _strncpy = 0xf60d + 0x0000f629 _strcpy = 0xf629 + 0x0000f639 prvStrCpy = 0xf639 + 0x0000f651 _strlen = 0xf651 + 0x0000f669 _strnlen = 0xf669 + 0x0000f699 prvStrLen = 0xf699 + 0x0000f6b1 _strcmp = 0xf6b1 + 0x0000f6d1 _strncmp = 0xf6d1 + 0x0000f719 prvStrCmp = 0xf719 + 0x0000f749 StrUpr = 0xf749 + 0x0000f769 prvAtoi = 0xf769 + 0x0000f7bd prvStrStr = 0xf7bd + 0x0000f7d5 _strsep = 0xf7d5 + 0x0000f815 skip_spaces = 0xf815 + 0x0000f831 skip_atoi = 0xf831 + 0x0000f869 _parse_integer_fixup_radix = 0xf869 + 0x0000f8bd _parse_integer = 0xf8bd + 0x0000f915 simple_strtoull = 0xf915 + 0x0000f945 simple_strtoll = 0xf945 + 0x0000f965 simple_strtoul = 0xf965 + 0x0000f96d simple_strtol = 0xf96d + 0x0000f985 _vsscanf = 0xf985 + 0x0000ff71 _sscanf = 0xff71 + 0x0000ff91 div_u64 = 0xff91 + 0x0000ff99 div_s64 = 0xff99 + 0x0000ffa1 div_u64_rem = 0xffa1 + 0x0000ffb1 div_s64_rem = 0xffb1 + 0x0000ffc1 _strpbrk = 0xffc1 + 0x0000ffed _strchr = 0xffed + 0x00010005 aes_set_key = 0x10005 + 0x000103d1 aes_encrypt = 0x103d1 + 0x000114a5 aes_decrypt = 0x114a5 + 0x000125c9 AES_WRAP = 0x125c9 + 0x00012701 AES_UnWRAP = 0x12701 + 0x00012861 crc32_get = 0x12861 + 0x00012895 arc4_byte = 0x12895 + 0x000128bd rt_arc4_init = 0x128bd + 0x00012901 rt_arc4_crypt = 0x12901 + 0x000131c1 rt_md5_init = 0x131c1 + 0x000131f5 rt_md5_append = 0x131f5 + 0x0001327d rt_md5_final = 0x1327d + 0x000132d5 rt_md5_hmac = 0x132d5 + 0x00013449 rtw_get_bit_value_from_ieee_value = 0x13449 + 0x00013475 rtw_is_cckrates_included = 0x13475 + 0x000134b5 rtw_is_cckratesonly_included = 0x134b5 + 0x000134dd rtw_check_network_type = 0x134dd + 0x0001350d rtw_set_fixed_ie = 0x1350d + 0x0001352d rtw_set_ie = 0x1352d + 0x0001355d rtw_get_ie = 0x1355d + 0x00013591 rtw_set_supported_rate = 0x13591 + 0x00013611 rtw_get_rateset_len = 0x13611 + 0x0001362d rtw_get_wpa_ie = 0x1362d + 0x000136c9 rtw_get_wpa2_ie = 0x136c9 + 0x00013701 rtw_get_wpa_cipher_suite = 0x13701 + 0x00013769 rtw_get_wpa2_cipher_suite = 0x13769 + 0x000137d1 rtw_parse_wpa_ie = 0x137d1 + 0x000138ad rtw_parse_wpa2_ie = 0x138ad + 0x00013965 rtw_get_sec_ie = 0x13965 + 0x00013a15 rtw_get_wps_ie = 0x13a15 + 0x00013a99 rtw_get_wps_attr = 0x13a99 + 0x00013b49 rtw_get_wps_attr_content = 0x13b49 + 0x00013b91 rtw_ieee802_11_parse_elems = 0x13b91 + 0x00013d9d str_2char2num = 0x13d9d + 0x00013db9 key_2char2num = 0x13db9 + 0x00013dd1 convert_ip_addr = 0x13dd1 + 0x00013e9d rom_psk_PasswordHash = 0x13e9d + 0x00013ed5 rom_psk_CalcGTK = 0x13ed5 + 0x00013f69 rom_psk_CalcPTK = 0x13f69 + 0x00014295 wep_80211_encrypt = 0x14295 + 0x000142f5 wep_80211_decrypt = 0x142f5 + 0x00014389 tkip_micappendbyte = 0x14389 + 0x000143d9 rtw_secmicsetkey = 0x143d9 + 0x00014419 rtw_secmicappend = 0x14419 + 0x00014435 rtw_secgetmic = 0x14435 + 0x0001449d rtw_seccalctkipmic = 0x1449d + 0x000145a5 tkip_phase1 = 0x145a5 + 0x00014725 tkip_phase2 = 0x14725 + 0x00014941 tkip_80211_encrypt = 0x14941 + 0x000149d5 tkip_80211_decrypt = 0x149d5 + 0x00014a8d aes1_encrypt = 0x14a8d + 0x00014c65 aesccmp_construct_mic_iv = 0x14c65 + 0x00014ccd aesccmp_construct_mic_header1 = 0x14ccd + 0x00014d21 aesccmp_construct_mic_header2 = 0x14d21 + 0x00014db5 aesccmp_construct_ctr_preload = 0x14db5 + 0x00014e29 aes_80211_encrypt = 0x14e29 + 0x000151ad aes_80211_decrypt = 0x151ad + 0x000155b9 _sha1_process_message_block = 0x155b9 + 0x00015749 _sha1_pad_message = 0x15749 + 0x000157e5 rt_sha1_init = 0x157e5 + 0x00015831 rt_sha1_update = 0x15831 + 0x000158a9 rt_sha1_finish = 0x158a9 + 0x00015909 rt_hmac_sha1 = 0x15909 + 0x00015a65 rom_aes_128_cbc_encrypt = 0x15a65 + 0x00015ae1 rom_aes_128_cbc_decrypt = 0x15ae1 + 0x00015b5d rom_rijndaelKeySetupEnc = 0x15b5d + 0x00015c39 rom_aes_decrypt_init = 0x15c39 + 0x00015d15 rom_aes_internal_decrypt = 0x15d15 + 0x00016071 rom_aes_decrypt_deinit = 0x16071 + 0x00016085 rom_aes_encrypt_init = 0x16085 + 0x0001609d rom_aes_internal_encrypt = 0x1609d + 0x00016451 rom_aes_encrypt_deinit = 0x16451 + 0x00017b35 bignum_init = 0x17b35 + 0x00017b61 bignum_deinit = 0x17b61 + 0x00017b81 bignum_get_unsigned_bin_len = 0x17b81 + 0x00017b85 bignum_get_unsigned_bin = 0x17b85 + 0x00017c21 bignum_set_unsigned_bin = 0x17c21 + 0x00017cd1 bignum_cmp = 0x17cd1 + 0x00017cd5 bignum_cmp_d = 0x17cd5 + 0x00017cfd bignum_add = 0x17cfd + 0x00017d0d bignum_sub = 0x17d0d + 0x00017d1d bignum_mul = 0x17d1d + 0x00017d2d bignum_exptmod = 0x17d2d + 0x00017d51 WPS_realloc = 0x17d51 + 0x00017d99 os_zalloc = 0x17d99 + 0x00017dc1 rom_hmac_sha256_vector = 0x17dc1 + 0x00017ebd rom_hmac_sha256 = 0x17ebd + 0x00018009 rom_sha256_vector = 0x18009 + 0x00018221 phy_CalculateBitShift = 0x18221 + 0x00018239 PHY_SetBBReg_8195A = 0x18239 + 0x00018279 PHY_QueryBBReg_8195A = 0x18279 + 0x0001829d ROM_odm_QueryRxPwrPercentage = 0x1829d + 0x000182bd ROM_odm_EVMdbToPercentage = 0x182bd + 0x000182e5 ROM_odm_SignalScaleMapping_8195A = 0x182e5 + 0x000183cd ROM_odm_FalseAlarmCounterStatistics = 0x183cd + 0x00018721 ROM_odm_SetEDCCAThreshold = 0x18721 + 0x00018749 ROM_odm_SetTRxMux = 0x18749 + 0x00018771 ROM_odm_SetCrystalCap = 0x18771 + 0x000187d5 ROM_odm_GetDefaultCrytaltalCap = 0x187d5 + 0x000187e9 ROM_ODM_CfoTrackingReset = 0x187e9 + 0x00018811 ROM_odm_CfoTrackingFlow = 0x18811 + 0x0001965d curve25519_donna = 0x1965d + 0x0001a391 aes_test_alignment_detection = 0x1a391 + 0x0001a3ed aes_mode_reset = 0x1a3ed + 0x0001a3f9 aes_ecb_encrypt = 0x1a3f9 + 0x0001a431 aes_ecb_decrypt = 0x1a431 + 0x0001a469 aes_cbc_encrypt = 0x1a469 + 0x0001a579 aes_cbc_decrypt = 0x1a579 + 0x0001a701 aes_cfb_encrypt = 0x1a701 + 0x0001a9e5 aes_cfb_decrypt = 0x1a9e5 + 0x0001acc9 aes_ofb_crypt = 0x1acc9 + 0x0001af7d aes_ctr_crypt = 0x1af7d + 0x0001b289 aes_encrypt_key128 = 0x1b289 + 0x0001b2a5 aes_encrypt_key192 = 0x1b2a5 + 0x0001b2c1 aes_encrypt_key256 = 0x1b2c1 + 0x0001b2e1 aes_encrypt_key = 0x1b2e1 + 0x0001b351 aes_decrypt_key128 = 0x1b351 + 0x0001b36d aes_decrypt_key192 = 0x1b36d + 0x0001b389 aes_decrypt_key256 = 0x1b389 + 0x0001b3a9 aes_decrypt_key = 0x1b3a9 + 0x0001b419 aes_init = 0x1b419 + 0x0001b41d CRYPTO_chacha_20 = 0x1b41d + 0x0001bc25 CRYPTO_poly1305_init = 0x1bc25 + 0x0001bd09 CRYPTO_poly1305_update = 0x1bd09 + 0x0001bd8d CRYPTO_poly1305_finish = 0x1bd8d + 0x0001ceb5 rom_sha512_starts = 0x1ceb5 + 0x0001d009 rom_sha512_update = 0x1d009 + 0x0001d011 rom_sha512_finish = 0x1d011 + 0x0001d261 rom_sha512 = 0x1d261 + 0x0001d299 rom_sha512_hmac_starts = 0x1d299 + 0x0001d35d rom_sha512_hmac_update = 0x1d35d + 0x0001d365 rom_sha512_hmac_finish = 0x1d365 + 0x0001d3b5 rom_sha512_hmac_reset = 0x1d3b5 + 0x0001d3d1 rom_sha512_hmac = 0x1d3d1 + 0x0001d40d rom_sha512_hkdf = 0x1d40d + 0x0001d501 rom_ed25519_gen_keypair = 0x1d501 + 0x0001d505 rom_ed25519_gen_signature = 0x1d505 + 0x0001d51d rom_ed25519_verify_signature = 0x1d51d + 0x0001d521 rom_ed25519_crypto_sign_seed_keypair = 0x1d521 + 0x0001d579 rom_ed25519_crypto_sign_detached = 0x1d579 + 0x0001d655 rom_ed25519_crypto_sign_verify_detached = 0x1d655 + 0x0001f86d rom_ed25519_ge_double_scalarmult_vartime = 0x1f86d + 0x0001fc35 rom_ed25519_ge_frombytes_negate_vartime = 0x1fc35 + 0x000207d5 rom_ed25519_ge_p3_tobytes = 0x207d5 + 0x00020821 rom_ed25519_ge_scalarmult_base = 0x20821 + 0x000209e1 rom_ed25519_ge_tobytes = 0x209e1 + 0x00020a2d rom_ed25519_sc_muladd = 0x20a2d + 0x0002603d rom_ed25519_sc_reduce = 0x2603d + 0x00028a4d __rtl_memchr_v1_00 = 0x28a4d + 0x00028ae1 __rtl_memcmp_v1_00 = 0x28ae1 + 0x00028b49 __rtl_memcpy_v1_00 = 0x28b49 + 0x00028bed __rtl_memmove_v1_00 = 0x28bed + 0x00028cb5 __rtl_memset_v1_00 = 0x28cb5 + 0x00028d49 __rtl_strcat_v1_00 = 0x28d49 + 0x00028d91 __rtl_strchr_v1_00 = 0x28d91 + 0x00028e55 __rtl_strcmp_v1_00 = 0x28e55 + 0x00028ec9 __rtl_strcpy_v1_00 = 0x28ec9 + 0x00028f15 __rtl_strlen_v1_00 = 0x28f15 + 0x00028f69 __rtl_strncat_v1_00 = 0x28f69 + 0x00028fc5 __rtl_strncmp_v1_00 = 0x28fc5 + 0x0002907d __rtl_strncpy_v1_00 = 0x2907d + 0x000293cd __rtl_strstr_v1_00 = 0x293cd + 0x0002960d __rtl_strsep_v1_00 = 0x2960d + 0x00029619 __rtl_strtok_v1_00 = 0x29619 + 0x0002962d __rtl__strtok_r_v1_00 = 0x2962d + 0x00029691 __rtl_strtok_r_v1_00 = 0x29691 + 0x00029699 __rtl_close_v1_00 = 0x29699 + 0x000296ad __rtl_fstat_v1_00 = 0x296ad + 0x000296c1 __rtl_isatty_v1_00 = 0x296c1 + 0x000296d5 __rtl_lseek_v1_00 = 0x296d5 + 0x000296e9 __rtl_open_v1_00 = 0x296e9 + 0x000296fd __rtl_read_v1_00 = 0x296fd + 0x00029711 __rtl_write_v1_00 = 0x29711 + 0x00029725 __rtl_sbrk_v1_00 = 0x29725 + 0x000297bd __rtl_ltoa_v1_00 = 0x297bd + 0x00029855 __rtl_ultoa_v1_00 = 0x29855 + 0x000298c5 __rtl_dtoi_v1_00 = 0x298c5 + 0x00029945 __rtl_dtoi64_v1_00 = 0x29945 + 0x000299dd __rtl_dtoui_v1_00 = 0x299dd + 0x000299e5 __rtl_ftol_v1_00 = 0x299e5 + 0x00029a51 __rtl_itof_v1_00 = 0x29a51 + 0x00029ae9 __rtl_itod_v1_00 = 0x29ae9 + 0x00029b79 __rtl_i64tod_v1_00 = 0x29b79 + 0x00029c55 __rtl_uitod_v1_00 = 0x29c55 + 0x00029d2d __rtl_ftod_v1_00 = 0x29d2d + 0x00029de9 __rtl_dtof_v1_00 = 0x29de9 + 0x00029e89 __rtl_uitof_v1_00 = 0x29e89 + 0x00029f65 __rtl_fadd_v1_00 = 0x29f65 + 0x0002a261 __rtl_fsub_v1_00 = 0x2a261 + 0x0002a559 __rtl_fmul_v1_00 = 0x2a559 + 0x0002a695 __rtl_fdiv_v1_00 = 0x2a695 + 0x0002a825 __rtl_dadd_v1_00 = 0x2a825 + 0x0002aed9 __rtl_dsub_v1_00 = 0x2aed9 + 0x0002b555 __rtl_dmul_v1_00 = 0x2b555 + 0x0002b8ad __rtl_ddiv_v1_00 = 0x2b8ad + 0x0002be4d __rtl_dcmpeq_v1_00 = 0x2be4d + 0x0002bebd __rtl_dcmplt_v1_00 = 0x2bebd + 0x0002bf51 __rtl_dcmpgt_v1_00 = 0x2bf51 + 0x0002c049 __rtl_dcmple_v1_00 = 0x2c049 + 0x0002c139 __rtl_fcmplt_v1_00 = 0x2c139 + 0x0002c195 __rtl_fcmpgt_v1_00 = 0x2c195 + 0x0002c229 __rtl_cos_f32_v1_00 = 0x2c229 + 0x0002c435 __rtl_sin_f32_v1_00 = 0x2c435 + 0x0002c639 __rtl_fabs_v1_00 = 0x2c639 + 0x0002c641 __rtl_fabsf_v1_00 = 0x2c641 + 0x0002c77d __rtl_dtoa_r_v1_00 = 0x2c77d + 0x0002d7d1 __rom_mallocr_init_v1_00 = 0x2d7d1 + 0x0002d841 __rtl_free_r_v1_00 = 0x2d841 + 0x0002da31 __rtl_malloc_r_v1_00 = 0x2da31 + 0x0002df55 __rtl_realloc_r_v1_00 = 0x2df55 + 0x0002e331 __rtl_memalign_r_v1_00 = 0x2e331 + 0x0002e421 __rtl_valloc_r_v1_00 = 0x2e421 + 0x0002e42d __rtl_pvalloc_r_v1_00 = 0x2e42d + 0x0002e441 __rtl_calloc_r_v1_00 = 0x2e441 + 0x0002e4a9 __rtl_cfree_r_v1_00 = 0x2e4a9 + 0x0002e515 __rtl_Balloc_v1_00 = 0x2e515 + 0x0002e571 __rtl_Bfree_v1_00 = 0x2e571 + 0x0002e585 __rtl_i2b_v1_00 = 0x2e585 + 0x0002e599 __rtl_multadd_v1_00 = 0x2e599 + 0x0002e629 __rtl_mult_v1_00 = 0x2e629 + 0x0002e769 __rtl_pow5mult_v1_00 = 0x2e769 + 0x0002e809 __rtl_hi0bits_v1_00 = 0x2e809 + 0x0002e845 __rtl_d2b_v1_00 = 0x2e845 + 0x0002e901 __rtl_lshift_v1_00 = 0x2e901 + 0x0002e9bd __rtl_cmp_v1_00 = 0x2e9bd + 0x0002ea01 __rtl_diff_v1_00 = 0x2ea01 + 0x0002eae9 __rtl_sread_v1_00 = 0x2eae9 + 0x0002eb39 __rtl_seofread_v1_00 = 0x2eb39 + 0x0002eb3d __rtl_swrite_v1_00 = 0x2eb3d + 0x0002ebc1 __rtl_sseek_v1_00 = 0x2ebc1 + 0x0002ec11 __rtl_sclose_v1_00 = 0x2ec11 + 0x0002ec41 __rtl_sbrk_r_v1_00 = 0x2ec41 + 0x0002ef8d __rtl_fflush_r_v1_00 = 0x2ef8d + 0x0002f661 __rtl_vfprintf_r_v1_00 = 0x2f661 + 0x00030c15 __rtl_fpclassifyd = 0x30c15 + 0x00030c68 CpkClkTbl = 0x30c68 + 0x00030c80 ROM_IMG1_VALID_PATTEN = 0x30c80 + 0x00030c88 SpicCalibrationPattern = 0x30c88 + 0x00030c98 SpicInitCPUCLK = 0x30c98 + 0x00030ca8 BAUDRATE = 0x30ca8 + 0x00030d1c OVSR = 0x30d1c + 0x00030d90 DIV = 0x30d90 + 0x00030e04 OVSR_ADJ = 0x30e04 + 0x00030e78 __AES_rcon = 0x30e78 + 0x00030ea0 __AES_Te4 = 0x30ea0 + 0x000312a0 I2CDmaChNo = 0x312a0 + 0x000316a0 UartLogRomCmdTable = 0x316a0 + 0x00031700 _HalRuartOp = 0x31700 + 0x00031760 _HalGdmaOp = 0x31760 + 0x0003540c RTW_WPA_OUI_TYPE = 0x3540c + 0x00035410 WPA_CIPHER_SUITE_NONE = 0x35410 + 0x00035414 WPA_CIPHER_SUITE_WEP40 = 0x35414 + 0x00035418 WPA_CIPHER_SUITE_TKIP = 0x35418 + 0x0003541c WPA_CIPHER_SUITE_CCMP = 0x3541c + 0x00035420 WPA_CIPHER_SUITE_WEP104 = 0x35420 + 0x00035424 RSN_CIPHER_SUITE_NONE = 0x35424 + 0x00035428 RSN_CIPHER_SUITE_WEP40 = 0x35428 + 0x0003542c RSN_CIPHER_SUITE_TKIP = 0x3542c + 0x00035430 RSN_CIPHER_SUITE_CCMP = 0x35430 + 0x00035434 RSN_CIPHER_SUITE_WEP104 = 0x35434 + 0x00035444 RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X = 0x35444 + 0x00035448 RSN_AUTH_KEY_MGMT_UNSPEC_802_1X = 0x35448 + 0x0003544c RSN_VERSION_BSD = 0x3544c + 0x00035988 rom_wps_Te0 = 0x35988 + 0x00035d88 rom_wps_rcons = 0x35d88 + 0x00035d94 rom_wps_Td4s = 0x35d94 + 0x00035e94 rom_wps_Td0 = 0x35e94 + 0x10000000 NewVectorTable = 0x10000000 + 0x10000100 UserIrqFunTable = 0x10000100 + 0x10000200 UserIrqDataTable = 0x10000200 + 0x10000300 __rom_bss_start__ = 0x10000300 + 0x10000300 CfgSysDebugWarn = 0x10000300 + 0x10000304 CfgSysDebugInfo = 0x10000304 + 0x10000308 CfgSysDebugErr = 0x10000308 + 0x1000030c ConfigDebugWarn = 0x1000030c + 0x10000310 ConfigDebugInfo = 0x10000310 + 0x10000314 ConfigDebugErr = 0x10000314 + 0x10000318 HalTimerOp = 0x10000318 + 0x10000334 GPIOState = 0x10000334 + 0x1000034c gTimerRecord = 0x1000034c + 0x10000350 SSI_DBG_CONFIG = 0x10000350 + 0x10000354 _pHAL_Gpio_Adapter = 0x10000354 + 0x10000358 Timer2To7VectorTable = 0x10000358 + 0x10000384 pUartLogCtl = 0x10000384 + 0x10000388 UartLogBuf = 0x10000388 + 0x10000408 UartLogCtl = 0x10000408 + 0x10000430 UartLogHistoryBuf = 0x10000430 + 0x100006ac ArgvArray = 0x100006ac + 0x100006d4 rom_wlan_ram_map = 0x100006d4 + 0x100006e0 FalseAlmCnt = 0x100006e0 + 0x10000720 ROMInfo = 0x10000720 + 0x10000738 DM_CfoTrack = 0x10000738 + 0x10000760 rom_libgloss_ram_map = 0x10000760 + 0x10000bc4 __rtl_errno = 0x10000bc4 + 0x10001c60 _rtl_impure_ptr = 0x10001c60 + 0x10000300 __rom_bss_start__ = 0x10000300 + 0x10000bc8 __rom_bss_end__ = 0x10000bc8 + +.bootloader 0x10000bc8 0x3a98 + *(.loader.data*) + .loader.data 0x10000bc8 0x3a98 application/Debug/obj/ram_1.r.o + 0x10000bc8 _binary_application_Debug_obj_ram_1_r_bin_start + 0x10004660 _binary_application_Debug_obj_ram_1_r_bin_end + +.valid 0x1fff0000 0xf574 + *mem.o(.bss*) + .bss.ram_heap 0x1fff0000 0x1414 application/Debug/obj/mem.o + 0x1fff0000 ram_heap + .bss.lfree 0x1fff1414 0x4 application/Debug/obj/mem.o + .bss.ram_end 0x1fff1418 0x4 application/Debug/obj/mem.o + .bss.mem_mutex + 0x1fff141c 0x4 application/Debug/obj/mem.o + .bss.ram 0x1fff1420 0x4 application/Debug/obj/mem.o + *memp.o(.bss*) + .bss.memp_memory + 0x1fff1424 0x4110 application/Debug/obj/memp.o + .bss.memp_tab 0x1fff5534 0x40 application/Debug/obj/memp.o + *(.tcm.heap) + .tcm.heap 0x1fff5574 0xa000 application/Debug/obj/tcm_heap.o + 0x1fff5574 tcm_heap + 0x1fff0000 PROVIDE (__load_start_valid, LOADADDR (.valid)) + 0x1ffff574 PROVIDE (__load_stop_valid, (LOADADDR (.valid) + SIZEOF (.valid))) + +.dummy 0x1fff0000 0x19c8 load address 0x1ffff574 + 0x1ffff574 __ram_image1_text_start__ = . + 0x1ffff574 __ram_start_table_start__ = . + *(SORT(.start.ram.data*)) + .start.ram.data.a + 0x1fff0000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1fff0000 gRamStartFun + .start.ram.data.b + 0x1fff0004 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1fff0004 gRamPatchWAKE + .start.ram.data.c + 0x1fff0008 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1fff0008 gRamPatchFun0 + .start.ram.data.d + 0x1fff000c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1fff000c gRamPatchFun1 + .start.ram.data.e + 0x1fff0010 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1fff0010 gRamPatchFun2 + 0x1ffff574 __ram_start_table_end__ = . + 0x1ffff574 __image1_validate_code__ = . + *(.image1.validate.rodata*) + .image1.validate.rodata + 0x1fff0014 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1fff0014 RAM_IMG1_VALID_PATTEN + *(.infra.ram.data*) + *(.timer.ram.data*) + *(.cutb.ram.data*) + .cutb.ram.data + 0x1fff001c 0x1078 application/Debug/obj/hal_sdr_controller.o + 0x1fff001c rand_x + 0x1fff0020 AvaWds + 0x1fff1020 SdrDramInfo + 0x1fff1034 SdrDramTiming + 0x1fff1068 SdrDramModeReg + 0x1fff1084 SdrDramDev + *(.cutc.ram.data*) + *(.hal.ram.data*) + .hal.ram.data 0x1fff1094 0xc application/Debug/obj/hal_sdr_controller.o + .hal.ram.data 0x1fff10a0 0x12c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1fff10a0 gBoot_Gpio_Adapter + 0x1ffff574 __image1_bss_start__ = . + 0x1ffff574 .ram_image1.bss$$Base = . + 0x1ffff574 __image1_bss_end__ = . + 0x1ffff574 .ram_image1.bss$$Limit = . + 0x1ffff574 __ram_image1_data_end__ = . + *(.hal.ram.text*) + .hal.ram.text 0x1fff11cc 0x76c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1fff1294 RtlBootToSram + 0x1fff146c SYSCpuClkConfig + 0x1fff14dc IsForceLoadDefaultImg2 + 0x1fff1560 _GetChipId + 0x1fff15a0 StartupHalSpicInit + 0x1fff15ec PreProcessForVendor + .hal.ram.text.__stub + 0x1fff1938 0x90 linker stubs + *(.infra.ram.text*) + 0x1ffff574 PROVIDE (__load_start_dummy, LOADADDR (.dummy)) + 0x20000f3c PROVIDE (__load_stop_dummy, (LOADADDR (.dummy) + SIZEOF (.dummy))) + +.image2.start.table + 0x10006000 0x38 + 0x10006000 __ram_image2_text_start__ = . + 0x10006000 __image2_entry_func__ = . + 0x10006000 .image2.start.table1$$Base = . + *(SORT(.image2.ram.data*)) + .image2.ram.data + 0x10006000 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x10006000 gImage2EntryFun0 + 0x10006004 __image2_validate_code__ = . + *(.image2.validate.rodata*) + .image2.validate.rodata + 0x10006004 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x10006004 RAM_IMG2_VALID_PATTEN + *(.custom.validate.rodata*) + .custom.validate.rodata + 0x10006018 0x20 application/Debug/obj/update.o + 0x10006018 cus_sig + +.ram_image2.text + 0x10006038 0x3da08 + *(.infra.ram.start*) + .infra.ram.start + 0x10006038 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x10006038 VectorTableOverrideRtl8195A + 0x10006048 SYSPlatformInit + 0x10006068 InfraStart + *(.mon.ram.text*) + .mon.ram.text 0x10006118 0x1f4 application/Debug/obj/rtl_consol.o + 0x10006118 UartLogIrqHandleRam + 0x100061f4 RtlConsolInitRam + 0x100062d8 RtlConsolTaskRam + *(.hal.flash.text*) + .hal.flash.text + 0x1000630c 0x1294 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + 0x1000630c SpicRxCmdRefinedRtl8195A + 0x10006414 SpicInitRefinedRtl8195A + 0x100064c8 SpicReadIDRtl8195A + 0x100065cc SpicConfigAutoModeRtl8195A + 0x1000663c SpicUserReadRtl8195A + 0x100067b0 SpicUserReadFourByteRtl8195A + 0x100068cc SpicGetExtendAddrRtl8195A + 0x10006924 SpicGetConfigRegRtl8195A + 0x1000697c SpicGetFlashStatusRefinedRtl8195A + 0x100069d4 SpicWaitWipDoneRefinedRtl8195A + 0x10006a10 SpicTxCmdWithDataRtl8195A + 0x10006ae4 SpicGetFlashFlagRtl8195A + 0x10006b70 SpicWaitOperationDoneRtl8195A + 0x10006bac SpicDeepPowerDownFlashRtl8195A + 0x10006c38 SpicUserProgramRtl8195A + 0x10006e68 SpicWaitWipRtl8195A + 0x10006e7c SpicTxFlashInstRtl8195A + 0x10006f10 SpicEraseFlashRefinedRtl8195A + 0x10006f1a SpicDieEraseFlashRtl8195A + 0x10006f3c SpicBlockEraseFlashRtl8195A + 0x10006f5e SpicSectorEraseFlashRtl8195A + 0x10006f80 SpicSetExtendAddrRtl8195A + 0x10006f9a SpicSetFlashStatusRefinedRtl8195A + 0x10006fcc SpicWriteProtectFlashRtl8195A + 0x10006ff4 SpicDisableRtl8195A + 0x10007004 SpicNVMCalLoad + 0x1000711c SpicNVMCalLoadAll + 0x1000713a SpicNVMCalStore + 0x10007294 SpicCalibrationRtl8195A + 0x100074dc SpicFlashInitRtl8195A + 0x10007588 SpicOneBitCalibrationRtl8195A + *(.hal.sdrc.text*) + .hal.sdrc.text + 0x100075a0 0x81c application/Debug/obj/hal_sdr_controller.o + 0x100075a0 SdrCtrlInit + 0x100075bc DramInit + 0x100078d0 ChangeRandSeed + 0x100078dc Sdr_Rand2 + 0x1000792c MemTest + 0x1000798c SdrCalibration + 0x10007d08 SdrControllerInit + *(.hal.gpio.text*) + *(.fwu.text*) + *(.text*) + .text.SystemCoreClockUpdate + 0x10007dbc 0x14 application/Debug/obj/system_8195a.o + 0x10007dbc SystemCoreClockUpdate + .text.fATP0 0x10007dd0 0x4c application/Debug/obj/atcmd_lwip.o + 0x10007dd0 fATP0 + .text.fATPI 0x10007e1c 0x17c application/Debug/obj/atcmd_lwip.o + 0x10007e1c fATPI + .text.atcmd_lwip_send_data + 0x10007f98 0x120 application/Debug/obj/atcmd_lwip.o + 0x10007f98 atcmd_lwip_send_data + .text.atcmd_lwip_tt_handler + 0x100080b8 0x15c application/Debug/obj/atcmd_lwip.o + .text.init_node_pool + 0x10008214 0x28 application/Debug/obj/atcmd_lwip.o + 0x10008214 init_node_pool + .text.create_node + 0x1000823c 0x88 application/Debug/obj/atcmd_lwip.o + 0x1000823c create_node + .text.delete_node + 0x100082c4 0xb4 application/Debug/obj/atcmd_lwip.o + 0x100082c4 delete_node + .text.socket_close_all + 0x10008378 0x1c application/Debug/obj/atcmd_lwip.o + 0x10008378 socket_close_all + .text.fATPC 0x10008394 0x1ec application/Debug/obj/atcmd_lwip.o + 0x10008394 fATPC + .text.fATPS 0x10008580 0x150 application/Debug/obj/atcmd_lwip.o + 0x10008580 fATPS + .text.hang_node + 0x100086d0 0x8c application/Debug/obj/atcmd_lwip.o + 0x100086d0 hang_node + .text.client_start_task + 0x1000875c 0x228 application/Debug/obj/atcmd_lwip.o + .text.hang_seednode + 0x10008984 0x6c application/Debug/obj/atcmd_lwip.o + 0x10008984 hang_seednode + .text.server_start_task + 0x100089f0 0x328 application/Debug/obj/atcmd_lwip.o + .text.seek_node + 0x10008d18 0x30 application/Debug/obj/atcmd_lwip.o + 0x10008d18 seek_node + .text.fATPT 0x10008d48 0x174 application/Debug/obj/atcmd_lwip.o + 0x10008d48 fATPT + .text.fATPP 0x10008ebc 0x1b4 application/Debug/obj/atcmd_lwip.o + 0x10008ebc fATPP + .text.fATPD 0x10009070 0xb0 application/Debug/obj/atcmd_lwip.o + 0x10009070 fATPD + .text.tryget_node + 0x10009120 0x40 application/Debug/obj/atcmd_lwip.o + 0x10009120 tryget_node + .text.atcmd_lwip_receive_data + 0x10009160 0x1d0 application/Debug/obj/atcmd_lwip.o + 0x10009160 atcmd_lwip_receive_data + .text.fATPR 0x10009330 0x228 application/Debug/obj/atcmd_lwip.o + 0x10009330 fATPR + .text.atcmd_lwip_receive_task + 0x10009558 0x200 application/Debug/obj/atcmd_lwip.o + .text.atcmd_lwip_start_autorecv_task + 0x10009758 0x68 application/Debug/obj/atcmd_lwip.o + 0x10009758 atcmd_lwip_start_autorecv_task + .text.fATPK 0x100097c0 0x108 application/Debug/obj/atcmd_lwip.o + 0x100097c0 fATPK + .text.atcmd_lwip_is_tt_mode + 0x100098c8 0x10 application/Debug/obj/atcmd_lwip.o + 0x100098c8 atcmd_lwip_is_tt_mode + .text.atcmd_lwip_start_tt_task + 0x100098d8 0x98 application/Debug/obj/atcmd_lwip.o + 0x100098d8 atcmd_lwip_start_tt_task + .text.fATPU 0x10009970 0x140 application/Debug/obj/atcmd_lwip.o + 0x10009970 fATPU + .text.atcmd_lwip_write_info_to_flash + 0x10009ab0 0xec application/Debug/obj/atcmd_lwip.o + 0x10009ab0 atcmd_lwip_write_info_to_flash + .text.fATPL 0x10009b9c 0xdc application/Debug/obj/atcmd_lwip.o + 0x10009b9c fATPL + .text.atcmd_lwip_auto_connect + 0x10009c78 0x234 application/Debug/obj/atcmd_lwip.o + 0x10009c78 atcmd_lwip_auto_connect + .text.atcmd_lwip_restore_from_flash + 0x10009eac 0x1c application/Debug/obj/atcmd_lwip.o + 0x10009eac atcmd_lwip_restore_from_flash + .text.print_tcpip_at + 0x10009ec8 0x30 application/Debug/obj/atcmd_lwip.o + 0x10009ec8 print_tcpip_at + .text.at_transport_init + 0x10009ef8 0x28 application/Debug/obj/atcmd_lwip.o + 0x10009ef8 at_transport_init + .text.fATS0 0x10009f20 0x24 application/Debug/obj/atcmd_sys.o + 0x10009f20 fATS0 + .text.fATSR 0x10009f44 0x28 application/Debug/obj/atcmd_sys.o + 0x10009f44 fATSR + .text.fATSV 0x10009f6c 0x4c application/Debug/obj/atcmd_sys.o + 0x10009f6c fATSV + .text.fATSP 0x10009fb8 0xf0 application/Debug/obj/atcmd_sys.o + 0x10009fb8 fATSP + .text.fATSL 0x1000a0a8 0x140 application/Debug/obj/atcmd_sys.o + 0x1000a0a8 fATSL + .text.fATSE 0x1000a1e8 0xf8 application/Debug/obj/atcmd_sys.o + 0x1000a1e8 fATSE + .text.fATSY 0x1000a2e0 0x30 application/Debug/obj/atcmd_sys.o + 0x1000a2e0 fATSY + .text.fATSC 0x1000a310 0xb4 application/Debug/obj/atcmd_sys.o + 0x1000a310 fATSC + .text.fATSO 0x1000a3c4 0xb8 application/Debug/obj/atcmd_sys.o + 0x1000a3c4 fATSO + .text.fATSU 0x1000a47c 0x15c application/Debug/obj/atcmd_sys.o + 0x1000a47c fATSU + .text.fATSG 0x1000a5d8 0x1bc application/Debug/obj/atcmd_sys.o + 0x1000a5d8 fATSG + .text.print_system_at + 0x1000a794 0x30 application/Debug/obj/atcmd_sys.o + 0x1000a794 print_system_at + .text.fATSh 0x1000a7c4 0x90 application/Debug/obj/atcmd_sys.o + 0x1000a7c4 fATSh + .text.at_sys_init + 0x1000a854 0xc application/Debug/obj/atcmd_sys.o + 0x1000a854 at_sys_init + .text.init_wifi_struct + 0x1000a860 0x58 application/Debug/obj/atcmd_wifi.o + .text.fATWD 0x1000a8b8 0xc8 application/Debug/obj/atcmd_wifi.o + 0x1000a8b8 fATWD + .text.fATWQ 0x1000a980 0x3c application/Debug/obj/atcmd_wifi.o + 0x1000a980 fATWQ + .text.fATPH 0x1000a9bc 0xc0 application/Debug/obj/atcmd_wifi.o + 0x1000a9bc fATPH + .text.fATPW 0x1000aa7c 0xac application/Debug/obj/atcmd_wifi.o + 0x1000aa7c fATPW + .text.fATWS 0x1000ab28 0x13c application/Debug/obj/atcmd_wifi.o + 0x1000ab28 fATWS + .text.fATWx 0x1000ac64 0x25c application/Debug/obj/atcmd_wifi.o + 0x1000ac64 fATWx + .text.fATPA 0x1000aec0 0x204 application/Debug/obj/atcmd_wifi.o + 0x1000aec0 fATPA + .text._find_ap_from_scan_buf + 0x1000b0c4 0x78 application/Debug/obj/atcmd_wifi.o + .text.fATPE 0x1000b13c 0x10c application/Debug/obj/atcmd_wifi.o + 0x1000b13c fATPE + .text.fATPF 0x1000b248 0x108 application/Debug/obj/atcmd_wifi.o + 0x1000b248 fATPF + .text.fATPM 0x1000b350 0xa0 application/Debug/obj/atcmd_wifi.o + 0x1000b350 fATPM + .text.app_scan_result_handler + 0x1000b3f0 0x158 application/Debug/obj/atcmd_wifi.o + .text.fATPN 0x1000b548 0x2a0 application/Debug/obj/atcmd_wifi.o + 0x1000b548 fATPN + .text.atcmd_wifi_write_info_to_flash + 0x1000b7e8 0x214 application/Debug/obj/atcmd_wifi.o + 0x1000b7e8 atcmd_wifi_write_info_to_flash + .text.fATPG 0x1000b9fc 0xe0 application/Debug/obj/atcmd_wifi.o + 0x1000b9fc fATPG + .text.atcmd_wifi_restore_from_flash + 0x1000badc 0x1f0 application/Debug/obj/atcmd_wifi.o + 0x1000badc atcmd_wifi_restore_from_flash + .text.print_wlan_help + 0x1000bccc 0xbc application/Debug/obj/atcmd_wifi.o + 0x1000bccc print_wlan_help + .text.print_wifi_at + 0x1000bd88 0x30 application/Debug/obj/atcmd_wifi.o + 0x1000bd88 print_wifi_at + .text.at_wifi_init + 0x1000bdb8 0x18 application/Debug/obj/atcmd_wifi.o + 0x1000bdb8 at_wifi_init + .text.log_service_add_table + 0x1000bdd0 0x60 application/Debug/obj/log_service.o + 0x1000bdd0 log_service_add_table + .text.log_action + 0x1000be30 0x5c application/Debug/obj/log_service.o + 0x1000be30 log_action + .text.log_handler + 0x1000be8c 0x70 application/Debug/obj/log_service.o + 0x1000be8c log_handler + .text.parse_param + 0x1000befc 0x128 application/Debug/obj/log_service.o + 0x1000befc parse_param + .text.at_set_debug_level + 0x1000c024 0xc application/Debug/obj/log_service.o + 0x1000c024 at_set_debug_level + .text.at_set_debug_mask + 0x1000c030 0xc application/Debug/obj/log_service.o + 0x1000c030 at_set_debug_mask + .text.mp_commnad_handler + 0x1000c03c 0x60 application/Debug/obj/log_service.o + 0x1000c03c mp_commnad_handler + .text.print_help_handler + 0x1000c09c 0x20 application/Debug/obj/log_service.o + 0x1000c09c print_help_handler + .text.log_service + 0x1000c0bc 0x128 application/Debug/obj/log_service.o + 0x1000c0bc log_service + .text.log_service_lock + 0x1000c1e4 0xc application/Debug/obj/log_service.o + 0x1000c1e4 log_service_lock + .text.log_service_unlock + 0x1000c1f0 0xc application/Debug/obj/log_service.o + 0x1000c1f0 log_service_unlock + .text.start_log_service + 0x1000c1fc 0x48 application/Debug/obj/log_service.o + 0x1000c1fc start_log_service + .text.log_service_init + 0x1000c244 0x8c application/Debug/obj/log_service.o + 0x1000c244 log_service_init + .text.console_cmd_exec + 0x1000c2d0 0x68 application/Debug/obj/rtl_consol.o + 0x1000c2d0 console_cmd_exec + .text.console_init + 0x1000c338 0x38 application/Debug/obj/rtl_consol.o + 0x1000c338 console_init + .text.get_eap_phase + 0x1000c370 0xc application/Debug/obj/wifi_eap_config.o + 0x1000c370 get_eap_phase + .text.get_eap_method + 0x1000c37c 0xc application/Debug/obj/wifi_eap_config.o + 0x1000c37c get_eap_method + .text.eap_autoreconnect_hdl + 0x1000c388 0x4 application/Debug/obj/wifi_eap_config.o + 0x1000c388 eap_autoreconnect_hdl + .text.wifi_no_network_hdl + 0x1000c38c 0x18 application/Debug/obj/wifi_conf.o + .text.wifi_ap_sta_assoc_hdl + 0x1000c3a4 0x4 application/Debug/obj/wifi_conf.o + .text.wifi_ap_sta_disassoc_hdl + 0x1000c3a8 0x4 application/Debug/obj/wifi_conf.o + .text.wifi_scan_done_hdl + 0x1000c3ac 0x74 application/Debug/obj/wifi_conf.o + 0x1000c3ac wifi_scan_done_hdl + .text.wifi_handshake_done_hdl + 0x1000c420 0x1c application/Debug/obj/wifi_conf.o + .text.wifi_disconn_hdl + 0x1000c43c 0x74 application/Debug/obj/wifi_conf.o + .text.wifi_connected_hdl + 0x1000c4b0 0x34 application/Debug/obj/wifi_conf.o + .text.wifi_scan_each_report_hdl + 0x1000c4e4 0x178 application/Debug/obj/wifi_conf.o + 0x1000c4e4 wifi_scan_each_report_hdl + .text.wifi_autoreconnect_hdl + 0x1000c65c 0x3c application/Debug/obj/wifi_conf.o + 0x1000c65c wifi_autoreconnect_hdl + .text.wifi_rx_beacon_hdl + 0x1000c698 0x4 application/Debug/obj/wifi_conf.o + 0x1000c698 wifi_rx_beacon_hdl + .text.wifi_connect + 0x1000c69c 0x3ec application/Debug/obj/wifi_conf.o + 0x1000c69c wifi_connect + .text.wifi_autoreconnect_thread + 0x1000ca88 0x8c application/Debug/obj/wifi_conf.o + .text.wifi_connect_bssid + 0x1000cb14 0x31c application/Debug/obj/wifi_conf.o + 0x1000cb14 wifi_connect_bssid + .text.wifi_disconnect + 0x1000ce30 0x50 application/Debug/obj/wifi_conf.o + 0x1000ce30 wifi_disconnect + .text.wifi_is_connected_to_ap + 0x1000ce80 0x4 application/Debug/obj/wifi_conf.o + 0x1000ce80 wifi_is_connected_to_ap + .text.wifi_set_mac_address + 0x1000ce84 0x34 application/Debug/obj/wifi_conf.o + 0x1000ce84 wifi_set_mac_address + .text.wifi_get_associated_client_list + 0x1000ceb8 0x48 application/Debug/obj/wifi_conf.o + 0x1000ceb8 wifi_get_associated_client_list + .text.wifi_set_channel + 0x1000cf00 0xc application/Debug/obj/wifi_conf.o + 0x1000cf00 wifi_set_channel + .text.wifi_on 0x1000cf0c 0xb4 application/Debug/obj/wifi_conf.o + 0x1000cf0c wifi_on + .text.wifi_off + 0x1000cfc0 0x84 application/Debug/obj/wifi_conf.o + 0x1000cfc0 wifi_off + .text.wifi_start_ap + 0x1000d044 0xe4 application/Debug/obj/wifi_conf.o + 0x1000d044 wifi_start_ap + .text.wifi_start_ap_with_hidden_ssid + 0x1000d128 0xf0 application/Debug/obj/wifi_conf.o + 0x1000d128 wifi_start_ap_with_hidden_ssid + .text.wifi_scan + 0x1000d218 0x60 application/Debug/obj/wifi_conf.o + 0x1000d218 wifi_scan + .text.wifi_scan_networks_with_ssid + 0x1000d278 0x1b0 application/Debug/obj/wifi_conf.o + 0x1000d278 wifi_scan_networks_with_ssid + .text.wifi_scan_networks + 0x1000d428 0xbc application/Debug/obj/wifi_conf.o + 0x1000d428 wifi_scan_networks + .text.wifi_set_pscan_chan + 0x1000d4e4 0x24 application/Debug/obj/wifi_conf.o + 0x1000d4e4 wifi_set_pscan_chan + .text.wifi_get_setting + 0x1000d508 0xc8 application/Debug/obj/wifi_conf.o + 0x1000d508 wifi_get_setting + .text.wifi_show_setting + 0x1000d5d0 0x1d0 application/Debug/obj/wifi_conf.o + 0x1000d5d0 wifi_show_setting + .text.wifi_set_promisc + 0x1000d7a0 0x4 application/Debug/obj/wifi_conf.o + 0x1000d7a0 wifi_set_promisc + .text.wifi_enter_promisc_mode + 0x1000d7a4 0x58 application/Debug/obj/wifi_conf.o + 0x1000d7a4 wifi_enter_promisc_mode + .text.wifi_config_autoreconnect + 0x1000d7fc 0x24 application/Debug/obj/wifi_conf.o + 0x1000d7fc wifi_config_autoreconnect + .text.wifi_set_autoreconnect + 0x1000d820 0x24 application/Debug/obj/wifi_conf.o + 0x1000d820 wifi_set_autoreconnect + .text.wifi_init_packet_filter + 0x1000d844 0x4 application/Debug/obj/wifi_conf.o + 0x1000d844 wifi_init_packet_filter + .text.wifi_add_packet_filter + 0x1000d848 0x4 application/Debug/obj/wifi_conf.o + 0x1000d848 wifi_add_packet_filter + .text.wifi_enable_packet_filter + 0x1000d84c 0x4 application/Debug/obj/wifi_conf.o + 0x1000d84c wifi_enable_packet_filter + .text.wifi_disable_packet_filter + 0x1000d850 0x4 application/Debug/obj/wifi_conf.o + 0x1000d850 wifi_disable_packet_filter + .text.wifi_remove_packet_filter + 0x1000d854 0x4 application/Debug/obj/wifi_conf.o + 0x1000d854 wifi_remove_packet_filter + .text.wifi_indication + 0x1000d858 0x38 application/Debug/obj/wifi_ind.o + 0x1000d858 wifi_indication + .text.wifi_reg_event_handler + 0x1000d890 0x54 application/Debug/obj/wifi_ind.o + 0x1000d890 wifi_reg_event_handler + .text.wifi_unreg_event_handler + 0x1000d8e4 0x48 application/Debug/obj/wifi_ind.o + 0x1000d8e4 wifi_unreg_event_handler + .text.init_event_callback_list + 0x1000d92c 0x10 application/Debug/obj/wifi_ind.o + 0x1000d92c init_event_callback_list + .text.promisc_deinit + 0x1000d93c 0x4 application/Debug/obj/wifi_promisc.o + 0x1000d93c promisc_deinit + .text.promisc_recv_func + 0x1000d940 0x4 application/Debug/obj/wifi_promisc.o + 0x1000d940 promisc_recv_func + .text.promisc_set + 0x1000d944 0x4 application/Debug/obj/wifi_promisc.o + 0x1000d944 promisc_set + .text.is_promisc_enabled + 0x1000d948 0xc application/Debug/obj/wifi_promisc.o + 0x1000d948 is_promisc_enabled + .text.promisc_get_fixed_channel + 0x1000d954 0x4 application/Debug/obj/wifi_promisc.o + 0x1000d954 promisc_get_fixed_channel + .text.promisc_init_packet_filter + 0x1000d958 0x3c application/Debug/obj/wifi_promisc.o + 0x1000d958 promisc_init_packet_filter + .text.promisc_add_packet_filter + 0x1000d994 0x80 application/Debug/obj/wifi_promisc.o + 0x1000d994 promisc_add_packet_filter + .text.promisc_enable_packet_filter + 0x1000da14 0x44 application/Debug/obj/wifi_promisc.o + 0x1000da14 promisc_enable_packet_filter + .text.promisc_disable_packet_filter + 0x1000da58 0x44 application/Debug/obj/wifi_promisc.o + 0x1000da58 promisc_disable_packet_filter + .text.promisc_remove_packet_filter + 0x1000da9c 0x6c application/Debug/obj/wifi_promisc.o + 0x1000da9c promisc_remove_packet_filter + .text.simple_config_callback + 0x1000db08 0x4c application/Debug/obj/wifi_simple_config.o + 0x1000db08 simple_config_callback + .text.SC_set_ack_content + 0x1000db54 0x50 application/Debug/obj/wifi_simple_config.o + 0x1000db54 SC_set_ack_content + .text.SC_send_simple_config_ack + 0x1000dba4 0xa0 application/Debug/obj/wifi_simple_config.o + 0x1000dba4 SC_send_simple_config_ack + .text.get_connection_info_from_profile + 0x1000dc44 0x330 application/Debug/obj/wifi_simple_config.o + 0x1000dc44 get_connection_info_from_profile + .text.SC_translate_iw_security_mode + 0x1000df74 0x28 application/Debug/obj/wifi_simple_config.o + 0x1000df74 SC_translate_iw_security_mode + .text.SC_parse_scan_result_and_connect + 0x1000df9c 0x16c application/Debug/obj/wifi_simple_config.o + 0x1000df9c SC_parse_scan_result_and_connect + .text.SC_connect_to_candidate_AP + 0x1000e108 0xa0 application/Debug/obj/wifi_simple_config.o + 0x1000e108 SC_connect_to_candidate_AP + .text.SC_translate_security + 0x1000e1a8 0x38 application/Debug/obj/wifi_simple_config.o + 0x1000e1a8 SC_translate_security + .text.SC_connect_to_AP + 0x1000e1e0 0x108 application/Debug/obj/wifi_simple_config.o + 0x1000e1e0 SC_connect_to_AP + .text.init_test_data + 0x1000e2e8 0x148 application/Debug/obj/wifi_simple_config.o + 0x1000e2e8 init_test_data + .text.deinit_test_data + 0x1000e430 0x38 application/Debug/obj/wifi_simple_config.o + 0x1000e430 deinit_test_data + .text.simple_config_test + 0x1000e468 0x210 application/Debug/obj/wifi_simple_config.o + 0x1000e468 simple_config_test + .text.filter_add_enable + 0x1000e678 0x78 application/Debug/obj/wifi_simple_config.o + 0x1000e678 filter_add_enable + .text.remove_filter + 0x1000e6f0 0x20 application/Debug/obj/wifi_simple_config.o + 0x1000e6f0 remove_filter + .text.print_simple_config_result + 0x1000e710 0xa0 application/Debug/obj/wifi_simple_config.o + 0x1000e710 print_simple_config_result + .text.cmd_simple_config + 0x1000e7b0 0x9c application/Debug/obj/wifi_simple_config.o + 0x1000e7b0 cmd_simple_config + .text.wext_get_ssid + 0x1000e84c 0x6c application/Debug/obj/wifi_util.o + 0x1000e84c wext_get_ssid + .text.wext_set_ssid + 0x1000e8b8 0x54 application/Debug/obj/wifi_util.o + 0x1000e8b8 wext_set_ssid + .text.wext_set_bssid + 0x1000e90c 0x6c application/Debug/obj/wifi_util.o + 0x1000e90c wext_set_bssid + .text.wext_set_auth_param + 0x1000e978 0x50 application/Debug/obj/wifi_util.o + 0x1000e978 wext_set_auth_param + .text.wext_set_key_ext + 0x1000e9c8 0x138 application/Debug/obj/wifi_util.o + 0x1000e9c8 wext_set_key_ext + .text.wext_get_enc_ext + 0x1000eb00 0x7c application/Debug/obj/wifi_util.o + 0x1000eb00 wext_get_enc_ext + .text.wext_set_passphrase + 0x1000eb7c 0x54 application/Debug/obj/wifi_util.o + 0x1000eb7c wext_set_passphrase + .text.wext_get_passphrase + 0x1000ebd0 0x48 application/Debug/obj/wifi_util.o + 0x1000ebd0 wext_get_passphrase + .text.wext_set_mode + 0x1000ec18 0x44 application/Debug/obj/wifi_util.o + 0x1000ec18 wext_set_mode + .text.wext_get_mode + 0x1000ec5c 0x44 application/Debug/obj/wifi_util.o + 0x1000ec5c wext_get_mode + .text.wext_set_ap_ssid + 0x1000eca0 0x54 application/Debug/obj/wifi_util.o + 0x1000eca0 wext_set_ap_ssid + .text.wext_set_pscan_channel + 0x1000ecf4 0xa4 application/Debug/obj/wifi_util.o + 0x1000ecf4 wext_set_pscan_channel + .text.wext_set_channel + 0x1000ed98 0x50 application/Debug/obj/wifi_util.o + 0x1000ed98 wext_set_channel + .text.wext_get_channel + 0x1000ede8 0x48 application/Debug/obj/wifi_util.o + 0x1000ede8 wext_get_channel + .text.wext_set_scan + 0x1000ee30 0x50 application/Debug/obj/wifi_util.o + 0x1000ee30 wext_set_scan + .text.wext_get_scan + 0x1000ee80 0x3c application/Debug/obj/wifi_util.o + 0x1000ee80 wext_get_scan + .text.wext_private_command + 0x1000eebc 0x140 application/Debug/obj/wifi_util.o + 0x1000eebc wext_private_command + .text.wext_wlan_indicate + 0x1000effc 0x17c application/Debug/obj/wifi_util.o + 0x1000effc wext_wlan_indicate + .text.wext_set_autoreconnect + 0x1000f178 0x7c application/Debug/obj/wifi_util.o + 0x1000f178 wext_set_autoreconnect + .text.wext_set_adaptivity + 0x1000f1f4 0x38 application/Debug/obj/wifi_util.o + 0x1000f1f4 wext_set_adaptivity + .text.wext_set_sta_num + 0x1000f22c 0x4 application/Debug/obj/wifi_util.o + 0x1000f22c wext_set_sta_num + .text.LwIP_Init + 0x1000f230 0x180 application/Debug/obj/lwip_netconf.o + 0x1000f230 LwIP_Init + .text.LwIP_DHCP + 0x1000f3b0 0x1b8 application/Debug/obj/lwip_netconf.o + 0x1000f3b0 LwIP_DHCP + .text.LwIP_GetMAC + 0x1000f568 0x4 application/Debug/obj/lwip_netconf.o + 0x1000f568 LwIP_GetMAC + .text.LwIP_GetIP + 0x1000f56c 0x4 application/Debug/obj/lwip_netconf.o + 0x1000f56c LwIP_GetIP + .text.LwIP_GetGW + 0x1000f570 0x4 application/Debug/obj/lwip_netconf.o + 0x1000f570 LwIP_GetGW + .text.LwIP_UseStaticIP + 0x1000f574 0xe0 application/Debug/obj/lwip_netconf.o + 0x1000f574 LwIP_UseStaticIP + .text.LwIP_AUTOIP + 0x1000f654 0xd4 application/Debug/obj/lwip_netconf.o + 0x1000f654 LwIP_AUTOIP + .text.ping_test + 0x1000f728 0x228 application/Debug/obj/ping_test.o + 0x1000f728 ping_test + .text.do_ping_call + 0x1000f950 0x5c application/Debug/obj/ping_test.o + 0x1000f950 do_ping_call + .text.ota_platform_reset + 0x1000f9ac 0x34 application/Debug/obj/update.o + 0x1000f9ac ota_platform_reset + .text.write_ota_addr_to_system_data + 0x1000f9e0 0xc4 application/Debug/obj/update.o + 0x1000f9e0 write_ota_addr_to_system_data + .text.update_ota_local_task + 0x1000faa4 0x4e0 application/Debug/obj/update.o + .text.update_ota_local + 0x1000ff84 0xa0 application/Debug/obj/update.o + 0x1000ff84 update_ota_local + .text.cmd_update + 0x10010024 0x34 application/Debug/obj/update.o + 0x10010024 cmd_update + .text.cmd_ota_image + 0x10010058 0xa0 application/Debug/obj/update.o + 0x10010058 cmd_ota_image + .text.init_thread + 0x100100f8 0x34 application/Debug/obj/wlan_network.o + 0x100100f8 init_thread + .text.wlan_network + 0x1001012c 0x44 application/Debug/obj/wlan_network.o + 0x1001012c wlan_network + .text.netconn_recv_data + 0x10010170 0xe0 application/Debug/obj/api_lib.o + .text.netconn_new_with_proto_and_callback + 0x10010250 0x64 application/Debug/obj/api_lib.o + 0x10010250 netconn_new_with_proto_and_callback + .text.netconn_delete + 0x100102b4 0x24 application/Debug/obj/api_lib.o + 0x100102b4 netconn_delete + .text.netconn_getaddr + 0x100102d8 0x44 application/Debug/obj/api_lib.o + 0x100102d8 netconn_getaddr + .text.netconn_bind + 0x1001031c 0x40 application/Debug/obj/api_lib.o + 0x1001031c netconn_bind + .text.netconn_connect + 0x1001035c 0x40 application/Debug/obj/api_lib.o + 0x1001035c netconn_connect + .text.netconn_listen_with_backlog + 0x1001039c 0x38 application/Debug/obj/api_lib.o + 0x1001039c netconn_listen_with_backlog + .text.netconn_accept + 0x100103d4 0x88 application/Debug/obj/api_lib.o + 0x100103d4 netconn_accept + .text.netconn_recv_tcp_pbuf + 0x1001045c 0x14 application/Debug/obj/api_lib.o + 0x1001045c netconn_recv_tcp_pbuf + .text.netconn_recv + 0x10010470 0x88 application/Debug/obj/api_lib.o + 0x10010470 netconn_recv + .text.netconn_recved + 0x100104f8 0x34 application/Debug/obj/api_lib.o + 0x100104f8 netconn_recved + .text.netconn_send + 0x1001052c 0x3c application/Debug/obj/api_lib.o + 0x1001052c netconn_send + .text.netconn_write_partly + 0x10010568 0x94 application/Debug/obj/api_lib.o + 0x10010568 netconn_write_partly + .text.netconn_gethostbyname + 0x100105fc 0x54 application/Debug/obj/api_lib.o + 0x100105fc netconn_gethostbyname + .text.recv_udp + 0x10010650 0x70 application/Debug/obj/api_msg.o + .text.recv_raw + 0x100106c0 0x88 application/Debug/obj/api_msg.o + .text.setup_tcp + 0x10010748 0x44 application/Debug/obj/api_msg.o + .text.err_tcp 0x1001078c 0xa0 application/Debug/obj/api_msg.o + .text.do_connected + 0x1001082c 0x78 application/Debug/obj/api_msg.o + .text.do_writemore + 0x100108a4 0x128 application/Debug/obj/api_msg.o + .text.do_close_internal + 0x100109cc 0x108 application/Debug/obj/api_msg.o + .text.poll_tcp + 0x10010ad4 0x54 application/Debug/obj/api_msg.o + .text.do_dns_found + 0x10010b28 0x38 application/Debug/obj/api_msg.o + .text.sent_tcp + 0x10010b60 0x50 application/Debug/obj/api_msg.o + .text.recv_tcp + 0x10010bb0 0x84 application/Debug/obj/api_msg.o + .text.do_newconn + 0x10010c34 0x98 application/Debug/obj/api_msg.o + 0x10010c34 do_newconn + .text.netconn_alloc + 0x10010ccc 0x68 application/Debug/obj/api_msg.o + 0x10010ccc netconn_alloc + .text.netconn_free + 0x10010d34 0x30 application/Debug/obj/api_msg.o + 0x10010d34 netconn_free + .text.netconn_drain + 0x10010d64 0x9c application/Debug/obj/api_msg.o + .text.accept_function + 0x10010e00 0x9c application/Debug/obj/api_msg.o + .text.do_delconn + 0x10010e9c 0xa8 application/Debug/obj/api_msg.o + 0x10010e9c do_delconn + .text.do_bind 0x10010f44 0x88 application/Debug/obj/api_msg.o + 0x10010f44 do_bind + .text.do_connect + 0x10010fcc 0xcc application/Debug/obj/api_msg.o + 0x10010fcc do_connect + .text.do_listen + 0x10011098 0xb4 application/Debug/obj/api_msg.o + 0x10011098 do_listen + .text.do_send 0x1001114c 0x90 application/Debug/obj/api_msg.o + 0x1001114c do_send + .text.do_recv 0x100111dc 0x4c application/Debug/obj/api_msg.o + 0x100111dc do_recv + .text.do_write + 0x10011228 0x40 application/Debug/obj/api_msg.o + 0x10011228 do_write + .text.do_getaddr + 0x10011268 0xa0 application/Debug/obj/api_msg.o + 0x10011268 do_getaddr + .text.do_gethostbyname + 0x10011308 0x2c application/Debug/obj/api_msg.o + 0x10011308 do_gethostbyname + .text.netbuf_delete + 0x10011334 0x24 application/Debug/obj/netbuf.o + 0x10011334 netbuf_delete + .text.netbuf_free + 0x10011358 0x18 application/Debug/obj/netbuf.o + 0x10011358 netbuf_free + .text.netbuf_ref + 0x10011370 0x3c application/Debug/obj/netbuf.o + 0x10011370 netbuf_ref + .text.lwip_gethostbyname + 0x100113ac 0x54 application/Debug/obj/netdb.o + 0x100113ac lwip_gethostbyname + .text.alloc_socket + 0x10011400 0x7c application/Debug/obj/sockets.o + .text.lwip_selscan + 0x1001147c 0x178 application/Debug/obj/sockets.o + .text.event_callback + 0x100115f4 0x120 application/Debug/obj/sockets.o + .text.lwip_setsockopt_internal + 0x10011714 0x1bc application/Debug/obj/sockets.o + .text.lwip_socket_init + 0x100118d0 0x4 application/Debug/obj/sockets.o + 0x100118d0 lwip_socket_init + .text.lwip_accept + 0x100118d4 0x158 application/Debug/obj/sockets.o + 0x100118d4 lwip_accept + .text.lwip_bind + 0x10011a2c 0x90 application/Debug/obj/sockets.o + 0x10011a2c lwip_bind + .text.lwip_close + 0x10011abc 0x78 application/Debug/obj/sockets.o + 0x10011abc lwip_close + .text.lwip_connect + 0x10011b34 0x90 application/Debug/obj/sockets.o + 0x10011b34 lwip_connect + .text.lwip_listen + 0x10011bc4 0x7c application/Debug/obj/sockets.o + 0x10011bc4 lwip_listen + .text.lwip_recvfrom + 0x10011c40 0x220 application/Debug/obj/sockets.o + 0x10011c40 lwip_recvfrom + .text.lwip_read + 0x10011e60 0x14 application/Debug/obj/sockets.o + 0x10011e60 lwip_read + .text.lwip_sendto + 0x10011e74 0xec application/Debug/obj/sockets.o + 0x10011e74 lwip_sendto + .text.lwip_send + 0x10011f60 0x94 application/Debug/obj/sockets.o + 0x10011f60 lwip_send + .text.lwip_socket + 0x10011ff4 0x98 application/Debug/obj/sockets.o + 0x10011ff4 lwip_socket + .text.lwip_write + 0x1001208c 0x8 application/Debug/obj/sockets.o + 0x1001208c lwip_write + .text.lwip_select + 0x10012094 0x2bc application/Debug/obj/sockets.o + 0x10012094 lwip_select + .text.lwip_setsockopt + 0x10012350 0x198 application/Debug/obj/sockets.o + 0x10012350 lwip_setsockopt + .text.tcpip_thread + 0x100124e8 0xa4 application/Debug/obj/tcpip.o + .text.tcpip_input + 0x1001258c 0x48 application/Debug/obj/tcpip.o + 0x1001258c tcpip_input + .text.tcpip_callback_with_block + 0x100125d4 0x58 application/Debug/obj/tcpip.o + 0x100125d4 tcpip_callback_with_block + .text.tcpip_timeout + 0x1001262c 0x3c application/Debug/obj/tcpip.o + 0x1001262c tcpip_timeout + .text.tcpip_apimsg + 0x10012668 0x58 application/Debug/obj/tcpip.o + 0x10012668 tcpip_apimsg + .text.tcpip_init + 0x100126c0 0x48 application/Debug/obj/tcpip.o + 0x100126c0 tcpip_init + .text.autoip_start_probing + 0x10012708 0x5c application/Debug/obj/autoip.o + .text.autoip_arp_announce + 0x10012764 0x2c application/Debug/obj/autoip.o + .text.autoip_start + 0x10012790 0xa0 application/Debug/obj/autoip.o + 0x10012790 autoip_start + .text.autoip_tmr + 0x10012830 0x128 application/Debug/obj/autoip.o + 0x10012830 autoip_tmr + .text.autoip_arp_reply + 0x10012958 0xa0 application/Debug/obj/autoip.o + 0x10012958 autoip_arp_reply + .text.icmp_send_response.isra.0 + 0x100129f8 0x70 application/Debug/obj/icmp.o + .text.icmp_input + 0x10012a68 0x124 application/Debug/obj/icmp.o + 0x10012a68 icmp_input + .text.icmp_dest_unreach + 0x10012b8c 0xc application/Debug/obj/icmp.o + 0x10012b8c icmp_dest_unreach + .text.icmp_time_exceeded + 0x10012b98 0xc application/Debug/obj/icmp.o + 0x10012b98 icmp_time_exceeded + .text.igmp_send + 0x10012ba4 0xa4 application/Debug/obj/igmp.o + .text.igmp_delaying_member + 0x10012c48 0x38 application/Debug/obj/igmp.o + .text.igmp_lookup_group + 0x10012c80 0x4c application/Debug/obj/igmp.o + .text.igmp_init + 0x10012ccc 0x20 application/Debug/obj/igmp.o + 0x10012ccc igmp_init + .text.igmp_start + 0x10012cec 0x38 application/Debug/obj/igmp.o + 0x10012cec igmp_start + .text.igmp_report_groups + 0x10012d24 0x28 application/Debug/obj/igmp.o + 0x10012d24 igmp_report_groups + .text.igmp_lookfor_group + 0x10012d4c 0x24 application/Debug/obj/igmp.o + 0x10012d4c igmp_lookfor_group + .text.igmp_input + 0x10012d70 0xf0 application/Debug/obj/igmp.o + 0x10012d70 igmp_input + .text.igmp_joingroup + 0x10012e60 0xbc application/Debug/obj/igmp.o + 0x10012e60 igmp_joingroup + .text.igmp_leavegroup + 0x10012f1c 0xe8 application/Debug/obj/igmp.o + 0x10012f1c igmp_leavegroup + .text.igmp_tmr + 0x10013004 0x30 application/Debug/obj/igmp.o + 0x10013004 igmp_tmr + .text.lwip_standard_chksum + 0x10013034 0x78 application/Debug/obj/inet_chksum.o + .text.inet_chksum_pseudo + 0x100130ac 0x90 application/Debug/obj/inet_chksum.o + 0x100130ac inet_chksum_pseudo + .text.inet_chksum + 0x1001313c 0xc application/Debug/obj/inet_chksum.o + 0x1001313c inet_chksum + .text.inet_chksum_pbuf + 0x10013148 0x54 application/Debug/obj/inet_chksum.o + 0x10013148 inet_chksum_pbuf + .text.ip_route + 0x1001319c 0x48 application/Debug/obj/ip.o + 0x1001319c ip_route + .text.ip_input + 0x100131e4 0x1cc application/Debug/obj/ip.o + 0x100131e4 ip_input + .text.ip_output_if_opt + 0x100133b0 0x1a0 application/Debug/obj/ip.o + 0x100133b0 ip_output_if_opt + .text.ip_output_if + 0x10013550 0x24 application/Debug/obj/ip.o + 0x10013550 ip_output_if + .text.ip_output + 0x10013574 0x44 application/Debug/obj/ip.o + 0x10013574 ip_output + .text.ip4_addr_isbroadcast + 0x100135b8 0x38 application/Debug/obj/ip_addr.o + 0x100135b8 ip4_addr_isbroadcast + .text.ipaddr_aton + 0x100135f0 0x13c application/Debug/obj/ip_addr.o + 0x100135f0 ipaddr_aton + .text.ipaddr_addr + 0x1001372c 0x20 application/Debug/obj/ip_addr.o + 0x1001372c ipaddr_addr + .text.ipaddr_ntoa_r + 0x1001374c 0xc0 application/Debug/obj/ip_addr.o + 0x1001374c ipaddr_ntoa_r + .text.ipaddr_ntoa + 0x1001380c 0xc application/Debug/obj/ip_addr.o + 0x1001380c ipaddr_ntoa + .text.ipfrag_free_pbuf_custom + 0x10013818 0x18 application/Debug/obj/ip_frag.o + .text.ip_reass_free_complete_datagram + 0x10013830 0x8c application/Debug/obj/ip_frag.o + .text.ip_reass_remove_oldest_datagram + 0x100138bc 0x78 application/Debug/obj/ip_frag.o + .text.ip_reass_tmr + 0x10013934 0x30 application/Debug/obj/ip_frag.o + 0x10013934 ip_reass_tmr + .text.ip_reass + 0x10013964 0x2f0 application/Debug/obj/ip_frag.o + 0x10013964 ip_reass + .text.ip_frag 0x10013c54 0x1b8 application/Debug/obj/ip_frag.o + 0x10013c54 ip_frag + .text.lwip_htons + 0x10013e0c 0x8 application/Debug/obj/def.o + 0x10013e0c lwip_htons + .text.lwip_ntohs + 0x10013e14 0x8 application/Debug/obj/def.o + 0x10013e14 lwip_ntohs + .text.lwip_htonl + 0x10013e1c 0x4 application/Debug/obj/def.o + 0x10013e1c lwip_htonl + .text.lwip_ntohl + 0x10013e20 0x4 application/Debug/obj/def.o + 0x10013e20 lwip_ntohl + .text.dhcp_option_trailer + 0x10013e24 0x34 application/Debug/obj/dhcp.o + .text.dhcp_create_msg + 0x10013e58 0x174 application/Debug/obj/dhcp.o + .text.dhcp_delete_msg + 0x10013fcc 0x18 application/Debug/obj/dhcp.o + .text.dhcp_discover + 0x10013fe4 0x130 application/Debug/obj/dhcp.o + .text.dhcp_rebind + 0x10014114 0xcc application/Debug/obj/dhcp.o + .text.dhcp_check + 0x100141e0 0x2c application/Debug/obj/dhcp.o + .text.dhcp_bind + 0x1001420c 0xfc application/Debug/obj/dhcp.o + .text.dhcp_option_long.isra.3 + 0x10014308 0x48 application/Debug/obj/dhcp.o + .text.dhcp_select + 0x10014350 0x198 application/Debug/obj/dhcp.o + .text.dhcp_reboot + 0x100144e8 0x100 application/Debug/obj/dhcp.o + .text.dhcp_recv + 0x100145e8 0x458 application/Debug/obj/dhcp.o + .text.dhcp_arp_reply + 0x10014a40 0xa0 application/Debug/obj/dhcp.o + 0x10014a40 dhcp_arp_reply + .text.dhcp_renew + 0x10014ae0 0xcc application/Debug/obj/dhcp.o + 0x10014ae0 dhcp_renew + .text.dhcp_release + 0x10014bac 0xb4 application/Debug/obj/dhcp.o + 0x10014bac dhcp_release + .text.dhcp_coarse_tmr + 0x10014c60 0x8c application/Debug/obj/dhcp.o + 0x10014c60 dhcp_coarse_tmr + .text.dhcp_fine_tmr + 0x10014cec 0xa0 application/Debug/obj/dhcp.o + 0x10014cec dhcp_fine_tmr + .text.dhcp_release_unicast + 0x10014d8c 0x110 application/Debug/obj/dhcp.o + 0x10014d8c dhcp_release_unicast + .text.dhcp_stop + 0x10014e9c 0x30 application/Debug/obj/dhcp.o + 0x10014e9c dhcp_stop + .text.dhcp_start + 0x10014ecc 0xa4 application/Debug/obj/dhcp.o + 0x10014ecc dhcp_start + .text.dns_recv + 0x10014f70 0x1c0 application/Debug/obj/dns.o + .text.dns_send + 0x10015130 0x108 application/Debug/obj/dns.o + .text.dns_check_entry + 0x10015238 0xb4 application/Debug/obj/dns.o + .text.dns_init + 0x100152ec 0x64 application/Debug/obj/dns.o + 0x100152ec dns_init + .text.dns_setserver + 0x10015350 0x28 application/Debug/obj/dns.o + 0x10015350 dns_setserver + .text.dns_tmr 0x10015378 0x2c application/Debug/obj/dns.o + 0x10015378 dns_tmr + .text.dns_gethostbyname + 0x100153a4 0x138 application/Debug/obj/dns.o + 0x100153a4 dns_gethostbyname + .text.lwip_init + 0x100154dc 0x30 application/Debug/obj/init.o + 0x100154dc lwip_init + .text.sys_timeout + 0x1001550c 0x70 application/Debug/obj/lwip_timers.o + 0x1001550c sys_timeout + .text.tcp_timer_needed + 0x1001557c 0x40 application/Debug/obj/lwip_timers.o + 0x1001557c tcp_timer_needed + .text.tcpip_tcp_timer + 0x100155bc 0x38 application/Debug/obj/lwip_timers.o + .text.sys_timeouts_init + 0x100155f4 0x74 application/Debug/obj/lwip_timers.o + 0x100155f4 sys_timeouts_init + .text.dns_timer + 0x10015668 0x1c application/Debug/obj/lwip_timers.o + .text.igmp_timer + 0x10015684 0x18 application/Debug/obj/lwip_timers.o + .text.autoip_timer + 0x1001569c 0x18 application/Debug/obj/lwip_timers.o + .text.dhcp_timer_fine + 0x100156b4 0x1c application/Debug/obj/lwip_timers.o + .text.dhcp_timer_coarse + 0x100156d0 0x1c application/Debug/obj/lwip_timers.o + .text.arp_timer + 0x100156ec 0x1c application/Debug/obj/lwip_timers.o + .text.ip_reass_timer + 0x10015708 0x1c application/Debug/obj/lwip_timers.o + .text.sys_untimeout + 0x10015724 0x48 application/Debug/obj/lwip_timers.o + 0x10015724 sys_untimeout + .text.sys_timeouts_mbox_fetch + 0x1001576c 0x70 application/Debug/obj/lwip_timers.o + 0x1001576c sys_timeouts_mbox_fetch + .text.mem_init + 0x100157dc 0x58 application/Debug/obj/mem.o + 0x100157dc mem_init + .text.mem_free + 0x10015834 0xb8 application/Debug/obj/mem.o + 0x10015834 mem_free + .text.mem_trim + 0x100158ec 0x104 application/Debug/obj/mem.o + 0x100158ec mem_trim + .text.mem_malloc + 0x100159f0 0xf8 application/Debug/obj/mem.o + 0x100159f0 mem_malloc + .text.memp_init + 0x10015ae8 0x78 application/Debug/obj/memp.o + 0x10015ae8 memp_init + .text.memp_malloc + 0x10015b60 0x2c application/Debug/obj/memp.o + 0x10015b60 memp_malloc + .text.memp_free + 0x10015b8c 0x28 application/Debug/obj/memp.o + 0x10015b8c memp_free + .text.netif_init + 0x10015bb4 0x4 application/Debug/obj/netif.o + 0x10015bb4 netif_init + .text.netif_set_ipaddr + 0x10015bb8 0x70 application/Debug/obj/netif.o + 0x10015bb8 netif_set_ipaddr + .text.netif_set_addr + 0x10015c28 0x1c application/Debug/obj/netif.o + 0x10015c28 netif_set_addr + .text.netif_add + 0x10015c44 0x78 application/Debug/obj/netif.o + 0x10015c44 netif_add + .text.netif_set_gw + 0x10015cbc 0x8 application/Debug/obj/netif.o + 0x10015cbc netif_set_gw + .text.netif_set_netmask + 0x10015cc4 0x8 application/Debug/obj/netif.o + 0x10015cc4 netif_set_netmask + .text.netif_set_default + 0x10015ccc 0xc application/Debug/obj/netif.o + 0x10015ccc netif_set_default + .text.netif_set_up + 0x10015cd8 0x38 application/Debug/obj/netif.o + 0x10015cd8 netif_set_up + .text.netif_set_down + 0x10015d10 0x1c application/Debug/obj/netif.o + 0x10015d10 netif_set_down + .text.pbuf_free_ooseq_callback + 0x10015d2c 0x38 application/Debug/obj/pbuf.o + .text.pbuf_pool_is_empty + 0x10015d64 0x3c application/Debug/obj/pbuf.o + .text.pbuf_alloced_custom + 0x10015da0 0x5c application/Debug/obj/pbuf.o + 0x10015da0 pbuf_alloced_custom + .text.pbuf_header + 0x10015dfc 0x6c application/Debug/obj/pbuf.o + 0x10015dfc pbuf_header + .text.pbuf_free + 0x10015e68 0x6c application/Debug/obj/pbuf.o + 0x10015e68 pbuf_free + .text.pbuf_alloc + 0x10015ed4 0x12c application/Debug/obj/pbuf.o + 0x10015ed4 pbuf_alloc + .text.pbuf_realloc + 0x10016000 0x54 application/Debug/obj/pbuf.o + 0x10016000 pbuf_realloc + .text.pbuf_clen + 0x10016054 0x14 application/Debug/obj/pbuf.o + 0x10016054 pbuf_clen + .text.pbuf_ref + 0x10016068 0x1c application/Debug/obj/pbuf.o + 0x10016068 pbuf_ref + .text.pbuf_cat + 0x10016084 0x30 application/Debug/obj/pbuf.o + 0x10016084 pbuf_cat + .text.pbuf_chain + 0x100160b4 0x14 application/Debug/obj/pbuf.o + 0x100160b4 pbuf_chain + .text.pbuf_copy + 0x100160c8 0xa0 application/Debug/obj/pbuf.o + 0x100160c8 pbuf_copy + .text.pbuf_copy_partial + 0x10016168 0x70 application/Debug/obj/pbuf.o + 0x10016168 pbuf_copy_partial + .text.pbuf_coalesce + 0x100161d8 0x2c application/Debug/obj/pbuf.o + 0x100161d8 pbuf_coalesce + .text.raw_input + 0x10016204 0x78 application/Debug/obj/raw.o + 0x10016204 raw_input + .text.raw_bind + 0x1001627c 0xc application/Debug/obj/raw.o + 0x1001627c raw_bind + .text.raw_connect + 0x10016288 0xc application/Debug/obj/raw.o + 0x10016288 raw_connect + .text.raw_recv + 0x10016294 0x8 application/Debug/obj/raw.o + 0x10016294 raw_recv + .text.raw_sendto + 0x1001629c 0xac application/Debug/obj/raw.o + 0x1001629c raw_sendto + .text.raw_send + 0x10016348 0x8 application/Debug/obj/raw.o + 0x10016348 raw_send + .text.raw_remove + 0x10016350 0x38 application/Debug/obj/raw.o + 0x10016350 raw_remove + .text.raw_new 0x10016388 0x2c application/Debug/obj/raw.o + 0x10016388 raw_new + .text.tcp_accept_null + 0x100163b4 0x8 application/Debug/obj/tcp.o + .text.tcp_new_port + 0x100163bc 0x58 application/Debug/obj/tcp.o + .text.tcp_init + 0x10016414 0x4 application/Debug/obj/tcp.o + 0x10016414 tcp_init + .text.tcp_bind + 0x10016418 0x9c application/Debug/obj/tcp.o + 0x10016418 tcp_bind + .text.tcp_listen_with_backlog + 0x100164b4 0xcc application/Debug/obj/tcp.o + 0x100164b4 tcp_listen_with_backlog + .text.tcp_update_rcv_ann_wnd + 0x10016580 0x40 application/Debug/obj/tcp.o + 0x10016580 tcp_update_rcv_ann_wnd + .text.tcp_recved + 0x100165c0 0x3c application/Debug/obj/tcp.o + 0x100165c0 tcp_recved + .text.tcp_seg_free + 0x100165fc 0x1c application/Debug/obj/tcp.o + 0x100165fc tcp_seg_free + .text.tcp_segs_free + 0x10016618 0x14 application/Debug/obj/tcp.o + 0x10016618 tcp_segs_free + .text.tcp_seg_copy + 0x1001662c 0x20 application/Debug/obj/tcp.o + 0x1001662c tcp_seg_copy + .text.tcp_arg 0x1001664c 0x4 application/Debug/obj/tcp.o + 0x1001664c tcp_arg + .text.tcp_recv + 0x10016650 0x8 application/Debug/obj/tcp.o + 0x10016650 tcp_recv + .text.tcp_sent + 0x10016658 0x8 application/Debug/obj/tcp.o + 0x10016658 tcp_sent + .text.tcp_err 0x10016660 0x8 application/Debug/obj/tcp.o + 0x10016660 tcp_err + .text.tcp_accept + 0x10016668 0x4 application/Debug/obj/tcp.o + 0x10016668 tcp_accept + .text.tcp_poll + 0x1001666c 0xc application/Debug/obj/tcp.o + 0x1001666c tcp_poll + .text.tcp_pcb_purge + 0x10016678 0x68 application/Debug/obj/tcp.o + 0x10016678 tcp_pcb_purge + .text.tcp_slowtmr + 0x100166e0 0x350 application/Debug/obj/tcp.o + 0x100166e0 tcp_slowtmr + .text.tcp_pcb_remove + 0x10016a30 0x74 application/Debug/obj/tcp.o + 0x10016a30 tcp_pcb_remove + .text.tcp_close_shutdown + 0x10016aa4 0x174 application/Debug/obj/tcp.o + .text.tcp_close + 0x10016c18 0x18 application/Debug/obj/tcp.o + 0x10016c18 tcp_close + .text.tcp_recv_null + 0x10016c30 0x28 application/Debug/obj/tcp.o + 0x10016c30 tcp_recv_null + .text.tcp_process_refused_data + 0x10016c58 0x64 application/Debug/obj/tcp.o + 0x10016c58 tcp_process_refused_data + .text.tcp_fasttmr + 0x10016cbc 0x78 application/Debug/obj/tcp.o + 0x10016cbc tcp_fasttmr + .text.tcp_tmr 0x10016d34 0x24 application/Debug/obj/tcp.o + 0x10016d34 tcp_tmr + .text.tcp_shutdown + 0x10016d58 0x58 application/Debug/obj/tcp.o + 0x10016d58 tcp_shutdown + .text.tcp_abandon + 0x10016db0 0xb8 application/Debug/obj/tcp.o + 0x10016db0 tcp_abandon + .text.tcp_abort + 0x10016e68 0x8 application/Debug/obj/tcp.o + 0x10016e68 tcp_abort + .text.tcp_alloc + 0x10016e70 0x13c application/Debug/obj/tcp.o + 0x10016e70 tcp_alloc + .text.tcp_new 0x10016fac 0x8 application/Debug/obj/tcp.o + 0x10016fac tcp_new + .text.tcp_eff_send_mss + 0x10016fb4 0x20 application/Debug/obj/tcp.o + 0x10016fb4 tcp_eff_send_mss + .text.tcp_connect + 0x10016fd4 0x17c application/Debug/obj/tcp.o + 0x10016fd4 tcp_connect + .text.tcp_oos_insert_segment + 0x10017150 0xa8 application/Debug/obj/tcp_in.o + .text.tcp_receive + 0x100171f8 0x8a0 application/Debug/obj/tcp_in.o + .text.tcp_parseopt.isra.0 + 0x10017a98 0x90 application/Debug/obj/tcp_in.o + .text.tcp_input + 0x10017b28 0x928 application/Debug/obj/tcp_in.o + 0x10017b28 tcp_input + .text.tcp_pbuf_prealloc + 0x10018450 0x5c application/Debug/obj/tcp_out.o + .text.tcp_create_segment.isra.0 + 0x100184ac 0xb0 application/Debug/obj/tcp_out.o + .text.tcp_output_alloc_header.constprop.1 + 0x1001855c 0x70 application/Debug/obj/tcp_out.o + .text.tcp_write + 0x100185cc 0x3a0 application/Debug/obj/tcp_out.o + 0x100185cc tcp_write + .text.tcp_enqueue_flags + 0x1001896c 0xbc application/Debug/obj/tcp_out.o + 0x1001896c tcp_enqueue_flags + .text.tcp_send_fin + 0x10018a28 0x4c application/Debug/obj/tcp_out.o + 0x10018a28 tcp_send_fin + .text.tcp_send_empty_ack + 0x10018a74 0x60 application/Debug/obj/tcp_out.o + 0x10018a74 tcp_send_empty_ack + .text.tcp_output + 0x10018ad4 0x2c4 application/Debug/obj/tcp_out.o + 0x10018ad4 tcp_output + .text.tcp_rst 0x10018d98 0x9c application/Debug/obj/tcp_out.o + 0x10018d98 tcp_rst + .text.tcp_rexmit_rto + 0x10018e34 0x34 application/Debug/obj/tcp_out.o + 0x10018e34 tcp_rexmit_rto + .text.tcp_rexmit + 0x10018e68 0x54 application/Debug/obj/tcp_out.o + 0x10018e68 tcp_rexmit + .text.tcp_rexmit_fast + 0x10018ebc 0x50 application/Debug/obj/tcp_out.o + 0x10018ebc tcp_rexmit_fast + .text.tcp_keepalive + 0x10018f0c 0x54 application/Debug/obj/tcp_out.o + 0x10018f0c tcp_keepalive + .text.tcp_zero_window_probe + 0x10018f60 0xb4 application/Debug/obj/tcp_out.o + 0x10018f60 tcp_zero_window_probe + .text.udp_init + 0x10019014 0x4 application/Debug/obj/udp.o + 0x10019014 udp_init + .text.udp_input + 0x10019018 0x1a8 application/Debug/obj/udp.o + 0x10019018 udp_input + .text.udp_bind + 0x100191c0 0xcc application/Debug/obj/udp.o + 0x100191c0 udp_bind + .text.udp_sendto_if + 0x1001928c 0x108 application/Debug/obj/udp.o + 0x1001928c udp_sendto_if + .text.udp_sendto + 0x10019394 0x38 application/Debug/obj/udp.o + 0x10019394 udp_sendto + .text.udp_send + 0x100193cc 0x8 application/Debug/obj/udp.o + 0x100193cc udp_send + .text.udp_connect + 0x100193d4 0x58 application/Debug/obj/udp.o + 0x100193d4 udp_connect + .text.udp_disconnect + 0x1001942c 0x10 application/Debug/obj/udp.o + 0x1001942c udp_disconnect + .text.udp_recv + 0x1001943c 0x8 application/Debug/obj/udp.o + 0x1001943c udp_recv + .text.udp_remove + 0x10019444 0x38 application/Debug/obj/udp.o + 0x10019444 udp_remove + .text.udp_new 0x1001947c 0x1c application/Debug/obj/udp.o + 0x1001947c udp_new + .text.etharp_free_entry + 0x10019498 0x3c application/Debug/obj/etharp.o + .text.etharp_find_entry + 0x100194d4 0x110 application/Debug/obj/etharp.o + .text.etharp_send_ip + 0x100195e4 0x30 application/Debug/obj/etharp.o + .text.etharp_tmr + 0x10019614 0x50 application/Debug/obj/etharp.o + 0x10019614 etharp_tmr + .text.etharp_cleanup_netif + 0x10019664 0x2c application/Debug/obj/etharp.o + 0x10019664 etharp_cleanup_netif + .text.etharp_raw + 0x10019690 0xbc application/Debug/obj/etharp.o + 0x10019690 etharp_raw + .text.etharp_request + 0x1001974c 0x2c application/Debug/obj/etharp.o + 0x1001974c etharp_request + .text.etharp_output_to_arp_index + 0x10019778 0x5c application/Debug/obj/etharp.o + .text.etharp_query + 0x100197d4 0x108 application/Debug/obj/etharp.o + 0x100197d4 etharp_query + .text.etharp_output + 0x100198dc 0x128 application/Debug/obj/etharp.o + 0x100198dc etharp_output + .text.ethernet_input + 0x10019a04 0x210 application/Debug/obj/etharp.o + 0x10019a04 ethernet_input + .text.low_level_output + 0x10019c14 0x68 application/Debug/obj/ethernetif.o + .text.arp_timer + 0x10019c7c 0x1c application/Debug/obj/ethernetif.o + .text.ethernetif_recv + 0x10019c98 0x94 application/Debug/obj/ethernetif.o + 0x10019c98 ethernetif_recv + .text.ethernetif_init + 0x10019d2c 0x2c application/Debug/obj/ethernetif.o + 0x10019d2c ethernetif_init + .text.lwip_POST_SLEEP_PROCESSING + 0x10019d58 0x1c application/Debug/obj/ethernetif.o + 0x10019d58 lwip_POST_SLEEP_PROCESSING + .text.rltk_wlan_set_netif_info + 0x10019d74 0x24 application/Debug/obj/lwip_intf.o + 0x10019d74 rltk_wlan_set_netif_info + .text.rltk_wlan_send + 0x10019d98 0xa4 application/Debug/obj/lwip_intf.o + 0x10019d98 rltk_wlan_send + .text.rltk_wlan_recv + 0x10019e3c 0x7c application/Debug/obj/lwip_intf.o + 0x10019e3c rltk_wlan_recv + .text.netif_is_valid_IP + 0x10019eb8 0x38 application/Debug/obj/lwip_intf.o + 0x10019eb8 netif_is_valid_IP + .text.netif_get_idx + 0x10019ef0 0x24 application/Debug/obj/lwip_intf.o + 0x10019ef0 netif_get_idx + .text.netif_rx + 0x10019f14 0x14 application/Debug/obj/lwip_intf.o + 0x10019f14 netif_rx + .text.netif_post_sleep_processing + 0x10019f28 0x4 application/Debug/obj/lwip_intf.o + 0x10019f28 netif_post_sleep_processing + .text.sys_mbox_new + 0x10019f2c 0x20 application/Debug/obj/sys_arch.o + 0x10019f2c sys_mbox_new + .text.sys_mbox_free + 0x10019f4c 0x14 application/Debug/obj/sys_arch.o + 0x10019f4c sys_mbox_free + .text.sys_mbox_post + 0x10019f60 0x24 application/Debug/obj/sys_arch.o + 0x10019f60 sys_mbox_post + .text.sys_mbox_trypost + 0x10019f84 0x24 application/Debug/obj/sys_arch.o + 0x10019f84 sys_mbox_trypost + .text.sys_arch_mbox_fetch + 0x10019fa8 0x50 application/Debug/obj/sys_arch.o + 0x10019fa8 sys_arch_mbox_fetch + .text.sys_arch_mbox_tryfetch + 0x10019ff8 0x24 application/Debug/obj/sys_arch.o + 0x10019ff8 sys_arch_mbox_tryfetch + .text.sys_mbox_valid + 0x1001a01c 0xc application/Debug/obj/sys_arch.o + 0x1001a01c sys_mbox_valid + .text.sys_mbox_set_invalid + 0x1001a028 0x8 application/Debug/obj/sys_arch.o + 0x1001a028 sys_mbox_set_invalid + .text.sys_sem_new + 0x1001a030 0x40 application/Debug/obj/sys_arch.o + 0x1001a030 sys_sem_new + .text.sys_arch_sem_wait + 0x1001a070 0x40 application/Debug/obj/sys_arch.o + 0x1001a070 sys_arch_sem_wait + .text.sys_sem_signal + 0x1001a0b0 0xc application/Debug/obj/sys_arch.o + 0x1001a0b0 sys_sem_signal + .text.sys_sem_free + 0x1001a0bc 0x8 application/Debug/obj/sys_arch.o + 0x1001a0bc sys_sem_free + .text.sys_sem_valid + 0x1001a0c4 0xc application/Debug/obj/sys_arch.o + 0x1001a0c4 sys_sem_valid + .text.sys_sem_set_invalid + 0x1001a0d0 0x8 application/Debug/obj/sys_arch.o + 0x1001a0d0 sys_sem_set_invalid + .text.sys_init + 0x1001a0d8 0x24 application/Debug/obj/sys_arch.o + 0x1001a0d8 sys_init + .text.sys_thread_new_tcm + 0x1001a0fc 0x70 application/Debug/obj/sys_arch.o + 0x1001a0fc sys_thread_new_tcm + .text.sys_arch_protect + 0x1001a16c 0xc application/Debug/obj/sys_arch.o + 0x1001a16c sys_arch_protect + .text.sys_arch_unprotect + 0x1001a178 0x4 application/Debug/obj/sys_arch.o + 0x1001a178 sys_arch_unprotect + .text.sys_now 0x1001a17c 0x4 application/Debug/obj/sys_arch.o + 0x1001a17c sys_now + .text.mark_ip_in_table + 0x1001a180 0xf8 application/Debug/obj/dhcps.o + .text.dhcps_initialize_message + 0x1001a278 0xb4 application/Debug/obj/dhcps.o + .text.add_offer_options + 0x1001a32c 0xbc application/Debug/obj/dhcps.o + .text.dhcps_handle_state_machine_change + 0x1001a3e8 0xf4 application/Debug/obj/dhcps.o + 0x1001a3e8 dhcps_handle_state_machine_change + .text.dhcps_receive_udp_packet_handler + 0x1001a4dc 0x398 application/Debug/obj/dhcps.o + .text.dhcps_set_addr_pool + 0x1001a874 0x34 application/Debug/obj/dhcps.o + 0x1001a874 dhcps_set_addr_pool + .text.dhcps_init + 0x1001a8a8 0x100 application/Debug/obj/dhcps.o + 0x1001a8a8 dhcps_init + .text.dhcps_deinit + 0x1001a9a8 0x28 application/Debug/obj/dhcps.o + 0x1001a9a8 dhcps_deinit + .text.prvInsertBlockIntoFreeList + 0x1001a9d0 0x60 application/Debug/obj/heap_5.o + .text.__vPortFree + 0x1001aa30 0x54 application/Debug/obj/heap_5.o + 0x1001aa30 __vPortFree + .text.vPortSetExtFree + 0x1001aa84 0x20 application/Debug/obj/heap_5.o + 0x1001aa84 vPortSetExtFree + .text.vPortFree + 0x1001aaa4 0x38 application/Debug/obj/heap_5.o + 0x1001aaa4 vPortFree + .text.xPortGetFreeHeapSize + 0x1001aadc 0xc application/Debug/obj/heap_5.o + 0x1001aadc xPortGetFreeHeapSize + .text.vPortDefineHeapRegions + 0x1001aae8 0x9c application/Debug/obj/heap_5.o + 0x1001aae8 vPortDefineHeapRegions + .text.pvPortMalloc + 0x1001ab84 0xd4 application/Debug/obj/heap_5.o + 0x1001ab84 pvPortMalloc + .text.prvPortStartFirstTask + 0x1001ac58 0x20 application/Debug/obj/port.o + .text.pxPortInitialiseStack + 0x1001ac78 0x24 application/Debug/obj/port.o + 0x1001ac78 pxPortInitialiseStack + .text.vPortSVCHandler + 0x1001ac9c 0x24 application/Debug/obj/port.o + 0x1001ac9c vPortSVCHandler + .text.vPortYield + 0x1001acc0 0x18 application/Debug/obj/port.o + 0x1001acc0 vPortYield + .text.ulPortSetInterruptMask + 0x1001acd8 0x10 application/Debug/obj/port.o + 0x1001acd8 ulPortSetInterruptMask + .text.prvTaskExitError + 0x1001ace8 0x8 application/Debug/obj/port.o + .text.vPortEnterCritical + 0x1001acf0 0x1c application/Debug/obj/port.o + 0x1001acf0 vPortEnterCritical + .text.vPortClearInterruptMask + 0x1001ad0c 0x8 application/Debug/obj/port.o + 0x1001ad0c vPortClearInterruptMask + .text.vPortExitCritical + 0x1001ad14 0x14 application/Debug/obj/port.o + 0x1001ad14 vPortExitCritical + .text.xPortPendSVHandler + 0x1001ad28 0x44 application/Debug/obj/port.o + 0x1001ad28 xPortPendSVHandler + .text.xPortSysTickHandler + 0x1001ad6c 0x24 application/Debug/obj/port.o + 0x1001ad6c xPortSysTickHandler + .text.vPortSuppressTicksAndSleep + 0x1001ad90 0x134 application/Debug/obj/port.o + 0x1001ad90 vPortSuppressTicksAndSleep + .text.vPortSetupTimerInterrupt + 0x1001aec4 0x64 application/Debug/obj/port.o + 0x1001aec4 vPortSetupTimerInterrupt + .text.xPortStartScheduler + 0x1001af28 0x30 application/Debug/obj/port.o + 0x1001af28 xPortStartScheduler + .text.vApplicationIdleHook + 0x1001af58 0x4 application/Debug/obj/port.o + 0x1001af58 vApplicationIdleHook + .text.vApplicationStackOverflowHook + 0x1001af5c 0x1c application/Debug/obj/port.o + 0x1001af5c vApplicationStackOverflowHook + .text.osDelay 0x1001af78 0x24 application/Debug/obj/cmsis_os.o + 0x1001af78 osDelay + .text.vListInitialise + 0x1001af9c 0x18 application/Debug/obj/list.o + 0x1001af9c vListInitialise + .text.vListInitialiseItem + 0x1001afb4 0x8 application/Debug/obj/list.o + 0x1001afb4 vListInitialiseItem + .text.vListInsertEnd + 0x1001afbc 0x1c application/Debug/obj/list.o + 0x1001afbc vListInsertEnd + .text.vListInsert + 0x1001afd8 0x34 application/Debug/obj/list.o + 0x1001afd8 vListInsert + .text.uxListRemove + 0x1001b00c 0x28 application/Debug/obj/list.o + 0x1001b00c uxListRemove + .text.prvCopyDataToQueue + 0x1001b034 0x7c application/Debug/obj/queue.o + .text.prvCopyDataFromQueue + 0x1001b0b0 0x28 application/Debug/obj/queue.o + .text.prvUnlockQueue + 0x1001b0d8 0x84 application/Debug/obj/queue.o + .text.xQueueGenericReset + 0x1001b15c 0x64 application/Debug/obj/queue.o + 0x1001b15c xQueueGenericReset + .text.xQueueGenericCreate + 0x1001b1c0 0x44 application/Debug/obj/queue.o + 0x1001b1c0 xQueueGenericCreate + .text.xQueueCreateCountingSemaphore + 0x1001b204 0x14 application/Debug/obj/queue.o + 0x1001b204 xQueueCreateCountingSemaphore + .text.xQueueGenericSend + 0x1001b218 0xf0 application/Debug/obj/queue.o + 0x1001b218 xQueueGenericSend + .text.xQueueCreateMutex + 0x1001b308 0x44 application/Debug/obj/queue.o + 0x1001b308 xQueueCreateMutex + .text.xQueueGenericSendFromISR + 0x1001b34c 0x80 application/Debug/obj/queue.o + 0x1001b34c xQueueGenericSendFromISR + .text.xQueueGenericReceive + 0x1001b3cc 0x124 application/Debug/obj/queue.o + 0x1001b3cc xQueueGenericReceive + .text.uxQueueMessagesWaiting + 0x1001b4f0 0x14 application/Debug/obj/queue.o + 0x1001b4f0 uxQueueMessagesWaiting + .text.vQueueDelete + 0x1001b504 0x18 application/Debug/obj/queue.o + 0x1001b504 vQueueDelete + .text.vQueueWaitForMessageRestricted + 0x1001b51c 0x3c application/Debug/obj/queue.o + 0x1001b51c vQueueWaitForMessageRestricted + .text.prvGetExpectedIdleTime + 0x1001b558 0x34 application/Debug/obj/tasks.o + .text.prvResetNextTaskUnblockTime + 0x1001b58c 0x28 application/Debug/obj/tasks.o + .text.prvAddCurrentTaskToDelayedList + 0x1001b5b4 0x50 application/Debug/obj/tasks.o + .text.xTaskGenericCreate + 0x1001b604 0x1d0 application/Debug/obj/tasks.o + 0x1001b604 xTaskGenericCreate + .text.vTaskDelete + 0x1001b7d4 0xa8 application/Debug/obj/tasks.o + 0x1001b7d4 vTaskDelete + .text.uxTaskPriorityGet + 0x1001b87c 0x28 application/Debug/obj/tasks.o + 0x1001b87c uxTaskPriorityGet + .text.vTaskPrioritySet + 0x1001b8a4 0xc4 application/Debug/obj/tasks.o + 0x1001b8a4 vTaskPrioritySet + .text.vTaskStartScheduler + 0x1001b968 0x58 application/Debug/obj/tasks.o + 0x1001b968 vTaskStartScheduler + .text.vTaskSuspendAll + 0x1001b9c0 0x10 application/Debug/obj/tasks.o + 0x1001b9c0 vTaskSuspendAll + .text.xTaskGetTickCount + 0x1001b9d0 0x18 application/Debug/obj/tasks.o + 0x1001b9d0 xTaskGetTickCount + .text.xTaskGetTickCountFromISR + 0x1001b9e8 0x18 application/Debug/obj/tasks.o + 0x1001b9e8 xTaskGetTickCountFromISR + .text.pcTaskGetTaskName + 0x1001ba00 0x14 application/Debug/obj/tasks.o + 0x1001ba00 pcTaskGetTaskName + .text.vTaskStepTick + 0x1001ba14 0x10 application/Debug/obj/tasks.o + 0x1001ba14 vTaskStepTick + .text.xTaskIncrementTick + 0x1001ba24 0x12c application/Debug/obj/tasks.o + 0x1001ba24 xTaskIncrementTick + .text.xTaskResumeAll + 0x1001bb50 0xd8 application/Debug/obj/tasks.o + 0x1001bb50 xTaskResumeAll + .text.vTaskDelay + 0x1001bc28 0x5c application/Debug/obj/tasks.o + 0x1001bc28 vTaskDelay + .text.prvIdleTask + 0x1001bc84 0xa0 application/Debug/obj/tasks.o + .text.vTaskSwitchContext + 0x1001bd24 0x94 application/Debug/obj/tasks.o + 0x1001bd24 vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x1001bdb8 0x5c application/Debug/obj/tasks.o + 0x1001bdb8 vTaskPlaceOnEventList + .text.vTaskPlaceOnEventListRestricted + 0x1001be14 0x48 application/Debug/obj/tasks.o + 0x1001be14 vTaskPlaceOnEventListRestricted + .text.xTaskRemoveFromEventList + 0x1001be5c 0x78 application/Debug/obj/tasks.o + 0x1001be5c xTaskRemoveFromEventList + .text.vTaskSetTimeOutState + 0x1001bed4 0x18 application/Debug/obj/tasks.o + 0x1001bed4 vTaskSetTimeOutState + .text.xTaskCheckForTimeOut + 0x1001beec 0x60 application/Debug/obj/tasks.o + 0x1001beec xTaskCheckForTimeOut + .text.vTaskMissedYield + 0x1001bf4c 0xc application/Debug/obj/tasks.o + 0x1001bf4c vTaskMissedYield + .text.eTaskConfirmSleepModeStatus + 0x1001bf58 0x20 application/Debug/obj/tasks.o + 0x1001bf58 eTaskConfirmSleepModeStatus + .text.xTaskGetSchedulerState + 0x1001bf78 0x20 application/Debug/obj/tasks.o + 0x1001bf78 xTaskGetSchedulerState + .text.vTaskPriorityInherit + 0x1001bf98 0x98 application/Debug/obj/tasks.o + 0x1001bf98 vTaskPriorityInherit + .text.xTaskPriorityDisinherit + 0x1001c030 0x88 application/Debug/obj/tasks.o + 0x1001c030 xTaskPriorityDisinherit + .text.pvTaskIncrementMutexHeldCount + 0x1001c0b8 0x18 application/Debug/obj/tasks.o + 0x1001c0b8 pvTaskIncrementMutexHeldCount + .text.vTaskGetCurrentTCB + 0x1001c0d0 0xc application/Debug/obj/tasks.o + 0x1001c0d0 vTaskGetCurrentTCB + .text.prvCheckForValidListAndQueue + 0x1001c0dc 0x58 application/Debug/obj/timers.o + .text.prvInsertTimerInActiveList + 0x1001c134 0x44 application/Debug/obj/timers.o + .text.xTimerCreateTimerTask + 0x1001c178 0x40 application/Debug/obj/timers.o + 0x1001c178 xTimerCreateTimerTask + .text.xTimerCreate + 0x1001c1b8 0x40 application/Debug/obj/timers.o + 0x1001c1b8 xTimerCreate + .text.xTimerGenericCommand + 0x1001c1f8 0xb0 application/Debug/obj/timers.o + 0x1001c1f8 xTimerGenericCommand + .text.prvSwitchTimerLists + 0x1001c2a8 0x78 application/Debug/obj/timers.o + .text.prvTimerTask + 0x1001c320 0x17c application/Debug/obj/timers.o + .text.xTimerIsTimerActive + 0x1001c49c 0x18 application/Debug/obj/timers.o + 0x1001c49c xTimerIsTimerActive + .text.device_mutex_init + 0x1001c4b4 0x4c application/Debug/obj/device_lock.o + .text.device_mutex_lock + 0x1001c500 0x30 application/Debug/obj/device_lock.o + 0x1001c500 device_mutex_lock + .text.device_mutex_unlock + 0x1001c530 0x1c application/Debug/obj/device_lock.o + 0x1001c530 device_mutex_unlock + .text._freertos_systime_to_ms + 0x1001c54c 0x4 application/Debug/obj/freertos_service.o + .text._freertos_systime_to_sec + 0x1001c550 0x10 application/Debug/obj/freertos_service.o + .text._freertos_ms_to_systime + 0x1001c560 0x4 application/Debug/obj/freertos_service.o + .text._freertos_sec_to_systime + 0x1001c564 0xc application/Debug/obj/freertos_service.o + .text._freertos_usleep_os + 0x1001c570 0x4 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_SET + 0x1001c574 0x4 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_READ + 0x1001c578 0x4 application/Debug/obj/freertos_service.o + .text._freertos_modular64 + 0x1001c57c 0x90 application/Debug/obj/freertos_service.o + .text._freertos_thread_enter + 0x1001c60c 0x4 application/Debug/obj/freertos_service.o + .text._freertos_enter_critical + 0x1001c610 0x4 application/Debug/obj/freertos_service.o + .text._freertos_exit_critical + 0x1001c614 0x4 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_SUB_RETURN + 0x1001c618 0x18 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_DEC_RETURN + 0x1001c630 0x18 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_ADD_RETURN + 0x1001c648 0x18 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_INC_RETURN + 0x1001c660 0x18 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_SUB + 0x1001c678 0x18 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_DEC + 0x1001c690 0x18 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_ADD + 0x1001c6a8 0x18 application/Debug/obj/freertos_service.o + .text._freertos_ATOMIC_INC + 0x1001c6c0 0x18 application/Debug/obj/freertos_service.o + .text._freertos_enter_critical_from_isr + 0x1001c6d8 0x10 application/Debug/obj/freertos_service.o + .text._freertos_malloc + 0x1001c6e8 0x4 application/Debug/obj/freertos_service.o + 0x1001c6e8 _freertos_malloc + .text._freertos_zmalloc + 0x1001c6ec 0x18 application/Debug/obj/freertos_service.o + 0x1001c6ec _freertos_zmalloc + .text._freertos_memset + 0x1001c704 0x4 application/Debug/obj/freertos_service.o + .text._freertos_mfree + 0x1001c708 0x4 application/Debug/obj/freertos_service.o + 0x1001c708 _freertos_mfree + .text._freertos_up_sema + 0x1001c70c 0xc application/Debug/obj/freertos_service.o + .text._freertos_wakeup_task + 0x1001c718 0xc application/Debug/obj/freertos_service.o + 0x1001c718 _freertos_wakeup_task + .text._freertos_spinunlock_irqsave + 0x1001c724 0x18 application/Debug/obj/freertos_service.o + .text._freertos_spinunlock + 0x1001c73c 0xc application/Debug/obj/freertos_service.o + .text._freertos_exit_critical_mutex + 0x1001c748 0xc application/Debug/obj/freertos_service.o + .text._freertos_mutex_put + 0x1001c754 0xc application/Debug/obj/freertos_service.o + .text._freertos_timerCreate + 0x1001c760 0x4 application/Debug/obj/freertos_service.o + 0x1001c760 _freertos_timerCreate + .text._freertos_timerDelete + 0x1001c764 0x18 application/Debug/obj/freertos_service.o + 0x1001c764 _freertos_timerDelete + .text._freertos_timerStop + 0x1001c77c 0x18 application/Debug/obj/freertos_service.o + 0x1001c77c _freertos_timerStop + .text._freertos_timerChangePeriod + 0x1001c794 0x20 application/Debug/obj/freertos_service.o + 0x1001c794 _freertos_timerChangePeriod + .text._freertos_timerIsTimerActive + 0x1001c7b4 0x4 application/Debug/obj/freertos_service.o + 0x1001c7b4 _freertos_timerIsTimerActive + .text._freertos_acquire_wakelock + 0x1001c7b8 0x8 application/Debug/obj/freertos_service.o + 0x1001c7b8 _freertos_acquire_wakelock + .text._freertos_release_wakelock + 0x1001c7c0 0x8 application/Debug/obj/freertos_service.o + 0x1001c7c0 _freertos_release_wakelock + .text._freertos_get_scheduler_state + 0x1001c7c8 0x20 application/Debug/obj/freertos_service.o + 0x1001c7c8 _freertos_get_scheduler_state + .text._freertos_thread_exit + 0x1001c7e8 0x8 application/Debug/obj/freertos_service.o + .text._freertos_GetFreeHeapSize + 0x1001c7f0 0x4 application/Debug/obj/freertos_service.o + .text._freertos_arc4random + 0x1001c7f4 0x30 application/Debug/obj/freertos_service.o + .text._freertos_get_current_time + 0x1001c824 0x4 application/Debug/obj/freertos_service.o + .text._freertos_yield_os + 0x1001c828 0x4 application/Debug/obj/freertos_service.o + .text._freertos_udelay_os + 0x1001c82c 0x4 application/Debug/obj/freertos_service.o + .text._freertos_mdelay_os + 0x1001c830 0x4 application/Debug/obj/freertos_service.o + .text._freertos_msleep_os + 0x1001c834 0x4 application/Debug/obj/freertos_service.o + .text._freertos_deinit_xqueue + 0x1001c838 0x1c application/Debug/obj/freertos_service.o + .text._freertos_spinlock_free + 0x1001c854 0x14 application/Debug/obj/freertos_service.o + .text._freertos_mutex_free + 0x1001c868 0x14 application/Debug/obj/freertos_service.o + .text._freertos_free_sema + 0x1001c87c 0x14 application/Debug/obj/freertos_service.o + .text._freertos_push_to_xqueue + 0x1001c890 0x28 application/Debug/obj/freertos_service.o + .text._freertos_pop_from_xqueue + 0x1001c8b8 0x28 application/Debug/obj/freertos_service.o + .text._freertos_down_sema + 0x1001c8e0 0x24 application/Debug/obj/freertos_service.o + .text._freertos_init_xqueue + 0x1001c904 0x20 application/Debug/obj/freertos_service.o + .text._freertos_spinlock_irqsave + 0x1001c924 0x40 application/Debug/obj/freertos_service.o + .text._freertos_spinlock + 0x1001c964 0x3c application/Debug/obj/freertos_service.o + .text._freertos_enter_critical_mutex + 0x1001c9a0 0x38 application/Debug/obj/freertos_service.o + .text._freertos_mutex_get + 0x1001c9d8 0x3c application/Debug/obj/freertos_service.o + .text._freertos_spinlock_init + 0x1001ca14 0x10 application/Debug/obj/freertos_service.o + .text._freertos_mutex_init + 0x1001ca24 0x10 application/Debug/obj/freertos_service.o + .text._freertos_exit_critical_from_isr + 0x1001ca34 0xc application/Debug/obj/freertos_service.o + .text._freertos_up_sema_from_isr + 0x1001ca40 0x2c application/Debug/obj/freertos_service.o + .text._freertos_init_sema + 0x1001ca6c 0x10 application/Debug/obj/freertos_service.o + .text._freertos_create_task + 0x1001ca7c 0x84 application/Debug/obj/freertos_service.o + .text._freertos_memcmp + 0x1001cb00 0x10 application/Debug/obj/freertos_service.o + .text._freertos_memcpy + 0x1001cb10 0x4 application/Debug/obj/freertos_service.o + .text._freertos_get_random_bytes + 0x1001cb14 0x48 application/Debug/obj/freertos_service.o + .text._freertos_delete_task + 0x1001cb5c 0x54 application/Debug/obj/freertos_service.o + .text._freertos_mutex_get_timeout + 0x1001cbb0 0x40 application/Debug/obj/freertos_service.o + .text.save_and_cli + 0x1001cbf0 0x4 application/Debug/obj/freertos_service.o + 0x1001cbf0 save_and_cli + .text.restore_flags + 0x1001cbf4 0x4 application/Debug/obj/freertos_service.o + 0x1001cbf4 restore_flags + .text.cli 0x1001cbf8 0x4 application/Debug/obj/freertos_service.o + 0x1001cbf8 cli + .text.RtlInitSema + 0x1001cbfc 0x10 application/Debug/obj/osdep_api.o + 0x1001cbfc RtlInitSema + .text.RtlFreeSema + 0x1001cc0c 0x8 application/Debug/obj/osdep_api.o + 0x1001cc0c RtlFreeSema + .text.RtlUpSema + 0x1001cc14 0xc application/Debug/obj/osdep_api.o + 0x1001cc14 RtlUpSema + .text.RtlUpSemaFromISR + 0x1001cc20 0x24 application/Debug/obj/osdep_api.o + 0x1001cc20 RtlUpSemaFromISR + .text.RtlDownSema + 0x1001cc44 0x14 application/Debug/obj/osdep_api.o + 0x1001cc44 RtlDownSema + .text.RtlMsleepOS + 0x1001cc58 0x8 application/Debug/obj/osdep_api.o + 0x1001cc58 RtlMsleepOS + .text.RtlUdelayOS + 0x1001cc60 0x4 application/Debug/obj/osdep_api.o + 0x1001cc60 RtlUdelayOS + .text._htons 0x1001cc64 0x8 application/Debug/obj/osdep_service.o + 0x1001cc64 _htons + .text._ntohs 0x1001cc6c 0x8 application/Debug/obj/osdep_service.o + 0x1001cc6c _ntohs + .text._rtw_zvmalloc + 0x1001cc74 0x20 application/Debug/obj/osdep_service.o + 0x1001cc74 _rtw_zvmalloc + .text._rtw_vmfree + 0x1001cc94 0x28 application/Debug/obj/osdep_service.o + 0x1001cc94 _rtw_vmfree + .text.init_mem_monitor + 0x1001ccbc 0x1c application/Debug/obj/osdep_service.o + 0x1001ccbc init_mem_monitor + .text.deinit_mem_monitor + 0x1001ccd8 0x4 application/Debug/obj/osdep_service.o + 0x1001ccd8 deinit_mem_monitor + .text.add_mem_usage + 0x1001ccdc 0x40 application/Debug/obj/osdep_service.o + 0x1001ccdc add_mem_usage + .text.rtw_zvmalloc + 0x1001cd1c 0x24 application/Debug/obj/osdep_service.o + 0x1001cd1c rtw_zvmalloc + .text.rtw_vmfree + 0x1001cd40 0x4 application/Debug/obj/osdep_service.o + 0x1001cd40 rtw_vmfree + .text.rtw_malloc + 0x1001cd44 0x2c application/Debug/obj/osdep_service.o + 0x1001cd44 rtw_malloc + .text.rtw_zmalloc + 0x1001cd70 0x2c application/Debug/obj/osdep_service.o + 0x1001cd70 rtw_zmalloc + .text.rtw_mfree + 0x1001cd9c 0x10 application/Debug/obj/osdep_service.o + 0x1001cd9c rtw_mfree + .text.rtw_memcpy + 0x1001cdac 0x10 application/Debug/obj/osdep_service.o + 0x1001cdac rtw_memcpy + .text.rtw_memcmp + 0x1001cdbc 0x14 application/Debug/obj/osdep_service.o + 0x1001cdbc rtw_memcmp + .text.rtw_memset + 0x1001cdd0 0x10 application/Debug/obj/osdep_service.o + 0x1001cdd0 rtw_memset + .text.rtw_init_listhead + 0x1001cde0 0x8 application/Debug/obj/osdep_service.o + 0x1001cde0 rtw_init_listhead + .text.rtw_is_list_empty + 0x1001cde8 0xc application/Debug/obj/osdep_service.o + 0x1001cde8 rtw_is_list_empty + .text.rtw_list_insert_head + 0x1001cdf4 0xc application/Debug/obj/osdep_service.o + 0x1001cdf4 rtw_list_insert_head + .text.rtw_list_insert_tail + 0x1001ce00 0xc application/Debug/obj/osdep_service.o + 0x1001ce00 rtw_list_insert_tail + .text.rtw_list_delete + 0x1001ce0c 0x10 application/Debug/obj/osdep_service.o + 0x1001ce0c rtw_list_delete + .text.rtw_init_sema + 0x1001ce1c 0x10 application/Debug/obj/osdep_service.o + 0x1001ce1c rtw_init_sema + .text.rtw_free_sema + 0x1001ce2c 0x10 application/Debug/obj/osdep_service.o + 0x1001ce2c rtw_free_sema + .text.rtw_up_sema + 0x1001ce3c 0x10 application/Debug/obj/osdep_service.o + 0x1001ce3c rtw_up_sema + .text.rtw_up_sema_from_isr + 0x1001ce4c 0x10 application/Debug/obj/osdep_service.o + 0x1001ce4c rtw_up_sema_from_isr + .text.rtw_down_timeout_sema + 0x1001ce5c 0x14 application/Debug/obj/osdep_service.o + 0x1001ce5c rtw_down_timeout_sema + .text.rtw_down_sema + 0x1001ce70 0x20 application/Debug/obj/osdep_service.o + 0x1001ce70 rtw_down_sema + .text.rtw_mutex_init + 0x1001ce90 0x10 application/Debug/obj/osdep_service.o + 0x1001ce90 rtw_mutex_init + .text.rtw_mutex_free + 0x1001cea0 0x10 application/Debug/obj/osdep_service.o + 0x1001cea0 rtw_mutex_free + .text.rtw_mutex_put + 0x1001ceb0 0x10 application/Debug/obj/osdep_service.o + 0x1001ceb0 rtw_mutex_put + .text.rtw_mutex_get_timeout + 0x1001cec0 0x18 application/Debug/obj/osdep_service.o + 0x1001cec0 rtw_mutex_get_timeout + .text.rtw_enter_critical + 0x1001ced8 0x10 application/Debug/obj/osdep_service.o + 0x1001ced8 rtw_enter_critical + .text.rtw_exit_critical + 0x1001cee8 0x10 application/Debug/obj/osdep_service.o + 0x1001cee8 rtw_exit_critical + .text.rtw_enter_critical_bh + 0x1001cef8 0x10 application/Debug/obj/osdep_service.o + 0x1001cef8 rtw_enter_critical_bh + .text.rtw_exit_critical_bh + 0x1001cf08 0x10 application/Debug/obj/osdep_service.o + 0x1001cf08 rtw_exit_critical_bh + .text.rtw_enter_critical_mutex + 0x1001cf18 0x14 application/Debug/obj/osdep_service.o + 0x1001cf18 rtw_enter_critical_mutex + .text.rtw_exit_critical_mutex + 0x1001cf2c 0x10 application/Debug/obj/osdep_service.o + 0x1001cf2c rtw_exit_critical_mutex + .text.rtw_init_queue + 0x1001cf3c 0x18 application/Debug/obj/osdep_service.o + 0x1001cf3c rtw_init_queue + .text.rtw_queue_empty + 0x1001cf54 0xc application/Debug/obj/osdep_service.o + 0x1001cf54 rtw_queue_empty + .text.rtw_end_of_queue_search + 0x1001cf60 0x8 application/Debug/obj/osdep_service.o + 0x1001cf60 rtw_end_of_queue_search + .text.rtw_spinlock_init + 0x1001cf68 0x10 application/Debug/obj/osdep_service.o + 0x1001cf68 rtw_spinlock_init + .text.rtw_spinlock_free + 0x1001cf78 0x10 application/Debug/obj/osdep_service.o + 0x1001cf78 rtw_spinlock_free + .text.rtw_spin_lock + 0x1001cf88 0x10 application/Debug/obj/osdep_service.o + 0x1001cf88 rtw_spin_lock + .text.rtw_spin_unlock + 0x1001cf98 0x10 application/Debug/obj/osdep_service.o + 0x1001cf98 rtw_spin_unlock + .text.rtw_get_current_time + 0x1001cfa8 0x14 application/Debug/obj/osdep_service.o + 0x1001cfa8 rtw_get_current_time + .text.rtw_systime_to_ms + 0x1001cfbc 0x18 application/Debug/obj/osdep_service.o + 0x1001cfbc rtw_systime_to_ms + .text.rtw_systime_to_sec + 0x1001cfd4 0x18 application/Debug/obj/osdep_service.o + 0x1001cfd4 rtw_systime_to_sec + .text.rtw_ms_to_systime + 0x1001cfec 0x18 application/Debug/obj/osdep_service.o + 0x1001cfec rtw_ms_to_systime + .text.rtw_sec_to_systime + 0x1001d004 0x18 application/Debug/obj/osdep_service.o + 0x1001d004 rtw_sec_to_systime + .text.rtw_get_passing_time_ms + 0x1001d01c 0x30 application/Debug/obj/osdep_service.o + 0x1001d01c rtw_get_passing_time_ms + .text.rtw_msleep_os + 0x1001d04c 0x14 application/Debug/obj/osdep_service.o + 0x1001d04c rtw_msleep_os + .text.rtw_usleep_os + 0x1001d060 0x14 application/Debug/obj/osdep_service.o + 0x1001d060 rtw_usleep_os + .text.rtw_mdelay_os + 0x1001d074 0x14 application/Debug/obj/osdep_service.o + 0x1001d074 rtw_mdelay_os + .text.rtw_udelay_os + 0x1001d088 0x14 application/Debug/obj/osdep_service.o + 0x1001d088 rtw_udelay_os + .text.ATOMIC_SET + 0x1001d09c 0x14 application/Debug/obj/osdep_service.o + 0x1001d09c ATOMIC_SET + .text.ATOMIC_INC + 0x1001d0b0 0x14 application/Debug/obj/osdep_service.o + 0x1001d0b0 ATOMIC_INC + .text.ATOMIC_INC_RETURN + 0x1001d0c4 0x18 application/Debug/obj/osdep_service.o + 0x1001d0c4 ATOMIC_INC_RETURN + .text.ATOMIC_DEC_AND_TEST + 0x1001d0dc 0x20 application/Debug/obj/osdep_service.o + 0x1001d0dc ATOMIC_DEC_AND_TEST + .text.rtw_modular64 + 0x1001d0fc 0x18 application/Debug/obj/osdep_service.o + 0x1001d0fc rtw_modular64 + .text.rtw_get_random_bytes + 0x1001d114 0x18 application/Debug/obj/osdep_service.o + 0x1001d114 rtw_get_random_bytes + .text.rtw_getFreeHeapSize + 0x1001d12c 0x14 application/Debug/obj/osdep_service.o + 0x1001d12c rtw_getFreeHeapSize + .text.rtw_netif_queue_stopped + 0x1001d140 0x4 application/Debug/obj/osdep_service.o + 0x1001d140 rtw_netif_queue_stopped + .text.rtw_netif_wake_queue + 0x1001d144 0x4 application/Debug/obj/osdep_service.o + 0x1001d144 rtw_netif_wake_queue + .text.rtw_netif_start_queue + 0x1001d148 0x4 application/Debug/obj/osdep_service.o + 0x1001d148 rtw_netif_start_queue + .text.rtw_netif_stop_queue + 0x1001d14c 0x4 application/Debug/obj/osdep_service.o + 0x1001d14c rtw_netif_stop_queue + .text.flush_signals_thread + 0x1001d150 0x4 application/Debug/obj/osdep_service.o + 0x1001d150 flush_signals_thread + .text.rtw_acquire_wakelock + 0x1001d154 0x14 application/Debug/obj/osdep_service.o + 0x1001d154 rtw_acquire_wakelock + .text.rtw_release_wakelock + 0x1001d168 0x14 application/Debug/obj/osdep_service.o + 0x1001d168 rtw_release_wakelock + .text.rtw_create_task + 0x1001d17c 0x24 application/Debug/obj/osdep_service.o + 0x1001d17c rtw_create_task + .text.rtw_delete_task + 0x1001d1a0 0x14 application/Debug/obj/osdep_service.o + 0x1001d1a0 rtw_delete_task + .text.rtw_wakeup_task + 0x1001d1b4 0x14 application/Debug/obj/osdep_service.o + 0x1001d1b4 rtw_wakeup_task + .text.rtw_timerCreate + 0x1001d1c8 0x20 application/Debug/obj/osdep_service.o + 0x1001d1c8 rtw_timerCreate + .text.rtw_timerDelete + 0x1001d1e8 0x18 application/Debug/obj/osdep_service.o + 0x1001d1e8 rtw_timerDelete + .text.rtw_timerIsTimerActive + 0x1001d200 0x18 application/Debug/obj/osdep_service.o + 0x1001d200 rtw_timerIsTimerActive + .text.rtw_timerStop + 0x1001d218 0x18 application/Debug/obj/osdep_service.o + 0x1001d218 rtw_timerStop + .text.rtw_timerChangePeriod + 0x1001d230 0x18 application/Debug/obj/osdep_service.o + 0x1001d230 rtw_timerChangePeriod + .text.rtw_thread_enter + 0x1001d248 0x14 application/Debug/obj/osdep_service.o + 0x1001d248 rtw_thread_enter + .text.rtw_thread_exit + 0x1001d25c 0x14 application/Debug/obj/osdep_service.o + 0x1001d25c rtw_thread_exit + .text.tcm_heap_init + 0x1001d270 0x48 application/Debug/obj/tcm_heap.o + 0x1001d270 tcm_heap_init + .text.tcm_heap_allocmem + 0x1001d2b8 0x88 application/Debug/obj/tcm_heap.o + 0x1001d2b8 tcm_heap_allocmem + .text.tcm_heap_freemem + 0x1001d340 0x8c application/Debug/obj/tcm_heap.o + 0x1001d340 tcm_heap_freemem + .text.tcm_heap_free + 0x1001d3cc 0x10 application/Debug/obj/tcm_heap.o + 0x1001d3cc tcm_heap_free + .text.tcm_heap_malloc + 0x1001d3dc 0x14 application/Debug/obj/tcm_heap.o + 0x1001d3dc tcm_heap_malloc + .text.tcm_heap_calloc + 0x1001d3f0 0x28 application/Debug/obj/tcm_heap.o + 0x1001d3f0 tcm_heap_calloc + .text.flash_init.isra.0 + 0x1001d418 0x54 application/Debug/obj/flash_api.o + .text.flash_erase_sector + 0x1001d46c 0x38 application/Debug/obj/flash_api.o + 0x1001d46c flash_erase_sector + .text.flash_read_word + 0x1001d4a4 0x48 application/Debug/obj/flash_api.o + 0x1001d4a4 flash_read_word + .text.flash_write_word + 0x1001d4ec 0x68 application/Debug/obj/flash_api.o + 0x1001d4ec flash_write_word + .text.flash_stream_read + 0x1001d554 0x140 application/Debug/obj/flash_api.o + 0x1001d554 flash_stream_read + .text.flash_stream_write + 0x1001d694 0x1b8 application/Debug/obj/flash_api.o + 0x1001d694 flash_stream_write + .text.gpio_set + 0x1001d84c 0x38 application/Debug/obj/gpio_api.o + 0x1001d84c gpio_set + .text.gpio_init + 0x1001d884 0x34 application/Debug/obj/gpio_api.o + 0x1001d884 gpio_init + .text.gpio_mode + 0x1001d8b8 0x30 application/Debug/obj/gpio_api.o + 0x1001d8b8 gpio_mode + .text.gpio_dir + 0x1001d8e8 0x30 application/Debug/obj/gpio_api.o + 0x1001d8e8 gpio_dir + .text.gpio_write + 0x1001d918 0x50 application/Debug/obj/gpio_api.o + 0x1001d918 gpio_write + .text.gpio_read + 0x1001d968 0x34 application/Debug/obj/gpio_api.o + 0x1001d968 gpio_read + .text.gpio_irq_init + 0x1001d99c 0x4c application/Debug/obj/gpio_irq_api.o + 0x1001d99c gpio_irq_init + .text.gpio_irq_set + 0x1001d9e8 0x44 application/Debug/obj/gpio_irq_api.o + 0x1001d9e8 gpio_irq_set + .text.gpio_irq_enable + 0x1001da2c 0x18 application/Debug/obj/gpio_irq_api.o + 0x1001da2c gpio_irq_enable + .text.pin_function + 0x1001da44 0x4 application/Debug/obj/pinmap.o + 0x1001da44 pin_function + .text.pin_mode + 0x1001da48 0x4 application/Debug/obj/pinmap.o + 0x1001da48 pin_mode + .text.pinmap_merge + 0x1001da4c 0x40 application/Debug/obj/pinmap_common.o + 0x1001da4c pinmap_merge + .text.pinmap_find_peripheral + 0x1001da8c 0x1c application/Debug/obj/pinmap_common.o + 0x1001da8c pinmap_find_peripheral + .text.pinmap_peripheral + 0x1001daa8 0x3c application/Debug/obj/pinmap_common.o + 0x1001daa8 pinmap_peripheral + .text.SerialRxDoneCallBack + 0x1001dae4 0x24 application/Debug/obj/serial_api.o + .text.SerialTxDoneCallBack + 0x1001db08 0x34 application/Debug/obj/serial_api.o + .text.serial_init + 0x1001db3c 0x104 application/Debug/obj/serial_api.o + 0x1001db3c serial_init + .text.serial_baud + 0x1001dc40 0x8 application/Debug/obj/serial_api.o + 0x1001dc40 serial_baud + .text.serial_format + 0x1001dc48 0x58 application/Debug/obj/serial_api.o + 0x1001dc48 serial_format + .text.serial_irq_handler + 0x1001dca0 0x40 application/Debug/obj/serial_api.o + 0x1001dca0 serial_irq_handler + .text.serial_irq_set + 0x1001dce0 0xa0 application/Debug/obj/serial_api.o + 0x1001dce0 serial_irq_set + .text.serial_getc + 0x1001dd80 0x20 application/Debug/obj/serial_api.o + 0x1001dd80 serial_getc + .text.serial_putc + 0x1001dda0 0x48 application/Debug/obj/serial_api.o + 0x1001dda0 serial_putc + .text.serial_set_flow_control + 0x1001dde8 0x38 application/Debug/obj/serial_api.o + 0x1001dde8 serial_set_flow_control + .text.serial_rx_fifo_level + 0x1001de20 0x1c application/Debug/obj/serial_api.o + 0x1001de20 serial_rx_fifo_level + .text.sleep_ex_selective + 0x1001de3c 0x14 application/Debug/obj/sleep.o + 0x1001de3c sleep_ex_selective + .text.sys_reset + 0x1001de50 0x34 application/Debug/obj/sys_api.o + 0x1001de50 sys_reset + .text.sys_is_sdram_power_on + 0x1001de84 0x4 application/Debug/obj/sys_api.o + 0x1001de84 sys_is_sdram_power_on + .text.us_ticker_read + 0x1001de88 0x30 application/Debug/obj/us_ticker.o + 0x1001de88 us_ticker_read + .text.En32KCalibration + 0x1001deb8 0xa0 application/Debug/obj/hal_32k.o + 0x1001deb8 En32KCalibration + .text.HalGdmaOpInit + 0x1001df58 0x68 application/Debug/obj/hal_gdma.o + 0x1001df58 HalGdmaOpInit + .text.HAL_GPIO_GetPinName + 0x1001dfc0 0xc application/Debug/obj/hal_gpio.o + 0x1001dfc0 HAL_GPIO_GetPinName + .text.HAL_GPIO_PullCtrl + 0x1001dfcc 0x20 application/Debug/obj/hal_gpio.o + 0x1001dfcc HAL_GPIO_PullCtrl + .text.HAL_GPIO_Init + 0x1001dfec 0x78 application/Debug/obj/hal_gpio.o + 0x1001dfec HAL_GPIO_Init + .text.HAL_GPIO_Irq_Init + 0x1001e064 0xb8 application/Debug/obj/hal_gpio.o + 0x1001e064 HAL_GPIO_Irq_Init + .text.HalTimerOpInit_Patch + 0x1001e11c 0x40 application/Debug/obj/hal_timer.o + 0x1001e11c HalTimerOpInit_Patch + .text.HalRuartOpInit + 0x1001e15c 0xf4 application/Debug/obj/hal_uart.o + 0x1001e15c HalRuartOpInit + .text.HalRuartSetBaudRate + 0x1001e250 0x4 application/Debug/obj/hal_uart.o + 0x1001e250 HalRuartSetBaudRate + .text.HalRuartInit + 0x1001e254 0xb8 application/Debug/obj/hal_uart.o + 0x1001e254 HalRuartInit + .text.HalRuartFlowCtrl + 0x1001e30c 0x18 application/Debug/obj/hal_uart.o + 0x1001e30c HalRuartFlowCtrl + .text.freertos_ready_to_sleep + 0x1001e324 0x14 application/Debug/obj/freertos_pmu.o + 0x1001e324 freertos_ready_to_sleep + .text.freertos_pre_sleep_processing + 0x1001e338 0xb8 application/Debug/obj/freertos_pmu.o + 0x1001e338 freertos_pre_sleep_processing + .text.freertos_post_sleep_processing + 0x1001e3f0 0x2c application/Debug/obj/freertos_pmu.o + 0x1001e3f0 freertos_post_sleep_processing + .text.acquire_wakelock + 0x1001e41c 0x10 application/Debug/obj/freertos_pmu.o + 0x1001e41c acquire_wakelock + .text.release_wakelock + 0x1001e42c 0x10 application/Debug/obj/freertos_pmu.o + 0x1001e42c release_wakelock + .text.get_wakelock_status + 0x1001e43c 0xc application/Debug/obj/freertos_pmu.o + 0x1001e43c get_wakelock_status + .text.HalGdmaChBlockSetingRtl8195a_Patch + 0x1001e448 0x324 application/Debug/obj/rtl8195a_gdma.o + 0x1001e448 HalGdmaChBlockSetingRtl8195a_Patch + .text.HalGdmaQueryDArRtl8195a + 0x1001e76c 0x1c application/Debug/obj/rtl8195a_gdma.o + 0x1001e76c HalGdmaQueryDArRtl8195a + .text.HalGdmaQuerySArRtl8195a + 0x1001e788 0x1c application/Debug/obj/rtl8195a_gdma.o + 0x1001e788 HalGdmaQuerySArRtl8195a + .text.HalGdmaQueryChEnRtl8195a + 0x1001e7a4 0x1c application/Debug/obj/rtl8195a_gdma.o + 0x1001e7a4 HalGdmaQueryChEnRtl8195a + .text.HAL_GPIO_ClearISR_8195a + 0x1001e7c0 0x9c application/Debug/obj/rtl8195a_gpio.o + 0x1001e7c0 HAL_GPIO_ClearISR_8195a + .text.HalTimerIrq2To7Handle_Patch + 0x1001e85c 0x80 application/Debug/obj/rtl8195a_timer.o + 0x1001e85c HalTimerIrq2To7Handle_Patch + .text.HalTimerIrqRegisterRtl8195a_Patch + 0x1001e8dc 0x84 application/Debug/obj/rtl8195a_timer.o + 0x1001e8dc HalTimerIrqRegisterRtl8195a_Patch + .text.HalTimerInitRtl8195a_Patch + 0x1001e960 0x120 application/Debug/obj/rtl8195a_timer.o + 0x1001e960 HalTimerInitRtl8195a_Patch + .text.HalTimerIrqUnRegisterRtl8195a_Patch + 0x1001ea80 0x8c application/Debug/obj/rtl8195a_timer.o + 0x1001ea80 HalTimerIrqUnRegisterRtl8195a_Patch + .text.HalTimerDeInitRtl8195a_Patch + 0x1001eb0c 0x34 application/Debug/obj/rtl8195a_timer.o + 0x1001eb0c HalTimerDeInitRtl8195a_Patch + .text.HalTimerReadCountRtl8195a_Patch + 0x1001eb40 0x18 application/Debug/obj/rtl8195a_timer.o + 0x1001eb40 HalTimerReadCountRtl8195a_Patch + .text.HalTimerReLoadRtl8195a_Patch + 0x1001eb58 0x40 application/Debug/obj/rtl8195a_timer.o + 0x1001eb58 HalTimerReLoadRtl8195a_Patch + .text.HalTimerIrqEnRtl8195a + 0x1001eb98 0x18 application/Debug/obj/rtl8195a_timer.o + 0x1001eb98 HalTimerIrqEnRtl8195a + .text.HalTimerEnRtl8195a_Patch + 0x1001ebb0 0x18 application/Debug/obj/rtl8195a_timer.o + 0x1001ebb0 HalTimerEnRtl8195a_Patch + .text.HalTimerDisRtl8195a_Patch + 0x1001ebc8 0x18 application/Debug/obj/rtl8195a_timer.o + 0x1001ebc8 HalTimerDisRtl8195a_Patch + .text.HalRuartGetChipVerRtl8195a + 0x1001ebe0 0x10 application/Debug/obj/rtl8195a_uart.o + 0x1001ebe0 HalRuartGetChipVerRtl8195a + .text.HalRuartResetRxFifoRtl8195a_Patch + 0x1001ebf0 0x4c application/Debug/obj/rtl8195a_uart.o + 0x1001ebf0 HalRuartResetRxFifoRtl8195a_Patch + .text.HalRuartGenBaudRateRtl8195a + 0x1001ec3c 0x1e8 application/Debug/obj/rtl8195a_uart.o + 0x1001ec3c HalRuartGenBaudRateRtl8195a + .text.HalRuartSetBaudRateRtl8195a + 0x1001ee24 0x268 application/Debug/obj/rtl8195a_uart.o + 0x1001ee24 HalRuartSetBaudRateRtl8195a + .text.HalRuartInitRtl8195a_Patch + 0x1001f08c 0x250 application/Debug/obj/rtl8195a_uart.o + 0x1001f08c HalRuartInitRtl8195a_Patch + .text.HalRuartFlowCtrlRtl8195a + 0x1001f2dc 0x28 application/Debug/obj/rtl8195a_uart.o + 0x1001f2dc HalRuartFlowCtrlRtl8195a + .text.HalRuartDmaSendRtl8195a_Patch + 0x1001f304 0xe0 application/Debug/obj/rtl8195a_uart.o + 0x1001f304 HalRuartDmaSendRtl8195a_Patch + .text.HalRuartStopRecvRtl8195a_Patch + 0x1001f3e4 0xd4 application/Debug/obj/rtl8195a_uart.o + 0x1001f3e4 HalRuartStopRecvRtl8195a_Patch + .text.HalRuartStopSendRtl8195a_Patch + 0x1001f4b8 0xcc application/Debug/obj/rtl8195a_uart.o + 0x1001f4b8 HalRuartStopSendRtl8195a_Patch + .text.pre_example_entry + 0x1001f584 0x4 application/Debug/obj/example_entry.o + 0x1001f584 pre_example_entry + .text.example_entry + 0x1001f588 0x4 application/Debug/obj/example_entry.o + 0x1001f588 example_entry + .text.gpio_uart_at_rx_irq_callback + 0x1001f58c 0x4 application/Debug/obj/example_uart_atcmd.o + 0x1001f58c gpio_uart_at_rx_irq_callback + .text.uart_atcmd_module_init + 0x1001f590 0x40 application/Debug/obj/example_uart_atcmd.o + 0x1001f590 uart_atcmd_module_init + .text.atcmd_update_partition_info + 0x1001f5d0 0x124 application/Debug/obj/example_uart_atcmd.o + 0x1001f5d0 atcmd_update_partition_info + .text.read_uart_atcmd_setting_from_system_data + 0x1001f6f4 0x70 application/Debug/obj/example_uart_atcmd.o + 0x1001f6f4 read_uart_atcmd_setting_from_system_data + .text.write_uart_atcmd_setting_to_system_data + 0x1001f764 0x14 application/Debug/obj/example_uart_atcmd.o + 0x1001f764 write_uart_atcmd_setting_to_system_data + .text.reset_uart_atcmd_setting + 0x1001f778 0x14 application/Debug/obj/example_uart_atcmd.o + 0x1001f778 reset_uart_atcmd_setting + .text.uart_at_rx_wakeup + 0x1001f78c 0x2c application/Debug/obj/example_uart_atcmd.o + 0x1001f78c uart_at_rx_wakeup + .text.uart_atcmd_reinit + 0x1001f7b8 0x48 application/Debug/obj/example_uart_atcmd.o + 0x1001f7b8 uart_atcmd_reinit + .text.uart_at_send_string + 0x1001f800 0x20 application/Debug/obj/example_uart_atcmd.o + 0x1001f800 uart_at_send_string + .text.uart_irq + 0x1001f820 0x314 application/Debug/obj/example_uart_atcmd.o + 0x1001f820 uart_irq + .text.uart_at_send_buf + 0x1001fb34 0x20 application/Debug/obj/example_uart_atcmd.o + 0x1001fb34 uart_at_send_buf + .text.uart_atcmd_main + 0x1001fb54 0x84 application/Debug/obj/example_uart_atcmd.o + 0x1001fb54 uart_atcmd_main + .text.uart_atcmd_thread + 0x1001fbd8 0x9c application/Debug/obj/example_uart_atcmd.o + .text.example_uart_atcmd + 0x1001fc74 0x10 application/Debug/obj/example_uart_atcmd.o + 0x1001fc74 example_uart_atcmd + .text.startup.main + 0x1001fc84 0x1c application/Debug/obj/main.o + 0x1001fc84 main + .text.HalNMIHandler_Patch + 0x1001fca0 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1001fca0 HalNMIHandler_Patch + .text.SDIO_Device_Off + 0x1001fce0 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1001fce0 SDIO_Device_Off + .text.HalCommonInit + 0x1001fd1c 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + 0x1001fd1c HalCommonInit + .text.HALEFUSEOneByteReadRAM + 0x1001fd2c 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + 0x1001fd2c HALEFUSEOneByteReadRAM + .text.HALEFUSEOneByteWriteRAM + 0x1001fd48 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + 0x1001fd48 HALEFUSEOneByteWriteRAM + .text.GpioIcFunChk + 0x1001fd60 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + 0x1001fd60 GpioIcFunChk + .text.GpioFunctionChk + 0x1001fdb4 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + 0x1001fdb4 GpioFunctionChk + .text.RTL8710afFunChk + 0x1001fdf8 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + 0x1001fdf8 RTL8710afFunChk + .text.FunctionChk + 0x1001fe38 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + 0x1001fe38 FunctionChk + .text.vWFSSVCHandler + 0x1001fe88 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x1001fe88 vWFSSVCHandler + .text.PatchHalLogUartInit + 0x1001fea8 0xb4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x1001fea8 PatchHalLogUartInit + .text.PSHalInitPlatformLogUart + 0x1001ff5c 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x1001ff5c PSHalInitPlatformLogUart + .text.SDRWakeUp + 0x1001ffe4 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x1001ffe4 SDRWakeUp + .text.SDRSleep + 0x10020024 0xe8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10020024 SDRSleep + .text.InitSYSIRQ + 0x1002010c 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x1002010c InitSYSIRQ + .text.DurationScaleAndPeriodOP + 0x10020148 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10020148 DurationScaleAndPeriodOP + *fill* 0x1002017e 0x2 + .text.CLKCal 0x10020180 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10020180 CLKCal + .text.BackupCPUClk + 0x100201d8 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x100201d8 BackupCPUClk + .text.ReFillCpuClk + 0x100201f8 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x100201f8 ReFillCpuClk + .text.SYSIrqHandle + 0x10020218 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10020218 SYSIrqHandle + .text.WakeFromSLPPG + 0x10020264 0x138 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10020264 WakeFromSLPPG + .text.InitSoCPM + 0x1002039c 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x1002039c InitSoCPM + .text.RegPowerState + 0x100203d4 0x6c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x100203d4 RegPowerState + .text.SetSYSTimer + 0x10020440 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10020440 SetSYSTimer + .text.SleepCG 0x10020474 0xfc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10020474 SleepCG + .text.ShowRamBuildInfo + 0x10020570 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + 0x10020570 ShowRamBuildInfo + .text.__low_level_init + 0x10020572 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + 0x10020572 __low_level_init + .text._AppStart + 0x10020574 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + 0x10020574 _AppStart + .text.bytecopy + 0x100205b0 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtk_sc_register_pattern + 0x100205c4 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtk_sc_generate_key + 0x100205ec 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtk_sc_decode_profile + 0x100205fa 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtk_sc_get_tlv_info + 0x10020608 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.mcast_udp_get_cipher_info + 0x10020616 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + *fill* 0x1002063e 0x2 + .text.mcast_udp_get_pattern + 0x10020640 0x178 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.bcast_udp_get_pattern + 0x100207b8 0xbc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.bcast_udp_get_cipher_info + 0x10020874 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtk_clean_profile_value + 0x100208d4 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.mcast_udp_decode_profile + 0x10020934 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.mcast_udp_generate_key + 0x10020960 0x110 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtk_sc_check_packet.isra.0 + 0x10020a70 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.whc_fix_channel + 0x10020aa0 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020aa0 whc_fix_channel + .text.whc_unfix_channel + 0x10020aa2 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020aa2 whc_unfix_channel + .text.simple_config_lib_init + 0x10020aa4 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020aa4 simple_config_lib_init + .text.simple_config_lib_deinit + 0x10020ac0 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020ac0 simple_config_lib_deinit + .text.parse_tlv_info_bcast + 0x10020ad4 0x104 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020ad4 parse_tlv_info_bcast + .text.mcast_udp_get_profile + 0x10020bd8 0x12c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .text.rtk_restart_simple_config + 0x10020d04 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020d04 rtk_restart_simple_config + .text.rtk_stop_simple_config + 0x10020d3c 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020d3c rtk_stop_simple_config + .text.rtk_sc_init + 0x10020d50 0x190 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020d50 rtk_sc_init + .text.rtk_sc_deinit + 0x10020ee0 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020ee0 rtk_sc_deinit + .text.rtk_start_parse_packet + 0x10020f1c 0x308 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10020f1c rtk_start_parse_packet + .text.rtw_ht_operation_update + 0x10021224 0xb2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .text.associated_clients_update.part.11 + 0x100212d6 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .text.chk_sta_is_alive + 0x10021312 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10021312 chk_sta_is_alive + .text.add_RATid + 0x10021350 0x108 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10021350 add_RATid + .text.update_sta_info_apmode + 0x10021458 0xb6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10021458 update_sta_info_apmode + *fill* 0x1002150e 0x2 + .text.update_beacon + 0x10021510 0x2c0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10021510 update_beacon + .text.rtw_check_beacon_data + 0x100217d0 0x700 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x100217d0 rtw_check_beacon_data + .text.associated_clients_update + 0x10021ed0 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10021ed0 associated_clients_update + .text.bss_cap_update_on_sta_join + 0x10021eda 0x1b0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10021eda bss_cap_update_on_sta_join + .text.bss_cap_update_on_sta_leave + 0x1002208a 0xfc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x1002208a bss_cap_update_on_sta_leave + .text.ap_free_sta + 0x10022186 0xb0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10022186 ap_free_sta + *fill* 0x10022236 0x2 + .text.expire_timeout_chk + 0x10022238 0x13c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10022238 expire_timeout_chk + .text.rtw_sta_flush + 0x10022374 0x84 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10022374 rtw_sta_flush + .text.free_mlme_ap_info + 0x100223f8 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x100223f8 free_mlme_ap_info + .text.sta_info_update + 0x10022444 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10022444 sta_info_update + .text.ap_sta_info_defer_update + 0x10022480 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10022480 ap_sta_info_defer_update + .text.start_ap_mode + 0x100224b0 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x100224b0 start_ap_mode + .text.init_mlme_ap_info + 0x100224f0 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x100224f0 init_mlme_ap_info + .text.stop_ap_mode + 0x10022506 0x4e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10022506 stop_ap_mode + .text.rtw_generate_bcn_ie + 0x10022554 0x324 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10022554 rtw_generate_bcn_ie + .text.set_hidden_ssid + 0x10022878 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x10022878 set_hidden_ssid + .text._rtw_init_evt_priv + 0x100228d0 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x100228d0 _rtw_init_evt_priv + .text._rtw_free_cmd_priv + 0x100228e2 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x100228e2 _rtw_free_cmd_priv + .text._rtw_enqueue_cmd + 0x100228ec 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x100228ec _rtw_enqueue_cmd + .text._rtw_dequeue_cmd + 0x10022918 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022918 _rtw_dequeue_cmd + .text._rtw_observequeue_cmd + 0x1002294c 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x1002294c _rtw_observequeue_cmd + .text.rtw_init_cmd_priv + 0x10022960 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022960 rtw_init_cmd_priv + .text.rtw_init_evt_priv + 0x1002296a 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x1002296a rtw_init_evt_priv + .text.rtw_free_evt_priv + 0x1002296e 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x1002296e rtw_free_evt_priv + .text.rtw_free_cmd_priv + 0x10022970 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022970 rtw_free_cmd_priv + .text.rtw_cmd_filter + 0x10022974 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022974 rtw_cmd_filter + .text.rtw_free_cmd_obj + 0x10022992 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022992 rtw_free_cmd_obj + .text.rtw_enqueue_cmd + 0x100229bc 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x100229bc rtw_enqueue_cmd + .text.rtw_set_channel_plan_cmd_callback + 0x10022a12 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022a12 rtw_set_channel_plan_cmd_callback + .text.rtw_survey_cmd_callback + 0x10022a2a 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022a2a rtw_survey_cmd_callback + .text.rtw_disassoc_cmd_callback + 0x10022a46 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022a46 rtw_disassoc_cmd_callback + .text.rtw_joinbss_cmd_callback + 0x10022a76 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022a76 rtw_joinbss_cmd_callback + .text.rtw_setstaKey_cmdrsp_callback + 0x10022a92 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022a92 rtw_setstaKey_cmdrsp_callback + *fill* 0x10022aaa 0x2 + .text.rtw_cmd_thread + 0x10022aac 0x15c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022aac rtw_cmd_thread + .text.rtw_joinbss_cmd + 0x10022c08 0x2aa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022c08 rtw_joinbss_cmd + .text.rtw_disassoc_cmd + 0x10022eb2 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022eb2 rtw_disassoc_cmd + *fill* 0x10022efe 0x2 + .text.rtw_setstakey_cmd + 0x10022f00 0xf0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022f00 rtw_setstakey_cmd + .text.rtw_clearstakey_cmd + 0x10022ff0 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10022ff0 rtw_clearstakey_cmd + .text.rtw_dynamic_chk_wk_cmd + 0x10023090 0x52 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10023090 rtw_dynamic_chk_wk_cmd + .text.rtw_set_chplan_cmd + 0x100230e2 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x100230e2 rtw_set_chplan_cmd + .text.dynamic_chk_wk_hdl + 0x10023162 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10023162 dynamic_chk_wk_hdl + .text.lps_ctrl_wk_hdl + 0x1002322a 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x1002322a lps_ctrl_wk_hdl + .text.rtw_lps_ctrl_wk_cmd + 0x1002328e 0x6a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x1002328e rtw_lps_ctrl_wk_cmd + .text.rtw_sitesurvey_cmd + 0x100232f8 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x100232f8 rtw_sitesurvey_cmd + .text.rpt_timer_setting_wk_hdl + 0x100233c0 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x100233c0 rpt_timer_setting_wk_hdl + .text.rtw_ps_cmd + 0x100233d4 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x100233d4 rtw_ps_cmd + .text.rtw_chk_hi_queue_cmd + 0x10023430 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10023430 rtw_chk_hi_queue_cmd + .text.rtw_drvextra_cmd_hdl + 0x10023484 0xdc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x10023484 rtw_drvextra_cmd_hdl + .text.rtw_free_mlme_ie_data + 0x10023560 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .text.rtw_init_mlme_timer + 0x10023578 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023578 rtw_init_mlme_timer + .text.rtw_del_mlme_timer + 0x100235d4 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100235d4 rtw_del_mlme_timer + .text.reconnect_timer_hdl + 0x100235f4 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100235f4 reconnect_timer_hdl + .text._rtw_init_mlme_priv + 0x10023694 0x82 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023694 _rtw_init_mlme_priv + .text.rtw_mfree_mlme_priv_lock + 0x10023716 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023716 rtw_mfree_mlme_priv_lock + .text.rtw_free_mlme_priv_ie_data + 0x10023732 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023732 rtw_free_mlme_priv_ie_data + .text._rtw_free_mlme_priv + 0x1002376a 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x1002376a _rtw_free_mlme_priv + .text._rtw_alloc_network + 0x10023792 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023792 _rtw_alloc_network + .text._rtw_free_network + 0x100237e2 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100237e2 _rtw_free_network + .text._rtw_free_network_nolock + 0x10023842 0x26 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023842 _rtw_free_network_nolock + .text._rtw_find_network + 0x10023868 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023868 _rtw_find_network + .text._rtw_free_network_queue + 0x100238a4 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100238a4 _rtw_free_network_queue + .text.rtw_if_up + 0x100238ec 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100238ec rtw_if_up + .text.rtw_get_capability_from_ie + 0x1002390c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x1002390c rtw_get_capability_from_ie + .text.rtw_get_capability + 0x10023910 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023910 rtw_get_capability + .text.rtw_get_beacon_interval_from_ie + 0x1002392a 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x1002392a rtw_get_beacon_interval_from_ie + .text.rtw_init_mlme_priv + 0x1002392e 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x1002392e rtw_init_mlme_priv + .text.rtw_free_mlme_priv + 0x10023946 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023946 rtw_free_mlme_priv + .text.rtw_free_network_queue + 0x1002394a 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x1002394a rtw_free_network_queue + .text.rtw_is_same_ibss + 0x1002394e 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x1002394e rtw_is_same_ibss + .text.is_same_network + 0x10023964 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023964 is_same_network + .text.update_network + 0x100239c8 0x9a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100239c8 update_network + .text.rtw_update_scanned_network + 0x10023a62 0x112 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023a62 rtw_update_scanned_network + .text.rtw_add_network + 0x10023b74 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023b74 rtw_add_network + .text.rtw_survey_event_callback + 0x10023bb2 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023bb2 rtw_survey_event_callback + .text.rtw_dummy_event_callback + 0x10023c5e 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023c5e rtw_dummy_event_callback + .text.rtw_free_assoc_resources + 0x10023c60 0xca ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023c60 rtw_free_assoc_resources + .text.rtw_indicate_connect + 0x10023d2a 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023d2a rtw_indicate_connect + .text.rtw_indicate_disconnect + 0x10023d3a 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023d3a rtw_indicate_disconnect + .text.rtw_indicate_scan_done + 0x10023d5c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023d5c rtw_indicate_scan_done + .text.rtw_joinbss_event_callback + 0x10023d60 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023d60 rtw_joinbss_event_callback + .text.search_max_mac_id + 0x10023d7e 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023d7e search_max_mac_id + .text.rtw_stassoc_hw_rpt + 0x10023dc6 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023dc6 rtw_stassoc_hw_rpt + .text.rtw_stassoc_event_callback + 0x10023dfe 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023dfe rtw_stassoc_event_callback + .text.rtw_stadel_event_callback + 0x10023e2c 0xa6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023e2c rtw_stadel_event_callback + .text._rtw_join_timeout_handler + 0x10023ed2 0x8a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023ed2 _rtw_join_timeout_handler + .text.rtw_join_timeout_handler + 0x10023f5c 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023f5c rtw_join_timeout_handler + .text.rtw_scan_timeout_handler + 0x10023fb4 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023fb4 rtw_scan_timeout_handler + .text._rtw_scan_timeout_handler + 0x10023fe4 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023fe4 _rtw_scan_timeout_handler + .text.rtw_dynamic_check_timer_handlder + 0x10023fe8 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10023fe8 rtw_dynamic_check_timer_handlder + .text._dynamic_check_timer_handlder + 0x10024040 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024040 _dynamic_check_timer_handlder + .text.rtw_select_and_join_from_scanned_queue + 0x10024084 0xd4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024084 rtw_select_and_join_from_scanned_queue + .text.rtw_surveydone_event_callback + 0x10024158 0x118 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024158 rtw_surveydone_event_callback + .text.rtw_set_auth + 0x10024270 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024270 rtw_set_auth + .text.rtw_set_key + 0x100242c0 0xc2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100242c0 rtw_set_key + .text.rtw_restruct_wmm_ie + 0x10024382 0x66 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024382 rtw_restruct_wmm_ie + .text.rtw_restruct_sec_ie + 0x100243e8 0x6c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100243e8 rtw_restruct_sec_ie + .text.rtw_joinbss_reset + 0x10024454 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024454 rtw_joinbss_reset + .text.rtw_restructure_ht_ie + 0x10024464 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024464 rtw_restructure_ht_ie + .text.rtw_update_ht_cap + 0x10024544 0x8a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024544 rtw_update_ht_cap + .text.rtw_joinbss_event_prehandle + 0x100245ce 0x22c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100245ce rtw_joinbss_event_prehandle + .text.rtw_linked_check + 0x100247fa 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100247fa rtw_linked_check + .text.rtw_buddy_adapter_up + 0x10024816 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x10024816 rtw_buddy_adapter_up + .text.check_buddy_fwstate + 0x1002484e 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x1002484e check_buddy_fwstate + .text.get_da 0x1002486c 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text.get_sa 0x1002488c 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text.OnAction + 0x100248b6 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100248b6 OnAction + .text.DoReserved + 0x100248c8 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100248c8 DoReserved + .text._mgt_dispatcher.isra.2 + 0x100248cc 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text.rtw_is_channel_set_contains_channel + 0x10024918 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024918 rtw_is_channel_set_contains_channel + .text.init_hw_mlme_ext + 0x1002493a 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1002493a init_hw_mlme_ext + .text.init_channel_set + 0x10024950 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024950 init_channel_set + .text.free_mlme_ext_priv + 0x100249e8 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100249e8 free_mlme_ext_priv + .text.mgt_dispatcher + 0x10024a10 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024a10 mgt_dispatcher + .text.alloc_mgtxmitframe + 0x10024a98 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024a98 alloc_mgtxmitframe + .text.update_mgnt_tx_rate + 0x10024ad0 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024ad0 update_mgnt_tx_rate + .text.update_mgntframe_attrib + 0x10024ad6 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024ad6 update_mgntframe_attrib + .text.rtw_build_mgnt_frame + 0x10024b32 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024b32 rtw_build_mgnt_frame + .text.dump_mgntframe + 0x10024b88 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024b88 dump_mgntframe + .text.rtw_send_mgnt + 0x10024ba2 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024ba2 rtw_send_mgnt + *fill* 0x10024bbe 0x2 + .text.issue_action_BSSCoexistPacket + 0x10024bc0 0x20c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .text.update_hidden_ssid + 0x10024dcc 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024dcc update_hidden_ssid + .text.issue_beacon + 0x10024e20 0x218 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10024e20 issue_beacon + .text.issue_probersp + 0x10025038 0x290 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10025038 issue_probersp + .text.OnProbeReq + 0x100252c8 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100252c8 OnProbeReq + .text.issue_probereq + 0x10025390 0x1b8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10025390 issue_probereq + .text.issue_auth + 0x10025548 0x268 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10025548 issue_auth + .text.OnAuth 0x100257b0 0x2a4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100257b0 OnAuth + .text.issue_asocrsp + 0x10025a54 0x274 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10025a54 issue_asocrsp + .text.issue_assocreq + 0x10025cc8 0x33c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10025cc8 issue_assocreq + .text.issue_nulldata + 0x10026004 0xea ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026004 issue_nulldata + .text.issue_qos_nulldata + 0x100260ee 0x132 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100260ee issue_qos_nulldata + .text.issue_deauth + 0x10026220 0xe8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026220 issue_deauth + .text.issue_action_BA + 0x10026308 0x27c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026308 issue_action_BA + .text.OnAction_back + 0x10026584 0xce ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026584 OnAction_back + .text.collect_bss_info + 0x10026652 0x230 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026652 collect_bss_info + *fill* 0x10026882 0x2 + .text.start_clnt_auth + 0x10026884 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026884 start_clnt_auth + .text.start_clnt_assoc + 0x10026914 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026914 start_clnt_assoc + *fill* 0x10026946 0x2 + .text.OnAuthClient + 0x10026948 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026948 OnAuthClient + .text.report_scan_result_one + 0x10026a28 0x1c0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026a28 report_scan_result_one + .text.add_site_survey + 0x10026be8 0x186 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026be8 add_site_survey + .text.report_survey_event + 0x10026d6e 0x23e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026d6e report_survey_event + .text.OnProbeRsp + 0x10026fac 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026fac OnProbeRsp + .text.report_surveydone_event + 0x10026fe0 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10026fe0 report_surveydone_event + .text.report_join_res + 0x10027044 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027044 report_join_res + .text.OnAssocRsp + 0x100270b4 0x14c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100270b4 OnAssocRsp + .text.report_del_sta_event + 0x10027200 0x92 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027200 report_del_sta_event + .text.receive_disconnect + 0x10027292 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027292 receive_disconnect + .text.OnBeacon + 0x100272e8 0x188 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100272e8 OnBeacon + .text.OnDeAuth + 0x10027470 0x158 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027470 OnDeAuth + .text.OnDisassoc + 0x100275c8 0x170 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100275c8 OnDisassoc + .text.report_add_sta_event + 0x10027738 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027738 report_add_sta_event + .text.OnAssocReq + 0x100277ac 0x5f0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100277ac OnAssocReq + .text.rtw_port_switch_chk + 0x10027d9c 0x84 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027d9c rtw_port_switch_chk + .text.update_sta_info + 0x10027e20 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027e20 update_sta_info + .text.mlmeext_sta_del_event_callback + 0x10027ea0 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027ea0 mlmeext_sta_del_event_callback + .text._linked_info_dump + 0x10027f20 0x62 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027f20 _linked_info_dump + .text._linked_rx_signal_strehgth_display + 0x10027f82 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027f82 _linked_rx_signal_strehgth_display + *fill* 0x10027fba 0x2 + .text.linked_status_chk + 0x10027fbc 0x274 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10027fbc linked_status_chk + .text.survey_timer_hdl + 0x10028230 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028230 survey_timer_hdl + .text._survey_timer_hdl + 0x10028310 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028310 _survey_timer_hdl + .text.link_timer_hdl + 0x10028314 0x7e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028314 link_timer_hdl + .text._link_timer_hdl + 0x10028392 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028392 _link_timer_hdl + .text.addba_timer_hdl + 0x10028396 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028396 addba_timer_hdl + .text.NULL_hdl + 0x100283b6 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100283b6 NULL_hdl + .text.setopmode_hdl + 0x100283ba 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100283ba setopmode_hdl + .text.disconnect_hdl + 0x10028400 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028400 disconnect_hdl + .text.setauth_hdl + 0x100284ac 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100284ac setauth_hdl + *fill* 0x100284ba 0x2 + .text.setkey_hdl + 0x100284bc 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100284bc setkey_hdl + .text.set_stakey_hdl + 0x10028514 0x104 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028514 set_stakey_hdl + .text.set_tx_beacon_cmd + 0x10028618 0x72 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028618 set_tx_beacon_cmd + *fill* 0x1002868a 0x2 + .text.mlme_evt_hdl + 0x1002868c 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1002868c mlme_evt_hdl + .text.tx_beacon_hdl + 0x100286d8 0xba ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100286d8 tx_beacon_hdl + .text.check_buddy_mlmeinfo_state + 0x10028792 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028792 check_buddy_mlmeinfo_state + .text.site_survey + 0x100287ac 0x1d0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100287ac site_survey + .text.sitesurvey_cmd_hdl + 0x1002897c 0x10e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1002897c sitesurvey_cmd_hdl + .text.concurrent_chk_start_clnt_join + 0x10028a8a 0x96 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028a8a concurrent_chk_start_clnt_join + .text.start_clnt_join + 0x10028b20 0xd2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028b20 start_clnt_join + *fill* 0x10028bf2 0x2 + .text.join_cmd_hdl + 0x10028bf4 0x124 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028bf4 join_cmd_hdl + .text.concurrent_chk_joinbss_done + 0x10028d18 0x1c6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028d18 concurrent_chk_joinbss_done + *fill* 0x10028ede 0x2 + .text.mlmeext_joinbss_event_callback + 0x10028ee0 0x13c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10028ee0 mlmeext_joinbss_event_callback + .text.set_chplan_hdl + 0x1002901c 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1002901c set_chplan_hdl + .text.init_mlme_ext_timer + 0x10029038 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10029038 init_mlme_ext_timer + .text.init_mlme_ext_priv + 0x10029094 0x13c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x10029094 init_mlme_ext_priv + .text.get_hdr_bssid + 0x100291d0 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text.filter_packet + 0x100291f8 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text.promisc_get_encrypt + 0x10029280 0x52 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text.promisc_info_get + 0x100292d2 0xa4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text.promisc_set_enable + 0x10029376 0x9c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .text._promisc_deinit + 0x10029412 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x10029412 _promisc_deinit + *fill* 0x10029462 0x2 + .text._promisc_recv_func + 0x10029464 0x54c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x10029464 _promisc_recv_func + .text._promisc_set + 0x100299b0 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x100299b0 _promisc_set + .text._is_promisc_enabled + 0x10029a40 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x10029a40 _is_promisc_enabled + .text._promisc_get_fixed_channel + 0x10029a58 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x10029a58 _promisc_get_fixed_channel + .text.SetEAPOL_KEYIV + 0x10029ae8 0x9e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.ToDrv_SetPTK + 0x10029b86 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.Message_ReplayCounter_OC2LI.isra.2 + 0x10029c2e 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.Message_SmallerEqualReplayCounter.isra.4 + 0x10029c5c 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.Message_setReplayCounter.isra.5 + 0x10029c8e 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.INCLargeInteger + 0x10029cac 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.INCOctet16_INTEGER + 0x10029ccc 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.INCOctet32_INTEGER + 0x10029d14 0x5e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + *fill* 0x10029d72 0x2 + .text.ToDrv_DisconnectSTA + 0x10029d74 0xc4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.CheckMIC.constprop.14 + 0x10029e38 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.CalcMIC.constprop.15 + 0x10029eb8 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .text.DecWPA2KeyData + 0x10029f18 0xb4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x10029f18 DecWPA2KeyData + .text.DecGTK 0x10029fcc 0xbc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x10029fcc DecGTK + .text.ToDrv_SetGTK + 0x1002a088 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002a088 ToDrv_SetGTK + .text.init_wpa_sta_info + 0x1002a118 0xec ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002a118 init_wpa_sta_info + .text.SendEAPOL + 0x1002a204 0x6b8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002a204 SendEAPOL + .text.ClientSendEAPOL + 0x1002a8bc 0x4e8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002a8bc ClientSendEAPOL + .text.ResendTimeout + 0x1002ada4 0x86 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + *fill* 0x1002ae2a 0x2 + .text.EAPOLKeyRecvd + 0x1002ae2c 0x178 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002ae2c EAPOLKeyRecvd + .text.ClientEAPOLKeyRecvd + 0x1002afa4 0x3c0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002afa4 ClientEAPOLKeyRecvd + .text.psk_derive + 0x1002b364 0xb4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002b364 psk_derive + .text.psk_init + 0x1002b418 0xee ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002b418 psk_init + *fill* 0x1002b506 0x2 + .text.psk_strip_rsn_pairwise + 0x1002b508 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002b508 psk_strip_rsn_pairwise + .text.psk_strip_wpa_pairwise + 0x1002b588 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002b588 psk_strip_wpa_pairwise + .text.tkip_send_mic_failure_report + 0x1002b608 0x174 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1002b608 tkip_send_mic_failure_report + .text.pwr_state_check_handler + 0x1002b77c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002b77c pwr_state_check_handler + .text.ips_enter + 0x1002b780 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002b780 ips_enter + .text.ips_leave + 0x1002b828 0x118 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002b828 ips_leave + .text.rtw_pwr_unassociated_idle + 0x1002b940 0x4a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002b940 rtw_pwr_unassociated_idle + .text.rtw_ps_processor + 0x1002b98a 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002b98a rtw_ps_processor + .text.PS_RDY_CHECK + 0x1002b9e2 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002b9e2 PS_RDY_CHECK + .text.rtw_set_ps_mode + 0x1002ba4a 0x6e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002ba4a rtw_set_ps_mode + .text.LPS_RF_ON_check + 0x1002bab8 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bab8 LPS_RF_ON_check + .text.LPS_Enter + 0x1002bb0e 0x6e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bb0e LPS_Enter + .text.LPS_Leave + 0x1002bb7c 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bb7c LPS_Leave + .text.LeaveAllPowerSaveMode + 0x1002bbb8 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bbb8 LeaveAllPowerSaveMode + .text.rtw_init_pwrctrl_priv + 0x1002bbc8 0xd4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bbc8 rtw_init_pwrctrl_priv + .text.rtw_free_pwrctrl_priv + 0x1002bc9c 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bc9c rtw_free_pwrctrl_priv + .text._rtw_pwr_wakeup + 0x1002bcb0 0xdc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bcb0 _rtw_pwr_wakeup + .text.rtw_pm_set_lps + 0x1002bd8c 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bd8c rtw_pm_set_lps + .text.rtw_pm_set_ips + 0x1002bdd4 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002bdd4 rtw_pm_set_ips + .text.rtw_pm_set_tdma_param + 0x1002be18 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002be18 rtw_pm_set_tdma_param + .text.rtw_pm_set_lps_dtim + 0x1002be34 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002be34 rtw_pm_set_lps_dtim + .text.rtw_pm_get_lps_dtim + 0x1002be40 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x1002be40 rtw_pm_get_lps_dtim + .text.recvframe_pull + 0x1002be4c 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.recvframe_pull_tail + 0x1002be6e 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .text.rtw_signal_stat_timer_hdl + 0x1002be90 0x9e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002be90 rtw_signal_stat_timer_hdl + .text._rtw_init_sta_recv_priv + 0x1002bf2e 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002bf2e _rtw_init_sta_recv_priv + .text._rtw_init_recv_priv + 0x1002bf4c 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002bf4c _rtw_init_recv_priv + .text.rtw_mfree_recv_priv_lock + 0x1002bff4 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002bff4 rtw_mfree_recv_priv_lock + .text._rtw_alloc_recvframe + 0x1002c028 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c028 _rtw_alloc_recvframe + .text.rtw_alloc_recvframe + 0x1002c05a 0x26 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c05a rtw_alloc_recvframe + .text.rtw_free_recvframe + 0x1002c080 0x9c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c080 rtw_free_recvframe + .text._rtw_enqueue_recvframe + 0x1002c11c 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c11c _rtw_enqueue_recvframe + .text.rtw_enqueue_recvframe + 0x1002c148 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c148 rtw_enqueue_recvframe + .text.rtw_free_recvframe_queue + 0x1002c172 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c172 rtw_free_recvframe_queue + .text.rtw_free_uc_swdec_pending_queue + 0x1002c1aa 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c1aa rtw_free_uc_swdec_pending_queue + .text._rtw_free_recv_priv + 0x1002c1d2 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c1d2 _rtw_free_recv_priv + .text.rtw_free_buf_pending_queue + 0x1002c202 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c202 rtw_free_buf_pending_queue + .text.recvframe_chkmic + 0x1002c206 0xfe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c206 recvframe_chkmic + .text.decryptor + 0x1002c304 0x9c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c304 decryptor + .text.portctrl + 0x1002c3a0 0x76 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c3a0 portctrl + .text.recv_decache + 0x1002c416 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c416 recv_decache + .text.process_pwrbit_data + 0x1002c444 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c444 process_pwrbit_data + .text.process_wmmps_data + 0x1002c484 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c484 process_wmmps_data + .text.count_rx_stats + 0x1002c50c 0x72 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c50c count_rx_stats + *fill* 0x1002c57e 0x2 + .text.sta2sta_data_frame + 0x1002c580 0x13c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c580 sta2sta_data_frame + .text.ap2sta_data_frame + 0x1002c6bc 0x12c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c6bc ap2sta_data_frame + .text.sta2ap_data_frame + 0x1002c7e8 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c7e8 sta2ap_data_frame + .text.validate_recv_ctrl_frame + 0x1002c870 0x19a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002c870 validate_recv_ctrl_frame + .text.validate_recv_data_frame + 0x1002ca0a 0x258 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002ca0a validate_recv_data_frame + *fill* 0x1002cc62 0x2 + .text.wlanhdr_to_ethhdr + 0x1002cc64 0x13c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002cc64 wlanhdr_to_ethhdr + .text.recvframe_defrag + 0x1002cda0 0xaa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002cda0 recvframe_defrag + .text.recvframe_chk_defrag + 0x1002ce4a 0xb6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002ce4a recvframe_chk_defrag + .text.validate_recv_mgnt_frame + 0x1002cf00 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002cf00 validate_recv_mgnt_frame + .text.validate_recv_frame + 0x1002cf3c 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002cf3c validate_recv_frame + .text.recv_indicatepkt_reorder + 0x1002d004 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002d004 recv_indicatepkt_reorder + .text.process_recv_indicatepkts + 0x1002d026 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002d026 process_recv_indicatepkts + .text.recv_func_prehandle + 0x1002d07e 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002d07e recv_func_prehandle + .text.recv_func_posthandle + 0x1002d0a6 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002d0a6 recv_func_posthandle + .text.recv_func + 0x1002d10a 0x8a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002d10a recv_func + .text.rtw_recv_entry + 0x1002d194 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002d194 rtw_recv_entry + .text.rtw_recv_tasklet + 0x1002d1c4 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1002d1c4 rtw_recv_tasklet + .text.rtw_wep_encrypt + 0x1002d21c 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x1002d21c rtw_wep_encrypt + .text.rtw_wep_decrypt + 0x1002d262 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x1002d262 rtw_wep_decrypt + .text.rtw_tkip_encrypt + 0x1002d2a8 0x6c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x1002d2a8 rtw_tkip_encrypt + .text.rtw_tkip_decrypt + 0x1002d314 0x6c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x1002d314 rtw_tkip_decrypt + .text.rtw_aes_encrypt + 0x1002d380 0x6c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x1002d380 rtw_aes_encrypt + .text.rtw_aes_decrypt + 0x1002d3ec 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x1002d3ec rtw_aes_decrypt + .text.rtw_init_sec_priv + 0x1002d450 0x72 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x1002d450 rtw_init_sec_priv + .text.rtw_free_sec_priv + 0x1002d4c2 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x1002d4c2 rtw_free_sec_priv + .text.wifi_mac_hash + 0x1002d4e2 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .text._addba_timer_hdl + 0x1002d50c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d50c _addba_timer_hdl + .text._rtw_init_stainfo + 0x1002d510 0x7a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d510 _rtw_init_stainfo + .text._rtw_init_sta_priv + 0x1002d58a 0xe8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d58a _rtw_init_sta_priv + .text._rtw_free_sta_xmit_priv_lock + 0x1002d672 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d672 _rtw_free_sta_xmit_priv_lock + .text.rtw_mfree_stainfo + 0x1002d69e 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d69e rtw_mfree_stainfo + .text.rtw_mfree_sta_priv_lock + 0x1002d6ca 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d6ca rtw_mfree_sta_priv_lock + .text._rtw_free_sta_priv + 0x1002d700 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d700 _rtw_free_sta_priv + .text.init_addba_retry_timer + 0x1002d720 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d720 init_addba_retry_timer + .text.rtw_alloc_stainfo + 0x1002d748 0xca ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d748 rtw_alloc_stainfo + .text.rtw_free_stainfo + 0x1002d812 0x1a2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d812 rtw_free_stainfo + .text.rtw_get_stainfo + 0x1002d9b4 0x7c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002d9b4 rtw_get_stainfo + .text.rtw_init_bcmc_stainfo + 0x1002da30 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002da30 rtw_init_bcmc_stainfo + .text.rtw_get_bcmc_stainfo + 0x1002da60 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002da60 rtw_get_bcmc_stainfo + .text.rtw_free_all_stainfo + 0x1002da84 0x5a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x1002da84 rtw_free_all_stainfo + .text.cckrates_included + 0x1002dade 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dade cckrates_included + .text.cckratesonly_included + 0x1002db06 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002db06 cckratesonly_included + .text.networktype_to_raid_ex + 0x1002db2e 0x5e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002db2e networktype_to_raid_ex + .text.judge_network_type + 0x1002db8c 0x4e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002db8c judge_network_type + *fill* 0x1002dbda 0x2 + .text.ratetbl_val_2wifirate + 0x1002dbdc 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dbdc ratetbl_val_2wifirate + .text.is_basicrate + 0x1002dbf0 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dbf0 is_basicrate + .text.ratetbl2rateset + 0x1002dc1c 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dc1c ratetbl2rateset + .text.get_rate_set + 0x1002dc60 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dc60 get_rate_set + .text.UpdateBrateTbl + 0x1002dc8a 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dc8a UpdateBrateTbl + .text.UpdateBrateTblForSoftAP + 0x1002dcbc 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dcbc UpdateBrateTblForSoftAP + .text.Save_DM_Func_Flag + 0x1002dcf0 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dcf0 Save_DM_Func_Flag + .text.Restore_DM_Func_Flag + 0x1002dd06 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dd06 Restore_DM_Func_Flag + .text.Switch_DM_Func + 0x1002dd1c 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dd1c Switch_DM_Func + .text.Set_MSR 0x1002dd38 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dd38 Set_MSR + .text.set_opmode + 0x1002dd5c 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dd5c set_opmode + .text.SelectChannel + 0x1002dda0 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dda0 SelectChannel + .text.SetBWMode + 0x1002ddd4 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002ddd4 SetBWMode + .text.set_channel_bwmode + 0x1002de10 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002de10 set_channel_bwmode + .text.get_my_bssid + 0x1002de66 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002de66 get_my_bssid + .text.get_beacon_interval + 0x1002de6a 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002de6a get_beacon_interval + .text.is_client_associated_to_ap + 0x1002de88 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002de88 is_client_associated_to_ap + .text.is_client_associated_to_ibss + 0x1002dea0 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dea0 is_client_associated_to_ibss + .text.is_IBSS_empty + 0x1002debc 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002debc is_IBSS_empty + .text.decide_wait_for_beacon_timeout + 0x1002dede 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dede decide_wait_for_beacon_timeout + .text.invalidate_cam_all + 0x1002defa 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002defa invalidate_cam_all + .text.write_cam + 0x1002df02 0x76 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002df02 write_cam + .text.clear_cam_entry + 0x1002df78 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002df78 clear_cam_entry + .text.flush_all_cam_entry + 0x1002dfa6 0x5e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002dfa6 flush_all_cam_entry + .text.WMM_param_handler + 0x1002e004 0x26 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e004 WMM_param_handler + .text.WMMOnAssocRsp + 0x1002e02a 0xcc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e02a WMMOnAssocRsp + *fill* 0x1002e0f6 0x2 + .text.HT_caps_handler + 0x1002e0f8 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e0f8 HT_caps_handler + .text.HT_info_handler + 0x1002e198 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e198 HT_info_handler + .text.HTOnAssocRsp + 0x1002e1bc 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e1bc HTOnAssocRsp + .text.ERP_IE_handler + 0x1002e1f4 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e1f4 ERP_IE_handler + .text.VCS_update + 0x1002e210 0x52 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e210 VCS_update + .text.rtw_check_bcn_info + 0x1002e262 0x210 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e262 rtw_check_bcn_info + .text.update_beacon_info + 0x1002e472 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e472 update_beacon_info + *fill* 0x1002e4c6 0x2 + .text.is_ap_in_tkip + 0x1002e4c8 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e4c8 is_ap_in_tkip + .text.wifirate2_ratetbl_inx + 0x1002e540 0x6c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e540 wifirate2_ratetbl_inx + .text.update_basic_rate + 0x1002e5ac 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e5ac update_basic_rate + .text.update_supported_rate + 0x1002e5da 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e5da update_supported_rate + .text.update_MCS_rate + 0x1002e604 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e604 update_MCS_rate + .text.support_short_GI + 0x1002e610 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e610 support_short_GI + .text.get_highest_rate_idx + 0x1002e63e 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e63e get_highest_rate_idx + .text.Update_RA_Entry + 0x1002e658 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e658 Update_RA_Entry + .text.set_sta_rate + 0x1002e660 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e660 set_sta_rate + .text.update_tx_basic_rate + 0x1002e668 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e668 update_tx_basic_rate + .text.check_assoc_AP + 0x1002e6c0 0xf4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e6c0 check_assoc_AP + .text.update_IOT_info + 0x1002e7b4 0x5e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e7b4 update_IOT_info + .text.update_capinfo + 0x1002e812 0x7e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e812 update_capinfo + .text.update_wireless_mode + 0x1002e890 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e890 update_wireless_mode + .text.update_bmc_sta_support_rate + 0x1002e930 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e930 update_bmc_sta_support_rate + .text.update_TSF + 0x1002e958 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e958 update_TSF + .text.correct_TSF + 0x1002e96a 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1002e96a correct_TSF + .text._init_txservq + 0x1002e972 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .text.set_qos 0x1002e988 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .text._rtw_init_sta_xmit_priv + 0x1002e9d8 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002e9d8 _rtw_init_sta_xmit_priv + .text.rtw_mfree_xmit_priv_lock + 0x1002ea1e 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ea1e rtw_mfree_xmit_priv_lock + .text.qos_acm 0x1002ea6a 0x3a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ea6a qos_acm + .text.xmitframe_addmic + 0x1002eaa4 0x15e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002eaa4 xmitframe_addmic + .text.xmitframe_swencrypt + 0x1002ec02 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ec02 xmitframe_swencrypt + .text.rtw_make_wlanhdr + 0x1002ec2e 0x1e0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ec2e rtw_make_wlanhdr + .text.rtw_txframes_pending + 0x1002ee0e 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ee0e rtw_txframes_pending + .text.rtw_txframes_sta_ac_pending + 0x1002ee4a 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ee4a rtw_txframes_sta_ac_pending + .text.rtw_txframes_update_attrib_vcs_info + 0x1002ee80 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ee80 rtw_txframes_update_attrib_vcs_info + .text.rtw_put_snap + 0x1002ef20 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ef20 rtw_put_snap + .text.rtw_update_protection + 0x1002ef64 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ef64 rtw_update_protection + .text.rtw_count_tx_stats + 0x1002efaa 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002efaa rtw_count_tx_stats + .text.rtw_free_xmitbuf_ext + 0x1002effa 0x42 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002effa rtw_free_xmitbuf_ext + .text.rtw_alloc_xmitframe + 0x1002f03c 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f03c rtw_alloc_xmitframe + .text.rtw_free_xmitframe + 0x1002f094 0x52 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f094 rtw_free_xmitframe + .text.rtw_free_xmitframe_queue + 0x1002f0e6 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f0e6 rtw_free_xmitframe_queue + .text.rtw_get_sta_pending + 0x1002f124 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f124 rtw_get_sta_pending + .text.rtw_xmit_classifier + 0x1002f164 0x66 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f164 rtw_xmit_classifier + .text.rtw_xmitframe_enqueue + 0x1002f1ca 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f1ca rtw_xmitframe_enqueue + .text.rtw_alloc_hwxmits + 0x1002f1d8 0x5a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f1d8 rtw_alloc_hwxmits + .text.rtw_free_hwxmits + 0x1002f232 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f232 rtw_free_hwxmits + *fill* 0x1002f246 0x2 + .text._rtw_free_xmit_priv + 0x1002f248 0xcc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f248 _rtw_free_xmit_priv + .text.rtw_init_hwxmits + 0x1002f314 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f314 rtw_init_hwxmits + *fill* 0x1002f32a 0x2 + .text._rtw_init_xmit_priv + 0x1002f32c 0x1b8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f32c _rtw_init_xmit_priv + .text.rtw_get_ff_hwaddr + 0x1002f4e4 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f4e4 rtw_get_ff_hwaddr + .text.xmitframe_enqueue_for_sleeping_sta + 0x1002f4f8 0x1c0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f4f8 xmitframe_enqueue_for_sleeping_sta + .text.dequeue_xmitframes_to_sleeping_queue + 0x1002f6b8 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .text.stop_sta_xmit + 0x1002f70e 0xe8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f70e stop_sta_xmit + .text.wakeup_sta_to_xmit + 0x1002f7f6 0x216 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002f7f6 wakeup_sta_to_xmit + .text.xmit_delivery_enabled_frames + 0x1002fa0c 0x11a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002fa0c xmit_delivery_enabled_frames + *fill* 0x1002fb26 0x2 + .text.rtw_xmit_tasklet + 0x1002fb28 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002fb28 rtw_xmit_tasklet + .text.rtw_xmit_mgnt + 0x1002fb80 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002fb80 rtw_xmit_mgnt + .text.rtw_xmit + 0x1002fb84 0x32a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002fb84 rtw_xmit + .text.rtw_sctx_done_err + 0x1002feae 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002feae rtw_sctx_done_err + .text.rtw_alloc_xmitbuf + 0x1002feba 0x5a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002feba rtw_alloc_xmitbuf + .text.rtw_free_xmitbuf + 0x1002ff14 0x72 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ff14 rtw_free_xmitbuf + .text.rtw_alloc_xmitbuf_ext + 0x1002ff86 0x86 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1002ff86 rtw_alloc_xmitbuf_ext + .text.rtw_sctx_done + 0x1003000c 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1003000c rtw_sctx_done + .text.rtl8195a_free_rx_ring + 0x10030012 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.bus_write32 + 0x10030020 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.bus_write16 + 0x1003007c 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.bus_write8 + 0x100300d8 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.bus_read32 + 0x10030134 0x5a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.bus_read16 + 0x1003018e 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.bus_read8 + 0x100301ea 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.rtl8195a_free_tx_ring + 0x10030246 0x8e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.rtl8195a_init_desc_ring + 0x100302d4 0x140 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x100302d4 rtl8195a_init_desc_ring + .text.rtl8195a_free_desc_ring + 0x10030414 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030414 rtl8195a_free_desc_ring + .text.rtl8195a_reset_desc_ring + 0x10030430 0x96 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030430 rtl8195a_reset_desc_ring + .text.InitLxDmaRtl8195a + 0x100304c6 0x160 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x100304c6 InitLxDmaRtl8195a + *fill* 0x10030626 0x2 + .text.rtl8195a_check_txdesc_closed + 0x10030628 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030628 rtl8195a_check_txdesc_closed + .text.rtl8195a_tx_isr + 0x100306a0 0xe4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .text.InterruptRecognized8195a + 0x10030784 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030784 InterruptRecognized8195a + .text.InitInterrupt8195a + 0x10030814 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030814 InitInterrupt8195a + .text.EnableDMA8195a + 0x10030834 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030834 EnableDMA8195a + .text.EnableInterrupt8195a + 0x1003085c 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x1003085c EnableInterrupt8195a + .text.DisableDMA8195a + 0x1003089c 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x1003089c DisableDMA8195a + .text.DisableInterrupt8195a + 0x100308a8 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x100308a8 DisableInterrupt8195a + .text.UpdateInterruptMask8195a + 0x100308c0 0x62 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x100308c0 UpdateInterruptMask8195a + .text.CheckRxTgRtl8195a + 0x10030922 0x3a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030922 CheckRxTgRtl8195a + .text.rtl8192ee_check_rxdesc_remain + 0x1003095c 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x1003095c rtl8192ee_check_rxdesc_remain + *fill* 0x1003098a 0x2 + .text.rtl8195a_recv_tasklet + 0x1003098c 0x314 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x1003098c rtl8195a_recv_tasklet + .text.rtl8195a_tx_int_handler + 0x10030ca0 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030ca0 rtl8195a_tx_int_handler + .text.InterruptHandle8195a + 0x10030ccc 0x274 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030ccc InterruptHandle8195a + .text.rtl8195a_xmit_tasklet + 0x10030f40 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030f40 rtl8195a_xmit_tasklet + .text.lxbus_set_intf_ops + 0x10030f68 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x10030f68 lxbus_set_intf_ops + .text.GetTxBufDesc + 0x10030fa8 0x4a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .text.UpdateFirstTxbdtoXmitBuf.isra.3 + 0x10030ff2 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .text.check_nic_enough_desc.isra.4 + 0x10031024 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .text.rtl8195ab_init_xmit_priv + 0x10031074 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x10031074 rtl8195ab_init_xmit_priv + .text.rtl8195ab_free_xmit_priv + 0x10031082 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x10031082 rtl8195ab_free_xmit_priv + .text.GetDmaTxbdIdx + 0x1003108a 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x1003108a GetDmaTxbdIdx + .text.rtl8195a_enqueue_xmitbuf + 0x100310a6 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x100310a6 rtl8195a_enqueue_xmitbuf + .text.rtl8195a_dequeue_xmitbuf + 0x100310ca 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x100310ca rtl8195a_dequeue_xmitbuf + .text.SetTxbdForLxDMARtl8195ab + 0x100310ee 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x100310ee SetTxbdForLxDMARtl8195ab + .text.UpdateTxbdHostIndex + 0x1003116e 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x1003116e UpdateTxbdHostIndex + .text.rtw_dump_xframe + 0x100311ac 0x1d2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x100311ac rtw_dump_xframe + .text.check_tx_desc_resource + 0x1003137e 0x3a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x1003137e check_tx_desc_resource + .text.rtw_dequeue_xframe + 0x100313b8 0x94 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x100313b8 rtw_dequeue_xframe + .text.rtw_xmitframe_coalesce + 0x1003144c 0x2b4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x1003144c rtw_xmitframe_coalesce + .text.rtl8195ab_xmitframe_resume + 0x10031700 0xf6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x10031700 rtl8195ab_xmitframe_resume + .text.rtl8195ab_mgnt_xmit + 0x100317f6 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x100317f6 rtl8195ab_mgnt_xmit + .text.rtl8195ab_hal_xmit + 0x10031832 0x10e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x10031832 rtl8195ab_hal_xmit + .text.Hal_GetEfuseDefinition + 0x10031940 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.ResumeTxBeacon + 0x10031970 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.UpdateHalRAMask8195A + 0x100319b4 0x198 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x100319b4 UpdateHalRAMask8195A + .text.HalLittleWifiMCUThreadRtl8195a + 0x10031b4c 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10031b4c HalLittleWifiMCUThreadRtl8195a + .text.HalCheckInReqStateThreadRtl8195a + 0x10031ba0 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10031ba0 HalCheckInReqStateThreadRtl8195a + .text.HalTDMAChangeStateThreadRtl8195a + 0x10031bec 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10031bec HalTDMAChangeStateThreadRtl8195a + .text.rtl8195a_read_chip_version + 0x10031c38 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.Hal_EfuseWordEnableDataWrite + 0x10031cac 0x244 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.Hal_EfusePowerSwitch + 0x10031ef0 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_free_hal_data + 0x10031f04 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.StopTxBeacon + 0x10031f1e 0x4a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.SetHalODMVar8195A + 0x10031f68 0xb8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10031f68 SetHalODMVar8195A + .text.rtl8195a_start_thread + 0x10032020 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032020 rtl8195a_start_thread + .text.rtl8195a_stop_thread + 0x10032088 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032088 rtl8195a_stop_thread + .text.Hal_ReadEFuse + 0x100320ac 0x170 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.GetHalODMVar8195A + 0x1003221c 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x1003221c GetHalODMVar8195A + .text.rtw_flash_map_update.part.12 + 0x10032230 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtw_flash_map_erase + 0x100322d0 0x42 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + *fill* 0x10032312 0x2 + .text.Hal_EfusePgPacketWrite + 0x10032314 0x27c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.Hal_EfuseGetCurrentSize + 0x10032590 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtw_flash_map_write + 0x10032670 0x1ce ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .text.rtl8195a_InitBeaconParameters + 0x1003283e 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x1003283e rtl8195a_InitBeaconParameters + .text._InitBurstPktLen_8195AB + 0x100328ae 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x100328ae _InitBurstPktLen_8195AB + .text.rtl8195a_set_hal_ops + 0x100328b8 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x100328b8 rtl8195a_set_hal_ops + .text.rtl8195a_init_default_value + 0x10032998 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032998 rtl8195a_init_default_value + .text.rtl8195a_InitLLTTable + 0x1003299a 0x4a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x1003299a rtl8195a_InitLLTTable + .text.Hal_GetChnlGroup8195A + 0x100329e4 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x100329e4 Hal_GetChnlGroup8195A + .text.rtw_config_map_read + 0x10032a20 0xea ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032a20 rtw_config_map_read + *fill* 0x10032b0a 0x2 + .text.rtw_config_map_write + 0x10032b0c 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032b0c rtw_config_map_write + .text.Hal_InitPGData + 0x10032bb8 0x5e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032bb8 Hal_InitPGData + .text.Hal_EfuseParseIDCode + 0x10032c16 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032c16 Hal_EfuseParseIDCode + .text.Hal_ReadPowerValueFromPROM_8195A + 0x10032c2e 0x9e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032c2e Hal_ReadPowerValueFromPROM_8195A + .text.Hal_EfuseParseTxPowerInfo_8195A + 0x10032ccc 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032ccc Hal_EfuseParseTxPowerInfo_8195A + .text.Hal_EfuseParseEEPROMVer_8195A + 0x10032d64 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032d64 Hal_EfuseParseEEPROMVer_8195A + .text.Hal_EfuseParsePackageType_8195A + 0x10032d7a 0x6a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032d7a Hal_EfuseParsePackageType_8195A + .text.Hal_EfuseParseChnlPlan_8195A + 0x10032de4 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032de4 Hal_EfuseParseChnlPlan_8195A + .text.Hal_EfuseParseCustomerID_8195A + 0x10032e14 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032e14 Hal_EfuseParseCustomerID_8195A + .text.Hal_EfuseParseXtal_8195A + 0x10032e2a 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032e2a Hal_EfuseParseXtal_8195A + .text.Hal_EfuseParseThermalMeter_8195A + 0x10032e42 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032e42 Hal_EfuseParseThermalMeter_8195A + .text.Hal_ReadRFGainOffset + 0x10032e6a 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032e6a Hal_ReadRFGainOffset + .text.BWMapping_8195A + 0x10032eba 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032eba BWMapping_8195A + .text.SCMapping_8195A + 0x10032eda 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032eda SCMapping_8195A + .text.rtl8195a_update_txdesc + 0x10032f02 0x2d0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10032f02 rtl8195a_update_txdesc + .text.rtl8195a_fill_fake_txdesc + 0x100331d2 0xbe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x100331d2 rtl8195a_fill_fake_txdesc + .text.SetHwReg8195A + 0x10033290 0xcc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10033290 SetHwReg8195A + .text.GetHwReg8195A + 0x10033f50 0x94 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10033f50 GetHwReg8195A + .text.SetHalDefVar8195A + 0x10033fe4 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x10033fe4 SetHalDefVar8195A + .text.GetHalDefVar8195A + 0x100340c4 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x100340c4 GetHalDefVar8195A + .text.PHY_QueryBBReg_8195A_Safe + 0x100340e8 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x100340e8 PHY_QueryBBReg_8195A_Safe + .text.PHY_SetBBReg_8195A_Safe + 0x10034114 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034114 PHY_SetBBReg_8195A_Safe + *fill* 0x1003413e 0x2 + .text.phy_RFSerialRead_8195A + 0x10034140 0xb4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .text.PHY_QueryRFReg_8195A + 0x100341f4 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x100341f4 PHY_QueryRFReg_8195A + .text.PHY_SetRFReg_8195A + 0x1003420c 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x1003420c PHY_SetRFReg_8195A + .text.PHY_MACConfig8195A + 0x10034264 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034264 PHY_MACConfig8195A + .text.PHY_BBConfig8195A + 0x1003427e 0x110 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x1003427e PHY_BBConfig8195A + .text.PHY_RFConfig8195A + 0x1003438e 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x1003438e PHY_RFConfig8195A + .text.PHY_SetTxPowerIndex_8195A + 0x10034392 0x10a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034392 PHY_SetTxPowerIndex_8195A + .text.phy_TxPwrAdjInPercentage + 0x1003449c 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x1003449c phy_TxPwrAdjInPercentage + *fill* 0x100344da 0x2 + .text.PHY_GetTxPowerIndex_8195A + 0x100344dc 0xf0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x100344dc PHY_GetTxPowerIndex_8195A + .text.PHY_SetTxPowerLevel8195A + 0x100345cc 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x100345cc PHY_SetTxPowerLevel8195A + .text.phy_SpurCalibration_8195A + 0x100345d2 0x2b8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x100345d2 phy_SpurCalibration_8195A + .text.phy_SetRegBW_8195A + 0x1003488a 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x1003488a phy_SetRegBW_8195A + .text.phy_PostSetBwMode8195A + 0x100348c8 0x15a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x100348c8 phy_PostSetBwMode8195A + *fill* 0x10034a22 0x2 + .text.phy_SwChnl8195A + 0x10034a24 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034a24 phy_SwChnl8195A + .text.phy_SwChnlAndSetBwMode8195A + 0x10034acc 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034acc phy_SwChnlAndSetBwMode8195A + .text.PHY_HandleSwChnlAndSetBW8195A + 0x10034b1c 0xb0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034b1c PHY_HandleSwChnlAndSetBW8195A + .text.PHY_SetBWMode8195A + 0x10034bcc 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034bcc PHY_SetBWMode8195A + .text.PHY_SwChnl8195A + 0x10034bee 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034bee PHY_SwChnl8195A + .text.PHY_SetSwChnlBWMode8195A + 0x10034c08 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x10034c08 PHY_SetSwChnlBWMode8195A + .text.HalTimerEnable + 0x10034c26 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .text.InitTDMATimer + 0x10034c38 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034c38 InitTDMATimer + .text.ChangeStateByTDMA + 0x10034c60 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034c60 ChangeStateByTDMA + *fill* 0x10034c6e 0x2 + .text.GetMinRateInRRSR + 0x10034c70 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034c70 GetMinRateInRRSR + .text.CheckInReqState + 0x10034ca4 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034ca4 CheckInReqState + *fill* 0x10034cb2 0x2 + .text.InitCheckStateTimer + 0x10034cb4 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034cb4 InitCheckStateTimer + .text.InitGTimer1ms + 0x10034ce4 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034ce4 InitGTimer1ms + .text.DeInitGTimer1ms + 0x10034d30 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034d30 DeInitGTimer1ms + .text.ChangeTransmiteRate + 0x10034d78 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034d78 ChangeTransmiteRate + .text.PowerBitSetting + 0x10034db4 0x7c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034db4 PowerBitSetting + .text.ChkandChangePS + 0x10034e30 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034e30 ChkandChangePS + .text.IssueRsvdPagePacketSetting + 0x10034e94 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034e94 IssueRsvdPagePacketSetting + .text.IssuePSPoll + 0x10034f08 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034f08 IssuePSPoll + .text.WaitTxStateMachineOk + 0x10034f34 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034f34 WaitTxStateMachineOk + .text.IssueNullData + 0x10034f88 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10034f88 IssueNullData + .text.PsCloseRF + 0x10035018 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035018 PsCloseRF + .text.PsOpenRF + 0x1003504c 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x1003504c PsOpenRF + .text.ChkTxQueueIsEmpty + 0x1003507c 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x1003507c ChkTxQueueIsEmpty + .text.InitPS 0x10035094 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035094 InitPS + .text.ConfigListenBeaconPeriod + 0x10035104 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035104 ConfigListenBeaconPeriod + .text.PS_S2_Condition_Match + 0x10035128 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035128 PS_S2_Condition_Match + .text.PS_S4_Condition_Match + 0x1003515c 0x7c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x1003515c PS_S4_Condition_Match + .text.PS_32K_Condition_Match + 0x100351d8 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100351d8 PS_32K_Condition_Match + .text.PS_S2ToS3ToS0State + 0x10035214 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035214 PS_S2ToS3ToS0State + .text.PS_S2ToS0State + 0x1003527c 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x1003527c PS_S2ToS0State + .text.PS_S3ToS2orS0State + 0x10035298 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035298 PS_S3ToS2orS0State + .text.PS_S0ToS1ToS2State + 0x100352c8 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100352c8 PS_S0ToS1ToS2State + .text.PS_S1ToS0orS2State + 0x10035324 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035324 PS_S1ToS0orS2State + .text.PS_S2ToS4State + 0x10035354 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035354 PS_S2ToS4State + .text.PS_S0ToS6State + 0x100353a0 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100353a0 PS_S0ToS6State + .text.PS_S6ToS0State + 0x100353c0 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100353c0 PS_S6ToS0State + .text.CheckTSFIsStable + 0x100353d8 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100353d8 CheckTSFIsStable + .text.WaitHWStateReady + 0x10035428 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035428 WaitHWStateReady + .text.SysClkDown + 0x10035438 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035438 SysClkDown + .text.SysClkUp + 0x100354a8 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100354a8 SysClkUp + .text.ResetPSParm + 0x100354f4 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100354f4 ResetPSParm + .text.PS_S4ToS2State + 0x10035568 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035568 PS_S4ToS2State + .text.SleepTo32K + 0x1003558c 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x1003558c SleepTo32K + .text.Change_PS_State + 0x100355ec 0x1ac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100355ec Change_PS_State + .text.Legacy_PS_Setting + 0x10035798 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035798 Legacy_PS_Setting + .text.PSModeSetting + 0x1003580c 0xa4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x1003580c PSModeSetting + .text.ChangePSStateByRPWM + 0x100358b0 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100358b0 ChangePSStateByRPWM + .text.ChangeTDMAState + 0x100358f4 0x120 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100358f4 ChangeTDMAState + .text.TDMAChangeStateTask + 0x10035a14 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035a14 TDMAChangeStateTask + .text.EnterPS 0x10035a3e 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035a3e EnterPS + .text.SetSmartPSTimer + 0x10035a60 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035a60 SetSmartPSTimer + .text.GTimer7Handle + 0x10035a9c 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035a9c GTimer7Handle + .text.SmartPS2InitTimerAndToGetRxPkt + 0x10035af8 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035af8 SmartPS2InitTimerAndToGetRxPkt + .text.PS_OnBeacon + 0x10035b34 0xb0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035b34 PS_OnBeacon + .text.PSBcnEarlyProcess + 0x10035be4 0xbc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035be4 PSBcnEarlyProcess + .text.PSMtiBcnEarlyProcess + 0x10035ca0 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035ca0 PSMtiBcnEarlyProcess + .text.PSRxBcnProcess + 0x10035d4c 0x150 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035d4c PSRxBcnProcess + .text.TxPktInPSOn + 0x10035e9c 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035e9c TxPktInPSOn + .text.PsBcnToProcess + 0x10035eda 0xba ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035eda PsBcnToProcess + .text.GTimer6Handle + 0x10035f94 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035f94 GTimer6Handle + .text.RPWMProcess + 0x10035fe0 0x3a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10035fe0 RPWMProcess + *fill* 0x1003601a 0x2 + .text.PSSetMode + 0x1003601c 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x1003601c PSSetMode + .text.SpeRPT 0x10036094 0x120 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036094 SpeRPT + .text.ISR_BcnEarly + 0x100361b4 0x6c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100361b4 ISR_BcnEarly + .text.ISR_MtiBcnEarly + 0x10036220 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036220 ISR_MtiBcnEarly + .text.ISR_RxBcn + 0x10036254 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036254 ISR_RxBcn + .text.ISR_RxBCMD1 + 0x10036270 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036270 ISR_RxBCMD1 + .text.ISR_RxBCMD0 + 0x100362a0 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100362a0 ISR_RxBCMD0 + .text.ISR_RxUCMD1 + 0x100362f4 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100362f4 ISR_RxUCMD1 + .text.ISR_RxUCMD0 + 0x10036332 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036332 ISR_RxUCMD0 + .text.ISR_TxPktIn + 0x1003636e 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x1003636e ISR_TxPktIn + .text.ISR_TXCCX + 0x10036380 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036380 ISR_TXCCX + .text.H2CHDL_SetPwrMode + 0x10036384 0x128 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036384 H2CHDL_SetPwrMode + .text.CheckInReqStateTask + 0x100364ac 0x46 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100364ac CheckInReqStateTask + .text.HalGetNullTxRpt + 0x100364f2 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100364f2 HalGetNullTxRpt + *fill* 0x1003650e 0x2 + .text.ISR_TBTT + 0x10036510 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036510 ISR_TBTT + .text.H2CHDL_BcnIgnoreEDCCA + 0x10036588 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036588 H2CHDL_BcnIgnoreEDCCA + *fill* 0x10036596 0x2 + .text.PMUInitial + 0x10036598 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10036598 PMUInitial + .text.PMUTask 0x100365e8 0x10c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x100365e8 PMUTask + .text.PHY_RF6052SetBandwidth8195A + 0x100366f4 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + 0x100366f4 PHY_RF6052SetBandwidth8195A + .text.PHY_RF6052_Config8195A + 0x10036738 0xb8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + 0x10036738 PHY_RF6052_Config8195A + .text.process_rssi + 0x100367f0 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .text.rtl8195a_query_rx_desc_status + 0x10036826 0xb0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + 0x10036826 rtl8195a_query_rx_desc_status + .text.rtl8195a_query_rx_phy_status + 0x100368d6 0x158 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + 0x100368d6 rtl8195a_query_rx_phy_status + .text.hal_com_get_channel_plan + 0x10036a2e 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036a2e hal_com_get_channel_plan + .text.HAL_IsLegalChannel + 0x10036a62 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036a62 HAL_IsLegalChannel + *fill* 0x10036a7e 0x2 + .text.MRateToHwRate + 0x10036a80 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036a80 MRateToHwRate + .text.HwRateToMRate + 0x10036a94 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036a94 HwRateToMRate + .text.HalSetBrateCfg + 0x10036aa8 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036aa8 HalSetBrateCfg + .text.Hal_MappingOutPipe + 0x10036b54 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036b54 Hal_MappingOutPipe + .text.hal_init_macaddr + 0x10036b70 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036b70 hal_init_macaddr + *fill* 0x10036b9a 0x2 + .text.hw_var_port_switch + 0x10036b9c 0x288 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036b9c hw_var_port_switch + .text.SetHwReg + 0x10036e24 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036e24 SetHwReg + .text.GetHwReg + 0x10036e2e 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036e2e GetHwReg + .text.switch_power_saving_mode + 0x10036e30 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036e30 switch_power_saving_mode + .text.rtw_bb_rf_gain_offset + 0x10036e74 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x10036e74 rtw_bb_rf_gain_offset + .text.PHY_GetRateValuesOfTxPowerByRate + 0x10036ebc 0x196 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10036ebc PHY_GetRateValuesOfTxPowerByRate + *fill* 0x10037052 0x2 + .text.PHY_StoreTxPowerByRateNew + 0x10037054 0x9c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10037054 PHY_StoreTxPowerByRateNew + .text.PHY_InitTxPowerByRate + 0x100370f0 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100370f0 PHY_InitTxPowerByRate + .text.PHY_StoreTxPowerByRate + 0x10037108 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10037108 PHY_StoreTxPowerByRate + .text.PHY_GetTxPowerIndexBase + 0x10037120 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10037120 PHY_GetTxPowerIndexBase + .text.PHY_GetTxPowerTrackingOffset + 0x100371c0 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100371c0 PHY_GetTxPowerTrackingOffset + .text.PHY_GetRateIndexOfTxPowerByRate + 0x100371ec 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100371ec PHY_GetRateIndexOfTxPowerByRate + .text.PHY_GetTxPowerByRate + 0x10037200 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10037200 PHY_GetTxPowerByRate + .text.phy_StoreTxPowerByRateBase + 0x10037260 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10037260 phy_StoreTxPowerByRateBase + .text.PHY_SetTxPowerByRate + 0x100372ac 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100372ac PHY_SetTxPowerByRate + .text.phy_ConvertTxPowerByRateInDbmToRelativeValues + 0x100372e8 0x100 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100372e8 phy_ConvertTxPowerByRateInDbmToRelativeValues + .text.PHY_TxPowerByRateConfiguration + 0x100373e8 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100373e8 PHY_TxPowerByRateConfiguration + .text.PHY_SetTxPowerIndexByRateArray + 0x100373fa 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100373fa PHY_SetTxPowerIndexByRateArray + .text.PHY_SetTxPowerIndexByRateSection + 0x10037438 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10037438 PHY_SetTxPowerIndexByRateSection + .text.PHY_SetTxPowerLevelByPath + 0x1003749c 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x1003749c PHY_SetTxPowerLevelByPath + .text.phy_GetWorldWideLimit + 0x100374d2 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100374d2 phy_GetWorldWideLimit + .text.PHY_GetTxPowerLimit + 0x100374fe 0x128 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100374fe PHY_GetTxPowerLimit + *fill* 0x10037626 0x2 + .text.PHY_ConvertTxPowerLimitToPowerIndex + 0x10037628 0x150 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10037628 PHY_ConvertTxPowerLimitToPowerIndex + .text.PHY_InitTxPowerLimit + 0x10037778 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x10037778 PHY_InitTxPowerLimit + .text.PHY_SetTxPowerLimit + 0x100377c0 0x7c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x100377c0 PHY_SetTxPowerLimit + .text.PHY_GetTxPowerIndex + 0x1003783c 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x1003783c PHY_GetTxPowerIndex + .text.rtw_hal_chip_configure + 0x1003784c 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x1003784c rtw_hal_chip_configure + .text.rtw_hal_read_chip_info + 0x10037862 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037862 rtw_hal_read_chip_info + .text.rtw_hal_read_chip_version + 0x10037878 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037878 rtw_hal_read_chip_version + .text.rtw_hal_def_value_init + 0x1003788e 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x1003788e rtw_hal_def_value_init + .text.rtw_hal_free_data + 0x100378a4 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100378a4 rtw_hal_free_data + .text.rtw_hal_dm_init + 0x100378ba 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100378ba rtw_hal_dm_init + .text.rtw_hal_dm_deinit + 0x100378d0 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100378d0 rtw_hal_dm_deinit + .text.rtw_hal_init + 0x100378e6 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100378e6 rtw_hal_init + .text.rtw_hal_deinit + 0x10037910 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037910 rtw_hal_deinit + .text.rtw_hal_set_hwreg + 0x1003792a 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x1003792a rtw_hal_set_hwreg + .text.rtw_hal_get_hwreg + 0x10037938 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037938 rtw_hal_get_hwreg + .text.rtw_hal_set_def_var + 0x10037946 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037946 rtw_hal_set_def_var + .text.rtw_hal_get_def_var + 0x10037958 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037958 rtw_hal_get_def_var + .text.rtw_hal_set_odm_var + 0x1003796a 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x1003796a rtw_hal_set_odm_var + .text.rtw_hal_get_odm_var + 0x10037978 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037978 rtw_hal_get_odm_var + .text.rtw_hal_enable_interrupt + 0x10037986 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037986 rtw_hal_enable_interrupt + .text.rtw_hal_disable_interrupt + 0x100379a8 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100379a8 rtw_hal_disable_interrupt + .text.rtw_hal_inirp_init + 0x100379ca 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100379ca rtw_hal_inirp_init + .text.rtw_hal_inirp_deinit + 0x100379dc 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100379dc rtw_hal_inirp_deinit + .text.rtw_hal_irp_reset + 0x100379ee 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100379ee rtw_hal_irp_reset + .text.rtw_hal_xmit + 0x100379fc 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x100379fc rtw_hal_xmit + .text.rtw_hal_mgnt_xmit + 0x10037a0e 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037a0e rtw_hal_mgnt_xmit + .text.rtw_hal_init_xmit_priv + 0x10037a20 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037a20 rtw_hal_init_xmit_priv + .text.rtw_hal_free_xmit_priv + 0x10037a32 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037a32 rtw_hal_free_xmit_priv + .text.rtw_hal_update_ra_mask + 0x10037a40 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037a40 rtw_hal_update_ra_mask + .text.rtw_hal_add_ra_tid + 0x10037a6e 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037a6e rtw_hal_add_ra_tid + .text.rtw_hal_clone_data + 0x10037a7c 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037a7c rtw_hal_clone_data + .text.rtw_hal_start_thread + 0x10037a8a 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037a8a rtw_hal_start_thread + .text.rtw_hal_stop_thread + 0x10037a98 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037a98 rtw_hal_stop_thread + .text.rtw_hal_read_bbreg + 0x10037aa6 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037aa6 rtw_hal_read_bbreg + .text.rtw_hal_write_bbreg + 0x10037ada 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037ada rtw_hal_write_bbreg + .text.rtw_hal_read_rfreg + 0x10037b06 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037b06 rtw_hal_read_rfreg + .text.rtw_hal_write_rfreg + 0x10037b18 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037b18 rtw_hal_write_rfreg + .text.rtw_hal_interrupt_handler + 0x10037b2c 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037b2c rtw_hal_interrupt_handler + .text.rtw_hal_set_bwmode + 0x10037b3e 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037b3e rtw_hal_set_bwmode + .text.rtw_hal_set_chan + 0x10037b4c 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037b4c rtw_hal_set_chan + .text.rtw_hal_set_chnl_bw + 0x10037b5a 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037b5a rtw_hal_set_chnl_bw + .text.rtw_hal_dm_watchdog + 0x10037b70 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037b70 rtw_hal_dm_watchdog + .text.rtw_hal_macid_sleep + 0x10037b86 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037b86 rtw_hal_macid_sleep + .text.rtw_hal_macid_wakeup + 0x10037ba6 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037ba6 rtw_hal_macid_wakeup + .text.decide_chip_type_by_device_id + 0x10037bc6 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x10037bc6 decide_chip_type_by_device_id + .text.rtw_net_get_stats + 0x10037bcc 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .text.netdev_if2_close + 0x10037c1c 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .text.netdev_close + 0x10037c3c 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .text.rtw_if1_deinit + 0x10037c98 0x9a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .text.rtw_os_indicate_connect + 0x10037d32 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10037d32 rtw_os_indicate_connect + .text.rtw_os_indicate_scan_done + 0x10037d36 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10037d36 rtw_os_indicate_scan_done + .text.rtw_reset_securitypriv + 0x10037d3a 0xf4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10037d3a rtw_reset_securitypriv + .text.rtw_os_indicate_disconnect + 0x10037e2e 0x4a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10037e2e rtw_os_indicate_disconnect + .text.rtw_init_netdev + 0x10037e78 0x150 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10037e78 rtw_init_netdev + .text.rtw_drv_if2_init + 0x10037fc8 0x208 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10037fc8 rtw_drv_if2_init + .text.rtw_drv_if2_stop + 0x100381d0 0x56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x100381d0 rtw_drv_if2_stop + .text.rtw_drv_if2_free + 0x10038226 0x4e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10038226 rtw_drv_if2_free + .text._netdev_open + 0x10038274 0x11c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10038274 _netdev_open + .text._netdev_if2_open + 0x10038390 0xbc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10038390 _netdev_if2_open + .text.netdev_if2_open + 0x1003844c 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x1003844c netdev_if2_open + .text.netdev_open + 0x10038474 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10038474 netdev_open + .text.rtw_drv_probe + 0x1003849c 0x180 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x1003849c rtw_drv_probe + .text.rtw_dev_remove + 0x1003861c 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x1003861c rtw_dev_remove + .text.rtw_drv_entry + 0x10038660 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10038660 rtw_drv_entry + .text.rtw_drv_halt + 0x1003868c 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x1003868c rtw_drv_halt + .text.rtw_wx_set_autoreconnect + 0x100386bc 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_wx_get_autoreconnect + 0x100386ea 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_forwarding_set + 0x100386f8 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_set_ch_deauth + 0x1003871a 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + *fill* 0x1003873a 0x2 + .text.get_priv_size + 0x1003873c 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_wx_del_custome_ie + 0x10038750 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_wx_set_pscan_freq + 0x1003879c 0x82 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_wx_update_custome_ie + 0x1003881e 0x72 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_set_tos_value + 0x10038890 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_get_tx_power + 0x100388b0 0x144 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_wx_set_custome_ie + 0x100389f4 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_pm_get + 0x10038aa0 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_pm_set + 0x10038ae4 0xb2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + *fill* 0x10038b96 0x2 + .text.rtw_wx_read32 + 0x10038b98 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_wx_write32 + 0x10038c44 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_wx_set_freq.isra.10 + 0x10038ca8 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_ex_set + 0x10038d50 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038d50 rtw_ex_set + .text.wireless_send_event + 0x10038e10 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038e10 wireless_send_event + .text.indicate_wx_custom_event + 0x10038e1a 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038e1a indicate_wx_custom_event + .text.indicate_wx_scan_result_present + 0x10038e76 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038e76 indicate_wx_scan_result_present + .text.indicate_wx_scan_complete_event + 0x10038e9e 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038e9e indicate_wx_scan_complete_event + .text.rtw_indicate_sta_assoc + 0x10038ec8 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038ec8 rtw_indicate_sta_assoc + .text.rtw_indicate_sta_disassoc + 0x10038f18 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038f18 rtw_indicate_sta_disassoc + .text.rtw_indicate_wx_assoc_event + 0x10038f70 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038f70 rtw_indicate_wx_assoc_event + .text.rtw_indicate_wx_disassoc_event + 0x10038fa2 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038fa2 rtw_indicate_wx_disassoc_event + .text.rtw_set_wpa_ie + 0x10038fd2 0x116 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10038fd2 rtw_set_wpa_ie + .text.strtopsk + 0x100390e8 0x6a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x100390e8 strtopsk + *fill* 0x10039152 0x2 + .text.rtw_wx_get_passphrase + 0x10039154 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10039154 rtw_wx_get_passphrase + .text.rtw_wx_set_ap_essid + 0x100391a0 0xf0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x100391a0 rtw_wx_set_ap_essid + .text.mac_reg_dump + 0x10039290 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10039290 mac_reg_dump + .text.bb_reg_dump + 0x1003933c 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x1003933c bb_reg_dump + .text.rf_reg_dump + 0x10039398 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10039398 rf_reg_dump + .text.rtw_dbg_port + 0x10039410 0x668 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .text.rtw_set_sta_num + 0x10039a78 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10039a78 rtw_set_sta_num + .text.rtw_ex_get_drv_ability + 0x10039a94 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10039a94 rtw_ex_get_drv_ability + .text.rtw_ex_get + 0x10039b54 0x298 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10039b54 rtw_ex_get + .text.rtw_ioctl + 0x10039dec 0xf8c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x10039dec rtw_ioctl + .text.rtw_os_recv_resource_init + 0x1003ad78 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + 0x1003ad78 rtw_os_recv_resource_init + .text.rtw_os_recv_resource_alloc + 0x1003ad7c 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + 0x1003ad7c rtw_os_recv_resource_alloc + .text.rtw_os_recv_resource_free + 0x1003ad86 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + 0x1003ad86 rtw_os_recv_resource_free + .text.rtw_tkip_countermeasure + 0x1003ad88 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + 0x1003ad88 rtw_tkip_countermeasure + .text.rtw_handle_tkip_mic_err + 0x1003ae28 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + 0x1003ae28 rtw_handle_tkip_mic_err + .text.rtw_recv_indicatepkt + 0x1003aed0 0x24e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + 0x1003aed0 rtw_recv_indicatepkt + *fill* 0x1003b11e 0x2 + .text.skb_fail_inc + 0x1003b120 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b120 skb_fail_inc + .text.skb_fail_get_and_rst + 0x1003b13c 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b13c skb_fail_get_and_rst + .text.init_skb_pool + 0x1003b158 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b158 init_skb_pool + .text.init_skb_data_pool + 0x1003b1b0 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b1b0 init_skb_data_pool + .text.alloc_skb + 0x1003b208 0x100 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b208 alloc_skb + .text.kfree_skb + 0x1003b308 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b308 kfree_skb + .text.kfree_skb_chk_key + 0x1003b370 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b370 kfree_skb_chk_key + .text.skb_put 0x1003b374 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b374 skb_put + .text.skb_reserve + 0x1003b3a8 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b3a8 skb_reserve + .text.dev_alloc_skb + 0x1003b3b6 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b3b6 dev_alloc_skb + .text.skb_end_pointer + 0x1003b3d2 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b3d2 skb_end_pointer + .text.skb_set_tail_pointer + 0x1003b3d6 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b3d6 skb_set_tail_pointer + .text.skb_pull + 0x1003b3de 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b3de skb_pull + .text.skb_copy + 0x1003b3f6 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1003b3f6 skb_copy + .text.rtw_remainder_len + 0x1003b41e 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b41e rtw_remainder_len + .text._rtw_open_pktfile + 0x1003b42a 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b42a _rtw_open_pktfile + .text._rtw_pktfile_read + 0x1003b43c 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b43c _rtw_pktfile_read + .text.rtw_set_tx_chksum_offload + 0x1003b46a 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b46a rtw_set_tx_chksum_offload + .text.rtw_os_xmit_resource_alloc + 0x1003b46c 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b46c rtw_os_xmit_resource_alloc + .text.rtw_os_xmit_resource_free + 0x1003b476 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b476 rtw_os_xmit_resource_free + .text.rtw_os_pkt_complete + 0x1003b478 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b478 rtw_os_pkt_complete + .text.rtw_os_xmit_complete + 0x1003b480 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b480 rtw_os_xmit_complete + .text.rtw_os_xmit_schedule + 0x1003b492 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b492 rtw_os_xmit_schedule + .text.rtw_xmit_entry + 0x1003b4ce 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x1003b4ce rtw_xmit_entry + .text.rtw_alloc_etherdev_with_old_priv + 0x1003b51a 0x16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + 0x1003b51a rtw_alloc_etherdev_with_old_priv + .text.rtw_alloc_etherdev + 0x1003b530 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + 0x1003b530 rtw_alloc_etherdev + .text.rtw_free_netdev + 0x1003b55c 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + 0x1003b55c rtw_free_netdev + *fill* 0x1003b57a 0x2 + .text.timer_wrapper + 0x1003b57c 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b57c timer_wrapper + .text.alloc_etherdev + 0x1003b5d0 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b5d0 alloc_etherdev + .text.free_netdev + 0x1003b62c 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b62c free_netdev + .text.dev_alloc_name + 0x1003b646 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b646 dev_alloc_name + .text.init_timer_wrapper + 0x1003b650 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b650 init_timer_wrapper + .text.deinit_timer_wrapper + 0x1003b670 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b670 deinit_timer_wrapper + .text.init_timer + 0x1003b6bc 0xb8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b6bc init_timer + .text.mod_timer + 0x1003b774 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b774 mod_timer + .text.cancel_timer_ex + 0x1003b854 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b854 cancel_timer_ex + .text.del_timer_sync + 0x1003b89c 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b89c del_timer_sync + .text.rtw_init_timer + 0x1003b900 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b900 rtw_init_timer + .text.rtw_set_timer + 0x1003b908 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b908 rtw_set_timer + .text.rtw_cancel_timer + 0x1003b90c 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b90c rtw_cancel_timer + .text.rtw_del_timer + 0x1003b916 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b916 rtw_del_timer + *fill* 0x1003b91a 0x2 + .text.rltk_get_idx_bydev + 0x1003b91c 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b91c rltk_get_idx_bydev + .text.rltk_wlan_init + 0x1003b92c 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b92c rltk_wlan_init + .text.rltk_wlan_deinit + 0x1003b9b4 0xc4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003b9b4 rltk_wlan_deinit + .text.rltk_wlan_start + 0x1003ba78 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003ba78 rltk_wlan_start + .text.rltk_wlan_check_isup + 0x1003baac 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003baac rltk_wlan_check_isup + .text.rltk_wlan_tx_inc + 0x1003babc 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003babc rltk_wlan_tx_inc + .text.rltk_wlan_tx_dec + 0x1003bad0 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bad0 rltk_wlan_tx_dec + .text.rltk_wlan_get_recv_skb + 0x1003bae4 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bae4 rltk_wlan_get_recv_skb + .text.rltk_wlan_alloc_skb + 0x1003baf4 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003baf4 rltk_wlan_alloc_skb + .text.rltk_wlan_send_skb + 0x1003bb34 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bb34 rltk_wlan_send_skb + .text.rltk_netif_rx + 0x1003bb68 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bb68 rltk_netif_rx + .text.rltk_set_sta_num + 0x1003bc14 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bc14 rltk_set_sta_num + .text.rltk_wlan_control + 0x1003bc18 0x94 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bc18 rltk_wlan_control + .text.rltk_wlan_running + 0x1003bcac 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bcac rltk_wlan_running + .text.rltk_wlan_statistic + 0x1003bcc4 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bcc4 rltk_wlan_statistic + .text.rltk_wlan_handshake_done + 0x1003bd8c 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bd8c rltk_wlan_handshake_done + .text.rltk_wlan_is_connected_to_ap + 0x1003bdc0 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1003bdc0 rltk_wlan_is_connected_to_ap + .text.Efuse_PowerSwitch + 0x1003be04 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003be04 Efuse_PowerSwitch + .text.Efuse_GetCurrentSize + 0x1003be10 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003be10 Efuse_GetCurrentSize + .text.Efuse_CalculateWordCnts + 0x1003be1c 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003be1c Efuse_CalculateWordCnts + .text.EFUSE_GetEfuseDefinition + 0x1003be40 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003be40 EFUSE_GetEfuseDefinition + .text.efuse_OneByteRead + 0x1003be54 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003be54 efuse_OneByteRead + .text.efuse_OneByteWrite + 0x1003be88 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003be88 efuse_OneByteWrite + .text.Efuse_PgPacketWrite + 0x1003bebc 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003bebc Efuse_PgPacketWrite + .text.efuse_WordEnableDataRead + 0x1003bed0 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003bed0 efuse_WordEnableDataRead + .text.Efuse_WordEnableDataWrite + 0x1003bf02 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003bf02 Efuse_WordEnableDataWrite + .text.efuse_GetCurrentSize + 0x1003bf16 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003bf16 efuse_GetCurrentSize + .text.rtw_efuse_map_read + 0x1003bf3e 0x62 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003bf3e rtw_efuse_map_read + .text.rtw_efuse_map_write + 0x1003bfa0 0x180 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x1003bfa0 rtw_efuse_map_write + .text.rtw_macaddr_cfg + 0x1003c120 0xc4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + 0x1003c120 rtw_macaddr_cfg + .text.rtw_get_cipher_info + 0x1003c1e4 0x7a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + 0x1003c1e4 rtw_get_cipher_info + .text.rtw_get_bcn_info + 0x1003c25e 0xd0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + 0x1003c25e rtw_get_bcn_info + .text.rtw_init_default_value + 0x1003c32e 0x6e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + 0x1003c32e rtw_init_default_value + .text.rtw_cancel_all_timer + 0x1003c39c 0x6a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + 0x1003c39c rtw_cancel_all_timer + .text.rtw_free_drv_sw + 0x1003c406 0x76 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + 0x1003c406 rtw_free_drv_sw + .text.rtw_reset_drv_sw + 0x1003c47c 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + 0x1003c47c rtw_reset_drv_sw + .text.rtw_init_drv_sw + 0x1003c4d8 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + 0x1003c4d8 rtw_init_drv_sw + .text.rtw_start_drv_threads + 0x1003c560 0xbc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + 0x1003c560 rtw_start_drv_threads + .text.rtw_stop_drv_threads + 0x1003c61c 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + 0x1003c61c rtw_stop_drv_threads + .text.rtw_read8 + 0x1003c650 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + 0x1003c650 rtw_read8 + .text.rtw_read16 + 0x1003c65e 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + 0x1003c65e rtw_read16 + .text.rtw_read32 + 0x1003c66c 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + 0x1003c66c rtw_read32 + .text.rtw_write8 + 0x1003c67a 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + 0x1003c67a rtw_write8 + .text.rtw_write16 + 0x1003c688 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + 0x1003c688 rtw_write16 + .text.rtw_write32 + 0x1003c696 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + 0x1003c696 rtw_write32 + .text.rtw_do_join + 0x1003c6a4 0xa2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + 0x1003c6a4 rtw_do_join + *fill* 0x1003c746 0x2 + .text.rtw_set_802_11_bssid + 0x1003c748 0x184 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + 0x1003c748 rtw_set_802_11_bssid + .text.rtw_set_802_11_ssid + 0x1003c8cc 0x108 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + 0x1003c8cc rtw_set_802_11_ssid + .text.rtw_set_802_11_infrastructure_mode + 0x1003c9d4 0xa2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + 0x1003c9d4 rtw_set_802_11_infrastructure_mode + .text.rtw_set_802_11_bssid_list_scan + 0x1003ca76 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + 0x1003ca76 rtw_set_802_11_bssid_list_scan + .text.rtw_set_802_11_authentication_mode + 0x1003cac6 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + 0x1003cac6 rtw_set_802_11_authentication_mode + .text.rtw_set_802_11_add_wep + 0x1003cae8 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + 0x1003cae8 rtw_set_802_11_add_wep + .text.ODM_InitRAInfo + 0x1003cb48 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003cb48 ODM_InitRAInfo + .text.InitialRateUpdate + 0x1003cbe8 0x100 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003cbe8 InitialRateUpdate + .text.RateUp_search_RateMask + 0x1003cce8 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003cce8 RateUp_search_RateMask + .text.RateDown_search_RateMask + 0x1003cd1a 0x52 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003cd1a RateDown_search_RateMask + .text.StartRateByRSSI + 0x1003cd6c 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003cd6c StartRateByRSSI + .text.RateUpRAM8195A + 0x1003cd96 0x94 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003cd96 RateUpRAM8195A + .text.RateDownTrying + 0x1003ce2a 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003ce2a RateDownTrying + *fill* 0x1003ce66 0x2 + .text.TryDone 0x1003ce68 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003ce68 TryDone + .text.RateDownStepRAM8195A + 0x1003cf00 0x9e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003cf00 RateDownStepRAM8195A + *fill* 0x1003cf9e 0x2 + .text.RateDecisionRAM8195A + 0x1003cfa0 0xe4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003cfa0 RateDecisionRAM8195A + .text.ArfrRefresh + 0x1003d084 0x208 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003d084 ArfrRefresh + .text.H2CHDL_Set_MACID_Config + 0x1003d28c 0xc4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003d28c H2CHDL_Set_MACID_Config + .text.PHY_DM_RA_SetRSSI_8195A + 0x1003d350 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1003d350 PHY_DM_RA_SetRSSI_8195A + .text.CheckPositive.isra.0 + 0x1003d37e 0xe2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .text.ODM_ReadAndConfig_MP_8195A_AGC_TAB + 0x1003d460 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + 0x1003d460 ODM_ReadAndConfig_MP_8195A_AGC_TAB + .text.ODM_ReadAndConfig_MP_8195A_PHY_REG + 0x1003d4d8 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + 0x1003d4d8 ODM_ReadAndConfig_MP_8195A_PHY_REG + .text.ODM_GetVersion_MP_8195A_PHY_REG + 0x1003d550 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + 0x1003d550 ODM_GetVersion_MP_8195A_PHY_REG + .text.ODM_ReadAndConfig_MP_8195A_PHY_REG_PG + 0x1003d554 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + 0x1003d554 ODM_ReadAndConfig_MP_8195A_PHY_REG_PG + .text.odm_ConfigRFReg_8195A + 0x1003d588 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + 0x1003d588 odm_ConfigRFReg_8195A + .text.odm_ConfigRF_RadioA_8195A + 0x1003d5c0 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + 0x1003d5c0 odm_ConfigRF_RadioA_8195A + .text.odm_ConfigMAC_8195A + 0x1003d5d0 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + 0x1003d5d0 odm_ConfigMAC_8195A + .text.odm_ConfigBB_AGC_8195A + 0x1003d5d4 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + 0x1003d5d4 odm_ConfigBB_AGC_8195A + .text.odm_ConfigBB_PHY_REG_PG_8195A + 0x1003d5e4 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + 0x1003d5e4 odm_ConfigBB_PHY_REG_PG_8195A + .text.odm_ConfigBB_PHY_8195A + 0x1003d612 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + 0x1003d612 odm_ConfigBB_PHY_8195A + .text.odm_ConfigBB_TXPWR_LMT_8195A + 0x1003d65a 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + 0x1003d65a odm_ConfigBB_TXPWR_LMT_8195A + *fill* 0x1003d67e 0x2 + .text.ODM_CmnInfoInit + 0x1003d680 0xf4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003d680 ODM_CmnInfoInit + .text.ODM_CmnInfoHook + 0x1003d774 0xa4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003d774 ODM_CmnInfoHook + .text.ODM_CmnInfoPtrArrayHook + 0x1003d818 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003d818 ODM_CmnInfoPtrArrayHook + *fill* 0x1003d826 0x2 + .text.ODM_CmnInfoUpdate + 0x1003d828 0xd0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003d828 ODM_CmnInfoUpdate + .text.odm_CommonInfoSelfInit + 0x1003d8f8 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003d8f8 odm_CommonInfoSelfInit + .text.ODM_DMInit + 0x1003d96c 0x4e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003d96c ODM_DMInit + .text.odm_CommonInfoSelfUpdate + 0x1003d9ba 0x52 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003d9ba odm_CommonInfoSelfUpdate + .text.ODM_DMWatchdog + 0x1003da0c 0x6a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003da0c ODM_DMWatchdog + *fill* 0x1003da76 0x2 + .text.PhyDM_Get_Structure + 0x1003da78 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x1003da78 PhyDM_Get_Structure + .text.Phydm_CheckAdaptivity + 0x1003da9c 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + 0x1003da9c Phydm_CheckAdaptivity + .text.Phydm_NHMCounterStatisticsInit + 0x1003daca 0x76 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + 0x1003daca Phydm_NHMCounterStatisticsInit + .text.Phydm_SetEDCCAThreshold + 0x1003db40 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + 0x1003db40 Phydm_SetEDCCAThreshold + .text.Phydm_MACEDCCAState + 0x1003db78 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + 0x1003db78 Phydm_MACEDCCAState + .text.Phydm_AdaptivityInit + 0x1003dbb6 0xdc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + 0x1003dbb6 Phydm_AdaptivityInit + *fill* 0x1003dc92 0x2 + .text.Phydm_Adaptivity + 0x1003dc94 0x120 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + 0x1003dc94 Phydm_Adaptivity + .text.ODM_CfoTrackingInit + 0x1003ddb4 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + 0x1003ddb4 ODM_CfoTrackingInit + .text.ODM_CfoTracking + 0x1003ddde 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + 0x1003ddde ODM_CfoTracking + .text.ODM_ParsingCFO + 0x1003ddfe 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + 0x1003ddfe ODM_ParsingCFO + .text.ODM_InitDebugSetting + 0x1003de30 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + 0x1003de30 ODM_InitDebugSetting + .text.ODM_Write_DIG + 0x1003de44 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003de44 ODM_Write_DIG + .text.odm_ForbiddenIGICheck + 0x1003dee4 0x92 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003dee4 odm_ForbiddenIGICheck + .text.ODM_Write_CCK_CCA_Thres + 0x1003df76 0x3a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003df76 ODM_Write_CCK_CCA_Thres + .text.odm_DIGInit + 0x1003dfb0 0x9a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003dfb0 odm_DIGInit + .text.odm_DigAbort + 0x1003e04a 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003e04a odm_DigAbort + .text.odm_DIGbyRSSI_LPS + 0x1003e06c 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003e06c odm_DIGbyRSSI_LPS + .text.odm_FAThresholdCheck + 0x1003e118 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003e118 odm_FAThresholdCheck + .text.odm_DIG 0x1003e144 0x260 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003e144 odm_DIG + .text.odm_FalseAlarmCounterStatistics + 0x1003e3a4 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003e3a4 odm_FalseAlarmCounterStatistics + .text.odm_CCKPacketDetectionThresh + 0x1003e3d0 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x1003e3d0 odm_CCKPacketDetectionThresh + .text.odm_RxPhyStatus8195A_Parsing + 0x1003e428 0x104 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x1003e428 odm_RxPhyStatus8195A_Parsing + .text.odm_Process_RSSIForDM_8195A + 0x1003e52c 0x142 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x1003e52c odm_Process_RSSIForDM_8195A + .text.ODM_PhyStatusQuery_8195A + 0x1003e66e 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x1003e66e ODM_PhyStatusQuery_8195A + .text.ODM_PhyStatusQuery + 0x1003e69a 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x1003e69a ODM_PhyStatusQuery + .text.ODM_ConfigRFWithHeaderFile + 0x1003e69e 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x1003e69e ODM_ConfigRFWithHeaderFile + .text.ODM_ConfigRFWithTxPwrTrackHeaderFile + 0x1003e6bc 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x1003e6bc ODM_ConfigRFWithTxPwrTrackHeaderFile + .text.ODM_ConfigBBWithHeaderFile + 0x1003e6ee 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x1003e6ee ODM_ConfigBBWithHeaderFile + .text.ODM_ConfigMACWithHeaderFile + 0x1003e716 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x1003e716 ODM_ConfigMACWithHeaderFile + .text.ODM_Read1Byte + 0x1003e728 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e728 ODM_Read1Byte + .text.ODM_Read4Byte + 0x1003e72e 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e72e ODM_Read4Byte + .text.ODM_Write1Byte + 0x1003e734 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e734 ODM_Write1Byte + .text.ODM_Write2Byte + 0x1003e73a 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e73a ODM_Write2Byte + .text.ODM_Write4Byte + 0x1003e740 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e740 ODM_Write4Byte + .text.ODM_SetMACReg + 0x1003e746 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e746 ODM_SetMACReg + .text.ODM_SetBBReg + 0x1003e74c 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e74c ODM_SetBBReg + .text.ODM_GetBBReg + 0x1003e752 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e752 ODM_GetBBReg + .text.ODM_SetRFReg + 0x1003e758 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e758 ODM_SetRFReg + .text.ODM_GetRFReg + 0x1003e75e 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e75e ODM_GetRFReg + .text.ODM_MoveMemory + 0x1003e764 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e764 ODM_MoveMemory + .text.ODM_delay_ms + 0x1003e76e 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e76e ODM_delay_ms + .text.ODM_delay_us + 0x1003e772 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x1003e772 ODM_delay_us + *fill* 0x1003e776 0x2 + .text.getSwingIndex + 0x1003e778 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1003e778 getSwingIndex + .text.odm_TXPowerTrackingThermalMeterInit + 0x1003e7d0 0xb2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1003e7d0 odm_TXPowerTrackingThermalMeterInit + .text.odm_TXPowerTrackingInit + 0x1003e882 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1003e882 odm_TXPowerTrackingInit + .text.odm_TXPowerTrackingCheckIOT + 0x1003e886 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1003e886 odm_TXPowerTrackingCheckIOT + .text.ODM_TXPowerTrackingCheck + 0x1003e8ba 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1003e8ba ODM_TXPowerTrackingCheck + .text.odm_RSSIMonitorInit + 0x1003e8c8 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003e8c8 odm_RSSIMonitorInit + .text.ODM_RAPostActionOnAssoc + 0x1003e8d0 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003e8d0 ODM_RAPostActionOnAssoc + .text.odm_RSSIMonitorCheckIOT + 0x1003e8d8 0xd4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003e8d8 odm_RSSIMonitorCheckIOT + .text.odm_RSSIMonitorCheck + 0x1003e9ac 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003e9ac odm_RSSIMonitorCheck + .text.odm_RateAdaptiveMaskInit + 0x1003e9c0 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003e9c0 odm_RateAdaptiveMaskInit + .text.ODM_RAStateCheck + 0x1003e9e8 0x42 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003e9e8 ODM_RAStateCheck + .text.odm_RefreshRateAdaptiveMaskIOT + 0x1003ea2a 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003ea2a odm_RefreshRateAdaptiveMaskIOT + .text.odm_RefreshRateAdaptiveMask + 0x1003ea7a 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003ea7a odm_RefreshRateAdaptiveMask + *fill* 0x1003ea8e 0x2 + .text.ODM_Get_Rate_Bitmap + 0x1003ea90 0xf0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x1003ea90 ODM_Get_Rate_Bitmap + .text._ReadEfuseInfo8195a + 0x1003eb80 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .text.rtl8195a_interface_configure + 0x1003ec48 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + *fill* 0x1003ec7a 0x2 + .text.rtl8195a_hal_deinit + 0x1003ec7c 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .text._InitPowerOn + 0x1003ecb8 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ecb8 _InitPowerOn + .text.ReadAdapterInfo8195a + 0x1003ed38 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .text._InitDriverInfoSize + 0x1003ed68 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ed68 _InitDriverInfoSize + .text._InitNetworkType + 0x1003ed72 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ed72 _InitNetworkType + .text._InitWMACSetting + 0x1003ed94 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ed94 _InitWMACSetting + .text._InitAdaptiveCtrl + 0x1003ee04 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ee04 _InitAdaptiveCtrl + .text._InitEDCA + 0x1003ee48 0x7c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ee48 _InitEDCA + .text._InitRateFallback + 0x1003eec4 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003eec4 _InitRateFallback + .text._InitRetryFunction + 0x1003ef08 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ef08 _InitRetryFunction + .text._InitOperationMode + 0x1003ef34 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ef34 _InitOperationMode + .text._InitInterrupt + 0x1003ef7c 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003ef7c _InitInterrupt + .text.rtl8195a_hal_init + 0x1003efbc 0x2d8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .text.rtl8195ab_set_hal_ops + 0x1003f294 0xd8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x1003f294 rtl8195ab_set_hal_ops + .text.FillH2CCmd8195A + 0x1003f36c 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f36c FillH2CCmd8195A + .text.CheckFwRsvdPageContent + 0x1003f38c 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f38c CheckFwRsvdPageContent + .text.rtl8195a_set_FwRsvdPage_cmd + 0x1003f38e 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f38e rtl8195a_set_FwRsvdPage_cmd + .text.rtl8195a_set_FwMediaStatusRpt_cmd + 0x1003f398 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f398 rtl8195a_set_FwMediaStatusRpt_cmd + .text.rtl8195a_set_FwMacIdConfig_cmd + 0x1003f3c4 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f3c4 rtl8195a_set_FwMacIdConfig_cmd + .text.rtl8195a_set_FwPwrMode_cmd + 0x1003f484 0x8e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f484 rtl8195a_set_FwPwrMode_cmd + *fill* 0x1003f512 0x2 + .text.rtl8195a_download_rsvd_page + 0x1003f514 0x308 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f514 rtl8195a_download_rsvd_page + .text.rtl8195a_set_FwJoinBssRpt_cmd + 0x1003f81c 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f81c rtl8195a_set_FwJoinBssRpt_cmd + .text.rtl8195a_Add_RateATid + 0x1003f826 0x52 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x1003f826 rtl8195a_Add_RateATid + .text.rtw_rpt_h_addr + 0x1003f878 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f878 rtw_rpt_h_addr + .text.rtw_txrpt_read8 + 0x1003f8c4 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f8c4 rtw_txrpt_read8 + .text.rtw_txrpt_write8 + 0x1003f8e2 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f8e2 rtw_txrpt_write8 + .text.rtw_ratemask_read8 + 0x1003f906 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f906 rtw_ratemask_read8 + .text.rtw_ratemask_write8 + 0x1003f924 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f924 rtw_ratemask_write8 + .text.ReadRateMask8 + 0x1003f948 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f948 ReadRateMask8 + .text.WriteRateMask8 + 0x1003f952 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f952 WriteRateMask8 + .text.ReadTxrpt8 + 0x1003f956 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f956 ReadTxrpt8 + .text.WriteTxrpt8 + 0x1003f960 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f960 WriteTxrpt8 + .text.ResetTxrpt + 0x1003f964 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f964 ResetTxrpt + .text.PsuseTxrpt + 0x1003f99c 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f99c PsuseTxrpt + .text.CheckMaxMacidNum + 0x1003f9bc 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f9bc CheckMaxMacidNum + .text.GetMediaStatusCommon + 0x1003f9f4 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003f9f4 GetMediaStatusCommon + .text.GetTxrptStatistic + 0x1003fa0e 0xb6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003fa0e GetTxrptStatistic + .text.rtl8195a_InitHalDm + 0x1003fac4 0x124 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003fac4 rtl8195a_InitHalDm + .text.rtl8195a_HalDmWatchDog + 0x1003fbe8 0xe2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003fbe8 rtl8195a_HalDmWatchDog + *fill* 0x1003fcca 0x2 + .text.rtl8195a_init_dm_priv + 0x1003fccc 0xd8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003fccc rtl8195a_init_dm_priv + .text.rtl8195a_deinit_dm_priv + 0x1003fda4 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x1003fda4 rtl8195a_deinit_dm_priv + .text.MediaConnection + 0x1003fda6 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + 0x1003fda6 MediaConnection + .text.MediaDisconnection + 0x1003fdc4 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + 0x1003fdc4 MediaDisconnection + .text.RATaskEnable + 0x1003fde4 0x2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + 0x1003fde4 RATaskEnable + .text.SetMediaStatus + 0x1003fe0e 0x3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + 0x1003fe0e SetMediaStatus + .text.H2CHDL_JoinInfo + 0x1003fe4c 0x36 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + 0x1003fe4c H2CHDL_JoinInfo + *fill* 0x1003fe82 0x2 + .text.H2CHDL_SetRsvdPage + 0x1003fe84 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + 0x1003fe84 H2CHDL_SetRsvdPage + .text.H2CCmdCommon + 0x1003ff1c 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + 0x1003ff1c H2CCmdCommon + .text.HalPwrSeqCmdParsing + 0x1003ff60 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + 0x1003ff60 HalPwrSeqCmdParsing + .text.hci_dvobj_init + 0x10040020 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + 0x10040020 hci_dvobj_init + .text.hci_dvobj_deinit + 0x10040030 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + 0x10040030 hci_dvobj_deinit + .text.hci_dvobj_request_irq + 0x10040040 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + 0x10040040 hci_dvobj_request_irq + .text.hci_dvobj_free_irq + 0x10040050 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + 0x10040050 hci_dvobj_free_irq + .text.hci_lxbus_dvobj_init + 0x10040060 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + 0x10040060 hci_lxbus_dvobj_init + .text.hci_lxbus_dvobj_deinit + 0x1004009c 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + 0x1004009c hci_lxbus_dvobj_deinit + .text.hci_lxbus_dvobj_request_irq + 0x100400dc 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + 0x100400dc hci_lxbus_dvobj_request_irq + .text.hci_lxbus_free_irq + 0x10040130 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + 0x10040130 hci_lxbus_free_irq + .text.hci_lxbus_intf_stop + 0x10040188 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + 0x10040188 hci_lxbus_intf_stop + .text.rtw_interrupt_thread + 0x100401c0 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + 0x100401c0 rtw_interrupt_thread + .text.lextra_bus_dma_Interrupt + 0x10040234 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + 0x10040234 lextra_bus_dma_Interrupt + .text.init_rom_wlan_ram_map + 0x1004027c 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + 0x1004027c init_rom_wlan_ram_map + .text.ODM_ReadAndConfig_MP_8195A_MAC_REG + 0x10040294 0x15c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + 0x10040294 ODM_ReadAndConfig_MP_8195A_MAC_REG + .text.CheckPositive.isra.0 + 0x100403f0 0xe2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + *fill* 0x100404d2 0x2 + .text.ODM_ReadAndConfig_MP_8195A_RadioA + 0x100404d4 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x100404d4 ODM_ReadAndConfig_MP_8195A_RadioA + .text.ODM_ReadAndConfig_MP_8195A_TxPowerTrack_QFN48 + 0x1004054c 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004054c ODM_ReadAndConfig_MP_8195A_TxPowerTrack_QFN48 + .text.ODM_ReadAndConfig_MP_8195A_TxPowerTrack_QFN56 + 0x1004059c 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004059c ODM_ReadAndConfig_MP_8195A_TxPowerTrack_QFN56 + .text.ODM_ReadAndConfig_MP_8195A_TxPowerTrack_TFBGA96 + 0x100405ec 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x100405ec ODM_ReadAndConfig_MP_8195A_TxPowerTrack_TFBGA96 + .text.ODM_ReadAndConfig_MP_8195A_TXPWR_LMT + 0x1004063c 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004063c ODM_ReadAndConfig_MP_8195A_TXPWR_LMT + .text.ODM_ReadAndConfig_MP_8195A_TxXtalTrack + 0x10040674 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x10040674 ODM_ReadAndConfig_MP_8195A_TxXtalTrack + .text.GetDeltaSwingTable_8195A + 0x100406a0 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100406a0 GetDeltaSwingTable_8195A + .text.GetDeltaSwingXtalTable_8195A + 0x100406d0 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100406d0 GetDeltaSwingXtalTable_8195A + *fill* 0x100406de 0x2 + .text.ODM_TxXtalTrackSetXtal_8195A + 0x100406e0 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100406e0 ODM_TxXtalTrackSetXtal_8195A + .text.Hal_MPT_CCKTxPowerAdjust + 0x10040700 0xd0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10040700 Hal_MPT_CCKTxPowerAdjust + .text.ODM_TxPwrTrackSetPwr_8195A + 0x100407d0 0x110 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100407d0 ODM_TxPwrTrackSetPwr_8195A + .text.ConfigureTxpowerTrack_8195A + 0x100408e0 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100408e0 ConfigureTxpowerTrack_8195A + .text.phy_PathA_IQK_8195A + 0x1004092c 0x1b4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x1004092c phy_PathA_IQK_8195A + .text.phy_PathA_RxIQK8195A + 0x10040ae0 0x394 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10040ae0 phy_PathA_RxIQK8195A + .text._PHY_PathAFillIQKMatrix8195A + 0x10040e74 0x196 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10040e74 _PHY_PathAFillIQKMatrix8195A + .text._PHY_PathBFillIQKMatrix8195A + 0x1004100a 0x17c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x1004100a _PHY_PathBFillIQKMatrix8195A + .text._PHY_SaveADDARegisters8195A + 0x10041186 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10041186 _PHY_SaveADDARegisters8195A + .text._PHY_SaveMACRegisters8195A + 0x100411ba 0x2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100411ba _PHY_SaveMACRegisters8195A + .text._PHY_ReloadADDARegisters8195A + 0x100411e8 0x34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100411e8 _PHY_ReloadADDARegisters8195A + .text._PHY_ReloadMACRegisters8195A + 0x1004121c 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x1004121c _PHY_ReloadMACRegisters8195A + .text._PHY_PathADDAOn8195A + 0x1004124c 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x1004124c _PHY_PathADDAOn8195A + .text._PHY_MACSettingCalibration8195A + 0x10041288 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10041288 _PHY_MACSettingCalibration8195A + .text._PHY_PIModeSwitch8195A + 0x100412d0 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100412d0 _PHY_PIModeSwitch8195A + .text.phy_SimularityCompare_8195A + 0x1004130c 0x134 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x1004130c phy_SimularityCompare_8195A + .text.phy_IQCalibrate_8195A + 0x10041440 0x378 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10041440 phy_IQCalibrate_8195A + .text.phy_LCCalibrate_8195A + 0x100417b8 0x6e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x100417b8 phy_LCCalibrate_8195A + *fill* 0x10041826 0x2 + .text.PHY_LCCalibrate_8195A + 0x10041828 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10041828 PHY_LCCalibrate_8195A + .text.PHY_IQCalibrate_8195A + 0x10041888 0x2b4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10041888 PHY_IQCalibrate_8195A + .text.DoIQK_8195A + 0x10041b3c 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x10041b3c DoIQK_8195A + .text.ConfigureTxpowerTrack + 0x10041b5a 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + 0x10041b5a ConfigureTxpowerTrack + *fill* 0x10041b6a 0x2 + .text.ODM_TXPowerTrackingCallback_ThermalMeter + 0x10041b6c 0x40c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + 0x10041b6c ODM_TXPowerTrackingCallback_ThermalMeter + .text.ODM_ResetIQKResult + 0x10041f78 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + 0x10041f78 ODM_ResetIQKResult + .text.ODM_GetRightChnlPlaceforIQK + 0x10041fc0 0x54 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + 0x10041fc0 ODM_GetRightChnlPlaceforIQK + .text.rtl_libc_init + 0x10042014 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x10042014 rtl_libc_init + .text.rtl_snprintf + 0x10042028 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x10042028 rtl_snprintf + .text.rtl_sprintf + 0x100420a8 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x100420a8 rtl_sprintf + .text.rtl_printf + 0x10042108 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x10042108 rtl_printf + .text.rtl_memcmp + 0x10042154 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x10042154 rtl_memcmp + .text.rtl_memcpy + 0x10042160 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x10042160 rtl_memcpy + .text.rtl_memset + 0x1004216c 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x1004216c rtl_memset + .text.rtl_strcmp + 0x10042178 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x10042178 rtl_strcmp + .text.rtl_strcpy + 0x10042184 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x10042184 rtl_strcpy + .text.rtl_strlen + 0x10042190 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x10042190 rtl_strlen + .text.rtl_strncmp + 0x1004219c 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x1004219c rtl_strncmp + .text.rtl_strncpy + 0x100421a8 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x100421a8 rtl_strncpy + .text.rtl_strsep + 0x100421b4 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x100421b4 rtl_strsep + .text.rtl_strtok + 0x100421c0 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x100421c0 rtl_strtok + .text.ram_libgloss_close + 0x100421cc 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x100421cc ram_libgloss_close + .text.ram_libgloss_fstat + 0x100421dc 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x100421dc ram_libgloss_fstat + .text.ram_libgloss_isatty + 0x100421fc 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x100421fc ram_libgloss_isatty + .text.ram_libgloss_lseek + 0x10042208 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x10042208 ram_libgloss_lseek + .text.ram_libgloss_read + 0x10042218 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x10042218 ram_libgloss_read + .text.ram_libgloss_sbrk + 0x10042228 0x1c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x10042228 ram_libgloss_sbrk + .text.ram_libgloss_write + 0x10042244 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x10042244 ram_libgloss_write + .text.ram_libgloss_open + 0x10042264 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x10042264 ram_libgloss_open + .text.init_rom_libgloss_ram_map + 0x100422a0 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x100422a0 init_rom_libgloss_ram_map + .text.malloc 0x100422e8 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + 0x100422e8 malloc + .text.memcpy 0x100422f8 0x12 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcpy-stub.o) + 0x100422f8 memcpy + .text.memset 0x1004230a 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memset.o) + 0x1004230a memset + *fill* 0x1004231a 0x2 + .text._free_r 0x1004231c 0x88 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) + 0x1004231c _free_r + .text._malloc_r + 0x100423a4 0xa8 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + 0x100423a4 _malloc_r + .text.rand 0x1004244c 0x74 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + 0x1004244c rand + .text._sbrk_r 0x100424c0 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + 0x100424c0 _sbrk_r + .text.sscanf 0x100424e0 0x54 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + 0x100424e0 sscanf + 0x100424e0 siscanf + .text.__seofread + 0x10042534 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + 0x10042534 __seofread + .text.strlen 0x10042538 0x10 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strlen.o) + 0x10042538 strlen + .text._sungetc_r + 0x10042548 0x7a /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + 0x10042548 _sungetc_r + .text.__ssrefill_r + 0x100425c2 0x3a /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + 0x100425c2 __ssrefill_r + .text.__ssvfscanf_r + 0x100425fc 0x29c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + 0x100425fc __ssvfscanf_r + 0x100425fc __ssvfiscanf_r + .text.__submore + 0x10042898 0x72 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + 0x10042898 __submore + *fill* 0x1004290a 0x2 + .text._scanf_chars + 0x1004290c 0xc0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + 0x1004290c _scanf_chars + .text._scanf_i + 0x100429cc 0x1ec /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + 0x100429cc _scanf_i + .text.memchr 0x10042bb8 0x1c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memchr-stub.o) + 0x10042bb8 memchr + .text._realloc_r + 0x10042bd4 0x4c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + 0x10042bd4 _realloc_r + .text.__sccl 0x10042c20 0x62 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sccl.o) + 0x10042c20 __sccl + *fill* 0x10042c82 0x2 + .text._strtol_r + 0x10042c84 0x104 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + 0x10042c84 _strtol_r + .text._strtoul_r + 0x10042d88 0xf0 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + 0x10042d88 _strtoul_r + .text._malloc_usable_size_r + 0x10042e78 0x12 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-msizer.o) + 0x10042e78 _malloc_usable_size_r + *fill* 0x10042e8a 0x2 + .text._sbrk 0x10042e8c 0x34 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + 0x10042e8c _sbrk + .text 0x10042ec0 0x18 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_lshrdi3.o) + 0x10042ec0 __aeabi_llsr + 0x10042ec0 __lshrdi3 + .text 0x10042ed8 0x370 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + 0x10042ed8 __aeabi_drsub + 0x10042ee0 __aeabi_dsub + 0x10042ee0 __subdf3 + 0x10042ee4 __adddf3 + 0x10042ee4 __aeabi_dadd + 0x1004315c __aeabi_ui2d + 0x1004315c __floatunsidf + 0x1004317c __aeabi_i2d + 0x1004317c __floatsidf + 0x100431a0 __extendsfdf2 + 0x100431a0 __aeabi_f2d + 0x100431dc __aeabi_ul2d + 0x100431dc __floatundidf + 0x100431ec __floatdidf + 0x100431ec __aeabi_l2d + .text 0x10043248 0x424 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) + 0x10043248 __aeabi_dmul + 0x10043248 __muldf3 + 0x1004349c __aeabi_ddiv + 0x1004349c __divdf3 + .text 0x1004366c 0x40 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunsdfsi.o) + 0x1004366c __aeabi_d2uiz + 0x1004366c __fixunsdfsi + *fill* 0x100436ac 0x4 + .text.__stub 0x100436b0 0x390 linker stubs + +.glue_7 0x10043a40 0x0 + .glue_7 0x00000000 0x0 linker stubs + +.glue_7t 0x10043a40 0x0 + .glue_7t 0x00000000 0x0 linker stubs + +.vfp11_veneer 0x10043a40 0x0 + .vfp11_veneer 0x00000000 0x0 linker stubs + +.v4_bx 0x10043a40 0x0 + .v4_bx 0x00000000 0x0 linker stubs + +.iplt 0x10043a40 0x0 + .iplt 0x00000000 0x0 application/Debug/obj/system_8195a.o + +.igot.plt 0x10043a40 0x0 + .igot.plt 0x00000000 0x0 application/Debug/obj/system_8195a.o + +.mon.ram.bss 0x10043a40 0x350 + .mon.ram.bss 0x10043a40 0x350 application/Debug/obj/rtl_consol.o + +.ram_image2.rodata + 0x10043d90 0x97cc + *(.rodata*) + .rodata.str1.4 + 0x10043d90 0xe3d application/Debug/obj/atcmd_lwip.o + 0xe48 (size before relaxing) + *fill* 0x10044bcd 0x3 + .rodata.str1.4 + 0x10044bd0 0x499 application/Debug/obj/atcmd_sys.o + 0x4ac (size before relaxing) + *fill* 0x10045069 0x3 + .rodata 0x1004506c 0x8 application/Debug/obj/atcmd_wifi.o + .rodata.str1.4 + 0x10045074 0x82d application/Debug/obj/atcmd_wifi.o + 0x888 (size before relaxing) + *fill* 0x100458a1 0x3 + .rodata 0x100458a4 0x640 application/Debug/obj/log_service.o + .rodata.__FUNCTION__.12890 + 0x10045ee4 0x14 application/Debug/obj/log_service.o + .rodata.str1.4 + 0x10045ef8 0xc9 application/Debug/obj/log_service.o + 0xe4 (size before relaxing) + *fill* 0x10045fc1 0x3 + .rodata.str1.4 + 0x10045fc4 0x53 application/Debug/obj/rtl_consol.o + 0x54 (size before relaxing) + *fill* 0x10046017 0x1 + .rodata.str1.4 + 0x10046018 0x54f application/Debug/obj/wifi_conf.o + 0x5c4 (size before relaxing) + *fill* 0x10046567 0x1 + .rodata 0x10046568 0x8 application/Debug/obj/wifi_simple_config.o + .rodata.__FUNCTION__.9128 + 0x10046570 0x24 application/Debug/obj/wifi_simple_config.o + .rodata.str1.4 + 0x10046594 0x6de application/Debug/obj/wifi_simple_config.o + 0x754 (size before relaxing) + *fill* 0x10046c72 0x2 + .rodata.str1.4 + 0x10046c74 0x7a6 application/Debug/obj/wifi_util.o + 0x7a8 (size before relaxing) + *fill* 0x1004741a 0x2 + .rodata.str1.4 + 0x1004741c 0x10e application/Debug/obj/lwip_netconf.o + 0x110 (size before relaxing) + *fill* 0x1004752a 0x2 + .rodata.__FUNCTION__.6638 + 0x1004752c 0xc application/Debug/obj/ping_test.o + .rodata.str1.4 + 0x10047538 0x262 application/Debug/obj/ping_test.o + 0x27c (size before relaxing) + *fill* 0x1004779a 0x2 + .rodata.__func__.6637 + 0x1004779c 0xc application/Debug/obj/ping_test.o + .rodata 0x100477a8 0x20 application/Debug/obj/update.o + .rodata.__FUNCTION__.11212 + 0x100477c8 0x18 application/Debug/obj/update.o + .rodata.__FUNCTION__.11175 + 0x100477e0 0x20 application/Debug/obj/update.o + .rodata.str1.4 + 0x10047800 0x3b1 application/Debug/obj/update.o + 0x3b8 (size before relaxing) + *fill* 0x10047bb1 0x3 + .rodata.__FUNCTION__.11240 + 0x10047bb4 0x14 application/Debug/obj/update.o + .rodata.__FUNCTION__.11246 + 0x10047bc8 0xc application/Debug/obj/update.o + .rodata.str1.4 + 0x10047bd4 0x4d application/Debug/obj/wlan_network.o + 0x50 (size before relaxing) + *fill* 0x10047c21 0x3 + .rodata.__FUNCTION__.8062 + 0x10047c24 0xc application/Debug/obj/wlan_network.o + .rodata.__FUNCTION__.8065 + 0x10047c30 0x10 application/Debug/obj/wlan_network.o + .rodata.err_to_errno_table + 0x10047c40 0x40 application/Debug/obj/sockets.o + .rodata.str1.4 + 0x10047c80 0x7 application/Debug/obj/tcpip.o + 0x8 (size before relaxing) + *fill* 0x10047c87 0x1 + .rodata.ip_addr_broadcast + 0x10047c88 0x4 application/Debug/obj/ip_addr.o + 0x10047c88 ip_addr_broadcast + .rodata.ip_addr_any + 0x10047c8c 0x4 application/Debug/obj/ip_addr.o + 0x10047c8c ip_addr_any + .rodata.str1.4 + 0x10047c90 0xf application/Debug/obj/dns.o + 0x10 (size before relaxing) + *fill* 0x10047c9f 0x1 + .rodata.memp_num + 0x10047ca0 0x20 application/Debug/obj/memp.o + .rodata.memp_sizes + 0x10047cc0 0x20 application/Debug/obj/memp.o + .rodata.tcp_pcb_lists + 0x10047ce0 0x10 application/Debug/obj/tcp.o + 0x10047ce0 tcp_pcb_lists + .rodata.tcp_backoff + 0x10047cf0 0x10 application/Debug/obj/tcp.o + 0x10047cf0 tcp_backoff + .rodata.tcp_persist_backoff + 0x10047d00 0x8 application/Debug/obj/tcp.o + 0x10047d00 tcp_persist_backoff + .rodata.ethbroadcast + 0x10047d08 0x8 application/Debug/obj/etharp.o + 0x10047d08 ethbroadcast + .rodata.ethzero + 0x10047d10 0x8 application/Debug/obj/etharp.o + 0x10047d10 ethzero + .rodata.str1.4 + 0x10047d18 0x29 application/Debug/obj/ethernetif.o + 0x2c (size before relaxing) + *fill* 0x10047d41 0x3 + .rodata.__FUNCTION__.8530 + 0x10047d44 0x10 application/Debug/obj/lwip_intf.o + .rodata.str1.4 + 0x10047d54 0xb5 application/Debug/obj/lwip_intf.o + 0xb8 (size before relaxing) + *fill* 0x10047e09 0x3 + .rodata.__FUNCTION__.8542 + 0x10047e0c 0x10 application/Debug/obj/lwip_intf.o + .rodata.dhcp_magic_cookie + 0x10047e1c 0x4 application/Debug/obj/dhcps.o + .rodata.dhcp_option_lease_time_one_day + 0x10047e20 0x4 application/Debug/obj/dhcps.o + .rodata.str1.4 + 0x10047e24 0x34 application/Debug/obj/dhcps.o + .rodata.dhcp_option_interface_mtu_576 + 0x10047e58 0x4 application/Debug/obj/dhcps.o + .rodata.__FUNCTION__.4492 + 0x10047e5c 0x20 application/Debug/obj/port.o + .rodata.str1.4 + 0x10047e7c 0x27 application/Debug/obj/port.o + 0x28 (size before relaxing) + *fill* 0x10047ea3 0x1 + .rodata.ucExpectedStackBytes.6354 + 0x10047ea4 0x14 application/Debug/obj/tasks.o + .rodata.str1.4 + 0x10047eb8 0x5 application/Debug/obj/tasks.o + 0x8 (size before relaxing) + *fill* 0x10047ebd 0x3 + .rodata.str1.4 + 0x10047ec0 0x8 application/Debug/obj/timers.o + .rodata.str1.4 + 0x10047ec8 0x19 application/Debug/obj/device_lock.o + 0x1c (size before relaxing) + *fill* 0x10047ee1 0x3 + .rodata.__FUNCTION__.11652 + 0x10047ee4 0x14 application/Debug/obj/freertos_service.o + .rodata.__FUNCTION__.11703 + 0x10047ef8 0x14 application/Debug/obj/freertos_service.o + .rodata.osdep_service + 0x10047f0c 0x124 application/Debug/obj/freertos_service.o + 0x10047f0c osdep_service + .rodata.__FUNCTION__.11660 + 0x10048030 0x1c application/Debug/obj/freertos_service.o + .rodata.__FUNCTION__.11714 + 0x1004804c 0x1c application/Debug/obj/freertos_service.o + .rodata.str1.4 + 0x10048068 0x9c application/Debug/obj/freertos_service.o + .rodata.__FUNCTION__.11848 + 0x10048104 0x18 application/Debug/obj/freertos_service.o + .rodata.__FUNCTION__.11686 + 0x1004811c 0x20 application/Debug/obj/freertos_service.o + .rodata.__FUNCTION__.11852 + 0x1004813c 0x18 application/Debug/obj/freertos_service.o + .rodata.__FUNCTION__.6626 + 0x10048154 0x10 application/Debug/obj/osdep_service.o + .rodata.str1.4 + 0x10048164 0x6a application/Debug/obj/osdep_service.o + 0x6c (size before relaxing) + *fill* 0x100481ce 0x2 + .rodata.str1.4 + 0x100481d0 0x6a application/Debug/obj/flash_api.o + 0x6c (size before relaxing) + *fill* 0x1004823a 0x2 + .rodata.GPIO_InPinMode + 0x1004823c 0x4 application/Debug/obj/gpio_api.o + 0x1004823c GPIO_InPinMode + .rodata.__func__.8889 + 0x10048240 0xc application/Debug/obj/gpio_api.o + .rodata.str1.4 + 0x1004824c 0x57 application/Debug/obj/gpio_api.o + 0x58 (size before relaxing) + *fill* 0x100482a3 0x1 + .rodata.GPIO_SWPORT_DR_TBL + 0x100482a4 0x4 application/Debug/obj/gpio_api.o + 0x100482a4 GPIO_SWPORT_DR_TBL + .rodata.GPIO_EXT_PORT_TBL + 0x100482a8 0x4 application/Debug/obj/gpio_api.o + 0x100482a8 GPIO_EXT_PORT_TBL + .rodata.__FUNCTION__.8741 + 0x100482ac 0x10 application/Debug/obj/pinmap_common.o + .rodata.__FUNCTION__.8754 + 0x100482bc 0x14 application/Debug/obj/pinmap_common.o + .rodata.str1.4 + 0x100482d0 0x54 application/Debug/obj/pinmap_common.o + .rodata.PinMap_UART_RX + 0x10048324 0x78 application/Debug/obj/serial_api.o + .rodata.str1.4 + 0x1004839c 0x45 application/Debug/obj/serial_api.o + 0x48 (size before relaxing) + *fill* 0x100483e1 0x3 + .rodata.PinMap_UART_TX + 0x100483e4 0x78 application/Debug/obj/serial_api.o + .rodata.__FUNCTION__.9326 + 0x1004845c 0xc application/Debug/obj/serial_api.o + .rodata.str1.4 + 0x10048468 0x5b application/Debug/obj/hal_32k.o + 0x5c (size before relaxing) + *fill* 0x100484c3 0x1 + .rodata.str1.4 + 0x100484c4 0xad application/Debug/obj/hal_gpio.o + 0xb0 (size before relaxing) + *fill* 0x10048571 0x3 + .rodata.str1.4 + 0x10048574 0x192 application/Debug/obj/hal_sdr_controller.o + 0x194 (size before relaxing) + *fill* 0x10048706 0x2 + .rodata.ovsr_adj_table_9bit + 0x10048708 0x14 application/Debug/obj/hal_uart.o + 0x10048708 ovsr_adj_table_9bit + .rodata.DEF_OVSR_B_CUT + 0x1004871c 0x2c application/Debug/obj/hal_uart.o + 0x1004871c DEF_OVSR_B_CUT + .rodata.DEF_OVSR_ADJ_BITS_B_CUT_10B + 0x10048748 0x2c application/Debug/obj/hal_uart.o + 0x10048748 DEF_OVSR_ADJ_BITS_B_CUT_10B + .rodata.DEF_OVSR_C_CUT + 0x10048774 0x2c application/Debug/obj/hal_uart.o + 0x10048774 DEF_OVSR_C_CUT + .rodata.DEF_OVSR_ADJ_BITS_C_CUT_8B + 0x100487a0 0x2c application/Debug/obj/hal_uart.o + 0x100487a0 DEF_OVSR_ADJ_BITS_C_CUT_8B + .rodata.DEF_OVSR_ADJ_BITS_B_CUT_8B + 0x100487cc 0x2c application/Debug/obj/hal_uart.o + 0x100487cc DEF_OVSR_ADJ_BITS_B_CUT_8B + .rodata.DEF_BAUDRATE_TABLE + 0x100487f8 0xb0 application/Debug/obj/hal_uart.o + 0x100487f8 DEF_BAUDRATE_TABLE + .rodata.DEF_OVSR_ADJ_BITS_C_CUT_9B + 0x100488a8 0x2c application/Debug/obj/hal_uart.o + 0x100488a8 DEF_OVSR_ADJ_BITS_C_CUT_9B + .rodata.DEF_OVSR_ADJ_BITS_B_CUT_9B + 0x100488d4 0x2c application/Debug/obj/hal_uart.o + 0x100488d4 DEF_OVSR_ADJ_BITS_B_CUT_9B + .rodata.DEF_DIV_B_CUT + 0x10048900 0x58 application/Debug/obj/hal_uart.o + 0x10048900 DEF_DIV_B_CUT + .rodata.DEF_OVSR_ADJ_BITS_C_CUT_10B + 0x10048958 0x2c application/Debug/obj/hal_uart.o + 0x10048958 DEF_OVSR_ADJ_BITS_C_CUT_10B + .rodata.ovsr_adj_table_10bit + 0x10048984 0x14 application/Debug/obj/hal_uart.o + 0x10048984 ovsr_adj_table_10bit + .rodata.ovsr_adj_table_8bit + 0x10048998 0x10 application/Debug/obj/hal_uart.o + 0x10048998 ovsr_adj_table_8bit + .rodata.DEF_DIV_C_CUT + 0x100489a8 0x58 application/Debug/obj/hal_uart.o + 0x100489a8 DEF_DIV_C_CUT + .rodata.str1.4 + 0x10048a00 0xac application/Debug/obj/rtl8195a_gdma.o + .rodata.str1.4 + 0x10048aac 0x4c application/Debug/obj/rtl8195a_gpio.o + .rodata.__FUNCTION__.8572 + 0x10048af8 0x1c application/Debug/obj/rtl8195a_timer.o + .rodata.__FUNCTION__.8581 + 0x10048b14 0x24 application/Debug/obj/rtl8195a_timer.o + .rodata.__FUNCTION__.8588 + 0x10048b38 0x1c application/Debug/obj/rtl8195a_timer.o + .rodata.__FUNCTION__.8595 + 0x10048b54 0x24 application/Debug/obj/rtl8195a_timer.o + .rodata.str1.4 + 0x10048b78 0x107 application/Debug/obj/rtl8195a_timer.o + 0x108 (size before relaxing) + *fill* 0x10048c7f 0x1 + .rodata.str1.4 + 0x10048c80 0x699 application/Debug/obj/rtl8195a_uart.o + 0x69c (size before relaxing) + *fill* 0x10049319 0x3 + .rodata.__FUNCTION__.14041 + 0x1004931c 0x18 application/Debug/obj/example_uart_atcmd.o + .rodata.str1.4 + 0x10049334 0xfc application/Debug/obj/example_uart_atcmd.o + 0x114 (size before relaxing) + .rodata.str1.1 + 0x10049430 0x2ca ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x2d7 (size before relaxing) + .rodata.__FUNCTION__.8933 + 0x100496fa 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .rodata.__func__.8915 + 0x1004970e 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .rodata 0x1004971e 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .rodata.str1.1 + 0x1004972c 0xd6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .rodata.__func__.8807 + 0x10049802 0x1f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.__func__.8834 + 0x10049821 0x19 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.__func__.8817 + 0x1004983a 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.__func__.8824 + 0x10049858 0x19 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.__func__.8603 + 0x10049871 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.__func__.8829 + 0x1004988b 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.str1.1 + 0x100498a5 0x39b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + 0x3b2 (size before relaxing) + .rodata.__func__.8839 + 0x10049c40 0x22 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.__func__.8686 + 0x10049c62 0x13 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.__func__.8631 + 0x10049c75 0x19 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .rodata.default_key_iv + 0x10049c8e 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .rodata.str1.1 + 0x10049c96 0x44a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x44f (size before relaxing) + .rodata.default_pin + 0x1004a0e0 0x9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .rodata.sc_device_name + 0x1004a0e9 0x15 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .rodata.mcast_udp_buffer + 0x1004a0fe 0x41 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .rodata 0x1004a13f 0x1a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .rodata.str1.1 + 0x1004a159 0x1b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x1e (size before relaxing) + .rodata.__FUNCTION__.17777 + 0x1004a174 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .rodata.str1.1 + 0x1004a184 0xf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + *fill* 0x1004a193 0x1 + .rodata.wlancmds + 0x1004a194 0x1f8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x1004a194 wlancmds + .rodata.rtw_cmd_callback + 0x1004a38c 0x1f8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x1004a38c rtw_cmd_callback + .rodata 0x1004a584 0x7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .rodata.str1.1 + 0x1004a58b 0xb0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0xb3 (size before relaxing) + .rodata 0x1004a63b 0x13 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .rodata.RTW_ChannelPlan2G + 0x1004a64e 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .rodata.WPS_OUI + 0x1004a6c6 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a6c6 WPS_OUI + .rodata.RSN_TKIP_CIPHER + 0x1004a6ca 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a6ca RSN_TKIP_CIPHER + .rodata.MCS_rate_1R + 0x1004a6ce 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a6ce MCS_rate_1R + .rodata.P2P_OUI + 0x1004a6de 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a6de P2P_OUI + .rodata.str1.1 + 0x1004a6e2 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x40 (size before relaxing) + .rodata.WMM_INFO_OUI + 0x1004a70a 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a70a WMM_INFO_OUI + .rodata.RTW_WPA_OUI + 0x1004a710 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a710 RTW_WPA_OUI + .rodata.WMM_PARA_OUI + 0x1004a714 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a714 WMM_PARA_OUI + .rodata.RTW_ChannelPlanMap + 0x1004a71a 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .rodata.null_addr + 0x1004a732 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a732 null_addr + .rodata.WMM_OUI + 0x1004a738 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004a738 WMM_OUI + .rodata.wlanevents + 0x1004a73c 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .rodata.zero_bssid + 0x1004a7fc 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x1004a7fc zero_bssid + .rodata 0x1004a802 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .rodata.str1.1 + 0x1004a81a 0x24 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x3c (size before relaxing) + .rodata.str1.1 + 0x1004a83e 0x13 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .rodata.__FUNCTION__.17681 + 0x1004a851 0xf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .rodata 0x1004a860 0x7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .rodata.SNAP_ETH_TYPE_APPLETALK_AARP + 0x1004a867 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1004a867 SNAP_ETH_TYPE_APPLETALK_AARP + .rodata.__FUNCTION__.17495 + 0x1004a869 0x13 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .rodata.SNAP_ETH_TYPE_IPX + 0x1004a87c 0x2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1004a87c SNAP_ETH_TYPE_IPX + .rodata.rtw_bridge_tunnel_header + 0x1004a87e 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1004a87e rtw_bridge_tunnel_header + .rodata.str1.1 + 0x1004a884 0x21 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x24 (size before relaxing) + .rodata.rtw_rfc1042_header + 0x1004a8a5 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x1004a8a5 rtw_rfc1042_header + .rodata 0x1004a8ab 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .rodata.str1.1 + 0x1004a8b1 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .rodata.CSWTCH.36 + 0x1004a8c3 0xc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .rodata.ARTHEROS_OUI1 + 0x1004a8cf 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8cf ARTHEROS_OUI1 + .rodata.ARTHEROS_OUI2 + 0x1004a8d2 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8d2 ARTHEROS_OUI2 + .rodata.REALTEK_OUI + 0x1004a8d5 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8d5 REALTEK_OUI + .rodata.RALINK_OUI + 0x1004a8d8 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8d8 RALINK_OUI + .rodata.MARVELL_OUI + 0x1004a8db 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8db MARVELL_OUI + .rodata.CISCO_OUI + 0x1004a8de 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8de CISCO_OUI + .rodata.rtw_basic_rate_cck + 0x1004a8e1 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .rodata.BROADCOM_OUI1 + 0x1004a8e5 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8e5 BROADCOM_OUI1 + .rodata.BROADCOM_OUI2 + 0x1004a8e8 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8e8 BROADCOM_OUI2 + .rodata.REALTEK_96B_IE + 0x1004a8eb 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8eb REALTEK_96B_IE + .rodata.rtw_basic_rate_mix + 0x1004a8f1 0x7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .rodata.rtw_basic_rate_ofdm + 0x1004a8f8 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .rodata.AIRGOCAP_OUI + 0x1004a8fb 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x1004a8fb AIRGOCAP_OUI + .rodata.str1.1 + 0x1004a8fe 0x11 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .rodata.CSWTCH.66 + 0x1004a90f 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .rodata 0x1004a921 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + *fill* 0x1004a927 0x1 + .rodata.CSWTCH.48 + 0x1004a928 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .rodata.str1.1 + 0x1004a938 0x32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .rodata.CSWTCH.28 + 0x1004a96a 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .rodata.efuse_map_mask + 0x1004a97c 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x1004a97c efuse_map_mask + .rodata.flash_map_mask + 0x1004a98c 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0x1004a98c flash_map_mask + .rodata.str1.1 + 0x1004a994 0x94 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .rodata.__func__.21107 + 0x1004aa28 0x15 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .rodata.str1.1 + 0x1004aa3d 0x15e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .rodata.str1.1 + 0x1004ab9b 0x1d3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x1da (size before relaxing) + .rodata.CSWTCH.15 + 0x1004ad6e 0x84 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .rodata.CSWTCH.17 + 0x1004adf2 0x13 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .rodata 0x1004ae05 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .rodata.str1.1 + 0x1004ae19 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .rodata.CSWTCH.14 + 0x1004ae61 0x84 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .rodata.str1.1 + 0x1004aee5 0x17 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .rodata.__FUNCTION__.21257 + 0x1004aefc 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .rodata.rtw_private_args + 0x1004af0c 0x270 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .rodata.str1.1 + 0x1004b17c 0x21b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x231 (size before relaxing) + .rodata.__FUNCTION__.21057 + 0x1004b397 0x13 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .rodata.__FUNCTION__.21294 + 0x1004b3aa 0x11 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .rodata.__FUNCTION__.21241 + 0x1004b3bb 0xf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .rodata.__FUNCTION__.21126 + 0x1004b3ca 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .rodata.iw_priv_type_size + 0x1004b3da 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .rodata.str1.1 + 0x1004b3e2 0xd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + 0x22 (size before relaxing) + .rodata.str1.1 + 0x1004b3ef 0xc9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .rodata.__FUNCTION__.17334 + 0x1004b4b8 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .rodata.__FUNCTION__.17736 + 0x1004b4c2 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17820 + 0x1004b4d2 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17760 + 0x1004b4e6 0x13 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17712 + 0x1004b4f9 0xf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17649 + 0x1004b508 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17661 + 0x1004b516 0xa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.str1.1 + 0x1004b520 0x3e0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x401 (size before relaxing) + .rodata.__FUNCTION__.17827 + 0x1004b900 0x19 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17654 + 0x1004b919 0xb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17615 + 0x1004b924 0xf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17811 + 0x1004b933 0x12 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17765 + 0x1004b945 0xe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17724 + 0x1004b953 0x11 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.__FUNCTION__.17637 + 0x1004b964 0x15 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .rodata.str1.1 + 0x1004b979 0x12d9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + 0x12db (size before relaxing) + .rodata.str1.1 + 0x1004cc52 0x42 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .rodata.str1.1 + 0x00000000 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .rodata.str1.1 + 0x1004cc94 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x99 (size before relaxing) + .rodata.CCKFCCTable_Ch14_8195A + 0x1004cd05 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1004cd05 CCKFCCTable_Ch14_8195A + .rodata.CCKFCCTable_8195A + 0x1004cd15 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1004cd15 CCKFCCTable_8195A + *fill* 0x1004cd25 0x3 + .rodata.OFDMSwingTable_New + 0x1004cd28 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1004cd28 OFDMSwingTable_New + .rodata.CCKCETable_8195A + 0x1004cdd4 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x1004cdd4 CCKCETable_8195A + .rodata 0x1004cde4 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .rodata.CSWTCH.39 + 0x1004cdea 0xf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .rodata 0x1004cdf9 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .rodata.__func__.20571 + 0x1004cdff 0x1f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + *fill* 0x1004ce1e 0x2 + .rodata.hci_ops + 0x1004ce20 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + 0x1004ce20 hci_ops + .rodata.str1.1 + 0x1004ce30 0x15 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .rodata.Array_MP_8195A_TXPWR_LMT + 0x1004ce45 0x498 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004ce45 Array_MP_8195A_TXPWR_LMT + *fill* 0x1004d2dd 0x3 + .rodata 0x1004d2e0 0x9c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .rodata 0x1004d37c 0x3b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .rodata.__stdin_name + 0x1004d3b7 0x7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x1004d3b7 __stdin_name + .rodata.__stderr_name + 0x1004d3be 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x1004d3be __stderr_name + .rodata.__stdout_name + 0x1004d3c6 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x1004d3c6 __stdout_name + .rodata._ctype_ + 0x1004d3ce 0x101 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) + 0x1004d3ce _ctype_ + .rodata.str1.1 + 0x00000000 0x15 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + 0x2 (size before relaxing) + .rodata.str1.1 + 0x1004d4cf 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + *fill* 0x1004d4d3 0x1 + .rodata 0x1004d4d4 0xc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + .rodata.str1.1 + 0x1004d4e0 0x1b /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + *fill* 0x1004d4fb 0x1 + .rodata.__sf_fake_stdin + 0x1004d4fc 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + 0x1004d4fc __sf_fake_stdin + .rodata.__sf_fake_stdout + 0x1004d51c 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + 0x1004d51c __sf_fake_stdout + .rodata.__sf_fake_stderr + 0x1004d53c 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + 0x1004d53c __sf_fake_stderr + *(.fwu.rodata*) + +.rel.dyn 0x1004d55c 0x0 + .rel.iplt 0x00000000 0x0 application/Debug/obj/system_8195a.o + +.ram.data 0x1004d55c 0x1c40 + 0x1004d55c __data_start__ = . + *(.data*) + .data.SystemCoreClock + 0x1004d55c 0x4 application/Debug/obj/system_8195a.o + 0x1004d55c SystemCoreClock + .data.at_transport_items + 0x1004d560 0xb0 application/Debug/obj/atcmd_lwip.o + 0x1004d560 at_transport_items + .data.at_sys_items + 0x1004d610 0xc0 application/Debug/obj/atcmd_sys.o + 0x1004d610 at_sys_items + .data.ap_netmask + 0x1004d6d0 0x4 application/Debug/obj/atcmd_wifi.o + 0x1004d6d0 ap_netmask + .data.sta_gw 0x1004d6d4 0x4 application/Debug/obj/atcmd_wifi.o + 0x1004d6d4 sta_gw + .data.sta_ip 0x1004d6d8 0x4 application/Debug/obj/atcmd_wifi.o + 0x1004d6d8 sta_ip + .data.sta_netmask + 0x1004d6dc 0x4 application/Debug/obj/atcmd_wifi.o + 0x1004d6dc sta_netmask + .data.ap_gw 0x1004d6e0 0x4 application/Debug/obj/atcmd_wifi.o + 0x1004d6e0 ap_gw + .data.at_wifi_items + 0x1004d6e4 0xc0 application/Debug/obj/atcmd_wifi.o + 0x1004d6e4 at_wifi_items + .data.wifi 0x1004d7a4 0x38 application/Debug/obj/atcmd_wifi.o + .data.ap_ip 0x1004d7dc 0x4 application/Debug/obj/atcmd_wifi.o + 0x1004d7dc ap_ip + .data.dhcp_mode_sta + 0x1004d7e0 0x1 application/Debug/obj/atcmd_wifi.o + 0x1004d7e0 dhcp_mode_sta + .data.dhcp_mode_ap + 0x1004d7e1 0x1 application/Debug/obj/atcmd_wifi.o + 0x1004d7e1 dhcp_mode_ap + *fill* 0x1004d7e2 0x2 + .data.wifi_mode + 0x1004d7e4 0x4 application/Debug/obj/atcmd_wifi.o + 0x1004d7e4 wifi_mode + .data.gDbgFlag + 0x1004d7e8 0x4 application/Debug/obj/log_service.o + 0x1004d7e8 gDbgFlag + .data.log_init_table + 0x1004d7ec 0xc application/Debug/obj/log_service.o + 0x1004d7ec log_init_table + .data.gDbgLevel + 0x1004d7f8 0x1 application/Debug/obj/log_service.o + 0x1004d7f8 gDbgLevel + *fill* 0x1004d7f9 0x3 + .data.error_flag + 0x1004d7fc 0x4 application/Debug/obj/wifi_conf.o + 0x1004d7fc error_flag + .data.tcp_port + 0x1004d800 0x2 application/Debug/obj/tcp.o + *fill* 0x1004d802 0x2 + .data.iss.7226 + 0x1004d804 0x4 application/Debug/obj/tcp.o + .data.udp_port + 0x1004d808 0x2 application/Debug/obj/udp.o + *fill* 0x1004d80a 0x2 + .data.dhcp_recorded_xid + 0x1004d80c 0x4 application/Debug/obj/dhcps.o + .data.dhcp_server_state_machine + 0x1004d810 0x1 application/Debug/obj/dhcps.o + *fill* 0x1004d811 0x3 + .data.xHeapRegions + 0x1004d814 0x18 application/Debug/obj/heap_5.o + 0x1004d814 xHeapRegions + .data.uxCriticalNesting + 0x1004d82c 0x4 application/Debug/obj/port.o + .data.xNextTaskUnblockTime + 0x1004d830 0x4 application/Debug/obj/tasks.o + .data.seed.11819 + 0x1004d834 0x4 application/Debug/obj/freertos_service.o + .data.wakeup_event + 0x1004d838 0x4 application/Debug/obj/freertos_pmu.o + .data.wakelock + 0x1004d83c 0x4 application/Debug/obj/freertos_pmu.o + .data.reserve_pll + 0x1004d840 0x1 application/Debug/obj/freertos_pmu.o + 0x1004d840 reserve_pll + .data.gAT_Echo + 0x1004d841 0x1 application/Debug/obj/example_uart_atcmd.o + 0x1004d841 gAT_Echo + .data.udp_bcast + 0x1004d842 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x1004d842 udp_bcast + .data.g_ios_mac + 0x1004d87e 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .data.udp_mcast_pin + 0x1004d884 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x1004d884 udp_mcast_pin + .data.udp_bcast_pin + 0x1004d8c0 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x1004d8c0 udp_bcast_pin + .data.g_security_mode + 0x1004d8fc 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x1004d8fc g_security_mode + .data.udp_mcast + 0x1004d8fd 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x1004d8fd udp_mcast + *fill* 0x1004d939 0x3 + .data.mlme_sta_tbl + 0x1004d93c 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x1004d93c mlme_sta_tbl + .data.PMKID_KDE_TYPE.17744 + 0x1004d9ac 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + *fill* 0x1004d9b2 0x2 + .data.nr_xmitbuff + 0x1004d9b4 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1004d9b4 nr_xmitbuff + .data.nr_xmitframe + 0x1004d9b8 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x1004d9b8 nr_xmitframe + .data.P802_1H_OUI + 0x1004d9bc 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .data.rtw_adaptivity_mode + 0x1004d9bf 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x1004d9bf rtw_adaptivity_mode + .data.g_user_ap_sta_num + 0x1004d9c0 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0x1004d9c0 g_user_ap_sta_num + *fill* 0x1004d9c1 0x3 + .data.rtw_private_handler + 0x1004d9c4 0x44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .data.max_local_skb_num + 0x1004da08 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1004da08 max_local_skb_num + .data.max_skb_buf_num + 0x1004da0c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1004da0c max_skb_buf_num + .data.rom_e_rtw_msgp_str_ + 0x1004da10 0x1dc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + 0x1004da10 rom_e_rtw_msgp_str_ + .data.ARFB_table + 0x1004dbec 0x3f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1004dbec ARFB_table + .data.TRYING_NECESSARY_idx + 0x1004dc2b 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1004dc2b TRYING_NECESSARY_idx + .data.DROPING_NECESSARY + 0x1004dc3f 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1004dc3f DROPING_NECESSARY + .data.PER_RATE_UP + 0x1004dc53 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1004dc53 PER_RATE_UP + .data.PER_RATE_DOWN + 0x1004dc67 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x1004dc67 PER_RATE_DOWN + *fill* 0x1004dc7b 0x1 + .data.Array_MP_8195A_PHY_REG_PG + 0x1004dc7c 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + 0x1004dc7c Array_MP_8195A_PHY_REG_PG + .data.Array_MP_8195A_AGC_TAB + 0x1004dd0c 0x210 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + 0x1004dd0c Array_MP_8195A_AGC_TAB + .data.Array_MP_8195A_PHY_REG + 0x1004df1c 0x678 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + 0x1004df1c Array_MP_8195A_PHY_REG + .data.rtl8195A_card_disable_flow + 0x1004e594 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + 0x1004e594 rtl8195A_card_disable_flow + .data.rtl8195A_card_enable_flow + 0x1004e634 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + 0x1004e634 rtl8195A_card_enable_flow + .data.Array_MP_8195A_MAC_REG + 0x1004e6d4 0x308 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + 0x1004e6d4 Array_MP_8195A_MAC_REG + .data.gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_TFBGA96_8195A + 0x1004e9dc 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004e9dc gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_TFBGA96_8195A + .data.gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_TFBGA96_8195A + 0x1004e9fc 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004e9fc gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_TFBGA96_8195A + .data.gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_QFN48_8195A + 0x1004ea1c 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004ea1c gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_QFN48_8195A + .data.gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_QFN56_8195A + 0x1004ea3a 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004ea3a gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_QFN56_8195A + .data.gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_QFN48_8195A + 0x1004ea58 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004ea58 gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_QFN48_8195A + .data.gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_QFN56_8195A + 0x1004ea76 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004ea76 gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_QFN56_8195A + .data.gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_TFBGA96_8195A + 0x1004ea94 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004ea94 gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_TFBGA96_8195A + .data.gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_QFN56_8195A + 0x1004eab4 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004eab4 gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_QFN56_8195A + .data.gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_QFN48_8195A + 0x1004ead2 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004ead2 gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_QFN48_8195A + .data.gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_QFN56_8195A + 0x1004eaf0 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004eaf0 gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_QFN56_8195A + *fill* 0x1004eb0e 0x2 + .data.Array_MP_8195A_RadioA + 0x1004eb10 0x5c8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004eb10 Array_MP_8195A_RadioA + .data.gDeltaSwingTableXtal_MP_P_TxXtalTrack_8195A + 0x1004f0d8 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004f0d8 gDeltaSwingTableXtal_MP_P_TxXtalTrack_8195A + .data.gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_TFBGA96_8195A + 0x1004f0f6 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004f0f6 gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_TFBGA96_8195A + .data.gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_QFN48_8195A + 0x1004f116 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x1004f116 gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_QFN48_8195A + .data.__ctype_ptr__ + 0x1004f134 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) + 0x1004f134 __ctype_ptr__ + .data.impure_data + 0x1004f138 0x60 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + .data._impure_ptr + 0x1004f198 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + 0x1004f198 _impure_ptr + 0x1004f19c __data_end__ = . + 0x1004f19c __ram_image2_text_end__ = . + +.ram.bss 0x1004f19c 0x9828 + 0x1004f19c __bss_start__ = . + 0x1004f19c .ram.bss$$Base = . + *(.hal.flash.data*) + .hal.flash.data + 0x1004f19c 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + 0x1004f19c SpicInitParaAllClk + *(.hal.sdrc.data*) + *(.hal.gpio.data*) + *(.fwu.data*) + *(.bss*) + .bss.node_pool + 0x1004f22c 0x1b8 application/Debug/obj/atcmd_lwip.o + 0x1004f22c node_pool + .bss.errno 0x1004f3e4 0x4 application/Debug/obj/atcmd_lwip.o + 0x1004f3e4 errno + .bss.tx_buffer + 0x1004f3e8 0x640 application/Debug/obj/atcmd_lwip.o + .bss.atcmd_lwip_tt_task + 0x1004fa28 0x4 application/Debug/obj/atcmd_lwip.o + 0x1004fa28 atcmd_lwip_tt_task + .bss.rx_buffer + 0x1004fa2c 0x640 application/Debug/obj/atcmd_lwip.o + .bss.mainlist 0x1005006c 0x4 application/Debug/obj/atcmd_lwip.o + 0x1005006c mainlist + .bss.atcmd_lwip_tt_lasttickcnt + 0x10050070 0x4 application/Debug/obj/atcmd_lwip.o + 0x10050070 atcmd_lwip_tt_lasttickcnt + .bss.atcmd_lwip_tt_datasize + 0x10050074 0x4 application/Debug/obj/atcmd_lwip.o + 0x10050074 atcmd_lwip_tt_datasize + .bss.atcmd_lwip_tt_mode + 0x10050078 0x4 application/Debug/obj/atcmd_lwip.o + 0x10050078 atcmd_lwip_tt_mode + .bss.atcmd_lwip_auto_recv + 0x1005007c 0x4 application/Debug/obj/atcmd_lwip.o + .bss.atcmd_lwip_tt_sema + 0x10050080 0x4 application/Debug/obj/atcmd_lwip.o + 0x10050080 atcmd_lwip_tt_sema + .bss.password 0x10050084 0x44 application/Debug/obj/atcmd_wifi.o + .bss.ap 0x100500c8 0x34 application/Debug/obj/atcmd_wifi.o + .bss.ApNum.13170 + 0x100500fc 0x4 application/Debug/obj/atcmd_wifi.o + .bss.log_buf 0x10050100 0x640 application/Debug/obj/log_service.o + 0x10050100 log_buf + .bss.log_service_sema + 0x10050740 0x4 application/Debug/obj/log_service.o + 0x10050740 log_service_sema + .bss.__log_init_begin__ + 0x10050744 0x4 application/Debug/obj/log_service.o + 0x10050744 __log_init_begin__ + .bss.log_rx_interrupt_sema + 0x10050748 0x4 application/Debug/obj/log_service.o + 0x10050748 log_rx_interrupt_sema + .bss.__log_init_end__ + 0x1005074c 0x4 application/Debug/obj/log_service.o + 0x1005074c __log_init_end__ + .bss.log_hash 0x10050750 0x100 application/Debug/obj/log_service.o + 0x10050750 log_hash + .bss.eap_method + 0x10050850 0x1 application/Debug/obj/wifi_eap_config.o + 0x10050850 eap_method + .bss.eap_phase + 0x10050851 0x1 application/Debug/obj/wifi_eap_config.o + 0x10050851 eap_phase + *fill* 0x10050852 0x2 + .bss.event_init.9106 + 0x10050854 0x4 application/Debug/obj/wifi_conf.o + .bss.rtw_join_status + 0x10050858 0x4 application/Debug/obj/wifi_conf.o + 0x10050858 rtw_join_status + .bss.scan_result_handler_ptr + 0x1005085c 0x24 application/Debug/obj/wifi_conf.o + .bss.join_user_data + 0x10050880 0x4 application/Debug/obj/wifi_conf.o + .bss.param.9384 + 0x10050884 0x18 application/Debug/obj/wifi_conf.o + .bss.event_callback_list + 0x1005089c 0x180 application/Debug/obj/wifi_ind.o + .bss.paff_array + 0x10050a1c 0x78 application/Debug/obj/wifi_promisc.o + 0x10050a1c paff_array + .bss.packet_filter_enable_num + 0x10050a94 0x1 application/Debug/obj/wifi_promisc.o + *fill* 0x10050a95 0x3 + .bss.simple_config_cmd_start_time + 0x10050a98 0x4 application/Debug/obj/wifi_simple_config.o + .bss.ack_content + 0x10050a9c 0x4 application/Debug/obj/wifi_simple_config.o + .bss.fixed_channel_num + 0x10050aa0 0x4 application/Debug/obj/wifi_simple_config.o + 0x10050aa0 fixed_channel_num + .bss.g_ssid_len + 0x10050aa4 0x4 application/Debug/obj/wifi_simple_config.o + 0x10050aa4 g_ssid_len + .bss.is_promisc_callback_unlock + 0x10050aa8 0x4 application/Debug/obj/wifi_simple_config.o + 0x10050aa8 is_promisc_callback_unlock + .bss.simple_config_terminate + 0x10050aac 0x1 application/Debug/obj/wifi_simple_config.o + 0x10050aac simple_config_terminate + *fill* 0x10050aad 0x3 + .bss.backup_sc_ctx + 0x10050ab0 0x4 application/Debug/obj/wifi_simple_config.o + 0x10050ab0 backup_sc_ctx + .bss.is_fixed_channel + 0x10050ab4 0x4 application/Debug/obj/wifi_simple_config.o + .bss.g_ssid 0x10050ab8 0x20 application/Debug/obj/wifi_simple_config.o + 0x10050ab8 g_ssid + .bss.simple_config_cmd_current_time + 0x10050ad8 0x4 application/Debug/obj/wifi_simple_config.o + .bss.simple_config_result + 0x10050adc 0x4 application/Debug/obj/wifi_simple_config.o + 0x10050adc simple_config_result + .bss.lwip_init_done + 0x10050ae0 0x4 application/Debug/obj/lwip_netconf.o + 0x10050ae0 lwip_init_done + .bss.xnetif 0x10050ae4 0x78 application/Debug/obj/lwip_netconf.o + 0x10050ae4 xnetif + .bss.ping_seq 0x10050b5c 0x2 application/Debug/obj/ping_test.o + *fill* 0x10050b5e 0x2 + .bss.ping_call + 0x10050b60 0x4 application/Debug/obj/ping_test.o + .bss.ping_interval + 0x10050b64 0x4 application/Debug/obj/ping_test.o + .bss.data_size + 0x10050b68 0x4 application/Debug/obj/ping_test.o + .bss.ping_count + 0x10050b6c 0x4 application/Debug/obj/ping_test.o + .bss.ping_ip 0x10050b70 0x10 application/Debug/obj/ping_test.o + .bss.infinite_loop + 0x10050b80 0x4 application/Debug/obj/ping_test.o + .bss.TaskOTA 0x10050b84 0x4 application/Debug/obj/update.o + 0x10050b84 TaskOTA + .bss.s_hostent.6808 + 0x10050b88 0x14 application/Debug/obj/netdb.o + .bss.s_hostent_addr.6810 + 0x10050b9c 0x4 application/Debug/obj/netdb.o + .bss.s_phostent_addr.6811 + 0x10050ba0 0x8 application/Debug/obj/netdb.o + .bss.h_errno 0x10050ba8 0x4 application/Debug/obj/netdb.o + 0x10050ba8 h_errno + .bss.s_aliases.6809 + 0x10050bac 0x4 application/Debug/obj/netdb.o + .bss.select_cb_list + 0x10050bb0 0x4 application/Debug/obj/sockets.o + .bss.sockets 0x10050bb4 0xf0 application/Debug/obj/sockets.o + .bss.select_cb_ctr + 0x10050ca4 0x4 application/Debug/obj/sockets.o + .bss.mbox 0x10050ca8 0x4 application/Debug/obj/tcpip.o + .bss.tcpip_init_done_arg + 0x10050cac 0x4 application/Debug/obj/tcpip.o + .bss.tcpip_init_done + 0x10050cb0 0x4 application/Debug/obj/tcpip.o + .bss.allsystems + 0x10050cb4 0x4 application/Debug/obj/igmp.o + .bss.allrouters + 0x10050cb8 0x4 application/Debug/obj/igmp.o + .bss.igmp_group_list + 0x10050cbc 0x4 application/Debug/obj/igmp.o + .bss.current_header + 0x10050cc0 0x4 application/Debug/obj/ip.o + 0x10050cc0 current_header + .bss.ip_id 0x10050cc4 0x2 application/Debug/obj/ip.o + *fill* 0x10050cc6 0x2 + .bss.current_iphdr_src + 0x10050cc8 0x4 application/Debug/obj/ip.o + 0x10050cc8 current_iphdr_src + .bss.current_iphdr_dest + 0x10050ccc 0x4 application/Debug/obj/ip.o + 0x10050ccc current_iphdr_dest + .bss.current_netif + 0x10050cd0 0x4 application/Debug/obj/ip.o + 0x10050cd0 current_netif + .bss.str.6159 0x10050cd4 0x10 application/Debug/obj/ip_addr.o + .bss.reassdatagrams + 0x10050ce4 0x4 application/Debug/obj/ip_frag.o + .bss.ip_reass_pbufcount + 0x10050ce8 0x2 application/Debug/obj/ip_frag.o + *fill* 0x10050cea 0x2 + .bss.dhcp_rx_options_given + 0x10050cec 0xc application/Debug/obj/dhcp.o + 0x10050cec dhcp_rx_options_given + .bss.dhcp_rx_options_val + 0x10050cf8 0x28 application/Debug/obj/dhcp.o + 0x10050cf8 dhcp_rx_options_val + .bss.xid.7209 0x10050d20 0x4 application/Debug/obj/dhcp.o + .bss.dns_seqno + 0x10050d24 0x1 application/Debug/obj/dns.o + *fill* 0x10050d25 0x3 + .bss.dns_table + 0x10050d28 0x460 application/Debug/obj/dns.o + .bss.dns_servers + 0x10051188 0x8 application/Debug/obj/dns.o + .bss.dns_payload_buffer + 0x10051190 0x204 application/Debug/obj/dns.o + .bss.dns_pcb 0x10051394 0x4 application/Debug/obj/dns.o + .bss.dns_payload + 0x10051398 0x4 application/Debug/obj/dns.o + .bss.tcpip_tcp_timer_active + 0x1005139c 0x4 application/Debug/obj/lwip_timers.o + .bss.next_timeout + 0x100513a0 0x4 application/Debug/obj/lwip_timers.o + .bss.netif_list + 0x100513a4 0x4 application/Debug/obj/netif.o + 0x100513a4 netif_list + .bss.netif_default + 0x100513a8 0x4 application/Debug/obj/netif.o + 0x100513a8 netif_default + .bss.netif_num + 0x100513ac 0x1 application/Debug/obj/netif.o + .bss.pbuf_free_ooseq_pending + 0x100513ad 0x1 application/Debug/obj/pbuf.o + 0x100513ad pbuf_free_ooseq_pending + *fill* 0x100513ae 0x2 + .bss.raw_pcbs 0x100513b0 0x4 application/Debug/obj/raw.o + .bss.tcp_active_pcbs_changed + 0x100513b4 0x1 application/Debug/obj/tcp.o + 0x100513b4 tcp_active_pcbs_changed + *fill* 0x100513b5 0x3 + .bss.tcp_ticks + 0x100513b8 0x4 application/Debug/obj/tcp.o + 0x100513b8 tcp_ticks + .bss.tcp_timer + 0x100513bc 0x1 application/Debug/obj/tcp.o + *fill* 0x100513bd 0x3 + .bss.tcp_listen_pcbs + 0x100513c0 0x4 application/Debug/obj/tcp.o + 0x100513c0 tcp_listen_pcbs + .bss.tcp_active_pcbs + 0x100513c4 0x4 application/Debug/obj/tcp.o + 0x100513c4 tcp_active_pcbs + .bss.tcp_timer_ctr + 0x100513c8 0x1 application/Debug/obj/tcp.o + *fill* 0x100513c9 0x3 + .bss.tcp_tw_pcbs + 0x100513cc 0x4 application/Debug/obj/tcp.o + 0x100513cc tcp_tw_pcbs + .bss.tcp_tmp_pcb + 0x100513d0 0x4 application/Debug/obj/tcp.o + 0x100513d0 tcp_tmp_pcb + .bss.tcp_bound_pcbs + 0x100513d4 0x4 application/Debug/obj/tcp.o + 0x100513d4 tcp_bound_pcbs + .bss.seqno 0x100513d8 0x4 application/Debug/obj/tcp_in.o + .bss.iphdr 0x100513dc 0x4 application/Debug/obj/tcp_in.o + .bss.tcplen 0x100513e0 0x2 application/Debug/obj/tcp_in.o + *fill* 0x100513e2 0x2 + .bss.ackno 0x100513e4 0x4 application/Debug/obj/tcp_in.o + .bss.flags 0x100513e8 0x1 application/Debug/obj/tcp_in.o + .bss.recv_flags + 0x100513e9 0x1 application/Debug/obj/tcp_in.o + *fill* 0x100513ea 0x2 + .bss.tcphdr 0x100513ec 0x4 application/Debug/obj/tcp_in.o + .bss.recv_data + 0x100513f0 0x4 application/Debug/obj/tcp_in.o + .bss.inseg 0x100513f4 0x14 application/Debug/obj/tcp_in.o + .bss.tcp_input_pcb + 0x10051408 0x4 application/Debug/obj/tcp_in.o + 0x10051408 tcp_input_pcb + .bss.udp_pcbs 0x1005140c 0x4 application/Debug/obj/udp.o + 0x1005140c udp_pcbs + .bss.etharp_cached_entry + 0x10051410 0x1 application/Debug/obj/etharp.o + *fill* 0x10051411 0x3 + .bss.arp_table + 0x10051414 0xc8 application/Debug/obj/etharp.o + .bss.lwip_tickless_used + 0x100514dc 0x4 application/Debug/obj/ethernetif.o + 0x100514dc lwip_tickless_used + .bss.s_timeoutlist + 0x100514e0 0x30 application/Debug/obj/sys_arch.o + .bss.s_nextthread + 0x10051510 0x2 application/Debug/obj/sys_arch.o + *fill* 0x10051512 0x2 + .bss.dhcps_network_id + 0x10051514 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_ip_table_semaphore + 0x10051518 0x4 application/Debug/obj/dhcps.o + .bss.bound_client_ethernet_address + 0x1005151c 0x10 application/Debug/obj/dhcps.o + .bss.client_request_ip + 0x1005152c 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_local_gateway + 0x10051530 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_send_broadcast_address + 0x10051534 0x4 application/Debug/obj/dhcps.o + .bss.dhcp_message_repository + 0x10051538 0x4 application/Debug/obj/dhcps.o + .bss.dhcp_message_total_options_lenth + 0x1005153c 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_local_mask + 0x10051540 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_local_address + 0x10051544 0x4 application/Debug/obj/dhcps.o + .bss.dhcp_client_ethernet_address + 0x10051548 0x10 application/Debug/obj/dhcps.o + .bss.dhcps_netif + 0x10051558 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_addr_pool_set + 0x1005155c 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_pcb + 0x10051560 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_subnet_broadcast + 0x10051564 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_addr_pool_start + 0x10051568 0x4 application/Debug/obj/dhcps.o + .bss.dhcps_allocated_client_address + 0x1005156c 0x4 application/Debug/obj/dhcps.o + .bss.ip_table 0x10051570 0x20 application/Debug/obj/dhcps.o + .bss.dhcps_addr_pool_end + 0x10051590 0x4 application/Debug/obj/dhcps.o + .bss.ext_upper + 0x10051594 0x4 application/Debug/obj/heap_5.o + .bss.xFreeBytesRemaining + 0x10051598 0x4 application/Debug/obj/heap_5.o + .bss.ext_free 0x1005159c 0x4 application/Debug/obj/heap_5.o + .bss.ext_lower + 0x100515a0 0x4 application/Debug/obj/heap_5.o + .bss.pxEnd 0x100515a4 0x4 application/Debug/obj/heap_5.o + .bss.xStart 0x100515a8 0x8 application/Debug/obj/heap_5.o + .bss.xMinimumEverFreeBytesRemaining + 0x100515b0 0x4 application/Debug/obj/heap_5.o + .bss.xBlockAllocatedBit + 0x100515b4 0x4 application/Debug/obj/heap_5.o + .bss.ulTimerCountsForOneTick + 0x100515b8 0x4 application/Debug/obj/port.o + .bss.ulStoppedTimerCompensation + 0x100515bc 0x4 application/Debug/obj/port.o + .bss.xMaximumPossibleSuppressedTicks + 0x100515c0 0x4 application/Debug/obj/port.o + .bss.xSuspendedTaskList + 0x100515c4 0x14 application/Debug/obj/tasks.o + .bss.pxDelayedTaskList + 0x100515d8 0x4 application/Debug/obj/tasks.o + .bss.xSchedulerRunning + 0x100515dc 0x4 application/Debug/obj/tasks.o + .bss.uxTasksDeleted + 0x100515e0 0x4 application/Debug/obj/tasks.o + .bss.xTasksWaitingTermination + 0x100515e4 0x14 application/Debug/obj/tasks.o + .bss.xDelayedTaskList2 + 0x100515f8 0x14 application/Debug/obj/tasks.o + .bss.uxPendedTicks + 0x1005160c 0x4 application/Debug/obj/tasks.o + .bss.pxReadyTasksLists + 0x10051610 0xdc application/Debug/obj/tasks.o + .bss.uxSchedulerSuspended + 0x100516ec 0x4 application/Debug/obj/tasks.o + .bss.pxCurrentTCB + 0x100516f0 0x4 application/Debug/obj/tasks.o + 0x100516f0 pxCurrentTCB + .bss.xPendingReadyList + 0x100516f4 0x14 application/Debug/obj/tasks.o + .bss.xNumOfOverflows + 0x10051708 0x4 application/Debug/obj/tasks.o + .bss.xTickCount + 0x1005170c 0x4 application/Debug/obj/tasks.o + .bss.pxOverflowDelayedTaskList + 0x10051710 0x4 application/Debug/obj/tasks.o + .bss.uxTaskNumber + 0x10051714 0x4 application/Debug/obj/tasks.o + .bss.xDelayedTaskList1 + 0x10051718 0x14 application/Debug/obj/tasks.o + .bss.uxCurrentNumberOfTasks + 0x1005172c 0x4 application/Debug/obj/tasks.o + .bss.uxTopReadyPriority + 0x10051730 0x4 application/Debug/obj/tasks.o + .bss.xYieldPending + 0x10051734 0x4 application/Debug/obj/tasks.o + .bss.pxCurrentTimerList + 0x10051738 0x4 application/Debug/obj/timers.o + .bss.xActiveTimerList1 + 0x1005173c 0x14 application/Debug/obj/timers.o + .bss.xActiveTimerList2 + 0x10051750 0x14 application/Debug/obj/timers.o + .bss.xTimerQueue + 0x10051764 0x4 application/Debug/obj/timers.o + .bss.xLastTime.5155 + 0x10051768 0x4 application/Debug/obj/timers.o + .bss.pxOverflowTimerList + 0x1005176c 0x4 application/Debug/obj/timers.o + .bss.xTimerTaskHandle + 0x10051770 0x4 application/Debug/obj/timers.o + .bss.device_mutex + 0x10051774 0x8 application/Debug/obj/device_lock.o + .bss.mutex_init + 0x1005177c 0x4 application/Debug/obj/device_lock.o + .bss.uxSavedInterruptStatus + 0x10051780 0x4 application/Debug/obj/freertos_service.o + .bss.min_free_heap_size + 0x10051784 0x4 application/Debug/obj/osdep_service.o + 0x10051784 min_free_heap_size + .bss.g_heap_inited + 0x10051788 0x4 application/Debug/obj/tcm_heap.o + .bss.tcm_lock 0x1005178c 0x4 application/Debug/obj/tcm_heap.o + .bss.g_tcm_heap + 0x10051790 0x4 application/Debug/obj/tcm_heap.o + .bss.flashobj 0x10051794 0xc application/Debug/obj/flash_api.o + .bss.isinit 0x100517a0 0x4 application/Debug/obj/flash_api.o + .bss.serial_irq_ids + 0x100517a4 0xc application/Debug/obj/serial_api.o + .bss.irq_handler + 0x100517b0 0xc application/Debug/obj/serial_api.o + .bss.UartGdmaOp + 0x100517bc 0x28 application/Debug/obj/serial_api.o + .bss.serial_irq_en + 0x100517e4 0xc application/Debug/obj/serial_api.o + .bss.gHAL_Gpio_Adapter + 0x100517f0 0x12c application/Debug/obj/hal_gpio.o + 0x100517f0 gHAL_Gpio_Adapter + .bss.post_sleep_callback + 0x1005191c 0x80 application/Debug/obj/freertos_pmu.o + 0x1005191c post_sleep_callback + .bss.pre_sleep_callback + 0x1005199c 0x80 application/Debug/obj/freertos_pmu.o + 0x1005199c pre_sleep_callback + .bss.missing_tick + 0x10051a1c 0x4 application/Debug/obj/freertos_pmu.o + 0x10051a1c missing_tick + .bss.Timer2To7HandlerData + 0x10051a20 0x18 application/Debug/obj/rtl8195a_timer.o + 0x10051a20 Timer2To7HandlerData + .bss.data_sz.14027 + 0x10051a38 0x4 application/Debug/obj/example_uart_atcmd.o + .bss.temp_buf.14022 + 0x10051a3c 0x640 application/Debug/obj/example_uart_atcmd.o + .bss.at_string + 0x1005207c 0x640 application/Debug/obj/example_uart_atcmd.o + 0x1005207c at_string + .bss.last_tickcnt.14025 + 0x100526bc 0x4 application/Debug/obj/example_uart_atcmd.o + .bss.at_cmd_sobj + 0x100526c0 0x71c application/Debug/obj/example_uart_atcmd.o + 0x100526c0 at_cmd_sobj + .bss.data_cmd_sz.14028 + 0x10052ddc 0x4 application/Debug/obj/example_uart_atcmd.o + .bss.buf_count.14023 + 0x10052de0 0x4 application/Debug/obj/example_uart_atcmd.o + .bss.combo_key.14024 + 0x10052de4 0x1 application/Debug/obj/example_uart_atcmd.o + .bss.is_data_cmd.14026 + 0x10052de5 0x1 application/Debug/obj/example_uart_atcmd.o + .bss.SYSAdapte + 0x10052de6 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10052de6 SYSAdapte + *fill* 0x10052de7 0x1 + .bss.PwrAdapter + 0x10052de8 0x28c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x10052de8 PwrAdapter + .bss.g_bssid 0x10053074 0x6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10053074 g_bssid + *fill* 0x1005307a 0x2 + .bss.simple_config_status + 0x1005307c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x1005307c simple_config_status + .bss.use_ios7_mac + 0x10053080 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + *fill* 0x10053081 0x3 + .bss.custom_pin + 0x10053084 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .bss.get_channel_flag + 0x10053088 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10053088 get_channel_flag + .bss.radom_value + 0x10053089 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + *fill* 0x1005308d 0x3 + .bss.profile_pkt_index + 0x10053090 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .bss.sc_api_fun + 0x10053094 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0x10053094 sc_api_fun + .bss.fix_sa 0x100530c0 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + *fill* 0x100530c1 0x3 + .bss.g_sc_pin_len + 0x100530c4 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .bss.pp 0x100530c8 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .bss.sync_pkt_index + 0x100530cc 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .bss.g_sc_ctx 0x100530d0 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .bss.auto_reconnect_running + 0x100530d4 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100530d4 auto_reconnect_running + *fill* 0x100530d5 0x3 + .bss.p_wlan_autoreconnect_hdl + 0x100530d8 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x100530d8 p_wlan_autoreconnect_hdl + .bss.mac_monitor_callback + 0x100530dc 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100530dc mac_monitor_callback + .bss.mf_list_head + 0x100530e0 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0x100530e0 mf_list_head + .bss.pscan_retry_cnt.21430 + 0x100530e4 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + *fill* 0x100530e5 0x3 + .bss.promisc_callback_all + 0x100530e8 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x100530e8 promisc_callback_all + .bss.promisc_sema + 0x100530ec 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x100530ec promisc_sema + .bss.promisc_callback + 0x100530f0 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x100530f0 promisc_callback + .bss.psk_essid + 0x100530f4 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x100530f4 psk_essid + .bss.psk_passphrase + 0x1005313c 0x82 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x1005313c psk_passphrase + .bss.psk_passphrase64 + 0x100531be 0x41 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x100531be psk_passphrase64 + .bss.wpa_global_PSK + 0x100531ff 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x100531ff wpa_global_PSK + .bss.RFC1042_OUI + 0x1005324f 0x3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + *fill* 0x10053252 0x2 + .bss.rx_ring_pool + 0x10053254 0x20e0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .bss.stop_report_count.20629 + 0x10055334 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .bss.bCheckStateTIMER + 0x10055335 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x10055335 bCheckStateTIMER + *fill* 0x10055336 0x2 + .bss.WifiMcuCmdBitMap.20974 + 0x10055338 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .bss.p_wlan_init_done_callback + 0x1005533c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x1005533c p_wlan_init_done_callback + .bss.rtw_power_percentage_idx + 0x10055340 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10055340 rtw_power_percentage_idx + *fill* 0x10055341 0x3 + .bss.p_wlan_uart_adapter_callback + 0x10055344 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10055344 p_wlan_uart_adapter_callback + .bss.rtw_adaptivity_en + 0x10055348 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10055348 rtw_adaptivity_en + *fill* 0x10055349 0x3 + .bss.p_wlan_mgmt_filter + 0x1005534c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x1005534c p_wlan_mgmt_filter + .bss.rtw_initmac + 0x10055350 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10055350 rtw_initmac + .bss.rtw_adaptivity_th_l2h_ini + 0x10055354 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x10055354 rtw_adaptivity_th_l2h_ini + *fill* 0x10055355 0x3 + .bss.drvpriv 0x10055358 0x14 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .bss.skbbuf_used_num + 0x1005536c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x1005536c skbbuf_used_num + .bss.skb_pool 0x10055370 0x1b8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x10055370 skb_pool + .bss.skbdata_used_num + 0x10055528 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x10055528 skbdata_used_num + .bss.wrapper_skbbuf_list + 0x1005552c 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .bss.max_skbdata_used_num + 0x10055534 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x10055534 max_skbdata_used_num + .bss.max_skbbuf_used_num + 0x10055538 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x10055538 max_skbbuf_used_num + .bss.skb_fail_count + 0x1005553c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .bss.timer_table + 0x10055540 0x8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x10055540 timer_table + .bss.rltk_wlan_info + 0x10055548 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x10055548 rltk_wlan_info + .bss.timer_used_num + 0x10055578 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .bss.max_timer_used_num + 0x1005557c 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x1005557c max_timer_used_num + .bss.Noisy_State + 0x10055580 0x1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x10055580 Noisy_State + *fill* 0x10055581 0x3 + .bss.pExportWlanIrqSemaphore + 0x10055584 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + 0x10055584 pExportWlanIrqSemaphore + .bss.gDeltaSwingTableXtal_MP_N_TxXtalTrack_8195A + 0x10055588 0x1e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x10055588 gDeltaSwingTableXtal_MP_N_TxXtalTrack_8195A + *fill* 0x100555a6 0x2 + .bss.libc_has_init + 0x100555a8 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .bss.heap_end.4961 + 0x100555ac 0x4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + .bss.__malloc_sbrk_start + 0x100555b0 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + 0x100555b0 __malloc_sbrk_start + .bss.__malloc_free_list + 0x100555b4 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + 0x100555b4 __malloc_free_list + .bss.heap_end.4243 + 0x100555b8 0x4 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + *(COMMON) + *(.bdsram.data*) + .bdsram.data 0x100555bc 0x3408 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0x100555c4 skb_data_pool + 0x100589c4 __bss_end__ = . + 0x100589c4 .ram.bss$$Limit = . + +.bf_data 0x100589c4 0xf118 + 0x100589c4 __buffer_data_start__ = . + *(.bfsram.data*) + .bfsram.data 0x100589c4 0xf000 application/Debug/obj/heap_5.o + .bfsram.data 0x100679c4 0x118 application/Debug/obj/tasks.o + 0x10067adc __buffer_data_end__ = . + +.bf_data2 0x10002100 0x0 + 0x10002100 __buffer_data_start2__ = . + 0x10002100 __buffer_data_end2__ = . + +.sdr_text 0x30000000 0x0 + 0x30000000 __sdram_data_start__ = . + *(.sdram.text*) + *(.p2p.text*) + *(.wps.text*) + *(.websocket.text*) + +.sdr_rodata + *(.sdram.rodata*) + *(.p2p.rodata*) + *(.wps.rodata*) + *(.websocket.rodata*) + +.sdr_data 0x30000000 0x0 + *(.sdram.data*) + *(.p2p.data*) + *(.wps.data*) + *(.websocket.data*) + 0x30000000 __sdram_data_end__ = . + +.sdr_bss 0x30000000 0x0 + 0x30000000 __sdram_bss_start__ = . + *(.sdram.bss*) + *(.p2p.bss*) + *(.wps.bss*) + *(.websocket.bss*) + 0x30000000 __sdram_bss_end__ = . + +.heap 0x10067adc 0x0 + 0x10067adc __end__ = . + 0x10067adc end = __end__ + *(.heap*) + 0x10067adc __HeapLimit = . + +.stack_dummy 0x10067adc 0x0 + *(.stack) + 0x10070000 __StackTop = (ORIGIN (BD_RAM) + 0x6a000) + 0x10070000 __StackLimit = (__StackTop - SIZEOF (.stack_dummy)) + 0x10070000 PROVIDE (__stack, __StackTop) + 0x00000001 ASSERT ((__StackLimit >= __HeapLimit), region RAM overflowed with stack) +OUTPUT(application/Debug/bin/application.axf elf32-littlearm) + +.debug_info 0x00000000 0x227563 + .debug_info 0x00000000 0x61a application/Debug/obj/system_8195a.o + .debug_info 0x0000061a 0x429b application/Debug/obj/atcmd_lwip.o + .debug_info 0x000048b5 0x1d9d application/Debug/obj/atcmd_sys.o + .debug_info 0x00006652 0x3b89 application/Debug/obj/atcmd_wifi.o + .debug_info 0x0000a1db 0x1756 application/Debug/obj/log_service.o + .debug_info 0x0000b931 0xdf7 application/Debug/obj/rtl_consol.o + .debug_info 0x0000c728 0x1f7c application/Debug/obj/wifi_eap_config.o + .debug_info 0x0000e6a4 0x5244 application/Debug/obj/wifi_conf.o + .debug_info 0x000138e8 0x517 application/Debug/obj/wifi_ind.o + .debug_info 0x00013dff 0xe91 application/Debug/obj/wifi_promisc.o + .debug_info 0x00014c90 0x27b2 application/Debug/obj/wifi_simple_config.o + .debug_info 0x00017442 0x474e application/Debug/obj/wifi_util.o + .debug_info 0x0001bb90 0x10ea application/Debug/obj/lwip_netconf.o + .debug_info 0x0001cc7a 0xdec application/Debug/obj/ping_test.o + .debug_info 0x0001da66 0x1ba2 application/Debug/obj/update.o + .debug_info 0x0001f608 0x3da application/Debug/obj/wlan_network.o + .debug_info 0x0001f9e2 0x1b1c application/Debug/obj/api_lib.o + .debug_info 0x000214fe 0x273f application/Debug/obj/api_msg.o + .debug_info 0x00023c3d 0x52c application/Debug/obj/netbuf.o + .debug_info 0x00024169 0x7c1 application/Debug/obj/netdb.o + .debug_info 0x0002492a 0x2d88 application/Debug/obj/sockets.o + .debug_info 0x000276b2 0x11ad application/Debug/obj/tcpip.o + .debug_info 0x0002885f 0xb4c application/Debug/obj/autoip.o + .debug_info 0x000293ab 0xa26 application/Debug/obj/icmp.o + .debug_info 0x00029dd1 0xf53 application/Debug/obj/igmp.o + .debug_info 0x0002ad24 0x467 application/Debug/obj/inet_chksum.o + .debug_info 0x0002b18b 0x108b application/Debug/obj/ip.o + .debug_info 0x0002c216 0x63c application/Debug/obj/ip_addr.o + .debug_info 0x0002c852 0x114a application/Debug/obj/ip_frag.o + .debug_info 0x0002d99c 0x14f application/Debug/obj/def.o + .debug_info 0x0002daeb 0x2662 application/Debug/obj/dhcp.o + .debug_info 0x0003014d 0xef5 application/Debug/obj/dns.o + .debug_info 0x00031042 0x13a application/Debug/obj/init.o + .debug_info 0x0003117c 0xd14 application/Debug/obj/lwip_timers.o + .debug_info 0x00031e90 0x5bd application/Debug/obj/mem.o + .debug_info 0x0003244d 0x326 application/Debug/obj/memp.o + .debug_info 0x00032773 0x1265 application/Debug/obj/netif.o + .debug_info 0x000339d8 0x136b application/Debug/obj/pbuf.o + .debug_info 0x00034d43 0x9f4 application/Debug/obj/raw.o + .debug_info 0x00035737 0x1ea1 application/Debug/obj/tcp.o + .debug_info 0x000375d8 0x1891 application/Debug/obj/tcp_in.o + .debug_info 0x00038e69 0x1ae2 application/Debug/obj/tcp_out.o + .debug_info 0x0003a94b 0x1091 application/Debug/obj/udp.o + .debug_info 0x0003b9dc 0x17aa application/Debug/obj/etharp.o + .debug_info 0x0003d186 0xa78 application/Debug/obj/ethernetif.o + .debug_info 0x0003dbfe 0x9e7 application/Debug/obj/lwip_intf.o + .debug_info 0x0003e5e5 0xd2e application/Debug/obj/sys_arch.o + .debug_info 0x0003f313 0x1823 application/Debug/obj/dhcps.o + .debug_info 0x00040b36 0x759 application/Debug/obj/heap_5.o + .debug_info 0x0004128f 0x51e application/Debug/obj/port.o + .debug_info 0x000417ad 0x25c2 application/Debug/obj/cmsis_os.o + .debug_info 0x00043d6f 0x298 application/Debug/obj/list.o + .debug_info 0x00044007 0x163a application/Debug/obj/queue.o + .debug_info 0x00045641 0x1c5d application/Debug/obj/tasks.o + .debug_info 0x0004729e 0x11ce application/Debug/obj/timers.o + .debug_info 0x0004846c 0x2f2 application/Debug/obj/device_lock.o + .debug_info 0x0004875e 0x2d99 application/Debug/obj/freertos_service.o + .debug_info 0x0004b4f7 0x130a application/Debug/obj/osdep_api.o + .debug_info 0x0004c801 0x2efe application/Debug/obj/osdep_service.o + .debug_info 0x0004f6ff 0x818 application/Debug/obj/tcm_heap.o + .debug_info 0x0004ff17 0x12b5 application/Debug/obj/flash_api.o + .debug_info 0x000511cc 0xfaf application/Debug/obj/gpio_api.o + .debug_info 0x0005217b 0xdf0 application/Debug/obj/gpio_irq_api.o + .debug_info 0x00052f6b 0x871 application/Debug/obj/pinmap.o + .debug_info 0x000537dc 0x963 application/Debug/obj/pinmap_common.o + .debug_info 0x0005413f 0x303d application/Debug/obj/serial_api.o + .debug_info 0x0005717c 0x7ea application/Debug/obj/sleep.o + .debug_info 0x00057966 0xfff application/Debug/obj/sys_api.o + .debug_info 0x00058965 0x86e application/Debug/obj/us_ticker.o + .debug_info 0x000591d3 0x983 application/Debug/obj/hal_32k.o + .debug_info 0x00059b56 0x1af3 application/Debug/obj/hal_gdma.o + .debug_info 0x0005b649 0x942 application/Debug/obj/hal_gpio.o + .debug_info 0x0005bf8b 0x1408 application/Debug/obj/hal_sdr_controller.o + .debug_info 0x0005d393 0x59f application/Debug/obj/hal_timer.o + .debug_info 0x0005d932 0x215d application/Debug/obj/hal_uart.o + .debug_info 0x0005fa8f 0x99a application/Debug/obj/freertos_pmu.o + .debug_info 0x00060429 0xd60 application/Debug/obj/rtl8195a_gdma.o + .debug_info 0x00061189 0x66c application/Debug/obj/rtl8195a_gpio.o + .debug_info 0x000617f5 0xb5b application/Debug/obj/rtl8195a_timer.o + .debug_info 0x00062350 0x2535 application/Debug/obj/rtl8195a_uart.o + .debug_info 0x00064885 0x7b application/Debug/obj/example_entry.o + .debug_info 0x00064900 0x2b05 application/Debug/obj/example_uart_atcmd.o + .debug_info 0x00067405 0xe7 application/Debug/obj/main.o + .debug_info 0x000674ec 0x1e73 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .debug_info 0x0006935f 0x5e7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .debug_info 0x00069946 0xc98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .debug_info 0x0006a5de 0x6b5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .debug_info 0x0006ac93 0x1ecb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .debug_info 0x0006cb5e 0x198a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .debug_info 0x0006e4e8 0x5d4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .debug_info 0x0006eabc 0x249c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .debug_info 0x00070f58 0x86a0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .debug_info 0x000795f8 0x7fb6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .debug_info 0x000815ae 0x946e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .debug_info 0x0008aa1c 0x12162 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .debug_info 0x0009cb7e 0x6b9d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .debug_info 0x000a371b 0x8d85 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .debug_info 0x000ac4a0 0x6014 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .debug_info 0x000b24b4 0x8e13 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .debug_info 0x000bb2c7 0x522e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .debug_info 0x000c04f5 0x5c08 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .debug_info 0x000c60fd 0x9dfa ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .debug_info 0x000cfef7 0x819e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .debug_info 0x000d8095 0x9e7f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .debug_info 0x000e1f14 0x666f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .debug_info 0x000e8583 0xeb33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .debug_info 0x000f70b6 0x9612 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .debug_info 0x001006c8 0xad34 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .debug_info 0x0010b3fc 0x7612 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .debug_info 0x00112a0e 0x7a00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .debug_info 0x0011a40e 0x628f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .debug_info 0x0012069d 0x8ee7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .debug_info 0x00129584 0x8521 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .debug_info 0x00131aa5 0x6ca6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .debug_info 0x0013874b 0xf2a1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .debug_info 0x001479ec 0x5b45 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .debug_info 0x0014d531 0x187f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .debug_info 0x0014edb0 0x5038 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .debug_info 0x00153de8 0x781 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .debug_info 0x00154569 0x7037 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .debug_info 0x0015b5a0 0x3b6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .debug_info 0x0015b956 0x5abb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .debug_info 0x00161411 0xe2f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .debug_info 0x00162240 0x556d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .debug_info 0x001677ad 0x4e55 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .debug_info 0x0016c602 0x5fa6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .debug_info 0x001725a8 0x80a3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .debug_info 0x0017a64b 0x6e2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .debug_info 0x00181475 0x6cfd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .debug_info 0x00188172 0x762d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .debug_info 0x0018f79f 0x7829 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .debug_info 0x00196fc8 0x6b42 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .debug_info 0x0019db0a 0x6820 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .debug_info 0x001a432a 0x839e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .debug_info 0x001ac6c8 0x75f9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .debug_info 0x001b3cc1 0x7466 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .debug_info 0x001bb127 0x7894 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .debug_info 0x001c29bb 0x7b28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .debug_info 0x001ca4e3 0x948a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .debug_info 0x001d396d 0x7ab ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .debug_info 0x001d4118 0x8e61 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .debug_info 0x001dcf79 0x9307 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .debug_info 0x001e6280 0x7a2e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .debug_info 0x001edcae 0x4cfb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .debug_info 0x001f29a9 0x6c7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .debug_info 0x001f3070 0x4ea1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .debug_info 0x001f7f11 0x4ca0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .debug_info 0x001fcbb1 0x7448 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .debug_info 0x00203ff9 0x9a6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .debug_info 0x0020499f 0x6b7f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .debug_info 0x0020b51e 0x737d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .debug_info 0x0021289b 0xb411 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .debug_info 0x0021dcac 0x8046 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .debug_info 0x00225cf2 0x11f1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .debug_info 0x00226ee3 0x680 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + +.debug_abbrev 0x00000000 0x2160d + .debug_abbrev 0x00000000 0x1ad application/Debug/obj/system_8195a.o + .debug_abbrev 0x000001ad 0x4d0 application/Debug/obj/atcmd_lwip.o + .debug_abbrev 0x0000067d 0x2e5 application/Debug/obj/atcmd_sys.o + .debug_abbrev 0x00000962 0x51b application/Debug/obj/atcmd_wifi.o + .debug_abbrev 0x00000e7d 0x4fc application/Debug/obj/log_service.o + .debug_abbrev 0x00001379 0x2d4 application/Debug/obj/rtl_consol.o + .debug_abbrev 0x0000164d 0x39e application/Debug/obj/wifi_eap_config.o + .debug_abbrev 0x000019eb 0x582 application/Debug/obj/wifi_conf.o + .debug_abbrev 0x00001f6d 0x1f4 application/Debug/obj/wifi_ind.o + .debug_abbrev 0x00002161 0x3c2 application/Debug/obj/wifi_promisc.o + .debug_abbrev 0x00002523 0x496 application/Debug/obj/wifi_simple_config.o + .debug_abbrev 0x000029b9 0x3be application/Debug/obj/wifi_util.o + .debug_abbrev 0x00002d77 0x33f application/Debug/obj/lwip_netconf.o + .debug_abbrev 0x000030b6 0x255 application/Debug/obj/ping_test.o + .debug_abbrev 0x0000330b 0x3a5 application/Debug/obj/update.o + .debug_abbrev 0x000036b0 0x1a8 application/Debug/obj/wlan_network.o + .debug_abbrev 0x00003858 0x30a application/Debug/obj/api_lib.o + .debug_abbrev 0x00003b62 0x429 application/Debug/obj/api_msg.o + .debug_abbrev 0x00003f8b 0x171 application/Debug/obj/netbuf.o + .debug_abbrev 0x000040fc 0x22e application/Debug/obj/netdb.o + .debug_abbrev 0x0000432a 0x3fd application/Debug/obj/sockets.o + .debug_abbrev 0x00004727 0x2e1 application/Debug/obj/tcpip.o + .debug_abbrev 0x00004a08 0x2d5 application/Debug/obj/autoip.o + .debug_abbrev 0x00004cdd 0x272 application/Debug/obj/icmp.o + .debug_abbrev 0x00004f4f 0x3d1 application/Debug/obj/igmp.o + .debug_abbrev 0x00005320 0x16b application/Debug/obj/inet_chksum.o + .debug_abbrev 0x0000548b 0x2b1 application/Debug/obj/ip.o + .debug_abbrev 0x0000573c 0x1ec application/Debug/obj/ip_addr.o + .debug_abbrev 0x00005928 0x357 application/Debug/obj/ip_frag.o + .debug_abbrev 0x00005c7f 0xb9 application/Debug/obj/def.o + .debug_abbrev 0x00005d38 0x45c application/Debug/obj/dhcp.o + .debug_abbrev 0x00006194 0x39f application/Debug/obj/dns.o + .debug_abbrev 0x00006533 0x7f application/Debug/obj/init.o + .debug_abbrev 0x000065b2 0x245 application/Debug/obj/lwip_timers.o + .debug_abbrev 0x000067f7 0x225 application/Debug/obj/mem.o + .debug_abbrev 0x00006a1c 0x16f application/Debug/obj/memp.o + .debug_abbrev 0x00006b8b 0x389 application/Debug/obj/netif.o + .debug_abbrev 0x00006f14 0x3ca application/Debug/obj/pbuf.o + .debug_abbrev 0x000072de 0x272 application/Debug/obj/raw.o + .debug_abbrev 0x00007550 0x461 application/Debug/obj/tcp.o + .debug_abbrev 0x000079b1 0x3c7 application/Debug/obj/tcp_in.o + .debug_abbrev 0x00007d78 0x3dd application/Debug/obj/tcp_out.o + .debug_abbrev 0x00008155 0x314 application/Debug/obj/udp.o + .debug_abbrev 0x00008469 0x363 application/Debug/obj/etharp.o + .debug_abbrev 0x000087cc 0x2f0 application/Debug/obj/ethernetif.o + .debug_abbrev 0x00008abc 0x1e3 application/Debug/obj/lwip_intf.o + .debug_abbrev 0x00008c9f 0x295 application/Debug/obj/sys_arch.o + .debug_abbrev 0x00008f34 0x3b7 application/Debug/obj/dhcps.o + .debug_abbrev 0x000092eb 0x2da application/Debug/obj/heap_5.o + .debug_abbrev 0x000095c5 0x27e application/Debug/obj/port.o + .debug_abbrev 0x00009843 0x42b application/Debug/obj/cmsis_os.o + .debug_abbrev 0x00009c6e 0xdc application/Debug/obj/list.o + .debug_abbrev 0x00009d4a 0x288 application/Debug/obj/queue.o + .debug_abbrev 0x00009fd2 0x3ea application/Debug/obj/tasks.o + .debug_abbrev 0x0000a3bc 0x304 application/Debug/obj/timers.o + .debug_abbrev 0x0000a6c0 0x151 application/Debug/obj/device_lock.o + .debug_abbrev 0x0000a811 0x589 application/Debug/obj/freertos_service.o + .debug_abbrev 0x0000ad9a 0x434 application/Debug/obj/osdep_api.o + .debug_abbrev 0x0000b1ce 0x536 application/Debug/obj/osdep_service.o + .debug_abbrev 0x0000b704 0x2de application/Debug/obj/tcm_heap.o + .debug_abbrev 0x0000b9e2 0x3c5 application/Debug/obj/flash_api.o + .debug_abbrev 0x0000bda7 0x2fb application/Debug/obj/gpio_api.o + .debug_abbrev 0x0000c0a2 0x26a application/Debug/obj/gpio_irq_api.o + .debug_abbrev 0x0000c30c 0x184 application/Debug/obj/pinmap.o + .debug_abbrev 0x0000c490 0x1b6 application/Debug/obj/pinmap_common.o + .debug_abbrev 0x0000c646 0x48b application/Debug/obj/serial_api.o + .debug_abbrev 0x0000cad1 0x1e5 application/Debug/obj/sleep.o + .debug_abbrev 0x0000ccb6 0x24b application/Debug/obj/sys_api.o + .debug_abbrev 0x0000cf01 0x1eb application/Debug/obj/us_ticker.o + .debug_abbrev 0x0000d0ec 0x1e8 application/Debug/obj/hal_32k.o + .debug_abbrev 0x0000d2d4 0x3db application/Debug/obj/hal_gdma.o + .debug_abbrev 0x0000d6af 0x1e4 application/Debug/obj/hal_gpio.o + .debug_abbrev 0x0000d893 0x2e5 application/Debug/obj/hal_sdr_controller.o + .debug_abbrev 0x0000db78 0x130 application/Debug/obj/hal_timer.o + .debug_abbrev 0x0000dca8 0x34f application/Debug/obj/hal_uart.o + .debug_abbrev 0x0000dff7 0x2c7 application/Debug/obj/freertos_pmu.o + .debug_abbrev 0x0000e2be 0x23a application/Debug/obj/rtl8195a_gdma.o + .debug_abbrev 0x0000e4f8 0x1a8 application/Debug/obj/rtl8195a_gpio.o + .debug_abbrev 0x0000e6a0 0x27e application/Debug/obj/rtl8195a_timer.o + .debug_abbrev 0x0000e91e 0x396 application/Debug/obj/rtl8195a_uart.o + .debug_abbrev 0x0000ecb4 0x88 application/Debug/obj/example_entry.o + .debug_abbrev 0x0000ed3c 0x48e application/Debug/obj/example_uart_atcmd.o + .debug_abbrev 0x0000f1ca 0x95 application/Debug/obj/main.o + .debug_abbrev 0x0000f25f 0x503 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .debug_abbrev 0x0000f762 0x130 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .debug_abbrev 0x0000f892 0x237 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .debug_abbrev 0x0000fac9 0x1bc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .debug_abbrev 0x0000fc85 0x429 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .debug_abbrev 0x000100ae 0x396 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .debug_abbrev 0x00010444 0x1b5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .debug_abbrev 0x000105f9 0x4c8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .debug_abbrev 0x00010ac1 0x593 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .debug_abbrev 0x00011054 0x5e7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .debug_abbrev 0x0001163b 0x5fc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .debug_abbrev 0x00011c37 0x5d8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .debug_abbrev 0x0001220f 0x594 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .debug_abbrev 0x000127a3 0x566 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .debug_abbrev 0x00012d09 0x587 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .debug_abbrev 0x00013290 0x5c9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .debug_abbrev 0x00013859 0x43c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .debug_abbrev 0x00013c95 0x479 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .debug_abbrev 0x0001410e 0x525 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .debug_abbrev 0x00014633 0x64a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .debug_abbrev 0x00014c7d 0x5c0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .debug_abbrev 0x0001523d 0x565 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .debug_abbrev 0x000157a2 0x5e1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .debug_abbrev 0x00015d83 0x509 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .debug_abbrev 0x0001628c 0x5c1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .debug_abbrev 0x0001684d 0x390 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .debug_abbrev 0x00016bdd 0x42b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .debug_abbrev 0x00017008 0x485 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .debug_abbrev 0x0001748d 0x4b6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .debug_abbrev 0x00017943 0x401 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .debug_abbrev 0x00017d44 0x51f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .debug_abbrev 0x00018263 0x650 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .debug_abbrev 0x000188b3 0x4a1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .debug_abbrev 0x00018d54 0x4cb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .debug_abbrev 0x0001921f 0x3a7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .debug_abbrev 0x000195c6 0x1dd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .debug_abbrev 0x000197a3 0x636 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .debug_abbrev 0x00019dd9 0x6f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .debug_abbrev 0x00019e48 0x49c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .debug_abbrev 0x0001a2e4 0x27a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .debug_abbrev 0x0001a55e 0x436 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .debug_abbrev 0x0001a994 0x2bb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .debug_abbrev 0x0001ac4f 0x45b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .debug_abbrev 0x0001b0aa 0x4e2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .debug_abbrev 0x0001b58c 0x430 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .debug_abbrev 0x0001b9bc 0x304 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .debug_abbrev 0x0001bcc0 0x3d3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .debug_abbrev 0x0001c093 0x434 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .debug_abbrev 0x0001c4c7 0x311 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .debug_abbrev 0x0001c7d8 0x254 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .debug_abbrev 0x0001ca2c 0x458 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .debug_abbrev 0x0001ce84 0x3b0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .debug_abbrev 0x0001d234 0x382 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .debug_abbrev 0x0001d5b6 0x3c2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .debug_abbrev 0x0001d978 0x477 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .debug_abbrev 0x0001ddef 0x566 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .debug_abbrev 0x0001e355 0x163 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .debug_abbrev 0x0001e4b8 0x53a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .debug_abbrev 0x0001e9f2 0x4ee ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .debug_abbrev 0x0001eee0 0x372 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .debug_abbrev 0x0001f252 0x2f5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .debug_abbrev 0x0001f547 0x19a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .debug_abbrev 0x0001f6e1 0x39b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .debug_abbrev 0x0001fa7c 0x318 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .debug_abbrev 0x0001fd94 0x320 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .debug_abbrev 0x000200b4 0x101 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .debug_abbrev 0x000201b5 0x363 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .debug_abbrev 0x00020518 0x3d2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .debug_abbrev 0x000208ea 0x493 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .debug_abbrev 0x00020d7d 0x3ee ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .debug_abbrev 0x0002116b 0x2d8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .debug_abbrev 0x00021443 0x1ca ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + +.debug_aranges 0x00000000 0x62f8 + .debug_aranges + 0x00000000 0x38 application/Debug/obj/system_8195a.o + .debug_aranges + 0x00000038 0x148 application/Debug/obj/atcmd_lwip.o + .debug_aranges + 0x00000180 0x88 application/Debug/obj/atcmd_sys.o + .debug_aranges + 0x00000208 0xc0 application/Debug/obj/atcmd_wifi.o + .debug_aranges + 0x000002c8 0xb8 application/Debug/obj/log_service.o + .debug_aranges + 0x00000380 0x40 application/Debug/obj/rtl_consol.o + .debug_aranges + 0x000003c0 0x78 application/Debug/obj/wifi_eap_config.o + .debug_aranges + 0x00000438 0x238 application/Debug/obj/wifi_conf.o + .debug_aranges + 0x00000670 0x48 application/Debug/obj/wifi_ind.o + .debug_aranges + 0x000006b8 0x88 application/Debug/obj/wifi_promisc.o + .debug_aranges + 0x00000740 0xa8 application/Debug/obj/wifi_simple_config.o + .debug_aranges + 0x000007e8 0x1b8 application/Debug/obj/wifi_util.o + .debug_aranges + 0x000009a0 0x70 application/Debug/obj/lwip_netconf.o + .debug_aranges + 0x00000a10 0x38 application/Debug/obj/ping_test.o + .debug_aranges + 0x00000a48 0x48 application/Debug/obj/update.o + .debug_aranges + 0x00000a90 0x28 application/Debug/obj/wlan_network.o + .debug_aranges + 0x00000ab8 0xc0 application/Debug/obj/api_lib.o + .debug_aranges + 0x00000b78 0xf8 application/Debug/obj/api_msg.o + .debug_aranges + 0x00000c70 0x60 application/Debug/obj/netbuf.o + .debug_aranges + 0x00000cd0 0x38 application/Debug/obj/netdb.o + .debug_aranges + 0x00000d08 0x108 application/Debug/obj/sockets.o + .debug_aranges + 0x00000e10 0x80 application/Debug/obj/tcpip.o + .debug_aranges + 0x00000e90 0x58 application/Debug/obj/autoip.o + .debug_aranges + 0x00000ee8 0x38 application/Debug/obj/icmp.o + .debug_aranges + 0x00000f20 0x80 application/Debug/obj/igmp.o + .debug_aranges + 0x00000fa0 0x40 application/Debug/obj/inet_chksum.o + .debug_aranges + 0x00000fe0 0x40 application/Debug/obj/ip.o + .debug_aranges + 0x00001020 0x48 application/Debug/obj/ip_addr.o + .debug_aranges + 0x00001068 0x48 application/Debug/obj/ip_frag.o + .debug_aranges + 0x000010b0 0x38 application/Debug/obj/def.o + .debug_aranges + 0x000010e8 0xd0 application/Debug/obj/dhcp.o + .debug_aranges + 0x000011b8 0x58 application/Debug/obj/dns.o + .debug_aranges + 0x00001210 0x20 application/Debug/obj/init.o + .debug_aranges + 0x00001230 0x80 application/Debug/obj/lwip_timers.o + .debug_aranges + 0x000012b0 0x40 application/Debug/obj/mem.o + .debug_aranges + 0x000012f0 0x30 application/Debug/obj/memp.o + .debug_aranges + 0x00001320 0x80 application/Debug/obj/netif.o + .debug_aranges + 0x000013a0 0xb8 application/Debug/obj/pbuf.o + .debug_aranges + 0x00001458 0x58 application/Debug/obj/raw.o + .debug_aranges + 0x000014b0 0x130 application/Debug/obj/tcp.o + .debug_aranges + 0x000015e0 0x38 application/Debug/obj/tcp_in.o + .debug_aranges + 0x00001618 0x88 application/Debug/obj/tcp_out.o + .debug_aranges + 0x000016a0 0x70 application/Debug/obj/udp.o + .debug_aranges + 0x00001710 0x78 application/Debug/obj/etharp.o + .debug_aranges + 0x00001788 0x68 application/Debug/obj/ethernetif.o + .debug_aranges + 0x000017f0 0x60 application/Debug/obj/lwip_intf.o + .debug_aranges + 0x00001850 0xd8 application/Debug/obj/sys_arch.o + .debug_aranges + 0x00001928 0x58 application/Debug/obj/dhcps.o + .debug_aranges + 0x00001980 0x68 application/Debug/obj/heap_5.o + .debug_aranges + 0x000019e8 0xa0 application/Debug/obj/port.o + .debug_aranges + 0x00001a88 0x160 application/Debug/obj/cmsis_os.o + .debug_aranges + 0x00001be8 0x40 application/Debug/obj/list.o + .debug_aranges + 0x00001c28 0xe0 application/Debug/obj/queue.o + .debug_aranges + 0x00001d08 0x158 application/Debug/obj/tasks.o + .debug_aranges + 0x00001e60 0x80 application/Debug/obj/timers.o + .debug_aranges + 0x00001ee0 0x30 application/Debug/obj/device_lock.o + .debug_aranges + 0x00001f10 0x258 application/Debug/obj/freertos_service.o + .debug_aranges + 0x00002168 0x128 application/Debug/obj/osdep_api.o + .debug_aranges + 0x00002290 0x390 application/Debug/obj/osdep_service.o + .debug_aranges + 0x00002620 0x68 application/Debug/obj/tcm_heap.o + .debug_aranges + 0x00002688 0x90 application/Debug/obj/flash_api.o + .debug_aranges + 0x00002718 0x70 application/Debug/obj/gpio_api.o + .debug_aranges + 0x00002788 0x58 application/Debug/obj/gpio_irq_api.o + .debug_aranges + 0x000027e0 0x28 application/Debug/obj/pinmap.o + .debug_aranges + 0x00002808 0x38 application/Debug/obj/pinmap_common.o + .debug_aranges + 0x00002840 0x140 application/Debug/obj/serial_api.o + .debug_aranges + 0x00002980 0x48 application/Debug/obj/sleep.o + .debug_aranges + 0x000029c8 0x60 application/Debug/obj/sys_api.o + .debug_aranges + 0x00002a28 0x48 application/Debug/obj/us_ticker.o + .debug_aranges + 0x00002a70 0x58 application/Debug/obj/hal_32k.o + .debug_aranges + 0x00002ac8 0xe0 application/Debug/obj/hal_gdma.o + .debug_aranges + 0x00002ba8 0x48 application/Debug/obj/hal_gpio.o + .debug_aranges + 0x00002bf0 0x50 application/Debug/obj/hal_sdr_controller.o + .debug_aranges + 0x00002c40 0x20 application/Debug/obj/hal_timer.o + .debug_aranges + 0x00002c60 0xb8 application/Debug/obj/hal_uart.o + .debug_aranges + 0x00002d18 0x78 application/Debug/obj/freertos_pmu.o + .debug_aranges + 0x00002d90 0x38 application/Debug/obj/rtl8195a_gdma.o + .debug_aranges + 0x00002dc8 0x20 application/Debug/obj/rtl8195a_gpio.o + .debug_aranges + 0x00002de8 0x78 application/Debug/obj/rtl8195a_timer.o + .debug_aranges + 0x00002e60 0xc8 application/Debug/obj/rtl8195a_uart.o + .debug_aranges + 0x00002f28 0x28 application/Debug/obj/example_entry.o + .debug_aranges + 0x00002f50 0x88 application/Debug/obj/example_uart_atcmd.o + .debug_aranges + 0x00002fd8 0x20 application/Debug/obj/main.o + .debug_aranges + 0x00002ff8 0xb8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .debug_aranges + 0x000030b0 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .debug_aranges + 0x000030d0 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .debug_aranges + 0x00003168 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .debug_aranges + 0x000031a8 0x138 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .debug_aranges + 0x000032e0 0x110 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .debug_aranges + 0x000033f0 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .debug_aranges + 0x00003428 0xf0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .debug_aranges + 0x00003518 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .debug_aranges + 0x000035d8 0x168 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .debug_aranges + 0x00003740 0x220 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .debug_aranges + 0x00003960 0x2b8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .debug_aranges + 0x00003c18 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .debug_aranges + 0x00003c98 0xe8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .debug_aranges + 0x00003d80 0xb8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .debug_aranges + 0x00003e38 0x190 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .debug_aranges + 0x00003fc8 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .debug_aranges + 0x00004028 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .debug_aranges + 0x000040b8 0x1d0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .debug_aranges + 0x00004288 0x170 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .debug_aranges + 0x000043f8 0x110 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .debug_aranges + 0x00004508 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .debug_aranges + 0x000045c8 0x1f8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .debug_aranges + 0x000047c0 0xe0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .debug_aranges + 0x000048a0 0x298 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .debug_aranges + 0x00004b38 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .debug_aranges + 0x00004b68 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .debug_aranges + 0x00004ba8 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .debug_aranges + 0x00004c38 0xe8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .debug_aranges + 0x00004d20 0x1a8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .debug_aranges + 0x00004ec8 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .debug_aranges + 0x00004f90 0x150 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .debug_aranges + 0x000050e0 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .debug_aranges + 0x00005150 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .debug_aranges + 0x000051f0 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .debug_aranges + 0x00005268 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .debug_aranges + 0x00005298 0x170 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .debug_aranges + 0x00005408 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .debug_aranges + 0x00005420 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .debug_aranges + 0x000054c8 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .debug_aranges + 0x000054f8 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .debug_aranges + 0x00005548 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .debug_aranges + 0x000055b0 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .debug_aranges + 0x00005600 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .debug_aranges + 0x000056c8 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .debug_aranges + 0x00005710 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .debug_aranges + 0x00005760 0xd8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .debug_aranges + 0x00005838 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .debug_aranges + 0x000058b8 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .debug_aranges + 0x000058e8 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .debug_aranges + 0x00005908 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .debug_aranges + 0x000059a0 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .debug_aranges + 0x00005a40 0x100 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .debug_aranges + 0x00005b40 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .debug_aranges + 0x00005b98 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .debug_aranges + 0x00005c30 0xb0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .debug_aranges + 0x00005ce0 0x18 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .debug_aranges + 0x00005cf8 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .debug_aranges + 0x00005d90 0x118 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .debug_aranges + 0x00005ea8 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .debug_aranges + 0x00005ef8 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .debug_aranges + 0x00005f18 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .debug_aranges + 0x00005f50 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .debug_aranges + 0x00005f90 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .debug_aranges + 0x00005fb0 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .debug_aranges + 0x00005fd0 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .debug_aranges + 0x00005ff0 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .debug_aranges + 0x00006018 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .debug_aranges + 0x00006080 0x108 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .debug_aranges + 0x00006188 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .debug_aranges + 0x000061c8 0xd0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .debug_aranges + 0x00006298 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + +.debug_ranges 0x00000000 0x9860 + .debug_ranges 0x00000000 0x28 application/Debug/obj/system_8195a.o + .debug_ranges 0x00000028 0x3a8 application/Debug/obj/atcmd_lwip.o + .debug_ranges 0x000003d0 0xa8 application/Debug/obj/atcmd_sys.o + .debug_ranges 0x00000478 0x1c8 application/Debug/obj/atcmd_wifi.o + .debug_ranges 0x00000640 0x140 application/Debug/obj/log_service.o + .debug_ranges 0x00000780 0x50 application/Debug/obj/rtl_consol.o + .debug_ranges 0x000007d0 0x68 application/Debug/obj/wifi_eap_config.o + .debug_ranges 0x00000838 0x3c0 application/Debug/obj/wifi_conf.o + .debug_ranges 0x00000bf8 0x50 application/Debug/obj/wifi_ind.o + .debug_ranges 0x00000c48 0xc0 application/Debug/obj/wifi_promisc.o + .debug_ranges 0x00000d08 0x150 application/Debug/obj/wifi_simple_config.o + .debug_ranges 0x00000e58 0x4f0 application/Debug/obj/wifi_util.o + .debug_ranges 0x00001348 0x88 application/Debug/obj/lwip_netconf.o + .debug_ranges 0x000013d0 0x48 application/Debug/obj/ping_test.o + .debug_ranges 0x00001418 0x38 application/Debug/obj/update.o + .debug_ranges 0x00001450 0x18 application/Debug/obj/wlan_network.o + .debug_ranges 0x00001468 0xe8 application/Debug/obj/api_lib.o + .debug_ranges 0x00001550 0x138 application/Debug/obj/api_msg.o + .debug_ranges 0x00001688 0x50 application/Debug/obj/netbuf.o + .debug_ranges 0x000016d8 0x28 application/Debug/obj/netdb.o + .debug_ranges 0x00001700 0x420 application/Debug/obj/sockets.o + .debug_ranges 0x00001b20 0x88 application/Debug/obj/tcpip.o + .debug_ranges 0x00001ba8 0x90 application/Debug/obj/autoip.o + .debug_ranges 0x00001c38 0x28 application/Debug/obj/icmp.o + .debug_ranges 0x00001c60 0x150 application/Debug/obj/igmp.o + .debug_ranges 0x00001db0 0x30 application/Debug/obj/inet_chksum.o + .debug_ranges 0x00001de0 0xa8 application/Debug/obj/ip.o + .debug_ranges 0x00001e88 0x38 application/Debug/obj/ip_addr.o + .debug_ranges 0x00001ec0 0xc0 application/Debug/obj/ip_frag.o + .debug_ranges 0x00001f80 0x28 application/Debug/obj/def.o + .debug_ranges 0x00001fa8 0x3d8 application/Debug/obj/dhcp.o + .debug_ranges 0x00002380 0x98 application/Debug/obj/dns.o + .debug_ranges 0x00002418 0x10 application/Debug/obj/init.o + .debug_ranges 0x00002428 0x70 application/Debug/obj/lwip_timers.o + .debug_ranges 0x00002498 0x68 application/Debug/obj/mem.o + .debug_ranges 0x00002500 0x20 application/Debug/obj/memp.o + .debug_ranges 0x00002520 0xa0 application/Debug/obj/netif.o + .debug_ranges 0x000025c0 0x168 application/Debug/obj/pbuf.o + .debug_ranges 0x00002728 0x48 application/Debug/obj/raw.o + .debug_ranges 0x00002770 0x230 application/Debug/obj/tcp.o + .debug_ranges 0x000029a0 0xc0 application/Debug/obj/tcp_in.o + .debug_ranges 0x00002a60 0x180 application/Debug/obj/tcp_out.o + .debug_ranges 0x00002be0 0x60 application/Debug/obj/udp.o + .debug_ranges 0x00002c40 0x148 application/Debug/obj/etharp.o + .debug_ranges 0x00002d88 0xa0 application/Debug/obj/ethernetif.o + .debug_ranges 0x00002e28 0x50 application/Debug/obj/lwip_intf.o + .debug_ranges 0x00002e78 0xe0 application/Debug/obj/sys_arch.o + .debug_ranges 0x00002f58 0xe8 application/Debug/obj/dhcps.o + .debug_ranges 0x00003040 0x70 application/Debug/obj/heap_5.o + .debug_ranges 0x000030b0 0xa8 application/Debug/obj/port.o + .debug_ranges 0x00003158 0x200 application/Debug/obj/cmsis_os.o + .debug_ranges 0x00003358 0x30 application/Debug/obj/list.o + .debug_ranges 0x00003388 0x118 application/Debug/obj/queue.o + .debug_ranges 0x000034a0 0x318 application/Debug/obj/tasks.o + .debug_ranges 0x000037b8 0x110 application/Debug/obj/timers.o + .debug_ranges 0x000038c8 0x38 application/Debug/obj/device_lock.o + .debug_ranges 0x00003900 0x348 application/Debug/obj/freertos_service.o + .debug_ranges 0x00003c48 0x158 application/Debug/obj/osdep_api.o + .debug_ranges 0x00003da0 0x4c8 application/Debug/obj/osdep_service.o + .debug_ranges 0x00004268 0x78 application/Debug/obj/tcm_heap.o + .debug_ranges 0x000042e0 0x218 application/Debug/obj/flash_api.o + .debug_ranges 0x000044f8 0xd8 application/Debug/obj/gpio_api.o + .debug_ranges 0x000045d0 0x48 application/Debug/obj/gpio_irq_api.o + .debug_ranges 0x00004618 0x18 application/Debug/obj/pinmap.o + .debug_ranges 0x00004630 0x28 application/Debug/obj/pinmap_common.o + .debug_ranges 0x00004658 0x178 application/Debug/obj/serial_api.o + .debug_ranges 0x000047d0 0x38 application/Debug/obj/sleep.o + .debug_ranges 0x00004808 0x50 application/Debug/obj/sys_api.o + .debug_ranges 0x00004858 0x38 application/Debug/obj/us_ticker.o + .debug_ranges 0x00004890 0x48 application/Debug/obj/hal_32k.o + .debug_ranges 0x000048d8 0x100 application/Debug/obj/hal_gdma.o + .debug_ranges 0x000049d8 0x38 application/Debug/obj/hal_gpio.o + .debug_ranges 0x00004a10 0x60 application/Debug/obj/hal_sdr_controller.o + .debug_ranges 0x00004a70 0x10 application/Debug/obj/hal_timer.o + .debug_ranges 0x00004a80 0xa8 application/Debug/obj/hal_uart.o + .debug_ranges 0x00004b28 0x80 application/Debug/obj/freertos_pmu.o + .debug_ranges 0x00004ba8 0x28 application/Debug/obj/rtl8195a_gdma.o + .debug_ranges 0x00004bd0 0x48 application/Debug/obj/rtl8195a_gpio.o + .debug_ranges 0x00004c18 0x80 application/Debug/obj/rtl8195a_timer.o + .debug_ranges 0x00004c98 0x100 application/Debug/obj/rtl8195a_uart.o + .debug_ranges 0x00004d98 0x18 application/Debug/obj/example_entry.o + .debug_ranges 0x00004db0 0x78 application/Debug/obj/example_uart_atcmd.o + .debug_ranges 0x00004e28 0x10 application/Debug/obj/main.o + .debug_ranges 0x00004e38 0x158 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .debug_ranges 0x00004f90 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .debug_ranges 0x00004fa0 0x88 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .debug_ranges 0x00005028 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .debug_ranges 0x00005058 0x158 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .debug_ranges 0x000051b0 0x100 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .debug_ranges 0x000052b0 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .debug_ranges 0x000052d8 0x110 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .debug_ranges 0x000053e8 0x208 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .debug_ranges 0x000055f0 0x200 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .debug_ranges 0x000057f0 0x460 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .debug_ranges 0x00005c50 0x4c8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .debug_ranges 0x00006118 0x190 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .debug_ranges 0x000062a8 0x1f0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .debug_ranges 0x00006498 0x168 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .debug_ranges 0x00006600 0x2e0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .debug_ranges 0x000068e0 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .debug_ranges 0x00006930 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .debug_ranges 0x000069b0 0x1f0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .debug_ranges 0x00006ba0 0x200 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .debug_ranges 0x00006da0 0x1a8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .debug_ranges 0x00006f48 0xf8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .debug_ranges 0x00007040 0x3c8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .debug_ranges 0x00007408 0xe8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .debug_ranges 0x000074f0 0x398 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .debug_ranges 0x00007888 0x38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .debug_ranges 0x000078c0 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .debug_ranges 0x00007910 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .debug_ranges 0x000079a8 0x150 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .debug_ranges 0x00007af8 0x198 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .debug_ranges 0x00007c90 0x168 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .debug_ranges 0x00007df8 0x498 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .debug_ranges 0x00008290 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .debug_ranges 0x00008358 0x1c8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .debug_ranges 0x00008520 0x68 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .debug_ranges 0x00008588 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .debug_ranges 0x000085a8 0x160 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .debug_ranges 0x00008708 0x98 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .debug_ranges 0x000087a0 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .debug_ranges 0x000087c0 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .debug_ranges 0x00008830 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .debug_ranges 0x00008888 0x80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .debug_ranges 0x00008908 0xe8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .debug_ranges 0x000089f0 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .debug_ranges 0x00008a48 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .debug_ranges 0x00008a88 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .debug_ranges 0x00008b50 0xb8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .debug_ranges 0x00008c08 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .debug_ranges 0x00008c28 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .debug_ranges 0x00008c38 0xa8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .debug_ranges 0x00008ce0 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .debug_ranges 0x00008da0 0xf0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .debug_ranges 0x00008e90 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .debug_ranges 0x00008ed8 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .debug_ranges 0x00008f78 0x120 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .debug_ranges 0x00009098 0x158 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .debug_ranges 0x000091f0 0x230 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .debug_ranges 0x00009420 0x40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .debug_ranges 0x00009460 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .debug_ranges 0x00009470 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .debug_ranges 0x00009498 0x30 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .debug_ranges 0x000094c8 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .debug_ranges 0x000094d8 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .debug_ranges 0x000094e8 0x10 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .debug_ranges 0x000094f8 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .debug_ranges 0x00009540 0x78 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .debug_ranges 0x000095b8 0x148 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .debug_ranges 0x00009700 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .debug_ranges 0x00009750 0xc0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .debug_ranges 0x00009810 0x50 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + +.debug_line 0x00000000 0x488ba + .debug_line 0x00000000 0x2b9 application/Debug/obj/system_8195a.o + .debug_line 0x000002b9 0x121e application/Debug/obj/atcmd_lwip.o + .debug_line 0x000014d7 0x720 application/Debug/obj/atcmd_sys.o + .debug_line 0x00001bf7 0xdce application/Debug/obj/atcmd_wifi.o + .debug_line 0x000029c5 0x7d7 application/Debug/obj/log_service.o + .debug_line 0x0000319c 0x5e3 application/Debug/obj/rtl_consol.o + .debug_line 0x0000377f 0x526 application/Debug/obj/wifi_eap_config.o + .debug_line 0x00003ca5 0x1024 application/Debug/obj/wifi_conf.o + .debug_line 0x00004cc9 0x1f9 application/Debug/obj/wifi_ind.o + .debug_line 0x00004ec2 0x565 application/Debug/obj/wifi_promisc.o + .debug_line 0x00005427 0xa2c application/Debug/obj/wifi_simple_config.o + .debug_line 0x00005e53 0xd58 application/Debug/obj/wifi_util.o + .debug_line 0x00006bab 0x621 application/Debug/obj/lwip_netconf.o + .debug_line 0x000071cc 0x581 application/Debug/obj/ping_test.o + .debug_line 0x0000774d 0x895 application/Debug/obj/update.o + .debug_line 0x00007fe2 0x3f7 application/Debug/obj/wlan_network.o + .debug_line 0x000083d9 0x5d6 application/Debug/obj/api_lib.o + .debug_line 0x000089af 0x9bc application/Debug/obj/api_msg.o + .debug_line 0x0000936b 0x25a application/Debug/obj/netbuf.o + .debug_line 0x000095c5 0x35b application/Debug/obj/netdb.o + .debug_line 0x00009920 0xdee application/Debug/obj/sockets.o + .debug_line 0x0000a70e 0x4f1 application/Debug/obj/tcpip.o + .debug_line 0x0000abff 0x454 application/Debug/obj/autoip.o + .debug_line 0x0000b053 0x315 application/Debug/obj/icmp.o + .debug_line 0x0000b368 0x4f8 application/Debug/obj/igmp.o + .debug_line 0x0000b860 0x263 application/Debug/obj/inet_chksum.o + .debug_line 0x0000bac3 0x480 application/Debug/obj/ip.o + .debug_line 0x0000bf43 0x37a application/Debug/obj/ip_addr.o + .debug_line 0x0000c2bd 0x51c application/Debug/obj/ip_frag.o + .debug_line 0x0000c7d9 0xf3 application/Debug/obj/def.o + .debug_line 0x0000c8cc 0xac3 application/Debug/obj/dhcp.o + .debug_line 0x0000d38f 0x446 application/Debug/obj/dns.o + .debug_line 0x0000d7d5 0x17e application/Debug/obj/init.o + .debug_line 0x0000d953 0x3fd application/Debug/obj/lwip_timers.o + .debug_line 0x0000dd50 0x39b application/Debug/obj/mem.o + .debug_line 0x0000e0eb 0x182 application/Debug/obj/memp.o + .debug_line 0x0000e26d 0x3d7 application/Debug/obj/netif.o + .debug_line 0x0000e644 0x67c application/Debug/obj/pbuf.o + .debug_line 0x0000ecc0 0x381 application/Debug/obj/raw.o + .debug_line 0x0000f041 0x9c3 application/Debug/obj/tcp.o + .debug_line 0x0000fa04 0x760 application/Debug/obj/tcp_in.o + .debug_line 0x00010164 0x748 application/Debug/obj/tcp_out.o + .debug_line 0x000108ac 0x533 application/Debug/obj/udp.o + .debug_line 0x00010ddf 0x5ca application/Debug/obj/etharp.o + .debug_line 0x000113a9 0x449 application/Debug/obj/ethernetif.o + .debug_line 0x000117f2 0x499 application/Debug/obj/lwip_intf.o + .debug_line 0x00011c8b 0x65f application/Debug/obj/sys_arch.o + .debug_line 0x000122ea 0x63b application/Debug/obj/dhcps.o + .debug_line 0x00012925 0x48a application/Debug/obj/heap_5.o + .debug_line 0x00012daf 0x3e3 application/Debug/obj/port.o + .debug_line 0x00013192 0x9b3 application/Debug/obj/cmsis_os.o + .debug_line 0x00013b45 0x28b application/Debug/obj/list.o + .debug_line 0x00013dd0 0x76b application/Debug/obj/queue.o + .debug_line 0x0001453b 0xae1 application/Debug/obj/tasks.o + .debug_line 0x0001501c 0x4bf application/Debug/obj/timers.o + .debug_line 0x000154db 0x240 application/Debug/obj/device_lock.o + .debug_line 0x0001571b 0xb4f application/Debug/obj/freertos_service.o + .debug_line 0x0001626a 0x6d8 application/Debug/obj/osdep_api.o + .debug_line 0x00016942 0xc3c application/Debug/obj/osdep_service.o + .debug_line 0x0001757e 0x429 application/Debug/obj/tcm_heap.o + .debug_line 0x000179a7 0x698 application/Debug/obj/flash_api.o + .debug_line 0x0001803f 0x40f application/Debug/obj/gpio_api.o + .debug_line 0x0001844e 0x421 application/Debug/obj/gpio_irq_api.o + .debug_line 0x0001886f 0x27a application/Debug/obj/pinmap.o + .debug_line 0x00018ae9 0x332 application/Debug/obj/pinmap_common.o + .debug_line 0x00018e1b 0x805 application/Debug/obj/serial_api.o + .debug_line 0x00019620 0x34c application/Debug/obj/sleep.o + .debug_line 0x0001996c 0x435 application/Debug/obj/sys_api.o + .debug_line 0x00019da1 0x386 application/Debug/obj/us_ticker.o + .debug_line 0x0001a127 0x3af application/Debug/obj/hal_32k.o + .debug_line 0x0001a4d6 0x68f application/Debug/obj/hal_gdma.o + .debug_line 0x0001ab65 0x363 application/Debug/obj/hal_gpio.o + .debug_line 0x0001aec8 0x5ab application/Debug/obj/hal_sdr_controller.o + .debug_line 0x0001b473 0x27d application/Debug/obj/hal_timer.o + .debug_line 0x0001b6f0 0x628 application/Debug/obj/hal_uart.o + .debug_line 0x0001bd18 0x426 application/Debug/obj/freertos_pmu.o + .debug_line 0x0001c13e 0x482 application/Debug/obj/rtl8195a_gdma.o + .debug_line 0x0001c5c0 0x311 application/Debug/obj/rtl8195a_gpio.o + .debug_line 0x0001c8d1 0x49b application/Debug/obj/rtl8195a_timer.o + .debug_line 0x0001cd6c 0xb49 application/Debug/obj/rtl8195a_uart.o + .debug_line 0x0001d8b5 0x71 application/Debug/obj/example_entry.o + .debug_line 0x0001d926 0x8ac application/Debug/obj/example_uart_atcmd.o + .debug_line 0x0001e1d2 0xd3 application/Debug/obj/main.o + .debug_line 0x0001e2a5 0x79f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .debug_line 0x0001ea44 0x2bb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .debug_line 0x0001ecff 0x48b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .debug_line 0x0001f18a 0x32b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .debug_line 0x0001f4b5 0xa06 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .debug_line 0x0001febb 0x884 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .debug_line 0x0002073f 0x345 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .debug_line 0x00020a84 0x685 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .debug_line 0x00021109 0xde6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .debug_line 0x00021eef 0xc2a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .debug_line 0x00022b19 0x125b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .debug_line 0x00023d74 0x20d5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .debug_line 0x00025e49 0x8e1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .debug_line 0x0002672a 0xf7d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .debug_line 0x000276a7 0x929 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .debug_line 0x00027fd0 0x1202 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .debug_line 0x000291d2 0x6e0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .debug_line 0x000298b2 0x801 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .debug_line 0x0002a0b3 0xef9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .debug_line 0x0002afac 0xf33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .debug_line 0x0002bedf 0xe40 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .debug_line 0x0002cd1f 0xa47 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .debug_line 0x0002d766 0x15d7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .debug_line 0x0002ed3d 0xbe5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .debug_line 0x0002f922 0x16c4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .debug_line 0x00030fe6 0x7ed ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .debug_line 0x000317d3 0x8a4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .debug_line 0x00032077 0x8b3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .debug_line 0x0003292a 0xcb5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .debug_line 0x000335df 0xb3e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .debug_line 0x0003411d 0xb4f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .debug_line 0x00034c6c 0x15eb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .debug_line 0x00036257 0x83b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .debug_line 0x00036a92 0x7f3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .debug_line 0x00037285 0x608 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .debug_line 0x0003788d 0x2a4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .debug_line 0x00037b31 0xc35 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .debug_line 0x00038766 0xba ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .debug_line 0x00038820 0x79e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .debug_line 0x00038fbe 0x4d8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .debug_line 0x00039496 0x67e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .debug_line 0x00039b14 0x5ca ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .debug_line 0x0003a0de 0x848 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .debug_line 0x0003a926 0xb25 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .debug_line 0x0003b44b 0x782 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .debug_line 0x0003bbcd 0x72a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .debug_line 0x0003c2f7 0x919 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .debug_line 0x0003cc10 0x8d5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .debug_line 0x0003d4e5 0x6ba ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .debug_line 0x0003db9f 0x654 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .debug_line 0x0003e1f3 0xa7a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .debug_line 0x0003ec6d 0x905 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .debug_line 0x0003f572 0x899 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .debug_line 0x0003fe0b 0x849 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .debug_line 0x00040654 0x924 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .debug_line 0x00040f78 0xb2b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .debug_line 0x00041aa3 0x334 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .debug_line 0x00041dd7 0xaa4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .debug_line 0x0004287b 0xb44 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .debug_line 0x000433bf 0x8ab ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .debug_line 0x00043c6a 0x57c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .debug_line 0x000441e6 0x376 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .debug_line 0x0004455c 0x645 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .debug_line 0x00044ba1 0x51b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .debug_line 0x000450bc 0x758 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .debug_line 0x00045814 0x2b4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .debug_line 0x00045ac8 0x708 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .debug_line 0x000461d0 0x7f4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .debug_line 0x000469c4 0xedf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .debug_line 0x000478a3 0x9d3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .debug_line 0x00048276 0x3de ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .debug_line 0x00048654 0x266 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + +.debug_str 0x00000000 0x2c8cb + .debug_str 0x00000000 0x6ed application/Debug/obj/system_8195a.o + 0x7d9 (size before relaxing) + .debug_str 0x000006ed 0xc14 application/Debug/obj/atcmd_lwip.o + 0xfdf (size before relaxing) + .debug_str 0x00001301 0x5cb application/Debug/obj/atcmd_sys.o + 0xf78 (size before relaxing) + .debug_str 0x000018cc 0xe72 application/Debug/obj/atcmd_wifi.o + 0x1b34 (size before relaxing) + .debug_str 0x0000273e 0x285 application/Debug/obj/log_service.o + 0xd88 (size before relaxing) + .debug_str 0x000029c3 0x24f application/Debug/obj/rtl_consol.o + 0xbcc (size before relaxing) + .debug_str 0x00002c12 0x1727 application/Debug/obj/wifi_eap_config.o + 0x1c31 (size before relaxing) + .debug_str 0x00004339 0x198a application/Debug/obj/wifi_conf.o + 0x2cab (size before relaxing) + .debug_str 0x00005cc3 0xb6 application/Debug/obj/wifi_ind.o + 0x86c (size before relaxing) + .debug_str 0x00005d79 0x1d4 application/Debug/obj/wifi_promisc.o + 0x71d (size before relaxing) + .debug_str 0x00005f4d 0x6fe application/Debug/obj/wifi_simple_config.o + 0x16ab (size before relaxing) + .debug_str 0x0000664b 0x34e application/Debug/obj/wifi_util.o + 0x188a (size before relaxing) + .debug_str 0x00006999 0x324 application/Debug/obj/lwip_netconf.o + 0xa79 (size before relaxing) + .debug_str 0x00006cbd 0x156 application/Debug/obj/ping_test.o + 0x64e (size before relaxing) + .debug_str 0x00006e13 0x29d application/Debug/obj/update.o + 0xd65 (size before relaxing) + .debug_str 0x000070b0 0x5c application/Debug/obj/wlan_network.o + 0x3fe (size before relaxing) + .debug_str 0x0000710c 0x81b application/Debug/obj/api_lib.o + 0xc04 (size before relaxing) + .debug_str 0x00007927 0x474 application/Debug/obj/api_msg.o + 0xe3c (size before relaxing) + .debug_str 0x00007d9b 0xae application/Debug/obj/netbuf.o + 0x4a0 (size before relaxing) + .debug_str 0x00007e49 0x179 application/Debug/obj/netdb.o + 0x5f0 (size before relaxing) + .debug_str 0x00007fc2 0x394 application/Debug/obj/sockets.o + 0xf8f (size before relaxing) + .debug_str 0x00008356 0x233 application/Debug/obj/tcpip.o + 0xa37 (size before relaxing) + .debug_str 0x00008589 0x210 application/Debug/obj/autoip.o + 0x5ac (size before relaxing) + .debug_str 0x00008799 0x175 application/Debug/obj/icmp.o + 0x5b4 (size before relaxing) + .debug_str 0x0000890e 0x1ea application/Debug/obj/igmp.o + 0x744 (size before relaxing) + .debug_str 0x00008af8 0xb6 application/Debug/obj/inet_chksum.o + 0x32c (size before relaxing) + .debug_str 0x00008bae 0x11c application/Debug/obj/ip.o + 0x830 (size before relaxing) + .debug_str 0x00008cca 0x87 application/Debug/obj/ip_addr.o + 0x3f7 (size before relaxing) + .debug_str 0x00008d51 0x2c8 application/Debug/obj/ip_frag.o + 0x87a (size before relaxing) + .debug_str 0x00009019 0x42 application/Debug/obj/def.o + 0x258 (size before relaxing) + .debug_str 0x0000905b 0x326 application/Debug/obj/dhcp.o + 0xa61 (size before relaxing) + .debug_str 0x00009381 0x1c0 application/Debug/obj/dns.o + 0x633 (size before relaxing) + .debug_str 0x00009541 0x7a application/Debug/obj/init.o + 0x29a (size before relaxing) + .debug_str 0x000095bb 0x17e application/Debug/obj/lwip_timers.o + 0x860 (size before relaxing) + .debug_str 0x00009739 0xa3 application/Debug/obj/mem.o + 0x387 (size before relaxing) + .debug_str 0x000097dc 0x85 application/Debug/obj/memp.o + 0x3d9 (size before relaxing) + .debug_str 0x00009861 0xea application/Debug/obj/netif.o + 0x9c8 (size before relaxing) + .debug_str 0x0000994b 0x1eb application/Debug/obj/pbuf.o + 0xa28 (size before relaxing) + .debug_str 0x00009b36 0x5d application/Debug/obj/raw.o + 0x636 (size before relaxing) + .debug_str 0x00009b93 0x34f application/Debug/obj/tcp.o + 0xbf2 (size before relaxing) + .debug_str 0x00009ee2 0x17b application/Debug/obj/tcp_in.o + 0xaea (size before relaxing) + .debug_str 0x0000a05d 0x13b application/Debug/obj/tcp_out.o + 0xa54 (size before relaxing) + .debug_str 0x0000a198 0x96 application/Debug/obj/udp.o + 0x90c (size before relaxing) + .debug_str 0x0000a22e 0x25f application/Debug/obj/etharp.o + 0x9ae (size before relaxing) + .debug_str 0x0000a48d 0x19f application/Debug/obj/ethernetif.o + 0x59a (size before relaxing) + .debug_str 0x0000a62c 0x199 application/Debug/obj/lwip_intf.o + 0x5aa (size before relaxing) + .debug_str 0x0000a7c5 0x127 application/Debug/obj/sys_arch.o + 0x6f3 (size before relaxing) + .debug_str 0x0000a8ec 0x4a2 application/Debug/obj/dhcps.o + 0xac9 (size before relaxing) + .debug_str 0x0000ad8e 0x2fc application/Debug/obj/heap_5.o + 0x57a (size before relaxing) + .debug_str 0x0000b08a 0x37c application/Debug/obj/port.o + 0x5f4 (size before relaxing) + .debug_str 0x0000b406 0x937 application/Debug/obj/cmsis_os.o + 0xe7c (size before relaxing) + .debug_str 0x0000bd3d 0x14f application/Debug/obj/list.o + 0x368 (size before relaxing) + .debug_str 0x0000be8c 0x4f1 application/Debug/obj/queue.o + 0x99a (size before relaxing) + .debug_str 0x0000c37d 0x642 application/Debug/obj/tasks.o + 0xdda (size before relaxing) + .debug_str 0x0000c9bf 0x417 application/Debug/obj/timers.o + 0x9e1 (size before relaxing) + .debug_str 0x0000cdd6 0x7d application/Debug/obj/device_lock.o + 0x34c (size before relaxing) + .debug_str 0x0000ce53 0xb06 application/Debug/obj/freertos_service.o + 0x18d1 (size before relaxing) + .debug_str 0x0000d959 0x2e4 application/Debug/obj/osdep_api.o + 0x7b8 (size before relaxing) + .debug_str 0x0000dc3d 0x332 application/Debug/obj/osdep_service.o + 0xd7e (size before relaxing) + .debug_str 0x0000df6f 0xea application/Debug/obj/tcm_heap.o + 0x3cc (size before relaxing) + .debug_str 0x0000e059 0x2f7 application/Debug/obj/flash_api.o + 0xc09 (size before relaxing) + .debug_str 0x0000e350 0x195 application/Debug/obj/gpio_api.o + 0xd53 (size before relaxing) + .debug_str 0x0000e4e5 0x21e application/Debug/obj/gpio_irq_api.o + 0xd0c (size before relaxing) + .debug_str 0x0000e703 0x3d application/Debug/obj/pinmap.o + 0x9f3 (size before relaxing) + .debug_str 0x0000e740 0x8f application/Debug/obj/pinmap_common.o + 0xa08 (size before relaxing) + .debug_str 0x0000e7cf 0x144a application/Debug/obj/serial_api.o + 0x2096 (size before relaxing) + .debug_str 0x0000fc19 0x193 application/Debug/obj/sleep.o + 0x957 (size before relaxing) + .debug_str 0x0000fdac 0x12e application/Debug/obj/sys_api.o + 0x9e1 (size before relaxing) + .debug_str 0x0000feda 0x1ac application/Debug/obj/us_ticker.o + 0xa43 (size before relaxing) + .debug_str 0x00010086 0x1b8 application/Debug/obj/hal_32k.o + 0x9e0 (size before relaxing) + .debug_str 0x0001023e 0x45a application/Debug/obj/hal_gdma.o + 0x12c9 (size before relaxing) + .debug_str 0x00010698 0xef application/Debug/obj/hal_gpio.o + 0x9ff (size before relaxing) + .debug_str 0x00010787 0x74c application/Debug/obj/hal_sdr_controller.o + 0xffc (size before relaxing) + .debug_str 0x00010ed3 0x6a application/Debug/obj/hal_timer.o + 0x7c6 (size before relaxing) + .debug_str 0x00010f3d 0x59e application/Debug/obj/hal_uart.o + 0x1a96 (size before relaxing) + .debug_str 0x000114db 0x181 application/Debug/obj/freertos_pmu.o + 0xa79 (size before relaxing) + .debug_str 0x0001165c 0xe3 application/Debug/obj/rtl8195a_gdma.o + 0xd8d (size before relaxing) + .debug_str 0x0001173f 0x8e application/Debug/obj/rtl8195a_gpio.o + 0x8d6 (size before relaxing) + .debug_str 0x000117cd 0x273 application/Debug/obj/rtl8195a_timer.o + 0xaf2 (size before relaxing) + .debug_str 0x00011a40 0x379 application/Debug/obj/rtl8195a_uart.o + 0x1a2c (size before relaxing) + .debug_str 0x00011db9 0x57 application/Debug/obj/example_entry.o + 0x1ab (size before relaxing) + .debug_str 0x00011e10 0x18c application/Debug/obj/example_uart_atcmd.o + 0x211b (size before relaxing) + .debug_str 0x00011f9c 0x68 application/Debug/obj/main.o + 0x248 (size before relaxing) + .debug_str 0x00012004 0x949 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + 0x1429 (size before relaxing) + .debug_str 0x0001294d 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + 0x863 (size before relaxing) + .debug_str 0x00012989 0x1e4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + 0x924 (size before relaxing) + .debug_str 0x00012b6d 0x87 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + 0x811 (size before relaxing) + .debug_str 0x00012bf4 0x346 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + 0x11ed (size before relaxing) + .debug_str 0x00012f3a 0x325 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + 0xe87 (size before relaxing) + .debug_str 0x0001325f 0x75 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + 0x7de (size before relaxing) + .debug_str 0x000132d4 0x704 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + 0xd87 (size before relaxing) + .debug_str 0x000139d8 0x49b0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + 0x5ff9 (size before relaxing) + .debug_str 0x00018388 0x1468 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + 0x5c47 (size before relaxing) + .debug_str 0x000197f0 0x97f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + 0x5b96 (size before relaxing) + .debug_str 0x0001a16f 0x44e6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + 0xba08 (size before relaxing) + .debug_str 0x0001e655 0x2e1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + 0x4e1b (size before relaxing) + .debug_str 0x0001e936 0x71e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + 0x55d8 (size before relaxing) + .debug_str 0x0001f054 0x347 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + 0x49b8 (size before relaxing) + .debug_str 0x0001f39b 0x776 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + 0x5ad7 (size before relaxing) + .debug_str 0x0001fb11 0x136 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + 0x3ec8 (size before relaxing) + .debug_str 0x0001fc47 0x1b8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + 0x40fb (size before relaxing) + .debug_str 0x0001fdff 0x4c4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + 0x7c45 (size before relaxing) + .debug_str 0x000202c3 0x6e2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + 0x4e2e (size before relaxing) + .debug_str 0x000209a5 0x6be ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + 0x7c9e (size before relaxing) + .debug_str 0x00021063 0x331 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + 0x45a5 (size before relaxing) + .debug_str 0x00021394 0x2022 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + 0xaaf6 (size before relaxing) + .debug_str 0x000233b6 0xe8e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + 0x8197 (size before relaxing) + .debug_str 0x00024244 0x9d3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + 0x748a (size before relaxing) + .debug_str 0x00024c17 0xe4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + 0x6754 (size before relaxing) + .debug_str 0x00024cfb 0x19c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + 0x68c9 (size before relaxing) + .debug_str 0x00024e97 0x215 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + 0x6385 (size before relaxing) + .debug_str 0x000250ac 0x5cb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + 0x721c (size before relaxing) + .debug_str 0x00025677 0x687 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + 0x739f (size before relaxing) + .debug_str 0x00025cfe 0x479 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + 0x5bf5 (size before relaxing) + .debug_str 0x00026177 0x988 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + 0xa54c (size before relaxing) + .debug_str 0x00026aff 0x179 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + 0x445f (size before relaxing) + .debug_str 0x00026c78 0x160 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + 0xd73 (size before relaxing) + .debug_str 0x00026dd8 0xa6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + 0x3ef4 (size before relaxing) + .debug_str 0x00026e7e 0x47 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + 0x549 (size before relaxing) + .debug_str 0x00026ec5 0x1d8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + 0x4c35 (size before relaxing) + .debug_str 0x0002709d 0x4e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + 0xfc2 (size before relaxing) + .debug_str 0x000270eb 0x16d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + 0x40cd (size before relaxing) + .debug_str 0x00027258 0x6d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + 0xdf5 (size before relaxing) + .debug_str 0x000272c5 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + 0x435e (size before relaxing) + .debug_str 0x00027325 0x72 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + 0x3cef (size before relaxing) + .debug_str 0x00027397 0x8c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + 0x50a0 (size before relaxing) + .debug_str 0x00027423 0x464 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + 0x6e06 (size before relaxing) + .debug_str 0x00027887 0x236 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + 0x5d02 (size before relaxing) + .debug_str 0x00027abd 0x10b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + 0x5bf5 (size before relaxing) + .debug_str 0x00027bc8 0x5e9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + 0x6bea (size before relaxing) + .debug_str 0x000281b1 0x260 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + 0x6d04 (size before relaxing) + .debug_str 0x00028411 0xe9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + 0x5d6b (size before relaxing) + .debug_str 0x000284fa 0x4c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + 0x597b (size before relaxing) + .debug_str 0x00028546 0x371 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + 0x7fc7 (size before relaxing) + .debug_str 0x000288b7 0x686 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + 0x66ab (size before relaxing) + .debug_str 0x00028f3d 0x29e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + 0x5f7e (size before relaxing) + .debug_str 0x000291db 0x1a9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + 0x6b11 (size before relaxing) + .debug_str 0x00029384 0x2ea ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + 0x6b25 (size before relaxing) + .debug_str 0x0002966e 0x597 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + 0x76bf (size before relaxing) + .debug_str 0x00029c05 0x15f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + 0xaad (size before relaxing) + .debug_str 0x00029d64 0x892 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + 0x7e9d (size before relaxing) + .debug_str 0x0002a5f6 0x329 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + 0x79c0 (size before relaxing) + .debug_str 0x0002a91f 0x603 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + 0x700a (size before relaxing) + .debug_str 0x0002af22 0x96 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + 0x3d8a (size before relaxing) + .debug_str 0x0002afb8 0x5e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + 0x861 (size before relaxing) + .debug_str 0x0002b016 0xe4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + 0x3f5c (size before relaxing) + .debug_str 0x0002b0fa 0x87 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + 0x3df9 (size before relaxing) + .debug_str 0x0002b181 0x82 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + 0x6697 (size before relaxing) + .debug_str 0x0002b203 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + 0x899 (size before relaxing) + .debug_str 0x0002b25f 0x92 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + 0x5c31 (size before relaxing) + .debug_str 0x0002b2f1 0x461 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + 0x6300 (size before relaxing) + .debug_str 0x0002b752 0x86f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + 0x8a58 (size before relaxing) + .debug_str 0x0002bfc1 0x21b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + 0x7f59 (size before relaxing) + .debug_str 0x0002c1dc 0x4e4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + 0x7d8 (size before relaxing) + .debug_str 0x0002c6c0 0x20b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + 0x503 (size before relaxing) + +.comment 0x00000000 0x70 + .comment 0x00000000 0x70 application/Debug/obj/system_8195a.o + 0x71 (size before relaxing) + .comment 0x00000000 0x71 application/Debug/obj/atcmd_lwip.o + .comment 0x00000000 0x71 application/Debug/obj/atcmd_sys.o + .comment 0x00000000 0x71 application/Debug/obj/atcmd_wifi.o + .comment 0x00000000 0x71 application/Debug/obj/log_service.o + .comment 0x00000000 0x71 application/Debug/obj/rtl_consol.o + .comment 0x00000000 0x71 application/Debug/obj/wifi_eap_config.o + .comment 0x00000000 0x71 application/Debug/obj/wifi_conf.o + .comment 0x00000000 0x71 application/Debug/obj/wifi_ind.o + .comment 0x00000000 0x71 application/Debug/obj/wifi_promisc.o + .comment 0x00000000 0x71 application/Debug/obj/wifi_simple_config.o + .comment 0x00000000 0x71 application/Debug/obj/wifi_util.o + .comment 0x00000000 0x71 application/Debug/obj/lwip_netconf.o + .comment 0x00000000 0x71 application/Debug/obj/ping_test.o + .comment 0x00000000 0x71 application/Debug/obj/update.o + .comment 0x00000000 0x71 application/Debug/obj/wlan_network.o + .comment 0x00000000 0x71 application/Debug/obj/api_lib.o + .comment 0x00000000 0x71 application/Debug/obj/api_msg.o + .comment 0x00000000 0x71 application/Debug/obj/netbuf.o + .comment 0x00000000 0x71 application/Debug/obj/netdb.o + .comment 0x00000000 0x71 application/Debug/obj/sockets.o + .comment 0x00000000 0x71 application/Debug/obj/tcpip.o + .comment 0x00000000 0x71 application/Debug/obj/autoip.o + .comment 0x00000000 0x71 application/Debug/obj/icmp.o + .comment 0x00000000 0x71 application/Debug/obj/igmp.o + .comment 0x00000000 0x71 application/Debug/obj/inet_chksum.o + .comment 0x00000000 0x71 application/Debug/obj/ip.o + .comment 0x00000000 0x71 application/Debug/obj/ip_addr.o + .comment 0x00000000 0x71 application/Debug/obj/ip_frag.o + .comment 0x00000000 0x71 application/Debug/obj/def.o + .comment 0x00000000 0x71 application/Debug/obj/dhcp.o + .comment 0x00000000 0x71 application/Debug/obj/dns.o + .comment 0x00000000 0x71 application/Debug/obj/init.o + .comment 0x00000000 0x71 application/Debug/obj/lwip_timers.o + .comment 0x00000000 0x71 application/Debug/obj/mem.o + .comment 0x00000000 0x71 application/Debug/obj/memp.o + .comment 0x00000000 0x71 application/Debug/obj/netif.o + .comment 0x00000000 0x71 application/Debug/obj/pbuf.o + .comment 0x00000000 0x71 application/Debug/obj/raw.o + .comment 0x00000000 0x71 application/Debug/obj/tcp.o + .comment 0x00000000 0x71 application/Debug/obj/tcp_in.o + .comment 0x00000000 0x71 application/Debug/obj/tcp_out.o + .comment 0x00000000 0x71 application/Debug/obj/udp.o + .comment 0x00000000 0x71 application/Debug/obj/etharp.o + .comment 0x00000000 0x71 application/Debug/obj/ethernetif.o + .comment 0x00000000 0x71 application/Debug/obj/lwip_intf.o + .comment 0x00000000 0x71 application/Debug/obj/sys_arch.o + .comment 0x00000000 0x71 application/Debug/obj/dhcps.o + .comment 0x00000000 0x71 application/Debug/obj/heap_5.o + .comment 0x00000000 0x71 application/Debug/obj/port.o + .comment 0x00000000 0x71 application/Debug/obj/cmsis_os.o + .comment 0x00000000 0x71 application/Debug/obj/list.o + .comment 0x00000000 0x71 application/Debug/obj/queue.o + .comment 0x00000000 0x71 application/Debug/obj/tasks.o + .comment 0x00000000 0x71 application/Debug/obj/timers.o + .comment 0x00000000 0x71 application/Debug/obj/device_lock.o + .comment 0x00000000 0x71 application/Debug/obj/freertos_service.o + .comment 0x00000000 0x71 application/Debug/obj/osdep_api.o + .comment 0x00000000 0x71 application/Debug/obj/osdep_service.o + .comment 0x00000000 0x71 application/Debug/obj/tcm_heap.o + .comment 0x00000000 0x71 application/Debug/obj/flash_api.o + .comment 0x00000000 0x71 application/Debug/obj/gpio_api.o + .comment 0x00000000 0x71 application/Debug/obj/gpio_irq_api.o + .comment 0x00000000 0x71 application/Debug/obj/pinmap.o + .comment 0x00000000 0x71 application/Debug/obj/pinmap_common.o + .comment 0x00000000 0x71 application/Debug/obj/serial_api.o + .comment 0x00000000 0x71 application/Debug/obj/sleep.o + .comment 0x00000000 0x71 application/Debug/obj/sys_api.o + .comment 0x00000000 0x71 application/Debug/obj/us_ticker.o + .comment 0x00000000 0x71 application/Debug/obj/hal_32k.o + .comment 0x00000000 0x71 application/Debug/obj/hal_gdma.o + .comment 0x00000000 0x71 application/Debug/obj/hal_gpio.o + .comment 0x00000000 0x71 application/Debug/obj/hal_sdr_controller.o + .comment 0x00000000 0x71 application/Debug/obj/hal_timer.o + .comment 0x00000000 0x71 application/Debug/obj/hal_uart.o + .comment 0x00000000 0x71 application/Debug/obj/freertos_pmu.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_gdma.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_gpio.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_timer.o + .comment 0x00000000 0x71 application/Debug/obj/rtl8195a_uart.o + .comment 0x00000000 0x71 application/Debug/obj/example_entry.o + .comment 0x00000000 0x71 application/Debug/obj/example_uart_atcmd.o + .comment 0x00000000 0x71 application/Debug/obj/main.o + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .comment 0x00000000 0x71 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + +.ARM.attributes + 0x00000000 0x31 + .ARM.attributes + 0x00000000 0x33 application/Debug/obj/system_8195a.o + .ARM.attributes + 0x00000033 0x33 application/Debug/obj/atcmd_lwip.o + .ARM.attributes + 0x00000066 0x33 application/Debug/obj/atcmd_sys.o + .ARM.attributes + 0x00000099 0x33 application/Debug/obj/atcmd_wifi.o + .ARM.attributes + 0x000000cc 0x33 application/Debug/obj/log_service.o + .ARM.attributes + 0x000000ff 0x33 application/Debug/obj/rtl_consol.o + .ARM.attributes + 0x00000132 0x33 application/Debug/obj/wifi_eap_config.o + .ARM.attributes + 0x00000165 0x33 application/Debug/obj/wifi_conf.o + .ARM.attributes + 0x00000198 0x33 application/Debug/obj/wifi_ind.o + .ARM.attributes + 0x000001cb 0x33 application/Debug/obj/wifi_promisc.o + .ARM.attributes + 0x000001fe 0x33 application/Debug/obj/wifi_simple_config.o + .ARM.attributes + 0x00000231 0x33 application/Debug/obj/wifi_util.o + .ARM.attributes + 0x00000264 0x33 application/Debug/obj/lwip_netconf.o + .ARM.attributes + 0x00000297 0x33 application/Debug/obj/ping_test.o + .ARM.attributes + 0x000002ca 0x33 application/Debug/obj/update.o + .ARM.attributes + 0x000002fd 0x33 application/Debug/obj/wlan_network.o + .ARM.attributes + 0x00000330 0x33 application/Debug/obj/api_lib.o + .ARM.attributes + 0x00000363 0x33 application/Debug/obj/api_msg.o + .ARM.attributes + 0x00000396 0x33 application/Debug/obj/netbuf.o + .ARM.attributes + 0x000003c9 0x33 application/Debug/obj/netdb.o + .ARM.attributes + 0x000003fc 0x33 application/Debug/obj/sockets.o + .ARM.attributes + 0x0000042f 0x33 application/Debug/obj/tcpip.o + .ARM.attributes + 0x00000462 0x33 application/Debug/obj/autoip.o + .ARM.attributes + 0x00000495 0x33 application/Debug/obj/icmp.o + .ARM.attributes + 0x000004c8 0x33 application/Debug/obj/igmp.o + .ARM.attributes + 0x000004fb 0x33 application/Debug/obj/inet_chksum.o + .ARM.attributes + 0x0000052e 0x33 application/Debug/obj/ip.o + .ARM.attributes + 0x00000561 0x33 application/Debug/obj/ip_addr.o + .ARM.attributes + 0x00000594 0x33 application/Debug/obj/ip_frag.o + .ARM.attributes + 0x000005c7 0x33 application/Debug/obj/def.o + .ARM.attributes + 0x000005fa 0x33 application/Debug/obj/dhcp.o + .ARM.attributes + 0x0000062d 0x33 application/Debug/obj/dns.o + .ARM.attributes + 0x00000660 0x33 application/Debug/obj/init.o + .ARM.attributes + 0x00000693 0x33 application/Debug/obj/lwip_timers.o + .ARM.attributes + 0x000006c6 0x33 application/Debug/obj/mem.o + .ARM.attributes + 0x000006f9 0x33 application/Debug/obj/memp.o + .ARM.attributes + 0x0000072c 0x33 application/Debug/obj/netif.o + .ARM.attributes + 0x0000075f 0x33 application/Debug/obj/pbuf.o + .ARM.attributes + 0x00000792 0x33 application/Debug/obj/raw.o + .ARM.attributes + 0x000007c5 0x33 application/Debug/obj/tcp.o + .ARM.attributes + 0x000007f8 0x33 application/Debug/obj/tcp_in.o + .ARM.attributes + 0x0000082b 0x33 application/Debug/obj/tcp_out.o + .ARM.attributes + 0x0000085e 0x33 application/Debug/obj/udp.o + .ARM.attributes + 0x00000891 0x33 application/Debug/obj/etharp.o + .ARM.attributes + 0x000008c4 0x33 application/Debug/obj/ethernetif.o + .ARM.attributes + 0x000008f7 0x33 application/Debug/obj/lwip_intf.o + .ARM.attributes + 0x0000092a 0x33 application/Debug/obj/sys_arch.o + .ARM.attributes + 0x0000095d 0x33 application/Debug/obj/dhcps.o + .ARM.attributes + 0x00000990 0x33 application/Debug/obj/heap_5.o + .ARM.attributes + 0x000009c3 0x33 application/Debug/obj/port.o + .ARM.attributes + 0x000009f6 0x33 application/Debug/obj/cmsis_os.o + .ARM.attributes + 0x00000a29 0x33 application/Debug/obj/list.o + .ARM.attributes + 0x00000a5c 0x33 application/Debug/obj/queue.o + .ARM.attributes + 0x00000a8f 0x33 application/Debug/obj/tasks.o + .ARM.attributes + 0x00000ac2 0x33 application/Debug/obj/timers.o + .ARM.attributes + 0x00000af5 0x33 application/Debug/obj/device_lock.o + .ARM.attributes + 0x00000b28 0x33 application/Debug/obj/freertos_service.o + .ARM.attributes + 0x00000b5b 0x33 application/Debug/obj/osdep_api.o + .ARM.attributes + 0x00000b8e 0x33 application/Debug/obj/osdep_service.o + .ARM.attributes + 0x00000bc1 0x33 application/Debug/obj/tcm_heap.o + .ARM.attributes + 0x00000bf4 0x33 application/Debug/obj/flash_api.o + .ARM.attributes + 0x00000c27 0x33 application/Debug/obj/gpio_api.o + .ARM.attributes + 0x00000c5a 0x33 application/Debug/obj/gpio_irq_api.o + .ARM.attributes + 0x00000c8d 0x33 application/Debug/obj/pinmap.o + .ARM.attributes + 0x00000cc0 0x33 application/Debug/obj/pinmap_common.o + .ARM.attributes + 0x00000cf3 0x33 application/Debug/obj/serial_api.o + .ARM.attributes + 0x00000d26 0x33 application/Debug/obj/sleep.o + .ARM.attributes + 0x00000d59 0x33 application/Debug/obj/sys_api.o + .ARM.attributes + 0x00000d8c 0x33 application/Debug/obj/us_ticker.o + .ARM.attributes + 0x00000dbf 0x33 application/Debug/obj/hal_32k.o + .ARM.attributes + 0x00000df2 0x33 application/Debug/obj/hal_gdma.o + .ARM.attributes + 0x00000e25 0x33 application/Debug/obj/hal_gpio.o + .ARM.attributes + 0x00000e58 0x33 application/Debug/obj/hal_sdr_controller.o + .ARM.attributes + 0x00000e8b 0x33 application/Debug/obj/hal_timer.o + .ARM.attributes + 0x00000ebe 0x33 application/Debug/obj/hal_uart.o + .ARM.attributes + 0x00000ef1 0x33 application/Debug/obj/freertos_pmu.o + .ARM.attributes + 0x00000f24 0x33 application/Debug/obj/rtl8195a_gdma.o + .ARM.attributes + 0x00000f57 0x33 application/Debug/obj/rtl8195a_gpio.o + .ARM.attributes + 0x00000f8a 0x33 application/Debug/obj/rtl8195a_timer.o + .ARM.attributes + 0x00000fbd 0x33 application/Debug/obj/rtl8195a_uart.o + .ARM.attributes + 0x00000ff0 0x33 application/Debug/obj/example_entry.o + .ARM.attributes + 0x00001023 0x33 application/Debug/obj/example_uart_atcmd.o + .ARM.attributes + 0x00001056 0x33 application/Debug/obj/main.o + .ARM.attributes + 0x00001089 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .ARM.attributes + 0x000010bc 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .ARM.attributes + 0x000010ef 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .ARM.attributes + 0x00001122 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .ARM.attributes + 0x00001155 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .ARM.attributes + 0x00001188 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .ARM.attributes + 0x000011bb 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .ARM.attributes + 0x000011ee 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .ARM.attributes + 0x00001221 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .ARM.attributes + 0x00001254 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .ARM.attributes + 0x00001287 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .ARM.attributes + 0x000012ba 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .ARM.attributes + 0x000012ed 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .ARM.attributes + 0x00001320 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .ARM.attributes + 0x00001353 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .ARM.attributes + 0x00001386 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .ARM.attributes + 0x000013b9 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .ARM.attributes + 0x000013ec 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .ARM.attributes + 0x0000141f 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .ARM.attributes + 0x00001452 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .ARM.attributes + 0x00001485 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .ARM.attributes + 0x000014b8 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .ARM.attributes + 0x000014eb 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .ARM.attributes + 0x0000151e 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .ARM.attributes + 0x00001551 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .ARM.attributes + 0x00001584 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .ARM.attributes + 0x000015b7 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .ARM.attributes + 0x000015ea 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .ARM.attributes + 0x0000161d 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .ARM.attributes + 0x00001650 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .ARM.attributes + 0x00001683 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .ARM.attributes + 0x000016b6 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .ARM.attributes + 0x000016e9 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .ARM.attributes + 0x0000171c 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .ARM.attributes + 0x0000174f 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .ARM.attributes + 0x00001782 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .ARM.attributes + 0x000017b5 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .ARM.attributes + 0x000017e8 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + .ARM.attributes + 0x0000181b 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .ARM.attributes + 0x0000184e 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .ARM.attributes + 0x00001881 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .ARM.attributes + 0x000018b4 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .ARM.attributes + 0x000018e7 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .ARM.attributes + 0x0000191a 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .ARM.attributes + 0x0000194d 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .ARM.attributes + 0x00001980 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .ARM.attributes + 0x000019b3 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .ARM.attributes + 0x000019e6 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .ARM.attributes + 0x00001a19 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .ARM.attributes + 0x00001a4c 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .ARM.attributes + 0x00001a7f 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .ARM.attributes + 0x00001ab2 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .ARM.attributes + 0x00001ae5 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .ARM.attributes + 0x00001b18 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .ARM.attributes + 0x00001b4b 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .ARM.attributes + 0x00001b7e 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .ARM.attributes + 0x00001bb1 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + .ARM.attributes + 0x00001be4 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .ARM.attributes + 0x00001c17 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .ARM.attributes + 0x00001c4a 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .ARM.attributes + 0x00001c7d 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .ARM.attributes + 0x00001cb0 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .ARM.attributes + 0x00001ce3 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .ARM.attributes + 0x00001d16 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .ARM.attributes + 0x00001d49 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .ARM.attributes + 0x00001d7c 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .ARM.attributes + 0x00001daf 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .ARM.attributes + 0x00001de2 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .ARM.attributes + 0x00001e15 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .ARM.attributes + 0x00001e48 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .ARM.attributes + 0x00001e7b 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .ARM.attributes + 0x00001eae 0x33 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + .ARM.attributes + 0x00001ee1 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) + .ARM.attributes + 0x00001f0e 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + .ARM.attributes + 0x00001f3b 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + .ARM.attributes + 0x00001f68 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcpy-stub.o) + .ARM.attributes + 0x00001f95 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memset.o) + .ARM.attributes + 0x00001fc2 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) + .ARM.attributes + 0x00001fef 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + .ARM.attributes + 0x0000201c 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + .ARM.attributes + 0x00002049 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + .ARM.attributes + 0x00002076 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + .ARM.attributes + 0x000020a3 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .ARM.attributes + 0x000020d0 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strlen.o) + .ARM.attributes + 0x000020fd 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + .ARM.attributes + 0x0000212a 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + .ARM.attributes + 0x00002157 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + .ARM.attributes + 0x00002184 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .ARM.attributes + 0x000021b1 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memchr-stub.o) + .ARM.attributes + 0x000021de 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + .ARM.attributes + 0x0000220b 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sccl.o) + .ARM.attributes + 0x00002238 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + .ARM.attributes + 0x00002265 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + .ARM.attributes + 0x00002292 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-msizer.o) + .ARM.attributes + 0x000022bf 0x2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + .ARM.attributes + 0x000022ec 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_lshrdi3.o) + .ARM.attributes + 0x00002309 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + .ARM.attributes + 0x00002326 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) + .ARM.attributes + 0x00002343 0x1d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunsdfsi.o) + +.debug_frame 0x00000000 0x121a0 + .debug_frame 0x00000000 0x78 application/Debug/obj/system_8195a.o + .debug_frame 0x00000078 0x460 application/Debug/obj/atcmd_lwip.o + .debug_frame 0x000004d8 0x18c application/Debug/obj/atcmd_sys.o + .debug_frame 0x00000664 0x2b4 application/Debug/obj/atcmd_wifi.o + .debug_frame 0x00000918 0x1ec application/Debug/obj/log_service.o + .debug_frame 0x00000b04 0xac application/Debug/obj/rtl_consol.o + .debug_frame 0x00000bb0 0xec application/Debug/obj/wifi_eap_config.o + .debug_frame 0x00000c9c 0x608 application/Debug/obj/wifi_conf.o + .debug_frame 0x000012a4 0x98 application/Debug/obj/wifi_ind.o + .debug_frame 0x0000133c 0x16c application/Debug/obj/wifi_promisc.o + .debug_frame 0x000014a8 0x23c application/Debug/obj/wifi_simple_config.o + .debug_frame 0x000016e4 0x620 application/Debug/obj/wifi_util.o + .debug_frame 0x00001d04 0x128 application/Debug/obj/lwip_netconf.o + .debug_frame 0x00001e2c 0xa0 application/Debug/obj/ping_test.o + .debug_frame 0x00001ecc 0xcc application/Debug/obj/update.o + .debug_frame 0x00001f98 0x40 application/Debug/obj/wlan_network.o + .debug_frame 0x00001fd8 0x23c application/Debug/obj/api_lib.o + .debug_frame 0x00002214 0x320 application/Debug/obj/api_msg.o + .debug_frame 0x00002534 0xe4 application/Debug/obj/netbuf.o + .debug_frame 0x00002618 0x98 application/Debug/obj/netdb.o + .debug_frame 0x000026b0 0x390 application/Debug/obj/sockets.o + .debug_frame 0x00002a40 0x14c application/Debug/obj/tcpip.o + .debug_frame 0x00002b8c 0xe8 application/Debug/obj/autoip.o + .debug_frame 0x00002c74 0x7c application/Debug/obj/icmp.o + .debug_frame 0x00002cf0 0x178 application/Debug/obj/igmp.o + .debug_frame 0x00002e68 0xac application/Debug/obj/inet_chksum.o + .debug_frame 0x00002f14 0xbc application/Debug/obj/ip.o + .debug_frame 0x00002fd0 0xb0 application/Debug/obj/ip_addr.o + .debug_frame 0x00003080 0xd8 application/Debug/obj/ip_frag.o + .debug_frame 0x00003158 0x50 application/Debug/obj/def.o + .debug_frame 0x000031a8 0x2b0 application/Debug/obj/dhcp.o + .debug_frame 0x00003458 0xf8 application/Debug/obj/dns.o + .debug_frame 0x00003550 0x28 application/Debug/obj/init.o + .debug_frame 0x00003578 0x15c application/Debug/obj/lwip_timers.o + .debug_frame 0x000036d4 0xac application/Debug/obj/mem.o + .debug_frame 0x00003780 0x6c application/Debug/obj/memp.o + .debug_frame 0x000037ec 0x12c application/Debug/obj/netif.o + .debug_frame 0x00003918 0x22c application/Debug/obj/pbuf.o + .debug_frame 0x00003b44 0xc4 application/Debug/obj/raw.o + .debug_frame 0x00003c08 0x358 application/Debug/obj/tcp.o + .debug_frame 0x00003f60 0xa0 application/Debug/obj/tcp_in.o + .debug_frame 0x00004000 0x1e0 application/Debug/obj/tcp_out.o + .debug_frame 0x000041e0 0x124 application/Debug/obj/udp.o + .debug_frame 0x00004304 0x1a4 application/Debug/obj/etharp.o + .debug_frame 0x000044a8 0x128 application/Debug/obj/ethernetif.o + .debug_frame 0x000045d0 0xd4 application/Debug/obj/lwip_intf.o + .debug_frame 0x000046a4 0x238 application/Debug/obj/sys_arch.o + .debug_frame 0x000048dc 0x104 application/Debug/obj/dhcps.o + .debug_frame 0x000049e0 0x114 application/Debug/obj/heap_5.o + .debug_frame 0x00004af4 0x170 application/Debug/obj/port.o + .debug_frame 0x00004c64 0x46c application/Debug/obj/cmsis_os.o + .debug_frame 0x000050d0 0x78 application/Debug/obj/list.o + .debug_frame 0x00005148 0x2b8 application/Debug/obj/queue.o + .debug_frame 0x00005400 0x404 application/Debug/obj/tasks.o + .debug_frame 0x00005804 0x170 application/Debug/obj/timers.o + .debug_frame 0x00005974 0x64 application/Debug/obj/device_lock.o + .debug_frame 0x000059d8 0x61c application/Debug/obj/freertos_service.o + .debug_frame 0x00005ff4 0x2f4 application/Debug/obj/osdep_api.o + .debug_frame 0x000062e8 0xa24 application/Debug/obj/osdep_service.o + .debug_frame 0x00006d0c 0x120 application/Debug/obj/tcm_heap.o + .debug_frame 0x00006e2c 0x1c0 application/Debug/obj/flash_api.o + .debug_frame 0x00006fec 0xe8 application/Debug/obj/gpio_api.o + .debug_frame 0x000070d4 0xd0 application/Debug/obj/gpio_irq_api.o + .debug_frame 0x000071a4 0x30 application/Debug/obj/pinmap.o + .debug_frame 0x000071d4 0x60 application/Debug/obj/pinmap_common.o + .debug_frame 0x00007234 0x354 application/Debug/obj/serial_api.o + .debug_frame 0x00007588 0x7c application/Debug/obj/sleep.o + .debug_frame 0x00007604 0xe0 application/Debug/obj/sys_api.o + .debug_frame 0x000076e4 0xa4 application/Debug/obj/us_ticker.o + .debug_frame 0x00007788 0xcc application/Debug/obj/hal_32k.o + .debug_frame 0x00007854 0x248 application/Debug/obj/hal_gdma.o + .debug_frame 0x00007a9c 0xac application/Debug/obj/hal_gpio.o + .debug_frame 0x00007b48 0xd8 application/Debug/obj/hal_sdr_controller.o + .debug_frame 0x00007c20 0x2c application/Debug/obj/hal_timer.o + .debug_frame 0x00007c4c 0x208 application/Debug/obj/hal_uart.o + .debug_frame 0x00007e54 0x104 application/Debug/obj/freertos_pmu.o + .debug_frame 0x00007f58 0x68 application/Debug/obj/rtl8195a_gdma.o + .debug_frame 0x00007fc0 0x2c application/Debug/obj/rtl8195a_gpio.o + .debug_frame 0x00007fec 0x11c application/Debug/obj/rtl8195a_timer.o + .debug_frame 0x00008108 0x2a4 application/Debug/obj/rtl8195a_uart.o + .debug_frame 0x000083ac 0x30 application/Debug/obj/example_entry.o + .debug_frame 0x000083dc 0x174 application/Debug/obj/example_uart_atcmd.o + .debug_frame 0x00008550 0x28 application/Debug/obj/main.o + .debug_frame 0x00008578 0x204 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .debug_frame 0x0000877c 0x28 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + .debug_frame 0x000087a4 0x1c4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .debug_frame 0x00008968 0x90 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .debug_frame 0x000089f8 0x3b8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .debug_frame 0x00008db0 0x3e8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .debug_frame 0x00009198 0x60 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + .debug_frame 0x000091f8 0x30c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .debug_frame 0x00009504 0x28c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .debug_frame 0x00009790 0x480 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .debug_frame 0x00009c10 0x6d4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .debug_frame 0x0000a2e4 0xa38 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .debug_frame 0x0000ad1c 0x18c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .debug_frame 0x0000aea8 0x364 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .debug_frame 0x0000b20c 0x210 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .debug_frame 0x0000b41c 0x5a8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .debug_frame 0x0000b9c4 0x124 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .debug_frame 0x0000bae8 0x1bc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .debug_frame 0x0000bca4 0x548 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .debug_frame 0x0000c1ec 0x4b0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .debug_frame 0x0000c69c 0x350 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .debug_frame 0x0000c9ec 0x250 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .debug_frame 0x0000cc3c 0x61c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .debug_frame 0x0000d258 0x2a0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .debug_frame 0x0000d4f8 0x7d4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .debug_frame 0x0000dccc 0x5c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .debug_frame 0x0000dd28 0x84 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .debug_frame 0x0000ddac 0x160 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .debug_frame 0x0000df0c 0x2dc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .debug_frame 0x0000e1e8 0x4d8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .debug_frame 0x0000e6c0 0x268 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .debug_frame 0x0000e928 0x4c0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .debug_frame 0x0000ede8 0x10c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .debug_frame 0x0000eef4 0x18c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .debug_frame 0x0000f080 0x104 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .debug_frame 0x0000f184 0x64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .debug_frame 0x0000f1e8 0x41c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .debug_frame 0x0000f604 0x204 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .debug_frame 0x0000f808 0x6c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .debug_frame 0x0000f874 0xcc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .debug_frame 0x0000f940 0x104 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .debug_frame 0x0000fa44 0xf4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .debug_frame 0x0000fb38 0x260 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .debug_frame 0x0000fd98 0xbc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .debug_frame 0x0000fe54 0xcc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .debug_frame 0x0000ff20 0x1ac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .debug_frame 0x000100cc 0x178 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .debug_frame 0x00010244 0x58 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .debug_frame 0x0001029c 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + .debug_frame 0x000102bc 0x190 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .debug_frame 0x0001044c 0x178 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .debug_frame 0x000105c4 0x1f8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .debug_frame 0x000107bc 0xac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .debug_frame 0x00010868 0x144 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .debug_frame 0x000109ac 0x1f0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .debug_frame 0x00010b9c 0x188 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .debug_frame 0x00010d24 0x33c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .debug_frame 0x00011060 0xc8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .debug_frame 0x00011128 0x3c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .debug_frame 0x00011164 0x70 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .debug_frame 0x000111d4 0xa0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .debug_frame 0x00011274 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .debug_frame 0x000112a0 0x2c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .debug_frame 0x000112cc 0x20 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + .debug_frame 0x000112ec 0x48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .debug_frame 0x00011334 0x120 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .debug_frame 0x00011454 0x384 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .debug_frame 0x000117d8 0x8c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .debug_frame 0x00011864 0x28c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .debug_frame 0x00011af0 0xb4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + .debug_frame 0x00011ba4 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + .debug_frame 0x00011bd4 0x28 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcpy-stub.o) + .debug_frame 0x00011bfc 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memset.o) + .debug_frame 0x00011c1c 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) + .debug_frame 0x00011c48 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + .debug_frame 0x00011c74 0x44 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + .debug_frame 0x00011cb8 0x2c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + .debug_frame 0x00011ce4 0x60 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + .debug_frame 0x00011d44 0x80 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + .debug_frame 0x00011dc4 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strlen.o) + .debug_frame 0x00011de4 0x6c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + .debug_frame 0x00011e50 0x5c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + .debug_frame 0x00011eac 0x58 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + .debug_frame 0x00011f04 0x12c /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + .debug_frame 0x00012030 0x28 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memchr-stub.o) + .debug_frame 0x00012058 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + .debug_frame 0x00012088 0x30 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sccl.o) + .debug_frame 0x000120b8 0x54 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + .debug_frame 0x0001210c 0x54 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + .debug_frame 0x00012160 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-msizer.o) + .debug_frame 0x00012180 0x20 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + +.debug_loc 0x00000000 0x812f9 + .debug_loc 0x00000000 0x1f69 application/Debug/obj/atcmd_lwip.o + .debug_loc 0x00001f69 0x81a application/Debug/obj/atcmd_sys.o + .debug_loc 0x00002783 0x13a4 application/Debug/obj/atcmd_wifi.o + .debug_loc 0x00003b27 0x745 application/Debug/obj/log_service.o + .debug_loc 0x0000426c 0x1ee application/Debug/obj/rtl_consol.o + .debug_loc 0x0000445a 0xc6 application/Debug/obj/wifi_eap_config.o + .debug_loc 0x00004520 0x2548 application/Debug/obj/wifi_conf.o + .debug_loc 0x00006a68 0x3a8 application/Debug/obj/wifi_ind.o + .debug_loc 0x00006e10 0x8d7 application/Debug/obj/wifi_promisc.o + .debug_loc 0x000076e7 0xafd application/Debug/obj/wifi_simple_config.o + .debug_loc 0x000081e4 0x3297 application/Debug/obj/wifi_util.o + .debug_loc 0x0000b47b 0x3ac application/Debug/obj/lwip_netconf.o + .debug_loc 0x0000b827 0x4f0 application/Debug/obj/ping_test.o + .debug_loc 0x0000bd17 0x8c9 application/Debug/obj/update.o + .debug_loc 0x0000c5e0 0x21 application/Debug/obj/wlan_network.o + .debug_loc 0x0000c601 0xcd9 application/Debug/obj/api_lib.o + .debug_loc 0x0000d2da 0x16e3 application/Debug/obj/api_msg.o + .debug_loc 0x0000e9bd 0x24c application/Debug/obj/netbuf.o + .debug_loc 0x0000ec09 0x585 application/Debug/obj/netdb.o + .debug_loc 0x0000f18e 0x3390 application/Debug/obj/sockets.o + .debug_loc 0x0001251e 0x411 application/Debug/obj/tcpip.o + .debug_loc 0x0001292f 0x294 application/Debug/obj/autoip.o + .debug_loc 0x00012bc3 0x270 application/Debug/obj/icmp.o + .debug_loc 0x00012e33 0x919 application/Debug/obj/igmp.o + .debug_loc 0x0001374c 0x84c application/Debug/obj/inet_chksum.o + .debug_loc 0x00013f98 0x749 application/Debug/obj/ip.o + .debug_loc 0x000146e1 0x59d application/Debug/obj/ip_addr.o + .debug_loc 0x00014c7e 0xc8b application/Debug/obj/ip_frag.o + .debug_loc 0x00015909 0x84 application/Debug/obj/def.o + .debug_loc 0x0001598d 0x1428 application/Debug/obj/dhcp.o + .debug_loc 0x00016db5 0x930 application/Debug/obj/dns.o + .debug_loc 0x000176e5 0x394 application/Debug/obj/lwip_timers.o + .debug_loc 0x00017a79 0x511 application/Debug/obj/mem.o + .debug_loc 0x00017f8a 0x1be application/Debug/obj/memp.o + .debug_loc 0x00018148 0x666 application/Debug/obj/netif.o + .debug_loc 0x000187ae 0x118e application/Debug/obj/pbuf.o + .debug_loc 0x0001993c 0x3cd application/Debug/obj/raw.o + .debug_loc 0x00019d09 0x1333 application/Debug/obj/tcp.o + .debug_loc 0x0001b03c 0xb8e application/Debug/obj/tcp_in.o + .debug_loc 0x0001bbca 0x14f4 application/Debug/obj/tcp_out.o + .debug_loc 0x0001d0be 0x8ab application/Debug/obj/udp.o + .debug_loc 0x0001d969 0xd58 application/Debug/obj/etharp.o + .debug_loc 0x0001e6c1 0x3d1 application/Debug/obj/ethernetif.o + .debug_loc 0x0001ea92 0x52e application/Debug/obj/lwip_intf.o + .debug_loc 0x0001efc0 0x828 application/Debug/obj/sys_arch.o + .debug_loc 0x0001f7e8 0xb9f application/Debug/obj/dhcps.o + .debug_loc 0x00020387 0x6eb application/Debug/obj/heap_5.o + .debug_loc 0x00020a72 0x16d application/Debug/obj/port.o + .debug_loc 0x00020bdf 0x151d application/Debug/obj/cmsis_os.o + .debug_loc 0x000220fc 0x69 application/Debug/obj/list.o + .debug_loc 0x00022165 0x11a2 application/Debug/obj/queue.o + .debug_loc 0x00023307 0x132f application/Debug/obj/tasks.o + .debug_loc 0x00024636 0x96e application/Debug/obj/timers.o + .debug_loc 0x00024fa4 0x89 application/Debug/obj/device_lock.o + .debug_loc 0x0002502d 0x134f application/Debug/obj/freertos_service.o + .debug_loc 0x0002637c 0xc63 application/Debug/obj/osdep_api.o + .debug_loc 0x00026fdf 0x1dec application/Debug/obj/osdep_service.o + .debug_loc 0x00028dcb 0x60b application/Debug/obj/tcm_heap.o + .debug_loc 0x000293d6 0xc9c application/Debug/obj/flash_api.o + .debug_loc 0x0002a072 0x781 application/Debug/obj/gpio_api.o + .debug_loc 0x0002a7f3 0x491 application/Debug/obj/gpio_irq_api.o + .debug_loc 0x0002ac84 0x42 application/Debug/obj/pinmap.o + .debug_loc 0x0002acc6 0x1c1 application/Debug/obj/pinmap_common.o + .debug_loc 0x0002ae87 0x179a application/Debug/obj/serial_api.o + .debug_loc 0x0002c621 0x2fb application/Debug/obj/sleep.o + .debug_loc 0x0002c91c 0x142 application/Debug/obj/sys_api.o + .debug_loc 0x0002ca5e 0xaf application/Debug/obj/us_ticker.o + .debug_loc 0x0002cb0d 0x302 application/Debug/obj/hal_32k.o + .debug_loc 0x0002ce0f 0xa99 application/Debug/obj/hal_gdma.o + .debug_loc 0x0002d8a8 0x332 application/Debug/obj/hal_gpio.o + .debug_loc 0x0002dbda 0xcfb application/Debug/obj/hal_sdr_controller.o + .debug_loc 0x0002e8d5 0xc72 application/Debug/obj/hal_uart.o + .debug_loc 0x0002f547 0x21f application/Debug/obj/freertos_pmu.o + .debug_loc 0x0002f766 0x5bb application/Debug/obj/rtl8195a_gdma.o + .debug_loc 0x0002fd21 0xeb application/Debug/obj/rtl8195a_gpio.o + .debug_loc 0x0002fe0c 0x76a application/Debug/obj/rtl8195a_timer.o + .debug_loc 0x00030576 0x20f4 application/Debug/obj/rtl8195a_uart.o + .debug_loc 0x0003266a 0x5a5 application/Debug/obj/example_uart_atcmd.o + .debug_loc 0x00032c0f 0xa69 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + .debug_loc 0x00033678 0xaa1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + .debug_loc 0x00034119 0x20a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + .debug_loc 0x00034323 0x126c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + .debug_loc 0x0003558f 0x148f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + .debug_loc 0x00036a1e 0x1c99 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + .debug_loc 0x000386b7 0x2837 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + .debug_loc 0x0003aeee 0x28d2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + .debug_loc 0x0003d7c0 0x3524 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + .debug_loc 0x00040ce4 0x8116 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + .debug_loc 0x00048dfa 0x11ac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + .debug_loc 0x00049fa6 0x3275 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + .debug_loc 0x0004d21b 0x10a3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + .debug_loc 0x0004e2be 0x40b7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + .debug_loc 0x00052375 0x7c7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + .debug_loc 0x00052b3c 0x924 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + .debug_loc 0x00053460 0x2952 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + .debug_loc 0x00055db2 0x23b7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + .debug_loc 0x00058169 0x1b39 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + .debug_loc 0x00059ca2 0x11e0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + .debug_loc 0x0005ae82 0x4c0f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + .debug_loc 0x0005fa91 0x15d9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + .debug_loc 0x0006106a 0x2b91 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + .debug_loc 0x00063bfb 0x168 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + .debug_loc 0x00063d63 0x4e3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + .debug_loc 0x00064246 0xb0f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + .debug_loc 0x00064d55 0x1d80 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + .debug_loc 0x00066ad5 0x1258 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + .debug_loc 0x00067d2d 0xc89 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + .debug_loc 0x000689b6 0x651e ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + .debug_loc 0x0006eed4 0x969 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + .debug_loc 0x0006f83d 0x7fd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + .debug_loc 0x0007003a 0x2a6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + .debug_loc 0x000702e0 0x10a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + .debug_loc 0x000703ea 0x14d7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + .debug_loc 0x000718c1 0xe06 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + .debug_loc 0x000726c7 0x1be ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + .debug_loc 0x00072885 0x2f9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + .debug_loc 0x00072b7e 0x349 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + .debug_loc 0x00072ec7 0xced ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + .debug_loc 0x00073bb4 0x15d0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + .debug_loc 0x00075184 0x8a4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + .debug_loc 0x00075a28 0x5e6 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + .debug_loc 0x0007600e 0x259 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + .debug_loc 0x00076267 0x93d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + .debug_loc 0x00076ba4 0x16c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + .debug_loc 0x00076d10 0xc2b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + .debug_loc 0x0007793b 0xa7b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + .debug_loc 0x000783b6 0x891 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + .debug_loc 0x00078c47 0x1c1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + .debug_loc 0x00078e08 0x74f ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + .debug_loc 0x00079557 0xcf7 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + .debug_loc 0x0007a24e 0xf09 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + .debug_loc 0x0007b157 0x159c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + .debug_loc 0x0007c6f3 0x5ec ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + .debug_loc 0x0007ccdf 0x31a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + .debug_loc 0x0007cff9 0x63 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + .debug_loc 0x0007d05c 0xea ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + .debug_loc 0x0007d146 0x74 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + .debug_loc 0x0007d1ba 0x93 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + .debug_loc 0x0007d24d 0x660 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + .debug_loc 0x0007d8ad 0xae9 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + .debug_loc 0x0007e396 0x1ff4 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + .debug_loc 0x0008038a 0x49d ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + .debug_loc 0x00080827 0x867 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + .debug_loc 0x0008108e 0x26b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + +.stabstr 0x00000000 0x14d + .stabstr 0x00000000 0x14d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + +Cross Reference Table + +Symbol File +A2NReadCatch application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/nfc_api.o +A2NWriteCatch application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/nfc_api.o +A2NWriteDeQueue application/Debug/obj/rtl8195a_nfc.o +A2NWriteInQueue application/Debug/obj/rtl8195a_nfc.o +ADCGDMAISRHandle application/Debug/obj/hal_adc.o + application/Debug/obj/analogin_api.o +ADCISRHandle application/Debug/obj/hal_adc.o + application/Debug/obj/analogin_api.o +AES_UnWRAP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +AES_WRAP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +AIRGOCAP_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +ARFB_table ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +ARTHEROS_OUI1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +ARTHEROS_OUI2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +ATOMIC_ADD application/Debug/obj/osdep_service.o +ATOMIC_ADD_RETURN application/Debug/obj/osdep_service.o +ATOMIC_DEC application/Debug/obj/osdep_service.o +ATOMIC_DEC_AND_TEST application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +ATOMIC_DEC_RETURN application/Debug/obj/osdep_service.o +ATOMIC_INC application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +ATOMIC_INC_RETURN application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +ATOMIC_READ application/Debug/obj/osdep_service.o +ATOMIC_SET application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +ATOMIC_SUB application/Debug/obj/osdep_service.o +ATOMIC_SUB_RETURN application/Debug/obj/osdep_service.o +ArfrRefresh ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +ArgvArray application/Debug/obj/rtl_consol.o +ArrayInitialize application/Debug/obj/rtl_consol.o +Array_MP_8195A_AGC_TAB ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) +Array_MP_8195A_MAC_REG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) +Array_MP_8195A_PHY_REG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) +Array_MP_8195A_PHY_REG_PG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) +Array_MP_8195A_RADIO_DIFF_HB ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +Array_MP_8195A_RADIO_DIFF_LB ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +Array_MP_8195A_RADIO_DIFF_MB ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +Array_MP_8195A_RadioA ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +Array_MP_8195A_TXPWR_LMT ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +AvaWds application/Debug/obj/hal_sdr_controller.o +BROADCOM_OUI1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +BROADCOM_OUI2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +BROADCOM_OUI3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +BWMapping_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +BackupCPUClk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +CCKCETable_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +CCKFCCTable_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +CCKFCCTable_Ch14_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +CISCO_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +CLKCal ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +COMMPORT_CLEAN_RX ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +COMMPORT_GET_T ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +CfgSysDebugErr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + application/Debug/obj/log_uart_api.o + application/Debug/obj/osdep_api.o + application/Debug/obj/mailbox.o +CfgSysDebugErrBkUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +CfgSysDebugInfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + application/Debug/obj/log_uart_api.o + application/Debug/obj/osdep_api.o + application/Debug/obj/mailbox.o +CfgSysDebugInfoBkUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +CfgSysDebugWarn ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + application/Debug/obj/log_uart_api.o +CfgSysDebugWarnBkUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +ChangePSStateByRPWM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +ChangeRandSeed application/Debug/obj/hal_sdr_controller.o +ChangeSoCPwrState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +ChangeStateByTDMA ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +ChangeTDMAState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +ChangeTransmiteRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +Change_PS_State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +CheckFwRsvdPageContent ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +CheckInReqState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +CheckInReqStateTask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +CheckMaxMacidNum ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +CheckRxTgRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +CheckTSFIsStable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +ChkTxQueueIsEmpty ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +ChkandChangePS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +ClearWlPmcInterrupt8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ClientEAPOLKeyRecvd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +ClientSendEAPOL ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +ComIrqBkUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +ConfigDebugErr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/shtc1.o + application/Debug/obj/uart_fw_update.o + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/hal_ssi.o + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/hal_pwm.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_gpio.o + application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_32k.o + application/Debug/obj/timer_api.o + application/Debug/obj/spi_api.o + application/Debug/obj/serial_api.o + application/Debug/obj/pwmout_api.o + application/Debug/obj/port_api.o + application/Debug/obj/pinmap_common.o + application/Debug/obj/log_uart_api.o + application/Debug/obj/i2s_api.o + application/Debug/obj/i2c_api.o + application/Debug/obj/gpio_irq_api.o + application/Debug/obj/flash_api.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/analogin_api.o + application/Debug/obj/osdep_api.o + application/Debug/obj/cmsis_os.o +ConfigDebugErrBkUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +ConfigDebugInfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/rtl8195a_adc.o + application/Debug/obj/hal_ssi.o + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_gpio.o + application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_adc.o + application/Debug/obj/us_ticker.o + application/Debug/obj/spi_api.o + application/Debug/obj/pwmout_api.o + application/Debug/obj/log_uart_api.o + application/Debug/obj/i2s_api.o + application/Debug/obj/i2c_api.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/analogin_api.o + application/Debug/obj/update.o +ConfigDebugInfoBkUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +ConfigDebugWarn ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/rtl8195a_gpio.o + application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_adc.o + application/Debug/obj/spi_api.o + application/Debug/obj/log_uart_api.o + application/Debug/obj/ethernet_mii.o +ConfigDebugWarnBkUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +ConfigListenBeaconPeriod ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +ConfigureTxpowerTrack ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) +ConfigureTxpowerTrack_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) +CurrDataLen application/Debug/obj/rtl8195a_mii.o +DEF_BAUDRATE_TABLE application/Debug/obj/hal_uart.o +DEF_DIV_B_CUT application/Debug/obj/hal_uart.o +DEF_DIV_C_CUT application/Debug/obj/hal_uart.o +DEF_OVSR_ADJ_BITS_B_CUT_10B application/Debug/obj/hal_uart.o +DEF_OVSR_ADJ_BITS_B_CUT_8B application/Debug/obj/hal_uart.o +DEF_OVSR_ADJ_BITS_B_CUT_9B application/Debug/obj/hal_uart.o +DEF_OVSR_ADJ_BITS_C_CUT_10B application/Debug/obj/hal_uart.o +DEF_OVSR_ADJ_BITS_C_CUT_8B application/Debug/obj/hal_uart.o +DEF_OVSR_ADJ_BITS_C_CUT_9B application/Debug/obj/hal_uart.o +DEF_OVSR_B_CUT application/Debug/obj/hal_uart.o +DEF_OVSR_C_CUT application/Debug/obj/hal_uart.o +DM_CfoTrack ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +DROPING_NECESSARY ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +DSTBYGpioCtrl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +DSleep ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +DSleep_GPIO ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +DSleep_Timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +DStandby ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +DStandbyWakeupEvent application/Debug/obj/sleep.o +DeInitGTimer1ms ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +DecGTK ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +DecWPA2KeyData ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +DeepSleep ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + application/Debug/obj/sleep.o +DeepStandby ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + application/Debug/obj/sleep.o +Default_Port_PinDef application/Debug/obj/port_api.o +DiagPrintf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/shtc1.o + application/Debug/obj/ssl_ram_map.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/uart_fw_update.o + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/rtl8195a_gpio.o + application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/rtl8195a_adc.o + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/hal_pwm.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_gpio.o + application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_adc.o + application/Debug/obj/hal_32k.o + application/Debug/obj/us_ticker.o + application/Debug/obj/timer_api.o + application/Debug/obj/sys_api.o + application/Debug/obj/spi_api.o + application/Debug/obj/serial_api.o + application/Debug/obj/pwmout_api.o + application/Debug/obj/port_api.o + application/Debug/obj/pinmap_common.o + application/Debug/obj/log_uart_api.o + application/Debug/obj/i2s_api.o + application/Debug/obj/gpio_irq_api.o + application/Debug/obj/gpio_api.o + application/Debug/obj/flash_api.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/osdep_api.o + application/Debug/obj/mailbox.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/port.o + application/Debug/obj/rtl_consol.o +DiagPrintfPatch application/Debug/obj/stdlib_patch.o +DiagSPrintfPatch application/Debug/obj/stdlib_patch.o +DiagSnPrintfPatch application/Debug/obj/stdlib_patch.o +DiagSscanfPatch application/Debug/obj/stdlib_patch.o +DiagStrstrPatch application/Debug/obj/stdlib_patch.o +DiagStrtokPatch application/Debug/obj/stdlib_patch.o +DisableDMA8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) +DisableInterrupt8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +DoIQK_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +DoReserved ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +DramInit application/Debug/obj/hal_sdr_controller.o +DurationScaleAndPeriodOP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +EAPOLKeyRecvd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +EFUSE_GetEfuseDefinition ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +EFUSE_ShadowMapUpdate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) +EFUSE_ShadowRead ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) +ERP_IE_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +Efuse_CalculateWordCnts ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Efuse_GetCurrentSize ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Efuse_PgPacketWrite ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Efuse_PowerSwitch ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Efuse_ReadAllMap ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) +Efuse_WordEnableDataWrite ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +En32KCalibration application/Debug/obj/hal_32k.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +EnableDMA8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) +EnableInterrupt8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +EnterPS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +EraseApinfo application/Debug/obj/webserver.o +FATFS_RegisterDiskDriver application/Debug/obj/ff_driver.o +FATFS_UnRegisterDiskDriver application/Debug/obj/ff_driver.o +FATFS_getDrivernum application/Debug/obj/ff_driver.o +FWU_WriteWord application/Debug/obj/uart_fw_update.o +FalseAlmCnt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +FillH2CCmd8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +FreeXimtBuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +FunctionChk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o + application/Debug/obj/hal_pwm.o + application/Debug/obj/hal_mii.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_i2c.o +GDMA_Chnl_Option application/Debug/obj/hal_gdma.o +GDMA_Multi_Block_Chnl_Option application/Debug/obj/hal_gdma.o +GPIOState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) +GPIO_EXT_PORT_TBL application/Debug/obj/gpio_api.o + application/Debug/obj/port_api.o +GPIO_GetChipPinName_8195a application/Debug/obj/hal_gpio.o +GPIO_InPinMode application/Debug/obj/gpio_api.o +GPIO_PullCtrl_8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + application/Debug/obj/hal_gpio.o +GPIO_SWPORT_DDR_TBL application/Debug/obj/gpio_api.o +GPIO_SWPORT_DR_TBL application/Debug/obj/gpio_api.o + application/Debug/obj/port_api.o +GTimer6Handle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +GTimer7Handle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +GetArgc application/Debug/obj/rtl_consol.o +GetArgv application/Debug/obj/rtl_consol.o +GetDeltaSwingTable_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +GetDeltaSwingXtalTable_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +GetDmaTxbdIdx ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +GetHalDefVar8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +GetHalODMVar8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +GetHwReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +GetHwReg8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +GetMediaStatusCommon ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +GetMinRateInRRSR ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +GetRemainingEfuseLength ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + application/Debug/obj/efuse_api.o +GetTxrptStatistic ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +GetU1ByteIntegerFromStringInDecimal ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) +GpioFunctionChk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + application/Debug/obj/hal_gpio.o +GpioIcFunChk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) +H2CCmdCommon ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +H2CHDL_BcnIgnoreEDCCA ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) +H2CHDL_JoinInfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) +H2CHDL_SetPwrMode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +H2CHDL_SetRsvdPage ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) +H2CHDL_Set_MACID_Config ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) +H2CHDL_Set_MACID_Config_DummyRAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +HALEFUSEOneByteReadRAM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) +HALEFUSEOneByteReadROM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HALEFUSEOneByteWriteRAM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) +HALEFUSEOneByteWriteROM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +HALJtagOff ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + application/Debug/obj/efuse_api.o +HALOTPOneByteReadRAM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +HALOTPOneByteWriteRAM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +HAL_GPIO_ClearISR_8195a application/Debug/obj/rtl8195a_gpio.o + application/Debug/obj/gpio_irq_api.o +HAL_GPIO_DeInit application/Debug/obj/hal_gpio.o + application/Debug/obj/gpio_irq_api.o + application/Debug/obj/gpio_api.o +HAL_GPIO_DeInit_8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/hal_gpio.o +HAL_GPIO_GetIPPinName_8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/hal_gpio.o +HAL_GPIO_GetPinName application/Debug/obj/hal_gpio.o + application/Debug/obj/port_api.o + application/Debug/obj/gpio_irq_api.o + application/Debug/obj/gpio_api.o +HAL_GPIO_IP_DeInit application/Debug/obj/hal_gpio.o +HAL_GPIO_Init application/Debug/obj/hal_gpio.o + application/Debug/obj/port_api.o + application/Debug/obj/gpio_api.o +HAL_GPIO_Init_8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/hal_gpio.o + application/Debug/obj/gpio_irq_api.o +HAL_GPIO_IntCtrl_8195a application/Debug/obj/gpio_irq_api.o +HAL_GPIO_Irq_Init application/Debug/obj/hal_gpio.o + application/Debug/obj/gpio_irq_api.o +HAL_GPIO_MaskIrq_8195a application/Debug/obj/hal_gpio.o + application/Debug/obj/gpio_irq_api.o +HAL_GPIO_MbedIrqHandler_8195a application/Debug/obj/hal_gpio.o +HAL_GPIO_PullCtrl application/Debug/obj/hal_gpio.o + application/Debug/obj/spi_api.o + application/Debug/obj/pinmap.o + application/Debug/obj/gpio_irq_api.o + application/Debug/obj/gpio_api.o +HAL_GPIO_ReadPin_8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o +HAL_GPIO_RegIrq_8195a application/Debug/obj/hal_gpio.o +HAL_GPIO_UnMaskIrq_8195a application/Debug/obj/gpio_irq_api.o +HAL_GPIO_UnRegIrq_8195a application/Debug/obj/hal_gpio.o +HAL_GPIO_UserRegIrq_8195a application/Debug/obj/gpio_irq_api.o +HAL_GPIO_UserUnRegIrq_8195a application/Debug/obj/gpio_irq_api.o +HAL_GPIO_WritePin_8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + application/Debug/obj/gpio_api.o +HAL_IsLegalChannel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +HAL_Pwm_Disable application/Debug/obj/hal_pwm.o + application/Debug/obj/pwmout_api.o +HAL_Pwm_Disable_8195a application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/hal_pwm.o +HAL_Pwm_Enable application/Debug/obj/hal_pwm.o + application/Debug/obj/pwmout_api.o +HAL_Pwm_Enable_8195a application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/hal_pwm.o +HAL_Pwm_Init application/Debug/obj/hal_pwm.o + application/Debug/obj/pwmout_api.o +HAL_Pwm_Init_8195a application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/hal_pwm.o +HAL_Pwm_SetDuty application/Debug/obj/hal_pwm.o + application/Debug/obj/pwmout_api.o +HAL_Pwm_SetDuty_8195a application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/hal_pwm.o +HTOnAssocRsp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +HT_caps_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +HT_info_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +HalADCDeInit8195a application/Debug/obj/rtl8195a_adc.o + application/Debug/obj/hal_adc.o +HalADCEnableRtl8195a application/Debug/obj/rtl8195a_adc.o + application/Debug/obj/hal_adc.o +HalADCInit8195a application/Debug/obj/rtl8195a_adc.o + application/Debug/obj/hal_adc.o +HalADCIntrCtrl8195a application/Debug/obj/rtl8195a_adc.o + application/Debug/obj/hal_adc.o +HalADCOpInit application/Debug/obj/hal_adc.o + application/Debug/obj/analogin_api.o +HalADCReadRegRtl8195a application/Debug/obj/rtl8195a_adc.o + application/Debug/obj/hal_adc.o +HalADCReceiveRtl8195a application/Debug/obj/rtl8195a_adc.o + application/Debug/obj/hal_adc.o +HalCheckInReqStateThreadRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +HalCommonInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HalCpuClkConfig ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HalDeinitLogUart ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/sys_api.o +HalDelayUs ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_adc.o + application/Debug/obj/hal_32k.o + application/Debug/obj/sys_api.o + application/Debug/obj/osdep_api.o +HalEFUSEPowerSwitch8195AROM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +HalEtherAdp application/Debug/obj/hal_mii.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/ethernet_api.o +HalGdamChInitRtl8195a application/Debug/obj/hal_gdma.o +HalGdmaChBlockSeting application/Debug/obj/hal_gdma.o +HalGdmaChBlockSetingRtl8195a_Patch application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/hal_gdma.o +HalGdmaChCleanAutoDst application/Debug/obj/hal_gdma.o +HalGdmaChCleanAutoDstRtl8195a application/Debug/obj/hal_gdma.o +HalGdmaChCleanAutoSrc application/Debug/obj/hal_gdma.o +HalGdmaChCleanAutoSrcRtl8195a application/Debug/obj/hal_gdma.o +HalGdmaChDis application/Debug/obj/hal_gdma.o +HalGdmaChDisRtl8195a application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/hal_gdma.o +HalGdmaChEn application/Debug/obj/hal_gdma.o +HalGdmaChEnRtl8195a application/Debug/obj/hal_gdma.o +HalGdmaChInit application/Debug/obj/hal_gdma.o +HalGdmaChIsrClean application/Debug/obj/hal_gdma.o +HalGdmaChIsrCleanRtl8195a application/Debug/obj/hal_gdma.o +HalGdmaChIsrDis application/Debug/obj/hal_gdma.o +HalGdmaChIsrEn application/Debug/obj/hal_gdma.o +HalGdmaChIsrEnAndDisRtl8195a application/Debug/obj/hal_gdma.o +HalGdmaChSeting application/Debug/obj/hal_gdma.o +HalGdmaChSetingRtl8195a application/Debug/obj/hal_gdma.o +HalGdmaChnlAlloc application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o +HalGdmaChnlEn application/Debug/obj/hal_gdma.o +HalGdmaChnlFree application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o +HalGdmaChnlRegister application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o +HalGdmaChnlUnRegister application/Debug/obj/hal_gdma.o +HalGdmaLLPMemAlign application/Debug/obj/hal_gdma.o +HalGdmaMemAggr application/Debug/obj/hal_gdma.o + application/Debug/obj/dma_api.o +HalGdmaMemCpy application/Debug/obj/hal_gdma.o + application/Debug/obj/dma_api.o +HalGdmaMemCpyAggrInit application/Debug/obj/hal_gdma.o + application/Debug/obj/dma_api.o +HalGdmaMemCpyDeInit application/Debug/obj/hal_gdma.o + application/Debug/obj/dma_api.o +HalGdmaMemCpyInit application/Debug/obj/hal_gdma.o + application/Debug/obj/dma_api.o +HalGdmaMemIrqHandler application/Debug/obj/hal_gdma.o +HalGdmaMultiBlockSetting application/Debug/obj/hal_gdma.o +HalGdmaOff application/Debug/obj/hal_gdma.o +HalGdmaOn application/Debug/obj/hal_gdma.o +HalGdmaOnOffRtl8195a application/Debug/obj/hal_gdma.o +HalGdmaOpInit application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_adc.o + application/Debug/obj/spi_api.o + application/Debug/obj/serial_api.o + application/Debug/obj/i2c_api.o + application/Debug/obj/analogin_api.o +HalGdmaQueryChEnRtl8195a application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_ssi.o +HalGdmaQueryDArRtl8195a application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_ssi.o +HalGdmaQuerySArRtl8195a application/Debug/obj/rtl8195a_gdma.o + application/Debug/obj/rtl8195a_uart.o +HalGetCpuClk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/system_8195a.o +HalGetNullTxRpt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +HalGetTimerIdRtl8195a application/Debug/obj/hal_timer.o +HalHardFaultHandler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HalHardFaultHandler_Patch_c ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HalHardFaultHandler_user_define ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HalI2C0GdmaOp application/Debug/obj/hal_i2c.o +HalI2C0InitData application/Debug/obj/hal_i2c.o +HalI2C0RxGdmaAdpt application/Debug/obj/hal_i2c.o +HalI2C0TxGdmaAdpt application/Debug/obj/hal_i2c.o +HalI2C1GdmaOp application/Debug/obj/hal_i2c.o +HalI2C1InitData application/Debug/obj/hal_i2c.o +HalI2C1RxGdmaAdpt application/Debug/obj/hal_i2c.o +HalI2C1TxGdmaAdpt application/Debug/obj/hal_i2c.o +HalI2C2GdmaOp application/Debug/obj/hal_i2c.o +HalI2C2InitData application/Debug/obj/hal_i2c.o +HalI2C2RxGdmaAdpt application/Debug/obj/hal_i2c.o +HalI2C2TxGdmaAdpt application/Debug/obj/hal_i2c.o +HalI2C3GdmaOp application/Debug/obj/hal_i2c.o +HalI2C3InitData application/Debug/obj/hal_i2c.o +HalI2C3RxGdmaAdpt application/Debug/obj/hal_i2c.o +HalI2C3TxGdmaAdpt application/Debug/obj/hal_i2c.o +HalI2CClrAllIntrRtl8195a application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o +HalI2CClrIntrRtl8195a application/Debug/obj/hal_i2c.o +HalI2CDMACtrl8195a application/Debug/obj/hal_i2c.o +HalI2CDeInit8195a application/Debug/obj/hal_i2c.o +HalI2CEnableRtl8195a_Patch application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o +HalI2CInit8195a_Patch application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o +HalI2CIntrCtrl8195a application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o +HalI2CMassSendRtl8195a_Patch application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o +HalI2COpInit_Patch application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +HalI2COpSAL application/Debug/obj/hal_i2c.o +HalI2CRead32 application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/i2c_api.o +HalI2CReadRegRtl8195a application/Debug/obj/hal_i2c.o +HalI2CReceiveRtl8195a application/Debug/obj/hal_i2c.o +HalI2CSendRtl8195a_Patch application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o +HalI2CSetCLKRtl8195a_Patch application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o +HalI2CWrite32 application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/i2c_api.o +HalI2CWriteRegRtl8195a application/Debug/obj/hal_i2c.o +HalI2SClearAllOwnBitRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o +HalI2SClrAllIntrRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o +HalI2SClrIntrRtl8195a application/Debug/obj/hal_i2s.o +HalI2SDMACtrlRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o +HalI2SDeInit application/Debug/obj/hal_i2s.o + application/Debug/obj/i2s_api.o +HalI2SDeInitRtl8195a application/Debug/obj/hal_i2s.o +HalI2SDisable application/Debug/obj/hal_i2s.o + application/Debug/obj/i2s_api.o +HalI2SEnable application/Debug/obj/hal_i2s.o + application/Debug/obj/i2s_api.o +HalI2SEnableRtl8195a application/Debug/obj/hal_i2s.o +HalI2SGetRxPageRtl8195a application/Debug/obj/rtl8195a_i2s.o +HalI2SGetTxPageRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/i2s_api.o +HalI2SInit application/Debug/obj/hal_i2s.o + application/Debug/obj/i2s_api.o +HalI2SInitRtl8195a_Patch application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o +HalI2SIntrCtrlRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o +HalI2SOpInit application/Debug/obj/hal_i2s.o +HalI2SOpSAL application/Debug/obj/hal_i2s.o +HalI2SPageRecvRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/i2s_api.o +HalI2SPageSendRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/i2s_api.o +HalI2SRead32 application/Debug/obj/rtl8195a_i2s.o +HalI2SReadRegRtl8195a application/Debug/obj/hal_i2s.o +HalI2SRxRtl8195a application/Debug/obj/hal_i2s.o +HalI2SSetChNumRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/i2s_api.o +HalI2SSetDMABufRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/i2s_api.o +HalI2SSetDirectionRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/i2s_api.o +HalI2SSetPageNumRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o +HalI2SSetPageSizeRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o +HalI2SSetRateRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/i2s_api.o +HalI2SSetWordLenRtl8195a application/Debug/obj/rtl8195a_i2s.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/i2s_api.o +HalI2STxRtl8195a application/Debug/obj/hal_i2s.o +HalI2SWrite32 application/Debug/obj/rtl8195a_i2s.o +HalInitLogUart ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/sys_api.o +HalJtagPinOff ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + application/Debug/obj/sys_api.o +HalLittleWifiMCUThreadRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +HalLogUartAbortIntRecv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartAbortIntSend ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartDisable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartEnable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/log_uart_api.o +HalLogUartInitSetting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartIntRecv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartIntSend ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartIrqHandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) +HalLogUartRecv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartRstFIFO ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartSend ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartSetBaudRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartSetIntEn ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalLogUartSetLineCtrl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/log_uart_api.o +HalMiiDeInit application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiDeInitRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalMiiForceLink application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiForceLinkRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalMiiGetLinkStatus application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiGetLinkStatusRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalMiiGetMacAddress application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiGetMacAddressRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalMiiInit application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiInitIrqRtl8195a application/Debug/obj/rtl8195a_mii.o +HalMiiInitRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalMiiReadData application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiReadDataRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalMiiReceivePacket application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiReceivePacketRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalMiiRwPhyRegRtl8195a application/Debug/obj/rtl8195a_mii.o +HalMiiSendPacket application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiSendPacketRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalMiiWriteData application/Debug/obj/hal_mii.o + application/Debug/obj/ethernet_api.o +HalMiiWriteDataRtl8195a application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_mii.o +HalNFCDbgRead32 application/Debug/obj/rtl8195a_nfc.o +HalNFCDbgWrite32 application/Debug/obj/rtl8195a_nfc.o +HalNFCDeinit application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/nfc_api.o +HalNFCDmemInit application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/nfc_api.o +HalNFCFwDownload application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/nfc_api.o +HalNFCFwFullMEM application/Debug/obj/rtl8195a_nfc.o +HalNFCInit application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/nfc_api.o +HalNFCOpInit application/Debug/obj/hal_nfc.o +HalNFCRead32 application/Debug/obj/rtl8195a_nfc.o +HalNFCWrite32 application/Debug/obj/rtl8195a_nfc.o +HalNMIHandler_Patch ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HalPcmDumpRegRtl8195a application/Debug/obj/hal_pcm.o +HalPcmEnRtl8195a application/Debug/obj/hal_pcm.o +HalPcmInitRtl8195a application/Debug/obj/hal_pcm.o +HalPcmIsrEnAndDisRtl8195a application/Debug/obj/hal_pcm.o +HalPcmOnOffRtl8195a application/Debug/obj/hal_pcm.o +HalPcmOpInit application/Debug/obj/hal_pcm.o +HalPcmRtl8195a application/Debug/obj/hal_pcm.o +HalPcmSettingRtl8195a application/Debug/obj/hal_pcm.o +HalPinCtrlRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/hal_i2s.o +HalPwrSeqCmdParsing ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +HalRuartAdapterInit application/Debug/obj/hal_uart.o +HalRuartAdapterLoadDefRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/hal_uart.o +HalRuartDeInit application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartDeInitRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/hal_uart.o +HalRuartDisable application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartDisableRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartDmaInitRtl8195a application/Debug/obj/hal_uart.o +HalRuartDmaRecv application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartDmaRecvRtl8195a application/Debug/obj/hal_uart.o +HalRuartDmaRecvRtl8195a_Patch application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartDmaSend application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartDmaSendRtl8195a_Patch application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartDumpBaudRateTableRtl8195a application/Debug/obj/rtl8195a_uart.o +HalRuartDumpRegRtl8195a application/Debug/obj/rtl8195a_uart.o +HalRuartEnable application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartEnableRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartEnterCritical application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartEnterCriticalRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartExitCritical application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartExitCriticalRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartFlowCtrl application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartFlowCtrlRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartGenBaudRateRtl8195a application/Debug/obj/rtl8195a_uart.o +HalRuartGetCRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartGetChipVerRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartGetDebugValueRtl8195a application/Debug/obj/hal_uart.o +HalRuartGetIMRRtl8195a application/Debug/obj/hal_uart.o +HalRuartInit application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartInitRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +HalRuartInitRtl8195a_Patch application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartIntDisableRtl8195a application/Debug/obj/hal_uart.o +HalRuartIntEnableRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/hal_uart.o +HalRuartIntRecvRtl8195a application/Debug/obj/hal_uart.o +HalRuartIntSendRtl8195a application/Debug/obj/hal_uart.o +HalRuartMultiBlkDmaRecvRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartMultiBlkDmaSendRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartOpInit application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartPutCRtl8195a application/Debug/obj/hal_uart.o +HalRuartRTSCtrlRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartRecvRtl8195a application/Debug/obj/hal_uart.o +HalRuartRegIrqRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/hal_uart.o +HalRuartResetRxFifo application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartResetRxFifoRtl8195a application/Debug/obj/rtl8195a_uart.o +HalRuartResetRxFifoRtl8195a_Patch application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartResetTRxFifo application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartResetTRxFifoRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartResetTxFifo application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartResetTxFifoRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartRxGdmaDeInit application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartRxGdmaInit application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartRxGdmaLoadDefRtl8195a application/Debug/obj/hal_uart.o +HalRuartRxIndHook application/Debug/obj/hal_uart.o +HalRuartSendRtl8195a application/Debug/obj/hal_uart.o +HalRuartSetBaudRate application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartSetBaudRateRtl8195a application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartSetIMRRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartStopRecvRtl8195a_Patch application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartStopSendRtl8195a_Patch application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +HalRuartTxGdmaDeInit application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartTxGdmaInit application/Debug/obj/hal_uart.o + application/Debug/obj/serial_api.o +HalRuartTxGdmaLoadDefRtl8195a application/Debug/obj/hal_uart.o +HalSdioDeInit application/Debug/obj/spdio_api.o +HalSdioInit application/Debug/obj/spdio_api.o +HalSdioRegisterRxDoneCallback application/Debug/obj/spdio_api.o +HalSdioRegisterTxCallback application/Debug/obj/spdio_api.o +HalSdioRxCallback application/Debug/obj/spdio_api.o +HalSerialGetIsrEnRegRtl8195a application/Debug/obj/rtl_consol.o +HalSerialGetcRtl8195a application/Debug/obj/rtl_consol.o +HalSerialPutcRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + application/Debug/obj/stdlib_patch.o +HalSerialSetIrqEnRegRtl8195a application/Debug/obj/rtl_consol.o +HalSetBrateCfg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +HalSetRPWM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +HalSsiBusyRtl8195a application/Debug/obj/hal_ssi.o +HalSsiClockOffRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiClockOnRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiDeInit application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiDeInitRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiDisable application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiDisableRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiDmaInitRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiDmaRecv application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiDmaRecvMultiBlockRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiDmaRecvRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiDmaSend application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiDmaSendMultiBlockRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiDmaSendRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiEnable application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiEnableRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiEnterCritical application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiEnterCriticalRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiExitCritical application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiExitCriticalRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiGetInterruptMaskRtl8195a application/Debug/obj/hal_ssi.o +HalSsiGetInterruptStatusRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiGetRawInterruptStatusRtl8195a application/Debug/obj/hal_ssi.o +HalSsiGetRxFifoLevelRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiGetSlaveEnableRegisterRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiGetStatusRtl8195a application/Debug/obj/hal_ssi.o +HalSsiGetTxFifoLevelRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiInit application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiInitRtl8195a_Patch application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiIntReadRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiIntWriteRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiInterruptDisableRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiInterruptEnableRtl8195a application/Debug/obj/hal_ssi.o +HalSsiIsTimeoutRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiLoadSettingRtl8195a application/Debug/obj/hal_ssi.o +HalSsiOpInit application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiPinmuxDisableRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiPinmuxEnableRtl8195a_Patch application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiReadRtl8195a application/Debug/obj/hal_ssi.o +HalSsiReadableRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiRxGdmaDeInit application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiRxGdmaInit application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiRxGdmaLoadDefRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiRxMultiBlkChnl application/Debug/obj/hal_ssi.o +HalSsiRxSingleBlkChnl application/Debug/obj/hal_ssi.o +HalSsiSetDeviceRoleRtl8195a application/Debug/obj/hal_ssi.o +HalSsiSetFormat application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiSetFormatRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiSetInterruptMaskRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiSetRxFifoThresholdLevelRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiSetSclkPhaseRtl8195a application/Debug/obj/hal_ssi.o +HalSsiSetSclkPolarityRtl8195a application/Debug/obj/hal_ssi.o +HalSsiSetSclkRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/spi_api.o +HalSsiSetSlaveEnableRegisterRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiSetTxFifoThresholdLevelRtl8195a application/Debug/obj/hal_ssi.o +HalSsiStopRecv application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiStopRecvRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiTimeout application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiTxFIFOThresholdRtl8195a application/Debug/obj/rtl8195a_ssi.o +HalSsiTxGdmaDeInit application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiTxGdmaInit application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +HalSsiTxGdmaLoadDefRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalSsiTxMultiBlkChnl application/Debug/obj/hal_ssi.o +HalSsiTxSingleBlkChnl application/Debug/obj/hal_ssi.o +HalSsiWriteRtl8195a application/Debug/obj/hal_ssi.o +HalSsiWriteableRtl8195a application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/hal_ssi.o +HalTDMAChangeStateThreadRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +HalTimerClearIsrRtl8195a application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/timer_api.o +HalTimerDeInitRtl8195a_Patch application/Debug/obj/rtl8195a_timer.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + application/Debug/obj/timer_api.o +HalTimerDisRtl8195a application/Debug/obj/rtl8195a_timer.o +HalTimerDisRtl8195a_Patch application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/hal_timer.o + application/Debug/obj/timer_api.o +HalTimerDumpRegRtl8195a application/Debug/obj/hal_timer.o +HalTimerEnRtl8195a_Patch application/Debug/obj/rtl8195a_timer.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + application/Debug/obj/hal_timer.o + application/Debug/obj/timer_api.o +HalTimerInitRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HalTimerInitRtl8195a_Patch application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/hal_timer.o + application/Debug/obj/timer_api.o +HalTimerIrq2To7Handle_Patch application/Debug/obj/rtl8195a_timer.o +HalTimerIrqClearRtl8195a application/Debug/obj/hal_timer.o +HalTimerIrqDisRtl8195a application/Debug/obj/rtl8195a_timer.o +HalTimerIrqEnRtl8195a application/Debug/obj/rtl8195a_timer.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + application/Debug/obj/timer_api.o +HalTimerIrqRegisterRtl8195a_Patch application/Debug/obj/rtl8195a_timer.o +HalTimerIrqUnRegisterRtl8195a_Patch application/Debug/obj/rtl8195a_timer.o +HalTimerOp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_pwm.o + application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/us_ticker.o + application/Debug/obj/timer_api.o + application/Debug/obj/spi_api.o + application/Debug/obj/serial_api.o + application/Debug/obj/log_uart_api.o + application/Debug/obj/i2c_api.o +HalTimerOpInit_Patch application/Debug/obj/hal_timer.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_common.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +HalTimerReLoadRtl8195a_Patch application/Debug/obj/rtl8195a_timer.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + application/Debug/obj/timer_api.o +HalTimerReadCountRtl8195a_Patch application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/hal_timer.o +HalWdgIntrHandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +Hal_EfuseParseBTCoexistInfo_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Hal_EfuseParseChnlPlan_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_EfuseParseCustomerID_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_EfuseParseEEPROMVer_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_EfuseParseIDCode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_EfuseParsePackageType_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_EfuseParseThermalMeter_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_EfuseParseTxPowerInfo_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_EfuseParseXtal_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_GetChnlGroup8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Hal_InitPGData ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_MPT_CCKTxPowerAdjust ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +Hal_MappingOutPipe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +Hal_ReadPowerValueFromPROM_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Hal_ReadRFGainOffset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +HwRateToMRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +I2C0IrqHandleDat application/Debug/obj/hal_i2c.o +I2C0RxGdmaIrqHandleDat application/Debug/obj/hal_i2c.o +I2C0TxGdmaIrqHandleDat application/Debug/obj/hal_i2c.o +I2C1IrqHandleDat application/Debug/obj/hal_i2c.o +I2C1RxGdmaIrqHandleDat application/Debug/obj/hal_i2c.o +I2C1TxGdmaIrqHandleDat application/Debug/obj/hal_i2c.o +I2C2IrqHandleDat application/Debug/obj/hal_i2c.o +I2C2RxGdmaIrqHandleDat application/Debug/obj/hal_i2c.o +I2C2TxGdmaIrqHandleDat application/Debug/obj/hal_i2c.o +I2C3IrqHandleDat application/Debug/obj/hal_i2c.o +I2C3RxGdmaIrqHandleDat application/Debug/obj/hal_i2c.o +I2C3TxGdmaIrqHandleDat application/Debug/obj/hal_i2c.o +I2CISRHandle_Patch application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +I2CIsTimeout application/Debug/obj/rtl8195a_i2c.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +I2CRXGDMAISRHandle application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +I2CTXGDMAISRHandle application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +I2SISRHandle application/Debug/obj/hal_i2s.o +ISR_BcnEarly ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_MtiBcnEarly ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_RxBCMD0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_RxBCMD1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_RxBcn ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_RxUCMD0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_RxUCMD1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_TBTT ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_TXCCX ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ISR_TxPktIn ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +Img2SignValidate application/Debug/obj/uart_fw_update.o +Img2Signature application/Debug/obj/uart_fw_update.o +InfraStart ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +InitCheckStateTimer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +InitGTimer1ms ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +InitInterrupt8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +InitLxDmaRtl8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +InitPS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +InitRsvdPgPkt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +InitSYSIRQ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +InitSoCPM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +InitTDMATimer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +InitialRateUpdate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +InitialRateUpdate_dummy1RAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +InitialRateUpdate_dummy2RAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +InterruptHandle8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +InterruptRecognized8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) +IsForceLoadDefaultImg2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +IssueNullData ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +IssuePSPoll ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +IssueRsvdPagePacketSetting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +LPIrqHandle application/Debug/obj/rtl8195a_nfc.o +LPS_Enter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +LPS_Leave ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +LPS_RF_ON_check ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +LeaveAllPowerSaveMode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +Legacy_PS_Setting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +LoadWifiConfig application/Debug/obj/webserver.o +LpPeriIrqDataTable application/Debug/obj/rtl8195a_nfc.o +LpPeriIrqFunTable application/Debug/obj/rtl8195a_nfc.o +LwIP_AUTOIP application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_conf.o +LwIP_DHCP application/Debug/obj/lwip_netconf.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +LwIP_GetBC application/Debug/obj/lwip_netconf.o +LwIP_GetDNS application/Debug/obj/lwip_netconf.o +LwIP_GetGW application/Debug/obj/lwip_netconf.o + application/Debug/obj/atcmd_wifi.o +LwIP_GetIP application/Debug/obj/lwip_netconf.o + application/Debug/obj/wigadget.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +LwIP_GetMAC application/Debug/obj/lwip_netconf.o + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/atcmd_wifi.o +LwIP_GetMASK application/Debug/obj/lwip_netconf.o +LwIP_Init application/Debug/obj/lwip_netconf.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/wlan_network.o +LwIP_SetDNS application/Debug/obj/lwip_netconf.o +LwIP_UseStaticIP application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +MARVELL_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +MCS_rate_1R ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +MRateToHwRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +MSBackupProcess ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +MSReFillProcess ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +MarkImg2SignOld application/Debug/obj/uart_fw_update.o +MediaConnection ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) +MediaDisconnection ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) +MemTest application/Debug/obj/hal_sdr_controller.o +Mii_ISR application/Debug/obj/rtl8195a_mii.o +N2AMailboxState application/Debug/obj/rtl8195a_nfc.o +N2AReadCatch application/Debug/obj/rtl8195a_nfc.o +N2AReadTag application/Debug/obj/rtl8195a_nfc.o +N2AWriteTag application/Debug/obj/rtl8195a_nfc.o +NFC25MClkReq application/Debug/obj/rtl8195a_nfc.o +NFCFWDMEM application/Debug/obj/rtl8195a_nfc.o +NFCFWIMEM application/Debug/obj/rtl8195a_nfc.o +NFCIrqHandle application/Debug/obj/rtl8195a_nfc.o +NFCReaderPresent application/Debug/obj/rtl8195a_nfc.o +NFCRoutine application/Debug/obj/rtl8195a_nfc.o +NFCTaskHandle application/Debug/obj/rtl8195a_nfc.o +NORMAL_PAGE_NUM_8812 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +NORMAL_PAGE_NUM_8821 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +NULL_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +NewVectorTable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +Noisy_State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +ODM_AllocateMemory ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_AsocEntry_Init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_CancelAllTimers ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_CfoTracking ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_CfoTrackingInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_ChangeDynamicInitGainThresh ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +ODM_CheckPowerStatus ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ODM_ClearTxPowerTrackingState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) +ODM_CmnInfoHook ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +ODM_CmnInfoInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +ODM_CmnInfoPtrArrayHook ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +ODM_CmnInfoUpdate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +ODM_ConfigBBWithHeaderFile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +ODM_ConfigFWWithHeaderFile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ConfigMACWithHeaderFile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +ODM_ConfigRFWithHeaderFile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +ODM_ConfigRFWithTxPwrTrackHeaderFile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) +ODM_DMInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +ODM_DMWatchdog ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +ODM_FillH2CCmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_FreeMemory ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_FreeWorkItem ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_GetBBReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_GetCurrentTime ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_GetHWImgVersion ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_GetMACReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_GetProgressingTime ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_GetRFReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ODM_GetRightChnlPlaceforIQK ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ODM_GetVersion_MP_8195A_AGC_TAB ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) +ODM_GetVersion_MP_8195A_MAC_REG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) +ODM_GetVersion_MP_8195A_PHY_REG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +ODM_GetVersion_MP_8195A_RADIO_DIFF ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +ODM_GetVersion_MP_8195A_RadioA ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +ODM_Get_Rate_Bitmap ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +ODM_InitAllTimers ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_InitDebugSetting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_InitRAInfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_InitRAInfo_DummyRAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +ODM_InitializeWorkItem ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_IsWorkItemScheduled ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_MacStatusQuery ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_MoveMemory ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +ODM_ParsingCFO ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_PhyStatusQuery ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) +ODM_PhyStatusQuery_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_RAPostActionOnAssoc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +ODM_RAStateCheck ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +ODM_Read1Byte ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ODM_Read2Byte ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_Read4Byte ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ODM_ReadAndConfig_MP_8195A_AGC_TAB ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_MAC_REG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_PHY_REG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_PHY_REG_PG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_RADIO_DIFF ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +ODM_ReadAndConfig_MP_8195A_RadioA ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_TXPWR_LMT ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_TxPowerTrack_QFN48 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_TxPowerTrack_QFN56 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_TxPowerTrack_TFBGA96 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReadAndConfig_MP_8195A_TxXtalTrack ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ODM_ReleaseAllTimers ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_ResetIQKResult ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ODM_ScheduleWorkItem ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_SetBBReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +ODM_SetMACReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +ODM_SetRFReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) +ODM_StallExecution ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_StartWorkItem ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_StopWorkItem ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_TXPowerTrackingCallback_ThermalMeter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) +ODM_TXPowerTrackingCheck ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +ODM_TxPwrTrackSetPwr_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ODM_TxXtalTrackSetXtal_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ODM_Write1Byte ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) +ODM_Write2Byte ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +ODM_Write4Byte ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +ODM_Write_CCK_CCA_Thres ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +ODM_Write_DIG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +ODM_delay_ms ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) +ODM_delay_us ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) +ODM_sleep_ms ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +ODM_sleep_us ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) +OFDMSwingTable_New ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +OTU_FW_Update application/Debug/obj/uart_fw_update.o +OTU_Img_Download application/Debug/obj/uart_fw_update.o +OTU_check_gpio application/Debug/obj/uart_fw_update.o +OTU_check_uart application/Debug/obj/uart_fw_update.o +OnAction ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnAction_back ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnAction_p2p ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnAction_public ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnAction_tbl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnAssocReq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnAssocRsp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnAuth ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnAuthClient ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnBeacon ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnDeAuth ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnDisassoc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +OnProbeReq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +OnProbeRsp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +P2P_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +PER_RATE_DOWN ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +PER_RATE_UP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +PHY_BBConfig8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +PHY_ConfigRFWithParaFile_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_ConfigRFWithTxPwrTrackParaFile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) +PHY_ConvertTxPowerLimitToPowerIndex ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_DM_RA_SetRSSI_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +PHY_GetRateIndexOfTxPowerByRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_GetRateValuesOfTxPowerByRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_GetTxPowerByRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_GetTxPowerByRateBase ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_GetTxPowerIndex ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +PHY_GetTxPowerIndexBase ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_GetTxPowerIndex_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_GetTxPowerLevel8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_GetTxPowerLimit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_GetTxPowerTrackingOffset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_HandleSwChnlAndSetBW8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_IQCalibrate_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +PHY_IQCalibrate_8723B ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +PHY_InitTxPowerByRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_InitTxPowerLimit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_LCCalibrate_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +PHY_LCCalibrate_8723B ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +PHY_MACConfig8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +PHY_QueryBBReg_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PHY_QueryBBReg_8195A_Safe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) +PHY_QueryRFReg_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PHY_RF6052SetBandwidth8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_RF6052_Config8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_RFConfig8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +PHY_SetBBReg_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PHY_SetBBReg_8195A_Safe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PHY_SetBWMode8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PHY_SetRFPathSwitch_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +PHY_SetRFReg_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PHY_SetSwChnlBWMode8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PHY_SetTxPowerByRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_SetTxPowerIndex ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_SetTxPowerIndexByRateArray ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_SetTxPowerIndexByRateSection ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +PHY_SetTxPowerIndex_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_SetTxPowerLevel8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_SetTxPowerLevelByPath ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PHY_SetTxPowerLimit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) +PHY_StoreTxPowerByRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) +PHY_StoreTxPowerByRateNew ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +PHY_SwChnl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PHY_TxPowerByRateConfiguration ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +PMUInitial ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PMUTask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +PSBcnEarlyProcess ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PSHalInitPlatformLogUart ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +PSModeSetting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PSMtiBcnEarlyProcess ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PSRxBcnProcess ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PSSetMode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_32K_Condition_Match ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_OnBeacon ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_RDY_CHECK ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +PS_S0ToS1ToS2State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S0ToS6State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S1ToS0orS2State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S2ToS0State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S2ToS3ToS0State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S2ToS4State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S2ToS5State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S2_Condition_Match ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S3ToS2orS0State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S4ToS2State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S4_Condition_Match ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S5ToS2State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PS_S6ToS0State ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PT_Mode_Sel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +PT_PENALTY ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +PWMTimerIdx application/Debug/obj/hal_pwm.o +PatchHalLogUartInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +PhyDM_Get_Structure ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Phydm_Adaptivity ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +Phydm_AdaptivityInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Phydm_CalNHMcnt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +Phydm_CheckAdaptivity ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +Phydm_CheckEnvironment ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +Phydm_GetNHMCounterStatistics ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +Phydm_MACEDCCAState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +Phydm_NHMCounterStatistics ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +Phydm_NHMCounterStatisticsInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +Phydm_NHMCounterStatisticsReset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +Phydm_SearchPwdBLowerBound ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +Phydm_SetEDCCAThreshold ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +Phydm_SetTRxMux ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) +PowerBitSetting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PreProcessForVendor ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +PreRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +PsBcnToProcess ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PsCloseRF ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PsOpenRF ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +PsuseTxrpt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +Pwm_SetTimerTick_8195a application/Debug/obj/rtl8195a_pwm.o +PwrAdapter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +QueryRegPwrState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_adc.o +RALINK_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +RAM_IMG1_VALID_PATTEN ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/low_level_io.o +RAM_IMG2_VALID_PATTEN ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +RATaskEnable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) +REALTEK_96B_IE ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +REALTEK_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +ROMInfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_debug.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +ROM_IMG1_VALID_PATTEN application/Debug/obj/uart_fw_update.o +ROM_ODM_CfoTrackingReset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) +ROM_odm_CfoTrackingFlow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) +ROM_odm_EVMdbToPercentage ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ROM_odm_FalseAlarmCounterStatistics ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +ROM_odm_GetDefaultCrytaltalCap ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_CfoTracking.o) +ROM_odm_QueryRxPwrPercentage ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +ROM_odm_SetCrystalCap ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +ROM_odm_SignalScaleMapping_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +RPWMProcess ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +RSN_CIPHER_SUITE_CCMP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +RSN_CIPHER_SUITE_TKIP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +RSN_TKIP_CIPHER ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +RTL8710afFunChk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_pinmux.o) +RTW_STATUS_CODE application/Debug/obj/osdep_service.o +RTW_WPA_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +RTW_WPA_OUI_TYPE ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +Rand2 application/Debug/obj/system_8195a.o +RateDecisionRAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +RateDownStepRAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +RateDownTrying ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +RateDownTrying_DummyRAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +RateDown_search_RateMask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +RateUpRAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +RateUp_search_RateMask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +ReFillCpuClk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +ReadEOTPContant ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + application/Debug/obj/efuse_api.o +ReadEfuseContant ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +ReadEfuseContant1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + application/Debug/obj/efuse_api.o +ReadEfuseContant2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +ReadEfuseContant3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +ReadHWPwrState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +ReadRateMask32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +ReadRateMask8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +ReadTxrpt8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +RegPowerState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_adc.o +RemapPktToTxBd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +ResetPSParm ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +ResetTxrpt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +Restore_DM_Func_Flag ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +RtkADCDeInit application/Debug/obj/hal_adc.o + application/Debug/obj/analogin_api.o +RtkADCDisablePS application/Debug/obj/hal_adc.o +RtkADCEnablePS application/Debug/obj/hal_adc.o +RtkADCFreeMngtAdpt application/Debug/obj/hal_adc.o +RtkADCFreeSalHnd application/Debug/obj/hal_adc.o +RtkADCGetMngtAdpt application/Debug/obj/hal_adc.o +RtkADCGetSalHnd application/Debug/obj/hal_adc.o +RtkADCInit application/Debug/obj/hal_adc.o + application/Debug/obj/analogin_api.o +RtkADCLoadDefault application/Debug/obj/hal_adc.o + application/Debug/obj/analogin_api.o +RtkADCPinMuxInit application/Debug/obj/hal_adc.o +RtkADCReceive application/Debug/obj/hal_adc.o +RtkADCReceiveBuf application/Debug/obj/hal_adc.o + application/Debug/obj/analogin_api.o +RtkADCRxManualRotate application/Debug/obj/hal_adc.o + application/Debug/obj/analogin_api.o +RtkI2CDeInit application/Debug/obj/hal_i2c.o +RtkI2CDeInitForPS application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +RtkI2CDisablePS application/Debug/obj/hal_i2c.o +RtkI2CEnablePS application/Debug/obj/hal_i2c.o +RtkI2CFreeMngtAdpt application/Debug/obj/hal_i2c.o +RtkI2CFreeSalHnd application/Debug/obj/hal_i2c.o +RtkI2CGetMngtAdpt application/Debug/obj/hal_i2c.o +RtkI2CGetSalHnd application/Debug/obj/hal_i2c.o +RtkI2CInit application/Debug/obj/hal_i2c.o +RtkI2CInitForPS application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +RtkI2CLoadDefault application/Debug/obj/i2c_api.o +RtkI2CReceive_Patch application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +RtkI2CSendUserAddr application/Debug/obj/hal_i2c.o +RtkI2CSend_Patch application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +RtkI2SDeInit application/Debug/obj/hal_i2s.o +RtkI2SDisable application/Debug/obj/hal_i2s.o +RtkI2SEnable application/Debug/obj/hal_i2s.o +RtkI2SInit application/Debug/obj/hal_i2s.o +RtkI2SIoCtrl application/Debug/obj/hal_i2s.o +RtkI2SLoadDefault application/Debug/obj/hal_i2s.o + application/Debug/obj/i2s_api.o +RtkI2SPowerCtrl application/Debug/obj/hal_i2s.o +RtkSalI2CSts application/Debug/obj/hal_i2c.o + application/Debug/obj/i2c_api.o +RtlBootToSram ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +RtlConsolInitRam application/Debug/obj/rtl_consol.o +RtlConsolRom ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +RtlConsolTaskRam application/Debug/obj/rtl_consol.o +RtlDownSema application/Debug/obj/osdep_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/mailbox.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/rtl_consol.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_lwip.o +RtlDownSemaWithTimeout application/Debug/obj/osdep_api.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/log_service.o +RtlFreeSema application/Debug/obj/osdep_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/atcmd_lwip.o +RtlGetCurrentTime application/Debug/obj/osdep_api.o +RtlInitSema application/Debug/obj/osdep_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/rtl_consol.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_lwip.o +RtlMailboxCreate application/Debug/obj/mailbox.o +RtlMailboxDel application/Debug/obj/mailbox.o +RtlMailboxMsgWaiting application/Debug/obj/mailbox.o +RtlMailboxPeek application/Debug/obj/mailbox.o +RtlMailboxReceive application/Debug/obj/mailbox.o +RtlMailboxSendToBack application/Debug/obj/mailbox.o +RtlMailboxSendToFront application/Debug/obj/mailbox.o +RtlMalloc application/Debug/obj/osdep_api.o + application/Debug/obj/sys_api.o + application/Debug/obj/uart_ymodem.o +RtlMalloc2d application/Debug/obj/osdep_api.o +RtlMdelayOS application/Debug/obj/osdep_api.o +RtlMfree application/Debug/obj/osdep_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_adc.o + application/Debug/obj/sys_api.o + application/Debug/obj/mailbox.o + application/Debug/obj/uart_ymodem.o +RtlMfree2d application/Debug/obj/osdep_api.o +RtlModular64 application/Debug/obj/osdep_api.o +RtlMsleepOS application/Debug/obj/osdep_api.o + application/Debug/obj/shtc1.o + application/Debug/obj/uart_socket.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/atcmd_lwip.o +RtlMutexFree application/Debug/obj/osdep_api.o +RtlMutexInit application/Debug/obj/osdep_api.o + application/Debug/obj/mailbox.o +RtlSleepSchedulable application/Debug/obj/osdep_api.o +RtlSpinlock application/Debug/obj/osdep_api.o +RtlSpinlockEx application/Debug/obj/osdep_api.o +RtlSpinlockFree application/Debug/obj/osdep_api.o +RtlSpinlockInit application/Debug/obj/osdep_api.o +RtlSpinunlock application/Debug/obj/osdep_api.o +RtlSpinunlockEx application/Debug/obj/osdep_api.o +RtlTimerCallbckEntry application/Debug/obj/osdep_api.o +RtlTimerChangePeriod application/Debug/obj/osdep_api.o +RtlTimerCreate application/Debug/obj/osdep_api.o +RtlTimerDelete application/Debug/obj/osdep_api.o +RtlTimerReset application/Debug/obj/osdep_api.o +RtlTimerStart application/Debug/obj/osdep_api.o +RtlTimerStop application/Debug/obj/osdep_api.o +RtlUdelayOS application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o +RtlUpSema application/Debug/obj/osdep_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/mailbox.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/rtl_consol.o + application/Debug/obj/log_service.o +RtlUpSemaFromISR application/Debug/obj/osdep_api.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/rtl_consol.o +RtlUsleepOS application/Debug/obj/osdep_api.o +RtlYieldOS application/Debug/obj/osdep_api.o +RtlZmalloc application/Debug/obj/osdep_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/hal_i2c.o + application/Debug/obj/hal_adc.o + application/Debug/obj/mailbox.o +RuartIsTimeout ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/serial_api.o + application/Debug/obj/log_uart_api.o +RuartLock application/Debug/obj/rtl8195a_uart.o +RuartUnLock application/Debug/obj/rtl8195a_uart.o +RxDesc application/Debug/obj/rtl8195a_mii.o +RxDescRdPtr application/Debug/obj/rtl8195a_mii.o +SCMapping_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +SC_connect_to_AP application/Debug/obj/wifi_simple_config.o +SC_connect_to_candidate_AP application/Debug/obj/wifi_simple_config.o +SC_parse_scan_result_and_connect application/Debug/obj/wifi_simple_config.o +SC_send_simple_config_ack application/Debug/obj/wifi_simple_config.o +SC_set_ack_content application/Debug/obj/wifi_simple_config.o +SC_translate_iw_security_mode application/Debug/obj/wifi_simple_config.o +SC_translate_security application/Debug/obj/wifi_simple_config.o +SDIO_Device_Off ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SDRSleep ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SDRWakeUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SHTC_GetTempAndHumi application/Debug/obj/shtc1.o +SHTC_Init application/Debug/obj/shtc1.o +SNAP_ETH_TYPE_APPLETALK_AARP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +SNAP_ETH_TYPE_APPLETALK_DDP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +SNAP_ETH_TYPE_IPX ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +SNAP_ETH_TYPE_TDLS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +SNAP_HDR_APPLETALK_DDP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +SPI0_IS_AS_SLAVE application/Debug/obj/spi_api.o +SS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +SSI_DBG_CONFIG application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/spi_api.o +SYSAdapte ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SYSCpuClkConfig ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SYSIrqHandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SYSPlatformInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SalAdcEnableState application/Debug/obj/hal_adc.o +SalAdcInitialDatKeep application/Debug/obj/hal_adc.o +SalAdcInitialFlag application/Debug/obj/hal_adc.o +SalI2C0DmaUserDef application/Debug/obj/hal_i2c.o +SalI2C0HndPriv application/Debug/obj/hal_i2c.o +SalI2C0MngtAdpt application/Debug/obj/hal_i2c.o +SalI2C0UserCB application/Debug/obj/hal_i2c.o +SalI2C0UserCBAdpt application/Debug/obj/hal_i2c.o +SalI2C1DmaUserDef application/Debug/obj/hal_i2c.o +SalI2C1HndPriv application/Debug/obj/hal_i2c.o +SalI2C1MngtAdpt application/Debug/obj/hal_i2c.o +SalI2C1UserCB application/Debug/obj/hal_i2c.o +SalI2C1UserCBAdpt application/Debug/obj/hal_i2c.o +SalI2C2DmaUserDef application/Debug/obj/hal_i2c.o +SalI2C2HndPriv application/Debug/obj/hal_i2c.o +SalI2C2MngtAdpt application/Debug/obj/hal_i2c.o +SalI2C2UserCB application/Debug/obj/hal_i2c.o +SalI2C2UserCBAdpt application/Debug/obj/hal_i2c.o +SalI2C3DmaUserDef application/Debug/obj/hal_i2c.o +SalI2C3HndPriv application/Debug/obj/hal_i2c.o +SalI2C3MngtAdpt application/Debug/obj/hal_i2c.o +SalI2C3UserCB application/Debug/obj/hal_i2c.o +SalI2C3UserCBAdpt application/Debug/obj/hal_i2c.o +Save_DM_Func_Flag ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +SdrCalibration application/Debug/obj/hal_sdr_controller.o +SdrControllerInit application/Debug/obj/hal_sdr_controller.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SdrCtrlInit application/Debug/obj/hal_sdr_controller.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SdrDramDev application/Debug/obj/hal_sdr_controller.o +SdrDramInfo application/Debug/obj/hal_sdr_controller.o +SdrDramModeReg application/Debug/obj/hal_sdr_controller.o +SdrDramTiming application/Debug/obj/hal_sdr_controller.o +Sdr_Rand2 application/Debug/obj/hal_sdr_controller.o +SelectChannel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +SelectImg2ToUpdate application/Debug/obj/uart_fw_update.o +SendEAPOL ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +SetBWMode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +SetHalDefVar8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +SetHalODMVar8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +SetHwReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +SetHwReg8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +SetMediaStatus ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) +SetPwrStateReg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +SetSYSTimer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SetSmartPSTimer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +SetTxbdForLxDMARtl8195ab ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +SetXimtBuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +Set_MSR ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +ShowRamBuildInfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SleepCG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + application/Debug/obj/sleep.o +SleepClkGatted ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SleepPG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SleepPwrGatted ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SleepTo32K ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +SmartPS2InitTimerAndToGetRxPkt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +SoCEnterPS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SoCPSGPIOCtrl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SoCPWRIdleTaskHandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SoCPwrChk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SoCPwrReinitProcess ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SpeRPT ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +SpiDefaultSetting application/Debug/obj/hal_ssi.o + application/Debug/obj/spi_api.o +SpiGdmaOp application/Debug/obj/spi_api.o +SpicBlockEraseFlashRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/flash_api.o +SpicCalibrationPattern application/Debug/obj/uart_fw_update.o +SpicCalibrationRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicCmpDataForCalibrationRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicConfigAutoModeRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicDeepPowerDownFlashRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +SpicDieEraseFlashRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicDisableRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/flash_api.o +SpicEraseFlashRefinedRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicFlashInitRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/flash_api.o +SpicGetConfigRegRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicGetExtendAddrRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/flash_api.o +SpicGetFlashFlagRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicGetFlashStatusRefinedRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/flash_api.o +SpicInitParaAllClk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/flash_api.o +SpicInitRefinedRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicInitRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SpicLoadInitParaFromClockRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicNVMCalLoad ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicNVMCalLoadAll ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SpicNVMCalStore ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicOneBitCalibrationRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SpicReadIDRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SpicRxCmdRefinedRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicSectorEraseFlashRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/flash_api.o +SpicSetExtendAddrRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/flash_api.o +SpicSetFlashStatusRefinedRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/flash_api.o +SpicTxCmdWithDataRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicTxFlashInstRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) +SpicUserProgramRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/flash_api.o +SpicUserReadFourByteRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SpicUserReadRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/flash_api.o +SpicWaitBusyDoneRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/flash_api.o +SpicWaitOperationDoneRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/flash_api.o +SpicWaitWipDoneRefinedRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/flash_api.o +SpicWaitWipRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SpicWriteProtectFlashRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_spi_flash_ram.o) + application/Debug/obj/flash_api.o +Ssi2_RX_GDMA_Chnl_Option application/Debug/obj/hal_ssi.o +Ssi2_TX_GDMA_Chnl_Option application/Debug/obj/hal_ssi.o +SsiRxGdmaIrqHandle application/Debug/obj/rtl8195a_ssi.o +SsiTxGdmaIrqHandle application/Debug/obj/rtl8195a_ssi.o +Ssi_MultiBlk_GDMA_Chnl_Option application/Debug/obj/hal_ssi.o +StartRateByRSSI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +StartupHalSpicInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +StoreApInfo application/Debug/obj/webserver.o +Switch_DM_Func ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +SysClkDown ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +SysClkUp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) +SystemCoreClock application/Debug/obj/system_8195a.o + application/Debug/obj/freertos_pmu.o + application/Debug/obj/port.o +SystemCoreClockUpdate application/Debug/obj/system_8195a.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +SystemGetCpuClk application/Debug/obj/system_8195a.o + application/Debug/obj/spi_api.o +SystemInit application/Debug/obj/system_8195a.o +TDMAChangeStateTask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +TRYING_NECESSARY_idx ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +TXTRecordCreate application/Debug/obj/wigadget.o + application/Debug/obj/uart_adapter.o +TXTRecordDeallocate application/Debug/obj/wigadget.o + application/Debug/obj/uart_adapter.o +TXTRecordSetValue application/Debug/obj/wigadget.o + application/Debug/obj/uart_adapter.o +TaskOTA application/Debug/obj/update.o +Timer2To7HandlerData application/Debug/obj/rtl8195a_timer.o +Timer2To7VectorTable application/Debug/obj/rtl8195a_timer.o +ToDrv_SetGTK ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +TryDone ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +TryDone_Dummy1RAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +TryDone_Dummy2RAM8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +TxDesc application/Debug/obj/rtl8195a_mii.o +TxDescWrPtr application/Debug/obj/rtl8195a_mii.o +TxPktInPSOn ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +Uart2_RX_GDMA_Chnl_Option application/Debug/obj/hal_uart.o +Uart2_RX_GDMA_MB_Chnl_Option application/Debug/obj/hal_uart.o +Uart2_TX_GDMA_Chnl_Option application/Debug/obj/hal_uart.o +Uart2_TX_GDMA_MB_Chnl_Option application/Debug/obj/hal_uart.o +UartLogBuf application/Debug/obj/rtl_consol.o +UartLogCmdChk application/Debug/obj/rtl_consol.o +UartLogCtl application/Debug/obj/rtl_consol.o +UartLogHistoryBuf application/Debug/obj/rtl_consol.o +UartLogHistoryCmd application/Debug/obj/rtl_consol.o +UartLogIrqHandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +UartLogIrqHandleRam application/Debug/obj/rtl_consol.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) +Uart_GDMA_MB_Chnl_Option application/Debug/obj/hal_uart.o +UpdateBrateTbl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +UpdateBrateTblForSoftAP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +UpdateHalRAMask8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +UpdateInterruptMask8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +UpdateTxbdHostIndex ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +Update_RA_Entry ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +UpdatedImg2AddrValidate application/Debug/obj/uart_fw_update.o +VCS_update ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +VectorIrqDisRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_gpio.o + application/Debug/obj/hal_gdma.o + application/Debug/obj/serial_api.o +VectorIrqEnRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_gpio.o + application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_adc.o + application/Debug/obj/hal_32k.o +VectorIrqRegisterRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_uart.o + application/Debug/obj/hal_ssi.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_adc.o + application/Debug/obj/hal_32k.o + application/Debug/obj/rtl_consol.o +VectorIrqUnRegisterRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_log_uart.o) + application/Debug/obj/rtl8195a_timer.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_i2s.o + application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_adc.o + application/Debug/obj/serial_api.o + application/Debug/obj/log_uart_api.o + application/Debug/obj/rtl_consol.o +VectorTableInitForOSRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +VectorTableInitRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +VectorTableOverrideRtl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +WDGAdapter application/Debug/obj/hal_32k.o +WDGInitial application/Debug/obj/hal_32k.o + application/Debug/obj/wdt_api.o +WDGIrqCallBackReg application/Debug/obj/hal_32k.o + application/Debug/obj/wdt_api.o +WDGIrqHandle application/Debug/obj/hal_32k.o +WDGIrqInitial application/Debug/obj/hal_32k.o + application/Debug/obj/wdt_api.o +WDGRefresh application/Debug/obj/hal_32k.o + application/Debug/obj/wdt_api.o +WDGStart application/Debug/obj/hal_32k.o + application/Debug/obj/wdt_api.o +WDGStop application/Debug/obj/hal_32k.o + application/Debug/obj/wdt_api.o +WFD_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +WMMOnAssocRsp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +WMM_INFO_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +WMM_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +WMM_PAGE_NUM_8812 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +WMM_PAGE_NUM_8821 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +WMM_PARA_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +WMM_param_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +WPA_CIPHER_SUITE_CCMP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +WPA_CIPHER_SUITE_TKIP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +WPS_OUI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +WaitHWStateReady ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +WaitTxStateMachineOk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +WakeFromSLPPG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +WriteA2NMailbox application/Debug/obj/rtl8195a_nfc.o +WriteEOTPContant ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + application/Debug/obj/efuse_api.o +WriteEfuseContant ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +WriteEfuseContant1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) + application/Debug/obj/efuse_api.o +WriteEfuseContant2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +WriteEfuseContant3 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_efuse.o) +WriteImg1Sign application/Debug/obj/uart_fw_update.o +WriteImg2Sign application/Debug/obj/uart_fw_update.o +WriteRateMask32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +WriteRateMask8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +WriteTxPause ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +WriteTxrpt8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +XMLogUartAdapter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +XMLogUartIrqHandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +XmRxBufGet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +XmRxBufGetS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +XmRxBufPoll ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +XmRxBufPut ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +XmRxBufRst ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +XmRxBuf_In ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +XmRxBuf_Len ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +XmRxBuf_Out ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +XmodemUartIrqHandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +XmodemUartRxBuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +_8051Reset8195a ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +_AppStart ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +_CPUReset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +_CPUResetHandler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +_GetChipId ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +_InitAdaptiveCtrl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitBurstPktLen_8195AB ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitDriverInfoSize ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitEDCA ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitInterrupt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitNetworkType ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitOperationMode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitPowerOn ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitRDGSetting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitRateFallback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitRetryFunction ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_InitWMACSetting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +_PHY_MACSettingCalibration8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_PIModeSwitch8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_PathADDAOn8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_PathAFillIQKMatrix8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_PathAStandBy8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_PathBFillIQKMatrix8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_ReloadADDARegisters8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_ReloadMACRegisters8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_SaveADDARegisters8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_PHY_SaveMACRegisters8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +_ReloadImg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +_ReloadImg_user_define ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +_SsiIrqHandleRtl8195a application/Debug/obj/rtl8195a_ssi.o +_SsiReadInterruptRtl8195a application/Debug/obj/rtl8195a_ssi.o +_SsiWriteInterruptRtl8195a application/Debug/obj/rtl8195a_ssi.o +_UartRxDmaIrqHandle_Patch application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +_UartTxDmaIrqHandle_Patch application/Debug/obj/rtl8195a_uart.o + application/Debug/obj/hal_uart.o +_XmRxBufGet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +__HalReInitPlatformLogUart ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__adddf3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__addsf3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__aeabi_cdcmpeq /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__aeabi_cdcmple /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__aeabi_cdrcmple /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__aeabi_cfcmpeq /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__aeabi_cfcmple /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__aeabi_cfrcmple /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__aeabi_d2f /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_truncdfsf2.o) + application/Debug/obj/shtc1.o +__aeabi_d2iz /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixdfsi.o) + application/Debug/obj/cJSON.o +__aeabi_d2uiz /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunsdfsi.o) + application/Debug/obj/dhcp.o +__aeabi_dadd /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + application/Debug/obj/cJSON.o +__aeabi_dcmpeq /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +__aeabi_dcmpge /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + application/Debug/obj/cJSON.o +__aeabi_dcmpgt /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + application/Debug/obj/cJSON.o +__aeabi_dcmple /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + application/Debug/obj/cJSON.o +__aeabi_dcmplt /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + application/Debug/obj/cJSON.o +__aeabi_ddiv /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +__aeabi_dmul /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + application/Debug/obj/shtc1.o + application/Debug/obj/cJSON.o + application/Debug/obj/dhcp.o +__aeabi_drsub /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__aeabi_dsub /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + application/Debug/obj/shtc1.o + application/Debug/obj/cJSON.o +__aeabi_f2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + application/Debug/obj/wigadget.o + application/Debug/obj/shtc1.o + application/Debug/obj/cloud_link.o + application/Debug/obj/cJSON.o +__aeabi_f2iz /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixsfsi.o) + application/Debug/obj/cJSON.o + application/Debug/obj/wait_api.o + application/Debug/obj/pwmout_api.o +__aeabi_f2uiz /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunssfsi.o) + application/Debug/obj/pwmout_api.o +__aeabi_fadd /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o +__aeabi_fcmpeq /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__aeabi_fcmpge /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__aeabi_fcmpgt /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/pwmout_api.o +__aeabi_fcmple /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__aeabi_fcmplt /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) + application/Debug/obj/pwmout_api.o +__aeabi_fdiv /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) + application/Debug/obj/pwmout_api.o + application/Debug/obj/analogin_api.o +__aeabi_fmul /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) + application/Debug/obj/wait_api.o + application/Debug/obj/pwmout_api.o +__aeabi_frsub /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__aeabi_fsub /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__aeabi_i2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + application/Debug/obj/cJSON.o +__aeabi_i2f /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) + application/Debug/obj/pwmout_api.o +__aeabi_l2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__aeabi_l2f /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__aeabi_llsr /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_lshrdi3.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +__aeabi_ui2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) + application/Debug/obj/dhcp.o +__aeabi_ui2f /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) + application/Debug/obj/shtc1.o + application/Debug/obj/pwmout_api.o + application/Debug/obj/analogin_api.o +__aeabi_ul2d /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__aeabi_ul2f /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__bss_end__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__bss_start__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__cmpdf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__cmpsf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__ctype_ptr__ /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + application/Debug/obj/cJSON.o +__divdf3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) +__divsf3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) +__eqdf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__eqsf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__errno /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +__extendsfdf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__fdlib_version /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_lib_ver.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +__fixdfsi /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixdfsi.o) +__fixsfsi /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixsfsi.o) +__fixunsdfsi /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunsdfsi.o) +__fixunssfsi /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_fixunssfsi.o) +__floatdidf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__floatdisf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__floatsidf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__floatsisf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__floatundidf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__floatundisf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__floatunsidf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__floatunsisf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__fp_lock_all /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__fp_unlock_all /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__fpclassifyd /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fpclassify.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +__gedf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__gesf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__get_IPSR application/Debug/obj/cmsis_os.o +__gettzinfo /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-gettzinfo.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) +__gtdf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__gtsf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__ieee754_pow /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +__ieee754_sqrt /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_sqrt.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) +__image1_bss_end__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__image1_bss_start__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__image2_entry_func__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__image2_validate_code__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__ledf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__lesf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__log_init_begin__ application/Debug/obj/log_service.o +__log_init_end__ application/Debug/obj/log_service.o +__low_level_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) +__lshrdi3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_lshrdi3.o) +__ltdf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__ltsf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__malloc_free_list /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) +__malloc_sbrk_start /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) +__muldf3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivdf3.o) +__mulsf3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_muldivsf3.o) +__nedf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpdf2.o) +__nesf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_cmpsf2.o) +__ram_start_table_start__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +__rom_bss_end__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__rom_bss_start__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +__rom_mallocr_init_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_align_to_be32_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_cryptoEngine_init_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_cryptoEngine_set_security_mode_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_cryptoEngine_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_crypto_cipher_decrypt_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_crypto_cipher_encrypt_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_crypto_cipher_init_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_errno ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +__rtl_fflush_r_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_memDump_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_memchr_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_memcmp_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_memcmpb_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_memcpy_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_memcpyb_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_memcpyw_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_memmove_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_memset_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_memsetb_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_memsetw_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_random_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +__rtl_strcat_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strchr_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strcmp_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strcpy_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strlen_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strncat_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strncmp_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strncpy_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strsep_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strstr_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_strtok_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__rtl_vfprintf_r_v1_00 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +__sccl /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sccl.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) +__sclose /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__sdram_bss_end__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) +__sdram_bss_start__ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) +__seofread /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) +__sf_fake_stderr /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) +__sf_fake_stdin /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) +__sf_fake_stdout /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) +__sflush_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) +__sfmoreglue /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__sfp /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__sfp_lock_acquire /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__sfp_lock_release /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__sfputs_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) +__sfvwrite_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) +__sinit /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) +__sinit_lock_acquire /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__sinit_lock_release /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__smakebuf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) +__sprint_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) +__sread /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__sseek /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__ssprint_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) +__ssputs_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) +__ssrefill_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) +__ssvfiscanf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) +__ssvfscanf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) +__stderr_name ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +__stdin_name ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +__stdout_name ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +__strtok_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) +__subdf3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubdf3.o) +__submore /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) +__subsf3 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_addsubsf3.o) +__swbuf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) +__swbuf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) +__swrite /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +__swsetup_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) +__truncdfsf2 /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/armv7-m/libgcc.a(_arm_truncdfsf2.o) +__tz_lock /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) +__tz_unlock /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzlock.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) +__tzcalc_limits /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) +__vPortFree application/Debug/obj/heap_5.o +_addba_timer_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +_binary_application_Debug_obj_ram_1_r_bin_end application/Debug/obj/ram_1.r.o +_binary_application_Debug_obj_ram_1_r_bin_size application/Debug/obj/ram_1.r.o +_binary_application_Debug_obj_ram_1_r_bin_start application/Debug/obj/ram_1.r.o +_cleanup /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +_cleanup_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) +_close /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) +_close_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) +_ctype_ /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ctype_.o) +_daylight /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) +_dynamic_check_timer_handlder ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_fflush_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) +_free_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-freer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) +_freertos_acquire_wakelock application/Debug/obj/freertos_service.o +_freertos_get_scheduler_state application/Debug/obj/freertos_service.o +_freertos_malloc application/Debug/obj/freertos_service.o +_freertos_mfree application/Debug/obj/freertos_service.o +_freertos_release_wakelock application/Debug/obj/freertos_service.o +_freertos_timerChangePeriod application/Debug/obj/freertos_service.o +_freertos_timerCreate application/Debug/obj/freertos_service.o +_freertos_timerDelete application/Debug/obj/freertos_service.o +_freertos_timerIsTimerActive application/Debug/obj/freertos_service.o +_freertos_timerStop application/Debug/obj/freertos_service.o +_freertos_wakeup_task application/Debug/obj/freertos_service.o +_freertos_zmalloc application/Debug/obj/freertos_service.o +_fstat /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) +_fstat_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) +_fwalk /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) +_fwalk_reent /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fwalk.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) +_global_impure_ptr /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) +_htonl application/Debug/obj/osdep_service.o +_htons application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +_impure_ptr /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-impure.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wsetup.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-wbuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-errno.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +_iprintf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) +_is_promisc_enabled ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + application/Debug/obj/wifi_promisc.o +_isatty /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) +_isatty_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) +_link_timer_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +_linked_info_dump ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +_linked_rx_signal_strehgth_display ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +_lseek /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) +_lseek_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) +_malloc_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-makebuf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) +_malloc_usable_size_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-msizer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) +_memcmp application/Debug/obj/uart_fw_update.o + application/Debug/obj/hal_adc.o + application/Debug/obj/sys_api.o +_memcpy ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/rtl8195a_mii.o + application/Debug/obj/hal_adc.o + application/Debug/obj/sys_api.o + application/Debug/obj/efuse_api.o + application/Debug/obj/analogin_api.o +_memset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/rtl8195a_ssi.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/hal_gdma.o + application/Debug/obj/hal_adc.o + application/Debug/obj/spi_api.o + application/Debug/obj/serial_api.o + application/Debug/obj/pwmout_api.o + application/Debug/obj/nfc_api.o + application/Debug/obj/log_uart_api.o + application/Debug/obj/efuse_api.o + application/Debug/obj/osdep_api.o + application/Debug/obj/cmsis_os.o +_mktm_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktm_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) +_netdev_if2_open ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +_netdev_open ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +_ntohl application/Debug/obj/osdep_service.o +_ntohs application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +_pHAL_Gpio_Adapter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o + application/Debug/obj/rtl8195a_gpio.o + application/Debug/obj/hal_gpio.o +_parse_integer application/Debug/obj/stdlib_patch.o +_parse_integer_fixup_radix application/Debug/obj/stdlib_patch.o +_printf_common /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) +_printf_float /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) +_printf_i /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) +_printf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) +_promisc_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + application/Debug/obj/wifi_promisc.o +_promisc_get_fixed_channel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + application/Debug/obj/wifi_promisc.o +_promisc_recv_func ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + application/Debug/obj/wifi_promisc.o +_promisc_set ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + application/Debug/obj/wifi_promisc.o +_puts_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) +_read /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) +_read_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) +_realloc_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) +_rtl_cryptoEngine ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_cryptoEngine_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_cryptoEngine_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_cryptoEngine_set_security_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_cryptoEngine_srcDesc_show ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_3des_cbc_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_3des_cbc_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_3des_cbc_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_3des_ecb_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_3des_ecb_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_3des_ecb_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_cbc_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_cbc_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_cbc_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_ctr_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_ctr_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_ctr_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_ecb_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_ecb_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_aes_ecb_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_auth_process ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_cipher_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_cipher_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_cipher_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_des_cbc_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_des_cbc_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_des_cbc_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_des_ecb_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_des_ecb_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_des_ecb_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_hmac_md5_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_hmac_sha1_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_hmac_sha2_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_md5_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_sha1_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_crypto_sha2_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +_rtl_impure_ptr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +_rtw_alloc_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_alloc_recvframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +_rtw_dequeue_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +_rtw_enqueue_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +_rtw_enqueue_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_enqueue_recvframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +_rtw_find_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_free_cmd_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +_rtw_free_evt_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +_rtw_free_mlme_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_free_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_free_network_nolock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_free_network_queue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_free_recv_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +_rtw_free_sta_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +_rtw_free_sta_xmit_priv_lock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +_rtw_free_xmit_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +_rtw_init_cmd_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +_rtw_init_evt_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +_rtw_init_mlme_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_init_recv_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +_rtw_init_sta_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +_rtw_init_sta_recv_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +_rtw_init_sta_xmit_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +_rtw_init_stainfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +_rtw_init_xmit_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +_rtw_join_timeout_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_malloc application/Debug/obj/osdep_service.o +_rtw_mfree application/Debug/obj/osdep_service.o +_rtw_observequeue_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +_rtw_open_pktfile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +_rtw_pktfile_read ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +_rtw_pwr_wakeup ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +_rtw_reordering_ctrl_timeout_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +_rtw_scan_timeout_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +_rtw_vmalloc application/Debug/obj/osdep_service.o +_rtw_vmfree application/Debug/obj/osdep_service.o +_rtw_zmalloc application/Debug/obj/osdep_service.o +_rtw_zvmalloc application/Debug/obj/osdep_service.o +_sbrk /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) +_sbrk_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-mallocr.o) +_scanf_chars /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) +_scanf_float /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) +_scanf_i /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) +_siprintf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) +_siscanf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) +_sprintf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) +_sscanf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) +_strcmp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +_strcpy application/Debug/obj/osdep_api.o +_strsep application/Debug/obj/log_service.o +_strtol_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) +_strtoul_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) +_sungetc_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) +_survey_timer_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +_svfiprintf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) +_svfprintf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) +_timezone /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) +_tzname /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-tzvars.o) +_ungetc_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) +_us_ticker_irq_handler application/Debug/obj/us_ticker.o +_vfiprintf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) +_vfprintf_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) +_write /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) +_write_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-stdio.o) +_xml_parse_doc application/Debug/obj/xml.o +acquire_wakelock application/Debug/obj/freertos_pmu.o + application/Debug/obj/freertos_service.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/rtl_consol.o + application/Debug/obj/atcmd_sys.o +add_RATid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +add_mem_usage application/Debug/obj/osdep_service.o +add_site_survey ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +add_wakeup_event application/Debug/obj/freertos_pmu.o +addba_timer_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +aes_128_cbc_info application/Debug/obj/cipher_wrap.o +aes_128_cfb128_info application/Debug/obj/cipher_wrap.o +aes_128_ctr_info application/Debug/obj/cipher_wrap.o +aes_128_ecb_info application/Debug/obj/cipher_wrap.o +aes_192_cbc_info application/Debug/obj/cipher_wrap.o +aes_192_cfb128_info application/Debug/obj/cipher_wrap.o +aes_192_ctr_info application/Debug/obj/cipher_wrap.o +aes_192_ecb_info application/Debug/obj/cipher_wrap.o +aes_256_cbc_info application/Debug/obj/cipher_wrap.o +aes_256_cfb128_info application/Debug/obj/cipher_wrap.o +aes_256_ctr_info application/Debug/obj/cipher_wrap.o +aes_256_ecb_info application/Debug/obj/cipher_wrap.o +aes_80211_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) +aes_80211_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) +aes_cbc_decrypt application/Debug/obj/wigadget.o +aes_cbc_encrypt application/Debug/obj/wigadget.o +aes_crypt_cbc application/Debug/obj/aes.o + application/Debug/obj/pem.o + application/Debug/obj/cipher_wrap.o +aes_crypt_cfb128 application/Debug/obj/aes.o + application/Debug/obj/cipher_wrap.o +aes_crypt_cfb8 application/Debug/obj/aes.o +aes_crypt_ctr application/Debug/obj/aes.o + application/Debug/obj/cipher_wrap.o +aes_crypt_ecb application/Debug/obj/aes.o + application/Debug/obj/cipher_wrap.o +aes_decrypt_key application/Debug/obj/wigadget.o +aes_encrypt_key application/Debug/obj/wigadget.o +aes_free application/Debug/obj/aes.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o + application/Debug/obj/cipher_wrap.o +aes_info application/Debug/obj/cipher_wrap.o +aes_init application/Debug/obj/wigadget.o +aes_key application/Debug/obj/wigadget.o +aes_setkey_dec application/Debug/obj/aes.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o + application/Debug/obj/cipher_wrap.o +aes_setkey_enc application/Debug/obj/aes.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/cipher_wrap.o +alloc_FwRsvdframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +alloc_etherdev ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) +alloc_mgtxmitframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +alloc_skb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +amsdu_to_msdu ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +analogin_deinit application/Debug/obj/analogin_api.o +analogin_init application/Debug/obj/analogin_api.o +analogin_read application/Debug/obj/analogin_api.o +analogin_read_u16 application/Debug/obj/analogin_api.o +ap2sta_data_frame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +ap_free_sta ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +ap_gw application/Debug/obj/atcmd_wifi.o + application/Debug/obj/lwip_netconf.o +ap_ip application/Debug/obj/atcmd_wifi.o + application/Debug/obj/lwip_netconf.o +ap_netmask application/Debug/obj/atcmd_wifi.o + application/Debug/obj/lwip_netconf.o +ap_sta_info_defer_update ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +arc4_128_info application/Debug/obj/cipher_wrap.o +arc4_base_info application/Debug/obj/cipher_wrap.o +arc4_crypt application/Debug/obj/arc4.o + application/Debug/obj/cipher_wrap.o +arc4_free application/Debug/obj/arc4.o + application/Debug/obj/cipher_wrap.o +arc4_init application/Debug/obj/arc4.o + application/Debug/obj/cipher_wrap.o +arc4_setup application/Debug/obj/arc4.o + application/Debug/obj/cipher_wrap.o +arp_timeout_exist application/Debug/obj/ethernetif.o +asn1_find_named_data application/Debug/obj/asn1parse.o +asn1_free_named_data application/Debug/obj/asn1parse.o +asn1_free_named_data_list application/Debug/obj/asn1parse.o +asn1_get_alg application/Debug/obj/asn1parse.o + application/Debug/obj/x509.o + application/Debug/obj/pkparse.o +asn1_get_alg_null application/Debug/obj/asn1parse.o + application/Debug/obj/x509.o +asn1_get_bitstring application/Debug/obj/asn1parse.o + application/Debug/obj/x509_crt.o +asn1_get_bitstring_null application/Debug/obj/asn1parse.o + application/Debug/obj/x509.o + application/Debug/obj/pkparse.o +asn1_get_bool application/Debug/obj/asn1parse.o + application/Debug/obj/x509_crt.o +asn1_get_int application/Debug/obj/asn1parse.o + application/Debug/obj/x509_crt.o + application/Debug/obj/pkparse.o +asn1_get_len application/Debug/obj/asn1parse.o + application/Debug/obj/x509_crt.o + application/Debug/obj/x509.o +asn1_get_mpi application/Debug/obj/asn1parse.o + application/Debug/obj/pkparse.o +asn1_get_sequence_of application/Debug/obj/asn1parse.o + application/Debug/obj/x509_crt.o +asn1_get_tag application/Debug/obj/asn1parse.o + application/Debug/obj/x509_crt.o + application/Debug/obj/x509.o + application/Debug/obj/rsa.o + application/Debug/obj/pkparse.o +associated_clients_update ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +at_cmd_sobj application/Debug/obj/example_uart_atcmd.o +at_log_init application/Debug/obj/log_service.o +at_log_items application/Debug/obj/log_service.o +at_set_debug_level application/Debug/obj/log_service.o + application/Debug/obj/atcmd_sys.o +at_set_debug_mask application/Debug/obj/log_service.o + application/Debug/obj/atcmd_sys.o +at_string application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +at_sys_init application/Debug/obj/atcmd_sys.o + application/Debug/obj/log_service.o +at_sys_items application/Debug/obj/atcmd_sys.o +at_transport_init application/Debug/obj/atcmd_lwip.o + application/Debug/obj/log_service.o +at_transport_items application/Debug/obj/atcmd_lwip.o +at_wifi_init application/Debug/obj/atcmd_wifi.o + application/Debug/obj/log_service.o +at_wifi_items application/Debug/obj/atcmd_wifi.o +atcmd_lwip_auto_connect application/Debug/obj/atcmd_lwip.o +atcmd_lwip_erase_info application/Debug/obj/atcmd_lwip.o +atcmd_lwip_is_autorecv_mode application/Debug/obj/atcmd_lwip.o +atcmd_lwip_is_tt_mode application/Debug/obj/atcmd_lwip.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/log_service.o +atcmd_lwip_read_info_from_flash application/Debug/obj/atcmd_lwip.o +atcmd_lwip_receive_data application/Debug/obj/atcmd_lwip.o +atcmd_lwip_restore_from_flash application/Debug/obj/atcmd_lwip.o + application/Debug/obj/example_uart_atcmd.o +atcmd_lwip_send_data application/Debug/obj/atcmd_lwip.o +atcmd_lwip_set_autorecv_mode application/Debug/obj/atcmd_lwip.o +atcmd_lwip_set_tt_mode application/Debug/obj/atcmd_lwip.o +atcmd_lwip_start_autorecv_task application/Debug/obj/atcmd_lwip.o +atcmd_lwip_start_tt_task application/Debug/obj/atcmd_lwip.o +atcmd_lwip_tt_datasize application/Debug/obj/atcmd_lwip.o + application/Debug/obj/example_uart_atcmd.o +atcmd_lwip_tt_lasttickcnt application/Debug/obj/atcmd_lwip.o + application/Debug/obj/example_uart_atcmd.o +atcmd_lwip_tt_mode application/Debug/obj/atcmd_lwip.o +atcmd_lwip_tt_sema application/Debug/obj/atcmd_lwip.o + application/Debug/obj/example_uart_atcmd.o +atcmd_lwip_tt_task application/Debug/obj/atcmd_lwip.o +atcmd_lwip_write_info_to_flash application/Debug/obj/atcmd_lwip.o +atcmd_update_partition_info application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +atcmd_wifi_read_info_from_flash application/Debug/obj/atcmd_wifi.o +atcmd_wifi_restore_from_flash application/Debug/obj/atcmd_wifi.o + application/Debug/obj/example_uart_atcmd.o +atcmd_wifi_write_info_to_flash application/Debug/obj/atcmd_wifi.o +auto_reconnect_running ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +autoip_arp_reply application/Debug/obj/autoip.o + application/Debug/obj/etharp.o +autoip_network_changed application/Debug/obj/autoip.o + application/Debug/obj/netif.o +autoip_set_struct application/Debug/obj/autoip.o +autoip_start application/Debug/obj/autoip.o + application/Debug/obj/lwip_netconf.o +autoip_stop application/Debug/obj/autoip.o +autoip_tmr application/Debug/obj/autoip.o + application/Debug/obj/lwip_timers.o +b64QamRate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) +bCheckStateTIMER ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) +backup_sc_ctx application/Debug/obj/wifi_simple_config.o +base64_decode application/Debug/obj/base64.o + application/Debug/obj/pem.o +base64_encode application/Debug/obj/base64.o +bb_reg_dump ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +block_num_check application/Debug/obj/uart_ymodem.o +bss_cap_update_on_sta_join ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +bss_cap_update_on_sta_leave ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +buf_filelen application/Debug/obj/uart_ymodem.o +cJSON_AddItemReferenceToArray application/Debug/obj/cJSON.o +cJSON_AddItemReferenceToObject application/Debug/obj/cJSON.o +cJSON_AddItemToArray application/Debug/obj/cJSON.o +cJSON_AddItemToObject application/Debug/obj/cJSON.o + application/Debug/obj/wigadget.o +cJSON_CreateArray application/Debug/obj/cJSON.o +cJSON_CreateBool application/Debug/obj/cJSON.o +cJSON_CreateDoubleArray application/Debug/obj/cJSON.o +cJSON_CreateFalse application/Debug/obj/cJSON.o +cJSON_CreateFloatArray application/Debug/obj/cJSON.o +cJSON_CreateIntArray application/Debug/obj/cJSON.o +cJSON_CreateNull application/Debug/obj/cJSON.o +cJSON_CreateNumber application/Debug/obj/cJSON.o +cJSON_CreateObject application/Debug/obj/cJSON.o + application/Debug/obj/wigadget.o +cJSON_CreateString application/Debug/obj/cJSON.o + application/Debug/obj/wigadget.o +cJSON_CreateStringArray application/Debug/obj/cJSON.o +cJSON_CreateTrue application/Debug/obj/cJSON.o +cJSON_Delete application/Debug/obj/cJSON.o + application/Debug/obj/wigadget.o +cJSON_DeleteItemFromArray application/Debug/obj/cJSON.o +cJSON_DeleteItemFromObject application/Debug/obj/cJSON.o +cJSON_DetachItemFromArray application/Debug/obj/cJSON.o +cJSON_DetachItemFromObject application/Debug/obj/cJSON.o +cJSON_Duplicate application/Debug/obj/cJSON.o +cJSON_GetArrayItem application/Debug/obj/cJSON.o +cJSON_GetArraySize application/Debug/obj/cJSON.o +cJSON_GetErrorPtr application/Debug/obj/cJSON.o +cJSON_GetObjectItem application/Debug/obj/cJSON.o +cJSON_InitHooks application/Debug/obj/cJSON.o + application/Debug/obj/wigadget.o +cJSON_Minify application/Debug/obj/cJSON.o +cJSON_Parse application/Debug/obj/cJSON.o +cJSON_ParseWithOpts application/Debug/obj/cJSON.o +cJSON_Print application/Debug/obj/cJSON.o + application/Debug/obj/wigadget.o +cJSON_PrintUnformatted application/Debug/obj/cJSON.o +cJSON_ReplaceItemInArray application/Debug/obj/cJSON.o +cJSON_ReplaceItemInObject application/Debug/obj/cJSON.o +calc_file_name_size application/Debug/obj/uart_ymodem.o +calloc_freertos application/Debug/obj/cmsis_os.o +cancel_timer_ex ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +cckrates_included ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +cckratesonly_included ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +check_assoc_AP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +check_buddy_fwstate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +check_buddy_mlmeinfo_state ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +check_indicate_seq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +check_tx_desc_resource ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +chk_sta_is_alive ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +cipher_crypt application/Debug/obj/cipher.o + application/Debug/obj/ssl_tls.o +cipher_definitions application/Debug/obj/cipher_wrap.o + application/Debug/obj/cipher.o +cipher_finish application/Debug/obj/cipher.o +cipher_free application/Debug/obj/cipher.o + application/Debug/obj/ssl_tls.o +cipher_free_ctx application/Debug/obj/cipher.o +cipher_info_from_string application/Debug/obj/cipher.o +cipher_info_from_type application/Debug/obj/cipher.o + application/Debug/obj/ssl_tls.o +cipher_info_from_values application/Debug/obj/cipher.o +cipher_init application/Debug/obj/cipher.o + application/Debug/obj/ssl_tls.o +cipher_init_ctx application/Debug/obj/cipher.o + application/Debug/obj/ssl_tls.o +cipher_list application/Debug/obj/cipher.o +cipher_reset application/Debug/obj/cipher.o +cipher_set_iv application/Debug/obj/cipher.o +cipher_set_padding_mode application/Debug/obj/cipher.o + application/Debug/obj/ssl_tls.o +cipher_setkey application/Debug/obj/cipher.o + application/Debug/obj/ssl_tls.o +cipher_update application/Debug/obj/cipher.o +clear_cam_entry ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +cli application/Debug/obj/freertos_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +cloud_link_task application/Debug/obj/cloud_link.o +clust2sect application/Debug/obj/ff.o +cmd_ota_image application/Debug/obj/update.o + application/Debug/obj/atcmd_sys.o +cmd_ping application/Debug/obj/ping_test.o +cmd_promisc application/Debug/obj/wifi_promisc.o +cmd_simple_config application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_wifi.o +cmd_ssl_client application/Debug/obj/ssl_client.o +cmd_tcp application/Debug/obj/tcptest.o +cmd_uart_adapter application/Debug/obj/uart_adapter.o +cmd_udp application/Debug/obj/tcptest.o +cmd_update application/Debug/obj/update.o + application/Debug/obj/atcmd_sys.o +collect_bss_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +concurrent_chk_joinbss_done ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +concurrent_chk_start_clnt_join ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +console_cmd_exec application/Debug/obj/rtl_consol.o +console_init application/Debug/obj/rtl_consol.o + application/Debug/obj/main.o +copysign /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_copysign.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) +correct_TSF ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +count_rx_stats ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +crc_check application/Debug/obj/uart_ymodem.o +create_node application/Debug/obj/atcmd_lwip.o +current_header application/Debug/obj/ip.o +current_iphdr_dest application/Debug/obj/ip.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_in.o + application/Debug/obj/raw.o + application/Debug/obj/icmp.o +current_iphdr_src application/Debug/obj/ip.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_in.o + application/Debug/obj/raw.o + application/Debug/obj/icmp.o + application/Debug/obj/api_msg.o +current_netif application/Debug/obj/ip.o +curve25519_donna application/Debug/obj/wigadget.o +cus_sig application/Debug/obj/update.o +dB_Invert_Table ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +data_write_to_flash application/Debug/obj/uart_ymodem.o +decide_chip_type_by_device_id ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +decide_wait_for_beacon_timeout ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +decrypt_data_aes application/Debug/obj/wigadget.o +decryptor ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +deepsleep_ex application/Debug/obj/sleep.o +deepstandby_ex application/Debug/obj/sleep.o +deinit_mem_monitor application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +deinit_test_data application/Debug/obj/wifi_simple_config.o +deinit_timer_wrapper ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +del_mem_usage application/Debug/obj/osdep_service.o +del_timer_sync ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +del_wakeup_event application/Debug/obj/freertos_pmu.o +delete_node application/Debug/obj/atcmd_lwip.o +dev_alloc_name ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +dev_alloc_skb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +device_mutex_lock application/Debug/obj/device_lock.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/sys_api.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +device_mutex_unlock application/Debug/obj/device_lock.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/sys_api.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +dhcp_arp_reply application/Debug/obj/dhcp.o + application/Debug/obj/etharp.o +dhcp_cleanup application/Debug/obj/dhcp.o +dhcp_coarse_tmr application/Debug/obj/dhcp.o + application/Debug/obj/lwip_timers.o + application/Debug/obj/lwip_netconf.o +dhcp_ethernet_mii application/Debug/obj/ethernet_mii.o +dhcp_fine_tmr application/Debug/obj/dhcp.o + application/Debug/obj/lwip_timers.o + application/Debug/obj/lwip_netconf.o +dhcp_inform application/Debug/obj/dhcp.o +dhcp_mode_ap application/Debug/obj/atcmd_wifi.o +dhcp_mode_sta application/Debug/obj/atcmd_wifi.o + application/Debug/obj/wifi_conf.o +dhcp_network_changed application/Debug/obj/dhcp.o + application/Debug/obj/netif.o +dhcp_release application/Debug/obj/dhcp.o +dhcp_release_unicast application/Debug/obj/dhcp.o + application/Debug/obj/lwip_netconf.o +dhcp_renew application/Debug/obj/dhcp.o +dhcp_rx_options_given application/Debug/obj/dhcp.o +dhcp_rx_options_val application/Debug/obj/dhcp.o +dhcp_set_struct application/Debug/obj/dhcp.o +dhcp_start application/Debug/obj/dhcp.o + application/Debug/obj/lwip_netconf.o +dhcp_start_mii application/Debug/obj/ethernet_mii.o +dhcp_stop application/Debug/obj/dhcp.o + application/Debug/obj/lwip_netconf.o +dhcps_deinit application/Debug/obj/dhcps.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +dhcps_handle_state_machine_change application/Debug/obj/dhcps.o +dhcps_init application/Debug/obj/dhcps.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +dhcps_set_addr_pool application/Debug/obj/dhcps.o + application/Debug/obj/atcmd_wifi.o +disconnect_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +disk application/Debug/obj/ff_driver.o + application/Debug/obj/diskio.o +disk_initialize application/Debug/obj/diskio.o + application/Debug/obj/ff.o +disk_ioctl application/Debug/obj/diskio.o + application/Debug/obj/ff.o +disk_read application/Debug/obj/diskio.o + application/Debug/obj/ff.o +disk_status application/Debug/obj/diskio.o + application/Debug/obj/ff.o +disk_write application/Debug/obj/diskio.o + application/Debug/obj/ff.o +div /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-div.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) +div_s64 application/Debug/obj/stdlib_patch.o +div_u64 application/Debug/obj/stdlib_patch.o +dma_memcpy application/Debug/obj/dma_api.o +dma_memcpy_aggr application/Debug/obj/dma_api.o +dma_memcpy_aggr_init application/Debug/obj/dma_api.o +dma_memcpy_deinit application/Debug/obj/dma_api.o +dma_memcpy_init application/Debug/obj/dma_api.o +dns_gethostbyname application/Debug/obj/dns.o + application/Debug/obj/sntp.o + application/Debug/obj/api_msg.o +dns_getserver application/Debug/obj/dns.o + application/Debug/obj/lwip_netconf.o +dns_init application/Debug/obj/dns.o + application/Debug/obj/init.o +dns_setserver application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/lwip_netconf.o +dns_tmr application/Debug/obj/dns.o + application/Debug/obj/lwip_timers.o +do_bind application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_close application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_connect application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_delconn application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_disconnect application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_getaddr application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_gethostbyname application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_join_leave_group application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_listen application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_newconn application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_ping_call application/Debug/obj/ping_test.o + application/Debug/obj/atcmd_lwip.o +do_ping_test application/Debug/obj/ping_test.o +do_recv application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_send application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +do_ssl_connect application/Debug/obj/ssl_client.o +do_write application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +dump_chip_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) +dump_mem_block_list application/Debug/obj/heap_5.o +dump_mgntframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +dynamic_chk_wk_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +eTaskConfirmSleepModeStatus application/Debug/obj/tasks.o + application/Debug/obj/port.o +eap_autoreconnect_hdl application/Debug/obj/wifi_eap_config.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +eap_ca_cert application/Debug/obj/wifi_eap_config.o +eap_cert_init application/Debug/obj/wifi_eap_config.o +eap_cert_setup application/Debug/obj/wifi_eap_config.o +eap_client_cert application/Debug/obj/wifi_eap_config.o +eap_client_cert_free application/Debug/obj/wifi_eap_config.o +eap_client_key application/Debug/obj/wifi_eap_config.o +eap_client_key_pwd application/Debug/obj/wifi_eap_config.o +eap_disconnected_hdl application/Debug/obj/wifi_eap_config.o +eap_eapol_recvd_hdl application/Debug/obj/wifi_eap_config.o +eap_identity application/Debug/obj/wifi_eap_config.o +eap_method application/Debug/obj/wifi_eap_config.o +eap_password application/Debug/obj/wifi_eap_config.o +eap_peer_unregister_methods application/Debug/obj/wifi_eap_config.o +eap_phase application/Debug/obj/wifi_eap_config.o +eap_server_cert_free application/Debug/obj/wifi_eap_config.o +eap_sm_deinit application/Debug/obj/wifi_eap_config.o +eap_start application/Debug/obj/wifi_eap_config.o +eap_target_ssid application/Debug/obj/wifi_eap_config.o +eap_wsc_server_process_hdl application/Debug/obj/wifi_wps_config.o +eap_wsc_server_reset application/Debug/obj/wifi_wps_config.o +efuse_GetCurrentSize ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +efuse_OneByteRead ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +efuse_OneByteWrite ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +efuse_WordEnableDataRead ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +efuse_disable_jtag application/Debug/obj/efuse_api.o +efuse_get_remaining_length application/Debug/obj/efuse_api.o +efuse_map_mask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +efuse_mtp_read application/Debug/obj/efuse_api.o +efuse_mtp_write application/Debug/obj/efuse_api.o +efuse_otp_read application/Debug/obj/efuse_api.o +efuse_otp_write application/Debug/obj/efuse_api.o +enable_rate_adaptive ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +encrypt_data_aes application/Debug/obj/wigadget.o +end /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +enqueue_reorder_recvframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +eqNByte ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) +errno application/Debug/obj/atcmd_lwip.o + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(write.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(sbrk.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(read.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(lseek.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(isatty.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(fstat.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libnosys.a(close.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-isattyr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fstatr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-readr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lseekr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-closer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-writer.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sbrkr.o) + application/Debug/obj/net.o + application/Debug/obj/sockets.o +error_flag application/Debug/obj/wifi_conf.o + application/Debug/obj/lwip_netconf.o +error_strerror application/Debug/obj/error.o +etharp_cleanup_netif application/Debug/obj/etharp.o + application/Debug/obj/netif.o +etharp_find_addr application/Debug/obj/etharp.o +etharp_output application/Debug/obj/etharp.o + application/Debug/obj/ethernetif.o +etharp_query application/Debug/obj/etharp.o + application/Debug/obj/dhcp.o +etharp_raw application/Debug/obj/etharp.o + application/Debug/obj/autoip.o +etharp_request application/Debug/obj/etharp.o + application/Debug/obj/netif.o +etharp_tmr application/Debug/obj/etharp.o + application/Debug/obj/ethernetif.o + application/Debug/obj/lwip_timers.o +ethbroadcast application/Debug/obj/etharp.o + application/Debug/obj/autoip.o +ethernet_address application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernet_demo application/Debug/obj/ethernet_mii.o +ethernet_free application/Debug/obj/ethernet_api.o +ethernet_if_default application/Debug/obj/ethernet_mii.o +ethernet_init application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernet_input application/Debug/obj/etharp.o + application/Debug/obj/tcpip.o +ethernet_irq_hook application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernet_link application/Debug/obj/ethernet_api.o +ethernet_mii_init application/Debug/obj/ethernet_mii.o +ethernet_read application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernet_receive application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernet_send application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernet_set_descnum application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernet_set_link application/Debug/obj/ethernet_api.o +ethernet_trx_pre_setting application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernet_write application/Debug/obj/ethernet_api.o + application/Debug/obj/ethernet_mii.o +ethernetif_init application/Debug/obj/ethernetif.o + application/Debug/obj/lwip_netconf.o +ethernetif_mii_init application/Debug/obj/ethernetif.o +ethernetif_mii_recv application/Debug/obj/ethernetif.o + application/Debug/obj/ethernet_mii.o +ethernetif_recv application/Debug/obj/ethernetif.o + application/Debug/obj/lwip_intf.o +ethzero application/Debug/obj/etharp.o + application/Debug/obj/autoip.o +example_entry application/Debug/obj/example_entry.o + application/Debug/obj/main.o +example_shtc1 application/Debug/obj/shtc1.o +example_uart_adapter_init application/Debug/obj/uart_adapter.o +example_uart_atcmd application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/example_entry.o +example_wigadget application/Debug/obj/wigadget.o +expire_timeout_chk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +fATP0 application/Debug/obj/atcmd_lwip.o +fATPA application/Debug/obj/atcmd_wifi.o +fATPC application/Debug/obj/atcmd_lwip.o +fATPD application/Debug/obj/atcmd_lwip.o +fATPE application/Debug/obj/atcmd_wifi.o +fATPF application/Debug/obj/atcmd_wifi.o +fATPG application/Debug/obj/atcmd_wifi.o +fATPH application/Debug/obj/atcmd_wifi.o +fATPI application/Debug/obj/atcmd_lwip.o +fATPK application/Debug/obj/atcmd_lwip.o +fATPL application/Debug/obj/atcmd_lwip.o +fATPM application/Debug/obj/atcmd_wifi.o +fATPN application/Debug/obj/atcmd_wifi.o +fATPP application/Debug/obj/atcmd_lwip.o +fATPR application/Debug/obj/atcmd_lwip.o +fATPS application/Debug/obj/atcmd_lwip.o +fATPT application/Debug/obj/atcmd_lwip.o +fATPU application/Debug/obj/atcmd_lwip.o +fATPW application/Debug/obj/atcmd_wifi.o +fATS0 application/Debug/obj/atcmd_sys.o +fATSC application/Debug/obj/atcmd_sys.o +fATSE application/Debug/obj/atcmd_sys.o +fATSG application/Debug/obj/atcmd_sys.o +fATSL application/Debug/obj/atcmd_sys.o +fATSO application/Debug/obj/atcmd_sys.o +fATSP application/Debug/obj/atcmd_sys.o +fATSR application/Debug/obj/atcmd_sys.o +fATSU application/Debug/obj/atcmd_sys.o +fATSV application/Debug/obj/atcmd_sys.o +fATSY application/Debug/obj/atcmd_sys.o +fATSh application/Debug/obj/atcmd_sys.o +fATWD application/Debug/obj/atcmd_wifi.o +fATWQ application/Debug/obj/atcmd_wifi.o +fATWS application/Debug/obj/atcmd_wifi.o +fATWx application/Debug/obj/atcmd_wifi.o +fAT_exit application/Debug/obj/log_service.o +f_chmod application/Debug/obj/ff.o +f_close application/Debug/obj/ff.o +f_closedir application/Debug/obj/ff.o +f_getfree application/Debug/obj/ff.o +f_lseek application/Debug/obj/ff.o +f_mkdir application/Debug/obj/ff.o +f_mount application/Debug/obj/ff.o +f_open application/Debug/obj/ff.o +f_opendir application/Debug/obj/ff.o +f_read application/Debug/obj/ff.o +f_readdir application/Debug/obj/ff.o +f_rename application/Debug/obj/ff.o +f_stat application/Debug/obj/ff.o +f_sync application/Debug/obj/ff.o +f_truncate application/Debug/obj/ff.o +f_unlink application/Debug/obj/ff.o +f_utime application/Debug/obj/ff.o +f_write application/Debug/obj/ff.o +fabs /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_fabs.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) +features application/Debug/obj/version_features.o +ff_convert application/Debug/obj/ccsbcs.o + application/Debug/obj/ff.o +ff_wtoupper application/Debug/obj/ccsbcs.o + application/Debug/obj/ff.o +fflush /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fflush.o) +filter_add_enable application/Debug/obj/wifi_simple_config.o + application/Debug/obj/uart_adapter.o +finite /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_finite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +fixed_channel_num application/Debug/obj/wifi_simple_config.o +flash_burst_read application/Debug/obj/flash_api.o +flash_burst_write application/Debug/obj/flash_api.o +flash_erase_block application/Debug/obj/flash_api.o +flash_erase_sector application/Debug/obj/flash_api.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + application/Debug/obj/wigadget.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/sys_api.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +flash_get_extend_addr application/Debug/obj/flash_api.o +flash_get_status application/Debug/obj/flash_api.o +flash_map_mask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +flash_read_word application/Debug/obj/flash_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +flash_reset_status application/Debug/obj/flash_api.o +flash_set_extend_addr application/Debug/obj/flash_api.o +flash_set_status application/Debug/obj/flash_api.o +flash_stream_read application/Debug/obj/flash_api.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/sys_api.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o +flash_stream_write application/Debug/obj/flash_api.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + application/Debug/obj/wigadget.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/sys_api.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o +flash_write_protect application/Debug/obj/flash_api.o +flash_write_word application/Debug/obj/flash_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +floor /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_floor.o) + application/Debug/obj/cJSON.o +flush_all_cam_entry ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +flush_signals_thread application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +free /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + application/Debug/obj/cJSON.o +free_mlme_ap_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +free_mlme_ext_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +free_netdev ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) +freertos_post_sleep_processing application/Debug/obj/freertos_pmu.o + application/Debug/obj/port.o +freertos_pre_sleep_processing application/Debug/obj/freertos_pmu.o + application/Debug/obj/port.o +freertos_ready_to_sleep application/Debug/obj/freertos_pmu.o + application/Debug/obj/tasks.o +gAT_Echo application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_sys.o +gBoot_Gpio_Adapter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/uart_fw_update.o +gDbgFlag application/Debug/obj/log_service.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +gDbgLevel application/Debug/obj/log_service.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_QFN48_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_QFN56_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_TFBGA96_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_QFN48_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_QFN56_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_TFBGA96_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_QFN48_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_QFN56_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_TFBGA96_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_QFN48_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_QFN56_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_TFBGA96_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableXtal_MP_N_TxXtalTrack_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gDeltaSwingTableXtal_MP_P_TxXtalTrack_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +gHAL_Gpio_Adapter application/Debug/obj/hal_gpio.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +gImage2EntryFun0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +gRamPatchFun0 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +gRamPatchFun1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +gRamPatchFun2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +gRamPatchWAKE ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +gRamStartFun ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +gTimerRecord application/Debug/obj/rtl8195a_timer.o +g_bssid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/wifi_simple_config.o +g_security_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/wifi_simple_config.o +g_spdio_priv application/Debug/obj/spdio_api.o +g_ssid application/Debug/obj/wifi_simple_config.o +g_ssid_len application/Debug/obj/wifi_simple_config.o +g_tcp_client_task application/Debug/obj/tcptest.o +g_tcp_server_task application/Debug/obj/tcptest.o +g_tcp_terminate application/Debug/obj/tcptest.o +g_udp_client_task application/Debug/obj/tcptest.o +g_udp_server_task application/Debug/obj/tcptest.o +g_udp_terminate application/Debug/obj/tcptest.o +g_user_ap_sta_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +gen_json_data application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o +getIGIForDiff ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +getSwingIndex ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) +get_beacon_interval ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +get_channel_flag ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/wifi_simple_config.o +get_connection_info_from_profile application/Debug/obj/wifi_simple_config.o +get_eap_method application/Debug/obj/wifi_eap_config.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +get_eap_phase application/Debug/obj/wifi_eap_config.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +get_fat application/Debug/obj/ff.o +get_fattime application/Debug/obj/diskio.o + application/Debug/obj/ff.o +get_highest_rate_idx ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +get_my_bssid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +get_rate_set ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +get_txdesc_buf_addr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +get_wakelock_status application/Debug/obj/freertos_pmu.o + application/Debug/obj/atcmd_sys.o +gn_close ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/cloud_link.o +gn_connect ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/cloud_link.o +gn_delete ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) +gn_free ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) +gn_get ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) +gn_patch ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) +gn_post ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) +gn_put ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/cloud_link.o +gn_stream ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) +google_retrieve_data_hook_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) +gpio_change_dir application/Debug/obj/gpio_api.o +gpio_deinit application/Debug/obj/gpio_api.o +gpio_dir application/Debug/obj/gpio_api.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_sys.o +gpio_direct_write application/Debug/obj/gpio_api.o +gpio_init application/Debug/obj/gpio_api.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_sys.o +gpio_irq_deinit application/Debug/obj/gpio_irq_api.o +gpio_irq_disable application/Debug/obj/gpio_irq_api.o +gpio_irq_enable application/Debug/obj/gpio_irq_api.o + application/Debug/obj/wigadget.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_adapter.o +gpio_irq_free application/Debug/obj/gpio_irq_api.o +gpio_irq_init application/Debug/obj/gpio_irq_api.o + application/Debug/obj/wigadget.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_adapter.o +gpio_irq_pull_ctrl application/Debug/obj/gpio_irq_api.o +gpio_irq_set application/Debug/obj/gpio_irq_api.o + application/Debug/obj/wigadget.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_adapter.o +gpio_irq_set_event application/Debug/obj/gpio_irq_api.o +gpio_mode application/Debug/obj/gpio_api.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_sys.o +gpio_pull_ctrl application/Debug/obj/gpio_api.o +gpio_read application/Debug/obj/gpio_api.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_sys.o +gpio_rx_wake application/Debug/obj/uart_adapter.o +gpio_set application/Debug/obj/gpio_api.o + application/Debug/obj/atcmd_sys.o +gpio_set_hal_pin_mode application/Debug/obj/gpio_api.o +gpio_uart_at_rx_irq_callback application/Debug/obj/example_uart_atcmd.o +gpio_write application/Debug/obj/gpio_api.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_sys.o +gtimer_deinit application/Debug/obj/timer_api.o + application/Debug/obj/rtc_api.o +gtimer_init application/Debug/obj/timer_api.o + application/Debug/obj/rtc_api.o + application/Debug/obj/uart_adapter.o +gtimer_read_tick application/Debug/obj/timer_api.o +gtimer_read_us application/Debug/obj/timer_api.o +gtimer_reload application/Debug/obj/timer_api.o +gtimer_start application/Debug/obj/timer_api.o + application/Debug/obj/rtc_api.o +gtimer_start_one_shout application/Debug/obj/timer_api.o +gtimer_start_periodical application/Debug/obj/timer_api.o + application/Debug/obj/rtc_api.o + application/Debug/obj/uart_adapter.o +gtimer_stop application/Debug/obj/timer_api.o + application/Debug/obj/rtc_api.o + application/Debug/obj/uart_adapter.o +h_errno application/Debug/obj/netdb.o +hal_com_get_channel_plan ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +hal_init_macaddr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +hang_node application/Debug/obj/atcmd_lwip.o +hang_seednode application/Debug/obj/atcmd_lwip.o +hash_index application/Debug/obj/log_service.o +hci_dvobj_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +hci_dvobj_free_irq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +hci_dvobj_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +hci_dvobj_request_irq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +hci_lxbus_dvobj_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) +hci_lxbus_dvobj_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) +hci_lxbus_dvobj_request_irq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) +hci_lxbus_free_irq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) +hci_lxbus_intf_stop ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +hci_ops ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hci_intfs.o) +http_free application/Debug/obj/http_client.o +http_get_header application/Debug/obj/http_client.o +http_post_header application/Debug/obj/http_client.o +http_response_body application/Debug/obj/http_client.o +http_response_header application/Debug/obj/http_client.o +http_strstr application/Debug/obj/http_client.o +hw_var_port_switch ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) +i2c_byte_read application/Debug/obj/i2c_api.o +i2c_byte_write application/Debug/obj/i2c_api.o +i2c_clear_user_callback application/Debug/obj/i2c_api.o +i2c_enable_control application/Debug/obj/i2c_api.o +i2c_frequency application/Debug/obj/i2c_api.o + application/Debug/obj/shtc1.o +i2c_init application/Debug/obj/i2c_api.o + application/Debug/obj/shtc1.o +i2c_read application/Debug/obj/i2c_api.o + application/Debug/obj/shtc1.o +i2c_reset application/Debug/obj/i2c_api.o +i2c_restart_disable application/Debug/obj/i2c_api.o +i2c_restart_enable application/Debug/obj/i2c_api.o +i2c_set_user_callback application/Debug/obj/i2c_api.o +i2c_slave_address application/Debug/obj/i2c_api.o +i2c_slave_mode application/Debug/obj/i2c_api.o +i2c_slave_read application/Debug/obj/i2c_api.o +i2c_slave_receive application/Debug/obj/i2c_api.o +i2c_slave_set_for_data_nak application/Debug/obj/i2c_api.o +i2c_slave_set_for_rd_req application/Debug/obj/i2c_api.o +i2c_slave_write application/Debug/obj/i2c_api.o +i2c_start application/Debug/obj/i2c_api.o +i2c_stop application/Debug/obj/i2c_api.o +i2c_write application/Debug/obj/i2c_api.o + application/Debug/obj/shtc1.o +i2s_deinit application/Debug/obj/i2s_api.o +i2s_disable application/Debug/obj/i2s_api.o +i2s_enable application/Debug/obj/i2s_api.o +i2s_get_tx_page application/Debug/obj/i2s_api.o +i2s_init application/Debug/obj/i2s_api.o +i2s_recv_page application/Debug/obj/i2s_api.o +i2s_rx_irq_handler application/Debug/obj/i2s_api.o +i2s_send_page application/Debug/obj/i2s_api.o +i2s_set_direction application/Debug/obj/i2s_api.o +i2s_set_dma_buffer application/Debug/obj/i2s_api.o +i2s_set_param application/Debug/obj/i2s_api.o +i2s_tx_irq_handler application/Debug/obj/i2s_api.o +icmp_dest_unreach application/Debug/obj/icmp.o + application/Debug/obj/udp.o + application/Debug/obj/ip.o +icmp_input application/Debug/obj/icmp.o + application/Debug/obj/ip.o +icmp_time_exceeded application/Debug/obj/icmp.o + application/Debug/obj/ip_frag.o +if2name ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +ifname ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +igmp_dump_group_list application/Debug/obj/igmp.o +igmp_init application/Debug/obj/igmp.o + application/Debug/obj/init.o +igmp_input application/Debug/obj/igmp.o + application/Debug/obj/ip.o +igmp_joingroup application/Debug/obj/igmp.o + application/Debug/obj/sockets.o + application/Debug/obj/api_msg.o +igmp_leavegroup application/Debug/obj/igmp.o + application/Debug/obj/sockets.o + application/Debug/obj/api_msg.o +igmp_lookfor_group application/Debug/obj/igmp.o + application/Debug/obj/ip.o +igmp_report_groups application/Debug/obj/igmp.o + application/Debug/obj/netif.o +igmp_start application/Debug/obj/igmp.o + application/Debug/obj/netif.o +igmp_stop application/Debug/obj/igmp.o + application/Debug/obj/netif.o +igmp_tmr application/Debug/obj/igmp.o + application/Debug/obj/lwip_timers.o +indicate_wx_custom_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +indicate_wx_scan_complete_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +indicate_wx_scan_result_present ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +inet_chksum application/Debug/obj/inet_chksum.o + application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o + application/Debug/obj/igmp.o + application/Debug/obj/icmp.o + application/Debug/obj/ping_test.o +inet_chksum_pbuf application/Debug/obj/inet_chksum.o + application/Debug/obj/icmp.o +inet_chksum_pseudo application/Debug/obj/inet_chksum.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o +inet_chksum_pseudo_partial application/Debug/obj/inet_chksum.o +init_addba_retry_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +init_channel_set ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +init_event_callback_list application/Debug/obj/wifi_ind.o + application/Debug/obj/wifi_conf.o +init_hw_mlme_ext ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +init_mem_monitor application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +init_mlme_ap_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +init_mlme_ext_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +init_mlme_ext_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +init_node_pool application/Debug/obj/atcmd_lwip.o +init_rom_libgloss_ram_map ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +init_rom_wlan_ram_map ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +init_simple_config_lib_config application/Debug/obj/wifi_simple_config.o +init_skb_data_pool ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +init_skb_pool ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +init_test_data application/Debug/obj/wifi_simple_config.o + application/Debug/obj/uart_adapter.o +init_thread application/Debug/obj/wlan_network.o +init_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +init_timer_wrapper ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +init_wpa_sta_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +invalidate_cam_all ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +iot_flash application/Debug/obj/wigadget.o +iotapp_platform_reset application/Debug/obj/wigadget.o +iotapp_reset_irq_handler application/Debug/obj/wigadget.o +ip4_addr_isbroadcast application/Debug/obj/ip_addr.o + application/Debug/obj/lwip_intf.o + application/Debug/obj/etharp.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_in.o + application/Debug/obj/ip.o + application/Debug/obj/icmp.o +ip4_addr_netmask_valid application/Debug/obj/ip_addr.o +ip_addr_any application/Debug/obj/ip_addr.o + application/Debug/obj/dhcps.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/igmp.o + application/Debug/obj/autoip.o +ip_addr_broadcast application/Debug/obj/ip_addr.o + application/Debug/obj/dhcp.o +ip_frag application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o +ip_input application/Debug/obj/ip.o + application/Debug/obj/etharp.o + application/Debug/obj/tcpip.o +ip_output application/Debug/obj/ip.o + application/Debug/obj/tcp_out.o + application/Debug/obj/icmp.o +ip_output_if application/Debug/obj/ip.o + application/Debug/obj/udp.o + application/Debug/obj/raw.o + application/Debug/obj/icmp.o +ip_output_if_opt application/Debug/obj/ip.o + application/Debug/obj/igmp.o +ip_reass application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o +ip_reass_tmr application/Debug/obj/ip_frag.o + application/Debug/obj/lwip_timers.o +ip_route application/Debug/obj/ip.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp.o + application/Debug/obj/raw.o +ipaddr_addr application/Debug/obj/ip_addr.o + application/Debug/obj/mDNSPlatform.o + application/Debug/obj/dns.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +ipaddr_aton application/Debug/obj/ip_addr.o + application/Debug/obj/atcmd_lwip.o +ipaddr_ntoa application/Debug/obj/ip_addr.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/ping_test.o + application/Debug/obj/atcmd_lwip.o +ipaddr_ntoa_r application/Debug/obj/ip_addr.o + application/Debug/obj/atcmd_lwip.o +iprintf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) +ips_enter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +ips_leave ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +is_IBSS_empty ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +is_ap_in_tkip ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +is_basicrate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +is_broadcast_ether_addr application/Debug/obj/wifi_util.o +is_client_associated_to_ap ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +is_client_associated_to_ibss ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +is_promisc_callback_unlock application/Debug/obj/wifi_simple_config.o +is_promisc_enabled application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o +is_same_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +issue_action_BA ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +issue_asocrsp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +issue_assocreq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +issue_auth ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +issue_beacon ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +issue_deauth ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +issue_nulldata ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +issue_probereq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +issue_probersp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +issue_qos_nulldata ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +iw_ioctl application/Debug/obj/wifi_util.o +join_cmd_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +judge_network_type ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +judge_station_disconnect application/Debug/obj/wifi_eap_config.o +key_2char2num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/atcmd_wifi.o +kfree_skb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +kfree_skb_chk_key ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +km_parser application/Debug/obj/tcptest.o +lextra_bus_dma_Interrupt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) +link_timer_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +linked_status_chk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +local_link application/Debug/obj/wigadget.o +localtime /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + application/Debug/obj/rtc_api.o + application/Debug/obj/sntp.o +localtime_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime_r.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) +log_action application/Debug/obj/log_service.o +log_add_new_command application/Debug/obj/log_service.o +log_buf application/Debug/obj/log_service.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/rtl_consol.o + application/Debug/obj/atcmd_lwip.o +log_handler application/Debug/obj/log_service.o +log_hash application/Debug/obj/log_service.o +log_init_table application/Debug/obj/log_service.o +log_rx_interrupt_sema application/Debug/obj/log_service.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/rtl_consol.o +log_service application/Debug/obj/log_service.o +log_service_add_table application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +log_service_init application/Debug/obj/log_service.o + application/Debug/obj/rtl_consol.o +log_service_lock application/Debug/obj/log_service.o + application/Debug/obj/atcmd_lwip.o +log_service_lock_init application/Debug/obj/log_service.o +log_service_lock_timeout application/Debug/obj/log_service.o +log_service_sema application/Debug/obj/log_service.o +log_service_unlock application/Debug/obj/log_service.o + application/Debug/obj/atcmd_lwip.o +log_uart_baud application/Debug/obj/log_uart_api.o +log_uart_break_clear application/Debug/obj/log_uart_api.o +log_uart_break_set application/Debug/obj/log_uart_api.o +log_uart_clear application/Debug/obj/log_uart_api.o +log_uart_clear_rx application/Debug/obj/log_uart_api.o +log_uart_clear_tx application/Debug/obj/log_uart_api.o +log_uart_disable application/Debug/obj/log_uart_api.o +log_uart_enable application/Debug/obj/log_uart_api.o +log_uart_format application/Debug/obj/log_uart_api.o +log_uart_free application/Debug/obj/log_uart_api.o +log_uart_getc application/Debug/obj/log_uart_api.o +log_uart_init application/Debug/obj/log_uart_api.o +log_uart_irq_handler application/Debug/obj/log_uart_api.o +log_uart_irq_set application/Debug/obj/log_uart_api.o +log_uart_line_status_handler application/Debug/obj/log_uart_api.o +log_uart_putc application/Debug/obj/log_uart_api.o +log_uart_raed_lsr application/Debug/obj/log_uart_api.o +log_uart_raed_msr application/Debug/obj/log_uart_api.o +log_uart_readable application/Debug/obj/log_uart_api.o +log_uart_recv application/Debug/obj/log_uart_api.o +log_uart_recv_stream application/Debug/obj/log_uart_api.o +log_uart_recv_stream_abort application/Debug/obj/log_uart_api.o +log_uart_recv_stream_timeout application/Debug/obj/log_uart_api.o +log_uart_rx_comp_handler application/Debug/obj/log_uart_api.o +log_uart_send application/Debug/obj/log_uart_api.o +log_uart_send_stream application/Debug/obj/log_uart_api.o +log_uart_send_stream_abort application/Debug/obj/log_uart_api.o +log_uart_support_rate application/Debug/obj/log_uart_api.o +log_uart_tx_comp_handler application/Debug/obj/log_uart_api.o +log_uart_writable application/Debug/obj/log_uart_api.o +lps_ctrl_wk_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +lwip_POST_SLEEP_PROCESSING application/Debug/obj/ethernetif.o + application/Debug/obj/lwip_intf.o +lwip_PRE_SLEEP_PROCESSING application/Debug/obj/ethernetif.o + application/Debug/obj/lwip_intf.o +lwip_accept application/Debug/obj/sockets.o + application/Debug/obj/wigadget.o + application/Debug/obj/net.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/atcmd_lwip.o +lwip_allocsocketsd application/Debug/obj/sockets.o + application/Debug/obj/uart_socket.o +lwip_bind application/Debug/obj/sockets.o + application/Debug/obj/wigadget.o + application/Debug/obj/net.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/atcmd_lwip.o +lwip_close application/Debug/obj/sockets.o + application/Debug/obj/wigadget.o + application/Debug/obj/net.o + application/Debug/obj/uart_socket.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_lwip.o +lwip_connect application/Debug/obj/sockets.o + application/Debug/obj/net.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/atcmd_lwip.o +lwip_fcntl application/Debug/obj/sockets.o +lwip_freeaddrinfo application/Debug/obj/netdb.o +lwip_getaddrinfo application/Debug/obj/netdb.o +lwip_gethostbyname application/Debug/obj/netdb.o + application/Debug/obj/net.o + application/Debug/obj/atcmd_lwip.o +lwip_gethostbyname_r application/Debug/obj/netdb.o +lwip_getpeername application/Debug/obj/sockets.o + application/Debug/obj/uart_adapter.o +lwip_getsockname application/Debug/obj/sockets.o + application/Debug/obj/uart_adapter.o +lwip_getsockopt application/Debug/obj/sockets.o +lwip_htonl application/Debug/obj/def.o + application/Debug/obj/tcp_out.o + application/Debug/obj/dhcp.o + application/Debug/obj/ip_addr.o + application/Debug/obj/autoip.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/atcmd_lwip.o +lwip_htons application/Debug/obj/def.o + application/Debug/obj/wigadget.o + application/Debug/obj/mDNSPlatform.o + application/Debug/obj/dhcps.o + application/Debug/obj/etharp.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/dns.o + application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o + application/Debug/obj/inet_chksum.o + application/Debug/obj/sockets.o + application/Debug/obj/netdb.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_lwip.o +lwip_init application/Debug/obj/init.o + application/Debug/obj/tcpip.o +lwip_init_done application/Debug/obj/lwip_netconf.o + application/Debug/obj/ethernet_mii.o +lwip_ioctl application/Debug/obj/sockets.o + application/Debug/obj/net.o +lwip_listen application/Debug/obj/sockets.o + application/Debug/obj/wigadget.o + application/Debug/obj/net.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/atcmd_lwip.o +lwip_ntohl application/Debug/obj/def.o + application/Debug/obj/sntp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/autoip.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_lwip.o +lwip_ntohs application/Debug/obj/def.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o + application/Debug/obj/sockets.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_lwip.o +lwip_read application/Debug/obj/sockets.o + application/Debug/obj/wigadget.o + application/Debug/obj/net.o + application/Debug/obj/update.o + application/Debug/obj/atcmd_lwip.o +lwip_recv application/Debug/obj/sockets.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o +lwip_recvfrom application/Debug/obj/sockets.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/atcmd_lwip.o +lwip_select application/Debug/obj/sockets.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_lwip.o +lwip_selectevindicate application/Debug/obj/sockets.o + application/Debug/obj/uart_socket.o +lwip_send application/Debug/obj/sockets.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o +lwip_sendto application/Debug/obj/sockets.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_lwip.o +lwip_setsockopt application/Debug/obj/sockets.o + application/Debug/obj/wigadget.o + application/Debug/obj/net.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/atcmd_lwip.o +lwip_setsockrcvevent application/Debug/obj/sockets.o + application/Debug/obj/uart_socket.o +lwip_shutdown application/Debug/obj/sockets.o + application/Debug/obj/net.o +lwip_socket application/Debug/obj/sockets.o + application/Debug/obj/wigadget.o + application/Debug/obj/net.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_lwip.o +lwip_socket_init application/Debug/obj/sockets.o + application/Debug/obj/init.o +lwip_strerr application/Debug/obj/err.o +lwip_tickless_used application/Debug/obj/ethernetif.o +lwip_write application/Debug/obj/sockets.o + application/Debug/obj/wigadget.o + application/Debug/obj/net.o + application/Debug/obj/atcmd_lwip.o +lxbus_set_intf_ops ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +mDNSPlatformCustomInit application/Debug/obj/mDNSPlatform.o +mDNSPlatformHostname application/Debug/obj/mDNSPlatform.o +mDNSPlatformHtons application/Debug/obj/mDNSPlatform.o +mDNSPlatformInetAddr application/Debug/obj/mDNSPlatform.o +mDNSRegisterService application/Debug/obj/wigadget.o + application/Debug/obj/uart_adapter.o +mDNSResponderDeinit application/Debug/obj/wigadget.o + application/Debug/obj/uart_adapter.o +mDNSResponderInit application/Debug/obj/wigadget.o + application/Debug/obj/uart_adapter.o +mDNSUpdateService application/Debug/obj/wigadget.o + application/Debug/obj/uart_adapter.o +mac_monitor_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +mac_reg_dump ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +main application/Debug/obj/main.o +mainlist application/Debug/obj/atcmd_lwip.o +malloc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-malloc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-lcltime.o) + application/Debug/obj/cJSON.o +matherr /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_matherr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +max_buf_bio_size application/Debug/obj/wifi_eap_config.o +max_local_skb_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +max_skb_buf_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +max_skbbuf_used_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +max_skbdata_used_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +max_timer_used_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +md application/Debug/obj/md.o + application/Debug/obj/x509_crt.o +md5 application/Debug/obj/md5.o + application/Debug/obj/md_wrap.o +md5_finish application/Debug/obj/md5.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o + application/Debug/obj/md_wrap.o +md5_free application/Debug/obj/md5.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o +md5_hmac application/Debug/obj/md5.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +md5_hmac_finish application/Debug/obj/md5.o + application/Debug/obj/md_wrap.o +md5_hmac_reset application/Debug/obj/md5.o + application/Debug/obj/md_wrap.o +md5_hmac_starts application/Debug/obj/md5.o + application/Debug/obj/md_wrap.o +md5_hmac_update application/Debug/obj/md5.o + application/Debug/obj/md_wrap.o +md5_info application/Debug/obj/md_wrap.o + application/Debug/obj/md.o +md5_init application/Debug/obj/md5.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o +md5_process application/Debug/obj/md5.o + application/Debug/obj/md_wrap.o +md5_starts application/Debug/obj/md5.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o + application/Debug/obj/md_wrap.o +md5_update application/Debug/obj/md5.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o + application/Debug/obj/md_wrap.o +md_file application/Debug/obj/md.o +md_finish application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_free application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_free_ctx application/Debug/obj/md.o +md_hmac application/Debug/obj/md.o +md_hmac_finish application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_hmac_reset application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_hmac_starts application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_hmac_update application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_info_from_string application/Debug/obj/md.o +md_info_from_type application/Debug/obj/md.o + application/Debug/obj/x509_crt.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/rsa.o + application/Debug/obj/pk.o +md_init application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_init_ctx application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_list application/Debug/obj/md.o +md_process application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_starts application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +md_update application/Debug/obj/md.o + application/Debug/obj/ssl_tls.o +mem_calloc application/Debug/obj/mem.o +mem_free application/Debug/obj/mem.o + application/Debug/obj/pbuf.o + application/Debug/obj/dhcp.o + application/Debug/obj/tcpip.o +mem_free_callback application/Debug/obj/tcpip.o +mem_init application/Debug/obj/mem.o + application/Debug/obj/init.o +mem_malloc application/Debug/obj/mem.o + application/Debug/obj/pbuf.o + application/Debug/obj/dhcp.o + application/Debug/obj/autoip.o +mem_trim application/Debug/obj/mem.o + application/Debug/obj/pbuf.o +memchr /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memchr-stub.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfscanf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfscanf.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) +memcmp /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcmp.o) + application/Debug/obj/ff.o +memcpy /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memcpy-stub.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-nano-reallocr.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) + application/Debug/obj/ff.o + application/Debug/obj/cJSON.o + application/Debug/obj/heap_5.o +memmove /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memmove.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-fvwrite.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-svfprintf.o) +memp_free application/Debug/obj/memp.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_in.o + application/Debug/obj/tcp.o + application/Debug/obj/raw.o + application/Debug/obj/pbuf.o + application/Debug/obj/lwip_timers.o + application/Debug/obj/ip_frag.o + application/Debug/obj/igmp.o + application/Debug/obj/tcpip.o + application/Debug/obj/netdb.o + application/Debug/obj/netbuf.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +memp_init application/Debug/obj/memp.o + application/Debug/obj/init.o +memp_malloc application/Debug/obj/memp.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp.o + application/Debug/obj/raw.o + application/Debug/obj/pbuf.o + application/Debug/obj/lwip_timers.o + application/Debug/obj/ip_frag.o + application/Debug/obj/igmp.o + application/Debug/obj/tcpip.o + application/Debug/obj/netdb.o + application/Debug/obj/netbuf.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +memset /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-memset.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-findfp.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/ff.o + application/Debug/obj/cJSON.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/log_service.o +mf_list_head ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + application/Debug/obj/wifi_util.o +mgt_dispatcher ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +mii_intr_handler application/Debug/obj/ethernet_mii.o +mii_rx_thread application/Debug/obj/ethernet_mii.o +min_free_heap_size application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +missing_tick application/Debug/obj/freertos_pmu.o +mktime /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-mktime.o) + application/Debug/obj/rtc_api.o +mlme_evt_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +mlme_sta_tbl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +mlmeext_joinbss_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +mlmeext_sta_del_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +mod_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +modem_cancle application/Debug/obj/uart_ymodem.o +mp_commnad_handler application/Debug/obj/log_service.o +mpi_add_abs application/Debug/obj/bignum.o +mpi_add_int application/Debug/obj/bignum.o +mpi_add_mpi application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_cmp_abs application/Debug/obj/bignum.o +mpi_cmp_int application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_cmp_mpi application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_copy application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_div_int application/Debug/obj/bignum.o +mpi_div_mpi application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_exp_mod application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_fill_random application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_free application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_gcd application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_gen_prime application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_get_bit application/Debug/obj/bignum.o +mpi_grow application/Debug/obj/bignum.o +mpi_init application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_inv_mod application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_is_prime application/Debug/obj/bignum.o +mpi_lsb application/Debug/obj/bignum.o +mpi_lset application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_mod_int application/Debug/obj/bignum.o +mpi_mod_mpi application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_msb application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_mul_int application/Debug/obj/bignum.o +mpi_mul_mpi application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_read_binary application/Debug/obj/bignum.o + application/Debug/obj/rsa.o + application/Debug/obj/asn1parse.o +mpi_read_string application/Debug/obj/bignum.o +mpi_safe_cond_assign application/Debug/obj/bignum.o +mpi_safe_cond_swap application/Debug/obj/bignum.o +mpi_set_bit application/Debug/obj/bignum.o +mpi_shift_l application/Debug/obj/bignum.o +mpi_shift_r application/Debug/obj/bignum.o +mpi_shrink application/Debug/obj/bignum.o +mpi_size application/Debug/obj/bignum.o + application/Debug/obj/pkparse.o +mpi_sub_abs application/Debug/obj/bignum.o +mpi_sub_int application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_sub_mpi application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_swap application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_write_binary application/Debug/obj/bignum.o + application/Debug/obj/rsa.o +mpi_write_string application/Debug/obj/bignum.o +my_malloc application/Debug/obj/ssl_client.o +nan /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_nan.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) +net_accept application/Debug/obj/net.o +net_bind application/Debug/obj/net.o +net_close application/Debug/obj/net.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +net_connect application/Debug/obj/net.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +net_recv application/Debug/obj/net.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +net_send application/Debug/obj/net.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +net_set_block application/Debug/obj/net.o +net_set_nonblock application/Debug/obj/net.o +netbuf_alloc application/Debug/obj/netbuf.o +netbuf_chain application/Debug/obj/netbuf.o +netbuf_data application/Debug/obj/netbuf.o + application/Debug/obj/webserver.o +netbuf_delete application/Debug/obj/netbuf.o + application/Debug/obj/webserver.o + application/Debug/obj/sockets.o + application/Debug/obj/api_msg.o +netbuf_first application/Debug/obj/netbuf.o +netbuf_free application/Debug/obj/netbuf.o + application/Debug/obj/sockets.o +netbuf_new application/Debug/obj/netbuf.o +netbuf_next application/Debug/obj/netbuf.o +netbuf_ref application/Debug/obj/netbuf.o + application/Debug/obj/sockets.o +netconn_abort application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o +netconn_accept application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o + application/Debug/obj/sockets.o +netconn_alloc application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +netconn_bind application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o + application/Debug/obj/sockets.o +netconn_close application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o +netconn_connect application/Debug/obj/api_lib.o + application/Debug/obj/sockets.o +netconn_delete application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o + application/Debug/obj/sockets.o +netconn_disconnect application/Debug/obj/api_lib.o +netconn_free application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +netconn_getaddr application/Debug/obj/api_lib.o + application/Debug/obj/sockets.o +netconn_gethostbyname application/Debug/obj/api_lib.o + application/Debug/obj/netdb.o +netconn_join_leave_group application/Debug/obj/api_lib.o +netconn_listen_with_backlog application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o + application/Debug/obj/sockets.o +netconn_new_with_proto_and_callback application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o + application/Debug/obj/sockets.o +netconn_recv application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o + application/Debug/obj/sockets.o +netconn_recv_tcp_pbuf application/Debug/obj/api_lib.o + application/Debug/obj/sockets.o +netconn_recved application/Debug/obj/api_lib.o + application/Debug/obj/sockets.o +netconn_send application/Debug/obj/api_lib.o + application/Debug/obj/sockets.o +netconn_sendto application/Debug/obj/api_lib.o +netconn_shutdown application/Debug/obj/api_lib.o + application/Debug/obj/sockets.o +netconn_write_partly application/Debug/obj/api_lib.o + application/Debug/obj/webserver.o + application/Debug/obj/sockets.o +netdev_if2_open ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +netdev_open ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +netif_add application/Debug/obj/netif.o + application/Debug/obj/lwip_netconf.o +netif_default application/Debug/obj/netif.o + application/Debug/obj/ip.o +netif_find application/Debug/obj/netif.o +netif_get_hwaddr application/Debug/obj/lwip_intf.o +netif_get_idx application/Debug/obj/lwip_intf.o + application/Debug/obj/ethernetif.o +netif_init application/Debug/obj/netif.o + application/Debug/obj/init.o +netif_is_valid_IP application/Debug/obj/lwip_intf.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +netif_list application/Debug/obj/netif.o + application/Debug/obj/dhcp.o + application/Debug/obj/ip.o + application/Debug/obj/igmp.o + application/Debug/obj/autoip.o +netif_post_sleep_processing application/Debug/obj/lwip_intf.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +netif_pre_sleep_processing application/Debug/obj/lwip_intf.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +netif_remove application/Debug/obj/netif.o +netif_rx application/Debug/obj/lwip_intf.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +netif_set_addr application/Debug/obj/netif.o + application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_conf.o +netif_set_default application/Debug/obj/netif.o + application/Debug/obj/lwip_netconf.o +netif_set_down application/Debug/obj/netif.o + application/Debug/obj/dhcp.o + application/Debug/obj/autoip.o +netif_set_gw application/Debug/obj/netif.o + application/Debug/obj/dhcp.o + application/Debug/obj/autoip.o +netif_set_ipaddr application/Debug/obj/netif.o + application/Debug/obj/dhcp.o + application/Debug/obj/autoip.o +netif_set_link_down application/Debug/obj/netif.o +netif_set_link_up application/Debug/obj/netif.o +netif_set_netmask application/Debug/obj/netif.o + application/Debug/obj/dhcp.o + application/Debug/obj/autoip.o +netif_set_up application/Debug/obj/netif.o + application/Debug/obj/dhcp.o + application/Debug/obj/autoip.o + application/Debug/obj/lwip_netconf.o +networktype_to_raid_ex ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +nfc_cache_raed application/Debug/obj/nfc_api.o +nfc_cache_read_callback application/Debug/obj/nfc_api.o + application/Debug/obj/rtl8195a_nfc.o +nfc_cache_write application/Debug/obj/nfc_api.o +nfc_event application/Debug/obj/nfc_api.o +nfc_event_callback application/Debug/obj/nfc_api.o + application/Debug/obj/rtl8195a_nfc.o +nfc_free application/Debug/obj/nfc_api.o +nfc_init application/Debug/obj/nfc_api.o +nfc_power application/Debug/obj/nfc_api.o +nfc_read application/Debug/obj/nfc_api.o +nfc_status application/Debug/obj/nfc_api.o +nfc_tagread_callback application/Debug/obj/nfc_api.o + application/Debug/obj/rtl8195a_nfc.o +nfc_tagwrite_callback application/Debug/obj/nfc_api.o + application/Debug/obj/rtl8195a_nfc.o +nfc_write application/Debug/obj/nfc_api.o +node_pool application/Debug/obj/atcmd_lwip.o +nr_xmitbuff ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +nr_xmitframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +null_addr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +odm_AntennaDiversity ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_AntennaDiversityInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_BasicDbgMessage ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_CCKPacketDetectionThresh ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_CmnInfoHook_Debug ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_CmnInfoInit_Debug ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_CmnInfoUpdate_Debug ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_CommonInfoSelfInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_CommonInfoSelfReset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_CommonInfoSelfUpdate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_ConfigBB_AGC_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) +odm_ConfigBB_PHY_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) +odm_ConfigBB_PHY_REG_PG_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_BB.o) +odm_ConfigBB_TXPWR_LMT_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +odm_ConfigMAC_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_MAC.o) +odm_ConfigRFReg_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) +odm_ConfigRF_RadioA_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RegConfig8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalHWImg8195A_RF.o) +odm_DIG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_DIGInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_DIGbyRSSI_LPS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_DigAbort ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +odm_DigForBtHsMode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +odm_FAThresholdCheck ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +odm_FalseAlarmCounterStatistics ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_ForbiddenIGICheck ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +odm_HWSetting ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_IQCalibrate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_InbandNoiseCalculate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +odm_Init_RSSIForDM ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +odm_PauseCCKPacketDetection ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +odm_PauseDIG ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) +odm_Process_RSSIForDM_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +odm_QueryRxPwrPercentage ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +odm_RSSIMonitorCheck ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_RSSIMonitorCheckAP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RSSIMonitorCheckCE ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RSSIMonitorCheckIOT ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RSSIMonitorCheckMP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RSSIMonitorInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_RateAdaptiveMaskInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_RefreshBasicRateMask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RefreshRateAdaptiveMask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_RefreshRateAdaptiveMaskAPADSL ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RefreshRateAdaptiveMaskCE ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RefreshRateAdaptiveMaskIOT ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RefreshRateAdaptiveMaskMP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) +odm_RxPhyStatus8195A_Parsing ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +odm_SignalScaleMapping ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +odm_SignalScaleMapping_92CSeries ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +odm_SignalScaleMapping_92CSeries_patch_RT_CID_819x_Lenovo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +odm_SignalScaleMapping_92CSeries_patch_RT_CID_819x_Netcore ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_HWConfig.o) +odm_SwAntDetectInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_TXPowerTrackingCheckAP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) +odm_TXPowerTrackingCheckCE ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) +odm_TXPowerTrackingCheckIOT ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) +odm_TXPowerTrackingCheckMP ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) +odm_TXPowerTrackingInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +odm_TXPowerTrackingThermalMeterInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_PowerTracking.o) +odm_UpdatePowerTrainingState ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm.o) +oid_get_attr_short_name application/Debug/obj/oid.o + application/Debug/obj/x509.o +oid_get_cipher_alg application/Debug/obj/oid.o +oid_get_extended_key_usage application/Debug/obj/oid.o + application/Debug/obj/x509_crt.o + application/Debug/obj/x509.o +oid_get_md_alg application/Debug/obj/oid.o + application/Debug/obj/rsa.o +oid_get_numeric_string application/Debug/obj/oid.o + application/Debug/obj/x509.o +oid_get_oid_by_md application/Debug/obj/oid.o + application/Debug/obj/rsa.o +oid_get_oid_by_pk_alg application/Debug/obj/oid.o +oid_get_oid_by_sig_alg application/Debug/obj/oid.o +oid_get_pk_alg application/Debug/obj/oid.o + application/Debug/obj/pkparse.o +oid_get_sig_alg application/Debug/obj/oid.o + application/Debug/obj/x509.o +oid_get_sig_alg_desc application/Debug/obj/oid.o + application/Debug/obj/x509.o +oid_get_x509_ext_type application/Debug/obj/oid.o + application/Debug/obj/x509_crt.o +oob_irq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) +osDelay application/Debug/obj/cmsis_os.o + application/Debug/obj/wigadget.o + application/Debug/obj/update.o +osKernelInitialize application/Debug/obj/cmsis_os.o +osKernelStart application/Debug/obj/cmsis_os.o +osKernelSysTick application/Debug/obj/cmsis_os.o +osMailAlloc application/Debug/obj/cmsis_os.o +osMailCAlloc application/Debug/obj/cmsis_os.o +osMailCreate application/Debug/obj/cmsis_os.o +osMailFree application/Debug/obj/cmsis_os.o +osMailGet application/Debug/obj/cmsis_os.o +osMailPut application/Debug/obj/cmsis_os.o +osMessageCreate application/Debug/obj/cmsis_os.o +osMessageGet application/Debug/obj/cmsis_os.o +osMessagePut application/Debug/obj/cmsis_os.o +osMutexCreate application/Debug/obj/cmsis_os.o +osMutexDelete application/Debug/obj/cmsis_os.o +osMutexRelease application/Debug/obj/cmsis_os.o +osMutexWait application/Debug/obj/cmsis_os.o +osPoolAlloc application/Debug/obj/cmsis_os.o +osPoolCAlloc application/Debug/obj/cmsis_os.o +osPoolCreate application/Debug/obj/cmsis_os.o +osPoolFree application/Debug/obj/cmsis_os.o +osSemaphoreCreate application/Debug/obj/cmsis_os.o +osSemaphoreDelete application/Debug/obj/cmsis_os.o +osSemaphoreRelease application/Debug/obj/cmsis_os.o +osSemaphoreWait application/Debug/obj/cmsis_os.o +osSignalClear application/Debug/obj/cmsis_os.o +osSignalSet application/Debug/obj/cmsis_os.o +osSignalWait application/Debug/obj/cmsis_os.o +osThreadCreate application/Debug/obj/cmsis_os.o +osThreadGetId application/Debug/obj/cmsis_os.o +osThreadGetPriority application/Debug/obj/cmsis_os.o +osThreadSetPriority application/Debug/obj/cmsis_os.o +osThreadTerminate application/Debug/obj/cmsis_os.o +osThreadYield application/Debug/obj/cmsis_os.o +osTimerCreate application/Debug/obj/cmsis_os.o +osTimerDelete application/Debug/obj/cmsis_os.o +osTimerStart application/Debug/obj/cmsis_os.o +osTimerStop application/Debug/obj/cmsis_os.o +osdep_service application/Debug/obj/freertos_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) + application/Debug/obj/osdep_service.o +ota_platform_reset application/Debug/obj/update.o +oui_8021h ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +oui_rfc1042 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +ovsr_adj_table_10bit application/Debug/obj/hal_uart.o +ovsr_adj_table_8bit application/Debug/obj/hal_uart.o +ovsr_adj_table_9bit application/Debug/obj/hal_uart.o +pExportWlanIrqSemaphore ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) +pRamStartFun ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +pRxDataBuf application/Debug/obj/rtl8195a_mii.o +pThreadSignalMapHead application/Debug/obj/cmsis_os.o +pThreadSignalMapTail application/Debug/obj/cmsis_os.o +pTxDataBuf application/Debug/obj/rtl8195a_mii.o +pUartLogCtl application/Debug/obj/rtl_consol.o +p_wlan_autoreconnect_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + application/Debug/obj/wifi_conf.o +p_wlan_init_done_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + application/Debug/obj/example_uart_atcmd.o +p_wlan_mgmt_filter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +p_wlan_uart_adapter_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + application/Debug/obj/uart_adapter.o +paff_array application/Debug/obj/wifi_promisc.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +pair_device application/Debug/obj/wigadget.o +parse_number application/Debug/obj/cJSON.o +parse_param application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +parse_tlv_info_bcast ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +pbuf_alloc application/Debug/obj/pbuf.o + application/Debug/obj/sntp.o + application/Debug/obj/ethernetif.o + application/Debug/obj/etharp.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/raw.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/ip_frag.o + application/Debug/obj/igmp.o + application/Debug/obj/icmp.o + application/Debug/obj/netbuf.o + application/Debug/obj/api_msg.o +pbuf_alloced_custom application/Debug/obj/pbuf.o + application/Debug/obj/ip_frag.o +pbuf_cat application/Debug/obj/pbuf.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/ip_frag.o + application/Debug/obj/netbuf.o +pbuf_chain application/Debug/obj/pbuf.o + application/Debug/obj/udp.o + application/Debug/obj/raw.o +pbuf_clen application/Debug/obj/pbuf.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/ip_frag.o +pbuf_coalesce application/Debug/obj/pbuf.o + application/Debug/obj/dhcps.o +pbuf_copy application/Debug/obj/pbuf.o + application/Debug/obj/etharp.o + application/Debug/obj/icmp.o + application/Debug/obj/api_msg.o +pbuf_copy_partial application/Debug/obj/pbuf.o + application/Debug/obj/sntp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/sockets.o +pbuf_dechain application/Debug/obj/pbuf.o +pbuf_free application/Debug/obj/pbuf.o + application/Debug/obj/sntp.o + application/Debug/obj/dhcps.o + application/Debug/obj/ethernetif.o + application/Debug/obj/etharp.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/tcp.o + application/Debug/obj/raw.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o + application/Debug/obj/igmp.o + application/Debug/obj/icmp.o + application/Debug/obj/tcpip.o + application/Debug/obj/sockets.o + application/Debug/obj/netbuf.o + application/Debug/obj/api_msg.o +pbuf_free_callback application/Debug/obj/tcpip.o +pbuf_free_ooseq_pending application/Debug/obj/pbuf.o +pbuf_get_at application/Debug/obj/pbuf.o +pbuf_header application/Debug/obj/pbuf.o + application/Debug/obj/etharp.o + application/Debug/obj/udp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/raw.o + application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o + application/Debug/obj/igmp.o + application/Debug/obj/icmp.o +pbuf_memcmp application/Debug/obj/pbuf.o +pbuf_memfind application/Debug/obj/pbuf.o +pbuf_realloc application/Debug/obj/pbuf.o + application/Debug/obj/tcp_in.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/ip.o +pbuf_ref application/Debug/obj/pbuf.o + application/Debug/obj/etharp.o + application/Debug/obj/tcp.o + application/Debug/obj/ip_frag.o +pbuf_strstr application/Debug/obj/pbuf.o +pbuf_take application/Debug/obj/pbuf.o +pcTaskGetTaskName application/Debug/obj/tasks.o + application/Debug/obj/freertos_service.o +pcTimerGetTimerName application/Debug/obj/timers.o +pem_free application/Debug/obj/pem.o + application/Debug/obj/x509_crt.o + application/Debug/obj/pkparse.o +pem_init application/Debug/obj/pem.o + application/Debug/obj/x509_crt.o + application/Debug/obj/pkparse.o +pem_read_buffer application/Debug/obj/pem.o + application/Debug/obj/x509_crt.o + application/Debug/obj/pkparse.o +phy_CalculateBitShift ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phy_ConvertTxPowerByRateInDbmToRelativeValues ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +phy_GetChannelIndexOfTxPowerLimit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +phy_GetChnlIndex ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +phy_GetSecondaryChnl_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phy_GetWorldWideLimit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +phy_IQCalibrate_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +phy_LCCalibrate_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +phy_PathA_IQK_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +phy_PathA_RxIQK8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +phy_PathB_IQK_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +phy_PathB_RxIQK8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +phy_PostSetBwMode8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phy_PowerIndexCheck8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phy_SetRFPathSwitch_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +phy_SetRegBW_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phy_SetTxPowerByRateBase ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +phy_SimularityCompare_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +phy_SpurCalibration_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phy_StoreTxPowerByRateBase ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) +phy_SwChnl8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phy_SwChnlAndSetBwMode8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phy_TxPwrAdjInPercentage ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) +phydm_CLMInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) +phydm_CLMtrigger ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) +phydm_FalseAlarmCounterStatistics ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) +phydm_NHMInit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +phydm_NHMtrigger ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +phydm_checkCLMready ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) +phydm_getCLMresult ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) +phydm_getNHMresult ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +pin_function application/Debug/obj/pinmap.o + application/Debug/obj/gpio_api.o +pin_mode application/Debug/obj/pinmap.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/port_api.o +ping_test application/Debug/obj/ping_test.o +pinmap_find_peripheral application/Debug/obj/pinmap_common.o + application/Debug/obj/i2s_api.o +pinmap_merge application/Debug/obj/pinmap_common.o + application/Debug/obj/spi_api.o + application/Debug/obj/serial_api.o + application/Debug/obj/i2s_api.o + application/Debug/obj/i2c_api.o +pinmap_peripheral application/Debug/obj/pinmap_common.o + application/Debug/obj/spi_api.o + application/Debug/obj/serial_api.o + application/Debug/obj/pwmout_api.o + application/Debug/obj/i2s_api.o + application/Debug/obj/i2c_api.o +pinmap_pinout application/Debug/obj/pinmap_common.o + application/Debug/obj/serial_api.o +pk_can_do application/Debug/obj/pk.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +pk_debug application/Debug/obj/pk.o +pk_decrypt application/Debug/obj/pk.o +pk_encrypt application/Debug/obj/pk.o + application/Debug/obj/ssl_cli.o +pk_free application/Debug/obj/pk.o + application/Debug/obj/x509_crt.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pkparse.o +pk_get_name application/Debug/obj/pk.o + application/Debug/obj/x509_crt.o +pk_get_size application/Debug/obj/pk.o + application/Debug/obj/x509_crt.o +pk_get_type application/Debug/obj/pk.o +pk_info_from_type application/Debug/obj/pk.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pkparse.o +pk_init application/Debug/obj/pk.o + application/Debug/obj/ssl_tls.o +pk_init_ctx application/Debug/obj/pk.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pkparse.o +pk_init_ctx_rsa_alt application/Debug/obj/pk.o + application/Debug/obj/ssl_tls.o +pk_parse_key application/Debug/obj/pkparse.o +pk_parse_public_key application/Debug/obj/pkparse.o +pk_parse_subpubkey application/Debug/obj/pkparse.o + application/Debug/obj/x509_crt.o +pk_sign application/Debug/obj/pk.o + application/Debug/obj/ssl_cli.o +pk_verify application/Debug/obj/pk.o +pk_verify_ext application/Debug/obj/pk.o + application/Debug/obj/x509_crt.o +platform_set_malloc_free application/Debug/obj/ssl_ram_map.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +polarssl_aes_init application/Debug/obj/aes.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o + application/Debug/obj/cipher_wrap.o +polarssl_strerror application/Debug/obj/error.o +port_dir application/Debug/obj/port_api.o +port_init application/Debug/obj/port_api.o +port_mode application/Debug/obj/port_api.o +port_pin application/Debug/obj/port_api.o +port_read application/Debug/obj/port_api.o +port_write application/Debug/obj/port_api.o +portctrl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +post_sleep_callback application/Debug/obj/freertos_pmu.o +pow /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) + application/Debug/obj/cJSON.o +power_saving_wk_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +pre_example_entry application/Debug/obj/example_entry.o + application/Debug/obj/main.o +pre_sleep_callback application/Debug/obj/freertos_pmu.o +print_help_handler application/Debug/obj/log_service.o +print_help_msg application/Debug/obj/log_service.o +print_simple_config_result application/Debug/obj/wifi_simple_config.o +print_system_at application/Debug/obj/atcmd_sys.o +print_tcpip_at application/Debug/obj/atcmd_lwip.o + application/Debug/obj/atcmd_sys.o +print_wifi_at application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o +print_wlan_help application/Debug/obj/atcmd_wifi.o + application/Debug/obj/log_service.o +printf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-printf.o) + application/Debug/obj/shtc1.o + application/Debug/obj/heap_5.o +process_pwrbit_data ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +process_recv_indicatepkts ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +process_wmmps_data ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +promisc_add_packet_filter application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o +promisc_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +promisc_callback_all ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +promisc_deinit application/Debug/obj/wifi_promisc.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +promisc_disable_packet_filter application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o +promisc_enable_packet_filter application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o +promisc_get_fixed_channel application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_simple_config.o +promisc_init_packet_filter application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o +promisc_issue_probereq ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +promisc_issue_probersp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +promisc_recv_func application/Debug/obj/wifi_promisc.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +promisc_remove_packet_filter application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o +promisc_sema ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +promisc_set application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o +promisc_set_mgntframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +prvAtoi application/Debug/obj/wigadget.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/netdb.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_promisc.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +psk_derive ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +psk_essid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_wifi.o +psk_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +psk_passphrase ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_wifi.o +psk_passphrase64 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/atcmd_wifi.o +psk_strip_rsn_pairwise ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +psk_strip_wpa_pairwise ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +put_fat application/Debug/obj/ff.o +puts /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-puts.o) + application/Debug/obj/heap_5.o +pvPortMalloc application/Debug/obj/heap_5.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/xml.o + application/Debug/obj/http_client.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/croutine.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ssl_client.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +pvPortReAlloc application/Debug/obj/heap_5.o +pvTaskIncrementMutexHeldCount application/Debug/obj/tasks.o + application/Debug/obj/queue.o +pvTimerGetTimerID application/Debug/obj/timers.o + application/Debug/obj/osdep_api.o + application/Debug/obj/cmsis_os.o +pwmout_free application/Debug/obj/pwmout_api.o +pwmout_init application/Debug/obj/pwmout_api.o +pwmout_period application/Debug/obj/pwmout_api.o +pwmout_period_ms application/Debug/obj/pwmout_api.o +pwmout_period_us application/Debug/obj/pwmout_api.o +pwmout_pulsewidth application/Debug/obj/pwmout_api.o +pwmout_pulsewidth_ms application/Debug/obj/pwmout_api.o +pwmout_pulsewidth_us application/Debug/obj/pwmout_api.o +pwmout_read application/Debug/obj/pwmout_api.o +pwmout_write application/Debug/obj/pwmout_api.o +pwr_state_check_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +pxCurrentCoRoutine application/Debug/obj/croutine.o +pxCurrentTCB application/Debug/obj/tasks.o + application/Debug/obj/port.o +pxHTTPListener application/Debug/obj/webserver.o +pxPortInitialiseStack application/Debug/obj/port.o + application/Debug/obj/tasks.o +pxmodem_uart_adp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/uart_fw_update.o +qos_acm ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +ram_heap application/Debug/obj/mem.o +ram_libgloss_close ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +ram_libgloss_fstat ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +ram_libgloss_isatty ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +ram_libgloss_lseek ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +ram_libgloss_open ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +ram_libgloss_read ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +ram_libgloss_sbrk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +ram_libgloss_write ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +rand /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) + application/Debug/obj/dhcp.o + application/Debug/obj/igmp.o +rand_x application/Debug/obj/hal_sdr_controller.o + application/Debug/obj/system_8195a.o +ratetbl2rateset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +ratetbl_val_2wifirate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +raw_bind application/Debug/obj/raw.o + application/Debug/obj/api_msg.o +raw_connect application/Debug/obj/raw.o + application/Debug/obj/api_msg.o +raw_input application/Debug/obj/raw.o + application/Debug/obj/ip.o +raw_new application/Debug/obj/raw.o + application/Debug/obj/api_msg.o +raw_recv application/Debug/obj/raw.o + application/Debug/obj/api_msg.o +raw_remove application/Debug/obj/raw.o + application/Debug/obj/api_msg.o +raw_send application/Debug/obj/raw.o + application/Debug/obj/api_msg.o +raw_sendto application/Debug/obj/raw.o + application/Debug/obj/api_msg.o +read_uart_atcmd_setting_from_system_data application/Debug/obj/example_uart_atcmd.o +receive_disconnect ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +reconnect_timer_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +recv_decache ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +recv_func ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +recv_func_posthandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +recv_func_prehandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +recv_indicatepkt_reorder ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +recv_indicatepkts_in_order ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +recvframe_chk_defrag ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +recvframe_chkmic ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +recvframe_defrag ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +register_post_sleep_callback application/Debug/obj/freertos_pmu.o +register_pre_sleep_callback application/Debug/obj/freertos_pmu.o +register_sleep_callback_by_module application/Debug/obj/freertos_pmu.o +release_wakelock application/Debug/obj/freertos_pmu.o + application/Debug/obj/freertos_service.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_sys.o +remove_filter application/Debug/obj/wifi_simple_config.o + application/Debug/obj/uart_adapter.o +report_add_sta_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +report_del_sta_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +report_join_res ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +report_scan_result_one ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +report_survey_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +report_surveydone_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +reserve_pll application/Debug/obj/freertos_pmu.o +reset_config application/Debug/obj/wifi_eap_config.o +reset_uart_atcmd_setting application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_sys.o +restore_flags application/Debug/obj/freertos_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/lwip_intf.o +retrieve_frame application/Debug/obj/wifi_promisc.o +rf_reg_dump ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rint /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_rint.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-w_pow.o) +rltk_del_station ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_util.o +rltk_get_auto_chl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_util.o +rltk_get_idx_bydev ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rltk_mii_recv application/Debug/obj/ethernet_mii.o + application/Debug/obj/ethernetif.o +rltk_mii_send application/Debug/obj/ethernet_mii.o + application/Debug/obj/ethernetif.o +rltk_netif_rx ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +rltk_set_sta_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_util.o +rltk_set_tx_power_percentage ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rltk_wifi_fw_test ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rltk_wlan_PRE_SLEEP_PROCESSING ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rltk_wlan_alloc_skb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/lwip_intf.o +rltk_wlan_check_bus ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rltk_wlan_check_isup ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/lwip_intf.o +rltk_wlan_control ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_util.o +rltk_wlan_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_conf.o +rltk_wlan_get_recv_skb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/lwip_intf.o +rltk_wlan_handshake_done ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rltk_wlan_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rltk_wlan_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_conf.o +rltk_wlan_is_connected_to_ap ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_conf.o +rltk_wlan_recv application/Debug/obj/lwip_intf.o + application/Debug/obj/ethernetif.o +rltk_wlan_rf_off ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_conf.o +rltk_wlan_rf_on ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_conf.o +rltk_wlan_running ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/webserver.o + application/Debug/obj/ethernetif.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +rltk_wlan_send application/Debug/obj/lwip_intf.o + application/Debug/obj/ethernetif.o +rltk_wlan_send_skb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/lwip_intf.o +rltk_wlan_set_netif_info application/Debug/obj/lwip_intf.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rltk_wlan_set_wps_phase ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_conf.o +rltk_wlan_start ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_conf.o +rltk_wlan_statistic ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/atcmd_wifi.o +rltk_wlan_tx_dec ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/lwip_intf.o +rltk_wlan_tx_inc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/lwip_intf.o +rltk_wlan_wireless_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/wifi_conf.o +rom_e_rtw_msgp_str_ ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rom_rtw_message.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rom_libgloss_ram_map ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) +rom_psk_CalcGTK ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +rom_psk_CalcPTK ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +rom_psk_PasswordHash ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +rom_ssl_ram_map application/Debug/obj/rom_ssl_ram_map.o + application/Debug/obj/ssl_ram_map.o + application/Debug/obj/x509_crt.o + application/Debug/obj/x509.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o + application/Debug/obj/ssl_cache.o + application/Debug/obj/pk_wrap.o + application/Debug/obj/pem.o + application/Debug/obj/md_wrap.o + application/Debug/obj/cipher_wrap.o + application/Debug/obj/asn1parse.o + application/Debug/obj/aes.o + application/Debug/obj/bignum.o +rom_wlan_ram_map ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wlan_ram_map.o) +rpt_timer_setting_wk_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rsa_alt_info application/Debug/obj/pk_wrap.o + application/Debug/obj/pk.o +rsa_check_privkey application/Debug/obj/rsa.o + application/Debug/obj/pkparse.o +rsa_check_pubkey application/Debug/obj/rsa.o + application/Debug/obj/pkparse.o +rsa_copy application/Debug/obj/rsa.o + application/Debug/obj/ssl_tls.o +rsa_free application/Debug/obj/rsa.o + application/Debug/obj/pkparse.o + application/Debug/obj/pk_wrap.o +rsa_gen_key application/Debug/obj/rsa.o +rsa_info application/Debug/obj/pk_wrap.o + application/Debug/obj/pk.o +rsa_init application/Debug/obj/rsa.o + application/Debug/obj/pk_wrap.o +rsa_pkcs1_decrypt application/Debug/obj/rsa.o + application/Debug/obj/pk_wrap.o +rsa_pkcs1_encrypt application/Debug/obj/rsa.o + application/Debug/obj/pk_wrap.o +rsa_pkcs1_sign application/Debug/obj/rsa.o + application/Debug/obj/pk_wrap.o +rsa_pkcs1_verify application/Debug/obj/rsa.o + application/Debug/obj/pk_wrap.o +rsa_private application/Debug/obj/rsa.o +rsa_public application/Debug/obj/rsa.o +rsa_rsaes_pkcs1_v15_decrypt application/Debug/obj/rsa.o +rsa_rsaes_pkcs1_v15_encrypt application/Debug/obj/rsa.o +rsa_rsassa_pkcs1_v15_sign application/Debug/obj/rsa.o +rsa_rsassa_pkcs1_v15_verify application/Debug/obj/rsa.o +rsa_set_padding application/Debug/obj/rsa.o +rt_arc4_crypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +rt_arc4_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +rt_hmac_sha1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +rt_md5_append ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +rt_md5_final ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +rt_md5_hmac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +rt_md5_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +rtc_free application/Debug/obj/rtc_api.o +rtc_init application/Debug/obj/rtc_api.o +rtc_isenabled application/Debug/obj/rtc_api.o +rtc_read application/Debug/obj/rtc_api.o +rtc_write application/Debug/obj/rtc_api.o +rtk_restart_simple_config ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/wifi_simple_config.o +rtk_sc_check_profile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +rtk_sc_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/wifi_simple_config.o +rtk_sc_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/wifi_simple_config.o +rtk_start_parse_packet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/wifi_simple_config.o +rtk_stop_simple_config ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +rtl8192ee_check_rxdesc_remain ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtl8195A_card_disable_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195A_card_enable_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195A_enter_lps_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195A_enter_swlps_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195A_hwpdn_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195A_leave_lps_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195A_leave_swlps_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195A_power_on_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195A_radio_off_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195A_resume_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195A_suspend_flow ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195APwrSeq.o) +rtl8195a_Add_RateATid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_CheckAntenna_Selection ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_DeinitAntenna_Selection ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_FirmwareDownload ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_FirmwareSelfReset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_HalDmWatchDog ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_HalDmWatchDog_in_LPS ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtl8195a_InitAntenna_Selection ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_InitBeaconMaxError ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_InitBeaconParameters ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195a_InitHalDm ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195a_InitLLTTable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195a_InitializeFirmwareVars ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_adaptivity_needed ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtl8195a_cal_txdesc_chksum ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_check_txdesc_closed ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtl8195a_deinit_dm_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_dequeue_xmitbuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtl8195a_dm_patch ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtl8195a_download_rsvd_page ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_enqueue_xmitbuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtl8195a_fill_fake_txdesc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_free_desc_ring ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195a_hal_dm_in_lps ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtl8195a_init_default_value ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195a_init_desc_ring ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195a_init_dm_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_prepare_bcn_tasklet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtl8195a_process_phy_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) +rtl8195a_query_rx_desc_status ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtl8195a_query_rx_phy_status ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtl8195a_recv_tasklet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtl8195a_reset_desc_ring ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195a_set_BcnIgnoreEDCCA_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_set_FwAPReqRPT_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_set_FwBtMpOper_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_set_FwJoinBssRpt_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_set_FwMacIdConfig_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_set_FwMediaStatusRpt_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_set_FwPsTuneParam_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_set_FwPwrModeInIPS_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_set_FwPwrMode_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_set_FwRssiSetting_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_set_FwRsvdPage_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_set_hal_ops ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195a_set_rssi_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) +rtl8195a_start_thread ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_stop_thread ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtl8195a_tx_int_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtl8195a_update_txdesc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtl8195a_xmit_tasklet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtl8195ab_free_xmit_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195ab_hal_xmit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195ab_hal_xmitframe_enqueue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtl8195ab_init_xmit_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195ab_mgnt_xmit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtl8195ab_set_hal_ops ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtl8195ab_xmitframe_resume ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtl_align_to_be32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_cryptoEngine_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_cryptoEngine_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_tls.o +rtl_crypto_3des_cbc_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_3des_cbc_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_3des_cbc_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_3des_ecb_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_3des_ecb_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_3des_ecb_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_aes_cbc_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_aes_cbc_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_aes_cbc_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_aes_ctr_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_aes_ctr_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_aes_ctr_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_aes_ecb_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_aes_ecb_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_aes_ecb_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_des_cbc_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_des_cbc_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_des_cbc_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + application/Debug/obj/ssl_ram_map.o +rtl_crypto_des_ecb_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_des_ecb_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_des_ecb_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_md5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_md5_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_md5_process ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_sha1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_sha1_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_sha1_process ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_sha2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_sha2_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_hmac_sha2_process ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_md5 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_md5_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_md5_process ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_sha1 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +rtl_crypto_sha1_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_sha1_process ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_sha2 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_sha2_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_crypto_sha2_process ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_libc_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +rtl_memDump ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_memchr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +rtl_memcmp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + application/Debug/obj/x509_crt.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o + application/Debug/obj/ssl_cache.o + application/Debug/obj/rsa.o + application/Debug/obj/pem.o + application/Debug/obj/oid.o + application/Debug/obj/asn1parse.o + application/Debug/obj/freertos_service.o + application/Debug/obj/tasks.o + application/Debug/obj/dhcps.o + application/Debug/obj/etharp.o + application/Debug/obj/autoip.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +rtl_memcmpb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_memcpy ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/x509_crt.o + application/Debug/obj/x509.o + application/Debug/obj/version.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o + application/Debug/obj/ssl_cache.o + application/Debug/obj/sha512.o + application/Debug/obj/sha256.o + application/Debug/obj/sha1.o + application/Debug/obj/rsa.o + application/Debug/obj/pem.o + application/Debug/obj/net.o + application/Debug/obj/md5.o + application/Debug/obj/cipher.o + application/Debug/obj/aes.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/xml.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_socket.o + application/Debug/obj/http_client.o + application/Debug/obj/bignum.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/freertos_service.o + application/Debug/obj/queue.o + application/Debug/obj/dhcps.o + application/Debug/obj/sys_arch.o + application/Debug/obj/etharp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp.o + application/Debug/obj/pbuf.o + application/Debug/obj/dns.o + application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o + application/Debug/obj/icmp.o + application/Debug/obj/autoip.o + application/Debug/obj/sockets.o + application/Debug/obj/netdb.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +rtl_memcpyb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_memcpyw ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_memmove ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + application/Debug/obj/ssl_tls.o +rtl_memset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/x509_crt.o + application/Debug/obj/x509.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cache.o + application/Debug/obj/sha512.o + application/Debug/obj/sha256.o + application/Debug/obj/sha1.o + application/Debug/obj/rsa.o + application/Debug/obj/pkparse.o + application/Debug/obj/pk_wrap.o + application/Debug/obj/pem.o + application/Debug/obj/net.o + application/Debug/obj/md5.o + application/Debug/obj/md.o + application/Debug/obj/cipher.o + application/Debug/obj/asn1parse.o + application/Debug/obj/arc4.o + application/Debug/obj/aes.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/xml.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_socket.o + application/Debug/obj/bignum.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/tcm_heap.o + application/Debug/obj/osdep_service.o + application/Debug/obj/freertos_service.o + application/Debug/obj/tasks.o + application/Debug/obj/sntp.o + application/Debug/obj/dhcps.o + application/Debug/obj/sys_arch.o + application/Debug/obj/udp.o + application/Debug/obj/tcp.o + application/Debug/obj/raw.o + application/Debug/obj/mem.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/ip_frag.o + application/Debug/obj/ip.o + application/Debug/obj/autoip.o + application/Debug/obj/sockets.o + application/Debug/obj/netdb.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ssl_client.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_ind.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +rtl_memsetb ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_memsetw ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_pre_parse ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +rtl_printf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_DIG.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(PhyDM_Adaptivity.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(Hal8195ARateAdaptive.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/shtc1.o + application/Debug/obj/cloud_link.o + application/Debug/obj/uart_fw_update.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_socket.o + application/Debug/obj/spdio_api.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/tcm_heap.o + application/Debug/obj/osdep_service.o + application/Debug/obj/freertos_service.o + application/Debug/obj/device_lock.o + application/Debug/obj/dhcps.o + application/Debug/obj/lwip_intf.o + application/Debug/obj/ethernetif.o + application/Debug/obj/sockets.o + application/Debug/obj/wlan_network.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ssl_client.o + application/Debug/obj/ping_test.o + application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +rtl_random ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_snprintf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + application/Debug/obj/x509_crt.o + application/Debug/obj/x509.o + application/Debug/obj/oid.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +rtl_sprintf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/xml.o + application/Debug/obj/webserver.o + application/Debug/obj/http_client.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/ssl_client.o + application/Debug/obj/atcmd_wifi.o +rtl_srandom ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_crypto.o) +rtl_strcat ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + application/Debug/obj/wigadget.o + application/Debug/obj/xml.o + application/Debug/obj/webserver.o +rtl_strchr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + application/Debug/obj/xml.o +rtl_strcmp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libgloss_retarget.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/xml.o + application/Debug/obj/webserver.o + application/Debug/obj/dns.o + application/Debug/obj/api_msg.o + application/Debug/obj/update.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +rtl_strcpy ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + application/Debug/obj/wigadget.o + application/Debug/obj/xml.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/ssl_client.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +rtl_strlen ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/x509_crt.o + application/Debug/obj/x509.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/pem.o + application/Debug/obj/xml.o + application/Debug/obj/webserver.o + application/Debug/obj/http_client.o + application/Debug/obj/bignum.o + application/Debug/obj/osdep_service.o + application/Debug/obj/pbuf.o + application/Debug/obj/dns.o + application/Debug/obj/netdb.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +rtl_strncat ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +rtl_strncmp ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_socket.o + application/Debug/obj/http_client.o +rtl_strncpy ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/rtl_consol.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o +rtl_strsep ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtl_strstr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + application/Debug/obj/x509_crt.o + application/Debug/obj/pem.o + application/Debug/obj/webserver.o +rtl_strtok ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) + application/Debug/obj/log_service.o +rtl_vfprintf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +rtl_vprintf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +rtl_vsnprintf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_rtlstd.a(ram_libc.o) +rtw_acquire_wakelock application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_adaptivity_en ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + application/Debug/obj/wifi_util.o +rtw_adaptivity_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + application/Debug/obj/wifi_util.o +rtw_adaptivity_th_l2h_ini ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + application/Debug/obj/wifi_util.o +rtw_add_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_addbareq_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_aes_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_aes_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_alloc_etherdev ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_alloc_etherdev_with_old_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_alloc_hwxmits ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_alloc_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_alloc_recvframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtw_alloc_stainfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_alloc_xmitbuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_alloc_xmitbuf_ext ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_alloc_xmitframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_atoi application/Debug/obj/osdep_service.o +rtw_bb_rf_gain_offset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_bridge_tunnel_header ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_buddy_adapter_up ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_build_mgnt_frame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_c2h_wk_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_calculate_wlan_pkt_size_by_attribue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_cancel_all_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_cancel_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_check_bcn_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_check_beacon_data ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_check_network_type ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_chk_hi_queue_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_clearstakey_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_cmd_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_cmd_filter ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_cmd_thread ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_config_map_read ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_config_map_write ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_count_tx_stats ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_create_task application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_create_worker_thread application/Debug/obj/osdep_service.o +rtw_createbss_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_deinit_xqueue application/Debug/obj/osdep_service.o +rtw_del_mlme_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_del_sta ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_del_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_delete_task application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_delete_worker_thread application/Debug/obj/osdep_service.o +rtw_dequeue_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_dequeue_recvbuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_dequeue_xframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_dev_remove ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_disassoc_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_disassoc_cmd_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_do_join ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) +rtw_down_sema application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + application/Debug/obj/ethernet_mii.o +rtw_down_timeout_sema application/Debug/obj/osdep_service.o + application/Debug/obj/wifi_conf.o +rtw_drv_entry ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_drv_halt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_drv_if2_free ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_drv_if2_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_drv_if2_stop ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_drv_probe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_drvextra_cmd_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_dummy_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_dump_xframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_dynamic_check_timer_handlder ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_dynamic_chk_wk_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_efuse_access ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) +rtw_efuse_map_read ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_efuse_map_write ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_end_of_queue_search application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_endofpktfile ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) +rtw_enqueue_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_enqueue_recvbuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_enqueue_recvbuf_to_head ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_enqueue_recvframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_enter_critical application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + application/Debug/obj/tcm_heap.o + application/Debug/obj/device_lock.o + application/Debug/obj/atcmd_lwip.o +rtw_enter_critical_bh application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_enter_critical_from_isr application/Debug/obj/osdep_service.o +rtw_enter_critical_mutex application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +rtw_ex_get ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_ex_get_drv_ability ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_ex_set ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_exit_critical application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + application/Debug/obj/tcm_heap.o + application/Debug/obj/device_lock.o + application/Debug/obj/atcmd_lwip.o +rtw_exit_critical_bh application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_exit_critical_from_isr application/Debug/obj/osdep_service.o +rtw_exit_critical_mutex application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +rtw_find_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_flash_read ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_flash_write ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_free_all_stainfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_free_assoc_resources ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_free_buf_pending_queue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_free_cmd_obj ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_free_cmd_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_free_drv_sw ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_free_evt_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_free_hwxmits ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_free_mlme_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_free_mlme_priv_ie_data ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_free_netdev ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_free_network_nolock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_free_network_queue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_free_pwrctrl_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_free_recvframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +rtw_free_recvframe_queue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_free_sec_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_free_sema application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + application/Debug/obj/ethernet_mii.o + application/Debug/obj/wifi_conf.o +rtw_free_stainfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_free_uc_swdec_pending_queue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_free_xmitbuf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_free_xmitbuf_ext ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_free_xmitframe ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_free_xmitframe_queue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +rtw_fwdbg_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_generate_bcn_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_generate_random_ibss ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_getFreeHeapSize application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_get_auto_channel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_get_bcmc_stainfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_bcn_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_get_beacon_interval_from_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_bit_value_from_ieee_value ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_capability ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_capability_from_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_chip_endian ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_get_cipher_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) +rtw_get_current_time application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_lwip.o +rtw_get_encrypt_decrypt_from_registrypriv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_get_ff_hwaddr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_get_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_oldest_wlan_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_get_passing_time_ms application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_get_random_bytes application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) + application/Debug/obj/ssl_client.o +rtw_get_rateset_len ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_scheduler_state application/Debug/obj/osdep_service.o +rtw_get_sec_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_get_sta_pending ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_get_stainfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_time_interval_ms application/Debug/obj/osdep_service.o +rtw_get_timestampe_from_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_get_wpa2_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_get_wpa_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_get_wps_attr_content ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_get_wps_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_hal_add_ra_tid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_hal_chip_configure ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_hal_clear_interrupt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_clone_data ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_hal_def_value_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_hal_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_hal_disable_interrupt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_hal_dm_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_hal_dm_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_hal_dm_watchdog ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_hal_enable_interrupt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_hal_fill_fake_txdesc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_fill_h2c_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_free_data ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_hal_free_recv_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_free_xmit_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_hal_get_def_var ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_hal_get_hwreg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_hal_get_odm_var ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_hal_get_txbuff_rsvd_page_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_inirp_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_hal_inirp_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_hal_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_hal_init_recv_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_init_xmit_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_hal_interrupt_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) +rtw_hal_irp_reset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) +rtw_hal_macid_sleep ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_hal_macid_wakeup ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_hal_mgnt_xmit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_hal_read_bbreg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_hal_read_chip_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_hal_read_chip_version ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_hal_read_rfreg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) +rtw_hal_recv_tasklet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_set_bwmode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +rtw_hal_set_chan ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +rtw_hal_set_chnl_bw ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) +rtw_hal_set_def_var ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_hal_set_hwreg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_hal_set_odm_var ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_hal_set_wowlan_fw ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_start_thread ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_hal_stop_thread ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_hal_update_ra_mask ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_RaInfo.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +rtw_hal_update_txdesc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) +rtw_hal_write_bbreg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_hal_write_rfreg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) +rtw_hal_xmit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_handle_tkip_mic_err ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_hostapd_mlme_rx ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +rtw_ieee802_11_parse_elems ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_if_up ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) +rtw_indicate_connect ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_indicate_disconnect ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_indicate_scan_done ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_indicate_sta_assoc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_indicate_sta_disassoc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_indicate_wx_assoc_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_indicate_wx_disassoc_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_init_bcmc_stainfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_init_cmd_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_init_default_value ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_init_drv_sw ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_init_evt_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_init_hwxmits ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_init_io_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_init_listhead application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_init_mlme_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_init_mlme_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_init_netdev ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_init_netdev_name ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_init_pwrctrl_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_init_queue application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_init_recv_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +rtw_init_sec_priv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_init_sema application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + application/Debug/obj/ethernet_mii.o + application/Debug/obj/wifi_conf.o +rtw_init_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_init_xqueue application/Debug/obj/osdep_service.o +rtw_initmac ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) +rtw_interrupt_thread ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_ioctl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_is_channel_set_contains_channel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_is_list_empty application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_is_same_ibss ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) +rtw_issue_addbareq_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_join_status application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o +rtw_join_timeout_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_joinbss_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_joinbss_cmd_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_joinbss_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_joinbss_event_prehandle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_joinbss_reset ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_linked_check ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_list_delete application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_list_insert_head application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +rtw_list_insert_tail application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_lps_ctrl_wk_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_macaddr_cfg ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_make_wlanhdr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_malloc application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wifi_simple_config.o +rtw_malloc2d application/Debug/obj/osdep_service.o +rtw_mdelay_os application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_memcmp application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_memcpy application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + application/Debug/obj/ethernet_mii.o + application/Debug/obj/lwip_intf.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_lwip.o +rtw_memset application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o +rtw_mfree application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +rtw_mfree2d application/Debug/obj/osdep_service.o +rtw_mfree_mlme_priv_lock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_mfree_recv_priv_lock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_mfree_sta_priv_lock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +rtw_mfree_stainfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) +rtw_mfree_xmit_priv_lock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_modular64 application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_ms_to_systime application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + application/Debug/obj/freertos_service.o +rtw_msleep_os application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_lwip.o +rtw_mutex_free application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_mutex_get application/Debug/obj/osdep_service.o + application/Debug/obj/ethernet_mii.o +rtw_mutex_get_timeout application/Debug/obj/osdep_service.o + application/Debug/obj/device_lock.o +rtw_mutex_init application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + application/Debug/obj/ethernet_mii.o + application/Debug/obj/device_lock.o +rtw_mutex_put application/Debug/obj/osdep_service.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/device_lock.o +rtw_netif_queue_stopped application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_netif_start_queue application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_netif_stop_queue application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_netif_wake_queue application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_observequeue_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_os_can_xmit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) +rtw_os_indicate_connect ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_os_indicate_disconnect ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_os_indicate_scan_done ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_os_pkt_complete ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_os_recv_resource_alloc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_os_recv_resource_free ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_os_recv_resource_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_os_recvbuf_resource_alloc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +rtw_os_recvbuf_resource_free ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +rtw_os_xmit_complete ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_os_xmit_resource_alloc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_os_xmit_resource_free ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_os_xmit_schedule ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_parse_wpa2_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_parse_wpa_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ieee80211.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_pm_get_lps_dtim ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_pm_set_ips ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +rtw_pm_set_lps ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) +rtw_pm_set_lps_dtim ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_pm_set_tdma_param ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_pop_from_xqueue application/Debug/obj/osdep_service.o +rtw_port_switch_chk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_power_percentage_idx ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_ps_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_ps_enable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_ps_processor ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_push_to_xqueue application/Debug/obj/osdep_service.o +rtw_put_snap ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_pwr_unassociated_idle ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_queue_empty application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_ratemask_read32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_ratemask_read8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_ratemask_write32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_ratemask_write8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_read16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_read32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtw_read8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +rtw_read_port ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) +rtw_recv_entry ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtw_recv_indicatepkt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_recv_tasklet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_release_wakelock application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_pmu_task.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_remainder_len ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) +rtw_reordering_ctrl_timeout_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +rtw_reset_drv_sw ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_reset_securitypriv ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_restruct_sec_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_restruct_wmm_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_restructure_ht_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_rfc1042_header ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_rpt_h_addr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_rpt_timer_cfg_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_scan_timeout_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_sctx_chk_waring_status ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_sctx_done ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtw_sctx_done_err ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_sec_to_systime application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_seccalctkipmic ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_secgetmic ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_secmicappend ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_secmicsetkey ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_select_and_join_from_scanned_queue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) +rtw_send_mgnt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_set_802_11_add_wep ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_set_802_11_authentication_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_set_802_11_bssid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_set_802_11_bssid_list_scan ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_set_802_11_infrastructure_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_set_802_11_ssid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_set_auth ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) +rtw_set_channel_plan_cmd_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_set_chip_endian ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) +rtw_set_chplan_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_set_fixed_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_set_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_set_key ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +rtw_set_ps_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_set_rpwm ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_set_sta_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_set_supported_rate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_set_timer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_set_tx_chksum_offload ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_set_wpa_ie ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_setopmode_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_setstaKey_cmdrsp_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_setstakey_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +rtw_signal_stat_timer_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_sitesurvey_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) +rtw_spin_lock application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_spin_unlock application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_spinlock_free application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +rtw_spinlock_init application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + application/Debug/obj/tcm_heap.o +rtw_spinlock_irqsave application/Debug/obj/osdep_service.o +rtw_spinunlock_irqsave application/Debug/obj/osdep_service.o +rtw_sta_flush ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_stadel_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_start_drv_threads ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_stassoc_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_stassoc_hw_rpt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_stop_drv_threads ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_survey_cmd_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_survey_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_surveydone_event_callback ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_systime_to_ms application/Debug/obj/osdep_service.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_lwip.o +rtw_systime_to_sec application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_thread_enter application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_thread_exit application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_timerChangePeriod application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_timerCreate application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_timerDelete application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_timerIsTimerActive application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_timerStop application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +rtw_tkip_countermeasure ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +rtw_tkip_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_tkip_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_txframes_pending ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtw_txframes_sta_ac_pending ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_txframes_update_attrib_vcs_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_txrpt_read16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_txrpt_read32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_txrpt_read8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_txrpt_read_1b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_txrpt_write16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_txrpt_write32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_txrpt_write8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_txrpt_write_1b ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) +rtw_udelay_os application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rf6052.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + application/Debug/obj/ethernet_mii.o +rtw_up_sema application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_isr.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + application/Debug/obj/wifi_conf.o +rtw_up_sema_from_isr application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_intf.o) + application/Debug/obj/ethernet_mii.o +rtw_update_ht_cap ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_update_protection ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_update_scanned_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_use_tkipkey_handler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) +rtw_usleep_os application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_vmalloc application/Debug/obj/osdep_service.o +rtw_vmfree application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +rtw_wakeup_task application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +rtw_wep_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +rtw_wep_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_wifi_manager_deinit application/Debug/obj/wifi_ind.o +rtw_write16 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtw_write32 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_ACS.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +rtw_write8 ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPwrSeqCmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_dm.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_phycfg.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) +rtw_write_port ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_io.o) +rtw_wx_get_passphrase ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_wx_set_ap_essid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +rtw_xmit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) +rtw_xmit_classifier ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_xmit_data ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +rtw_xmit_entry ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) +rtw_xmit_mgnt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_xmit_tasklet ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_intfs.o) +rtw_xmitframe_coalesce ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +rtw_xmitframe_enqueue ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +rtw_yield_os application/Debug/obj/osdep_service.o +rtw_zmalloc application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_hci_intf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_cmd.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_efuse.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +rtw_zvmalloc application/Debug/obj/osdep_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_halinit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(phydm_interface.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(netdev.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_sta_mgt.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +save_and_cli application/Debug/obj/freertos_service.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/lwip_intf.o +sc_api_fun ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +scalbn /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-s_scalbn.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libm.a(lib_a-e_pow.o) +search_max_mac_id ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +seek_node application/Debug/obj/atcmd_lwip.o +send_beacon ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +serial_baud application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +serial_break_clear application/Debug/obj/serial_api.o +serial_break_set application/Debug/obj/serial_api.o +serial_clear application/Debug/obj/serial_api.o +serial_clear_rx application/Debug/obj/serial_api.o +serial_clear_tx application/Debug/obj/serial_api.o +serial_disable application/Debug/obj/serial_api.o +serial_enable application/Debug/obj/serial_api.o +serial_format application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +serial_free application/Debug/obj/serial_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_ymodem.o +serial_getc application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +serial_hook_lock application/Debug/obj/serial_api.o +serial_init application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +serial_irq_handler application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +serial_irq_set application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +serial_pinout_tx application/Debug/obj/serial_api.o +serial_putc application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_ymodem.o +serial_raed_lsr application/Debug/obj/serial_api.o +serial_raed_msr application/Debug/obj/serial_api.o +serial_readable application/Debug/obj/serial_api.o +serial_recv_blocked application/Debug/obj/serial_api.o +serial_recv_comp_handler application/Debug/obj/serial_api.o +serial_recv_stream application/Debug/obj/serial_api.o +serial_recv_stream_abort application/Debug/obj/serial_api.o +serial_recv_stream_dma application/Debug/obj/serial_api.o +serial_recv_stream_dma_timeout application/Debug/obj/serial_api.o +serial_recv_stream_timeout application/Debug/obj/serial_api.o +serial_rx_fifo_level application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o +serial_send_blocked application/Debug/obj/serial_api.o +serial_send_comp_handler application/Debug/obj/serial_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_adapter.o +serial_send_stream application/Debug/obj/serial_api.o +serial_send_stream_abort application/Debug/obj/serial_api.o +serial_send_stream_dma application/Debug/obj/serial_api.o + application/Debug/obj/uart_socket.o + application/Debug/obj/uart_adapter.o +serial_set_flow_control application/Debug/obj/serial_api.o + application/Debug/obj/example_uart_atcmd.o +serial_writable application/Debug/obj/serial_api.o +setIqkMatrix_8195A ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(HalPhyRf_8195A.o) +set_channel_bwmode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_pwrctrl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +set_chplan_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +set_eap_phase application/Debug/obj/wifi_eap_config.o +set_hidden_ssid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + application/Debug/obj/wifi_conf.o +set_opmode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +set_pll_reserved application/Debug/obj/freertos_pmu.o +set_signature application/Debug/obj/uart_ymodem.o +set_sta_rate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +set_stakey_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +set_tx_beacon_cmd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +set_wpa_global_PSK ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) +setauth_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +setkey_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +setopmode_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +sha1 application/Debug/obj/sha1.o + application/Debug/obj/md_wrap.o +sha1_finish application/Debug/obj/sha1.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha1_free application/Debug/obj/sha1.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha1_hmac application/Debug/obj/sha1.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha1_hmac_finish application/Debug/obj/sha1.o + application/Debug/obj/md_wrap.o +sha1_hmac_reset application/Debug/obj/sha1.o + application/Debug/obj/md_wrap.o +sha1_hmac_starts application/Debug/obj/sha1.o + application/Debug/obj/md_wrap.o +sha1_hmac_update application/Debug/obj/sha1.o + application/Debug/obj/md_wrap.o +sha1_info application/Debug/obj/md_wrap.o + application/Debug/obj/md.o +sha1_init application/Debug/obj/sha1.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha1_process application/Debug/obj/sha1.o + application/Debug/obj/md_wrap.o +sha1_starts application/Debug/obj/sha1.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha1_update application/Debug/obj/sha1.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha224_info application/Debug/obj/md_wrap.o + application/Debug/obj/md.o +sha256 application/Debug/obj/sha256.o + application/Debug/obj/md_wrap.o +sha256_finish application/Debug/obj/sha256.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha256_free application/Debug/obj/sha256.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha256_hmac application/Debug/obj/sha256.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha256_hmac_finish application/Debug/obj/sha256.o + application/Debug/obj/md_wrap.o +sha256_hmac_reset application/Debug/obj/sha256.o + application/Debug/obj/md_wrap.o +sha256_hmac_starts application/Debug/obj/sha256.o + application/Debug/obj/md_wrap.o +sha256_hmac_update application/Debug/obj/sha256.o + application/Debug/obj/md_wrap.o +sha256_info application/Debug/obj/md_wrap.o + application/Debug/obj/md.o +sha256_init application/Debug/obj/sha256.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha256_process application/Debug/obj/sha256.o + application/Debug/obj/md_wrap.o +sha256_starts application/Debug/obj/sha256.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha256_update application/Debug/obj/sha256.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha384_info application/Debug/obj/md_wrap.o + application/Debug/obj/md.o +sha512 application/Debug/obj/sha512.o + application/Debug/obj/md_wrap.o +sha512_finish application/Debug/obj/sha512.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha512_free application/Debug/obj/sha512.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha512_hmac application/Debug/obj/sha512.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha512_hmac_finish application/Debug/obj/sha512.o + application/Debug/obj/md_wrap.o +sha512_hmac_reset application/Debug/obj/sha512.o + application/Debug/obj/md_wrap.o +sha512_hmac_starts application/Debug/obj/sha512.o + application/Debug/obj/md_wrap.o +sha512_hmac_update application/Debug/obj/sha512.o + application/Debug/obj/md_wrap.o +sha512_info application/Debug/obj/md_wrap.o + application/Debug/obj/md.o +sha512_init application/Debug/obj/sha512.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha512_process application/Debug/obj/sha512.o + application/Debug/obj/md_wrap.o +sha512_starts application/Debug/obj/sha512.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +sha512_update application/Debug/obj/sha512.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/md_wrap.o +simple_config_callback application/Debug/obj/wifi_simple_config.o +simple_config_lib_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +simple_config_lib_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +simple_config_result application/Debug/obj/wifi_simple_config.o +simple_config_status ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +simple_config_terminate application/Debug/obj/wifi_simple_config.o +simple_config_test application/Debug/obj/wifi_simple_config.o + application/Debug/obj/uart_adapter.o +simple_strtol ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + application/Debug/obj/tcptest.o +simple_strtoul ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/atcmd_sys.o +siprintf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) +siscanf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) +site_survey ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +sitesurvey_cmd_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +skb_assign_buf ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +skb_clone ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +skb_copy ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +skb_data_pool ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +skb_end_pointer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +skb_fail_get_and_rst ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +skb_fail_inc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +skb_pool ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +skb_pull ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + application/Debug/obj/lwip_intf.o +skb_put ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + application/Debug/obj/lwip_intf.o +skb_reserve ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) +skb_set_tail_pointer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +skb_tail_pointer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) +skbbuf_used_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +skbdata_used_num ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_skbuff.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) +skip_atoi application/Debug/obj/stdlib_patch.o +skip_spaces application/Debug/obj/stdlib_patch.o +sleep_ex application/Debug/obj/sleep.o +sleep_ex_selective application/Debug/obj/sleep.o + application/Debug/obj/freertos_pmu.o +sntp_gen_system_time application/Debug/obj/sntp.o +sntp_get_lasttime application/Debug/obj/sntp.o +sntp_init application/Debug/obj/sntp.o +sntp_stop application/Debug/obj/sntp.o +socket_close_all application/Debug/obj/atcmd_lwip.o +softAP_simpleConfig_parse ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +spdio_deinit application/Debug/obj/spdio_api.o +spdio_init application/Debug/obj/spdio_api.o +spdio_rx_done_cb application/Debug/obj/spdio_api.o +spdio_structinit application/Debug/obj/spdio_api.o +spdio_tx application/Debug/obj/spdio_api.o +spdio_tx_done_cb application/Debug/obj/spdio_api.o +spi_bus_tx_done_callback application/Debug/obj/spi_api.o +spi_bus_tx_done_irq_hook application/Debug/obj/spi_api.o +spi_busy application/Debug/obj/spi_api.o +spi_disable application/Debug/obj/spi_api.o +spi_enable application/Debug/obj/spi_api.o +spi_flush_rx_fifo application/Debug/obj/spi_api.o +spi_format application/Debug/obj/spi_api.o +spi_free application/Debug/obj/spi_api.o +spi_frequency application/Debug/obj/spi_api.o +spi_init application/Debug/obj/spi_api.o +spi_irq_hook application/Debug/obj/spi_api.o +spi_master_read_stream application/Debug/obj/spi_api.o +spi_master_read_stream_dma application/Debug/obj/spi_api.o +spi_master_write application/Debug/obj/spi_api.o +spi_master_write_read_stream application/Debug/obj/spi_api.o +spi_master_write_read_stream_dma application/Debug/obj/spi_api.o +spi_master_write_stream application/Debug/obj/spi_api.o +spi_master_write_stream_dma application/Debug/obj/spi_api.o +spi_rx_done_callback application/Debug/obj/spi_api.o +spi_slave_read application/Debug/obj/spi_api.o +spi_slave_read_stream application/Debug/obj/spi_api.o +spi_slave_read_stream_dma application/Debug/obj/spi_api.o +spi_slave_read_stream_dma_timeout application/Debug/obj/spi_api.o +spi_slave_read_stream_timeout application/Debug/obj/spi_api.o +spi_slave_receive application/Debug/obj/spi_api.o +spi_slave_select application/Debug/obj/spi_api.o +spi_slave_select_bypin application/Debug/obj/spi_api.o +spi_slave_write application/Debug/obj/spi_api.o +spi_slave_write_stream application/Debug/obj/spi_api.o +spi_slave_write_stream_dma application/Debug/obj/spi_api.o +spi_tx_done_callback application/Debug/obj/spi_api.o +sprintf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sprintf.o) + application/Debug/obj/cJSON.o +srand /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-rand.o) +sscanf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/x509.o + application/Debug/obj/net.o + application/Debug/obj/webserver.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o +ssl_cache_free application/Debug/obj/ssl_cache.o +ssl_cache_get application/Debug/obj/ssl_cache.o +ssl_cache_init application/Debug/obj/ssl_cache.o +ssl_cache_set application/Debug/obj/ssl_cache.o +ssl_cache_set_max_entries application/Debug/obj/ssl_cache.o +ssl_check_cert_usage application/Debug/obj/ssl_tls.o +ssl_ciphersuite_from_id application/Debug/obj/ssl_ciphersuites.o + application/Debug/obj/ssl_cli.o +ssl_ciphersuite_from_string application/Debug/obj/ssl_ciphersuites.o +ssl_client_ext_free application/Debug/obj/ssl_client_ext.o +ssl_client_ext_init application/Debug/obj/ssl_client_ext.o +ssl_client_ext_setup application/Debug/obj/ssl_client_ext.o +ssl_close_notify application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_client.o +ssl_derive_keys application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_fetch_input application/Debug/obj/ssl_tls.o +ssl_flush_output application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_free application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_get_bytes_avail application/Debug/obj/ssl_tls.o +ssl_get_ciphersuite application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_client.o +ssl_get_ciphersuite_id application/Debug/obj/ssl_ciphersuites.o +ssl_get_ciphersuite_name application/Debug/obj/ssl_ciphersuites.o + application/Debug/obj/ssl_tls.o +ssl_get_ciphersuite_sig_pk_alg application/Debug/obj/ssl_ciphersuites.o +ssl_get_peer_cert application/Debug/obj/ssl_tls.o +ssl_get_session application/Debug/obj/ssl_tls.o +ssl_get_verify_result application/Debug/obj/ssl_tls.o +ssl_get_version application/Debug/obj/ssl_tls.o +ssl_handshake application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_handshake_client_step application/Debug/obj/ssl_cli.o + application/Debug/obj/ssl_tls.o +ssl_handshake_free application/Debug/obj/ssl_tls.o +ssl_handshake_step application/Debug/obj/ssl_tls.o +ssl_handshake_wrapup application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_init application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_legacy_renegotiation application/Debug/obj/ssl_tls.o +ssl_list_ciphersuites application/Debug/obj/ssl_ciphersuites.o + application/Debug/obj/ssl_tls.o +ssl_md_alg_from_hash application/Debug/obj/ssl_tls.o +ssl_optimize_checksum application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_parse_certificate application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_parse_change_cipher_spec application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_parse_finished application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_pk_alg_from_sig application/Debug/obj/ssl_tls.o +ssl_read application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_read_record application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_renegotiate application/Debug/obj/ssl_tls.o +ssl_send_alert_message application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_send_fatal_handshake_failure application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_session_free application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cache.o +ssl_session_init application/Debug/obj/ssl_tls.o +ssl_session_reset application/Debug/obj/ssl_tls.o +ssl_set_authmode application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_set_bio application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_set_ca_chain application/Debug/obj/ssl_tls.o +ssl_set_ciphersuites application/Debug/obj/ssl_tls.o +ssl_set_ciphersuites_for_version application/Debug/obj/ssl_tls.o +ssl_set_dbg application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_client.o +ssl_set_endpoint application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_set_hostname application/Debug/obj/ssl_tls.o +ssl_set_max_frag_len application/Debug/obj/ssl_tls.o +ssl_set_max_version application/Debug/obj/ssl_tls.o +ssl_set_min_version application/Debug/obj/ssl_tls.o +ssl_set_own_cert application/Debug/obj/ssl_tls.o +ssl_set_own_cert_alt application/Debug/obj/ssl_tls.o +ssl_set_own_cert_rsa application/Debug/obj/ssl_tls.o +ssl_set_renegotiation application/Debug/obj/ssl_tls.o +ssl_set_renegotiation_enforced application/Debug/obj/ssl_tls.o +ssl_set_rng application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_set_session application/Debug/obj/ssl_tls.o +ssl_set_session_cache application/Debug/obj/ssl_tls.o +ssl_set_session_ticket_lifetime application/Debug/obj/ssl_tls.o +ssl_set_session_tickets application/Debug/obj/ssl_tls.o +ssl_set_sni application/Debug/obj/ssl_tls.o +ssl_set_truncated_hmac application/Debug/obj/ssl_tls.o +ssl_set_verify application/Debug/obj/ssl_tls.o +ssl_sig_from_pk application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_transform_free application/Debug/obj/ssl_tls.o +ssl_write application/Debug/obj/ssl_tls.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/ssl_client.o +ssl_write_certificate application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_write_change_cipher_spec application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_write_finished application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +ssl_write_record application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cli.o +sta2ap_data_frame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +sta2sta_data_frame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +sta_gw application/Debug/obj/atcmd_wifi.o + application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_conf.o +sta_info_update ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +sta_ip application/Debug/obj/atcmd_wifi.o + application/Debug/obj/lwip_netconf.o +sta_netmask application/Debug/obj/atcmd_wifi.o + application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_conf.o +standby_wakeup_event_add application/Debug/obj/sleep.o +standby_wakeup_event_del application/Debug/obj/sleep.o +start_ap_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) +start_clnt_assoc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +start_clnt_auth ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +start_clnt_join ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +start_cloud_link application/Debug/obj/cloud_link.o + application/Debug/obj/wigadget.o +start_local_link application/Debug/obj/wigadget.o +start_log_service application/Debug/obj/log_service.o +start_next_round application/Debug/obj/uart_ymodem.o +start_ssl_client application/Debug/obj/ssl_client.o +start_web_server application/Debug/obj/webserver.o +stop_ap_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ioctl_set.o) +stop_simple_config application/Debug/obj/wifi_simple_config.o +stop_sta_xmit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +stop_web_server application/Debug/obj/webserver.o +strcasecmp /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcasecmp.o) + application/Debug/obj/version_features.o + application/Debug/obj/ssl_ciphersuites.o + application/Debug/obj/md.o + application/Debug/obj/cipher.o +strchr /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strchr.o) + application/Debug/obj/cJSON.o +strcmp /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcmp.o) + application/Debug/obj/ff_driver.o +strcpy /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strcpy.o) + application/Debug/obj/cJSON.o +strlen /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strlen.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf_i.o) + /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-sscanf.o) + application/Debug/obj/cJSON.o + application/Debug/obj/wifi_simple_config.o +strncmp /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strncmp.o) + application/Debug/obj/cJSON.o +strtok_r /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtok_r.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o +strtol /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtol.o) +strtopsk ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +strtoul /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-strtoul.o) +support_short_GI ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +supported_ciphers application/Debug/obj/cipher_wrap.o + application/Debug/obj/cipher.o +survey_timer_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +sw_rtc_tick_handler application/Debug/obj/rtc_api.o +switch_power_saving_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(hal_com.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +sys_adc_calibration application/Debug/obj/sys_api.o +sys_arch_mbox_fetch application/Debug/obj/sys_arch.o + application/Debug/obj/lwip_timers.o + application/Debug/obj/api_lib.o +sys_arch_mbox_tryfetch application/Debug/obj/sys_arch.o + application/Debug/obj/api_msg.o +sys_arch_protect application/Debug/obj/sys_arch.o + application/Debug/obj/pbuf.o + application/Debug/obj/memp.o + application/Debug/obj/mem.o + application/Debug/obj/sockets.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o + application/Debug/obj/atcmd_lwip.o +sys_arch_sem_wait application/Debug/obj/sys_arch.o + application/Debug/obj/sys.o + application/Debug/obj/mem.o + application/Debug/obj/tcpip.o + application/Debug/obj/sockets.o + application/Debug/obj/api_lib.o +sys_arch_timeouts application/Debug/obj/sys_arch.o + application/Debug/obj/ethernetif.o +sys_arch_unprotect application/Debug/obj/sys_arch.o + application/Debug/obj/pbuf.o + application/Debug/obj/memp.o + application/Debug/obj/mem.o + application/Debug/obj/sockets.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o + application/Debug/obj/atcmd_lwip.o +sys_assert application/Debug/obj/sys_arch.o +sys_clear_ota_signature application/Debug/obj/sys_api.o +sys_init application/Debug/obj/sys_arch.o + application/Debug/obj/init.o +sys_is_sdram_power_on application/Debug/obj/sys_api.o + application/Debug/obj/freertos_pmu.o +sys_jiffies application/Debug/obj/sys_arch.o +sys_jtag_off application/Debug/obj/sys_api.o +sys_log_uart_off application/Debug/obj/sys_api.o +sys_log_uart_on application/Debug/obj/sys_api.o +sys_mbox_free application/Debug/obj/sys_arch.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +sys_mbox_new application/Debug/obj/sys_arch.o + application/Debug/obj/tcpip.o + application/Debug/obj/api_msg.o +sys_mbox_post application/Debug/obj/sys_arch.o + application/Debug/obj/tcpip.o + application/Debug/obj/api_lib.o +sys_mbox_set_invalid application/Debug/obj/sys_arch.o + application/Debug/obj/api_msg.o +sys_mbox_trypost application/Debug/obj/sys_arch.o + application/Debug/obj/tcpip.o + application/Debug/obj/api_msg.o +sys_mbox_valid application/Debug/obj/sys_arch.o + application/Debug/obj/tcpip.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +sys_msleep application/Debug/obj/sys.o +sys_now application/Debug/obj/sys_arch.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +sys_recover_ota_signature application/Debug/obj/sys_api.o +sys_reset application/Debug/obj/sys_api.o + application/Debug/obj/atcmd_sys.o +sys_sdram_off application/Debug/obj/sys_api.o +sys_sem_free application/Debug/obj/sys_arch.o + application/Debug/obj/sys.o + application/Debug/obj/sockets.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +sys_sem_new application/Debug/obj/sys_arch.o + application/Debug/obj/sys.o + application/Debug/obj/mem.o + application/Debug/obj/sockets.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +sys_sem_set_invalid application/Debug/obj/sys_arch.o + application/Debug/obj/api_msg.o +sys_sem_signal application/Debug/obj/sys_arch.o + application/Debug/obj/mem.o + application/Debug/obj/sockets.o + application/Debug/obj/api_msg.o +sys_sem_valid application/Debug/obj/sys_arch.o + application/Debug/obj/api_msg.o + application/Debug/obj/api_lib.o +sys_thread_delete application/Debug/obj/sys_arch.o +sys_thread_new application/Debug/obj/sys_arch.o + application/Debug/obj/uart_adapter.o +sys_thread_new_tcm application/Debug/obj/sys_arch.o + application/Debug/obj/tcpip.o +sys_timeout application/Debug/obj/lwip_timers.o + application/Debug/obj/sntp.o + application/Debug/obj/ethernetif.o + application/Debug/obj/tcpip.o +sys_timeouts_init application/Debug/obj/lwip_timers.o + application/Debug/obj/init.o +sys_timeouts_mbox_fetch application/Debug/obj/lwip_timers.o + application/Debug/obj/tcpip.o +sys_untimeout application/Debug/obj/lwip_timers.o + application/Debug/obj/sntp.o + application/Debug/obj/tcpip.o +tcm_heap application/Debug/obj/tcm_heap.o +tcm_heap_allocmem application/Debug/obj/tcm_heap.o +tcm_heap_calloc application/Debug/obj/tcm_heap.o + application/Debug/obj/osdep_service.o +tcm_heap_dump application/Debug/obj/tcm_heap.o +tcm_heap_free application/Debug/obj/tcm_heap.o + application/Debug/obj/osdep_service.o +tcm_heap_freeSpace application/Debug/obj/tcm_heap.o +tcm_heap_freemem application/Debug/obj/tcm_heap.o +tcm_heap_init application/Debug/obj/tcm_heap.o +tcm_heap_malloc application/Debug/obj/tcm_heap.o + application/Debug/obj/osdep_service.o + application/Debug/obj/freertos_service.o + application/Debug/obj/sys_arch.o + application/Debug/obj/rtl_consol.o + application/Debug/obj/log_service.o +tcm_heap_testRun application/Debug/obj/tcm_heap.o +tcp_abandon application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_abort application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o + application/Debug/obj/netif.o + application/Debug/obj/api_msg.o +tcp_accept application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_active_pcbs application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o + application/Debug/obj/pbuf.o + application/Debug/obj/netif.o + application/Debug/obj/lwip_timers.o +tcp_active_pcbs_changed application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_alloc application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_arg application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_backoff application/Debug/obj/tcp.o +tcp_bind application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_bound_pcbs application/Debug/obj/tcp.o +tcp_client_data application/Debug/obj/tcptest.o +tcp_client_func application/Debug/obj/tcptest.o +tcp_close application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_connect application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_debug_state_str application/Debug/obj/tcp.o +tcp_eff_send_mss application/Debug/obj/tcp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o +tcp_enqueue_flags application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/tcp.o +tcp_err application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_fasttmr application/Debug/obj/tcp.o +tcp_init application/Debug/obj/tcp.o + application/Debug/obj/init.o +tcp_input application/Debug/obj/tcp_in.o + application/Debug/obj/ip.o +tcp_input_pcb application/Debug/obj/tcp_in.o + application/Debug/obj/tcp_out.o +tcp_keepalive application/Debug/obj/tcp_out.o + application/Debug/obj/tcp.o +tcp_listen_pcbs application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o + application/Debug/obj/netif.o +tcp_listen_with_backlog application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_new application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_next_iss application/Debug/obj/tcp.o +tcp_output application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_pcb_lists application/Debug/obj/tcp.o +tcp_pcb_purge application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_pcb_remove application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_persist_backoff application/Debug/obj/tcp.o +tcp_poll application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_process_refused_data application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_recv application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_recv_null application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_recved application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_rexmit application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o +tcp_rexmit_fast application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o +tcp_rexmit_rto application/Debug/obj/tcp_out.o + application/Debug/obj/tcp.o +tcp_rst application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/tcp.o +tcp_seg_copy application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_seg_free application/Debug/obj/tcp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o +tcp_segs_free application/Debug/obj/tcp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o + application/Debug/obj/pbuf.o +tcp_send_empty_ack application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o +tcp_send_fin application/Debug/obj/tcp_out.o + application/Debug/obj/tcp.o +tcp_sent application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_server_data application/Debug/obj/tcptest.o +tcp_server_func application/Debug/obj/tcptest.o +tcp_setprio application/Debug/obj/tcp.o +tcp_shutdown application/Debug/obj/tcp.o + application/Debug/obj/api_msg.o +tcp_slowtmr application/Debug/obj/tcp.o +tcp_state_str application/Debug/obj/tcp.o +tcp_ticks application/Debug/obj/tcp.o + application/Debug/obj/tcp_out.o + application/Debug/obj/tcp_in.o +tcp_timer_needed application/Debug/obj/lwip_timers.o + application/Debug/obj/tcp_in.o + application/Debug/obj/tcp.o +tcp_tmp_pcb application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_tmr application/Debug/obj/tcp.o + application/Debug/obj/lwip_timers.o +tcp_tw_pcbs application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o + application/Debug/obj/lwip_timers.o +tcp_update_rcv_ann_wnd application/Debug/obj/tcp.o + application/Debug/obj/tcp_in.o +tcp_write application/Debug/obj/tcp_out.o + application/Debug/obj/api_msg.o +tcp_zero_window_probe application/Debug/obj/tcp_out.o + application/Debug/obj/tcp.o +tcpip_apimsg application/Debug/obj/tcpip.o + application/Debug/obj/api_lib.o +tcpip_callback_with_block application/Debug/obj/tcpip.o + application/Debug/obj/pbuf.o + application/Debug/obj/sockets.o + application/Debug/obj/api_lib.o +tcpip_callbackmsg_delete application/Debug/obj/tcpip.o +tcpip_callbackmsg_new application/Debug/obj/tcpip.o +tcpip_init application/Debug/obj/tcpip.o + application/Debug/obj/lwip_netconf.o +tcpip_input application/Debug/obj/tcpip.o + application/Debug/obj/lwip_netconf.o +tcpip_timeout application/Debug/obj/tcpip.o + application/Debug/obj/ethernetif.o +tcpip_trycallback application/Debug/obj/tcpip.o +tcpip_untimeout application/Debug/obj/tcpip.o + application/Debug/obj/ethernetif.o +timer_pending ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +timer_table ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +timer_wrapper ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtk_wlan_if.o) +tkip_80211_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) +tkip_80211_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) +tkip_send_mic_failure_report ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +tmp application/Debug/obj/low_level_io.o +translate2dbm ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_rxdesc.o) +tryget_node application/Debug/obj/atcmd_lwip.o +tx_beacon_hdl ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(lxbus_ops.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +ua_debug_print_en application/Debug/obj/uart_adapter.o +ua_exception_sema application/Debug/obj/uart_adapter.o +ua_global_socket application/Debug/obj/uart_adapter.o +ua_gpio_irq_happen application/Debug/obj/uart_adapter.o +ua_print_sema application/Debug/obj/uart_adapter.o +ua_reconnect_ip_change application/Debug/obj/uart_adapter.o +ua_reconnect_started application/Debug/obj/uart_adapter.o +ua_tcp_server_ip application/Debug/obj/uart_adapter.o +ua_wifi_connected application/Debug/obj/uart_adapter.o +uart_at_dma_tx_sema application/Debug/obj/example_uart_atcmd.o +uart_at_rx_wakeup application/Debug/obj/example_uart_atcmd.o +uart_at_send_buf application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_lwip.o +uart_at_send_string application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_sys.o + application/Debug/obj/atcmd_lwip.o +uart_atcmd_main application/Debug/obj/example_uart_atcmd.o +uart_atcmd_module_init application/Debug/obj/example_uart_atcmd.o +uart_atcmd_reinit application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_sys.o +uart_close application/Debug/obj/uart_socket.o +uart_init application/Debug/obj/uart_ymodem.o +uart_irq application/Debug/obj/example_uart_atcmd.o +uart_open application/Debug/obj/uart_socket.o +uart_read application/Debug/obj/uart_socket.o +uart_recvbytetimeout application/Debug/obj/uart_ymodem.o +uart_rx_interrupt_sema application/Debug/obj/wlan_network.o +uart_rxempty application/Debug/obj/uart_ymodem.o +uart_sendbyte application/Debug/obj/uart_ymodem.o +uart_socket application/Debug/obj/uart_socket.o +uart_socket_example application/Debug/obj/uart_socket.o +uart_write application/Debug/obj/uart_socket.o +uart_ymodem application/Debug/obj/uart_ymodem.o +uart_ymodem_deinit application/Debug/obj/uart_ymodem.o +uart_ymodem_init application/Debug/obj/uart_ymodem.o +uartadapter_auto_connect application/Debug/obj/uart_adapter.o +uartadapter_connect_wifi application/Debug/obj/uart_adapter.o +uartadapter_control_get_req_handle application/Debug/obj/uart_adapter.o +uartadapter_control_process application/Debug/obj/uart_adapter.o +uartadapter_control_read_tcp_info_and_connect application/Debug/obj/uart_adapter.o +uartadapter_control_set_req_handle application/Debug/obj/uart_adapter.o +uartadapter_control_write_tcp_info_into_flash application/Debug/obj/uart_adapter.o +uartadapter_disconnect_handler application/Debug/obj/uart_adapter.o +uartadapter_exception_thread application/Debug/obj/uart_adapter.o +uartadapter_flasherase application/Debug/obj/uart_adapter.o +uartadapter_flashread application/Debug/obj/uart_adapter.o +uartadapter_flashwrite application/Debug/obj/uart_adapter.o +uartadapter_gpio_init application/Debug/obj/uart_adapter.o +uartadapter_gpio_irq application/Debug/obj/uart_adapter.o +uartadapter_gpio_led_mode application/Debug/obj/uart_adapter.o +uartadapter_gtimer_timeout_handler application/Debug/obj/uart_adapter.o +uartadapter_init application/Debug/obj/uart_adapter.o +uartadapter_print_irq_rx_count application/Debug/obj/uart_adapter.o +uartadapter_reset_irq_rx_count application/Debug/obj/uart_adapter.o +uartadapter_set_debug_print application/Debug/obj/uart_adapter.o +uartadapter_simple_config application/Debug/obj/uart_adapter.o +uartadapter_socket_init application/Debug/obj/uart_adapter.o +uartadapter_strncmp application/Debug/obj/uart_adapter.o +uartadapter_systemreload application/Debug/obj/uart_adapter.o +uartadapter_tcp_chat_listen_socket_handler application/Debug/obj/uart_adapter.o +uartadapter_tcp_chat_server_thread application/Debug/obj/uart_adapter.o +uartadapter_tcp_chat_socket_handler application/Debug/obj/uart_adapter.o +uartadapter_tcp_control_listen_socket_handler application/Debug/obj/uart_adapter.o +uartadapter_tcp_control_server_thread application/Debug/obj/uart_adapter.o +uartadapter_tcp_control_socket_handler application/Debug/obj/uart_adapter.o +uartadapter_tcp_except_handler application/Debug/obj/uart_adapter.o +uartadapter_tcp_select_restart_handler application/Debug/obj/uart_adapter.o +uartadapter_tcp_select_thread application/Debug/obj/uart_adapter.o +uartadapter_tcp_send_control application/Debug/obj/uart_adapter.o +uartadapter_tcp_send_data application/Debug/obj/uart_adapter.o +uartadapter_tcp_transmit_client_forever_thread application/Debug/obj/uart_adapter.o +uartadapter_tcp_transmit_client_thread application/Debug/obj/uart_adapter.o +uartadapter_tcp_transmit_listen_socket_handler application/Debug/obj/uart_adapter.o +uartadapter_tcp_transmit_server_thread application/Debug/obj/uart_adapter.o +uartadapter_tcp_transmit_socket_handler application/Debug/obj/uart_adapter.o +uartadapter_tcpclient application/Debug/obj/uart_adapter.o +uartadapter_tcpserver application/Debug/obj/uart_adapter.o +uartadapter_uart_baud application/Debug/obj/uart_adapter.o +uartadapter_uart_getpara application/Debug/obj/uart_adapter.o +uartadapter_uart_gpio_wakeup_callback application/Debug/obj/uart_adapter.o +uartadapter_uart_init application/Debug/obj/uart_adapter.o +uartadapter_uart_open application/Debug/obj/uart_adapter.o +uartadapter_uart_para application/Debug/obj/uart_adapter.o +uartadapter_uart_read application/Debug/obj/uart_adapter.o +uartadapter_uart_send_stream_done application/Debug/obj/uart_adapter.o +uartadapter_uart_write application/Debug/obj/uart_adapter.o +uarty_irq application/Debug/obj/uart_ymodem.o +udp_bcast ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +udp_bcast_pin ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +udp_bind application/Debug/obj/udp.o + application/Debug/obj/dhcps.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/api_msg.o +udp_client_data application/Debug/obj/tcptest.o +udp_client_func application/Debug/obj/tcptest.o +udp_client_handler application/Debug/obj/tcptest.o +udp_connect application/Debug/obj/udp.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/api_msg.o +udp_disconnect application/Debug/obj/udp.o + application/Debug/obj/dhcps.o + application/Debug/obj/api_msg.o +udp_init application/Debug/obj/udp.o + application/Debug/obj/init.o +udp_input application/Debug/obj/udp.o + application/Debug/obj/ip.o +udp_mcast ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +udp_mcast_pin ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +udp_new application/Debug/obj/udp.o + application/Debug/obj/sntp.o + application/Debug/obj/dhcps.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/api_msg.o +udp_pcbs application/Debug/obj/udp.o +udp_recv application/Debug/obj/udp.o + application/Debug/obj/sntp.o + application/Debug/obj/dhcps.o + application/Debug/obj/dns.o + application/Debug/obj/dhcp.o + application/Debug/obj/api_msg.o +udp_remove application/Debug/obj/udp.o + application/Debug/obj/sntp.o + application/Debug/obj/dhcps.o + application/Debug/obj/dhcp.o + application/Debug/obj/api_msg.o +udp_send application/Debug/obj/udp.o + application/Debug/obj/api_msg.o +udp_sendto application/Debug/obj/udp.o + application/Debug/obj/sntp.o + application/Debug/obj/dns.o + application/Debug/obj/api_msg.o +udp_sendto_if application/Debug/obj/udp.o + application/Debug/obj/dhcps.o + application/Debug/obj/dhcp.o +udp_server_data application/Debug/obj/tcptest.o +udp_server_func application/Debug/obj/tcptest.o +udp_server_handler application/Debug/obj/tcptest.o +ulPortSetInterruptMask application/Debug/obj/port.o + application/Debug/obj/freertos_service.o + application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/croutine.o + application/Debug/obj/cmsis_os.o +ungetc /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-ungetc.o) +update_IOT_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +update_MCS_rate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +update_TSF ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +update_basic_rate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +update_beacon ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +update_beacon_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +update_bmc_sta_support_rate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +update_capinfo ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +update_hidden_ssid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +update_mgnt_tx_rate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +update_mgntframe_attrib ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +update_network ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +update_ota_local application/Debug/obj/update.o +update_sta_info ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme.o) +update_sta_info_apmode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +update_supported_rate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_hal_init.o) +update_tx_basic_rate ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +update_wireless_mode ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +us_ticker_clear_interrupt application/Debug/obj/us_ticker.o + application/Debug/obj/us_ticker_api.o +us_ticker_disable_interrupt application/Debug/obj/us_ticker.o + application/Debug/obj/us_ticker_api.o +us_ticker_init application/Debug/obj/us_ticker.o + application/Debug/obj/us_ticker_api.o +us_ticker_insert_event application/Debug/obj/us_ticker_api.o +us_ticker_irq_handler application/Debug/obj/us_ticker_api.o + application/Debug/obj/us_ticker.o +us_ticker_read application/Debug/obj/us_ticker.o + application/Debug/obj/freertos_pmu.o + application/Debug/obj/wait_api.o + application/Debug/obj/us_ticker_api.o +us_ticker_remove_event application/Debug/obj/us_ticker_api.o +us_ticker_set_handler application/Debug/obj/us_ticker_api.o +us_ticker_set_interrupt application/Debug/obj/us_ticker.o + application/Debug/obj/us_ticker_api.o +uxListRemove application/Debug/obj/list.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/croutine.o +uxQueueMessagesWaiting application/Debug/obj/queue.o + application/Debug/obj/mailbox.o + application/Debug/obj/freertos_service.o + application/Debug/obj/sys_arch.o +uxQueueMessagesWaitingFromISR application/Debug/obj/queue.o + application/Debug/obj/mailbox.o +uxQueueSpacesAvailable application/Debug/obj/queue.o +uxTaskGetNumberOfTasks application/Debug/obj/tasks.o +uxTaskPriorityGet application/Debug/obj/tasks.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/tcpip.o +uxTaskResetEventItemValue application/Debug/obj/tasks.o + application/Debug/obj/event_groups.o +vApplicationIdleHook application/Debug/obj/port.o + application/Debug/obj/tasks.o +vApplicationStackOverflowHook application/Debug/obj/port.o + application/Debug/obj/tasks.o +vBasicWEBServer application/Debug/obj/webserver.o +vCoRoutineAddToDelayedList application/Debug/obj/croutine.o + application/Debug/obj/queue.o +vCoRoutineSchedule application/Debug/obj/croutine.o +vEventGroupClearBitsCallback application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +vEventGroupDelete application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +vEventGroupSetBitsCallback application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +vListInitialise application/Debug/obj/list.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/croutine.o +vListInitialiseItem application/Debug/obj/list.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/croutine.o +vListInsert application/Debug/obj/list.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/croutine.o +vListInsertEnd application/Debug/obj/list.o + application/Debug/obj/tasks.o + application/Debug/obj/croutine.o +vPortClearInterruptMask application/Debug/obj/port.o + application/Debug/obj/freertos_service.o + application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/croutine.o + application/Debug/obj/cmsis_os.o +vPortDefineHeapRegions application/Debug/obj/heap_5.o +vPortEndScheduler application/Debug/obj/port.o + application/Debug/obj/tasks.o +vPortEnterCritical application/Debug/obj/port.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/sys_arch.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o +vPortExitCritical application/Debug/obj/port.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/sys_arch.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o +vPortFree application/Debug/obj/heap_5.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/xml.o + application/Debug/obj/http_client.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/update.o + application/Debug/obj/tcptest.o + application/Debug/obj/ssl_client.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +vPortSVCHandler application/Debug/obj/port.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +vPortSetExtFree application/Debug/obj/heap_5.o + application/Debug/obj/tcm_heap.o +vPortSetupTimerInterrupt application/Debug/obj/port.o +vPortSuppressTicksAndSleep application/Debug/obj/port.o + application/Debug/obj/tasks.o +vPortYield application/Debug/obj/port.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +vQueueDelete application/Debug/obj/queue.o + application/Debug/obj/webserver.o + application/Debug/obj/osdep_api.o + application/Debug/obj/mailbox.o + application/Debug/obj/freertos_service.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/dhcps.o + application/Debug/obj/sys_arch.o +vQueueWaitForMessageRestricted application/Debug/obj/queue.o + application/Debug/obj/timers.o +vTaskDelay application/Debug/obj/tasks.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_socket.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_eap_config.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +vTaskDelayUntil application/Debug/obj/tasks.o +vTaskDelete application/Debug/obj/tasks.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_socket.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/freertos_service.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/sys_arch.o + application/Debug/obj/wlan_network.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ssl_client.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_lwip.o +vTaskEndScheduler application/Debug/obj/tasks.o +vTaskGetCurrentTCB application/Debug/obj/tasks.o + application/Debug/obj/timers.o + application/Debug/obj/sys_arch.o +vTaskMissedYield application/Debug/obj/tasks.o + application/Debug/obj/queue.o +vTaskPlaceOnEventList application/Debug/obj/tasks.o + application/Debug/obj/queue.o +vTaskPlaceOnEventListRestricted application/Debug/obj/tasks.o + application/Debug/obj/queue.o +vTaskPlaceOnUnorderedEventList application/Debug/obj/tasks.o + application/Debug/obj/event_groups.o +vTaskPriorityInherit application/Debug/obj/tasks.o + application/Debug/obj/queue.o +vTaskPrioritySet application/Debug/obj/tasks.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/tcpip.o + application/Debug/obj/wifi_simple_config.o +vTaskResume application/Debug/obj/tasks.o +vTaskSetTimeOutState application/Debug/obj/tasks.o + application/Debug/obj/queue.o +vTaskStartScheduler application/Debug/obj/tasks.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + application/Debug/obj/main.o + application/Debug/obj/cmsis_os.o +vTaskStepTick application/Debug/obj/tasks.o + application/Debug/obj/freertos_pmu.o + application/Debug/obj/port.o +vTaskSuspend application/Debug/obj/tasks.o +vTaskSuspendAll application/Debug/obj/tasks.o + application/Debug/obj/timers.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/heap_5.o +vTaskSwitchContext application/Debug/obj/tasks.o + application/Debug/obj/port.o +vWFSSVCHandler ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) +validate_recv_ctrl_frame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +validate_recv_data_frame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +validate_recv_frame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +validate_recv_mgnt_frame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +version application/Debug/obj/version.o +version_check_feature application/Debug/obj/version_features.o +version_get_number application/Debug/obj/version.o +version_get_string application/Debug/obj/version.o +version_get_string_full application/Debug/obj/version.o +vfiprintf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) +vfprintf /opt/RTLDUINO_RTL8710AF_GCC/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv7-m/libc_s.a(lib_a-vfprintf.o) +wait application/Debug/obj/wait_api.o +wait_ms application/Debug/obj/wait_api.o +wait_us application/Debug/obj/wait_api.o +wakeup_sta_to_xmit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_ap.o) +watchdog_init application/Debug/obj/wdt_api.o +watchdog_irq_init application/Debug/obj/wdt_api.o +watchdog_refresh application/Debug/obj/wdt_api.o +watchdog_start application/Debug/obj/wdt_api.o +watchdog_stop application/Debug/obj/wdt_api.o +web_atoi application/Debug/obj/webserver.o +webs_sema application/Debug/obj/webserver.o +webs_task application/Debug/obj/webserver.o +webs_terminate application/Debug/obj/webserver.o +wep_80211_decrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) +wep_80211_encrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_security.o) +wext_add_custom_ie application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_add_mac_filter application/Debug/obj/wifi_util.o +wext_deinit_mac_filter application/Debug/obj/wifi_util.o +wext_del_custom_ie application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_del_mac_filter application/Debug/obj/wifi_util.o +wext_del_station application/Debug/obj/wifi_util.o +wext_disable_forwarding application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_disable_powersave application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_enable_forwarding application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_enable_powersave application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_auto_chl application/Debug/obj/wifi_util.o +wext_get_autoreconnect application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_channel application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_drv_ability application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_enc_ext application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_lps_dtim application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_mode application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_eap_config.o + application/Debug/obj/atcmd_wifi.o +wext_get_passphrase application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_rssi application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_scan application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_get_ssid application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_eap_config.o + application/Debug/obj/atcmd_wifi.o +wext_get_tx_power application/Debug/obj/wifi_util.o +wext_init_mac_filter application/Debug/obj/wifi_util.o +wext_private_command application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/log_service.o +wext_private_command_with_retval application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_register_multicast_address application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_send_eapol application/Debug/obj/wifi_util.o +wext_set_adaptivity application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_adaptivity_th_l2h_ini application/Debug/obj/wifi_util.o +wext_set_ap_ssid application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_auth_param application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_autoreconnect application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_bssid application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_ch_deauth application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_channel application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_country application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_gen_ie application/Debug/obj/wifi_util.o +wext_set_key_ext application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_lps_dtim application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_mode application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_passphrase application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_pscan_channel application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_scan application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_ssid application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_sta_num application/Debug/obj/wifi_util.o + application/Debug/obj/atcmd_wifi.o +wext_set_tdma_param application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_set_tos_value application/Debug/obj/wifi_util.o + application/Debug/obj/tcptest.o +wext_unregister_multicast_address application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_update_custom_ie application/Debug/obj/wifi_util.o + application/Debug/obj/wifi_conf.o +wext_wlan_indicate application/Debug/obj/wifi_util.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) +whc_fix_channel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +whc_unfix_channel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(wifi_simple_config_parser.o) +wifi_add_custom_ie application/Debug/obj/wifi_conf.o +wifi_add_packet_filter application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o +wifi_autoreconnect_hdl application/Debug/obj/wifi_conf.o +wifi_config_autoreconnect application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o +wifi_connect application/Debug/obj/wifi_conf.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_wifi.o +wifi_connect_bssid application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_wifi.o +wifi_del_custom_ie application/Debug/obj/wifi_conf.o +wifi_disable_forwarding application/Debug/obj/wifi_conf.o +wifi_disable_packet_filter application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o +wifi_disable_powersave application/Debug/obj/wifi_conf.o +wifi_disconnect application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_eap_config.o + application/Debug/obj/atcmd_wifi.o +wifi_enable_forwarding application/Debug/obj/wifi_conf.o +wifi_enable_packet_filter application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o +wifi_enable_powersave application/Debug/obj/wifi_conf.o +wifi_enter_promisc_mode application/Debug/obj/wifi_conf.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o +wifi_get_ap_info application/Debug/obj/wifi_conf.o +wifi_get_associated_client_list application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +wifi_get_autoreconnect application/Debug/obj/wifi_conf.o +wifi_get_channel application/Debug/obj/wifi_conf.o +wifi_get_drv_ability application/Debug/obj/wifi_conf.o +wifi_get_last_error application/Debug/obj/wifi_conf.o +wifi_get_lps_dtim application/Debug/obj/wifi_conf.o +wifi_get_mac_address application/Debug/obj/wifi_conf.o +wifi_get_rssi application/Debug/obj/wifi_conf.o +wifi_get_setting application/Debug/obj/wifi_conf.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_wifi.o +wifi_indication application/Debug/obj/wifi_ind.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_intfs.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) + application/Debug/obj/wifi_util.o +wifi_init_packet_filter application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o +wifi_is_connected_to_ap application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_sys.o +wifi_is_ready_to_transceive application/Debug/obj/wifi_conf.o + application/Debug/obj/uart_adapter.o +wifi_is_up application/Debug/obj/wifi_conf.o +wifi_manager_init application/Debug/obj/wifi_ind.o +wifi_mode application/Debug/obj/atcmd_wifi.o + application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_conf.o +wifi_off application/Debug/obj/wifi_conf.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) + application/Debug/obj/wifi_eap_config.o + application/Debug/obj/atcmd_wifi.o +wifi_on application/Debug/obj/wifi_conf.o + application/Debug/obj/wlan_network.o + application/Debug/obj/wifi_eap_config.o + application/Debug/obj/atcmd_wifi.o +wifi_p2p_wps_failed application/Debug/obj/wifi_wps_config.o +wifi_p2p_wps_success application/Debug/obj/wifi_wps_config.o +wifi_reg_event_handler application/Debug/obj/wifi_ind.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_conf.o +wifi_register_multicast_address application/Debug/obj/wifi_conf.o +wifi_remove_packet_filter application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o +wifi_restart_ap application/Debug/obj/wifi_conf.o + application/Debug/obj/webserver.o +wifi_rf_off application/Debug/obj/wifi_conf.o +wifi_rf_on application/Debug/obj/wifi_conf.o +wifi_rx_beacon_hdl application/Debug/obj/wifi_conf.o + application/Debug/obj/lwip_netconf.o +wifi_scan application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o +wifi_scan_done_hdl application/Debug/obj/wifi_conf.o +wifi_scan_each_report_hdl application/Debug/obj/wifi_conf.o +wifi_scan_networks application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +wifi_scan_networks_with_ssid application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +wifi_set_autoreconnect application/Debug/obj/wifi_conf.o + application/Debug/obj/wlan_network.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_wifi.o +wifi_set_ch_deauth application/Debug/obj/wifi_conf.o +wifi_set_channel application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o +wifi_set_channel_plan application/Debug/obj/wifi_conf.o +wifi_set_country application/Debug/obj/wifi_conf.o +wifi_set_lps_dtim application/Debug/obj/wifi_conf.o +wifi_set_mac_address application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +wifi_set_mib application/Debug/obj/wifi_conf.o +wifi_set_network_mode application/Debug/obj/wifi_conf.o +wifi_set_power_mode application/Debug/obj/wifi_conf.o +wifi_set_promisc application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o +wifi_set_pscan_chan application/Debug/obj/wifi_conf.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/atcmd_wifi.o +wifi_set_tdma_param application/Debug/obj/wifi_conf.o +wifi_set_wps_phase application/Debug/obj/wifi_conf.o +wifi_setting application/Debug/obj/webserver.o +wifi_show_setting application/Debug/obj/wifi_conf.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_wifi.o +wifi_start_ap application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +wifi_start_ap_with_hidden_ssid application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o +wifi_unreg_event_handler application/Debug/obj/wifi_ind.o + application/Debug/obj/lwip_netconf.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/wifi_eap_config.o +wifi_unregister_multicast_address application/Debug/obj/wifi_conf.o +wifi_update_custom_ie application/Debug/obj/wifi_conf.o +wifirate2_ratetbl_inx ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) +wireless_send_event ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_recv.o) +wlan_network application/Debug/obj/wlan_network.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(app_start.o) + application/Debug/obj/main.o +wlancmds ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_cmd.o) +wlanhdr_to_ethhdr ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) +wpa_global_PSK ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_psk.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(freertos_ioctl.o) + application/Debug/obj/uart_adapter.o + application/Debug/obj/atcmd_wifi.o +wpas_wsc_ap_check_eap_rspidentity application/Debug/obj/wifi_wps_config.o +wpas_wsc_ap_send_eap_reqidentity application/Debug/obj/wifi_wps_config.o +wpas_wsc_registrar_handle_recvd application/Debug/obj/wifi_wps_config.o +wpas_wsc_registrar_send_eap_fail application/Debug/obj/wifi_wps_config.o +wps_registrar_add_pin application/Debug/obj/wifi_wps_config.o +wps_registrar_alloc application/Debug/obj/wifi_wps_config.o +wps_registrar_button_pushed application/Debug/obj/wifi_wps_config.o +wps_registrar_deinit application/Debug/obj/wifi_wps_config.o +wps_registrar_get_msg application/Debug/obj/wifi_wps_config.o +wps_registrar_init application/Debug/obj/wifi_wps_config.o +wps_registrar_process_msg application/Debug/obj/wifi_wps_config.o +wps_registrar_wps_cancel application/Debug/obj/wifi_wps_config.o +write_cam ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_wlan_util.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_mlme_ext.o) +write_ota_addr_to_system_data application/Debug/obj/update.o +write_uart_atcmd_setting_to_system_data application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/atcmd_sys.o +x509_crt_free application/Debug/obj/x509_crt.o + application/Debug/obj/ssl_tls.o +x509_crt_info application/Debug/obj/x509_crt.o +x509_crt_init application/Debug/obj/x509_crt.o + application/Debug/obj/ssl_tls.o + application/Debug/obj/ssl_cache.o +x509_crt_parse application/Debug/obj/x509_crt.o + application/Debug/obj/ssl_cache.o +x509_crt_parse_der application/Debug/obj/x509_crt.o + application/Debug/obj/ssl_tls.o +x509_crt_verify application/Debug/obj/x509_crt.o + application/Debug/obj/ssl_tls.o +x509_dn_gets application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_get_alg application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_get_alg_null application/Debug/obj/x509.o +x509_get_ext application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_get_name application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_get_serial application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_get_sig application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_get_sig_alg application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_get_time application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_key_size_helper application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_oid_get_description application/Debug/obj/x509.o +x509_oid_get_numeric_string application/Debug/obj/x509.o +x509_serial_gets application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_sig_alg_gets application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_time_expired application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +x509_time_future application/Debug/obj/x509.o + application/Debug/obj/x509_crt.o +xCoRoutineCreate application/Debug/obj/croutine.o +xCoRoutineRemoveFromEventList application/Debug/obj/croutine.o + application/Debug/obj/queue.o +xEventGroupClearBits application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +xEventGroupCreate application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +xEventGroupGetBitsFromISR application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +xEventGroupSetBits application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +xEventGroupSync application/Debug/obj/event_groups.o +xEventGroupWaitBits application/Debug/obj/event_groups.o + application/Debug/obj/cmsis_os.o +xHeapRegions application/Debug/obj/heap_5.o +xMCtrl application/Debug/obj/uart_fw_update.o +xMFrameBuf application/Debug/obj/uart_fw_update.o +xModemCancel ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +xModemEOT ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +xModemEnd ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + application/Debug/obj/uart_fw_update.o +xModemGetFirst ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +xModemGetOthers ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +xModemInquiry ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +xModemRxBlock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +xModemRxBuffer ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + application/Debug/obj/uart_fw_update.o +xModemRxFrame ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +xModemStart ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) + application/Debug/obj/uart_fw_update.o +xModemTxBlock ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmodem.o) +xModem_DeInit_UART_Port application/Debug/obj/uart_fw_update.o +xModem_Frame_Dump application/Debug/obj/uart_fw_update.o +xModem_Frame_FlashWrite application/Debug/obj/uart_fw_update.o +xModem_Frame_Img2 application/Debug/obj/uart_fw_update.o +xModem_Frame_ImgAll application/Debug/obj/uart_fw_update.o +xModem_Frame_MemWrite application/Debug/obj/uart_fw_update.o +xModem_Init_UART_Port application/Debug/obj/uart_fw_update.o +xModem_MemCmp application/Debug/obj/uart_fw_update.o +xPortGetFreeHeapSize application/Debug/obj/heap_5.o + application/Debug/obj/freertos_service.o + application/Debug/obj/wlan_network.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/ssl_client.o + application/Debug/obj/log_service.o +xPortGetMinimumEverFreeHeapSize application/Debug/obj/heap_5.o +xPortPendSVHandler application/Debug/obj/port.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +xPortStartScheduler application/Debug/obj/port.o + application/Debug/obj/tasks.o +xPortSysTickHandler application/Debug/obj/port.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(hal_soc_ps_monitor.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_platform.a(startup.o) +xQueueCRReceive application/Debug/obj/queue.o +xQueueCRReceiveFromISR application/Debug/obj/queue.o +xQueueCRSend application/Debug/obj/queue.o +xQueueCRSendFromISR application/Debug/obj/queue.o +xQueueCreateCountingSemaphore application/Debug/obj/queue.o + application/Debug/obj/webserver.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/cmsis_os.o +xQueueCreateMutex application/Debug/obj/queue.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/dhcps.o +xQueueGenericCreate application/Debug/obj/queue.o + application/Debug/obj/mailbox.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/sys_arch.o + application/Debug/obj/log_service.o +xQueueGenericReceive application/Debug/obj/queue.o + application/Debug/obj/webserver.o + application/Debug/obj/osdep_api.o + application/Debug/obj/mailbox.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/dhcps.o + application/Debug/obj/sys_arch.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/log_service.o +xQueueGenericReset application/Debug/obj/queue.o +xQueueGenericSend application/Debug/obj/queue.o + application/Debug/obj/webserver.o + application/Debug/obj/osdep_api.o + application/Debug/obj/mailbox.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/dhcps.o + application/Debug/obj/sys_arch.o + application/Debug/obj/log_service.o +xQueueGenericSendFromISR application/Debug/obj/queue.o + application/Debug/obj/osdep_api.o + application/Debug/obj/mailbox.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/cmsis_os.o +xQueueGiveMutexRecursive application/Debug/obj/queue.o +xQueueIsQueueEmptyFromISR application/Debug/obj/queue.o +xQueueIsQueueFullFromISR application/Debug/obj/queue.o +xQueuePeekFromISR application/Debug/obj/queue.o +xQueueReceiveFromISR application/Debug/obj/queue.o + application/Debug/obj/mailbox.o + application/Debug/obj/cmsis_os.o +xQueueTakeMutexRecursive application/Debug/obj/queue.o +xTaskCheckForTimeOut application/Debug/obj/tasks.o + application/Debug/obj/queue.o +xTaskGenericCreate application/Debug/obj/tasks.o + application/Debug/obj/wigadget.o + application/Debug/obj/shtc1.o + application/Debug/obj/cloud_link.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/webserver.o + application/Debug/obj/uart_socket.o + application/Debug/obj/rtl8195a_nfc.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/sys_arch.o + application/Debug/obj/wlan_network.o + application/Debug/obj/update.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ssl_client.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/rtl_consol.o + application/Debug/obj/log_service.o + application/Debug/obj/atcmd_lwip.o +xTaskGetCurrentTaskHandle application/Debug/obj/tasks.o + application/Debug/obj/queue.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/sys_arch.o +xTaskGetSchedulerState application/Debug/obj/tasks.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o +xTaskGetTickCount application/Debug/obj/tasks.o + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(google_nest.o) + application/Debug/obj/wigadget.o + application/Debug/obj/uart_socket.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/timers.o + application/Debug/obj/croutine.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/sntp.o + application/Debug/obj/sys_arch.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/tcptest.o + application/Debug/obj/ping_test.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_promisc.o + application/Debug/obj/atcmd_wifi.o +xTaskGetTickCountFromISR application/Debug/obj/tasks.o + application/Debug/obj/example_uart_atcmd.o + application/Debug/obj/uart_socket.o + application/Debug/obj/osdep_api.o + application/Debug/obj/cmsis_os.o + application/Debug/obj/uart_ymodem.o + application/Debug/obj/uart_adapter.o +xTaskIncrementTick application/Debug/obj/tasks.o + application/Debug/obj/port.o +xTaskPriorityDisinherit application/Debug/obj/tasks.o + application/Debug/obj/queue.o +xTaskRemoveFromEventList application/Debug/obj/tasks.o + application/Debug/obj/queue.o +xTaskRemoveFromUnorderedEventList application/Debug/obj/tasks.o + application/Debug/obj/event_groups.o +xTaskResumeAll application/Debug/obj/tasks.o + application/Debug/obj/timers.o + application/Debug/obj/queue.o + application/Debug/obj/event_groups.o + application/Debug/obj/heap_5.o +xTaskResumeFromISR application/Debug/obj/tasks.o +xTimerCreate application/Debug/obj/timers.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/cmsis_os.o +xTimerCreateTimerTask application/Debug/obj/timers.o + application/Debug/obj/tasks.o +xTimerGenericCommand application/Debug/obj/timers.o + application/Debug/obj/osdep_api.o + application/Debug/obj/freertos_service.o + application/Debug/obj/cmsis_os.o +xTimerGetTimerDaemonTaskHandle application/Debug/obj/timers.o +xTimerIsTimerActive application/Debug/obj/timers.o + application/Debug/obj/freertos_service.o +xTimerPendFunctionCall application/Debug/obj/timers.o +xTimerPendFunctionCallFromISR application/Debug/obj/timers.o + application/Debug/obj/cmsis_os.o +xmit_delivery_enabled_frames ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_recv.o) +xmitframe_addmic ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +xmitframe_enqueue_for_sleeping_sta ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +xmitframe_swencrypt ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_xmit.o) + ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtl8195a_xmit.o) +xml_add_child application/Debug/obj/xml.o +xml_clear_child application/Debug/obj/xml.o +xml_copy_tree application/Debug/obj/xml.o +xml_delete_set application/Debug/obj/xml.o +xml_delete_tree application/Debug/obj/xml.o +xml_doc_name application/Debug/obj/xml.o +xml_dump_tree application/Debug/obj/xml.o +xml_dump_tree_ex application/Debug/obj/xml.o +xml_find_element application/Debug/obj/xml.o +xml_find_path application/Debug/obj/xml.o +xml_free application/Debug/obj/xml.o +xml_get_attribute application/Debug/obj/xml.o +xml_is_element application/Debug/obj/xml.o +xml_is_text application/Debug/obj/xml.o +xml_new_element application/Debug/obj/xml.o +xml_new_text application/Debug/obj/xml.o +xml_parse application/Debug/obj/xml.o +xml_parse_doc application/Debug/obj/xml.o +xml_set_attribute application/Debug/obj/xml.o +xml_set_text application/Debug/obj/xml.o +xml_strstr application/Debug/obj/xml.o +xml_text_child application/Debug/obj/xml.o +xmodem_loguart_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + application/Debug/obj/uart_fw_update.o +xmodem_loguart_func_hook ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + application/Debug/obj/uart_fw_update.o +xmodem_loguart_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) + application/Debug/obj/uart_fw_update.o +xmodem_loguart_putc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_loguart.o) +xmodem_uart_adp application/Debug/obj/uart_fw_update.o +xmodem_uart_deinit ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/uart_fw_update.o +xmodem_uart_func_hook ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/uart_fw_update.o +xmodem_uart_getc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +xmodem_uart_init ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) + application/Debug/obj/uart_fw_update.o +xmodem_uart_putc ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +xmodem_uart_readable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +xmodem_uart_writable ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_xmodem.a(xmport_uart.o) +xnetif application/Debug/obj/lwip_netconf.o + application/Debug/obj/wigadget.o + application/Debug/obj/cloud_link.o + application/Debug/obj/ethernet_mii.o + application/Debug/obj/mDNSPlatform.o + application/Debug/obj/lwip_intf.o + application/Debug/obj/uart_adapter.o + application/Debug/obj/wifi_simple_config.o + application/Debug/obj/wifi_conf.o + application/Debug/obj/atcmd_wifi.o + application/Debug/obj/atcmd_lwip.o +ymodem_flashwrite application/Debug/obj/uart_ymodem.o +zero_bssid ../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC//lib_wlan.a(rtw_promisc.o) diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.nmap b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.nmap new file mode 100644 index 0000000..02eda53 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/application.nmap @@ -0,0 +1,3310 @@ +00000000 a __vectors_table +00000101 a Reset_Handler +00000109 a NMI_Handler +0000010d a HardFault_Handler +00000121 a MemManage_Handler +00000125 a BusFault_Handler +00000129 a UsageFault_Handler +00000201 a HalLogUartInit +000002d9 A HalSerialPutcRtl8195a +00000309 A HalSerialGetcRtl8195a +00000329 A HalSerialGetIsrEnRegRtl8195a +00000335 A HalSerialSetIrqEnRegRtl8195a +00000341 A HalCpuClkConfig +00000355 A HalGetCpuClk +0000039d a HalRomInfo +000003b5 a HalGetRomInfo +000003c5 a HalResetVsr +00000899 A HalDelayUs +000008e1 a HalNMIHandler +00000911 a HalHardFaultHandler +00000c09 a HalMemManageHandler +00000c39 a HalBusFaultHandler +00000c69 a HalUsageFaultHandler +00000cfd a HalUart0PinCtrlRtl8195A +00000dc9 a HalUart1PinCtrlRtl8195A +00000e9d a HalUart2PinCtrlRtl8195A +00000f75 a HalSPI0PinCtrlRtl8195A +00001015 a HalSPI1PinCtrlRtl8195A +000010e5 a HalSPI2PinCtrlRtl8195A +000011b5 a HalSPI0MCSPinCtrlRtl8195A +00001275 a HalI2C0PinCtrlRtl8195A +00001381 a HalI2C1PinCtrlRtl8195A +00001459 a HalI2C2PinCtrlRtl8195A +00001529 a HalI2C3PinCtrlRtl8195A +00001639 a HalI2S0PinCtrlRtl8195A +0000176d a HalI2S1PinCtrlRtl8195A +00001845 a HalPCM0PinCtrlRtl8195A +00001949 a HalPCM1PinCtrlRtl8195A +00001a1d a HalSDIODPinCtrlRtl8195A +00001a6d a HalSDIOHPinCtrlRtl8195A +00001ab9 a HalMIIPinCtrlRtl8195A +00001b51 a HalWLLEDPinCtrlRtl8195A +00001c0d a HalWLANT0PinCtrlRtl8195A +00001c61 a HalWLANT1PinCtrlRtl8195A +00001cb5 a HalWLBTCOEXPinCtrlRtl8195A +00001d05 a HalWLBTCMDPinCtrlRtl8195A +00001d59 a HalNFCPinCtrlRtl8195A +00001da9 a HalPWM0PinCtrlRtl8195A +00001ead a HalPWM1PinCtrlRtl8195A +00001fb5 a HalPWM2PinCtrlRtl8195A +000020b1 a HalPWM3PinCtrlRtl8195A +000021b9 a HalETE0PinCtrlRtl8195A +000022c1 a HalETE1PinCtrlRtl8195A +000023c9 a HalETE2PinCtrlRtl8195A +000024d1 a HalETE3PinCtrlRtl8195A +000025d9 a HalEGTIMPinCtrlRtl8195A +00002679 a HalSPIFlashPinCtrlRtl8195A +00002725 a HalSDRPinCtrlRtl8195A +0000280d a HalJTAGPinCtrlRtl8195A +00002861 a HalTRACEPinCtrlRtl8195A +000028b9 a HalLOGUartPinCtrlRtl8195A +0000291d a HalLOGUartIRPinCtrlRtl8195A +00002981 a HalSICPinCtrlRtl8195A +000029d9 a HalEEPROMPinCtrlRtl8195A +00002a31 a HalDEBUGPinCtrlRtl8195A +00002b39 A HalPinCtrlRtl8195A +00002e5d a SpicRxCmdRtl8195A +00002ea5 A SpicWaitBusyDoneRtl8195A +00002eb5 a SpicGetFlashStatusRtl8195A +00002f55 a SpicWaitWipDoneRtl8195A +00002f6d a SpicTxCmdRtl8195A +00002fc1 a SpicSetFlashStatusRtl8195A +00003049 A SpicCmpDataForCalibrationRtl8195A +00003081 A SpicLoadInitParaFromClockRtl8195A +000030e5 A SpicInitRtl8195A +000031bd a SpicEraseFlashRtl8195A +00003279 a SpiFlashApp +000033b5 a HalPeripheralIntrHandle +00003439 a HalSysOnIntrHandle +00003485 A HalWdgIntrHandle +000034d5 a HalTimer0IntrHandle +00003525 a HalTimer1IntrHandle +00003575 a HalI2C3IntrHandle +000035c5 a HalTimer2To7IntrHandle +00003615 a HalSpi0IntrHandle +00003665 a HalGpioIntrHandle +000036b5 a HalUart0IntrHandle +00003705 a HalSpiFlashIntrHandle +00003755 a HalUsbOtgIntrHandle +000037a5 a HalSdioHostIntrHandle +000037f5 a HalI2s0OrPcm0IntrHandle +00003845 a HalI2s1OrPcm1IntrHandle +00003895 a HalWlDmaIntrHandle +000038e5 a HalWlProtocolIntrHandle +00003935 a HalCryptoIntrHandle +00003985 a HalGmacIntrHandle +000039d5 a HalGdma0Ch0IntrHandle +00003a25 a HalGdma0Ch1IntrHandle +00003a75 a HalGdma0Ch2IntrHandle +00003a98 A _binary_application_Debug_obj_ram_1_r_bin_size +00003ac5 a HalGdma0Ch3IntrHandle +00003b15 a HalGdma0Ch4IntrHandle +00003b65 a HalGdma0Ch5IntrHandle +00003bb5 a HalGdma1Ch0IntrHandle +00003c05 a HalGdma1Ch1IntrHandle +00003c55 a HalGdma1Ch2IntrHandle +00003ca5 a HalGdma1Ch3IntrHandle +00003cf5 a HalGdma1Ch4IntrHandle +00003d45 a HalGdma1Ch5IntrHandle +00003d95 a HalSdioDeviceIntrHandle +00003de5 A VectorTableInitRtl8195A +00004019 A VectorTableInitForOSRtl8195A +00004029 A VectorIrqRegisterRtl8195A +00004091 A VectorIrqUnRegisterRtl8195A +000040f1 A VectorIrqEnRtl8195A +0000418d A VectorIrqDisRtl8195A +0000422d a _UartRxDmaIrqHandle +00004281 A HalRuartPutCRtl8195a +0000429d A HalRuartGetCRtl8195a +000042bd A HalRuartRTSCtrlRtl8195a +000042e1 A HalRuartGetDebugValueRtl8195a +000043e1 A HalRuartGetIMRRtl8195a +0000442d A HalRuartSetIMRRtl8195a +00004465 a _UartIrqHandle +00004681 A HalRuartDmaInitRtl8195a +00004845 A HalRuartIntDisableRtl8195a +00004855 A HalRuartDeInitRtl8195a +00004985 A HalRuartIntEnableRtl8195a +00004995 a _UartTxDmaIrqHandle +000049d1 A HalRuartRegIrqRtl8195a +00004a4d A HalRuartAdapterLoadDefRtl8195a +00004add A HalRuartTxGdmaLoadDefRtl8195a +00004bc9 A HalRuartRxGdmaLoadDefRtl8195a +00004cc9 A RuartLock +00004ced A RuartUnLock +00004d09 A HalRuartIntSendRtl8195a +00004e35 a HalRuartDmaSendRtl8195a +00004f89 a HalRuartStopSendRtl8195a +0000504d A HalRuartIntRecvRtl8195a +000051ad A HalRuartDmaRecvRtl8195a +000052cd a HalRuartStopRecvRtl8195a +00005385 a RuartIsTimeout +000053b1 A HalRuartSendRtl8195a +00005599 A HalRuartRecvRtl8195a +00005751 a RuartResetRxFifoRtl8195a +00005775 A HalRuartResetRxFifoRtl8195a +00005829 a HalRuartInitRtl8195a +00005df1 A HalGdmaOnOffRtl8195a +00005e0d A HalGdmaChIsrEnAndDisRtl8195a +00005e51 A HalGdmaChEnRtl8195a +00005e6d A HalGdmaChDisRtl8195a +00005e91 A HalGdamChInitRtl8195a +00005ebd A HalGdmaChSetingRtl8195a +000060dd a HalGdmaChBlockSetingRtl8195a +00006419 A HalGdmaChIsrCleanRtl8195a +000064a1 A HalGdmaChCleanAutoSrcRtl8195a +00006501 A HalGdmaChCleanAutoDstRtl8195a +00006561 A HalEFUSEPowerSwitch8195AROM +000065f9 A HALEFUSEOneByteReadROM +00006699 A HALEFUSEOneByteWriteROM +0000681d a __rtl_memcmpb_v1_00 +00006861 a __rtl_random_v1_00 +00006881 a __rtl_align_to_be32_v1_00 +00006899 a __rtl_memsetw_v1_00 +000068ad a __rtl_memsetb_v1_00 +000068bd a __rtl_memcpyw_v1_00 +000068dd a __rtl_memcpyb_v1_00 +000068f5 a __rtl_memDump_v1_00 +00006901 a __rtl_AES_set_encrypt_key +00006c11 a __rtl_cryptoEngine_AES_set_decrypt_key +00006c95 a __rtl_cryptoEngine_set_security_mode_v1_00 +00006ea9 a __rtl_cryptoEngine_init_v1_00 +00007055 a __rtl_cryptoEngine_exit_v1_00 +000070b1 a __rtl_cryptoEngine_reset_v1_00 +000070ed a __rtl_cryptoEngine_v1_00 +00007c69 a __rtl_crypto_cipher_init_v1_00 +00007c89 a __rtl_crypto_cipher_encrypt_v1_00 +00007cad a __rtl_crypto_cipher_decrypt_v1_00 +00007cd5 a HalSsiPinmuxEnableRtl8195a +00007e45 a HalSsiEnableRtl8195a +00007ef9 a HalSsiDisableRtl8195a +00007fad a HalSsiLoadSettingRtl8195a +00008521 a HalSsiSetInterruptMaskRtl8195a +000085c9 a HalSsiGetInterruptMaskRtl8195a +0000863d a HalSsiSetSclkPolarityRtl8195a +00008715 a HalSsiSetSclkPhaseRtl8195a +000087e9 a HalSsiWriteRtl8195a +00008861 a HalSsiSetDeviceRoleRtl8195a +000088c9 a HalSsiSetRxFifoThresholdLevelRtl8195a +00008941 a HalSsiSetTxFifoThresholdLevelRtl8195a +000089b9 a HalSsiReadRtl8195a +00008a2d a HalSsiGetRxFifoLevelRtl8195a +00008aa5 a HalSsiGetTxFifoLevelRtl8195a +00008b1d a HalSsiGetStatusRtl8195a +00008b91 a HalSsiWriteableRtl8195a +00008c09 a HalSsiReadableRtl8195a +00008c81 a HalSsiBusyRtl8195a +00008cf9 a HalSsiReadInterruptRtl8195a +00008efd a HalSsiWriteInterruptRtl8195a +00009009 a HalSsiSetSlaveEnableRegisterRtl8195a +000090d9 a HalSsiGetInterruptStatusRtl8195a +0000914d a HalSsiInterruptEnableRtl8195a +00009299 a HalSsiInterruptDisableRtl8195a +000093e9 a HalSsiGetRawInterruptStatusRtl8195a +0000945d a HalSsiGetSlaveEnableRegisterRtl8195a +000094d1 a HalSsiInitRtl8195a +00009ba5 a _SsiReadInterrupt +00009db1 a _SsiWriteInterrupt +00009eb1 a _SsiIrqHandle +0000a061 a HalI2CWrite32 +0000a09d a HalI2CRead32 +0000a0dd a HalI2CDeInit8195a +0000a1f1 a HalI2CSendRtl8195a +0000a25d a HalI2CReceiveRtl8195a +0000a271 a HalI2CEnableRtl8195a +0000a389 a HalI2CIntrCtrl8195a +0000a3a1 a HalI2CReadRegRtl8195a +0000a3b1 a HalI2CWriteRegRtl8195a +0000a3c5 a HalI2CSetCLKRtl8195a +0000a6e9 a HalI2CMassSendRtl8195a +0000a749 a HalI2CClrIntrRtl8195a +0000a761 a HalI2CClrAllIntrRtl8195a +0000a775 a HalI2CInit8195a +0000aa31 a HalI2CDMACtrl8195a +0000aa61 a RtkI2CIoCtrl +0000aa65 a RtkI2CPowerCtrl +0000aa69 a HalI2COpInit +0000ac65 a I2CIsTimeout +0000b435 a I2CTXGDMAISRHandle +0000b4c1 a I2CRXGDMAISRHandle +0000b54d a RtkI2CIrqInit +0000b611 a RtkI2CIrqDeInit +0000b675 a RtkI2CPinMuxInit +0000b7c9 a RtkI2CPinMuxDeInit +0000b955 a RtkI2CDMAInit +0000bc95 a RtkI2CInit +0000bdad a RtkI2CDMADeInit +0000be4d a RtkI2CDeInit +0000bee5 a RtkI2CSendUserAddr +0000c07d a RtkI2CSend +0000ce51 a RtkI2CLoadDefault +0000cf21 a RtkSalI2COpInit +0000cf65 a HalI2SWrite32 +0000cf85 a HalI2SRead32 +0000cfa9 a HalI2SDeInitRtl8195a +0000cfc9 a HalI2STxRtl8195a +0000d011 a HalI2SRxRtl8195a +0000d05d a HalI2SEnableRtl8195a +0000d0b1 a HalI2SIntrCtrlRtl8195a +0000d0d1 a HalI2SReadRegRtl8195a +0000d0dd a HalI2SClrIntrRtl8195a +0000d0fd a HalI2SClrAllIntrRtl8195a +0000d11d a HalI2SInitRtl8195a +0000d2e5 a GPIO_GetIPPinName_8195a +0000d331 A GPIO_GetChipPinName_8195a +0000d39d A GPIO_PullCtrl_8195a +0000d421 a GPIO_FuncOn_8195a +0000d481 a GPIO_FuncOff_8195a +0000d4e9 a GPIO_Int_Mask_8195a +0000d511 a GPIO_Int_SetType_8195a +0000d5fd a HAL_GPIO_IrqHandler_8195a +0000d645 A HAL_GPIO_MbedIrqHandler_8195a +0000d6a1 a HAL_GPIO_UserIrqHandler_8195a +0000d6cd A HAL_GPIO_IntCtrl_8195a +0000d805 A HAL_GPIO_Init_8195a +0000dac1 A HAL_GPIO_DeInit_8195a +0000dbd1 A HAL_GPIO_ReadPin_8195a +0000dc91 A HAL_GPIO_WritePin_8195a +0000ddad A HAL_GPIO_RegIrq_8195a +0000ddf5 a HAL_GPIO_UnRegIrq_8195a +0000de15 A HAL_GPIO_UserRegIrq_8195a +0000def9 a HAL_GPIO_UserUnRegIrq_8195a +0000dfc1 A HAL_GPIO_MaskIrq_8195a +0000e061 A HAL_GPIO_UnMaskIrq_8195a +0000e101 a HAL_GPIO_IntDebounce_8195a +0000e1c1 A HAL_GPIO_GetIPPinName_8195a +0000e1c9 a HAL_GPIO_PullCtrl_8195a +0000e259 a DumpForOneBytes +0000e419 a CmdRomHelp +0000e491 a CmdWriteWord +0000e505 a CmdDumpHelfWord +0000e5f1 a CmdDumpWord +0000e6f5 a CmdDumpByte +0000e751 a CmdSpiFlashTool +0000e7a9 a GetRomCmdNum +0000e7ad a CmdWriteByte +0000e7ed a Isspace +0000e801 a Strtoul +0000e8b1 A ArrayInitialize +0000e8c9 A GetArgc +0000e8f9 A GetArgv +0000e95d a UartLogCmdExecute +0000e9fd a UartLogShowBackSpace +0000ea39 a UartLogRecallOldCmd +0000ea71 A UartLogHistoryCmd +0000eadd A UartLogCmdChk +0000ebf5 A UartLogIrqHandle +0000ecc5 a RtlConsolInit +0000ed49 a RtlConsolTaskRom +0000ed79 a RtlExitConsol +0000edcd A RtlConsolRom +0000ee0d a HalTimerOpInit +0000ee59 a HalTimerIrq2To7Handle +0000ef09 A HalGetTimerIdRtl8195a +0000ef3d A HalTimerInitRtl8195a +0000f069 A HalTimerDisRtl8195a +0000f089 a HalTimerEnRtl8195a +0000f0a9 a HalTimerReadCountRtl8195a +0000f0bd A HalTimerIrqClearRtl8195a +0000f0d1 A HalTimerDumpRegRtl8195a +0000f129 a VSprintf +0000f39d A DiagPrintf +0000f3b9 a DiagSPrintf +0000f3d1 a DiagSnPrintf +0000f3ed a prvDiagPrintf +0000f40d a prvDiagSPrintf +0000f429 a _memcmp +0000f465 A _memcpy +0000f511 A _memset +0000f585 a Rand +0000f60d a _strncpy +0000f629 a _strcpy +0000f639 a prvStrCpy +0000f651 a _strlen +0000f669 a _strnlen +0000f699 a prvStrLen +0000f6b1 A _strcmp +0000f6d1 a _strncmp +0000f719 a prvStrCmp +0000f749 a StrUpr +0000f769 A prvAtoi +0000f7bd a prvStrStr +0000f7d5 A _strsep +0000f815 a skip_spaces +0000f831 a skip_atoi +0000f869 a _parse_integer_fixup_radix +0000f8bd a _parse_integer +0000f915 a simple_strtoull +0000f945 a simple_strtoll +0000f965 A simple_strtoul +0000f96d a simple_strtol +0000f985 a _vsscanf +0000ff71 a _sscanf +0000ff91 a div_u64 +0000ff99 a div_s64 +0000ffa1 a div_u64_rem +0000ffb1 a div_s64_rem +0000ffc1 a _strpbrk +0000ffed a _strchr +00010005 a aes_set_key +000103d1 a aes_encrypt +000114a5 a aes_decrypt +000125c9 A AES_WRAP +00012701 A AES_UnWRAP +00012861 a crc32_get +00012895 a arc4_byte +000128bd A rt_arc4_init +00012901 A rt_arc4_crypt +000131c1 A rt_md5_init +000131f5 A rt_md5_append +0001327d A rt_md5_final +000132d5 A rt_md5_hmac +00013449 A rtw_get_bit_value_from_ieee_value +00013475 a rtw_is_cckrates_included +000134b5 a rtw_is_cckratesonly_included +000134dd A rtw_check_network_type +0001350d A rtw_set_fixed_ie +0001352d A rtw_set_ie +0001355d A rtw_get_ie +00013591 A rtw_set_supported_rate +00013611 A rtw_get_rateset_len +0001362d A rtw_get_wpa_ie +000136c9 A rtw_get_wpa2_ie +00013701 a rtw_get_wpa_cipher_suite +00013769 a rtw_get_wpa2_cipher_suite +000137d1 A rtw_parse_wpa_ie +000138ad A rtw_parse_wpa2_ie +00013965 A rtw_get_sec_ie +00013a15 A rtw_get_wps_ie +00013a99 a rtw_get_wps_attr +00013b49 A rtw_get_wps_attr_content +00013b91 A rtw_ieee802_11_parse_elems +00013d9d a str_2char2num +00013db9 A key_2char2num +00013dd1 a convert_ip_addr +00013e9d A rom_psk_PasswordHash +00013ed5 A rom_psk_CalcGTK +00013f69 A rom_psk_CalcPTK +00014295 A wep_80211_encrypt +000142f5 A wep_80211_decrypt +00014389 a tkip_micappendbyte +000143d9 A rtw_secmicsetkey +00014419 A rtw_secmicappend +00014435 A rtw_secgetmic +0001449d A rtw_seccalctkipmic +000145a5 a tkip_phase1 +00014725 a tkip_phase2 +00014941 A tkip_80211_encrypt +000149d5 A tkip_80211_decrypt +00014a8d a aes1_encrypt +00014c65 a aesccmp_construct_mic_iv +00014ccd a aesccmp_construct_mic_header1 +00014d21 a aesccmp_construct_mic_header2 +00014db5 a aesccmp_construct_ctr_preload +00014e29 A aes_80211_encrypt +000151ad A aes_80211_decrypt +000155b9 a _sha1_process_message_block +00015749 a _sha1_pad_message +000157e5 a rt_sha1_init +00015831 a rt_sha1_update +000158a9 a rt_sha1_finish +00015909 A rt_hmac_sha1 +00015a65 a rom_aes_128_cbc_encrypt +00015ae1 a rom_aes_128_cbc_decrypt +00015b5d a rom_rijndaelKeySetupEnc +00015c39 a rom_aes_decrypt_init +00015d15 a rom_aes_internal_decrypt +00016071 a rom_aes_decrypt_deinit +00016085 a rom_aes_encrypt_init +0001609d a rom_aes_internal_encrypt +00016451 a rom_aes_encrypt_deinit +00017b35 a bignum_init +00017b61 a bignum_deinit +00017b81 a bignum_get_unsigned_bin_len +00017b85 a bignum_get_unsigned_bin +00017c21 a bignum_set_unsigned_bin +00017cd1 a bignum_cmp +00017cd5 a bignum_cmp_d +00017cfd a bignum_add +00017d0d a bignum_sub +00017d1d a bignum_mul +00017d2d a bignum_exptmod +00017d51 a WPS_realloc +00017d99 a os_zalloc +00017dc1 a rom_hmac_sha256_vector +00017ebd a rom_hmac_sha256 +00018009 a rom_sha256_vector +00018221 A phy_CalculateBitShift +00018239 A PHY_SetBBReg_8195A +00018279 A PHY_QueryBBReg_8195A +0001829d A ROM_odm_QueryRxPwrPercentage +000182bd A ROM_odm_EVMdbToPercentage +000182e5 a ROM_odm_SignalScaleMapping_8195A +000183cd A ROM_odm_FalseAlarmCounterStatistics +00018721 a ROM_odm_SetEDCCAThreshold +00018749 a ROM_odm_SetTRxMux +00018771 A ROM_odm_SetCrystalCap +000187d5 A ROM_odm_GetDefaultCrytaltalCap +000187e9 A ROM_ODM_CfoTrackingReset +00018811 A ROM_odm_CfoTrackingFlow +0001965d a curve25519_donna +0001a391 a aes_test_alignment_detection +0001a3ed a aes_mode_reset +0001a3f9 a aes_ecb_encrypt +0001a431 a aes_ecb_decrypt +0001a469 a aes_cbc_encrypt +0001a579 a aes_cbc_decrypt +0001a701 a aes_cfb_encrypt +0001a9e5 a aes_cfb_decrypt +0001acc9 a aes_ofb_crypt +0001af7d a aes_ctr_crypt +0001b289 a aes_encrypt_key128 +0001b2a5 a aes_encrypt_key192 +0001b2c1 a aes_encrypt_key256 +0001b2e1 a aes_encrypt_key +0001b351 a aes_decrypt_key128 +0001b36d a aes_decrypt_key192 +0001b389 a aes_decrypt_key256 +0001b3a9 a aes_decrypt_key +0001b419 a aes_init +0001b41d a CRYPTO_chacha_20 +0001bc25 a CRYPTO_poly1305_init +0001bd09 a CRYPTO_poly1305_update +0001bd8d a CRYPTO_poly1305_finish +0001ceb5 a rom_sha512_starts +0001d009 a rom_sha512_update +0001d011 a rom_sha512_finish +0001d261 a rom_sha512 +0001d299 a rom_sha512_hmac_starts +0001d35d a rom_sha512_hmac_update +0001d365 a rom_sha512_hmac_finish +0001d3b5 a rom_sha512_hmac_reset +0001d3d1 a rom_sha512_hmac +0001d40d a rom_sha512_hkdf +0001d501 a rom_ed25519_gen_keypair +0001d505 a rom_ed25519_gen_signature +0001d51d a rom_ed25519_verify_signature +0001d521 a rom_ed25519_crypto_sign_seed_keypair +0001d579 a rom_ed25519_crypto_sign_detached +0001d655 a rom_ed25519_crypto_sign_verify_detached +0001f86d a rom_ed25519_ge_double_scalarmult_vartime +0001fc35 a rom_ed25519_ge_frombytes_negate_vartime +000207d5 a rom_ed25519_ge_p3_tobytes +00020821 a rom_ed25519_ge_scalarmult_base +000209e1 a rom_ed25519_ge_tobytes +00020a2d a rom_ed25519_sc_muladd +0002603d a rom_ed25519_sc_reduce +00028a4d a __rtl_memchr_v1_00 +00028ae1 A __rtl_memcmp_v1_00 +00028b49 A __rtl_memcpy_v1_00 +00028bed a __rtl_memmove_v1_00 +00028cb5 A __rtl_memset_v1_00 +00028d49 a __rtl_strcat_v1_00 +00028d91 a __rtl_strchr_v1_00 +00028e55 A __rtl_strcmp_v1_00 +00028ec9 A __rtl_strcpy_v1_00 +00028f15 A __rtl_strlen_v1_00 +00028f69 a __rtl_strncat_v1_00 +00028fc5 A __rtl_strncmp_v1_00 +0002907d A __rtl_strncpy_v1_00 +000293cd a __rtl_strstr_v1_00 +0002960d A __rtl_strsep_v1_00 +00029619 A __rtl_strtok_v1_00 +0002962d a __rtl__strtok_r_v1_00 +00029691 a __rtl_strtok_r_v1_00 +00029699 a __rtl_close_v1_00 +000296ad a __rtl_fstat_v1_00 +000296c1 a __rtl_isatty_v1_00 +000296d5 a __rtl_lseek_v1_00 +000296e9 a __rtl_open_v1_00 +000296fd a __rtl_read_v1_00 +00029711 a __rtl_write_v1_00 +00029725 a __rtl_sbrk_v1_00 +000297bd a __rtl_ltoa_v1_00 +00029855 a __rtl_ultoa_v1_00 +000298c5 a __rtl_dtoi_v1_00 +00029945 a __rtl_dtoi64_v1_00 +000299dd a __rtl_dtoui_v1_00 +000299e5 a __rtl_ftol_v1_00 +00029a51 a __rtl_itof_v1_00 +00029ae9 a __rtl_itod_v1_00 +00029b79 a __rtl_i64tod_v1_00 +00029c55 a __rtl_uitod_v1_00 +00029d2d a __rtl_ftod_v1_00 +00029de9 a __rtl_dtof_v1_00 +00029e89 a __rtl_uitof_v1_00 +00029f65 a __rtl_fadd_v1_00 +0002a261 a __rtl_fsub_v1_00 +0002a559 a __rtl_fmul_v1_00 +0002a695 a __rtl_fdiv_v1_00 +0002a825 a __rtl_dadd_v1_00 +0002aed9 a __rtl_dsub_v1_00 +0002b555 a __rtl_dmul_v1_00 +0002b8ad a __rtl_ddiv_v1_00 +0002be4d a __rtl_dcmpeq_v1_00 +0002bebd a __rtl_dcmplt_v1_00 +0002bf51 a __rtl_dcmpgt_v1_00 +0002c049 a __rtl_dcmple_v1_00 +0002c139 a __rtl_fcmplt_v1_00 +0002c195 a __rtl_fcmpgt_v1_00 +0002c229 a __rtl_cos_f32_v1_00 +0002c435 a __rtl_sin_f32_v1_00 +0002c639 a __rtl_fabs_v1_00 +0002c641 a __rtl_fabsf_v1_00 +0002c77d a __rtl_dtoa_r_v1_00 +0002d7d1 A __rom_mallocr_init_v1_00 +0002d841 a __rtl_free_r_v1_00 +0002da31 a __rtl_malloc_r_v1_00 +0002df55 a __rtl_realloc_r_v1_00 +0002e331 a __rtl_memalign_r_v1_00 +0002e421 a __rtl_valloc_r_v1_00 +0002e42d a __rtl_pvalloc_r_v1_00 +0002e441 a __rtl_calloc_r_v1_00 +0002e4a9 a __rtl_cfree_r_v1_00 +0002e515 a __rtl_Balloc_v1_00 +0002e571 a __rtl_Bfree_v1_00 +0002e585 a __rtl_i2b_v1_00 +0002e599 a __rtl_multadd_v1_00 +0002e629 a __rtl_mult_v1_00 +0002e769 a __rtl_pow5mult_v1_00 +0002e809 a __rtl_hi0bits_v1_00 +0002e845 a __rtl_d2b_v1_00 +0002e901 a __rtl_lshift_v1_00 +0002e9bd a __rtl_cmp_v1_00 +0002ea01 a __rtl_diff_v1_00 +0002eae9 a __rtl_sread_v1_00 +0002eb39 a __rtl_seofread_v1_00 +0002eb3d a __rtl_swrite_v1_00 +0002ebc1 a __rtl_sseek_v1_00 +0002ec11 a __rtl_sclose_v1_00 +0002ec41 a __rtl_sbrk_r_v1_00 +0002ef8d A __rtl_fflush_r_v1_00 +0002f661 A __rtl_vfprintf_r_v1_00 +00030c15 a __rtl_fpclassifyd +00030c68 a CpkClkTbl +00030c80 a ROM_IMG1_VALID_PATTEN +00030c88 a SpicCalibrationPattern +00030c98 a SpicInitCPUCLK +00030ca8 a BAUDRATE +00030d1c a OVSR +00030d90 a DIV +00030e04 a OVSR_ADJ +00030e78 a __AES_rcon +00030ea0 a __AES_Te4 +000312a0 a I2CDmaChNo +000316a0 a UartLogRomCmdTable +00031700 a _HalRuartOp +00031760 a _HalGdmaOp +0003540c A RTW_WPA_OUI_TYPE +00035410 a WPA_CIPHER_SUITE_NONE +00035414 a WPA_CIPHER_SUITE_WEP40 +00035418 A WPA_CIPHER_SUITE_TKIP +0003541c A WPA_CIPHER_SUITE_CCMP +00035420 a WPA_CIPHER_SUITE_WEP104 +00035424 a RSN_CIPHER_SUITE_NONE +00035428 a RSN_CIPHER_SUITE_WEP40 +0003542c A RSN_CIPHER_SUITE_TKIP +00035430 A RSN_CIPHER_SUITE_CCMP +00035434 a RSN_CIPHER_SUITE_WEP104 +00035444 A RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X +00035448 a RSN_AUTH_KEY_MGMT_UNSPEC_802_1X +0003544c a RSN_VERSION_BSD +00035988 a rom_wps_Te0 +00035d88 a rom_wps_rcons +00035d94 a rom_wps_Td4s +00035e94 a rom_wps_Td0 +10000000 A NewVectorTable +10000100 a UserIrqFunTable +10000200 a UserIrqDataTable +10000300 a CfgSysDebugWarn +10000300 A __rom_bss_start__ +10000304 a CfgSysDebugInfo +10000308 a CfgSysDebugErr +1000030c A ConfigDebugWarn +10000310 A ConfigDebugInfo +10000314 A ConfigDebugErr +10000318 A HalTimerOp +10000334 A GPIOState +1000034c A gTimerRecord +10000350 a SSI_DBG_CONFIG +10000354 A _pHAL_Gpio_Adapter +10000358 A Timer2To7VectorTable +10000384 A pUartLogCtl +10000388 A UartLogBuf +10000408 A UartLogCtl +10000430 A UartLogHistoryBuf +100006ac A ArgvArray +100006d4 A rom_wlan_ram_map +100006e0 A FalseAlmCnt +10000720 A ROMInfo +10000738 A DM_CfoTrack +10000760 A rom_libgloss_ram_map +10000bc4 A __rtl_errno +10000bc8 A __rom_bss_end__ +10000bc8 R _binary_application_Debug_obj_ram_1_r_bin_start +10001c60 A _rtl_impure_ptr +10002100 D __buffer_data_end2__ +10002100 D __buffer_data_start2__ +10004660 R _binary_application_Debug_obj_ram_1_r_bin_end +10006000 D gImage2EntryFun0 +10006000 D __image2_entry_func__ +10006000 D .image2.start.table1$$Base +10006000 D __ram_image2_text_start__ +10006004 D __image2_validate_code__ +10006004 D RAM_IMG2_VALID_PATTEN +10006018 D cus_sig +10006038 T VectorTableOverrideRtl8195A +10006048 T SYSPlatformInit +10006068 W InfraStart +10006118 T UartLogIrqHandleRam +100061f4 T RtlConsolInitRam +100062d8 T RtlConsolTaskRam +1000630c T SpicRxCmdRefinedRtl8195A +10006414 T SpicInitRefinedRtl8195A +100064c8 T SpicReadIDRtl8195A +100065cc T SpicConfigAutoModeRtl8195A +1000663c T SpicUserReadRtl8195A +100067b0 T SpicUserReadFourByteRtl8195A +100068cc T SpicGetExtendAddrRtl8195A +10006924 T SpicGetConfigRegRtl8195A +1000697c T SpicGetFlashStatusRefinedRtl8195A +100069d4 T SpicWaitWipDoneRefinedRtl8195A +10006a10 T SpicTxCmdWithDataRtl8195A +10006ae4 T SpicGetFlashFlagRtl8195A +10006b70 T SpicWaitOperationDoneRtl8195A +10006bac T SpicDeepPowerDownFlashRtl8195A +10006c38 T SpicUserProgramRtl8195A +10006e68 T SpicWaitWipRtl8195A +10006e7c T SpicTxFlashInstRtl8195A +10006f10 T SpicEraseFlashRefinedRtl8195A +10006f1a T SpicDieEraseFlashRtl8195A +10006f3c T SpicBlockEraseFlashRtl8195A +10006f5e T SpicSectorEraseFlashRtl8195A +10006f80 T SpicSetExtendAddrRtl8195A +10006f9a T SpicSetFlashStatusRefinedRtl8195A +10006fcc T SpicWriteProtectFlashRtl8195A +10006ff4 T SpicDisableRtl8195A +10007004 T SpicNVMCalLoad +1000711c T SpicNVMCalLoadAll +1000713a T SpicNVMCalStore +10007294 T SpicCalibrationRtl8195A +100074dc T SpicFlashInitRtl8195A +10007588 T SpicOneBitCalibrationRtl8195A +100075a0 T SdrCtrlInit +100075bc T DramInit +100078d0 T ChangeRandSeed +100078dc T Sdr_Rand2 +1000792c T MemTest +1000798c T SdrCalibration +10007d08 T SdrControllerInit +10007dbc T SystemCoreClockUpdate +10007dd0 T fATP0 +10007e1c T fATPI +10007f98 T atcmd_lwip_send_data +100080b8 t atcmd_lwip_tt_handler +10008214 T init_node_pool +1000823c T create_node +100082c4 T delete_node +10008378 T socket_close_all +10008394 T fATPC +10008580 T fATPS +100086d0 T hang_node +1000875c t client_start_task +10008984 T hang_seednode +100089f0 t server_start_task +10008d18 T seek_node +10008d48 T fATPT +10008ebc T fATPP +10009070 T fATPD +10009120 T tryget_node +10009160 T atcmd_lwip_receive_data +10009330 T fATPR +10009558 t atcmd_lwip_receive_task +10009758 T atcmd_lwip_start_autorecv_task +100097c0 T fATPK +100098c8 T atcmd_lwip_is_tt_mode +100098d8 T atcmd_lwip_start_tt_task +10009970 T fATPU +10009ab0 T atcmd_lwip_write_info_to_flash +10009b9c T fATPL +10009c78 T atcmd_lwip_auto_connect +10009eac T atcmd_lwip_restore_from_flash +10009ec8 T print_tcpip_at +10009ef8 T at_transport_init +10009f20 T fATS0 +10009f44 T fATSR +10009f6c T fATSV +10009fb8 T fATSP +1000a0a8 T fATSL +1000a1e8 T fATSE +1000a2e0 T fATSY +1000a310 T fATSC +1000a3c4 T fATSO +1000a47c T fATSU +1000a5d8 T fATSG +1000a794 T print_system_at +1000a7c4 T fATSh +1000a854 T at_sys_init +1000a860 t init_wifi_struct +1000a8b8 T fATWD +1000a980 T fATWQ +1000a9bc T fATPH +1000aa7c T fATPW +1000ab28 T fATWS +1000ac64 T fATWx +1000aec0 T fATPA +1000b0c4 t _find_ap_from_scan_buf +1000b13c T fATPE +1000b248 T fATPF +1000b350 T fATPM +1000b3f0 t app_scan_result_handler +1000b548 T fATPN +1000b7e8 T atcmd_wifi_write_info_to_flash +1000b9fc T fATPG +1000badc T atcmd_wifi_restore_from_flash +1000bccc T print_wlan_help +1000bd88 T print_wifi_at +1000bdb8 T at_wifi_init +1000bdd0 T log_service_add_table +1000be30 T log_action +1000be8c T log_handler +1000befc T parse_param +1000c024 T at_set_debug_level +1000c030 T at_set_debug_mask +1000c03c T mp_commnad_handler +1000c09c T print_help_handler +1000c0bc T log_service +1000c1e4 T log_service_lock +1000c1f0 T log_service_unlock +1000c1fc T start_log_service +1000c244 T log_service_init +1000c2d0 T console_cmd_exec +1000c338 T console_init +1000c370 T get_eap_phase +1000c37c T get_eap_method +1000c388 T eap_autoreconnect_hdl +1000c38c t wifi_no_network_hdl +1000c3a4 t wifi_ap_sta_assoc_hdl +1000c3a8 t wifi_ap_sta_disassoc_hdl +1000c3ac T wifi_scan_done_hdl +1000c420 t wifi_handshake_done_hdl +1000c43c t wifi_disconn_hdl +1000c4b0 t wifi_connected_hdl +1000c4e4 T wifi_scan_each_report_hdl +1000c65c T wifi_autoreconnect_hdl +1000c698 T wifi_rx_beacon_hdl +1000c69c T wifi_connect +1000ca88 t wifi_autoreconnect_thread +1000cb14 T wifi_connect_bssid +1000ce30 T wifi_disconnect +1000ce80 T wifi_is_connected_to_ap +1000ce84 T wifi_set_mac_address +1000ceb8 T wifi_get_associated_client_list +1000cf00 T wifi_set_channel +1000cf0c T wifi_on +1000cfc0 T wifi_off +1000d044 T wifi_start_ap +1000d128 T wifi_start_ap_with_hidden_ssid +1000d218 T wifi_scan +1000d278 T wifi_scan_networks_with_ssid +1000d428 T wifi_scan_networks +1000d4e4 T wifi_set_pscan_chan +1000d508 T wifi_get_setting +1000d5d0 T wifi_show_setting +1000d7a0 T wifi_set_promisc +1000d7a4 T wifi_enter_promisc_mode +1000d7fc T wifi_config_autoreconnect +1000d820 T wifi_set_autoreconnect +1000d844 T wifi_init_packet_filter +1000d848 T wifi_add_packet_filter +1000d84c T wifi_enable_packet_filter +1000d850 T wifi_disable_packet_filter +1000d854 T wifi_remove_packet_filter +1000d858 T wifi_indication +1000d890 T wifi_reg_event_handler +1000d8e4 T wifi_unreg_event_handler +1000d92c T init_event_callback_list +1000d93c T promisc_deinit +1000d940 T promisc_recv_func +1000d944 T promisc_set +1000d948 T is_promisc_enabled +1000d954 T promisc_get_fixed_channel +1000d958 T promisc_init_packet_filter +1000d994 T promisc_add_packet_filter +1000da14 T promisc_enable_packet_filter +1000da58 T promisc_disable_packet_filter +1000da9c T promisc_remove_packet_filter +1000db08 T simple_config_callback +1000db54 T SC_set_ack_content +1000dba4 T SC_send_simple_config_ack +1000dc44 T get_connection_info_from_profile +1000df74 T SC_translate_iw_security_mode +1000df9c T SC_parse_scan_result_and_connect +1000e108 T SC_connect_to_candidate_AP +1000e1a8 T SC_translate_security +1000e1e0 T SC_connect_to_AP +1000e2e8 T init_test_data +1000e430 T deinit_test_data +1000e468 T simple_config_test +1000e678 T filter_add_enable +1000e6f0 T remove_filter +1000e710 T print_simple_config_result +1000e7b0 T cmd_simple_config +1000e84c T wext_get_ssid +1000e8b8 T wext_set_ssid +1000e90c T wext_set_bssid +1000e978 T wext_set_auth_param +1000e9c8 T wext_set_key_ext +1000eb00 T wext_get_enc_ext +1000eb7c T wext_set_passphrase +1000ebd0 T wext_get_passphrase +1000ec18 T wext_set_mode +1000ec5c T wext_get_mode +1000eca0 T wext_set_ap_ssid +1000ecf4 T wext_set_pscan_channel +1000ed98 T wext_set_channel +1000ede8 T wext_get_channel +1000ee30 T wext_set_scan +1000ee80 T wext_get_scan +1000eebc T wext_private_command +1000effc T wext_wlan_indicate +1000f178 T wext_set_autoreconnect +1000f1f4 T wext_set_adaptivity +1000f22c T wext_set_sta_num +1000f230 T LwIP_Init +1000f3b0 T LwIP_DHCP +1000f568 T LwIP_GetMAC +1000f56c T LwIP_GetIP +1000f570 T LwIP_GetGW +1000f574 T LwIP_UseStaticIP +1000f654 T LwIP_AUTOIP +1000f728 T ping_test +1000f950 T do_ping_call +1000f9ac T ota_platform_reset +1000f9e0 T write_ota_addr_to_system_data +1000faa4 t update_ota_local_task +1000ff84 T update_ota_local +10010024 T cmd_update +10010058 T cmd_ota_image +100100f8 T init_thread +1001012c T wlan_network +10010170 t netconn_recv_data +10010250 T netconn_new_with_proto_and_callback +100102b4 T netconn_delete +100102d8 T netconn_getaddr +1001031c T netconn_bind +1001035c T netconn_connect +1001039c T netconn_listen_with_backlog +100103d4 T netconn_accept +1001045c T netconn_recv_tcp_pbuf +10010470 T netconn_recv +100104f8 T netconn_recved +1001052c T netconn_send +10010568 T netconn_write_partly +100105fc T netconn_gethostbyname +10010650 t recv_udp +100106c0 t recv_raw +10010748 t setup_tcp +1001078c t err_tcp +1001082c t do_connected +100108a4 t do_writemore +100109cc t do_close_internal +10010ad4 t poll_tcp +10010b28 t do_dns_found +10010b60 t sent_tcp +10010bb0 t recv_tcp +10010c34 T do_newconn +10010ccc T netconn_alloc +10010d34 T netconn_free +10010d64 t netconn_drain +10010e00 t accept_function +10010e9c T do_delconn +10010f44 T do_bind +10010fcc T do_connect +10011098 T do_listen +1001114c T do_send +100111dc T do_recv +10011228 T do_write +10011268 T do_getaddr +10011308 T do_gethostbyname +10011334 T netbuf_delete +10011358 T netbuf_free +10011370 T netbuf_ref +100113ac T lwip_gethostbyname +10011400 t alloc_socket +1001147c t lwip_selscan +100115f4 t event_callback +10011714 t lwip_setsockopt_internal +100118d0 T lwip_socket_init +100118d4 T lwip_accept +10011a2c T lwip_bind +10011abc T lwip_close +10011b34 T lwip_connect +10011bc4 T lwip_listen +10011c40 T lwip_recvfrom +10011e60 T lwip_read +10011e74 T lwip_sendto +10011f60 T lwip_send +10011ff4 T lwip_socket +1001208c T lwip_write +10012094 T lwip_select +10012350 T lwip_setsockopt +100124e8 t tcpip_thread +1001258c T tcpip_input +100125d4 T tcpip_callback_with_block +1001262c T tcpip_timeout +10012668 T tcpip_apimsg +100126c0 T tcpip_init +10012708 t autoip_start_probing +10012764 t autoip_arp_announce +10012790 T autoip_start +10012830 T autoip_tmr +10012958 T autoip_arp_reply +100129f8 t icmp_send_response.isra.0 +10012a68 T icmp_input +10012b8c T icmp_dest_unreach +10012b98 T icmp_time_exceeded +10012ba4 t igmp_send +10012c48 t igmp_delaying_member +10012c80 t igmp_lookup_group +10012ccc T igmp_init +10012cec T igmp_start +10012d24 T igmp_report_groups +10012d4c T igmp_lookfor_group +10012d70 T igmp_input +10012e60 T igmp_joingroup +10012f1c T igmp_leavegroup +10013004 T igmp_tmr +10013034 t lwip_standard_chksum +100130ac T inet_chksum_pseudo +1001313c T inet_chksum +10013148 T inet_chksum_pbuf +1001319c T ip_route +100131e4 T ip_input +100133b0 T ip_output_if_opt +10013550 T ip_output_if +10013574 T ip_output +100135b8 T ip4_addr_isbroadcast +100135f0 T ipaddr_aton +1001372c T ipaddr_addr +1001374c T ipaddr_ntoa_r +1001380c T ipaddr_ntoa +10013818 t ipfrag_free_pbuf_custom +10013830 t ip_reass_free_complete_datagram +100138bc t ip_reass_remove_oldest_datagram +10013934 T ip_reass_tmr +10013964 T ip_reass +10013c54 T ip_frag +10013e0c T lwip_htons +10013e14 T lwip_ntohs +10013e1c T lwip_htonl +10013e20 T lwip_ntohl +10013e24 t dhcp_option_trailer +10013e58 t dhcp_create_msg +10013fcc t dhcp_delete_msg +10013fe4 t dhcp_discover +10014114 t dhcp_rebind +100141e0 t dhcp_check +1001420c t dhcp_bind +10014308 t dhcp_option_long.isra.3 +10014350 t dhcp_select +100144e8 t dhcp_reboot +100145e8 t dhcp_recv +10014a40 T dhcp_arp_reply +10014ae0 T dhcp_renew +10014bac T dhcp_release +10014c60 T dhcp_coarse_tmr +10014cec T dhcp_fine_tmr +10014d8c T dhcp_release_unicast +10014e9c T dhcp_stop +10014ecc T dhcp_start +10014f70 t dns_recv +10015130 t dns_send +10015238 t dns_check_entry +100152ec T dns_init +10015350 T dns_setserver +10015378 T dns_tmr +100153a4 T dns_gethostbyname +100154dc T lwip_init +1001550c T sys_timeout +1001557c T tcp_timer_needed +100155bc t tcpip_tcp_timer +100155f4 T sys_timeouts_init +10015668 t dns_timer +10015684 t igmp_timer +1001569c t autoip_timer +100156b4 t dhcp_timer_fine +100156d0 t dhcp_timer_coarse +100156ec t arp_timer +10015708 t ip_reass_timer +10015724 T sys_untimeout +1001576c T sys_timeouts_mbox_fetch +100157dc T mem_init +10015834 T mem_free +100158ec T mem_trim +100159f0 T mem_malloc +10015ae8 T memp_init +10015b60 T memp_malloc +10015b8c T memp_free +10015bb4 T netif_init +10015bb8 T netif_set_ipaddr +10015c28 T netif_set_addr +10015c44 T netif_add +10015cbc T netif_set_gw +10015cc4 T netif_set_netmask +10015ccc T netif_set_default +10015cd8 T netif_set_up +10015d10 T netif_set_down +10015d2c t pbuf_free_ooseq_callback +10015d64 t pbuf_pool_is_empty +10015da0 T pbuf_alloced_custom +10015dfc T pbuf_header +10015e68 T pbuf_free +10015ed4 T pbuf_alloc +10016000 T pbuf_realloc +10016054 T pbuf_clen +10016068 T pbuf_ref +10016084 T pbuf_cat +100160b4 T pbuf_chain +100160c8 T pbuf_copy +10016168 T pbuf_copy_partial +100161d8 T pbuf_coalesce +10016204 T raw_input +1001627c T raw_bind +10016288 T raw_connect +10016294 T raw_recv +1001629c T raw_sendto +10016348 T raw_send +10016350 T raw_remove +10016388 T raw_new +100163b4 t tcp_accept_null +100163bc t tcp_new_port +10016414 T tcp_init +10016418 T tcp_bind +100164b4 T tcp_listen_with_backlog +10016580 T tcp_update_rcv_ann_wnd +100165c0 T tcp_recved +100165fc T tcp_seg_free +10016618 T tcp_segs_free +1001662c T tcp_seg_copy +1001664c T tcp_arg +10016650 T tcp_recv +10016658 T tcp_sent +10016660 T tcp_err +10016668 T tcp_accept +1001666c T tcp_poll +10016678 T tcp_pcb_purge +100166e0 T tcp_slowtmr +10016a30 T tcp_pcb_remove +10016aa4 t tcp_close_shutdown +10016c18 T tcp_close +10016c30 T tcp_recv_null +10016c58 T tcp_process_refused_data +10016cbc T tcp_fasttmr +10016d34 T tcp_tmr +10016d58 T tcp_shutdown +10016db0 T tcp_abandon +10016e68 T tcp_abort +10016e70 T tcp_alloc +10016fac T tcp_new +10016fb4 T tcp_eff_send_mss +10016fd4 T tcp_connect +10017150 t tcp_oos_insert_segment +100171f8 t tcp_receive +10017a98 t tcp_parseopt.isra.0 +10017b28 T tcp_input +10018450 t tcp_pbuf_prealloc +100184ac t tcp_create_segment.isra.0 +1001855c t tcp_output_alloc_header.constprop.1 +100185cc T tcp_write +1001896c T tcp_enqueue_flags +10018a28 T tcp_send_fin +10018a74 T tcp_send_empty_ack +10018ad4 T tcp_output +10018d98 T tcp_rst +10018e34 T tcp_rexmit_rto +10018e68 T tcp_rexmit +10018ebc T tcp_rexmit_fast +10018f0c T tcp_keepalive +10018f60 T tcp_zero_window_probe +10019014 T udp_init +10019018 T udp_input +100191c0 T udp_bind +1001928c T udp_sendto_if +10019394 T udp_sendto +100193cc T udp_send +100193d4 T udp_connect +1001942c T udp_disconnect +1001943c T udp_recv +10019444 T udp_remove +1001947c T udp_new +10019498 t etharp_free_entry +100194d4 t etharp_find_entry +100195e4 t etharp_send_ip +10019614 T etharp_tmr +10019664 T etharp_cleanup_netif +10019690 T etharp_raw +1001974c T etharp_request +10019778 t etharp_output_to_arp_index +100197d4 T etharp_query +100198dc T etharp_output +10019a04 T ethernet_input +10019c14 t low_level_output +10019c7c t arp_timer +10019c98 T ethernetif_recv +10019d2c T ethernetif_init +10019d58 T lwip_POST_SLEEP_PROCESSING +10019d74 T rltk_wlan_set_netif_info +10019d98 T rltk_wlan_send +10019e3c T rltk_wlan_recv +10019eb8 T netif_is_valid_IP +10019ef0 T netif_get_idx +10019f14 T netif_rx +10019f28 T netif_post_sleep_processing +10019f2c T sys_mbox_new +10019f4c T sys_mbox_free +10019f60 T sys_mbox_post +10019f84 T sys_mbox_trypost +10019fa8 T sys_arch_mbox_fetch +10019ff8 T sys_arch_mbox_tryfetch +1001a01c T sys_mbox_valid +1001a028 T sys_mbox_set_invalid +1001a030 T sys_sem_new +1001a070 T sys_arch_sem_wait +1001a0b0 T sys_sem_signal +1001a0bc T sys_sem_free +1001a0c4 T sys_sem_valid +1001a0d0 T sys_sem_set_invalid +1001a0d8 T sys_init +1001a0fc T sys_thread_new_tcm +1001a16c T sys_arch_protect +1001a178 T sys_arch_unprotect +1001a17c T sys_now +1001a180 t mark_ip_in_table +1001a278 t dhcps_initialize_message +1001a32c t add_offer_options +1001a3e8 T dhcps_handle_state_machine_change +1001a4dc t dhcps_receive_udp_packet_handler +1001a874 T dhcps_set_addr_pool +1001a8a8 T dhcps_init +1001a9a8 T dhcps_deinit +1001a9d0 t prvInsertBlockIntoFreeList +1001aa30 T __vPortFree +1001aa84 T vPortSetExtFree +1001aaa4 T vPortFree +1001aadc T xPortGetFreeHeapSize +1001aae8 T vPortDefineHeapRegions +1001ab84 T pvPortMalloc +1001ac58 t prvPortStartFirstTask +1001ac78 T pxPortInitialiseStack +1001ac9c T vPortSVCHandler +1001acbc t pxCurrentTCBConst2 +1001acc0 T vPortYield +1001acd8 T ulPortSetInterruptMask +1001ace8 t prvTaskExitError +1001acf0 T vPortEnterCritical +1001ad0c T vPortClearInterruptMask +1001ad14 T vPortExitCritical +1001ad28 T xPortPendSVHandler +1001ad68 t pxCurrentTCBConst +1001ad6c T xPortSysTickHandler +1001ad90 W vPortSuppressTicksAndSleep +1001aec4 W vPortSetupTimerInterrupt +1001af28 T xPortStartScheduler +1001af58 T vApplicationIdleHook +1001af5c T vApplicationStackOverflowHook +1001af78 T osDelay +1001af9c T vListInitialise +1001afb4 T vListInitialiseItem +1001afbc T vListInsertEnd +1001afd8 T vListInsert +1001b00c T uxListRemove +1001b034 t prvCopyDataToQueue +1001b0b0 t prvCopyDataFromQueue +1001b0d8 t prvUnlockQueue +1001b15c T xQueueGenericReset +1001b1c0 T xQueueGenericCreate +1001b204 T xQueueCreateCountingSemaphore +1001b218 T xQueueGenericSend +1001b308 T xQueueCreateMutex +1001b34c T xQueueGenericSendFromISR +1001b3cc T xQueueGenericReceive +1001b4f0 T uxQueueMessagesWaiting +1001b504 T vQueueDelete +1001b51c T vQueueWaitForMessageRestricted +1001b558 t prvGetExpectedIdleTime +1001b58c t prvResetNextTaskUnblockTime +1001b5b4 t prvAddCurrentTaskToDelayedList +1001b604 T xTaskGenericCreate +1001b7d4 T vTaskDelete +1001b87c T uxTaskPriorityGet +1001b8a4 T vTaskPrioritySet +1001b968 T vTaskStartScheduler +1001b9c0 T vTaskSuspendAll +1001b9d0 T xTaskGetTickCount +1001b9e8 T xTaskGetTickCountFromISR +1001ba00 T pcTaskGetTaskName +1001ba14 T vTaskStepTick +1001ba24 T xTaskIncrementTick +1001bb50 T xTaskResumeAll +1001bc28 T vTaskDelay +1001bc84 t prvIdleTask +1001bd24 T vTaskSwitchContext +1001bdb8 T vTaskPlaceOnEventList +1001be14 T vTaskPlaceOnEventListRestricted +1001be5c T xTaskRemoveFromEventList +1001bed4 T vTaskSetTimeOutState +1001beec T xTaskCheckForTimeOut +1001bf4c T vTaskMissedYield +1001bf58 T eTaskConfirmSleepModeStatus +1001bf78 T xTaskGetSchedulerState +1001bf98 T vTaskPriorityInherit +1001c030 T xTaskPriorityDisinherit +1001c0b8 T pvTaskIncrementMutexHeldCount +1001c0d0 T vTaskGetCurrentTCB +1001c0dc t prvCheckForValidListAndQueue +1001c134 t prvInsertTimerInActiveList +1001c178 T xTimerCreateTimerTask +1001c1b8 T xTimerCreate +1001c1f8 T xTimerGenericCommand +1001c2a8 t prvSwitchTimerLists +1001c320 t prvTimerTask +1001c49c T xTimerIsTimerActive +1001c4b4 t device_mutex_init +1001c500 T device_mutex_lock +1001c530 T device_mutex_unlock +1001c54c t _freertos_systime_to_ms +1001c550 t _freertos_systime_to_sec +1001c560 t _freertos_ms_to_systime +1001c564 t _freertos_sec_to_systime +1001c570 t _freertos_usleep_os +1001c574 t _freertos_ATOMIC_SET +1001c578 t _freertos_ATOMIC_READ +1001c57c t _freertos_modular64 +1001c60c t _freertos_thread_enter +1001c610 t _freertos_enter_critical +1001c614 t _freertos_exit_critical +1001c618 t _freertos_ATOMIC_SUB_RETURN +1001c630 t _freertos_ATOMIC_DEC_RETURN +1001c648 t _freertos_ATOMIC_ADD_RETURN +1001c660 t _freertos_ATOMIC_INC_RETURN +1001c678 t _freertos_ATOMIC_SUB +1001c690 t _freertos_ATOMIC_DEC +1001c6a8 t _freertos_ATOMIC_ADD +1001c6c0 t _freertos_ATOMIC_INC +1001c6d8 t _freertos_enter_critical_from_isr +1001c6e8 T _freertos_malloc +1001c6ec T _freertos_zmalloc +1001c704 t _freertos_memset +1001c708 T _freertos_mfree +1001c70c t _freertos_up_sema +1001c718 T _freertos_wakeup_task +1001c724 t _freertos_spinunlock_irqsave +1001c73c t _freertos_spinunlock +1001c748 t _freertos_exit_critical_mutex +1001c754 t _freertos_mutex_put +1001c760 T _freertos_timerCreate +1001c764 T _freertos_timerDelete +1001c77c T _freertos_timerStop +1001c794 T _freertos_timerChangePeriod +1001c7b4 T _freertos_timerIsTimerActive +1001c7b8 T _freertos_acquire_wakelock +1001c7c0 T _freertos_release_wakelock +1001c7c8 T _freertos_get_scheduler_state +1001c7e8 t _freertos_thread_exit +1001c7f0 t _freertos_GetFreeHeapSize +1001c7f4 t _freertos_arc4random +1001c824 t _freertos_get_current_time +1001c828 t _freertos_yield_os +1001c82c t _freertos_udelay_os +1001c830 t _freertos_mdelay_os +1001c834 t _freertos_msleep_os +1001c838 t _freertos_deinit_xqueue +1001c854 t _freertos_spinlock_free +1001c868 t _freertos_mutex_free +1001c87c t _freertos_free_sema +1001c890 t _freertos_push_to_xqueue +1001c8b8 t _freertos_pop_from_xqueue +1001c8e0 t _freertos_down_sema +1001c904 t _freertos_init_xqueue +1001c924 t _freertos_spinlock_irqsave +1001c964 t _freertos_spinlock +1001c9a0 t _freertos_enter_critical_mutex +1001c9d8 t _freertos_mutex_get +1001ca14 t _freertos_spinlock_init +1001ca24 t _freertos_mutex_init +1001ca34 t _freertos_exit_critical_from_isr +1001ca40 t _freertos_up_sema_from_isr +1001ca6c t _freertos_init_sema +1001ca7c t _freertos_create_task +1001cb00 t _freertos_memcmp +1001cb10 t _freertos_memcpy +1001cb14 t _freertos_get_random_bytes +1001cb5c t _freertos_delete_task +1001cbb0 t _freertos_mutex_get_timeout +1001cbf0 T save_and_cli +1001cbf4 T restore_flags +1001cbf8 T cli +1001cbfc T RtlInitSema +1001cc0c T RtlFreeSema +1001cc14 T RtlUpSema +1001cc20 T RtlUpSemaFromISR +1001cc44 T RtlDownSema +1001cc58 T RtlMsleepOS +1001cc60 T RtlUdelayOS +1001cc64 T _htons +1001cc6c T _ntohs +1001cc74 T _rtw_zvmalloc +1001cc94 T _rtw_vmfree +1001ccbc T init_mem_monitor +1001ccd8 T deinit_mem_monitor +1001ccdc T add_mem_usage +1001cd1c T rtw_zvmalloc +1001cd40 T rtw_vmfree +1001cd44 T rtw_malloc +1001cd70 T rtw_zmalloc +1001cd9c T rtw_mfree +1001cdac T rtw_memcpy +1001cdbc T rtw_memcmp +1001cdd0 T rtw_memset +1001cde0 T rtw_init_listhead +1001cde8 T rtw_is_list_empty +1001cdf4 T rtw_list_insert_head +1001ce00 T rtw_list_insert_tail +1001ce0c T rtw_list_delete +1001ce1c T rtw_init_sema +1001ce2c T rtw_free_sema +1001ce3c T rtw_up_sema +1001ce4c T rtw_up_sema_from_isr +1001ce5c T rtw_down_timeout_sema +1001ce70 T rtw_down_sema +1001ce90 T rtw_mutex_init +1001cea0 T rtw_mutex_free +1001ceb0 T rtw_mutex_put +1001cec0 T rtw_mutex_get_timeout +1001ced8 T rtw_enter_critical +1001cee8 T rtw_exit_critical +1001cef8 T rtw_enter_critical_bh +1001cf08 T rtw_exit_critical_bh +1001cf18 T rtw_enter_critical_mutex +1001cf2c T rtw_exit_critical_mutex +1001cf3c T rtw_init_queue +1001cf54 T rtw_queue_empty +1001cf60 T rtw_end_of_queue_search +1001cf68 T rtw_spinlock_init +1001cf78 T rtw_spinlock_free +1001cf88 T rtw_spin_lock +1001cf98 T rtw_spin_unlock +1001cfa8 T rtw_get_current_time +1001cfbc T rtw_systime_to_ms +1001cfd4 T rtw_systime_to_sec +1001cfec T rtw_ms_to_systime +1001d004 T rtw_sec_to_systime +1001d01c T rtw_get_passing_time_ms +1001d04c T rtw_msleep_os +1001d060 T rtw_usleep_os +1001d074 T rtw_mdelay_os +1001d088 T rtw_udelay_os +1001d09c T ATOMIC_SET +1001d0b0 T ATOMIC_INC +1001d0c4 T ATOMIC_INC_RETURN +1001d0dc T ATOMIC_DEC_AND_TEST +1001d0fc T rtw_modular64 +1001d114 T rtw_get_random_bytes +1001d12c T rtw_getFreeHeapSize +1001d140 T rtw_netif_queue_stopped +1001d144 T rtw_netif_wake_queue +1001d148 T rtw_netif_start_queue +1001d14c T rtw_netif_stop_queue +1001d150 T flush_signals_thread +1001d154 T rtw_acquire_wakelock +1001d168 T rtw_release_wakelock +1001d17c T rtw_create_task +1001d1a0 T rtw_delete_task +1001d1b4 T rtw_wakeup_task +1001d1c8 T rtw_timerCreate +1001d1e8 T rtw_timerDelete +1001d200 T rtw_timerIsTimerActive +1001d218 T rtw_timerStop +1001d230 T rtw_timerChangePeriod +1001d248 T rtw_thread_enter +1001d25c T rtw_thread_exit +1001d270 T tcm_heap_init +1001d2b8 T tcm_heap_allocmem +1001d340 T tcm_heap_freemem +1001d3cc T tcm_heap_free +1001d3dc T tcm_heap_malloc +1001d3f0 T tcm_heap_calloc +1001d418 t flash_init.isra.0 +1001d46c T flash_erase_sector +1001d4a4 T flash_read_word +1001d4ec T flash_write_word +1001d554 T flash_stream_read +1001d694 T flash_stream_write +1001d84c T gpio_set +1001d884 T gpio_init +1001d8b8 T gpio_mode +1001d8e8 T gpio_dir +1001d918 T gpio_write +1001d968 T gpio_read +1001d99c T gpio_irq_init +1001d9e8 T gpio_irq_set +1001da2c T gpio_irq_enable +1001da44 T pin_function +1001da48 T pin_mode +1001da4c W pinmap_merge +1001da8c W pinmap_find_peripheral +1001daa8 W pinmap_peripheral +1001dae4 t SerialRxDoneCallBack +1001db08 t SerialTxDoneCallBack +1001db3c T serial_init +1001dc40 T serial_baud +1001dc48 T serial_format +1001dca0 T serial_irq_handler +1001dce0 T serial_irq_set +1001dd80 T serial_getc +1001dda0 T serial_putc +1001dde8 T serial_set_flow_control +1001de20 T serial_rx_fifo_level +1001de3c T sleep_ex_selective +1001de50 T sys_reset +1001de84 T sys_is_sdram_power_on +1001de88 T us_ticker_read +1001deb8 T En32KCalibration +1001df58 T HalGdmaOpInit +1001dfc0 T HAL_GPIO_GetPinName +1001dfcc T HAL_GPIO_PullCtrl +1001dfec T HAL_GPIO_Init +1001e064 T HAL_GPIO_Irq_Init +1001e11c T HalTimerOpInit_Patch +1001e15c T HalRuartOpInit +1001e250 T HalRuartSetBaudRate +1001e254 T HalRuartInit +1001e30c T HalRuartFlowCtrl +1001e324 T freertos_ready_to_sleep +1001e338 T freertos_pre_sleep_processing +1001e3f0 T freertos_post_sleep_processing +1001e41c T acquire_wakelock +1001e42c T release_wakelock +1001e43c T get_wakelock_status +1001e448 T HalGdmaChBlockSetingRtl8195a_Patch +1001e76c T HalGdmaQueryDArRtl8195a +1001e788 T HalGdmaQuerySArRtl8195a +1001e7a4 T HalGdmaQueryChEnRtl8195a +1001e7c0 T HAL_GPIO_ClearISR_8195a +1001e85c T HalTimerIrq2To7Handle_Patch +1001e8dc T HalTimerIrqRegisterRtl8195a_Patch +1001e960 T HalTimerInitRtl8195a_Patch +1001ea80 T HalTimerIrqUnRegisterRtl8195a_Patch +1001eb0c T HalTimerDeInitRtl8195a_Patch +1001eb40 T HalTimerReadCountRtl8195a_Patch +1001eb58 T HalTimerReLoadRtl8195a_Patch +1001eb98 T HalTimerIrqEnRtl8195a +1001ebb0 T HalTimerEnRtl8195a_Patch +1001ebc8 T HalTimerDisRtl8195a_Patch +1001ebe0 T HalRuartGetChipVerRtl8195a +1001ebf0 T HalRuartResetRxFifoRtl8195a_Patch +1001ec3c T HalRuartGenBaudRateRtl8195a +1001ee24 T HalRuartSetBaudRateRtl8195a +1001f08c T HalRuartInitRtl8195a_Patch +1001f2dc T HalRuartFlowCtrlRtl8195a +1001f304 T HalRuartDmaSendRtl8195a_Patch +1001f3e4 T HalRuartStopRecvRtl8195a_Patch +1001f4b8 T HalRuartStopSendRtl8195a_Patch +1001f584 T pre_example_entry +1001f588 T example_entry +1001f58c T gpio_uart_at_rx_irq_callback +1001f590 T uart_atcmd_module_init +1001f5d0 T atcmd_update_partition_info +1001f6f4 T read_uart_atcmd_setting_from_system_data +1001f764 T write_uart_atcmd_setting_to_system_data +1001f778 T reset_uart_atcmd_setting +1001f78c T uart_at_rx_wakeup +1001f7b8 T uart_atcmd_reinit +1001f800 T uart_at_send_string +1001f820 T uart_irq +1001fb34 T uart_at_send_buf +1001fb54 T uart_atcmd_main +1001fbd8 t uart_atcmd_thread +1001fc74 T example_uart_atcmd +1001fc84 T main +1001fca0 T HalNMIHandler_Patch +1001fce0 W SDIO_Device_Off +1001fd1c T HalCommonInit +1001fd2c T HALEFUSEOneByteReadRAM +1001fd48 T HALEFUSEOneByteWriteRAM +1001fd60 T GpioIcFunChk +1001fdb4 T GpioFunctionChk +1001fdf8 T RTL8710afFunChk +1001fe38 T FunctionChk +1001fe88 T vWFSSVCHandler +1001fe8e t svcing +1001fea8 T PatchHalLogUartInit +1001ff5c T PSHalInitPlatformLogUart +1001ffe4 T SDRWakeUp +10020024 T SDRSleep +1002010c T InitSYSIRQ +10020148 T DurationScaleAndPeriodOP +10020180 T CLKCal +100201d8 T BackupCPUClk +100201f8 T ReFillCpuClk +10020218 T SYSIrqHandle +10020264 T WakeFromSLPPG +1002039c T InitSoCPM +100203d4 T RegPowerState +10020440 T SetSYSTimer +10020474 T SleepCG +10020570 T ShowRamBuildInfo +10020572 W __low_level_init +10020574 T _AppStart +100205b0 t bytecopy +100205c4 t rtk_sc_register_pattern +100205ec t rtk_sc_generate_key +100205fa t rtk_sc_decode_profile +10020608 t rtk_sc_get_tlv_info +10020616 t mcast_udp_get_cipher_info +10020640 t mcast_udp_get_pattern +100207b8 t bcast_udp_get_pattern +10020874 t bcast_udp_get_cipher_info +100208d4 t rtk_clean_profile_value +10020934 t mcast_udp_decode_profile +10020960 t mcast_udp_generate_key +10020a70 t rtk_sc_check_packet.isra.0 +10020aa0 W whc_fix_channel +10020aa2 W whc_unfix_channel +10020aa4 T simple_config_lib_init +10020ac0 T simple_config_lib_deinit +10020ad4 T parse_tlv_info_bcast +10020bd8 t mcast_udp_get_profile +10020d04 T rtk_restart_simple_config +10020d3c T rtk_stop_simple_config +10020d50 T rtk_sc_init +10020ee0 T rtk_sc_deinit +10020f1c T rtk_start_parse_packet +10021224 t rtw_ht_operation_update +100212d6 t associated_clients_update.part.11 +10021312 T chk_sta_is_alive +10021350 T add_RATid +10021458 T update_sta_info_apmode +10021510 T update_beacon +100217d0 T rtw_check_beacon_data +10021ed0 T associated_clients_update +10021eda T bss_cap_update_on_sta_join +1002208a T bss_cap_update_on_sta_leave +10022186 T ap_free_sta +10022238 T expire_timeout_chk +10022374 T rtw_sta_flush +100223f8 T free_mlme_ap_info +10022444 T sta_info_update +10022480 T ap_sta_info_defer_update +100224b0 T start_ap_mode +100224f0 T init_mlme_ap_info +10022506 T stop_ap_mode +10022554 T rtw_generate_bcn_ie +10022878 T set_hidden_ssid +100228d0 T _rtw_init_evt_priv +100228e2 T _rtw_free_cmd_priv +100228ec T _rtw_enqueue_cmd +10022918 T _rtw_dequeue_cmd +1002294c T _rtw_observequeue_cmd +10022960 T rtw_init_cmd_priv +1002296a T rtw_init_evt_priv +1002296e T rtw_free_evt_priv +10022970 T rtw_free_cmd_priv +10022974 T rtw_cmd_filter +10022992 T rtw_free_cmd_obj +100229bc T rtw_enqueue_cmd +10022a12 T rtw_set_channel_plan_cmd_callback +10022a2a T rtw_survey_cmd_callback +10022a46 T rtw_disassoc_cmd_callback +10022a76 T rtw_joinbss_cmd_callback +10022a92 T rtw_setstaKey_cmdrsp_callback +10022aac T rtw_cmd_thread +10022c08 T rtw_joinbss_cmd +10022eb2 T rtw_disassoc_cmd +10022f00 T rtw_setstakey_cmd +10022ff0 T rtw_clearstakey_cmd +10023090 T rtw_dynamic_chk_wk_cmd +100230e2 T rtw_set_chplan_cmd +10023162 T dynamic_chk_wk_hdl +1002322a T lps_ctrl_wk_hdl +1002328e T rtw_lps_ctrl_wk_cmd +100232f8 T rtw_sitesurvey_cmd +100233c0 T rpt_timer_setting_wk_hdl +100233d4 T rtw_ps_cmd +10023430 T rtw_chk_hi_queue_cmd +10023484 T rtw_drvextra_cmd_hdl +10023560 t rtw_free_mlme_ie_data +10023578 T rtw_init_mlme_timer +100235d4 T rtw_del_mlme_timer +100235f4 T reconnect_timer_hdl +10023694 T _rtw_init_mlme_priv +10023716 T rtw_mfree_mlme_priv_lock +10023732 T rtw_free_mlme_priv_ie_data +1002376a T _rtw_free_mlme_priv +10023792 T _rtw_alloc_network +100237e2 T _rtw_free_network +10023842 T _rtw_free_network_nolock +10023868 T _rtw_find_network +100238a4 T _rtw_free_network_queue +100238ec T rtw_if_up +1002390c T rtw_get_capability_from_ie +10023910 T rtw_get_capability +1002392a T rtw_get_beacon_interval_from_ie +1002392e T rtw_init_mlme_priv +10023946 T rtw_free_mlme_priv +1002394a T rtw_free_network_queue +1002394e T rtw_is_same_ibss +10023964 T is_same_network +100239c8 T update_network +10023a62 T rtw_update_scanned_network +10023b74 T rtw_add_network +10023bb2 T rtw_survey_event_callback +10023c5e T rtw_dummy_event_callback +10023c60 T rtw_free_assoc_resources +10023d2a T rtw_indicate_connect +10023d3a T rtw_indicate_disconnect +10023d5c T rtw_indicate_scan_done +10023d60 T rtw_joinbss_event_callback +10023d7e T search_max_mac_id +10023dc6 T rtw_stassoc_hw_rpt +10023dfe T rtw_stassoc_event_callback +10023e2c T rtw_stadel_event_callback +10023ed2 T _rtw_join_timeout_handler +10023f5c T rtw_join_timeout_handler +10023fb4 T rtw_scan_timeout_handler +10023fe4 T _rtw_scan_timeout_handler +10023fe8 T rtw_dynamic_check_timer_handlder +10024040 T _dynamic_check_timer_handlder +10024084 T rtw_select_and_join_from_scanned_queue +10024158 T rtw_surveydone_event_callback +10024270 T rtw_set_auth +100242c0 T rtw_set_key +10024382 T rtw_restruct_wmm_ie +100243e8 T rtw_restruct_sec_ie +10024454 T rtw_joinbss_reset +10024464 T rtw_restructure_ht_ie +10024544 T rtw_update_ht_cap +100245ce T rtw_joinbss_event_prehandle +100247fa T rtw_linked_check +10024816 T rtw_buddy_adapter_up +1002484e T check_buddy_fwstate +1002486c t get_da +1002488c t get_sa +100248b6 T OnAction +100248c8 T DoReserved +100248cc t _mgt_dispatcher.isra.2 +10024918 T rtw_is_channel_set_contains_channel +1002493a T init_hw_mlme_ext +10024950 T init_channel_set +100249e8 T free_mlme_ext_priv +10024a10 T mgt_dispatcher +10024a98 T alloc_mgtxmitframe +10024ad0 T update_mgnt_tx_rate +10024ad6 T update_mgntframe_attrib +10024b32 T rtw_build_mgnt_frame +10024b88 T dump_mgntframe +10024ba2 T rtw_send_mgnt +10024bc0 t issue_action_BSSCoexistPacket +10024dcc T update_hidden_ssid +10024e20 T issue_beacon +10025038 T issue_probersp +100252c8 T OnProbeReq +10025390 T issue_probereq +10025548 T issue_auth +100257b0 T OnAuth +10025a54 T issue_asocrsp +10025cc8 T issue_assocreq +10026004 T issue_nulldata +100260ee T issue_qos_nulldata +10026220 T issue_deauth +10026308 T issue_action_BA +10026584 T OnAction_back +10026652 T collect_bss_info +10026884 T start_clnt_auth +10026914 T start_clnt_assoc +10026948 T OnAuthClient +10026a28 T report_scan_result_one +10026be8 T add_site_survey +10026d6e T report_survey_event +10026fac T OnProbeRsp +10026fe0 T report_surveydone_event +10027044 T report_join_res +100270b4 T OnAssocRsp +10027200 T report_del_sta_event +10027292 T receive_disconnect +100272e8 T OnBeacon +10027470 T OnDeAuth +100275c8 T OnDisassoc +10027738 T report_add_sta_event +100277ac T OnAssocReq +10027d9c T rtw_port_switch_chk +10027e20 T update_sta_info +10027ea0 T mlmeext_sta_del_event_callback +10027f20 T _linked_info_dump +10027f82 T _linked_rx_signal_strehgth_display +10027fbc T linked_status_chk +10028230 T survey_timer_hdl +10028310 T _survey_timer_hdl +10028314 T link_timer_hdl +10028392 T _link_timer_hdl +10028396 T addba_timer_hdl +100283b6 T NULL_hdl +100283ba T setopmode_hdl +10028400 T disconnect_hdl +100284ac T setauth_hdl +100284bc T setkey_hdl +10028514 T set_stakey_hdl +10028618 T set_tx_beacon_cmd +1002868c T mlme_evt_hdl +100286d8 T tx_beacon_hdl +10028792 T check_buddy_mlmeinfo_state +100287ac T site_survey +1002897c T sitesurvey_cmd_hdl +10028a8a T concurrent_chk_start_clnt_join +10028b20 T start_clnt_join +10028bf4 T join_cmd_hdl +10028d18 T concurrent_chk_joinbss_done +10028ee0 T mlmeext_joinbss_event_callback +1002901c T set_chplan_hdl +10029038 T init_mlme_ext_timer +10029094 T init_mlme_ext_priv +100291d0 t get_hdr_bssid +100291f8 t filter_packet +10029280 t promisc_get_encrypt +100292d2 t promisc_info_get +10029376 t promisc_set_enable +10029412 T _promisc_deinit +10029464 T _promisc_recv_func +100299b0 T _promisc_set +10029a40 T _is_promisc_enabled +10029a58 T _promisc_get_fixed_channel +10029ae8 t SetEAPOL_KEYIV +10029b86 t ToDrv_SetPTK +10029c2e t Message_ReplayCounter_OC2LI.isra.2 +10029c5c t Message_SmallerEqualReplayCounter.isra.4 +10029c8e t Message_setReplayCounter.isra.5 +10029cac t INCLargeInteger +10029ccc t INCOctet16_INTEGER +10029d14 t INCOctet32_INTEGER +10029d74 t ToDrv_DisconnectSTA +10029e38 t CheckMIC.constprop.14 +10029eb8 t CalcMIC.constprop.15 +10029f18 T DecWPA2KeyData +10029fcc T DecGTK +1002a088 T ToDrv_SetGTK +1002a118 T init_wpa_sta_info +1002a204 T SendEAPOL +1002a8bc T ClientSendEAPOL +1002ada4 t ResendTimeout +1002ae2c T EAPOLKeyRecvd +1002afa4 T ClientEAPOLKeyRecvd +1002b364 T psk_derive +1002b418 T psk_init +1002b508 T psk_strip_rsn_pairwise +1002b588 T psk_strip_wpa_pairwise +1002b608 T tkip_send_mic_failure_report +1002b77c T pwr_state_check_handler +1002b780 T ips_enter +1002b828 T ips_leave +1002b940 T rtw_pwr_unassociated_idle +1002b98a T rtw_ps_processor +1002b9e2 T PS_RDY_CHECK +1002ba4a T rtw_set_ps_mode +1002bab8 T LPS_RF_ON_check +1002bb0e T LPS_Enter +1002bb7c T LPS_Leave +1002bbb8 T LeaveAllPowerSaveMode +1002bbc8 T rtw_init_pwrctrl_priv +1002bc9c T rtw_free_pwrctrl_priv +1002bcb0 T _rtw_pwr_wakeup +1002bd8c T rtw_pm_set_lps +1002bdd4 T rtw_pm_set_ips +1002be18 T rtw_pm_set_tdma_param +1002be34 T rtw_pm_set_lps_dtim +1002be40 T rtw_pm_get_lps_dtim +1002be4c t recvframe_pull +1002be6e t recvframe_pull_tail +1002be90 T rtw_signal_stat_timer_hdl +1002bf2e T _rtw_init_sta_recv_priv +1002bf4c T _rtw_init_recv_priv +1002bff4 T rtw_mfree_recv_priv_lock +1002c028 T _rtw_alloc_recvframe +1002c05a T rtw_alloc_recvframe +1002c080 T rtw_free_recvframe +1002c11c T _rtw_enqueue_recvframe +1002c148 T rtw_enqueue_recvframe +1002c172 T rtw_free_recvframe_queue +1002c1aa T rtw_free_uc_swdec_pending_queue +1002c1d2 T _rtw_free_recv_priv +1002c202 T rtw_free_buf_pending_queue +1002c206 T recvframe_chkmic +1002c304 T decryptor +1002c3a0 T portctrl +1002c416 T recv_decache +1002c444 T process_pwrbit_data +1002c484 T process_wmmps_data +1002c50c T count_rx_stats +1002c580 T sta2sta_data_frame +1002c6bc T ap2sta_data_frame +1002c7e8 T sta2ap_data_frame +1002c870 T validate_recv_ctrl_frame +1002ca0a T validate_recv_data_frame +1002cc64 T wlanhdr_to_ethhdr +1002cda0 T recvframe_defrag +1002ce4a T recvframe_chk_defrag +1002cf00 T validate_recv_mgnt_frame +1002cf3c T validate_recv_frame +1002d004 T recv_indicatepkt_reorder +1002d026 T process_recv_indicatepkts +1002d07e T recv_func_prehandle +1002d0a6 T recv_func_posthandle +1002d10a T recv_func +1002d194 T rtw_recv_entry +1002d1c4 T rtw_recv_tasklet +1002d21c T rtw_wep_encrypt +1002d262 T rtw_wep_decrypt +1002d2a8 T rtw_tkip_encrypt +1002d314 T rtw_tkip_decrypt +1002d380 T rtw_aes_encrypt +1002d3ec T rtw_aes_decrypt +1002d450 T rtw_init_sec_priv +1002d4c2 T rtw_free_sec_priv +1002d4e2 t wifi_mac_hash +1002d50c T _addba_timer_hdl +1002d510 T _rtw_init_stainfo +1002d58a T _rtw_init_sta_priv +1002d672 T _rtw_free_sta_xmit_priv_lock +1002d69e T rtw_mfree_stainfo +1002d6ca T rtw_mfree_sta_priv_lock +1002d700 T _rtw_free_sta_priv +1002d720 T init_addba_retry_timer +1002d748 T rtw_alloc_stainfo +1002d812 T rtw_free_stainfo +1002d9b4 T rtw_get_stainfo +1002da30 T rtw_init_bcmc_stainfo +1002da60 T rtw_get_bcmc_stainfo +1002da84 T rtw_free_all_stainfo +1002dade T cckrates_included +1002db06 T cckratesonly_included +1002db2e T networktype_to_raid_ex +1002db8c T judge_network_type +1002dbdc T ratetbl_val_2wifirate +1002dbf0 T is_basicrate +1002dc1c T ratetbl2rateset +1002dc60 T get_rate_set +1002dc8a T UpdateBrateTbl +1002dcbc T UpdateBrateTblForSoftAP +1002dcf0 T Save_DM_Func_Flag +1002dd06 T Restore_DM_Func_Flag +1002dd1c T Switch_DM_Func +1002dd38 T Set_MSR +1002dd5c T set_opmode +1002dda0 T SelectChannel +1002ddd4 T SetBWMode +1002de10 T set_channel_bwmode +1002de66 T get_my_bssid +1002de6a T get_beacon_interval +1002de88 T is_client_associated_to_ap +1002dea0 T is_client_associated_to_ibss +1002debc T is_IBSS_empty +1002dede T decide_wait_for_beacon_timeout +1002defa T invalidate_cam_all +1002df02 T write_cam +1002df78 T clear_cam_entry +1002dfa6 T flush_all_cam_entry +1002e004 T WMM_param_handler +1002e02a T WMMOnAssocRsp +1002e0f8 T HT_caps_handler +1002e198 T HT_info_handler +1002e1bc T HTOnAssocRsp +1002e1f4 T ERP_IE_handler +1002e210 T VCS_update +1002e262 T rtw_check_bcn_info +1002e472 T update_beacon_info +1002e4c8 T is_ap_in_tkip +1002e540 T wifirate2_ratetbl_inx +1002e5ac T update_basic_rate +1002e5da T update_supported_rate +1002e604 T update_MCS_rate +1002e610 T support_short_GI +1002e63e T get_highest_rate_idx +1002e658 T Update_RA_Entry +1002e660 T set_sta_rate +1002e668 T update_tx_basic_rate +1002e6c0 T check_assoc_AP +1002e7b4 T update_IOT_info +1002e812 T update_capinfo +1002e890 T update_wireless_mode +1002e930 T update_bmc_sta_support_rate +1002e958 T update_TSF +1002e96a T correct_TSF +1002e972 t _init_txservq +1002e988 t set_qos +1002e9d8 T _rtw_init_sta_xmit_priv +1002ea1e T rtw_mfree_xmit_priv_lock +1002ea6a T qos_acm +1002eaa4 T xmitframe_addmic +1002ec02 T xmitframe_swencrypt +1002ec2e T rtw_make_wlanhdr +1002ee0e T rtw_txframes_pending +1002ee4a T rtw_txframes_sta_ac_pending +1002ee80 T rtw_txframes_update_attrib_vcs_info +1002ef20 T rtw_put_snap +1002ef64 T rtw_update_protection +1002efaa T rtw_count_tx_stats +1002effa T rtw_free_xmitbuf_ext +1002f03c T rtw_alloc_xmitframe +1002f094 T rtw_free_xmitframe +1002f0e6 T rtw_free_xmitframe_queue +1002f124 T rtw_get_sta_pending +1002f164 T rtw_xmit_classifier +1002f1ca T rtw_xmitframe_enqueue +1002f1d8 T rtw_alloc_hwxmits +1002f232 T rtw_free_hwxmits +1002f248 T _rtw_free_xmit_priv +1002f314 T rtw_init_hwxmits +1002f32c T _rtw_init_xmit_priv +1002f4e4 T rtw_get_ff_hwaddr +1002f4f8 T xmitframe_enqueue_for_sleeping_sta +1002f6b8 t dequeue_xmitframes_to_sleeping_queue +1002f70e T stop_sta_xmit +1002f7f6 T wakeup_sta_to_xmit +1002fa0c T xmit_delivery_enabled_frames +1002fb28 T rtw_xmit_tasklet +1002fb80 T rtw_xmit_mgnt +1002fb84 T rtw_xmit +1002feae T rtw_sctx_done_err +1002feba T rtw_alloc_xmitbuf +1002ff14 T rtw_free_xmitbuf +1002ff86 T rtw_alloc_xmitbuf_ext +1003000c T rtw_sctx_done +10030012 t rtl8195a_free_rx_ring +10030020 t bus_write32 +1003007c t bus_write16 +100300d8 t bus_write8 +10030134 t bus_read32 +1003018e t bus_read16 +100301ea t bus_read8 +10030246 t rtl8195a_free_tx_ring +100302d4 T rtl8195a_init_desc_ring +10030414 T rtl8195a_free_desc_ring +10030430 T rtl8195a_reset_desc_ring +100304c6 T InitLxDmaRtl8195a +10030628 T rtl8195a_check_txdesc_closed +100306a0 t rtl8195a_tx_isr +10030784 T InterruptRecognized8195a +10030814 T InitInterrupt8195a +10030834 T EnableDMA8195a +1003085c T EnableInterrupt8195a +1003089c T DisableDMA8195a +100308a8 T DisableInterrupt8195a +100308c0 T UpdateInterruptMask8195a +10030922 T CheckRxTgRtl8195a +1003095c T rtl8192ee_check_rxdesc_remain +1003098c T rtl8195a_recv_tasklet +10030ca0 T rtl8195a_tx_int_handler +10030ccc T InterruptHandle8195a +10030f40 T rtl8195a_xmit_tasklet +10030f68 T lxbus_set_intf_ops +10030fa8 t GetTxBufDesc +10030ff2 t UpdateFirstTxbdtoXmitBuf.isra.3 +10031024 t check_nic_enough_desc.isra.4 +10031074 T rtl8195ab_init_xmit_priv +10031082 T rtl8195ab_free_xmit_priv +1003108a T GetDmaTxbdIdx +100310a6 T rtl8195a_enqueue_xmitbuf +100310ca T rtl8195a_dequeue_xmitbuf +100310ee T SetTxbdForLxDMARtl8195ab +1003116e T UpdateTxbdHostIndex +100311ac T rtw_dump_xframe +1003137e T check_tx_desc_resource +100313b8 T rtw_dequeue_xframe +1003144c T rtw_xmitframe_coalesce +10031700 T rtl8195ab_xmitframe_resume +100317f6 T rtl8195ab_mgnt_xmit +10031832 T rtl8195ab_hal_xmit +10031940 t Hal_GetEfuseDefinition +10031970 t ResumeTxBeacon +100319b4 T UpdateHalRAMask8195A +10031b4c T HalLittleWifiMCUThreadRtl8195a +10031ba0 T HalCheckInReqStateThreadRtl8195a +10031bec T HalTDMAChangeStateThreadRtl8195a +10031c38 t rtl8195a_read_chip_version +10031cac t Hal_EfuseWordEnableDataWrite +10031ef0 t Hal_EfusePowerSwitch +10031f04 t rtl8195a_free_hal_data +10031f1e t StopTxBeacon +10031f68 T SetHalODMVar8195A +10032020 T rtl8195a_start_thread +10032088 T rtl8195a_stop_thread +100320ac t Hal_ReadEFuse +1003221c T GetHalODMVar8195A +10032230 t rtw_flash_map_update.part.12 +100322d0 t rtw_flash_map_erase +10032314 t Hal_EfusePgPacketWrite +10032590 t Hal_EfuseGetCurrentSize +10032670 t rtw_flash_map_write +1003283e T rtl8195a_InitBeaconParameters +100328ae T _InitBurstPktLen_8195AB +100328b8 T rtl8195a_set_hal_ops +10032998 T rtl8195a_init_default_value +1003299a T rtl8195a_InitLLTTable +100329e4 T Hal_GetChnlGroup8195A +10032a20 T rtw_config_map_read +10032b0c T rtw_config_map_write +10032bb8 T Hal_InitPGData +10032c16 T Hal_EfuseParseIDCode +10032c2e T Hal_ReadPowerValueFromPROM_8195A +10032ccc T Hal_EfuseParseTxPowerInfo_8195A +10032d64 T Hal_EfuseParseEEPROMVer_8195A +10032d7a T Hal_EfuseParsePackageType_8195A +10032de4 T Hal_EfuseParseChnlPlan_8195A +10032e14 T Hal_EfuseParseCustomerID_8195A +10032e2a T Hal_EfuseParseXtal_8195A +10032e42 T Hal_EfuseParseThermalMeter_8195A +10032e6a T Hal_ReadRFGainOffset +10032eba T BWMapping_8195A +10032eda T SCMapping_8195A +10032f02 T rtl8195a_update_txdesc +100331d2 T rtl8195a_fill_fake_txdesc +10033290 T SetHwReg8195A +10033f50 T GetHwReg8195A +10033fe4 T SetHalDefVar8195A +100340c4 T GetHalDefVar8195A +100340e8 T PHY_QueryBBReg_8195A_Safe +10034114 T PHY_SetBBReg_8195A_Safe +10034140 t phy_RFSerialRead_8195A +100341f4 T PHY_QueryRFReg_8195A +1003420c T PHY_SetRFReg_8195A +10034264 T PHY_MACConfig8195A +1003427e T PHY_BBConfig8195A +1003438e T PHY_RFConfig8195A +10034392 T PHY_SetTxPowerIndex_8195A +1003449c T phy_TxPwrAdjInPercentage +100344dc T PHY_GetTxPowerIndex_8195A +100345cc T PHY_SetTxPowerLevel8195A +100345d2 T phy_SpurCalibration_8195A +1003488a T phy_SetRegBW_8195A +100348c8 T phy_PostSetBwMode8195A +10034a24 T phy_SwChnl8195A +10034acc T phy_SwChnlAndSetBwMode8195A +10034b1c T PHY_HandleSwChnlAndSetBW8195A +10034bcc T PHY_SetBWMode8195A +10034bee T PHY_SwChnl8195A +10034c08 T PHY_SetSwChnlBWMode8195A +10034c26 t HalTimerEnable +10034c38 T InitTDMATimer +10034c60 T ChangeStateByTDMA +10034c70 T GetMinRateInRRSR +10034ca4 T CheckInReqState +10034cb4 T InitCheckStateTimer +10034ce4 T InitGTimer1ms +10034d30 T DeInitGTimer1ms +10034d78 T ChangeTransmiteRate +10034db4 T PowerBitSetting +10034e30 T ChkandChangePS +10034e94 T IssueRsvdPagePacketSetting +10034f08 T IssuePSPoll +10034f34 T WaitTxStateMachineOk +10034f88 T IssueNullData +10035018 T PsCloseRF +1003504c T PsOpenRF +1003507c T ChkTxQueueIsEmpty +10035094 T InitPS +10035104 T ConfigListenBeaconPeriod +10035128 T PS_S2_Condition_Match +1003515c T PS_S4_Condition_Match +100351d8 T PS_32K_Condition_Match +10035214 T PS_S2ToS3ToS0State +1003527c T PS_S2ToS0State +10035298 T PS_S3ToS2orS0State +100352c8 T PS_S0ToS1ToS2State +10035324 T PS_S1ToS0orS2State +10035354 T PS_S2ToS4State +100353a0 T PS_S0ToS6State +100353c0 T PS_S6ToS0State +100353d8 T CheckTSFIsStable +10035428 T WaitHWStateReady +10035438 T SysClkDown +100354a8 T SysClkUp +100354f4 T ResetPSParm +10035568 T PS_S4ToS2State +1003558c T SleepTo32K +100355ec T Change_PS_State +10035798 T Legacy_PS_Setting +1003580c T PSModeSetting +100358b0 T ChangePSStateByRPWM +100358f4 T ChangeTDMAState +10035a14 T TDMAChangeStateTask +10035a3e T EnterPS +10035a60 T SetSmartPSTimer +10035a9c T GTimer7Handle +10035af8 T SmartPS2InitTimerAndToGetRxPkt +10035b34 T PS_OnBeacon +10035be4 T PSBcnEarlyProcess +10035ca0 T PSMtiBcnEarlyProcess +10035d4c T PSRxBcnProcess +10035e9c T TxPktInPSOn +10035eda T PsBcnToProcess +10035f94 T GTimer6Handle +10035fe0 T RPWMProcess +1003601c T PSSetMode +10036094 T SpeRPT +100361b4 T ISR_BcnEarly +10036220 T ISR_MtiBcnEarly +10036254 T ISR_RxBcn +10036270 T ISR_RxBCMD1 +100362a0 T ISR_RxBCMD0 +100362f4 T ISR_RxUCMD1 +10036332 T ISR_RxUCMD0 +1003636e T ISR_TxPktIn +10036380 T ISR_TXCCX +10036384 T H2CHDL_SetPwrMode +100364ac T CheckInReqStateTask +100364f2 T HalGetNullTxRpt +10036510 T ISR_TBTT +10036588 T H2CHDL_BcnIgnoreEDCCA +10036598 T PMUInitial +100365e8 T PMUTask +100366f4 T PHY_RF6052SetBandwidth8195A +10036738 T PHY_RF6052_Config8195A +100367f0 t process_rssi +10036826 T rtl8195a_query_rx_desc_status +100368d6 T rtl8195a_query_rx_phy_status +10036a2e T hal_com_get_channel_plan +10036a62 T HAL_IsLegalChannel +10036a80 T MRateToHwRate +10036a94 T HwRateToMRate +10036aa8 T HalSetBrateCfg +10036b54 T Hal_MappingOutPipe +10036b70 T hal_init_macaddr +10036b9c T hw_var_port_switch +10036e24 T SetHwReg +10036e2e T GetHwReg +10036e30 T switch_power_saving_mode +10036e74 T rtw_bb_rf_gain_offset +10036ebc T PHY_GetRateValuesOfTxPowerByRate +10037054 T PHY_StoreTxPowerByRateNew +100370f0 T PHY_InitTxPowerByRate +10037108 T PHY_StoreTxPowerByRate +10037120 T PHY_GetTxPowerIndexBase +100371c0 T PHY_GetTxPowerTrackingOffset +100371ec T PHY_GetRateIndexOfTxPowerByRate +10037200 T PHY_GetTxPowerByRate +10037260 T phy_StoreTxPowerByRateBase +100372ac T PHY_SetTxPowerByRate +100372e8 T phy_ConvertTxPowerByRateInDbmToRelativeValues +100373e8 T PHY_TxPowerByRateConfiguration +100373fa T PHY_SetTxPowerIndexByRateArray +10037438 T PHY_SetTxPowerIndexByRateSection +1003749c T PHY_SetTxPowerLevelByPath +100374d2 T phy_GetWorldWideLimit +100374fe T PHY_GetTxPowerLimit +10037628 T PHY_ConvertTxPowerLimitToPowerIndex +10037778 T PHY_InitTxPowerLimit +100377c0 T PHY_SetTxPowerLimit +1003783c T PHY_GetTxPowerIndex +1003784c T rtw_hal_chip_configure +10037862 T rtw_hal_read_chip_info +10037878 T rtw_hal_read_chip_version +1003788e T rtw_hal_def_value_init +100378a4 T rtw_hal_free_data +100378ba T rtw_hal_dm_init +100378d0 T rtw_hal_dm_deinit +100378e6 T rtw_hal_init +10037910 T rtw_hal_deinit +1003792a T rtw_hal_set_hwreg +10037938 T rtw_hal_get_hwreg +10037946 T rtw_hal_set_def_var +10037958 T rtw_hal_get_def_var +1003796a T rtw_hal_set_odm_var +10037978 T rtw_hal_get_odm_var +10037986 T rtw_hal_enable_interrupt +100379a8 T rtw_hal_disable_interrupt +100379ca T rtw_hal_inirp_init +100379dc T rtw_hal_inirp_deinit +100379ee T rtw_hal_irp_reset +100379fc T rtw_hal_xmit +10037a0e T rtw_hal_mgnt_xmit +10037a20 T rtw_hal_init_xmit_priv +10037a32 T rtw_hal_free_xmit_priv +10037a40 T rtw_hal_update_ra_mask +10037a6e T rtw_hal_add_ra_tid +10037a7c T rtw_hal_clone_data +10037a8a T rtw_hal_start_thread +10037a98 T rtw_hal_stop_thread +10037aa6 T rtw_hal_read_bbreg +10037ada T rtw_hal_write_bbreg +10037b06 T rtw_hal_read_rfreg +10037b18 T rtw_hal_write_rfreg +10037b2c T rtw_hal_interrupt_handler +10037b3e T rtw_hal_set_bwmode +10037b4c T rtw_hal_set_chan +10037b5a T rtw_hal_set_chnl_bw +10037b70 T rtw_hal_dm_watchdog +10037b86 T rtw_hal_macid_sleep +10037ba6 T rtw_hal_macid_wakeup +10037bc6 T decide_chip_type_by_device_id +10037bcc t rtw_net_get_stats +10037c1c t netdev_if2_close +10037c3c t netdev_close +10037c98 t rtw_if1_deinit +10037d32 T rtw_os_indicate_connect +10037d36 T rtw_os_indicate_scan_done +10037d3a T rtw_reset_securitypriv +10037e2e T rtw_os_indicate_disconnect +10037e78 T rtw_init_netdev +10037fc8 T rtw_drv_if2_init +100381d0 T rtw_drv_if2_stop +10038226 T rtw_drv_if2_free +10038274 T _netdev_open +10038390 T _netdev_if2_open +1003844c T netdev_if2_open +10038474 T netdev_open +1003849c T rtw_drv_probe +1003861c T rtw_dev_remove +10038660 T rtw_drv_entry +1003868c T rtw_drv_halt +100386bc t rtw_wx_set_autoreconnect +100386ea t rtw_wx_get_autoreconnect +100386f8 t rtw_forwarding_set +1003871a t rtw_set_ch_deauth +1003873c t get_priv_size +10038750 t rtw_wx_del_custome_ie +1003879c t rtw_wx_set_pscan_freq +1003881e t rtw_wx_update_custome_ie +10038890 t rtw_set_tos_value +100388b0 t rtw_get_tx_power +100389f4 t rtw_wx_set_custome_ie +10038aa0 t rtw_pm_get +10038ae4 t rtw_pm_set +10038b98 t rtw_wx_read32 +10038c44 t rtw_wx_write32 +10038ca8 t rtw_wx_set_freq.isra.10 +10038d50 T rtw_ex_set +10038e10 T wireless_send_event +10038e1a T indicate_wx_custom_event +10038e76 T indicate_wx_scan_result_present +10038e9e T indicate_wx_scan_complete_event +10038ec8 T rtw_indicate_sta_assoc +10038f18 T rtw_indicate_sta_disassoc +10038f70 T rtw_indicate_wx_assoc_event +10038fa2 T rtw_indicate_wx_disassoc_event +10038fd2 T rtw_set_wpa_ie +100390e8 T strtopsk +10039154 T rtw_wx_get_passphrase +100391a0 T rtw_wx_set_ap_essid +10039290 T mac_reg_dump +1003933c T bb_reg_dump +10039398 T rf_reg_dump +10039410 t rtw_dbg_port +10039a78 T rtw_set_sta_num +10039a94 T rtw_ex_get_drv_ability +10039b54 T rtw_ex_get +10039dec T rtw_ioctl +1003ad78 T rtw_os_recv_resource_init +1003ad7c T rtw_os_recv_resource_alloc +1003ad86 T rtw_os_recv_resource_free +1003ad88 T rtw_tkip_countermeasure +1003ae28 T rtw_handle_tkip_mic_err +1003aed0 T rtw_recv_indicatepkt +1003b120 T skb_fail_inc +1003b13c T skb_fail_get_and_rst +1003b158 T init_skb_pool +1003b1b0 T init_skb_data_pool +1003b208 T alloc_skb +1003b308 T kfree_skb +1003b370 T kfree_skb_chk_key +1003b374 T skb_put +1003b3a8 T skb_reserve +1003b3b6 T dev_alloc_skb +1003b3d2 T skb_end_pointer +1003b3d6 T skb_set_tail_pointer +1003b3de T skb_pull +1003b3f6 T skb_copy +1003b41e T rtw_remainder_len +1003b42a T _rtw_open_pktfile +1003b43c T _rtw_pktfile_read +1003b46a T rtw_set_tx_chksum_offload +1003b46c T rtw_os_xmit_resource_alloc +1003b476 T rtw_os_xmit_resource_free +1003b478 T rtw_os_pkt_complete +1003b480 T rtw_os_xmit_complete +1003b492 T rtw_os_xmit_schedule +1003b4ce T rtw_xmit_entry +1003b51a T rtw_alloc_etherdev_with_old_priv +1003b530 T rtw_alloc_etherdev +1003b55c T rtw_free_netdev +1003b57c T timer_wrapper +1003b5d0 T alloc_etherdev +1003b62c T free_netdev +1003b646 T dev_alloc_name +1003b650 T init_timer_wrapper +1003b670 T deinit_timer_wrapper +1003b6bc T init_timer +1003b774 T mod_timer +1003b854 T cancel_timer_ex +1003b89c T del_timer_sync +1003b900 T rtw_init_timer +1003b908 T rtw_set_timer +1003b90c T rtw_cancel_timer +1003b916 T rtw_del_timer +1003b91c T rltk_get_idx_bydev +1003b92c T rltk_wlan_init +1003b9b4 T rltk_wlan_deinit +1003ba78 T rltk_wlan_start +1003baac T rltk_wlan_check_isup +1003babc T rltk_wlan_tx_inc +1003bad0 T rltk_wlan_tx_dec +1003bae4 T rltk_wlan_get_recv_skb +1003baf4 T rltk_wlan_alloc_skb +1003bb34 T rltk_wlan_send_skb +1003bb68 T rltk_netif_rx +1003bc14 T rltk_set_sta_num +1003bc18 T rltk_wlan_control +1003bcac T rltk_wlan_running +1003bcc4 T rltk_wlan_statistic +1003bd8c T rltk_wlan_handshake_done +1003bdc0 T rltk_wlan_is_connected_to_ap +1003be04 T Efuse_PowerSwitch +1003be10 T Efuse_GetCurrentSize +1003be1c T Efuse_CalculateWordCnts +1003be40 T EFUSE_GetEfuseDefinition +1003be54 T efuse_OneByteRead +1003be88 T efuse_OneByteWrite +1003bebc T Efuse_PgPacketWrite +1003bed0 T efuse_WordEnableDataRead +1003bf02 T Efuse_WordEnableDataWrite +1003bf16 T efuse_GetCurrentSize +1003bf3e T rtw_efuse_map_read +1003bfa0 T rtw_efuse_map_write +1003c120 T rtw_macaddr_cfg +1003c1e4 T rtw_get_cipher_info +1003c25e T rtw_get_bcn_info +1003c32e T rtw_init_default_value +1003c39c T rtw_cancel_all_timer +1003c406 T rtw_free_drv_sw +1003c47c T rtw_reset_drv_sw +1003c4d8 T rtw_init_drv_sw +1003c560 T rtw_start_drv_threads +1003c61c T rtw_stop_drv_threads +1003c650 T rtw_read8 +1003c65e T rtw_read16 +1003c66c T rtw_read32 +1003c67a T rtw_write8 +1003c688 T rtw_write16 +1003c696 T rtw_write32 +1003c6a4 T rtw_do_join +1003c748 T rtw_set_802_11_bssid +1003c8cc T rtw_set_802_11_ssid +1003c9d4 T rtw_set_802_11_infrastructure_mode +1003ca76 T rtw_set_802_11_bssid_list_scan +1003cac6 T rtw_set_802_11_authentication_mode +1003cae8 T rtw_set_802_11_add_wep +1003cb48 T ODM_InitRAInfo +1003cbe8 T InitialRateUpdate +1003cce8 T RateUp_search_RateMask +1003cd1a T RateDown_search_RateMask +1003cd6c T StartRateByRSSI +1003cd96 T RateUpRAM8195A +1003ce2a T RateDownTrying +1003ce68 T TryDone +1003cf00 T RateDownStepRAM8195A +1003cfa0 T RateDecisionRAM8195A +1003d084 T ArfrRefresh +1003d28c T H2CHDL_Set_MACID_Config +1003d350 T PHY_DM_RA_SetRSSI_8195A +1003d37e t CheckPositive.isra.0 +1003d460 T ODM_ReadAndConfig_MP_8195A_AGC_TAB +1003d4d8 T ODM_ReadAndConfig_MP_8195A_PHY_REG +1003d550 T ODM_GetVersion_MP_8195A_PHY_REG +1003d554 T ODM_ReadAndConfig_MP_8195A_PHY_REG_PG +1003d588 T odm_ConfigRFReg_8195A +1003d5c0 T odm_ConfigRF_RadioA_8195A +1003d5d0 T odm_ConfigMAC_8195A +1003d5d4 T odm_ConfigBB_AGC_8195A +1003d5e4 T odm_ConfigBB_PHY_REG_PG_8195A +1003d612 T odm_ConfigBB_PHY_8195A +1003d65a T odm_ConfigBB_TXPWR_LMT_8195A +1003d680 T ODM_CmnInfoInit +1003d774 T ODM_CmnInfoHook +1003d818 T ODM_CmnInfoPtrArrayHook +1003d828 T ODM_CmnInfoUpdate +1003d8f8 T odm_CommonInfoSelfInit +1003d96c T ODM_DMInit +1003d9ba T odm_CommonInfoSelfUpdate +1003da0c T ODM_DMWatchdog +1003da78 T PhyDM_Get_Structure +1003da9c T Phydm_CheckAdaptivity +1003daca T Phydm_NHMCounterStatisticsInit +1003db40 T Phydm_SetEDCCAThreshold +1003db78 T Phydm_MACEDCCAState +1003dbb6 T Phydm_AdaptivityInit +1003dc94 T Phydm_Adaptivity +1003ddb4 T ODM_CfoTrackingInit +1003ddde T ODM_CfoTracking +1003ddfe T ODM_ParsingCFO +1003de30 T ODM_InitDebugSetting +1003de44 T ODM_Write_DIG +1003dee4 T odm_ForbiddenIGICheck +1003df76 T ODM_Write_CCK_CCA_Thres +1003dfb0 T odm_DIGInit +1003e04a T odm_DigAbort +1003e06c T odm_DIGbyRSSI_LPS +1003e118 T odm_FAThresholdCheck +1003e144 T odm_DIG +1003e3a4 T odm_FalseAlarmCounterStatistics +1003e3d0 T odm_CCKPacketDetectionThresh +1003e428 T odm_RxPhyStatus8195A_Parsing +1003e52c T odm_Process_RSSIForDM_8195A +1003e66e T ODM_PhyStatusQuery_8195A +1003e69a T ODM_PhyStatusQuery +1003e69e T ODM_ConfigRFWithHeaderFile +1003e6bc T ODM_ConfigRFWithTxPwrTrackHeaderFile +1003e6ee T ODM_ConfigBBWithHeaderFile +1003e716 T ODM_ConfigMACWithHeaderFile +1003e728 T ODM_Read1Byte +1003e72e T ODM_Read4Byte +1003e734 T ODM_Write1Byte +1003e73a T ODM_Write2Byte +1003e740 T ODM_Write4Byte +1003e746 T ODM_SetMACReg +1003e74c T ODM_SetBBReg +1003e752 T ODM_GetBBReg +1003e758 T ODM_SetRFReg +1003e75e T ODM_GetRFReg +1003e764 T ODM_MoveMemory +1003e76e T ODM_delay_ms +1003e772 T ODM_delay_us +1003e778 T getSwingIndex +1003e7d0 T odm_TXPowerTrackingThermalMeterInit +1003e882 T odm_TXPowerTrackingInit +1003e886 T odm_TXPowerTrackingCheckIOT +1003e8ba T ODM_TXPowerTrackingCheck +1003e8c8 T odm_RSSIMonitorInit +1003e8d0 T ODM_RAPostActionOnAssoc +1003e8d8 T odm_RSSIMonitorCheckIOT +1003e9ac T odm_RSSIMonitorCheck +1003e9c0 T odm_RateAdaptiveMaskInit +1003e9e8 T ODM_RAStateCheck +1003ea2a T odm_RefreshRateAdaptiveMaskIOT +1003ea7a T odm_RefreshRateAdaptiveMask +1003ea90 T ODM_Get_Rate_Bitmap +1003eb80 t _ReadEfuseInfo8195a +1003ec48 t rtl8195a_interface_configure +1003ec7c t rtl8195a_hal_deinit +1003ecb8 T _InitPowerOn +1003ed38 t ReadAdapterInfo8195a +1003ed68 T _InitDriverInfoSize +1003ed72 T _InitNetworkType +1003ed94 T _InitWMACSetting +1003ee04 T _InitAdaptiveCtrl +1003ee48 T _InitEDCA +1003eec4 T _InitRateFallback +1003ef08 T _InitRetryFunction +1003ef34 T _InitOperationMode +1003ef7c T _InitInterrupt +1003efbc t rtl8195a_hal_init +1003f294 T rtl8195ab_set_hal_ops +1003f36c T FillH2CCmd8195A +1003f38c T CheckFwRsvdPageContent +1003f38e T rtl8195a_set_FwRsvdPage_cmd +1003f398 T rtl8195a_set_FwMediaStatusRpt_cmd +1003f3c4 T rtl8195a_set_FwMacIdConfig_cmd +1003f484 T rtl8195a_set_FwPwrMode_cmd +1003f514 T rtl8195a_download_rsvd_page +1003f81c T rtl8195a_set_FwJoinBssRpt_cmd +1003f826 T rtl8195a_Add_RateATid +1003f878 T rtw_rpt_h_addr +1003f8c4 T rtw_txrpt_read8 +1003f8e2 T rtw_txrpt_write8 +1003f906 T rtw_ratemask_read8 +1003f924 T rtw_ratemask_write8 +1003f948 T ReadRateMask8 +1003f952 T WriteRateMask8 +1003f956 T ReadTxrpt8 +1003f960 T WriteTxrpt8 +1003f964 T ResetTxrpt +1003f99c T PsuseTxrpt +1003f9bc T CheckMaxMacidNum +1003f9f4 T GetMediaStatusCommon +1003fa0e T GetTxrptStatistic +1003fac4 T rtl8195a_InitHalDm +1003fbe8 T rtl8195a_HalDmWatchDog +1003fccc T rtl8195a_init_dm_priv +1003fda4 T rtl8195a_deinit_dm_priv +1003fda6 T MediaConnection +1003fdc4 T MediaDisconnection +1003fde4 T RATaskEnable +1003fe0e T SetMediaStatus +1003fe4c T H2CHDL_JoinInfo +1003fe84 T H2CHDL_SetRsvdPage +1003ff1c T H2CCmdCommon +1003ff60 T HalPwrSeqCmdParsing +10040020 T hci_dvobj_init +10040030 T hci_dvobj_deinit +10040040 T hci_dvobj_request_irq +10040050 T hci_dvobj_free_irq +10040060 T hci_lxbus_dvobj_init +1004009c T hci_lxbus_dvobj_deinit +100400dc T hci_lxbus_dvobj_request_irq +10040130 T hci_lxbus_free_irq +10040188 T hci_lxbus_intf_stop +100401c0 T rtw_interrupt_thread +10040234 T lextra_bus_dma_Interrupt +1004027c T init_rom_wlan_ram_map +10040294 T ODM_ReadAndConfig_MP_8195A_MAC_REG +100403f0 t CheckPositive.isra.0 +100404d4 T ODM_ReadAndConfig_MP_8195A_RadioA +1004054c T ODM_ReadAndConfig_MP_8195A_TxPowerTrack_QFN48 +1004059c T ODM_ReadAndConfig_MP_8195A_TxPowerTrack_QFN56 +100405ec T ODM_ReadAndConfig_MP_8195A_TxPowerTrack_TFBGA96 +1004063c T ODM_ReadAndConfig_MP_8195A_TXPWR_LMT +10040674 T ODM_ReadAndConfig_MP_8195A_TxXtalTrack +100406a0 T GetDeltaSwingTable_8195A +100406d0 T GetDeltaSwingXtalTable_8195A +100406e0 T ODM_TxXtalTrackSetXtal_8195A +10040700 T Hal_MPT_CCKTxPowerAdjust +100407d0 T ODM_TxPwrTrackSetPwr_8195A +100408e0 T ConfigureTxpowerTrack_8195A +1004092c T phy_PathA_IQK_8195A +10040ae0 T phy_PathA_RxIQK8195A +10040e74 T _PHY_PathAFillIQKMatrix8195A +1004100a T _PHY_PathBFillIQKMatrix8195A +10041186 T _PHY_SaveADDARegisters8195A +100411ba T _PHY_SaveMACRegisters8195A +100411e8 T _PHY_ReloadADDARegisters8195A +1004121c T _PHY_ReloadMACRegisters8195A +1004124c T _PHY_PathADDAOn8195A +10041288 T _PHY_MACSettingCalibration8195A +100412d0 T _PHY_PIModeSwitch8195A +1004130c T phy_SimularityCompare_8195A +10041440 T phy_IQCalibrate_8195A +100417b8 T phy_LCCalibrate_8195A +10041828 T PHY_LCCalibrate_8195A +10041888 T PHY_IQCalibrate_8195A +10041b3c T DoIQK_8195A +10041b5a T ConfigureTxpowerTrack +10041b6c T ODM_TXPowerTrackingCallback_ThermalMeter +10041f78 T ODM_ResetIQKResult +10041fc0 T ODM_GetRightChnlPlaceforIQK +10042014 T rtl_libc_init +10042028 T rtl_snprintf +100420a8 T rtl_sprintf +10042108 T rtl_printf +10042154 T rtl_memcmp +10042160 T rtl_memcpy +1004216c T rtl_memset +10042178 T rtl_strcmp +10042184 T rtl_strcpy +10042190 T rtl_strlen +1004219c T rtl_strncmp +100421a8 T rtl_strncpy +100421b4 T rtl_strsep +100421c0 T rtl_strtok +100421cc T ram_libgloss_close +100421dc T ram_libgloss_fstat +100421fc T ram_libgloss_isatty +10042208 T ram_libgloss_lseek +10042218 T ram_libgloss_read +10042228 T ram_libgloss_sbrk +10042244 T ram_libgloss_write +10042264 T ram_libgloss_open +100422a0 T init_rom_libgloss_ram_map +100422e8 T malloc +100422f8 T memcpy +1004230a T memset +1004231c T _free_r +100423a4 T _malloc_r +1004244c T rand +100424c0 T _sbrk_r +100424e0 T siscanf +100424e0 T sscanf +10042534 T __seofread +10042538 T strlen +10042548 T _sungetc_r +100425c2 T __ssrefill_r +100425fc T __ssvfiscanf_r +100425fc T __ssvfscanf_r +10042898 T __submore +1004290c T _scanf_chars +100429cc T _scanf_i +10042bb8 T memchr +10042bd4 T _realloc_r +10042c20 T __sccl +10042c84 T _strtol_r +10042d88 T _strtoul_r +10042e78 T _malloc_usable_size_r +10042e8c T _sbrk +10042ec0 T __aeabi_llsr +10042ec0 T __lshrdi3 +10042ed8 T __aeabi_drsub +10042ee0 T __aeabi_dsub +10042ee0 T __subdf3 +10042ee4 T __adddf3 +10042ee4 T __aeabi_dadd +1004315c T __aeabi_ui2d +1004315c T __floatunsidf +1004317c T __aeabi_i2d +1004317c T __floatsidf +100431a0 T __aeabi_f2d +100431a0 T __extendsfdf2 +100431dc T __aeabi_ul2d +100431dc T __floatundidf +100431ec T __aeabi_l2d +100431ec T __floatdidf +10043248 T __aeabi_dmul +10043248 T __muldf3 +1004349c T __aeabi_ddiv +1004349c T __divdf3 +1004366c T __aeabi_d2uiz +1004366c T __fixunsdfsi +100436b0 t __rtw_parse_wpa2_ie_veneer +100436c0 t __rt_md5_hmac_veneer +100436d0 t __aes_80211_decrypt_veneer +100436e0 t __rt_md5_final_veneer +100436f0 t __AES_UnWRAP_veneer +10043700 t __tkip_80211_decrypt_veneer +10043710 t __ROM_odm_FalseAlarmCounterStatistics_veneer +10043720 t __rtw_get_wps_ie_veneer +10043730 t __rtw_get_rateset_len_veneer +10043740 t __rom_psk_PasswordHash_veneer +10043750 t __rtw_set_ie_veneer +10043760 t __rtw_get_wps_attr_content_veneer +10043770 t __rt_arc4_crypt_veneer +10043780 t __rtw_parse_wpa_ie_veneer +10043790 t __GetArgc_veneer +100437a0 t __rt_hmac_sha1_veneer +100437b0 t __rt_md5_append_veneer +100437c0 t __rtw_get_bit_value_from_ieee_value_veneer +100437d0 t __rtw_get_wpa2_ie_veneer +100437e0 t __rt_md5_init_veneer +100437f0 t __HalRuartRTSCtrlRtl8195a_veneer +10043800 t __rtw_seccalctkipmic_veneer +10043810 t __ROM_ODM_CfoTrackingReset_veneer +10043820 t __rtw_ieee802_11_parse_elems_veneer +10043830 t __rtw_set_fixed_ie_veneer +10043840 t __rt_arc4_init_veneer +10043850 t __rtw_check_network_type_veneer +10043860 t __key_2char2num_veneer +10043870 t __ROM_odm_SetCrystalCap_veneer +10043880 t __AES_WRAP_veneer +10043890 t __HalDelayUs_veneer +100438a0 t __rtw_secmicsetkey_veneer +100438b0 t __ROM_odm_QueryRxPwrPercentage_veneer +100438c0 t __rom_psk_CalcGTK_veneer +100438d0 t __rtw_set_supported_rate_veneer +100438e0 t __aes_80211_encrypt_veneer +100438f0 t __rtw_get_ie_veneer +10043900 t __ROM_odm_CfoTrackingFlow_veneer +10043910 t __rtw_secgetmic_veneer +10043920 t __PHY_SetBBReg_8195A_veneer +10043930 t __ROM_odm_EVMdbToPercentage_veneer +10043940 t __rtw_get_wpa_ie_veneer +10043950 t __HalRuartGetCRtl8195a_veneer +10043960 t __HalRuartResetRxFifoRtl8195a_veneer +10043970 t __rtw_secmicappend_veneer +10043980 t __wep_80211_encrypt_veneer +10043990 t __wep_80211_decrypt_veneer +100439a0 t __rtw_get_sec_ie_veneer +100439b0 t __tkip_80211_encrypt_veneer +100439c0 t __rom_psk_CalcPTK_veneer +100439d0 t __ROM_odm_GetDefaultCrytaltalCap_veneer +100439e0 t __HalGdmaChDisRtl8195a_veneer +100439f0 t __phy_CalculateBitShift_veneer +10043a00 t __RuartLock_veneer +10043a10 t __PHY_QueryBBReg_8195A_veneer +10043a20 t __RuartUnLock_veneer +10043a30 t __GetArgv_veneer +10045ee4 r __FUNCTION__.12890 +10046570 r __FUNCTION__.9128 +1004752c r __FUNCTION__.6638 +1004779c r __func__.6637 +100477c8 r __FUNCTION__.11212 +100477e0 r __FUNCTION__.11175 +10047bb4 r __FUNCTION__.11240 +10047bc8 r __FUNCTION__.11246 +10047c24 r __FUNCTION__.8062 +10047c30 r __FUNCTION__.8065 +10047c40 r err_to_errno_table +10047c88 R ip_addr_broadcast +10047c8c R ip_addr_any +10047ca0 r memp_num +10047cc0 r memp_sizes +10047ce0 R tcp_pcb_lists +10047cf0 R tcp_backoff +10047d00 R tcp_persist_backoff +10047d08 R ethbroadcast +10047d10 R ethzero +10047d44 r __FUNCTION__.8530 +10047e0c r __FUNCTION__.8542 +10047e1c r dhcp_magic_cookie +10047e20 r dhcp_option_lease_time_one_day +10047e58 r dhcp_option_interface_mtu_576 +10047e5c r __FUNCTION__.4492 +10047ea4 r ucExpectedStackBytes.6354 +10047ee4 r __FUNCTION__.11652 +10047ef8 r __FUNCTION__.11703 +10047f0c R osdep_service +10048030 r __FUNCTION__.11660 +1004804c r __FUNCTION__.11714 +10048104 r __FUNCTION__.11848 +1004811c r __FUNCTION__.11686 +1004813c r __FUNCTION__.11852 +10048154 r __FUNCTION__.6626 +1004823c R GPIO_InPinMode +10048240 r __func__.8889 +100482a4 R GPIO_SWPORT_DR_TBL +100482a8 R GPIO_EXT_PORT_TBL +100482ac r __FUNCTION__.8741 +100482bc r __FUNCTION__.8754 +10048324 r PinMap_UART_RX +100483e4 r PinMap_UART_TX +1004845c r __FUNCTION__.9326 +10048708 R ovsr_adj_table_9bit +1004871c R DEF_OVSR_B_CUT +10048748 R DEF_OVSR_ADJ_BITS_B_CUT_10B +10048774 R DEF_OVSR_C_CUT +100487a0 R DEF_OVSR_ADJ_BITS_C_CUT_8B +100487cc R DEF_OVSR_ADJ_BITS_B_CUT_8B +100487f8 R DEF_BAUDRATE_TABLE +100488a8 R DEF_OVSR_ADJ_BITS_C_CUT_9B +100488d4 R DEF_OVSR_ADJ_BITS_B_CUT_9B +10048900 R DEF_DIV_B_CUT +10048958 R DEF_OVSR_ADJ_BITS_C_CUT_10B +10048984 R ovsr_adj_table_10bit +10048998 R ovsr_adj_table_8bit +100489a8 R DEF_DIV_C_CUT +10048af8 r __FUNCTION__.8572 +10048b14 r __FUNCTION__.8581 +10048b38 r __FUNCTION__.8588 +10048b54 r __FUNCTION__.8595 +1004931c r __FUNCTION__.14041 +100496fa r __FUNCTION__.8933 +1004970e r __func__.8915 +10049802 r __func__.8807 +10049821 r __func__.8834 +1004983a r __func__.8817 +10049858 r __func__.8824 +10049871 r __func__.8603 +1004988b r __func__.8829 +10049c40 r __func__.8839 +10049c62 r __func__.8686 +10049c75 r __func__.8631 +10049c8e r default_key_iv +1004a0e0 r default_pin +1004a0e9 r sc_device_name +1004a0fe r mcast_udp_buffer +1004a174 r __FUNCTION__.17777 +1004a194 R wlancmds +1004a38c R rtw_cmd_callback +1004a64e r RTW_ChannelPlan2G +1004a6c6 R WPS_OUI +1004a6ca R RSN_TKIP_CIPHER +1004a6ce R MCS_rate_1R +1004a6de R P2P_OUI +1004a70a R WMM_INFO_OUI +1004a710 R RTW_WPA_OUI +1004a714 R WMM_PARA_OUI +1004a71a r RTW_ChannelPlanMap +1004a732 R null_addr +1004a738 R WMM_OUI +1004a73c r wlanevents +1004a7fc R zero_bssid +1004a851 r __FUNCTION__.17681 +1004a867 R SNAP_ETH_TYPE_APPLETALK_AARP +1004a869 r __FUNCTION__.17495 +1004a87c R SNAP_ETH_TYPE_IPX +1004a87e R rtw_bridge_tunnel_header +1004a8a5 R rtw_rfc1042_header +1004a8c3 r CSWTCH.36 +1004a8cf R ARTHEROS_OUI1 +1004a8d2 R ARTHEROS_OUI2 +1004a8d5 R REALTEK_OUI +1004a8d8 R RALINK_OUI +1004a8db R MARVELL_OUI +1004a8de R CISCO_OUI +1004a8e1 r rtw_basic_rate_cck +1004a8e5 R BROADCOM_OUI1 +1004a8e8 R BROADCOM_OUI2 +1004a8eb R REALTEK_96B_IE +1004a8f1 r rtw_basic_rate_mix +1004a8f8 r rtw_basic_rate_ofdm +1004a8fb R AIRGOCAP_OUI +1004a90f r CSWTCH.66 +1004a928 r CSWTCH.48 +1004a96a r CSWTCH.28 +1004a97c R efuse_map_mask +1004a98c R flash_map_mask +1004aa28 r __func__.21107 +1004ad6e r CSWTCH.15 +1004adf2 r CSWTCH.17 +1004ae61 r CSWTCH.14 +1004aefc r __FUNCTION__.21257 +1004af0c r rtw_private_args +1004b397 r __FUNCTION__.21057 +1004b3aa r __FUNCTION__.21294 +1004b3bb r __FUNCTION__.21241 +1004b3ca r __FUNCTION__.21126 +1004b3da r iw_priv_type_size +1004b4b8 r __FUNCTION__.17334 +1004b4c2 r __FUNCTION__.17736 +1004b4d2 r __FUNCTION__.17820 +1004b4e6 r __FUNCTION__.17760 +1004b4f9 r __FUNCTION__.17712 +1004b508 r __FUNCTION__.17649 +1004b516 r __FUNCTION__.17661 +1004b900 r __FUNCTION__.17827 +1004b919 r __FUNCTION__.17654 +1004b924 r __FUNCTION__.17615 +1004b933 r __FUNCTION__.17811 +1004b945 r __FUNCTION__.17765 +1004b953 r __FUNCTION__.17724 +1004b964 r __FUNCTION__.17637 +1004cd05 R CCKFCCTable_Ch14_8195A +1004cd15 R CCKFCCTable_8195A +1004cd28 R OFDMSwingTable_New +1004cdd4 R CCKCETable_8195A +1004cdea r CSWTCH.39 +1004cdff r __func__.20571 +1004ce20 R hci_ops +1004ce45 V Array_MP_8195A_TXPWR_LMT +1004d3b7 R __stdin_name +1004d3be R __stderr_name +1004d3c6 R __stdout_name +1004d3ce R _ctype_ +1004d4fc R __sf_fake_stdin +1004d51c R __sf_fake_stdout +1004d53c R __sf_fake_stderr +1004d55c D __data_start__ +1004d55c D SystemCoreClock +1004d560 D at_transport_items +1004d610 D at_sys_items +1004d6d0 D ap_netmask +1004d6d4 D sta_gw +1004d6d8 D sta_ip +1004d6dc D sta_netmask +1004d6e0 D ap_gw +1004d6e4 D at_wifi_items +1004d7a4 d wifi +1004d7dc D ap_ip +1004d7e0 D dhcp_mode_sta +1004d7e1 D dhcp_mode_ap +1004d7e4 D wifi_mode +1004d7e8 D gDbgFlag +1004d7ec D log_init_table +1004d7f8 D gDbgLevel +1004d7fc D error_flag +1004d800 d tcp_port +1004d804 d iss.7226 +1004d808 d udp_port +1004d80c d dhcp_recorded_xid +1004d810 d dhcp_server_state_machine +1004d814 D xHeapRegions +1004d82c d uxCriticalNesting +1004d830 d xNextTaskUnblockTime +1004d834 d seed.11819 +1004d838 d wakeup_event +1004d83c d wakelock +1004d840 D reserve_pll +1004d841 D gAT_Echo +1004d842 D udp_bcast +1004d87e d g_ios_mac +1004d884 D udp_mcast_pin +1004d8c0 D udp_bcast_pin +1004d8fc D g_security_mode +1004d8fd D udp_mcast +1004d93c D mlme_sta_tbl +1004d9ac d PMKID_KDE_TYPE.17744 +1004d9b4 V nr_xmitbuff +1004d9b8 V nr_xmitframe +1004d9bc d P802_1H_OUI +1004d9bf D rtw_adaptivity_mode +1004d9c0 D g_user_ap_sta_num +1004d9c4 d rtw_private_handler +1004da08 V max_local_skb_num +1004da0c V max_skb_buf_num +1004da10 D rom_e_rtw_msgp_str_ +1004dbec D ARFB_table +1004dc2b D TRYING_NECESSARY_idx +1004dc3f D DROPING_NECESSARY +1004dc53 D PER_RATE_UP +1004dc67 D PER_RATE_DOWN +1004dc7c V Array_MP_8195A_PHY_REG_PG +1004dd0c D Array_MP_8195A_AGC_TAB +1004df1c D Array_MP_8195A_PHY_REG +1004e594 D rtl8195A_card_disable_flow +1004e634 D rtl8195A_card_enable_flow +1004e6d4 D Array_MP_8195A_MAC_REG +1004e9dc D gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_TFBGA96_8195A +1004e9fc D gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_TFBGA96_8195A +1004ea1c D gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_QFN48_8195A +1004ea3a D gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_QFN56_8195A +1004ea58 D gDeltaSwingTableIdx_MP_2GCCKA_N_TxPowerTrack_QFN48_8195A +1004ea76 D gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_QFN56_8195A +1004ea94 D gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_TFBGA96_8195A +1004eab4 D gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_QFN56_8195A +1004ead2 D gDeltaSwingTableIdx_MP_2GA_N_TxPowerTrack_QFN48_8195A +1004eaf0 D gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_QFN56_8195A +1004eb10 D Array_MP_8195A_RadioA +1004f0d8 D gDeltaSwingTableXtal_MP_P_TxXtalTrack_8195A +1004f0f6 D gDeltaSwingTableIdx_MP_2GA_P_TxPowerTrack_TFBGA96_8195A +1004f116 D gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_QFN48_8195A +1004f134 D __ctype_ptr__ +1004f138 d impure_data +1004f198 D _impure_ptr +1004f19c D __bss_start__ +1004f19c D __data_end__ +1004f19c D .ram.bss$$Base +1004f19c D __ram_image2_text_end__ +1004f19c D SpicInitParaAllClk +1004f22c D node_pool +1004f3e4 V errno +1004f3e8 d tx_buffer +1004fa28 D atcmd_lwip_tt_task +1004fa2c d rx_buffer +1005006c D mainlist +10050070 D atcmd_lwip_tt_lasttickcnt +10050074 D atcmd_lwip_tt_datasize +10050078 D atcmd_lwip_tt_mode +1005007c d atcmd_lwip_auto_recv +10050080 D atcmd_lwip_tt_sema +10050084 d password +100500c8 d ap +100500fc d ApNum.13170 +10050100 D log_buf +10050740 D log_service_sema +10050744 D __log_init_begin__ +10050748 D log_rx_interrupt_sema +1005074c D __log_init_end__ +10050750 D log_hash +10050850 D eap_method +10050851 D eap_phase +10050854 d event_init.9106 +10050858 D rtw_join_status +1005085c d scan_result_handler_ptr +10050880 d join_user_data +10050884 d param.9384 +1005089c d event_callback_list +10050a1c D paff_array +10050a94 d packet_filter_enable_num +10050a98 d simple_config_cmd_start_time +10050a9c d ack_content +10050aa0 D fixed_channel_num +10050aa4 D g_ssid_len +10050aa8 D is_promisc_callback_unlock +10050aac D simple_config_terminate +10050ab0 D backup_sc_ctx +10050ab4 d is_fixed_channel +10050ab8 D g_ssid +10050ad8 d simple_config_cmd_current_time +10050adc D simple_config_result +10050ae0 D lwip_init_done +10050ae4 D xnetif +10050b5c d ping_seq +10050b60 d ping_call +10050b64 d ping_interval +10050b68 d data_size +10050b6c d ping_count +10050b70 d ping_ip +10050b80 d infinite_loop +10050b84 D TaskOTA +10050b88 d s_hostent.6808 +10050b9c d s_hostent_addr.6810 +10050ba0 d s_phostent_addr.6811 +10050ba8 D h_errno +10050bac d s_aliases.6809 +10050bb0 d select_cb_list +10050bb4 d sockets +10050ca4 d select_cb_ctr +10050ca8 d mbox +10050cac d tcpip_init_done_arg +10050cb0 d tcpip_init_done +10050cb4 d allsystems +10050cb8 d allrouters +10050cbc d igmp_group_list +10050cc0 D current_header +10050cc4 d ip_id +10050cc8 D current_iphdr_src +10050ccc D current_iphdr_dest +10050cd0 D current_netif +10050cd4 d str.6159 +10050ce4 d reassdatagrams +10050ce8 d ip_reass_pbufcount +10050cec D dhcp_rx_options_given +10050cf8 D dhcp_rx_options_val +10050d20 d xid.7209 +10050d24 d dns_seqno +10050d28 d dns_table +10051188 d dns_servers +10051190 d dns_payload_buffer +10051394 d dns_pcb +10051398 d dns_payload +1005139c d tcpip_tcp_timer_active +100513a0 d next_timeout +100513a4 D netif_list +100513a8 D netif_default +100513ac d netif_num +100513ad D pbuf_free_ooseq_pending +100513b0 d raw_pcbs +100513b4 D tcp_active_pcbs_changed +100513b8 D tcp_ticks +100513bc d tcp_timer +100513c0 D tcp_listen_pcbs +100513c4 D tcp_active_pcbs +100513c8 d tcp_timer_ctr +100513cc D tcp_tw_pcbs +100513d0 D tcp_tmp_pcb +100513d4 D tcp_bound_pcbs +100513d8 d seqno +100513dc d iphdr +100513e0 d tcplen +100513e4 d ackno +100513e8 d flags +100513e9 d recv_flags +100513ec d tcphdr +100513f0 d recv_data +100513f4 d inseg +10051408 D tcp_input_pcb +1005140c D udp_pcbs +10051410 d etharp_cached_entry +10051414 d arp_table +100514dc D lwip_tickless_used +100514e0 d s_timeoutlist +10051510 d s_nextthread +10051514 d dhcps_network_id +10051518 d dhcps_ip_table_semaphore +1005151c d bound_client_ethernet_address +1005152c d client_request_ip +10051530 d dhcps_local_gateway +10051534 d dhcps_send_broadcast_address +10051538 d dhcp_message_repository +1005153c d dhcp_message_total_options_lenth +10051540 d dhcps_local_mask +10051544 d dhcps_local_address +10051548 d dhcp_client_ethernet_address +10051558 d dhcps_netif +1005155c d dhcps_addr_pool_set +10051560 d dhcps_pcb +10051564 d dhcps_subnet_broadcast +10051568 d dhcps_addr_pool_start +1005156c d dhcps_allocated_client_address +10051570 d ip_table +10051590 d dhcps_addr_pool_end +10051594 d ext_upper +10051598 d xFreeBytesRemaining +1005159c d ext_free +100515a0 d ext_lower +100515a4 d pxEnd +100515a8 d xStart +100515b0 d xMinimumEverFreeBytesRemaining +100515b4 d xBlockAllocatedBit +100515b8 d ulTimerCountsForOneTick +100515bc d ulStoppedTimerCompensation +100515c0 d xMaximumPossibleSuppressedTicks +100515c4 d xSuspendedTaskList +100515d8 d pxDelayedTaskList +100515dc d xSchedulerRunning +100515e0 d uxTasksDeleted +100515e4 d xTasksWaitingTermination +100515f8 d xDelayedTaskList2 +1005160c d uxPendedTicks +10051610 d pxReadyTasksLists +100516ec d uxSchedulerSuspended +100516f0 D pxCurrentTCB +100516f4 d xPendingReadyList +10051708 d xNumOfOverflows +1005170c d xTickCount +10051710 d pxOverflowDelayedTaskList +10051714 d uxTaskNumber +10051718 d xDelayedTaskList1 +1005172c d uxCurrentNumberOfTasks +10051730 d uxTopReadyPriority +10051734 d xYieldPending +10051738 d pxCurrentTimerList +1005173c d xActiveTimerList1 +10051750 d xActiveTimerList2 +10051764 d xTimerQueue +10051768 d xLastTime.5155 +1005176c d pxOverflowTimerList +10051770 d xTimerTaskHandle +10051774 d device_mutex +1005177c d mutex_init +10051780 d uxSavedInterruptStatus +10051784 D min_free_heap_size +10051788 d g_heap_inited +1005178c d tcm_lock +10051790 d g_tcm_heap +10051794 d flashobj +100517a0 d isinit +100517a4 d serial_irq_ids +100517b0 d irq_handler +100517bc d UartGdmaOp +100517e4 d serial_irq_en +100517f0 D gHAL_Gpio_Adapter +1005191c D post_sleep_callback +1005199c D pre_sleep_callback +10051a1c D missing_tick +10051a20 D Timer2To7HandlerData +10051a38 d data_sz.14027 +10051a3c d temp_buf.14022 +1005207c D at_string +100526bc d last_tickcnt.14025 +100526c0 D at_cmd_sobj +10052ddc d data_cmd_sz.14028 +10052de0 d buf_count.14023 +10052de4 d combo_key.14024 +10052de5 d is_data_cmd.14026 +10052de6 D SYSAdapte +10052de8 D PwrAdapter +10053074 D g_bssid +1005307c D simple_config_status +10053080 d use_ios7_mac +10053084 d custom_pin +10053088 D get_channel_flag +10053089 d radom_value +10053090 d profile_pkt_index +10053094 D sc_api_fun +100530c0 d fix_sa +100530c4 d g_sc_pin_len +100530c8 d pp +100530cc d sync_pkt_index +100530d0 d g_sc_ctx +100530d4 D auto_reconnect_running +100530d8 D p_wlan_autoreconnect_hdl +100530dc D mac_monitor_callback +100530e0 D mf_list_head +100530e4 d pscan_retry_cnt.21430 +100530e8 D promisc_callback_all +100530ec D promisc_sema +100530f0 D promisc_callback +100530f4 D psk_essid +1005313c D psk_passphrase +100531be D psk_passphrase64 +100531ff D wpa_global_PSK +1005324f d RFC1042_OUI +10053254 d rx_ring_pool +10055334 d stop_report_count.20629 +10055335 D bCheckStateTIMER +10055338 d WifiMcuCmdBitMap.20974 +1005533c D p_wlan_init_done_callback +10055340 D rtw_power_percentage_idx +10055344 D p_wlan_uart_adapter_callback +10055348 D rtw_adaptivity_en +1005534c D p_wlan_mgmt_filter +10055350 D rtw_initmac +10055354 D rtw_adaptivity_th_l2h_ini +10055358 d drvpriv +1005536c D skbbuf_used_num +10055370 V skb_pool +10055528 D skbdata_used_num +1005552c d wrapper_skbbuf_list +10055534 D max_skbdata_used_num +10055538 D max_skbbuf_used_num +1005553c d skb_fail_count +10055540 D timer_table +10055548 D rltk_wlan_info +10055578 d timer_used_num +1005557c D max_timer_used_num +10055580 D Noisy_State +10055584 D pExportWlanIrqSemaphore +10055588 D gDeltaSwingTableXtal_MP_N_TxXtalTrack_8195A +100555a8 d libc_has_init +100555ac d heap_end.4961 +100555b0 D __malloc_sbrk_start +100555b4 D __malloc_free_list +100555b8 d heap_end.4243 +100555bc d skbdata_list +100555c4 V skb_data_pool +100589c4 D __bss_end__ +100589c4 D __buffer_data_start__ +100589c4 D .ram.bss$$Limit +100589c4 d ucHeap +100679c4 d ucIdleTaskHeap +10067adc D __buffer_data_end__ +10067adc D end +10067adc D __end__ +10067adc d __HeapLimit +10070000 a __StackLimit +10070000 a __StackTop +1fff0000 D ram_heap +1fff0000 T gRamStartFun +1fff0000 T __ram_image1_text_start__ +1fff0000 T __ram_start_table_start__ +1fff0004 T gRamPatchWAKE +1fff0008 T gRamPatchFun0 +1fff000c T gRamPatchFun1 +1fff0010 T gRamPatchFun2 +1fff0014 T __image1_validate_code__ +1fff0014 T RAM_IMG1_VALID_PATTEN +1fff0014 T __ram_start_table_end__ +1fff001c T rand_x +1fff0020 T AvaWds +1fff1020 T SdrDramInfo +1fff1034 T SdrDramTiming +1fff1068 T SdrDramModeReg +1fff1084 T SdrDramDev +1fff1094 t y.8811 +1fff1098 t z.8812 +1fff109c t c.8813 +1fff10a0 T gBoot_Gpio_Adapter +1fff11cc T __image1_bss_end__ +1fff11cc T __image1_bss_start__ +1fff11cc T .ram_image1.bss$$Base +1fff11cc T .ram_image1.bss$$Limit +1fff11cc T __ram_image1_data_end__ +1fff11cc t StartupHalLogUartInit.isra.0.constprop.2 +1fff1268 t StartupHalInitPlatformLogUart +1fff1294 T RtlBootToSram +1fff1414 d lfree +1fff1418 d ram_end +1fff141c d mem_mutex +1fff1420 d ram +1fff1424 d memp_memory +1fff146c T SYSCpuClkConfig +1fff14dc T IsForceLoadDefaultImg2 +1fff1560 T _GetChipId +1fff15a0 T StartupHalSpicInit +1fff15ec T PreProcessForVendor +1fff1938 t __SpicUserReadFourByteRtl8195A_veneer +1fff1948 t __SpicReadIDRtl8195A_veneer +1fff1958 t __SdrControllerInit_veneer +1fff1968 t __SpicNVMCalLoadAll_veneer +1fff1978 t __SpicWaitWipRtl8195A_veneer +1fff1988 t __SpicUserReadRtl8195A_veneer +1fff1998 t __SpicOneBitCalibrationRtl8195A_veneer +1fff19a8 t __SpicFlashInitRtl8195A_veneer +1fff19b8 t __SdrCtrlInit_veneer +1fff5534 d memp_tab +1fff5574 D tcm_heap +30000000 D __sdram_bss_end__ +30000000 D __sdram_bss_start__ +30000000 D __sdram_data_end__ +30000000 D __sdram_data_start__ + U eap_eapol_recvd_hdl + U eap_peer_unregister_methods + U eap_sm_deinit + U __get_IPSR + U HalPcmDumpRegRtl8195a + U HalPcmEnRtl8195a + U HalPcmInitRtl8195a + U HalPcmIsrEnAndDisRtl8195a + U HalPcmOnOffRtl8195a + U HalPcmRtl8195a + U HalPcmSettingRtl8195a + U HalSdioDeInit + U HalSdioInit + U HalSdioRegisterRxDoneCallback + U HalSdioRegisterTxCallback + U HalSdioRxCallback + U mDNSRegisterService + U mDNSResponderDeinit + U mDNSResponderInit + U mDNSUpdateService + U _printf_float + U TXTRecordCreate + U TXTRecordDeallocate + U TXTRecordSetValue + w _scanf_float diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ota.bin b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ota.bin new file mode 100644 index 0000000..ce20adb Binary files /dev/null and b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ota.bin differ diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ram_2.bin b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ram_2.bin new file mode 100644 index 0000000..bee78b1 Binary files /dev/null and b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ram_2.bin differ diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ram_all.bin b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ram_all.bin new file mode 100644 index 0000000..644c6e9 Binary files /dev/null and b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/ram_all.bin differ diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/sdram.bin b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/bin/sdram.bin new file mode 100644 index 0000000..e69de29 diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/aes.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/aes.d new file mode 100644 index 0000000..cdf957c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/aes.d @@ -0,0 +1,21 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/aes.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/aes.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_crypto.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/aesni.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/aesni.d new file mode 100644 index 0000000..d72c5f7 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/aesni.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/aesni.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/aesni.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/analogin_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/analogin_api.d new file mode 100644 index 0000000..8cc65cd --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/analogin_api.d @@ -0,0 +1,81 @@ +../../../component/common/mbed/targets/hal/rtl8195a/analogin_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/analogin_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/analogin_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/api_lib.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/api_lib.d new file mode 100644 index 0000000..d367306 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/api_lib.d @@ -0,0 +1,49 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/api/api_lib.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/api/api_lib.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/api_msg.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/api_msg.d new file mode 100644 index 0000000..04225f1 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/api_msg.d @@ -0,0 +1,50 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/api/api_msg.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/api/api_msg.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/arc4.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/arc4.d new file mode 100644 index 0000000..842280b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/arc4.d @@ -0,0 +1,18 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/arc4.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/arc4.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/arc4.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/asn1parse.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/asn1parse.d new file mode 100644 index 0000000..fdfabaf --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/asn1parse.d @@ -0,0 +1,20 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/asn1parse.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/asn1parse.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/asn1write.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/asn1write.d new file mode 100644 index 0000000..9ec8c8b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/asn1write.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/asn1write.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/asn1write.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_ethernet.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_ethernet.d new file mode 100644 index 0000000..ab8f8ca --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_ethernet.d @@ -0,0 +1,62 @@ +../../../component/common/api/at_cmd/atcmd_ethernet.o: \ + ../../../component/common/api/at_cmd/atcmd_ethernet.c \ + ../../../component/common/api/at_cmd/log_service.h \ + ../../../component/common/api/platform/dlist.h ../inc/platform_opts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/os/freertos/cmsis_os.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/event_groups.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_lwip.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_lwip.d new file mode 100644 index 0000000..d1d7aa5 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_lwip.d @@ -0,0 +1,68 @@ +../../../component/common/api/at_cmd/atcmd_lwip.o: \ + ../../../component/common/api/at_cmd/atcmd_lwip.c \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/api/at_cmd/log_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/api/at_cmd/atcmd_wifi.h ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.h \ + ../../../component/common/api/at_cmd/atcmd_lwip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netdb.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_sys.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_sys.d new file mode 100644 index 0000000..5349190 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_sys.d @@ -0,0 +1,135 @@ +../../../component/common/api/at_cmd/atcmd_sys.o: \ + ../../../component/common/api/at_cmd/atcmd_sys.c \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/common/mbed/hal/gpio_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/sys_api.h \ + ../../../component/common/mbed/hal_ext/flash_api.h ../inc/build_info.h \ + ../../../component/common/mbed/hal/analogin_api.h \ + ../../../component/common/api/at_cmd/log_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/at_cmd/atcmd_sys.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/common/api/at_cmd/atcmd_wifi.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.h \ + ../../../component/os/freertos/freertos_pmu.h \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_wifi.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_wifi.d new file mode 100644 index 0000000..e667bb3 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/atcmd_wifi.d @@ -0,0 +1,141 @@ +../../../component/common/api/at_cmd/atcmd_wifi.o: \ + ../../../component/common/api/at_cmd/atcmd_wifi.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/api/at_cmd/log_service.h \ + ../../../component/common/api/platform/dlist.h ../inc/platform_opts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/api/at_cmd/atcmd_wifi.h ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.h \ + ../../../component/common/network/dhcp/dhcps.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/test/wlan/wlan_test_inc.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/os/os_dep/include/device_lock.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/autoip.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/autoip.d new file mode 100644 index 0000000..a464d29 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/autoip.d @@ -0,0 +1,26 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/autoip.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/autoip.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/autoip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/base64.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/base64.d new file mode 100644 index 0000000..f3fc6b8 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/base64.d @@ -0,0 +1,18 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/base64.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/base64.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/base64.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/bignum.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/bignum.d new file mode 100644 index 0000000..4aa7ff6 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/bignum.d @@ -0,0 +1,20 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/bignum.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/bignum.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bn_mul.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/blowfish.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/blowfish.d new file mode 100644 index 0000000..47eba46 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/blowfish.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/blowfish.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/blowfish.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cJSON.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cJSON.d new file mode 100644 index 0000000..28c0329 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cJSON.d @@ -0,0 +1,3 @@ +../../../component/common/utilities/cJSON.o: \ + ../../../component/common/utilities/cJSON.c \ + ../../../component/common/utilities/cJSON.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/camellia.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/camellia.d new file mode 100644 index 0000000..450f7e2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/camellia.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/camellia.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/camellia.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ccm.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ccm.d new file mode 100644 index 0000000..bacec08 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ccm.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ccm.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ccm.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ccsbcs.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ccsbcs.d new file mode 100644 index 0000000..6a25ffe --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ccsbcs.d @@ -0,0 +1,5 @@ +../../../component/common/file_system/fatfs/r0.10c/src/option/ccsbcs.o: \ + ../../../component/common/file_system/fatfs/r0.10c/src/option/ccsbcs.c \ + ../../../component/common/file_system/fatfs/r0.10c/include/../include/ff.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/../include/integer.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/../include/ffconf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/certs.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/certs.d new file mode 100644 index 0000000..6ce7cf3 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/certs.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/certs.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/certs.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cipher.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cipher.d new file mode 100644 index 0000000..d93893f --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cipher.d @@ -0,0 +1,19 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/cipher.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/cipher.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher_wrap.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cipher_wrap.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cipher_wrap.d new file mode 100644 index 0000000..289adec --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cipher_wrap.d @@ -0,0 +1,21 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/cipher_wrap.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/cipher_wrap.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher_wrap.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/arc4.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cloud_link.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cloud_link.d new file mode 100644 index 0000000..22c3d45 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cloud_link.d @@ -0,0 +1,139 @@ +../../../component/common/application/wigadget/cloud_link.o: \ + ../../../component/common/application/wigadget/cloud_link.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/application/google/google_nest.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ecp.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/application/wigadget/wigadget.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/application/wigadget/shtc1.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cmsis_os.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cmsis_os.d new file mode 100644 index 0000000..8240fb5 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/cmsis_os.d @@ -0,0 +1,21 @@ +../../../component/os/freertos/cmsis_os.o: \ + ../../../component/os/freertos/cmsis_os.c \ + ../../../component/os/freertos/cmsis_os.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/event_groups.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/croutine.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/croutine.d new file mode 100644 index 0000000..0de24d8 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/croutine.d @@ -0,0 +1,11 @@ +../../../component/os/freertos/freertos_v8.1.2/Source/croutine.o: \ + ../../../component/os/freertos/freertos_v8.1.2/Source/croutine.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/croutine.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ctr_drbg.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ctr_drbg.d new file mode 100644 index 0000000..c846b4e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ctr_drbg.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ctr_drbg.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ctr_drbg.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/debug.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/debug.d new file mode 100644 index 0000000..68bc0ca --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/debug.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/debug.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/debug.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/def.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/def.d new file mode 100644 index 0000000..e826653 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/def.d @@ -0,0 +1,17 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/def.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/def.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/des.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/des.d new file mode 100644 index 0000000..bf92058 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/des.d @@ -0,0 +1,18 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/des.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/des.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_crypto.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/device_lock.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/device_lock.d new file mode 100644 index 0000000..061268a --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/device_lock.d @@ -0,0 +1,14 @@ +../../../component/os/os_dep/device_lock.o: \ + ../../../component/os/os_dep/device_lock.c \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../inc/platform_autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/os/os_dep/include/device_lock.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhcp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhcp.d new file mode 100644 index 0000000..4164c32 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhcp.d @@ -0,0 +1,44 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/dhcp.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/dhcp.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dhcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/autoip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhcps.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhcps.d new file mode 100644 index 0000000..beab173 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhcps.d @@ -0,0 +1,48 @@ +../../../component/common/network/dhcp/dhcps.o: \ + ../../../component/common/network/dhcp/dhcps.c \ + ../../../component/common/network/dhcp/dhcps.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhm.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhm.d new file mode 100644 index 0000000..4a1c2ca --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dhm.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/dhm.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/dhm.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/diskio.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/diskio.d new file mode 100644 index 0000000..8eb5a2e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/diskio.d @@ -0,0 +1,8 @@ +../../../component/common/file_system/fatfs/r0.10c/src/diskio.o: \ + ../../../component/common/file_system/fatfs/r0.10c/src/diskio.c \ + ../../../component/common/file_system/fatfs/r0.10c/include/diskio.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/integer.h \ + ../../../component/common/file_system/fatfs/fatfs_ext/inc/ff_driver.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/ff.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/ffconf.h \ + ../inc/platform_opts.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dma_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dma_api.d new file mode 100644 index 0000000..f93185b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dma_api.d @@ -0,0 +1,79 @@ +../../../component/common/mbed/targets/hal/rtl8195a/dma_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/dma_api.c \ + ../../../component/common/mbed/hal_ext/dma_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dns.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dns.d new file mode 100644 index 0000000..33a74a5 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/dns.d @@ -0,0 +1,27 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/dns.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/dns.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecdh.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecdh.d new file mode 100644 index 0000000..ec475c3 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecdh.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ecdh.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ecdh.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecdsa.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecdsa.d new file mode 100644 index 0000000..9e580eb --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecdsa.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ecdsa.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ecdsa.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecp.d new file mode 100644 index 0000000..65eefc3 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecp.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ecp.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ecp.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecp_curves.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecp_curves.d new file mode 100644 index 0000000..4ba86de --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ecp_curves.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ecp_curves.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ecp_curves.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/efuse_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/efuse_api.d new file mode 100644 index 0000000..48c2a60 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/efuse_api.d @@ -0,0 +1,70 @@ +../../../component/common/mbed/targets/hal/rtl8195a/efuse_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/efuse_api.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/entropy.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/entropy.d new file mode 100644 index 0000000..a2ec489 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/entropy.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/entropy.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/entropy.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/entropy_poll.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/entropy_poll.d new file mode 100644 index 0000000..f49bfa1 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/entropy_poll.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/entropy_poll.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/entropy_poll.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/err.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/err.d new file mode 100644 index 0000000..26eb976 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/err.d @@ -0,0 +1,17 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/api/err.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/api/err.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/error.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/error.d new file mode 100644 index 0000000..78f21c9 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/error.d @@ -0,0 +1,16 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/error.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/error.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/error.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/etharp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/etharp.d new file mode 100644 index 0000000..2c2547a --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/etharp.d @@ -0,0 +1,31 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/netif/etharp.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/netif/etharp.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dhcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/autoip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernet_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernet_api.d new file mode 100644 index 0000000..12e456e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernet_api.d @@ -0,0 +1,80 @@ +../../../component/common/mbed/targets/hal/rtl8195a/ethernet_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/ethernet_api.c \ + ../../../component/common/mbed/hal/ethernet_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/ethernet_ex_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernet_mii.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernet_mii.d new file mode 100644 index 0000000..f8cd972 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernet_mii.d @@ -0,0 +1,125 @@ +../../../component/common/drivers/ethernet_mii/ethernet_mii.o: \ + ../../../component/common/drivers/ethernet_mii/ethernet_mii.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../inc/build_info.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/mbed/hal/ethernet_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/lwip_intf.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/skbuff.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.h \ + ../../../component/common/drivers/ethernet_mii/ethernet_mii.h \ + ../../../component/common/mbed/hal_ext/ethernet_ex_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernetif.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernetif.d new file mode 100644 index 0000000..e81c7a9 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ethernetif.d @@ -0,0 +1,54 @@ +../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/lwip_intf.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/skbuff.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/event_groups.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/event_groups.d new file mode 100644 index 0000000..746ee4d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/event_groups.d @@ -0,0 +1,14 @@ +../../../component/os/freertos/freertos_v8.1.2/Source/event_groups.o: \ + ../../../component/os/freertos/freertos_v8.1.2/Source/event_groups.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/event_groups.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/example_entry.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/example_entry.d new file mode 100644 index 0000000..6fb6ecc --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/example_entry.d @@ -0,0 +1,4 @@ +../../../component/common/example/example_entry.o: \ + ../../../component/common/example/example_entry.c ../inc/platform_opts.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/example_uart_atcmd.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/example_uart_atcmd.d new file mode 100644 index 0000000..eb86b13 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/example_uart_atcmd.d @@ -0,0 +1,150 @@ +../../../component/common/example/uart_atcmd/example_uart_atcmd.o: \ + ../../../component/common/example/uart_atcmd/example_uart_atcmd.c \ + ../inc/platform_opts.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/serial_api.h \ + ../../../component/common/api/at_cmd/log_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/example/uart_atcmd/example_uart_atcmd.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/os/os_dep/include/device_lock.h \ + ../../../component/os/freertos/freertos_pmu.h \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/mbed/hal_ext/serial_ex_api.h \ + ../../../component/common/api/at_cmd/atcmd_wifi.h ../inc/main.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.h \ + ../../../component/common/api/at_cmd/atcmd_lwip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netdb.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/gpio_irq_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ff.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ff.d new file mode 100644 index 0000000..3a21698 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ff.d @@ -0,0 +1,6 @@ +../../../component/common/file_system/fatfs/r0.10c/src/ff.o: \ + ../../../component/common/file_system/fatfs/r0.10c/src/ff.c \ + ../../../component/common/file_system/fatfs/r0.10c/include/ff.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/integer.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/ffconf.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/diskio.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ff_driver.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ff_driver.d new file mode 100644 index 0000000..cc29c8b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ff_driver.d @@ -0,0 +1,8 @@ +../../../component/common/file_system/fatfs/fatfs_ext/src/ff_driver.o: \ + ../../../component/common/file_system/fatfs/fatfs_ext/src/ff_driver.c \ + ../../../component/common/file_system/fatfs/fatfs_ext/inc/ff_driver.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/diskio.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/integer.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/ff.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/ffconf.h \ + ../inc/platform_opts.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/flash_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/flash_api.d new file mode 100644 index 0000000..1339773 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/flash_api.d @@ -0,0 +1,82 @@ +../../../component/common/mbed/targets/hal/rtl8195a/flash_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/flash_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/freertos_pmu.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/freertos_pmu.d new file mode 100644 index 0000000..3d88b3c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/freertos_pmu.d @@ -0,0 +1,88 @@ +../../../component/os/freertos/freertos_pmu.o: \ + ../../../component/os/freertos/freertos_pmu.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_pmu.h \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../inc/platform_opts.h ../../../component/common/mbed/hal_ext/sys_api.h \ + ../../../component/common/mbed/hal/gpio_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/freertos_service.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/freertos_service.d new file mode 100644 index 0000000..0edb87c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/freertos_service.d @@ -0,0 +1,99 @@ +../../../component/os/freertos/freertos_service.o: \ + ../../../component/os/freertos/freertos_service.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../inc/platform_autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/os/freertos/freertos_pmu.h \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gcm.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gcm.d new file mode 100644 index 0000000..b886578 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gcm.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/gcm.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/gcm.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gpio_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gpio_api.d new file mode 100644 index 0000000..7bee35c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gpio_api.d @@ -0,0 +1,81 @@ +../../../component/common/mbed/targets/hal/rtl8195a/gpio_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/gpio_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/gpio_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gpio_irq_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gpio_irq_api.d new file mode 100644 index 0000000..206d157 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/gpio_irq_api.d @@ -0,0 +1,82 @@ +../../../component/common/mbed/targets/hal/rtl8195a/gpio_irq_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/gpio_irq_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/gpio_irq_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/hal_ext/gpio_irq_ex_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_32k.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_32k.d new file mode 100644 index 0000000..db8058e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_32k.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_32k.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_32k.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_adc.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_adc.d new file mode 100644 index 0000000..41c62b5 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_adc.d @@ -0,0 +1,86 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_adc.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_adc.c \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/8195a/cmsis/device/rand.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/rtl_utility.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_gdma.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_gdma.d new file mode 100644 index 0000000..462b99d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_gdma.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_gdma.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_gdma.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_gpio.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_gpio.d new file mode 100644 index 0000000..ee4bcf6 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_gpio.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_gpio.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_gpio.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_i2c.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_i2c.d new file mode 100644 index 0000000..60275c3 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_i2c.d @@ -0,0 +1,84 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_i2c.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_i2c.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_i2s.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_i2s.d new file mode 100644 index 0000000..f69a687 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_i2s.d @@ -0,0 +1,72 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_i2s.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_i2s.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/rand.h \ + ../../../component/soc/realtek/8195a/cmsis/device/rtl_utility.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_mii.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_mii.d new file mode 100644 index 0000000..565561c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_mii.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_mii.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_mii.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_nfc.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_nfc.d new file mode 100644 index 0000000..aca3179 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_nfc.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_nfc.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_nfc.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_pcm.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_pcm.d new file mode 100644 index 0000000..47d4de2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_pcm.d @@ -0,0 +1,7 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_pcm.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_pcm.c \ + ../../../component/soc/realtek/8195a/fwlib/hal_pcm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pcm.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_pwm.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_pwm.d new file mode 100644 index 0000000..23a7d2c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_pwm.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_pwm.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_pwm.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_sdr_controller.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_sdr_controller.d new file mode 100644 index 0000000..dbe2418 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_sdr_controller.d @@ -0,0 +1,72 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_sdr_controller.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_sdr_controller.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_sdr_controller.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sdr.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_ssi.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_ssi.d new file mode 100644 index 0000000..e284bef --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_ssi.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_ssi.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_ssi.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_timer.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_timer.d new file mode 100644 index 0000000..c66e7e6 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_timer.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_timer.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_timer.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_uart.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_uart.d new file mode 100644 index 0000000..dd946ac --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hal_uart.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/src/hal_uart.o: \ + ../../../component/soc/realtek/8195a/fwlib/src/hal_uart.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/havege.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/havege.d new file mode 100644 index 0000000..f7a6862 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/havege.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/havege.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/havege.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/heap_5.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/heap_5.d new file mode 100644 index 0000000..fca721b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/heap_5.d @@ -0,0 +1,13 @@ +../../../component/os/freertos/freertos_v8.1.2/Source/portable/MemMang/heap_5.o: \ + ../../../component/os/freertos/freertos_v8.1.2/Source/portable/MemMang/heap_5.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hmac_drbg.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hmac_drbg.d new file mode 100644 index 0000000..0d22963 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/hmac_drbg.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/hmac_drbg.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/hmac_drbg.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/http_client.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/http_client.d new file mode 100644 index 0000000..cdf2a9d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/http_client.d @@ -0,0 +1,15 @@ +../../../component/common/utilities/http_client.o: \ + ../../../component/common/utilities/http_client.c \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/i2c_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/i2c_api.d new file mode 100644 index 0000000..b4c5112 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/i2c_api.d @@ -0,0 +1,97 @@ +../../../component/common/mbed/targets/hal/rtl8195a/i2c_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/i2c_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/i2c_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/hal_ext/ex_api.h \ + ../../../component/common/mbed/hal/serial_api.h \ + ../../../component/common/mbed/hal/spi_api.h \ + ../../../component/common/mbed/hal_ext/dma_api.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/common/mbed/hal_ext/gpio_ex_api.h \ + ../../../component/common/mbed/hal_ext/gpio_irq_ex_api.h \ + ../../../component/common/mbed/hal_ext/i2c_ex_api.h \ + ../../../component/common/mbed/hal_ext/i2s_api.h \ + ../../../component/common/mbed/hal_ext/nfc_api.h \ + ../../../component/common/mbed/hal_ext/serial_ex_api.h \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h \ + ../../../component/common/mbed/hal_ext/spi_ex_api.h \ + ../../../component/common/mbed/hal_ext/sys_api.h \ + ../../../component/common/mbed/hal_ext/wdt_api.h \ + ../../../component/common/mbed/hal_ext/ethernet_ex_api.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/i2s_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/i2s_api.d new file mode 100644 index 0000000..7980657 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/i2s_api.d @@ -0,0 +1,81 @@ +../../../component/common/mbed/targets/hal/rtl8195a/i2s_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/i2s_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/i2s_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/icmp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/icmp.d new file mode 100644 index 0000000..aeef5c4 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/icmp.d @@ -0,0 +1,29 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/icmp.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/icmp.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/igmp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/igmp.d new file mode 100644 index 0000000..8514974 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/igmp.d @@ -0,0 +1,44 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/igmp.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/igmp.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/inet.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/inet.d new file mode 100644 index 0000000..61e7207 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/inet.d @@ -0,0 +1,19 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/inet.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/inet.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/inet_chksum.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/inet_chksum.d new file mode 100644 index 0000000..83668bf --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/inet_chksum.d @@ -0,0 +1,21 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/inet_chksum.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/inet_chksum.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/init.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/init.d new file mode 100644 index 0000000..f9bbda2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/init.d @@ -0,0 +1,57 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/init.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/init.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/init.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp_structs.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/autoip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip.d new file mode 100644 index 0000000..97c47d2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip.d @@ -0,0 +1,52 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_frag.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dhcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/autoip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/perf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip_addr.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip_addr.d new file mode 100644 index 0000000..d5d2194 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip_addr.d @@ -0,0 +1,21 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip_addr.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip_addr.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip_frag.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip_frag.d new file mode 100644 index 0000000..5792a54 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ip_frag.d @@ -0,0 +1,30 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip_frag.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip_frag.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_frag.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/list.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/list.d new file mode 100644 index 0000000..62f8923 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/list.d @@ -0,0 +1,9 @@ +../../../component/os/freertos/freertos_v8.1.2/Source/list.o: \ + ../../../component/os/freertos/freertos_v8.1.2/Source/list.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/log_service.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/log_service.d new file mode 100644 index 0000000..7a6d050 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/log_service.d @@ -0,0 +1,135 @@ +../../../component/common/api/at_cmd/log_service.o: \ + ../../../component/common/api/at_cmd/log_service.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_pmu.h \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/api/at_cmd/log_service.h \ + ../../../component/common/api/platform/dlist.h ../inc/platform_opts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/common/api/at_cmd/atcmd_wifi.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.h \ + ../../../component/common/api/at_cmd/atcmd_lwip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netdb.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/log_uart_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/log_uart_api.d new file mode 100644 index 0000000..44efb7e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/log_uart_api.d @@ -0,0 +1,80 @@ +../../../component/common/mbed/targets/hal/rtl8195a/log_uart_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/log_uart_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/log_uart_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/hal/serial_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/low_level_io.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/low_level_io.d new file mode 100644 index 0000000..c039add --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/low_level_io.d @@ -0,0 +1,5 @@ +../../../component/soc/realtek/8195a/misc/driver/low_level_io.o: \ + ../../../component/soc/realtek/8195a/misc/driver/low_level_io.c \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_intf.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_intf.d new file mode 100644 index 0000000..ccb8669 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_intf.d @@ -0,0 +1,55 @@ +../../../component/common/drivers/wlan/realtek/src/osdep/lwip_intf.o: \ + ../../../component/common/drivers/wlan/realtek/src/osdep/lwip_intf.c \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/lwip_intf.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/skbuff.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_netconf.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_netconf.d new file mode 100644 index 0000000..50661e0 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_netconf.d @@ -0,0 +1,64 @@ +../../../component/common/api/lwip_netconf.o: \ + ../../../component/common/api/lwip_netconf.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dhcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/autoip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_timers.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_timers.d new file mode 100644 index 0000000..8462970 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/lwip_timers.d @@ -0,0 +1,54 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/lwip_timers.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/lwip_timers.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_frag.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dhcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/autoip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mDNSPlatform.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mDNSPlatform.d new file mode 100644 index 0000000..0dc7179 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mDNSPlatform.d @@ -0,0 +1,23 @@ +../../../component/common/network/mDNS/mDNSPlatform.o: \ + ../../../component/common/network/mDNS/mDNSPlatform.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mailbox.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mailbox.d new file mode 100644 index 0000000..35df51f --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mailbox.d @@ -0,0 +1,23 @@ +../../../component/os/os_dep/mailbox.o: \ + ../../../component/os/os_dep/mailbox.c \ + ../../../component/os/os_dep/include/mailbox.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/main.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/main.d new file mode 100644 index 0000000..b4327ec --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/main.d @@ -0,0 +1,14 @@ +../src/main.o: ../src/main.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../../../component/common/example/example_entry.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md.d new file mode 100644 index 0000000..18b3916 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md.d @@ -0,0 +1,19 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/md.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/md.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md_wrap.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md2.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md2.d new file mode 100644 index 0000000..0d2d4c2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md2.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/md2.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/md2.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md4.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md4.d new file mode 100644 index 0000000..8c2afee --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md4.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/md4.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/md4.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md5.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md5.d new file mode 100644 index 0000000..07923b9 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md5.d @@ -0,0 +1,18 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/md5.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/md5.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md_wrap.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md_wrap.d new file mode 100644 index 0000000..7548bca --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/md_wrap.d @@ -0,0 +1,23 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/md_wrap.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/md_wrap.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md_wrap.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mem.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mem.d new file mode 100644 index 0000000..79c2092 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/mem.d @@ -0,0 +1,35 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/mem.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/mem.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/memory_buffer_alloc.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/memory_buffer_alloc.d new file mode 100644 index 0000000..67b98cb --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/memory_buffer_alloc.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/memory_buffer_alloc.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/memory_buffer_alloc.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/memp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/memp.d new file mode 100644 index 0000000..9553d8d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/memp.d @@ -0,0 +1,58 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/memp.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/memp.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_frag.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp_structs.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/ppp_oe.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/net.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/net.d new file mode 100644 index 0000000..720d033 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/net.d @@ -0,0 +1,30 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/net.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/net.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netdb.h \ + ../../../component/soc/realtek/8195a/fwlib/ram_lib/usb_otg/include/errno.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netbuf.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netbuf.d new file mode 100644 index 0000000..6ea9c31 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netbuf.d @@ -0,0 +1,23 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/api/netbuf.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/api/netbuf.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netdb.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netdb.d new file mode 100644 index 0000000..997c52a --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netdb.d @@ -0,0 +1,42 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/api/netdb.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/api/netdb.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netdb.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netif.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netif.d new file mode 100644 index 0000000..f020aa2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netif.d @@ -0,0 +1,48 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/netif.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/netif.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/autoip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dhcp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netifapi.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netifapi.d new file mode 100644 index 0000000..d31e209 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/netifapi.d @@ -0,0 +1,16 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/api/netifapi.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/api/netifapi.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/nfc_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/nfc_api.d new file mode 100644 index 0000000..8ec67e4 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/nfc_api.d @@ -0,0 +1,81 @@ +../../../component/common/mbed/targets/hal/rtl8195a/nfc_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/nfc_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/nfc_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/oid.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/oid.d new file mode 100644 index 0000000..8447844 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/oid.d @@ -0,0 +1,26 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/oid.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/oid.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/oid.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/osdep_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/osdep_api.d new file mode 100644 index 0000000..3d7bf1d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/osdep_api.d @@ -0,0 +1,19 @@ +../../../component/os/os_dep/osdep_api.o: \ + ../../../component/os/os_dep/osdep_api.c \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/osdep_service.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/osdep_service.d new file mode 100644 index 0000000..fc286cc --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/osdep_service.d @@ -0,0 +1,13 @@ +../../../component/os/os_dep/osdep_service.o: \ + ../../../component/os/os_dep/osdep_service.c \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../inc/platform_autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/padlock.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/padlock.d new file mode 100644 index 0000000..ca376c0 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/padlock.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/padlock.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/padlock.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pbkdf2.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pbkdf2.d new file mode 100644 index 0000000..3135148 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pbkdf2.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pbkdf2.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pbkdf2.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pbuf.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pbuf.d new file mode 100644 index 0000000..625fcf2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pbuf.d @@ -0,0 +1,50 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/pbuf.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/pbuf.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/perf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pem.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pem.d new file mode 100644 index 0000000..85d8ac4 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pem.d @@ -0,0 +1,23 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pem.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pem.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pem.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/base64.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/des.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ping_test.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ping_test.d new file mode 100644 index 0000000..5b4ac62 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ping_test.d @@ -0,0 +1,37 @@ +../../../component/common/api/network/src/ping_test.o: \ + ../../../component/common/api/network/src/ping_test.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pinmap.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pinmap.d new file mode 100644 index 0000000..4422b15 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pinmap.d @@ -0,0 +1,79 @@ +../../../component/common/mbed/targets/hal/rtl8195a/pinmap.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/pinmap.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pinmap_common.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pinmap_common.d new file mode 100644 index 0000000..92a61eb --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pinmap_common.d @@ -0,0 +1,74 @@ +../../../component/common/mbed/targets/hal/rtl8195a/pinmap_common.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/pinmap_common.c \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pk.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pk.d new file mode 100644 index 0000000..0f24257 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pk.d @@ -0,0 +1,23 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pk.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pk.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk_wrap.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pk_wrap.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pk_wrap.d new file mode 100644 index 0000000..0ac4c1f --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pk_wrap.d @@ -0,0 +1,23 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pk_wrap.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pk_wrap.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk_wrap.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs11.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs11.d new file mode 100644 index 0000000..2255e3b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs11.d @@ -0,0 +1,16 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs11.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs11.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pkcs11.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs12.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs12.d new file mode 100644 index 0000000..aa94074 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs12.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs12.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs12.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs5.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs5.d new file mode 100644 index 0000000..e81ee6f --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkcs5.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs5.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs5.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkparse.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkparse.d new file mode 100644 index 0000000..357731e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkparse.d @@ -0,0 +1,29 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pkparse.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pkparse.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/oid.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pem.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkwrite.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkwrite.d new file mode 100644 index 0000000..4541d3d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pkwrite.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/pkwrite.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/pkwrite.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/platform.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/platform.d new file mode 100644 index 0000000..71f58a8 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/platform.d @@ -0,0 +1,17 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/platform.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/platform.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/port.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/port.d new file mode 100644 index 0000000..63b2adc --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/port.d @@ -0,0 +1,13 @@ +../../../component/os/freertos/freertos_v8.1.2/Source/portable/GCC/ARM_CM3/port.o: \ + ../../../component/os/freertos/freertos_v8.1.2/Source/portable/GCC/ARM_CM3/port.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/port_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/port_api.d new file mode 100644 index 0000000..54cac3a --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/port_api.d @@ -0,0 +1,82 @@ +../../../component/common/mbed/targets/hal/rtl8195a/port_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/port_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/port_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/gpio_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pwmout_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pwmout_api.d new file mode 100644 index 0000000..0989121 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/pwmout_api.d @@ -0,0 +1,82 @@ +../../../component/common/mbed/targets/hal/rtl8195a/pwmout_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/pwmout_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/pwmout_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/queue.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/queue.d new file mode 100644 index 0000000..1e23e85 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/queue.d @@ -0,0 +1,19 @@ +../../../component/os/freertos/freertos_v8.1.2/Source/queue.o: \ + ../../../component/os/freertos/freertos_v8.1.2/Source/queue.c \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/croutine.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ram_1.r.bin b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ram_1.r.bin new file mode 100644 index 0000000..c6aabc4 Binary files /dev/null and b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ram_1.r.bin differ diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/raw.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/raw.d new file mode 100644 index 0000000..8650492 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/raw.d @@ -0,0 +1,28 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/raw.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/raw.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/perf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ripemd160.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ripemd160.d new file mode 100644 index 0000000..5dbd007 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ripemd160.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ripemd160.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ripemd160.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rom_ssl_ram_map.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rom_ssl_ram_map.d new file mode 100644 index 0000000..75a0e09 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rom_ssl_ram_map.d @@ -0,0 +1,7 @@ +../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.o: \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.c \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rsa.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rsa.d new file mode 100644 index 0000000..16a0662 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rsa.d @@ -0,0 +1,26 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/rsa.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/rsa.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/oid.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtc_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtc_api.d new file mode 100644 index 0000000..48ea5eb --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtc_api.d @@ -0,0 +1,81 @@ +../../../component/common/mbed/targets/hal/rtl8195a/rtc_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/rtc_api.c \ + ../../../component/common/mbed/hal/rtc_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/timer_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_adc.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_adc.d new file mode 100644 index 0000000..09846c3 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_adc.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_adc.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_adc.c \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_gdma.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_gdma.d new file mode 100644 index 0000000..6514cbc --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_gdma.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_gdma.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_gdma.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_gpio.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_gpio.d new file mode 100644 index 0000000..f7d2cf5 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_gpio.d @@ -0,0 +1,80 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_gpio.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_gpio.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/common/mbed/hal/gpio_irq_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_i2c.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_i2c.d new file mode 100644 index 0000000..b281af8 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_i2c.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_i2c.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_i2c.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_i2s.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_i2s.d new file mode 100644 index 0000000..3351f7e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_i2s.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_i2s.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_i2s.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_mii.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_mii.d new file mode 100644 index 0000000..8c44c3d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_mii.d @@ -0,0 +1,84 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_mii.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_mii.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_nfc.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_nfc.d new file mode 100644 index 0000000..3f4189c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_nfc.d @@ -0,0 +1,84 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_nfc.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_nfc.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_pwm.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_pwm.d new file mode 100644 index 0000000..70d7def --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_pwm.d @@ -0,0 +1,71 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_pwm.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_pwm.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_ssi.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_ssi.d new file mode 100644 index 0000000..66b2ebe --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_ssi.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_ssi.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_ssi.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_timer.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_timer.d new file mode 100644 index 0000000..927704a --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_timer.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_timer.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_timer.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_uart.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_uart.d new file mode 100644 index 0000000..4af7872 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl8195a_uart.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_uart.o: \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_uart.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl_consol.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl_consol.d new file mode 100644 index 0000000..1588915 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/rtl_consol.d @@ -0,0 +1,103 @@ +../../../component/soc/realtek/8195a/misc/driver/rtl_consol.o: \ + ../../../component/soc/realtek/8195a/misc/driver/rtl_consol.c \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/misc/driver/rtl_consol.h \ + ../inc/platform_opts.h ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_pmu.h \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/os/os_dep/include/tcm_heap.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sdcard.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sdcard.d new file mode 100644 index 0000000..3a0a60d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sdcard.d @@ -0,0 +1,10 @@ +../../../component/common/file_system/fatfs/disk_if/src/sdcard.o: \ + ../../../component/common/file_system/fatfs/disk_if/src/sdcard.c \ + ../../../component/common/file_system/fatfs/r0.10c/include/integer.h \ + ../../../component/common/file_system/fatfs/disk_if/inc/sdcard.h \ + ../../../component/common/file_system/fatfs/fatfs_ext/inc/ff_driver.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/diskio.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/integer.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/ff.h \ + ../../../component/common/file_system/fatfs/r0.10c/include/ffconf.h \ + ../inc/platform_opts.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/serial_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/serial_api.d new file mode 100644 index 0000000..6333fae --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/serial_api.d @@ -0,0 +1,82 @@ +../../../component/common/mbed/targets/hal/rtl8195a/serial_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/serial_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/serial_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/hal_ext/serial_ex_api.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha1.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha1.d new file mode 100644 index 0000000..65a80a0 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha1.d @@ -0,0 +1,18 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/sha1.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/sha1.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha256.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha256.d new file mode 100644 index 0000000..6bacf9c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha256.d @@ -0,0 +1,18 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/sha256.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/sha256.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha512.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha512.d new file mode 100644 index 0000000..dbb63bb --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sha512.d @@ -0,0 +1,18 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/sha512.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/sha512.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/shtc1.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/shtc1.d new file mode 100644 index 0000000..4bae673 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/shtc1.d @@ -0,0 +1,96 @@ +../../../component/common/application/wigadget/shtc1.o: \ + ../../../component/common/application/wigadget/shtc1.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/mbed/hal/i2c_api.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/application/wigadget/shtc1.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sleep.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sleep.d new file mode 100644 index 0000000..718d91a --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sleep.d @@ -0,0 +1,79 @@ +../../../component/common/mbed/targets/hal/rtl8195a/sleep.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/sleep.c \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sntp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sntp.d new file mode 100644 index 0000000..a665207 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sntp.d @@ -0,0 +1,39 @@ +../../../component/common/network/sntp/sntp.o: \ + ../../../component/common/network/sntp/sntp.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/sntp/sntp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dns.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sockets.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sockets.d new file mode 100644 index 0000000..41526e2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sockets.d @@ -0,0 +1,49 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/api/sockets.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/api/sockets.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/spdio_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/spdio_api.d new file mode 100644 index 0000000..93784b5 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/spdio_api.d @@ -0,0 +1,14 @@ +../../../component/common/mbed/targets/hal/rtl8195a/spdio_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/spdio_api.c \ + ../../../component/common/mbed/hal_ext/spdio_api.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../inc/platform_autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/spi_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/spi_api.d new file mode 100644 index 0000000..572f9f0 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/spi_api.d @@ -0,0 +1,82 @@ +../../../component/common/mbed/targets/hal/rtl8195a/spi_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/spi_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/spi_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/hal_ext/spi_ex_api.h \ + ../../../component/common/mbed/hal/pinmap.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_cache.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_cache.d new file mode 100644 index 0000000..acfb89b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_cache.d @@ -0,0 +1,36 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_cache.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_cache.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_cache.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ecp.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_ciphersuites.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_ciphersuites.d new file mode 100644 index 0000000..ab91d39 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_ciphersuites.d @@ -0,0 +1,35 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_ciphersuites.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_ciphersuites.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ecp.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_cli.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_cli.d new file mode 100644 index 0000000..3024e04 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_cli.d @@ -0,0 +1,37 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_cli.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_cli.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/debug.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ecp.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_client.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_client.d new file mode 100644 index 0000000..b70f969 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_client.d @@ -0,0 +1,47 @@ +../../../component/common/utilities/ssl_client.o: \ + ../../../component/common/utilities/ssl_client.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ecp.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/error.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/memory.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/memory_buffer_alloc.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_client_ext.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_client_ext.d new file mode 100644 index 0000000..d2d0052 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_client_ext.d @@ -0,0 +1,36 @@ +../../../component/common/utilities/ssl_client_ext.o: \ + ../../../component/common/utilities/ssl_client_ext.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ecp.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/memory.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/memory_buffer_alloc.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_ram_map.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_ram_map.d new file mode 100644 index 0000000..c0347df --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_ram_map.d @@ -0,0 +1,6 @@ +../../../component/common/network/ssl/ssl_ram_map/ssl_ram_map.o: \ + ../../../component/common/network/ssl/ssl_ram_map/ssl_ram_map.c \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_srv.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_srv.d new file mode 100644 index 0000000..b66b992 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_srv.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_srv.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_srv.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_tls.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_tls.d new file mode 100644 index 0000000..90ddb5d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/ssl_tls.d @@ -0,0 +1,37 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_tls.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_tls.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/debug.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ecp.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/stats.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/stats.d new file mode 100644 index 0000000..032fddd --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/stats.d @@ -0,0 +1,16 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/stats.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/stats.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/stdlib_patch.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/stdlib_patch.d new file mode 100644 index 0000000..280a038 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/stdlib_patch.d @@ -0,0 +1,2 @@ +../../../component/common/api/platform/stdlib_patch.o: \ + ../../../component/common/api/platform/stdlib_patch.c diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys.d new file mode 100644 index 0000000..0b2597c --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys.d @@ -0,0 +1,30 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/sys.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/sys.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys_api.d new file mode 100644 index 0000000..4fbefec --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys_api.d @@ -0,0 +1,95 @@ +../../../component/common/mbed/targets/hal/rtl8195a/sys_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/sys_api.c \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/hal_ext/sys_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/os_dep/include/device_lock.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys_arch.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys_arch.d new file mode 100644 index 0000000..639797d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/sys_arch.d @@ -0,0 +1,41 @@ +../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/sys_arch.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/sys_arch.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/os/os_dep/include/tcm_heap.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/system_8195a.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/system_8195a.d new file mode 100644 index 0000000..3b9f057 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/system_8195a.d @@ -0,0 +1,70 @@ +../../../component/soc/realtek/8195a/cmsis/device/system_8195a.o: \ + ../../../component/soc/realtek/8195a/cmsis/device/system_8195a.c \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tasks.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tasks.d new file mode 100644 index 0000000..cf54f48 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tasks.d @@ -0,0 +1,22 @@ +../../../component/os/freertos/freertos_v8.1.2/Source/tasks.o: \ + ../../../component/os/freertos/freertos_v8.1.2/Source/tasks.c \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/StackMacros.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcm_heap.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcm_heap.d new file mode 100644 index 0000000..d8c0593 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcm_heap.d @@ -0,0 +1,14 @@ +../../../component/os/os_dep/tcm_heap.o: \ + ../../../component/os/os_dep/tcm_heap.c \ + ../../../component/os/os_dep/include/tcm_heap.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../inc/platform_autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp.d new file mode 100644 index 0000000..1d0095f --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp.d @@ -0,0 +1,43 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp_in.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp_in.d new file mode 100644 index 0000000..558c10b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp_in.d @@ -0,0 +1,45 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp_in.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp_in.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/perf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp_out.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp_out.d new file mode 100644 index 0000000..5e127b5 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcp_out.d @@ -0,0 +1,44 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp_out.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp_out.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp_impl.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcpip.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcpip.d new file mode 100644 index 0000000..68c7bf2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcpip.d @@ -0,0 +1,52 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/api/tcpip.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/api/tcpip.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/init.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/etharp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/ppp_oe.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcptest.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcptest.d new file mode 100644 index 0000000..5dbb1ea --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/tcptest.d @@ -0,0 +1,37 @@ +../../../component/common/utilities/tcptest.o: \ + ../../../component/common/utilities/tcptest.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/raw.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/threading.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/threading.d new file mode 100644 index 0000000..8eb0564 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/threading.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/threading.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/threading.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timer_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timer_api.d new file mode 100644 index 0000000..0538078 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timer_api.d @@ -0,0 +1,79 @@ +../../../component/common/mbed/targets/hal/rtl8195a/timer_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/timer_api.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/timer_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timers.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timers.d new file mode 100644 index 0000000..461f394 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timers.d @@ -0,0 +1,13 @@ +../../../component/os/freertos/freertos_v8.1.2/Source/timers.o: \ + ../../../component/os/freertos/freertos_v8.1.2/Source/timers.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timing.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timing.d new file mode 100644 index 0000000..7248771 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/timing.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/timing.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/timing.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_adapter.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_adapter.d new file mode 100644 index 0000000..3f770ee --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_adapter.d @@ -0,0 +1,155 @@ +../../../component/common/application/uart_adapter/uart_adapter.o: \ + ../../../component/common/application/uart_adapter/uart_adapter.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/dhcp/dhcps.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/mbed/hal/serial_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/serial_ex_api.h \ + ../../../component/common/application/uart_adapter/uart_adapter.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/timer_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/os/freertos/freertos_pmu.h \ + ../../../component/common/mbed/hal_ext/sleep_ex_api.h \ + ../../../component/common/network/mDNS/mDNS.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/mbed/hal/gpio_api.h \ + ../../../component/common/mbed/hal/gpio_irq_api.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/os/os_dep/include/device_lock.h \ + ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_fw_update.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_fw_update.d new file mode 100644 index 0000000..f33502f --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_fw_update.d @@ -0,0 +1,77 @@ +../../../component/common/application/xmodem/uart_fw_update.o: \ + ../../../component/common/application/xmodem/uart_fw_update.c \ + ../../../component/common/application/xmodem/xmport_uart.h \ + ../../../component/common/application/xmodem/xmodem.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/application/xmodem/xmport_loguart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_socket.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_socket.d new file mode 100644 index 0000000..41da6a2 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_socket.d @@ -0,0 +1,119 @@ +../../../component/common/utilities/uart_socket.o: \ + ../../../component/common/utilities/uart_socket.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/utilities/uart_socket.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/common/mbed/hal/serial_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/serial_ex_api.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_ymodem.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_ymodem.d new file mode 100644 index 0000000..1a83c99 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/uart_ymodem.d @@ -0,0 +1,104 @@ +../../../component/common/utilities/uart_ymodem.o: \ + ../../../component/common/utilities/uart_ymodem.c \ + ../../../component/common/utilities/uart_ymodem.h \ + ../../../component/os/os_dep/include/osdep_api.h \ + ../../../component/os/os_dep/include/os_timer.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/os/os_dep/include/os_support.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/timers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/mbed/hal/serial_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/os/os_dep/include/device_lock.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/udp.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/udp.d new file mode 100644 index 0000000..ca8470e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/udp.d @@ -0,0 +1,32 @@ +../../../component/common/network/lwip/lwip_v1.4.1/src/core/udp.o: \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/core/udp.c \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet_chksum.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/icmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/snmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/perf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/dhcp.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/update.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/update.d new file mode 100644 index 0000000..a82ad88 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/update.d @@ -0,0 +1,109 @@ +../../../component/common/utilities/update.o: \ + ../../../component/common/utilities/update.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/os/os_dep/include/device_lock.h \ + ../../../component/common/utilities/update.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/us_ticker.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/us_ticker.d new file mode 100644 index 0000000..95ea67b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/us_ticker.d @@ -0,0 +1,78 @@ +../../../component/common/mbed/targets/hal/rtl8195a/us_ticker.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/us_ticker.c \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/mbed/hal/us_ticker_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/us_ticker_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/us_ticker_api.d new file mode 100644 index 0000000..48f5dc5 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/us_ticker_api.d @@ -0,0 +1,74 @@ +../../../component/common/mbed/common/us_ticker_api.o: \ + ../../../component/common/mbed/common/us_ticker_api.c \ + ../../../component/common/mbed/hal/us_ticker_api.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/version.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/version.d new file mode 100644 index 0000000..3f1f2be --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/version.d @@ -0,0 +1,17 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/version.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/version.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/version.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/version_features.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/version_features.d new file mode 100644 index 0000000..ad2599e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/version_features.d @@ -0,0 +1,17 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/version_features.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/version_features.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/version.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wait_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wait_api.d new file mode 100644 index 0000000..6685ca7 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wait_api.d @@ -0,0 +1,4 @@ +../../../component/common/mbed/common/wait_api.o: \ + ../../../component/common/mbed/common/wait_api.c \ + ../../../component/common/mbed/api/wait_api.h \ + ../../../component/common/mbed/hal/us_ticker_api.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wdt_api.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wdt_api.d new file mode 100644 index 0000000..648d436 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wdt_api.d @@ -0,0 +1,79 @@ +../../../component/common/mbed/targets/hal/rtl8195a/wdt_api.o: \ + ../../../component/common/mbed/targets/hal/rtl8195a/wdt_api.c \ + ../../../component/common/mbed/hal_ext/wdt_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/webserver.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/webserver.d new file mode 100644 index 0000000..54bd6fb --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/webserver.d @@ -0,0 +1,134 @@ +../../../component/common/utilities/webserver.o: \ + ../../../component/common/utilities/webserver.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/netif/loopif.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../../../component/common/utilities/webserver.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/os/os_dep/include/device_lock.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_conf.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_conf.d new file mode 100644 index 0000000..5fde66e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_conf.d @@ -0,0 +1,66 @@ +../../../component/common/api/wifi/wifi_conf.o: \ + ../../../component/common/api/wifi/wifi_conf.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/main.h ../../../component/common/network/dhcp/dhcps.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/stats.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/mem.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/memp_std.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/at_cmd/atcmd_wifi.h \ + ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_eap_config.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_eap_config.d new file mode 100644 index 0000000..7773b83 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_eap_config.d @@ -0,0 +1,89 @@ +../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_eap_config.o: \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_eap_config.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/src/utils/os.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../inc/platform_autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/freertos/wrapper.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/skbuff.h \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/src/utils/rom/rom_wps_os.h \ + ../../../component/soc/realtek/8195a/fwlib/ram_lib/wlan/realtek/wlan_ram_map/rom/rom_wlan_ram_map.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/net.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ecp.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/ssl_ciphersuites.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md5.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha256.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/sha512.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/aes.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/memory.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/memory_buffer_alloc.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_ind.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_ind.d new file mode 100644 index 0000000..7bec7db --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_ind.d @@ -0,0 +1,30 @@ +../../../component/common/api/wifi/wifi_ind.o: \ + ../../../component/common/api/wifi/wifi_ind.c \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/platform_stdlib.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_p2p_config.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_p2p_config.d new file mode 100644 index 0000000..c05a75d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_p2p_config.d @@ -0,0 +1,48 @@ +../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_p2p_config.o: \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_p2p_config.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/src/utils/os.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../inc/platform_autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/freertos/wrapper.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/skbuff.h \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/src/utils/rom/rom_wps_os.h \ + ../../../component/soc/realtek/8195a/fwlib/ram_lib/wlan/realtek/wlan_ram_map/rom/rom_wlan_ram_map.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/src/wps/wps_defs.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_promisc.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_promisc.d new file mode 100644 index 0000000..00e0ef8 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_promisc.d @@ -0,0 +1,53 @@ +../../../component/common/api/wifi/wifi_promisc.o: \ + ../../../component/common/api/wifi/wifi_promisc.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_simple_config.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_simple_config.d new file mode 100644 index 0000000..a1cd8cb --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_simple_config.d @@ -0,0 +1,65 @@ +../../../component/common/api/wifi/wifi_simple_config.o: \ + ../../../component/common/api/wifi/wifi_simple_config.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/udp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/common/api/wifi/wifi_simple_config_parser.h \ + ../../../component/common/api/wifi/wifi_simple_config.h \ + ../../../component/common/api/at_cmd/atcmd_wifi.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_util.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_util.d new file mode 100644 index 0000000..e288701 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_util.d @@ -0,0 +1,30 @@ +../../../component/common/api/wifi/wifi_util.o: \ + ../../../component/common/api/wifi/wifi_util.c \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../../../component/os/freertos/freertos_service.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_wps_config.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_wps_config.d new file mode 100644 index 0000000..8e7d413 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wifi_wps_config.d @@ -0,0 +1,62 @@ +../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_wps_config.o: \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_wps_config.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/src/utils/os.h \ + ../../../component/os/os_dep/include/osdep_service.h \ + ../inc/platform_autoconf.h \ + ../../../component/os/freertos/freertos_service.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/freertos/wrapper.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/skbuff.h \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/src/utils/rom/rom_wps_os.h \ + ../../../component/soc/realtek/8195a/fwlib/ram_lib/wlan/realtek/wlan_ram_map/rom/rom_wlan_ram_map.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/api/wifi/rtw_wpa_supplicant/src/wps/wps_defs.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wigadget.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wigadget.d new file mode 100644 index 0000000..52540d1 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wigadget.d @@ -0,0 +1,139 @@ +../../../component/common/application/wigadget/wigadget.o: \ + ../../../component/common/application/wigadget/wigadget.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sockets.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/inet.h \ + ../../../component/common/network/mDNS/mDNS.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h \ + ../../../component/common/mbed/hal_ext/flash_api.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/device.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/objects.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_sys_on.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pinmux.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_peri_on.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_irqn.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_vector_table.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_spi_flash.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_platform.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_timer.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_util.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_efuse.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_soc_ps_monitor.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_common.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cm3.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmInstr.h \ + ../../../component/soc/realtek/8195a/cmsis/core_cmFunc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_gpio.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_ssi.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_gdma.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2c.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_pwm.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_i2s.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_api.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_dac.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_adc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_nfc.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_wdt.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_usb.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_log_uart.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_diag.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/fwlib/rtl8195a/rtl8195a_mii.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis_nvic.h \ + ../../../component/soc/realtek/8195a/cmsis/device/cmsis.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PortNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PeripheralNames.h \ + ../../../component/common/mbed/targets/hal/rtl8195a/PinNames.h \ + ../../../component/common/application/apple/WACServer/External/GladmanAES/rom_wac_aes.h \ + ../../../component/common/application/apple/WACServer/External/GladmanAES/rom_wac_brg_types.h \ + ../../../component/common/drivers/wlan/realtek/include/rom_aes.h \ + ../../../component/common/application/apple/WACServer/External/Curve25519/rom_wac_curve25519-donna.h \ + ../../../component/common/mbed/hal/gpio_api.h \ + ../../../component/common/mbed/hal/gpio_irq_api.h \ + ../../../component/common/utilities/cJSON.h \ + ../../../component/common/application/wigadget/cloud_link.h \ + ../../../component/common/application/wigadget/wigadget.h \ + ../../../component/common/application/wigadget/shtc1.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wlan_network.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wlan_network.d new file mode 100644 index 0000000..4e8238e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/wlan_network.d @@ -0,0 +1,55 @@ +../../../component/common/api/network/src/wlan_network.o: \ + ../../../component/common/api/network/src/wlan_network.c \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/task.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/list.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/semphr.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../inc/main.h \ + ../../../component/common/drivers/wlan/realtek/include/autoconf.h \ + ../inc/platform_opts.h \ + ../../../component/common/api/network/include/main_test.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_structures.h \ + ../../../component/common/drivers/wlan/realtek/include/wifi_constants.h \ + ../../../component/common/api/platform/dlist.h \ + ../../../component/common/api/wifi/wifi_util.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wireless.h \ + ../../../component/common/drivers/wlan/realtek/src/osdep/wlan_intf.h \ + ../../../component/common/api/wifi/wifi_ind.h \ + ../../../component/common/api/wifi/wifi_conf.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/api/lwip_netconf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/tcpip.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/opt.h \ + ../../../component/common/api/network/include/lwipopts.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/debug.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/arch.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cc.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/cpu.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api_msg.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/ip_addr.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/def.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/err.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/sys.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/arch/sys_arch.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/queue.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4/lwip/igmp.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netif.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/pbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/api.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netbuf.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/netifapi.h \ + ../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip/lwip_timers.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509.d new file mode 100644 index 0000000..c0acf90 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509.d @@ -0,0 +1,28 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/x509.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/x509.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/oid.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pem.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_create.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_create.d new file mode 100644 index 0000000..d13f63d --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_create.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/x509_create.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/x509_create.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_crl.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_crl.d new file mode 100644 index 0000000..8e31d34 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_crl.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/x509_crl.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/x509_crl.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_crt.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_crt.d new file mode 100644 index 0000000..9431dc8 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_crt.d @@ -0,0 +1,28 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/x509_crt.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/x509_crt.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crt.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/asn1.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/bignum.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pk.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/md.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/x509_crl.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/oid.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/cipher.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/pem.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/platform.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_csr.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_csr.d new file mode 100644 index 0000000..c51d36e --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509_csr.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/x509_csr.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/x509_csr.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509write_crt.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509write_crt.d new file mode 100644 index 0000000..bd66453 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509write_crt.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/x509write_crt.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/x509write_crt.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509write_csr.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509write_csr.d new file mode 100644 index 0000000..476fc7b --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/x509write_csr.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/x509write_csr.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/x509write_csr.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/xml.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/xml.d new file mode 100644 index 0000000..581c980 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/xml.d @@ -0,0 +1,16 @@ +../../../component/common/utilities/xml.o: \ + ../../../component/common/utilities/xml.c \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../inc/platform_autoconf.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/FreeRTOS.h \ + ../inc/FreeRTOSConfig.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/projdefs.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/portable.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/../../Source/portable/GCC/ARM_CM3/portmacro.h \ + ../../../component/os/freertos/freertos_v8.1.2/Source/include/mpu_wrappers.h \ + ../../../component/common/utilities/xml.h diff --git a/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/xtea.d b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/xtea.d new file mode 100644 index 0000000..9884396 --- /dev/null +++ b/project/realtek_ameba1_va0_example/GCC-RELEASE/application/Debug/obj/xtea.d @@ -0,0 +1,15 @@ +../../../component/common/network/ssl/polarssl-1.3.8/library/xtea.o: \ + ../../../component/common/network/ssl/polarssl-1.3.8/library/xtea.c \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config.h \ + ../../../component/soc/realtek/common/bsp/section_config.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../inc/platform_autoconf.h \ + ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.h \ + ../../../component/soc/realtek/common/bsp/basic_types.h \ + ../../../component/common/api/platform/platform_stdlib.h \ + ../../../component/soc/realtek/8195a/cmsis/device/diag.h \ + ../../../component/soc/realtek/8195a/cmsis/device/strproc.h \ + ../../../component/soc/realtek/8195a/fwlib/hal_misc.h \ + ../../../component/soc/realtek/8195a/misc/rtl_std_lib/include/rtl_lib.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/config_rsa.h \ + ../../../component/common/network/ssl/polarssl-1.3.8/include/polarssl/check_config.h diff --git a/project/realtek_ameba1_va0_example/inc/build_info.h b/project/realtek_ameba1_va0_example/inc/build_info.h index e8e7da2..fe466f5 100644 --- a/project/realtek_ameba1_va0_example/inc/build_info.h +++ b/project/realtek_ameba1_va0_example/inc/build_info.h @@ -1,5 +1,5 @@ -#define UTS_VERSION "2016/09/18-08:50:19" -#define RTL8195AFW_COMPILE_TIME "2016/09/18-08:50:19" +#define UTS_VERSION "2016/09/18-13:42:41" +#define RTL8195AFW_COMPILE_TIME "2016/09/18-13:42:41" #define RTL8195AFW_COMPILE_DATE "20160918" #define RTL8195AFW_COMPILE_BY "root" #define RTL8195AFW_COMPILE_HOST "" diff --git a/release_note.txt b/release_note.txt new file mode 100644 index 0000000..be8f401 --- /dev/null +++ b/release_note.txt @@ -0,0 +1,3 @@ + + + Current revision number is unknown