diff --git a/cpp/._rvmain.cpp.swp b/cpp/._rvmain.cpp.swp index d7e524f..54a41f5 100644 Binary files a/cpp/._rvmain.cpp.swp and b/cpp/._rvmain.cpp.swp differ diff --git a/cpp/.gdb_history b/cpp/.gdb_history deleted file mode 100644 index 782c767..0000000 --- a/cpp/.gdb_history +++ /dev/null @@ -1 +0,0 @@ -target extended-remote localhost:3333 diff --git a/cpp/Make.rules b/cpp/Make.rules index 2bd12e9..c2f83f2 100644 --- a/cpp/Make.rules +++ b/cpp/Make.rules @@ -22,7 +22,7 @@ CFLAGS+= -g LDFLAGS+=-nostdlib -LDFLAGS+=-Wl,-Ttext=0x00000000 +LDFLAGS+=-Wl,-Ttext=0x80000000 # see: https://github.com/riscv/riscv-gcc/issues/120 #LDFLAGS+=-Wl,--no-relax diff --git a/cpp/Makefile b/cpp/Makefile index 1456d22..e677ff3 100644 --- a/cpp/Makefile +++ b/cpp/Makefile @@ -2,19 +2,16 @@ TOP=./ include $(TOP)/Make.rules LDLIBS= -#CFLAGS+=-O0 -g -# CFLAGS+=-Og -ggdb3 -CFLAGS+=-O0 -ggdb3 +CFLAGS+=-O0 -g LDFLAGS+=-Wl,--no-relax -LDFLAGS+=-Wl,-Ttext=0x80000000,-Tdata=0x80010000 -# LDFLAGS+=-T murax_128k_ram.ld +LDFLAGS+=-Wl,-Tdata=0x10000 PROGS=prog prog.bin prog.lst all:: $(PROGS) -prog: _crt0.o _rvmain.o myfunc.o +prog: _crt0.o _rvmain.o myfunc.o myfuncStruct.o myfuncStructOOP.o myfuncOOP.o $(LINK.cc) -o $@ $^ $(LDLIBS) $(SIZE) -A -x $@ diff --git a/cpp/_crt0.S b/cpp/_crt0.S index 8a7544f..780eb24 100644 --- a/cpp/_crt0.S +++ b/cpp/_crt0.S @@ -8,13 +8,14 @@ _start: .option norelax la gp, __global_pointer$ .option pop - - li sp, 0x800ffff0 +j loop + li sp, 0x80020000 # Clear the bss segment la a0, __bss_start la a1, __BSS_END__ -j finish_bss + + j finish_bss clear_bss: bgeu a0, a1, finish_bss sb x0, 0(a0) @@ -23,7 +24,7 @@ clear_bss: finish_bss: nop //! - +loop: call main nop //! diff --git a/cpp/_crt0.o b/cpp/_crt0.o index 1b07a3d..deda9c8 100644 Binary files a/cpp/_crt0.o and b/cpp/_crt0.o differ diff --git a/cpp/_rv-diss b/cpp/_rv-diss new file mode 100644 index 0000000..9a22230 --- /dev/null +++ b/cpp/_rv-diss @@ -0,0 +1 @@ +riscv64-unknown-elf-objdump -S --disassemble prog > prog.dis diff --git a/cpp/_rv-readelf b/cpp/_rv-readelf new file mode 100644 index 0000000..940c525 --- /dev/null +++ b/cpp/_rv-readelf @@ -0,0 +1 @@ +readelf -S -W prog diff --git a/cpp/_rvmain.cpp b/cpp/_rvmain.cpp index e64ff27..ae336a6 100644 --- a/cpp/_rvmain.cpp +++ b/cpp/_rvmain.cpp @@ -1,19 +1,25 @@ #include -int strlen(char *s) -{ - char *p = s; - while (*p != '\0') - p++; - return p - s; +int strlen(char *s) { + char *p = s; + while (*p != '\0') + p++; + return p - s; +} + +char * ptr7 = "Vladyslav"; +int mojstlen(){ +char * s = "Vladyslav"; + + + uint8_t wynik =0; + wynik = strlen (s); } void strcpy(char *s, char *t) { while (*s++ = *t++); } - - #define ALLOCSIZE 10000 static char allocbuf[ALLOCSIZE]; @@ -34,16 +40,129 @@ char *alloc(int n) return 0; } -int main() { +// def. model danych + +//pre processor +#define LEN (8+2)*10 + +struct model { + char * str; + uint32_t len ; +}; - struct key{ - char *word; - int8_t count; - } keytab[10]; +//alg +// prosta implementacji func. z bibl. std. strok przy uzyciu gpt3.5 +// - struct key * Ptr = (struct key *) alloc(100); - asm ("nop"); - return 1; +#define NULL ((void*) 0) + +// +// Funkcja pomocnicza do sprawdzania, czy znak jest wśród delimiterów +bool is_delim(char c, const char *delims) { + while (*delims) { + if (c == *delims) { + return true; + } + delims++; + } + return false; } +// Najprostsza implementacja funkcji strtok +char *simple_strtok(char *str, const char *delims) { + static char *static_str = (char *) NULL; // Przechowuje wskaźnik do bieżącej pozycji w ciągu + + // Jeśli przekazano nowy ciąg, zaktualizuj static_str + if (str == NULL) { + return (char *) NULL; // str nie wskazuje na zdanie !!! + } + static_str = str; + + // " .,mpabi" + // ^ + // Pomiń początkowe delimitery + while (*static_str && is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli doszliśmy do końca ciągu, zwróć NULL + if (*static_str == '\0') { + return (char *) NULL; + } + + // Zapisz początek tokenu + char *token_start = static_str; + + // Znajdź koniec tokenu + while (*static_str && !is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli znaleziono delimitery, zamień je na '\0' i zaktualizuj static_str + if (*static_str) { + *static_str = '\0'; + static_str++; + } + + // Zwróć początek tokenu + return token_start; +} + + +char buf[100]; +struct model * p = (struct model *) buf; //p[1] +////func alg +//in: ptr to date +//return: count of words +int alg (const char * ptr) { + + char bufer[ALLOCSIZE]; + strcpy(bufer, (char *)ptr); + + const char *delims = " ,.!?:;\n\t"; + + int8_t count = 0; + + char *token = simple_strtok(bufer, delims); + + while (token != (char *)NULL) { + + p[count].str = token; + p[count].len = strlen(token); + + token = simple_strtok((char *)NULL, delims); + count++; + } + + return count; +} + +/* +struct model { + char * str; + uint32_t len ; +} tab [10] ; +*/ + +int main() { + + char *str = "If wantered relation no surprise of all"; + +/* + struct model *ptr = (struct model *) alloc(LEN); + if (ptr != (struct model *)NULL) { + ptr->str = alloc(strlen((char *)str) + 1); + if (ptr->str != (char *)NULL) { + strcpy (ptr->str, (char *)str); + ptr->len = strlen(ptr->str); + + int8_t count = alg(ptr->str); + } + } + */ + alg(str); + asm ("nop"); + + return 1; +} diff --git a/cpp/_rvmain.cpp.save b/cpp/_rvmain.cpp.save new file mode 100644 index 0000000..b986dde --- /dev/null +++ b/cpp/_rvmain.cpp.save @@ -0,0 +1,142 @@ +#include + +int strlen(char *s) { + char *p = s; + while (*p != '\0') + p++; + return p - s; +} + +void strcpy(char *s, char *t) +{ + while (*s++ = *t++); +} +#define ALLOCSIZE 10000 + +static char allocbuf[ALLOCSIZE]; +static char *allocp = allocbuf; + +char *alloc(int n) +{ + + if (n % 4 != 0) { + n += 4 - (n % 4); + } + + + if (allocbuf + ALLOCSIZE - allocp >= n) { + allocp += n; + return allocp - n; + } else + return 0; +} + +// def. model danych + +//pre processor +#define LEN (8+2)*10 + +struct model { + char * str; + uint32_t len ; +}; + + +//alg +// prosta implementacji func. z bibl. std. strok przy uzyciu gpt3.5 +// + +#define NULL ((void*) 0) + +// +// Funkcja pomocnicza do sprawdzania, czy znak jest wśród delimiterów +bool is_delim(char c, const char *delims) { + while (*delims) { + if (c == *delims) { + return true; + } + delims++; + } + return false; +} + +// Najprostsza implementacja funkcji strtok +char *simple_strtok(char *str, const char *delims) { + static char *static_str = (char *) NULL; // Przechowuje wskaźnik do bieżącej pozycji w ciągu + + // Jeśli przekazano nowy ciąg, zaktualizuj static_str + if (str != NULL) { + static_str = str; + } + + // Jeśli static_str jest NULL, zwróć NULL + if (static_str == NULL) { + return (char *) NULL; + } + + // Pomiń początkowe delimitery + while (*static_str && is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli doszliśmy do końca ciągu, zwróć NULL + if (*static_str == '\0') { + return (char *) NULL; + } + + // Zapisz początek tokenu + char *token_start = static_str; + + // Znajdź koniec tokenu + while (*static_str && !is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli znaleziono delimitery, zamień je na '\0' i zaktualizuj static_str + if (*static_str) { + *static_str = '\0'; + static_str++; + } + + // Zwróć początek tokenu + return token_start; +} + +////func alg +//in: ptr to date +//return: count of words +int alg (const char * ptr) { + + char bufer[ALLOCSIZE]; + strcpy(bufer, (char *)ptr); + + const char *delims = " ,.!?:;\n\t"; + + int8_t count = 0; + + char *token = simple_strtok(bufer, delims); + while (token != (char *)NULL) { + count++; + token = simple_strtok((char *)NULL, delims); + } + return count; +} + + +int main() { + + const char *str = "If wantered relation no surprise of all"; + + struct model *ptr = (struct model *) alloc(LEN); + if (ptr != (struct model *) NULL) { + ptr->str = alloc(strlen((char *)str) + 1); + if (ptr->str != (char *)NULL) { + strcpy (ptr->str, (char *)str); + ptr->len = strlen(ptr->str); + + int8_t count = alg(ptr->str); + } + } + + return 1; +} diff --git a/cpp/_rvmain.o b/cpp/_rvmain.o index 65d1111..1b5bab1 100644 Binary files a/cpp/_rvmain.o and b/cpp/_rvmain.o differ diff --git a/cpp/myfunc.o b/cpp/myfunc.o index 8010b59..7d5b1b7 100644 Binary files a/cpp/myfunc.o and b/cpp/myfunc.o differ diff --git a/cpp/myfuncOOP.cpp b/cpp/myfuncOOP.cpp new file mode 100644 index 0000000..02e929d --- /dev/null +++ b/cpp/myfuncOOP.cpp @@ -0,0 +1,38 @@ +#include "myfuncOOP.hpp" + +MyfuncOOP::MyfuncOOP(const char* alfabet, const char* slowo, uint8_t* wynik) + : alfabet(alfabet), slowo(slowo), wynik(wynik) { +} + +void MyfuncOOP::countCharacters() { + int alfabet_length = myStrlen(alfabet); + + for (int i = 0; i < alfabet_length; ++i) { + wynik[i] = 0; // Initialize counts to zero + } + + for (int i = 0; i < alfabet_length; ++i) { + for (int j = 0; slowo[j] != '\0'; ++j) { + if (alfabet[i] == slowo[j]) { + wynik[i]++; + } + } + } +} + +const uint8_t* MyfuncOOP::getResults() const { + return wynik; +} + +int MyfuncOOP::myStrlen(const char* str) { + int length = 0; + while (str[length] != '\0') { + ++length; + } + return length; +} + + +// MyfuncOOP zliczacz(alfabet, slowo, wynik); +// zliczacz.countCharacters(); +// const uint8_t* results = zliczacz.getResults(); \ No newline at end of file diff --git a/cpp/myfuncOOP.hpp b/cpp/myfuncOOP.hpp new file mode 100644 index 0000000..277e918 --- /dev/null +++ b/cpp/myfuncOOP.hpp @@ -0,0 +1,22 @@ +#ifndef MYFUNC_OOP_HPP +#define MYFUNC_OOP_HPP + +#include + +class MyfuncOOP { +public: + MyfuncOOP(const char* alfabet, const char* slowo, uint8_t* wynik); + + void countCharacters(); + + const uint8_t* getResults() const; + +private: + const char* alfabet; + const char* slowo; + uint8_t* wynik; + + static int myStrlen(const char* str); +}; + +#endif // MYFUNC_OOP_HPP diff --git a/cpp/myfuncOOP.o b/cpp/myfuncOOP.o new file mode 100644 index 0000000..ef3c608 Binary files /dev/null and b/cpp/myfuncOOP.o differ diff --git a/cpp/myfuncStruct.cpp b/cpp/myfuncStruct.cpp new file mode 100644 index 0000000..47e307f --- /dev/null +++ b/cpp/myfuncStruct.cpp @@ -0,0 +1,29 @@ +#include "myfuncStruct.h" + +// Static function for string length calculation +static int my_strlen(const char *str) { + int length = 0; + while (str[length] != '\0') { + length++; + } + return length; +} + +// Function to count occurrences of each character in 'alfabet' within 'slowo' +void count_charactersStruct(ZliczaczStruct* zliczacz) { + int alfabet_length = my_strlen(zliczacz->alfabet); + + // Initialize the result array to zero + for (int i = 0; i < alfabet_length; ++i) { + zliczacz->wynik[i] = 0; + } + + // Count occurrences + for (int i = 0; i < alfabet_length; ++i) { + for (int j = 0; zliczacz->slowo[j] != '\0'; ++j) { + if (zliczacz->alfabet[i] == zliczacz->slowo[j]) { + zliczacz->wynik[i]++; + } + } + } +} diff --git a/cpp/myfuncStruct.h b/cpp/myfuncStruct.h new file mode 100644 index 0000000..2671140 --- /dev/null +++ b/cpp/myfuncStruct.h @@ -0,0 +1,15 @@ +#ifndef MYFUNCSTRUCT_H +#define MYFUNCSTRUCT_H + +#include + +typedef struct { + const char* alfabet; + const char* slowo; + uint8_t* wynik; // Pointer to an array for results +} ZliczaczStruct; + +// Function declaration for counting character occurrences +void count_charactersStruct(ZliczaczStruct* zliczacz); + +#endif // MYFUNCSTRUCT_H diff --git a/cpp/myfuncStruct.o b/cpp/myfuncStruct.o new file mode 100644 index 0000000..202af20 Binary files /dev/null and b/cpp/myfuncStruct.o differ diff --git a/cpp/myfuncStructOOP.cpp b/cpp/myfuncStructOOP.cpp new file mode 100644 index 0000000..8138dc3 --- /dev/null +++ b/cpp/myfuncStructOOP.cpp @@ -0,0 +1,44 @@ +#include "myfuncStructOOP.h" + +// Static function for string length calculation +static int my_strlen(const char *str) { + int length = 0; + while (str[length] != '\0') { + length++; + } + return length; +} + +// 'Method' to count occurrences of each character +static void count_charactersStructOOP(ZliczaczStructOOP* zliczacz) { + int alfabet_length = my_strlen(zliczacz->alfabet); + + // Initialize the result array to zero + for (int i = 0; i < alfabet_length; ++i) { + zliczacz->wynik[i] = 0; + } + + // Count occurrences + for (int i = 0; i < alfabet_length; ++i) { + for (int j = 0; zliczacz->slowo[j] != '\0'; ++j) { + if (zliczacz->alfabet[i] == zliczacz->slowo[j]) { + zliczacz->wynik[i]++; + } + } + } +} + +// Constructor-like function to initialize a ZliczaczStructOOP +void initializeZliczaczStructOOP(ZliczaczStructOOP* zliczacz, const char* alfabet, const char* slowo, uint8_t* wynik) { + zliczacz->alfabet = alfabet; + zliczacz->slowo = slowo; + zliczacz->wynik = wynik; + zliczacz->count_characters = count_charactersStructOOP; +} + +// #include "myfuncStructOOP.h" + +// ZliczaczStructOOP zliczacz; +// initializeZliczaczStructOOP(&zliczacz, alfabet, slowo, wynik); + +// zliczacz.count_characters(&zliczacz); diff --git a/cpp/myfuncStructOOP.h b/cpp/myfuncStructOOP.h new file mode 100644 index 0000000..dd3e7e4 --- /dev/null +++ b/cpp/myfuncStructOOP.h @@ -0,0 +1,21 @@ +#ifndef MYFUNCSTRUCTOOP_H +#define MYFUNCSTRUCTOOP_H + +#include + +typedef struct ZliczaczStructOOP ZliczaczStructOOP; + +struct ZliczaczStructOOP { + // Data members + const char* alfabet; + const char* slowo; + uint8_t* wynik; // Pointer to an array for results + + // Function pointers, acting as 'methods' + void (*count_characters)(ZliczaczStructOOP*); +}; + +void initializeZliczaczStructOOP(ZliczaczStructOOP* zliczacz, const char* alfabet, const char* slowo, uint8_t* wynik); + + +#endif // MYFUNCSTRUCTOOP_H diff --git a/cpp/myfuncStructOOP.o b/cpp/myfuncStructOOP.o new file mode 100644 index 0000000..897d9ae Binary files /dev/null and b/cpp/myfuncStructOOP.o differ diff --git a/cpp/prog b/cpp/prog index f5196c2..f36a7fc 100755 Binary files a/cpp/prog and b/cpp/prog differ diff --git a/cpp/prog.bin b/cpp/prog.bin index f8861b6..77b28c2 100755 Binary files a/cpp/prog.bin and b/cpp/prog.bin differ diff --git a/cpp/prog.lst b/cpp/prog.lst index ea20363..0572cd9 100644 --- a/cpp/prog.lst +++ b/cpp/prog.lst @@ -5,14 +5,14 @@ prog: file format elf32-littleriscv Disassembly of section .text: 80000000 <_start>: -80000000: 00011197 auipc x3,0x11 -80000004: 82018193 addi x3,x3,-2016 # 80010820 <__global_pointer$> -80000008: 80100137 lui x2,0x80100 -8000000c: ff010113 addi x2,x2,-16 # 800ffff0 <__BSS_END__+0xed8bc> -80000010: 00010517 auipc x10,0x10 -80000014: 01450513 addi x10,x10,20 # 80010024 <_ZL8allocbuf> -80000018: 00012597 auipc x11,0x12 -8000001c: 71c58593 addi x11,x11,1820 # 80012734 <__BSS_END__> +80000000: 80011197 auipc x3,0x80011 +80000004: 82018193 addi x3,x3,-2016 # 10820 <__global_pointer$> +80000008: 0300006f jal x0,80000038 +8000000c: 80020137 lui x2,0x80020 +80000010: 80010517 auipc x10,0x80010 +80000014: 01c50513 addi x10,x10,28 # 1002c +80000018: 80012597 auipc x11,0x80012 +8000001c: 78c58593 addi x11,x11,1932 # 127a4 <__BSS_END__> 80000020: 0140006f jal x0,80000034 80000024 : @@ -23,13 +23,15 @@ Disassembly of section .text: 80000034 : 80000034: 00000013 addi x0,x0,0 + +80000038 : 80000038: 00000097 auipc x1,0x0 -8000003c: 168080e7 jalr x1,360(x1) # 800001a0
+8000003c: 498080e7 jalr x1,1176(x1) # 800004d0
80000040: 00000013 addi x0,x0,0 80000044: 00100073 ebreak 80000048 <_Z6strlenPc>: -80000048: fd010113 addi x2,x2,-48 +80000048: fd010113 addi x2,x2,-48 # 8001ffd0 8000004c: 02812623 sw x8,44(x2) 80000050: 03010413 addi x8,x2,48 80000054: fca42e23 sw x10,-36(x8) @@ -50,332 +52,1172 @@ Disassembly of section .text: 80000090: 03010113 addi x2,x2,48 80000094: 00008067 jalr x0,0(x1) -80000098 <_Z6strcpyPcS_>: +80000098 <_Z8mojstlenv>: 80000098: fe010113 addi x2,x2,-32 -8000009c: 00812e23 sw x8,28(x2) -800000a0: 02010413 addi x8,x2,32 -800000a4: fea42623 sw x10,-20(x8) -800000a8: feb42423 sw x11,-24(x8) -800000ac: 00000013 addi x0,x0,0 -800000b0: fe842783 lw x15,-24(x8) -800000b4: 00178713 addi x14,x15,1 -800000b8: fee42423 sw x14,-24(x8) -800000bc: 0007c703 lbu x14,0(x15) -800000c0: fec42783 lw x15,-20(x8) -800000c4: 00178693 addi x13,x15,1 -800000c8: fed42623 sw x13,-20(x8) -800000cc: 00e78023 sb x14,0(x15) -800000d0: 0007c783 lbu x15,0(x15) -800000d4: 00f037b3 sltu x15,x0,x15 -800000d8: 0ff7f793 andi x15,x15,255 -800000dc: fc079ae3 bne x15,x0,800000b0 <_Z6strcpyPcS_+0x18> -800000e0: 00000013 addi x0,x0,0 -800000e4: 00000013 addi x0,x0,0 -800000e8: 01c12403 lw x8,28(x2) -800000ec: 02010113 addi x2,x2,32 -800000f0: 00008067 jalr x0,0(x1) +8000009c: 00112e23 sw x1,28(x2) +800000a0: 00812c23 sw x8,24(x2) +800000a4: 02010413 addi x8,x2,32 +800000a8: 800017b7 lui x15,0x80001 +800000ac: b6478793 addi x15,x15,-1180 # 80000b64 +800000b0: fef42623 sw x15,-20(x8) +800000b4: fe0405a3 sb x0,-21(x8) +800000b8: fec42503 lw x10,-20(x8) +800000bc: 00000097 auipc x1,0x0 +800000c0: f8c080e7 jalr x1,-116(x1) # 80000048 <_Z6strlenPc> +800000c4: 00050793 addi x15,x10,0 +800000c8: fef405a3 sb x15,-21(x8) +800000cc: 00000013 addi x0,x0,0 +800000d0: 00078513 addi x10,x15,0 +800000d4: 01c12083 lw x1,28(x2) +800000d8: 01812403 lw x8,24(x2) +800000dc: 02010113 addi x2,x2,32 +800000e0: 00008067 jalr x0,0(x1) -800000f4 <_Z5alloci>: -800000f4: fe010113 addi x2,x2,-32 -800000f8: 00812e23 sw x8,28(x2) -800000fc: 02010413 addi x8,x2,32 -80000100: fea42623 sw x10,-20(x8) -80000104: fec42783 lw x15,-20(x8) -80000108: 0037f793 andi x15,x15,3 -8000010c: 02078a63 beq x15,x0,80000140 <_Z5alloci+0x4c> -80000110: fec42703 lw x14,-20(x8) -80000114: 41f75793 srai x15,x14,0x1f -80000118: 01e7d793 srli x15,x15,0x1e -8000011c: 00f70733 add x14,x14,x15 -80000120: 00377713 andi x14,x14,3 -80000124: 40f707b3 sub x15,x14,x15 -80000128: 00078713 addi x14,x15,0 -8000012c: 00400793 addi x15,x0,4 -80000130: 40e787b3 sub x15,x15,x14 -80000134: fec42703 lw x14,-20(x8) -80000138: 00f707b3 add x15,x14,x15 -8000013c: fef42623 sw x15,-20(x8) -80000140: 800127b7 lui x15,0x80012 -80000144: 73478713 addi x14,x15,1844 # 80012734 <__BSS_END__> -80000148: 800107b7 lui x15,0x80010 -8000014c: 0207a783 lw x15,32(x15) # 80010020 <_ZL6allocp> -80000150: 40f707b3 sub x15,x14,x15 -80000154: fec42703 lw x14,-20(x8) -80000158: 02e7ca63 blt x15,x14,8000018c <_Z5alloci+0x98> -8000015c: 800107b7 lui x15,0x80010 -80000160: 0207a703 lw x14,32(x15) # 80010020 <_ZL6allocp> -80000164: fec42783 lw x15,-20(x8) +800000e4 <_Z6strcpyPcS_>: +800000e4: fe010113 addi x2,x2,-32 +800000e8: 00812e23 sw x8,28(x2) +800000ec: 02010413 addi x8,x2,32 +800000f0: fea42623 sw x10,-20(x8) +800000f4: feb42423 sw x11,-24(x8) +800000f8: 00000013 addi x0,x0,0 +800000fc: fe842783 lw x15,-24(x8) +80000100: 00178713 addi x14,x15,1 +80000104: fee42423 sw x14,-24(x8) +80000108: 0007c703 lbu x14,0(x15) +8000010c: fec42783 lw x15,-20(x8) +80000110: 00178693 addi x13,x15,1 +80000114: fed42623 sw x13,-20(x8) +80000118: 00e78023 sb x14,0(x15) +8000011c: 0007c783 lbu x15,0(x15) +80000120: 00f037b3 sltu x15,x0,x15 +80000124: 0ff7f793 andi x15,x15,255 +80000128: fc079ae3 bne x15,x0,800000fc <_Z6strcpyPcS_+0x18> +8000012c: 00000013 addi x0,x0,0 +80000130: 00000013 addi x0,x0,0 +80000134: 01c12403 lw x8,28(x2) +80000138: 02010113 addi x2,x2,32 +8000013c: 00008067 jalr x0,0(x1) + +80000140 <_Z5alloci>: +80000140: fe010113 addi x2,x2,-32 +80000144: 00812e23 sw x8,28(x2) +80000148: 02010413 addi x8,x2,32 +8000014c: fea42623 sw x10,-20(x8) +80000150: fec42783 lw x15,-20(x8) +80000154: 0037f793 andi x15,x15,3 +80000158: 02078a63 beq x15,x0,8000018c <_Z5alloci+0x4c> +8000015c: fec42703 lw x14,-20(x8) +80000160: 41f75793 srai x15,x14,0x1f +80000164: 01e7d793 srli x15,x15,0x1e 80000168: 00f70733 add x14,x14,x15 -8000016c: 800107b7 lui x15,0x80010 -80000170: 02e7a023 sw x14,32(x15) # 80010020 <_ZL6allocp> -80000174: 800107b7 lui x15,0x80010 -80000178: 0207a703 lw x14,32(x15) # 80010020 <_ZL6allocp> -8000017c: fec42783 lw x15,-20(x8) -80000180: 40f007b3 sub x15,x0,x15 +8000016c: 00377713 andi x14,x14,3 +80000170: 40f707b3 sub x15,x14,x15 +80000174: 00078713 addi x14,x15,0 +80000178: 00400793 addi x15,x0,4 +8000017c: 40e787b3 sub x15,x15,x14 +80000180: fec42703 lw x14,-20(x8) 80000184: 00f707b3 add x15,x14,x15 -80000188: 0080006f jal x0,80000190 <_Z5alloci+0x9c> -8000018c: 00000793 addi x15,x0,0 -80000190: 00078513 addi x10,x15,0 -80000194: 01c12403 lw x8,28(x2) -80000198: 02010113 addi x2,x2,32 -8000019c: 00008067 jalr x0,0(x1) +80000188: fef42623 sw x15,-20(x8) +8000018c: 000127b7 lui x15,0x12 +80000190: 7a078713 addi x14,x15,1952 # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +80000194: 000107b7 lui x15,0x10 +80000198: 0247a783 lw x15,36(x15) # 10024 <_ZL6allocp> +8000019c: 40f707b3 sub x15,x14,x15 +800001a0: fec42703 lw x14,-20(x8) +800001a4: 02e7ca63 blt x15,x14,800001d8 <_Z5alloci+0x98> +800001a8: 000107b7 lui x15,0x10 +800001ac: 0247a703 lw x14,36(x15) # 10024 <_ZL6allocp> +800001b0: fec42783 lw x15,-20(x8) +800001b4: 00f70733 add x14,x14,x15 +800001b8: 000107b7 lui x15,0x10 +800001bc: 02e7a223 sw x14,36(x15) # 10024 <_ZL6allocp> +800001c0: 000107b7 lui x15,0x10 +800001c4: 0247a703 lw x14,36(x15) # 10024 <_ZL6allocp> +800001c8: fec42783 lw x15,-20(x8) +800001cc: 40f007b3 sub x15,x0,x15 +800001d0: 00f707b3 add x15,x14,x15 +800001d4: 0080006f jal x0,800001dc <_Z5alloci+0x9c> +800001d8: 00000793 addi x15,x0,0 +800001dc: 00078513 addi x10,x15,0 +800001e0: 01c12403 lw x8,28(x2) +800001e4: 02010113 addi x2,x2,32 +800001e8: 00008067 jalr x0,0(x1) -800001a0
: -800001a0: f9010113 addi x2,x2,-112 -800001a4: 06112623 sw x1,108(x2) -800001a8: 06812423 sw x8,104(x2) -800001ac: 07010413 addi x8,x2,112 -800001b0: 06400513 addi x10,x0,100 -800001b4: 00000097 auipc x1,0x0 -800001b8: f40080e7 jalr x1,-192(x1) # 800000f4 <_Z5alloci> -800001bc: fea42623 sw x10,-20(x8) -800001c0: 00000013 addi x0,x0,0 -800001c4: 00100793 addi x15,x0,1 -800001c8: 00078513 addi x10,x15,0 -800001cc: 06c12083 lw x1,108(x2) -800001d0: 06812403 lw x8,104(x2) -800001d4: 07010113 addi x2,x2,112 -800001d8: 00008067 jalr x0,0(x1) - -800001dc <_ZL9my_strlenPKc>: -800001dc: fd010113 addi x2,x2,-48 -800001e0: 02812623 sw x8,44(x2) -800001e4: 03010413 addi x8,x2,48 -800001e8: fca42e23 sw x10,-36(x8) -800001ec: fe042623 sw x0,-20(x8) -800001f0: 0100006f jal x0,80000200 <_ZL9my_strlenPKc+0x24> -800001f4: fec42783 lw x15,-20(x8) -800001f8: 00178793 addi x15,x15,1 -800001fc: fef42623 sw x15,-20(x8) -80000200: fec42783 lw x15,-20(x8) -80000204: fdc42703 lw x14,-36(x8) -80000208: 00f707b3 add x15,x14,x15 +800001ec <_Z8is_delimcPKc>: +800001ec: fe010113 addi x2,x2,-32 +800001f0: 00812e23 sw x8,28(x2) +800001f4: 02010413 addi x8,x2,32 +800001f8: 00050793 addi x15,x10,0 +800001fc: feb42423 sw x11,-24(x8) +80000200: fef407a3 sb x15,-17(x8) +80000204: 0280006f jal x0,8000022c <_Z8is_delimcPKc+0x40> +80000208: fe842783 lw x15,-24(x8) 8000020c: 0007c783 lbu x15,0(x15) -80000210: fe0792e3 bne x15,x0,800001f4 <_ZL9my_strlenPKc+0x18> -80000214: fec42783 lw x15,-20(x8) -80000218: 00078513 addi x10,x15,0 -8000021c: 02c12403 lw x8,44(x2) -80000220: 03010113 addi x2,x2,48 -80000224: 00008067 jalr x0,0(x1) +80000210: fef44703 lbu x14,-17(x8) +80000214: 00f71663 bne x14,x15,80000220 <_Z8is_delimcPKc+0x34> +80000218: 00100793 addi x15,x0,1 +8000021c: 0200006f jal x0,8000023c <_Z8is_delimcPKc+0x50> +80000220: fe842783 lw x15,-24(x8) +80000224: 00178793 addi x15,x15,1 +80000228: fef42423 sw x15,-24(x8) +8000022c: fe842783 lw x15,-24(x8) +80000230: 0007c783 lbu x15,0(x15) +80000234: fc079ae3 bne x15,x0,80000208 <_Z8is_delimcPKc+0x1c> +80000238: 00000793 addi x15,x0,0 +8000023c: 00078513 addi x10,x15,0 +80000240: 01c12403 lw x8,28(x2) +80000244: 02010113 addi x2,x2,32 +80000248: 00008067 jalr x0,0(x1) -80000228 <_Z16count_charactersPKcS0_Ph>: -80000228: fd010113 addi x2,x2,-48 -8000022c: 02112623 sw x1,44(x2) -80000230: 02812423 sw x8,40(x2) -80000234: 03010413 addi x8,x2,48 -80000238: fca42e23 sw x10,-36(x8) -8000023c: fcb42c23 sw x11,-40(x8) -80000240: fcc42a23 sw x12,-44(x8) -80000244: fdc42503 lw x10,-36(x8) -80000248: 00000097 auipc x1,0x0 -8000024c: f94080e7 jalr x1,-108(x1) # 800001dc <_ZL9my_strlenPKc> -80000250: fea42023 sw x10,-32(x8) -80000254: fe042623 sw x0,-20(x8) -80000258: 0200006f jal x0,80000278 <_Z16count_charactersPKcS0_Ph+0x50> -8000025c: fec42783 lw x15,-20(x8) -80000260: fd442703 lw x14,-44(x8) -80000264: 00f707b3 add x15,x14,x15 -80000268: 00078023 sb x0,0(x15) -8000026c: fec42783 lw x15,-20(x8) -80000270: 00178793 addi x15,x15,1 -80000274: fef42623 sw x15,-20(x8) -80000278: fec42703 lw x14,-20(x8) -8000027c: fe042783 lw x15,-32(x8) -80000280: fcf74ee3 blt x14,x15,8000025c <_Z16count_charactersPKcS0_Ph+0x34> -80000284: fe042423 sw x0,-24(x8) -80000288: 0780006f jal x0,80000300 <_Z16count_charactersPKcS0_Ph+0xd8> -8000028c: fe042223 sw x0,-28(x8) -80000290: 0500006f jal x0,800002e0 <_Z16count_charactersPKcS0_Ph+0xb8> -80000294: fe842783 lw x15,-24(x8) -80000298: fdc42703 lw x14,-36(x8) -8000029c: 00f707b3 add x15,x14,x15 -800002a0: 0007c703 lbu x14,0(x15) -800002a4: fe442783 lw x15,-28(x8) -800002a8: fd842683 lw x13,-40(x8) -800002ac: 00f687b3 add x15,x13,x15 +8000024c <_Z13simple_strtokPcPKc>: +8000024c: fd010113 addi x2,x2,-48 +80000250: 02112623 sw x1,44(x2) +80000254: 02812423 sw x8,40(x2) +80000258: 03010413 addi x8,x2,48 +8000025c: fca42e23 sw x10,-36(x8) +80000260: fcb42c23 sw x11,-40(x8) +80000264: fdc42783 lw x15,-36(x8) +80000268: 00079663 bne x15,x0,80000274 <_Z13simple_strtokPcPKc+0x28> +8000026c: 00000793 addi x15,x0,0 +80000270: 1280006f jal x0,80000398 <_Z13simple_strtokPcPKc+0x14c> +80000274: 000127b7 lui x15,0x12 +80000278: fdc42703 lw x14,-36(x8) +8000027c: 7ae7a023 sw x14,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +80000280: 0180006f jal x0,80000298 <_Z13simple_strtokPcPKc+0x4c> +80000284: 000127b7 lui x15,0x12 +80000288: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +8000028c: 00178713 addi x14,x15,1 +80000290: 000127b7 lui x15,0x12 +80000294: 7ae7a023 sw x14,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +80000298: 000127b7 lui x15,0x12 +8000029c: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +800002a0: 0007c783 lbu x15,0(x15) +800002a4: 02078863 beq x15,x0,800002d4 <_Z13simple_strtokPcPKc+0x88> +800002a8: 000127b7 lui x15,0x12 +800002ac: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> 800002b0: 0007c783 lbu x15,0(x15) -800002b4: 02f71063 bne x14,x15,800002d4 <_Z16count_charactersPKcS0_Ph+0xac> -800002b8: fe842783 lw x15,-24(x8) -800002bc: fd442703 lw x14,-44(x8) -800002c0: 00f707b3 add x15,x14,x15 -800002c4: 0007c703 lbu x14,0(x15) -800002c8: 00170713 addi x14,x14,1 -800002cc: 0ff77713 andi x14,x14,255 -800002d0: 00e78023 sb x14,0(x15) -800002d4: fe442783 lw x15,-28(x8) -800002d8: 00178793 addi x15,x15,1 -800002dc: fef42223 sw x15,-28(x8) -800002e0: fe442783 lw x15,-28(x8) -800002e4: fd842703 lw x14,-40(x8) -800002e8: 00f707b3 add x15,x14,x15 -800002ec: 0007c783 lbu x15,0(x15) -800002f0: fa0792e3 bne x15,x0,80000294 <_Z16count_charactersPKcS0_Ph+0x6c> -800002f4: fe842783 lw x15,-24(x8) -800002f8: 00178793 addi x15,x15,1 -800002fc: fef42423 sw x15,-24(x8) -80000300: fe842703 lw x14,-24(x8) -80000304: fe042783 lw x15,-32(x8) -80000308: f8f742e3 blt x14,x15,8000028c <_Z16count_charactersPKcS0_Ph+0x64> -8000030c: 00000013 addi x0,x0,0 -80000310: 00000013 addi x0,x0,0 -80000314: 02c12083 lw x1,44(x2) -80000318: 02812403 lw x8,40(x2) -8000031c: 03010113 addi x2,x2,48 -80000320: 00008067 jalr x0,0(x1) +800002b4: fd842583 lw x11,-40(x8) +800002b8: 00078513 addi x10,x15,0 +800002bc: 00000097 auipc x1,0x0 +800002c0: f30080e7 jalr x1,-208(x1) # 800001ec <_Z8is_delimcPKc> +800002c4: 00050793 addi x15,x10,0 +800002c8: 00078663 beq x15,x0,800002d4 <_Z13simple_strtokPcPKc+0x88> +800002cc: 00100793 addi x15,x0,1 +800002d0: 0080006f jal x0,800002d8 <_Z13simple_strtokPcPKc+0x8c> +800002d4: 00000793 addi x15,x0,0 +800002d8: fa0796e3 bne x15,x0,80000284 <_Z13simple_strtokPcPKc+0x38> +800002dc: 000127b7 lui x15,0x12 +800002e0: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +800002e4: 0007c783 lbu x15,0(x15) +800002e8: 00079663 bne x15,x0,800002f4 <_Z13simple_strtokPcPKc+0xa8> +800002ec: 00000793 addi x15,x0,0 +800002f0: 0a80006f jal x0,80000398 <_Z13simple_strtokPcPKc+0x14c> +800002f4: 000127b7 lui x15,0x12 +800002f8: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +800002fc: fef42623 sw x15,-20(x8) +80000300: 0180006f jal x0,80000318 <_Z13simple_strtokPcPKc+0xcc> +80000304: 000127b7 lui x15,0x12 +80000308: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +8000030c: 00178713 addi x14,x15,1 +80000310: 000127b7 lui x15,0x12 +80000314: 7ae7a023 sw x14,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +80000318: 000127b7 lui x15,0x12 +8000031c: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +80000320: 0007c783 lbu x15,0(x15) +80000324: 02078c63 beq x15,x0,8000035c <_Z13simple_strtokPcPKc+0x110> +80000328: 000127b7 lui x15,0x12 +8000032c: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +80000330: 0007c783 lbu x15,0(x15) +80000334: fd842583 lw x11,-40(x8) +80000338: 00078513 addi x10,x15,0 +8000033c: 00000097 auipc x1,0x0 +80000340: eb0080e7 jalr x1,-336(x1) # 800001ec <_Z8is_delimcPKc> +80000344: 00050793 addi x15,x10,0 +80000348: 0017c793 xori x15,x15,1 +8000034c: 0ff7f793 andi x15,x15,255 +80000350: 00078663 beq x15,x0,8000035c <_Z13simple_strtokPcPKc+0x110> +80000354: 00100793 addi x15,x0,1 +80000358: 0080006f jal x0,80000360 <_Z13simple_strtokPcPKc+0x114> +8000035c: 00000793 addi x15,x0,0 +80000360: fa0792e3 bne x15,x0,80000304 <_Z13simple_strtokPcPKc+0xb8> +80000364: 000127b7 lui x15,0x12 +80000368: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +8000036c: 0007c783 lbu x15,0(x15) +80000370: 02078263 beq x15,x0,80000394 <_Z13simple_strtokPcPKc+0x148> +80000374: 000127b7 lui x15,0x12 +80000378: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +8000037c: 00078023 sb x0,0(x15) +80000380: 000127b7 lui x15,0x12 +80000384: 7a07a783 lw x15,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +80000388: 00178713 addi x14,x15,1 +8000038c: 000127b7 lui x15,0x12 +80000390: 7ae7a023 sw x14,1952(x15) # 127a0 <_ZZ13simple_strtokPcPKcE10static_str> +80000394: fec42783 lw x15,-20(x8) +80000398: 00078513 addi x10,x15,0 +8000039c: 02c12083 lw x1,44(x2) +800003a0: 02812403 lw x8,40(x2) +800003a4: 03010113 addi x2,x2,48 +800003a8: 00008067 jalr x0,0(x1) + +800003ac <_Z3algPKc>: +800003ac: 8c010113 addi x2,x2,-1856 +800003b0: 72112e23 sw x1,1852(x2) +800003b4: 72812c23 sw x8,1848(x2) +800003b8: 74010413 addi x8,x2,1856 +800003bc: ffffe2b7 lui x5,0xffffe +800003c0: 00510133 add x2,x2,x5 +800003c4: ffffe7b7 lui x15,0xffffe +800003c8: ff078793 addi x15,x15,-16 # ffffdff0 +800003cc: 008787b3 add x15,x15,x8 +800003d0: 8ca7ae23 sw x10,-1828(x15) +800003d4: ffffe7b7 lui x15,0xffffe +800003d8: ff078793 addi x15,x15,-16 # ffffdff0 +800003dc: 008787b3 add x15,x15,x8 +800003e0: ffffe737 lui x14,0xffffe +800003e4: 8e470713 addi x14,x14,-1820 # ffffd8e4 +800003e8: ff070713 addi x14,x14,-16 +800003ec: 00870733 add x14,x14,x8 +800003f0: 8dc7a583 lw x11,-1828(x15) +800003f4: 00070513 addi x10,x14,0 +800003f8: 00000097 auipc x1,0x0 +800003fc: cec080e7 jalr x1,-788(x1) # 800000e4 <_Z6strcpyPcS_> +80000400: 800017b7 lui x15,0x80001 +80000404: b7078793 addi x15,x15,-1168 # 80000b70 +80000408: fef42223 sw x15,-28(x8) +8000040c: fe0407a3 sb x0,-17(x8) +80000410: ffffe7b7 lui x15,0xffffe +80000414: 8e478793 addi x15,x15,-1820 # ffffd8e4 +80000418: ff078793 addi x15,x15,-16 +8000041c: 008787b3 add x15,x15,x8 +80000420: fe442583 lw x11,-28(x8) +80000424: 00078513 addi x10,x15,0 +80000428: 00000097 auipc x1,0x0 +8000042c: e24080e7 jalr x1,-476(x1) # 8000024c <_Z13simple_strtokPcPKc> +80000430: fea42423 sw x10,-24(x8) +80000434: 0740006f jal x0,800004a8 <_Z3algPKc+0xfc> +80000438: 000107b7 lui x15,0x10 +8000043c: 0287a703 lw x14,40(x15) # 10028

+80000440: fef40783 lb x15,-17(x8) +80000444: 00379793 slli x15,x15,0x3 +80000448: 00f707b3 add x15,x14,x15 +8000044c: fe842703 lw x14,-24(x8) +80000450: 00e7a023 sw x14,0(x15) +80000454: fe842503 lw x10,-24(x8) +80000458: 00000097 auipc x1,0x0 +8000045c: bf0080e7 jalr x1,-1040(x1) # 80000048 <_Z6strlenPc> +80000460: 00050693 addi x13,x10,0 +80000464: 000107b7 lui x15,0x10 +80000468: 0287a703 lw x14,40(x15) # 10028

+8000046c: fef40783 lb x15,-17(x8) +80000470: 00379793 slli x15,x15,0x3 +80000474: 00f707b3 add x15,x14,x15 +80000478: 00068713 addi x14,x13,0 +8000047c: 00e7a223 sw x14,4(x15) +80000480: fe442583 lw x11,-28(x8) +80000484: 00000513 addi x10,x0,0 +80000488: 00000097 auipc x1,0x0 +8000048c: dc4080e7 jalr x1,-572(x1) # 8000024c <_Z13simple_strtokPcPKc> +80000490: fea42423 sw x10,-24(x8) +80000494: fef40783 lb x15,-17(x8) +80000498: 0ff7f793 andi x15,x15,255 +8000049c: 00178793 addi x15,x15,1 +800004a0: 0ff7f793 andi x15,x15,255 +800004a4: fef407a3 sb x15,-17(x8) +800004a8: fe842783 lw x15,-24(x8) +800004ac: f80796e3 bne x15,x0,80000438 <_Z3algPKc+0x8c> +800004b0: fef40783 lb x15,-17(x8) +800004b4: 00078513 addi x10,x15,0 +800004b8: 000022b7 lui x5,0x2 +800004bc: 00510133 add x2,x2,x5 +800004c0: 73c12083 lw x1,1852(x2) +800004c4: 73812403 lw x8,1848(x2) +800004c8: 74010113 addi x2,x2,1856 +800004cc: 00008067 jalr x0,0(x1) + +800004d0

: +800004d0: fe010113 addi x2,x2,-32 +800004d4: 00112e23 sw x1,28(x2) +800004d8: 00812c23 sw x8,24(x2) +800004dc: 02010413 addi x8,x2,32 +800004e0: 800017b7 lui x15,0x80001 +800004e4: b7c78793 addi x15,x15,-1156 # 80000b7c +800004e8: fef42623 sw x15,-20(x8) +800004ec: fec42503 lw x10,-20(x8) +800004f0: 00000097 auipc x1,0x0 +800004f4: ebc080e7 jalr x1,-324(x1) # 800003ac <_Z3algPKc> +800004f8: 00000013 addi x0,x0,0 +800004fc: 00100793 addi x15,x0,1 +80000500: 00078513 addi x10,x15,0 +80000504: 01c12083 lw x1,28(x2) +80000508: 01812403 lw x8,24(x2) +8000050c: 02010113 addi x2,x2,32 +80000510: 00008067 jalr x0,0(x1) + +80000514 <_ZL9my_strlenPKc>: +80000514: fd010113 addi x2,x2,-48 +80000518: 02812623 sw x8,44(x2) +8000051c: 03010413 addi x8,x2,48 +80000520: fca42e23 sw x10,-36(x8) +80000524: fe042623 sw x0,-20(x8) +80000528: 0100006f jal x0,80000538 <_ZL9my_strlenPKc+0x24> +8000052c: fec42783 lw x15,-20(x8) +80000530: 00178793 addi x15,x15,1 +80000534: fef42623 sw x15,-20(x8) +80000538: fec42783 lw x15,-20(x8) +8000053c: fdc42703 lw x14,-36(x8) +80000540: 00f707b3 add x15,x14,x15 +80000544: 0007c783 lbu x15,0(x15) +80000548: fe0792e3 bne x15,x0,8000052c <_ZL9my_strlenPKc+0x18> +8000054c: fec42783 lw x15,-20(x8) +80000550: 00078513 addi x10,x15,0 +80000554: 02c12403 lw x8,44(x2) +80000558: 03010113 addi x2,x2,48 +8000055c: 00008067 jalr x0,0(x1) + +80000560 <_Z16count_charactersPKcS0_Ph>: +80000560: fd010113 addi x2,x2,-48 +80000564: 02112623 sw x1,44(x2) +80000568: 02812423 sw x8,40(x2) +8000056c: 03010413 addi x8,x2,48 +80000570: fca42e23 sw x10,-36(x8) +80000574: fcb42c23 sw x11,-40(x8) +80000578: fcc42a23 sw x12,-44(x8) +8000057c: fdc42503 lw x10,-36(x8) +80000580: 00000097 auipc x1,0x0 +80000584: f94080e7 jalr x1,-108(x1) # 80000514 <_ZL9my_strlenPKc> +80000588: fea42023 sw x10,-32(x8) +8000058c: fe042623 sw x0,-20(x8) +80000590: 0200006f jal x0,800005b0 <_Z16count_charactersPKcS0_Ph+0x50> +80000594: fec42783 lw x15,-20(x8) +80000598: fd442703 lw x14,-44(x8) +8000059c: 00f707b3 add x15,x14,x15 +800005a0: 00078023 sb x0,0(x15) +800005a4: fec42783 lw x15,-20(x8) +800005a8: 00178793 addi x15,x15,1 +800005ac: fef42623 sw x15,-20(x8) +800005b0: fec42703 lw x14,-20(x8) +800005b4: fe042783 lw x15,-32(x8) +800005b8: fcf74ee3 blt x14,x15,80000594 <_Z16count_charactersPKcS0_Ph+0x34> +800005bc: fe042423 sw x0,-24(x8) +800005c0: 0780006f jal x0,80000638 <_Z16count_charactersPKcS0_Ph+0xd8> +800005c4: fe042223 sw x0,-28(x8) +800005c8: 0500006f jal x0,80000618 <_Z16count_charactersPKcS0_Ph+0xb8> +800005cc: fe842783 lw x15,-24(x8) +800005d0: fdc42703 lw x14,-36(x8) +800005d4: 00f707b3 add x15,x14,x15 +800005d8: 0007c703 lbu x14,0(x15) +800005dc: fe442783 lw x15,-28(x8) +800005e0: fd842683 lw x13,-40(x8) +800005e4: 00f687b3 add x15,x13,x15 +800005e8: 0007c783 lbu x15,0(x15) +800005ec: 02f71063 bne x14,x15,8000060c <_Z16count_charactersPKcS0_Ph+0xac> +800005f0: fe842783 lw x15,-24(x8) +800005f4: fd442703 lw x14,-44(x8) +800005f8: 00f707b3 add x15,x14,x15 +800005fc: 0007c703 lbu x14,0(x15) +80000600: 00170713 addi x14,x14,1 +80000604: 0ff77713 andi x14,x14,255 +80000608: 00e78023 sb x14,0(x15) +8000060c: fe442783 lw x15,-28(x8) +80000610: 00178793 addi x15,x15,1 +80000614: fef42223 sw x15,-28(x8) +80000618: fe442783 lw x15,-28(x8) +8000061c: fd842703 lw x14,-40(x8) +80000620: 00f707b3 add x15,x14,x15 +80000624: 0007c783 lbu x15,0(x15) +80000628: fa0792e3 bne x15,x0,800005cc <_Z16count_charactersPKcS0_Ph+0x6c> +8000062c: fe842783 lw x15,-24(x8) +80000630: 00178793 addi x15,x15,1 +80000634: fef42423 sw x15,-24(x8) +80000638: fe842703 lw x14,-24(x8) +8000063c: fe042783 lw x15,-32(x8) +80000640: f8f742e3 blt x14,x15,800005c4 <_Z16count_charactersPKcS0_Ph+0x64> +80000644: 00000013 addi x0,x0,0 +80000648: 00000013 addi x0,x0,0 +8000064c: 02c12083 lw x1,44(x2) +80000650: 02812403 lw x8,40(x2) +80000654: 03010113 addi x2,x2,48 +80000658: 00008067 jalr x0,0(x1) + +8000065c <_ZL9my_strlenPKc>: +8000065c: fd010113 addi x2,x2,-48 +80000660: 02812623 sw x8,44(x2) +80000664: 03010413 addi x8,x2,48 +80000668: fca42e23 sw x10,-36(x8) +8000066c: fe042623 sw x0,-20(x8) +80000670: 0100006f jal x0,80000680 <_ZL9my_strlenPKc+0x24> +80000674: fec42783 lw x15,-20(x8) +80000678: 00178793 addi x15,x15,1 +8000067c: fef42623 sw x15,-20(x8) +80000680: fec42783 lw x15,-20(x8) +80000684: fdc42703 lw x14,-36(x8) +80000688: 00f707b3 add x15,x14,x15 +8000068c: 0007c783 lbu x15,0(x15) +80000690: fe0792e3 bne x15,x0,80000674 <_ZL9my_strlenPKc+0x18> +80000694: fec42783 lw x15,-20(x8) +80000698: 00078513 addi x10,x15,0 +8000069c: 02c12403 lw x8,44(x2) +800006a0: 03010113 addi x2,x2,48 +800006a4: 00008067 jalr x0,0(x1) + +800006a8 <_Z22count_charactersStructP14ZliczaczStruct>: +800006a8: fd010113 addi x2,x2,-48 +800006ac: 02112623 sw x1,44(x2) +800006b0: 02812423 sw x8,40(x2) +800006b4: 03010413 addi x8,x2,48 +800006b8: fca42e23 sw x10,-36(x8) +800006bc: fdc42783 lw x15,-36(x8) +800006c0: 0007a783 lw x15,0(x15) +800006c4: 00078513 addi x10,x15,0 +800006c8: 00000097 auipc x1,0x0 +800006cc: f94080e7 jalr x1,-108(x1) # 8000065c <_ZL9my_strlenPKc> +800006d0: fea42023 sw x10,-32(x8) +800006d4: fe042623 sw x0,-20(x8) +800006d8: 0240006f jal x0,800006fc <_Z22count_charactersStructP14ZliczaczStruct+0x54> +800006dc: fdc42783 lw x15,-36(x8) +800006e0: 0087a703 lw x14,8(x15) +800006e4: fec42783 lw x15,-20(x8) +800006e8: 00f707b3 add x15,x14,x15 +800006ec: 00078023 sb x0,0(x15) +800006f0: fec42783 lw x15,-20(x8) +800006f4: 00178793 addi x15,x15,1 +800006f8: fef42623 sw x15,-20(x8) +800006fc: fec42703 lw x14,-20(x8) +80000700: fe042783 lw x15,-32(x8) +80000704: fcf74ce3 blt x14,x15,800006dc <_Z22count_charactersStructP14ZliczaczStruct+0x34> +80000708: fe042423 sw x0,-24(x8) +8000070c: 0880006f jal x0,80000794 <_Z22count_charactersStructP14ZliczaczStruct+0xec> +80000710: fe042223 sw x0,-28(x8) +80000714: 05c0006f jal x0,80000770 <_Z22count_charactersStructP14ZliczaczStruct+0xc8> +80000718: fdc42783 lw x15,-36(x8) +8000071c: 0007a703 lw x14,0(x15) +80000720: fe842783 lw x15,-24(x8) +80000724: 00f707b3 add x15,x14,x15 +80000728: 0007c703 lbu x14,0(x15) +8000072c: fdc42783 lw x15,-36(x8) +80000730: 0047a683 lw x13,4(x15) +80000734: fe442783 lw x15,-28(x8) +80000738: 00f687b3 add x15,x13,x15 +8000073c: 0007c783 lbu x15,0(x15) +80000740: 02f71263 bne x14,x15,80000764 <_Z22count_charactersStructP14ZliczaczStruct+0xbc> +80000744: fdc42783 lw x15,-36(x8) +80000748: 0087a703 lw x14,8(x15) +8000074c: fe842783 lw x15,-24(x8) +80000750: 00f707b3 add x15,x14,x15 +80000754: 0007c703 lbu x14,0(x15) +80000758: 00170713 addi x14,x14,1 +8000075c: 0ff77713 andi x14,x14,255 +80000760: 00e78023 sb x14,0(x15) +80000764: fe442783 lw x15,-28(x8) +80000768: 00178793 addi x15,x15,1 +8000076c: fef42223 sw x15,-28(x8) +80000770: fdc42783 lw x15,-36(x8) +80000774: 0047a703 lw x14,4(x15) +80000778: fe442783 lw x15,-28(x8) +8000077c: 00f707b3 add x15,x14,x15 +80000780: 0007c783 lbu x15,0(x15) +80000784: f8079ae3 bne x15,x0,80000718 <_Z22count_charactersStructP14ZliczaczStruct+0x70> +80000788: fe842783 lw x15,-24(x8) +8000078c: 00178793 addi x15,x15,1 +80000790: fef42423 sw x15,-24(x8) +80000794: fe842703 lw x14,-24(x8) +80000798: fe042783 lw x15,-32(x8) +8000079c: f6f74ae3 blt x14,x15,80000710 <_Z22count_charactersStructP14ZliczaczStruct+0x68> +800007a0: 00000013 addi x0,x0,0 +800007a4: 00000013 addi x0,x0,0 +800007a8: 02c12083 lw x1,44(x2) +800007ac: 02812403 lw x8,40(x2) +800007b0: 03010113 addi x2,x2,48 +800007b4: 00008067 jalr x0,0(x1) + +800007b8 <_ZL9my_strlenPKc>: +800007b8: fd010113 addi x2,x2,-48 +800007bc: 02812623 sw x8,44(x2) +800007c0: 03010413 addi x8,x2,48 +800007c4: fca42e23 sw x10,-36(x8) +800007c8: fe042623 sw x0,-20(x8) +800007cc: 0100006f jal x0,800007dc <_ZL9my_strlenPKc+0x24> +800007d0: fec42783 lw x15,-20(x8) +800007d4: 00178793 addi x15,x15,1 +800007d8: fef42623 sw x15,-20(x8) +800007dc: fec42783 lw x15,-20(x8) +800007e0: fdc42703 lw x14,-36(x8) +800007e4: 00f707b3 add x15,x14,x15 +800007e8: 0007c783 lbu x15,0(x15) +800007ec: fe0792e3 bne x15,x0,800007d0 <_ZL9my_strlenPKc+0x18> +800007f0: fec42783 lw x15,-20(x8) +800007f4: 00078513 addi x10,x15,0 +800007f8: 02c12403 lw x8,44(x2) +800007fc: 03010113 addi x2,x2,48 +80000800: 00008067 jalr x0,0(x1) + +80000804 <_ZL25count_charactersStructOOPP17ZliczaczStructOOP>: +80000804: fd010113 addi x2,x2,-48 +80000808: 02112623 sw x1,44(x2) +8000080c: 02812423 sw x8,40(x2) +80000810: 03010413 addi x8,x2,48 +80000814: fca42e23 sw x10,-36(x8) +80000818: fdc42783 lw x15,-36(x8) +8000081c: 0007a783 lw x15,0(x15) +80000820: 00078513 addi x10,x15,0 +80000824: 00000097 auipc x1,0x0 +80000828: f94080e7 jalr x1,-108(x1) # 800007b8 <_ZL9my_strlenPKc> +8000082c: fea42023 sw x10,-32(x8) +80000830: fe042623 sw x0,-20(x8) +80000834: 0240006f jal x0,80000858 <_ZL25count_charactersStructOOPP17ZliczaczStructOOP+0x54> +80000838: fdc42783 lw x15,-36(x8) +8000083c: 0087a703 lw x14,8(x15) +80000840: fec42783 lw x15,-20(x8) +80000844: 00f707b3 add x15,x14,x15 +80000848: 00078023 sb x0,0(x15) +8000084c: fec42783 lw x15,-20(x8) +80000850: 00178793 addi x15,x15,1 +80000854: fef42623 sw x15,-20(x8) +80000858: fec42703 lw x14,-20(x8) +8000085c: fe042783 lw x15,-32(x8) +80000860: fcf74ce3 blt x14,x15,80000838 <_ZL25count_charactersStructOOPP17ZliczaczStructOOP+0x34> +80000864: fe042423 sw x0,-24(x8) +80000868: 0880006f jal x0,800008f0 <_ZL25count_charactersStructOOPP17ZliczaczStructOOP+0xec> +8000086c: fe042223 sw x0,-28(x8) +80000870: 05c0006f jal x0,800008cc <_ZL25count_charactersStructOOPP17ZliczaczStructOOP+0xc8> +80000874: fdc42783 lw x15,-36(x8) +80000878: 0007a703 lw x14,0(x15) +8000087c: fe842783 lw x15,-24(x8) +80000880: 00f707b3 add x15,x14,x15 +80000884: 0007c703 lbu x14,0(x15) +80000888: fdc42783 lw x15,-36(x8) +8000088c: 0047a683 lw x13,4(x15) +80000890: fe442783 lw x15,-28(x8) +80000894: 00f687b3 add x15,x13,x15 +80000898: 0007c783 lbu x15,0(x15) +8000089c: 02f71263 bne x14,x15,800008c0 <_ZL25count_charactersStructOOPP17ZliczaczStructOOP+0xbc> +800008a0: fdc42783 lw x15,-36(x8) +800008a4: 0087a703 lw x14,8(x15) +800008a8: fe842783 lw x15,-24(x8) +800008ac: 00f707b3 add x15,x14,x15 +800008b0: 0007c703 lbu x14,0(x15) +800008b4: 00170713 addi x14,x14,1 +800008b8: 0ff77713 andi x14,x14,255 +800008bc: 00e78023 sb x14,0(x15) +800008c0: fe442783 lw x15,-28(x8) +800008c4: 00178793 addi x15,x15,1 +800008c8: fef42223 sw x15,-28(x8) +800008cc: fdc42783 lw x15,-36(x8) +800008d0: 0047a703 lw x14,4(x15) +800008d4: fe442783 lw x15,-28(x8) +800008d8: 00f707b3 add x15,x14,x15 +800008dc: 0007c783 lbu x15,0(x15) +800008e0: f8079ae3 bne x15,x0,80000874 <_ZL25count_charactersStructOOPP17ZliczaczStructOOP+0x70> +800008e4: fe842783 lw x15,-24(x8) +800008e8: 00178793 addi x15,x15,1 +800008ec: fef42423 sw x15,-24(x8) +800008f0: fe842703 lw x14,-24(x8) +800008f4: fe042783 lw x15,-32(x8) +800008f8: f6f74ae3 blt x14,x15,8000086c <_ZL25count_charactersStructOOPP17ZliczaczStructOOP+0x68> +800008fc: 00000013 addi x0,x0,0 +80000900: 00000013 addi x0,x0,0 +80000904: 02c12083 lw x1,44(x2) +80000908: 02812403 lw x8,40(x2) +8000090c: 03010113 addi x2,x2,48 +80000910: 00008067 jalr x0,0(x1) + +80000914 <_Z27initializeZliczaczStructOOPP17ZliczaczStructOOPPKcS2_Ph>: +80000914: fe010113 addi x2,x2,-32 +80000918: 00812e23 sw x8,28(x2) +8000091c: 02010413 addi x8,x2,32 +80000920: fea42623 sw x10,-20(x8) +80000924: feb42423 sw x11,-24(x8) +80000928: fec42223 sw x12,-28(x8) +8000092c: fed42023 sw x13,-32(x8) +80000930: fec42783 lw x15,-20(x8) +80000934: fe842703 lw x14,-24(x8) +80000938: 00e7a023 sw x14,0(x15) +8000093c: fec42783 lw x15,-20(x8) +80000940: fe442703 lw x14,-28(x8) +80000944: 00e7a223 sw x14,4(x15) +80000948: fec42783 lw x15,-20(x8) +8000094c: fe042703 lw x14,-32(x8) +80000950: 00e7a423 sw x14,8(x15) +80000954: fec42783 lw x15,-20(x8) +80000958: 80001737 lui x14,0x80001 +8000095c: 80470713 addi x14,x14,-2044 # 80000804 <_ZL25count_charactersStructOOPP17ZliczaczStructOOP> +80000960: 00e7a623 sw x14,12(x15) +80000964: 00000013 addi x0,x0,0 +80000968: 01c12403 lw x8,28(x2) +8000096c: 02010113 addi x2,x2,32 +80000970: 00008067 jalr x0,0(x1) + +80000974 <_ZN9MyfuncOOPC1EPKcS1_Ph>: +80000974: fe010113 addi x2,x2,-32 +80000978: 00812e23 sw x8,28(x2) +8000097c: 02010413 addi x8,x2,32 +80000980: fea42623 sw x10,-20(x8) +80000984: feb42423 sw x11,-24(x8) +80000988: fec42223 sw x12,-28(x8) +8000098c: fed42023 sw x13,-32(x8) +80000990: fec42783 lw x15,-20(x8) +80000994: fe842703 lw x14,-24(x8) +80000998: 00e7a023 sw x14,0(x15) +8000099c: fec42783 lw x15,-20(x8) +800009a0: fe442703 lw x14,-28(x8) +800009a4: 00e7a223 sw x14,4(x15) +800009a8: fec42783 lw x15,-20(x8) +800009ac: fe042703 lw x14,-32(x8) +800009b0: 00e7a423 sw x14,8(x15) +800009b4: 00000013 addi x0,x0,0 +800009b8: 01c12403 lw x8,28(x2) +800009bc: 02010113 addi x2,x2,32 +800009c0: 00008067 jalr x0,0(x1) + +800009c4 <_ZN9MyfuncOOP15countCharactersEv>: +800009c4: fd010113 addi x2,x2,-48 +800009c8: 02112623 sw x1,44(x2) +800009cc: 02812423 sw x8,40(x2) +800009d0: 03010413 addi x8,x2,48 +800009d4: fca42e23 sw x10,-36(x8) +800009d8: fdc42783 lw x15,-36(x8) +800009dc: 0007a783 lw x15,0(x15) +800009e0: 00078513 addi x10,x15,0 +800009e4: 00000097 auipc x1,0x0 +800009e8: 118080e7 jalr x1,280(x1) # 80000afc <_ZN9MyfuncOOP8myStrlenEPKc> +800009ec: fea42023 sw x10,-32(x8) +800009f0: fe042623 sw x0,-20(x8) +800009f4: 0240006f jal x0,80000a18 <_ZN9MyfuncOOP15countCharactersEv+0x54> +800009f8: fdc42783 lw x15,-36(x8) +800009fc: 0087a703 lw x14,8(x15) +80000a00: fec42783 lw x15,-20(x8) +80000a04: 00f707b3 add x15,x14,x15 +80000a08: 00078023 sb x0,0(x15) +80000a0c: fec42783 lw x15,-20(x8) +80000a10: 00178793 addi x15,x15,1 +80000a14: fef42623 sw x15,-20(x8) +80000a18: fec42703 lw x14,-20(x8) +80000a1c: fe042783 lw x15,-32(x8) +80000a20: fcf74ce3 blt x14,x15,800009f8 <_ZN9MyfuncOOP15countCharactersEv+0x34> +80000a24: fe042423 sw x0,-24(x8) +80000a28: 0880006f jal x0,80000ab0 <_ZN9MyfuncOOP15countCharactersEv+0xec> +80000a2c: fe042223 sw x0,-28(x8) +80000a30: 05c0006f jal x0,80000a8c <_ZN9MyfuncOOP15countCharactersEv+0xc8> +80000a34: fdc42783 lw x15,-36(x8) +80000a38: 0007a703 lw x14,0(x15) +80000a3c: fe842783 lw x15,-24(x8) +80000a40: 00f707b3 add x15,x14,x15 +80000a44: 0007c703 lbu x14,0(x15) +80000a48: fdc42783 lw x15,-36(x8) +80000a4c: 0047a683 lw x13,4(x15) +80000a50: fe442783 lw x15,-28(x8) +80000a54: 00f687b3 add x15,x13,x15 +80000a58: 0007c783 lbu x15,0(x15) +80000a5c: 02f71263 bne x14,x15,80000a80 <_ZN9MyfuncOOP15countCharactersEv+0xbc> +80000a60: fdc42783 lw x15,-36(x8) +80000a64: 0087a703 lw x14,8(x15) +80000a68: fe842783 lw x15,-24(x8) +80000a6c: 00f707b3 add x15,x14,x15 +80000a70: 0007c703 lbu x14,0(x15) +80000a74: 00170713 addi x14,x14,1 +80000a78: 0ff77713 andi x14,x14,255 +80000a7c: 00e78023 sb x14,0(x15) +80000a80: fe442783 lw x15,-28(x8) +80000a84: 00178793 addi x15,x15,1 +80000a88: fef42223 sw x15,-28(x8) +80000a8c: fdc42783 lw x15,-36(x8) +80000a90: 0047a703 lw x14,4(x15) +80000a94: fe442783 lw x15,-28(x8) +80000a98: 00f707b3 add x15,x14,x15 +80000a9c: 0007c783 lbu x15,0(x15) +80000aa0: f8079ae3 bne x15,x0,80000a34 <_ZN9MyfuncOOP15countCharactersEv+0x70> +80000aa4: fe842783 lw x15,-24(x8) +80000aa8: 00178793 addi x15,x15,1 +80000aac: fef42423 sw x15,-24(x8) +80000ab0: fe842703 lw x14,-24(x8) +80000ab4: fe042783 lw x15,-32(x8) +80000ab8: f6f74ae3 blt x14,x15,80000a2c <_ZN9MyfuncOOP15countCharactersEv+0x68> +80000abc: 00000013 addi x0,x0,0 +80000ac0: 00000013 addi x0,x0,0 +80000ac4: 02c12083 lw x1,44(x2) +80000ac8: 02812403 lw x8,40(x2) +80000acc: 03010113 addi x2,x2,48 +80000ad0: 00008067 jalr x0,0(x1) + +80000ad4 <_ZNK9MyfuncOOP10getResultsEv>: +80000ad4: fe010113 addi x2,x2,-32 +80000ad8: 00812e23 sw x8,28(x2) +80000adc: 02010413 addi x8,x2,32 +80000ae0: fea42623 sw x10,-20(x8) +80000ae4: fec42783 lw x15,-20(x8) +80000ae8: 0087a783 lw x15,8(x15) +80000aec: 00078513 addi x10,x15,0 +80000af0: 01c12403 lw x8,28(x2) +80000af4: 02010113 addi x2,x2,32 +80000af8: 00008067 jalr x0,0(x1) + +80000afc <_ZN9MyfuncOOP8myStrlenEPKc>: +80000afc: fd010113 addi x2,x2,-48 +80000b00: 02812623 sw x8,44(x2) +80000b04: 03010413 addi x8,x2,48 +80000b08: fca42e23 sw x10,-36(x8) +80000b0c: fe042623 sw x0,-20(x8) +80000b10: 0100006f jal x0,80000b20 <_ZN9MyfuncOOP8myStrlenEPKc+0x24> +80000b14: fec42783 lw x15,-20(x8) +80000b18: 00178793 addi x15,x15,1 +80000b1c: fef42623 sw x15,-20(x8) +80000b20: fec42783 lw x15,-20(x8) +80000b24: fdc42703 lw x14,-36(x8) +80000b28: 00f707b3 add x15,x14,x15 +80000b2c: 0007c783 lbu x15,0(x15) +80000b30: fe0792e3 bne x15,x0,80000b14 <_ZN9MyfuncOOP8myStrlenEPKc+0x18> +80000b34: fec42783 lw x15,-20(x8) +80000b38: 00078513 addi x10,x15,0 +80000b3c: 02c12403 lw x8,44(x2) +80000b40: 03010113 addi x2,x2,48 +80000b44: 00008067 jalr x0,0(x1) Disassembly of section .data: -80010000 <__DATA_BEGIN__>: -80010000: 706d .2byte 0x706d -80010002: 6261 .2byte 0x6261 -80010004: 0069 .2byte 0x69 +00010000 <__DATA_BEGIN__>: + 10000: 706d .2byte 0x706d + 10002: 6261 .2byte 0x6261 + 10004: 0069 .2byte 0x69 ... Disassembly of section .rodata: -80000324 : -80000324: 6261 .2byte 0x6261 -80000326: 66656463 bltu x10,x6,8000098e -8000032a: 6a696867 .4byte 0x6a696867 -8000032e: 6e6d6c6b .4byte 0x6e6d6c6b -80000332: 7271706f jal x0,80018258 <__BSS_END__+0x5b24> -80000336: 77757473 .4byte 0x77757473 -8000033a: 7978 .2byte 0x7978 -8000033c: 007a .2byte 0x7a +80000b48 : +80000b48: 6261 .2byte 0x6261 +80000b4a: 66656463 bltu x10,x6,800011b2 +80000b4e: 6a696867 .4byte 0x6a696867 +80000b52: 6e6d6c6b .4byte 0x6e6d6c6b +80000b56: 7271706f jal x0,80018a7c +80000b5a: 77757473 .4byte 0x77757473 +80000b5e: 7978 .2byte 0x7978 +80000b60: 007a .2byte 0x7a + +80000b62 : +80000b62: 0000 .2byte 0x0 +80000b64: 6c56 .2byte 0x6c56 +80000b66: 6461 .2byte 0x6461 +80000b68: 7379 .2byte 0x7379 +80000b6a: 616c .2byte 0x616c +80000b6c: 0076 .2byte 0x76 +80000b6e: 0000 .2byte 0x0 +80000b70: 2c20 .2byte 0x2c20 +80000b72: 212e .2byte 0x212e +80000b74: 0a3b3a3f 00000009 .8byte 0x90a3b3a3f +80000b7c: 6649 .2byte 0x6649 +80000b7e: 7720 .2byte 0x7720 +80000b80: 6e61 .2byte 0x6e61 +80000b82: 6574 .2byte 0x6574 +80000b84: 6572 .2byte 0x6572 +80000b86: 2064 .2byte 0x2064 +80000b88: 6572 .2byte 0x6572 +80000b8a: 616c .2byte 0x616c +80000b8c: 6974 .2byte 0x6974 +80000b8e: 6e206e6f jal x28,80007270 +80000b92: 7573206f jal x0,80033ae8 +80000b96: 7072 .2byte 0x7072 +80000b98: 6972 .2byte 0x6972 +80000b9a: 6f206573 .4byte 0x6f206573 +80000b9e: 2066 .2byte 0x2066 +80000ba0: 6c61 .2byte 0x6c61 +80000ba2: 006c .2byte 0x6c Disassembly of section .eh_frame: -80000340 <.eh_frame>: -80000340: 0010 .2byte 0x10 -80000342: 0000 .2byte 0x0 -80000344: 0000 .2byte 0x0 -80000346: 0000 .2byte 0x0 -80000348: 00527a03 .4byte 0x527a03 -8000034c: 7c01 .2byte 0x7c01 -8000034e: 0101 .2byte 0x101 -80000350: 00020d1b .4byte 0x20d1b -80000354: 0020 .2byte 0x20 -80000356: 0000 .2byte 0x0 -80000358: 0018 .2byte 0x18 -8000035a: 0000 .2byte 0x0 -8000035c: fcec .2byte 0xfcec -8000035e: ffff .2byte 0xffff -80000360: 0050 .2byte 0x50 -80000362: 0000 .2byte 0x0 -80000364: 4400 .2byte 0x4400 -80000366: 300e .2byte 0x300e -80000368: 8844 .2byte 0x8844 -8000036a: 4401 .2byte 0x4401 -8000036c: 080c .2byte 0x80c -8000036e: 7c00 .2byte 0x7c00 -80000370: 0cc8 .2byte 0xcc8 -80000372: 3002 .2byte 0x3002 -80000374: 0e44 .2byte 0xe44 -80000376: 0000 .2byte 0x0 -80000378: 0020 .2byte 0x20 -8000037a: 0000 .2byte 0x0 -8000037c: 003c .2byte 0x3c -8000037e: 0000 .2byte 0x0 -80000380: fd18 .2byte 0xfd18 -80000382: ffff .2byte 0xffff -80000384: 005c .2byte 0x5c -80000386: 0000 .2byte 0x0 -80000388: 4400 .2byte 0x4400 -8000038a: 200e .2byte 0x200e -8000038c: 8844 .2byte 0x8844 -8000038e: 4401 .2byte 0x4401 -80000390: 080c .2byte 0x80c -80000392: 0200 .2byte 0x200 -80000394: c848 .2byte 0xc848 -80000396: 020c .2byte 0x20c -80000398: 4420 .2byte 0x4420 -8000039a: 000e .2byte 0xe -8000039c: 0020 .2byte 0x20 -8000039e: 0000 .2byte 0x0 -800003a0: 0060 .2byte 0x60 -800003a2: 0000 .2byte 0x0 -800003a4: fd50 .2byte 0xfd50 -800003a6: ffff .2byte 0xffff -800003a8: 00ac .2byte 0xac -800003aa: 0000 .2byte 0x0 -800003ac: 4400 .2byte 0x4400 -800003ae: 200e .2byte 0x200e -800003b0: 8844 .2byte 0x8844 -800003b2: 4401 .2byte 0x4401 -800003b4: 080c .2byte 0x80c -800003b6: 0200 .2byte 0x200 -800003b8: c898 .2byte 0xc898 -800003ba: 020c .2byte 0x20c -800003bc: 4420 .2byte 0x4420 -800003be: 000e .2byte 0xe -800003c0: 0024 .2byte 0x24 -800003c2: 0000 .2byte 0x0 -800003c4: 0084 .2byte 0x84 -800003c6: 0000 .2byte 0x0 -800003c8: fdd8 .2byte 0xfdd8 -800003ca: ffff .2byte 0xffff -800003cc: 003c .2byte 0x3c -800003ce: 0000 .2byte 0x0 -800003d0: 4400 .2byte 0x4400 -800003d2: 700e .2byte 0x700e -800003d4: 8148 .2byte 0x8148 -800003d6: 8801 .2byte 0x8801 -800003d8: 4402 .2byte 0x4402 -800003da: 080c .2byte 0x80c -800003dc: 6000 .2byte 0x6000 -800003de: 44c1 .2byte 0x44c1 -800003e0: 0cc8 .2byte 0xcc8 -800003e2: 7002 .2byte 0x7002 -800003e4: 0e44 .2byte 0xe44 -800003e6: 0000 .2byte 0x0 -800003e8: 0020 .2byte 0x20 -800003ea: 0000 .2byte 0x0 -800003ec: 00ac .2byte 0xac -800003ee: 0000 .2byte 0x0 -800003f0: fdec .2byte 0xfdec -800003f2: ffff .2byte 0xffff -800003f4: 004c .2byte 0x4c -800003f6: 0000 .2byte 0x0 -800003f8: 4400 .2byte 0x4400 -800003fa: 300e .2byte 0x300e -800003fc: 8844 .2byte 0x8844 -800003fe: 4401 .2byte 0x4401 -80000400: 080c .2byte 0x80c -80000402: 7800 .2byte 0x7800 -80000404: 0cc8 .2byte 0xcc8 -80000406: 3002 .2byte 0x3002 -80000408: 0e44 .2byte 0xe44 -8000040a: 0000 .2byte 0x0 -8000040c: 0024 .2byte 0x24 -8000040e: 0000 .2byte 0x0 -80000410: 00d0 .2byte 0xd0 -80000412: 0000 .2byte 0x0 -80000414: fe14 .2byte 0xfe14 -80000416: ffff .2byte 0xffff -80000418: 00fc .2byte 0xfc -8000041a: 0000 .2byte 0x0 -8000041c: 4400 .2byte 0x4400 -8000041e: 300e .2byte 0x300e -80000420: 8148 .2byte 0x8148 -80000422: 8801 .2byte 0x8801 -80000424: 4402 .2byte 0x4402 -80000426: 080c .2byte 0x80c -80000428: 0200 .2byte 0x200 -8000042a: c1e0 .2byte 0xc1e0 -8000042c: c844 .2byte 0xc844 -8000042e: 020c .2byte 0x20c -80000430: 4430 .2byte 0x4430 -80000432: 000e .2byte 0xe +80000ba4 <.eh_frame>: +80000ba4: 0010 .2byte 0x10 +80000ba6: 0000 .2byte 0x0 +80000ba8: 0000 .2byte 0x0 +80000baa: 0000 .2byte 0x0 +80000bac: 00527a03 .4byte 0x527a03 +80000bb0: 7c01 .2byte 0x7c01 +80000bb2: 0101 .2byte 0x101 +80000bb4: 00020d1b .4byte 0x20d1b +80000bb8: 0020 .2byte 0x20 +80000bba: 0000 .2byte 0x0 +80000bbc: 0018 .2byte 0x18 +80000bbe: 0000 .2byte 0x0 +80000bc0: f488 .2byte 0xf488 +80000bc2: ffff .2byte 0xffff +80000bc4: 0050 .2byte 0x50 +80000bc6: 0000 .2byte 0x0 +80000bc8: 4400 .2byte 0x4400 +80000bca: 300e .2byte 0x300e +80000bcc: 8844 .2byte 0x8844 +80000bce: 4401 .2byte 0x4401 +80000bd0: 080c .2byte 0x80c +80000bd2: 7c00 .2byte 0x7c00 +80000bd4: 0cc8 .2byte 0xcc8 +80000bd6: 3002 .2byte 0x3002 +80000bd8: 0e44 .2byte 0xe44 +80000bda: 0000 .2byte 0x0 +80000bdc: 0024 .2byte 0x24 +80000bde: 0000 .2byte 0x0 +80000be0: 003c .2byte 0x3c +80000be2: 0000 .2byte 0x0 +80000be4: f4b4 .2byte 0xf4b4 +80000be6: ffff .2byte 0xffff +80000be8: 004c .2byte 0x4c +80000bea: 0000 .2byte 0x0 +80000bec: 4400 .2byte 0x4400 +80000bee: 200e .2byte 0x200e +80000bf0: 8148 .2byte 0x8148 +80000bf2: 8801 .2byte 0x8801 +80000bf4: 4402 .2byte 0x4402 +80000bf6: 080c .2byte 0x80c +80000bf8: 7000 .2byte 0x7000 +80000bfa: 44c1 .2byte 0x44c1 +80000bfc: 0cc8 .2byte 0xcc8 +80000bfe: 2002 .2byte 0x2002 +80000c00: 0e44 .2byte 0xe44 +80000c02: 0000 .2byte 0x0 +80000c04: 0020 .2byte 0x20 +80000c06: 0000 .2byte 0x0 +80000c08: 0064 .2byte 0x64 +80000c0a: 0000 .2byte 0x0 +80000c0c: f4d8 .2byte 0xf4d8 +80000c0e: ffff .2byte 0xffff +80000c10: 005c .2byte 0x5c +80000c12: 0000 .2byte 0x0 +80000c14: 4400 .2byte 0x4400 +80000c16: 200e .2byte 0x200e +80000c18: 8844 .2byte 0x8844 +80000c1a: 4401 .2byte 0x4401 +80000c1c: 080c .2byte 0x80c +80000c1e: 0200 .2byte 0x200 +80000c20: c848 .2byte 0xc848 +80000c22: 020c .2byte 0x20c +80000c24: 4420 .2byte 0x4420 +80000c26: 000e .2byte 0xe +80000c28: 0020 .2byte 0x20 +80000c2a: 0000 .2byte 0x0 +80000c2c: 0088 .2byte 0x88 +80000c2e: 0000 .2byte 0x0 +80000c30: f510 .2byte 0xf510 +80000c32: ffff .2byte 0xffff +80000c34: 00ac .2byte 0xac +80000c36: 0000 .2byte 0x0 +80000c38: 4400 .2byte 0x4400 +80000c3a: 200e .2byte 0x200e +80000c3c: 8844 .2byte 0x8844 +80000c3e: 4401 .2byte 0x4401 +80000c40: 080c .2byte 0x80c +80000c42: 0200 .2byte 0x200 +80000c44: c898 .2byte 0xc898 +80000c46: 020c .2byte 0x20c +80000c48: 4420 .2byte 0x4420 +80000c4a: 000e .2byte 0xe +80000c4c: 0020 .2byte 0x20 +80000c4e: 0000 .2byte 0x0 +80000c50: 00ac .2byte 0xac +80000c52: 0000 .2byte 0x0 +80000c54: f598 .2byte 0xf598 +80000c56: ffff .2byte 0xffff +80000c58: 0060 .2byte 0x60 +80000c5a: 0000 .2byte 0x0 +80000c5c: 4400 .2byte 0x4400 +80000c5e: 200e .2byte 0x200e +80000c60: 8844 .2byte 0x8844 +80000c62: 4401 .2byte 0x4401 +80000c64: 080c .2byte 0x80c +80000c66: 0200 .2byte 0x200 +80000c68: c84c .2byte 0xc84c +80000c6a: 020c .2byte 0x20c +80000c6c: 4420 .2byte 0x4420 +80000c6e: 000e .2byte 0xe +80000c70: 0028 .2byte 0x28 +80000c72: 0000 .2byte 0x0 +80000c74: 00d0 .2byte 0xd0 +80000c76: 0000 .2byte 0x0 +80000c78: f5d4 .2byte 0xf5d4 +80000c7a: ffff .2byte 0xffff +80000c7c: 0160 .2byte 0x160 +80000c7e: 0000 .2byte 0x0 +80000c80: 4400 .2byte 0x4400 +80000c82: 300e .2byte 0x300e +80000c84: 8148 .2byte 0x8148 +80000c86: 8801 .2byte 0x8801 +80000c88: 4402 .2byte 0x4402 +80000c8a: 080c .2byte 0x80c +80000c8c: 0300 .2byte 0x300 +80000c8e: 0144 .2byte 0x144 +80000c90: 44c1 .2byte 0x44c1 +80000c92: 0cc8 .2byte 0xcc8 +80000c94: 3002 .2byte 0x3002 +80000c96: 0e44 .2byte 0xe44 +80000c98: 0000 .2byte 0x0 +80000c9a: 0000 .2byte 0x0 +80000c9c: 0028 .2byte 0x28 +80000c9e: 0000 .2byte 0x0 +80000ca0: 00fc .2byte 0xfc +80000ca2: 0000 .2byte 0x0 +80000ca4: f708 .2byte 0xf708 +80000ca6: ffff .2byte 0xffff +80000ca8: 0124 .2byte 0x124 +80000caa: 0000 .2byte 0x0 +80000cac: 4400 .2byte 0x4400 +80000cae: c00e .2byte 0xc00e +80000cb0: 480e .2byte 0x480e +80000cb2: 0181 .2byte 0x181 +80000cb4: 0288 .2byte 0x288 +80000cb6: 0c44 .2byte 0xc44 +80000cb8: 0008 .2byte 0x8 +80000cba: 0c010403 lb x8,192(x2) +80000cbe: c002 .2byte 0xc002 +80000cc0: 440e .2byte 0x440e +80000cc2: 44c1 .2byte 0x44c1 +80000cc4: 44c8 .2byte 0x44c8 +80000cc6: 000e .2byte 0xe +80000cc8: 0024 .2byte 0x24 +80000cca: 0000 .2byte 0x0 +80000ccc: 0128 .2byte 0x128 +80000cce: 0000 .2byte 0x0 +80000cd0: f800 .2byte 0xf800 +80000cd2: ffff .2byte 0xffff +80000cd4: 0044 .2byte 0x44 +80000cd6: 0000 .2byte 0x0 +80000cd8: 4400 .2byte 0x4400 +80000cda: 200e .2byte 0x200e +80000cdc: 8148 .2byte 0x8148 +80000cde: 8801 .2byte 0x8801 +80000ce0: 4402 .2byte 0x4402 +80000ce2: 080c .2byte 0x80c +80000ce4: 6800 .2byte 0x6800 +80000ce6: 44c1 .2byte 0x44c1 +80000ce8: 0cc8 .2byte 0xcc8 +80000cea: 2002 .2byte 0x2002 +80000cec: 0e44 .2byte 0xe44 +80000cee: 0000 .2byte 0x0 +80000cf0: 0020 .2byte 0x20 +80000cf2: 0000 .2byte 0x0 +80000cf4: 0150 .2byte 0x150 +80000cf6: 0000 .2byte 0x0 +80000cf8: f81c .2byte 0xf81c +80000cfa: ffff .2byte 0xffff +80000cfc: 004c .2byte 0x4c +80000cfe: 0000 .2byte 0x0 +80000d00: 4400 .2byte 0x4400 +80000d02: 300e .2byte 0x300e +80000d04: 8844 .2byte 0x8844 +80000d06: 4401 .2byte 0x4401 +80000d08: 080c .2byte 0x80c +80000d0a: 7800 .2byte 0x7800 +80000d0c: 0cc8 .2byte 0xcc8 +80000d0e: 3002 .2byte 0x3002 +80000d10: 0e44 .2byte 0xe44 +80000d12: 0000 .2byte 0x0 +80000d14: 0024 .2byte 0x24 +80000d16: 0000 .2byte 0x0 +80000d18: 0174 .2byte 0x174 +80000d1a: 0000 .2byte 0x0 +80000d1c: f844 .2byte 0xf844 +80000d1e: ffff .2byte 0xffff +80000d20: 00fc .2byte 0xfc +80000d22: 0000 .2byte 0x0 +80000d24: 4400 .2byte 0x4400 +80000d26: 300e .2byte 0x300e +80000d28: 8148 .2byte 0x8148 +80000d2a: 8801 .2byte 0x8801 +80000d2c: 4402 .2byte 0x4402 +80000d2e: 080c .2byte 0x80c +80000d30: 0200 .2byte 0x200 +80000d32: c1e0 .2byte 0xc1e0 +80000d34: c844 .2byte 0xc844 +80000d36: 020c .2byte 0x20c +80000d38: 4430 .2byte 0x4430 +80000d3a: 000e .2byte 0xe +80000d3c: 0020 .2byte 0x20 +80000d3e: 0000 .2byte 0x0 +80000d40: 019c .2byte 0x19c +80000d42: 0000 .2byte 0x0 +80000d44: f918 .2byte 0xf918 +80000d46: ffff .2byte 0xffff +80000d48: 004c .2byte 0x4c +80000d4a: 0000 .2byte 0x0 +80000d4c: 4400 .2byte 0x4400 +80000d4e: 300e .2byte 0x300e +80000d50: 8844 .2byte 0x8844 +80000d52: 4401 .2byte 0x4401 +80000d54: 080c .2byte 0x80c +80000d56: 7800 .2byte 0x7800 +80000d58: 0cc8 .2byte 0xcc8 +80000d5a: 3002 .2byte 0x3002 +80000d5c: 0e44 .2byte 0xe44 +80000d5e: 0000 .2byte 0x0 +80000d60: 0024 .2byte 0x24 +80000d62: 0000 .2byte 0x0 +80000d64: 01c0 .2byte 0x1c0 +80000d66: 0000 .2byte 0x0 +80000d68: f940 .2byte 0xf940 +80000d6a: ffff .2byte 0xffff +80000d6c: 0110 .2byte 0x110 +80000d6e: 0000 .2byte 0x0 +80000d70: 4400 .2byte 0x4400 +80000d72: 300e .2byte 0x300e +80000d74: 8148 .2byte 0x8148 +80000d76: 8801 .2byte 0x8801 +80000d78: 4402 .2byte 0x4402 +80000d7a: 080c .2byte 0x80c +80000d7c: 0200 .2byte 0x200 +80000d7e: c1f4 .2byte 0xc1f4 +80000d80: c844 .2byte 0xc844 +80000d82: 020c .2byte 0x20c +80000d84: 4430 .2byte 0x4430 +80000d86: 000e .2byte 0xe +80000d88: 0020 .2byte 0x20 +80000d8a: 0000 .2byte 0x0 +80000d8c: 01e8 .2byte 0x1e8 +80000d8e: 0000 .2byte 0x0 +80000d90: fa28 .2byte 0xfa28 +80000d92: ffff .2byte 0xffff +80000d94: 004c .2byte 0x4c +80000d96: 0000 .2byte 0x0 +80000d98: 4400 .2byte 0x4400 +80000d9a: 300e .2byte 0x300e +80000d9c: 8844 .2byte 0x8844 +80000d9e: 4401 .2byte 0x4401 +80000da0: 080c .2byte 0x80c +80000da2: 7800 .2byte 0x7800 +80000da4: 0cc8 .2byte 0xcc8 +80000da6: 3002 .2byte 0x3002 +80000da8: 0e44 .2byte 0xe44 +80000daa: 0000 .2byte 0x0 +80000dac: 0024 .2byte 0x24 +80000dae: 0000 .2byte 0x0 +80000db0: 020c .2byte 0x20c +80000db2: 0000 .2byte 0x0 +80000db4: fa50 .2byte 0xfa50 +80000db6: ffff .2byte 0xffff +80000db8: 0110 .2byte 0x110 +80000dba: 0000 .2byte 0x0 +80000dbc: 4400 .2byte 0x4400 +80000dbe: 300e .2byte 0x300e +80000dc0: 8148 .2byte 0x8148 +80000dc2: 8801 .2byte 0x8801 +80000dc4: 4402 .2byte 0x4402 +80000dc6: 080c .2byte 0x80c +80000dc8: 0200 .2byte 0x200 +80000dca: c1f4 .2byte 0xc1f4 +80000dcc: c844 .2byte 0xc844 +80000dce: 020c .2byte 0x20c +80000dd0: 4430 .2byte 0x4430 +80000dd2: 000e .2byte 0xe +80000dd4: 0020 .2byte 0x20 +80000dd6: 0000 .2byte 0x0 +80000dd8: 0234 .2byte 0x234 +80000dda: 0000 .2byte 0x0 +80000ddc: fb38 .2byte 0xfb38 +80000dde: ffff .2byte 0xffff +80000de0: 0060 .2byte 0x60 +80000de2: 0000 .2byte 0x0 +80000de4: 4400 .2byte 0x4400 +80000de6: 200e .2byte 0x200e +80000de8: 8844 .2byte 0x8844 +80000dea: 4401 .2byte 0x4401 +80000dec: 080c .2byte 0x80c +80000dee: 0200 .2byte 0x200 +80000df0: c84c .2byte 0xc84c +80000df2: 020c .2byte 0x20c +80000df4: 4420 .2byte 0x4420 +80000df6: 000e .2byte 0xe +80000df8: 0020 .2byte 0x20 +80000dfa: 0000 .2byte 0x0 +80000dfc: 0258 .2byte 0x258 +80000dfe: 0000 .2byte 0x0 +80000e00: fb74 .2byte 0xfb74 +80000e02: ffff .2byte 0xffff +80000e04: 0050 .2byte 0x50 +80000e06: 0000 .2byte 0x0 +80000e08: 4400 .2byte 0x4400 +80000e0a: 200e .2byte 0x200e +80000e0c: 8844 .2byte 0x8844 +80000e0e: 4401 .2byte 0x4401 +80000e10: 080c .2byte 0x80c +80000e12: 7c00 .2byte 0x7c00 +80000e14: 0cc8 .2byte 0xcc8 +80000e16: 2002 .2byte 0x2002 +80000e18: 0e44 .2byte 0xe44 +80000e1a: 0000 .2byte 0x0 +80000e1c: 0024 .2byte 0x24 +80000e1e: 0000 .2byte 0x0 +80000e20: 027c .2byte 0x27c +80000e22: 0000 .2byte 0x0 +80000e24: fba0 .2byte 0xfba0 +80000e26: ffff .2byte 0xffff +80000e28: 0110 .2byte 0x110 +80000e2a: 0000 .2byte 0x0 +80000e2c: 4400 .2byte 0x4400 +80000e2e: 300e .2byte 0x300e +80000e30: 8148 .2byte 0x8148 +80000e32: 8801 .2byte 0x8801 +80000e34: 4402 .2byte 0x4402 +80000e36: 080c .2byte 0x80c +80000e38: 0200 .2byte 0x200 +80000e3a: c1f4 .2byte 0xc1f4 +80000e3c: c844 .2byte 0xc844 +80000e3e: 020c .2byte 0x20c +80000e40: 4430 .2byte 0x4430 +80000e42: 000e .2byte 0xe +80000e44: 0020 .2byte 0x20 +80000e46: 0000 .2byte 0x0 +80000e48: 02a4 .2byte 0x2a4 +80000e4a: 0000 .2byte 0x0 +80000e4c: fc88 .2byte 0xfc88 +80000e4e: ffff .2byte 0xffff +80000e50: 0028 .2byte 0x28 +80000e52: 0000 .2byte 0x0 +80000e54: 4400 .2byte 0x4400 +80000e56: 200e .2byte 0x200e +80000e58: 8844 .2byte 0x8844 +80000e5a: 4401 .2byte 0x4401 +80000e5c: 080c .2byte 0x80c +80000e5e: 5400 .2byte 0x5400 +80000e60: 0cc8 .2byte 0xcc8 +80000e62: 2002 .2byte 0x2002 +80000e64: 0e44 .2byte 0xe44 +80000e66: 0000 .2byte 0x0 +80000e68: 0020 .2byte 0x20 +80000e6a: 0000 .2byte 0x0 +80000e6c: 02c8 .2byte 0x2c8 +80000e6e: 0000 .2byte 0x0 +80000e70: fc8c .2byte 0xfc8c +80000e72: ffff .2byte 0xffff +80000e74: 004c .2byte 0x4c +80000e76: 0000 .2byte 0x0 +80000e78: 4400 .2byte 0x4400 +80000e7a: 300e .2byte 0x300e +80000e7c: 8844 .2byte 0x8844 +80000e7e: 4401 .2byte 0x4401 +80000e80: 080c .2byte 0x80c +80000e82: 7800 .2byte 0x7800 +80000e84: 0cc8 .2byte 0xcc8 +80000e86: 3002 .2byte 0x3002 +80000e88: 0e44 .2byte 0xe44 + ... Disassembly of section .sdata: -80010020 <_ZL6allocp>: -80010020: 0024 .2byte 0x24 -80010022: 8001 .2byte 0x8001 +00010020 : + 10020: 0b64 .2byte 0xb64 + 10022: 8000 .2byte 0x8000 + +00010024 <_ZL6allocp>: + 10024: 0090 .2byte 0x90 + 10026: 0001 .2byte 0x1 + +00010028

: + 10028: 002c .2byte 0x2c + 1002a: 0001 .2byte 0x1 Disassembly of section .bss: -80010024 <_ZL8allocbuf>: +0001002c : + ... + +00010090 <_ZL8allocbuf>: + ... + +000127a0 <_ZZ13simple_strtokPcPKcE10static_str>: + 127a0: 0000 .2byte 0x0 ... Disassembly of section .comment: @@ -396,7 +1238,7 @@ Disassembly of section .riscv.attributes: 2: 0000 .2byte 0x0 4: 7200 .2byte 0x7200 6: 7369 .2byte 0x7369 - 8: 01007663 bgeu x0,x16,14 <_start-0x7fffffec> + 8: 01007663 bgeu x0,x16,14 <__DATA_BEGIN__-0xffec> c: 0011 .2byte 0x11 e: 0000 .2byte 0x0 10: 1004 .2byte 0x1004 @@ -432,21 +1274,59 @@ Disassembly of section .debug_aranges: 2e: 0000 .2byte 0x0 30: 0048 .2byte 0x48 32: 8000 .2byte 0x8000 - 34: 0194 .2byte 0x194 + 34: 04cc .2byte 0x4cc ... 3e: 0000 .2byte 0x0 40: 001c .2byte 0x1c 42: 0000 .2byte 0x0 44: 0002 .2byte 0x2 - 46: 0250 .2byte 0x250 + 46: 0358 .2byte 0x358 48: 0000 .2byte 0x0 4a: 0004 .2byte 0x4 4c: 0000 .2byte 0x0 4e: 0000 .2byte 0x0 - 50: 01dc .2byte 0x1dc + 50: 0514 .2byte 0x514 52: 8000 .2byte 0x8000 54: 0148 .2byte 0x148 ... + 5e: 0000 .2byte 0x0 + 60: 001c .2byte 0x1c + 62: 0000 .2byte 0x0 + 64: 0002 .2byte 0x2 + 66: 000004af .4byte 0x4af + 6a: 0004 .2byte 0x4 + 6c: 0000 .2byte 0x0 + 6e: 0000 .2byte 0x0 + 70: 065c .2byte 0x65c + 72: 8000 .2byte 0x8000 + 74: 015c .2byte 0x15c + ... + 7e: 0000 .2byte 0x0 + 80: 001c .2byte 0x1c + 82: 0000 .2byte 0x0 + 84: 0002 .2byte 0x2 + 86: 0631 .2byte 0x631 + 88: 0000 .2byte 0x0 + 8a: 0004 .2byte 0x4 + 8c: 0000 .2byte 0x0 + 8e: 0000 .2byte 0x0 + 90: 07b8 .2byte 0x7b8 + 92: 8000 .2byte 0x8000 + 94: 01bc .2byte 0x1bc + ... + 9e: 0000 .2byte 0x0 + a0: 001c .2byte 0x1c + a2: 0000 .2byte 0x0 + a4: 0002 .2byte 0x2 + a6: 0822 .2byte 0x822 + a8: 0000 .2byte 0x0 + aa: 0004 .2byte 0x4 + ac: 0000 .2byte 0x0 + ae: 0000 .2byte 0x0 + b0: 0974 .2byte 0x974 + b2: 8000 .2byte 0x8000 + b4: 01d4 .2byte 0x1d4 + ... Disassembly of section .debug_info: @@ -469,13 +1349,14 @@ Disassembly of section .debug_info: 1e: 001c .2byte 0x1c 20: 0000 .2byte 0x0 22: 8001 .2byte 0x8001 - 24: 0228 .2byte 0x228 + 24: 0330 .2byte 0x330 26: 0000 .2byte 0x0 28: 0005 .2byte 0x5 2a: 0401 .2byte 0x401 2c: 0014 .2byte 0x14 2e: 0000 .2byte 0x0 - 30: 001c990b .4byte 0x1c990b + 30: 3f0d .2byte 0x3f0d + 32: 0000 .2byte 0x0 34: 2100 .2byte 0x2100 36: 001c .2byte 0x1c 38: 0000 .2byte 0x0 @@ -483,412 +1364,1392 @@ Disassembly of section .debug_info: 3c: 0000 .2byte 0x0 3e: 0048 .2byte 0x48 40: 8000 .2byte 0x8000 - 42: 0194 .2byte 0x194 + 42: 04cc .2byte 0x4cc 44: 0000 .2byte 0x0 - 46: 008c .2byte 0x8c + 46: 0092 .2byte 0x92 48: 0000 .2byte 0x0 - 4a: 0000 .2byte 0x0 - 4c: 0000 .2byte 0x0 - 4e: 3d0c .2byte 0x3d0c - 50: 0035 .2byte 0x35 - 52: 0200 .2byte 0x200 - 54: 1722 .2byte 0x1722 - 56: 0036 .2byte 0x36 - 58: 0000 .2byte 0x0 - 5a: 0101 .2byte 0x101 - 5c: 5a06 .2byte 0x5a06 - 5e: 0025 .2byte 0x25 - 60: 0100 .2byte 0x100 - 62: 0502 .2byte 0x502 - 64: 0622 .2byte 0x622 - 66: 0000 .2byte 0x0 - 68: 0401 .2byte 0x401 - 6a: 2305 .2byte 0x2305 - 6c: 0024 .2byte 0x24 - 6e: 0100 .2byte 0x100 - 70: 0508 .2byte 0x508 - 72: 11d4 .2byte 0x11d4 + 4a: 7a04 .2byte 0x7a04 + 4c: 0001 .2byte 0x1 + 4e: 2200 .2byte 0x2200 + 50: 00003117 auipc x2,0x3 + 54: 0100 .2byte 0x100 + 56: 0601 .2byte 0x601 + 58: 00f0 .2byte 0xf0 + 5a: 0000 .2byte 0x0 + 5c: 0201 .2byte 0x201 + 5e: b705 .2byte 0xb705 + 60: 0001 .2byte 0x1 + 62: 0100 .2byte 0x100 + 64: 0504 .2byte 0x504 + 66: 01a4 .2byte 0x1a4 + 68: 0000 .2byte 0x0 + 6a: 0801 .2byte 0x801 + 6c: 9f05 .2byte 0x9f05 + 6e: 0001 .2byte 0x1 + 70: 0400 .2byte 0x400 + 72: 0179 .2byte 0x179 74: 0000 .2byte 0x0 - 76: 0101 .2byte 0x101 - 78: 2f08 .2byte 0x2f08 - 7a: 0019 .2byte 0x19 - 7c: 0100 .2byte 0x100 - 7e: 0702 .2byte 0x702 - 80: 00000493 addi x9,x0,0 - 84: 0401 .2byte 0x401 - 86: 00205607 .4byte 0x205607 - 8a: 0100 .2byte 0x100 - 8c: 0708 .2byte 0x708 - 8e: 2f65 .2byte 0x2f65 - 90: 0000 .2byte 0x0 - 92: 040d .2byte 0x40d - 94: 6905 .2byte 0x6905 - 96: 746e .2byte 0x746e - 98: 0100 .2byte 0x100 - 9a: 0704 .2byte 0x704 - 9c: 2c79 .2byte 0x2c79 - 9e: 0000 .2byte 0x0 - a0: 8d06 .2byte 0x8d06 - a2: 0000 .2byte 0x0 - a4: 8d00 .2byte 0x8d00 - a6: 0000 .2byte 0x0 - a8: 0e00 .2byte 0xe00 - aa: 0075 .2byte 0x75 - ac: 0000 .2byte 0x0 - ae: 0100270f .4byte 0x100270f - b2: 0801 .2byte 0x801 - b4: 2561 .2byte 0x2561 - b6: 0000 .2byte 0x0 - b8: dd04 .2byte 0xdd04 - ba: 1300000f .4byte 0x1300000f - be: 7c0d .2byte 0x7c0d - c0: 0000 .2byte 0x0 + 76: 182e .2byte 0x182e + 78: 0058 .2byte 0x58 + 7a: 0000 .2byte 0x0 + 7c: 0101 .2byte 0x101 + 7e: ee08 .2byte 0xee08 + 80: 0000 .2byte 0x0 + 82: 0100 .2byte 0x100 + 84: 0702 .2byte 0x702 + 86: 00000103 lb x2,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 8a: da04 .2byte 0xda04 + 8c: 0001 .2byte 0x1 + 8e: 3400 .2byte 0x3400 + 90: 7119 .2byte 0x7119 + 92: 0000 .2byte 0x0 + 94: 0100 .2byte 0x100 + 96: 0704 .2byte 0x704 + 98: 00000167 jalr x2,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 9c: 0801 .2byte 0x801 + 9e: 00016207 .4byte 0x16207 + a2: 0e00 .2byte 0xe00 + a4: 0504 .2byte 0x504 + a6: 6e69 .2byte 0x6e69 + a8: 0074 .2byte 0x74 + aa: 0401 .2byte 0x401 + ac: 00016c07 .4byte 0x16c07 + b0: 0f00 .2byte 0xf00 + b2: 003a .2byte 0x3a + b4: 0000 .2byte 0x0 + b6: 0a01 .2byte 0xa01 + b8: 9f09 .2byte 0x9f09 + ba: 0000 .2byte 0x0 + bc: 0500 .2byte 0x500 + be: 01002003 lw x0,16(x0) # 10 <__DATA_BEGIN__-0xfff0> c2: 0500 .2byte 0x500 - c4: 01002403 lw x8,16(x0) # 10 <_start-0x7ffffff0> - c8: 0480 .2byte 0x480 - ca: 1c68 .2byte 0x1c68 + c4: 00a4 .2byte 0xa4 + c6: 0000 .2byte 0x0 + c8: 0101 .2byte 0x101 + ca: f708 .2byte 0xf708 cc: 0000 .2byte 0x0 - ce: 0e14 .2byte 0xe14 - d0: 00b6 .2byte 0xb6 + ce: 1000 .2byte 0x1000 + d0: 00a4 .2byte 0xa4 d2: 0000 .2byte 0x0 - d4: 0305 .2byte 0x305 - d6: 0020 .2byte 0x20 - d8: 8001 .2byte 0x8001 - da: 00008d07 .4byte 0x8d07 - de: 0f00 .2byte 0xf00 - e0: 292d .2byte 0x292d - e2: 0000 .2byte 0x0 - e4: 2501 .2byte 0x2501 - e6: 6e05 .2byte 0x6e05 + d4: 0000a407 .4byte 0xa407 + d8: c100 .2byte 0xc100 + da: 0000 .2byte 0x0 + dc: 1100 .2byte 0x1100 + de: 0086 .2byte 0x86 + e0: 0000 .2byte 0x0 + e2: 0200270f .4byte 0x200270f + e6: 0116 .2byte 0x116 e8: 0000 .2byte 0x0 - ea: a000 .2byte 0xa000 - ec: 0001 .2byte 0x1 - ee: 3c80 .2byte 0x3c80 - f0: 0000 .2byte 0x0 - f2: 0100 .2byte 0x100 - f4: 9a9c .2byte 0x9a9c - f6: 0001 .2byte 0x1 - f8: 1000 .2byte 0x1000 - fa: 0079656b .4byte 0x79656b - fe: 0108 .2byte 0x108 - 100: 0c28 .2byte 0xc28 - 102: 016c .2byte 0x16c - 104: 0000 .2byte 0x0 - 106: 7611 .2byte 0x7611 - 108: 0010 .2byte 0x10 - 10a: ef00 .2byte 0xef00 - 10c: 0000 .2byte 0x0 - 10e: ff00 .2byte 0xff00 - 110: 0000 .2byte 0x0 - 112: 0200 .2byte 0x200 - 114: 00f4 .2byte 0xf4 - 116: 0000 .2byte 0x0 - 118: 0000d507 .4byte 0xd507 - 11c: 0200 .2byte 0x200 - 11e: 006e .2byte 0x6e - 120: 0000 .2byte 0x0 - 122: 0500 .2byte 0x500 - 124: 0079656b .4byte 0x79656b - 128: 010c .2byte 0x10c - 12a: 0000 .2byte 0x0 - 12c: 011d .2byte 0x11d + ea: 0d19 .2byte 0xd19 + ec: 00b0 .2byte 0xb0 + ee: 0000 .2byte 0x0 + f0: 0305 .2byte 0x305 + f2: 0090 .2byte 0x90 + f4: 0001 .2byte 0x1 + f6: 4402 .2byte 0x4402 + f8: 0001 .2byte 0x1 + fa: 1a00 .2byte 0x1a00 + fc: 9f0e .2byte 0x9f0e + fe: 0000 .2byte 0x0 + 100: 0500 .2byte 0x500 + 102: 01002403 lw x8,16(x0) # 10 <__DATA_BEGIN__-0xfff0> + 106: 1200 .2byte 0x1200 + 108: 01ce .2byte 0x1ce + 10a: 0000 .2byte 0x0 + 10c: 0108 .2byte 0x108 + 10e: 0830 .2byte 0x830 + 110: 00000107 .4byte 0x107 + 114: 7308 .2byte 0x7308 + 116: 7274 .2byte 0x7274 + 118: 3100 .2byte 0x3100 + 11a: 009f 0000 0800 .byte 0x9f, 0x00, 0x00, 0x00, 0x00, 0x08 + 120: 656c .2byte 0x656c + 122: 006e .2byte 0x6e + 124: 6632 .2byte 0x6632 + 126: 0000 .2byte 0x0 + 128: 0400 .2byte 0x400 + 12a: 0700 .2byte 0x700 + 12c: 00a4 .2byte 0xa4 12e: 0000 .2byte 0x0 - 130: f402 .2byte 0xf402 - 132: 0000 .2byte 0x0 - 134: 0800 .2byte 0x800 - 136: 0116 .2byte 0x116 - 138: 0000 .2byte 0x0 - 13a: 0412 .2byte 0x412 - 13c: 00d5 .2byte 0xd5 - 13e: 0000 .2byte 0x0 - 140: 0500 .2byte 0x500 - 142: 0079656b .4byte 0x79656b - 146: 012a .2byte 0x12a - 148: 0000 .2byte 0x0 - 14a: 0140 .2byte 0x140 - 14c: 0000 .2byte 0x0 - 14e: f402 .2byte 0xf402 - 150: 0000 .2byte 0x0 - 152: 0800 .2byte 0x800 - 154: 0134 .2byte 0x134 - 156: 0000 .2byte 0x0 - 158: 013a0413 addi x8,x20,19 - 15c: 0000 .2byte 0x0 - 15e: d514 .2byte 0xd514 - 160: 0000 .2byte 0x0 - 162: 0000 .2byte 0x0 - 164: 6b05 .2byte 0x6b05 - 166: 7965 .2byte 0x7965 - 168: 4d00 .2byte 0x4d00 - 16a: 0001 .2byte 0x1 - 16c: 5300 .2byte 0x5300 - 16e: 0001 .2byte 0x1 - 170: 0200 .2byte 0x200 - 172: 00f4 .2byte 0xf4 - 174: 0000 .2byte 0x0 - 176: 0900 .2byte 0x900 - 178: 25a1 .2byte 0x25a1 - 17a: 0000 .2byte 0x0 - 17c: 0f29 .2byte 0xf29 - 17e: 00b6 .2byte 0xb6 - 180: 0000 .2byte 0x0 - 182: 0900 .2byte 0x900 - 184: 0b42 .2byte 0xb42 - 186: 0000 .2byte 0x0 - 188: 102a .2byte 0x102a - 18a: 002a .2byte 0x2a - 18c: 0000 .2byte 0x0 - 18e: 0004 .2byte 0x4 - 190: d506 .2byte 0xd506 + 130: 00000117 auipc x2,0x0 + 134: 00008613 addi x12,x1,0 + 138: 6300 .2byte 0x6300 + 13a: 0900 .2byte 0x900 + 13c: 7562 .2byte 0x7562 + 13e: 0066 .2byte 0x66 + 140: 0671 .2byte 0x671 + 142: 00000107 .4byte 0x107 + 146: 0305 .2byte 0x305 + 148: 002c .2byte 0x2c + 14a: 0001 .2byte 0x1 + 14c: 7009 .2byte 0x7009 + 14e: 7200 .2byte 0x7200 + 150: 3710 .2byte 0x3710 + 152: 0001 .2byte 0x1 + 154: 0500 .2byte 0x500 + 156: 01002803 lw x16,16(x0) # 10 <__DATA_BEGIN__-0xfff0> + 15a: 0500 .2byte 0x500 + 15c: 000000e3 beq x0,x0,95c <__DATA_BEGIN__-0xf6a4> + 160: 3114 .2byte 0x3114 + 162: 0001 .2byte 0x1 + 164: 0100 .2byte 0x100 + 166: 0594 .2byte 0x594 + 168: 007f 0000 04d0 8000 .byte 0x7f, 0x00, 0x00, 0x00, 0xd0, 0x04, 0x00, 0x80, 0x44, 0x00 + 170: 0044 + 172: 0000 .2byte 0x0 + 174: 9c01 .2byte 0x9c01 + 176: 0165 .2byte 0x165 + 178: 0000 .2byte 0x0 + 17a: 7306 .2byte 0x7306 + 17c: 7274 .2byte 0x7274 + 17e: 9600 .2byte 0x9600 + 180: 00009f0b .4byte 0x9f0b + 184: 0200 .2byte 0x200 + 186: 6c91 .2byte 0x6c91 + 188: 1500 .2byte 0x1500 + 18a: 6c61 .2byte 0x6c61 + 18c: 76010067 jalr x0,1888(x2) # 890 <__DATA_BEGIN__-0xf770> + 190: c605 .2byte 0xc605 192: 0000 .2byte 0x0 - 194: 7c00 .2byte 0x7c00 - 196: 0001 .2byte 0x1 - 198: 1500 .2byte 0x1500 - 19a: 0075 .2byte 0x75 - 19c: 0000 .2byte 0x0 - 19e: 0009 .2byte 0x9 - 1a0: 2204 .2byte 0x2204 - 1a2: 2b00000f .4byte 0x2b00000f - 1a6: 00016c07 .4byte 0x16c07 - 1aa: 0300 .2byte 0x300 - 1ac: 9c91 .2byte 0x9c91 - 1ae: 0a7f 7450 0072 122d .byte 0x7f, 0x0a, 0x50, 0x74, 0x72, 0x00, 0x2d, 0x12, 0xf4, 0x00 - 1b6: 00f4 - 1b8: 0000 .2byte 0x0 - 1ba: 9102 .2byte 0x9102 - 1bc: 006c .2byte 0x6c - 1be: d916 .2byte 0xd916 - 1c0: 01000023 sb x16,0(x0) # 0 <_start-0x80000000> - 1c4: 0716 .2byte 0x716 - 1c6: 1b3d .2byte 0x1b3d - 1c8: 0000 .2byte 0x0 - 1ca: 00b6 .2byte 0xb6 - 1cc: 0000 .2byte 0x0 - 1ce: 00f4 .2byte 0xf4 - 1d0: 8000 .2byte 0x8000 - 1d2: 00ac .2byte 0xac - 1d4: 0000 .2byte 0x0 - 1d6: 9c01 .2byte 0x9c01 - 1d8: 01c5 .2byte 0x1c5 - 1da: 0000 .2byte 0x0 - 1dc: 16006e03 .4byte 0x16006e03 - 1e0: 6e11 .2byte 0x6e11 - 1e2: 0000 .2byte 0x0 - 1e4: 0200 .2byte 0x200 - 1e6: 6c91 .2byte 0x6c91 - 1e8: 1700 .2byte 0x1700 - 1ea: 0a3d .2byte 0xa3d - 1ec: 0000 .2byte 0x0 - 1ee: 0b01 .2byte 0xb01 - 1f0: cf06 .2byte 0xcf06 - 1f2: 9800000f .4byte 0x9800000f - 1f6: 0000 .2byte 0x0 - 1f8: 5c80 .2byte 0x5c80 + 194: 7f00 .2byte 0x7f00 + 196: 0000 .2byte 0x0 + 198: ac00 .2byte 0xac00 + 19a: 24800003 lb x0,584(x0) # 248 <__DATA_BEGIN__-0xfdb8> + 19e: 0001 .2byte 0x1 + 1a0: 0100 .2byte 0x100 + 1a2: ce9c .2byte 0xce9c + 1a4: 0001 .2byte 0x1 + 1a6: 0300 .2byte 0x300 + 1a8: 7470 .2byte 0x7470 + 1aa: 0072 .2byte 0x72 + 1ac: 1776 .2byte 0x1776 + 1ae: 01ce .2byte 0x1ce + 1b0: 0000 .2byte 0x0 + 1b2: 9104 .2byte 0x9104 + 1b4: b1cc .2byte 0xb1cc + 1b6: 027f 00e2 0000 0778 .byte 0x7f, 0x02, 0xe2, 0x00, 0x00, 0x00, 0x78, 0x07, 0xb0, 0x00 + 1be: 00b0 + 1c0: 0000 .2byte 0x0 + 1c2: 9104 .2byte 0x9104 + 1c4: b1d4 .2byte 0xb1d4 + 1c6: 027f 00db 0000 0e7b .byte 0x7f, 0x02, 0xdb, 0x00, 0x00, 0x00, 0x7b, 0x0e, 0xce, 0x01 + 1ce: 01ce + 1d0: 0000 .2byte 0x0 + 1d2: 9102 .2byte 0x9102 + 1d4: 0264 .2byte 0x264 + 1d6: 00d0 .2byte 0xd0 + 1d8: 0000 .2byte 0x0 + 1da: 0a7d .2byte 0xa7d + 1dc: 0026 .2byte 0x26 + 1de: 0000 .2byte 0x0 + 1e0: 9102 .2byte 0x9102 + 1e2: 0199026f jal x4,909fa <__BSS_END__+0x7e256> + 1e6: 0000 .2byte 0x0 + 1e8: 087f 009f 0000 9102 .byte 0x7f, 0x08, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x91, 0x68, 0x00 + 1f0: 0068 + 1f2: ab05 .2byte 0xab05 + 1f4: 0000 .2byte 0x0 + 1f6: 0a00 .2byte 0xa00 + 1f8: 0136 .2byte 0x136 1fa: 0000 .2byte 0x0 - 1fc: 0100 .2byte 0x100 - 1fe: f89c .2byte 0xf89c - 200: 0001 .2byte 0x1 - 202: 0300 .2byte 0x300 - 204: 130b0073 sfence.vma x22,x16 - 208: 00b6 .2byte 0xb6 - 20a: 0000 .2byte 0x0 - 20c: 9102 .2byte 0x9102 - 20e: 036c .2byte 0x36c - 210: 0074 .2byte 0x74 - 212: 00b61c0b .4byte 0xb61c0b - 216: 0000 .2byte 0x0 - 218: 9102 .2byte 0x9102 - 21a: 0068 .2byte 0x68 - 21c: 8418 .2byte 0x8418 - 21e: 0035 .2byte 0x35 - 220: 0100 .2byte 0x100 - 222: 0b580503 lb x10,181(x16) - 226: 0000 .2byte 0x0 - 228: 006e .2byte 0x6e - 22a: 0000 .2byte 0x0 - 22c: 0048 .2byte 0x48 - 22e: 8000 .2byte 0x8000 - 230: 0050 .2byte 0x50 + 1fc: 0749 .2byte 0x749 + 1fe: 0000014b .4byte 0x14b + 202: 009f 0000 024c .byte 0x9f, 0x00, 0x00, 0x00, 0x4c, 0x02 + 208: 8000 .2byte 0x8000 + 20a: 0160 .2byte 0x160 + 20c: 0000 .2byte 0x0 + 20e: 9c01 .2byte 0x9c01 + 210: 022c .2byte 0x22c + 212: 0000 .2byte 0x0 + 214: 72747303 .4byte 0x72747303 + 218: 4900 .2byte 0x4900 + 21a: 00009f1b .4byte 0x9f1b + 21e: 0200 .2byte 0x200 + 220: 5c91 .2byte 0x5c91 + 222: 0000db0b .4byte 0xdb0b + 226: 4900 .2byte 0x4900 + 228: ce2c .2byte 0xce2c + 22a: 0001 .2byte 0x1 + 22c: 0200 .2byte 0x200 + 22e: 5891 .2byte 0x5891 + 230: bb02 .2byte 0xbb02 232: 0000 .2byte 0x0 - 234: 9c01 .2byte 0x9c01 - 236: 03007303 .4byte 0x3007303 - 23a: b612 .2byte 0xb612 - 23c: 0000 .2byte 0x0 - 23e: 0200 .2byte 0x200 - 240: 5c91 .2byte 0x5c91 - 242: 700a .2byte 0x700a - 244: 0500 .2byte 0x500 - 246: b60c .2byte 0xb60c - 248: 0000 .2byte 0x0 - 24a: 0200 .2byte 0x200 - 24c: 6c91 .2byte 0x6c91 - 24e: 0000 .2byte 0x0 - 250: 00000157 .4byte 0x157 - 254: 0005 .2byte 0x5 - 256: 0401 .2byte 0x401 - 258: 0182 .2byte 0x182 - 25a: 0000 .2byte 0x0 - 25c: 001c9907 .4byte 0x1c9907 - 260: 2100 .2byte 0x2100 - 262: 0080 .2byte 0x80 + 234: 4a00 .2byte 0x4a00 + 236: 9f12 .2byte 0x9f12 + 238: 0000 .2byte 0x0 + 23a: 0500 .2byte 0x500 + 23c: 0127a003 lw x0,18(x15) + 240: 0200 .2byte 0x200 + 242: 0181 .2byte 0x181 + 244: 0000 .2byte 0x0 + 246: 0b5f 009f 0000 .byte 0x5f, 0x0b, 0x9f, 0x00, 0x00, 0x00 + 24c: 9102 .2byte 0x9102 + 24e: 006c .2byte 0x6c + 250: 1f0c .2byte 0x1f0c + 252: 0001 .2byte 0x1 + 254: 3e00 .2byte 0x3e00 + 256: 2a06 .2byte 0x2a06 + 258: 0000 .2byte 0x0 + 25a: 6400 .2byte 0x6400 + 25c: 0002 .2byte 0x2 + 25e: ec00 .2byte 0xec00 + 260: 0001 .2byte 0x1 + 262: 6080 .2byte 0x6080 264: 0000 .2byte 0x0 - 266: 0000 .2byte 0x0 - 268: 0000 .2byte 0x0 - 26a: 01dc .2byte 0x1dc - 26c: 8000 .2byte 0x8000 - 26e: 0148 .2byte 0x148 - 270: 0000 .2byte 0x0 - 272: 022c .2byte 0x22c + 266: 0100 .2byte 0x100 + 268: 649c .2byte 0x649c + 26a: 0002 .2byte 0x2 + 26c: 0300 .2byte 0x300 + 26e: 143e0063 beq x28,x3,3ae <__DATA_BEGIN__-0xfc52> + 272: 00a4 .2byte 0xa4 274: 0000 .2byte 0x0 - 276: 0c04 .2byte 0xc04 - 278: 0000 .2byte 0x0 - 27a: 0101 .2byte 0x101 - 27c: 5a06 .2byte 0x5a06 - 27e: 0025 .2byte 0x25 - 280: 0100 .2byte 0x100 - 282: 0502 .2byte 0x502 - 284: 0622 .2byte 0x622 - 286: 0000 .2byte 0x0 - 288: 0401 .2byte 0x401 - 28a: 2305 .2byte 0x2305 - 28c: 0024 .2byte 0x24 - 28e: 0100 .2byte 0x100 - 290: 0508 .2byte 0x508 - 292: 11d4 .2byte 0x11d4 - 294: 0000 .2byte 0x0 - 296: 3c08 .2byte 0x3c08 - 298: 0035 .2byte 0x35 - 29a: 0200 .2byte 0x200 - 29c: 182e .2byte 0x182e - 29e: 0052 .2byte 0x52 - 2a0: 0000 .2byte 0x0 - 2a2: 0101 .2byte 0x101 - 2a4: 2f08 .2byte 0x2f08 - 2a6: 0019 .2byte 0x19 - 2a8: 0100 .2byte 0x100 - 2aa: 0702 .2byte 0x702 - 2ac: 00000493 addi x9,x0,0 - 2b0: 0401 .2byte 0x401 - 2b2: 00205607 .4byte 0x205607 - 2b6: 0100 .2byte 0x100 - 2b8: 0708 .2byte 0x708 - 2ba: 2f65 .2byte 0x2f65 + 276: 9102 .2byte 0x9102 + 278: 00db0b6f jal x22,b0a84 <__BSS_END__+0x9e2e0> + 27c: 0000 .2byte 0x0 + 27e: 233e .2byte 0x233e + 280: 01ce .2byte 0x1ce + 282: 0000 .2byte 0x0 + 284: 9102 .2byte 0x9102 + 286: 0068 .2byte 0x68 + 288: 0101 .2byte 0x101 + 28a: d602 .2byte 0xd602 + 28c: 0000 .2byte 0x0 + 28e: 0c00 .2byte 0xc00 + 290: 00e8 .2byte 0xe8 + 292: 0000 .2byte 0x0 + 294: 071c .2byte 0x71c + 296: 01ad .2byte 0x1ad + 298: 0000 .2byte 0x0 + 29a: 009f 0000 0140 .byte 0x9f, 0x00, 0x00, 0x00, 0x40, 0x01 + 2a0: 8000 .2byte 0x8000 + 2a2: 00ac .2byte 0xac + 2a4: 0000 .2byte 0x0 + 2a6: 9c01 .2byte 0x9c01 + 2a8: 0295 .2byte 0x295 + 2aa: 0000 .2byte 0x0 + 2ac: 1c006e03 .4byte 0x1c006e03 + 2b0: 7f11 .2byte 0x7f11 + 2b2: 0000 .2byte 0x0 + 2b4: 0200 .2byte 0x200 + 2b6: 6c91 .2byte 0x6c91 + 2b8: 1600 .2byte 0x1600 + 2ba: 00fc .2byte 0xfc 2bc: 0000 .2byte 0x0 - 2be: 0409 .2byte 0x409 - 2c0: 6905 .2byte 0x6905 - 2c2: 746e .2byte 0x746e - 2c4: 0100 .2byte 0x100 - 2c6: 0704 .2byte 0x704 - 2c8: 2c79 .2byte 0x2c79 + 2be: 1301 .2byte 0x1301 + 2c0: ad06 .2byte 0xad06 + 2c2: 0000 .2byte 0x0 + 2c4: e400 .2byte 0xe400 + 2c6: 0000 .2byte 0x0 + 2c8: 5c80 .2byte 0x5c80 2ca: 0000 .2byte 0x0 - 2cc: 700a .2byte 0x700a - 2ce: 0035 .2byte 0x35 - 2d0: 0100 .2byte 0x100 - 2d2: 060c .2byte 0x60c - 2d4: 3544 .2byte 0x3544 - 2d6: 0000 .2byte 0x0 - 2d8: 0228 .2byte 0x228 - 2da: 8000 .2byte 0x8000 - 2dc: 00fc .2byte 0xfc - 2de: 0000 .2byte 0x0 - 2e0: 9c01 .2byte 0x9c01 - 2e2: 0111 .2byte 0x111 - 2e4: 0000 .2byte 0x0 - 2e6: 9102 .2byte 0x9102 - 2e8: 0035 .2byte 0x35 - 2ea: 2300 .2byte 0x2300 - 2ec: 0111 .2byte 0x111 - 2ee: 0000 .2byte 0x0 - 2f0: 9102 .2byte 0x9102 - 2f2: 025c .2byte 0x25c - 2f4: 352c .2byte 0x352c - 2f6: 0000 .2byte 0x0 - 2f8: 1138 .2byte 0x1138 - 2fa: 0001 .2byte 0x1 - 2fc: 0200 .2byte 0x200 - 2fe: 5891 .2byte 0x5891 - 300: 8b02 .2byte 0x8b02 - 302: 0035 .2byte 0x35 - 304: 4800 .2byte 0x4800 - 306: 0122 .2byte 0x122 - 308: 0000 .2byte 0x0 - 30a: 9102 .2byte 0x9102 - 30c: 0454 .2byte 0x454 - 30e: 3561 .2byte 0x3561 - 310: 0000 .2byte 0x0 - 312: 6e0e .2byte 0x6e0e - 314: 0000 .2byte 0x0 - 316: 0200 .2byte 0x200 - 318: 6091 .2byte 0x6091 - 31a: 0002540b .4byte 0x2540b - 31e: 3080 .2byte 0x3080 - 320: 0000 .2byte 0x0 - 322: e400 .2byte 0xe400 - 324: 0000 .2byte 0x0 - 326: 0300 .2byte 0x300 - 328: 0069 .2byte 0x69 - 32a: 0e10 .2byte 0xe10 - 32c: 006e .2byte 0x6e + 2cc: 0100 .2byte 0x100 + 2ce: c89c .2byte 0xc89c + 2d0: 0002 .2byte 0x2 + 2d2: 0300 .2byte 0x300 + 2d4: 13130073 sfence.vma x6,x17 + 2d8: 009f 0000 9102 .byte 0x9f, 0x00, 0x00, 0x00, 0x02, 0x91 + 2de: 036c .2byte 0x36c + 2e0: 0074 .2byte 0x74 + 2e2: 009f1c13 slli x24,x30,0x9 + 2e6: 0000 .2byte 0x0 + 2e8: 9102 .2byte 0x9102 + 2ea: 0068 .2byte 0x68 + 2ec: 280a .2byte 0x280a + 2ee: 0001 .2byte 0x1 + 2f0: 0b00 .2byte 0xb00 + 2f2: c105 .2byte 0xc105 + 2f4: 0001 .2byte 0x1 + 2f6: 7f00 .2byte 0x7f00 + 2f8: 0000 .2byte 0x0 + 2fa: 9800 .2byte 0x9800 + 2fc: 0000 .2byte 0x0 + 2fe: 4c80 .2byte 0x4c80 + 300: 0000 .2byte 0x0 + 302: 0100 .2byte 0x100 + 304: 009c .2byte 0x9c + 306: 06000003 lb x0,96(x0) # 60 <__DATA_BEGIN__-0xffa0> + 30a: 080c0073 .4byte 0x80c0073 + 30e: 009f 0000 9102 .byte 0x9f, 0x00, 0x00, 0x00, 0x02, 0x91 + 314: 026c .2byte 0x26c + 316: 01d4 .2byte 0x1d4 + 318: 0000 .2byte 0x0 + 31a: 004d0c0f .4byte 0x4d0c0f + 31e: 0000 .2byte 0x0 + 320: 9102 .2byte 0x9102 + 322: 2017006b .4byte 0x2017006b + 326: 0002 .2byte 0x2 + 328: 0100 .2byte 0x100 + 32a: 018d0503 lb x10,24(x26) 32e: 0000 .2byte 0x0 - 330: 9102 .2byte 0x9102 - 332: 006c .2byte 0x6c - 334: 8405 .2byte 0x8405 - 336: 0002 .2byte 0x2 - 338: 8880 .2byte 0x8880 + 330: 007f 0000 0048 8000 .byte 0x7f, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x80, 0x50, 0x00 + 338: 0050 33a: 0000 .2byte 0x0 - 33c: 0300 .2byte 0x300 - 33e: 0069 .2byte 0x69 - 340: 0e14 .2byte 0xe14 - 342: 006e .2byte 0x6e + 33c: 9c01 .2byte 0x9c01 + 33e: 03007303 .4byte 0x3007303 + 342: 9f12 .2byte 0x9f12 344: 0000 .2byte 0x0 - 346: 9102 .2byte 0x9102 - 348: 0568 .2byte 0x568 - 34a: 028c .2byte 0x28c - 34c: 8000 .2byte 0x8000 - 34e: 0068 .2byte 0x68 - 350: 0000 .2byte 0x0 - 352: 15006a03 .4byte 0x15006a03 - 356: 6e12 .2byte 0x6e12 - 358: 0000 .2byte 0x0 - 35a: 0200 .2byte 0x200 - 35c: 6491 .2byte 0x6491 - 35e: 0000 .2byte 0x0 - 360: 0600 .2byte 0x600 - 362: 011d .2byte 0x11d - 364: 0000 .2byte 0x0 - 366: 0101 .2byte 0x101 - 368: 6108 .2byte 0x6108 - 36a: 0025 .2byte 0x25 - 36c: 0c00 .2byte 0xc00 - 36e: 0116 .2byte 0x116 + 346: 0200 .2byte 0x200 + 348: 5c91 .2byte 0x5c91 + 34a: 7006 .2byte 0x7006 + 34c: 0400 .2byte 0x400 + 34e: 00009f0b .4byte 0x9f0b + 352: 0200 .2byte 0x200 + 354: 6c91 .2byte 0x6c91 + 356: 0000 .2byte 0x0 + 358: 00000153 .4byte 0x153 + 35c: 0005 .2byte 0x5 + 35e: 0401 .2byte 0x401 + 360: 000001b7 lui x3,0x0 + 364: 00003f07 .4byte 0x3f07 + 368: 2100 .2byte 0x2100 + 36a: 00000077 .4byte 0x77 + 36e: 0000 .2byte 0x0 370: 0000 .2byte 0x0 - 372: 4606 .2byte 0x4606 - 374: 0000 .2byte 0x0 - 376: 0d00 .2byte 0xd00 - 378: 3581 .2byte 0x3581 - 37a: 0000 .2byte 0x0 - 37c: 0401 .2byte 0x401 - 37e: 6e0c .2byte 0x6e0c - 380: 0000 .2byte 0x0 - 382: dc00 .2byte 0xdc00 - 384: 0001 .2byte 0x1 - 386: 4c80 .2byte 0x4c80 - 388: 0000 .2byte 0x0 - 38a: 0100 .2byte 0x100 - 38c: 0e9c .2byte 0xe9c - 38e: 00727473 .4byte 0x727473 - 392: 0401 .2byte 0x401 - 394: 1122 .2byte 0x1122 - 396: 0001 .2byte 0x1 - 398: 0200 .2byte 0x200 - 39a: 5c91 .2byte 0x5c91 - 39c: 6904 .2byte 0x6904 - 39e: 0035 .2byte 0x35 - 3a0: 0500 .2byte 0x500 - 3a2: 006e .2byte 0x6e + 372: 0514 .2byte 0x514 + 374: 8000 .2byte 0x8000 + 376: 0148 .2byte 0x148 + 378: 0000 .2byte 0x0 + 37a: 00000487 .4byte 0x487 + 37e: 0101 .2byte 0x101 + 380: f006 .2byte 0xf006 + 382: 0000 .2byte 0x0 + 384: 0100 .2byte 0x100 + 386: 0502 .2byte 0x502 + 388: 000001b7 lui x3,0x0 + 38c: 0401 .2byte 0x401 + 38e: a405 .2byte 0xa405 + 390: 0001 .2byte 0x1 + 392: 0100 .2byte 0x100 + 394: 0508 .2byte 0x508 + 396: 019f 0000 7908 .byte 0x9f, 0x01, 0x00, 0x00, 0x08, 0x79 + 39c: 0001 .2byte 0x1 + 39e: 0200 .2byte 0x200 + 3a0: 182e .2byte 0x182e + 3a2: 004e .2byte 0x4e 3a4: 0000 .2byte 0x0 - 3a6: 9102 .2byte 0x9102 - 3a8: 006c .2byte 0x6c + 3a6: 0101 .2byte 0x101 + 3a8: ee08 .2byte 0xee08 + 3aa: 0000 .2byte 0x0 + 3ac: 0100 .2byte 0x100 + 3ae: 0702 .2byte 0x702 + 3b0: 00000103 lb x2,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 3b4: 0401 .2byte 0x401 + 3b6: 00016707 .4byte 0x16707 + 3ba: 0100 .2byte 0x100 + 3bc: 0708 .2byte 0x708 + 3be: 0162 .2byte 0x162 + 3c0: 0000 .2byte 0x0 + 3c2: 0409 .2byte 0x409 + 3c4: 6905 .2byte 0x6905 + 3c6: 746e .2byte 0x746e + 3c8: 0100 .2byte 0x100 + 3ca: 0704 .2byte 0x704 + 3cc: 016c .2byte 0x16c + 3ce: 0000 .2byte 0x0 + 3d0: 270a .2byte 0x270a + 3d2: 0002 .2byte 0x2 + 3d4: 0100 .2byte 0x100 + 3d6: 060c .2byte 0x60c + 3d8: 01f2 .2byte 0x1f2 + 3da: 0000 .2byte 0x0 + 3dc: 0560 .2byte 0x560 + 3de: 8000 .2byte 0x8000 + 3e0: 00fc .2byte 0xfc + 3e2: 0000 .2byte 0x0 + 3e4: 9c01 .2byte 0x9c01 + 3e6: 010d .2byte 0x10d + 3e8: 0000 .2byte 0x0 + 3ea: 0f02 .2byte 0xf02 + 3ec: 0002 .2byte 0x2 + 3ee: 2300 .2byte 0x2300 + 3f0: 010d .2byte 0x10d + 3f2: 0000 .2byte 0x0 + 3f4: 9102 .2byte 0x9102 + 3f6: 025c .2byte 0x25c + 3f8: 00000217 auipc x4,0x0 + 3fc: 0d38 .2byte 0xd38 + 3fe: 0001 .2byte 0x1 + 400: 0200 .2byte 0x200 + 402: 5891 .2byte 0x5891 + 404: d402 .2byte 0xd402 + 406: 0001 .2byte 0x1 + 408: 4800 .2byte 0x4800 + 40a: 011e .2byte 0x11e + 40c: 0000 .2byte 0x0 + 40e: 9102 .2byte 0x9102 + 410: 0454 .2byte 0x454 + 412: 000001e3 beq x0,x0,c14 <__DATA_BEGIN__-0xf3ec> + 416: 6a0e .2byte 0x6a0e + 418: 0000 .2byte 0x0 + 41a: 0200 .2byte 0x200 + 41c: 6091 .2byte 0x6091 + 41e: 00058c0b .4byte 0x58c0b + 422: 3080 .2byte 0x3080 + 424: 0000 .2byte 0x0 + 426: e000 .2byte 0xe000 + 428: 0000 .2byte 0x0 + 42a: 0300 .2byte 0x300 + 42c: 0069 .2byte 0x69 + 42e: 0e10 .2byte 0xe10 + 430: 006a .2byte 0x6a + 432: 0000 .2byte 0x0 + 434: 9102 .2byte 0x9102 + 436: 006c .2byte 0x6c + 438: bc05 .2byte 0xbc05 + 43a: 0005 .2byte 0x5 + 43c: 8880 .2byte 0x8880 + 43e: 0000 .2byte 0x0 + 440: 0300 .2byte 0x300 + 442: 0069 .2byte 0x69 + 444: 0e14 .2byte 0xe14 + 446: 006a .2byte 0x6a + 448: 0000 .2byte 0x0 + 44a: 9102 .2byte 0x9102 + 44c: 0568 .2byte 0x568 + 44e: 05c4 .2byte 0x5c4 + 450: 8000 .2byte 0x8000 + 452: 0068 .2byte 0x68 + 454: 0000 .2byte 0x0 + 456: 15006a03 .4byte 0x15006a03 + 45a: 6a12 .2byte 0x6a12 + 45c: 0000 .2byte 0x0 + 45e: 0200 .2byte 0x200 + 460: 6491 .2byte 0x6491 + 462: 0000 .2byte 0x0 + 464: 0600 .2byte 0x600 + 466: 0119 .2byte 0x119 + 468: 0000 .2byte 0x0 + 46a: 0101 .2byte 0x101 + 46c: f708 .2byte 0xf708 + 46e: 0000 .2byte 0x0 + 470: 0c00 .2byte 0xc00 + 472: 0112 .2byte 0x112 + 474: 0000 .2byte 0x0 + 476: 4206 .2byte 0x4206 + 478: 0000 .2byte 0x0 + 47a: 0d00 .2byte 0xd00 + 47c: 021d .2byte 0x21d + 47e: 0000 .2byte 0x0 + 480: 0401 .2byte 0x401 + 482: 6a0c .2byte 0x6a0c + 484: 0000 .2byte 0x0 + 486: 1400 .2byte 0x1400 + 488: 0005 .2byte 0x5 + 48a: 4c80 .2byte 0x4c80 + 48c: 0000 .2byte 0x0 + 48e: 0100 .2byte 0x100 + 490: 0e9c .2byte 0xe9c + 492: 00727473 .4byte 0x727473 + 496: 0401 .2byte 0x401 + 498: 0d22 .2byte 0xd22 + 49a: 0001 .2byte 0x1 + 49c: 0200 .2byte 0x200 + 49e: 5c91 .2byte 0x5c91 + 4a0: eb04 .2byte 0xeb04 + 4a2: 0001 .2byte 0x1 + 4a4: 0500 .2byte 0x500 + 4a6: 006a .2byte 0x6a + 4a8: 0000 .2byte 0x0 + 4aa: 9102 .2byte 0x9102 + 4ac: 006c .2byte 0x6c + 4ae: 7e00 .2byte 0x7e00 + 4b0: 0001 .2byte 0x1 + 4b2: 0500 .2byte 0x500 + 4b4: 0100 .2byte 0x100 + 4b6: 9004 .2byte 0x9004 + 4b8: 0002 .2byte 0x2 + 4ba: 0800 .2byte 0x800 + 4bc: 0000003f 00008221 .8byte 0x82210000003f + 4c4: 0000 .2byte 0x0 + 4c6: 0000 .2byte 0x0 + 4c8: 5c00 .2byte 0x5c00 + 4ca: 0006 .2byte 0x6 + 4cc: 5c80 .2byte 0x5c80 + 4ce: 0001 .2byte 0x1 + 4d0: 2200 .2byte 0x2200 + 4d2: 0006 .2byte 0x6 + 4d4: 0100 .2byte 0x100 + 4d6: 0601 .2byte 0x601 + 4d8: 00f0 .2byte 0xf0 + 4da: 0000 .2byte 0x0 + 4dc: 0201 .2byte 0x201 + 4de: b705 .2byte 0xb705 + 4e0: 0001 .2byte 0x1 + 4e2: 0100 .2byte 0x100 + 4e4: 0504 .2byte 0x504 + 4e6: 01a4 .2byte 0x1a4 + 4e8: 0000 .2byte 0x0 + 4ea: 0801 .2byte 0x801 + 4ec: 9f05 .2byte 0x9f05 + 4ee: 0001 .2byte 0x1 + 4f0: 0500 .2byte 0x500 + 4f2: 0179 .2byte 0x179 + 4f4: 0000 .2byte 0x0 + 4f6: 4e182e03 lw x28,1249(x16) + 4fa: 0000 .2byte 0x0 + 4fc: 0100 .2byte 0x100 + 4fe: 0801 .2byte 0x801 + 500: 00ee .2byte 0xee + 502: 0000 .2byte 0x0 + 504: 0201 .2byte 0x201 + 506: 00010307 .4byte 0x10307 + 50a: 0100 .2byte 0x100 + 50c: 0704 .2byte 0x704 + 50e: 00000167 jalr x2,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 512: 0801 .2byte 0x801 + 514: 00016207 .4byte 0x16207 + 518: 0900 .2byte 0x900 + 51a: 0504 .2byte 0x504 + 51c: 6e69 .2byte 0x6e69 + 51e: 0074 .2byte 0x74 + 520: 0401 .2byte 0x401 + 522: 00016c07 .4byte 0x16c07 + 526: 0a00 .2byte 0xa00 + 528: 020c .2byte 0x20c + 52a: 1006 .2byte 0x1006 + 52c: 025c .2byte 0x25c + 52e: 0000 .2byte 0x0 + 530: 00aa .2byte 0xaa + 532: 0000 .2byte 0x0 + 534: 0f02 .2byte 0xf02 + 536: 0002 .2byte 0x2 + 538: 0700 .2byte 0x700 + 53a: aa11 .2byte 0xaa11 + 53c: 0000 .2byte 0x0 + 53e: 0000 .2byte 0x0 + 540: 1702 .2byte 0x1702 + 542: 0002 .2byte 0x2 + 544: 0800 .2byte 0x800 + 546: aa11 .2byte 0xaa11 + 548: 0000 .2byte 0x0 + 54a: 0400 .2byte 0x400 + 54c: d402 .2byte 0xd402 + 54e: 0001 .2byte 0x1 + 550: 0900 .2byte 0x900 + 552: bb0e .2byte 0xbb0e + 554: 0000 .2byte 0x0 + 556: 0800 .2byte 0x800 + 558: 0300 .2byte 0x300 + 55a: 00b6 .2byte 0xb6 + 55c: 0000 .2byte 0x0 + 55e: 0101 .2byte 0x101 + 560: f708 .2byte 0xf708 + 562: 0000 .2byte 0x0 + 564: 0b00 .2byte 0xb00 + 566: 000000af .4byte 0xaf + 56a: 00004203 lbu x4,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 56e: 0500 .2byte 0x500 + 570: 025e .2byte 0x25e + 572: 0000 .2byte 0x0 + 574: 0a02 .2byte 0xa02 + 576: 00007803 .4byte 0x7803 + 57a: 0c00 .2byte 0xc00 + 57c: 026d .2byte 0x26d + 57e: 0000 .2byte 0x0 + 580: 0d01 .2byte 0xd01 + 582: 4106 .2byte 0x4106 + 584: 0002 .2byte 0x2 + 586: a800 .2byte 0xa800 + 588: 0006 .2byte 0x6 + 58a: 1080 .2byte 0x1080 + 58c: 0001 .2byte 0x1 + 58e: 0100 .2byte 0x100 + 590: 499c .2byte 0x499c + 592: 0001 .2byte 0x1 + 594: 0d00 .2byte 0xd00 + 596: 0238 .2byte 0x238 + 598: 0000 .2byte 0x0 + 59a: 0d01 .2byte 0xd01 + 59c: 492d .2byte 0x492d + 59e: 0001 .2byte 0x1 + 5a0: 0200 .2byte 0x200 + 5a2: 5c91 .2byte 0x5c91 + 5a4: e306 .2byte 0xe306 + 5a6: 0001 .2byte 0x1 + 5a8: 0e00 .2byte 0xe00 + 5aa: 006a .2byte 0x6a + 5ac: 0000 .2byte 0x0 + 5ae: 9102 .2byte 0x9102 + 5b0: 0e60 .2byte 0xe60 + 5b2: 06d4 .2byte 0x6d4 + 5b4: 8000 .2byte 0x8000 + 5b6: 0034 .2byte 0x34 + 5b8: 0000 .2byte 0x0 + 5ba: 011c .2byte 0x11c + 5bc: 0000 .2byte 0x0 + 5be: 6904 .2byte 0x6904 + 5c0: 1100 .2byte 0x1100 + 5c2: 6a0e .2byte 0x6a0e + 5c4: 0000 .2byte 0x0 + 5c6: 0200 .2byte 0x200 + 5c8: 6c91 .2byte 0x6c91 + 5ca: 0700 .2byte 0x700 + 5cc: 0708 .2byte 0x708 + 5ce: 8000 .2byte 0x8000 + 5d0: 0098 .2byte 0x98 + 5d2: 0000 .2byte 0x0 + 5d4: 6904 .2byte 0x6904 + 5d6: 1600 .2byte 0x1600 + 5d8: 6a0e .2byte 0x6a0e + 5da: 0000 .2byte 0x0 + 5dc: 0200 .2byte 0x200 + 5de: 6891 .2byte 0x6891 + 5e0: 00071007 .4byte 0x71007 + 5e4: 7880 .2byte 0x7880 + 5e6: 0000 .2byte 0x0 + 5e8: 0400 .2byte 0x400 + 5ea: 006a .2byte 0x6a + 5ec: 006a1217 auipc x4,0x6a1 + 5f0: 0000 .2byte 0x0 + 5f2: 9102 .2byte 0x9102 + 5f4: 0064 .2byte 0x64 + 5f6: 0000 .2byte 0x0 + 5f8: 0000c003 lbu x0,0(x1) + 5fc: 0f00 .2byte 0xf00 + 5fe: 021d .2byte 0x21d + 600: 0000 .2byte 0x0 + 602: 0401 .2byte 0x401 + 604: 6a0c .2byte 0x6a0c + 606: 0000 .2byte 0x0 + 608: 5c00 .2byte 0x5c00 + 60a: 0006 .2byte 0x6 + 60c: 4c80 .2byte 0x4c80 + 60e: 0000 .2byte 0x0 + 610: 0100 .2byte 0x100 + 612: 109c .2byte 0x109c + 614: 00727473 .4byte 0x727473 + 618: 0401 .2byte 0x401 + 61a: aa22 .2byte 0xaa22 + 61c: 0000 .2byte 0x0 + 61e: 0200 .2byte 0x200 + 620: 5c91 .2byte 0x5c91 + 622: eb06 .2byte 0xeb06 + 624: 0001 .2byte 0x1 + 626: 0500 .2byte 0x500 + 628: 006a .2byte 0x6a + 62a: 0000 .2byte 0x0 + 62c: 9102 .2byte 0x9102 + 62e: 006c .2byte 0x6c + 630: ed00 .2byte 0xed00 + 632: 0001 .2byte 0x1 + 634: 0500 .2byte 0x500 + 636: 0100 .2byte 0x100 + 638: 8a04 .2byte 0x8a04 + 63a: 09000003 lb x0,144(x0) # 90 <__DATA_BEGIN__-0xff70> + 63e: 0000003f 0000a221 .8byte 0xa2210000003f + 646: 0000 .2byte 0x0 + 648: 0000 .2byte 0x0 + 64a: b800 .2byte 0xb800 + 64c: bc800007 .4byte 0xbc800007 + 650: 0001 .2byte 0x1 + 652: f200 .2byte 0xf200 + 654: 01000007 .4byte 0x1000007 + 658: 0601 .2byte 0x601 + 65a: 00f0 .2byte 0xf0 + 65c: 0000 .2byte 0x0 + 65e: 0201 .2byte 0x201 + 660: b705 .2byte 0xb705 + 662: 0001 .2byte 0x1 + 664: 0100 .2byte 0x100 + 666: 0504 .2byte 0x504 + 668: 01a4 .2byte 0x1a4 + 66a: 0000 .2byte 0x0 + 66c: 0801 .2byte 0x801 + 66e: 9f05 .2byte 0x9f05 + 670: 0001 .2byte 0x1 + 672: 0600 .2byte 0x600 + 674: 0179 .2byte 0x179 + 676: 0000 .2byte 0x0 + 678: 2e02 .2byte 0x2e02 + 67a: 4e18 .2byte 0x4e18 + 67c: 0000 .2byte 0x0 + 67e: 0100 .2byte 0x100 + 680: 0801 .2byte 0x801 + 682: 00ee .2byte 0xee + 684: 0000 .2byte 0x0 + 686: 0201 .2byte 0x201 + 688: 00010307 .4byte 0x10307 + 68c: 0100 .2byte 0x100 + 68e: 0704 .2byte 0x704 + 690: 00000167 jalr x2,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 694: 0801 .2byte 0x801 + 696: 00016207 .4byte 0x16207 + 69a: 0a00 .2byte 0xa00 + 69c: 0504 .2byte 0x504 + 69e: 6e69 .2byte 0x6e69 + 6a0: 0074 .2byte 0x74 + 6a2: 0401 .2byte 0x401 + 6a4: 00016c07 .4byte 0x16c07 + 6a8: 0600 .2byte 0x600 + 6aa: 02e4 .2byte 0x2e4 + 6ac: 0000 .2byte 0x0 + 6ae: 84220603 lb x12,-1982(x4) # 6a0e2e <__BSS_END__+0x68e68a> + 6b2: 0000 .2byte 0x0 + 6b4: 0b00 .2byte 0xb00 + 6b6: 02e4 .2byte 0x2e4 + 6b8: 0000 .2byte 0x0 + 6ba: 0310 .2byte 0x310 + 6bc: 0808 .2byte 0x808 + 6be: 00c2 .2byte 0xc2 + 6c0: 0000 .2byte 0x0 + 6c2: 0f04 .2byte 0xf04 + 6c4: 0002 .2byte 0x2 + 6c6: 0a00 .2byte 0xa00 + 6c8: c211 .2byte 0xc211 + 6ca: 0000 .2byte 0x0 + 6cc: 0000 .2byte 0x0 + 6ce: 1704 .2byte 0x1704 + 6d0: 0002 .2byte 0x2 + 6d2: 0b00 .2byte 0xb00 + 6d4: c211 .2byte 0xc211 + 6d6: 0000 .2byte 0x0 + 6d8: 0400 .2byte 0x400 + 6da: d404 .2byte 0xd404 + 6dc: 0001 .2byte 0x1 + 6de: 0c00 .2byte 0xc00 + 6e0: d30e .2byte 0xd30e + 6e2: 0000 .2byte 0x0 + 6e4: 0800 .2byte 0x800 + 6e6: 2704 .2byte 0x2704 + 6e8: 0002 .2byte 0x2 + 6ea: 0f00 .2byte 0xf00 + 6ec: e80c .2byte 0xe80c + 6ee: 0000 .2byte 0x0 + 6f0: 0c00 .2byte 0xc00 + 6f2: 0200 .2byte 0x200 + 6f4: 00ce .2byte 0xce + 6f6: 0000 .2byte 0x0 + 6f8: 0101 .2byte 0x101 + 6fa: f708 .2byte 0xf708 + 6fc: 0000 .2byte 0x0 + 6fe: 0c00 .2byte 0xc00 + 700: 000000c7 .4byte 0xc7 + 704: 4202 .2byte 0x4202 + 706: 0000 .2byte 0x0 + 708: 0d00 .2byte 0xd00 + 70a: 000000e3 beq x0,x0,f0a <__DATA_BEGIN__-0xf0f6> + 70e: e30e .2byte 0xe30e + 710: 0000 .2byte 0x0 + 712: 0000 .2byte 0x0 + 714: 8402 .2byte 0x8402 + 716: 0000 .2byte 0x0 + 718: 0200 .2byte 0x200 + 71a: 00d8 .2byte 0xd8 + 71c: 0000 .2byte 0x0 + 71e: 0002da0f .4byte 0x2da0f + 722: 0100 .2byte 0x100 + 724: 0620 .2byte 0x620 + 726: 029e .2byte 0x29e + 728: 0000 .2byte 0x0 + 72a: 0914 .2byte 0x914 + 72c: 8000 .2byte 0x8000 + 72e: 0060 .2byte 0x60 + 730: 0000 .2byte 0x0 + 732: 9c01 .2byte 0x9c01 + 734: 0140 .2byte 0x140 + 736: 0000 .2byte 0x0 + 738: 00023803 .4byte 0x23803 + 73c: 2000 .2byte 0x2000 + 73e: 4035 .2byte 0x4035 + 740: 0001 .2byte 0x1 + 742: 0200 .2byte 0x200 + 744: 6c91 .2byte 0x6c91 + 746: 00020f03 lb x30,0(x4) # 0 <__DATA_BEGIN__-0x10000> + 74a: 2000 .2byte 0x2000 + 74c: 0000c24b .4byte 0xc24b + 750: 0200 .2byte 0x200 + 752: 6891 .2byte 0x6891 + 754: 00021703 lh x14,0(x4) # 0 <__DATA_BEGIN__-0x10000> + 758: 2000 .2byte 0x2000 + 75a: c260 .2byte 0xc260 + 75c: 0000 .2byte 0x0 + 75e: 0200 .2byte 0x200 + 760: 6491 .2byte 0x6491 + 762: 0001d403 lhu x8,0(x3) # 0 <__DATA_BEGIN__-0x10000> + 766: 2000 .2byte 0x2000 + 768: d370 .2byte 0xd370 + 76a: 0000 .2byte 0x0 + 76c: 0200 .2byte 0x200 + 76e: 6091 .2byte 0x6091 + 770: 0200 .2byte 0x200 + 772: 0078 .2byte 0x78 + 774: 0000 .2byte 0x0 + 776: 8410 .2byte 0x8410 + 778: 0002 .2byte 0x2 + 77a: 0100 .2byte 0x100 + 77c: 0d0d .2byte 0xd0d + 77e: 0804 .2byte 0x804 + 780: 8000 .2byte 0x8000 + 782: 0110 .2byte 0x110 + 784: 0000 .2byte 0x0 + 786: 9c01 .2byte 0x9c01 + 788: 01bd .2byte 0x1bd + 78a: 0000 .2byte 0x0 + 78c: 00023803 .4byte 0x23803 + 790: 0d00 .2byte 0xd00 + 792: 403a .2byte 0x403a + 794: 0001 .2byte 0x1 + 796: 0200 .2byte 0x200 + 798: 5c91 .2byte 0x5c91 + 79a: 0001e307 .4byte 0x1e307 + 79e: 0e00 .2byte 0xe00 + 7a0: 006a .2byte 0x6a + 7a2: 0000 .2byte 0x0 + 7a4: 9102 .2byte 0x9102 + 7a6: 1160 .2byte 0x1160 + 7a8: 0830 .2byte 0x830 + 7aa: 8000 .2byte 0x8000 + 7ac: 0034 .2byte 0x34 + 7ae: 0000 .2byte 0x0 + 7b0: 0190 .2byte 0x190 + 7b2: 0000 .2byte 0x0 + 7b4: 6905 .2byte 0x6905 + 7b6: 1100 .2byte 0x1100 + 7b8: 6a0e .2byte 0x6a0e + 7ba: 0000 .2byte 0x0 + 7bc: 0200 .2byte 0x200 + 7be: 6c91 .2byte 0x6c91 + 7c0: 0800 .2byte 0x800 + 7c2: 0864 .2byte 0x864 + 7c4: 8000 .2byte 0x8000 + 7c6: 0098 .2byte 0x98 + 7c8: 0000 .2byte 0x0 + 7ca: 6905 .2byte 0x6905 + 7cc: 1600 .2byte 0x1600 + 7ce: 6a0e .2byte 0x6a0e + 7d0: 0000 .2byte 0x0 + 7d2: 0200 .2byte 0x200 + 7d4: 6891 .2byte 0x6891 + 7d6: 6c08 .2byte 0x6c08 + 7d8: 0008 .2byte 0x8 + 7da: 7880 .2byte 0x7880 + 7dc: 0000 .2byte 0x0 + 7de: 0500 .2byte 0x500 + 7e0: 006a .2byte 0x6a + 7e2: 006a1217 auipc x4,0x6a1 + 7e6: 0000 .2byte 0x0 + 7e8: 9102 .2byte 0x9102 + 7ea: 0064 .2byte 0x64 + 7ec: 0000 .2byte 0x0 + 7ee: 1d12 .2byte 0x1d12 + 7f0: 0002 .2byte 0x2 + 7f2: 0100 .2byte 0x100 + 7f4: 0c04 .2byte 0xc04 + 7f6: 006a .2byte 0x6a + 7f8: 0000 .2byte 0x0 + 7fa: 07b8 .2byte 0x7b8 + 7fc: 8000 .2byte 0x8000 + 7fe: 004c .2byte 0x4c + 800: 0000 .2byte 0x0 + 802: 9c01 .2byte 0x9c01 + 804: 72747313 andi x6,x8,1831 + 808: 0100 .2byte 0x100 + 80a: 2204 .2byte 0x2204 + 80c: 00c2 .2byte 0xc2 + 80e: 0000 .2byte 0x0 + 810: 9102 .2byte 0x9102 + 812: 075c .2byte 0x75c + 814: 000001eb .4byte 0x1eb + 818: 6a05 .2byte 0x6a05 + 81a: 0000 .2byte 0x0 + 81c: 0200 .2byte 0x200 + 81e: 6c91 .2byte 0x6c91 + 820: 0000 .2byte 0x0 + 822: 0479 .2byte 0x479 + 824: 0000 .2byte 0x0 + 826: 0005 .2byte 0x5 + 828: 0401 .2byte 0x401 + 82a: 04aa .2byte 0x4aa + 82c: 0000 .2byte 0x0 + 82e: 3f10 .2byte 0x3f10 + 830: 0000 .2byte 0x0 + 832: 2100 .2byte 0x2100 + 834: 00c8 .2byte 0xc8 + 836: 0000 .2byte 0x0 + 838: 0000 .2byte 0x0 + 83a: 0000 .2byte 0x0 + 83c: 0974 .2byte 0x974 + 83e: 8000 .2byte 0x8000 + 840: 01d4 .2byte 0x1d4 + 842: 0000 .2byte 0x0 + 844: 09f0 .2byte 0x9f0 + 846: 0000 .2byte 0x0 + 848: 7a01 .2byte 0x7a01 + 84a: 0001 .2byte 0x1 + 84c: 2200 .2byte 0x2200 + 84e: 00003117 auipc x2,0x3 + 852: 0300 .2byte 0x300 + 854: 0601 .2byte 0x601 + 856: 00f0 .2byte 0xf0 + 858: 0000 .2byte 0x0 + 85a: fc01 .2byte 0xfc01 + 85c: 25000003 lb x0,592(x0) # 250 <__DATA_BEGIN__-0xfdb0> + 860: 4318 .2byte 0x4318 + 862: 0000 .2byte 0x0 + 864: 0300 .2byte 0x300 + 866: 0502 .2byte 0x502 + 868: 000001b7 lui x3,0x0 + 86c: db01 .2byte 0xdb01 + 86e: 0001 .2byte 0x1 + 870: 2800 .2byte 0x2800 + 872: 5518 .2byte 0x5518 + 874: 0000 .2byte 0x0 + 876: 0300 .2byte 0x300 + 878: 0504 .2byte 0x504 + 87a: 01a4 .2byte 0x1a4 + 87c: 0000 .2byte 0x0 + 87e: 3c01 .2byte 0x3c01 + 880: 2b000003 lb x0,688(x0) # 2b0 <__DATA_BEGIN__-0xfd50> + 884: 6718 .2byte 0x6718 + 886: 0000 .2byte 0x0 + 888: 0300 .2byte 0x300 + 88a: 0508 .2byte 0x508 + 88c: 019f 0000 7901 .byte 0x9f, 0x01, 0x00, 0x00, 0x01, 0x79 + 892: 0001 .2byte 0x1 + 894: 2e00 .2byte 0x2e00 + 896: 7e18 .2byte 0x7e18 + 898: 0000 .2byte 0x0 + 89a: 0400 .2byte 0x400 + 89c: 006e .2byte 0x6e + 89e: 0000 .2byte 0x0 + 8a0: ee080103 lb x2,-288(x16) + 8a4: 0000 .2byte 0x0 + 8a6: 0100 .2byte 0x100 + 8a8: 000003fb .4byte 0x3fb + 8ac: 1931 .2byte 0x1931 + 8ae: 0090 .2byte 0x90 + 8b0: 0000 .2byte 0x0 + 8b2: 03070203 lb x4,48(x14) + 8b6: 0001 .2byte 0x1 + 8b8: 0100 .2byte 0x100 + 8ba: 01da .2byte 0x1da + 8bc: 0000 .2byte 0x0 + 8be: 1934 .2byte 0x1934 + 8c0: 00a2 .2byte 0xa2 + 8c2: 0000 .2byte 0x0 + 8c4: 67070403 lb x8,1648(x14) + 8c8: 0001 .2byte 0x1 + 8ca: 0100 .2byte 0x100 + 8cc: 0000033b .4byte 0x33b + 8d0: 00b41937 lui x18,0xb41 + 8d4: 0000 .2byte 0x0 + 8d6: 62070803 lb x16,1568(x14) + 8da: 0001 .2byte 0x1 + 8dc: 0100 .2byte 0x100 + 8de: 000003a3 sb x0,7(x0) # 7 <__DATA_BEGIN__-0xfff9> + 8e2: 1d3c .2byte 0x1d3c + 8e4: 0031 .2byte 0x31 + 8e6: 0000 .2byte 0x0 + 8e8: 9401 .2byte 0x9401 + 8ea: 3d000003 lb x0,976(x0) # 3d0 <__DATA_BEGIN__-0xfc30> + 8ee: 431e .2byte 0x431e + 8f0: 0000 .2byte 0x0 + 8f2: 0100 .2byte 0x100 + 8f4: 031d .2byte 0x31d + 8f6: 0000 .2byte 0x0 + 8f8: 1e3e .2byte 0x1e3e + 8fa: 0055 .2byte 0x55 + 8fc: 0000 .2byte 0x0 + 8fe: f701 .2byte 0xf701 + 900: 0002 .2byte 0x2 + 902: 3f00 .2byte 0x3f00 + 904: 671e .2byte 0x671e + 906: 0000 .2byte 0x0 + 908: 0100 .2byte 0x100 + 90a: 03a2 .2byte 0x3a2 + 90c: 0000 .2byte 0x0 + 90e: 1e40 .2byte 0x1e40 + 910: 007e .2byte 0x7e + 912: 0000 .2byte 0x0 + 914: 9301 .2byte 0x9301 + 916: 41000003 lb x0,1040(x0) # 410 <__DATA_BEGIN__-0xfbf0> + 91a: 901f 0000 0100 .byte 0x1f, 0x90, 0x00, 0x00, 0x00, 0x01 + 920: 031c .2byte 0x31c + 922: 0000 .2byte 0x0 + 924: 1f42 .2byte 0x1f42 + 926: 00a2 .2byte 0xa2 + 928: 0000 .2byte 0x0 + 92a: f601 .2byte 0xf601 + 92c: 0002 .2byte 0x2 + 92e: 4300 .2byte 0x4300 + 930: b41f 0000 0100 .byte 0x1f, 0xb4, 0x00, 0x00, 0x00, 0x01 + 936: 0310 .2byte 0x310 + 938: 0000 .2byte 0x0 + 93a: 011e1c47 .4byte 0x11e1c47 + 93e: 0000 .2byte 0x0 + 940: 0411 .2byte 0x411 + 942: 6905 .2byte 0x6905 + 944: 746e .2byte 0x746e + 946: 0100 .2byte 0x100 + 948: 000003d3 .4byte 0x3d3 + 94c: 1d48 .2byte 0x1d48 + 94e: 011e .2byte 0x11e + 950: 0000 .2byte 0x0 + 952: 5f01 .2byte 0x5f01 + 954: 49000003 lb x0,1168(x0) # 490 <__DATA_BEGIN__-0xfb70> + 958: 1e1d .2byte 0x1e1d + 95a: 0001 .2byte 0x1 + 95c: 0100 .2byte 0x100 + 95e: 041e .2byte 0x41e + 960: 0000 .2byte 0x0 + 962: 1d4a .2byte 0x1d4a + 964: 00000067 jalr x0,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 968: 0f01 .2byte 0xf01 + 96a: 4b000003 lb x0,1200(x0) # 4b0 <__DATA_BEGIN__-0xfb50> + 96e: 511d .2byte 0x511d + 970: 0001 .2byte 0x1 + 972: 0300 .2byte 0x300 + 974: 0704 .2byte 0x704 + 976: 016c .2byte 0x16c + 978: 0000 .2byte 0x0 + 97a: d201 .2byte 0xd201 + 97c: 4c000003 lb x0,1216(x0) # 4c0 <__DATA_BEGIN__-0xfb40> + 980: 511e .2byte 0x511e + 982: 0001 .2byte 0x1 + 984: 0100 .2byte 0x100 + 986: 035e .2byte 0x35e + 988: 0000 .2byte 0x0 + 98a: 1e4d .2byte 0x1e4d + 98c: 0151 .2byte 0x151 + 98e: 0000 .2byte 0x0 + 990: 1d01 .2byte 0x1d01 + 992: 0004 .2byte 0x4 + 994: 4e00 .2byte 0x4e00 + 996: b41e .2byte 0xb41e + 998: 0000 .2byte 0x0 + 99a: 0100 .2byte 0x100 + 99c: 0306 .2byte 0x306 + 99e: 0000 .2byte 0x0 + 9a0: 011e1953 .4byte 0x11e1953 + 9a4: 0000 .2byte 0x0 + 9a6: 0501 .2byte 0x501 + 9a8: 56000003 lb x0,1376(x0) # 560 <__DATA_BEGIN__-0xfaa0> + 9ac: 511a .2byte 0x511a + 9ae: 0001 .2byte 0x1 + 9b0: 0100 .2byte 0x100 + 9b2: 036d .2byte 0x36d + 9b4: 0000 .2byte 0x0 + 9b6: 0067195b .4byte 0x67195b + 9ba: 0000 .2byte 0x0 + 9bc: 6c01 .2byte 0x6c01 + 9be: 5c000003 lb x0,1472(x0) # 5c0 <__DATA_BEGIN__-0xfa40> + 9c2: b41a .2byte 0xb41a + 9c4: 0000 .2byte 0x0 + 9c6: 1200 .2byte 0x1200 + 9c8: 00647473 .4byte 0x647473 + 9cc: 2805 .2byte 0x2805 + 9ce: 0b01 .2byte 0xb01 + 9d0: 0000025b .4byte 0x25b + 9d4: 2f02 .2byte 0x2f02 + 9d6: 0026 .2byte 0x26 + 9d8: 0000 .2byte 0x0 + 9da: 3002 .2byte 0x3002 + 9dc: 0038 .2byte 0x38 + 9de: 0000 .2byte 0x0 + 9e0: 3102 .2byte 0x3102 + 9e2: 004a .2byte 0x4a + 9e4: 0000 .2byte 0x0 + 9e6: 3202 .2byte 0x3202 + 9e8: 005c .2byte 0x5c + 9ea: 0000 .2byte 0x0 + 9ec: 3402 .2byte 0x3402 + 9ee: 00000113 addi x2,x0,0 + 9f2: 3502 .2byte 0x3502 + 9f4: 0125 .2byte 0x125 + 9f6: 0000 .2byte 0x0 + 9f8: 3602 .2byte 0x3602 + 9fa: 0130 .2byte 0x130 + 9fc: 0000 .2byte 0x0 + 9fe: 3702 .2byte 0x3702 + a00: 0000013b .4byte 0x13b + a04: 3902 .2byte 0x3902 + a06: 000000bb .4byte 0xbb + a0a: 3a02 .2byte 0x3a02 + a0c: 00c6 .2byte 0xc6 + a0e: 0000 .2byte 0x0 + a10: 3b02 .2byte 0x3b02 + a12: 00d1 .2byte 0xd1 + a14: 0000 .2byte 0x0 + a16: 3c02 .2byte 0x3c02 + a18: 00dc .2byte 0xdc + a1a: 0000 .2byte 0x0 + a1c: 3e02 .2byte 0x3e02 + a1e: 0000018f .4byte 0x18f + a22: 3f02 .2byte 0x3f02 + a24: 0179 .2byte 0x179 + a26: 0000 .2byte 0x0 + a28: 4102 .2byte 0x4102 + a2a: 006e .2byte 0x6e + a2c: 0000 .2byte 0x0 + a2e: 4202 .2byte 0x4202 + a30: 0085 .2byte 0x85 + a32: 0000 .2byte 0x0 + a34: 4302 .2byte 0x4302 + a36: 00000097 auipc x1,0x0 + a3a: 4402 .2byte 0x4402 + a3c: 00a9 .2byte 0xa9 + a3e: 0000 .2byte 0x0 + a40: 4602 .2byte 0x4602 + a42: 0146 .2byte 0x146 + a44: 0000 .2byte 0x0 + a46: 4702 .2byte 0x4702 + a48: 0158 .2byte 0x158 + a4a: 0000 .2byte 0x0 + a4c: 4802 .2byte 0x4802 + a4e: 00000163 beq x0,x0,a50 <__DATA_BEGIN__-0xf5b0> + a52: 4902 .2byte 0x4902 + a54: 016e .2byte 0x16e + a56: 0000 .2byte 0x0 + a58: 4b02 .2byte 0x4b02 + a5a: 000000e7 jalr x1,0(x0) # 0 <__DATA_BEGIN__-0x10000> + a5e: 4c02 .2byte 0x4c02 + a60: 00f2 .2byte 0xf2 + a62: 0000 .2byte 0x0 + a64: 4d02 .2byte 0x4d02 + a66: 00fd .2byte 0xfd + a68: 0000 .2byte 0x0 + a6a: 4e02 .2byte 0x4e02 + a6c: 0108 .2byte 0x108 + a6e: 0000 .2byte 0x0 + a70: 5002 .2byte 0x5002 + a72: 019a .2byte 0x19a + a74: 0000 .2byte 0x0 + a76: 5102 .2byte 0x5102 + a78: 0184 .2byte 0x184 + a7a: 0000 .2byte 0x0 + a7c: 1300 .2byte 0x1300 + a7e: 0000034f .4byte 0x34f + a82: 040c .2byte 0x40c + a84: 0706 .2byte 0x706 + a86: 00000303 lb x6,0(x0) # 0 <__DATA_BEGIN__-0x10000> + a8a: 4f0c .2byte 0x4f0c + a8c: 08000003 lb x0,128(x0) # 80 <__DATA_BEGIN__-0xff80> + a90: b905 .2byte 0xb905 + a92: 7b000003 lb x0,1968(x0) # 7b0 <__DATA_BEGIN__-0xf850> + a96: 0002 .2byte 0x2 + a98: 9000 .2byte 0x9000 + a9a: 0002 .2byte 0x2 + a9c: 0800 .2byte 0x800 + a9e: 0308 .2byte 0x308 + aa0: 0000 .2byte 0x0 + aa2: 1206 .2byte 0x1206 + aa4: 06000003 lb x0,96(x0) # 60 <__DATA_BEGIN__-0xffa0> + aa8: 0312 .2byte 0x312 + aaa: 0000 .2byte 0x0 + aac: 2306 .2byte 0x2306 + aae: 00000003 lb x0,0(x0) # 0 <__DATA_BEGIN__-0x10000> + ab2: 2b0c .2byte 0x2b0c + ab4: 0a000003 lb x0,160(x0) # a0 <__DATA_BEGIN__-0xff60> + ab8: 2b0a .2byte 0x2b0a + aba: 0004 .2byte 0x4 + abc: a300 .2byte 0xa300 + abe: 0002 .2byte 0x2 + ac0: a900 .2byte 0xa900 + ac2: 0002 .2byte 0x2 + ac4: 0800 .2byte 0x800 + ac6: 0308 .2byte 0x308 + ac8: 0000 .2byte 0x0 + aca: 1400 .2byte 0x1400 + acc: 0344 .2byte 0x344 + ace: 0000 .2byte 0x0 + ad0: 0c04 .2byte 0xc04 + ad2: 7614 .2byte 0x7614 + ad4: 28000003 lb x0,640(x0) # 280 <__DATA_BEGIN__-0xfd80> + ad8: 01000003 lb x0,16(x0) # 10 <__DATA_BEGIN__-0xfff0> + adc: 02c2 .2byte 0x2c2 + ade: 0000 .2byte 0x0 + ae0: 02c8 .2byte 0x2c8 + ae2: 0000 .2byte 0x0 + ae4: 2d08 .2byte 0x2d08 + ae6: 00000003 lb x0,0(x0) # 0 <__DATA_BEGIN__-0x10000> + aea: 0f09 .2byte 0xf09 + aec: 0002 .2byte 0x2 + aee: 0f00 .2byte 0xf00 + af0: 1211 .2byte 0x1211 + af2: 00000003 lb x0,0(x0) # 0 <__DATA_BEGIN__-0x10000> + af6: 1709 .2byte 0x1709 + af8: 0002 .2byte 0x2 + afa: 1000 .2byte 0x1000 + afc: 1211 .2byte 0x1211 + afe: 04000003 lb x0,64(x0) # 40 <__DATA_BEGIN__-0xffc0> + b02: d409 .2byte 0xd409 + b04: 0001 .2byte 0x1 + b06: 1100 .2byte 0x1100 + b08: 230e .2byte 0x230e + b0a: 08000003 lb x0,128(x0) # 80 <__DATA_BEGIN__-0xff80> + b0e: b015 .2byte 0xb015 + b10: 04000003 lb x0,64(x0) # 40 <__DATA_BEGIN__-0xffc0> + b14: 03e01013 slli x0,x0,0x3e + b18: 0000 .2byte 0x0 + b1a: 011e .2byte 0x11e + b1c: 0000 .2byte 0x0 + b1e: 1206 .2byte 0x1206 + b20: 00000003 lb x0,0(x0) # 0 <__DATA_BEGIN__-0x10000> + b24: 0400 .2byte 0x400 + b26: 0000025b .4byte 0x25b + b2a: 5b05 .2byte 0x5b05 + b2c: 0002 .2byte 0x2 + b2e: 0400 .2byte 0x400 + b30: 0308 .2byte 0x308 + b32: 0000 .2byte 0x0 + b34: 1e05 .2byte 0x1e05 + b36: 03000003 lb x0,48(x0) # 30 <__DATA_BEGIN__-0xffd0> + b3a: 0801 .2byte 0x801 + b3c: 000000f7 .4byte 0xf7 + b40: 1704 .2byte 0x1704 + b42: 05000003 lb x0,80(x0) # 50 <__DATA_BEGIN__-0xffb0> + b46: 006e .2byte 0x6e + b48: 0000 .2byte 0x0 + b4a: 7905 .2byte 0x7905 + b4c: 0000 .2byte 0x0 + b4e: 0500 .2byte 0x500 + b50: 00000303 lb x6,0(x0) # 0 <__DATA_BEGIN__-0x10000> + b54: 2d04 .2byte 0x2d04 + b56: 16000003 lb x0,352(x0) # 160 <__DATA_BEGIN__-0xfea0> + b5a: 02ec .2byte 0x2ec + b5c: 0000 .2byte 0x0 + b5e: 1b01 .2byte 0x1b01 + b60: fc05 .2byte 0xfc05 + b62: 000a .2byte 0xa + b64: 4c80 .2byte 0x4c80 + b66: 0000 .2byte 0x0 + b68: 0100 .2byte 0x100 + b6a: 6a9c .2byte 0x6a9c + b6c: 17000003 lb x0,368(x0) # 170 <__DATA_BEGIN__-0xfe90> + b70: 00727473 .4byte 0x727473 + b74: 1b01 .2byte 0x1b01 + b76: 1225 .2byte 0x1225 + b78: 02000003 lb x0,32(x0) # 20 <__DATA_BEGIN__-0xffe0> + b7c: 5c91 .2byte 0x5c91 + b7e: eb0d .2byte 0xeb0d + b80: 0001 .2byte 0x1 + b82: 1c00 .2byte 0x1c00 + b84: 011e .2byte 0x11e + b86: 0000 .2byte 0x0 + b88: 9102 .2byte 0x9102 + b8a: 006c .2byte 0x6c + b8c: a918 .2byte 0xa918 + b8e: 0002 .2byte 0x2 + b90: 0100 .2byte 0x100 + b92: 03841017 auipc x0,0x3841 + b96: 0000 .2byte 0x0 + b98: 0ad4 .2byte 0xad4 + b9a: 8000 .2byte 0x8000 + b9c: 0028 .2byte 0x28 + b9e: 0000 .2byte 0x0 + ba0: 9c01 .2byte 0x9c01 + ba2: 0391 .2byte 0x391 + ba4: 0000 .2byte 0x0 + ba6: 590e .2byte 0x590e + ba8: 32000003 lb x0,800(x0) # 320 <__DATA_BEGIN__-0xfce0> + bac: 02000003 lb x0,32(x0) # 20 <__DATA_BEGIN__-0xffe0> + bb0: 6c91 .2byte 0x6c91 + bb2: 1900 .2byte 0x1900 + bb4: 0290 .2byte 0x290 + bb6: 0000 .2byte 0x0 + bb8: 0701 .2byte 0x701 + bba: ab06 .2byte 0xab06 + bbc: c4000003 lb x0,-960(x0) # fffffc40 + bc0: 0009 .2byte 0x9 + bc2: 1080 .2byte 0x1080 + bc4: 0001 .2byte 0x1 + bc6: 0100 .2byte 0x100 + bc8: 0b9c .2byte 0xb9c + bca: 0004 .2byte 0x4 + bcc: 0e00 .2byte 0xe00 + bce: 0359 .2byte 0x359 + bd0: 0000 .2byte 0x0 + bd2: 030d .2byte 0x30d + bd4: 0000 .2byte 0x0 + bd6: 9102 .2byte 0x9102 + bd8: 0d5c .2byte 0xd5c + bda: 000001e3 beq x0,x0,13dc <__DATA_BEGIN__-0xec24> + bde: 1e08 .2byte 0x1e08 + be0: 0001 .2byte 0x1 + be2: 0200 .2byte 0x200 + be4: 6091 .2byte 0x6091 + be6: f01a .2byte 0xf01a + be8: 0009 .2byte 0x9 + bea: 3480 .2byte 0x3480 + bec: 0000 .2byte 0x0 + bee: de00 .2byte 0xde00 + bf0: 0a000003 lb x0,160(x0) # a0 <__DATA_BEGIN__-0xff60> + bf4: 0069 .2byte 0x69 + bf6: 0e0a .2byte 0xe0a + bf8: 011e .2byte 0x11e + bfa: 0000 .2byte 0x0 + bfc: 9102 .2byte 0x9102 + bfe: 006c .2byte 0x6c + c00: 000a240f .4byte 0xa240f + c04: 9880 .2byte 0x9880 + c06: 0000 .2byte 0x0 + c08: 0a00 .2byte 0xa00 + c0a: 0069 .2byte 0x69 + c0c: 0e0e .2byte 0xe0e + c0e: 011e .2byte 0x11e + c10: 0000 .2byte 0x0 + c12: 9102 .2byte 0x9102 + c14: 0f68 .2byte 0xf68 + c16: 0a2c .2byte 0xa2c + c18: 8000 .2byte 0x8000 + c1a: 0078 .2byte 0x78 + c1c: 0000 .2byte 0x0 + c1e: 6a0a .2byte 0x6a0a + c20: 0f00 .2byte 0xf00 + c22: 1e12 .2byte 0x1e12 + c24: 0001 .2byte 0x1 + c26: 0200 .2byte 0x200 + c28: 6491 .2byte 0x6491 + c2a: 0000 .2byte 0x0 + c2c: 1b00 .2byte 0x1b00 + c2e: 0268 .2byte 0x268 + c30: 0000 .2byte 0x0 + c32: 0301 .2byte 0x301 + c34: 1c01 .2byte 0x1c01 + c36: 0004 .2byte 0x4 + c38: 0000 .2byte 0x0 + c3a: 0444 .2byte 0x444 + c3c: 0000 .2byte 0x0 + c3e: 591c .2byte 0x591c + c40: 0d000003 lb x0,208(x0) # d0 <__DATA_BEGIN__-0xff30> + c44: 0b000003 lb x0,176(x0) # b0 <__DATA_BEGIN__-0xff50> + c48: 0000020f .4byte 0x20f + c4c: 1222 .2byte 0x1222 + c4e: 0b000003 lb x0,176(x0) # b0 <__DATA_BEGIN__-0xff50> + c52: 00000217 auipc x4,0x0 + c56: 00031237 lui x4,0x31 + c5a: 0b00 .2byte 0xb00 + c5c: 01d4 .2byte 0x1d4 + c5e: 0000 .2byte 0x0 + c60: 00032347 .4byte 0x32347 + c64: 0000 .2byte 0x0 + c66: 0b1d .2byte 0xb1d + c68: 0004 .2byte 0x4 + c6a: 0400 .2byte 0x400 + c6c: 0004 .2byte 0x4 + c6e: 5b00 .2byte 0x5b00 + c70: 0004 .2byte 0x4 + c72: 7400 .2byte 0x7400 + c74: 0009 .2byte 0x9 + c76: 5080 .2byte 0x5080 + c78: 0000 .2byte 0x0 + c7a: 0100 .2byte 0x100 + c7c: 079c .2byte 0x79c + c7e: 041c .2byte 0x41c + c80: 0000 .2byte 0x0 + c82: 9102 .2byte 0x9102 + c84: 076c .2byte 0x76c + c86: 0425 .2byte 0x425 + c88: 0000 .2byte 0x0 + c8a: 9102 .2byte 0x9102 + c8c: 0768 .2byte 0x768 + c8e: 0000042f .4byte 0x42f + c92: 9102 .2byte 0x9102 + c94: 0764 .2byte 0x764 + c96: 0439 .2byte 0x439 + c98: 0000 .2byte 0x0 + c9a: 9102 .2byte 0x9102 + c9c: 0060 .2byte 0x60 ... Disassembly of section .debug_abbrev: @@ -907,234 +2768,606 @@ Disassembly of section .debug_abbrev: 18: 030b3e0b .4byte 0x30b3e0b 1c: 000e .2byte 0xe 1e: 0200 .2byte 0x200 - 20: 0005 .2byte 0x5 - 22: 1349 .2byte 0x1349 - 24: 1934 .2byte 0x1934 - 26: 0000 .2byte 0x0 - 28: 03000503 lb x10,48(x0) # 30 <_start-0x7fffffd0> - 2c: 3a08 .2byte 0x3a08 - 2e: 0121 .2byte 0x121 - 30: 0b390b3b .4byte 0xb390b3b - 34: 1349 .2byte 0x1349 - 36: 1802 .2byte 0x1802 - 38: 0000 .2byte 0x0 - 3a: 3404 .2byte 0x3404 - 3c: 0300 .2byte 0x300 - 3e: 3a0e .2byte 0x3a0e - 40: 0121 .2byte 0x121 - 42: 0b390b3b .4byte 0xb390b3b - 46: 1349 .2byte 0x1349 - 48: 1802 .2byte 0x1802 - 4a: 0000 .2byte 0x0 - 4c: 2e05 .2byte 0x2e05 - 4e: 0301 .2byte 0x301 - 50: 3408 .2byte 0x3408 - 52: 3c19 .2byte 0x3c19 - 54: 6419 .2byte 0x6419 - 56: 00130113 addi x2,x6,1 - 5a: 0600 .2byte 0x600 - 5c: 0101 .2byte 0x101 - 5e: 1349 .2byte 0x1349 - 60: 1301 .2byte 0x1301 - 62: 0000 .2byte 0x0 - 64: 0b000f07 .4byte 0xb000f07 - 68: 0421 .2byte 0x421 - 6a: 1349 .2byte 0x1349 - 6c: 0000 .2byte 0x0 - 6e: 0508 .2byte 0x508 - 70: 4900 .2byte 0x4900 - 72: 09000013 addi x0,x0,144 - 76: 000d .2byte 0xd - 78: 213a0e03 lb x28,531(x20) - 7c: 3b01 .2byte 0x3b01 - 7e: 490b390b .4byte 0x490b390b - 82: 000b3813 sltiu x16,x22,0 - 86: 0a00 .2byte 0xa00 - 88: 0034 .2byte 0x34 - 8a: 213a0803 lb x16,531(x20) - 8e: 3b01 .2byte 0x3b01 - 90: 490b390b .4byte 0x490b390b - 94: 00180213 addi x4,x16,1 - 98: 0b00 .2byte 0xb00 - 9a: 0111 .2byte 0x111 - 9c: 0e25 .2byte 0xe25 - 9e: 1f030b13 addi x22,x6,496 - a2: 01111f1b .4byte 0x1111f1b - a6: 0612 .2byte 0x612 - a8: 1710 .2byte 0x1710 - aa: 1779 .2byte 0x1779 - ac: 0000 .2byte 0x0 - ae: 160c .2byte 0x160c - b0: 0300 .2byte 0x300 - b2: 3a0e .2byte 0x3a0e - b4: 390b3b0b .4byte 0x390b3b0b - b8: 0013490b .4byte 0x13490b - bc: 0d00 .2byte 0xd00 - be: 0024 .2byte 0x24 - c0: 0b3e0b0b .4byte 0xb3e0b0b - c4: 00000803 lb x16,0(x0) # 0 <_start-0x80000000> - c8: 210e .2byte 0x210e - ca: 4900 .2byte 0x4900 - cc: 00052f13 slti x30,x10,0 - d0: 0f00 .2byte 0xf00 - d2: 012e .2byte 0x12e - d4: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f - dc: 0b39 .2byte 0xb39 - de: 1349 .2byte 0x1349 - e0: 0111 .2byte 0x111 - e2: 0612 .2byte 0x612 - e4: 1840 .2byte 0x1840 - e6: 197c .2byte 0x197c - e8: 1301 .2byte 0x1301 - ea: 0000 .2byte 0x0 - ec: 1310 .2byte 0x1310 - ee: 0301 .2byte 0x301 - f0: 0b08 .2byte 0xb08 - f2: 3b0b3a0b .4byte 0x3b0b3a0b - f6: 010b390b .4byte 0x10b390b - fa: 11000013 addi x0,x0,272 - fe: 012e .2byte 0x12e - 100: 19340e03 lb x28,403(x8) - 104: 193c .2byte 0x193c - 106: 1364 .2byte 0x1364 - 108: 1301 .2byte 0x1301 - 10a: 0000 .2byte 0x0 - 10c: 4212 .2byte 0x4212 - 10e: 0b00 .2byte 0xb00 - 110: 0013490b .4byte 0x13490b - 114: 1300 .2byte 0x1300 - 116: 0010 .2byte 0x10 - 118: 13490b0b .4byte 0x13490b0b - 11c: 0000 .2byte 0x0 - 11e: 2614 .2byte 0x2614 + 20: 0034 .2byte 0x34 + 22: 213a0e03 lb x28,531(x20) + 26: 3b01 .2byte 0x3b01 + 28: 490b390b .4byte 0x490b390b + 2c: 00180213 addi x4,x16,1 + 30: 0300 .2byte 0x300 + 32: 0005 .2byte 0x5 + 34: 213a0803 lb x16,531(x20) + 38: 3b01 .2byte 0x3b01 + 3a: 490b390b .4byte 0x490b390b + 3e: 00180213 addi x4,x16,1 + 42: 0400 .2byte 0x400 + 44: 0016 .2byte 0x16 + 46: 213a0e03 lb x28,531(x20) + 4a: 3b02 .2byte 0x3b02 + 4c: 490b390b .4byte 0x490b390b + 50: 05000013 addi x0,x0,80 + 54: 210b000f .4byte 0x210b000f + 58: 4904 .2byte 0x4904 + 5a: 06000013 addi x0,x0,96 + 5e: 0034 .2byte 0x34 + 60: 213a0803 lb x16,531(x20) + 64: 3b01 .2byte 0x3b01 + 66: 490b390b .4byte 0x490b390b + 6a: 00180213 addi x4,x16,1 + 6e: 0700 .2byte 0x700 + 70: 0101 .2byte 0x101 + 72: 1349 .2byte 0x1349 + 74: 1301 .2byte 0x1301 + 76: 0000 .2byte 0x0 + 78: 0d08 .2byte 0xd08 + 7a: 0300 .2byte 0x300 + 7c: 3a08 .2byte 0x3a08 + 7e: 0121 .2byte 0x121 + 80: 21390b3b .4byte 0x21390b3b + 84: 4911 .2byte 0x4911 + 86: 000b3813 sltiu x16,x22,0 + 8a: 0900 .2byte 0x900 + 8c: 0034 .2byte 0x34 + 8e: 213a0803 lb x16,531(x20) + 92: 3b01 .2byte 0x3b01 + 94: 490b390b .4byte 0x490b390b + 98: 02193f13 sltiu x30,x18,33 + 9c: 0018 .2byte 0x18 + 9e: 0a00 .2byte 0xa00 + a0: 012e .2byte 0x12e + a2: 0e03193f 3b01213a .8byte 0x3b01213a0e03193f + aa: 6e0b390b .4byte 0x6e0b390b + ae: 490e .2byte 0x490e + b0: 12011113 .4byte 0x12011113 + b4: 4006 .2byte 0x4006 + b6: 7c18 .2byte 0x7c18 + b8: 0119 .2byte 0x119 + ba: 0b000013 addi x0,x0,176 + be: 0005 .2byte 0x5 + c0: 213a0e03 lb x28,531(x20) + c4: 3b01 .2byte 0x3b01 + c6: 490b390b .4byte 0x490b390b + ca: 00180213 addi x4,x16,1 + ce: 0c00 .2byte 0xc00 + d0: 012e .2byte 0x12e + d2: 0e03193f 3b01213a .8byte 0x3b01213a0e03193f + da: 6e0b390b .4byte 0x6e0b390b + de: 490e .2byte 0x490e + e0: 12011113 .4byte 0x12011113 + e4: 4006 .2byte 0x4006 + e6: 7a18 .2byte 0x7a18 + e8: 0119 .2byte 0x119 + ea: 0d000013 addi x0,x0,208 + ee: 0111 .2byte 0x111 + f0: 0e25 .2byte 0xe25 + f2: 1f030b13 addi x22,x6,496 + f6: 01111f1b .4byte 0x1111f1b + fa: 0612 .2byte 0x612 + fc: 1710 .2byte 0x1710 + fe: 0000 .2byte 0x0 + 100: 240e .2byte 0x240e + 102: 0b00 .2byte 0xb00 + 104: 030b3e0b .4byte 0x30b3e0b + 108: 0008 .2byte 0x8 + 10a: 0f00 .2byte 0xf00 + 10c: 0034 .2byte 0x34 + 10e: 0b3a0e03 lb x28,179(x20) + 112: 0b390b3b .4byte 0xb390b3b + 116: 1349 .2byte 0x1349 + 118: 1802193f 26100000 .8byte 0x261000001802193f 120: 4900 .2byte 0x4900 - 122: 15000013 addi x0,x0,336 + 122: 11000013 addi x0,x0,272 126: 0021 .2byte 0x21 128: 1349 .2byte 0x1349 - 12a: 00000b2f .4byte 0xb2f - 12e: 2e16 .2byte 0x2e16 - 130: 3f01 .2byte 0x3f01 - 132: 0319 .2byte 0x319 - 134: 3a0e .2byte 0x3a0e - 136: 390b3b0b .4byte 0x390b3b0b - 13a: 490e6e0b .4byte 0x490e6e0b - 13e: 12011113 .4byte 0x12011113 - 142: 4006 .2byte 0x4006 - 144: 7a18 .2byte 0x7a18 - 146: 0119 .2byte 0x119 - 148: 17000013 addi x0,x0,368 - 14c: 012e .2byte 0x12e - 14e: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f - 156: 0b39 .2byte 0xb39 - 158: 0e6e .2byte 0xe6e - 15a: 0111 .2byte 0x111 - 15c: 0612 .2byte 0x612 - 15e: 1840 .2byte 0x1840 - 160: 197a .2byte 0x197a - 162: 1301 .2byte 0x1301 - 164: 0000 .2byte 0x0 - 166: 2e18 .2byte 0x2e18 - 168: 3f01 .2byte 0x3f01 - 16a: 0319 .2byte 0x319 - 16c: 3a0e .2byte 0x3a0e - 16e: 390b3b0b .4byte 0x390b3b0b - 172: 490e6e0b .4byte 0x490e6e0b - 176: 12011113 .4byte 0x12011113 - 17a: 4006 .2byte 0x4006 - 17c: 7a18 .2byte 0x7a18 - 17e: 0019 .2byte 0x19 - 180: 0000 .2byte 0x0 - 182: 2401 .2byte 0x2401 - 184: 0b00 .2byte 0xb00 - 186: 030b3e0b .4byte 0x30b3e0b - 18a: 000e .2byte 0xe - 18c: 0200 .2byte 0x200 - 18e: 0005 .2byte 0x5 - 190: 213a0e03 lb x28,531(x20) - 194: 3b01 .2byte 0x3b01 - 196: 0c21 .2byte 0xc21 - 198: 0b39 .2byte 0xb39 - 19a: 1349 .2byte 0x1349 - 19c: 1802 .2byte 0x1802 - 19e: 0000 .2byte 0x0 - 1a0: 03003403 .4byte 0x3003403 - 1a4: 3a08 .2byte 0x3a08 - 1a6: 0121 .2byte 0x121 - 1a8: 0b390b3b .4byte 0xb390b3b - 1ac: 1349 .2byte 0x1349 - 1ae: 1802 .2byte 0x1802 - 1b0: 0000 .2byte 0x0 - 1b2: 3404 .2byte 0x3404 - 1b4: 0300 .2byte 0x300 - 1b6: 3a0e .2byte 0x3a0e - 1b8: 0121 .2byte 0x121 - 1ba: 21390b3b .4byte 0x21390b3b - 1be: 4909 .2byte 0x4909 - 1c0: 00180213 addi x4,x16,1 - 1c4: 0500 .2byte 0x500 - 1c6: 0111010b .4byte 0x111010b - 1ca: 0612 .2byte 0x612 - 1cc: 0000 .2byte 0x0 - 1ce: 0f06 .2byte 0xf06 - 1d0: 0b00 .2byte 0xb00 - 1d2: 0421 .2byte 0x421 - 1d4: 1349 .2byte 0x1349 - 1d6: 0000 .2byte 0x0 - 1d8: 25011107 .4byte 0x25011107 - 1dc: 130e .2byte 0x130e - 1de: 1b1f030b .4byte 0x1b1f030b - 1e2: 111f 1201 1006 .byte 0x1f, 0x11, 0x01, 0x12, 0x06, 0x10 - 1e8: 00177917 auipc x18,0x177 - 1ec: 0800 .2byte 0x800 - 1ee: 0016 .2byte 0x16 - 1f0: 0b3a0e03 lb x28,179(x20) - 1f4: 0b390b3b .4byte 0xb390b3b - 1f8: 1349 .2byte 0x1349 - 1fa: 0000 .2byte 0x0 - 1fc: 2409 .2byte 0x2409 - 1fe: 0b00 .2byte 0xb00 - 200: 030b3e0b .4byte 0x30b3e0b - 204: 0008 .2byte 0x8 - 206: 0a00 .2byte 0xa00 - 208: 012e .2byte 0x12e - 20a: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f - 212: 0b39 .2byte 0xb39 - 214: 0e6e .2byte 0xe6e - 216: 0111 .2byte 0x111 - 218: 0612 .2byte 0x612 - 21a: 1840 .2byte 0x1840 - 21c: 197c .2byte 0x197c - 21e: 1301 .2byte 0x1301 - 220: 0000 .2byte 0x0 - 222: 11010b0b .4byte 0x11010b0b - 226: 1201 .2byte 0x1201 - 228: 0106 .2byte 0x106 - 22a: 0c000013 addi x0,x0,192 - 22e: 0026 .2byte 0x26 - 230: 1349 .2byte 0x1349 - 232: 0000 .2byte 0x0 - 234: 2e0d .2byte 0x2e0d - 236: 0301 .2byte 0x301 - 238: 3a0e .2byte 0x3a0e - 23a: 390b3b0b .4byte 0x390b3b0b - 23e: 1113490b .4byte 0x1113490b - 242: 1201 .2byte 0x1201 - 244: 4006 .2byte 0x4006 - 246: 7a18 .2byte 0x7a18 - 248: 0019 .2byte 0x19 - 24a: 0e00 .2byte 0xe00 - 24c: 0005 .2byte 0x5 - 24e: 0b3a0803 lb x16,179(x20) - 252: 0b390b3b .4byte 0xb390b3b - 256: 1349 .2byte 0x1349 - 258: 1802 .2byte 0x1802 - 25a: 0000 .2byte 0x0 + 12a: 0000052f .4byte 0x52f + 12e: 1312 .2byte 0x1312 + 130: 0301 .2byte 0x301 + 132: 0b0e .2byte 0xb0e + 134: 3b0b3a0b .4byte 0x3b0b3a0b + 138: 010b390b .4byte 0x10b390b + 13c: 13000013 addi x0,x0,304 + 140: 0021 .2byte 0x21 + 142: 1349 .2byte 0x1349 + 144: 00000b2f .4byte 0xb2f + 148: 2e14 .2byte 0x2e14 + 14a: 3f01 .2byte 0x3f01 + 14c: 0319 .2byte 0x319 + 14e: 3a0e .2byte 0x3a0e + 150: 390b3b0b .4byte 0x390b3b0b + 154: 1113490b .4byte 0x1113490b + 158: 1201 .2byte 0x1201 + 15a: 4006 .2byte 0x4006 + 15c: 7c18 .2byte 0x7c18 + 15e: 0119 .2byte 0x119 + 160: 15000013 addi x0,x0,336 + 164: 012e .2byte 0x12e + 166: 0803193f 0b3b0b3a .8byte 0xb3b0b3a0803193f + 16e: 0b39 .2byte 0xb39 + 170: 0e6e .2byte 0xe6e + 172: 1349 .2byte 0x1349 + 174: 0111 .2byte 0x111 + 176: 0612 .2byte 0x612 + 178: 1840 .2byte 0x1840 + 17a: 197c .2byte 0x197c + 17c: 1301 .2byte 0x1301 + 17e: 0000 .2byte 0x0 + 180: 2e16 .2byte 0x2e16 + 182: 3f01 .2byte 0x3f01 + 184: 0319 .2byte 0x319 + 186: 3a0e .2byte 0x3a0e + 188: 390b3b0b .4byte 0x390b3b0b + 18c: 110e6e0b .4byte 0x110e6e0b + 190: 1201 .2byte 0x1201 + 192: 4006 .2byte 0x4006 + 194: 7a18 .2byte 0x7a18 + 196: 0119 .2byte 0x119 + 198: 17000013 addi x0,x0,368 + 19c: 012e .2byte 0x12e + 19e: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + 1a6: 0b39 .2byte 0xb39 + 1a8: 0e6e .2byte 0xe6e + 1aa: 1349 .2byte 0x1349 + 1ac: 0111 .2byte 0x111 + 1ae: 0612 .2byte 0x612 + 1b0: 1840 .2byte 0x1840 + 1b2: 197a .2byte 0x197a + 1b4: 0000 .2byte 0x0 + 1b6: 0100 .2byte 0x100 + 1b8: 0024 .2byte 0x24 + 1ba: 0b3e0b0b .4byte 0xb3e0b0b + 1be: 00000e03 lb x28,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 1c2: 0502 .2byte 0x502 + 1c4: 0300 .2byte 0x300 + 1c6: 3a0e .2byte 0x3a0e + 1c8: 0121 .2byte 0x121 + 1ca: 390c213b .4byte 0x390c213b + 1ce: 0213490b .4byte 0x213490b + 1d2: 0018 .2byte 0x18 + 1d4: 0300 .2byte 0x300 + 1d6: 0034 .2byte 0x34 + 1d8: 213a0803 lb x16,531(x20) + 1dc: 3b01 .2byte 0x3b01 + 1de: 490b390b .4byte 0x490b390b + 1e2: 00180213 addi x4,x16,1 + 1e6: 0400 .2byte 0x400 + 1e8: 0034 .2byte 0x34 + 1ea: 213a0e03 lb x28,531(x20) + 1ee: 3b01 .2byte 0x3b01 + 1f0: 0921390b .4byte 0x921390b + 1f4: 1349 .2byte 0x1349 + 1f6: 1802 .2byte 0x1802 + 1f8: 0000 .2byte 0x0 + 1fa: 0b05 .2byte 0xb05 + 1fc: 1101 .2byte 0x1101 + 1fe: 1201 .2byte 0x1201 + 200: 0006 .2byte 0x6 + 202: 0600 .2byte 0x600 + 204: 210b000f .4byte 0x210b000f + 208: 4904 .2byte 0x4904 + 20a: 07000013 addi x0,x0,112 + 20e: 0111 .2byte 0x111 + 210: 0e25 .2byte 0xe25 + 212: 1f030b13 addi x22,x6,496 + 216: 01111f1b .4byte 0x1111f1b + 21a: 0612 .2byte 0x612 + 21c: 1710 .2byte 0x1710 + 21e: 0000 .2byte 0x0 + 220: 1608 .2byte 0x1608 + 222: 0300 .2byte 0x300 + 224: 3a0e .2byte 0x3a0e + 226: 390b3b0b .4byte 0x390b3b0b + 22a: 0013490b .4byte 0x13490b + 22e: 0900 .2byte 0x900 + 230: 0024 .2byte 0x24 + 232: 0b3e0b0b .4byte 0xb3e0b0b + 236: 00000803 lb x16,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 23a: 2e0a .2byte 0x2e0a + 23c: 3f01 .2byte 0x3f01 + 23e: 0319 .2byte 0x319 + 240: 3a0e .2byte 0x3a0e + 242: 390b3b0b .4byte 0x390b3b0b + 246: 110e6e0b .4byte 0x110e6e0b + 24a: 1201 .2byte 0x1201 + 24c: 4006 .2byte 0x4006 + 24e: 7c18 .2byte 0x7c18 + 250: 0119 .2byte 0x119 + 252: 0b000013 addi x0,x0,176 + 256: 0111010b .4byte 0x111010b + 25a: 0612 .2byte 0x612 + 25c: 1301 .2byte 0x1301 + 25e: 0000 .2byte 0x0 + 260: 260c .2byte 0x260c + 262: 4900 .2byte 0x4900 + 264: 0d000013 addi x0,x0,208 + 268: 012e .2byte 0x12e + 26a: 0b3a0e03 lb x28,179(x20) + 26e: 0b390b3b .4byte 0xb390b3b + 272: 1349 .2byte 0x1349 + 274: 0111 .2byte 0x111 + 276: 0612 .2byte 0x612 + 278: 1840 .2byte 0x1840 + 27a: 197a .2byte 0x197a + 27c: 0000 .2byte 0x0 + 27e: 050e .2byte 0x50e + 280: 0300 .2byte 0x300 + 282: 3a08 .2byte 0x3a08 + 284: 390b3b0b .4byte 0x390b3b0b + 288: 0213490b .4byte 0x213490b + 28c: 0018 .2byte 0x18 + 28e: 0000 .2byte 0x0 + 290: 2401 .2byte 0x2401 + 292: 0b00 .2byte 0xb00 + 294: 030b3e0b .4byte 0x30b3e0b + 298: 000e .2byte 0xe + 29a: 0200 .2byte 0x200 + 29c: 000d .2byte 0xd + 29e: 213a0e03 lb x28,531(x20) + 2a2: 3b02 .2byte 0x3b02 + 2a4: 490b390b .4byte 0x490b390b + 2a8: 000b3813 sltiu x16,x22,0 + 2ac: 0300 .2byte 0x300 + 2ae: 210b000f .4byte 0x210b000f + 2b2: 4904 .2byte 0x4904 + 2b4: 04000013 addi x0,x0,64 + 2b8: 0034 .2byte 0x34 + 2ba: 213a0803 lb x16,531(x20) + 2be: 3b01 .2byte 0x3b01 + 2c0: 490b390b .4byte 0x490b390b + 2c4: 00180213 addi x4,x16,1 + 2c8: 0500 .2byte 0x500 + 2ca: 0016 .2byte 0x16 + 2cc: 0b3a0e03 lb x28,179(x20) + 2d0: 0b390b3b .4byte 0xb390b3b + 2d4: 1349 .2byte 0x1349 + 2d6: 0000 .2byte 0x0 + 2d8: 3406 .2byte 0x3406 + 2da: 0300 .2byte 0x300 + 2dc: 3a0e .2byte 0x3a0e + 2de: 0121 .2byte 0x121 + 2e0: 21390b3b .4byte 0x21390b3b + 2e4: 4909 .2byte 0x4909 + 2e6: 00180213 addi x4,x16,1 + 2ea: 0700 .2byte 0x700 + 2ec: 0111010b .4byte 0x111010b + 2f0: 0612 .2byte 0x612 + 2f2: 0000 .2byte 0x0 + 2f4: 1108 .2byte 0x1108 + 2f6: 2501 .2byte 0x2501 + 2f8: 130e .2byte 0x130e + 2fa: 1b1f030b .4byte 0x1b1f030b + 2fe: 111f 1201 1006 .byte 0x1f, 0x11, 0x01, 0x12, 0x06, 0x10 + 304: 09000017 auipc x0,0x9000 + 308: 0024 .2byte 0x24 + 30a: 0b3e0b0b .4byte 0xb3e0b0b + 30e: 00000803 lb x16,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 312: 130a .2byte 0x130a + 314: 0b01 .2byte 0xb01 + 316: 3b0b3a0b .4byte 0x3b0b3a0b + 31a: 6e0b390b .4byte 0x6e0b390b + 31e: 010e .2byte 0x10e + 320: 0b000013 addi x0,x0,176 + 324: 0026 .2byte 0x26 + 326: 1349 .2byte 0x1349 + 328: 0000 .2byte 0x0 + 32a: 2e0c .2byte 0x2e0c + 32c: 3f01 .2byte 0x3f01 + 32e: 0319 .2byte 0x319 + 330: 3a0e .2byte 0x3a0e + 332: 390b3b0b .4byte 0x390b3b0b + 336: 110e6e0b .4byte 0x110e6e0b + 33a: 1201 .2byte 0x1201 + 33c: 4006 .2byte 0x4006 + 33e: 7c18 .2byte 0x7c18 + 340: 0119 .2byte 0x119 + 342: 0d000013 addi x0,x0,208 + 346: 0005 .2byte 0x5 + 348: 0b3a0e03 lb x28,179(x20) + 34c: 0b390b3b .4byte 0xb390b3b + 350: 1349 .2byte 0x1349 + 352: 1802 .2byte 0x1802 + 354: 0000 .2byte 0x0 + 356: 0b0e .2byte 0xb0e + 358: 1101 .2byte 0x1101 + 35a: 1201 .2byte 0x1201 + 35c: 0106 .2byte 0x106 + 35e: 0f000013 addi x0,x0,240 + 362: 012e .2byte 0x12e + 364: 0b3a0e03 lb x28,179(x20) + 368: 0b390b3b .4byte 0xb390b3b + 36c: 1349 .2byte 0x1349 + 36e: 0111 .2byte 0x111 + 370: 0612 .2byte 0x612 + 372: 1840 .2byte 0x1840 + 374: 197a .2byte 0x197a + 376: 0000 .2byte 0x0 + 378: 0510 .2byte 0x510 + 37a: 0300 .2byte 0x300 + 37c: 3a08 .2byte 0x3a08 + 37e: 390b3b0b .4byte 0x390b3b0b + 382: 0213490b .4byte 0x213490b + 386: 0018 .2byte 0x18 + 388: 0000 .2byte 0x0 + 38a: 2401 .2byte 0x2401 + 38c: 0b00 .2byte 0xb00 + 38e: 030b3e0b .4byte 0x30b3e0b + 392: 000e .2byte 0xe + 394: 0200 .2byte 0x200 + 396: 210b000f .4byte 0x210b000f + 39a: 4904 .2byte 0x4904 + 39c: 03000013 addi x0,x0,48 + 3a0: 0005 .2byte 0x5 + 3a2: 213a0e03 lb x28,531(x20) + 3a6: 3b01 .2byte 0x3b01 + 3a8: 490b390b .4byte 0x490b390b + 3ac: 00180213 addi x4,x16,1 + 3b0: 0400 .2byte 0x400 + 3b2: 000d .2byte 0xd + 3b4: 213a0e03 lb x28,531(x20) + 3b8: 390b3b03 .4byte 0x390b3b03 + 3bc: 3813490b .4byte 0x3813490b + 3c0: 0500000b .4byte 0x500000b + 3c4: 0034 .2byte 0x34 + 3c6: 213a0803 lb x16,531(x20) + 3ca: 3b01 .2byte 0x3b01 + 3cc: 490b390b .4byte 0x490b390b + 3d0: 00180213 addi x4,x16,1 + 3d4: 0600 .2byte 0x600 + 3d6: 0016 .2byte 0x16 + 3d8: 0b3a0e03 lb x28,179(x20) + 3dc: 0b390b3b .4byte 0xb390b3b + 3e0: 1349 .2byte 0x1349 + 3e2: 0000 .2byte 0x0 + 3e4: 03003407 .4byte 0x3003407 + 3e8: 3a0e .2byte 0x3a0e + 3ea: 0121 .2byte 0x121 + 3ec: 21390b3b .4byte 0x21390b3b + 3f0: 4909 .2byte 0x4909 + 3f2: 00180213 addi x4,x16,1 + 3f6: 0800 .2byte 0x800 + 3f8: 0111010b .4byte 0x111010b + 3fc: 0612 .2byte 0x612 + 3fe: 0000 .2byte 0x0 + 400: 1109 .2byte 0x1109 + 402: 2501 .2byte 0x2501 + 404: 130e .2byte 0x130e + 406: 1b1f030b .4byte 0x1b1f030b + 40a: 111f 1201 1006 .byte 0x1f, 0x11, 0x01, 0x12, 0x06, 0x10 + 410: 0a000017 auipc x0,0xa000 + 414: 0024 .2byte 0x24 + 416: 0b3e0b0b .4byte 0xb3e0b0b + 41a: 00000803 lb x16,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 41e: 0301130b .4byte 0x301130b + 422: 0b0e .2byte 0xb0e + 424: 3b0b3a0b .4byte 0x3b0b3a0b + 428: 010b390b .4byte 0x10b390b + 42c: 0c000013 addi x0,x0,192 + 430: 0026 .2byte 0x26 + 432: 1349 .2byte 0x1349 + 434: 0000 .2byte 0x0 + 436: 150d .2byte 0x150d + 438: 0101 .2byte 0x101 + 43a: 0e000013 addi x0,x0,224 + 43e: 0005 .2byte 0x5 + 440: 1349 .2byte 0x1349 + 442: 0000 .2byte 0x0 + 444: 3f012e0f .4byte 0x3f012e0f + 448: 0319 .2byte 0x319 + 44a: 3a0e .2byte 0x3a0e + 44c: 390b3b0b .4byte 0x390b3b0b + 450: 110e6e0b .4byte 0x110e6e0b + 454: 1201 .2byte 0x1201 + 456: 4006 .2byte 0x4006 + 458: 7a18 .2byte 0x7a18 + 45a: 0119 .2byte 0x119 + 45c: 10000013 addi x0,x0,256 + 460: 012e .2byte 0x12e + 462: 0b3a0e03 lb x28,179(x20) + 466: 0b390b3b .4byte 0xb390b3b + 46a: 0111 .2byte 0x111 + 46c: 0612 .2byte 0x612 + 46e: 1840 .2byte 0x1840 + 470: 197c .2byte 0x197c + 472: 1301 .2byte 0x1301 + 474: 0000 .2byte 0x0 + 476: 0b11 .2byte 0xb11 + 478: 1101 .2byte 0x1101 + 47a: 1201 .2byte 0x1201 + 47c: 0106 .2byte 0x106 + 47e: 12000013 addi x0,x0,288 + 482: 012e .2byte 0x12e + 484: 0b3a0e03 lb x28,179(x20) + 488: 0b390b3b .4byte 0xb390b3b + 48c: 1349 .2byte 0x1349 + 48e: 0111 .2byte 0x111 + 490: 0612 .2byte 0x612 + 492: 1840 .2byte 0x1840 + 494: 197a .2byte 0x197a + 496: 0000 .2byte 0x0 + 498: 03000513 addi x10,x0,48 + 49c: 3a08 .2byte 0x3a08 + 49e: 390b3b0b .4byte 0x390b3b0b + 4a2: 0213490b .4byte 0x213490b + 4a6: 0018 .2byte 0x18 + 4a8: 0000 .2byte 0x0 + 4aa: 1601 .2byte 0x1601 + 4ac: 0300 .2byte 0x300 + 4ae: 3a0e .2byte 0x3a0e + 4b0: 0221 .2byte 0x221 + 4b2: 0b390b3b .4byte 0xb390b3b + 4b6: 1349 .2byte 0x1349 + 4b8: 0000 .2byte 0x0 + 4ba: 0802 .2byte 0x802 + 4bc: 3a00 .2byte 0x3a00 + 4be: 0321 .2byte 0x321 + 4c0: 21390b3b .4byte 0x21390b3b + 4c4: 0013180b .4byte 0x13180b + 4c8: 0300 .2byte 0x300 + 4ca: 0024 .2byte 0x24 + 4cc: 0b3e0b0b .4byte 0xb3e0b0b + 4d0: 00000e03 lb x28,0(x0) # 0 <__DATA_BEGIN__-0x10000> + 4d4: 2604 .2byte 0x2604 + 4d6: 4900 .2byte 0x4900 + 4d8: 05000013 addi x0,x0,80 + 4dc: 210b000f .4byte 0x210b000f + 4e0: 4904 .2byte 0x4904 + 4e2: 06000013 addi x0,x0,96 + 4e6: 0005 .2byte 0x5 + 4e8: 1349 .2byte 0x1349 + 4ea: 0000 .2byte 0x0 + 4ec: 31000507 .4byte 0x31000507 + 4f0: 00180213 addi x4,x16,1 + 4f4: 0800 .2byte 0x800 + 4f6: 0005 .2byte 0x5 + 4f8: 1349 .2byte 0x1349 + 4fa: 1934 .2byte 0x1934 + 4fc: 0000 .2byte 0x0 + 4fe: 0d09 .2byte 0xd09 + 500: 0300 .2byte 0x300 + 502: 3a0e .2byte 0x3a0e + 504: 0421 .2byte 0x421 + 506: 0b390b3b .4byte 0xb390b3b + 50a: 1349 .2byte 0x1349 + 50c: 0b38 .2byte 0xb38 + 50e: 0000 .2byte 0x0 + 510: 340a .2byte 0x340a + 512: 0300 .2byte 0x300 + 514: 3a08 .2byte 0x3a08 + 516: 0121 .2byte 0x121 + 518: 0b390b3b .4byte 0xb390b3b + 51c: 1349 .2byte 0x1349 + 51e: 1802 .2byte 0x1802 + 520: 0000 .2byte 0x0 + 522: 0300050b .4byte 0x300050b + 526: 3a0e .2byte 0x3a0e + 528: 0121 .2byte 0x121 + 52a: 3903213b .4byte 0x3903213b + 52e: 0013490b .4byte 0x13490b + 532: 0c00 .2byte 0xc00 + 534: 012e .2byte 0x12e + 536: 0e03193f 3b04213a .8byte 0x3b04213a0e03193f + 53e: 6e0b390b .4byte 0x6e0b390b + 542: 320e .2byte 0x320e + 544: 0121 .2byte 0x121 + 546: 193c .2byte 0x193c + 548: 1364 .2byte 0x1364 + 54a: 1301 .2byte 0x1301 + 54c: 0000 .2byte 0x0 + 54e: 340d .2byte 0x340d + 550: 0300 .2byte 0x300 + 552: 3a0e .2byte 0x3a0e + 554: 0121 .2byte 0x121 + 556: 21390b3b .4byte 0x21390b3b + 55a: 4909 .2byte 0x4909 + 55c: 00180213 addi x4,x16,1 + 560: 0e00 .2byte 0xe00 + 562: 0005 .2byte 0x5 + 564: 13490e03 lb x28,308(x18) # b41134 <__BSS_END__+0xb2e990> + 568: 1934 .2byte 0x1934 + 56a: 1802 .2byte 0x1802 + 56c: 0000 .2byte 0x0 + 56e: 11010b0f .4byte 0x11010b0f + 572: 1201 .2byte 0x1201 + 574: 0006 .2byte 0x6 + 576: 1000 .2byte 0x1000 + 578: 0111 .2byte 0x111 + 57a: 0e25 .2byte 0xe25 + 57c: 1f030b13 addi x22,x6,496 + 580: 01111f1b .4byte 0x1111f1b + 584: 0612 .2byte 0x612 + 586: 1710 .2byte 0x1710 + 588: 0000 .2byte 0x0 + 58a: 2411 .2byte 0x2411 + 58c: 0b00 .2byte 0xb00 + 58e: 030b3e0b .4byte 0x30b3e0b + 592: 0008 .2byte 0x8 + 594: 1200 .2byte 0x1200 + 596: 0139 .2byte 0x139 + 598: 0b3a0803 lb x16,179(x20) + 59c: 0b39053b .4byte 0xb39053b + 5a0: 1301 .2byte 0x1301 + 5a2: 0000 .2byte 0x0 + 5a4: 03010213 addi x4,x2,48 # 12011034 <__BSS_END__+0x11ffe890> + 5a8: 0b0e .2byte 0xb0e + 5aa: 3b0b3a0b .4byte 0x3b0b3a0b + 5ae: 010b390b .4byte 0x10b390b + 5b2: 14000013 addi x0,x0,320 + 5b6: 012e .2byte 0x12e + 5b8: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + 5c0: 0b39 .2byte 0xb39 + 5c2: 0e6e .2byte 0xe6e + 5c4: 1349 .2byte 0x1349 + 5c6: 0b32 .2byte 0xb32 + 5c8: 193c .2byte 0x193c + 5ca: 1364 .2byte 0x1364 + 5cc: 1301 .2byte 0x1301 + 5ce: 0000 .2byte 0x0 + 5d0: 2e15 .2byte 0x2e15 + 5d2: 3f01 .2byte 0x3f01 + 5d4: 0319 .2byte 0x319 + 5d6: 3a0e .2byte 0x3a0e + 5d8: 390b3b0b .4byte 0x390b3b0b + 5dc: 490e6e0b .4byte 0x490e6e0b + 5e0: 00193c13 sltiu x24,x18,1 + 5e4: 1600 .2byte 0x1600 + 5e6: 012e .2byte 0x12e + 5e8: 0b3a1347 .4byte 0xb3a1347 + 5ec: 0b390b3b .4byte 0xb390b3b + 5f0: 0111 .2byte 0x111 + 5f2: 0612 .2byte 0x612 + 5f4: 1840 .2byte 0x1840 + 5f6: 197a .2byte 0x197a + 5f8: 1301 .2byte 0x1301 + 5fa: 0000 .2byte 0x0 + 5fc: 03000517 auipc x10,0x3000 + 600: 3a08 .2byte 0x3a08 + 602: 390b3b0b .4byte 0x390b3b0b + 606: 0213490b .4byte 0x213490b + 60a: 0018 .2byte 0x18 + 60c: 1800 .2byte 0x1800 + 60e: 012e .2byte 0x12e + 610: 0b3a1347 .4byte 0xb3a1347 + 614: 0b390b3b .4byte 0xb390b3b + 618: 1364 .2byte 0x1364 + 61a: 0111 .2byte 0x111 + 61c: 0612 .2byte 0x612 + 61e: 1840 .2byte 0x1840 + 620: 197a .2byte 0x197a + 622: 1301 .2byte 0x1301 + 624: 0000 .2byte 0x0 + 626: 2e19 .2byte 0x2e19 + 628: 4701 .2byte 0x4701 + 62a: 3b0b3a13 sltiu x20,x22,944 + 62e: 640b390b .4byte 0x640b390b + 632: 12011113 .4byte 0x12011113 + 636: 4006 .2byte 0x4006 + 638: 7c18 .2byte 0x7c18 + 63a: 0119 .2byte 0x119 + 63c: 1a000013 addi x0,x0,416 + 640: 0111010b .4byte 0x111010b + 644: 0612 .2byte 0x612 + 646: 1301 .2byte 0x1301 + 648: 0000 .2byte 0x0 + 64a: 47012e1b .4byte 0x47012e1b + 64e: 3b0b3a13 sltiu x20,x22,944 + 652: 640b390b .4byte 0x640b390b + 656: 010b2013 slti x0,x22,16 + 65a: 1c000013 addi x0,x0,448 + 65e: 0005 .2byte 0x5 + 660: 13490e03 lb x28,308(x18) + 664: 1934 .2byte 0x1934 + 666: 0000 .2byte 0x0 + 668: 2e1d .2byte 0x2e1d + 66a: 3101 .2byte 0x3101 + 66c: 640e6e13 ori x28,x28,1600 + 670: 12011113 .4byte 0x12011113 + 674: 4006 .2byte 0x4006 + 676: 7a18 .2byte 0x7a18 + 678: 0019 .2byte 0x19 ... Disassembly of section .debug_line: 00000000 <.debug_line>: - 0: 0088 .2byte 0x88 + 0: 008e .2byte 0x8e 2: 0000 .2byte 0x0 4: 0005 .2byte 0x5 6: 0004 .2byte 0x4 @@ -1161,4977 +3394,1682 @@ Disassembly of section .debug_line: 38: 0002 .2byte 0x2 3a: 0000 .2byte 0x0 3c: 1a80 .2byte 0x1a80 - 3e: 08090303 lb x6,128(x18) # 177268 <_start-0x7fe88d98> + 3e: 08090203 lb x4,128(x18) 42: 0100 .2byte 0x100 - 44: 08090303 lb x6,128(x18) + 44: 04090103 lb x2,64(x18) 48: 0100 .2byte 0x100 - 4a: 08090103 lb x2,128(x18) + 4a: 04090303 lb x6,64(x18) 4e: 0100 .2byte 0x100 50: 08090103 lb x2,128(x18) 54: 0100 .2byte 0x100 - 56: 04090203 lb x4,64(x18) + 56: 08090203 lb x4,128(x18) 5a: 0100 .2byte 0x100 - 5c: 04090103 lb x2,64(x18) + 5c: 04090203 lb x4,64(x18) 60: 0100 .2byte 0x100 62: 04090103 lb x2,64(x18) 66: 0100 .2byte 0x100 68: 04090103 lb x2,64(x18) 6c: 0100 .2byte 0x100 - 6e: 04090303 lb x6,64(x18) + 6e: 04090103 lb x2,64(x18) 72: 0100 .2byte 0x100 - 74: 04090203 lb x4,64(x18) + 74: 04090303 lb x6,64(x18) 78: 0100 .2byte 0x100 - 7a: 08090203 lb x4,128(x18) + 7a: 04090203 lb x4,64(x18) 7e: 0100 .2byte 0x100 - 80: 04090303 lb x6,64(x18) + 80: 08090203 lb x4,128(x18) 84: 0100 .2byte 0x100 - 86: 0409 .2byte 0x409 - 88: 0000 .2byte 0x0 - 8a: 0101 .2byte 0x101 - 8c: 019c .2byte 0x19c + 86: 04090303 lb x6,64(x18) + 8a: 0100 .2byte 0x100 + 8c: 0409 .2byte 0x409 8e: 0000 .2byte 0x0 - 90: 0005 .2byte 0x5 - 92: 0004 .2byte 0x4 - 94: 0038 .2byte 0x38 - 96: 0000 .2byte 0x0 - 98: 0101 .2byte 0x101 - 9a: fb01 .2byte 0xfb01 - 9c: 0d0e .2byte 0xd0e - 9e: 0100 .2byte 0x100 - a0: 0101 .2byte 0x101 - a2: 0001 .2byte 0x1 - a4: 0000 .2byte 0x0 - a6: 0001 .2byte 0x1 - a8: 0100 .2byte 0x100 - aa: 0101 .2byte 0x101 - ac: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 - b2: 0028 .2byte 0x28 - b4: 0000 .2byte 0x0 - b6: 0102 .2byte 0x102 - b8: 021f 040f 001c .byte 0x1f, 0x02, 0x0f, 0x04, 0x1c, 0x00 - be: 0000 .2byte 0x0 - c0: 1c00 .2byte 0x1c00 - c2: 0000 .2byte 0x0 + 90: 0101 .2byte 0x101 + 92: 03f1 .2byte 0x3f1 + 94: 0000 .2byte 0x0 + 96: 0005 .2byte 0x5 + 98: 0004 .2byte 0x4 + 9a: 00000033 add x0,x0,x0 + 9e: 0101 .2byte 0x101 + a0: fb01 .2byte 0xfb01 + a2: 0d0e .2byte 0xd0e + a4: 0100 .2byte 0x100 + a6: 0101 .2byte 0x101 + a8: 0001 .2byte 0x1 + aa: 0000 .2byte 0x0 + ac: 0001 .2byte 0x1 + ae: 0100 .2byte 0x100 + b0: 0101 .2byte 0x101 + b2: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + b8: 0028 .2byte 0x28 + ba: 0000 .2byte 0x0 + bc: 0102 .2byte 0x102 + be: 021f 030f 001c .byte 0x1f, 0x02, 0x0f, 0x03, 0x1c, 0x00 c4: 0000 .2byte 0x0 - c6: 006a .2byte 0x6a + c6: 1c00 .2byte 0x1c00 c8: 0000 .2byte 0x0 - ca: 7701 .2byte 0x7701 - cc: 0000 .2byte 0x0 - ce: 0100 .2byte 0x100 - d0: 0105 .2byte 0x105 - d2: 0500 .2byte 0x500 - d4: 4802 .2byte 0x4802 - d6: 0000 .2byte 0x0 - d8: 1580 .2byte 0x1580 - da: 0c05 .2byte 0xc05 - dc: 10090103 lb x2,256(x18) - e0: 0100 .2byte 0x100 - e2: 0605 .2byte 0x605 - e4: 08090103 lb x2,128(x18) - e8: 0100 .2byte 0x100 - ea: 0705 .2byte 0x705 - ec: 04090103 lb x2,64(x18) - f0: 0100 .2byte 0x100 - f2: 0d05 .2byte 0xd05 - f4: 0c097f03 .4byte 0xc097f03 - f8: 0100 .2byte 0x100 - fa: 1005 .2byte 0x1005 - fc: 08090003 lb x0,128(x18) - 100: 0100 .2byte 0x100 - 102: 1105 .2byte 0x1105 - 104: 04090203 lb x4,64(x18) - 108: 0100 .2byte 0x100 - 10a: 0105 .2byte 0x105 - 10c: 0c090103 lb x2,192(x18) - 110: 0100 .2byte 0x100 - 112: 10090303 lb x6,256(x18) - 116: 0100 .2byte 0x100 - 118: 0605 .2byte 0x605 - 11a: 14090103 lb x2,320(x18) - 11e: 0100 .2byte 0x100 - 120: 1605 .2byte 0x1605 - 122: 0200 .2byte 0x200 - 124: 0104 .2byte 0x104 - 126: 04090003 lb x0,64(x18) - 12a: 0100 .2byte 0x100 - 12c: 1405 .2byte 0x1405 - 12e: 0200 .2byte 0x200 - 130: 0104 .2byte 0x104 - 132: 0c090003 lb x0,192(x18) - 136: 0100 .2byte 0x100 - 138: 0f05 .2byte 0xf05 - 13a: 0200 .2byte 0x200 - 13c: 0104 .2byte 0x104 - 13e: 04090003 lb x0,64(x18) - 142: 0100 .2byte 0x100 - 144: 1205 .2byte 0x1205 - 146: 0200 .2byte 0x200 - 148: 0104 .2byte 0x104 - 14a: 0c090003 lb x0,192(x18) - 14e: 0100 .2byte 0x100 - 150: 0d05 .2byte 0xd05 - 152: 0200 .2byte 0x200 - 154: 0104 .2byte 0x104 - 156: 04090003 lb x0,64(x18) - 15a: 0100 .2byte 0x100 - 15c: 1205 .2byte 0x1205 - 15e: 0200 .2byte 0x200 - 160: 0104 .2byte 0x104 - 162: 04090003 lb x0,64(x18) - 166: 0100 .2byte 0x100 - 168: 0105 .2byte 0x105 - 16a: 0c090103 lb x2,192(x18) - 16e: 0100 .2byte 0x100 - 170: 14090903 lb x18,320(x18) - 174: 0100 .2byte 0x100 - 176: 0f05 .2byte 0xf05 - 178: 10090203 lb x4,256(x18) - 17c: 0100 .2byte 0x100 - 17e: 0505 .2byte 0x505 - 180: 08090003 lb x0,128(x18) - 184: 0100 .2byte 0x100 - 186: 1505 .2byte 0x1505 - 188: 04090103 lb x2,64(x18) - 18c: 0100 .2byte 0x100 - 18e: 1005 .2byte 0x1005 - 190: 1c090003 lb x0,448(x18) - 194: 0100 .2byte 0x100 - 196: 0b05 .2byte 0xb05 - 198: 08090003 lb x0,128(x18) - 19c: 0100 .2byte 0x100 - 19e: 1305 .2byte 0x1305 - 1a0: 0c090403 lb x8,192(x18) - 1a4: 0100 .2byte 0x100 - 1a6: 1f05 .2byte 0x1f05 - 1a8: 08090003 lb x0,128(x18) - 1ac: 0100 .2byte 0x100 - 1ae: 0605 .2byte 0x605 - 1b0: 0c090003 lb x0,192(x18) - 1b4: 0100 .2byte 0x100 - 1b6: 0d05 .2byte 0xd05 - 1b8: 08090103 lb x2,128(x18) - 1bc: 0100 .2byte 0x100 - 1be: 1005 .2byte 0x1005 - 1c0: 08090003 lb x0,128(x18) - 1c4: 0100 .2byte 0x100 - 1c6: 0d05 .2byte 0xd05 - 1c8: 04090003 lb x0,64(x18) - 1cc: 0100 .2byte 0x100 - 1ce: 1405 .2byte 0x1405 - 1d0: 0c090103 lb x2,192(x18) - 1d4: 0100 .2byte 0x100 - 1d6: 1605 .2byte 0x1605 - 1d8: 08090003 lb x0,128(x18) - 1dc: 0100 .2byte 0x100 - 1de: 1405 .2byte 0x1405 - 1e0: 04090003 lb x0,64(x18) - 1e4: 0100 .2byte 0x100 - 1e6: 1605 .2byte 0x1605 - 1e8: 04090003 lb x0,64(x18) - 1ec: 0100 .2byte 0x100 - 1ee: 0d05 .2byte 0xd05 - 1f0: 08090203 lb x4,128(x18) - 1f4: 0100 .2byte 0x100 - 1f6: 0105 .2byte 0x105 - 1f8: 04090103 lb x2,64(x18) - 1fc: 0100 .2byte 0x100 - 1fe: 0d05 .2byte 0xd05 - 200: 10090203 lb x4,256(x18) - 204: 0100 .2byte 0x100 - 206: 2c05 .2byte 0x2c05 - 208: 10090803 lb x16,256(x18) - 20c: 0100 .2byte 0x100 - 20e: 0505 .2byte 0x505 - 210: 10090103 lb x2,256(x18) - 214: 0100 .2byte 0x100 - 216: 0c05 .2byte 0xc05 - 218: 04090103 lb x2,64(x18) - 21c: 0100 .2byte 0x100 - 21e: 0105 .2byte 0x105 - 220: 04090103 lb x2,64(x18) - 224: 0100 .2byte 0x100 - 226: 1409 .2byte 0x1409 - 228: 0000 .2byte 0x0 - 22a: 0101 .2byte 0x101 - 22c: 01a1 .2byte 0x1a1 - 22e: 0000 .2byte 0x0 - 230: 0005 .2byte 0x5 - 232: 0004 .2byte 0x4 - 234: 003d .2byte 0x3d - 236: 0000 .2byte 0x0 - 238: 0101 .2byte 0x101 - 23a: fb01 .2byte 0xfb01 - 23c: 0d0e .2byte 0xd0e - 23e: 0100 .2byte 0x100 - 240: 0101 .2byte 0x101 - 242: 0001 .2byte 0x1 - 244: 0000 .2byte 0x0 - 246: 0001 .2byte 0x1 - 248: 0100 .2byte 0x100 - 24a: 0101 .2byte 0x101 - 24c: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 - 252: 0028 .2byte 0x28 - 254: 0000 .2byte 0x0 - 256: 0102 .2byte 0x102 - 258: 021f 050f 0080 .byte 0x1f, 0x02, 0x0f, 0x05, 0x80, 0x00 - 25e: 0000 .2byte 0x0 - 260: 8000 .2byte 0x8000 - 262: 0000 .2byte 0x0 - 264: 0000 .2byte 0x0 - 266: 006a .2byte 0x6a - 268: 0000 .2byte 0x0 - 26a: 8b01 .2byte 0x8b01 - 26c: 0000 .2byte 0x0 - 26e: 0000 .2byte 0x0 - 270: 00000077 .4byte 0x77 + ca: 0000 .2byte 0x0 + cc: 006a .2byte 0x6a + ce: 0000 .2byte 0x0 + d0: 0501 .2byte 0x501 + d2: 0015 .2byte 0x15 + d4: 0205 .2byte 0x205 + d6: 0048 .2byte 0x48 + d8: 8000 .2byte 0x8000 + da: 0514 .2byte 0x514 + dc: 0901030b .4byte 0x901030b + e0: 0010 .2byte 0x10 + e2: 0501 .2byte 0x501 + e4: 0305 .2byte 0x305 + e6: 0901 .2byte 0x901 + e8: 0008 .2byte 0x8 + ea: 0501 .2byte 0x501 + ec: 030a .2byte 0x30a + ee: 0901 .2byte 0x901 + f0: 0004 .2byte 0x4 + f2: 0501 .2byte 0x501 + f4: 030c .2byte 0x30c + f6: 097f 000c 0501 030f .byte 0x7f, 0x09, 0x0c, 0x00, 0x01, 0x05, 0x0f, 0x03, 0x00, 0x09 + fe: 0900 + 100: 0008 .2byte 0x8 + 102: 0501 .2byte 0x501 + 104: 0310 .2byte 0x310 + 106: 0902 .2byte 0x902 + 108: 0004 .2byte 0x4 + 10a: 0501 .2byte 0x501 + 10c: 0301 .2byte 0x301 + 10e: 0901 .2byte 0x901 + 110: 000c .2byte 0xc + 112: 0501 .2byte 0x501 + 114: 0903030f .4byte 0x903030f + 118: 0010 .2byte 0x10 + 11a: 0501 .2byte 0x501 + 11c: 0308 .2byte 0x308 + 11e: 0901 .2byte 0x901 + 120: 0010 .2byte 0x10 + 122: 0501 .2byte 0x501 + 124: 030c .2byte 0x30c + 126: 000c0903 lb x18,0(x24) + 12a: 0501 .2byte 0x501 + 12c: 0314 .2byte 0x314 + 12e: 0901 .2byte 0x901 + 130: 0004 .2byte 0x4 + 132: 0501 .2byte 0x501 + 134: 0900030b .4byte 0x900030b + 138: 0010 .2byte 0x10 + 13a: 0501 .2byte 0x501 + 13c: 0301 .2byte 0x301 + 13e: 0901 .2byte 0x901 + 140: 0004 .2byte 0x4 + 142: 0301 .2byte 0x301 + 144: 00180903 lb x18,1(x16) + 148: 0501 .2byte 0x501 + 14a: 0306 .2byte 0x306 + 14c: 0901 .2byte 0x901 + 14e: 0014 .2byte 0x14 + 150: 0501 .2byte 0x501 + 152: 0016 .2byte 0x16 + 154: 0402 .2byte 0x402 + 156: 0301 .2byte 0x301 + 158: 0900 .2byte 0x900 + 15a: 0004 .2byte 0x4 + 15c: 0501 .2byte 0x501 + 15e: 0014 .2byte 0x14 + 160: 0402 .2byte 0x402 + 162: 0301 .2byte 0x301 + 164: 0900 .2byte 0x900 + 166: 000c .2byte 0xc + 168: 0501 .2byte 0x501 + 16a: 0402000f .4byte 0x402000f + 16e: 0301 .2byte 0x301 + 170: 0900 .2byte 0x900 + 172: 0004 .2byte 0x4 + 174: 0501 .2byte 0x501 + 176: 0012 .2byte 0x12 + 178: 0402 .2byte 0x402 + 17a: 0301 .2byte 0x301 + 17c: 0900 .2byte 0x900 + 17e: 000c .2byte 0xc + 180: 0501 .2byte 0x501 + 182: 000d .2byte 0xd + 184: 0402 .2byte 0x402 + 186: 0301 .2byte 0x301 + 188: 0900 .2byte 0x900 + 18a: 0004 .2byte 0x4 + 18c: 0501 .2byte 0x501 + 18e: 0012 .2byte 0x12 + 190: 0402 .2byte 0x402 + 192: 0301 .2byte 0x301 + 194: 0900 .2byte 0x900 + 196: 0004 .2byte 0x4 + 198: 0501 .2byte 0x501 + 19a: 0301 .2byte 0x301 + 19c: 0901 .2byte 0x901 + 19e: 000c .2byte 0xc + 1a0: 0301 .2byte 0x301 + 1a2: 00140907 .4byte 0x140907 + 1a6: 0501 .2byte 0x501 + 1a8: 0902030f .4byte 0x902030f + 1ac: 0010 .2byte 0x10 + 1ae: 0501 .2byte 0x501 + 1b0: 0305 .2byte 0x305 + 1b2: 0900 .2byte 0x900 + 1b4: 0008 .2byte 0x8 + 1b6: 0501 .2byte 0x501 + 1b8: 0315 .2byte 0x315 + 1ba: 0901 .2byte 0x901 + 1bc: 0004 .2byte 0x4 + 1be: 0501 .2byte 0x501 + 1c0: 0310 .2byte 0x310 + 1c2: 0900 .2byte 0x900 + 1c4: 001c .2byte 0x1c + 1c6: 0501 .2byte 0x501 + 1c8: 0900030b .4byte 0x900030b + 1cc: 0008 .2byte 0x8 + 1ce: 0501 .2byte 0x501 + 1d0: 09040313 addi x6,x8,144 + 1d4: 000c .2byte 0xc + 1d6: 0501 .2byte 0x501 + 1d8: 031f 0900 0008 .byte 0x1f, 0x03, 0x00, 0x09, 0x08, 0x00 + 1de: 0501 .2byte 0x501 + 1e0: 0306 .2byte 0x306 + 1e2: 0900 .2byte 0x900 + 1e4: 000c .2byte 0xc + 1e6: 0501 .2byte 0x501 + 1e8: 030d .2byte 0x30d + 1ea: 0901 .2byte 0x901 + 1ec: 0008 .2byte 0x8 + 1ee: 0501 .2byte 0x501 + 1f0: 0310 .2byte 0x310 + 1f2: 0900 .2byte 0x900 + 1f4: 0008 .2byte 0x8 + 1f6: 0501 .2byte 0x501 + 1f8: 030d .2byte 0x30d + 1fa: 0900 .2byte 0x900 + 1fc: 0004 .2byte 0x4 + 1fe: 0501 .2byte 0x501 + 200: 0314 .2byte 0x314 + 202: 0901 .2byte 0x901 + 204: 000c .2byte 0xc + 206: 0501 .2byte 0x501 + 208: 0316 .2byte 0x316 + 20a: 0900 .2byte 0x900 + 20c: 0008 .2byte 0x8 + 20e: 0501 .2byte 0x501 + 210: 0314 .2byte 0x314 + 212: 0900 .2byte 0x900 + 214: 0004 .2byte 0x4 + 216: 0501 .2byte 0x501 + 218: 0316 .2byte 0x316 + 21a: 0900 .2byte 0x900 + 21c: 0004 .2byte 0x4 + 21e: 0501 .2byte 0x501 + 220: 030d .2byte 0x30d + 222: 0902 .2byte 0x902 + 224: 0008 .2byte 0x8 + 226: 0501 .2byte 0x501 + 228: 0301 .2byte 0x301 + 22a: 0901 .2byte 0x901 + 22c: 0004 .2byte 0x4 + 22e: 0501 .2byte 0x501 + 230: 0915032b .4byte 0x915032b + 234: 0010 .2byte 0x10 + 236: 0501 .2byte 0x501 + 238: 0305 .2byte 0x305 + 23a: 0901 .2byte 0x901 + 23c: 0018 .2byte 0x18 + 23e: 0501 .2byte 0x501 + 240: 0901030f .4byte 0x901030f + 244: 0004 .2byte 0x4 + 246: 0501 .2byte 0x501 + 248: 0309 .2byte 0x309 + 24a: 0900 .2byte 0x900 + 24c: 0008 .2byte 0x8 + 24e: 0501 .2byte 0x501 + 250: 0314 .2byte 0x314 + 252: 0901 .2byte 0x901 + 254: 0008 .2byte 0x8 + 256: 0501 .2byte 0x501 + 258: 0902030f .4byte 0x902030f + 25c: 0008 .2byte 0x8 + 25e: 0501 .2byte 0x501 + 260: 030c .2byte 0x30c + 262: 097c .2byte 0x97c + 264: 000c .2byte 0xc + 266: 0301 .2byte 0x301 + 268: 0906 .2byte 0x906 + 26a: 000c .2byte 0xc + 26c: 0501 .2byte 0x501 + 26e: 0301 .2byte 0x301 + 270: 0901 .2byte 0x901 + 272: 0004 .2byte 0x4 274: 0501 .2byte 0x501 - 276: 02050027 .4byte 0x2050027 - 27a: 01dc .2byte 0x1dc - 27c: 8000 .2byte 0x8000 - 27e: 0515 .2byte 0x515 - 280: 0309 .2byte 0x309 - 282: 0901 .2byte 0x901 - 284: 0010 .2byte 0x10 - 286: 0501 .2byte 0x501 - 288: 0305 .2byte 0x305 - 28a: 0901 .2byte 0x901 - 28c: 0004 .2byte 0x4 - 28e: 0501 .2byte 0x501 - 290: 0901030f .4byte 0x901030f - 294: 0004 .2byte 0x4 - 296: 0501 .2byte 0x501 - 298: 0310 .2byte 0x310 - 29a: 097f 000c 0501 0316 .byte 0x7f, 0x09, 0x0c, 0x00, 0x01, 0x05, 0x16, 0x03, 0x00, 0x09 - 2a2: 0900 - 2a4: 0004 .2byte 0x4 - 2a6: 0501 .2byte 0x501 - 2a8: 0318 .2byte 0x318 - 2aa: 0900 .2byte 0x900 - 2ac: 000c .2byte 0xc - 2ae: 0501 .2byte 0x501 - 2b0: 030c .2byte 0x30c - 2b2: 00040903 lb x18,0(x8) - 2b6: 0501 .2byte 0x501 - 2b8: 0301 .2byte 0x301 - 2ba: 0901 .2byte 0x901 - 2bc: 0004 .2byte 0x4 - 2be: 0501 .2byte 0x501 - 2c0: 0902034f .4byte 0x902034f - 2c4: 0010 .2byte 0x10 - 2c6: 0501 .2byte 0x501 - 2c8: 09020323 sb x16,134(x4) # 86 <_start-0x7fffff7a> - 2cc: 001c .2byte 0x1c - 2ce: 0501 .2byte 0x501 - 2d0: 030e .2byte 0x30e - 2d2: 0902 .2byte 0x902 - 2d4: 0010 .2byte 0x10 - 2d6: 0501 .2byte 0x501 - 2d8: 0305 .2byte 0x305 - 2da: 0900 .2byte 0x900 - 2dc: 0004 .2byte 0x4 - 2de: 0501 .2byte 0x501 - 2e0: 0402000f .4byte 0x402000f - 2e4: 09010303 lb x6,144(x2) # 12011094 <_start-0x6dfeef6c> - 2e8: 0004 .2byte 0x4 - 2ea: 0501 .2byte 0x501 - 2ec: 0010 .2byte 0x10 - 2ee: 0402 .2byte 0x402 - 2f0: 09000303 lb x6,144(x0) # 90 <_start-0x7fffff70> - 2f4: 0004 .2byte 0x4 - 2f6: 0501 .2byte 0x501 - 2f8: 0012 .2byte 0x12 - 2fa: 0402 .2byte 0x402 - 2fc: 09000303 lb x6,144(x0) # 90 <_start-0x7fffff70> - 300: 0008 .2byte 0x8 - 302: 0501 .2byte 0x501 - 304: 0005 .2byte 0x5 - 306: 0402 .2byte 0x402 - 308: 097f0303 lb x6,151(x30) - 30c: 0004 .2byte 0x4 - 30e: 0501 .2byte 0x501 - 310: 04020017 auipc x0,0x4020 - 314: 0301 .2byte 0x301 - 316: 0900 .2byte 0x900 - 318: 000c .2byte 0xc - 31a: 0501 .2byte 0x501 - 31c: 030e .2byte 0x30e - 31e: 0904 .2byte 0x904 - 320: 000c .2byte 0xc - 322: 0501 .2byte 0x501 - 324: 0305 .2byte 0x305 - 326: 0900 .2byte 0x900 - 328: 0004 .2byte 0x4 - 32a: 0501 .2byte 0x501 - 32c: 0312 .2byte 0x312 - 32e: 0901 .2byte 0x901 - 330: 0004 .2byte 0x4 - 332: 0501 .2byte 0x501 - 334: 0309 .2byte 0x309 - 336: 0900 .2byte 0x900 - 338: 0004 .2byte 0x4 - 33a: 0501 .2byte 0x501 - 33c: 0319 .2byte 0x319 - 33e: 0901 .2byte 0x901 - 340: 0004 .2byte 0x4 - 342: 0501 .2byte 0x501 - 344: 031a .2byte 0x31a - 346: 0900 .2byte 0x900 - 348: 0004 .2byte 0x4 - 34a: 0501 .2byte 0x501 - 34c: 0325 .2byte 0x325 - 34e: 0900 .2byte 0x900 - 350: 000c .2byte 0xc - 352: 0501 .2byte 0x501 - 354: 0326 .2byte 0x326 - 356: 0900 .2byte 0x900 - 358: 0004 .2byte 0x4 - 35a: 0501 .2byte 0x501 - 35c: 030d .2byte 0x30d - 35e: 0900 .2byte 0x900 - 360: 000c .2byte 0xc - 362: 0501 .2byte 0x501 - 364: 09010317 auipc x6,0x9010 - 368: 0004 .2byte 0x4 - 36a: 0501 .2byte 0x501 - 36c: 0318 .2byte 0x318 - 36e: 0900 .2byte 0x900 - 370: 0004 .2byte 0x4 - 372: 0501 .2byte 0x501 - 374: 0319 .2byte 0x319 - 376: 0900 .2byte 0x900 - 378: 000c .2byte 0xc - 37a: 0501 .2byte 0x501 - 37c: 0009 .2byte 0x9 - 37e: 0402 .2byte 0x402 - 380: 0302 .2byte 0x302 - 382: 097e .2byte 0x97e - 384: 000c .2byte 0xc - 386: 0501 .2byte 0x501 - 388: 001f 0402 0301 .byte 0x1f, 0x00, 0x02, 0x04, 0x01, 0x03 - 38e: 0900 .2byte 0x900 - 390: 000c .2byte 0xc - 392: 0501 .2byte 0x501 - 394: 0020 .2byte 0x20 - 396: 0402 .2byte 0x402 - 398: 0301 .2byte 0x301 - 39a: 0900 .2byte 0x900 - 39c: 0004 .2byte 0x4 - 39e: 0501 .2byte 0x501 - 3a0: 0022 .2byte 0x22 - 3a2: 0402 .2byte 0x402 - 3a4: 0301 .2byte 0x301 - 3a6: 0900 .2byte 0x900 - 3a8: 000c .2byte 0xc - 3aa: 0501 .2byte 0x501 - 3ac: 0005 .2byte 0x5 - 3ae: 0402 .2byte 0x402 - 3b0: 0302 .2byte 0x302 - 3b2: 097f 0004 0501 0017 .byte 0x7f, 0x09, 0x04, 0x00, 0x01, 0x05, 0x17, 0x00, 0x02, 0x04 - 3ba: 0402 - 3bc: 0301 .2byte 0x301 - 3be: 0900 .2byte 0x900 - 3c0: 000c .2byte 0xc - 3c2: 0501 .2byte 0x501 - 3c4: 0301 .2byte 0x301 - 3c6: 000c0907 .4byte 0xc0907 - 3ca: 0901 .2byte 0x901 - 3cc: 0018 .2byte 0x18 - 3ce: 0100 .2byte 0x100 - 3d0: 01 Address 0x3d0 is out of bounds. - + 276: 0334 .2byte 0x334 + 278: 00100903 lb x18,1(x0) # 1 <__DATA_BEGIN__-0xffff> + 27c: 0501 .2byte 0x501 + 27e: 0305 .2byte 0x305 + 280: 0904 .2byte 0x904 + 282: 0018 .2byte 0x18 + 284: 0501 .2byte 0x501 + 286: 0319 .2byte 0x319 + 288: 0901 .2byte 0x901 + 28a: 0008 .2byte 0x8 + 28c: 0501 .2byte 0x501 + 28e: 0310 .2byte 0x310 + 290: 0902 .2byte 0x902 + 292: 0008 .2byte 0x8 + 294: 0501 .2byte 0x501 + 296: 0305 .2byte 0x305 + 298: 0905 .2byte 0x905 + 29a: 000c .2byte 0xc + 29c: 0501 .2byte 0x501 + 29e: 09010313 addi x6,x2,144 + 2a2: 0004 .2byte 0x4 + 2a4: 0501 .2byte 0x501 + 2a6: 030c .2byte 0x30c + 2a8: 097f 0014 0501 0318 .byte 0x7f, 0x09, 0x14, 0x00, 0x01, 0x05, 0x18, 0x03, 0x00, 0x09 + 2b0: 0900 + 2b2: 000c .2byte 0xc + 2b4: 0501 .2byte 0x501 + 2b6: 04020023 sb x0,64(x4) # 31040 <__BSS_END__+0x1e89c> + 2ba: 0301 .2byte 0x301 + 2bc: 0900 .2byte 0x900 + 2be: 0004 .2byte 0x4 + 2c0: 0501 .2byte 0x501 + 2c2: 0018 .2byte 0x18 + 2c4: 0402 .2byte 0x402 + 2c6: 0301 .2byte 0x301 + 2c8: 0900 .2byte 0x900 + 2ca: 0020 .2byte 0x20 + 2cc: 0001 .2byte 0x1 + 2ce: 0402 .2byte 0x402 + 2d0: 00030603 lb x12,0(x6) + 2d4: 0409 .2byte 0x409 + 2d6: 0100 .2byte 0x100 + 2d8: 0200 .2byte 0x200 + 2da: 0404 .2byte 0x404 + 2dc: 08090003 lb x0,128(x18) + 2e0: 0100 .2byte 0x100 + 2e2: 0200 .2byte 0x200 + 2e4: 0604 .2byte 0x604 + 2e6: 04090003 lb x0,64(x18) + 2ea: 0100 .2byte 0x100 + 2ec: 0905 .2byte 0x905 + 2ee: 0306 .2byte 0x306 + 2f0: 0905 .2byte 0x905 + 2f2: 0004 .2byte 0x4 + 2f4: 0501 .2byte 0x501 + 2f6: 0305 .2byte 0x305 + 2f8: 0900 .2byte 0x900 + 2fa: 000c .2byte 0xc + 2fc: 0501 .2byte 0x501 + 2fe: 0319 .2byte 0x319 + 300: 0901 .2byte 0x901 + 302: 0004 .2byte 0x4 + 304: 0501 .2byte 0x501 + 306: 0904030b .4byte 0x904030b + 30a: 0008 .2byte 0x8 + 30c: 0501 .2byte 0x501 + 30e: 0305 .2byte 0x305 + 310: 000c0903 lb x18,0(x24) + 314: 0501 .2byte 0x501 + 316: 09010313 addi x6,x2,144 + 31a: 0004 .2byte 0x4 + 31c: 0501 .2byte 0x501 + 31e: 030c .2byte 0x30c + 320: 097f 0014 0501 0318 .byte 0x7f, 0x09, 0x14, 0x00, 0x01, 0x05, 0x18, 0x03, 0x00, 0x09 + 328: 0900 + 32a: 000c .2byte 0xc + 32c: 0501 .2byte 0x501 + 32e: 0024 .2byte 0x24 + 330: 0402 .2byte 0x402 + 332: 0301 .2byte 0x301 + 334: 0900 .2byte 0x900 + 336: 0004 .2byte 0x4 + 338: 0501 .2byte 0x501 + 33a: 0402001b .4byte 0x402001b + 33e: 0301 .2byte 0x301 + 340: 0900 .2byte 0x900 + 342: 0020 .2byte 0x20 + 344: 0501 .2byte 0x501 + 346: 0018 .2byte 0x18 + 348: 0402 .2byte 0x402 + 34a: 0301 .2byte 0x301 + 34c: 0900 .2byte 0x900 + 34e: 0008 .2byte 0x8 + 350: 0001 .2byte 0x1 + 352: 0402 .2byte 0x402 + 354: 00030603 lb x12,0(x6) + 358: 0409 .2byte 0x409 + 35a: 0100 .2byte 0x100 + 35c: 0200 .2byte 0x200 + 35e: 0404 .2byte 0x404 + 360: 08090003 lb x0,128(x18) + 364: 0100 .2byte 0x100 + 366: 0200 .2byte 0x200 + 368: 0604 .2byte 0x604 + 36a: 04090003 lb x0,64(x18) + 36e: 0100 .2byte 0x100 + 370: 0905 .2byte 0x905 + 372: 0306 .2byte 0x306 + 374: 0905 .2byte 0x905 + 376: 0004 .2byte 0x4 + 378: 0501 .2byte 0x501 + 37a: 0305 .2byte 0x305 + 37c: 0900 .2byte 0x900 + 37e: 000c .2byte 0xc + 380: 0501 .2byte 0x501 + 382: 0309 .2byte 0x309 + 384: 0901 .2byte 0x901 + 386: 0004 .2byte 0x4 + 388: 0501 .2byte 0x501 + 38a: 0315 .2byte 0x315 + 38c: 0900 .2byte 0x900 + 38e: 0008 .2byte 0x8 + 390: 0501 .2byte 0x501 + 392: 09010313 addi x6,x2,144 + 396: 0004 .2byte 0x4 + 398: 0501 .2byte 0x501 + 39a: 030c .2byte 0x30c + 39c: 0904 .2byte 0x904 + 39e: 0014 .2byte 0x14 + 3a0: 0501 .2byte 0x501 + 3a2: 0301 .2byte 0x301 + 3a4: 0901 .2byte 0x901 + 3a6: 0004 .2byte 0x4 + 3a8: 0501 .2byte 0x501 + 3aa: 031c .2byte 0x31c + 3ac: 0908 .2byte 0x908 + 3ae: 0014 .2byte 0x14 + 3b0: 0501 .2byte 0x501 + 3b2: 0308 .2byte 0x308 + 3b4: 00280903 lb x18,2(x16) + 3b8: 0501 .2byte 0x501 + 3ba: 030e .2byte 0x30e + 3bc: 0902 .2byte 0x902 + 3be: 002c .2byte 0x2c + 3c0: 0501 .2byte 0x501 + 3c2: 030a .2byte 0x30a + 3c4: 0902 .2byte 0x902 + 3c6: 000c .2byte 0xc + 3c8: 0501 .2byte 0x501 + 3ca: 031d .2byte 0x31d + 3cc: 0902 .2byte 0x902 + 3ce: 0004 .2byte 0x4 + 3d0: 0501 .2byte 0x501 + 3d2: 0305 .2byte 0x305 + 3d4: 0902 .2byte 0x902 + 3d6: 0024 .2byte 0x24 + 3d8: 0501 .2byte 0x501 + 3da: 0314 .2byte 0x314 + 3dc: 0902 .2byte 0x902 + 3de: 0004 .2byte 0x4 + 3e0: 0501 .2byte 0x501 + 3e2: 0900030f .4byte 0x900030f + 3e6: 0008 .2byte 0x8 + 3e8: 0501 .2byte 0x501 + 3ea: 0314 .2byte 0x314 + 3ec: 0900 .2byte 0x900 + 3ee: 0004 .2byte 0x4 + 3f0: 0501 .2byte 0x501 + 3f2: 031a .2byte 0x31a + 3f4: 0900 .2byte 0x900 + 3f6: 0008 .2byte 0x8 + 3f8: 0501 .2byte 0x501 + 3fa: 0322 .2byte 0x322 + 3fc: 0901 .2byte 0x901 + 3fe: 0008 .2byte 0x8 + 400: 0501 .2byte 0x501 + 402: 0314 .2byte 0x314 + 404: 0900 .2byte 0x900 + 406: 0010 .2byte 0x10 + 408: 0501 .2byte 0x501 + 40a: 0900030f .4byte 0x900030f + 40e: 0008 .2byte 0x8 + 410: 0501 .2byte 0x501 + 412: 0314 .2byte 0x314 + 414: 0900 .2byte 0x900 + 416: 0004 .2byte 0x4 + 418: 0501 .2byte 0x501 + 41a: 0322 .2byte 0x322 + 41c: 0900 .2byte 0x900 + 41e: 0008 .2byte 0x8 + 420: 0501 .2byte 0x501 + 422: 031a .2byte 0x31a + 424: 0900 .2byte 0x900 + 426: 0004 .2byte 0x4 + 428: 0501 .2byte 0x501 + 42a: 031e .2byte 0x31e + 42c: 0902 .2byte 0x902 + 42e: 0004 .2byte 0x4 + 430: 0501 .2byte 0x501 + 432: 0308 .2byte 0x308 + 434: 0901 .2byte 0x901 + 436: 0014 .2byte 0x14 + 438: 0501 .2byte 0x501 + 43a: 0312 .2byte 0x312 + 43c: 097a .2byte 0x97a + 43e: 0014 .2byte 0x14 + 440: 0501 .2byte 0x501 + 442: 0309 .2byte 0x309 + 444: 0909 .2byte 0x909 + 446: 0008 .2byte 0x8 + 448: 0501 .2byte 0x501 + 44a: 0301 .2byte 0x301 + 44c: 0901 .2byte 0x901 + 44e: 0004 .2byte 0x4 + 450: 0501 .2byte 0x501 + 452: 030c .2byte 0x30c + 454: 0909 .2byte 0x909 + 456: 001c .2byte 0x1c + 458: 0501 .2byte 0x501 + 45a: 0902030b .4byte 0x902030b + 45e: 0010 .2byte 0x10 + 460: 0501 .2byte 0x501 + 462: 0308 .2byte 0x308 + 464: 090e .2byte 0x90e + 466: 000c .2byte 0xc + 468: 0501 .2byte 0x501 + 46a: 0305 .2byte 0x305 + 46c: 0901 .2byte 0x901 + 46e: 000c .2byte 0xc + 470: 0501 .2byte 0x501 + 472: 0309 .2byte 0x309 + 474: 0902 .2byte 0x902 + 476: 0004 .2byte 0x4 + 478: 0501 .2byte 0x501 + 47a: 0301 .2byte 0x301 + 47c: 0901 .2byte 0x901 + 47e: 0004 .2byte 0x4 + 480: 0901 .2byte 0x901 + 482: 0014 .2byte 0x14 + 484: 0100 .2byte 0x100 + 486: 9701 .2byte 0x9701 + 488: 0001 .2byte 0x1 + 48a: 0500 .2byte 0x500 + 48c: 0400 .2byte 0x400 + 48e: 3300 .2byte 0x3300 + 490: 0000 .2byte 0x0 + 492: 0100 .2byte 0x100 + 494: 0101 .2byte 0x101 + 496: 000d0efb .4byte 0xd0efb + 49a: 0101 .2byte 0x101 + 49c: 0101 .2byte 0x101 + 49e: 0000 .2byte 0x0 + 4a0: 0100 .2byte 0x100 + 4a2: 0000 .2byte 0x0 + 4a4: 0101 .2byte 0x101 + 4a6: 1f01 .2byte 0x1f01 + 4a8: 0002 .2byte 0x2 + 4aa: 0000 .2byte 0x0 + 4ac: 2800 .2byte 0x2800 + 4ae: 0000 .2byte 0x0 + 4b0: 0200 .2byte 0x200 + 4b2: 1f01 .2byte 0x1f01 + 4b4: 0f02 .2byte 0xf02 + 4b6: 00007703 .4byte 0x7703 + 4ba: 0000 .2byte 0x0 + 4bc: 00000077 .4byte 0x77 + 4c0: 6a00 .2byte 0x6a00 + 4c2: 0000 .2byte 0x0 + 4c4: 0100 .2byte 0x100 + 4c6: 2705 .2byte 0x2705 + 4c8: 0500 .2byte 0x500 + 4ca: 1402 .2byte 0x1402 + 4cc: 0005 .2byte 0x5 + 4ce: 1580 .2byte 0x1580 + 4d0: 0905 .2byte 0x905 + 4d2: 10090103 lb x2,256(x18) + 4d6: 0100 .2byte 0x100 + 4d8: 0505 .2byte 0x505 + 4da: 04090103 lb x2,64(x18) + 4de: 0100 .2byte 0x100 + 4e0: 0f05 .2byte 0xf05 + 4e2: 04090103 lb x2,64(x18) + 4e6: 0100 .2byte 0x100 + 4e8: 1005 .2byte 0x1005 + 4ea: 0c097f03 .4byte 0xc097f03 + 4ee: 0100 .2byte 0x100 + 4f0: 1605 .2byte 0x1605 + 4f2: 04090003 lb x0,64(x18) + 4f6: 0100 .2byte 0x100 + 4f8: 1805 .2byte 0x1805 + 4fa: 0c090003 lb x0,192(x18) + 4fe: 0100 .2byte 0x100 + 500: 0c05 .2byte 0xc05 + 502: 04090303 lb x6,64(x18) + 506: 0100 .2byte 0x100 + 508: 0105 .2byte 0x105 + 50a: 04090103 lb x2,64(x18) + 50e: 0100 .2byte 0x100 + 510: 4f05 .2byte 0x4f05 + 512: 10090203 lb x4,256(x18) + 516: 0100 .2byte 0x100 + 518: 2305 .2byte 0x2305 + 51a: 1c090203 lb x4,448(x18) + 51e: 0100 .2byte 0x100 + 520: 0e05 .2byte 0xe05 + 522: 10090203 lb x4,256(x18) + 526: 0100 .2byte 0x100 + 528: 0505 .2byte 0x505 + 52a: 04090003 lb x0,64(x18) + 52e: 0100 .2byte 0x100 + 530: 0f05 .2byte 0xf05 + 532: 0200 .2byte 0x200 + 534: 0304 .2byte 0x304 + 536: 04090103 lb x2,64(x18) + 53a: 0100 .2byte 0x100 + 53c: 1005 .2byte 0x1005 + 53e: 0200 .2byte 0x200 + 540: 0304 .2byte 0x304 + 542: 04090003 lb x0,64(x18) + 546: 0100 .2byte 0x100 + 548: 1205 .2byte 0x1205 + 54a: 0200 .2byte 0x200 + 54c: 0304 .2byte 0x304 + 54e: 08090003 lb x0,128(x18) + 552: 0100 .2byte 0x100 + 554: 0505 .2byte 0x505 + 556: 0200 .2byte 0x200 + 558: 0304 .2byte 0x304 + 55a: 04097f03 .4byte 0x4097f03 + 55e: 0100 .2byte 0x100 + 560: 1705 .2byte 0x1705 + 562: 0200 .2byte 0x200 + 564: 0104 .2byte 0x104 + 566: 0c090003 lb x0,192(x18) + 56a: 0100 .2byte 0x100 + 56c: 0e05 .2byte 0xe05 + 56e: 0c090403 lb x8,192(x18) + 572: 0100 .2byte 0x100 + 574: 0505 .2byte 0x505 + 576: 04090003 lb x0,64(x18) + 57a: 0100 .2byte 0x100 + 57c: 1205 .2byte 0x1205 + 57e: 04090103 lb x2,64(x18) + 582: 0100 .2byte 0x100 + 584: 0905 .2byte 0x905 + 586: 04090003 lb x0,64(x18) + 58a: 0100 .2byte 0x100 + 58c: 1905 .2byte 0x1905 + 58e: 04090103 lb x2,64(x18) + 592: 0100 .2byte 0x100 + 594: 1a05 .2byte 0x1a05 + 596: 04090003 lb x0,64(x18) + 59a: 0100 .2byte 0x100 + 59c: 2505 .2byte 0x2505 + 59e: 0c090003 lb x0,192(x18) + 5a2: 0100 .2byte 0x100 + 5a4: 2605 .2byte 0x2605 + 5a6: 04090003 lb x0,64(x18) + 5aa: 0100 .2byte 0x100 + 5ac: 0d05 .2byte 0xd05 + 5ae: 0c090003 lb x0,192(x18) + 5b2: 0100 .2byte 0x100 + 5b4: 1705 .2byte 0x1705 + 5b6: 04090103 lb x2,64(x18) + 5ba: 0100 .2byte 0x100 + 5bc: 1805 .2byte 0x1805 + 5be: 04090003 lb x0,64(x18) + 5c2: 0100 .2byte 0x100 + 5c4: 1905 .2byte 0x1905 + 5c6: 0c090003 lb x0,192(x18) + 5ca: 0100 .2byte 0x100 + 5cc: 0905 .2byte 0x905 + 5ce: 0200 .2byte 0x200 + 5d0: 0204 .2byte 0x204 + 5d2: 0c097e03 .4byte 0xc097e03 + 5d6: 0100 .2byte 0x100 + 5d8: 1f05 .2byte 0x1f05 + 5da: 0200 .2byte 0x200 + 5dc: 0104 .2byte 0x104 + 5de: 0c090003 lb x0,192(x18) + 5e2: 0100 .2byte 0x100 + 5e4: 2005 .2byte 0x2005 + 5e6: 0200 .2byte 0x200 + 5e8: 0104 .2byte 0x104 + 5ea: 04090003 lb x0,64(x18) + 5ee: 0100 .2byte 0x100 + 5f0: 2205 .2byte 0x2205 + 5f2: 0200 .2byte 0x200 + 5f4: 0104 .2byte 0x104 + 5f6: 0c090003 lb x0,192(x18) + 5fa: 0100 .2byte 0x100 + 5fc: 0505 .2byte 0x505 + 5fe: 0200 .2byte 0x200 + 600: 0204 .2byte 0x204 + 602: 04097f03 .4byte 0x4097f03 + 606: 0100 .2byte 0x100 + 608: 1705 .2byte 0x1705 + 60a: 0200 .2byte 0x200 + 60c: 0104 .2byte 0x104 + 60e: 0c090003 lb x0,192(x18) + 612: 0100 .2byte 0x100 + 614: 0105 .2byte 0x105 + 616: 0c090703 lb x14,192(x18) + 61a: 0100 .2byte 0x100 + 61c: 1809 .2byte 0x1809 + 61e: 0000 .2byte 0x0 + 620: 0101 .2byte 0x101 + 622: 01cc .2byte 0x1cc + 624: 0000 .2byte 0x0 + 626: 0005 .2byte 0x5 + 628: 0004 .2byte 0x4 + 62a: 0038 .2byte 0x38 + 62c: 0000 .2byte 0x0 + 62e: 0101 .2byte 0x101 + 630: fb01 .2byte 0xfb01 + 632: 0d0e .2byte 0xd0e + 634: 0100 .2byte 0x100 + 636: 0101 .2byte 0x101 + 638: 0001 .2byte 0x1 + 63a: 0000 .2byte 0x0 + 63c: 0001 .2byte 0x1 + 63e: 0100 .2byte 0x100 + 640: 0101 .2byte 0x101 + 642: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + 648: 0028 .2byte 0x28 + 64a: 0000 .2byte 0x0 + 64c: 0102 .2byte 0x102 + 64e: 021f 040f 0082 .byte 0x1f, 0x02, 0x0f, 0x04, 0x82, 0x00 + 654: 0000 .2byte 0x0 + 656: 8200 .2byte 0x8200 + 658: 0000 .2byte 0x0 + 65a: 0000 .2byte 0x0 + 65c: 00000093 addi x1,x0,0 + 660: 6a00 .2byte 0x6a00 + 662: 0000 .2byte 0x0 + 664: 0100 .2byte 0x100 + 666: 2705 .2byte 0x2705 + 668: 0500 .2byte 0x500 + 66a: 5c02 .2byte 0x5c02 + 66c: 0006 .2byte 0x6 + 66e: 1580 .2byte 0x1580 + 670: 0905 .2byte 0x905 + 672: 10090103 lb x2,256(x18) + 676: 0100 .2byte 0x100 + 678: 0505 .2byte 0x505 + 67a: 04090103 lb x2,64(x18) + 67e: 0100 .2byte 0x100 + 680: 0f05 .2byte 0xf05 + 682: 04090103 lb x2,64(x18) + 686: 0100 .2byte 0x100 + 688: 1005 .2byte 0x1005 + 68a: 0c097f03 .4byte 0xc097f03 + 68e: 0100 .2byte 0x100 + 690: 1605 .2byte 0x1605 + 692: 04090003 lb x0,64(x18) + 696: 0100 .2byte 0x100 + 698: 1805 .2byte 0x1805 + 69a: 0c090003 lb x0,192(x18) + 69e: 0100 .2byte 0x100 + 6a0: 0c05 .2byte 0xc05 + 6a2: 04090303 lb x6,64(x18) + 6a6: 0100 .2byte 0x100 + 6a8: 0105 .2byte 0x105 + 6aa: 04090103 lb x2,64(x18) + 6ae: 0100 .2byte 0x100 + 6b0: 3705 .2byte 0x3705 + 6b2: 10090303 lb x6,256(x18) + 6b6: 0100 .2byte 0x100 + 6b8: 2305 .2byte 0x2305 + 6ba: 14090103 lb x2,320(x18) + 6be: 0100 .2byte 0x100 + 6c0: 0e05 .2byte 0xe05 + 6c2: 18090303 lb x6,384(x18) + 6c6: 0100 .2byte 0x100 + 6c8: 0505 .2byte 0x505 + 6ca: 04090003 lb x0,64(x18) + 6ce: 0100 .2byte 0x100 + 6d0: 1305 .2byte 0x1305 + 6d2: 0200 .2byte 0x200 + 6d4: 0304 .2byte 0x304 + 6d6: 04090103 lb x2,64(x18) + 6da: 0100 .2byte 0x100 + 6dc: 1905 .2byte 0x1905 + 6de: 0200 .2byte 0x200 + 6e0: 0304 .2byte 0x304 + 6e2: 08090003 lb x0,128(x18) + 6e6: 0100 .2byte 0x100 + 6e8: 1a05 .2byte 0x1a05 + 6ea: 0200 .2byte 0x200 + 6ec: 0304 .2byte 0x304 + 6ee: 04090003 lb x0,64(x18) + 6f2: 0100 .2byte 0x100 + 6f4: 1c05 .2byte 0x1c05 + 6f6: 0200 .2byte 0x200 + 6f8: 0304 .2byte 0x304 + 6fa: 04090003 lb x0,64(x18) + 6fe: 0100 .2byte 0x100 + 700: 0505 .2byte 0x505 + 702: 0200 .2byte 0x200 + 704: 0304 .2byte 0x304 + 706: 04097f03 .4byte 0x4097f03 + 70a: 0100 .2byte 0x100 + 70c: 1705 .2byte 0x1705 + 70e: 0200 .2byte 0x200 + 710: 0104 .2byte 0x104 + 712: 0c090003 lb x0,192(x18) + 716: 0100 .2byte 0x100 + 718: 0e05 .2byte 0xe05 + 71a: 0c090503 lb x10,192(x18) + 71e: 0100 .2byte 0x100 + 720: 0505 .2byte 0x505 + 722: 04090003 lb x0,64(x18) + 726: 0100 .2byte 0x100 + 728: 1205 .2byte 0x1205 + 72a: 04090103 lb x2,64(x18) + 72e: 0100 .2byte 0x100 + 730: 0905 .2byte 0x905 + 732: 04090003 lb x0,64(x18) + 736: 0100 .2byte 0x100 + 738: 1b05 .2byte 0x1b05 + 73a: 04090103 lb x2,64(x18) + 73e: 0100 .2byte 0x100 + 740: 2305 .2byte 0x2305 + 742: 08090003 lb x0,128(x18) + 746: 0100 .2byte 0x100 + 748: 2405 .2byte 0x2405 + 74a: 04090003 lb x0,64(x18) + 74e: 0100 .2byte 0x100 + 750: 3305 .2byte 0x3305 + 752: 08090003 lb x0,128(x18) + 756: 0100 .2byte 0x100 + 758: 3905 .2byte 0x3905 + 75a: 08090003 lb x0,128(x18) + 75e: 0100 .2byte 0x100 + 760: 3a05 .2byte 0x3a05 + 762: 04090003 lb x0,64(x18) + 766: 0100 .2byte 0x100 + 768: 0d05 .2byte 0xd05 + 76a: 08090003 lb x0,128(x18) + 76e: 0100 .2byte 0x100 + 770: 1b05 .2byte 0x1b05 + 772: 04090103 lb x2,64(x18) + 776: 0100 .2byte 0x100 + 778: 2105 .2byte 0x2105 + 77a: 08090003 lb x0,128(x18) + 77e: 0100 .2byte 0x100 + 780: 2205 .2byte 0x2205 + 782: 04090003 lb x0,64(x18) + 786: 0100 .2byte 0x100 + 788: 2305 .2byte 0x2305 + 78a: 08090003 lb x0,128(x18) + 78e: 0100 .2byte 0x100 + 790: 0905 .2byte 0x905 + 792: 0200 .2byte 0x200 + 794: 0204 .2byte 0x204 + 796: 0c097e03 .4byte 0xc097e03 + 79a: 0100 .2byte 0x100 + 79c: 2305 .2byte 0x2305 + 79e: 0200 .2byte 0x200 + 7a0: 0104 .2byte 0x104 + 7a2: 0c090003 lb x0,192(x18) + 7a6: 0100 .2byte 0x100 + 7a8: 2905 .2byte 0x2905 + 7aa: 0200 .2byte 0x200 + 7ac: 0104 .2byte 0x104 + 7ae: 08090003 lb x0,128(x18) + 7b2: 0100 .2byte 0x100 + 7b4: 2a05 .2byte 0x2a05 + 7b6: 0200 .2byte 0x200 + 7b8: 0104 .2byte 0x104 + 7ba: 04090003 lb x0,64(x18) + 7be: 0100 .2byte 0x100 + 7c0: 2c05 .2byte 0x2c05 + 7c2: 0200 .2byte 0x200 + 7c4: 0104 .2byte 0x104 + 7c6: 08090003 lb x0,128(x18) + 7ca: 0100 .2byte 0x100 + 7cc: 0505 .2byte 0x505 + 7ce: 0200 .2byte 0x200 + 7d0: 0204 .2byte 0x204 + 7d2: 04097f03 .4byte 0x4097f03 + 7d6: 0100 .2byte 0x100 + 7d8: 1705 .2byte 0x1705 + 7da: 0200 .2byte 0x200 + 7dc: 0104 .2byte 0x104 + 7de: 0c090003 lb x0,192(x18) + 7e2: 0100 .2byte 0x100 + 7e4: 0105 .2byte 0x105 + 7e6: 0c090703 lb x14,192(x18) + 7ea: 0100 .2byte 0x100 + 7ec: 1809 .2byte 0x1809 + 7ee: 0000 .2byte 0x0 + 7f0: 0101 .2byte 0x101 + 7f2: 01fa .2byte 0x1fa + 7f4: 0000 .2byte 0x0 + 7f6: 0005 .2byte 0x5 + 7f8: 0004 .2byte 0x4 + 7fa: 0038 .2byte 0x38 + 7fc: 0000 .2byte 0x0 + 7fe: 0101 .2byte 0x101 + 800: fb01 .2byte 0xfb01 + 802: 0d0e .2byte 0xd0e + 804: 0100 .2byte 0x100 + 806: 0101 .2byte 0x101 + 808: 0001 .2byte 0x1 + 80a: 0000 .2byte 0x0 + 80c: 0001 .2byte 0x1 + 80e: 0100 .2byte 0x100 + 810: 0101 .2byte 0x101 + 812: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + 818: 0028 .2byte 0x28 + 81a: 0000 .2byte 0x0 + 81c: 0102 .2byte 0x102 + 81e: 021f 040f 00a2 .byte 0x1f, 0x02, 0x0f, 0x04, 0xa2, 0x00 + 824: 0000 .2byte 0x0 + 826: a200 .2byte 0xa200 + 828: 0000 .2byte 0x0 + 82a: 0000 .2byte 0x0 + 82c: 006a .2byte 0x6a + 82e: 0000 .2byte 0x0 + 830: b601 .2byte 0xb601 + 832: 0000 .2byte 0x0 + 834: 0000 .2byte 0x0 + 836: 2705 .2byte 0x2705 + 838: 0500 .2byte 0x500 + 83a: b802 .2byte 0xb802 + 83c: 15800007 .4byte 0x15800007 + 840: 0905 .2byte 0x905 + 842: 10090103 lb x2,256(x18) + 846: 0100 .2byte 0x100 + 848: 0505 .2byte 0x505 + 84a: 04090103 lb x2,64(x18) + 84e: 0100 .2byte 0x100 + 850: 0f05 .2byte 0xf05 + 852: 04090103 lb x2,64(x18) + 856: 0100 .2byte 0x100 + 858: 1005 .2byte 0x1005 + 85a: 0c097f03 .4byte 0xc097f03 + 85e: 0100 .2byte 0x100 + 860: 1605 .2byte 0x1605 + 862: 04090003 lb x0,64(x18) + 866: 0100 .2byte 0x100 + 868: 1805 .2byte 0x1805 + 86a: 0c090003 lb x0,192(x18) + 86e: 0100 .2byte 0x100 + 870: 0c05 .2byte 0xc05 + 872: 04090303 lb x6,64(x18) + 876: 0100 .2byte 0x100 + 878: 0105 .2byte 0x105 + 87a: 04090103 lb x2,64(x18) + 87e: 0100 .2byte 0x100 + 880: 4405 .2byte 0x4405 + 882: 10090303 lb x6,256(x18) + 886: 0100 .2byte 0x100 + 888: 2305 .2byte 0x2305 + 88a: 14090103 lb x2,320(x18) + 88e: 0100 .2byte 0x100 + 890: 0e05 .2byte 0xe05 + 892: 18090303 lb x6,384(x18) + 896: 0100 .2byte 0x100 + 898: 0505 .2byte 0x505 + 89a: 04090003 lb x0,64(x18) + 89e: 0100 .2byte 0x100 + 8a0: 1305 .2byte 0x1305 + 8a2: 0200 .2byte 0x200 + 8a4: 0304 .2byte 0x304 + 8a6: 04090103 lb x2,64(x18) + 8aa: 0100 .2byte 0x100 + 8ac: 1905 .2byte 0x1905 + 8ae: 0200 .2byte 0x200 + 8b0: 0304 .2byte 0x304 + 8b2: 08090003 lb x0,128(x18) + 8b6: 0100 .2byte 0x100 + 8b8: 1a05 .2byte 0x1a05 + 8ba: 0200 .2byte 0x200 + 8bc: 0304 .2byte 0x304 + 8be: 04090003 lb x0,64(x18) + 8c2: 0100 .2byte 0x100 + 8c4: 1c05 .2byte 0x1c05 + 8c6: 0200 .2byte 0x200 + 8c8: 0304 .2byte 0x304 + 8ca: 04090003 lb x0,64(x18) + 8ce: 0100 .2byte 0x100 + 8d0: 0505 .2byte 0x505 + 8d2: 0200 .2byte 0x200 + 8d4: 0304 .2byte 0x304 + 8d6: 04097f03 .4byte 0x4097f03 + 8da: 0100 .2byte 0x100 + 8dc: 1705 .2byte 0x1705 + 8de: 0200 .2byte 0x200 + 8e0: 0104 .2byte 0x104 + 8e2: 0c090003 lb x0,192(x18) + 8e6: 0100 .2byte 0x100 + 8e8: 0e05 .2byte 0xe05 + 8ea: 0c090503 lb x10,192(x18) + 8ee: 0100 .2byte 0x100 + 8f0: 0505 .2byte 0x505 + 8f2: 04090003 lb x0,64(x18) + 8f6: 0100 .2byte 0x100 + 8f8: 1205 .2byte 0x1205 + 8fa: 04090103 lb x2,64(x18) + 8fe: 0100 .2byte 0x100 + 900: 0905 .2byte 0x905 + 902: 04090003 lb x0,64(x18) + 906: 0100 .2byte 0x100 + 908: 1b05 .2byte 0x1b05 + 90a: 04090103 lb x2,64(x18) + 90e: 0100 .2byte 0x100 + 910: 2305 .2byte 0x2305 + 912: 08090003 lb x0,128(x18) + 916: 0100 .2byte 0x100 + 918: 2405 .2byte 0x2405 + 91a: 04090003 lb x0,64(x18) + 91e: 0100 .2byte 0x100 + 920: 3305 .2byte 0x3305 + 922: 08090003 lb x0,128(x18) + 926: 0100 .2byte 0x100 + 928: 3905 .2byte 0x3905 + 92a: 08090003 lb x0,128(x18) + 92e: 0100 .2byte 0x100 + 930: 3a05 .2byte 0x3a05 + 932: 04090003 lb x0,64(x18) + 936: 0100 .2byte 0x100 + 938: 0d05 .2byte 0xd05 + 93a: 08090003 lb x0,128(x18) + 93e: 0100 .2byte 0x100 + 940: 1b05 .2byte 0x1b05 + 942: 04090103 lb x2,64(x18) + 946: 0100 .2byte 0x100 + 948: 2105 .2byte 0x2105 + 94a: 08090003 lb x0,128(x18) + 94e: 0100 .2byte 0x100 + 950: 2205 .2byte 0x2205 + 952: 04090003 lb x0,64(x18) + 956: 0100 .2byte 0x100 + 958: 2305 .2byte 0x2305 + 95a: 08090003 lb x0,128(x18) + 95e: 0100 .2byte 0x100 + 960: 0905 .2byte 0x905 + 962: 0200 .2byte 0x200 + 964: 0204 .2byte 0x204 + 966: 0c097e03 .4byte 0xc097e03 + 96a: 0100 .2byte 0x100 + 96c: 2305 .2byte 0x2305 + 96e: 0200 .2byte 0x200 + 970: 0104 .2byte 0x104 + 972: 0c090003 lb x0,192(x18) + 976: 0100 .2byte 0x100 + 978: 2905 .2byte 0x2905 + 97a: 0200 .2byte 0x200 + 97c: 0104 .2byte 0x104 + 97e: 08090003 lb x0,128(x18) + 982: 0100 .2byte 0x100 + 984: 2a05 .2byte 0x2a05 + 986: 0200 .2byte 0x200 + 988: 0104 .2byte 0x104 + 98a: 04090003 lb x0,64(x18) + 98e: 0100 .2byte 0x100 + 990: 2c05 .2byte 0x2c05 + 992: 0200 .2byte 0x200 + 994: 0104 .2byte 0x104 + 996: 08090003 lb x0,128(x18) + 99a: 0100 .2byte 0x100 + 99c: 0505 .2byte 0x505 + 99e: 0200 .2byte 0x200 + 9a0: 0204 .2byte 0x204 + 9a2: 04097f03 .4byte 0x4097f03 + 9a6: 0100 .2byte 0x100 + 9a8: 1705 .2byte 0x1705 + 9aa: 0200 .2byte 0x200 + 9ac: 0104 .2byte 0x104 + 9ae: 0c090003 lb x0,192(x18) + 9b2: 0100 .2byte 0x100 + 9b4: 0105 .2byte 0x105 + 9b6: 0c090703 lb x14,192(x18) + 9ba: 0100 .2byte 0x100 + 9bc: 7705 .2byte 0x7705 + 9be: 18090303 lb x6,384(x18) + 9c2: 0100 .2byte 0x100 + 9c4: 1705 .2byte 0x1705 + 9c6: 1c090103 lb x2,448(x18) + 9ca: 0100 .2byte 0x100 + 9cc: 1505 .2byte 0x1505 + 9ce: 0c090103 lb x2,192(x18) + 9d2: 0100 .2byte 0x100 + 9d4: 0c090103 lb x2,192(x18) + 9d8: 0100 .2byte 0x100 + 9da: 2005 .2byte 0x2005 + 9dc: 0c090103 lb x2,192(x18) + 9e0: 0100 .2byte 0x100 + 9e2: 0105 .2byte 0x105 + 9e4: 10090103 lb x2,256(x18) + 9e8: 0100 .2byte 0x100 + 9ea: 1009 .2byte 0x1009 + 9ec: 0000 .2byte 0x0 + 9ee: 0101 .2byte 0x101 + 9f0: 021e .2byte 0x21e + 9f2: 0000 .2byte 0x0 + 9f4: 0005 .2byte 0x5 + 9f6: 0004 .2byte 0x4 + 9f8: 004a .2byte 0x4a + 9fa: 0000 .2byte 0x0 + 9fc: 0101 .2byte 0x101 + 9fe: fb01 .2byte 0xfb01 + a00: 0d0e .2byte 0xd0e + a02: 0100 .2byte 0x100 + a04: 0101 .2byte 0x101 + a06: 0001 .2byte 0x1 + a08: 0000 .2byte 0x0 + a0a: 0001 .2byte 0x1 + a0c: 0100 .2byte 0x100 + a0e: 0101 .2byte 0x101 + a10: 041f 0000 0000 .byte 0x1f, 0x04, 0x00, 0x00, 0x00, 0x00 + a16: 0028 .2byte 0x28 + a18: 0000 .2byte 0x0 + a1a: 00d6 .2byte 0xd6 + a1c: 0000 .2byte 0x0 + a1e: 0114 .2byte 0x114 + a20: 0000 .2byte 0x0 + a22: 0102 .2byte 0x102 + a24: 021f 060f 00c8 .byte 0x1f, 0x02, 0x0f, 0x06, 0xc8, 0x00 + a2a: 0000 .2byte 0x0 + a2c: c800 .2byte 0xc800 + a2e: 0000 .2byte 0x0 + a30: 0000 .2byte 0x0 + a32: 006a .2byte 0x6a + a34: 0000 .2byte 0x0 + a36: 6b01 .2byte 0x6b01 + a38: 0001 .2byte 0x1 + a3a: 0200 .2byte 0x200 + a3c: 00000173 .4byte 0x173 + a40: 8100 .2byte 0x8100 + a42: 0001 .2byte 0x1 + a44: 0300 .2byte 0x300 + a46: 0105 .2byte 0x105 + a48: 0500 .2byte 0x500 + a4a: 7402 .2byte 0x7402 + a4c: 0009 .2byte 0x9 + a4e: 1480 .2byte 0x1480 + a50: 0705 .2byte 0x705 + a52: 1c090103 lb x2,448(x18) + a56: 0100 .2byte 0x100 + a58: 1905 .2byte 0x1905 + a5a: 0c090003 lb x0,192(x18) + a5e: 0100 .2byte 0x100 + a60: 2705 .2byte 0x2705 + a62: 0c090003 lb x0,192(x18) + a66: 0100 .2byte 0x100 + a68: 0105 .2byte 0x105 + a6a: 0c090103 lb x2,192(x18) + a6e: 0100 .2byte 0x100 + a70: 2305 .2byte 0x2305 + a72: 10090203 lb x4,256(x18) + a76: 0100 .2byte 0x100 + a78: 2205 .2byte 0x2205 + a7a: 14090103 lb x2,320(x18) + a7e: 0100 .2byte 0x100 + a80: 0e05 .2byte 0xe05 + a82: 18090203 lb x4,384(x18) + a86: 0100 .2byte 0x100 + a88: 0505 .2byte 0x505 + a8a: 04090003 lb x0,64(x18) + a8e: 0100 .2byte 0x100 + a90: 0905 .2byte 0x905 + a92: 0200 .2byte 0x200 + a94: 0304 .2byte 0x304 + a96: 04090103 lb x2,64(x18) + a9a: 0100 .2byte 0x100 + a9c: 0f05 .2byte 0xf05 + a9e: 0200 .2byte 0x200 + aa0: 0304 .2byte 0x304 + aa2: 08090003 lb x0,128(x18) + aa6: 0100 .2byte 0x100 + aa8: 1005 .2byte 0x1005 + aaa: 0200 .2byte 0x200 + aac: 0304 .2byte 0x304 + aae: 04090003 lb x0,64(x18) + ab2: 0100 .2byte 0x100 + ab4: 1205 .2byte 0x1205 + ab6: 0200 .2byte 0x200 + ab8: 0304 .2byte 0x304 + aba: 04090003 lb x0,64(x18) + abe: 0100 .2byte 0x100 + ac0: 0505 .2byte 0x505 + ac2: 0200 .2byte 0x200 + ac4: 0304 .2byte 0x304 + ac6: 04097f03 .4byte 0x4097f03 + aca: 0100 .2byte 0x100 + acc: 1705 .2byte 0x1705 + ace: 0200 .2byte 0x200 + ad0: 0104 .2byte 0x104 + ad2: 0c090003 lb x0,192(x18) + ad6: 0100 .2byte 0x100 + ad8: 0e05 .2byte 0xe05 + ada: 0c090403 lb x8,192(x18) + ade: 0100 .2byte 0x100 + ae0: 0505 .2byte 0x505 + ae2: 04090003 lb x0,64(x18) + ae6: 0100 .2byte 0x100 + ae8: 1205 .2byte 0x1205 + aea: 04090103 lb x2,64(x18) + aee: 0100 .2byte 0x100 + af0: 0905 .2byte 0x905 + af2: 04090003 lb x0,64(x18) + af6: 0100 .2byte 0x100 + af8: 1105 .2byte 0x1105 + afa: 04090103 lb x2,64(x18) + afe: 0100 .2byte 0x100 + b00: 1905 .2byte 0x1905 + b02: 08090003 lb x0,128(x18) + b06: 0100 .2byte 0x100 + b08: 1a05 .2byte 0x1a05 + b0a: 04090003 lb x0,64(x18) + b0e: 0100 .2byte 0x100 + b10: 1f05 .2byte 0x1f05 + b12: 08090003 lb x0,128(x18) + b16: 0100 .2byte 0x100 + b18: 2505 .2byte 0x2505 + b1a: 08090003 lb x0,128(x18) + b1e: 0100 .2byte 0x100 + b20: 2605 .2byte 0x2605 + b22: 04090003 lb x0,64(x18) + b26: 0100 .2byte 0x100 + b28: 0d05 .2byte 0xd05 + b2a: 08090003 lb x0,128(x18) + b2e: 0100 .2byte 0x100 + b30: 1105 .2byte 0x1105 + b32: 04090103 lb x2,64(x18) + b36: 0100 .2byte 0x100 + b38: 1705 .2byte 0x1705 + b3a: 08090003 lb x0,128(x18) + b3e: 0100 .2byte 0x100 + b40: 1805 .2byte 0x1805 + b42: 04090003 lb x0,64(x18) + b46: 0100 .2byte 0x100 + b48: 1905 .2byte 0x1905 + b4a: 08090003 lb x0,128(x18) + b4e: 0100 .2byte 0x100 + b50: 0905 .2byte 0x905 + b52: 0200 .2byte 0x200 + b54: 0204 .2byte 0x204 + b56: 0c097e03 .4byte 0xc097e03 + b5a: 0100 .2byte 0x100 + b5c: 1905 .2byte 0x1905 + b5e: 0200 .2byte 0x200 + b60: 0104 .2byte 0x104 + b62: 0c090003 lb x0,192(x18) + b66: 0100 .2byte 0x100 + b68: 1f05 .2byte 0x1f05 + b6a: 0200 .2byte 0x200 + b6c: 0104 .2byte 0x104 + b6e: 08090003 lb x0,128(x18) + b72: 0100 .2byte 0x100 + b74: 2005 .2byte 0x2005 + b76: 0200 .2byte 0x200 + b78: 0104 .2byte 0x104 + b7a: 04090003 lb x0,64(x18) + b7e: 0100 .2byte 0x100 + b80: 2205 .2byte 0x2205 + b82: 0200 .2byte 0x200 + b84: 0104 .2byte 0x104 + b86: 08090003 lb x0,128(x18) + b8a: 0100 .2byte 0x100 + b8c: 0505 .2byte 0x505 + b8e: 0200 .2byte 0x200 + b90: 0204 .2byte 0x204 + b92: 04097f03 .4byte 0x4097f03 + b96: 0100 .2byte 0x100 + b98: 1705 .2byte 0x1705 + b9a: 0200 .2byte 0x200 + b9c: 0104 .2byte 0x104 + b9e: 0c090003 lb x0,192(x18) + ba2: 0100 .2byte 0x100 + ba4: 0105 .2byte 0x105 + ba6: 0c090703 lb x14,192(x18) + baa: 0100 .2byte 0x100 + bac: 2e05 .2byte 0x2e05 + bae: 18090203 lb x4,384(x18) + bb2: 0100 .2byte 0x100 + bb4: 0c05 .2byte 0xc05 + bb6: 10090103 lb x2,256(x18) + bba: 0100 .2byte 0x100 + bbc: 0105 .2byte 0x105 + bbe: 08090103 lb x2,128(x18) + bc2: 0100 .2byte 0x100 + bc4: 2a05 .2byte 0x2a05 + bc6: 10090203 lb x4,256(x18) + bca: 0100 .2byte 0x100 + bcc: 0905 .2byte 0x905 + bce: 10090103 lb x2,256(x18) + bd2: 0100 .2byte 0x100 + bd4: 0505 .2byte 0x505 + bd6: 04090103 lb x2,64(x18) + bda: 0100 .2byte 0x100 + bdc: 0905 .2byte 0x905 + bde: 04090103 lb x2,64(x18) + be2: 0100 .2byte 0x100 + be4: 1005 .2byte 0x1005 + be6: 0c097f03 .4byte 0xc097f03 + bea: 0100 .2byte 0x100 + bec: 1605 .2byte 0x1605 + bee: 04090003 lb x0,64(x18) + bf2: 0100 .2byte 0x100 + bf4: 1805 .2byte 0x1805 + bf6: 0c090003 lb x0,192(x18) + bfa: 0100 .2byte 0x100 + bfc: 0c05 .2byte 0xc05 + bfe: 04090303 lb x6,64(x18) + c02: 0100 .2byte 0x100 + c04: 0105 .2byte 0x105 + c06: 04090103 lb x2,64(x18) + c0a: 0100 .2byte 0x100 + c0c: 1009 .2byte 0x1009 + c0e: 0000 .2byte 0x0 + c10: 0101 .2byte 0x101 Disassembly of section .debug_str: 00000000 <.debug_str>: - 0: 635f 7472 2e30 .byte 0x5f, 0x63, 0x72, 0x74, 0x30, 0x2e - 6: 682f0053 .4byte 0x682f0053 - a: 2f656d6f jal x26,56300 <_start-0x7ffa9d00> - e: 7375 .2byte 0x7375 - 10: 7265 .2byte 0x7265 - 12: 726f772f .4byte 0x726f772f - 16: 70632f6b .4byte 0x70632f6b - 1a: 0070 .2byte 0x70 - 1c: 20554e47 .4byte 0x20554e47 - 20: 5341 .2byte 0x5341 - 22: 3220 .2byte 0x3220 - 24: 342e .2byte 0x342e - 26: 2e30 .2byte 0x2e30 - 28: 0030 .2byte 0x30 - 2a: 5f5f 5845 4543 .byte 0x5f, 0x5f, 0x45, 0x58, 0x43, 0x45 - 30: 5450 .2byte 0x5450 - 32: 4f49 .2byte 0x4f49 - 34: 534e .2byte 0x534e - 36: 3120 .2byte 0x3120 - 38: 5f00 .2byte 0x5f00 - 3a: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 40: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 - 46: 4955 .2byte 0x4955 - 48: 5445 .2byte 0x5445 - 4a: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f - 50: 3120 .2byte 0x3120 - 52: 5f00 .2byte 0x5f00 - 54: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 5a: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 - 60: 464e .2byte 0x464e - 62: 4e49 .2byte 0x4e49 - 64: 5449 .2byte 0x5449 - 66: 5f59 .2byte 0x5f59 - 68: 205f 0031 4955 .byte 0x5f, 0x20, 0x31, 0x00, 0x55, 0x49 - 6e: 544e .2byte 0x544e - 70: 5f38 .2byte 0x5f38 - 72: 414d .2byte 0x414d - 74: 0058 .2byte 0x58 - 76: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 7c: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 - 82: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 88: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 - 8e: 64656e67 .4byte 0x64656e67 - 92: 6920 .2byte 0x6920 - 94: 746e .2byte 0x746e - 96: 5f00 .2byte 0x5f00 - 98: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 9e: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 - a4: 5058 .2byte 0x5058 - a6: 5f5f 3120 3230 .byte 0x5f, 0x5f, 0x20, 0x31, 0x30, 0x32 - ac: 0034 .2byte 0x34 - ae: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - b4: 494d .2byte 0x494d - b6: 5f4e .2byte 0x5f4e - b8: 3031 .2byte 0x3031 - ba: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - c0: 2820 .2byte 0x2820 - c2: 332d .2byte 0x332d - c4: 5f002937 lui x18,0x5f002 - c8: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - ce: 5f58 .2byte 0x5f58 - d0: 4544 .2byte 0x4544 - d2: 4f4e .2byte 0x4f4e - d4: 4d52 .2byte 0x4d52 - d6: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - dc: 3620 .2byte 0x3620 - de: 342e .2byte 0x342e - e0: 37313537 lui x10,0x37313 - e4: 3135 .2byte 0x3135 - e6: 3931 .2byte 0x3931 - e8: 3334 .2byte 0x3334 - ea: 3038 .2byte 0x3038 - ec: 3532 .2byte 0x3532 - ee: 3131 .2byte 0x3131 - f0: 3930 .2byte 0x3930 - f2: 3432 .2byte 0x3432 - f4: 3334 .2byte 0x3334 - f6: 3938 .2byte 0x3938 - f8: 3835 .2byte 0x3835 - fa: 3232 .2byte 0x3232 - fc: 36343637 lui x12,0x36343 - 100: 3535 .2byte 0x3535 - 102: 2d65 .2byte 0x2d65 - 104: 3934 .2byte 0x3934 - 106: 3636 .2byte 0x3636 - 108: 3646 .2byte 0x3646 - 10a: 7834 .2byte 0x7834 - 10c: 5f00 .2byte 0x5f00 - 10e: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 114: 5f58 .2byte 0x5f58 - 116: 414d .2byte 0x414d - 118: 5f58 .2byte 0x5f58 - 11a: 5845 .2byte 0x5845 - 11c: 5f50 .2byte 0x5f50 - 11e: 205f 3031 3432 .byte 0x5f, 0x20, 0x31, 0x30, 0x32, 0x34 - 124: 5f00 .2byte 0x5f00 - 126: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 - 12c: 5341 .2byte 0x5341 - 12e: 3154 .2byte 0x3154 - 130: 5f36 .2byte 0x5f36 - 132: 54444957 .4byte 0x54444957 - 136: 5f48 .2byte 0x5f48 - 138: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f - 13e: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 - 144: 5f32 .2byte 0x5f32 - 146: 29632843 .4byte 0x29632843 - 14a: 6320 .2byte 0x6320 - 14c: 2320 .2byte 0x2320 - 14e: 4c552023 sw x5,1216(x10) # 373134c0 <_start-0x48cecb40> - 152: 4900 .2byte 0x4900 - 154: 544e .2byte 0x544e - 156: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 15c: 3631 .2byte 0x3631 - 15e: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - 164: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 16a: 5f58 .2byte 0x5f58 - 16c: 5045 .2byte 0x5045 - 16e: 4f4c4953 .4byte 0x4f4c4953 - 172: 5f4e .2byte 0x5f4e - 174: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 - 17a: 3935 .2byte 0x3935 - 17c: 3932 .2byte 0x3932 - 17e: 3439 .2byte 0x3439 - 180: 3334 .2byte 0x3334 - 182: 3738 .2byte 0x3738 - 184: 3332 .2byte 0x3332 - 186: 3835 .2byte 0x3835 - 188: 3335 .2byte 0x3335 - 18a: 3530 .2byte 0x3530 - 18c: 3935 .2byte 0x3935 - 18e: 34393737 lui x14,0x34393 - 192: 3532 .2byte 0x3532 - 194: 3438 .2byte 0x3438 - 196: 3239 .2byte 0x3239 - 198: 65323337 lui x6,0x65323 - 19c: 332d .2byte 0x332d - 19e: 4634 .2byte 0x4634 - 1a0: 3436 .2byte 0x3436 - 1a2: 0078 .2byte 0x78 - 1a4: 4e49 .2byte 0x4e49 - 1a6: 5f54 .2byte 0x5f54 - 1a8: 454c .2byte 0x454c - 1aa: 5341 .2byte 0x5341 - 1ac: 3154 .2byte 0x3154 - 1ae: 5f36 .2byte 0x5f36 - 1b0: 414d .2byte 0x414d - 1b2: 2058 .2byte 0x2058 - 1b4: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 1ba: 454c .2byte 0x454c - 1bc: 5341 .2byte 0x5341 - 1be: 3154 .2byte 0x3154 - 1c0: 5f36 .2byte 0x5f36 - 1c2: 414d .2byte 0x414d - 1c4: 5f58 .2byte 0x5f58 - 1c6: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c - 1cc: 3354 .2byte 0x3354 - 1ce: 5f32 .2byte 0x5f32 - 1d0: 414d .2byte 0x414d - 1d2: 544e .2byte 0x544e - 1d4: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f - 1da: 3220 .2byte 0x3220 - 1dc: 0034 .2byte 0x34 - 1de: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 - 1e4: 3832 .2byte 0x3832 - 1e6: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f - 1ec: 4944 .2byte 0x4944 - 1ee: 205f5f47 .4byte 0x205f5f47 - 1f2: 3131 .2byte 0x3131 - 1f4: 5f5f0033 .4byte 0x5f5f0033 - 1f8: 444c .2byte 0x444c - 1fa: 4c42 .2byte 0x4c42 - 1fc: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f - 202: 4944 .2byte 0x4944 - 204: 205f5f47 .4byte 0x205f5f47 - 208: 3131 .2byte 0x3131 - 20a: 4e490033 .4byte 0x4e490033 - 20e: 3154 .2byte 0x3154 - 210: 5f36 .2byte 0x5f36 - 212: 29632843 .4byte 0x29632843 - 216: 5f20 .2byte 0x5f20 - 218: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 - 21e: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 - 224: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 22a: 6564 .2byte 0x6564 - 22c: 7564 .2byte 0x7564 - 22e: 6f697463 bgeu x18,x22,916 <_start-0x7ffff6ea> - 232: 5f6e .2byte 0x5f6e - 234: 64697567 .4byte 0x64697567 - 238: 7365 .2byte 0x7365 - 23a: 3220 .2byte 0x3220 - 23c: 3130 .2byte 0x3130 - 23e: 4c333037 lui x0,0x4c333 - 242: 5f00 .2byte 0x5f00 - 244: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 24a: 5f58 .2byte 0x5f58 - 24c: 4544 .2byte 0x4544 - 24e: 414d4943 .4byte 0x414d4943 - 252: 5f4c .2byte 0x5f4c - 254: 4944 .2byte 0x4944 - 256: 205f5f47 .4byte 0x205f5f47 - 25a: 3731 .2byte 0x3731 - 25c: 5f00 .2byte 0x5f00 - 25e: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 - 264: 635f 6f6d 6564 .byte 0x5f, 0x63, 0x6d, 0x6f, 0x64, 0x65 - 26a: 5f6c .2byte 0x5f6c - 26c: 656d .2byte 0x656d - 26e: 6c64 .2byte 0x6c64 - 270: 3120776f jal x14,7582 <_start-0x7fff8a7e> - 274: 5f00 .2byte 0x5f00 - 276: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d - 27c: 4e49 .2byte 0x4e49 - 27e: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 284: 2820 .2byte 0x2820 - 286: 312d .2byte 0x312d - 288: 3230 .2byte 0x3230 - 28a: 2931 .2byte 0x2931 - 28c: 5f00 .2byte 0x5f00 - 28e: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f - 294: 4f4c .2byte 0x4f4c - 296: 474e .2byte 0x474e - 298: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 - 29e: 5f5f 3620 0034 .byte 0x5f, 0x5f, 0x20, 0x36, 0x34, 0x00 - 2a4: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 2aa: 5441 .2byte 0x5441 - 2ac: 43494d4f .4byte 0x43494d4f - 2b0: 435f 4148 3152 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x31 - 2b6: 5f36 .2byte 0x5f36 - 2b8: 5f54 .2byte 0x5f54 - 2ba: 4f4c .2byte 0x4f4c - 2bc: 465f4b43 .4byte 0x465f4b43 - 2c0: 4552 .2byte 0x4552 - 2c2: 2045 .2byte 0x2045 - 2c4: 0031 .2byte 0x31 - 2c6: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 2cc: 5832 .2byte 0x5832 - 2ce: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2d4: 3120 .2byte 0x3120 - 2d6: 372e .2byte 0x372e - 2d8: 3739 .2byte 0x3739 - 2da: 3936 .2byte 0x3936 - 2dc: 34333133 .4byte 0x34333133 - 2e0: 3638 .2byte 0x3638 - 2e2: 3332 .2byte 0x3332 - 2e4: 3531 .2byte 0x3531 - 2e6: 31383037 lui x0,0x31383 - 2ea: 3534 .2byte 0x3534 - 2ec: 3732 .2byte 0x3732 - 2ee: 3234 .2byte 0x3234 - 2f0: 31333733 .4byte 0x31333733 - 2f4: 33343037 lui x0,0x33343 - 2f8: 3735 .2byte 0x3735 - 2fa: 2b65 .2byte 0x2b65 - 2fc: 46383033 .4byte 0x46383033 - 300: 00783233 sltu x4,x16,x7 - 304: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 - 30a: 3832 .2byte 0x3832 - 30c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 312: 3120 .2byte 0x3120 - 314: 312e .2byte 0x312e - 316: 3938 .2byte 0x3938 - 318: 34313337 lui x6,0x34313 - 31c: 3539 .2byte 0x3539 - 31e: 32373533 .4byte 0x32373533 - 322: 36373133 .4byte 0x36373133 - 326: 3035 .2byte 0x3035 - 328: 3538 .2byte 0x3538 - 32a: 33393537 lui x10,0x33393 - 32e: 3632 .2byte 0x3632 - 330: 3236 .2byte 0x3236 - 332: 3038 .2byte 0x3038 - 334: 3730 .2byte 0x3730 - 336: 3230 .2byte 0x3230 - 338: 2b65 .2byte 0x2b65 - 33a: 3934 .2byte 0x3934 - 33c: 31463233 .4byte 0x31463233 - 340: 3832 .2byte 0x3832 - 342: 5f00 .2byte 0x5f00 - 344: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f - 34a: 5f46 .2byte 0x5f46 - 34c: 544e4957 .4byte 0x544e4957 - 350: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 - 356: 5500 .2byte 0x5500 - 358: 4e49 .2byte 0x4e49 - 35a: 3154 .2byte 0x3154 - 35c: 5f36 .2byte 0x5f36 - 35e: 29632843 .4byte 0x29632843 - 362: 5f20 .2byte 0x5f20 - 364: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 - 36a: 5f36 .2byte 0x5f36 - 36c: 29632843 .4byte 0x29632843 - 370: 4900 .2byte 0x4900 - 372: 544e .2byte 0x544e - 374: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 - 37a: 5f36 .2byte 0x5f36 - 37c: 414d .2byte 0x414d - 37e: 2058 .2byte 0x2058 - 380: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 386: 4146 .2byte 0x4146 - 388: 36315453 .4byte 0x36315453 - 38c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 392: 5f00 .2byte 0x5f00 - 394: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f - 39a: 494d .2byte 0x494d - 39c: 4f4e .2byte 0x4f4e - 39e: 5f52 .2byte 0x5f52 - 3a0: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f - 3a6: 4c46 .2byte 0x4c46 - 3a8: 3354 .2byte 0x3354 - 3aa: 5f32 .2byte 0x5f32 - 3ac: 4f4e .2byte 0x4f4e - 3ae: 4d52 .2byte 0x4d52 - 3b0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 3b6: 3320 .2byte 0x3320 - 3b8: 342e .2byte 0x342e - 3ba: 3230 .2byte 0x3230 - 3bc: 3238 .2byte 0x3238 - 3be: 36363433 .4byte 0x36363433 - 3c2: 32353833 .4byte 0x32353833 - 3c6: 3838 .2byte 0x3838 - 3c8: 3935 .2byte 0x3935 - 3ca: 3138 .2byte 0x3138 - 3cc: 3731 .2byte 0x3731 - 3ce: 3430 .2byte 0x3430 - 3d0: 3831 .2byte 0x3831 - 3d2: 34383433 .4byte 0x34383433 - 3d6: 3135 .2byte 0x3135 - 3d8: 3936 .2byte 0x3936 - 3da: 3532 .2byte 0x3532 - 3dc: 2b65 .2byte 0x2b65 - 3de: 33463833 .4byte 0x33463833 - 3e2: 0032 .2byte 0x32 - 3e4: 4955 .2byte 0x4955 - 3e6: 544e .2byte 0x544e - 3e8: 3631 .2byte 0x3631 - 3ea: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f - 3f0: 635f 7070 685f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x68 - 3f6: 7865 .2byte 0x7865 - 3f8: 665f 6f6c 7461 .byte 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74 - 3fe: 3220 .2byte 0x3220 - 400: 3130 .2byte 0x3130 - 402: 3036 .2byte 0x3036 - 404: 55004c33 .4byte 0x55004c33 - 408: 4e49 .2byte 0x4e49 - 40a: 4d54 .2byte 0x4d54 - 40c: 5841 .2byte 0x5841 - 40e: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 414: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d - 41a: 5841 .2byte 0x5841 - 41c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 422: 5f00 .2byte 0x5f00 - 424: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 42a: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 430: 3220 .2byte 0x3220 - 432: 322e .2byte 0x322e - 434: 3532 .2byte 0x3532 - 436: 3730 .2byte 0x3730 - 438: 38353833 .4byte 0x38353833 - 43c: 3035 .2byte 0x3035 - 43e: 31303237 lui x4,0x31303 - 442: 30333833 .4byte 0x30333833 - 446: 3039 .2byte 0x3039 - 448: 3332 .2byte 0x3332 - 44a: 3732 .2byte 0x3732 - 44c: 3731 .2byte 0x3731 - 44e: 34323333 .4byte 0x34323333 - 452: 3430 .2byte 0x3430 - 454: 3630 .2byte 0x3630 - 456: 2d65 .2byte 0x2d65 - 458: 46383033 .4byte 0x46383033 - 45c: 3436 .2byte 0x3436 - 45e: 5f00 .2byte 0x5f00 - 460: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 - 466: 5f36 .2byte 0x5f36 - 468: 29632843 .4byte 0x29632843 - 46c: 6320 .2byte 0x6320 - 46e: 5f00 .2byte 0x5f00 - 470: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f - 476: 5f46 .2byte 0x5f46 - 478: 455a4953 .4byte 0x455a4953 - 47c: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 - 482: 5f00 .2byte 0x5f00 - 484: 435f 4148 3152 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x31 - 48a: 5f36 .2byte 0x5f36 - 48c: 5954 .2byte 0x5954 - 48e: 4550 .2byte 0x4550 - 490: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f - 496: 7472 .2byte 0x7472 - 498: 7520 .2byte 0x7520 - 49a: 736e .2byte 0x736e - 49c: 6769 .2byte 0x6769 - 49e: 656e .2byte 0x656e - 4a0: 2064 .2byte 0x2064 - 4a2: 6e69 .2byte 0x6e69 - 4a4: 0074 .2byte 0x74 - 4a6: 4955 .2byte 0x4955 - 4a8: 544e .2byte 0x544e - 4aa: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 4b0: 4d5f3233 .4byte 0x4d5f3233 - 4b4: 5841 .2byte 0x5841 - 4b6: 5f20 .2byte 0x5f20 - 4b8: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 4be: 454c .2byte 0x454c - 4c0: 5341 .2byte 0x5341 - 4c2: 3354 .2byte 0x3354 - 4c4: 5f32 .2byte 0x5f32 - 4c6: 414d .2byte 0x414d - 4c8: 5f58 .2byte 0x5f58 - 4ca: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 - 4d0: 5f70 .2byte 0x5f70 - 4d2: 7461 .2byte 0x7461 - 4d4: 7274 .2byte 0x7274 - 4d6: 6269 .2byte 0x6269 - 4d8: 7475 .2byte 0x7475 - 4da: 7365 .2byte 0x7365 - 4dc: 3220 .2byte 0x3220 - 4de: 3030 .2byte 0x3030 - 4e0: 3038 .2byte 0x3038 - 4e2: 4c39 .2byte 0x4c39 - 4e4: 5500 .2byte 0x5500 - 4e6: 4e49 .2byte 0x4e49 - 4e8: 3854 .2byte 0x3854 - 4ea: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 4f0: 555f 4e49 3854 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x38 - 4f6: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 4fc: 5f00 .2byte 0x5f00 - 4fe: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 - 504: 5341 .2byte 0x5341 - 506: 3854 .2byte 0x3854 - 508: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 50e: 3020 .2byte 0x3020 - 510: 3778 .2byte 0x3778 - 512: 6666 .2byte 0x6666 - 514: 6666 .2byte 0x6666 - 516: 6666 .2byte 0x6666 - 518: 0066 .2byte 0x66 - 51a: 5f5f 524f 4544 .byte 0x5f, 0x5f, 0x4f, 0x52, 0x44, 0x45 - 520: 5f52 .2byte 0x5f52 - 522: 4942 .2byte 0x4942 - 524: 4e455f47 .4byte 0x4e455f47 - 528: 4944 .2byte 0x4944 - 52a: 4e41 .2byte 0x4e41 - 52c: 5f5f 3420 3233 .byte 0x5f, 0x5f, 0x20, 0x34, 0x33, 0x32 - 532: 0031 .2byte 0x31 - 534: 5f5f 5450 4452 .byte 0x5f, 0x5f, 0x50, 0x54, 0x52, 0x44 - 53a: 4649 .2byte 0x4649 - 53c: 5f46 .2byte 0x5f46 - 53e: 54444957 .4byte 0x54444957 - 542: 5f48 .2byte 0x5f48 - 544: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f - 54a: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d - 550: 4e41 .2byte 0x4e41 - 552: 5f54 .2byte 0x5f54 - 554: 4944 .2byte 0x4944 - 556: 205f5f47 .4byte 0x205f5f47 - 55a: 3335 .2byte 0x3335 - 55c: 5f00 .2byte 0x5f00 - 55e: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 564: 454c .2byte 0x454c - 566: 5341 .2byte 0x5341 - 568: 3654 .2byte 0x3654 - 56a: 5f34 .2byte 0x5f34 - 56c: 5954 .2byte 0x5954 - 56e: 4550 .2byte 0x4550 - 570: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e - 576: 6f6c2067 .4byte 0x6f6c2067 - 57a: 676e .2byte 0x676e - 57c: 7520 .2byte 0x7520 - 57e: 736e .2byte 0x736e - 580: 6769 .2byte 0x6769 - 582: 656e .2byte 0x656e - 584: 2064 .2byte 0x2064 - 586: 6e69 .2byte 0x6e69 - 588: 0074 .2byte 0x74 - 58a: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 590: 6964 .2byte 0x6964 - 592: 5f746967 .4byte 0x5f746967 - 596: 61706573 .4byte 0x61706573 - 59a: 6172 .2byte 0x6172 - 59c: 6f74 .2byte 0x6f74 - 59e: 7372 .2byte 0x7372 - 5a0: 3220 .2byte 0x3220 - 5a2: 3130 .2byte 0x3130 - 5a4: 4c393033 .4byte 0x4c393033 - 5a8: 5f00 .2byte 0x5f00 - 5aa: 495f 544e 4d5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4d - 5b0: 5841 .2byte 0x5841 - 5b2: 5f5f 3020 3778 .byte 0x5f, 0x5f, 0x20, 0x30, 0x78, 0x37 - 5b8: 6666 .2byte 0x6666 - 5ba: 6666 .2byte 0x6666 - 5bc: 6666 .2byte 0x6666 - 5be: 0066 .2byte 0x66 - 5c0: 5f5f 5441 4d4f .byte 0x5f, 0x5f, 0x41, 0x54, 0x4f, 0x4d - 5c6: 4349 .2byte 0x4349 - 5c8: 525f 4c45 4145 .byte 0x5f, 0x52, 0x45, 0x4c, 0x45, 0x41 - 5ce: 33204553 .4byte 0x33204553 - 5d2: 5f00 .2byte 0x5f00 - 5d4: 465f 544c 495f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x49 - 5da: 45495f53 .4byte 0x45495f53 - 5de: 30365f43 .4byte 0x30365f43 - 5e2: 3535 .2byte 0x3535 - 5e4: 5f39 .2byte 0x5f39 - 5e6: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f - 5ec: 5450 .2byte 0x5450 - 5ee: 4452 .2byte 0x4452 - 5f0: 4649 .2byte 0x4649 - 5f2: 5f46 .2byte 0x5f46 - 5f4: 5954 .2byte 0x5954 - 5f6: 4550 .2byte 0x4550 - 5f8: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 - 5fe: 5f00 .2byte 0x5f00 - 600: 435f 4148 5f52 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x5f - 606: 4e55 .2byte 0x4e55 - 608: 4e474953 .4byte 0x4e474953 - 60c: 4445 .2byte 0x4445 - 60e: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - 614: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 - 61a: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 620: 205f 6873 726f .byte 0x5f, 0x20, 0x73, 0x68, 0x6f, 0x72 - 626: 2074 .2byte 0x2074 - 628: 6e69 .2byte 0x6e69 - 62a: 0074 .2byte 0x74 - 62c: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 632: 5441 .2byte 0x5441 - 634: 43494d4f .4byte 0x43494d4f - 638: 435f 4148 5f52 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x5f - 63e: 4f4c .2byte 0x4f4c - 640: 465f4b43 .4byte 0x465f4b43 - 644: 4552 .2byte 0x4552 - 646: 2045 .2byte 0x2045 - 648: 0031 .2byte 0x31 - 64a: 4e49 .2byte 0x4e49 - 64c: 4d54 .2byte 0x4d54 - 64e: 5841 .2byte 0x5841 - 650: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 656: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 - 65c: 5f58 .2byte 0x5f58 - 65e: 414d .2byte 0x414d - 660: 5f58 .2byte 0x5f58 - 662: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c - 668: 3654 .2byte 0x3654 - 66a: 5834 .2byte 0x5834 - 66c: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 - 672: 5058 .2byte 0x5058 - 674: 5f5f 3120 3336 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x33 - 67a: 3438 .2byte 0x3438 - 67c: 5f00 .2byte 0x5f00 - 67e: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 - 684: 45535f43 .4byte 0x45535f43 - 688: 5f51 .2byte 0x5f51 - 68a: 20545343 .4byte 0x20545343 - 68e: 0035 .2byte 0x35 - 690: 5f5f 4e49 3154 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x31 - 696: 5f36 .2byte 0x5f36 - 698: 29632843 .4byte 0x29632843 - 69c: 6320 .2byte 0x6320 - 69e: 5f00 .2byte 0x5f00 - 6a0: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f - 6a6: 5f46 .2byte 0x5f46 - 6a8: 524f4853 .4byte 0x524f4853 - 6ac: 5f54 .2byte 0x5f54 - 6ae: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f - 6b4: 4e49 .2byte 0x4e49 - 6b6: 5f54 .2byte 0x5f54 - 6b8: 454c .2byte 0x454c - 6ba: 5341 .2byte 0x5341 - 6bc: 3854 .2byte 0x3854 - 6be: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 6c4: 3020 .2byte 0x3020 - 6c6: 3778 .2byte 0x3778 - 6c8: 0066 .2byte 0x66 - 6ca: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 6d0: 454c .2byte 0x454c - 6d2: 5341 .2byte 0x5341 - 6d4: 3854 .2byte 0x3854 - 6d6: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 6dc: 205f 6973 6e67 .byte 0x5f, 0x20, 0x73, 0x69, 0x67, 0x6e - 6e2: 6465 .2byte 0x6465 - 6e4: 6320 .2byte 0x6320 - 6e6: 6168 .2byte 0x6168 - 6e8: 0072 .2byte 0x72 - 6ea: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 - 6f0: 5f34 .2byte 0x5f34 - 6f2: 414d .2byte 0x414d - 6f4: 544e .2byte 0x544e - 6f6: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f - 6fc: 3520 .2byte 0x3520 - 6fe: 49550033 .4byte 0x49550033 - 702: 544e .2byte 0x544e - 704: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 70a: 5f38 .2byte 0x5f38 - 70c: 414d .2byte 0x414d - 70e: 2058 .2byte 0x2058 - 710: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 716: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 71c: 5f38 .2byte 0x5f38 - 71e: 414d .2byte 0x414d - 720: 5f58 .2byte 0x5f58 - 722: 005f 5f5f 4955 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x55, 0x49 - 728: 544e .2byte 0x544e - 72a: 414d .2byte 0x414d - 72c: 5f58 .2byte 0x5f58 - 72e: 29632843 .4byte 0x29632843 - 732: 6320 .2byte 0x6320 - 734: 2320 .2byte 0x2320 - 736: 4c552023 sw x5,1216(x10) # 333934c0 <_start-0x4cc6cb40> - 73a: 004c .2byte 0x4c - 73c: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 742: 6572 .2byte 0x6572 - 744: 5f66 .2byte 0x5f66 - 746: 7571 .2byte 0x7571 - 748: 6c61 .2byte 0x6c61 - 74a: 6669 .2byte 0x6669 - 74c: 6569 .2byte 0x6569 - 74e: 7372 .2byte 0x7372 - 750: 3220 .2byte 0x3220 - 752: 3030 .2byte 0x3030 - 754: 4c303137 lui x2,0x4c303 - 758: 5f00 .2byte 0x5f00 - 75a: 425f 5459 5f45 .byte 0x5f, 0x42, 0x59, 0x54, 0x45, 0x5f - 760: 4544524f .4byte 0x4544524f - 764: 5f52 .2byte 0x5f52 - 766: 205f 5f5f 524f .byte 0x5f, 0x20, 0x5f, 0x5f, 0x4f, 0x52 - 76c: 4544 .2byte 0x4544 - 76e: 5f52 .2byte 0x5f52 - 770: 494c .2byte 0x494c - 772: 5454 .2byte 0x5454 - 774: 454c .2byte 0x454c - 776: 455f 444e 4149 .byte 0x5f, 0x45, 0x4e, 0x44, 0x49, 0x41 - 77c: 5f4e .2byte 0x5f4e - 77e: 005f 5f5f 444c .byte 0x5f, 0x00, 0x5f, 0x5f, 0x4c, 0x44 - 784: 4c42 .2byte 0x4c42 - 786: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 78c: 3320 .2byte 0x3320 - 78e: 332e .2byte 0x332e - 790: 3236 .2byte 0x3236 - 792: 3031 .2byte 0x3031 - 794: 33343133 .4byte 0x33343133 - 798: 3131 .2byte 0x3131 - 79a: 3032 .2byte 0x3032 - 79c: 3339 .2byte 0x3339 - 79e: 3035 .2byte 0x3035 - 7a0: 3236 .2byte 0x3236 - 7a2: 3236 .2byte 0x3236 - 7a4: 3736 .2byte 0x3736 - 7a6: 37313837 lui x16,0x37313 - 7aa: 37313233 .4byte 0x37313233 - 7ae: 3235 .2byte 0x3235 - 7b0: 3036 .2byte 0x3036 - 7b2: 2d65 .2byte 0x2d65 - 7b4: 3934 .2byte 0x3934 - 7b6: 004c3233 sltu x4,x24,x4 - 7ba: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 7c0: 5f32 .2byte 0x5f32 - 7c2: 494d .2byte 0x494d - 7c4: 5f4e .2byte 0x5f4e - 7c6: 3031 .2byte 0x3031 - 7c8: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 7ce: 2820 .2byte 0x2820 - 7d0: 332d .2byte 0x332d - 7d2: 53002937 lui x18,0x53002 - 7d6: 4749 .2byte 0x4749 - 7d8: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 - 7de: 494d5f43 .4byte 0x494d5f43 - 7e2: 204e .2byte 0x204e - 7e4: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f - 7ea: 5441 .2byte 0x5441 - 7ec: 43494d4f .4byte 0x43494d4f - 7f0: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 7f6: 5f00 .2byte 0x5f00 - 7f8: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 - 7fe: 7465 .2byte 0x7465 - 800: 7275 .2byte 0x7275 - 802: 5f6e .2byte 0x5f6e - 804: 7974 .2byte 0x7974 - 806: 6570 .2byte 0x6570 - 808: 645f 6465 6375 .byte 0x5f, 0x64, 0x65, 0x64, 0x75, 0x63 - 80e: 6974 .2byte 0x6974 - 810: 32206e6f jal x28,6b32 <_start-0x7fff94ce> - 814: 3130 .2byte 0x3130 - 816: 4c343033 .4byte 0x4c343033 - 81a: 5f00 .2byte 0x5f00 - 81c: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 - 822: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 828: 2820 .2byte 0x2820 - 82a: 5f2d .2byte 0x5f2d - 82c: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 - 832: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 838: 2d20 .2byte 0x2d20 - 83a: 3120 .2byte 0x3120 - 83c: 0029 .2byte 0x29 - 83e: 4e49 .2byte 0x4e49 - 840: 4d54 .2byte 0x4d54 - 842: 5841 .2byte 0x5841 - 844: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 - 84a: 492d .2byte 0x492d - 84c: 544e .2byte 0x544e - 84e: 414d .2byte 0x414d - 850: 5f58 .2byte 0x5f58 - 852: 414d .2byte 0x414d - 854: 2058 .2byte 0x2058 - 856: 202d .2byte 0x202d - 858: 2931 .2byte 0x2931 - 85a: 5f00 .2byte 0x5f00 - 85c: 535f 4454 5f43 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x5f - 862: 5455 .2byte 0x5455 - 864: 5f46 .2byte 0x5f46 - 866: 5f5f3233 .4byte 0x5f5f3233 - 86a: 3120 .2byte 0x3120 - 86c: 5f00 .2byte 0x5f00 - 86e: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c - 874: 4145 .2byte 0x4145 - 876: 36315453 .4byte 0x36315453 - 87a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 880: 3020 .2byte 0x3020 - 882: 3778 .2byte 0x3778 - 884: 6666 .2byte 0x6666 - 886: 0066 .2byte 0x66 - 888: 5f5f 4353 4148 .byte 0x5f, 0x5f, 0x53, 0x43, 0x48, 0x41 - 88e: 5f52 .2byte 0x5f52 - 890: 414d .2byte 0x414d - 892: 5f58 .2byte 0x5f58 - 894: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - 89a: 5f00 .2byte 0x5f00 - 89c: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f - 8a2: 4544 .2byte 0x4544 - 8a4: 4f4e .2byte 0x4f4e - 8a6: 4d52 .2byte 0x4d52 - 8a8: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 8ae: 3620 .2byte 0x3620 - 8b0: 342e .2byte 0x342e - 8b2: 37313537 lui x10,0x37313 - 8b6: 3135 .2byte 0x3135 - 8b8: 3931 .2byte 0x3931 - 8ba: 3334 .2byte 0x3334 - 8bc: 3038 .2byte 0x3038 - 8be: 3532 .2byte 0x3532 - 8c0: 3131 .2byte 0x3131 - 8c2: 3930 .2byte 0x3930 - 8c4: 3432 .2byte 0x3432 - 8c6: 3334 .2byte 0x3334 - 8c8: 3938 .2byte 0x3938 - 8ca: 3835 .2byte 0x3835 - 8cc: 3232 .2byte 0x3232 - 8ce: 36343637 lui x12,0x36343 - 8d2: 3535 .2byte 0x3535 - 8d4: 2d65 .2byte 0x2d65 - 8d6: 3934 .2byte 0x3934 - 8d8: 3636 .2byte 0x3636 - 8da: 004c .2byte 0x4c - 8dc: 5f5f 4e47 4355 .byte 0x5f, 0x5f, 0x47, 0x4e, 0x55, 0x43 - 8e2: 455f 4558 5543 .byte 0x5f, 0x45, 0x58, 0x45, 0x43, 0x55 - 8e8: 4954 .2byte 0x4954 - 8ea: 435f4e4f .4byte 0x435f4e4f - 8ee: 4148 .2byte 0x4148 - 8f0: 5352 .2byte 0x5352 - 8f2: 5445 .2byte 0x5445 - 8f4: 4e5f 4d41 2045 .byte 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x20 - 8fa: 5522 .2byte 0x5522 - 8fc: 4654 .2byte 0x4654 - 8fe: 382d .2byte 0x382d - 900: 0022 .2byte 0x22 - 902: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 - 908: 5f34 .2byte 0x5f34 - 90a: 4944 .2byte 0x4944 - 90c: 205f5f47 .4byte 0x205f5f47 - 910: 3531 .2byte 0x3531 - 912: 4900 .2byte 0x4900 - 914: 544e .2byte 0x544e - 916: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 91c: 3631 .2byte 0x3631 - 91e: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 - 924: 492d .2byte 0x492d - 926: 544e .2byte 0x544e - 928: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 92e: 3631 .2byte 0x3631 - 930: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d - 936: 3120 .2byte 0x3120 - 938: 0029 .2byte 0x29 - 93a: 5f5f 5441 4d4f .byte 0x5f, 0x5f, 0x41, 0x54, 0x4f, 0x4d - 940: 4349 .2byte 0x4349 - 942: 525f 4c45 5841 .byte 0x5f, 0x52, 0x45, 0x4c, 0x41, 0x58 - 948: 4445 .2byte 0x4445 - 94a: 3020 .2byte 0x3020 - 94c: 4900 .2byte 0x4900 - 94e: 544e .2byte 0x544e - 950: 5450 .2byte 0x5450 - 952: 5f52 .2byte 0x5f52 - 954: 414d .2byte 0x414d - 956: 2058 .2byte 0x2058 - 958: 5f5f 4e49 5054 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x50 - 95e: 5254 .2byte 0x5254 - 960: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 966: 5f00 .2byte 0x5f00 - 968: 535f 5a49 5f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x5f - 96e: 414d .2byte 0x414d - 970: 5f58 .2byte 0x5f58 - 972: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 978: 6666 .2byte 0x6666 - 97a: 6666 .2byte 0x6666 - 97c: 6666 .2byte 0x6666 - 97e: 0055 .2byte 0x55 - 980: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c - 986: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 - 98c: 30365f43 .4byte 0x30365f43 - 990: 3535 .2byte 0x3535 - 992: 5f39 .2byte 0x5f39 - 994: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f - 99a: 5f707063 bgeu x0,x23,f7a <_start-0x7ffff086> - 99e: 6e69 .2byte 0x6e69 - 9a0: 7469 .2byte 0x7469 - 9a2: 635f 7061 7574 .byte 0x5f, 0x63, 0x61, 0x70, 0x74, 0x75 - 9a8: 6572 .2byte 0x6572 - 9aa: 30322073 .4byte 0x30322073 - 9ae: 3331 .2byte 0x3331 - 9b0: 3430 .2byte 0x3430 - 9b2: 004c .2byte 0x4c - 9b4: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 9ba: 5832 .2byte 0x5832 - 9bc: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 - 9c2: 464e .2byte 0x464e - 9c4: 4e49 .2byte 0x4e49 - 9c6: 5449 .2byte 0x5449 - 9c8: 5f59 .2byte 0x5f59 - 9ca: 205f 0031 4e49 .byte 0x5f, 0x20, 0x31, 0x00, 0x49, 0x4e - 9d0: 5f54 .2byte 0x5f54 - 9d2: 454c .2byte 0x454c - 9d4: 5341 .2byte 0x5341 - 9d6: 3654 .2byte 0x3654 - 9d8: 5f34 .2byte 0x5f34 - 9da: 494d .2byte 0x494d - 9dc: 004e .2byte 0x4e - 9de: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 9e4: 4146 .2byte 0x4146 - 9e6: 34365453 .4byte 0x34365453 - 9ea: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 9f0: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 - 9f6: 6c20 .2byte 0x6c20 - 9f8: 20676e6f jal x28,76bfe <_start-0x7ff89402> - 9fc: 6e69 .2byte 0x6e69 - 9fe: 0074 .2byte 0x74 - a00: 4e49 .2byte 0x4e49 - a02: 3854 .2byte 0x3854 - a04: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - a0a: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 - a10: 5f38 .2byte 0x5f38 - a12: 4148 .2byte 0x4148 - a14: 55515f53 .4byte 0x55515f53 - a18: 4549 .2byte 0x4549 - a1a: 5f54 .2byte 0x5f54 - a1c: 414e .2byte 0x414e - a1e: 5f4e .2byte 0x5f4e - a20: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - a26: 4e49 .2byte 0x4e49 - a28: 5f54 .2byte 0x5f54 - a2a: 454c .2byte 0x454c - a2c: 5341 .2byte 0x5341 - a2e: 3154 .2byte 0x3154 - a30: 5f36 .2byte 0x5f36 - a32: 54444957 .4byte 0x54444957 - a36: 5f48 .2byte 0x5f48 - a38: 205f 3631 7300 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x73 - a3e: 7274 .2byte 0x7274 - a40: 00797063 bgeu x18,x7,a40 <_start-0x7ffff5c0> - a44: 4e49 .2byte 0x4e49 - a46: 5f54 .2byte 0x5f54 - a48: 4146 .2byte 0x4146 - a4a: 36315453 .4byte 0x36315453 - a4e: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - a54: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e - a5a: 6378656f jal x10,87890 <_start-0x7ff78770> - a5e: 7065 .2byte 0x7065 - a60: 5f74 .2byte 0x5f74 - a62: 7566 .2byte 0x7566 - a64: 636e .2byte 0x636e - a66: 6974 .2byte 0x6974 - a68: 745f6e6f jal x28,f79ac <_start-0x7ff08654> - a6c: 7079 .2byte 0x7079 - a6e: 2065 .2byte 0x2065 - a70: 3032 .2byte 0x3032 - a72: 3531 .2byte 0x3531 - a74: 3031 .2byte 0x3031 - a76: 004c .2byte 0x4c - a78: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - a7e: 5450 .2byte 0x5450 - a80: 5f52 .2byte 0x5f52 - a82: 5954 .2byte 0x5954 - a84: 4550 .2byte 0x4550 - a86: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 - a8c: 6769 .2byte 0x6769 - a8e: 656e .2byte 0x656e - a90: 2064 .2byte 0x2064 - a92: 6e69 .2byte 0x6e69 - a94: 0074 .2byte 0x74 - a96: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - a9c: 5f32 .2byte 0x5f32 - a9e: 4148 .2byte 0x4148 - aa0: 45445f53 .4byte 0x45445f53 - aa4: 4f4e .2byte 0x4f4e - aa6: 4d52 .2byte 0x4d52 - aa8: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - aae: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - ab4: 5f58 .2byte 0x5f58 - ab6: 494d .2byte 0x494d - ab8: 5f4e .2byte 0x5f4e - aba: 5845 .2byte 0x5845 - abc: 5f50 .2byte 0x5f50 - abe: 205f 2d28 3631 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x36 - ac4: 29313833 .4byte 0x29313833 - ac8: 5f00 .2byte 0x5f00 - aca: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 - ad0: 696c .2byte 0x696c - ad2: 7361 .2byte 0x7361 - ad4: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c - ada: 7461 .2byte 0x7461 - adc: 7365 .2byte 0x7365 - ade: 3220 .2byte 0x3220 - ae0: 3030 .2byte 0x3030 - ae2: 4c343037 lui x0,0x4c343 - ae6: 5300 .2byte 0x5300 - ae8: 4749 .2byte 0x4749 - aea: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 - af0: 414d5f43 .4byte 0x414d5f43 - af4: 0058 .2byte 0x58 - af6: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - afc: 4944 .2byte 0x4944 - afe: 205f5f47 .4byte 0x205f5f47 - b02: 0036 .2byte 0x36 - b04: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - b0a: 4146 .2byte 0x4146 - b0c: 36315453 .4byte 0x36315453 - b10: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - b16: 3020 .2byte 0x3020 - b18: 3778 .2byte 0x3778 - b1a: 6666 .2byte 0x6666 - b1c: 6666 .2byte 0x6666 - b1e: 6666 .2byte 0x6666 - b20: 0066 .2byte 0x66 - b22: 4e49 .2byte 0x4e49 - b24: 5f54 .2byte 0x5f54 - b26: 4146 .2byte 0x4146 - b28: 5f385453 .4byte 0x5f385453 - b2c: 414d .2byte 0x414d - b2e: 2058 .2byte 0x2058 - b30: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - b36: 4146 .2byte 0x4146 - b38: 5f385453 .4byte 0x5f385453 - b3c: 414d .2byte 0x414d - b3e: 5f58 .2byte 0x5f58 - b40: 005f 6f63 6e75 .byte 0x5f, 0x00, 0x63, 0x6f, 0x75, 0x6e - b46: 0074 .2byte 0x74 - b48: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - b4e: 4549 .2byte 0x4549 - b50: 35355f43 .4byte 0x35355f43 - b54: 2039 .2byte 0x2039 - b56: 0030 .2byte 0x30 - b58: 5a5f 7336 7274 .byte 0x5f, 0x5a, 0x36, 0x73, 0x74, 0x72 - b5e: 656c .2byte 0x656c - b60: 506e .2byte 0x506e - b62: 5f5f0063 beq x30,x21,1142 <_start-0x7fffeebe> - b66: 4c46 .2byte 0x4c46 - b68: 3154 .2byte 0x3154 - b6a: 3832 .2byte 0x3832 - b6c: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 - b72: 5058 .2byte 0x5058 - b74: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 - b7a: 3336 .2byte 0x3336 - b7c: 3138 .2byte 0x3138 - b7e: 0029 .2byte 0x29 - b80: 5f5f 5450 4452 .byte 0x5f, 0x5f, 0x50, 0x54, 0x52, 0x44 - b86: 4649 .2byte 0x4649 - b88: 5f46 .2byte 0x5f46 - b8a: 414d .2byte 0x414d - b8c: 5f58 .2byte 0x5f58 - b8e: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - b94: 6666 .2byte 0x6666 - b96: 6666 .2byte 0x6666 - b98: 6666 .2byte 0x6666 - b9a: 5f00 .2byte 0x5f00 - b9c: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - ba2: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 - ba8: 4955 .2byte 0x4955 - baa: 5445 .2byte 0x5445 - bac: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f - bb2: 3120 .2byte 0x3120 - bb4: 5f00 .2byte 0x5f00 - bb6: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - bbc: 454c .2byte 0x454c - bbe: 5341 .2byte 0x5341 - bc0: 3154 .2byte 0x3154 - bc2: 5f36 .2byte 0x5f36 - bc4: 414d .2byte 0x414d - bc6: 5f58 .2byte 0x5f58 - bc8: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - bce: 6666 .2byte 0x6666 - bd0: 5f00 .2byte 0x5f00 - bd2: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - bd8: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d - bde: 4c41 .2byte 0x4c41 - be0: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f - be6: 3920 .2byte 0x3920 - be8: 5f00 .2byte 0x5f00 - bea: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f - bf0: 205f 3231 5f00 .byte 0x5f, 0x20, 0x31, 0x32, 0x00, 0x5f - bf6: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f - bfc: 4944 .2byte 0x4944 - bfe: 205f5f47 .4byte 0x205f5f47 - c02: 5f003333 .4byte 0x5f003333 - c06: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - c0c: 454c .2byte 0x454c - c0e: 5341 .2byte 0x5341 - c10: 3854 .2byte 0x3854 - c12: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - c18: 3020 .2byte 0x3020 - c1a: 6678 .2byte 0x6678 - c1c: 0066 .2byte 0x66 - c1e: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 - c24: 5f34 .2byte 0x5f34 - c26: 414d .2byte 0x414d - c28: 5f58 .2byte 0x5f58 - c2a: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - c30: 6666 .2byte 0x6666 - c32: 6666 .2byte 0x6666 - c34: 6666 .2byte 0x6666 - c36: 6666 .2byte 0x6666 - c38: 6666 .2byte 0x6666 - c3a: 6666 .2byte 0x6666 - c3c: 6666 .2byte 0x6666 - c3e: 4c4c .2byte 0x4c4c - c40: 4900 .2byte 0x4900 - c42: 544e .2byte 0x544e - c44: 5f38 .2byte 0x5f38 - c46: 494d .2byte 0x494d - c48: 204e .2byte 0x204e - c4a: 2d28 .2byte 0x2d28 - c4c: 4e49 .2byte 0x4e49 - c4e: 3854 .2byte 0x3854 - c50: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d - c56: 3120 .2byte 0x3120 - c58: 0029 .2byte 0x29 - c5a: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 - c60: 5f52 .2byte 0x5f52 - c62: 5954 .2byte 0x5954 - c64: 4550 .2byte 0x4550 - c66: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 - c6c: 5f00 .2byte 0x5f00 - c6e: 495f 544e 5f38 .byte 0x5f, 0x49, 0x4e, 0x54, 0x38, 0x5f - c74: 414d .2byte 0x414d - c76: 5f58 .2byte 0x5f58 - c78: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - c7e: 5f00 .2byte 0x5f00 - c80: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c - c86: 4145 .2byte 0x4145 - c88: 32335453 .4byte 0x32335453 - c8c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - c92: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 - c98: 6920 .2byte 0x6920 - c9a: 746e .2byte 0x746e - c9c: 5f00 .2byte 0x5f00 - c9e: 635f 7070 635f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x63 - ca4: 74736e6f jal x28,37bea <_start-0x7ffc8416> - ca8: 7865 .2byte 0x7865 - caa: 7270 .2byte 0x7270 - cac: 3220 .2byte 0x3220 - cae: 3130 .2byte 0x3130 - cb0: 3036 .2byte 0x3036 - cb2: 5f004c33 .4byte 0x5f004c33 - cb6: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 - cbc: 5f38 .2byte 0x5f38 - cbe: 414d .2byte 0x414d - cc0: 5f58 .2byte 0x5f58 - cc2: 5845 .2byte 0x5845 - cc4: 5f50 .2byte 0x5f50 - cc6: 205f 3631 3833 .byte 0x5f, 0x20, 0x31, 0x36, 0x33, 0x38 - ccc: 0034 .2byte 0x34 - cce: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - cd4: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - cda: 3436 .2byte 0x3436 - cdc: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - ce2: 3020 .2byte 0x3020 - ce4: 6678 .2byte 0x6678 - ce6: 6666 .2byte 0x6666 - ce8: 6666 .2byte 0x6666 - cea: 6666 .2byte 0x6666 - cec: 6666 .2byte 0x6666 - cee: 6666 .2byte 0x6666 - cf0: 6666 .2byte 0x6666 - cf2: 6666 .2byte 0x6666 - cf4: 5566 .2byte 0x5566 - cf6: 4c4c .2byte 0x4c4c - cf8: 5f00 .2byte 0x5f00 - cfa: 465f 544c 525f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x52 - d00: 4441 .2byte 0x4441 - d02: 5849 .2byte 0x5849 - d04: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f - d0a: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - d10: 5f58 .2byte 0x5f58 - d12: 4544 .2byte 0x4544 - d14: 4f4e .2byte 0x4f4e - d16: 4d52 .2byte 0x4d52 - d18: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - d1e: 3420 .2byte 0x3420 - d20: 392e .2byte 0x392e - d22: 3034 .2byte 0x3034 - d24: 3536 .2byte 0x3536 - d26: 3436 .2byte 0x3436 - d28: 3835 .2byte 0x3835 - d2a: 3134 .2byte 0x3134 - d2c: 3432 .2byte 0x3432 - d2e: 3536 .2byte 0x3536 - d30: 3434 .2byte 0x3434 - d32: 3731 .2byte 0x3731 - d34: 3536 .2byte 0x3536 - d36: 3836 .2byte 0x3836 - d38: 38323937 lui x18,0x38323 - d3c: 3836 .2byte 0x3836 - d3e: 3232 .2byte 0x3232 - d40: 3331 .2byte 0x3331 - d42: 2d653237 lui x4,0x2d653 - d46: 46343233 .4byte 0x46343233 - d4a: 00783233 sltu x4,x16,x7 - d4e: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - d54: 6172 .2byte 0x6172 - d56: 676e .2byte 0x676e - d58: 5f65 .2byte 0x5f65 - d5a: 6162 .2byte 0x6162 - d5c: 5f646573 .4byte 0x5f646573 - d60: 6f66 .2byte 0x6f66 - d62: 2072 .2byte 0x2072 - d64: 3032 .2byte 0x3032 - d66: 3631 .2byte 0x3631 - d68: 3330 .2byte 0x3330 - d6a: 004c .2byte 0x4c - d6c: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 - d72: 4c5f464f .4byte 0x4c5f464f - d76: 5f474e4f .4byte 0x5f474e4f - d7a: 4f44 .2byte 0x4f44 - d7c: 4255 .2byte 0x4255 - d7e: 454c .2byte 0x454c - d80: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 - d86: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f - d8c: 4148 .2byte 0x4148 - d8e: 55515f53 .4byte 0x55515f53 - d92: 4549 .2byte 0x4549 - d94: 5f54 .2byte 0x5f54 - d96: 414e .2byte 0x414e - d98: 5f4e .2byte 0x5f4e - d9a: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - da0: 4c46 .2byte 0x4c46 - da2: 3654 .2byte 0x3654 - da4: 5834 .2byte 0x5834 - da6: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 - dac: 30365f43 .4byte 0x30365f43 - db0: 3535 .2byte 0x3535 - db2: 5f39 .2byte 0x5f39 - db4: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f - dba: 4e49 .2byte 0x4e49 - dbc: 5f54 .2byte 0x5f54 - dbe: 4146 .2byte 0x4146 - dc0: 5f385453 .4byte 0x5f385453 - dc4: 5954 .2byte 0x5954 - dc6: 4550 .2byte 0x4550 - dc8: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 - dce: 5f00 .2byte 0x5f00 - dd0: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - dd6: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 - ddc: 464e .2byte 0x464e - dde: 4e49 .2byte 0x4e49 - de0: 5449 .2byte 0x5449 - de2: 5f59 .2byte 0x5f59 - de4: 205f 0031 4957 .byte 0x5f, 0x20, 0x31, 0x00, 0x57, 0x49 - dea: 544e .2byte 0x544e - dec: 4d5f 4e49 5f20 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x5f - df2: 575f 4e49 5f54 .byte 0x5f, 0x57, 0x49, 0x4e, 0x54, 0x5f - df8: 494d .2byte 0x494d - dfa: 5f4e .2byte 0x5f4e - dfc: 005f 5f5f 444c .byte 0x5f, 0x00, 0x5f, 0x5f, 0x4c, 0x44 - e02: 4c42 .2byte 0x4c42 - e04: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 - e0a: 5058 .2byte 0x5058 - e0c: 5f5f 3120 3336 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x33 - e12: 3438 .2byte 0x3438 - e14: 5f00 .2byte 0x5f00 - e16: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 - e1c: 4f54 .2byte 0x4f54 - e1e: 494d .2byte 0x494d - e20: 4e495f43 .4byte 0x4e495f43 - e24: 5f54 .2byte 0x5f54 - e26: 4f4c .2byte 0x4f4c - e28: 465f4b43 .4byte 0x465f4b43 - e2c: 4552 .2byte 0x4552 - e2e: 2045 .2byte 0x2045 - e30: 0031 .2byte 0x31 - e32: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - e38: 6962 .2byte 0x6962 - e3a: 616e .2byte 0x616e - e3c: 7972 .2byte 0x7972 - e3e: 6c5f 7469 7265 .byte 0x5f, 0x6c, 0x69, 0x74, 0x65, 0x72 - e44: 6c61 .2byte 0x6c61 - e46: 30322073 .4byte 0x30322073 - e4a: 3331 .2byte 0x3331 - e4c: 3430 .2byte 0x3430 - e4e: 004c .2byte 0x4c - e50: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d - e56: 5841 .2byte 0x5841 - e58: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - e5e: 3020 .2byte 0x3020 - e60: 3778 .2byte 0x3778 - e62: 6666 .2byte 0x6666 - e64: 6666 .2byte 0x6666 - e66: 6666 .2byte 0x6666 - e68: 6666 .2byte 0x6666 - e6a: 6666 .2byte 0x6666 - e6c: 6666 .2byte 0x6666 - e6e: 6666 .2byte 0x6666 - e70: 4c66 .2byte 0x4c66 - e72: 004c .2byte 0x4c - e74: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - e7a: 454c .2byte 0x454c - e7c: 5341 .2byte 0x5341 - e7e: 3654 .2byte 0x3654 - e80: 5f34 .2byte 0x5f34 - e82: 54444957 .4byte 0x54444957 - e86: 5f48 .2byte 0x5f48 - e88: 205f 3436 4900 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x49 - e8e: 544e .2byte 0x544e - e90: 435f3233 .4byte 0x435f3233 - e94: 6328 .2byte 0x6328 - e96: 2029 .2byte 0x2029 - e98: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 - e9e: 5f32 .2byte 0x5f32 - ea0: 29632843 .4byte 0x29632843 - ea4: 5f00 .2byte 0x5f00 - ea6: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - eac: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 - eb2: 5f30 .2byte 0x5f30 - eb4: 5845 .2byte 0x5845 - eb6: 5f50 .2byte 0x5f50 - eb8: 205f 3033 0038 .byte 0x5f, 0x20, 0x33, 0x30, 0x38, 0x00 - ebe: 5f5f 524f 4544 .byte 0x5f, 0x5f, 0x4f, 0x52, 0x44, 0x45 - ec4: 5f52 .2byte 0x5f52 - ec6: 494c .2byte 0x494c - ec8: 5454 .2byte 0x5454 - eca: 454c .2byte 0x454c - ecc: 455f 444e 4149 .byte 0x5f, 0x45, 0x4e, 0x44, 0x49, 0x41 - ed2: 5f4e .2byte 0x5f4e - ed4: 205f 3231 3433 .byte 0x5f, 0x20, 0x31, 0x32, 0x33, 0x34 - eda: 5f00 .2byte 0x5f00 - edc: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f - ee2: 5f46 .2byte 0x5f46 - ee4: 5450 .2byte 0x5450 - ee6: 4452 .2byte 0x4452 - ee8: 4649 .2byte 0x4649 - eea: 5f46 .2byte 0x5f46 - eec: 5f54 .2byte 0x5f54 - eee: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f - ef4: 5f707063 bgeu x0,x23,14d4 <_start-0x7fffeb2c> - ef8: 6e75 .2byte 0x6e75 - efa: 6369 .2byte 0x6369 - efc: 5f65646f jal x8,574f2 <_start-0x7ffa8b0e> - f00: 696c .2byte 0x696c - f02: 6574 .2byte 0x6574 - f04: 6172 .2byte 0x6172 - f06: 736c .2byte 0x736c - f08: 3220 .2byte 0x3220 - f0a: 3030 .2byte 0x3030 - f0c: 4c303137 lui x2,0x4c303 - f10: 5500 .2byte 0x5500 - f12: 4e49 .2byte 0x4e49 - f14: 5f54 .2byte 0x5f54 - f16: 454c .2byte 0x454c - f18: 5341 .2byte 0x5341 - f1a: 3354 .2byte 0x3354 - f1c: 5f32 .2byte 0x5f32 - f1e: 414d .2byte 0x414d - f20: 0058 .2byte 0x58 - f22: 7479656b .4byte 0x7479656b - f26: 6261 .2byte 0x6261 - f28: 4900 .2byte 0x4900 - f2a: 544e .2byte 0x544e - f2c: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 - f32: 5f34 .2byte 0x5f34 - f34: 494d .2byte 0x494d - f36: 004e .2byte 0x4e - f38: 5450 .2byte 0x5450 - f3a: 4452 .2byte 0x4452 - f3c: 4649 .2byte 0x4649 - f3e: 5f46 .2byte 0x5f46 - f40: 494d .2byte 0x494d - f42: 204e .2byte 0x204e - f44: 2d28 .2byte 0x2d28 - f46: 5450 .2byte 0x5450 - f48: 4452 .2byte 0x4452 - f4a: 4649 .2byte 0x4649 - f4c: 5f46 .2byte 0x5f46 - f4e: 414d .2byte 0x414d - f50: 2058 .2byte 0x2058 - f52: 202d .2byte 0x202d - f54: 2931 .2byte 0x2931 - f56: 5f00 .2byte 0x5f00 - f58: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 - f5e: 5341 .2byte 0x5341 - f60: 3654 .2byte 0x3654 - f62: 5f34 .2byte 0x5f34 - f64: 414d .2byte 0x414d - f66: 5f58 .2byte 0x5f58 - f68: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - f6e: 6666 .2byte 0x6666 - f70: 6666 .2byte 0x6666 - f72: 6666 .2byte 0x6666 - f74: 6666 .2byte 0x6666 - f76: 6666 .2byte 0x6666 - f78: 6666 .2byte 0x6666 - f7a: 6666 .2byte 0x6666 - f7c: 4c4c .2byte 0x4c4c - f7e: 5000 .2byte 0x5000 - f80: 5254 .2byte 0x5254 - f82: 4944 .2byte 0x4944 - f84: 4646 .2byte 0x4646 - f86: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - f8c: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - f92: 5f58 .2byte 0x5f58 - f94: 4944 .2byte 0x4944 - f96: 205f5f47 .4byte 0x205f5f47 - f9a: 5f003333 .4byte 0x5f003333 - f9e: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - fa4: 5f58 .2byte 0x5f58 - fa6: 4148 .2byte 0x4148 - fa8: 45445f53 .4byte 0x45445f53 - fac: 4f4e .2byte 0x4f4e - fae: 4d52 .2byte 0x4d52 - fb0: 5f5f 3120 4900 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x49 - fb6: 544e .2byte 0x544e - fb8: 414d .2byte 0x414d - fba: 5f58 .2byte 0x5f58 - fbc: 494d .2byte 0x494d - fbe: 004e .2byte 0x4e - fc0: 4955 .2byte 0x4955 - fc2: 544e .2byte 0x544e - fc4: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 - fca: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f - fd0: 365a .2byte 0x365a - fd2: 63727473 .4byte 0x63727473 - fd6: 7970 .2byte 0x7970 - fd8: 6350 .2byte 0x6350 - fda: 61005f53 .4byte 0x61005f53 - fde: 6c6c .2byte 0x6c6c - fe0: 7562636f jal x6,27736 <_start-0x7ffd88ca> - fe4: 0066 .2byte 0x66 - fe6: 5f5f 5847 5f58 .byte 0x5f, 0x5f, 0x47, 0x58, 0x58, 0x5f - fec: 4b414557 .4byte 0x4b414557 - ff0: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - ff6: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - ffc: 5f58 .2byte 0x5f58 - ffe: 494d .2byte 0x494d - 1000: 5f4e .2byte 0x5f4e - 1002: 3031 .2byte 0x3031 - 1004: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 100a: 2820 .2byte 0x2820 - 100c: 342d .2byte 0x342d - 100e: 3339 .2byte 0x3339 - 1010: 2931 .2byte 0x2931 - 1012: 5f00 .2byte 0x5f00 - 1014: 445f 4c42 4e5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4e - 101a: 5f4d524f .4byte 0x5f4d524f - 101e: 414d .2byte 0x414d - 1020: 5f58 .2byte 0x5f58 - 1022: 205f 6f64 6275 .byte 0x5f, 0x20, 0x64, 0x6f, 0x75, 0x62 - 1028: 656c .2byte 0x656c - 102a: 3128 .2byte 0x3128 - 102c: 372e .2byte 0x372e - 102e: 3739 .2byte 0x3739 - 1030: 3936 .2byte 0x3936 - 1032: 34333133 .4byte 0x34333133 - 1036: 3638 .2byte 0x3638 - 1038: 3332 .2byte 0x3332 - 103a: 3531 .2byte 0x3531 - 103c: 31383037 lui x0,0x31383 - 1040: 3534 .2byte 0x3534 - 1042: 3732 .2byte 0x3732 - 1044: 3234 .2byte 0x3234 - 1046: 31333733 .4byte 0x31333733 - 104a: 33343037 lui x0,0x33343 - 104e: 3735 .2byte 0x3735 - 1050: 2b65 .2byte 0x2b65 - 1052: 4c383033 .4byte 0x4c383033 - 1056: 0029 .2byte 0x29 - 1058: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f - 105e: 5441 .2byte 0x5441 - 1060: 43494d4f .4byte 0x43494d4f - 1064: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 106a: 3020 .2byte 0x3020 - 106c: 3778 .2byte 0x3778 - 106e: 6666 .2byte 0x6666 - 1070: 6666 .2byte 0x6666 - 1072: 6666 .2byte 0x6666 - 1074: 0066 .2byte 0x66 - 1076: 6b7e .2byte 0x6b7e - 1078: 7965 .2byte 0x7965 - 107a: 5500 .2byte 0x5500 - 107c: 4e49 .2byte 0x4e49 - 107e: 3654 .2byte 0x3654 - 1080: 5f34 .2byte 0x5f34 - 1082: 5f5f0043 .4byte 0x5f5f0043 - 1086: 4c46 .2byte 0x4c46 - 1088: 3154 .2byte 0x3154 - 108a: 3832 .2byte 0x3832 - 108c: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 - 1092: 5f30 .2byte 0x5f30 - 1094: 5845 .2byte 0x5845 - 1096: 5f50 .2byte 0x5f50 - 1098: 205f 3934 3233 .byte 0x5f, 0x20, 0x34, 0x39, 0x33, 0x32 - 109e: 5f00 .2byte 0x5f00 - 10a0: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 10a6: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 - 10ac: 5f30 .2byte 0x5f30 - 10ae: 5845 .2byte 0x5845 - 10b0: 5f50 .2byte 0x5f50 - 10b2: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 - 10b8: 55002937 lui x18,0x55002 - 10bc: 4e49 .2byte 0x4e49 - 10be: 3854 .2byte 0x3854 - 10c0: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 - 10c6: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 10cc: 5f38 .2byte 0x5f38 - 10ce: 29632843 .4byte 0x29632843 - 10d2: 5f00 .2byte 0x5f00 - 10d4: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 - 10da: 5341 .2byte 0x5341 - 10dc: 3154 .2byte 0x3154 - 10de: 5f36 .2byte 0x5f36 - 10e0: 5954 .2byte 0x5954 - 10e2: 4550 .2byte 0x4550 - 10e4: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 - 10ea: 5f00 .2byte 0x5f00 - 10ec: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 - 10f2: 5f38 .2byte 0x5f38 - 10f4: 4944 .2byte 0x4944 - 10f6: 205f5f47 .4byte 0x205f5f47 - 10fa: 5f003333 .4byte 0x5f003333 - 10fe: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 - 1104: 5f36 .2byte 0x5f36 - 1106: 5954 .2byte 0x5954 - 1108: 4550 .2byte 0x4550 - 110a: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f - 1110: 7472 .2byte 0x7472 - 1112: 7520 .2byte 0x7520 - 1114: 736e .2byte 0x736e - 1116: 6769 .2byte 0x6769 - 1118: 656e .2byte 0x656e - 111a: 2064 .2byte 0x2064 - 111c: 6e69 .2byte 0x6e69 - 111e: 0074 .2byte 0x74 - 1120: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c - 1126: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 112c: 3120 .2byte 0x3120 - 112e: 312e .2byte 0x312e - 1130: 3938 .2byte 0x3938 - 1132: 34313337 lui x6,0x34313 - 1136: 3539 .2byte 0x3539 - 1138: 32373533 .4byte 0x32373533 - 113c: 36373133 .4byte 0x36373133 - 1140: 3035 .2byte 0x3035 - 1142: 3538 .2byte 0x3538 - 1144: 33393537 lui x10,0x33393 - 1148: 3632 .2byte 0x3632 - 114a: 3236 .2byte 0x3236 - 114c: 3038 .2byte 0x3038 - 114e: 3730 .2byte 0x3730 - 1150: 3230 .2byte 0x3230 - 1152: 2b65 .2byte 0x2b65 - 1154: 3934 .2byte 0x3934 - 1156: 004c3233 sltu x4,x24,x4 - 115a: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 - 1160: 5f52 .2byte 0x5f52 - 1162: 54444957 .4byte 0x54444957 - 1166: 5f48 .2byte 0x5f48 - 1168: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f - 116e: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f - 1174: 43445453 .4byte 0x43445453 - 1178: 495f 4c4e 4e49 .byte 0x5f, 0x49, 0x4e, 0x4c, 0x49, 0x4e - 117e: 5f45 .2byte 0x5f45 - 1180: 205f 0031 4e49 .byte 0x5f, 0x20, 0x31, 0x00, 0x49, 0x4e - 1186: 4d54 .2byte 0x4d54 - 1188: 5841 .2byte 0x5841 - 118a: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 - 1190: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d - 1196: 5841 .2byte 0x5841 - 1198: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 - 119e: 5f5f 4f4c 474e .byte 0x5f, 0x5f, 0x4c, 0x4f, 0x4e, 0x47 - 11a4: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f - 11aa: 414d .2byte 0x414d - 11ac: 5f58 .2byte 0x5f58 - 11ae: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - 11b4: 6666 .2byte 0x6666 - 11b6: 6666 .2byte 0x6666 - 11b8: 6666 .2byte 0x6666 - 11ba: 6666 .2byte 0x6666 - 11bc: 6666 .2byte 0x6666 - 11be: 6666 .2byte 0x6666 - 11c0: 6666 .2byte 0x6666 - 11c2: 4c4c .2byte 0x4c4c - 11c4: 5f00 .2byte 0x5f00 - 11c6: 495f 544e 3436 .byte 0x5f, 0x49, 0x4e, 0x54, 0x36, 0x34 - 11cc: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 11d2: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 - 11d8: 6c20 .2byte 0x6c20 - 11da: 20676e6f jal x28,773e0 <_start-0x7ff88c20> - 11de: 6e69 .2byte 0x6e69 - 11e0: 0074 .2byte 0x74 - 11e2: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 11e8: 414d .2byte 0x414d - 11ea: 5f58 .2byte 0x5f58 - 11ec: 3031 .2byte 0x3031 - 11ee: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 11f4: 3320 .2byte 0x3320 - 11f6: 0038 .2byte 0x38 - 11f8: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c - 11fe: 455f 5350 4c49 .byte 0x5f, 0x45, 0x50, 0x53, 0x49, 0x4c - 1204: 5f5f4e4f .4byte 0x5f5f4e4f - 1208: 3120 .2byte 0x3120 - 120a: 392e .2byte 0x392e - 120c: 3532 .2byte 0x3532 - 120e: 3239 .2byte 0x3239 - 1210: 3939 .2byte 0x3939 - 1212: 3434 .2byte 0x3434 - 1214: 32373833 .4byte 0x32373833 - 1218: 35383533 .4byte 0x35383533 - 121c: 35353033 .4byte 0x35353033 - 1220: 3739 .2byte 0x3739 - 1222: 32343937 lui x18,0x32343 - 1226: 3835 .2byte 0x3835 - 1228: 3934 .2byte 0x3934 - 122a: 3732 .2byte 0x3732 - 122c: 2d653233 .4byte 0x2d653233 - 1230: 004c3433 sltu x8,x24,x4 - 1234: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 123a: 5832 .2byte 0x5832 - 123c: 455f 5350 4c49 .byte 0x5f, 0x45, 0x50, 0x53, 0x49, 0x4c - 1242: 5f5f4e4f .4byte 0x5f5f4e4f - 1246: 3220 .2byte 0x3220 - 1248: 322e .2byte 0x322e - 124a: 3032 .2byte 0x3032 - 124c: 3434 .2byte 0x3434 - 124e: 3036 .2byte 0x3036 - 1250: 3934 .2byte 0x3934 - 1252: 3532 .2byte 0x3532 - 1254: 3330 .2byte 0x3330 - 1256: 3331 .2byte 0x3331 - 1258: 3830 .2byte 0x3830 - 125a: 3830 .2byte 0x3830 - 125c: 3734 .2byte 0x3734 - 125e: 3632 .2byte 0x3632 - 1260: 36333333 .4byte 0x36333333 - 1264: 3831 .2byte 0x3831 - 1266: 3631 .2byte 0x3631 - 1268: 3034 .2byte 0x3034 - 126a: 3236 .2byte 0x3236 - 126c: 2d65 .2byte 0x2d65 - 126e: 3631 .2byte 0x3631 - 1270: 3346 .2byte 0x3346 - 1272: 7832 .2byte 0x7832 - 1274: 5f00 .2byte 0x5f00 - 1276: 4e5f 5f4f 4e49 .byte 0x5f, 0x4e, 0x4f, 0x5f, 0x49, 0x4e - 127c: 494c .2byte 0x494c - 127e: 454e .2byte 0x454e - 1280: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - 1286: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e - 128c: 7365 .2byte 0x7365 - 128e: 6574 .2byte 0x6574 - 1290: 5f64 .2byte 0x5f64 - 1292: 616e .2byte 0x616e - 1294: 656d .2byte 0x656d - 1296: 63617073 .4byte 0x63617073 - 129a: 5f65 .2byte 0x5f65 - 129c: 6564 .2byte 0x6564 - 129e: 6966 .2byte 0x6966 - 12a0: 696e .2byte 0x696e - 12a2: 6974 .2byte 0x6974 - 12a4: 20736e6f jal x28,37caa <_start-0x7ffc8356> - 12a8: 3032 .2byte 0x3032 - 12aa: 3431 .2byte 0x3431 - 12ac: 3131 .2byte 0x3131 - 12ae: 004c .2byte 0x4c - 12b0: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 12b6: 414d .2byte 0x414d - 12b8: 544e .2byte 0x544e - 12ba: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f - 12c0: 3220 .2byte 0x3220 - 12c2: 0034 .2byte 0x34 - 12c4: 4955 .2byte 0x4955 - 12c6: 544e .2byte 0x544e - 12c8: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 - 12ce: 5f34 .2byte 0x5f34 - 12d0: 414d .2byte 0x414d - 12d2: 2058 .2byte 0x2058 - 12d4: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 12da: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 - 12e0: 5f34 .2byte 0x5f34 - 12e2: 414d .2byte 0x414d - 12e4: 5f58 .2byte 0x5f58 - 12e6: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c - 12ec: 3654 .2byte 0x3654 - 12ee: 5f34 .2byte 0x5f34 - 12f0: 4544 .2byte 0x4544 - 12f2: 414d4943 .4byte 0x414d4943 - 12f6: 5f4c .2byte 0x5f4c - 12f8: 4944 .2byte 0x4944 - 12fa: 205f5f47 .4byte 0x205f5f47 - 12fe: 3731 .2byte 0x3731 - 1300: 5f00 .2byte 0x5f00 - 1302: 525f 4745 5349 .byte 0x5f, 0x52, 0x45, 0x47, 0x49, 0x53 - 1308: 4554 .2byte 0x4554 - 130a: 5f52 .2byte 0x5f52 - 130c: 5250 .2byte 0x5250 - 130e: 4645 .2byte 0x4645 - 1310: 5849 .2byte 0x5849 - 1312: 5f5f 0020 5f5f .byte 0x5f, 0x5f, 0x20, 0x00, 0x5f, 0x5f - 1318: 4c46 .2byte 0x4c46 - 131a: 3354 .2byte 0x3354 - 131c: 5f32 .2byte 0x5f32 - 131e: 494d .2byte 0x494d - 1320: 5f4e .2byte 0x5f4e - 1322: 5845 .2byte 0x5845 - 1324: 5f50 .2byte 0x5f50 - 1326: 205f 2d28 3231 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x32 - 132c: 2935 .2byte 0x2935 - 132e: 5700 .2byte 0x5700 - 1330: 4e49 .2byte 0x4e49 - 1332: 5f54 .2byte 0x5f54 - 1334: 414d .2byte 0x414d - 1336: 0058 .2byte 0x58 - 1338: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 - 133e: 5834 .2byte 0x5834 - 1340: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f - 1346: 414d .2byte 0x414d - 1348: 5f58 .2byte 0x5f58 - 134a: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 - 1350: 3739 .2byte 0x3739 - 1352: 39343133 .4byte 0x39343133 - 1356: 3335 .2byte 0x3335 - 1358: 3735 .2byte 0x3735 - 135a: 3332 .2byte 0x3332 - 135c: 3731 .2byte 0x3731 - 135e: 3536 .2byte 0x3536 - 1360: 3830 .2byte 0x3830 - 1362: 3735 .2byte 0x3735 - 1364: 3935 .2byte 0x3935 - 1366: 36363233 .4byte 0x36363233 - 136a: 3832 .2byte 0x3832 - 136c: 3030 .2byte 0x3030 - 136e: 65323037 lui x0,0x65323 - 1372: 3339342b .4byte 0x3339342b - 1376: 4632 .2byte 0x4632 - 1378: 3436 .2byte 0x3436 - 137a: 0078 .2byte 0x78 - 137c: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 1382: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 - 1388: 5f36 .2byte 0x5f36 - 138a: 414d .2byte 0x414d - 138c: 5f58 .2byte 0x5f58 - 138e: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 1394: 6666 .2byte 0x6666 - 1396: 6666 .2byte 0x6666 - 1398: 6666 .2byte 0x6666 - 139a: 0055 .2byte 0x55 - 139c: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 13a2: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 - 13a8: 5f36 .2byte 0x5f36 - 13aa: 5954 .2byte 0x5954 - 13ac: 4550 .2byte 0x4550 - 13ae: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 - 13b4: 6769 .2byte 0x6769 - 13b6: 656e .2byte 0x656e - 13b8: 2064 .2byte 0x2064 - 13ba: 6e69 .2byte 0x6e69 - 13bc: 0074 .2byte 0x74 - 13be: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 13c4: 414d .2byte 0x414d - 13c6: 5f58 .2byte 0x5f58 - 13c8: 205f 2e33 3034 .byte 0x5f, 0x20, 0x33, 0x2e, 0x34, 0x30 - 13ce: 3832 .2byte 0x3832 - 13d0: 3332 .2byte 0x3332 - 13d2: 3634 .2byte 0x3634 - 13d4: 3336 .2byte 0x3336 - 13d6: 3538 .2byte 0x3538 - 13d8: 3832 .2byte 0x3832 - 13da: 3538 .2byte 0x3538 - 13dc: 3839 .2byte 0x3839 - 13de: 3131 .2byte 0x3131 - 13e0: 31343037 lui x0,0x31343 - 13e4: 3338 .2byte 0x3338 - 13e6: 3834 .2byte 0x3834 - 13e8: 3534 .2byte 0x3534 - 13ea: 3631 .2byte 0x3631 - 13ec: 3239 .2byte 0x3239 - 13ee: 6535 .2byte 0x6535 - 13f0: 4638332b .4byte 0x4638332b - 13f4: 5f00 .2byte 0x5f00 - 13f6: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d - 13fc: 4e49 .2byte 0x4e49 - 13fe: 315f 5f30 5845 .byte 0x5f, 0x31, 0x30, 0x5f, 0x45, 0x58 - 1404: 5f50 .2byte 0x5f50 - 1406: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 - 140c: 49002937 lui x18,0x49002 - 1410: 544e .2byte 0x544e - 1412: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 - 1418: 5f32 .2byte 0x5f32 - 141a: 414d .2byte 0x414d - 141c: 2058 .2byte 0x2058 - 141e: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 1424: 4146 .2byte 0x4146 - 1426: 32335453 .4byte 0x32335453 - 142a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 1430: 5f00 .2byte 0x5f00 - 1432: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 - 1438: 5f38 .2byte 0x5f38 - 143a: 4148 .2byte 0x4148 - 143c: 4e495f53 .4byte 0x4e495f53 - 1440: 4946 .2byte 0x4946 - 1442: 494e .2byte 0x494e - 1444: 5954 .2byte 0x5954 - 1446: 5f5f 3120 5500 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x55 - 144c: 4e49 .2byte 0x4e49 - 144e: 5f54 .2byte 0x5f54 - 1450: 454c .2byte 0x454c - 1452: 5341 .2byte 0x5341 - 1454: 3654 .2byte 0x3654 - 1456: 5f34 .2byte 0x5f34 - 1458: 414d .2byte 0x414d - 145a: 0058 .2byte 0x58 - 145c: 5f5f 5847 5f58 .byte 0x5f, 0x5f, 0x47, 0x58, 0x58, 0x5f - 1462: 4241 .2byte 0x4241 - 1464: 5f49 .2byte 0x5f49 - 1466: 4556 .2byte 0x4556 - 1468: 5352 .2byte 0x5352 - 146a: 4f49 .2byte 0x4f49 - 146c: 204e .2byte 0x204e - 146e: 3031 .2byte 0x3031 - 1470: 3731 .2byte 0x3731 - 1472: 5f00 .2byte 0x5f00 - 1474: 5f434347 .4byte 0x5f434347 - 1478: 49445453 .4byte 0x49445453 - 147c: 544e .2byte 0x544e - 147e: 485f 0020 5f5f .byte 0x5f, 0x48, 0x20, 0x00, 0x5f, 0x5f - 1484: 4c46 .2byte 0x4c46 - 1486: 3654 .2byte 0x3654 - 1488: 5f34 .2byte 0x5f34 - 148a: 4148 .2byte 0x4148 - 148c: 45445f53 .4byte 0x45445f53 - 1490: 4f4e .2byte 0x4f4e - 1492: 4d52 .2byte 0x4d52 - 1494: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - 149a: 635f 7070 765f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x76 - 14a0: 7261 .2byte 0x7261 - 14a2: 6169 .2byte 0x6169 - 14a4: 6c62 .2byte 0x6c62 - 14a6: 5f65 .2byte 0x5f65 - 14a8: 6574 .2byte 0x6574 - 14aa: 706d .2byte 0x706d - 14ac: 616c .2byte 0x616c - 14ae: 6574 .2byte 0x6574 - 14b0: 30322073 .4byte 0x30322073 - 14b4: 3331 .2byte 0x3331 - 14b6: 3430 .2byte 0x3430 - 14b8: 004c .2byte 0x4c - 14ba: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 14c0: 5645 .2byte 0x5645 - 14c2: 4c41 .2byte 0x4c41 - 14c4: 4d5f 5445 4f48 .byte 0x5f, 0x4d, 0x45, 0x54, 0x48, 0x4f - 14ca: 5f44 .2byte 0x5f44 - 14cc: 205f 0030 5f5f .byte 0x5f, 0x20, 0x30, 0x00, 0x5f, 0x5f - 14d2: 5f707063 bgeu x0,x23,1ab2 <_start-0x7fffe54e> - 14d6: 7672 .2byte 0x7672 - 14d8: 6c61 .2byte 0x6c61 - 14da: 6575 .2byte 0x6575 - 14dc: 725f 6665 7265 .byte 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72 - 14e2: 6e65 .2byte 0x6e65 - 14e4: 32206563 bltu x0,x2,180e <_start-0x7fffe7f2> - 14e8: 3030 .2byte 0x3030 - 14ea: 3136 .2byte 0x3136 - 14ec: 4c30 .2byte 0x4c30 - 14ee: 5f00 .2byte 0x5f00 - 14f0: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 14f6: 5f58 .2byte 0x5f58 - 14f8: 4148 .2byte 0x4148 - 14fa: 45445f53 .4byte 0x45445f53 - 14fe: 4f4e .2byte 0x4f4e - 1500: 4d52 .2byte 0x4d52 - 1502: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - 1508: 635f 7070 655f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x65 - 150e: 6378 .2byte 0x6378 - 1510: 7065 .2byte 0x7065 - 1512: 6974 .2byte 0x6974 - 1514: 20736e6f jal x28,37f1a <_start-0x7ffc80e6> - 1518: 3931 .2byte 0x3931 - 151a: 3739 .2byte 0x3739 - 151c: 3131 .2byte 0x3131 - 151e: 004c .2byte 0x4c - 1520: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 1526: 454c .2byte 0x454c - 1528: 5341 .2byte 0x5341 - 152a: 3654 .2byte 0x3654 - 152c: 5f34 .2byte 0x5f34 - 152e: 414d .2byte 0x414d - 1530: 5f58 .2byte 0x5f58 - 1532: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - 1538: 6666 .2byte 0x6666 - 153a: 6666 .2byte 0x6666 - 153c: 6666 .2byte 0x6666 - 153e: 6666 .2byte 0x6666 - 1540: 6666 .2byte 0x6666 - 1542: 6666 .2byte 0x6666 - 1544: 6666 .2byte 0x6666 - 1546: 4c4c .2byte 0x4c4c - 1548: 5f00 .2byte 0x5f00 - 154a: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 - 1550: 4f54 .2byte 0x4f54 - 1552: 494d .2byte 0x494d - 1554: 43575f43 .4byte 0x43575f43 - 1558: 4148 .2byte 0x4148 - 155a: 5f52 .2byte 0x5f52 - 155c: 5f54 .2byte 0x5f54 - 155e: 4f4c .2byte 0x4f4c - 1560: 465f4b43 .4byte 0x465f4b43 - 1564: 4552 .2byte 0x4552 - 1566: 2045 .2byte 0x2045 - 1568: 0031 .2byte 0x31 - 156a: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 - 1570: 3832 .2byte 0x3832 - 1572: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 1578: 3320 .2byte 0x3320 - 157a: 332e .2byte 0x332e - 157c: 3236 .2byte 0x3236 - 157e: 3031 .2byte 0x3031 - 1580: 33343133 .4byte 0x33343133 - 1584: 3131 .2byte 0x3131 - 1586: 3032 .2byte 0x3032 - 1588: 3339 .2byte 0x3339 - 158a: 3035 .2byte 0x3035 - 158c: 3236 .2byte 0x3236 - 158e: 3236 .2byte 0x3236 - 1590: 3736 .2byte 0x3736 - 1592: 37313837 lui x16,0x37313 - 1596: 37313233 .4byte 0x37313233 - 159a: 3235 .2byte 0x3235 - 159c: 3036 .2byte 0x3036 - 159e: 2d65 .2byte 0x2d65 - 15a0: 3934 .2byte 0x3934 - 15a2: 31463233 .4byte 0x31463233 - 15a6: 3832 .2byte 0x3832 - 15a8: 5f00 .2byte 0x5f00 - 15aa: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 - 15b0: 615f 6372 5f68 .byte 0x5f, 0x61, 0x72, 0x63, 0x68, 0x5f - 15b6: 6574 .2byte 0x6574 - 15b8: 31207473 .4byte 0x31207473 - 15bc: 5700 .2byte 0x5700 - 15be: 52414843 .4byte 0x52414843 - 15c2: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - 15c8: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 - 15ce: 5341 .2byte 0x5341 - 15d0: 3354 .2byte 0x3354 - 15d2: 5f32 .2byte 0x5f32 - 15d4: 54444957 .4byte 0x54444957 - 15d8: 5f48 .2byte 0x5f48 - 15da: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f - 15e0: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c - 15e6: 4145 .2byte 0x4145 - 15e8: 5f385453 .4byte 0x5f385453 - 15ec: 54444957 .4byte 0x54444957 - 15f0: 5f48 .2byte 0x5f48 - 15f2: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f - 15f8: 4955 .2byte 0x4955 - 15fa: 544e .2byte 0x544e - 15fc: 5f38 .2byte 0x5f38 - 15fe: 414d .2byte 0x414d - 1600: 5f58 .2byte 0x5f58 - 1602: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 1608: 5f00 .2byte 0x5f00 - 160a: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 - 1610: 5f36 .2byte 0x5f36 - 1612: 414d .2byte 0x414d - 1614: 5f58 .2byte 0x5f58 - 1616: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 161c: 6666 .2byte 0x6666 - 161e: 4900 .2byte 0x4900 - 1620: 544e .2byte 0x544e - 1622: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 1628: 5f38 .2byte 0x5f38 - 162a: 414d .2byte 0x414d - 162c: 2058 .2byte 0x2058 - 162e: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 1634: 454c .2byte 0x454c - 1636: 5341 .2byte 0x5341 - 1638: 3854 .2byte 0x3854 - 163a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 1640: 5300 .2byte 0x5300 - 1642: 5a49 .2byte 0x5a49 - 1644: 5f45 .2byte 0x5f45 - 1646: 414d .2byte 0x414d - 1648: 2058 .2byte 0x2058 - 164a: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 - 1650: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 1656: 5f00 .2byte 0x5f00 - 1658: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 - 165e: 5f58 .2byte 0x5f58 - 1660: 54444957 .4byte 0x54444957 - 1664: 5f48 .2byte 0x5f48 - 1666: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f - 166c: 445f 4c42 495f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x49 - 1672: 45495f53 .4byte 0x45495f53 - 1676: 30365f43 .4byte 0x30365f43 - 167a: 3535 .2byte 0x3535 - 167c: 5f39 .2byte 0x5f39 - 167e: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f - 1684: 4e49 .2byte 0x4e49 - 1686: 5f54 .2byte 0x5f54 - 1688: 454c .2byte 0x454c - 168a: 5341 .2byte 0x5341 - 168c: 3154 .2byte 0x3154 - 168e: 5f36 .2byte 0x5f36 - 1690: 5954 .2byte 0x5954 - 1692: 4550 .2byte 0x4550 - 1694: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f - 169a: 7472 .2byte 0x7472 - 169c: 6920 .2byte 0x6920 - 169e: 746e .2byte 0x746e - 16a0: 5f00 .2byte 0x5f00 - 16a2: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 16a8: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 - 16ae: 5058 .2byte 0x5058 - 16b0: 5f5f 3120 3832 .byte 0x5f, 0x5f, 0x20, 0x31, 0x32, 0x38 - 16b6: 5f00 .2byte 0x5f00 - 16b8: 535f 4454 5043 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x50 - 16be: 5f50 .2byte 0x5f50 - 16c0: 4544 .2byte 0x4544 - 16c2: 4146 .2byte 0x4146 - 16c4: 4c55 .2byte 0x4c55 - 16c6: 5f54 .2byte 0x5f54 - 16c8: 454e .2byte 0x454e - 16ca: 4c415f57 .4byte 0x4c415f57 - 16ce: 4749 .2byte 0x4749 - 16d0: 4d4e .2byte 0x4d4e - 16d2: 4e45 .2byte 0x4e45 - 16d4: 5f54 .2byte 0x5f54 - 16d6: 205f 3631 5f00 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x5f - 16dc: 465f 4e49 5449 .byte 0x5f, 0x46, 0x49, 0x4e, 0x49, 0x54 - 16e2: 5f45 .2byte 0x5f45 - 16e4: 414d .2byte 0x414d - 16e6: 4854 .2byte 0x4854 - 16e8: 4f5f 4c4e 5f59 .byte 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x5f - 16ee: 205f 0030 4e49 .byte 0x5f, 0x20, 0x30, 0x00, 0x49, 0x4e - 16f4: 5f54 .2byte 0x5f54 - 16f6: 4146 .2byte 0x4146 - 16f8: 5f385453 .4byte 0x5f385453 - 16fc: 494d .2byte 0x494d - 16fe: 204e .2byte 0x204e - 1700: 2d28 .2byte 0x2d28 - 1702: 4e49 .2byte 0x4e49 - 1704: 5f54 .2byte 0x5f54 - 1706: 4146 .2byte 0x4146 - 1708: 5f385453 .4byte 0x5f385453 - 170c: 414d .2byte 0x414d - 170e: 2058 .2byte 0x2058 - 1710: 202d .2byte 0x202d - 1712: 2931 .2byte 0x2931 - 1714: 5f00 .2byte 0x5f00 - 1716: 495f 544e 5f38 .byte 0x5f, 0x49, 0x4e, 0x54, 0x38, 0x5f - 171c: 29632843 .4byte 0x29632843 - 1720: 6320 .2byte 0x6320 - 1722: 4100 .2byte 0x4100 - 1724: 4c4c .2byte 0x4c4c - 1726: 4953434f .4byte 0x4953434f - 172a: 455a .2byte 0x455a - 172c: 3120 .2byte 0x3120 - 172e: 3030 .2byte 0x3030 - 1730: 3030 .2byte 0x3030 - 1732: 5000 .2byte 0x5000 - 1734: 5254 .2byte 0x5254 - 1736: 4944 .2byte 0x4944 - 1738: 4646 .2byte 0x4646 - 173a: 4d5f 5841 5300 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x53 - 1740: 5a49 .2byte 0x5a49 - 1742: 5f45 .2byte 0x5f45 - 1744: 414d .2byte 0x414d - 1746: 0058 .2byte 0x58 - 1748: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 174e: 5441 .2byte 0x5441 - 1750: 43494d4f .4byte 0x43494d4f - 1754: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f - 175a: 4f4c .2byte 0x4f4c - 175c: 465f4b43 .4byte 0x465f4b43 - 1760: 4552 .2byte 0x4552 - 1762: 2045 .2byte 0x2045 - 1764: 0031 .2byte 0x31 - 1766: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 176c: 5832 .2byte 0x5832 - 176e: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f - 1774: 3120 .2byte 0x3120 - 1776: 0035 .2byte 0x35 - 1778: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 177e: 6564 .2byte 0x6564 - 1780: 79746c63 bltu x8,x23,1f18 <_start-0x7fffe0e8> - 1784: 6570 .2byte 0x6570 - 1786: 3220 .2byte 0x3220 - 1788: 3030 .2byte 0x3030 - 178a: 4c373037 lui x0,0x4c373 - 178e: 5f00 .2byte 0x5f00 - 1790: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 1796: 5f58 .2byte 0x5f58 - 1798: 414d .2byte 0x414d - 179a: 544e .2byte 0x544e - 179c: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f - 17a2: 3520 .2byte 0x3520 - 17a4: 5f5f0033 .4byte 0x5f5f0033 - 17a8: 4544 .2byte 0x4544 - 17aa: 5250 .2byte 0x5250 - 17ac: 4345 .2byte 0x4345 - 17ae: 5441 .2byte 0x5441 - 17b0: 4445 .2byte 0x4445 - 17b2: 3120 .2byte 0x3120 - 17b4: 5f00 .2byte 0x5f00 - 17b6: 635f 7070 675f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x67 - 17bc: 6e65 .2byte 0x6e65 - 17be: 7265 .2byte 0x7265 - 17c0: 6369 .2byte 0x6369 - 17c2: 6c5f 6d61 6462 .byte 0x5f, 0x6c, 0x61, 0x6d, 0x62, 0x64 - 17c8: 7361 .2byte 0x7361 - 17ca: 3220 .2byte 0x3220 - 17cc: 3130 .2byte 0x3130 - 17ce: 4c343033 .4byte 0x4c343033 - 17d2: 5f00 .2byte 0x5f00 - 17d4: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 17da: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f - 17e0: 3620 .2byte 0x3620 - 17e2: 4900 .2byte 0x4900 - 17e4: 544e .2byte 0x544e - 17e6: 3631 .2byte 0x3631 - 17e8: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 - 17ee: 492d .2byte 0x492d - 17f0: 544e .2byte 0x544e - 17f2: 3631 .2byte 0x3631 - 17f4: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d - 17fa: 3120 .2byte 0x3120 - 17fc: 0029 .2byte 0x29 - 17fe: 5f5f 4843 5241 .byte 0x5f, 0x5f, 0x43, 0x48, 0x41, 0x52 - 1804: 425f 5449 5f5f .byte 0x5f, 0x42, 0x49, 0x54, 0x5f, 0x5f - 180a: 3820 .2byte 0x3820 - 180c: 5f00 .2byte 0x5f00 - 180e: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e - 1814: 696d6473 .4byte 0x696d6473 - 1818: 3220 .2byte 0x3220 - 181a: 3030 .2byte 0x3030 - 181c: 3038 .2byte 0x3038 - 181e: 4c39 .2byte 0x4c39 - 1820: 5f00 .2byte 0x5f00 - 1822: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 1828: 5f58 .2byte 0x5f58 - 182a: 5349 .2byte 0x5349 - 182c: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 - 1832: 3530 .2byte 0x3530 - 1834: 3935 .2byte 0x3935 - 1836: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f - 183c: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 - 1842: 5f52 .2byte 0x5f52 - 1844: 54444957 .4byte 0x54444957 - 1848: 5f48 .2byte 0x5f48 - 184a: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f - 1850: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 1856: 454c .2byte 0x454c - 1858: 5341 .2byte 0x5341 - 185a: 3854 .2byte 0x3854 - 185c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 1862: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 - 1868: 64656e67 .4byte 0x64656e67 - 186c: 6320 .2byte 0x6320 - 186e: 6168 .2byte 0x6168 - 1870: 0072 .2byte 0x72 - 1872: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 1878: 4544 .2byte 0x4544 - 187a: 55525453 .4byte 0x55525453 - 187e: 56495443 .4byte 0x56495443 - 1882: 5f45 .2byte 0x5f45 - 1884: 455a4953 .4byte 0x455a4953 - 1888: 3320 .2byte 0x3320 - 188a: 0032 .2byte 0x32 - 188c: 4e49 .2byte 0x4e49 - 188e: 3654 .2byte 0x3654 - 1890: 5f34 .2byte 0x5f34 - 1892: 414d .2byte 0x414d - 1894: 2058 .2byte 0x2058 - 1896: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 - 189c: 5f34 .2byte 0x5f34 - 189e: 414d .2byte 0x414d - 18a0: 5f58 .2byte 0x5f58 - 18a2: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c - 18a8: 3654 .2byte 0x3654 - 18aa: 5f34 .2byte 0x5f34 - 18ac: 414d .2byte 0x414d - 18ae: 5f58 .2byte 0x5f58 - 18b0: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 - 18b6: 33393637 lui x12,0x33393 - 18ba: 3331 .2byte 0x3331 - 18bc: 3834 .2byte 0x3834 - 18be: 3236 .2byte 0x3236 - 18c0: 37353133 .4byte 0x37353133 - 18c4: 3830 .2byte 0x3830 - 18c6: 3431 .2byte 0x3431 - 18c8: 3235 .2byte 0x3235 - 18ca: 33323437 lui x8,0x33323 - 18ce: 37313337 lui x6,0x37313 - 18d2: 3430 .2byte 0x3430 - 18d4: 65373533 .4byte 0x65373533 - 18d8: 3830332b .4byte 0x3830332b - 18dc: 3646 .2byte 0x3646 - 18de: 0034 .2byte 0x34 - 18e0: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f - 18e6: 414d .2byte 0x414d - 18e8: 5f58 .2byte 0x5f58 - 18ea: 205f 6f64 6275 .byte 0x5f, 0x20, 0x64, 0x6f, 0x75, 0x62 - 18f0: 656c .2byte 0x656c - 18f2: 3128 .2byte 0x3128 - 18f4: 372e .2byte 0x372e - 18f6: 3739 .2byte 0x3739 - 18f8: 3936 .2byte 0x3936 - 18fa: 34333133 .4byte 0x34333133 - 18fe: 3638 .2byte 0x3638 - 1900: 3332 .2byte 0x3332 - 1902: 3531 .2byte 0x3531 - 1904: 31383037 lui x0,0x31383 - 1908: 3534 .2byte 0x3534 - 190a: 3732 .2byte 0x3732 - 190c: 3234 .2byte 0x3234 - 190e: 31333733 .4byte 0x31333733 - 1912: 33343037 lui x0,0x33343 - 1916: 3735 .2byte 0x3735 - 1918: 2b65 .2byte 0x2b65 - 191a: 4c383033 .4byte 0x4c383033 - 191e: 0029 .2byte 0x29 - 1920: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 1926: 5f38 .2byte 0x5f38 - 1928: 5954 .2byte 0x5954 - 192a: 4550 .2byte 0x4550 - 192c: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 - 1932: 6769 .2byte 0x6769 - 1934: 656e .2byte 0x656e - 1936: 2064 .2byte 0x2064 - 1938: 72616863 bltu x2,x6,2068 <_start-0x7fffdf98> - 193c: 4900 .2byte 0x4900 - 193e: 544e .2byte 0x544e - 1940: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 - 1946: 5f36 .2byte 0x5f36 - 1948: 494d .2byte 0x494d - 194a: 204e .2byte 0x204e - 194c: 2d28 .2byte 0x2d28 - 194e: 4e49 .2byte 0x4e49 - 1950: 5f54 .2byte 0x5f54 - 1952: 4146 .2byte 0x4146 - 1954: 36315453 .4byte 0x36315453 - 1958: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d - 195e: 3120 .2byte 0x3120 - 1960: 0029 .2byte 0x29 - 1962: 4e49 .2byte 0x4e49 - 1964: 5054 .2byte 0x5054 - 1966: 5254 .2byte 0x5254 - 1968: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 - 196e: 492d .2byte 0x492d - 1970: 544e .2byte 0x544e - 1972: 5450 .2byte 0x5450 - 1974: 5f52 .2byte 0x5f52 - 1976: 414d .2byte 0x414d - 1978: 2058 .2byte 0x2058 - 197a: 202d .2byte 0x202d - 197c: 2931 .2byte 0x2931 - 197e: 4900 .2byte 0x4900 - 1980: 544e .2byte 0x544e - 1982: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 1988: 5f38 .2byte 0x5f38 - 198a: 494d .2byte 0x494d - 198c: 004e .2byte 0x4e - 198e: 5f5f 5441 4d4f .byte 0x5f, 0x5f, 0x41, 0x54, 0x4f, 0x4d - 1994: 4349 .2byte 0x4349 - 1996: 435f 4e4f 5553 .byte 0x5f, 0x43, 0x4f, 0x4e, 0x53, 0x55 - 199c: 454d .2byte 0x454d - 199e: 3120 .2byte 0x3120 - 19a0: 5f00 .2byte 0x5f00 - 19a2: 635f 7070 745f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x74 - 19a8: 6d65 .2byte 0x6d65 - 19aa: 6c70 .2byte 0x6c70 - 19ac: 7461 .2byte 0x7461 - 19ae: 5f65 .2byte 0x5f65 - 19b0: 7561 .2byte 0x7561 - 19b2: 6f74 .2byte 0x6f74 - 19b4: 3220 .2byte 0x3220 - 19b6: 3130 .2byte 0x3130 - 19b8: 3036 .2byte 0x3036 - 19ba: 4c36 .2byte 0x4c36 - 19bc: 5f00 .2byte 0x5f00 - 19be: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 19c4: 5f58 .2byte 0x5f58 - 19c6: 414d .2byte 0x414d - 19c8: 5f58 .2byte 0x5f58 - 19ca: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 - 19d0: 3739 .2byte 0x3739 - 19d2: 39343133 .4byte 0x39343133 - 19d6: 3335 .2byte 0x3335 - 19d8: 3735 .2byte 0x3735 - 19da: 3332 .2byte 0x3332 - 19dc: 3731 .2byte 0x3731 - 19de: 3536 .2byte 0x3536 - 19e0: 3830 .2byte 0x3830 - 19e2: 3735 .2byte 0x3735 - 19e4: 3935 .2byte 0x3935 - 19e6: 36363233 .4byte 0x36363233 - 19ea: 3832 .2byte 0x3832 - 19ec: 3030 .2byte 0x3030 - 19ee: 65323037 lui x0,0x65323 - 19f2: 3339342b .4byte 0x3339342b - 19f6: 4632 .2byte 0x4632 - 19f8: 3436 .2byte 0x3436 - 19fa: 0078 .2byte 0x78 - 19fc: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 1a02: 5832 .2byte 0x5832 - 1a04: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 1a0a: 3220 .2byte 0x3220 - 1a0c: 322e .2byte 0x322e - 1a0e: 3532 .2byte 0x3532 - 1a10: 3730 .2byte 0x3730 - 1a12: 38353833 .4byte 0x38353833 - 1a16: 3035 .2byte 0x3035 - 1a18: 31303237 lui x4,0x31303 - 1a1c: 30333833 .4byte 0x30333833 - 1a20: 3039 .2byte 0x3039 - 1a22: 3332 .2byte 0x3332 - 1a24: 3732 .2byte 0x3732 - 1a26: 3731 .2byte 0x3731 - 1a28: 34323333 .4byte 0x34323333 - 1a2c: 3430 .2byte 0x3430 - 1a2e: 3630 .2byte 0x3630 - 1a30: 2d65 .2byte 0x2d65 - 1a32: 46383033 .4byte 0x46383033 - 1a36: 00783233 sltu x4,x16,x7 - 1a3a: 475f 4343 575f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x57 - 1a40: 4152 .2byte 0x4152 - 1a42: 5f50 .2byte 0x5f50 - 1a44: 49445453 .4byte 0x49445453 - 1a48: 544e .2byte 0x544e - 1a4a: 485f 0020 5f5f .byte 0x5f, 0x48, 0x20, 0x00, 0x5f, 0x5f - 1a50: 4c46 .2byte 0x4c46 - 1a52: 3654 .2byte 0x3654 - 1a54: 5834 .2byte 0x5834 - 1a56: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 - 1a5c: 464e .2byte 0x464e - 1a5e: 4e49 .2byte 0x4e49 - 1a60: 5449 .2byte 0x5449 - 1a62: 5f59 .2byte 0x5f59 - 1a64: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - 1a6a: 5f434347 .4byte 0x5f434347 - 1a6e: 5441 .2byte 0x5441 - 1a70: 43494d4f .4byte 0x43494d4f - 1a74: 545f 5345 5f54 .byte 0x5f, 0x54, 0x45, 0x53, 0x54, 0x5f - 1a7a: 4e41 .2byte 0x4e41 - 1a7c: 5f44 .2byte 0x5f44 - 1a7e: 5f544553 .4byte 0x5f544553 - 1a82: 5254 .2byte 0x5254 - 1a84: 4555 .2byte 0x4555 - 1a86: 4156 .2byte 0x4156 - 1a88: 204c .2byte 0x204c - 1a8a: 0031 .2byte 0x31 - 1a8c: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 1a92: 4148 .2byte 0x4148 - 1a94: 4556 .2byte 0x4556 - 1a96: 445f 4157 4652 .byte 0x5f, 0x44, 0x57, 0x41, 0x52, 0x46 - 1a9c: 5f32 .2byte 0x5f32 - 1a9e: 5f494643 .4byte 0x5f494643 - 1aa2: 5341 .2byte 0x5341 - 1aa4: 204d .2byte 0x204d - 1aa6: 0031 .2byte 0x31 - 1aa8: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 - 1aae: 465f464f .4byte 0x465f464f - 1ab2: 4f4c .2byte 0x4f4c - 1ab4: 5441 .2byte 0x5441 - 1ab6: 5f5f 3420 5f00 .byte 0x5f, 0x5f, 0x20, 0x34, 0x00, 0x5f - 1abc: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 - 1ac2: 5341 .2byte 0x5341 - 1ac4: 3354 .2byte 0x3354 - 1ac6: 5f32 .2byte 0x5f32 - 1ac8: 414d .2byte 0x414d - 1aca: 5f58 .2byte 0x5f58 - 1acc: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - 1ad2: 6666 .2byte 0x6666 - 1ad4: 6666 .2byte 0x6666 - 1ad6: 6666 .2byte 0x6666 - 1ad8: 5f00 .2byte 0x5f00 - 1ada: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 1ae0: 5f58 .2byte 0x5f58 - 1ae2: 4148 .2byte 0x4148 - 1ae4: 55515f53 .4byte 0x55515f53 - 1ae8: 4549 .2byte 0x4549 - 1aea: 5f54 .2byte 0x5f54 - 1aec: 414e .2byte 0x414e - 1aee: 5f4e .2byte 0x5f4e - 1af0: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - 1af6: 4c46 .2byte 0x4c46 - 1af8: 5f54 .2byte 0x5f54 - 1afa: 4148 .2byte 0x4148 - 1afc: 4e495f53 .4byte 0x4e495f53 - 1b00: 4946 .2byte 0x4946 - 1b02: 494e .2byte 0x494e - 1b04: 5954 .2byte 0x5954 - 1b06: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - 1b0c: 535f 4454 5f43 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x5f - 1b12: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - 1b18: 455a4953 .4byte 0x455a4953 - 1b1c: 4c5f464f .4byte 0x4c5f464f - 1b20: 5f474e4f .4byte 0x5f474e4f - 1b24: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f - 1b2a: 4244 .2byte 0x4244 - 1b2c: 5f4c .2byte 0x5f4c - 1b2e: 414d .2byte 0x414d - 1b30: 5f58 .2byte 0x5f58 - 1b32: 5845 .2byte 0x5845 - 1b34: 5f50 .2byte 0x5f50 - 1b36: 205f 3031 3432 .byte 0x5f, 0x20, 0x31, 0x30, 0x32, 0x34 - 1b3c: 5f00 .2byte 0x5f00 - 1b3e: 355a .2byte 0x355a - 1b40: 6c61 .2byte 0x6c61 - 1b42: 6f6c .2byte 0x6f6c - 1b44: 5f006963 bltu x0,x16,2136 <_start-0x7fffdeca> - 1b48: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 1b4e: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 1b54: 3120 .2byte 0x3120 - 1b56: 312e .2byte 0x312e - 1b58: 39343537 lui x10,0x39343 - 1b5c: 3334 .2byte 0x3334 - 1b5e: 3035 .2byte 0x3035 - 1b60: 3238 .2byte 0x3238 - 1b62: 3232 .2byte 0x3232 - 1b64: 3738 .2byte 0x3738 - 1b66: 3035 .2byte 0x3035 - 1b68: 38363937 lui x18,0x38363 - 1b6c: 35363337 lui x6,0x35363 - 1b70: 32323733 .4byte 0x32323733 - 1b74: 3232 .2byte 0x3232 - 1b76: 3534 .2byte 0x3534 - 1b78: 3836 .2byte 0x3836 - 1b7a: 2d65 .2byte 0x2d65 - 1b7c: 33463833 .4byte 0x33463833 - 1b80: 0032 .2byte 0x32 - 1b82: 4955 .2byte 0x4955 - 1b84: 544e .2byte 0x544e - 1b86: 5450 .2byte 0x5450 - 1b88: 5f52 .2byte 0x5f52 - 1b8a: 414d .2byte 0x414d - 1b8c: 2058 .2byte 0x2058 - 1b8e: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 1b94: 5450 .2byte 0x5450 - 1b96: 5f52 .2byte 0x5f52 - 1b98: 414d .2byte 0x414d - 1b9a: 5f58 .2byte 0x5f58 - 1b9c: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c - 1ba2: 3654 .2byte 0x3654 - 1ba4: 5834 .2byte 0x5834 - 1ba6: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f - 1bac: 4944 .2byte 0x4944 - 1bae: 205f5f47 .4byte 0x205f5f47 - 1bb2: 3131 .2byte 0x3131 - 1bb4: 5f5f0033 .4byte 0x5f5f0033 - 1bb8: 5f707063 bgeu x0,x23,2198 <_start-0x7fffde68> - 1bbc: 7672 .2byte 0x7672 - 1bbe: 6c61 .2byte 0x6c61 - 1bc0: 6575 .2byte 0x6575 - 1bc2: 725f 6665 7265 .byte 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72 - 1bc8: 6e65 .2byte 0x6e65 - 1bca: 20736563 bltu x6,x7,1dd4 <_start-0x7fffe22c> - 1bce: 3032 .2byte 0x3032 - 1bd0: 3630 .2byte 0x3630 - 1bd2: 3031 .2byte 0x3031 - 1bd4: 004c .2byte 0x4c - 1bd6: 5f5f 4f4c 474e .byte 0x5f, 0x5f, 0x4c, 0x4f, 0x4e, 0x47 - 1bdc: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 1be2: 3020 .2byte 0x3020 - 1be4: 3778 .2byte 0x3778 - 1be6: 6666 .2byte 0x6666 - 1be8: 6666 .2byte 0x6666 - 1bea: 6666 .2byte 0x6666 - 1bec: 4c66 .2byte 0x4c66 - 1bee: 5f00 .2byte 0x5f00 - 1bf0: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 - 1bf6: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 1bfc: 3020 .2byte 0x3020 - 1bfe: 3778 .2byte 0x3778 - 1c00: 6666 .2byte 0x6666 - 1c02: 0066 .2byte 0x66 - 1c04: 5f5f 4353 4148 .byte 0x5f, 0x5f, 0x53, 0x43, 0x48, 0x41 - 1c0a: 5f52 .2byte 0x5f52 - 1c0c: 54444957 .4byte 0x54444957 - 1c10: 5f48 .2byte 0x5f48 - 1c12: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f - 1c18: 5f707063 bgeu x0,x23,21f8 <_start-0x7fffde08> - 1c1c: 6564 .2byte 0x6564 - 1c1e: 79746c63 bltu x8,x23,23b6 <_start-0x7fffdc4a> - 1c22: 6570 .2byte 0x6570 - 1c24: 615f 7475 206f .byte 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x20 - 1c2a: 3032 .2byte 0x3032 - 1c2c: 3331 .2byte 0x3331 - 1c2e: 3430 .2byte 0x3430 - 1c30: 004c .2byte 0x4c - 1c32: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c - 1c38: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 - 1c3e: 5f30 .2byte 0x5f30 - 1c40: 5845 .2byte 0x5845 - 1c42: 5f50 .2byte 0x5f50 - 1c44: 205f 2d28 3934 .byte 0x5f, 0x20, 0x28, 0x2d, 0x34, 0x39 - 1c4a: 00293133 sltu x2,x18,x2 - 1c4e: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 1c54: 6c61 .2byte 0x6c61 - 1c56: 6769 .2byte 0x6769 - 1c58: 656e .2byte 0x656e - 1c5a: 5f64 .2byte 0x5f64 - 1c5c: 656e .2byte 0x656e - 1c5e: 30322077 .4byte 0x30322077 - 1c62: 3631 .2byte 0x3631 - 1c64: 3630 .2byte 0x3630 - 1c66: 004c .2byte 0x4c - 1c68: 6c61 .2byte 0x6c61 - 1c6a: 6f6c .2byte 0x6f6c - 1c6c: 5f007063 bgeu x0,x16,224c <_start-0x7fffddb4> - 1c70: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f - 1c76: 5f46 .2byte 0x5f46 - 1c78: 4f44 .2byte 0x4f44 - 1c7a: 4255 .2byte 0x4255 - 1c7c: 454c .2byte 0x454c - 1c7e: 5f5f 3820 5f00 .byte 0x5f, 0x5f, 0x20, 0x38, 0x00, 0x5f - 1c84: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f - 1c8a: 4150 .2byte 0x4150 - 1c8c: 4354 .2byte 0x4354 - 1c8e: 4c48 .2byte 0x4c48 - 1c90: 5645 .2byte 0x5645 - 1c92: 4c45 .2byte 0x4c45 - 1c94: 5f5f 3020 4700 .byte 0x5f, 0x5f, 0x20, 0x30, 0x00, 0x47 - 1c9a: 554e .2byte 0x554e - 1c9c: 4320 .2byte 0x4320 - 1c9e: 37312b2b .4byte 0x37312b2b - 1ca2: 3120 .2byte 0x3120 - 1ca4: 2e32 .2byte 0x2e32 - 1ca6: 2e32 .2byte 0x2e32 - 1ca8: 2030 .2byte 0x2030 - 1caa: 6d2d .2byte 0x6d2d - 1cac: 6261 .2byte 0x6261 - 1cae: 3d69 .2byte 0x3d69 - 1cb0: 6c69 .2byte 0x6c69 - 1cb2: 3370 .2byte 0x3370 - 1cb4: 2032 .2byte 0x2032 - 1cb6: 6d2d .2byte 0x6d2d - 1cb8: 7574 .2byte 0x7574 - 1cba: 656e .2byte 0x656e - 1cbc: 723d .2byte 0x723d - 1cbe: 656b636f jal x6,b8314 <_start-0x7ff47cec> - 1cc2: 2074 .2byte 0x2074 - 1cc4: 6d2d .2byte 0x6d2d - 1cc6: 7369 .2byte 0x7369 - 1cc8: 2d61 .2byte 0x2d61 - 1cca: 63657073 .4byte 0x63657073 - 1cce: 323d .2byte 0x323d - 1cd0: 3130 .2byte 0x3130 - 1cd2: 3139 .2byte 0x3139 - 1cd4: 3132 .2byte 0x3132 - 1cd6: 6d2d2033 .4byte 0x6d2d2033 - 1cda: 7261 .2byte 0x7261 - 1cdc: 723d6863 bltu x26,x3,240c <_start-0x7fffdbf4> - 1ce0: 3376 .2byte 0x3376 - 1ce2: 6932 .2byte 0x6932 - 1ce4: 2d20 .2byte 0x2d20 - 1ce6: 672d2067 .4byte 0x672d2067 - 1cea: 33626467 .4byte 0x33626467 - 1cee: 2d20 .2byte 0x2d20 - 1cf0: 2d20304f .4byte 0x2d20304f - 1cf4: 6666 .2byte 0x6666 - 1cf6: 6572 .2byte 0x6572 - 1cf8: 7365 .2byte 0x7365 - 1cfa: 6174 .2byte 0x6174 - 1cfc: 646e .2byte 0x646e - 1cfe: 6e69 .2byte 0x6e69 - 1d00: 662d2067 .4byte 0x662d2067 - 1d04: 6f6e .2byte 0x6f6e - 1d06: 702d .2byte 0x702d - 1d08: 6369 .2byte 0x6369 - 1d0a: 5500 .2byte 0x5500 - 1d0c: 4e49 .2byte 0x4e49 - 1d0e: 5f54 .2byte 0x5f54 - 1d10: 454c .2byte 0x454c - 1d12: 5341 .2byte 0x5341 - 1d14: 3654 .2byte 0x3654 - 1d16: 5f34 .2byte 0x5f34 - 1d18: 414d .2byte 0x414d - 1d1a: 2058 .2byte 0x2058 - 1d1c: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 1d22: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 1d28: 3436 .2byte 0x3436 - 1d2a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 1d30: 5f00 .2byte 0x5f00 - 1d32: 475f 5858 455f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x45 - 1d38: 5058 .2byte 0x5058 - 1d3a: 5245 .2byte 0x5245 - 1d3c: 4d49 .2byte 0x4d49 - 1d3e: 4e45 .2byte 0x4e45 - 1d40: 4154 .2byte 0x4154 - 1d42: 5f4c .2byte 0x5f4c - 1d44: 30585843 .4byte 0x30585843 - 1d48: 5f58 .2byte 0x5f58 - 1d4a: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - 1d50: 544e4957 .4byte 0x544e4957 - 1d54: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 1d5a: 3020 .2byte 0x3020 - 1d5c: 0055 .2byte 0x55 - 1d5e: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 1d64: 6176 .2byte 0x6176 - 1d66: 6972 .2byte 0x6972 - 1d68: 6461 .2byte 0x6461 - 1d6a: 6369 .2byte 0x6369 - 1d6c: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c - 1d72: 7461 .2byte 0x7461 - 1d74: 7365 .2byte 0x7365 - 1d76: 3220 .2byte 0x3220 - 1d78: 3030 .2byte 0x3030 - 1d7a: 4c343037 lui x0,0x4c343 - 1d7e: 4900 .2byte 0x4900 - 1d80: 544e .2byte 0x544e - 1d82: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 - 1d88: 5f32 .2byte 0x5f32 - 1d8a: 494d .2byte 0x494d - 1d8c: 004e .2byte 0x4e - 1d8e: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 1d94: 4f4e .2byte 0x4f4e - 1d96: 4d52 .2byte 0x4d52 - 1d98: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 1d9e: 3320 .2byte 0x3320 - 1da0: 342e .2byte 0x342e - 1da2: 3230 .2byte 0x3230 - 1da4: 3238 .2byte 0x3238 - 1da6: 36363433 .4byte 0x36363433 - 1daa: 32353833 .4byte 0x32353833 - 1dae: 3838 .2byte 0x3838 - 1db0: 3935 .2byte 0x3935 - 1db2: 3138 .2byte 0x3138 - 1db4: 3731 .2byte 0x3731 - 1db6: 3430 .2byte 0x3430 - 1db8: 3831 .2byte 0x3831 - 1dba: 34383433 .4byte 0x34383433 - 1dbe: 3135 .2byte 0x3135 - 1dc0: 3936 .2byte 0x3936 - 1dc2: 3532 .2byte 0x3532 - 1dc4: 2b65 .2byte 0x2b65 - 1dc6: 00463833 sltu x16,x12,x4 - 1dca: 5f5f 5453 4344 .byte 0x5f, 0x5f, 0x53, 0x54, 0x44, 0x43 - 1dd0: 555f 4654 315f .byte 0x5f, 0x55, 0x54, 0x46, 0x5f, 0x31 - 1dd6: 5f36 .2byte 0x5f36 - 1dd8: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - 1dde: 5f707063 bgeu x0,x23,23be <_start-0x7fffdc42> - 1de2: 6e69 .2byte 0x6e69 - 1de4: 696c .2byte 0x696c - 1de6: 656e .2byte 0x656e - 1de8: 765f 7261 6169 .byte 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61 - 1dee: 6c62 .2byte 0x6c62 - 1df0: 7365 .2byte 0x7365 - 1df2: 3220 .2byte 0x3220 - 1df4: 3130 .2byte 0x3130 - 1df6: 3036 .2byte 0x3036 - 1df8: 4c36 .2byte 0x4c36 - 1dfa: 5f00 .2byte 0x5f00 - 1dfc: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 1e02: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 - 1e08: 30365f43 .4byte 0x30365f43 - 1e0c: 3535 .2byte 0x3535 - 1e0e: 5f39 .2byte 0x5f39 - 1e10: 205f 0032 4955 .byte 0x5f, 0x20, 0x32, 0x00, 0x55, 0x49 - 1e16: 544e .2byte 0x544e - 1e18: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 - 1e1e: 5f32 .2byte 0x5f32 - 1e20: 414d .2byte 0x414d - 1e22: 0058 .2byte 0x58 - 1e24: 4955 .2byte 0x4955 - 1e26: 544e .2byte 0x544e - 1e28: 435f3233 .4byte 0x435f3233 - 1e2c: 6328 .2byte 0x6328 - 1e2e: 2029 .2byte 0x2029 - 1e30: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 1e36: 435f3233 .4byte 0x435f3233 - 1e3a: 6328 .2byte 0x6328 - 1e3c: 0029 .2byte 0x29 - 1e3e: 4e49 .2byte 0x4e49 - 1e40: 5f54 .2byte 0x5f54 - 1e42: 454c .2byte 0x454c - 1e44: 5341 .2byte 0x5341 - 1e46: 3854 .2byte 0x3854 - 1e48: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 - 1e4e: 492d .2byte 0x492d - 1e50: 544e .2byte 0x544e - 1e52: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 1e58: 5f38 .2byte 0x5f38 - 1e5a: 414d .2byte 0x414d - 1e5c: 2058 .2byte 0x2058 - 1e5e: 202d .2byte 0x202d - 1e60: 2931 .2byte 0x2931 - 1e62: 5f00 .2byte 0x5f00 - 1e64: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f - 1e6a: 4148 .2byte 0x4148 - 1e6c: 4e495f53 .4byte 0x4e495f53 - 1e70: 4946 .2byte 0x4946 - 1e72: 494e .2byte 0x494e - 1e74: 5954 .2byte 0x5954 - 1e76: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - 1e7c: 475f 4343 495f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x49 - 1e82: 4345 .2byte 0x4345 - 1e84: 355f 3935 435f .byte 0x5f, 0x35, 0x35, 0x39, 0x5f, 0x43 - 1e8a: 4c504d4f .4byte 0x4c504d4f - 1e8e: 5845 .2byte 0x5845 - 1e90: 3020 .2byte 0x3020 - 1e92: 5f00 .2byte 0x5f00 - 1e94: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 - 1e9a: 5f32 .2byte 0x5f32 - 1e9c: 414d .2byte 0x414d - 1e9e: 5f58 .2byte 0x5f58 - 1ea0: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 1ea6: 6666 .2byte 0x6666 - 1ea8: 6666 .2byte 0x6666 - 1eaa: 6666 .2byte 0x6666 - 1eac: 4c55 .2byte 0x4c55 - 1eae: 5f00 .2byte 0x5f00 - 1eb0: 635f 7070 675f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x67 - 1eb6: 6175 .2byte 0x6175 - 1eb8: 6172 .2byte 0x6172 - 1eba: 746e .2byte 0x746e - 1ebc: 6565 .2byte 0x6565 - 1ebe: 5f64 .2byte 0x5f64 - 1ec0: 79706f63 bltu x0,x23,265e <_start-0x7fffd9a2> - 1ec4: 655f 696c 6973 .byte 0x5f, 0x65, 0x6c, 0x69, 0x73, 0x69 - 1eca: 32206e6f jal x28,81ec <_start-0x7fff7e14> - 1ece: 3130 .2byte 0x3130 - 1ed0: 3036 .2byte 0x3036 - 1ed2: 4c36 .2byte 0x4c36 - 1ed4: 5f00 .2byte 0x5f00 - 1ed6: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f - 1edc: 4f4e .2byte 0x4f4e - 1ede: 4d52 .2byte 0x4d52 - 1ee0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 1ee6: 3120 .2byte 0x3120 - 1ee8: 312e .2byte 0x312e - 1eea: 3938 .2byte 0x3938 - 1eec: 34313337 lui x6,0x34313 - 1ef0: 3539 .2byte 0x3539 - 1ef2: 32373533 .4byte 0x32373533 - 1ef6: 36373133 .4byte 0x36373133 - 1efa: 3035 .2byte 0x3035 - 1efc: 3538 .2byte 0x3538 - 1efe: 33393537 lui x10,0x33393 - 1f02: 3632 .2byte 0x3632 - 1f04: 3236 .2byte 0x3236 - 1f06: 3038 .2byte 0x3038 - 1f08: 3730 .2byte 0x3730 - 1f0a: 3230 .2byte 0x3230 - 1f0c: 2b65 .2byte 0x2b65 - 1f0e: 3934 .2byte 0x3934 - 1f10: 004c3233 sltu x4,x24,x4 - 1f14: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 - 1f1a: 575f464f .4byte 0x575f464f - 1f1e: 52414843 .4byte 0x52414843 - 1f22: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 - 1f28: 4900 .2byte 0x4900 - 1f2a: 544e .2byte 0x544e - 1f2c: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 - 1f32: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - 1f38: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 - 1f3e: 5f38 .2byte 0x5f38 - 1f40: 494d .2byte 0x494d - 1f42: 5f4e .2byte 0x5f4e - 1f44: 3031 .2byte 0x3031 - 1f46: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 1f4c: 2820 .2byte 0x2820 - 1f4e: 342d .2byte 0x342d - 1f50: 3339 .2byte 0x3339 - 1f52: 2931 .2byte 0x2931 - 1f54: 5f00 .2byte 0x5f00 - 1f56: 465f 4f4c 5441 .byte 0x5f, 0x46, 0x4c, 0x4f, 0x41, 0x54 - 1f5c: 575f 524f 5f44 .byte 0x5f, 0x57, 0x4f, 0x52, 0x44, 0x5f - 1f62: 4544524f .4byte 0x4544524f - 1f66: 5f52 .2byte 0x5f52 - 1f68: 205f 5f5f 524f .byte 0x5f, 0x20, 0x5f, 0x5f, 0x4f, 0x52 - 1f6e: 4544 .2byte 0x4544 - 1f70: 5f52 .2byte 0x5f52 - 1f72: 494c .2byte 0x494c - 1f74: 5454 .2byte 0x5454 - 1f76: 454c .2byte 0x454c - 1f78: 455f 444e 4149 .byte 0x5f, 0x45, 0x4e, 0x44, 0x49, 0x41 - 1f7e: 5f4e .2byte 0x5f4e - 1f80: 005f 5f5f 4953 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x53, 0x49 - 1f86: 455a .2byte 0x455a - 1f88: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 - 1f8e: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 - 1f94: 4e49 .2byte 0x4e49 - 1f96: 5054 .2byte 0x5054 - 1f98: 5254 .2byte 0x5254 - 1f9a: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - 1fa0: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 1fa6: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 - 1fac: 5f4d .2byte 0x5f4d - 1fae: 494d .2byte 0x494d - 1fb0: 5f4e .2byte 0x5f4e - 1fb2: 205f 2e31 3034 .byte 0x5f, 0x20, 0x31, 0x2e, 0x34, 0x30 - 1fb8: 3231 .2byte 0x3231 - 1fba: 3839 .2byte 0x3839 - 1fbc: 3634 .2byte 0x3634 - 1fbe: 3334 .2byte 0x3334 - 1fc0: 3432 .2byte 0x3432 - 1fc2: 3138 .2byte 0x3138 - 1fc4: 30373037 lui x0,0x30373 - 1fc8: 3239 .2byte 0x3239 - 1fca: 39323733 .4byte 0x39323733 - 1fce: 3835 .2byte 0x3835 - 1fd0: 39383233 .4byte 0x39383233 - 1fd4: 3139 .2byte 0x3139 - 1fd6: 3136 .2byte 0x3136 - 1fd8: 342d6533 .4byte 0x342d6533 - 1fdc: 4635 .2byte 0x4635 - 1fde: 5f003233 .4byte 0x5f003233 - 1fe2: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 - 1fe8: 4f54 .2byte 0x4f54 - 1fea: 494d .2byte 0x494d - 1fec: 494d5f43 .4byte 0x494d5f43 - 1ff0: 5f4e .2byte 0x5f4e - 1ff2: 205f 2d28 5f5f .byte 0x5f, 0x20, 0x28, 0x2d, 0x5f, 0x5f - 1ff8: 5f474953 .4byte 0x5f474953 - 1ffc: 5441 .2byte 0x5441 - 1ffe: 43494d4f .4byte 0x43494d4f - 2002: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2008: 2d20 .2byte 0x2d20 - 200a: 3120 .2byte 0x3120 - 200c: 0029 .2byte 0x29 - 200e: 4955 .2byte 0x4955 - 2010: 544e .2byte 0x544e - 2012: 435f3233 .4byte 0x435f3233 - 2016: 5500 .2byte 0x5500 - 2018: 4e49 .2byte 0x4e49 - 201a: 4d54 .2byte 0x4d54 - 201c: 5841 .2byte 0x5841 - 201e: 435f 5f00 4c5f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x4c - 2024: 5f474e4f .4byte 0x5f474e4f - 2028: 54444957 .4byte 0x54444957 - 202c: 5f48 .2byte 0x5f48 - 202e: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f - 2034: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 - 203a: 43415f43 .4byte 0x43415f43 - 203e: 5551 .2byte 0x5551 - 2040: 5249 .2byte 0x5249 - 2042: 2045 .2byte 0x2045 - 2044: 0032 .2byte 0x32 - 2046: 5f5f 4843 5241 .byte 0x5f, 0x5f, 0x43, 0x48, 0x41, 0x52 - 204c: 545f3233 .4byte 0x545f3233 - 2050: 5059 .2byte 0x5059 - 2052: 5f45 .2byte 0x5f45 - 2054: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 - 205a: 7520 .2byte 0x7520 - 205c: 736e .2byte 0x736e - 205e: 6769 .2byte 0x6769 - 2060: 656e .2byte 0x656e - 2062: 2064 .2byte 0x2064 - 2064: 6e69 .2byte 0x6e69 - 2066: 0074 .2byte 0x74 - 2068: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 206e: 3436 .2byte 0x3436 - 2070: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2076: 3020 .2byte 0x3020 - 2078: 6678 .2byte 0x6678 - 207a: 6666 .2byte 0x6666 - 207c: 6666 .2byte 0x6666 - 207e: 6666 .2byte 0x6666 - 2080: 6666 .2byte 0x6666 - 2082: 6666 .2byte 0x6666 - 2084: 6666 .2byte 0x6666 - 2086: 6666 .2byte 0x6666 - 2088: 5566 .2byte 0x5566 - 208a: 4c4c .2byte 0x4c4c - 208c: 5f00 .2byte 0x5f00 - 208e: 565f 5245 4953 .byte 0x5f, 0x56, 0x45, 0x52, 0x53, 0x49 - 2094: 5f5f4e4f .4byte 0x5f5f4e4f - 2098: 2220 .2byte 0x2220 - 209a: 3231 .2byte 0x3231 - 209c: 322e .2byte 0x322e - 209e: 302e .2byte 0x302e - 20a0: 0022 .2byte 0x22 - 20a2: 4955 .2byte 0x4955 - 20a4: 544e .2byte 0x544e - 20a6: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 20ac: 3631 .2byte 0x3631 - 20ae: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 20b4: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 20ba: 454c .2byte 0x454c - 20bc: 5341 .2byte 0x5341 - 20be: 3154 .2byte 0x3154 - 20c0: 5f36 .2byte 0x5f36 - 20c2: 414d .2byte 0x414d - 20c4: 5f58 .2byte 0x5f58 - 20c6: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 - 20cc: 5f70 .2byte 0x5f70 - 20ce: 6f66 .2byte 0x6f66 - 20d0: 646c .2byte 0x646c - 20d2: 655f 7078 6572 .byte 0x5f, 0x65, 0x78, 0x70, 0x72, 0x65 - 20d8: 6f697373 .4byte 0x6f697373 - 20dc: 736e .2byte 0x736e - 20de: 3220 .2byte 0x3220 - 20e0: 3130 .2byte 0x3130 - 20e2: 3036 .2byte 0x3036 - 20e4: 49004c33 .4byte 0x49004c33 - 20e8: 544e .2byte 0x544e - 20ea: 3436 .2byte 0x3436 - 20ec: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 - 20f2: 492d .2byte 0x492d - 20f4: 544e .2byte 0x544e - 20f6: 3436 .2byte 0x3436 - 20f8: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d - 20fe: 3120 .2byte 0x3120 - 2100: 0029 .2byte 0x29 - 2102: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 2108: 5f38 .2byte 0x5f38 - 210a: 29632843 .4byte 0x29632843 - 210e: 6320 .2byte 0x6320 - 2110: 5f00 .2byte 0x5f00 - 2112: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 2118: 454c .2byte 0x454c - 211a: 5341 .2byte 0x5341 - 211c: 3354 .2byte 0x3354 - 211e: 5f32 .2byte 0x5f32 - 2120: 5954 .2byte 0x5954 - 2122: 4550 .2byte 0x4550 - 2124: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e - 212a: 6e752067 .4byte 0x6e752067 - 212e: 6e676973 .4byte 0x6e676973 - 2132: 6465 .2byte 0x6465 - 2134: 6920 .2byte 0x6920 - 2136: 746e .2byte 0x746e - 2138: 5f00 .2byte 0x5f00 - 213a: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d - 2140: 5841 .2byte 0x5841 - 2142: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 2148: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 - 214e: 6c20 .2byte 0x6c20 - 2150: 20676e6f jal x28,78356 <_start-0x7ff87caa> - 2154: 6e75 .2byte 0x6e75 - 2156: 6e676973 .4byte 0x6e676973 - 215a: 6465 .2byte 0x6465 - 215c: 6920 .2byte 0x6920 - 215e: 746e .2byte 0x746e - 2160: 4900 .2byte 0x4900 - 2162: 544e .2byte 0x544e - 2164: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 - 216a: 5f34 .2byte 0x5f34 - 216c: 414d .2byte 0x414d - 216e: 2058 .2byte 0x2058 - 2170: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 2176: 4146 .2byte 0x4146 - 2178: 34365453 .4byte 0x34365453 - 217c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2182: 5f00 .2byte 0x5f00 - 2184: 635f 7070 655f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x65 - 218a: 756e .2byte 0x756e - 218c: 656d .2byte 0x656d - 218e: 6172 .2byte 0x6172 - 2190: 6f74 .2byte 0x6f74 - 2192: 5f72 .2byte 0x5f72 - 2194: 7461 .2byte 0x7461 - 2196: 7274 .2byte 0x7274 - 2198: 6269 .2byte 0x6269 - 219a: 7475 .2byte 0x7475 - 219c: 7365 .2byte 0x7365 - 219e: 3220 .2byte 0x3220 - 21a0: 3130 .2byte 0x3130 - 21a2: 3134 .2byte 0x3134 - 21a4: 4c31 .2byte 0x4c31 - 21a6: 5f00 .2byte 0x5f00 - 21a8: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 - 21ae: 4f54 .2byte 0x4f54 - 21b0: 494d .2byte 0x494d - 21b2: 49575f43 .4byte 0x49575f43 - 21b6: 5444 .2byte 0x5444 - 21b8: 5f48 .2byte 0x5f48 - 21ba: 205f 3233 5500 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x55 - 21c0: 4e49 .2byte 0x4e49 - 21c2: 3654 .2byte 0x3654 - 21c4: 5f34 .2byte 0x5f34 - 21c6: 29632843 .4byte 0x29632843 - 21ca: 5f20 .2byte 0x5f20 - 21cc: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 - 21d2: 5f34 .2byte 0x5f34 - 21d4: 29632843 .4byte 0x29632843 - 21d8: 5f00 .2byte 0x5f00 - 21da: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 - 21e0: 6e75 .2byte 0x6e75 - 21e2: 6974 .2byte 0x6974 - 21e4: 656d .2byte 0x656d - 21e6: 615f 7272 7961 .byte 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79 - 21ec: 39312073 .4byte 0x39312073 - 21f0: 3738 .2byte 0x3738 - 21f2: 3231 .2byte 0x3231 - 21f4: 004c .2byte 0x4c - 21f6: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 21fc: 7472 .2byte 0x7472 - 21fe: 6974 .2byte 0x6974 - 2200: 3120 .2byte 0x3120 - 2202: 3939 .2byte 0x3939 - 2204: 4c313137 lui x2,0x4c313 - 2208: 5f00 .2byte 0x5f00 - 220a: 535f 5248 5f54 .byte 0x5f, 0x53, 0x48, 0x52, 0x54, 0x5f - 2210: 414d .2byte 0x414d - 2212: 5f58 .2byte 0x5f58 - 2214: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - 221a: 6666 .2byte 0x6666 - 221c: 5f00 .2byte 0x5f00 - 221e: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e - 2224: 79746e6f jal x28,491ba <_start-0x7ffb6e46> - 2228: 6570 .2byte 0x6570 - 222a: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c - 2230: 7461 .2byte 0x7461 - 2232: 5f65 .2byte 0x5f65 - 2234: 6170 .2byte 0x6170 - 2236: 6172 .2byte 0x6172 - 2238: 656d .2byte 0x656d - 223a: 6574 .2byte 0x6574 - 223c: 5f72 .2byte 0x5f72 - 223e: 7561 .2byte 0x7561 - 2240: 6f74 .2byte 0x6f74 - 2242: 3220 .2byte 0x3220 - 2244: 3130 .2byte 0x3130 - 2246: 3036 .2byte 0x3036 - 2248: 4c36 .2byte 0x4c36 - 224a: 5f00 .2byte 0x5f00 - 224c: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 - 2252: 505f 5044 455f .byte 0x5f, 0x50, 0x44, 0x50, 0x5f, 0x45 - 2258: 444e .2byte 0x444e - 225a: 4149 .2byte 0x4149 - 225c: 5f4e .2byte 0x5f4e - 225e: 205f 3433 3231 .byte 0x5f, 0x20, 0x33, 0x34, 0x31, 0x32 - 2264: 5f00 .2byte 0x5f00 - 2266: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 226c: 454c .2byte 0x454c - 226e: 5341 .2byte 0x5341 - 2270: 3154 .2byte 0x3154 - 2272: 5f36 .2byte 0x5f36 - 2274: 5954 .2byte 0x5954 - 2276: 4550 .2byte 0x4550 - 2278: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f - 227e: 7472 .2byte 0x7472 - 2280: 7520 .2byte 0x7520 - 2282: 736e .2byte 0x736e - 2284: 6769 .2byte 0x6769 - 2286: 656e .2byte 0x656e - 2288: 2064 .2byte 0x2064 - 228a: 6e69 .2byte 0x6e69 - 228c: 0074 .2byte 0x74 - 228e: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 2294: 4544 .2byte 0x4544 - 2296: 414d4943 .4byte 0x414d4943 - 229a: 5f4c .2byte 0x5f4c - 229c: 4944 .2byte 0x4944 - 229e: 205f5f47 .4byte 0x205f5f47 - 22a2: 0039 .2byte 0x39 - 22a4: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 - 22aa: 5f32 .2byte 0x5f32 - 22ac: 414d .2byte 0x414d - 22ae: 5f58 .2byte 0x5f58 - 22b0: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - 22b6: 6666 .2byte 0x6666 - 22b8: 6666 .2byte 0x6666 - 22ba: 6666 .2byte 0x6666 - 22bc: 004c .2byte 0x4c - 22be: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c - 22c4: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 - 22ca: 5058 .2byte 0x5058 - 22cc: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 - 22d2: 3336 .2byte 0x3336 - 22d4: 3138 .2byte 0x3138 - 22d6: 0029 .2byte 0x29 - 22d8: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 - 22de: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 - 22e4: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 - 22ea: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 - 22f0: 5834 .2byte 0x5834 - 22f2: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 22f8: 3320 .2byte 0x3320 - 22fa: 332e .2byte 0x332e - 22fc: 3236 .2byte 0x3236 - 22fe: 3031 .2byte 0x3031 - 2300: 33343133 .4byte 0x33343133 - 2304: 3131 .2byte 0x3131 - 2306: 3032 .2byte 0x3032 - 2308: 3339 .2byte 0x3339 - 230a: 3035 .2byte 0x3035 - 230c: 3236 .2byte 0x3236 - 230e: 3236 .2byte 0x3236 - 2310: 3736 .2byte 0x3736 - 2312: 37313837 lui x16,0x37313 - 2316: 37313233 .4byte 0x37313233 - 231a: 3235 .2byte 0x3235 - 231c: 3036 .2byte 0x3036 - 231e: 2d65 .2byte 0x2d65 - 2320: 3934 .2byte 0x3934 - 2322: 36463233 .4byte 0x36463233 - 2326: 7834 .2byte 0x7834 - 2328: 4900 .2byte 0x4900 - 232a: 544e .2byte 0x544e - 232c: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 2332: 3436 .2byte 0x3436 - 2334: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 - 233a: 492d .2byte 0x492d - 233c: 544e .2byte 0x544e - 233e: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 2344: 3436 .2byte 0x3436 - 2346: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d - 234c: 3120 .2byte 0x3120 - 234e: 0029 .2byte 0x29 - 2350: 4e49 .2byte 0x4e49 - 2352: 3154 .2byte 0x3154 - 2354: 5f36 .2byte 0x5f36 - 2356: 494d .2byte 0x494d - 2358: 004e .2byte 0x4e - 235a: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 2360: 5450 .2byte 0x5450 - 2362: 5f52 .2byte 0x5f52 - 2364: 414d .2byte 0x414d - 2366: 5f58 .2byte 0x5f58 - 2368: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 236e: 6666 .2byte 0x6666 - 2370: 6666 .2byte 0x6666 - 2372: 6666 .2byte 0x6666 - 2374: 0055 .2byte 0x55 - 2376: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 237c: 5f32 .2byte 0x5f32 - 237e: 5045 .2byte 0x5045 - 2380: 4f4c4953 .4byte 0x4f4c4953 - 2384: 5f4e .2byte 0x5f4e - 2386: 205f 2e31 3931 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x39 - 238c: 3032 .2byte 0x3032 - 238e: 3239 .2byte 0x3239 - 2390: 3938 .2byte 0x3938 - 2392: 3535 .2byte 0x3535 - 2394: 3730 .2byte 0x3730 - 2396: 3138 .2byte 0x3138 - 2398: 3532 .2byte 0x3532 - 239a: 3030 .2byte 0x3030 - 239c: 3030 .2byte 0x3030 - 239e: 3030 .2byte 0x3030 - 23a0: 3030 .2byte 0x3030 - 23a2: 3030 .2byte 0x3030 - 23a4: 3030 .2byte 0x3030 - 23a6: 3030 .2byte 0x3030 - 23a8: 3030 .2byte 0x3030 - 23aa: 3030 .2byte 0x3030 - 23ac: 6530 .2byte 0x6530 - 23ae: 372d .2byte 0x372d - 23b0: 3346 .2byte 0x3346 - 23b2: 0032 .2byte 0x32 - 23b4: 4e49 .2byte 0x4e49 - 23b6: 5f54 .2byte 0x5f54 - 23b8: 4146 .2byte 0x4146 - 23ba: 34365453 .4byte 0x34365453 - 23be: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 - 23c4: 492d .2byte 0x492d - 23c6: 544e .2byte 0x544e - 23c8: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 - 23ce: 5f34 .2byte 0x5f34 - 23d0: 414d .2byte 0x414d - 23d2: 2058 .2byte 0x2058 - 23d4: 202d .2byte 0x202d - 23d6: 2931 .2byte 0x2931 - 23d8: 6100 .2byte 0x6100 - 23da: 6c6c .2byte 0x6c6c - 23dc: 4900636f jal x6,886c <_start-0x7fff7794> - 23e0: 544e .2byte 0x544e - 23e2: 5f38 .2byte 0x5f38 - 23e4: 29632843 .4byte 0x29632843 - 23e8: 5f20 .2byte 0x5f20 - 23ea: 495f 544e 5f38 .byte 0x5f, 0x49, 0x4e, 0x54, 0x38, 0x5f - 23f0: 29632843 .4byte 0x29632843 - 23f4: 5f00 .2byte 0x5f00 - 23f6: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 23fc: 4146 .2byte 0x4146 - 23fe: 5f385453 .4byte 0x5f385453 - 2402: 414d .2byte 0x414d - 2404: 5f58 .2byte 0x5f58 - 2406: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 240c: 6666 .2byte 0x6666 - 240e: 6666 .2byte 0x6666 - 2410: 6666 .2byte 0x6666 - 2412: 0055 .2byte 0x55 - 2414: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 - 241a: 5f32 .2byte 0x5f32 - 241c: 5954 .2byte 0x5954 - 241e: 4550 .2byte 0x4550 - 2420: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e - 2426: 6e692067 .4byte 0x6e692067 - 242a: 0074 .2byte 0x74 - 242c: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 2432: 5832 .2byte 0x5832 - 2434: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 - 243a: 5f30 .2byte 0x5f30 - 243c: 5845 .2byte 0x5845 - 243e: 5f50 .2byte 0x5f50 - 2440: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 - 2446: 49002937 lui x18,0x49002 - 244a: 544e .2byte 0x544e - 244c: 3436 .2byte 0x3436 - 244e: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 - 2454: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 - 245a: 5f34 .2byte 0x5f34 - 245c: 29632843 .4byte 0x29632843 - 2460: 5f00 .2byte 0x5f00 - 2462: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 - 2468: 65726767 .4byte 0x65726767 - 246c: 65746167 .4byte 0x65746167 - 2470: 625f 7361 7365 .byte 0x5f, 0x62, 0x61, 0x73, 0x65, 0x73 - 2476: 3220 .2byte 0x3220 - 2478: 3130 .2byte 0x3130 - 247a: 3036 .2byte 0x3036 - 247c: 5f004c33 .4byte 0x5f004c33 - 2480: 475f 554e 5f47 .byte 0x5f, 0x47, 0x4e, 0x55, 0x47, 0x5f - 2486: 205f 3231 5f00 .byte 0x5f, 0x20, 0x31, 0x32, 0x00, 0x5f - 248c: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 2492: 5f58 .2byte 0x5f58 - 2494: 414d .2byte 0x414d - 2496: 5f58 .2byte 0x5f58 - 2498: 3031 .2byte 0x3031 - 249a: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 24a0: 3420 .2byte 0x3420 - 24a2: 3339 .2byte 0x3339 - 24a4: 0032 .2byte 0x32 - 24a6: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 24ac: 5832 .2byte 0x5832 - 24ae: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 - 24b4: 5058 .2byte 0x5058 - 24b6: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 - 24bc: 3230 .2byte 0x3230 - 24be: 2931 .2byte 0x2931 - 24c0: 5500 .2byte 0x5500 - 24c2: 4e49 .2byte 0x4e49 - 24c4: 5f54 .2byte 0x5f54 - 24c6: 4146 .2byte 0x4146 - 24c8: 34365453 .4byte 0x34365453 - 24cc: 4d5f 5841 4900 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x49 - 24d2: 544e .2byte 0x544e - 24d4: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 24da: 3436 .2byte 0x3436 - 24dc: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 24e2: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c - 24e8: 4145 .2byte 0x4145 - 24ea: 34365453 .4byte 0x34365453 - 24ee: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 24f4: 5f00 .2byte 0x5f00 - 24f6: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 24fc: 454c .2byte 0x454c - 24fe: 5341 .2byte 0x5341 - 2500: 3354 .2byte 0x3354 - 2502: 5f32 .2byte 0x5f32 - 2504: 414d .2byte 0x414d - 2506: 5f58 .2byte 0x5f58 - 2508: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 250e: 6666 .2byte 0x6666 - 2510: 6666 .2byte 0x6666 - 2512: 6666 .2byte 0x6666 - 2514: 4c55 .2byte 0x4c55 - 2516: 5000 .2byte 0x5000 - 2518: 5254 .2byte 0x5254 - 251a: 4944 .2byte 0x4944 - 251c: 4646 .2byte 0x4646 - 251e: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 2524: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 - 252a: 4646 .2byte 0x4646 - 252c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2532: 5f00 .2byte 0x5f00 - 2534: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f - 253a: 4148 .2byte 0x4148 - 253c: 55515f53 .4byte 0x55515f53 - 2540: 4549 .2byte 0x4549 - 2542: 5f54 .2byte 0x5f54 - 2544: 414e .2byte 0x414e - 2546: 5f4e .2byte 0x5f4e - 2548: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - 254e: 4e49 .2byte 0x4e49 - 2550: 3854 .2byte 0x3854 - 2552: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 2558: 205f 6973 6e67 .byte 0x5f, 0x20, 0x73, 0x69, 0x67, 0x6e - 255e: 6465 .2byte 0x6465 - 2560: 6320 .2byte 0x6320 - 2562: 6168 .2byte 0x6168 - 2564: 0072 .2byte 0x72 - 2566: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 - 256c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2572: 3020 .2byte 0x3020 - 2574: 6678 .2byte 0x6678 - 2576: 6666 .2byte 0x6666 - 2578: 6666 .2byte 0x6666 - 257a: 6666 .2byte 0x6666 - 257c: 5566 .2byte 0x5566 - 257e: 5500 .2byte 0x5500 - 2580: 4e49 .2byte 0x4e49 - 2582: 4d54 .2byte 0x4d54 - 2584: 5841 .2byte 0x5841 - 2586: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f - 258c: 445f 4345 455f .byte 0x5f, 0x44, 0x45, 0x43, 0x5f, 0x45 - 2592: 4156 .2byte 0x4156 - 2594: 5f4c .2byte 0x5f4c - 2596: 454d .2byte 0x454d - 2598: 4854 .2byte 0x4854 - 259a: 5f5f444f .4byte 0x5f5f444f - 259e: 3220 .2byte 0x3220 - 25a0: 7700 .2byte 0x7700 - 25a2: 0064726f jal x4,495a8 <_start-0x7ffb6a58> - 25a6: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 25ac: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 - 25b2: 5f34 .2byte 0x5f34 - 25b4: 414d .2byte 0x414d - 25b6: 5f58 .2byte 0x5f58 - 25b8: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 25be: 6666 .2byte 0x6666 - 25c0: 6666 .2byte 0x6666 - 25c2: 6666 .2byte 0x6666 - 25c4: 6666 .2byte 0x6666 - 25c6: 6666 .2byte 0x6666 - 25c8: 6666 .2byte 0x6666 - 25ca: 6666 .2byte 0x6666 - 25cc: 4c55 .2byte 0x4c55 - 25ce: 004c .2byte 0x4c - 25d0: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 25d6: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 - 25dc: 5f32 .2byte 0x5f32 - 25de: 414d .2byte 0x414d - 25e0: 5f58 .2byte 0x5f58 - 25e2: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 25e8: 6666 .2byte 0x6666 - 25ea: 6666 .2byte 0x6666 - 25ec: 6666 .2byte 0x6666 - 25ee: 0055 .2byte 0x55 - 25f0: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 25f6: 6669 .2byte 0x6669 - 25f8: 635f 6e6f 7473 .byte 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74 - 25fe: 7865 .2byte 0x7865 - 2600: 7270 .2byte 0x7270 - 2602: 3220 .2byte 0x3220 - 2604: 3130 .2byte 0x3130 - 2606: 3036 .2byte 0x3036 - 2608: 4c36 .2byte 0x4c36 - 260a: 5f00 .2byte 0x5f00 - 260c: 495f 544e 3436 .byte 0x5f, 0x49, 0x4e, 0x54, 0x36, 0x34 - 2612: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 - 2618: 23232063 .4byte 0x23232063 - 261c: 4c20 .2byte 0x4c20 - 261e: 004c .2byte 0x4c - 2620: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 - 2626: 3832 .2byte 0x3832 - 2628: 455f 5350 4c49 .byte 0x5f, 0x45, 0x50, 0x53, 0x49, 0x4c - 262e: 5f5f4e4f .4byte 0x5f5f4e4f - 2632: 3120 .2byte 0x3120 - 2634: 392e .2byte 0x392e - 2636: 3532 .2byte 0x3532 - 2638: 3239 .2byte 0x3239 - 263a: 3939 .2byte 0x3939 - 263c: 3434 .2byte 0x3434 - 263e: 32373833 .4byte 0x32373833 - 2642: 35383533 .4byte 0x35383533 - 2646: 35353033 .4byte 0x35353033 - 264a: 3739 .2byte 0x3739 - 264c: 32343937 lui x18,0x32343 - 2650: 3835 .2byte 0x3835 - 2652: 3934 .2byte 0x3934 - 2654: 3732 .2byte 0x3732 - 2656: 2d653233 .4byte 0x2d653233 - 265a: 31463433 .4byte 0x31463433 - 265e: 3832 .2byte 0x3832 - 2660: 5f00 .2byte 0x5f00 - 2662: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 - 2668: 695f 3220 3030 .byte 0x5f, 0x69, 0x20, 0x32, 0x30, 0x30 - 266e: 3031 .2byte 0x3031 - 2670: 3030 .2byte 0x3030 - 2672: 5500 .2byte 0x5500 - 2674: 4e49 .2byte 0x4e49 - 2676: 5f54 .2byte 0x5f54 - 2678: 454c .2byte 0x454c - 267a: 5341 .2byte 0x5341 - 267c: 3154 .2byte 0x3154 - 267e: 5f36 .2byte 0x5f36 - 2680: 414d .2byte 0x414d - 2682: 0058 .2byte 0x58 - 2684: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f - 268a: 494d .2byte 0x494d - 268c: 5f4e .2byte 0x5f4e - 268e: 205f 6f64 6275 .byte 0x5f, 0x20, 0x64, 0x6f, 0x75, 0x62 - 2694: 656c .2byte 0x656c - 2696: 3228 .2byte 0x3228 - 2698: 322e .2byte 0x322e - 269a: 3532 .2byte 0x3532 - 269c: 3730 .2byte 0x3730 - 269e: 38353833 .4byte 0x38353833 - 26a2: 3035 .2byte 0x3035 - 26a4: 31303237 lui x4,0x31303 - 26a8: 30333833 .4byte 0x30333833 - 26ac: 3039 .2byte 0x3039 - 26ae: 3332 .2byte 0x3332 - 26b0: 3732 .2byte 0x3732 - 26b2: 3731 .2byte 0x3731 - 26b4: 34323333 .4byte 0x34323333 - 26b8: 3430 .2byte 0x3430 - 26ba: 3630 .2byte 0x3630 - 26bc: 2d65 .2byte 0x2d65 - 26be: 4c383033 .4byte 0x4c383033 - 26c2: 0029 .2byte 0x29 - 26c4: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 - 26ca: 4c5f464f .4byte 0x4c5f464f - 26ce: 5f474e4f .4byte 0x5f474e4f - 26d2: 4f4c .2byte 0x4f4c - 26d4: 474e .2byte 0x474e - 26d6: 5f5f 3820 5300 .byte 0x5f, 0x5f, 0x20, 0x38, 0x00, 0x53 - 26dc: 4749 .2byte 0x4749 - 26de: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 - 26e4: 494d5f43 .4byte 0x494d5f43 - 26e8: 004e .2byte 0x4e - 26ea: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 - 26f0: 5f34 .2byte 0x5f34 - 26f2: 5349 .2byte 0x5349 - 26f4: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 - 26fa: 3530 .2byte 0x3530 - 26fc: 3935 .2byte 0x3935 - 26fe: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f - 2704: 535f 5248 5f54 .byte 0x5f, 0x53, 0x48, 0x52, 0x54, 0x5f - 270a: 54444957 .4byte 0x54444957 - 270e: 5f48 .2byte 0x5f48 - 2710: 205f 3631 5500 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x55 - 2716: 4e49 .2byte 0x4e49 - 2718: 3354 .2byte 0x3354 - 271a: 5f32 .2byte 0x5f32 - 271c: 414d .2byte 0x414d - 271e: 0058 .2byte 0x58 - 2720: 4e49 .2byte 0x4e49 - 2722: 3354 .2byte 0x3354 - 2724: 5f32 .2byte 0x5f32 - 2726: 414d .2byte 0x414d - 2728: 2058 .2byte 0x2058 - 272a: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 - 2730: 5f32 .2byte 0x5f32 - 2732: 414d .2byte 0x414d - 2734: 5f58 .2byte 0x5f58 - 2736: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c - 273c: 3654 .2byte 0x3654 - 273e: 5f34 .2byte 0x5f34 - 2740: 4f4e .2byte 0x4f4e - 2742: 4d52 .2byte 0x4d52 - 2744: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 274a: 3120 .2byte 0x3120 - 274c: 372e .2byte 0x372e - 274e: 3739 .2byte 0x3739 - 2750: 3936 .2byte 0x3936 - 2752: 34333133 .4byte 0x34333133 - 2756: 3638 .2byte 0x3638 - 2758: 3332 .2byte 0x3332 - 275a: 3531 .2byte 0x3531 - 275c: 31383037 lui x0,0x31383 - 2760: 3534 .2byte 0x3534 - 2762: 3732 .2byte 0x3732 - 2764: 3234 .2byte 0x3234 - 2766: 31333733 .4byte 0x31333733 - 276a: 33343037 lui x0,0x33343 - 276e: 3735 .2byte 0x3735 - 2770: 2b65 .2byte 0x2b65 - 2772: 46383033 .4byte 0x46383033 - 2776: 3436 .2byte 0x3436 - 2778: 5f00 .2byte 0x5f00 - 277a: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 - 2780: 785f 656c 206e .byte 0x5f, 0x78, 0x6c, 0x65, 0x6e, 0x20 - 2786: 5f003233 .4byte 0x5f003233 - 278a: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c - 2790: 4145 .2byte 0x4145 - 2792: 34365453 .4byte 0x34365453 - 2796: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 279c: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 - 27a2: 6c20 .2byte 0x6c20 - 27a4: 20676e6f jal x28,789aa <_start-0x7ff87656> - 27a8: 6e69 .2byte 0x6e69 - 27aa: 0074 .2byte 0x74 - 27ac: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 27b2: 545f3233 .4byte 0x545f3233 - 27b6: 5059 .2byte 0x5059 - 27b8: 5f45 .2byte 0x5f45 - 27ba: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 - 27c0: 7520 .2byte 0x7520 - 27c2: 736e .2byte 0x736e - 27c4: 6769 .2byte 0x6769 - 27c6: 656e .2byte 0x656e - 27c8: 2064 .2byte 0x2064 - 27ca: 6e69 .2byte 0x6e69 - 27cc: 0074 .2byte 0x74 - 27ce: 4e49 .2byte 0x4e49 - 27d0: 5f54 .2byte 0x5f54 - 27d2: 454c .2byte 0x454c - 27d4: 5341 .2byte 0x5341 - 27d6: 3354 .2byte 0x3354 - 27d8: 5f32 .2byte 0x5f32 - 27da: 494d .2byte 0x494d - 27dc: 204e .2byte 0x204e - 27de: 2d28 .2byte 0x2d28 - 27e0: 4e49 .2byte 0x4e49 - 27e2: 5f54 .2byte 0x5f54 - 27e4: 454c .2byte 0x454c - 27e6: 5341 .2byte 0x5341 - 27e8: 3354 .2byte 0x3354 - 27ea: 5f32 .2byte 0x5f32 - 27ec: 414d .2byte 0x414d - 27ee: 2058 .2byte 0x2058 - 27f0: 202d .2byte 0x202d - 27f2: 2931 .2byte 0x2931 - 27f4: 5f00 .2byte 0x5f00 - 27f6: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f - 27fc: 5f46 .2byte 0x5f46 - 27fe: 4f50 .2byte 0x4f50 - 2800: 4e49 .2byte 0x4e49 - 2802: 4554 .2byte 0x4554 - 2804: 5f52 .2byte 0x5f52 - 2806: 205f 0034 4357 .byte 0x5f, 0x20, 0x34, 0x00, 0x57, 0x43 - 280c: 4148 .2byte 0x4148 - 280e: 5f52 .2byte 0x5f52 - 2810: 414d .2byte 0x414d - 2812: 2058 .2byte 0x2058 - 2814: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 - 281a: 5f52 .2byte 0x5f52 - 281c: 414d .2byte 0x414d - 281e: 5f58 .2byte 0x5f58 - 2820: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c - 2826: 3654 .2byte 0x3654 - 2828: 5f34 .2byte 0x5f34 - 282a: 5045 .2byte 0x5045 - 282c: 4f4c4953 .4byte 0x4f4c4953 - 2830: 5f4e .2byte 0x5f4e - 2832: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 - 2838: 3430 .2byte 0x3430 - 283a: 3634 .2byte 0x3634 - 283c: 3430 .2byte 0x3430 - 283e: 3239 .2byte 0x3239 - 2840: 3035 .2byte 0x3035 - 2842: 30333133 .4byte 0x30333133 - 2846: 3038 .2byte 0x3038 - 2848: 3438 .2byte 0x3438 - 284a: 33363237 lui x4,0x33363 - 284e: 31363333 .4byte 0x31363333 - 2852: 3138 .2byte 0x3138 - 2854: 3436 .2byte 0x3436 - 2856: 3630 .2byte 0x3630 - 2858: 6532 .2byte 0x6532 - 285a: 312d .2byte 0x312d - 285c: 4636 .2byte 0x4636 - 285e: 3436 .2byte 0x3436 - 2860: 5f00 .2byte 0x5f00 - 2862: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 - 2868: 696e .2byte 0x696e - 286a: 6974 .2byte 0x6974 - 286c: 6c61 .2byte 0x6c61 - 286e: 7a69 .2byte 0x7a69 - 2870: 7265 .2byte 0x7265 - 2872: 6c5f 7369 7374 .byte 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x73 - 2878: 3220 .2byte 0x3220 - 287a: 3030 .2byte 0x3030 - 287c: 3038 .2byte 0x3038 - 287e: 4c36 .2byte 0x4c36 - 2880: 5f00 .2byte 0x5f00 - 2882: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 - 2888: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 288e: 3020 .2byte 0x3020 - 2890: 3778 .2byte 0x3778 - 2892: 6666 .2byte 0x6666 - 2894: 6666 .2byte 0x6666 - 2896: 6666 .2byte 0x6666 - 2898: 0066 .2byte 0x66 - 289a: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 28a0: 4544 .2byte 0x4544 - 28a2: 4f4e .2byte 0x4f4e - 28a4: 4d52 .2byte 0x4d52 - 28a6: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f - 28ac: 3120 .2byte 0x3120 - 28ae: 342e .2byte 0x342e - 28b0: 3130 .2byte 0x3130 - 28b2: 3932 .2byte 0x3932 - 28b4: 3438 .2byte 0x3438 - 28b6: 3436 .2byte 0x3436 - 28b8: 38343233 .4byte 0x38343233 - 28bc: 3731 .2byte 0x3731 - 28be: 3730 .2byte 0x3730 - 28c0: 3930 .2byte 0x3930 - 28c2: 3332 .2byte 0x3332 - 28c4: 35393237 lui x4,0x35393 - 28c8: 3338 .2byte 0x3338 - 28ca: 3832 .2byte 0x3832 - 28cc: 3939 .2byte 0x3939 - 28ce: 3631 .2byte 0x3631 - 28d0: 3331 .2byte 0x3331 - 28d2: 2d65 .2byte 0x2d65 - 28d4: 3534 .2byte 0x3534 - 28d6: 0046 .2byte 0x46 - 28d8: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 28de: 54444957 .4byte 0x54444957 - 28e2: 5f48 .2byte 0x5f48 - 28e4: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f - 28ea: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 - 28f0: 5f38 .2byte 0x5f38 - 28f2: 4544 .2byte 0x4544 - 28f4: 414d4943 .4byte 0x414d4943 - 28f8: 5f4c .2byte 0x5f4c - 28fa: 4944 .2byte 0x4944 - 28fc: 205f5f47 .4byte 0x205f5f47 - 2900: 5f003633 .4byte 0x5f003633 - 2904: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 - 290a: 5f34 .2byte 0x5f34 - 290c: 29632843 .4byte 0x29632843 - 2910: 6320 .2byte 0x6320 - 2912: 2320 .2byte 0x2320 - 2914: 4c552023 sw x5,1216(x10) # 333934c0 <_start-0x4cc6cb40> - 2918: 004c .2byte 0x4c - 291a: 5f5f 4544 4943 .byte 0x5f, 0x5f, 0x44, 0x45, 0x43, 0x49 - 2920: 414d .2byte 0x414d - 2922: 5f4c .2byte 0x5f4c - 2924: 4944 .2byte 0x4944 - 2926: 205f5f47 .4byte 0x205f5f47 - 292a: 6d003633 .4byte 0x6d003633 - 292e: 6961 .2byte 0x6961 - 2930: 006e .2byte 0x6e - 2932: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 2938: 534e4f43 .4byte 0x534e4f43 - 293c: 5254 .2byte 0x5254 - 293e: 4355 .2byte 0x4355 - 2940: 4954 .2byte 0x4954 - 2942: 4556 .2byte 0x4556 - 2944: 535f 5a49 2045 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x20 - 294a: 5f003233 .4byte 0x5f003233 - 294e: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 - 2954: 665f 6f6c 7461 .byte 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74 - 295a: 615f 6962 735f .byte 0x5f, 0x61, 0x62, 0x69, 0x5f, 0x73 - 2960: 2074666f jal x12,49366 <_start-0x7ffb6c9a> - 2964: 0031 .2byte 0x31 - 2966: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 296c: 5441 .2byte 0x5441 - 296e: 43494d4f .4byte 0x43494d4f - 2972: 505f 494f 544e .byte 0x5f, 0x50, 0x4f, 0x49, 0x4e, 0x54 - 2978: 5245 .2byte 0x5245 - 297a: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f - 2980: 5246 .2byte 0x5246 - 2982: 4545 .2byte 0x4545 - 2984: 3120 .2byte 0x3120 - 2986: 5f00 .2byte 0x5f00 - 2988: 555f 4553 5f52 .byte 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f - 298e: 414c .2byte 0x414c - 2990: 4542 .2byte 0x4542 - 2992: 5f4c .2byte 0x5f4c - 2994: 5250 .2byte 0x5250 - 2996: 4645 .2byte 0x4645 - 2998: 5849 .2byte 0x5849 - 299a: 5f5f 0020 5f5f .byte 0x5f, 0x5f, 0x20, 0x00, 0x5f, 0x5f - 29a0: 5f434347 .4byte 0x5f434347 - 29a4: 5441 .2byte 0x5441 - 29a6: 43494d4f .4byte 0x43494d4f - 29aa: 435f 4148 3352 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x33 - 29b0: 5f32 .2byte 0x5f32 - 29b2: 5f54 .2byte 0x5f54 - 29b4: 4f4c .2byte 0x4f4c - 29b6: 465f4b43 .4byte 0x465f4b43 - 29ba: 4552 .2byte 0x4552 - 29bc: 2045 .2byte 0x2045 - 29be: 0031 .2byte 0x31 - 29c0: 4955 .2byte 0x4955 - 29c2: 544e .2byte 0x544e - 29c4: 414d .2byte 0x414d - 29c6: 5f58 .2byte 0x5f58 - 29c8: 29632843 .4byte 0x29632843 - 29cc: 5f20 .2byte 0x5f20 - 29ce: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d - 29d4: 5841 .2byte 0x5841 - 29d6: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 - 29dc: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d - 29e2: 5841 .2byte 0x5841 - 29e4: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 - 29ea: 23232063 .4byte 0x23232063 - 29ee: 4c20 .2byte 0x4c20 - 29f0: 004c .2byte 0x4c - 29f2: 5f5f 5453 4344 .byte 0x5f, 0x5f, 0x53, 0x54, 0x44, 0x43 - 29f8: 485f 534f 4554 .byte 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45 - 29fe: 5f44 .2byte 0x5f44 - 2a00: 205f 0030 4955 .byte 0x5f, 0x20, 0x30, 0x00, 0x55, 0x49 - 2a06: 544e .2byte 0x544e - 2a08: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 - 2a0e: 5f38 .2byte 0x5f38 - 2a10: 414d .2byte 0x414d - 2a12: 0058 .2byte 0x58 - 2a14: 5f5f 4e49 5054 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x50 - 2a1a: 5254 .2byte 0x5254 - 2a1c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2a22: 3020 .2byte 0x3020 - 2a24: 3778 .2byte 0x3778 - 2a26: 6666 .2byte 0x6666 - 2a28: 6666 .2byte 0x6666 - 2a2a: 6666 .2byte 0x6666 - 2a2c: 0066 .2byte 0x66 - 2a2e: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 2a34: 6874 .2byte 0x6874 - 2a36: 6572 .2byte 0x6572 - 2a38: 6461 .2byte 0x6461 - 2a3a: 65666173 .4byte 0x65666173 - 2a3e: 735f 6174 6974 .byte 0x5f, 0x73, 0x74, 0x61, 0x74, 0x69 - 2a44: 6e695f63 bge x18,x6,3142 <_start-0x7fffcebe> - 2a48: 7469 .2byte 0x7469 - 2a4a: 3220 .2byte 0x3220 - 2a4c: 3030 .2byte 0x3030 - 2a4e: 3038 .2byte 0x3038 - 2a50: 4c36 .2byte 0x4c36 - 2a52: 5f00 .2byte 0x5f00 - 2a54: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e - 2a5a: 6d61 .2byte 0x6d61 - 2a5c: 7365 .2byte 0x7365 - 2a5e: 6170 .2byte 0x6170 - 2a60: 615f6563 bltu x30,x21,306a <_start-0x7fffcf96> - 2a64: 7474 .2byte 0x7474 - 2a66: 6972 .2byte 0x6972 - 2a68: 7562 .2byte 0x7562 - 2a6a: 6574 .2byte 0x6574 - 2a6c: 30322073 .4byte 0x30322073 - 2a70: 3431 .2byte 0x3431 - 2a72: 3131 .2byte 0x3131 - 2a74: 004c .2byte 0x4c - 2a76: 5f5f 5250 4741 .byte 0x5f, 0x5f, 0x50, 0x52, 0x41, 0x47 - 2a7c: 414d .2byte 0x414d - 2a7e: 525f 4445 4645 .byte 0x5f, 0x52, 0x45, 0x44, 0x45, 0x46 - 2a84: 4e49 .2byte 0x4e49 - 2a86: 5f45 .2byte 0x5f45 - 2a88: 5845 .2byte 0x5845 - 2a8a: 4e54 .2byte 0x4e54 - 2a8c: 4d41 .2byte 0x4d41 - 2a8e: 2045 .2byte 0x2045 - 2a90: 0031 .2byte 0x31 - 2a92: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 2a98: 75727473 .4byte 0x75727473 - 2a9c: 72757463 bgeu x10,x7,31c4 <_start-0x7fffce3c> - 2aa0: 6465 .2byte 0x6465 - 2aa2: 625f 6e69 6964 .byte 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x69 - 2aa8: 676e .2byte 0x676e - 2aaa: 30322073 .4byte 0x30322073 - 2aae: 3631 .2byte 0x3631 - 2ab0: 3630 .2byte 0x3630 - 2ab2: 004c .2byte 0x4c - 2ab4: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 2aba: 5441 .2byte 0x5441 - 2abc: 43494d4f .4byte 0x43494d4f - 2ac0: 4c5f 4f4c 474e .byte 0x5f, 0x4c, 0x4c, 0x4f, 0x4e, 0x47 - 2ac6: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f - 2acc: 5246 .2byte 0x5246 - 2ace: 4545 .2byte 0x4545 - 2ad0: 3120 .2byte 0x3120 - 2ad2: 5f00 .2byte 0x5f00 - 2ad4: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d - 2ada: 5841 .2byte 0x5841 - 2adc: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 2ae2: 3120 .2byte 0x3120 - 2ae4: 3832 .2byte 0x3832 - 2ae6: 5f00 .2byte 0x5f00 - 2ae8: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 - 2aee: 43415f43 .4byte 0x43415f43 - 2af2: 5f51 .2byte 0x5f51 - 2af4: 4552 .2byte 0x4552 - 2af6: 204c .2byte 0x204c - 2af8: 0034 .2byte 0x34 - 2afa: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 2b00: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 - 2b06: 5f34 .2byte 0x5f34 - 2b08: 5954 .2byte 0x5954 - 2b0a: 4550 .2byte 0x4550 - 2b0c: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e - 2b12: 6f6c2067 .4byte 0x6f6c2067 - 2b16: 676e .2byte 0x676e - 2b18: 7520 .2byte 0x7520 - 2b1a: 736e .2byte 0x736e - 2b1c: 6769 .2byte 0x6769 - 2b1e: 656e .2byte 0x656e - 2b20: 2064 .2byte 0x2064 - 2b22: 6e69 .2byte 0x6e69 - 2b24: 0074 .2byte 0x74 - 2b26: 41484357 .4byte 0x41484357 - 2b2a: 5f52 .2byte 0x5f52 - 2b2c: 414d .2byte 0x414d - 2b2e: 0058 .2byte 0x58 - 2b30: 4e49 .2byte 0x4e49 - 2b32: 3354 .2byte 0x3354 - 2b34: 5f32 .2byte 0x5f32 - 2b36: 494d .2byte 0x494d - 2b38: 004e .2byte 0x4e - 2b3a: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 2b40: 494d .2byte 0x494d - 2b42: 5f4e .2byte 0x5f4e - 2b44: 205f 2e31 3731 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x37 - 2b4a: 3435 .2byte 0x3435 - 2b4c: 3439 .2byte 0x3439 - 2b4e: 38303533 .4byte 0x38303533 - 2b52: 3232 .2byte 0x3232 - 2b54: 3832 .2byte 0x3832 - 2b56: 37303537 lui x10,0x37303 - 2b5a: 3639 .2byte 0x3639 - 2b5c: 3738 .2byte 0x3738 - 2b5e: 33353633 .4byte 0x33353633 - 2b62: 32323237 lui x4,0x32323 - 2b66: 3432 .2byte 0x3432 - 2b68: 3635 .2byte 0x3635 - 2b6a: 6538 .2byte 0x6538 - 2b6c: 332d .2byte 0x332d - 2b6e: 4638 .2byte 0x4638 - 2b70: 5500 .2byte 0x5500 - 2b72: 4e49 .2byte 0x4e49 - 2b74: 5f54 .2byte 0x5f54 - 2b76: 4146 .2byte 0x4146 - 2b78: 5f385453 .4byte 0x5f385453 - 2b7c: 414d .2byte 0x414d - 2b7e: 2058 .2byte 0x2058 - 2b80: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 2b86: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 - 2b8c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2b92: 5f00 .2byte 0x5f00 - 2b94: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 - 2b9a: 5f52 .2byte 0x5f52 - 2b9c: 5954 .2byte 0x5954 - 2b9e: 4550 .2byte 0x4550 - 2ba0: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 - 2ba6: 5f00 .2byte 0x5f00 - 2ba8: 635f 6c70 7375 .byte 0x5f, 0x63, 0x70, 0x6c, 0x75, 0x73 - 2bae: 6c70 .2byte 0x6c70 - 2bb0: 7375 .2byte 0x7375 - 2bb2: 3220 .2byte 0x3220 - 2bb4: 3130 .2byte 0x3130 - 2bb6: 4c333037 lui x0,0x4c333 - 2bba: 5f00 .2byte 0x5f00 - 2bbc: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f - 2bc2: 4544 .2byte 0x4544 - 2bc4: 414d4943 .4byte 0x414d4943 - 2bc8: 5f4c .2byte 0x5f4c - 2bca: 4944 .2byte 0x4944 - 2bcc: 205f5f47 .4byte 0x205f5f47 - 2bd0: 5f003633 .4byte 0x5f003633 - 2bd4: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 - 2bda: 686e .2byte 0x686e - 2bdc: 7265 .2byte 0x7265 - 2bde: 7469 .2byte 0x7469 - 2be0: 6e69 .2byte 0x6e69 - 2be2: 6f635f67 .4byte 0x6f635f67 - 2be6: 736e .2byte 0x736e - 2be8: 7274 .2byte 0x7274 - 2bea: 6375 .2byte 0x6375 - 2bec: 6f74 .2byte 0x6f74 - 2bee: 7372 .2byte 0x7372 - 2bf0: 3220 .2byte 0x3220 - 2bf2: 3130 .2byte 0x3130 - 2bf4: 3135 .2byte 0x3135 - 2bf6: 4c31 .2byte 0x4c31 - 2bf8: 5500 .2byte 0x5500 - 2bfa: 4e49 .2byte 0x4e49 - 2bfc: 5f54 .2byte 0x5f54 - 2bfe: 4146 .2byte 0x4146 - 2c00: 32335453 .4byte 0x32335453 - 2c04: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 2c0a: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 2c10: 4146 .2byte 0x4146 - 2c12: 32335453 .4byte 0x32335453 - 2c16: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2c1c: 5f00 .2byte 0x5f00 - 2c1e: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c - 2c24: 4145 .2byte 0x4145 - 2c26: 32335453 .4byte 0x32335453 - 2c2a: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 - 2c30: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 - 2c36: 5f5f 4e47 4355 .byte 0x5f, 0x5f, 0x47, 0x4e, 0x55, 0x43 - 2c3c: 575f 4449 5f45 .byte 0x5f, 0x57, 0x49, 0x44, 0x45, 0x5f - 2c42: 5845 .2byte 0x5845 - 2c44: 4345 .2byte 0x4345 - 2c46: 5455 .2byte 0x5455 - 2c48: 4f49 .2byte 0x4f49 - 2c4a: 5f4e .2byte 0x5f4e - 2c4c: 52414843 .4byte 0x52414843 - 2c50: 5f544553 .4byte 0x5f544553 - 2c54: 414e .2byte 0x414e - 2c56: 454d .2byte 0x454d - 2c58: 2220 .2byte 0x2220 - 2c5a: 5455 .2byte 0x5455 - 2c5c: 2d46 .2byte 0x2d46 - 2c5e: 454c3233 .4byte 0x454c3233 - 2c62: 0022 .2byte 0x22 - 2c64: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 2c6a: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 - 2c70: 5f32 .2byte 0x5f32 - 2c72: 5954 .2byte 0x5954 - 2c74: 4550 .2byte 0x4550 - 2c76: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 - 2c7c: 6769 .2byte 0x6769 - 2c7e: 656e .2byte 0x656e - 2c80: 2064 .2byte 0x2064 - 2c82: 6e69 .2byte 0x6e69 - 2c84: 0074 .2byte 0x74 - 2c86: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 - 2c8c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 2c92: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 - 2c98: 64656e67 .4byte 0x64656e67 - 2c9c: 6920 .2byte 0x6920 - 2c9e: 746e .2byte 0x746e - 2ca0: 5f00 .2byte 0x5f00 - 2ca2: 535f 5a49 5f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x5f - 2ca8: 5954 .2byte 0x5954 - 2caa: 4550 .2byte 0x4550 - 2cac: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 - 2cb2: 6769 .2byte 0x6769 - 2cb4: 656e .2byte 0x656e - 2cb6: 2064 .2byte 0x2064 - 2cb8: 6e69 .2byte 0x6e69 - 2cba: 0074 .2byte 0x74 - 2cbc: 41484357 .4byte 0x41484357 - 2cc0: 5f52 .2byte 0x5f52 - 2cc2: 494d .2byte 0x494d - 2cc4: 204e .2byte 0x204e - 2cc6: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 - 2ccc: 5f52 .2byte 0x5f52 - 2cce: 494d .2byte 0x494d - 2cd0: 5f4e .2byte 0x5f4e - 2cd2: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 - 2cd8: 5f70 .2byte 0x5f70 - 2cda: 616c .2byte 0x616c - 2cdc: 626d .2byte 0x626d - 2cde: 6164 .2byte 0x6164 - 2ce0: 30322073 .4byte 0x30322073 - 2ce4: 3930 .2byte 0x3930 - 2ce6: 3730 .2byte 0x3730 - 2ce8: 004c .2byte 0x4c - 2cea: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 2cf0: 5441 .2byte 0x5441 - 2cf2: 43494d4f .4byte 0x43494d4f - 2cf6: 535f 4f48 5452 .byte 0x5f, 0x53, 0x48, 0x4f, 0x52, 0x54 - 2cfc: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f - 2d02: 5246 .2byte 0x5246 - 2d04: 4545 .2byte 0x4545 - 2d06: 3120 .2byte 0x3120 - 2d08: 5f00 .2byte 0x5f00 - 2d0a: 445f 4c42 455f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x45 - 2d10: 5350 .2byte 0x5350 - 2d12: 4c49 .2byte 0x4c49 - 2d14: 5f5f4e4f .4byte 0x5f5f4e4f - 2d18: 6420 .2byte 0x6420 - 2d1a: 6c62756f jal x10,2a3e0 <_start-0x7ffd5c20> - 2d1e: 2865 .2byte 0x2865 - 2d20: 2e32 .2byte 0x2e32 - 2d22: 3232 .2byte 0x3232 - 2d24: 3430 .2byte 0x3430 - 2d26: 3634 .2byte 0x3634 - 2d28: 3430 .2byte 0x3430 - 2d2a: 3239 .2byte 0x3239 - 2d2c: 3035 .2byte 0x3035 - 2d2e: 30333133 .4byte 0x30333133 - 2d32: 3038 .2byte 0x3038 - 2d34: 3438 .2byte 0x3438 - 2d36: 33363237 lui x4,0x33363 - 2d3a: 31363333 .4byte 0x31363333 - 2d3e: 3138 .2byte 0x3138 - 2d40: 3436 .2byte 0x3436 - 2d42: 3630 .2byte 0x3630 - 2d44: 6532 .2byte 0x6532 - 2d46: 312d .2byte 0x312d - 2d48: 4c36 .2byte 0x4c36 - 2d4a: 0029 .2byte 0x29 - 2d4c: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 2d52: 6574 .2byte 0x6574 - 2d54: 706d .2byte 0x706d - 2d56: 616c .2byte 0x616c - 2d58: 6574 .2byte 0x6574 - 2d5a: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c - 2d60: 7461 .2byte 0x7461 - 2d62: 5f65 .2byte 0x5f65 - 2d64: 7261 .2byte 0x7261 - 2d66: 32207367 .4byte 0x32207367 - 2d6a: 3130 .2byte 0x3130 - 2d6c: 3136 .2byte 0x3136 - 2d6e: 4c31 .2byte 0x4c31 - 2d70: 5f00 .2byte 0x5f00 - 2d72: 465f 544c 455f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x45 - 2d78: 5350 .2byte 0x5350 - 2d7a: 4c49 .2byte 0x4c49 - 2d7c: 5f5f4e4f .4byte 0x5f5f4e4f - 2d80: 3120 .2byte 0x3120 - 2d82: 312e .2byte 0x312e - 2d84: 3239 .2byte 0x3239 - 2d86: 3930 .2byte 0x3930 - 2d88: 3832 .2byte 0x3832 - 2d8a: 3539 .2byte 0x3539 - 2d8c: 3035 .2byte 0x3035 - 2d8e: 32313837 lui x16,0x32313 - 2d92: 3035 .2byte 0x3035 - 2d94: 3030 .2byte 0x3030 - 2d96: 3030 .2byte 0x3030 - 2d98: 3030 .2byte 0x3030 - 2d9a: 3030 .2byte 0x3030 - 2d9c: 3030 .2byte 0x3030 - 2d9e: 3030 .2byte 0x3030 - 2da0: 3030 .2byte 0x3030 - 2da2: 3030 .2byte 0x3030 - 2da4: 3030 .2byte 0x3030 - 2da6: 2d65 .2byte 0x2d65 - 2da8: 5f004637 lui x12,0x5f004 - 2dac: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 2db2: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 - 2db8: 5058 .2byte 0x5058 - 2dba: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 - 2dc0: 3230 .2byte 0x3230 - 2dc2: 2931 .2byte 0x2931 - 2dc4: 5500 .2byte 0x5500 - 2dc6: 4e49 .2byte 0x4e49 - 2dc8: 3854 .2byte 0x3854 - 2dca: 435f 5f00 465f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x46 - 2dd0: 544c .2byte 0x544c - 2dd2: 455f 4156 5f4c .byte 0x5f, 0x45, 0x56, 0x41, 0x4c, 0x5f - 2dd8: 454d .2byte 0x454d - 2dda: 4854 .2byte 0x4854 - 2ddc: 545f444f .4byte 0x545f444f - 2de0: 38315f53 .4byte 0x38315f53 - 2de4: 3636 .2byte 0x3636 - 2de6: 5f31 .2byte 0x5f31 - 2de8: 205f5f33 .4byte 0x205f5f33 - 2dec: 0030 .2byte 0x30 - 2dee: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f - 2df4: 4148 .2byte 0x4148 - 2df6: 4e495f53 .4byte 0x4e495f53 - 2dfa: 4946 .2byte 0x4946 - 2dfc: 494e .2byte 0x494e - 2dfe: 5954 .2byte 0x5954 - 2e00: 5f5f 3120 5300 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x53 - 2e06: 4749 .2byte 0x4749 - 2e08: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 - 2e0e: 414d5f43 .4byte 0x414d5f43 - 2e12: 2058 .2byte 0x2058 - 2e14: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f - 2e1a: 5441 .2byte 0x5441 - 2e1c: 43494d4f .4byte 0x43494d4f - 2e20: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2e26: 5f00 .2byte 0x5f00 - 2e28: 475f 5858 525f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x52 - 2e2e: 5454 .2byte 0x5454 - 2e30: 2049 .2byte 0x2049 - 2e32: 0031 .2byte 0x31 - 2e34: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 2e3a: 4148 .2byte 0x4148 - 2e3c: 55515f53 .4byte 0x55515f53 - 2e40: 4549 .2byte 0x4549 - 2e42: 5f54 .2byte 0x5f54 - 2e44: 414e .2byte 0x414e - 2e46: 5f4e .2byte 0x5f4e - 2e48: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - 2e4e: 455a4953 .4byte 0x455a4953 - 2e52: 495f464f .4byte 0x495f464f - 2e56: 544e .2byte 0x544e - 2e58: 5f5f 3420 5f00 .byte 0x5f, 0x5f, 0x20, 0x34, 0x00, 0x5f - 2e5e: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 - 2e64: 65726767 .4byte 0x65726767 - 2e68: 65746167 .4byte 0x65746167 - 2e6c: 6e5f 6473 696d .byte 0x5f, 0x6e, 0x73, 0x64, 0x6d, 0x69 - 2e72: 3220 .2byte 0x3220 - 2e74: 3130 .2byte 0x3130 - 2e76: 4c343033 .4byte 0x4c343033 - 2e7a: 5f00 .2byte 0x5f00 - 2e7c: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 - 2e82: 5f58 .2byte 0x5f58 - 2e84: 5954 .2byte 0x5954 - 2e86: 4550 .2byte 0x4550 - 2e88: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e - 2e8e: 6f6c2067 .4byte 0x6f6c2067 - 2e92: 676e .2byte 0x676e - 2e94: 6920 .2byte 0x6920 - 2e96: 746e .2byte 0x746e - 2e98: 5f00 .2byte 0x5f00 - 2e9a: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 - 2ea0: 3120 .2byte 0x3120 - 2ea2: 5f00 .2byte 0x5f00 - 2ea4: 635f 7070 645f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x64 - 2eaa: 6c65 .2byte 0x6c65 - 2eac: 6765 .2byte 0x6765 - 2eae: 7461 .2byte 0x7461 - 2eb0: 6e69 .2byte 0x6e69 - 2eb2: 6f635f67 .4byte 0x6f635f67 - 2eb6: 736e .2byte 0x736e - 2eb8: 7274 .2byte 0x7274 - 2eba: 6375 .2byte 0x6375 - 2ebc: 6f74 .2byte 0x6f74 - 2ebe: 7372 .2byte 0x7372 - 2ec0: 3220 .2byte 0x3220 - 2ec2: 3030 .2byte 0x3030 - 2ec4: 3036 .2byte 0x3036 - 2ec6: 4c34 .2byte 0x4c34 - 2ec8: 4900 .2byte 0x4900 - 2eca: 544e .2byte 0x544e - 2ecc: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 - 2ed2: 5f32 .2byte 0x5f32 - 2ed4: 494d .2byte 0x494d - 2ed6: 204e .2byte 0x204e - 2ed8: 2d28 .2byte 0x2d28 - 2eda: 4e49 .2byte 0x4e49 - 2edc: 5f54 .2byte 0x5f54 - 2ede: 4146 .2byte 0x4146 - 2ee0: 32335453 .4byte 0x32335453 - 2ee4: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d - 2eea: 3120 .2byte 0x3120 - 2eec: 0029 .2byte 0x29 - 2eee: 544e4957 .4byte 0x544e4957 - 2ef2: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - 2ef8: 635f 7070 755f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x75 - 2efe: 5f726573 .4byte 0x5f726573 - 2f02: 6564 .2byte 0x6564 - 2f04: 6966 .2byte 0x6966 - 2f06: 656e .2byte 0x656e - 2f08: 5f64 .2byte 0x5f64 - 2f0a: 696c .2byte 0x696c - 2f0c: 6574 .2byte 0x6574 - 2f0e: 6172 .2byte 0x6172 - 2f10: 736c .2byte 0x736c - 2f12: 3220 .2byte 0x3220 - 2f14: 3030 .2byte 0x3030 - 2f16: 3038 .2byte 0x3038 - 2f18: 4c39 .2byte 0x4c39 - 2f1a: 5500 .2byte 0x5500 - 2f1c: 4e49 .2byte 0x4e49 - 2f1e: 5f54 .2byte 0x5f54 - 2f20: 4146 .2byte 0x4146 - 2f22: 36315453 .4byte 0x36315453 - 2f26: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 2f2c: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f - 2f32: 4146 .2byte 0x4146 - 2f34: 36315453 .4byte 0x36315453 - 2f38: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2f3e: 4900 .2byte 0x4900 - 2f40: 544e .2byte 0x544e - 2f42: 5f38 .2byte 0x5f38 - 2f44: 414d .2byte 0x414d - 2f46: 2058 .2byte 0x2058 - 2f48: 5f5f 4e49 3854 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x38 - 2f4e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 2f54: 5f00 .2byte 0x5f00 - 2f56: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 - 2f5c: 5f34 .2byte 0x5f34 - 2f5e: 5954 .2byte 0x5954 - 2f60: 4550 .2byte 0x4550 - 2f62: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e - 2f68: 6f6c2067 .4byte 0x6f6c2067 - 2f6c: 676e .2byte 0x676e - 2f6e: 7520 .2byte 0x7520 - 2f70: 736e .2byte 0x736e - 2f72: 6769 .2byte 0x6769 - 2f74: 656e .2byte 0x656e - 2f76: 2064 .2byte 0x2064 - 2f78: 6e69 .2byte 0x6e69 - 2f7a: 0074 .2byte 0x74 - 2f7c: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 2f82: 5832 .2byte 0x5832 - 2f84: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 - 2f8a: 4955 .2byte 0x4955 - 2f8c: 5445 .2byte 0x5445 - 2f8e: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f - 2f94: 3120 .2byte 0x3120 - 2f96: 5f00 .2byte 0x5f00 - 2f98: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d - 2f9e: 5841 .2byte 0x5841 - 2fa0: 315f 5f30 5845 .byte 0x5f, 0x31, 0x30, 0x5f, 0x45, 0x58 - 2fa6: 5f50 .2byte 0x5f50 - 2fa8: 205f 3033 0038 .byte 0x5f, 0x20, 0x33, 0x30, 0x38, 0x00 - 2fae: 4955 .2byte 0x4955 - 2fb0: 544e .2byte 0x544e - 2fb2: 4d5f3233 .4byte 0x4d5f3233 - 2fb6: 5841 .2byte 0x5841 - 2fb8: 5f20 .2byte 0x5f20 - 2fba: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 - 2fc0: 5f32 .2byte 0x5f32 - 2fc2: 414d .2byte 0x414d - 2fc4: 5f58 .2byte 0x5f58 - 2fc6: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e - 2fcc: 5f54 .2byte 0x5f54 - 2fce: 4146 .2byte 0x4146 - 2fd0: 32335453 .4byte 0x32335453 - 2fd4: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 2fda: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 - 2fe0: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 2fe6: 74706163 bltu x0,x7,3728 <_start-0x7fffc8d8> - 2fea: 7275 .2byte 0x7275 - 2fec: 5f65 .2byte 0x5f65 - 2fee: 72617473 .4byte 0x72617473 - 2ff2: 745f 6968 2073 .byte 0x5f, 0x74, 0x68, 0x69, 0x73, 0x20 - 2ff8: 3032 .2byte 0x3032 - 2ffa: 3631 .2byte 0x3631 - 2ffc: 3330 .2byte 0x3330 - 2ffe: 004c .2byte 0x4c - 3000: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 3006: 6e75 .2byte 0x6e75 - 3008: 6369 .2byte 0x6369 - 300a: 5f65646f jal x8,59600 <_start-0x7ffa6a00> - 300e: 72616863 bltu x2,x6,373e <_start-0x7fffc8c2> - 3012: 6361 .2byte 0x6361 - 3014: 6574 .2byte 0x6574 - 3016: 7372 .2byte 0x7372 - 3018: 3220 .2byte 0x3220 - 301a: 3130 .2byte 0x3130 - 301c: 3134 .2byte 0x3134 - 301e: 4c31 .2byte 0x4c31 - 3020: 5f00 .2byte 0x5f00 - 3022: 425f 4749 4547 .byte 0x5f, 0x42, 0x49, 0x47, 0x47, 0x45 - 3028: 415f5453 .4byte 0x415f5453 - 302c: 494c .2byte 0x494c - 302e: 454d4e47 .4byte 0x454d4e47 - 3032: 544e .2byte 0x544e - 3034: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 - 303a: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 - 3040: 3832 .2byte 0x3832 - 3042: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 - 3048: 5f4d .2byte 0x5f4d - 304a: 494d .2byte 0x494d - 304c: 5f4e .2byte 0x5f4e - 304e: 205f 2e36 3734 .byte 0x5f, 0x20, 0x36, 0x2e, 0x34, 0x37 - 3054: 3135 .2byte 0x3135 - 3056: 31313537 lui x10,0x31313 - 305a: 3439 .2byte 0x3439 - 305c: 32303833 .4byte 0x32303833 - 3060: 3135 .2byte 0x3135 - 3062: 3031 .2byte 0x3031 - 3064: 3239 .2byte 0x3239 - 3066: 3434 .2byte 0x3434 - 3068: 35393833 .4byte 0x35393833 - 306c: 3238 .2byte 0x3238 - 306e: 3732 .2byte 0x3732 - 3070: 3436 .2byte 0x3436 - 3072: 3536 .2byte 0x3536 - 3074: 6535 .2byte 0x6535 - 3076: 342d .2byte 0x342d - 3078: 3639 .2byte 0x3639 - 307a: 4636 .2byte 0x4636 - 307c: 3231 .2byte 0x3231 - 307e: 0038 .2byte 0x38 - 3080: 4e49 .2byte 0x4e49 - 3082: 5f54 .2byte 0x5f54 - 3084: 454c .2byte 0x454c - 3086: 5341 .2byte 0x5341 - 3088: 3354 .2byte 0x3354 - 308a: 5f32 .2byte 0x5f32 - 308c: 494d .2byte 0x494d - 308e: 004e .2byte 0x4e - 3090: 4e49 .2byte 0x4e49 - 3092: 3154 .2byte 0x3154 - 3094: 5f36 .2byte 0x5f36 - 3096: 414d .2byte 0x414d - 3098: 2058 .2byte 0x2058 - 309a: 5f5f 4e49 3154 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x31 - 30a0: 5f36 .2byte 0x5f36 - 30a2: 414d .2byte 0x414d - 30a4: 5f58 .2byte 0x5f58 - 30a6: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e - 30ac: 5f54 .2byte 0x5f54 - 30ae: 4146 .2byte 0x4146 - 30b0: 5f385453 .4byte 0x5f385453 - 30b4: 54444957 .4byte 0x54444957 - 30b8: 5f48 .2byte 0x5f48 - 30ba: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f - 30c0: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d - 30c6: 4e49 .2byte 0x4e49 - 30c8: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 30ce: 2820 .2byte 0x2820 - 30d0: 312d .2byte 0x312d - 30d2: 3532 .2byte 0x3532 - 30d4: 0029 .2byte 0x29 - 30d6: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f - 30dc: 5441 .2byte 0x5441 - 30de: 43494d4f .4byte 0x43494d4f - 30e2: 425f 4f4f 5f4c .byte 0x5f, 0x42, 0x4f, 0x4f, 0x4c, 0x5f - 30e8: 4f4c .2byte 0x4f4c - 30ea: 465f4b43 .4byte 0x465f4b43 - 30ee: 4552 .2byte 0x4552 - 30f0: 2045 .2byte 0x2045 - 30f2: 0031 .2byte 0x31 - 30f4: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 - 30fa: 3832 .2byte 0x3832 - 30fc: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f - 3102: 414d .2byte 0x414d - 3104: 5f58 .2byte 0x5f58 - 3106: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 - 310c: 3739 .2byte 0x3739 - 310e: 39343133 .4byte 0x39343133 - 3112: 3335 .2byte 0x3335 - 3114: 3735 .2byte 0x3735 - 3116: 3332 .2byte 0x3332 - 3118: 3731 .2byte 0x3731 - 311a: 3536 .2byte 0x3536 - 311c: 3830 .2byte 0x3830 - 311e: 3735 .2byte 0x3735 - 3120: 3935 .2byte 0x3935 - 3122: 36363233 .4byte 0x36363233 - 3126: 3832 .2byte 0x3832 - 3128: 3030 .2byte 0x3030 - 312a: 65323037 lui x0,0x65323 - 312e: 3339342b .4byte 0x3339342b - 3132: 4632 .2byte 0x4632 - 3134: 3231 .2byte 0x3231 - 3136: 0038 .2byte 0x38 - 3138: 5f5f 4c45 5f46 .byte 0x5f, 0x5f, 0x45, 0x4c, 0x46, 0x5f - 313e: 205f 0031 4955 .byte 0x5f, 0x20, 0x31, 0x00, 0x55, 0x49 - 3144: 544e .2byte 0x544e - 3146: 3631 .2byte 0x3631 - 3148: 435f 5f00 495f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x49 - 314e: 544e .2byte 0x544e - 3150: 435f3233 .4byte 0x435f3233 - 3154: 6328 .2byte 0x6328 - 3156: 2029 .2byte 0x2029 - 3158: 23232063 .4byte 0x23232063 - 315c: 4c20 .2byte 0x4c20 - 315e: 5500 .2byte 0x5500 - 3160: 4e49 .2byte 0x4e49 - 3162: 3154 .2byte 0x3154 - 3164: 5f36 .2byte 0x5f36 - 3166: 414d .2byte 0x414d - 3168: 2058 .2byte 0x2058 - 316a: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 3170: 3631 .2byte 0x3631 - 3172: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 3178: 4900 .2byte 0x4900 - 317a: 544e .2byte 0x544e - 317c: 3436 .2byte 0x3436 - 317e: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f - 3184: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 318a: 5f58 .2byte 0x5f58 - 318c: 4544 .2byte 0x4544 - 318e: 414d4943 .4byte 0x414d4943 - 3192: 5f4c .2byte 0x5f4c - 3194: 4944 .2byte 0x4944 - 3196: 205f5f47 .4byte 0x205f5f47 - 319a: 5f003633 .4byte 0x5f003633 - 319e: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 31a4: 5f58 .2byte 0x5f58 - 31a6: 414d .2byte 0x414d - 31a8: 5f58 .2byte 0x5f58 - 31aa: 3031 .2byte 0x3031 - 31ac: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 31b2: 3320 .2byte 0x3320 - 31b4: 3830 .2byte 0x3830 - 31b6: 5f00 .2byte 0x5f00 - 31b8: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e - 31be: 79746e6f jal x28,4a154 <_start-0x7ffb5eac> - 31c2: 6570 .2byte 0x6570 - 31c4: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c - 31ca: 7461 .2byte 0x7461 - 31cc: 5f65 .2byte 0x5f65 - 31ce: 7261 .2byte 0x7261 - 31d0: 32207367 .4byte 0x32207367 - 31d4: 3130 .2byte 0x3130 - 31d6: 3134 .2byte 0x3134 - 31d8: 4c31 .2byte 0x4c31 - 31da: 5f00 .2byte 0x5f00 - 31dc: 445f 4c42 485f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x48 - 31e2: 5341 .2byte 0x5341 - 31e4: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 - 31ea: 5f4d .2byte 0x5f4d - 31ec: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f - 31f2: 4c46 .2byte 0x4c46 - 31f4: 3354 .2byte 0x3354 - 31f6: 5832 .2byte 0x5832 - 31f8: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f - 31fe: 414d .2byte 0x414d - 3200: 5f58 .2byte 0x5f58 - 3202: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 - 3208: 33393637 lui x12,0x33393 - 320c: 3331 .2byte 0x3331 - 320e: 3834 .2byte 0x3834 - 3210: 3236 .2byte 0x3236 - 3212: 37353133 .4byte 0x37353133 - 3216: 3830 .2byte 0x3830 - 3218: 3431 .2byte 0x3431 - 321a: 3235 .2byte 0x3235 - 321c: 33323437 lui x8,0x33323 - 3220: 37313337 lui x6,0x37313 - 3224: 3430 .2byte 0x3430 - 3226: 65373533 .4byte 0x65373533 - 322a: 3830332b .4byte 0x3830332b - 322e: 3346 .2byte 0x3346 - 3230: 7832 .2byte 0x7832 - 3232: 5500 .2byte 0x5500 - 3234: 4e49 .2byte 0x4e49 - 3236: 3654 .2byte 0x3654 - 3238: 5f34 .2byte 0x5f34 - 323a: 414d .2byte 0x414d - 323c: 2058 .2byte 0x2058 - 323e: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 3244: 3436 .2byte 0x3436 - 3246: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 324c: 5f00 .2byte 0x5f00 - 324e: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 - 3254: 7761 .2byte 0x7761 - 3256: 735f 7274 6e69 .byte 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e - 325c: 32207367 .4byte 0x32207367 - 3260: 3030 .2byte 0x3030 - 3262: 4c303137 lui x2,0x4c303 - 3266: 5f00 .2byte 0x5f00 - 3268: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 - 326e: 4e45 .2byte 0x4e45 - 3270: 5f4d524f .4byte 0x5f4d524f - 3274: 494d .2byte 0x494d - 3276: 5f4e .2byte 0x5f4e - 3278: 205f 6f64 6275 .byte 0x5f, 0x20, 0x64, 0x6f, 0x75, 0x62 - 327e: 656c .2byte 0x656c - 3280: 3428 .2byte 0x3428 - 3282: 392e .2byte 0x392e - 3284: 3034 .2byte 0x3034 - 3286: 3536 .2byte 0x3536 - 3288: 3436 .2byte 0x3436 - 328a: 3835 .2byte 0x3835 - 328c: 3134 .2byte 0x3134 - 328e: 3432 .2byte 0x3432 - 3290: 3536 .2byte 0x3536 - 3292: 3434 .2byte 0x3434 - 3294: 3731 .2byte 0x3731 - 3296: 3536 .2byte 0x3536 - 3298: 3836 .2byte 0x3836 - 329a: 38323937 lui x18,0x38323 - 329e: 3836 .2byte 0x3836 - 32a0: 3232 .2byte 0x3232 - 32a2: 3331 .2byte 0x3331 - 32a4: 2d653237 lui x4,0x2d653 - 32a8: 4c343233 .4byte 0x4c343233 - 32ac: 0029 .2byte 0x29 - 32ae: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 - 32b4: 5f32 .2byte 0x5f32 - 32b6: 414d .2byte 0x414d - 32b8: 5f58 .2byte 0x5f58 - 32ba: 3031 .2byte 0x3031 - 32bc: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f - 32c2: 3320 .2byte 0x3320 - 32c4: 0038 .2byte 0x38 - 32c6: 4955 .2byte 0x4955 - 32c8: 544e .2byte 0x544e - 32ca: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 - 32d0: 5f36 .2byte 0x5f36 - 32d2: 414d .2byte 0x414d - 32d4: 0058 .2byte 0x58 - 32d6: 4955 .2byte 0x4955 - 32d8: 544e .2byte 0x544e - 32da: 3436 .2byte 0x3436 - 32dc: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f - 32e2: 635f 7070 735f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x73 - 32e8: 6174 .2byte 0x6174 - 32ea: 6974 .2byte 0x6974 - 32ec: 73615f63 bge x2,x22,3a2a <_start-0x7fffc5d6> - 32f0: 74726573 .4byte 0x74726573 - 32f4: 3220 .2byte 0x3220 - 32f6: 3130 .2byte 0x3130 - 32f8: 3134 .2byte 0x3134 - 32fa: 4c31 .2byte 0x4c31 - 32fc: 5f00 .2byte 0x5f00 - 32fe: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 - 3304: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 - 330a: 5f4d .2byte 0x5f4d - 330c: 494d .2byte 0x494d - 330e: 5f4e .2byte 0x5f4e - 3310: 205f 2e34 3439 .byte 0x5f, 0x20, 0x34, 0x2e, 0x39, 0x34 - 3316: 3630 .2byte 0x3630 - 3318: 3635 .2byte 0x3635 - 331a: 3534 .2byte 0x3534 - 331c: 3438 .2byte 0x3438 - 331e: 3231 .2byte 0x3231 - 3320: 3634 .2byte 0x3634 - 3322: 3435 .2byte 0x3435 - 3324: 3134 .2byte 0x3134 - 3326: 36353637 lui x12,0x36353 - 332a: 3738 .2byte 0x3738 - 332c: 3239 .2byte 0x3239 - 332e: 3638 .2byte 0x3638 - 3330: 3238 .2byte 0x3238 - 3332: 3132 .2byte 0x3132 - 3334: 65323733 .4byte 0x65323733 - 3338: 332d .2byte 0x332d - 333a: 3432 .2byte 0x3432 - 333c: 3646 .2byte 0x3646 - 333e: 0034 .2byte 0x34 - 3340: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 3346: 454c .2byte 0x454c - 3348: 5341 .2byte 0x5341 - 334a: 3354 .2byte 0x3354 - 334c: 5f32 .2byte 0x5f32 - 334e: 414d .2byte 0x414d - 3350: 5f58 .2byte 0x5f58 - 3352: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 - 3358: 6666 .2byte 0x6666 - 335a: 6666 .2byte 0x6666 - 335c: 6666 .2byte 0x6666 - 335e: 004c .2byte 0x4c - 3360: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c - 3366: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 - 336c: 5f30 .2byte 0x5f30 - 336e: 5845 .2byte 0x5845 - 3370: 5f50 .2byte 0x5f50 - 3372: 205f 3934 3233 .byte 0x5f, 0x20, 0x34, 0x39, 0x33, 0x32 - 3378: 5f00 .2byte 0x5f00 - 337a: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 - 3380: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f - 3386: 3320 .2byte 0x3320 - 3388: 342e .2byte 0x342e - 338a: 3230 .2byte 0x3230 - 338c: 3238 .2byte 0x3238 - 338e: 36363433 .4byte 0x36363433 - 3392: 32353833 .4byte 0x32353833 - 3396: 3838 .2byte 0x3838 - 3398: 3935 .2byte 0x3935 - 339a: 3138 .2byte 0x3138 - 339c: 3731 .2byte 0x3731 - 339e: 3430 .2byte 0x3430 - 33a0: 3831 .2byte 0x3831 - 33a2: 34383433 .4byte 0x34383433 - 33a6: 3135 .2byte 0x3135 - 33a8: 3936 .2byte 0x3936 - 33aa: 3532 .2byte 0x3532 - 33ac: 2b65 .2byte 0x2b65 - 33ae: 33463833 .4byte 0x33463833 - 33b2: 0032 .2byte 0x32 - 33b4: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 - 33ba: 414d .2byte 0x414d - 33bc: 5f58 .2byte 0x5f58 - 33be: 414d .2byte 0x414d - 33c0: 5f58 .2byte 0x5f58 - 33c2: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 - 33c8: 6666 .2byte 0x6666 - 33ca: 6666 .2byte 0x6666 - 33cc: 6666 .2byte 0x6666 - 33ce: 6666 .2byte 0x6666 - 33d0: 6666 .2byte 0x6666 - 33d2: 6666 .2byte 0x6666 - 33d4: 6666 .2byte 0x6666 - 33d6: 4c55 .2byte 0x4c55 - 33d8: 004c .2byte 0x4c - 33da: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f - 33e0: 5441 .2byte 0x5441 - 33e2: 43494d4f .4byte 0x43494d4f - 33e6: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f - 33ec: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 - 33f2: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f - 33f8: 657a6973 .4byte 0x657a6973 - 33fc: 5f64 .2byte 0x5f64 - 33fe: 6564 .2byte 0x6564 - 3400: 6c61 .2byte 0x6c61 - 3402: 6f6c .2byte 0x6f6c - 3404: 69746163 bltu x8,x23,3a86 <_start-0x7fffc57a> - 3408: 32206e6f jal x28,972a <_start-0x7fff68d6> - 340c: 3130 .2byte 0x3130 - 340e: 4c393033 .4byte 0x4c393033 - 3412: 5f00 .2byte 0x5f00 - 3414: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 - 341a: 5f38 .2byte 0x5f38 - 341c: 4148 .2byte 0x4148 - 341e: 45445f53 .4byte 0x45445f53 - 3422: 4f4e .2byte 0x4f4e - 3424: 4d52 .2byte 0x4d52 - 3426: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - 342c: 635f 7070 765f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x76 - 3432: 7261 .2byte 0x7261 - 3434: 6169 .2byte 0x6169 - 3436: 6964 .2byte 0x6964 - 3438: 73755f63 bge x10,x23,3b76 <_start-0x7fffc48a> - 343c: 6e69 .2byte 0x6e69 - 343e: 30322067 .4byte 0x30322067 - 3442: 3631 .2byte 0x3631 - 3444: 3131 .2byte 0x3131 - 3446: 004c .2byte 0x4c - 3448: 4e49 .2byte 0x4e49 - 344a: 5f54 .2byte 0x5f54 - 344c: 454c .2byte 0x454c - 344e: 5341 .2byte 0x5341 - 3450: 3354 .2byte 0x3354 - 3452: 5f32 .2byte 0x5f32 - 3454: 414d .2byte 0x414d - 3456: 2058 .2byte 0x2058 - 3458: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f - 345e: 454c .2byte 0x454c - 3460: 5341 .2byte 0x5341 - 3462: 3354 .2byte 0x3354 - 3464: 5f32 .2byte 0x5f32 - 3466: 414d .2byte 0x414d - 3468: 5f58 .2byte 0x5f58 - 346a: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c - 3470: 3154 .2byte 0x3154 - 3472: 3832 .2byte 0x3832 - 3474: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 - 347a: 30365f43 .4byte 0x30365f43 - 347e: 3535 .2byte 0x3535 - 3480: 5f39 .2byte 0x5f39 - 3482: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f - 3488: 444c .2byte 0x444c - 348a: 4c42 .2byte 0x4c42 - 348c: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 - 3492: 4e45 .2byte 0x4e45 - 3494: 5f4d524f .4byte 0x5f4d524f - 3498: 205f 0031 4957 .byte 0x5f, 0x20, 0x31, 0x00, 0x57, 0x49 - 349e: 544e .2byte 0x544e - 34a0: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f - 34a6: 575f 4e49 5f54 .byte 0x5f, 0x57, 0x49, 0x4e, 0x54, 0x5f - 34ac: 414d .2byte 0x414d - 34ae: 5f58 .2byte 0x5f58 - 34b0: 005f 4955 544e .byte 0x5f, 0x00, 0x55, 0x49, 0x4e, 0x54 - 34b6: 5450 .2byte 0x5450 - 34b8: 5f52 .2byte 0x5f52 - 34ba: 414d .2byte 0x414d - 34bc: 0058 .2byte 0x58 - 34be: 4e49 .2byte 0x4e49 - 34c0: 3354 .2byte 0x3354 - 34c2: 5f32 .2byte 0x5f32 - 34c4: 494d .2byte 0x494d - 34c6: 204e .2byte 0x204e - 34c8: 2d28 .2byte 0x2d28 - 34ca: 4e49 .2byte 0x4e49 - 34cc: 3354 .2byte 0x3354 - 34ce: 5f32 .2byte 0x5f32 - 34d0: 414d .2byte 0x414d - 34d2: 2058 .2byte 0x2058 - 34d4: 202d .2byte 0x202d - 34d6: 2931 .2byte 0x2931 - 34d8: 5f00 .2byte 0x5f00 - 34da: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 - 34e0: 4749 .2byte 0x4749 - 34e2: 5f5f 3120 0035 .byte 0x5f, 0x5f, 0x20, 0x31, 0x35, 0x00 - 34e8: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f - 34ee: 4148 .2byte 0x4148 - 34f0: 45445f53 .4byte 0x45445f53 - 34f4: 4f4e .2byte 0x4f4e - 34f6: 4d52 .2byte 0x4d52 - 34f8: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f - 34fe: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 - 3504: 5341 .2byte 0x5341 - 3506: 3654 .2byte 0x3654 - 3508: 5f34 .2byte 0x5f34 - 350a: 54444957 .4byte 0x54444957 - 350e: 5f48 .2byte 0x5f48 - 3510: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f - 3516: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 - 351c: 4345 .2byte 0x4345 - 351e: 4d49 .2byte 0x4d49 - 3520: 4c41 .2byte 0x4c41 - 3522: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f - 3528: 3120 .2byte 0x3120 - 352a: 6c730037 lui x0,0x6c730 - 352e: 006f776f jal x14,fa534 <_start-0x7ff05acc> - 3532: 796d .2byte 0x796d - 3534: 7566 .2byte 0x7566 - 3536: 636e .2byte 0x636e - 3538: 485f 0020 6975 .byte 0x5f, 0x48, 0x20, 0x00, 0x75, 0x69 - 353e: 746e .2byte 0x746e - 3540: 5f38 .2byte 0x5f38 - 3542: 0074 .2byte 0x74 - 3544: 5a5f 3631 6f63 .byte 0x5f, 0x5a, 0x31, 0x36, 0x63, 0x6f - 354a: 6e75 .2byte 0x6e75 - 354c: 5f74 .2byte 0x5f74 - 354e: 72616863 bltu x2,x6,3c7e <_start-0x7fffc382> - 3552: 6361 .2byte 0x6361 - 3554: 6574 .2byte 0x6574 - 3556: 7372 .2byte 0x7372 - 3558: 4b50 .2byte 0x4b50 - 355a: 5f305363 bge x0,x19,3b40 <_start-0x7fffc4c0> - 355e: 6850 .2byte 0x6850 - 3560: 6100 .2byte 0x6100 - 3562: 666c .2byte 0x666c - 3564: 6261 .2byte 0x6261 - 3566: 7465 .2byte 0x7465 - 3568: 6c5f 6e65 7467 .byte 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74 - 356e: 0068 .2byte 0x68 - 3570: 6e756f63 bltu x10,x7,3c6e <_start-0x7fffc392> - 3574: 5f74 .2byte 0x5f74 - 3576: 72616863 bltu x2,x6,3ca6 <_start-0x7fffc35a> - 357a: 6361 .2byte 0x6361 - 357c: 6574 .2byte 0x6574 - 357e: 7372 .2byte 0x7372 - 3580: 6d00 .2byte 0x6d00 - 3582: 5f79 .2byte 0x5f79 - 3584: 6c727473 .4byte 0x6c727473 - 3588: 6e65 .2byte 0x6e65 - 358a: 7700 .2byte 0x7700 - 358c: 6e79 .2byte 0x6e79 - 358e: 6b69 .2byte 0x6b69 - 3590: 6100 .2byte 0x6100 - 3592: 666c .2byte 0x666c - 3594: 6261 .2byte 0x6261 - 3596: 7465 .2byte 0x7465 - ... + 0: 635f 7472 2e30 .byte 0x5f, 0x63, 0x72, 0x74, 0x30, 0x2e + 6: 682f0053 .4byte 0x682f0053 + a: 2f656d6f jal x26,56300 <__BSS_END__+0x43b5c> + e: 7375 .2byte 0x7375 + 10: 7265 .2byte 0x7265 + 12: 726f772f .4byte 0x726f772f + 16: 70632f6b .4byte 0x70632f6b + 1a: 0070 .2byte 0x70 + 1c: 20554e47 .4byte 0x20554e47 + 20: 5341 .2byte 0x5341 + 22: 3220 .2byte 0x3220 + 24: 342e .2byte 0x342e + 26: 2e30 .2byte 0x2e30 + 28: 0030 .2byte 0x30 + 2a: 5a5f 6938 5f73 .byte 0x5f, 0x5a, 0x38, 0x69, 0x73, 0x5f + 30: 6564 .2byte 0x6564 + 32: 696c .2byte 0x696c + 34: 636d .2byte 0x636d + 36: 4b50 .2byte 0x4b50 + 38: 74700063 beq x0,x7,778 <__DATA_BEGIN__-0xf888> + 3c: 3772 .2byte 0x3772 + 3e: 4700 .2byte 0x4700 + 40: 554e .2byte 0x554e + 42: 4320 .2byte 0x4320 + 44: 37312b2b .4byte 0x37312b2b + 48: 3120 .2byte 0x3120 + 4a: 2e32 .2byte 0x2e32 + 4c: 2e32 .2byte 0x2e32 + 4e: 2030 .2byte 0x2030 + 50: 6d2d .2byte 0x6d2d + 52: 6261 .2byte 0x6261 + 54: 3d69 .2byte 0x3d69 + 56: 6c69 .2byte 0x6c69 + 58: 3370 .2byte 0x3370 + 5a: 2032 .2byte 0x2032 + 5c: 6d2d .2byte 0x6d2d + 5e: 7574 .2byte 0x7574 + 60: 656e .2byte 0x656e + 62: 723d .2byte 0x723d + 64: 656b636f jal x6,b66ba <__BSS_END__+0xa3f16> + 68: 2074 .2byte 0x2074 + 6a: 6d2d .2byte 0x6d2d + 6c: 7369 .2byte 0x7369 + 6e: 2d61 .2byte 0x2d61 + 70: 63657073 .4byte 0x63657073 + 74: 323d .2byte 0x323d + 76: 3130 .2byte 0x3130 + 78: 3139 .2byte 0x3139 + 7a: 3132 .2byte 0x3132 + 7c: 6d2d2033 .4byte 0x6d2d2033 + 80: 7261 .2byte 0x7261 + 82: 723d6863 bltu x26,x3,7b2 <__DATA_BEGIN__-0xf84e> + 86: 3376 .2byte 0x3376 + 88: 6932 .2byte 0x6932 + 8a: 2d20 .2byte 0x2d20 + 8c: 672d2067 .4byte 0x672d2067 + 90: 2d20 .2byte 0x2d20 + 92: 2d20304f .4byte 0x2d20304f + 96: 6666 .2byte 0x6666 + 98: 6572 .2byte 0x6572 + 9a: 7365 .2byte 0x7365 + 9c: 6174 .2byte 0x6174 + 9e: 646e .2byte 0x646e + a0: 6e69 .2byte 0x6e69 + a2: 662d2067 .4byte 0x662d2067 + a6: 6f6e .2byte 0x6f6e + a8: 702d .2byte 0x702d + aa: 6369 .2byte 0x6369 + ac: 5f00 .2byte 0x5f00 + ae: 365a .2byte 0x365a + b0: 63727473 .4byte 0x63727473 + b4: 7970 .2byte 0x7970 + b6: 6350 .2byte 0x6350 + b8: 73005f53 .4byte 0x73005f53 + bc: 6174 .2byte 0x6174 + be: 6974 .2byte 0x6974 + c0: 74735f63 bge x6,x7,81e <__DATA_BEGIN__-0xf7e2> + c4: 0072 .2byte 0x72 + c6: 5a5f 6133 676c .byte 0x5f, 0x5a, 0x33, 0x61, 0x6c, 0x67 + cc: 4b50 .2byte 0x4b50 + ce: 6f630063 beq x6,x22,7ae <__DATA_BEGIN__-0xf852> + d2: 6e75 .2byte 0x6e75 + d4: 0074 .2byte 0x74 + d6: 6f62 .2byte 0x6f62 + d8: 64006c6f jal x24,6718 <__DATA_BEGIN__-0x98e8> + dc: 6c65 .2byte 0x6c65 + de: 6d69 .2byte 0x6d69 + e0: 75620073 .4byte 0x75620073 + e4: 6566 .2byte 0x6566 + e6: 0072 .2byte 0x72 + e8: 6c61 .2byte 0x6c61 + ea: 6f6c .2byte 0x6f6c + ec: 6e750063 beq x10,x7,7cc <__DATA_BEGIN__-0xf834> + f0: 6e676973 .4byte 0x6e676973 + f4: 6465 .2byte 0x6465 + f6: 6320 .2byte 0x6320 + f8: 6168 .2byte 0x6168 + fa: 0072 .2byte 0x72 + fc: 63727473 .4byte 0x63727473 + 100: 7970 .2byte 0x7970 + 102: 7300 .2byte 0x7300 + 104: 6f68 .2byte 0x6f68 + 106: 7472 .2byte 0x7472 + 108: 7520 .2byte 0x7520 + 10a: 736e .2byte 0x736e + 10c: 6769 .2byte 0x6769 + 10e: 656e .2byte 0x656e + 110: 2064 .2byte 0x2064 + 112: 6e69 .2byte 0x6e69 + 114: 0074 .2byte 0x74 + 116: 6c61 .2byte 0x6c61 + 118: 6f6c .2byte 0x6f6c + 11a: 66756263 bltu x10,x7,77e <__DATA_BEGIN__-0xf882> + 11e: 6900 .2byte 0x6900 + 120: 65645f73 .4byte 0x65645f73 + 124: 696c .2byte 0x696c + 126: 006d .2byte 0x6d + 128: 6f6d .2byte 0x6f6d + 12a: 736a .2byte 0x736a + 12c: 6c74 .2byte 0x6c74 + 12e: 6e65 .2byte 0x6e65 + 130: 6d00 .2byte 0x6d00 + 132: 6961 .2byte 0x6961 + 134: 006e .2byte 0x6e + 136: 706d6973 .4byte 0x706d6973 + 13a: 656c .2byte 0x656c + 13c: 735f 7274 6f74 .byte 0x5f, 0x73, 0x74, 0x72, 0x74, 0x6f + 142: 6c61006b .4byte 0x6c61006b + 146: 6f6c .2byte 0x6f6c + 148: 5f007063 bgeu x0,x16,728 <__DATA_BEGIN__-0xf8d8> + 14c: 315a .2byte 0x315a + 14e: 6d697333 .4byte 0x6d697333 + 152: 6c70 .2byte 0x6c70 + 154: 5f65 .2byte 0x5f65 + 156: 74727473 .4byte 0x74727473 + 15a: 63506b6f jal x22,6f8e <__DATA_BEGIN__-0x9072> + 15e: 4b50 .2byte 0x4b50 + 160: 6f6c0063 beq x24,x22,840 <__DATA_BEGIN__-0xf7c0> + 164: 676e .2byte 0x676e + 166: 6c20 .2byte 0x6c20 + 168: 20676e6f jal x28,7636e <__BSS_END__+0x63bca> + 16c: 6e75 .2byte 0x6e75 + 16e: 6e676973 .4byte 0x6e676973 + 172: 6465 .2byte 0x6465 + 174: 6920 .2byte 0x6920 + 176: 746e .2byte 0x746e + 178: 7500 .2byte 0x7500 + 17a: 6e69 .2byte 0x6e69 + 17c: 3874 .2byte 0x3874 + 17e: 745f 7400 6b6f .byte 0x5f, 0x74, 0x00, 0x74, 0x6f, 0x6b + 184: 6e65 .2byte 0x6e65 + 186: 735f 6174 7472 .byte 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74 + 18c: 5f00 .2byte 0x5f00 + 18e: 365a .2byte 0x365a + 190: 6c727473 .4byte 0x6c727473 + 194: 6e65 .2byte 0x6e65 + 196: 6350 .2byte 0x6350 + 198: 7400 .2byte 0x7400 + 19a: 6e656b6f jal x22,56880 <__BSS_END__+0x440dc> + 19e: 6c00 .2byte 0x6c00 + 1a0: 20676e6f jal x28,763a6 <__BSS_END__+0x63c02> + 1a4: 6f6c .2byte 0x6f6c + 1a6: 676e .2byte 0x676e + 1a8: 6920 .2byte 0x6920 + 1aa: 746e .2byte 0x746e + 1ac: 5f00 .2byte 0x5f00 + 1ae: 355a .2byte 0x355a + 1b0: 6c61 .2byte 0x6c61 + 1b2: 6f6c .2byte 0x6f6c + 1b4: 73006963 bltu x0,x16,8e6 <__DATA_BEGIN__-0xf71a> + 1b8: 6f68 .2byte 0x6f68 + 1ba: 7472 .2byte 0x7472 + 1bc: 6920 .2byte 0x6920 + 1be: 746e .2byte 0x746e + 1c0: 5f00 .2byte 0x5f00 + 1c2: 385a .2byte 0x385a + 1c4: 6f6d .2byte 0x6f6d + 1c6: 736a .2byte 0x736a + 1c8: 6c74 .2byte 0x6c74 + 1ca: 6e65 .2byte 0x6e65 + 1cc: 0076 .2byte 0x76 + 1ce: 6f6d .2byte 0x6f6d + 1d0: 6564 .2byte 0x6564 + 1d2: 006c .2byte 0x6c + 1d4: 696e7977 .4byte 0x696e7977 + 1d8: 6975006b .4byte 0x6975006b + 1dc: 746e .2byte 0x746e + 1de: 745f3233 .4byte 0x745f3233 + 1e2: 6100 .2byte 0x6100 + 1e4: 666c .2byte 0x666c + 1e6: 6261 .2byte 0x6261 + 1e8: 7465 .2byte 0x7465 + 1ea: 6c5f 6e65 7467 .byte 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74 + 1f0: 0068 .2byte 0x68 + 1f2: 5a5f 3631 6f63 .byte 0x5f, 0x5a, 0x31, 0x36, 0x63, 0x6f + 1f8: 6e75 .2byte 0x6e75 + 1fa: 5f74 .2byte 0x5f74 + 1fc: 72616863 bltu x2,x6,92c <__DATA_BEGIN__-0xf6d4> + 200: 6361 .2byte 0x6361 + 202: 6574 .2byte 0x6574 + 204: 7372 .2byte 0x7372 + 206: 4b50 .2byte 0x4b50 + 208: 5f305363 bge x0,x19,7ee <__DATA_BEGIN__-0xf812> + 20c: 6850 .2byte 0x6850 + 20e: 6100 .2byte 0x6100 + 210: 666c .2byte 0x666c + 212: 6261 .2byte 0x6261 + 214: 7465 .2byte 0x7465 + 216: 7300 .2byte 0x7300 + 218: 6f6c .2byte 0x6f6c + 21a: 6d006f77 .4byte 0x6d006f77 + 21e: 5f79 .2byte 0x5f79 + 220: 6c727473 .4byte 0x6c727473 + 224: 6e65 .2byte 0x6e65 + 226: 6300 .2byte 0x6300 + 228: 746e756f jal x10,e796e <__BSS_END__+0xd51ca> + 22c: 635f 6168 6172 .byte 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61 + 232: 72657463 bgeu x10,x6,95a <__DATA_BEGIN__-0xf6a6> + 236: 6c7a0073 .4byte 0x6c7a0073 + 23a: 6369 .2byte 0x6369 + 23c: 617a .2byte 0x617a + 23e: 5f007a63 bgeu x0,x16,832 <__DATA_BEGIN__-0xf7ce> + 242: 325a .2byte 0x325a + 244: 6332 .2byte 0x6332 + 246: 746e756f jal x10,e798c <__BSS_END__+0xd51e8> + 24a: 635f 6168 6172 .byte 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61 + 250: 72657463 bgeu x10,x6,978 <__DATA_BEGIN__-0xf688> + 254: 72745373 .4byte 0x72745373 + 258: 6375 .2byte 0x6375 + 25a: 5074 .2byte 0x5074 + 25c: 3431 .2byte 0x3431 + 25e: 6c5a .2byte 0x6c5a + 260: 6369 .2byte 0x6369 + 262: 617a .2byte 0x617a + 264: 74537a63 bgeu x6,x5,9b8 <__DATA_BEGIN__-0xf648> + 268: 7572 .2byte 0x7572 + 26a: 63007463 bgeu x0,x16,892 <__DATA_BEGIN__-0xf76e> + 26e: 746e756f jal x10,e79b4 <__BSS_END__+0xd5210> + 272: 635f 6168 6172 .byte 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61 + 278: 72657463 bgeu x10,x6,9a0 <__DATA_BEGIN__-0xf660> + 27c: 72745373 .4byte 0x72745373 + 280: 6375 .2byte 0x6375 + 282: 0074 .2byte 0x74 + 284: 6e756f63 bltu x10,x7,982 <__DATA_BEGIN__-0xf67e> + 288: 5f74 .2byte 0x5f74 + 28a: 72616863 bltu x2,x6,9ba <__DATA_BEGIN__-0xf646> + 28e: 6361 .2byte 0x6361 + 290: 6574 .2byte 0x6574 + 292: 7372 .2byte 0x7372 + 294: 75727453 .4byte 0x75727453 + 298: 4f4f7463 bgeu x30,x20,780 <__DATA_BEGIN__-0xf880> + 29c: 0050 .2byte 0x50 + 29e: 5a5f 3732 6e69 .byte 0x5f, 0x5a, 0x32, 0x37, 0x69, 0x6e + 2a4: 7469 .2byte 0x7469 + 2a6: 6169 .2byte 0x6169 + 2a8: 696c .2byte 0x696c + 2aa: 657a .2byte 0x657a + 2ac: 6c5a .2byte 0x6c5a + 2ae: 6369 .2byte 0x6369 + 2b0: 617a .2byte 0x617a + 2b2: 74537a63 bgeu x6,x5,a06 <__DATA_BEGIN__-0xf5fa> + 2b6: 7572 .2byte 0x7572 + 2b8: 4f4f7463 bgeu x30,x20,7a0 <__DATA_BEGIN__-0xf860> + 2bc: 5050 .2byte 0x5050 + 2be: 3731 .2byte 0x3731 + 2c0: 6c5a .2byte 0x6c5a + 2c2: 6369 .2byte 0x6369 + 2c4: 617a .2byte 0x617a + 2c6: 74537a63 bgeu x6,x5,a1a <__DATA_BEGIN__-0xf5e6> + 2ca: 7572 .2byte 0x7572 + 2cc: 4f4f7463 bgeu x30,x20,7b4 <__DATA_BEGIN__-0xf84c> + 2d0: 5050 .2byte 0x5050 + 2d2: 3253634b .4byte 0x3253634b + 2d6: 505f 0068 6e69 .byte 0x5f, 0x50, 0x68, 0x00, 0x69, 0x6e + 2dc: 7469 .2byte 0x7469 + 2de: 6169 .2byte 0x6169 + 2e0: 696c .2byte 0x696c + 2e2: 657a .2byte 0x657a + 2e4: 6c5a .2byte 0x6c5a + 2e6: 6369 .2byte 0x6369 + 2e8: 617a .2byte 0x617a + 2ea: 74537a63 bgeu x6,x5,a3e <__DATA_BEGIN__-0xf5c2> + 2ee: 7572 .2byte 0x7572 + 2f0: 4f4f7463 bgeu x30,x20,7d8 <__DATA_BEGIN__-0xf828> + 2f4: 0050 .2byte 0x50 + 2f6: 6975 .2byte 0x6975 + 2f8: 746e .2byte 0x746e + 2fa: 6c5f 6165 7473 .byte 0x5f, 0x6c, 0x65, 0x61, 0x73, 0x74 + 300: 3436 .2byte 0x3436 + 302: 745f 7500 6e69 .byte 0x5f, 0x74, 0x00, 0x75, 0x69, 0x6e + 308: 7074 .2byte 0x7074 + 30a: 7274 .2byte 0x7274 + 30c: 745f 7500 6e69 .byte 0x5f, 0x74, 0x00, 0x75, 0x69, 0x6e + 312: 5f74 .2byte 0x5f74 + 314: 6166 .2byte 0x6166 + 316: 5f387473 .4byte 0x5f387473 + 31a: 0074 .2byte 0x74 + 31c: 6975 .2byte 0x6975 + 31e: 746e .2byte 0x746e + 320: 6c5f 6165 7473 .byte 0x5f, 0x6c, 0x65, 0x61, 0x73, 0x74 + 326: 745f3233 .4byte 0x745f3233 + 32a: 6300 .2byte 0x6300 + 32c: 746e756f jal x10,e7a72 <__BSS_END__+0xd52ce> + 330: 72616843 .4byte 0x72616843 + 334: 6361 .2byte 0x6361 + 336: 6574 .2byte 0x6574 + 338: 7372 .2byte 0x7372 + 33a: 7500 .2byte 0x7500 + 33c: 6e69 .2byte 0x6e69 + 33e: 3674 .2byte 0x3674 + 340: 5f34 .2byte 0x5f34 + 342: 0074 .2byte 0x74 + 344: 52746567 .4byte 0x52746567 + 348: 7365 .2byte 0x7365 + 34a: 6c75 .2byte 0x6c75 + 34c: 7374 .2byte 0x7374 + 34e: 4d00 .2byte 0x4d00 + 350: 6679 .2byte 0x6679 + 352: 6e75 .2byte 0x6e75 + 354: 504f4f63 blt x30,x4,872 <__DATA_BEGIN__-0xf78e> + 358: 7400 .2byte 0x7400 + 35a: 6968 .2byte 0x6968 + 35c: 69750073 .4byte 0x69750073 + 360: 746e .2byte 0x746e + 362: 665f 7361 3374 .byte 0x5f, 0x66, 0x61, 0x73, 0x74, 0x33 + 368: 5f32 .2byte 0x5f32 + 36a: 0074 .2byte 0x74 + 36c: 6975 .2byte 0x6975 + 36e: 746e .2byte 0x746e + 370: 616d .2byte 0x616d + 372: 5f78 .2byte 0x5f78 + 374: 0074 .2byte 0x74 + 376: 5a5f 4b4e 4d39 .byte 0x5f, 0x5a, 0x4e, 0x4b, 0x39, 0x4d + 37c: 6679 .2byte 0x6679 + 37e: 6e75 .2byte 0x6e75 + 380: 504f4f63 blt x30,x4,89e <__DATA_BEGIN__-0xf762> + 384: 3031 .2byte 0x3031 + 386: 52746567 .4byte 0x52746567 + 38a: 7365 .2byte 0x7365 + 38c: 6c75 .2byte 0x6c75 + 38e: 7374 .2byte 0x7374 + 390: 7645 .2byte 0x7645 + 392: 7500 .2byte 0x7500 + 394: 6e69 .2byte 0x6e69 + 396: 5f74 .2byte 0x5f74 + 398: 656c .2byte 0x656c + 39a: 7361 .2byte 0x7361 + 39c: 3174 .2byte 0x3174 + 39e: 5f36 .2byte 0x5f36 + 3a0: 0074 .2byte 0x74 + 3a2: 6975 .2byte 0x6975 + 3a4: 746e .2byte 0x746e + 3a6: 6c5f 6165 7473 .byte 0x5f, 0x6c, 0x65, 0x61, 0x73, 0x74 + 3ac: 5f38 .2byte 0x5f38 + 3ae: 0074 .2byte 0x74 + 3b0: 796d .2byte 0x796d + 3b2: 6c727453 .4byte 0x6c727453 + 3b6: 6e65 .2byte 0x6e65 + 3b8: 5f00 .2byte 0x5f00 + 3ba: 4e5a .2byte 0x4e5a + 3bc: 4d39 .2byte 0x4d39 + 3be: 6679 .2byte 0x6679 + 3c0: 6e75 .2byte 0x6e75 + 3c2: 504f4f63 blt x30,x4,8e0 <__DATA_BEGIN__-0xf720> + 3c6: 50453443 .4byte 0x50453443 + 3ca: 3153634b .4byte 0x3153634b + 3ce: 505f 0068 6975 .byte 0x5f, 0x50, 0x68, 0x00, 0x75, 0x69 + 3d4: 746e .2byte 0x746e + 3d6: 665f 7361 3174 .byte 0x5f, 0x66, 0x61, 0x73, 0x74, 0x31 + 3dc: 5f36 .2byte 0x5f36 + 3de: 0074 .2byte 0x74 + 3e0: 5a5f 394e 794d .byte 0x5f, 0x5a, 0x4e, 0x39, 0x4d, 0x79 + 3e6: 7566 .2byte 0x7566 + 3e8: 636e .2byte 0x636e + 3ea: 38504f4f .4byte 0x38504f4f + 3ee: 796d .2byte 0x796d + 3f0: 6c727453 .4byte 0x6c727453 + 3f4: 6e65 .2byte 0x6e65 + 3f6: 5045 .2byte 0x5045 + 3f8: 7500634b .4byte 0x7500634b + 3fc: 6e69 .2byte 0x6e69 + 3fe: 3174 .2byte 0x3174 + 400: 5f36 .2byte 0x5f36 + 402: 0074 .2byte 0x74 + 404: 5a5f 394e 794d .byte 0x5f, 0x5a, 0x4e, 0x39, 0x4d, 0x79 + 40a: 7566 .2byte 0x7566 + 40c: 636e .2byte 0x636e + 40e: 43504f4f .4byte 0x43504f4f + 412: 4532 .2byte 0x4532 + 414: 4b50 .2byte 0x4b50 + 416: 5f315363 bge x2,x19,9fc <__DATA_BEGIN__-0xf604> + 41a: 6850 .2byte 0x6850 + 41c: 7500 .2byte 0x7500 + 41e: 6e69 .2byte 0x6e69 + 420: 5f74 .2byte 0x5f74 + 422: 6166 .2byte 0x6166 + 424: 34367473 .4byte 0x34367473 + 428: 745f 5f00 4e5a .byte 0x5f, 0x74, 0x00, 0x5f, 0x5a, 0x4e + 42e: 4d39 .2byte 0x4d39 + 430: 6679 .2byte 0x6679 + 432: 6e75 .2byte 0x6e75 + 434: 504f4f63 blt x30,x4,952 <__DATA_BEGIN__-0xf6ae> + 438: 3531 .2byte 0x3531 + 43a: 6e756f63 bltu x10,x7,b38 <__DATA_BEGIN__-0xf4c8> + 43e: 4374 .2byte 0x4374 + 440: 6168 .2byte 0x6168 + 442: 6172 .2byte 0x6172 + 444: 72657463 bgeu x10,x6,b6c <__DATA_BEGIN__-0xf494> + 448: 00764573 .4byte 0x764573 Disassembly of section .debug_line_str: @@ -6148,19 +5086,19 @@ Disassembly of section .debug_line_str: 1e: 6d76 .2byte 0x6d76 20: 6961 .2byte 0x6961 22: 2e6e .2byte 0x2e6e - 24: 00707063 bgeu x0,x7,24 <_start-0x7fffffdc> + 24: 00707063 bgeu x0,x7,24 <__DATA_BEGIN__-0xffdc> 28: 6d6f682f .4byte 0x6d6f682f 2c: 2f65 .2byte 0x2f65 2e: 7375 .2byte 0x7375 30: 7265 .2byte 0x7265 32: 7369722f .4byte 0x7369722f - 36: 722f7663 bgeu x30,x2,762 <_start-0x7ffff89e> + 36: 722f7663 bgeu x30,x2,762 <__DATA_BEGIN__-0xf89e> 3a: 7369 .2byte 0x7369 - 3c: 6c2f7663 bgeu x30,x2,708 <_start-0x7ffff8f8> + 3c: 6c2f7663 bgeu x30,x2,708 <__DATA_BEGIN__-0xf8f8> 40: 6269 .2byte 0x6269 42: 6363672f .4byte 0x6363672f 46: 7369722f .4byte 0x7369722f - 4a: 34367663 bgeu x12,x3,396 <_start-0x7ffffc6a> + 4a: 34367663 bgeu x12,x3,396 <__DATA_BEGIN__-0xfc6a> 4e: 752d .2byte 0x752d 50: 6b6e .2byte 0x6b6e 52: 6f6e .2byte 0x6f6e @@ -6170,1421 +5108,115 @@ Disassembly of section .debug_line_str: 5e: 2e32 .2byte 0x2e32 60: 2f30 .2byte 0x2f30 62: 6e69 .2byte 0x6e69 - 64: 64756c63 bltu x10,x7,6bc <_start-0x7ffff944> + 64: 64756c63 bltu x10,x7,6bc <__DATA_BEGIN__-0xf944> 68: 0065 .2byte 0x65 6a: 69647473 .4byte 0x69647473 6e: 746e .2byte 0x746e 70: 672d .2byte 0x672d - 72: 682e6363 bltu x28,x2,6f8 <_start-0x7ffff908> - 76: 7300 .2byte 0x7300 - 78: 6474 .2byte 0x6474 - 7a: 6e69 .2byte 0x6e69 - 7c: 2e74 .2byte 0x2e74 - 7e: 0068 .2byte 0x68 - 80: 796d .2byte 0x796d - 82: 7566 .2byte 0x7566 - 84: 636e .2byte 0x636e - 86: 632e .2byte 0x632e - 88: 7070 .2byte 0x7070 - 8a: 6d00 .2byte 0x6d00 - 8c: 6679 .2byte 0x6679 - 8e: 6e75 .2byte 0x6e75 - 90: 00682e63 .4byte 0x682e63 - -Disassembly of section .debug_macro: - -00000000 <.debug_macro>: - 0: 0005 .2byte 0x5 - 2: 8c02 .2byte 0x8c02 - 4: 0000 .2byte 0x0 - 6: 0700 .2byte 0x700 - 8: 002a .2byte 0x2a - a: 0000 .2byte 0x0 - c: 03010003 lb x0,48(x2) # 4c303030 <_start-0x33cfcfd0> - 10: 0301 .2byte 0x301 - 12: 07020b03 lb x22,112(x4) # 2d653070 <_start-0x529acf90> - 16: 08b6 .2byte 0x8b6 - 18: 0000 .2byte 0x0 - 1a: 0504 .2byte 0x504 - 1c: 3a0d .2byte 0x3a0d - 1e: 001a .2byte 0x1a - 20: 0400 .2byte 0x400 - 22: 1105 .2byte 0x1105 - 24: 00001723 sh x0,14(x0) # e <_start-0x7ffffff2> - 28: 0004 .2byte 0x4 - 2a: 0005 .2byte 0x5 - 2c: 0500 .2byte 0x500 - 2e: 0b00 .2byte 0xb00 - 30: 0500001b .4byte 0x500001b - 34: a700 .2byte 0xa700 - 36: 0500002b .4byte 0x500002b - 3a: ca00 .2byte 0xca00 - 3c: 001d .2byte 0x1d - 3e: 0500 .2byte 0x500 - 40: 5b00 .2byte 0x5b00 - 42: 0008 .2byte 0x8 - 44: 0500 .2byte 0x500 - 46: f200 .2byte 0xf200 - 48: 0029 .2byte 0x29 - 4a: 0500 .2byte 0x500 - 4c: e900 .2byte 0xe900 - 4e: 0500000b .4byte 0x500000b - 52: 9300 .2byte 0x9300 - 54: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> - 58: 8300 .2byte 0x8300 - 5a: 001c .2byte 0x1c - 5c: 0500 .2byte 0x500 - 5e: 8d00 .2byte 0x8d00 - 60: 0020 .2byte 0x20 - 62: 0500 .2byte 0x500 - 64: 3a00 .2byte 0x3a00 - 66: 0009 .2byte 0x9 - 68: 0500 .2byte 0x500 - 6a: 7d00 .2byte 0x7d00 - 6c: 0006 .2byte 0x6 - 6e: 0500 .2byte 0x500 - 70: 3300 .2byte 0x3300 - 72: 0020 .2byte 0x20 - 74: 0500 .2byte 0x500 - 76: c000 .2byte 0xc000 - 78: 0005 .2byte 0x5 - 7a: 0500 .2byte 0x500 - 7c: e700 .2byte 0xe700 - 7e: 002a .2byte 0x2a - 80: 0500 .2byte 0x500 - 82: 8e00 .2byte 0x8e00 - 84: 0019 .2byte 0x19 - 86: 0500 .2byte 0x500 - 88: db00 .2byte 0xdb00 - 8a: 0016 .2byte 0x16 - 8c: 0500 .2byte 0x500 - 8e: 4c00 .2byte 0x4c00 - 90: 002e .2byte 0x2e - 92: 0500 .2byte 0x500 - 94: 1600 .2byte 0x1600 - 96: 0500001b .4byte 0x500001b - 9a: c400 .2byte 0xc400 - 9c: 0026 .2byte 0x26 - 9e: 0500 .2byte 0x500 - a0: 9f00 .2byte 0x9f00 - a2: 0006 .2byte 0x6 - a4: 0500 .2byte 0x500 - a6: a800 .2byte 0xa800 - a8: 001a .2byte 0x1a - aa: 0500 .2byte 0x500 - ac: 6f00 .2byte 0x6f00 - ae: 001c .2byte 0x1c - b0: 0500 .2byte 0x500 - b2: 6c00 .2byte 0x6c00 - b4: 000d .2byte 0xd - b6: 0500 .2byte 0x500 - b8: 6f00 .2byte 0x6f00 - ba: 0004 .2byte 0x4 - bc: 0500 .2byte 0x500 - be: fe00 .2byte 0xfe00 - c0: 05000017 auipc x0,0x5000 - c4: 2100 .2byte 0x2100 - c6: 0030 .2byte 0x30 - c8: 0500 .2byte 0x500 - ca: be00 .2byte 0xbe00 - cc: 000e .2byte 0xe - ce: 0500 .2byte 0x500 - d0: 1a00 .2byte 0x1a00 - d2: 0005 .2byte 0x5 - d4: 0500 .2byte 0x500 - d6: 4b00 .2byte 0x4b00 - d8: 0022 .2byte 0x22 - da: 0500 .2byte 0x500 - dc: 5900 .2byte 0x5900 - de: 05000007 .4byte 0x5000007 - e2: 5500 .2byte 0x5500 - e4: 001f 0500 f500 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xf5 - ea: 05000027 .4byte 0x5000027 - ee: dc00 .2byte 0xdc00 - f0: 0008 .2byte 0x8 - f2: 0500 .2byte 0x500 - f4: 3600 .2byte 0x3600 - f6: 002c .2byte 0x2c - f8: 0500 .2byte 0x500 - fa: 7f00 .2byte 0x7f00 - fc: 0024 .2byte 0x24 - fe: 0500 .2byte 0x500 - 100: a100 .2byte 0xa100 - 102: 002c .2byte 0x2c - 104: 0500 .2byte 0x500 - 106: ea00 .2byte 0xea00 - 108: 0005 .2byte 0x5 - 10a: 0500 .2byte 0x500 - 10c: 5a00 .2byte 0x5a00 - 10e: 000c .2byte 0xc - 110: 0500 .2byte 0x500 - 112: 8600 .2byte 0x8600 - 114: 002c .2byte 0x2c - 116: 0500 .2byte 0x500 - 118: 7b00 .2byte 0x7b00 - 11a: 002e .2byte 0x2e - 11c: 0500 .2byte 0x500 - 11e: 3900 .2byte 0x3900 - 120: 0021 .2byte 0x21 - 122: 0500 .2byte 0x500 - 124: 8300 .2byte 0x8300 - 126: 0004 .2byte 0x4 - 128: 0500 .2byte 0x500 - 12a: 4600 .2byte 0x4600 - 12c: 0020 .2byte 0x20 - 12e: 0500 .2byte 0x500 - 130: da00 .2byte 0xda00 - 132: 05000033 .4byte 0x5000033 - 136: 4c00 .2byte 0x4c00 - 138: 0025 .2byte 0x25 - 13a: 0500 .2byte 0x500 - 13c: 1300 .2byte 0x1300 - 13e: 0006 .2byte 0x6 - 140: 0500 .2byte 0x500 - 142: 1400 .2byte 0x1400 - 144: 0024 .2byte 0x24 - 146: 0500 .2byte 0x500 - 148: c500 .2byte 0xc500 - 14a: 0011 .2byte 0x11 - 14c: 0500 .2byte 0x500 - 14e: 2000 .2byte 0x2000 - 150: 0019 .2byte 0x19 - 152: 0500 .2byte 0x500 - 154: fd00 .2byte 0xfd00 - 156: 0010 .2byte 0x10 - 158: 0500 .2byte 0x500 - 15a: ac00 .2byte 0xac00 - 15c: 05000027 .4byte 0x5000027 - 160: 5500 .2byte 0x5500 - 162: 0500002f .4byte 0x500002f - 166: ca00 .2byte 0xca00 - 168: 0006 .2byte 0x6 - 16a: 0500 .2byte 0x500 - 16c: 8200 .2byte 0x8200 - 16e: 0016 .2byte 0x16 - 170: 0500 .2byte 0x500 - 172: 7f00 .2byte 0x7f00 - 174: 000c .2byte 0xc - 176: 0500 .2byte 0x500 - 178: 8900 .2byte 0x8900 - 17a: 05000027 .4byte 0x5000027 - 17e: 4f00 .2byte 0x4f00 - 180: 0018 .2byte 0x18 - 182: 0500 .2byte 0x500 - 184: 6500 .2byte 0x6500 - 186: 0022 .2byte 0x22 - 188: 0500 .2byte 0x500 - 18a: 1100 .2byte 0x1100 - 18c: 0021 .2byte 0x21 - 18e: 0500 .2byte 0x500 - 190: 5d00 .2byte 0x5d00 - 192: 0005 .2byte 0x5 - 194: 0500 .2byte 0x500 - 196: b800 .2byte 0xb800 - 198: 000d .2byte 0xd - 19a: 0500 .2byte 0x500 - 19c: d300 .2byte 0xd300 - 19e: 0010 .2byte 0x10 - 1a0: 0500 .2byte 0x500 - 1a2: c800 .2byte 0xc800 - 1a4: 0500002f .4byte 0x500002f - 1a8: de00 .2byte 0xde00 - 1aa: 0009 .2byte 0x9 - 1ac: 0500 .2byte 0x500 - 1ae: 7600 .2byte 0x7600 - 1b0: 0000 .2byte 0x0 - 1b2: 0500 .2byte 0x500 - 1b4: 9c00 .2byte 0x9c00 - 1b6: 05000013 addi x0,x0,80 - 1ba: 6400 .2byte 0x6400 - 1bc: 002c .2byte 0x2c - 1be: 0500 .2byte 0x500 - 1c0: fa00 .2byte 0xfa00 - 1c2: 002a .2byte 0x2a - 1c4: 0500 .2byte 0x500 - 1c6: 9300 .2byte 0x9300 - 1c8: 0500002b .4byte 0x500002b - 1cc: 7800 .2byte 0x7800 - 1ce: 000a .2byte 0xa - 1d0: 0500 .2byte 0x500 - 1d2: e600 .2byte 0xe600 - 1d4: 0500000f fence ow,unknown - 1d8: a600 .2byte 0xa600 - 1da: 05000017 auipc x0,0x5000 - 1de: 2700 .2byte 0x2700 - 1e0: 002e .2byte 0x2e - 1e2: 0500 .2byte 0x500 - 1e4: f600 .2byte 0xf600 - 1e6: 0021 .2byte 0x21 - 1e8: 0500 .2byte 0x500 - 1ea: 3100 .2byte 0x3100 - 1ec: 001d .2byte 0x1d - 1ee: 0500 .2byte 0x500 - 1f0: 3200 .2byte 0x3200 - 1f2: 000e .2byte 0xe - 1f4: 0500 .2byte 0x500 - 1f6: ef00 .2byte 0xef00 - 1f8: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> - 1fc: d900 .2byte 0xd900 - 1fe: 0021 .2byte 0x21 - 200: 0500 .2byte 0x500 - 202: 4d00 .2byte 0x4d00 - 204: 0032 .2byte 0x32 - 206: 0500 .2byte 0x500 - 208: f200 .2byte 0xf200 - 20a: 000e .2byte 0xe - 20c: 0500 .2byte 0x500 - 20e: f700 .2byte 0xf700 - 210: 002e .2byte 0x2e - 212: 0500 .2byte 0x500 - 214: d400 .2byte 0xd400 - 216: 002c .2byte 0x2c - 218: 0500 .2byte 0x500 - 21a: 7800 .2byte 0x7800 - 21c: 05000017 auipc x0,0x5000 - 220: cc00 .2byte 0xcc00 - 222: 0004 .2byte 0x4 - 224: 0500 .2byte 0x500 - 226: d000 .2byte 0xd000 - 228: 0014 .2byte 0x14 - 22a: 0500 .2byte 0x500 - 22c: b600 .2byte 0xb600 - 22e: 0500001b .4byte 0x500001b - 232: 5e00 .2byte 0x5e00 - 234: 001d .2byte 0x1d - 236: 0500 .2byte 0x500 - 238: 6100 .2byte 0x6100 - 23a: 0028 .2byte 0x28 - 23c: 0500 .2byte 0x500 - 23e: a300 .2byte 0xa300 - 240: 002e .2byte 0x2e - 242: 0500 .2byte 0x500 - 244: 0d00 .2byte 0xd00 - 246: 0018 .2byte 0x18 - 248: 0500 .2byte 0x500 - 24a: d300 .2byte 0xd300 - 24c: 0500002b .4byte 0x500002b - 250: 3c00 .2byte 0x3c00 - 252: 05000007 .4byte 0x5000007 - 256: c900 .2byte 0xc900 - 258: 000a .2byte 0xa - 25a: 0500 .2byte 0x500 - 25c: f700 .2byte 0xf700 - 25e: 05000007 .4byte 0x5000007 - 262: 9800 .2byte 0x9800 - 264: 0009 .2byte 0x9 - 266: 0500 .2byte 0x500 - 268: b500 .2byte 0xb500 - 26a: 05000017 auipc x0,0x5000 - 26e: 1600 .2byte 0x1600 - 270: 001c .2byte 0x1c - 272: 0500 .2byte 0x500 - 274: 5d00 .2byte 0x5d00 - 276: 002e .2byte 0x2e - 278: 0500 .2byte 0x500 - 27a: 9900 .2byte 0x9900 - 27c: 0014 .2byte 0x14 - 27e: 0500 .2byte 0x500 - 280: 8a00 .2byte 0x8a00 - 282: 0005 .2byte 0x5 - 284: 0500 .2byte 0x500 - 286: 0000 .2byte 0x0 - 288: 0030 .2byte 0x30 - 28a: 0500 .2byte 0x500 - 28c: e100 .2byte 0xe100 - 28e: 0032 .2byte 0x32 - 290: 0500 .2byte 0x500 - 292: 5300 .2byte 0x5300 - 294: 002a .2byte 0x2a - 296: 0500 .2byte 0x500 - 298: 8300 .2byte 0x8300 - 29a: 0021 .2byte 0x21 - 29c: 0500 .2byte 0x500 - 29e: 8500 .2byte 0x8500 - 2a0: 0012 .2byte 0x12 - 2a2: 0500 .2byte 0x500 - 2a4: c800 .2byte 0xc800 - 2a6: 0020 .2byte 0x20 - 2a8: 0500 .2byte 0x500 - 2aa: b700 .2byte 0xb700 - 2ac: 0031 .2byte 0x31 - 2ae: 0500 .2byte 0x500 - 2b0: 4e00 .2byte 0x4e00 - 2b2: 000d .2byte 0xd - 2b4: 0500 .2byte 0x500 - 2b6: 9d00 .2byte 0x9d00 - 2b8: 000c .2byte 0xc - 2ba: 0500 .2byte 0x500 - 2bc: f000 .2byte 0xf000 - 2be: 0025 .2byte 0x25 - 2c0: 0500 .2byte 0x500 - 2c2: e000 .2byte 0xe000 - 2c4: 0500002f .4byte 0x500002f - 2c8: dc00 .2byte 0xdc00 - 2ca: 001d .2byte 0x1d - 2cc: 0500 .2byte 0x500 - 2ce: 6100 .2byte 0x6100 - 2d0: 0024 .2byte 0x24 - 2d2: 0500 .2byte 0x500 - 2d4: 2400 .2byte 0x2400 - 2d6: 0002 .2byte 0x2 - 2d8: 0500 .2byte 0x500 - 2da: 5300 .2byte 0x5300 - 2dc: 000a .2byte 0xa - 2de: 0500 .2byte 0x500 - 2e0: a100 .2byte 0xa100 - 2e2: 0019 .2byte 0x19 - 2e4: 0500 .2byte 0x500 - 2e6: 9200 .2byte 0x9200 - 2e8: 002a .2byte 0x2a - 2ea: 0500 .2byte 0x500 - 2ec: 2b00 .2byte 0x2b00 - 2ee: 0034 .2byte 0x34 - 2f0: 0500 .2byte 0x500 - 2f2: af00 .2byte 0xaf00 - 2f4: 001e .2byte 0x1e - 2f6: 0500 .2byte 0x500 - 2f8: 1d00 .2byte 0x1d00 - 2fa: 0022 .2byte 0x22 - 2fc: 0500 .2byte 0x500 - 2fe: f200 .2byte 0xf200 - 300: 05000033 .4byte 0x5000033 - 304: 4e00 .2byte 0x4e00 - 306: 001c .2byte 0x1c - 308: 0500 .2byte 0x500 - 30a: b700 .2byte 0xb700 - 30c: 0016 .2byte 0x16 - 30e: 0500 .2byte 0x500 - 310: 4c00 .2byte 0x4c00 - 312: 002d .2byte 0x2d - 314: 0500 .2byte 0x500 - 316: 2e00 .2byte 0x2e00 - 318: 002a .2byte 0x2a - 31a: 0500 .2byte 0x500 - 31c: 2a00 .2byte 0x2a00 - 31e: 0000 .2byte 0x0 - 320: 0500 .2byte 0x500 - 322: 0700 .2byte 0x700 - 324: 0015 .2byte 0x15 - 326: 0500 .2byte 0x500 - 328: 5c00 .2byte 0x5c00 - 32a: 0014 .2byte 0x14 - 32c: 0500 .2byte 0x500 - 32e: 8800 .2byte 0x8800 - 330: 0008 .2byte 0x8 - 332: 0500 .2byte 0x500 - 334: 0900 .2byte 0x900 - 336: 0022 .2byte 0x22 - 338: 0500 .2byte 0x500 - 33a: a900 .2byte 0xa900 - 33c: 0005 .2byte 0x5 - 33e: 0500 .2byte 0x500 - 340: d600 .2byte 0xd600 - 342: 0500001b .4byte 0x500001b - 346: 9e00 .2byte 0x9e00 - 348: 0011 .2byte 0x11 - 34a: 0500 .2byte 0x500 - 34c: 8100 .2byte 0x8100 - 34e: 0028 .2byte 0x28 - 350: 0500 .2byte 0x500 - 352: 1b00 .2byte 0x1b00 - 354: 0008 .2byte 0x8 - 356: 0500 .2byte 0x500 - 358: 6600 .2byte 0x6600 - 35a: 0025 .2byte 0x25 - 35c: 0500 .2byte 0x500 - 35e: 4e00 .2byte 0x4e00 - 360: 001d .2byte 0x1d - 362: 0500 .2byte 0x500 - 364: 8000 .2byte 0x8000 - 366: 0500000b .4byte 0x500000b - 36a: 6700 .2byte 0x6700 - 36c: 0009 .2byte 0x9 - 36e: 0500 .2byte 0x500 - 370: 0400 .2byte 0x400 - 372: 001c .2byte 0x1c - 374: 0500 .2byte 0x500 - 376: 0300 .2byte 0x300 - 378: 05000027 .4byte 0x5000027 - 37c: d800 .2byte 0xd800 - 37e: 0028 .2byte 0x28 - 380: 0500 .2byte 0x500 - 382: 2100 .2byte 0x2100 - 384: 0020 .2byte 0x20 - 386: 0500 .2byte 0x500 - 388: 8d00 .2byte 0x8d00 - 38a: 0002 .2byte 0x2 - 38c: 0500 .2byte 0x500 - 38e: 5a00 .2byte 0x5a00 - 390: 0011 .2byte 0x11 - 392: 0500 .2byte 0x500 - 394: d800 .2byte 0xd800 - 396: 0022 .2byte 0x22 - 398: 0500 .2byte 0x500 - 39a: 3400 .2byte 0x3400 - 39c: 0005 .2byte 0x5 - 39e: 0500 .2byte 0x500 - 3a0: 8200 .2byte 0x8200 - 3a2: 001f 0500 5000 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x50 - 3a8: 000e .2byte 0xe - 3aa: 0500 .2byte 0x500 - 3ac: dc00 .2byte 0xdc00 - 3ae: 0029 .2byte 0x29 - 3b0: 0500 .2byte 0x500 - 3b2: b400 .2byte 0xb400 - 3b4: 05000033 .4byte 0x5000033 - 3b8: 2400 .2byte 0x2400 - 3ba: 05000007 .4byte 0x5000007 - 3be: 5700 .2byte 0x5700 - 3c0: 0016 .2byte 0x16 - 3c2: 0500 .2byte 0x500 - 3c4: 5800 .2byte 0x5800 - 3c6: 0010 .2byte 0x10 - 3c8: 0500 .2byte 0x500 - 3ca: e100 .2byte 0xe100 - 3cc: 001f 0500 a700 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xa7 - 3d2: 0021 .2byte 0x21 - 3d4: 0500 .2byte 0x500 - 3d6: 6d00 .2byte 0x6d00 - 3d8: 000c .2byte 0xc - 3da: 0500 .2byte 0x500 - 3dc: ef00 .2byte 0xef00 - 3de: 0500001b .4byte 0x500001b - 3e2: a400 .2byte 0xa400 - 3e4: 0022 .2byte 0x22 - 3e6: 0500 .2byte 0x500 - 3e8: 1e00 .2byte 0x1e00 - 3ea: 000c .2byte 0xc - 3ec: 0500 .2byte 0x500 - 3ee: f600 .2byte 0xf600 - 3f0: 0015 .2byte 0x15 - 3f2: 0500 .2byte 0x500 - 3f4: 0900 .2byte 0x900 - 3f6: 0016 .2byte 0x16 - 3f8: 0500 .2byte 0x500 - 3fa: 9300 .2byte 0x9300 - 3fc: 001e .2byte 0x1e - 3fe: 0500 .2byte 0x500 - 400: 6800 .2byte 0x6800 - 402: 0020 .2byte 0x20 - 404: 0500 .2byte 0x500 - 406: b200 .2byte 0xb200 - 408: 0006 .2byte 0x6 - 40a: 0500 .2byte 0x500 - 40c: 1500 .2byte 0x1500 - 40e: 05000017 auipc x0,0x5000 - 412: df00 .2byte 0xdf00 - 414: 0015 .2byte 0x15 - 416: 0500 .2byte 0x500 - 418: 6d00 .2byte 0x6d00 - 41a: 0008 .2byte 0x8 - 41c: 0500 .2byte 0x500 - 41e: 9000 .2byte 0x9000 - 420: 0006 .2byte 0x6 - 422: 0500 .2byte 0x500 - 424: 2400 .2byte 0x2400 - 426: 000a .2byte 0xa - 428: 0500 .2byte 0x500 - 42a: 4000 .2byte 0x4000 - 42c: 05000033 .4byte 0x5000033 - 430: 4b00 .2byte 0x4b00 - 432: 0031 .2byte 0x31 - 434: 0500 .2byte 0x500 - 436: 1d00 .2byte 0x1d00 - 438: 002c .2byte 0x2c - 43a: 0500 .2byte 0x500 - 43c: 2000 .2byte 0x2000 - 43e: 0015 .2byte 0x15 - 440: 0500 .2byte 0x500 - 442: 0b00 .2byte 0xb00 - 444: 0026 .2byte 0x26 - 446: 0500 .2byte 0x500 - 448: 7400 .2byte 0x7400 - 44a: 000e .2byte 0xe - 44c: 0500 .2byte 0x500 - 44e: 0500 .2byte 0x500 - 450: 000c .2byte 0xc - 452: 0500 .2byte 0x500 - 454: 0200 .2byte 0x200 - 456: 0021 .2byte 0x21 - 458: 0500 .2byte 0x500 - 45a: b500 .2byte 0xb500 - 45c: 0500000b .4byte 0x500000b - 460: 5f00 .2byte 0x5f00 - 462: 0004 .2byte 0x4 - 464: 0500 .2byte 0x500 - 466: f500 .2byte 0xf500 - 468: 0024 .2byte 0x24 - 46a: 0500 .2byte 0x500 - 46c: 3d00 .2byte 0x3d00 - 46e: 0001 .2byte 0x1 - 470: 0500 .2byte 0x500 - 472: ce00 .2byte 0xce00 - 474: 000c .2byte 0xc - 476: 0500 .2byte 0x500 - 478: 0300 .2byte 0x300 - 47a: 0029 .2byte 0x29 - 47c: 0500 .2byte 0x500 - 47e: fd00 .2byte 0xfd00 - 480: 0004 .2byte 0x4 - 482: 0500 .2byte 0x500 - 484: a800 .2byte 0xa800 - 486: 0030 .2byte 0x30 - 488: 0500 .2byte 0x500 - 48a: 0400 .2byte 0x400 - 48c: 0500000b .4byte 0x500000b - 490: 2500 .2byte 0x2500 - 492: 0001 .2byte 0x1 - 494: 0500 .2byte 0x500 - 496: bb00 .2byte 0xbb00 - 498: 001a .2byte 0x1a - 49a: 0500 .2byte 0x500 - 49c: c700 .2byte 0xc700 - 49e: 0015 .2byte 0x15 - 4a0: 0500 .2byte 0x500 - 4a2: 5700 .2byte 0x5700 - 4a4: 0500000f fence ow,unknown - 4a8: fd00 .2byte 0xfd00 - 4aa: 0034 .2byte 0x34 - 4ac: 0500 .2byte 0x500 - 4ae: f500 .2byte 0xf500 - 4b0: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> - 4b4: 7c00 .2byte 0x7c00 - 4b6: 05000013 addi x0,x0,80 - 4ba: d000 .2byte 0xd000 - 4bc: 0025 .2byte 0x25 - 4be: 0500 .2byte 0x500 - 4c0: a600 .2byte 0xa600 - 4c2: 0025 .2byte 0x25 - 4c4: 0500 .2byte 0x500 - 4c6: 1400 .2byte 0x1400 - 4c8: 002a .2byte 0x2a - 4ca: 0500 .2byte 0x500 - 4cc: 3b00 .2byte 0x3b00 - 4ce: 0018 .2byte 0x18 - 4d0: 0500 .2byte 0x500 - 4d2: 5a00 .2byte 0x5a00 - 4d4: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> - 4d8: 4800 .2byte 0x4800 - 4da: 0500000b .4byte 0x500000b - 4de: 7b00 .2byte 0x7b00 - 4e0: 001e .2byte 0x1e - 4e2: 0500 .2byte 0x500 - 4e4: ba00 .2byte 0xba00 - 4e6: 0014 .2byte 0x14 - 4e8: 0500 .2byte 0x500 - 4ea: cd00 .2byte 0xcd00 - 4ec: 002d .2byte 0x2d - 4ee: 0500 .2byte 0x500 - 4f0: 8b00 .2byte 0x8b00 - 4f2: 0025 .2byte 0x25 - 4f4: 0500 .2byte 0x500 - 4f6: f900 .2byte 0xf900 - 4f8: 000c .2byte 0xc - 4fa: 0500 .2byte 0x500 - 4fc: b000 .2byte 0xb000 - 4fe: 0012 .2byte 0x12 - 500: 0500 .2byte 0x500 - 502: f600 .2byte 0xf600 - 504: 000a .2byte 0xa - 506: 0500 .2byte 0x500 - 508: bf00 .2byte 0xbf00 - 50a: 0030 .2byte 0x30 - 50c: 0500 .2byte 0x500 - 50e: ae00 .2byte 0xae00 - 510: 0000 .2byte 0x0 - 512: 0500 .2byte 0x500 - 514: d300 .2byte 0xd300 - 516: 002a .2byte 0x2a - 518: 0500 .2byte 0x500 - 51a: e200 .2byte 0xe200 - 51c: 0011 .2byte 0x11 - 51e: 0500 .2byte 0x500 - 520: 8e00 .2byte 0x8e00 - 522: 0022 .2byte 0x22 - 524: 0500 .2byte 0x500 - 526: be00 .2byte 0xbe00 - 528: 05000013 addi x0,x0,80 - 52c: 8e00 .2byte 0x8e00 - 52e: 001d .2byte 0x1d - 530: 0500 .2byte 0x500 - 532: 3a00 .2byte 0x3a00 - 534: 0500002b .4byte 0x500002b - 538: 7100 .2byte 0x7100 - 53a: 002d .2byte 0x2d - 53c: 0500 .2byte 0x500 - 53e: 9a00 .2byte 0x9a00 - 540: 0028 .2byte 0x28 - 542: 0500 .2byte 0x500 - 544: e800 .2byte 0xe800 - 546: 0034 .2byte 0x34 - 548: 0500 .2byte 0x500 - 54a: f400 .2byte 0xf400 - 54c: 001a .2byte 0x1a - 54e: 0500 .2byte 0x500 - 550: 3400 .2byte 0x3400 - 552: 002e .2byte 0x2e - 554: 0500 .2byte 0x500 - 556: d300 .2byte 0xd300 - 558: 0005 .2byte 0x5 - 55a: 0500 .2byte 0x500 - 55c: 4900 .2byte 0x4900 - 55e: 0005 .2byte 0x5 - 560: 0500 .2byte 0x500 - 562: d900 .2byte 0xd900 - 564: 0034 .2byte 0x34 - 566: 0500 .2byte 0x500 - 568: 7500 .2byte 0x7500 - 56a: 0002 .2byte 0x2 - 56c: 0500 .2byte 0x500 - 56e: f500 .2byte 0xf500 - 570: 05000013 addi x0,x0,80 - 574: 2800 .2byte 0x2800 - 576: 0500001b .4byte 0x500001b - 57a: 9700 .2byte 0x9700 - 57c: 0500002f .4byte 0x500002f - 580: 1500 .2byte 0x1500 - 582: 0035 .2byte 0x35 - 584: 0500 .2byte 0x500 - 586: e000 .2byte 0xe000 - 588: 0018 .2byte 0x18 - 58a: 0500 .2byte 0x500 - 58c: 1300 .2byte 0x1300 - 58e: 0010 .2byte 0x10 - 590: 0500 .2byte 0x500 - 592: 8400 .2byte 0x8400 - 594: 0026 .2byte 0x26 - 596: 0500 .2byte 0x500 - 598: 0900 .2byte 0x900 - 59a: 002d .2byte 0x2d - 59c: 0500 .2byte 0x500 - 59e: 6700 .2byte 0x6700 - 5a0: 0032 .2byte 0x32 - 5a2: 0500 .2byte 0x500 - 5a4: db00 .2byte 0xdb00 - 5a6: 0031 .2byte 0x31 - 5a8: 0500 .2byte 0x500 - 5aa: ee00 .2byte 0xee00 - 5ac: 002d .2byte 0x2d - 5ae: 0500 .2byte 0x500 - 5b0: 8600 .2byte 0x8600 - 5b2: 000d .2byte 0xd - 5b4: 0500 .2byte 0x500 - 5b6: 6b00 .2byte 0x6b00 - 5b8: 0016 .2byte 0x16 - 5ba: 0500 .2byte 0x500 - 5bc: f600 .2byte 0xf600 - 5be: 0001 .2byte 0x1 - 5c0: 0500 .2byte 0x500 - 5c2: f500 .2byte 0xf500 - 5c4: 0500000b .4byte 0x500000b - 5c8: be00 .2byte 0xbe00 - 5ca: 0022 .2byte 0x22 - 5cc: 0500 .2byte 0x500 - 5ce: 3200 .2byte 0x3200 - 5d0: 001c .2byte 0x1c - 5d2: 0500 .2byte 0x500 - 5d4: fe00 .2byte 0xfe00 - 5d6: 000d .2byte 0xd - 5d8: 0500 .2byte 0x500 - 5da: 6000 .2byte 0x6000 - 5dc: 05000033 .4byte 0x5000033 - 5e0: 1a00 .2byte 0x1a00 - 5e2: 0029 .2byte 0x29 - 5e4: 0500 .2byte 0x500 - 5e6: bb00 .2byte 0xbb00 - 5e8: 0500002b .4byte 0x500002b - 5ec: 2000 .2byte 0x2000 - 5ee: 0011 .2byte 0x11 - 5f0: 0500 .2byte 0x500 - 5f2: d500 .2byte 0xd500 - 5f4: 001e .2byte 0x1e - 5f6: 0500 .2byte 0x500 - 5f8: 8000 .2byte 0x8000 - 5fa: 05000007 .4byte 0x5000007 - 5fe: f800 .2byte 0xf800 - 600: 0011 .2byte 0x11 - 602: 0500 .2byte 0x500 - 604: 9b00 .2byte 0x9b00 - 606: 0008 .2byte 0x8 - 608: 0500 .2byte 0x500 - 60a: 8600 .2byte 0x8600 - 60c: 0034 .2byte 0x34 - 60e: 0500 .2byte 0x500 - 610: 6300 .2byte 0x6300 - 612: 001e .2byte 0x1e - 614: 0500 .2byte 0x500 - 616: 3300 .2byte 0x3300 - 618: 0025 .2byte 0x25 - 61a: 0500 .2byte 0x500 - 61c: 8000 .2byte 0x8000 - 61e: 0009 .2byte 0x9 - 620: 0500 .2byte 0x500 - 622: c800 .2byte 0xc800 - 624: 0001 .2byte 0x1 - 626: 0500 .2byte 0x500 - 628: d300 .2byte 0xd300 - 62a: 05000017 auipc x0,0x5000 - 62e: 1600 .2byte 0x1600 - 630: 05000013 addi x0,x0,80 - 634: ba00 .2byte 0xba00 - 636: 05000007 .4byte 0x5000007 - 63a: a100 .2byte 0xa100 - 63c: 0016 .2byte 0x16 - 63e: 0500 .2byte 0x500 - 640: ae00 .2byte 0xae00 - 642: 0032 .2byte 0x32 - 644: 0500 .2byte 0x500 - 646: d100 .2byte 0xd100 - 648: 0500000b .4byte 0x500000b - 64c: 7900 .2byte 0x7900 - 64e: 05000033 .4byte 0x5000033 - 652: a400 .2byte 0xa400 - 654: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> - 658: 4700 .2byte 0x4700 - 65a: 0500001b .4byte 0x500001b - 65e: 7600 .2byte 0x7600 - 660: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> - 664: 9f00 .2byte 0x9f00 - 666: 001f 0500 9600 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x96 - 66c: 000a .2byte 0xa - 66e: 0500 .2byte 0x500 - 670: 5300 .2byte 0x5300 - 672: 0000 .2byte 0x0 - 674: 0500 .2byte 0x500 - 676: 9b00 .2byte 0x9b00 - 678: 0500000b .4byte 0x500000b - 67c: fb00 .2byte 0xfb00 - 67e: 001d .2byte 0x1d - 680: 0500 .2byte 0x500 - 682: ea00 .2byte 0xea00 - 684: 0006 .2byte 0x6 - 686: 0500 .2byte 0x500 - 688: 0200 .2byte 0x200 - 68a: 0009 .2byte 0x9 - 68c: 0500 .2byte 0x500 - 68e: ab00 .2byte 0xab00 - 690: 002d .2byte 0x2d - 692: 0500 .2byte 0x500 - 694: 9f00 .2byte 0x9f00 - 696: 0010 .2byte 0x10 - 698: 0500 .2byte 0x500 - 69a: 9700 .2byte 0x9700 - 69c: 0000 .2byte 0x0 - 69e: 0500 .2byte 0x500 - 6a0: a500 .2byte 0xa500 - 6a2: 000e .2byte 0xe - 6a4: 0500 .2byte 0x500 - 6a6: e800 .2byte 0xe800 - 6a8: 0012 .2byte 0x12 - 6aa: 0500 .2byte 0x500 - 6ac: a400 .2byte 0xa400 - 6ae: 0018 .2byte 0x18 - 6b0: 0500 .2byte 0x500 - 6b2: 3800 .2byte 0x3800 - 6b4: 05000027 .4byte 0x5000027 - 6b8: 2300 .2byte 0x2300 - 6ba: 0004 .2byte 0x4 - 6bc: 0500 .2byte 0x500 - 6be: 2200 .2byte 0x2200 - 6c0: 0028 .2byte 0x28 - 6c2: 0500 .2byte 0x500 - 6c4: fd00 .2byte 0xfd00 - 6c6: 0032 .2byte 0x32 - 6c8: 0500 .2byte 0x500 - 6ca: 8200 .2byte 0x8200 - 6cc: 0014 .2byte 0x14 - 6ce: 0500 .2byte 0x500 - 6d0: cf00 .2byte 0xcf00 - 6d2: 000d .2byte 0xd - 6d4: 0500 .2byte 0x500 - 6d6: 3900 .2byte 0x3900 - 6d8: 0000 .2byte 0x0 - 6da: 0500 .2byte 0x500 - 6dc: ea00 .2byte 0xea00 - 6de: 0026 .2byte 0x26 - 6e0: 0500 .2byte 0x500 - 6e2: de00 .2byte 0xde00 - 6e4: 0001 .2byte 0x1 - 6e6: 0500 .2byte 0x500 - 6e8: eb00 .2byte 0xeb00 - 6ea: 0010 .2byte 0x10 - 6ec: 0500 .2byte 0x500 - 6ee: 6400 .2byte 0x6400 - 6f0: 0500000b .4byte 0x500000b - 6f4: 3700 .2byte 0x3700 - 6f6: 001f 0500 b500 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xb5 - 6fc: 000c .2byte 0xc - 6fe: 0500 .2byte 0x500 - 700: 8400 .2byte 0x8400 - 702: 0010 .2byte 0x10 - 704: 0500 .2byte 0x500 - 706: e900 .2byte 0xe900 - 708: 0028 .2byte 0x28 - 70a: 0500 .2byte 0x500 - 70c: 0400 .2byte 0x400 - 70e: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> - 712: f400 .2byte 0xf400 - 714: 0030 .2byte 0x30 - 716: 0500 .2byte 0x500 - 718: 6a00 .2byte 0x6a00 - 71a: 0015 .2byte 0x15 - 71c: 0500 .2byte 0x500 - 71e: 2000 .2byte 0x2000 - 720: 0026 .2byte 0x26 - 722: 0500 .2byte 0x500 - 724: 3a00 .2byte 0x3a00 - 726: 0030 .2byte 0x30 - 728: 0500 .2byte 0x500 - 72a: 1300 .2byte 0x1300 - 72c: 0034 .2byte 0x34 - 72e: 0500 .2byte 0x500 - 730: 3100 .2byte 0x3100 - 732: 0014 .2byte 0x14 - 734: 0500 .2byte 0x500 - 736: 0900 .2byte 0x900 - 738: 000a .2byte 0xa - 73a: 0500 .2byte 0x500 - 73c: 6c00 .2byte 0x6c00 - 73e: 0034 .2byte 0x34 - 740: 0500 .2byte 0x500 - 742: 8f00 .2byte 0x8f00 - 744: 05000017 auipc x0,0x5000 - 748: 6600 .2byte 0x6600 - 74a: 05000017 auipc x0,0x5000 - 74e: a600 .2byte 0xa600 - 750: 0024 .2byte 0x24 - 752: 0500 .2byte 0x500 - 754: 2c00 .2byte 0x2c00 - 756: 0024 .2byte 0x24 - 758: 0500 .2byte 0x500 - 75a: 0d00 .2byte 0xd00 - 75c: 0001 .2byte 0x1 - 75e: 0500 .2byte 0x500 - 760: 9d00 .2byte 0x9d00 - 762: 0031 .2byte 0x31 - 764: 0500 .2byte 0x500 - 766: 4300 .2byte 0x4300 - 768: 0002 .2byte 0x2 - 76a: 0500 .2byte 0x500 - 76c: c600 .2byte 0xc600 - 76e: 0002 .2byte 0x2 - 770: 0500 .2byte 0x500 - 772: f000 .2byte 0xf000 - 774: 0031 .2byte 0x31 - 776: 0500 .2byte 0x500 - 778: fc00 .2byte 0xfc00 - 77a: 0019 .2byte 0x19 - 77c: 0500 .2byte 0x500 - 77e: 3400 .2byte 0x3400 - 780: 0012 .2byte 0x12 - 782: 0500 .2byte 0x500 - 784: 0900 .2byte 0x900 - 786: 000d .2byte 0xd - 788: 0500 .2byte 0x500 - 78a: ef00 .2byte 0xef00 - 78c: 0014 .2byte 0x14 - 78e: 0500 .2byte 0x500 - 790: b400 .2byte 0xb400 - 792: 0009 .2byte 0x9 - 794: 0500 .2byte 0x500 - 796: 7c00 .2byte 0x7c00 - 798: 0500002f .4byte 0x500002f - 79c: 2100 .2byte 0x2100 - 79e: 0018 .2byte 0x18 - 7a0: 0500 .2byte 0x500 - 7a2: 9e00 .2byte 0x9e00 - 7a4: 0500001b .4byte 0x500001b - 7a8: 8b00 .2byte 0x8b00 - 7aa: 0500000f fence ow,unknown - 7ae: ad00 .2byte 0xad00 - 7b0: 000a .2byte 0xa - 7b2: 0500 .2byte 0x500 - 7b4: f500 .2byte 0xf500 - 7b6: 0500000f fence ow,unknown - 7ba: 6400 .2byte 0x6400 - 7bc: 0006 .2byte 0x6 - 7be: 0500 .2byte 0x500 - 7c0: 8b00 .2byte 0x8b00 - 7c2: 0024 .2byte 0x24 - 7c4: 0500 .2byte 0x500 - 7c6: 8300 .2byte 0x8300 - 7c8: 0031 .2byte 0x31 - 7ca: 0500 .2byte 0x500 - 7cc: bd00 .2byte 0xbd00 - 7ce: 0019 .2byte 0x19 - 7d0: 0500 .2byte 0x500 - 7d2: 3800 .2byte 0x3800 - 7d4: 05000013 addi x0,x0,80 - 7d8: ea00 .2byte 0xea00 - 7da: 0022 .2byte 0x22 - 7dc: 0500 .2byte 0x500 - 7de: 6300 .2byte 0x6300 - 7e0: 0001 .2byte 0x1 - 7e2: 0500 .2byte 0x500 - 7e4: c700 .2byte 0xc700 - 7e6: 0000 .2byte 0x0 - 7e8: 0500 .2byte 0x500 - 7ea: 9d00 .2byte 0x9d00 - 7ec: 0500000f fence ow,unknown - 7f0: 4e00 .2byte 0x4e00 - 7f2: 001a .2byte 0x1a - 7f4: 0500 .2byte 0x500 - 7f6: d900 .2byte 0xd900 - 7f8: 001a .2byte 0x1a - 7fa: 0500 .2byte 0x500 - 7fc: 9e00 .2byte 0x9e00 - 7fe: 000d .2byte 0xd - 800: 0500 .2byte 0x500 - 802: 0100 .2byte 0x100 - 804: 05000013 addi x0,x0,80 - 808: 8700 .2byte 0x8700 - 80a: 0029 .2byte 0x29 - 80c: 0500 .2byte 0x500 - 80e: 6d00 .2byte 0x6d00 - 810: 0011 .2byte 0x11 - 812: 0500 .2byte 0x500 - 814: 7500 .2byte 0x7500 - 816: 0012 .2byte 0x12 - 818: 0500 .2byte 0x500 - 81a: ff00 .2byte 0xff00 - 81c: 0005 .2byte 0x5 - 81e: 0500 .2byte 0x500 - 820: d600 .2byte 0xd600 - 822: 0030 .2byte 0x30 - 824: 0500 .2byte 0x500 - 826: 2c00 .2byte 0x2c00 - 828: 0006 .2byte 0x6 - 82a: 0500 .2byte 0x500 - 82c: a400 .2byte 0xa400 - 82e: 0002 .2byte 0x2 - 830: 0500 .2byte 0x500 - 832: 9e00 .2byte 0x9e00 - 834: 0029 .2byte 0x29 - 836: 0500 .2byte 0x500 - 838: 4900 .2byte 0x4900 - 83a: 0015 .2byte 0x15 - 83c: 0500 .2byte 0x500 - 83e: ea00 .2byte 0xea00 - 840: 002c .2byte 0x2c - 842: 0500 .2byte 0x500 - 844: 1500 .2byte 0x1500 - 846: 000e .2byte 0xe - 848: 0500 .2byte 0x500 - 84a: 4800 .2byte 0x4800 - 84c: 05000017 auipc x0,0x5000 - 850: b400 .2byte 0xb400 - 852: 002a .2byte 0x2a - 854: 0500 .2byte 0x500 - 856: 6800 .2byte 0x6800 - 858: 001a .2byte 0x1a - 85a: 0500 .2byte 0x500 - 85c: 7200 .2byte 0x7200 - 85e: 0018 .2byte 0x18 - 860: 0500 .2byte 0x500 - 862: 3200 .2byte 0x3200 - 864: 0029 .2byte 0x29 - 866: 0500 .2byte 0x500 - 868: 6600 .2byte 0x6600 - 86a: 0029 .2byte 0x29 - 86c: 0500 .2byte 0x500 - 86e: 8c00 .2byte 0x8c00 - 870: 001a .2byte 0x1a - 872: 0500 .2byte 0x500 - 874: 7600 .2byte 0x7600 - 876: 002a .2byte 0x2a - 878: 0500 .2byte 0x500 - 87a: 1400 .2byte 0x1400 - 87c: 001f 0500 4300 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x43 - 882: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> - 886: db00 .2byte 0xdb00 - 888: 000e .2byte 0xe - 88a: 0500 .2byte 0x500 - 88c: 9900 .2byte 0x9900 - 88e: 002e .2byte 0x2e - 890: 0500 .2byte 0x500 - 892: 7900 .2byte 0x7900 - 894: 05000027 .4byte 0x5000027 - 898: 4d00 .2byte 0x4d00 - 89a: 0029 .2byte 0x29 - 89c: 0500 .2byte 0x500 - 89e: 5d00 .2byte 0x5d00 - 8a0: 0002 .2byte 0x2 - 8a2: 0500 .2byte 0x500 - 8a4: a900 .2byte 0xa900 - 8a6: 0015 .2byte 0x15 - 8a8: 0500 .2byte 0x500 - 8aa: 6100 .2byte 0x6100 - 8ac: 0026 .2byte 0x26 - 8ae: 0500 .2byte 0x500 - 8b0: 3800 .2byte 0x3800 - 8b2: 0031 .2byte 0x31 - 8b4: 0000 .2byte 0x0 - 8b6: 0005 .2byte 0x5 - 8b8: 0500 .2byte 0x500 - 8ba: 731d .2byte 0x731d - 8bc: 0014 .2byte 0x14 - 8be: 0600 .2byte 0x600 - 8c0: 6d64 .2byte 0x6d64 - 8c2: 0000 .2byte 0x0 - 8c4: 0500 .2byte 0x500 - 8c6: 3f65 .2byte 0x3f65 - 8c8: 0600002f .4byte 0x600002f - 8cc: 0066 .2byte 0x66 - 8ce: 000a .2byte 0xa - 8d0: 0500 .2byte 0x500 - 8d2: 000c4167 .4byte 0xc4167 - 8d6: 0600 .2byte 0x600 - 8d8: 6c6a .2byte 0x6c6a - 8da: 0000 .2byte 0x0 - 8dc: 0500 .2byte 0x500 - 8de: 0004e56b .4byte 0x4e56b - 8e2: 0600 .2byte 0x600 - 8e4: e56e .2byte 0xe56e - 8e6: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> - 8ea: 0030906f jal x0,a0ec <_start-0x7fff5f14> - 8ee: 0600 .2byte 0x600 - 8f0: 5070 .2byte 0x5070 - 8f2: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> - 8f6: e371 .2byte 0xe371 - 8f8: 06000017 auipc x0,0x6000 - 8fc: e474 .2byte 0xe474 - 8fe: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> - 902: 5f75 .2byte 0x5f75 - 904: 0031 .2byte 0x31 - 906: 0600 .2byte 0x600 - 908: 1678 .2byte 0x1678 - 90a: 05000027 .4byte 0x5000027 - 90e: 2079 .2byte 0x2079 - 910: 06000027 .4byte 0x6000027 - 914: 307a .2byte 0x307a - 916: 0500002b .4byte 0x500002b - 91a: 0034be7b .4byte 0x34be7b - 91e: 0600 .2byte 0x600 - 920: 157e .2byte 0x157e - 922: 05000027 .4byte 0x5000027 - 926: ae7f 002f 0600 0182 .byte 0x7f, 0xae, 0x2f, 0x00, 0x00, 0x06, 0x82, 0x01, 0xd7, 0x32, 0x00, 0x00, 0x05, 0x83 - 92e: 32d7 0000 8305 - 934: 8c01 .2byte 0x8c01 - 936: 0018 .2byte 0x18 - 938: 0600 .2byte 0x600 - 93a: 0184 .2byte 0x184 - 93c: 3179 .2byte 0x3179 - 93e: 0000 .2byte 0x0 - 940: 8505 .2byte 0x8505 - 942: e701 .2byte 0xe701 - 944: 0020 .2byte 0x20 - 946: 0600 .2byte 0x600 - 948: 0188 .2byte 0x188 - 94a: 32d6 .2byte 0x32d6 - 94c: 0000 .2byte 0x0 - 94e: 8905 .2byte 0x8905 - 950: 3301 .2byte 0x3301 - 952: 0032 .2byte 0x32 - 954: 0600 .2byte 0x600 - 956: 018c .2byte 0x18c - 958: 2a05 .2byte 0x2a05 - 95a: 0000 .2byte 0x0 - 95c: 8d05 .2byte 0x8d05 - 95e: 1f01 .2byte 0x1f01 - 960: 0016 .2byte 0x16 - 962: 0600 .2byte 0x600 - 964: 018e .2byte 0x18e - 966: 0000197f 3e018f05 .byte 0x7f, 0x19, 0x00, 0x00, 0x05, 0x8f, 0x01, 0x3e, 0x1e, 0x00, 0x00, 0x06 - 96e: 0600001e - 972: 0190 .2byte 0x190 - 974: 2a04 .2byte 0x2a04 - 976: 0000 .2byte 0x0 - 978: 9105 .2byte 0x9105 - 97a: 0001 .2byte 0x1 - 97c: 06000007 .4byte 0x6000007 - 980: 0192 .2byte 0x192 - 982: 2674 .2byte 0x2674 - 984: 0000 .2byte 0x0 - 986: 9305 .2byte 0x9305 - 988: a401 .2byte 0xa401 - 98a: 0001 .2byte 0x1 - 98c: 0600 .2byte 0x600 - 98e: 0194 .2byte 0x194 - 990: 00000153 .4byte 0x153 - 994: 9505 .2byte 0x9505 - 996: 1301 .2byte 0x1301 - 998: 0009 .2byte 0x9 - 99a: 0600 .2byte 0x600 - 99c: 0196 .2byte 0x196 - 99e: 00002673 .4byte 0x2673 - 9a2: 9705 .2byte 0x9705 - 9a4: a201 .2byte 0xa201 - 9a6: 0020 .2byte 0x20 - 9a8: 0600 .2byte 0x600 - 9aa: 0198 .2byte 0x198 - 9ac: 0f12 .2byte 0xf12 - 9ae: 0000 .2byte 0x0 - 9b0: 9905 .2byte 0x9905 - 9b2: 4801 .2byte 0x4801 - 9b4: 0034 .2byte 0x34 - 9b6: 0600 .2byte 0x600 - 9b8: 019a .2byte 0x19a - 9ba: 3080 .2byte 0x3080 - 9bc: 0000 .2byte 0x0 - 9be: 9b05 .2byte 0x9b05 - 9c0: ce01 .2byte 0xce01 - 9c2: 06000027 .4byte 0x6000027 - 9c6: 019c .2byte 0x19c - 9c8: 0f11 .2byte 0xf11 - 9ca: 0000 .2byte 0x0 - 9cc: 9d05 .2byte 0x9d05 - 9ce: a601 .2byte 0xa601 - 9d0: 0004 .2byte 0x4 - 9d2: 0600 .2byte 0x600 - 9d4: 019e .2byte 0x19e - 9d6: 144c .2byte 0x144c - 9d8: 0000 .2byte 0x0 - 9da: 9f05 .2byte 0x9f05 - 9dc: d101 .2byte 0xd101 - 9de: 0024 .2byte 0x24 - 9e0: 0600 .2byte 0x600 - 9e2: 01a0 .2byte 0x1a0 - 9e4: 09ce .2byte 0x9ce - 9e6: 0000 .2byte 0x0 - 9e8: a105 .2byte 0xa105 - 9ea: 2901 .2byte 0x2901 - 9ec: 06000023 sb x0,96(x0) # 60 <_start-0x7fffffa0> - 9f0: 01a2 .2byte 0x1a2 - 9f2: 0000144b .4byte 0x144b - 9f6: a305 .2byte 0xa305 - 9f8: 0b01 .2byte 0xb01 - 9fa: 001d .2byte 0x1d - 9fc: 0600 .2byte 0x600 - 9fe: 01a5 .2byte 0x1a5 - a00: 0fc1 .2byte 0xfc1 - a02: 0000 .2byte 0x0 - a04: a605 .2byte 0xa605 - a06: 2201 .2byte 0x2201 - a08: 0600000b .4byte 0x600000b - a0c: 1f2901a7 .4byte 0x1f2901a7 - a10: 0000 .2byte 0x0 - a12: a805 .2byte 0xa805 - a14: f201 .2byte 0xf201 - a16: 0016 .2byte 0x16 - a18: 0600 .2byte 0x600 - a1a: 01a9 .2byte 0x1a9 - a1c: 0fc0 .2byte 0xfc0 - a1e: 0000 .2byte 0x0 - a20: aa05 .2byte 0xaa05 - a22: 7101 .2byte 0x7101 - a24: 0600002b .4byte 0x600002b - a28: 32c701ab .4byte 0x32c701ab - a2c: 0000 .2byte 0x0 - a2e: ac05 .2byte 0xac05 - a30: 7101 .2byte 0x7101 - a32: 06000003 lb x0,96(x0) # 60 <_start-0x7fffffa0> - a36: 01ad .2byte 0x1ad - a38: 0a44 .2byte 0xa44 - a3a: 0000 .2byte 0x0 - a3c: ae05 .2byte 0xae05 - a3e: 3d01 .2byte 0x3d01 - a40: 0019 .2byte 0x19 - a42: 0600 .2byte 0x600 - a44: 32c601af .4byte 0x32c601af - a48: 0000 .2byte 0x0 - a4a: b005 .2byte 0xb005 - a4c: 1b01 .2byte 0x1b01 - a4e: 0600002f .4byte 0x600002f - a52: 01b1 .2byte 0x1b1 - a54: 1e15 .2byte 0x1e15 - a56: 0000 .2byte 0x0 - a58: b205 .2byte 0xb205 - a5a: 0f01 .2byte 0xf01 - a5c: 0014 .2byte 0x14 - a5e: 0600 .2byte 0x600 - a60: 1d7f01b3 .4byte 0x1d7f01b3 - a64: 0000 .2byte 0x0 - a66: b405 .2byte 0xb405 - a68: c901 .2byte 0xc901 - a6a: 002e .2byte 0x2e - a6c: 0600 .2byte 0x600 - a6e: 01b5 .2byte 0x1b5 - a70: 1e14 .2byte 0x1e14 - a72: 0000 .2byte 0x0 - a74: b605 .2byte 0xb605 - a76: f901 .2byte 0xf901 - a78: 0600002b .4byte 0x600002b - a7c: 24c201b7 lui x3,0x24c20 - a80: 0000 .2byte 0x0 - a82: b805 .2byte 0xb805 - a84: 6101 .2byte 0x6101 - a86: 0021 .2byte 0x21 - a88: 0600 .2byte 0x600 - a8a: 01b9 .2byte 0x1b9 - a8c: 0f29 .2byte 0xf29 - a8e: 0000 .2byte 0x0 - a90: ba05 .2byte 0xba05 - a92: b401 .2byte 0xb401 - a94: 06000023 sb x0,96(x0) # 60 <_start-0x7fffffa0> - a98: 24c101bb .4byte 0x24c101bb - a9c: 0000 .2byte 0x0 - a9e: bc05 .2byte 0xbc05 - aa0: c401 .2byte 0xc401 - aa2: 0012 .2byte 0x12 - aa4: 0600 .2byte 0x600 - aa6: 34b301bf c0050000 .8byte 0xc005000034b301bf - aae: 4d01 .2byte 0x4d01 - ab0: 0009 .2byte 0x9 - ab2: 0600 .2byte 0x600 - ab4: 01c1 .2byte 0x1c1 - ab6: 1f94 .2byte 0x1f94 - ab8: 0000 .2byte 0x0 - aba: c205 .2byte 0xc205 - abc: 6201 .2byte 0x6201 - abe: 0019 .2byte 0x19 - ac0: 0600 .2byte 0x600 - ac2: 01c5 .2byte 0x1c5 - ac4: 34b2 .2byte 0x34b2 - ac6: 0000 .2byte 0x0 - ac8: c605 .2byte 0xc605 - aca: 8201 .2byte 0x8201 - acc: 0600001b .4byte 0x600001b - ad0: 01c9 .2byte 0x1c9 - ad2: 2580 .2byte 0x2580 - ad4: 0000 .2byte 0x0 - ad6: ca05 .2byte 0xca05 - ad8: 4a01 .2byte 0x4a01 - ada: 0006 .2byte 0x6 - adc: 0600 .2byte 0x600 - ade: 0fb501cb .4byte 0xfb501cb - ae2: 0000 .2byte 0x0 - ae4: cc05 .2byte 0xcc05 - ae6: 3e01 .2byte 0x3e01 - ae8: 0008 .2byte 0x8 - aea: 0600 .2byte 0x600 - aec: 01cd .2byte 0x1cd - aee: 257f 0000 ce05 0701 .byte 0x7f, 0x25, 0x00, 0x00, 0x05, 0xce, 0x01, 0x07, 0x04, 0x00, 0x00, 0x06, 0xd2, 0x01 - af6: 0004 0600 01d2 - afc: 00001733 sll x14,x0,x0 - b00: d305 .2byte 0xd305 - b02: 1701 .2byte 0x1701 - b04: 0025 .2byte 0x25 - b06: 0600 .2byte 0x600 - b08: 01d4 .2byte 0x1d4 - b0a: 0f7f 0000 d505 3801 .byte 0x7f, 0x0f, 0x00, 0x00, 0x05, 0xd5, 0x01, 0x38, 0x0f, 0x00 - b12: 000f - b14: 0600 .2byte 0x600 - b16: 0ae701d7 .4byte 0xae701d7 - b1a: 0000 .2byte 0x0 - b1c: d805 .2byte 0xd805 - b1e: 0501 .2byte 0x501 - b20: 002e .2byte 0x2e - b22: 0600 .2byte 0x600 - b24: 01d9 .2byte 0x1d9 - b26: 000026db .4byte 0x26db - b2a: da05 .2byte 0xda05 - b2c: d501 .2byte 0xd501 - b2e: 06000007 .4byte 0x6000007 - b32: 01dc .2byte 0x1dc - b34: 0000173f 4101dd05 .8byte 0x4101dd050000173f - b3c: 0016 .2byte 0x16 - b3e: 0600 .2byte 0x600 - b40: 01df 2b26 0000 .byte 0xdf, 0x01, 0x26, 0x2b, 0x00, 0x00 - b46: e005 .2byte 0xe005 - b48: 0a01 .2byte 0xa01 - b4a: 0028 .2byte 0x28 - b4c: 0600 .2byte 0x600 - b4e: 01e1 .2byte 0x1e1 - b50: 15bd .2byte 0x15bd - b52: 0000 .2byte 0x0 - b54: e205 .2byte 0xe205 - b56: bc01 .2byte 0xbc01 - b58: 002c .2byte 0x2c - b5a: 0600 .2byte 0x600 - b5c: 01e4 .2byte 0x1e4 - b5e: 0000132f .4byte 0x132f - b62: e505 .2byte 0xe505 - b64: 9c01 .2byte 0x9c01 - b66: 0034 .2byte 0x34 - b68: 0600 .2byte 0x600 - b6a: 01e6 .2byte 0x1e6 - b6c: 2eee .2byte 0x2eee - b6e: 0000 .2byte 0x0 - b70: e705 .2byte 0xe705 - b72: e801 .2byte 0xe801 - b74: 000d .2byte 0xd - b76: 0600 .2byte 0x600 - b78: 2dc601ef jal x3,60e54 <_start-0x7ff9f1ac> - b7c: 0000 .2byte 0x0 - b7e: f005 .2byte 0xf005 - b80: df01 .2byte 0xdf01 - b82: 06000023 sb x0,96(x0) # 60 <_start-0x7fffffa0> - b86: 01f1 .2byte 0x1f1 - b88: 00003143 .4byte 0x3143 - b8c: f205 .2byte 0xf205 - b8e: 0c01 .2byte 0xc01 - b90: 0002 .2byte 0x2 - b92: 0600 .2byte 0x600 - b94: 200f01f3 .4byte 0x200f01f3 - b98: 0000 .2byte 0x0 - b9a: f405 .2byte 0xf405 - b9c: 8d01 .2byte 0x8d01 - b9e: 000e .2byte 0xe - ba0: 0600 .2byte 0x600 - ba2: 01f5 .2byte 0x1f5 - ba4: 107c .2byte 0x107c - ba6: 0000 .2byte 0x0 - ba8: f605 .2byte 0xf605 - baa: 4901 .2byte 0x4901 - bac: 0024 .2byte 0x24 - bae: 0600 .2byte 0x600 - bb0: 2dc501f7 .4byte 0x2dc501f7 - bb4: 0000 .2byte 0x0 - bb6: f805 .2byte 0xf805 - bb8: bb01 .2byte 0xbb01 - bba: 0010 .2byte 0x10 - bbc: 0600 .2byte 0x600 - bbe: 01f9 .2byte 0x1f9 - bc0: 3142 .2byte 0x3142 - bc2: 0000 .2byte 0x0 - bc4: fa05 .2byte 0xfa05 - bc6: 5701 .2byte 0x5701 - bc8: 06000003 lb x0,96(x0) # 60 <_start-0x7fffffa0> - bcc: 200e01fb .4byte 0x200e01fb - bd0: 0000 .2byte 0x0 - bd2: fc05 .2byte 0xfc05 - bd4: 2401 .2byte 0x2401 - bd6: 001e .2byte 0x1e - bd8: 0600 .2byte 0x600 - bda: 01fd .2byte 0x1fd - bdc: 0000107b .4byte 0x107b - be0: fe05 .2byte 0xfe05 - be2: bf01 .2byte 0xbf01 - be4: 0021 .2byte 0x21 - be6: 0600 .2byte 0x600 - be8: 01ff 2018 0000 8005 .byte 0xff, 0x01, 0x18, 0x20, 0x00, 0x00, 0x05, 0x80, 0x02, 0x84 - bf0: 8402 - bf2: 0011 .2byte 0x11 - bf4: 0600 .2byte 0x600 - bf6: 0281 .2byte 0x281 - bf8: 00002017 auipc x0,0x2 - bfc: 8205 .2byte 0x8205 - bfe: c002 .2byte 0xc002 - c00: 0029 .2byte 0x29 - c02: 0000 .2byte 0x0 - c04: 0005 .2byte 0x5 - c06: 2c02 .2byte 0x2c02 - c08: 0002 .2byte 0x2 - c0a: 0700 .2byte 0x700 - c0c: 002a .2byte 0x2a - c0e: 0000 .2byte 0x0 - c10: 03010003 lb x0,48(x2) - c14: 0301 .2byte 0x301 - c16: 0205 .2byte 0x205 - c18: 3532 .2byte 0x3532 - c1a: 0000 .2byte 0x0 - c1c: 03040403 lb x8,48(x8) # 33323030 <_start-0x4ccdcfd0> - c20: b607020b .4byte 0xb607020b - c24: 0008 .2byte 0x8 - c26: 0400 .2byte 0x400 - c28: 0d05 .2byte 0xd05 - c2a: 1a3a .2byte 0x1a3a - c2c: 0000 .2byte 0x0 - c2e: 0404 .2byte 0x404 - c30: 0004 .2byte 0x4 + 72: 682e6363 bltu x28,x2,6f8 <__DATA_BEGIN__-0xf908> + 76: 6d00 .2byte 0x6d00 + 78: 6679 .2byte 0x6679 + 7a: 6e75 .2byte 0x6e75 + 7c: 70632e63 .4byte 0x70632e63 + 80: 0070 .2byte 0x70 + 82: 796d .2byte 0x796d + 84: 7566 .2byte 0x7566 + 86: 636e .2byte 0x636e + 88: 75727453 .4byte 0x75727453 + 8c: 632e7463 bgeu x28,x18,6b4 <__DATA_BEGIN__-0xf94c> + 90: 7070 .2byte 0x7070 + 92: 6d00 .2byte 0x6d00 + 94: 6679 .2byte 0x6679 + 96: 6e75 .2byte 0x6e75 + 98: 72745363 bge x8,x7,7be <__DATA_BEGIN__-0xf842> + 9c: 6375 .2byte 0x6375 + 9e: 2e74 .2byte 0x2e74 + a0: 0068 .2byte 0x68 + a2: 796d .2byte 0x796d + a4: 7566 .2byte 0x7566 + a6: 636e .2byte 0x636e + a8: 75727453 .4byte 0x75727453 + ac: 4f4f7463 bgeu x30,x20,594 <__DATA_BEGIN__-0xfa6c> + b0: 2e50 .2byte 0x2e50 + b2: 00707063 bgeu x0,x7,b2 <__DATA_BEGIN__-0xff4e> + b6: 796d .2byte 0x796d + b8: 7566 .2byte 0x7566 + ba: 636e .2byte 0x636e + bc: 75727453 .4byte 0x75727453 + c0: 4f4f7463 bgeu x30,x20,5a8 <__DATA_BEGIN__-0xfa58> + c4: 2e50 .2byte 0x2e50 + c6: 0068 .2byte 0x68 + c8: 796d .2byte 0x796d + ca: 7566 .2byte 0x7566 + cc: 636e .2byte 0x636e + ce: 2e504f4f .4byte 0x2e504f4f + d2: 00707063 bgeu x0,x7,d2 <__DATA_BEGIN__-0xff2e> + d6: 6d6f682f .4byte 0x6d6f682f + da: 2f65 .2byte 0x2f65 + dc: 7375 .2byte 0x7375 + de: 7265 .2byte 0x7265 + e0: 7369722f .4byte 0x7369722f + e4: 722f7663 bgeu x30,x2,810 <__DATA_BEGIN__-0xf7f0> + e8: 7369 .2byte 0x7369 + ea: 722f7663 bgeu x30,x2,816 <__DATA_BEGIN__-0xf7ea> + ee: 7369 .2byte 0x7369 + f0: 34367663 bgeu x12,x3,43c <__DATA_BEGIN__-0xfbc4> + f4: 752d .2byte 0x752d + f6: 6b6e .2byte 0x6b6e + f8: 6f6e .2byte 0x6f6e + fa: 652d6e77 .4byte 0x652d6e77 + fe: 666c .2byte 0x666c + 100: 636e692f .4byte 0x636e692f + 104: 756c .2byte 0x756c + 106: 6564 .2byte 0x6564 + 108: 2b2b632f .4byte 0x2b2b632f + 10c: 2e32312f .4byte 0x2e32312f + 110: 2e32 .2byte 0x2e32 + 112: 0030 .2byte 0x30 + 114: 6d6f682f .4byte 0x6d6f682f + 118: 2f65 .2byte 0x2f65 + 11a: 7375 .2byte 0x7375 + 11c: 7265 .2byte 0x7265 + 11e: 7369722f .4byte 0x7369722f + 122: 722f7663 bgeu x30,x2,84e <__DATA_BEGIN__-0xf7b2> + 126: 7369 .2byte 0x7369 + 128: 722f7663 bgeu x30,x2,854 <__DATA_BEGIN__-0xf7ac> + 12c: 7369 .2byte 0x7369 + 12e: 34367663 bgeu x12,x3,47a <__DATA_BEGIN__-0xfb86> + 132: 752d .2byte 0x752d + 134: 6b6e .2byte 0x6b6e + 136: 6f6e .2byte 0x6f6e + 138: 652d6e77 .4byte 0x652d6e77 + 13c: 666c .2byte 0x666c + 13e: 636e692f .4byte 0x636e692f + 142: 756c .2byte 0x756c + 144: 6564 .2byte 0x6564 + 146: 2b2b632f .4byte 0x2b2b632f + 14a: 2e32312f .4byte 0x2e32312f + 14e: 2e32 .2byte 0x2e32 + 150: 2f30 .2byte 0x2f30 + 152: 6972 .2byte 0x6972 + 154: 36766373 .4byte 0x36766373 + 158: 2d34 .2byte 0x2d34 + 15a: 6e75 .2byte 0x6e75 + 15c: 776f6e6b .4byte 0x776f6e6b + 160: 2d6e .2byte 0x2d6e + 162: 6c65 .2byte 0x6c65 + 164: 2f66 .2byte 0x2f66 + 166: 6962 .2byte 0x6962 + 168: 7374 .2byte 0x7374 + 16a: 6300 .2byte 0x6300 + 16c: 69647473 .4byte 0x69647473 + 170: 746e .2byte 0x746e + 172: 6d00 .2byte 0x6d00 + 174: 6679 .2byte 0x6679 + 176: 6e75 .2byte 0x6e75 + 178: 504f4f63 blt x30,x4,696 <__DATA_BEGIN__-0xf96a> + 17c: 682e .2byte 0x682e + 17e: 7070 .2byte 0x7070 + 180: 6300 .2byte 0x6300 + 182: 6f632b2b .4byte 0x6f632b2b + 186: 666e .2byte 0x666e + 188: 6769 .2byte 0x6769 + 18a: 682e .2byte 0x682e + ... diff --git a/cpp/tracked_files.txt b/cpp/tracked_files.txt new file mode 100644 index 0000000..fb2f94e --- /dev/null +++ b/cpp/tracked_files.txt @@ -0,0 +1,5 @@ +_crt0.S +main.cpp +myfunc.cpp +myfunc.h +_rvmain.cc diff --git a/cpp/try/3.py b/cpp/try/3.py new file mode 100644 index 0000000..d12e3b0 --- /dev/null +++ b/cpp/try/3.py @@ -0,0 +1,16 @@ +import asyncio +import websockets + +async def consume_ws_latest_records(): + uri = "ws://172.24.0.3:3333/ws_latest_records" + + async with websockets.connect(uri) as websocket: + while True: + message = input("Enter a message to send: ") + await websocket.send(message) + + response = await websocket.recv() + print(f"Received from server: {response}") + +if __name__ == "__main__": + asyncio.get_event_loop().run_until_complete(consume_ws_latest_records()) diff --git a/cpp/try/__os-build b/cpp/try/__os-build new file mode 100644 index 0000000..025913d --- /dev/null +++ b/cpp/try/__os-build @@ -0,0 +1 @@ +g++ -std=c++17 -o websocket-client-sync main.cpp myfunc.cpp -lboost_system -lboost_thread -lboost_coroutine -ljsoncpp diff --git a/cpp/try/__os-run b/cpp/try/__os-run new file mode 100644 index 0000000..b500c13 --- /dev/null +++ b/cpp/try/__os-run @@ -0,0 +1 @@ +./websocket-client-sync ws://localhost:3333/ws diff --git a/cpp/try/main.cpp b/cpp/try/main.cpp new file mode 100644 index 0000000..9f7dea1 --- /dev/null +++ b/cpp/try/main.cpp @@ -0,0 +1,155 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace beast = boost::beast; +namespace websocket = beast::websocket; +namespace net = boost::asio; +using tcp = boost::asio::ip::tcp; + +struct Person { + std::string name; + int age; + long long timestamp; +}; + +Json::Value serializePerson(const Person& person) { + Json::Value jsonPerson; + jsonPerson["name"] = person.name; + jsonPerson["age"] = person.age; + jsonPerson["timestamp"] = static_cast(person.timestamp); + return jsonPerson; +} + +std::tuple parseURI(const std::string& uri) { + std::regex uriRegex(R"(^ws://([^:/]+):(\d+)(/.+)$)"); + std::smatch match; + + if (std::regex_match(uri, match, uriRegex)) { + return std::make_tuple(match[1].str(), match[2].str(), match[3].str()); + } else { + throw std::invalid_argument("Nieprawidłowe URI"); + } +} + +template +T getInput(const std::string& prompt) { + T value; + while (true) { + std::cout << prompt; + std::cin >> value; + + if (std::cin.fail()) { + std::cin.clear(); + std::cin.ignore(std::numeric_limits::max(), '\n'); + std::cerr << "Błąd! Spróbuj ponownie." << std::endl; + } else { + std::cin.ignore(std::numeric_limits::max(), '\n'); + break; + } + } + + return value; +} + +void iterateCharBuffer(const char* charBuffer, std::size_t bufferSize) { + for (std::size_t i = 0; i < bufferSize; ++i) { + std::cout << charBuffer[i]; + } + std::cout << std::endl; + + // Example: Call the function you want to apply to the char buffer +} + +int main(int argc, char** argv) { + try { + if (argc != 2) { + std::cerr << "Sposób użycia: " << argv[0] << " \n"; + return EXIT_FAILURE; + } + + std::string uri = argv[1]; + auto uriParts = parseURI(uri); + std::string host, port, endpoint; + std::tie(host, port, endpoint) = uriParts; + + net::io_context io_context; + + websocket::stream ws(io_context); + tcp::resolver resolver(io_context); + auto endpoints = resolver.resolve(host, port); + net::connect(ws.next_layer(), endpoints); + + ws.handshake(host, endpoint); + + while (true) { + std::cout << "Menu:\n"; + std::cout << "1. Dodaj rekord\n"; + std::cout << "2. Zwróć ostatnie rekordy\n"; + std::cout << "3. Wyjście\n"; + + int choice = getInput("Wybierz opcję: "); + + if (choice == 1) { + + std::string name = getInput("Podaj imię: "); + int age = getInput("Podaj wiek: "); + + Person personToSend{name, age, std::chrono::duration_cast( + std::chrono::system_clock::now().time_since_epoch()).count()}; + + Json::Value jsonPerson = serializePerson(personToSend); + + ws.write(net::buffer(Json::writeString(Json::StreamWriterBuilder(), jsonPerson))); + + } else if (choice == 2) { + + ws.write(net::buffer("get_latest_records")); + + beast::flat_buffer buffer; + ws.read(buffer); + + std::cout << "Otrzymano: " << beast::make_printable(buffer.data()) << std::endl; + + const char* bufferData = boost::asio::buffer_cast(buffer.data()); + std::size_t bufferSize = boost::asio::buffer_size(buffer.data()); + + char* charBuffer = new char[bufferSize + 1]; + std::memcpy(charBuffer, bufferData, bufferSize); + charBuffer[bufferSize] = '\0'; + + iterateCharBuffer(charBuffer, bufferSize); + + delete[] charBuffer; + + buffer.consume(buffer.size()); + + } else if (choice == 3) { + + std::cout << "Zamykanie programu...\n"; + break; + + } else { + + std::cout << "Nieprawidłowy wybór. Spróbuj ponownie.\n"; + + } + + std::this_thread::sleep_for(std::chrono::milliseconds(200)); + } + + } catch (std::exception const& e) { + std::cerr << "Błąd: " << e.what() << std::endl; + return EXIT_FAILURE; + } + + return EXIT_SUCCESS; +} diff --git a/cpp/try/uri.cpp b/cpp/try/uri.cpp new file mode 100644 index 0000000..cff7149 --- /dev/null +++ b/cpp/try/uri.cpp @@ -0,0 +1,53 @@ +#include +#include +#include + +#include +#include +#include + +namespace beast = boost::beast; +namespace websocket = beast::websocket; +namespace net = boost::asio; +using tcp = boost::asio::ip::tcp; + +std::tuple parseURI(const std::string& uri) { + std::regex uriRegex(R"(^ws://([^:/]+):(\d+)(/.+)$)"); + std::smatch match; + + if (std::regex_match(uri, match, uriRegex)) { + return std::make_tuple(match[1].str(), match[2].str(), match[3].str()); + } else { + throw std::invalid_argument("Nieprawidłowe URI"); + } +} + +int main() { + std::string uri = "ws://172.24.0.3:3333"; + std::cout << "Dostarczone URI: " << uri << std::endl; + + try { + auto uriParts = parseURI(uri); + std::string host, port, endpoint; + std::tie(host, port, endpoint) = uriParts; + + net::io_context io_context; + + // Utwórz obiekt WebSocket + websocket::stream ws(io_context); + + // Połącz z serwerem WebSocket + tcp::resolver resolver(io_context); + auto endpoints = resolver.resolve(host, port); + net::connect(ws.next_layer(), endpoints); + + // Wysyłanie danych na serwer WebSocket + ws.handshake(host, endpoint); + + } catch (const std::exception& e) { + std::cerr << "Błąd: " << e.what() << std::endl; + return EXIT_FAILURE; + } + + return EXIT_SUCCESS; +} diff --git a/vvlad/cpp/Make.rules b/vvlad/cpp/Make.rules new file mode 100644 index 0000000..2bd12e9 --- /dev/null +++ b/vvlad/cpp/Make.rules @@ -0,0 +1,81 @@ + +ARCH=riscv64-unknown-elf +GNU_DIR=$(HOME)/riscv/riscv/ +GNU_BIN=$(GNU_DIR)/bin + + +CC=$(GNU_BIN)/$(ARCH)-gcc +CXX=$(GNU_BIN)/$(ARCH)-g++ +AS=$(GNU_BIN)/$(ARCH)-as +LD=$(GNU_BIN)/$(ARCH)-ld +OBJCOPY=$(GNU_BIN)/$(ARCH)-objcopy +OBJDUMP=$(GNU_BIN)/$(ARCH)-objdump +SIZE=$(GNU_BIN)/$(ARCH)-size +AR=$(GNU_BIN)/$(ARCH)-ar +RANLIB=$(GNU_BIN)/$(ARCH)-ranlib + + +CFLAGS+=-ffreestanding +CFLAGS+=-fno-pic +CFLAGS+=-march=rv32i -mabi=ilp32 +CFLAGS+= -g + + +LDFLAGS+=-nostdlib +LDFLAGS+=-Wl,-Ttext=0x00000000 + +# see: https://github.com/riscv/riscv-gcc/issues/120 +#LDFLAGS+=-Wl,--no-relax + + + +ASFLAGS+=$(CFLAGS) +CXXFLAGS+=$(CFLAGS) + +CLEAN_DIRS=$(SUBDIRS:%=clean-%) +ALL_DIRS=$(SUBDIRS:%=all-%) + +OBJDUMPFLAGS+=-Mnumeric,no-aliases + +.PHONY: all clean world $(CLEAN_DIRS) $(ALL_DIRS) + + +%.bin : % + $(OBJCOPY) $< -O binary $@ + +%.lst : % + $(OBJDUMP) $(OBJDUMPFLAGS) -dr --disassemble-all $< > $<.lst + +% : %.o + $(LINK.cc) $(LDFLAGS) -o $@ $^ $(LDLIBS) + $(SIZE) -x -A $@ + +%.s: %.c + $(COMPILE.c) -S -o $@ $< + +%.s: %.cc + $(COMPILE.cc) -S -o $@ $< + +%.o: %.c + $(COMPILE.c) -o $@ $< + +%.o: %.cc + $(COMPILE.cc) -o $@ $< + +%.srec: % + $(OBJCOPY) $< -O srec $@ + + + + +all:: $(ALL_DIRS) + +clean:: $(CLEAN_DIRS) + +$(ALL_DIRS):: + $(MAKE) -C $(@:all-%=%) all + +$(CLEAN_DIRS):: + $(MAKE) -C $(@:clean-%=%) clean + +world:: clean all diff --git a/vvlad/cpp/Makefile b/vvlad/cpp/Makefile new file mode 100644 index 0000000..e677ff3 --- /dev/null +++ b/vvlad/cpp/Makefile @@ -0,0 +1,24 @@ +TOP=./ +include $(TOP)/Make.rules + +LDLIBS= +CFLAGS+=-O0 -g + +LDFLAGS+=-Wl,--no-relax +LDFLAGS+=-Wl,-Tdata=0x10000 + +PROGS=prog prog.bin prog.lst + +all:: $(PROGS) + +prog: _crt0.o _rvmain.o myfunc.o myfuncStruct.o myfuncStructOOP.o myfuncOOP.o + $(LINK.cc) -o $@ $^ $(LDLIBS) + $(SIZE) -A -x $@ + +clean:: + rm -f $(PROGS) *.o *.s *.lst *.bin *.srec *.dis + +.PHONY: run +run: prog.bin + ../../../src/rvddt -l0x3000 -f prog.bin + diff --git a/vvlad/cpp/_crt0.S b/vvlad/cpp/_crt0.S new file mode 100644 index 0000000..bc6a10a --- /dev/null +++ b/vvlad/cpp/_crt0.S @@ -0,0 +1,43 @@ + .text + .global _start + .type _start, @function + +_start: + # Initialize global pointer + .option push + .option norelax + la gp, __global_pointer$ + .option pop + + li sp, 0x1fff0 + + # Clear the bss segment + la a0, __bss_start + la a1, __BSS_END__ + + j finish_bss +clear_bss: + bgeu a0, a1, finish_bss + sb x0, 0(a0) + addi a0, a0, 1 + beq x0, x0, clear_bss +finish_bss: + + nop //! + + call main + + nop //! + + # abort execution here + ebreak + + .section .rodata +alfabet: + .string "abcdefghijklmnopqrstuwxyz" +slowo: + + .section .data +wynik: + .string "mpabi" + .space 26 # rezerwuje 26 bajtów dla wyniku, zainicjowane na 0 diff --git a/vvlad/cpp/_rv-diss b/vvlad/cpp/_rv-diss new file mode 100644 index 0000000..9a22230 --- /dev/null +++ b/vvlad/cpp/_rv-diss @@ -0,0 +1 @@ +riscv64-unknown-elf-objdump -S --disassemble prog > prog.dis diff --git a/vvlad/cpp/_rv-readelf b/vvlad/cpp/_rv-readelf new file mode 100644 index 0000000..940c525 --- /dev/null +++ b/vvlad/cpp/_rv-readelf @@ -0,0 +1 @@ +readelf -S -W prog diff --git a/vvlad/cpp/_rvmain.cpp b/vvlad/cpp/_rvmain.cpp new file mode 100644 index 0000000..386e2f3 --- /dev/null +++ b/vvlad/cpp/_rvmain.cpp @@ -0,0 +1,159 @@ +#include + +int strlen(char *s) { + char *p = s; + while (*p != '\0') + p++; + return p - s; +} + +void strcpy(char *s, char *t) +{ + while (*s++ = *t++); +} +#define ALLOCSIZE 10000 + +static char allocbuf[ALLOCSIZE]; +static char *allocp = allocbuf; + +char *alloc(int n) +{ + + if (n % 4 != 0) { + n += 4 - (n % 4); + } + + + if (allocbuf + ALLOCSIZE - allocp >= n) { + allocp += n; + return allocp - n; + } else + return 0; +} + +// def. model danych + +//pre processor +#define LEN (8+2)*10 + +struct model { + char * str; + uint32_t len ; +}; + + +//alg +// prosta implementacji func. z bibl. std. strok przy uzyciu gpt3.5 +// + +#define NULL ((void*) 0) + +// +// Funkcja pomocnicza do sprawdzania, czy znak jest wśród delimiterów +bool is_delim(char c, const char *delims) { + while (*delims) { + if (c == *delims) { + return true; + } + delims++; + } + return false; +} + +// Najprostsza implementacja funkcji strtok +char *simple_strtok(char *str, const char *delims) { + static char *static_str = (char *) NULL; // Przechowuje wskaźnik do bieżącej pozycji w ciągu + + // Jeśli przekazano nowy ciąg, zaktualizuj static_str + if (str == NULL) { + return (char *) NULL; // str nie wskazuje na zdanie !!! + } + static_str = str; + + // " .,mpabi" + // ^ + // Pomiń początkowe delimitery + while (*static_str && is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli doszliśmy do końca ciągu, zwróć NULL + if (*static_str == '\0') { + return (char *) NULL; + } + + // Zapisz początek tokenu + char *token_start = static_str; + + // Znajdź koniec tokenu + while (*static_str && !is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli znaleziono delimitery, zamień je na '\0' i zaktualizuj static_str + if (*static_str) { + *static_str = '\0'; + static_str++; + } + + // Zwróć początek tokenu + return token_start; +} + + +char buf[100]; +struct model * p = (struct model *) buf; //p[1] +////func alg +//in: ptr to date +//return: count of words +int alg (const char * ptr) { + + char bufer[ALLOCSIZE]; + strcpy(bufer, (char *)ptr); + + const char *delims = " ,.!?:;\n\t"; + + int8_t count = 0; + + char *token = simple_strtok(bufer, delims); + + while (token != (char *)NULL) { + + p[count].str = token; + p[count].len = strlen(token); + + token = simple_strtok((char *)NULL, delims); + count++; + } + + return count; +} + +/* +struct model { + char * str; + uint32_t len ; +} tab [10] ; +*/ + +int main() { + + char *str = "If wantered relation no surprise of all"; + +/* + struct model *ptr = (struct model *) alloc(LEN); + if (ptr != (struct model *)NULL) { + ptr->str = alloc(strlen((char *)str) + 1); + if (ptr->str != (char *)NULL) { + strcpy (ptr->str, (char *)str); + ptr->len = strlen(ptr->str); + + int8_t count = alg(ptr->str); + } + } + */ + alg(str); + asm ("nop"); + + return 1; +} diff --git a/vvlad/cpp/_rvmain.cpp.save b/vvlad/cpp/_rvmain.cpp.save new file mode 100644 index 0000000..b986dde --- /dev/null +++ b/vvlad/cpp/_rvmain.cpp.save @@ -0,0 +1,142 @@ +#include + +int strlen(char *s) { + char *p = s; + while (*p != '\0') + p++; + return p - s; +} + +void strcpy(char *s, char *t) +{ + while (*s++ = *t++); +} +#define ALLOCSIZE 10000 + +static char allocbuf[ALLOCSIZE]; +static char *allocp = allocbuf; + +char *alloc(int n) +{ + + if (n % 4 != 0) { + n += 4 - (n % 4); + } + + + if (allocbuf + ALLOCSIZE - allocp >= n) { + allocp += n; + return allocp - n; + } else + return 0; +} + +// def. model danych + +//pre processor +#define LEN (8+2)*10 + +struct model { + char * str; + uint32_t len ; +}; + + +//alg +// prosta implementacji func. z bibl. std. strok przy uzyciu gpt3.5 +// + +#define NULL ((void*) 0) + +// +// Funkcja pomocnicza do sprawdzania, czy znak jest wśród delimiterów +bool is_delim(char c, const char *delims) { + while (*delims) { + if (c == *delims) { + return true; + } + delims++; + } + return false; +} + +// Najprostsza implementacja funkcji strtok +char *simple_strtok(char *str, const char *delims) { + static char *static_str = (char *) NULL; // Przechowuje wskaźnik do bieżącej pozycji w ciągu + + // Jeśli przekazano nowy ciąg, zaktualizuj static_str + if (str != NULL) { + static_str = str; + } + + // Jeśli static_str jest NULL, zwróć NULL + if (static_str == NULL) { + return (char *) NULL; + } + + // Pomiń początkowe delimitery + while (*static_str && is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli doszliśmy do końca ciągu, zwróć NULL + if (*static_str == '\0') { + return (char *) NULL; + } + + // Zapisz początek tokenu + char *token_start = static_str; + + // Znajdź koniec tokenu + while (*static_str && !is_delim(*static_str, delims)) { + static_str++; + } + + // Jeśli znaleziono delimitery, zamień je na '\0' i zaktualizuj static_str + if (*static_str) { + *static_str = '\0'; + static_str++; + } + + // Zwróć początek tokenu + return token_start; +} + +////func alg +//in: ptr to date +//return: count of words +int alg (const char * ptr) { + + char bufer[ALLOCSIZE]; + strcpy(bufer, (char *)ptr); + + const char *delims = " ,.!?:;\n\t"; + + int8_t count = 0; + + char *token = simple_strtok(bufer, delims); + while (token != (char *)NULL) { + count++; + token = simple_strtok((char *)NULL, delims); + } + return count; +} + + +int main() { + + const char *str = "If wantered relation no surprise of all"; + + struct model *ptr = (struct model *) alloc(LEN); + if (ptr != (struct model *) NULL) { + ptr->str = alloc(strlen((char *)str) + 1); + if (ptr->str != (char *)NULL) { + strcpy (ptr->str, (char *)str); + ptr->len = strlen(ptr->str); + + int8_t count = alg(ptr->str); + } + } + + return 1; +} diff --git a/vvlad/cpp/gdb/z.py b/vvlad/cpp/gdb/z.py new file mode 100644 index 0000000..98c6a26 --- /dev/null +++ b/vvlad/cpp/gdb/z.py @@ -0,0 +1,17 @@ +# set args 0x1FF80 0x80 0x30 +# source gdb/z.py + +import gdb +import sys + +# Parse arguments from the GDB command +args = gdb.string_to_argv(gdb.parameter("args")) +if len(args) != 3: + print("Usage: source gdb/zero_with_params.py ") +else: + start_address = int(args[0], 16) # Convert start address from hex to int + num_bytes = int(args[1], 16) # Convert number of bytes from hex to int + pattern = int(args[2], 16) # Convert pattern from hex to int + + for i in range(num_bytes): + gdb.execute("set *((char*)%x + %x) = %x" % (start_address, i, pattern)) diff --git a/vvlad/cpp/gdb/zero.py b/vvlad/cpp/gdb/zero.py new file mode 100644 index 0000000..0095bd7 --- /dev/null +++ b/vvlad/cpp/gdb/zero.py @@ -0,0 +1,5 @@ +#source gdb/z.py + +import gdb +for i in range(0, 128): # 128 bajtów + gdb.execute("set *((char*)(0x1FF80 + %x)) = 0xaa" % i) diff --git a/vvlad/cpp/myfunc.cpp b/vvlad/cpp/myfunc.cpp new file mode 100644 index 0000000..b621842 --- /dev/null +++ b/vvlad/cpp/myfunc.cpp @@ -0,0 +1,35 @@ +#include "myfunc.h" + +// Lokalna deklaracja funkcji my_strlen +static int my_strlen(const char *str) { + int length = 0; + while (str[length] != '\0') { + length++; + } + return length; +} + +void count_characters(const char* alfabet, const char* slowo, uint8_t* wynik) { + // Użycie my_strlen do obliczenia długości alfabetu + int alfabet_length = my_strlen(alfabet); + + for (int i = 0; i < alfabet_length; ++i) { + wynik[i] = 0; + } + + for (int i = 0; i < alfabet_length; ++i) { + for (int j = 0; slowo[j] != '\0'; ++j) { + if (alfabet[i] == slowo[j]) { + wynik[i]++; + } + } + } +} + +// #include "myfunc.h" + +// const char* alfabet = "abcdefghijklmnopqrstuwxyz"; +// const char* slowo = "mpabi"; +// int wynik[26] = {0}; // Inicjalizacja tablicy wyników na 0 + +// count_characters(alfabet, slowo, wynik); diff --git a/vvlad/cpp/myfunc.h b/vvlad/cpp/myfunc.h new file mode 100644 index 0000000..99a5984 --- /dev/null +++ b/vvlad/cpp/myfunc.h @@ -0,0 +1,9 @@ +#ifndef myfunc_H +#define myfunc_H + +#include + + +void count_characters(const char* alfabet, const char* slowo, uint8_t* wynik); + +#endif diff --git a/vvlad/cpp/myfuncOOP.cpp b/vvlad/cpp/myfuncOOP.cpp new file mode 100644 index 0000000..02e929d --- /dev/null +++ b/vvlad/cpp/myfuncOOP.cpp @@ -0,0 +1,38 @@ +#include "myfuncOOP.hpp" + +MyfuncOOP::MyfuncOOP(const char* alfabet, const char* slowo, uint8_t* wynik) + : alfabet(alfabet), slowo(slowo), wynik(wynik) { +} + +void MyfuncOOP::countCharacters() { + int alfabet_length = myStrlen(alfabet); + + for (int i = 0; i < alfabet_length; ++i) { + wynik[i] = 0; // Initialize counts to zero + } + + for (int i = 0; i < alfabet_length; ++i) { + for (int j = 0; slowo[j] != '\0'; ++j) { + if (alfabet[i] == slowo[j]) { + wynik[i]++; + } + } + } +} + +const uint8_t* MyfuncOOP::getResults() const { + return wynik; +} + +int MyfuncOOP::myStrlen(const char* str) { + int length = 0; + while (str[length] != '\0') { + ++length; + } + return length; +} + + +// MyfuncOOP zliczacz(alfabet, slowo, wynik); +// zliczacz.countCharacters(); +// const uint8_t* results = zliczacz.getResults(); \ No newline at end of file diff --git a/vvlad/cpp/myfuncOOP.hpp b/vvlad/cpp/myfuncOOP.hpp new file mode 100644 index 0000000..277e918 --- /dev/null +++ b/vvlad/cpp/myfuncOOP.hpp @@ -0,0 +1,22 @@ +#ifndef MYFUNC_OOP_HPP +#define MYFUNC_OOP_HPP + +#include + +class MyfuncOOP { +public: + MyfuncOOP(const char* alfabet, const char* slowo, uint8_t* wynik); + + void countCharacters(); + + const uint8_t* getResults() const; + +private: + const char* alfabet; + const char* slowo; + uint8_t* wynik; + + static int myStrlen(const char* str); +}; + +#endif // MYFUNC_OOP_HPP diff --git a/vvlad/cpp/myfuncStruct.cpp b/vvlad/cpp/myfuncStruct.cpp new file mode 100644 index 0000000..47e307f --- /dev/null +++ b/vvlad/cpp/myfuncStruct.cpp @@ -0,0 +1,29 @@ +#include "myfuncStruct.h" + +// Static function for string length calculation +static int my_strlen(const char *str) { + int length = 0; + while (str[length] != '\0') { + length++; + } + return length; +} + +// Function to count occurrences of each character in 'alfabet' within 'slowo' +void count_charactersStruct(ZliczaczStruct* zliczacz) { + int alfabet_length = my_strlen(zliczacz->alfabet); + + // Initialize the result array to zero + for (int i = 0; i < alfabet_length; ++i) { + zliczacz->wynik[i] = 0; + } + + // Count occurrences + for (int i = 0; i < alfabet_length; ++i) { + for (int j = 0; zliczacz->slowo[j] != '\0'; ++j) { + if (zliczacz->alfabet[i] == zliczacz->slowo[j]) { + zliczacz->wynik[i]++; + } + } + } +} diff --git a/vvlad/cpp/myfuncStruct.h b/vvlad/cpp/myfuncStruct.h new file mode 100644 index 0000000..2671140 --- /dev/null +++ b/vvlad/cpp/myfuncStruct.h @@ -0,0 +1,15 @@ +#ifndef MYFUNCSTRUCT_H +#define MYFUNCSTRUCT_H + +#include + +typedef struct { + const char* alfabet; + const char* slowo; + uint8_t* wynik; // Pointer to an array for results +} ZliczaczStruct; + +// Function declaration for counting character occurrences +void count_charactersStruct(ZliczaczStruct* zliczacz); + +#endif // MYFUNCSTRUCT_H diff --git a/vvlad/cpp/myfuncStructOOP.cpp b/vvlad/cpp/myfuncStructOOP.cpp new file mode 100644 index 0000000..8138dc3 --- /dev/null +++ b/vvlad/cpp/myfuncStructOOP.cpp @@ -0,0 +1,44 @@ +#include "myfuncStructOOP.h" + +// Static function for string length calculation +static int my_strlen(const char *str) { + int length = 0; + while (str[length] != '\0') { + length++; + } + return length; +} + +// 'Method' to count occurrences of each character +static void count_charactersStructOOP(ZliczaczStructOOP* zliczacz) { + int alfabet_length = my_strlen(zliczacz->alfabet); + + // Initialize the result array to zero + for (int i = 0; i < alfabet_length; ++i) { + zliczacz->wynik[i] = 0; + } + + // Count occurrences + for (int i = 0; i < alfabet_length; ++i) { + for (int j = 0; zliczacz->slowo[j] != '\0'; ++j) { + if (zliczacz->alfabet[i] == zliczacz->slowo[j]) { + zliczacz->wynik[i]++; + } + } + } +} + +// Constructor-like function to initialize a ZliczaczStructOOP +void initializeZliczaczStructOOP(ZliczaczStructOOP* zliczacz, const char* alfabet, const char* slowo, uint8_t* wynik) { + zliczacz->alfabet = alfabet; + zliczacz->slowo = slowo; + zliczacz->wynik = wynik; + zliczacz->count_characters = count_charactersStructOOP; +} + +// #include "myfuncStructOOP.h" + +// ZliczaczStructOOP zliczacz; +// initializeZliczaczStructOOP(&zliczacz, alfabet, slowo, wynik); + +// zliczacz.count_characters(&zliczacz); diff --git a/vvlad/cpp/myfuncStructOOP.h b/vvlad/cpp/myfuncStructOOP.h new file mode 100644 index 0000000..dd3e7e4 --- /dev/null +++ b/vvlad/cpp/myfuncStructOOP.h @@ -0,0 +1,21 @@ +#ifndef MYFUNCSTRUCTOOP_H +#define MYFUNCSTRUCTOOP_H + +#include + +typedef struct ZliczaczStructOOP ZliczaczStructOOP; + +struct ZliczaczStructOOP { + // Data members + const char* alfabet; + const char* slowo; + uint8_t* wynik; // Pointer to an array for results + + // Function pointers, acting as 'methods' + void (*count_characters)(ZliczaczStructOOP*); +}; + +void initializeZliczaczStructOOP(ZliczaczStructOOP* zliczacz, const char* alfabet, const char* slowo, uint8_t* wynik); + + +#endif // MYFUNCSTRUCTOOP_H diff --git a/vvlad/cpp/tracked_files.txt b/vvlad/cpp/tracked_files.txt new file mode 100644 index 0000000..fb2f94e --- /dev/null +++ b/vvlad/cpp/tracked_files.txt @@ -0,0 +1,5 @@ +_crt0.S +main.cpp +myfunc.cpp +myfunc.h +_rvmain.cc diff --git a/vvlad/cpp/try/3.py b/vvlad/cpp/try/3.py new file mode 100644 index 0000000..d12e3b0 --- /dev/null +++ b/vvlad/cpp/try/3.py @@ -0,0 +1,16 @@ +import asyncio +import websockets + +async def consume_ws_latest_records(): + uri = "ws://172.24.0.3:3333/ws_latest_records" + + async with websockets.connect(uri) as websocket: + while True: + message = input("Enter a message to send: ") + await websocket.send(message) + + response = await websocket.recv() + print(f"Received from server: {response}") + +if __name__ == "__main__": + asyncio.get_event_loop().run_until_complete(consume_ws_latest_records()) diff --git a/vvlad/cpp/try/__os-build b/vvlad/cpp/try/__os-build new file mode 100644 index 0000000..025913d --- /dev/null +++ b/vvlad/cpp/try/__os-build @@ -0,0 +1 @@ +g++ -std=c++17 -o websocket-client-sync main.cpp myfunc.cpp -lboost_system -lboost_thread -lboost_coroutine -ljsoncpp diff --git a/vvlad/cpp/try/__os-run b/vvlad/cpp/try/__os-run new file mode 100644 index 0000000..b500c13 --- /dev/null +++ b/vvlad/cpp/try/__os-run @@ -0,0 +1 @@ +./websocket-client-sync ws://localhost:3333/ws diff --git a/vvlad/cpp/try/main.cpp b/vvlad/cpp/try/main.cpp new file mode 100644 index 0000000..9f7dea1 --- /dev/null +++ b/vvlad/cpp/try/main.cpp @@ -0,0 +1,155 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace beast = boost::beast; +namespace websocket = beast::websocket; +namespace net = boost::asio; +using tcp = boost::asio::ip::tcp; + +struct Person { + std::string name; + int age; + long long timestamp; +}; + +Json::Value serializePerson(const Person& person) { + Json::Value jsonPerson; + jsonPerson["name"] = person.name; + jsonPerson["age"] = person.age; + jsonPerson["timestamp"] = static_cast(person.timestamp); + return jsonPerson; +} + +std::tuple parseURI(const std::string& uri) { + std::regex uriRegex(R"(^ws://([^:/]+):(\d+)(/.+)$)"); + std::smatch match; + + if (std::regex_match(uri, match, uriRegex)) { + return std::make_tuple(match[1].str(), match[2].str(), match[3].str()); + } else { + throw std::invalid_argument("Nieprawidłowe URI"); + } +} + +template +T getInput(const std::string& prompt) { + T value; + while (true) { + std::cout << prompt; + std::cin >> value; + + if (std::cin.fail()) { + std::cin.clear(); + std::cin.ignore(std::numeric_limits::max(), '\n'); + std::cerr << "Błąd! Spróbuj ponownie." << std::endl; + } else { + std::cin.ignore(std::numeric_limits::max(), '\n'); + break; + } + } + + return value; +} + +void iterateCharBuffer(const char* charBuffer, std::size_t bufferSize) { + for (std::size_t i = 0; i < bufferSize; ++i) { + std::cout << charBuffer[i]; + } + std::cout << std::endl; + + // Example: Call the function you want to apply to the char buffer +} + +int main(int argc, char** argv) { + try { + if (argc != 2) { + std::cerr << "Sposób użycia: " << argv[0] << " \n"; + return EXIT_FAILURE; + } + + std::string uri = argv[1]; + auto uriParts = parseURI(uri); + std::string host, port, endpoint; + std::tie(host, port, endpoint) = uriParts; + + net::io_context io_context; + + websocket::stream ws(io_context); + tcp::resolver resolver(io_context); + auto endpoints = resolver.resolve(host, port); + net::connect(ws.next_layer(), endpoints); + + ws.handshake(host, endpoint); + + while (true) { + std::cout << "Menu:\n"; + std::cout << "1. Dodaj rekord\n"; + std::cout << "2. Zwróć ostatnie rekordy\n"; + std::cout << "3. Wyjście\n"; + + int choice = getInput("Wybierz opcję: "); + + if (choice == 1) { + + std::string name = getInput("Podaj imię: "); + int age = getInput("Podaj wiek: "); + + Person personToSend{name, age, std::chrono::duration_cast( + std::chrono::system_clock::now().time_since_epoch()).count()}; + + Json::Value jsonPerson = serializePerson(personToSend); + + ws.write(net::buffer(Json::writeString(Json::StreamWriterBuilder(), jsonPerson))); + + } else if (choice == 2) { + + ws.write(net::buffer("get_latest_records")); + + beast::flat_buffer buffer; + ws.read(buffer); + + std::cout << "Otrzymano: " << beast::make_printable(buffer.data()) << std::endl; + + const char* bufferData = boost::asio::buffer_cast(buffer.data()); + std::size_t bufferSize = boost::asio::buffer_size(buffer.data()); + + char* charBuffer = new char[bufferSize + 1]; + std::memcpy(charBuffer, bufferData, bufferSize); + charBuffer[bufferSize] = '\0'; + + iterateCharBuffer(charBuffer, bufferSize); + + delete[] charBuffer; + + buffer.consume(buffer.size()); + + } else if (choice == 3) { + + std::cout << "Zamykanie programu...\n"; + break; + + } else { + + std::cout << "Nieprawidłowy wybór. Spróbuj ponownie.\n"; + + } + + std::this_thread::sleep_for(std::chrono::milliseconds(200)); + } + + } catch (std::exception const& e) { + std::cerr << "Błąd: " << e.what() << std::endl; + return EXIT_FAILURE; + } + + return EXIT_SUCCESS; +} diff --git a/vvlad/cpp/try/uri.cpp b/vvlad/cpp/try/uri.cpp new file mode 100644 index 0000000..cff7149 --- /dev/null +++ b/vvlad/cpp/try/uri.cpp @@ -0,0 +1,53 @@ +#include +#include +#include + +#include +#include +#include + +namespace beast = boost::beast; +namespace websocket = beast::websocket; +namespace net = boost::asio; +using tcp = boost::asio::ip::tcp; + +std::tuple parseURI(const std::string& uri) { + std::regex uriRegex(R"(^ws://([^:/]+):(\d+)(/.+)$)"); + std::smatch match; + + if (std::regex_match(uri, match, uriRegex)) { + return std::make_tuple(match[1].str(), match[2].str(), match[3].str()); + } else { + throw std::invalid_argument("Nieprawidłowe URI"); + } +} + +int main() { + std::string uri = "ws://172.24.0.3:3333"; + std::cout << "Dostarczone URI: " << uri << std::endl; + + try { + auto uriParts = parseURI(uri); + std::string host, port, endpoint; + std::tie(host, port, endpoint) = uriParts; + + net::io_context io_context; + + // Utwórz obiekt WebSocket + websocket::stream ws(io_context); + + // Połącz z serwerem WebSocket + tcp::resolver resolver(io_context); + auto endpoints = resolver.resolve(host, port); + net::connect(ws.next_layer(), endpoints); + + // Wysyłanie danych na serwer WebSocket + ws.handshake(host, endpoint); + + } catch (const std::exception& e) { + std::cerr << "Błąd: " << e.what() << std::endl; + return EXIT_FAILURE; + } + + return EXIT_SUCCESS; +}